diff --git a/experiments/cluster_ranking/Clusters.py b/experiments/cluster_ranking/Clusters.py new file mode 100644 index 0000000000000000000000000000000000000000..bbba693316abc07d64c945e67f7cb36be9334a1c --- /dev/null +++ b/experiments/cluster_ranking/Clusters.py @@ -0,0 +1,113 @@ +# --- +# jupyter: +# jupytext: +# formats: ipynb,py:percent +# text_representation: +# extension: .py +# format_name: percent +# format_version: '1.3' +# jupytext_version: 1.16.5 +# kernelspec: +# display_name: Python 3 (ipykernel) +# language: python +# name: python3 +# --- + +# %% +import jupyter_black +import networkx as nx +import polars as pl + +jupyter_black.load() + +# %% +seed = 13 +cluster_fields = ("compilation_of", "implementation", "integration") +schema = {f: pl.List(pl.Int64) for f in cluster_fields} +schema.update({"bgg_id": pl.Int64, "avg_rating": pl.Float64, "num_votes": pl.Int64}) + +# %% +games = pl.scan_ndjson( + source="../../../board-game-data/scraped/v3/bgg_GameItem.jl", + schema=schema, +).select( + "bgg_id", + "avg_rating", + "num_votes", + connected_id=pl.concat_list([pl.col(f).fill_null([]) for f in cluster_fields]), +) + +# %% +clusters = ( + games.select("bgg_id", "connected_id") + .explode("connected_id") + .drop_nulls() + .collect() +) +clusters.shape + +# %% +clusters.describe() + +# %% +clusters.sample(10, seed=seed) + +# %% +graph = nx.Graph() +graph.add_edges_from(clusters.iter_rows()) +graph.number_of_nodes(), graph.number_of_edges(), nx.number_connected_components(graph) + +# %% +largest_cluster = max(nx.connected_components(graph), key=len) +min(largest_cluster), len(largest_cluster) + + +# %% +def find_cluster_ids(graph): + for component in nx.connected_components(graph): + cluster_id = min(component) + for bgg_id in component: + yield bgg_id, cluster_id + + +cluster_id_mapping = dict(find_cluster_ids(graph)) +len(cluster_id_mapping) + +# %% +rankings = ( + games.select( + "bgg_id", + "avg_rating", + "num_votes", + num_dummies=pl.col("num_votes").sum() / 10_000, + ) + .with_columns( + bayes_rating=( + pl.col("avg_rating").fill_null(0.0) * pl.col("num_votes").fill_null(0) + + 5.5 * pl.col("num_dummies") + ) + / (pl.col("num_votes").fill_null(0) + pl.col("num_dummies")) + ) + .select( + "bgg_id", + rank=pl.col("bayes_rating").rank(method="random", descending=True, seed=seed), + ) + .sort("rank") + .with_columns(cluster_id=pl.col("bgg_id").replace(cluster_id_mapping)) +) +representative = rankings.group_by("cluster_id").agg( + representative_id=pl.col("bgg_id") + .filter(pl.col("rank") == pl.col("rank").min()) + .first() +) +rankings = rankings.join(representative, on="cluster_id").collect() +rankings.shape + +# %% +rankings.describe() + +# %% +rankings.head(10) + +# %% +rankings.select("bgg_id", "representative_id").write_csv("clusters.csv") diff --git a/experiments/cluster_ranking/Ranking.py b/experiments/cluster_ranking/Ranking.py new file mode 100644 index 0000000000000000000000000000000000000000..3cfdc5929d95c324970ebf34e1382ff3017da2ae --- /dev/null +++ b/experiments/cluster_ranking/Ranking.py @@ -0,0 +1,81 @@ +# --- +# jupyter: +# jupytext: +# formats: ipynb,py:percent +# text_representation: +# extension: .py +# format_name: percent +# format_version: '1.3' +# jupytext_version: 1.16.5 +# kernelspec: +# display_name: Python 3 (ipykernel) +# language: python +# name: python3 +# --- + +# %% +import jupyter_black +import polars as pl + +jupyter_black.load() + +# %% +games = pl.scan_ndjson("../../../board-game-data/scraped/v3/bgg_GameItem.jl").select( + "bgg_id", + "name", + "year", +) +clusters = pl.scan_csv("clusters.csv") +cluster_lists = ( + clusters.group_by("representative_id") + .agg(pl.col("bgg_id").sort(), pl.len()) + .filter(pl.col("len") > 1) + .drop("len") + .rename({"representative_id": "bgg_id", "bgg_id": "cluster"}) +) +ranking = ( + pl.scan_ndjson("../../../board-game-data/scraped/bgg_RatingItem.jl") + .select("bgg_id", "bgg_user_name", "bgg_user_rating") + .drop_nulls() + .join(clusters, on="bgg_id") + .group_by("representative_id", "bgg_user_name") + .agg(pl.col("bgg_user_rating").max()) + .rename({"representative_id": "bgg_id"}) + .group_by("bgg_id") + .agg( + avg_rating=pl.col("bgg_user_rating").mean(), + num_votes=pl.len(), + ) + .with_columns(num_dummies=pl.col("num_votes").sum() / 10_000) + .filter(pl.col("num_votes") >= 30) + .with_columns( + bayes_rating=( + pl.col("avg_rating") * pl.col("num_votes") + 5.5 * pl.col("num_dummies") + ) + / (pl.col("num_votes") + pl.col("num_dummies")), + ) + .with_columns(rank=pl.col("bayes_rating").rank(method="min", descending=True)) + .sort("rank") + .join(games, on="bgg_id", how="left") + .join(cluster_lists, on="bgg_id", how="left") + .select( + "rank", + "bgg_id", + "name", + "year", + "num_votes", + "avg_rating", + "bayes_rating", + "cluster", + ) + .collect() +) +ranking.shape + +# %% +ranking.head(10) + +# %% +ranking.with_columns( + pl.col("cluster").cast(pl.List(pl.String)).list.join(", "), +).write_csv("ranking.csv", float_precision=5) diff --git a/experiments/cluster_ranking/cluster_ranking/__init__.py b/experiments/cluster_ranking/cluster_ranking/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/cluster_ranking/clusters.csv b/experiments/cluster_ranking/clusters.csv new file mode 100644 index 0000000000000000000000000000000000000000..c68b135eba58bcf1d7e2d09dc742f04b4c609c8e --- /dev/null +++ b/experiments/cluster_ranking/clusters.csv @@ -0,0 +1,125935 @@ +bgg_id,representative_id +174430,174430 +224517,224517 +161936,161936 +342942,342942 +233078,233078 +167791,167791 +316554,316554 +115746,115746 +291457,174430 +162886,162886 +187645,187645 +363622,363622 +220308,220308 +12333,12333 +182028,182028 +169786,169786 +167355,167355 +84876,363622 +173346,173346 +193738,193738 +246900,246900 +205637,205637 +248562,248562 +266192,266192 +295770,174430 +237182,237182 +177736,177736 +397598,316554 +28720,224517 +312484,312484 +124361,124361 +120677,220308 +271320,363622 +199792,199792 +96848,248562 +192135,192135 +266507,266507 +341169,193738 +164928,164928 +285774,285774 +55690,55690 +183394,183394 +251247,251247 +3076,3076 +366013,366013 +324856,324856 +170216,170216 +251661,251661 +295947,295947 +31260,31260 +205059,205059 +102794,31260 +175914,175914 +256960,256960 +247763,247763 +373106,373106 +185343,185343 +253344,253344 +184267,184267 +521,521 +255984,255984 +164153,164153 +2651,2651 +321608,321608 +126163,126163 +284378,284378 +244521,244521 +231733,231733 +124742,124742 +221107,161936 +182874,182874 +161533,161533 +314040,161936 +230802,230802 +35677,35677 +216132,216132 +266810,266810 +284083,324856 +276025,276025 +200680,31260 +201808,266507 +125153,125153 +28143,28143 +209010,209010 +157354,157354 +264220,264220 +110327,110327 +72125,246900 +191189,191189 +68448,173346 +121921,121921 +146021,146021 +229853,229853 +269385,269385 +37111,37111 +93,93 +383179,220308 +155821,155821 +171623,171623 +62219,62219 +25613,182028 +317985,317985 +365717,266507 +159675,159675 +180263,180263 +236457,236457 +277659,277659 +225694,225694 +36218,36218 +40834,36218 +291453,291453 +18602,18602 +279537,279537 +240980,240980 +205896,205896 +42,42 +371942,371942 +170042,170042 +332772,332772 +12493,233078 +163412,163412 +364073,364073 +163068,163068 +366161,266192 +217372,217372 +322289,322289 +122515,122515 +73439,73439 +30549,161936 +286749,286749 +178900,178900 +325494,325494 +310100,167355 +310873,310873 +203993,203993 +271055,271055 +12,12 +266524,266524 +14996,14996 +102680,102680 +172386,172386 +256916,124361 +463,463 +77423,77423 +144733,144733 +414317,414317 +338960,338960 +147020,147020 +281259,281259 +108687,3076 +175155,175155 +233371,266507 +172287,172287 +337627,337627 +227935,227935 +103885,103885 +132531,28143 +254640,254640 +34635,34635 +263918,263918 +43015,286749 +161970,161970 +198928,161936 +262712,262712 +359871,359871 +4098,4098 +104162,164153 +271324,271324 +118048,118048 +218417,191189 +188920,188920 +196340,196340 +283355,283355 +2511,2511 +54043,54043 +410201,266192 +103343,103343 +268864,268864 +220877,220877 +328871,167791 +189932,189932 +127023,127023 +148949,148949 +175640,175640 +146652,146652 +421006,173346 +329082,329082 +249259,249259 +380607,193738 +209418,36218 +822,93 +39463,39463 +188,463 +233867,233867 +82222,82222 +10630,10630 +244522,244522 +128882,128882 +233398,233398 +304783,304783 +274364,274364 +271896,271896 +199561,199561 +239188,239188 +148228,364073 +294484,294484 +350184,350184 +332398,199792 +390092,14996 +150376,150376 +160069,14996 +308765,308765 +282524,282524 +296151,296151 +43111,43111 +188834,188834 +9209,14996 +154597,154597 +155426,155426 +9609,115746 +227224,227224 +265188,265188 +300531,300531 +176189,176189 +129437,146652 +235802,192135 +287954,230802 +283948,171623 +258779,258779 +314491,314491 +242302,242302 +396790,396790 +316377,173346 +118,118 +285967,285967 +171131,171131 +31627,14996 +104006,104006 +54998,54998 +339789,233867 +123260,123260 +17133,4098 +283155,283155 +215,215 +374173,374173 +256680,256680 +221194,221194 +269207,269207 +70149,70149 +192291,192291 +198994,147020 +293014,293014 +14105,14105 +331106,331106 +306735,306735 +25021,25021 +182631,147020 +156129,156129 +274637,294484 +260605,260605 +194655,194655 +195421,195421 +199478,199478 +224037,178900 +245638,245638 +158600,158600 +232832,232832 +223040,223040 +126042,126042 +295486,295486 +286096,286096 +359609,205637 +257499,146021 +169426,169426 +299659,299659 +223321,223321 +176494,176494 +364011,193738 +7854,7854 +391163,391163 +232405,232405 +91,91 +555,555 +318977,318977 +165722,165722 +146508,146508 +204583,204583 +241451,191189 +31481,31481 +291572,291572 +146886,146886 +2655,154597 +3,3 +285192,285192 +21050,21050 +20551,20551 +224783,224783 +92828,92828 +305096,305096 +19857,19857 +298047,298047 +155068,155068 +128621,183394 +332686,332686 +9216,9216 +108745,108745 +228341,228341 +760,760 +140620,140620 +139976,139976 +129622,463 +160477,160477 +242705,242705 +50,50 +27708,27708 +150145,150145 +300322,300322 +2653,2653 +109276,284378 +323612,323612 +246784,246784 +311193,311193 +230914,93 +46213,46213 +244271,244271 +40692,40692 +206718,206718 +336986,336986 +199042,199042 +5,5 +127060,127060 +277085,463 +154203,154203 +230253,147020 +367220,367220 +209685,232832 +329841,14996 +15987,146021 +39856,92828 +284653,284653 +27833,4098 +181279,181279 +163967,163967 +172,172 +302723,302723 +38453,38453 +156546,156546 +356123,356123 +421,421 +297562,127023 +70919,70919 +54,54 +181304,181304 +144344,144344 +351913,351913 +97207,97207 +24181,24181 +255668,163068 +318184,318184 +77130,77130 +21241,21241 +184921,184921 +329839,329839 +295895,295895 +171,463 +295374,295374 +41114,128882 +59294,59294 +193037,150376 +172818,195421 +25292,25292 +22545,22545 +93260,93260 +322708,322708 +262211,262211 +66589,66589 +140934,140934 +59959,59959 +400314,400314 +188866,188866 +222509,222509 +63888,63888 +260180,260180 +48726,48726 +345972,345972 +245655,245655 +143693,143693 +219513,219513 +47,47 +136888,136888 +176734,176734 +172081,172081 +296100,144344 +37046,37046 +70323,70323 +270633,191189 +319966,319966 +170771,170771 +163745,163745 +284189,284189 +186751,186751 +332800,93260 +187617,187617 +13,13 +345584,345584 +246192,246192 +203420,203420 +227789,227789 +8217,3076 +45315,45315 +155987,155987 +54138,24181 +101721,101721 +311988,311988 +251219,148949 +318084,318084 +176920,176920 +138161,138161 +194594,194594 +370591,370591 +301880,170042 +146439,146439 +90137,90137 +155873,2651 +329591,144733 +304420,304420 +119890,31260 +24480,24480 +234277,234277 +19777,19777 +385761,385761 +350316,350316 +92415,92415 +111341,111341 +372,760 +349067,77423 +9217,9217 +128671,128671 +297030,297030 +124708,124708 +202426,202426 +234487,234487 +169427,169427 +265736,265736 +192458,154203 +379078,379078 +195539,195539 +25554,363622 +247367,247367 +198773,178900 +336382,298047 +256226,230802 +171908,93 +245934,245934 +286751,176189 +274638,294484 +128271,128271 +39683,39683 +215311,215311 +269210,244522 +260428,161936 +250458,250458 +234,234 +100901,100901 +182134,182134 +244711,244711 +243,243 +342070,342070 +333255,333255 +192153,161936 +478,478 +262543,262543 +205398,478 +21348,14996 +11,11 +284742,284742 +54625,54625 +357563,357563 +11170,11170 +298069,298069 +34219,34219 +31594,31594 +13122,13122 +158899,158899 +276182,276182 +71,71 +246684,246684 +280794,280794 +27162,27162 +83330,205059 +293141,70323 +146791,146791 +292375,292375 +239942,239942 +33160,233398 +308119,308119 +350933,350933 +15062,15062 +291794,244271 +98778,98778 +303057,303057 +251658,251658 +236191,236191 +66188,66188 +157969,157969 +177478,177478 +40354,40354 +17226,164153 +204305,2511 +136063,136063 +258210,258210 +290236,290236 +315767,263918 +274960,274960 +197376,197376 +233312,233312 +12942,12942 +25417,146439 +121,283355 +166669,3076 +10547,10547 +43570,43570 +1,1 +699,699 +180974,180974 +151347,151347 +229220,229220 +63628,63628 +176396,176396 +36932,36932 +194607,194607 +156858,156858 +144592,144592 +343905,343905 +206480,206480 +351040,351040 +318182,318184 +150,150 +161614,161614 +215341,215341 +40765,299659 +17392,17392 +62222,14105 +240196,10547 +6249,6249 +316412,316412 +133473,192291 +105134,105134 +356033,356033 +220,220 +147949,147949 +18833,18833 +270844,154203 +256952,256952 +342810,342810 +127398,127398 +55670,55670 +102652,102652 +315610,315610 +21790,21790 +156009,156009 +355093,355093 +191862,191862 +79828,79828 +131357,131357 +153938,260605 +264241,264241 +91312,91312 +113924,176189 +216734,244271 +96913,96913 +271601,271601 +66362,265188 +216600,216600 +245654,245654 +18,18 +269144,269144 +712,712 +150658,161936 +232414,232414 +97786,40692 +5404,5404 +503,503 +325635,294484 +267367,123260 +181530,181530 +154809,154809 +193042,193042 +9674,9674 +290359,268864 +328565,328565 +140068,31481 +28023,28023 +175095,175095 +177639,177639 +171668,171668 +256730,256730 +20437,20437 +133038,133038 +290484,290484 +34119,34119 +22827,175155 +162082,162082 +340466,37111 +252328,103885 +335764,294484 +144189,144189 +293296,364073 +284435,284435 +385529,385529 +221965,221965 +353288,353288 +224710,176189 +125618,356033 +137408,137408 +319422,199792 +117959,117959 +4390,93 +160010,160010 +338834,318977 +367150,115746 +62227,62227 +432,432 +264055,264055 +283393,283393 +226522,226522 +133848,133848 +105551,105551 +183251,183251 +196326,463 +142379,142379 +365258,365258 +170561,170561 +193949,193949 +348406,244271 +336847,189932 +307002,307002 +6472,103343 +232043,204583 +262215,262215 +163968,163968 +97842,97842 +273330,273330 +100423,100423 +266830,266830 +172308,172308 +31730,31730 +27173,27173 +155703,182134 +144797,144797 +334590,334590 +385610,385610 +90419,90419 +358661,271055 +354934,354934 +15985,712 +475,475 +265402,265402 +304051,304051 +300300,239188 +218603,218603 +15363,15363 +213460,213460 +128996,128996 +5782,5782 +37904,37904 +27746,27746 +42215,42215 +119506,119506 +206941,206941 +318009,221194 +353545,353545 +336794,31481 +84419,84419 +205359,205359 +2346,7854 +65781,236191 +381297,294484 +169255,169255 +245961,245961 +248490,248490 +271518,271518 +348450,348450 +141572,141572 +42776,42776 +346965,230802 +319910,319910 +257501,257501 +107529,107529 +209778,209778 +244115,244115 +159508,159508 +123540,123540 +123123,123123 +31999,7854 +237179,237179 +143519,143519 +69789,69789 +483,483 +95527,95527 +30869,30869 +151022,151022 +21763,21763 +328866,328866 +270673,270673 +256382,271518 +17405,17405 +296237,296237 +552,552 +42052,175640 +46,46 +233247,233247 +359438,172386 +284777,294484 +329954,93 +296912,296912 +171499,171499 +58421,58421 +362944,115746 +170624,170624 +284760,271518 +2398,2398 +45358,6249 +204472,204472 +128780,128780 +113294,113294 +328479,328479 +192836,192836 +135779,135779 +167400,167400 +13004,13004 +24508,24508 +379629,379629 +278292,185343 +130960,130960 +36553,36553 +269511,269511 +218074,218074 +212445,712 +143741,143741 +367498,162886 +9625,9625 +39938,39938 +39351,39351 +71721,71721 +367966,367966 +266121,266121 +163839,163839 +331787,331787 +256999,256999 +1513,1513 +41,463 +307305,307305 +135219,135219 +190082,59959 +140603,140603 +163166,147949 +134726,134726 +88,88 +3201,18833 +346703,173346 +111799,111799 +174785,174785 +258036,155426 +875,875 +183840,183840 +370913,161936 +2453,2453 +202670,14996 +121408,121408 +20963,181279 +334065,334065 +298383,298383 +58281,93260 +3685,3685 +369880,369880 +1353,36553 +156336,156336 +329551,329551 +30380,30380 +295564,294484 +180593,180593 +352515,352515 +270239,270239 +181521,181521 +281655,281655 +329500,329500 +291845,291845 +326494,326494 +7717,93 +150997,146791 +169654,169654 +20100,20100 +241724,241724 +383607,383607 +242639,242639 +361545,361545 +45,463 +232219,232219 +153016,46213 +146278,146278 +183562,103885 +1465,1465 +213893,213893 +50750,50750 +2955,2955 +306040,306040 +47185,47185 +91872,91872 +168584,463 +73761,73761 +11825,11825 +347703,347703 +231581,231581 +283864,283864 +367041,367041 +368173,368173 +179172,179172 +121288,92828 +281442,281442 +65532,65532 +180511,180511 +242574,232832 +168435,155426 +65244,136063 +193558,193558 +346501,346501 +162007,162007 +198953,308119 +15512,15512 +337765,337765 +244114,42 +119432,119432 +270970,232832 +244228,244228 +226320,169786 +126792,126792 +286063,286063 +300877,300877 +51,51 +283863,283863 +137988,176189 +132018,132018 +299047,271518 +160499,70323 +194879,194879 +9823,9823 +29368,29368 +29603,29603 +200147,200147 +68425,68425 +155624,155624 +73171,73171 +2163,54625 +203416,203416 +70512,70512 +21882,21882 +276498,276498 +72321,72321 +22345,22345 +161417,161417 +175117,175117 +306881,245654 +87890,87890 +179275,179275 +148729,148729 +173064,173064 +40628,40628 +116998,215341 +15364,15364 +192457,192457 +170416,170416 +143515,143515 +218333,218333 +262941,62219 +1035,1035 +301255,301255 +31563,31563 +300905,300905 +122298,122298 +201825,201825 +418059,418059 +318243,318243 +220517,220517 +256788,256788 +387866,387866 +249381,249381 +163602,163602 +345868,345868 +279613,279613 +251678,245654 +218121,218121 +248065,176189 +244992,244992 +59946,91872 +244608,244608 +171273,171273 +131260,131260 +249277,249277 +2093,2093 +220520,31260 +318560,318560 +299684,299684 +181687,181687 +103886,103886 +238799,238799 +254708,169426 +254386,254386 +280480,280480 +204516,204516 +214887,214887 +91514,218333 +66356,91872 +176165,176165 +158435,158435 +218479,218479 +43528,43528 +125678,125678 +191051,191051 +266164,266164 +3307,20551 +165401,165401 +198830,198830 +216459,216459 +56692,56692 +253499,253499 +154825,154825 +214880,214880 +244331,244331 +252153,252153 +299169,299169 +255692,28143 +160495,160495 +12002,12002 +203417,203417 +207830,207830 +155362,155362 +25669,25669 +329465,329465 +198740,463 +234477,234477 +338957,338957 +363247,230802 +354570,268864 +53953,215341 +230244,230244 +277700,277700 +166384,166384 +16747,16747 +285984,37046 +331265,156009 +55600,55600 +334986,334986 +264052,264052 +179803,155068 +256570,256570 +227460,234 +8125,8125 +281549,281549 +173,37904 +238992,238992 +214029,214029 +23540,23540 +36235,36235 +110277,110277 +314503,314503 +317457,221194 +162286,162286 +239472,239472 +156566,156566 +272738,272738 +147151,147151 +30645,30645 +359970,359970 +260678,34635 +223770,223770 +160851,160851 +37380,37380 +586,586 +197443,197443 +239464,239464 +177352,39938 +156943,9217 +224597,54625 +342900,342900 +171905,164928 +528,7854 +27588,5782 +79127,79127 +112,112 +275467,275467 +241590,241590 +316546,244522 +172047,172047 +11971,11971 +217780,217780 +122522,134726 +30933,143741 +227456,227456 +332290,332290 +117915,117915 +212402,212402 +131287,131287 +30957,30957 +270314,270314 +245643,245643 +267319,267319 +145659,145659 +119788,119788 +201921,201921 +197405,197405 +219215,219215 +228328,228328 +137269,137269 +148575,148575 +41002,41002 +1345,1345 +228867,279613 +347305,347305 +173442,22545 +12962,12962 +341945,146886 +297129,297129 +272739,272739 +234671,161936 +12891,40354 +66056,66056 +232918,232918 +177590,177590 +309630,40692 +113997,181304 +26990,26990 +386368,386368 +295785,295785 +202408,202408 +904,904 +24800,24800 +12902,93 +196526,196526 +235488,148949 +231218,231218 +8203,8203 +16992,16992 +154458,154458 +148319,148319 +151004,134726 +228504,228504 +26997,26997 +294612,294612 +355483,355483 +329845,92828 +2181,2181 +233571,233571 +351817,176189 +284818,18602 +363307,363307 +8051,8051 +1041,1041 +233262,233262 +823,823 +239307,239307 +291508,291508 +222514,160010 +164127,93 +316624,316624 +172931,172931 +193214,193214 +195137,195137 +245476,245476 +9440,9440 +21523,181530 +98229,98229 +681,681 +94,90419 +300217,300217 +169124,169124 +191977,363622 +343562,282524 +223953,223953 +35052,35052 +177524,177524 +38996,38996 +129948,129948 +268201,244271 +195560,195560 +295293,295293 +38054,38054 +302098,239188 +372559,372559 +15817,15817 +245487,245487 +342848,161936 +240,240 +382843,382843 +13642,13642 +197070,315610 +195162,195162 +338760,338760 +203427,203427 +298065,298065 +108906,108906 +156689,146652 +195314,195314 +28181,28181 +35570,35570 +368061,368061 +491,491 +368058,368058 +276894,14996 +199966,27162 +91536,148575 +158889,93260 +194517,194517 +108784,69789 +271529,271529 +204027,204027 +241266,241266 +324090,324090 +270971,37380 +72287,21763 +300753,300753 +156776,156776 +24068,24068 +210296,210296 +177678,177678 +313889,313889 +253284,14996 +224,224 +368305,368305 +104710,104710 +161866,176189 +143884,143884 +27976,11170 +18098,18098 +40793,40793 +242804,242804 +244654,244654 +221,221 +1382,1382 +157403,157403 +139898,139898 +52461,52461 +106217,106217 +98351,98351 +278,66056 +318553,220877 +287084,287084 +295607,295607 +202077,202077 +279254,279254 +230080,230080 +228855,228855 +305682,305682 +134352,134352 +132028,24800 +256589,256589 +271319,117959 +191300,191300 +19600,19600 +200077,200077 +281474,281474 +26566,26566 +554,554 +22825,22825 +255924,119432 +299252,299252 +217861,217861 +217449,217449 +41066,17392 +165838,54625 +194880,194880 +82421,93260 +298231,298231 +178336,178336 +171233,171233 +293889,293889 +168917,134726 +325022,325022 +146312,146312 +274124,274124 +173090,173090 +66505,66505 +153065,153065 +281466,117915 +43443,43443 +154086,154086 +198454,198454 +176371,170042 +171669,171669 +95103,95103 +95064,69789 +362452,362452 +242684,242684 +301767,181304 +244536,244536 +205597,28143 +65901,224517 +371433,371433 +296108,167791 +35497,35497 +254127,254127 +252526,98229 +218509,218509 +97903,97903 +227515,227515 +1115,463 +299960,299960 +174570,146652 +1634,54625 +157809,126042 +182340,248562 +141517,141517 +17329,17329 +136991,136991 +150999,150999 +228660,10547 +160018,134726 +261114,261114 +82420,93260 +303553,303553 +306481,306481 +327,327 +207243,207243 +61692,61692 +159504,159504 +25821,25821 +340041,204583 +161882,161882 +104363,283355 +131646,131646 +200954,110277 +158275,148575 +318983,318983 +208024,208024 +37628,37628 +273477,273477 +164949,164949 +191231,191231 +300327,300327 +9220,9220 +55427,21763 +243759,243759 +141423,141423 +130176,130176 +206051,206051 +185589,195421 +145639,145639 +352697,352697 +276042,155987 +342444,239942 +360692,360692 +188547,188547 +175199,19857 +281194,281194 +184151,121408 +25568,298231 +183571,183571 +206931,206931 +939,939 +329873,245487 +284936,284936 +129736,11971 +180680,180680 +347137,347137 +355326,355326 +368017,368017 +230933,230933 +75449,75449 +72225,214887 +213984,363622 +1608,1608 +360265,360265 +223750,141572 +69779,69779 +284108,284108 +83195,144733 +326945,155426 +551,10630 +387780,387780 +311715,311715 +60,40692 +328908,328908 +229892,26990 +163154,163154 +234669,234669 +35815,35815 +60153,115746 +284121,284121 +207691,207691 +142326,142326 +296345,2511 +352574,352574 +102548,102548 +6830,6830 +351526,351526 +233961,233961 +82168,82168 +187377,187377 +5737,5737 +1301,124742 +135382,135382 +271869,192291 +375651,375651 +127518,127518 +340677,340677 +140933,140933 +298638,157969 +332386,332386 +18100,491 +328413,322289 +241477,241477 +181796,97842 +137297,137297 +154246,154246 +44163,44163 +22141,22141 +149155,149155 +281526,281526 +13823,13823 +354544,294484 +387378,387378 +242722,17392 +183880,105134 +152162,152162 +268620,268620 +16986,16986 +67492,146439 +192074,192074 +71671,71671 +116,116 +1822,1822 +105,105 +397385,397385 +207336,207336 +41916,41916 +85897,215341 +156091,156091 +63268,63268 +257518,36932 +252752,252752 +310448,256952 +219100,219100 +45986,45986 +358504,10547 +1540,1540 +121410,121410 +39953,169255 +357726,154203 +256606,256606 +338628,338628 +313010,39463 +8989,8989 +340325,340325 +3955,143741 +322622,322622 +302388,302388 +229265,229265 +16395,2453 +91080,91080 +251412,251412 +257614,257614 +124,124 +358320,255984 +335212,102652 +85256,85256 +12995,12995 +213266,213266 +833,833 +246761,246761 +174660,174660 +10,10 +145371,145371 +123570,123570 +159473,159473 +89409,123123 +354,354 +27364,18602 +295262,295262 +359152,223040 +37836,37836 +244049,244049 +214000,31594 +291859,291859 +282954,282954 +163642,163642 +113873,113873 +151007,151007 +2842,2842 +152470,152470 +206915,206915 +231484,231484 +221318,221318 +268012,268012 +245422,219215 +327711,271324 +174226,174226 +210232,210232 +134253,277659 +353470,463 +2397,463 +10640,164153 +34084,172308 +126100,126100 +368432,368432 +240855,240855 +176544,176544 +362986,362986 +42452,42452 +355433,355433 +269595,269595 +249703,217780 +826,826 +624,624 +164265,164265 +15818,15818 +216092,213460 +121297,245961 +68264,68264 +527,7854 +298102,298102 +38159,38159 +147303,93 +309110,309110 +104020,104020 +103,103 +7805,7805 +299317,191189 +180020,180020 +416851,416851 +25643,25643 +341530,341530 +55829,61692 +288169,221965 +159503,159503 +303731,303731 +226518,226518 +217085,217085 +299121,299121 +104347,104347 +284778,294484 +226520,226520 +301257,301257 +157526,157526 +291962,291962 +160610,160610 +180899,180899 +182694,182694 +394,394 +224821,179275 +338476,203993 +9203,9203 +94246,94246 +268586,432 +98527,98527 +233020,233020 +150312,150312 +173101,173101 +128721,128721 +297985,760 +89952,93 +255262,31260 +163474,163474 +314088,251658 +272380,272380 +256997,256997 +339906,339906 +298371,298371 +438,438 +19100,19100 +1897,13 +98,35052 +396989,396989 +117985,13 +154386,154386 +240271,240271 +53093,53093 +1829,105134 +191597,176165 +123955,123955 +811,811 +202583,202583 +310632,310632 +247236,221194 +171879,171879 +175324,175324 +183006,183006 +127024,127024 +200853,284435 +230085,230085 +205716,205716 +137649,137649 +165986,165986 +394106,199792 +17396,17396 +302425,302425 +177802,134726 +27627,27627 +348220,348220 +272533,272533 +219101,219101 +369646,369646 +302524,302524 +204836,204836 +855,855 +339958,339958 +300442,300442 +139030,139030 +15,39463 +30381,30381 +1159,1159 +131014,93 +18258,176920 +281946,233312 +66837,66837 +17223,17223 +344258,344258 +165872,165872 +403441,403441 +223855,223855 +253608,253608 +218421,218421 +297978,297978 +3284,294484 +91873,91873 +8045,8045 +151771,151771 +255674,191862 +119591,119591 +205317,205317 +191876,191876 +33604,33604 +132372,121408 +143405,143405 +225244,14996 +199,199 +139991,66188 +377470,377470 +50768,50768 +271615,217372 +2122,2122 +139771,103885 +2338,2338 +331050,271518 +42910,42910 +204505,204505 +335609,335609 +1568,1568 +373167,373167 +350636,350636 +395375,395375 +283294,283294 +1261,1261 +230,131646 +254591,181521 +254226,254226 +164338,164338 +365104,365104 +232988,363622 +312267,312267 +1403,1403 +264982,264982 +113401,85256 +316858,316858 +19237,155362 +272453,257501 +111124,37111 +1198,204583 +23094,23094 +249746,91312 +257769,257769 +349955,244521 +42487,50 +253759,253759 +318472,712 +159109,159109 +330038,330038 +238638,238638 +326933,294484 +205418,31260 +260300,260300 +257527,257527 +293835,293835 +10093,35052 +342562,342562 +134453,134453 +106,106 +22038,22038 +287938,223953 +261393,261393 +191894,191894 +254192,199042 +929,929 +229491,229491 +393672,393672 +4099,4099 +216201,18 +94362,94362 +304285,463 +5716,5716 +2507,2507 +310192,310192 +195856,195856 +366162,244522 +60435,256589 +242,242 +194626,194626 +271088,271088 +57390,195137 +260789,163474 +264198,54625 +9446,9446 +232361,232361 +199383,199383 +344554,344554 +219217,219217 +288513,288513 +167513,167513 +331224,176189 +12495,12495 +218530,218530 +338093,338093 +142852,125678 +179572,179572 +165950,165950 +180040,180040 +878,878 +175549,175549 +350205,350205 +181810,181810 +215841,215841 +15126,15126 +24310,24310 +29223,29223 +300001,300001 +71836,156336 +332944,332944 +157001,121408 +21441,21441 +22,22 +176229,176229 +131366,142326 +244995,244995 +172220,91872 +244918,244918 +254713,254713 +8098,8098 +393325,393325 +187700,187700 +326934,294484 +352418,352418 +2987,2987 +1915,1915 +105037,105037 +400602,400602 +244191,244191 +293207,293207 +318985,3076 +181524,155068 +223740,223740 +331820,331820 +322656,322656 +347811,192135 +176083,176083 +246663,246663 +358124,93 +363369,363369 +2065,2065 +206803,206803 +359402,359402 +248125,248125 +223931,2511 +16496,16496 +38863,38863 +1231,1231 +142992,142992 +264647,264647 +230889,230889 +200511,200511 +318546,318546 +215842,215842 +366994,366994 +323156,323156 +38823,38823 +72991,72991 +214396,214396 +194690,194690 +252929,252929 +331401,331401 +371972,371972 +67877,67877 +147154,9446 +3228,3228 +131325,85256 +350458,350458 +267609,267609 +254018,254018 +332321,332321 +166226,166226 +197097,197097 +172385,172385 +157820,113294 +33451,24310 +184424,71 +355997,342070 +63975,63975 +196202,196202 +19999,19999 +915,915 +168,168 +148951,148951 +148203,148203 +266966,244271 +306882,245654 +230791,230791 +216091,213460 +212516,212516 +336929,336929 +255664,255664 +38713,36553 +481,481 +39684,39684 +361241,361241 +196,196 +253214,253214 +248158,248158 +163413,163413 +66,5737 +148943,131357 +6411,2453 +269603,269603 +22877,22877 +348096,348096 +200057,200057 +138431,138431 +258444,258444 +179460,45986 +167270,1261 +201,201 +181819,181819 +30618,30618 +1219,1219 +272682,272682 +232595,232595 +285533,285533 +283317,180263 +371947,371947 +347013,347013 +119,119 +345976,124742 +204,204 +147170,93 +312859,312859 +306709,306709 +492,492 +143986,143986 +125548,125548 +233678,233678 +902,902 +21550,21550 +226501,135382 +262114,262114 +101785,101785 +328326,245961 +166857,19600 +282853,13 +116954,116954 +195043,150312 +115,115 +186659,163967 +220133,220133 +266083,266083 +20542,20542 +270871,270871 +29934,29934 +34887,34887 +275044,275044 +1499,1499 +330592,330592 +149776,149776 +129051,129051 +3072,54625 +195544,176229 +146910,146910 +315695,315695 +255675,255675 +285905,285905 +330608,330608 +5206,5206 +43022,43022 +300010,300010 +204135,204135 +155731,123540 +285265,285265 +156714,156714 +358557,279537 +161617,45315 +312318,232832 +131111,131111 +41863,35052 +225167,225167 +350736,350736 +295260,271324 +253664,253664 +594,594 +24827,24827 +40209,40209 +267127,267127 +18745,18745 +283619,232832 +367517,367517 +175223,150999 +149951,149951 +196496,149951 +322616,322616 +276830,276830 +174837,174837 +246200,246200 +312251,312251 +40270,40270 +282414,282414 +325698,325698 +619,619 +27225,27225 +39339,39339 +217398,217398 +172381,104006 +383499,352697 +494,494 +2251,2251 +302260,302260 +223376,223376 +216849,36218 +349463,349463 +169794,169794 +284584,284584 +24417,24417 +57925,57925 +302312,239188 +175239,143884 +301716,301716 +286537,172081 +143175,143175 +54137,54137 +338460,281259 +309105,284435 +13308,13308 +244916,244916 +274841,274841 +193308,166384 +1544,1544 +75165,75165 +175307,463 +526,526 +192860,192860 +99975,85256 +215471,215471 +22192,22192 +214484,214484 +280136,280136 +256852,256852 +94104,94104 +120523,120523 +376683,376683 +364766,318977 +140711,93 +106662,2651 +367518,318184 +26,26 +41010,93 +124172,16992 +37919,37919 +230267,230267 +174973,174973 +204184,204184 +361,361 +280453,280453 +275913,144592 +2081,2081 +38718,38718 +371077,371077 +251551,176165 +3565,3565 +254683,254683 +38545,38545 +2393,463 +171662,171662 +34194,5782 +13780,13780 +316786,316786 +337787,337787 +43868,43868 +215840,215840 +218804,218804 +13884,13884 +31497,31497 +240567,240567 +271321,271321 +1032,1032 +270109,491 +295577,260300 +294702,294702 +351605,11 +366310,244271 +352695,352695 +183231,183231 +155695,155695 +267813,267813 +366683,366683 +143185,134726 +41933,174226 +370164,370164 +320,463 +170604,170604 +38343,38343 +157917,157917 +38862,38862 +4636,4636 +235555,281655 +8190,8190 +109125,20551 +12692,12692 +178054,141517 +328124,284378 +356414,356414 +158900,158900 +144041,144041 +225482,225482 +256804,256804 +274450,274450 +309430,309430 +183685,183685 +221769,281655 +92319,92319 +222542,222542 +320718,320718 +351476,295486 +152,152 +122294,69789 +297486,297486 +336755,70323 +377061,377061 +334011,334011 +166571,166571 +315727,315727 +61487,61487 +254,254 +140,140 +112138,112138 +66510,24310 +398,398 +208895,208895 +7480,7480 +237,237 +364186,220308 +128442,128442 +146816,146816 +295905,295905 +128667,143741 +73664,271321 +32125,32125 +90040,90040 +145189,85256 +226634,226634 +267378,267378 +102435,102435 +320390,320390 +986,986 +34297,34297 +360153,244271 +12761,12761 +375852,199792 +180852,180852 +269752,269752 +193728,193728 +172933,172933 +14254,150 +266967,244271 +244513,177524 +73369,154203 +162009,162009 +168609,168609 +206940,93 +252399,170416 +182189,182189 +241831,241831 +8129,8129 +22484,9674 +49,49 +21920,21920 +235014,235014 +205610,205610 +88827,10630 +17419,13 +330950,330950 +123607,123607 +280748,227456 +300683,300683 +273703,273703 +63170,63170 +251747,251747 +24742,24742 +227072,227072 +163,1544 +6351,6351 +248861,248861 +269725,22345 +47055,281655 +202977,202977 +123239,20100 +2808,2808 +103185,103185 +55697,55697 +301919,161936 +210274,210274 +85325,85325 +235375,235375 +171011,171011 +358816,358816 +4396,192074 +207572,207572 +212346,146791 +195571,146652 +294514,294514 +358981,247367 +46396,16986 +355888,355888 +146418,146418 +24773,24773 +186375,123540 +269968,269968 +6901,6901 +293678,293678 +259298,259298 +22348,22348 +15511,15511 +253618,207830 +314745,314745 +120,120 +3097,3097 +304668,304668 +228372,228372 +3800,156566 +185257,63888 +112686,125678 +205046,205046 +342894,342894 +142131,36218 +701,701 +206084,206084 +236217,206915 +356754,356754 +1117,1117 +323255,323255 +226605,226605 +392023,392023 +3931,174785 +220632,220632 +147253,259298 +229713,229713 +58936,58936 +248005,248005 +277927,63975 +413246,413246 +245354,239307 +223215,223215 +165948,165948 +172996,319966 +273910,273910 +381278,381278 +335275,335275 +1111,1111 +329716,329716 +198487,134726 +169611,463 +340364,143884 +157413,157413 +273814,273814 +138233,69789 +30658,30658 +180199,180199 +402676,402676 +28089,28089 +131835,174973 +1234,1234 +207729,207729 +343844,307305 +183284,24417 +220792,220792 +84732,84732 +411567,411567 +5072,5072 +111417,111417 +715,715 +107255,1159 +259061,259061 +230303,279613 +156455,183394 +423,423 +303551,69779 +173761,46213 +259081,143884 +216632,216632 +142079,142079 +33154,33154 +268504,268504 +282391,161614 +302520,302520 +360206,360206 +472,472 +385680,385680 +175293,175293 +174078,174078 +28259,28259 +298229,162007 +139993,107529 +152242,38159 +293348,293348 +155969,155969 +40398,463 +38386,38386 +113289,113289 +34585,50 +1107,152 +205125,14996 +325555,325555 +157,157 +339484,339484 +340,340 +17710,9625 +1887,121408 +157096,157096 +179303,147020 +267271,58421 +230383,230383 +26457,26457 +70,70 +229218,13 +216428,216428 +284217,284217 +203430,203430 +217083,7854 +9441,9441 +12477,12477 +386937,386937 +142057,93 +352179,191189 +294693,294693 +362020,362020 +266965,244271 +242653,242653 +16267,2842 +122842,122842 +252446,122515 +303672,303672 +272427,272427 +317434,317434 +250881,250881 +96007,154203 +85005,85005 +163805,163805 +233208,101785 +42673,42673 +24703,11170 +12750,12750 +271060,133038 +216497,216497 +319807,319807 +302336,271518 +71074,71074 +103092,103092 +321277,35570 +123499,123499 +104955,19600 +136280,136280 +329226,329226 +256320,256320 +278553,278553 +181345,181345 +357028,102548 +127997,127997 +271519,271519 +6887,463 +402663,402663 +339214,339214 +6205,6205 +35435,35435 +347805,347805 +218208,14996 +351538,351538 +71061,472 +299963,299963 +120217,120217 +266964,244271 +28,28 +193927,104020 +265256,265256 +317311,317311 +29937,319966 +233868,233868 +1563,1563 +21551,21551 +289081,289081 +1662,1662 +592,592 +62871,62871 +177354,177354 +191925,191925 +314582,55670 +330174,330174 +185538,185538 +57660,36553 +19622,19622 +176558,176558 +249590,249590 +315881,179172 +903,903 +287589,287589 +242529,242529 +337,337 +17053,204583 +259374,259374 +343526,343526 +342372,342372 +31105,191300 +198287,127398 +35503,12 +300583,300583 +303051,303051 +274466,150999 +218293,218293 +366752,366752 +220367,220367 +66588,20100 +263895,263895 +231696,231696 +180592,180592 +8107,105134 +323613,323613 +295488,127398 +399941,399941 +277597,277597 +232,232 +91984,91984 +171726,256999 +65282,65282 +146221,146221 +274428,274428 +380165,353545 +315060,294484 +466,466 +98918,281655 +180901,180901 +1295,1295 +258148,258148 +163370,93 +249,249 +730,730 +65564,123955 +37907,37907 +205158,178900 +238546,238546 +249763,233961 +257732,257732 +180771,180771 +230305,279613 +142271,67877 +197572,54625 +2381,2381 +125921,13 +243430,243430 +131904,131904 +75358,75358 +37387,37387 +198525,198525 +352454,352454 +63759,63759 +67239,13 +145588,145588 +187273,187273 +36648,36648 +308989,308989 +38992,38992 +143404,143404 +248918,248918 +291847,291847 +63543,63543 +277458,277458 +285775,257501 +227466,227466 +216070,216070 +247585,247585 +144553,144553 +224272,224272 +157026,69789 +184824,274428 +56931,16496 +138649,148575 +109291,9203 +285894,206931 +322561,244271 +3720,3720 +37358,37358 +192945,143515 +144529,144529 +118174,118174 +270847,270847 +338376,338376 +22245,22245 +193737,43443 +238393,21241 +387514,387514 +32412,32412 +215312,215312 +261594,54625 +925,925 +160902,148575 +212281,212281 +128,128 +559,559 +276086,276086 +322588,322588 +155463,125678 +92190,92190 +208773,159473 +118695,118695 +21133,21133 +195528,146886 +113636,113636 +253684,253684 +141007,93 +313262,313262 +65515,65515 +442,442 +281515,281515 +157958,472 +209671,209671 +358085,358085 +211716,332686 +153507,35497 +369548,369548 +105593,105593 +7,7 +169416,169416 +19526,19526 +220775,178900 +360366,264220 +156496,156496 +125752,125752 +210290,146652 +9910,9203 +223049,223049 +238656,238656 +327890,304051 +73,73 +193739,66505 +348554,348554 +84,84 +330036,330036 +330084,330084 +143401,143401 +142961,215341 +34707,34707 +245931,245931 +381249,381249 +198190,198190 +7858,7858 +209660,209660 +363183,123540 +169318,169318 +1270,1270 +168681,168681 +252556,252556 +36946,36946 +252877,252877 +197831,197831 +335427,335427 +16772,120217 +214032,214032 +137330,137330 +266722,266722 +209324,209324 +99,99 +155255,256960 +285826,163967 +38765,38765 +359394,295486 +404431,404431 +237211,237211 +40393,40393 +324914,324914 +166286,166286 +327056,327056 +193322,193322 +134157,134157 +3570,3570 +130060,478 +180564,93 +136955,136955 +189660,159109 +407297,407297 +12589,12 +68182,68182 +153318,153318 +283934,283934 +118063,118063 +36522,36522 +187680,187680 +246912,432 +402679,402679 +187653,187653 +292126,292126 +3353,3353 +68820,68820 +175621,175621 +273264,273264 +368789,368789 +361788,361788 +144239,144239 +248949,248949 +205494,143884 +304531,69789 +123096,142079 +714,27627 +39217,39217 +209001,209001 +168998,148575 +356952,356952 +196354,196354 +88408,88408 +172242,256804 +130,130 +262201,170771 +295948,295948 +17025,17025 +153064,153064 +141736,141736 +393165,393165 +13551,13551 +27848,27848 +245658,245658 +253635,253635 +129459,129459 +317504,317504 +342032,342032 +102237,102237 +257283,257283 +234190,234190 +352764,271518 +144826,144826 +366495,268864 +310789,310789 +12005,12005 +222219,222219 +154875,154875 +370581,370581 +363289,223040 +1442,1442 +91620,91620 +191004,34635 +206150,206150 +32666,32666 +66171,66171 +279869,279869 +382,382 +634,634 +71906,71906 +281152,24773 +40760,40760 +168788,196202 +411875,411875 +231038,231038 +98315,98315 +204574,204574 +2165,2165 +341496,341496 +222407,222407 +261901,261901 +21632,171011 +325348,26457 +262547,262547 +224904,224904 +350948,350948 +54361,11170 +46255,46255 +336131,336131 +6819,463 +770,770 +383206,302723 +21954,21954 +390340,359970 +122240,29368 +306321,306321 +199904,199904 +331212,191189 +2596,2596 +313807,313807 +281960,204583 +132,132 +207207,207207 +159581,159581 +36811,36811 +111105,111105 +25224,25224 +89910,89910 +358800,271518 +364641,164928 +381308,92828 +23679,23679 +86246,86246 +300751,300751 +62220,62220 +40237,295374 +255615,255615 +247342,247342 +374595,374595 +216597,171273 +173156,85256 +361850,361850 +267058,267058 +112092,112092 +40990,40990 +2603,2603 +285036,285036 +1293,1293 +187988,6830 +195503,123499 +228959,119432 +2569,2569 +218920,218920 +280789,171273 +42124,12995 +235817,235817 +172737,281655 +292974,216632 +124052,124052 +249411,855 +206327,206327 +231327,171668 +31759,1540 +322563,244271 +214293,214293 +31790,31790 +258074,258074 +406291,364073 +312786,312786 +638,638 +397897,282524 +250442,250442 +299607,205046 +40769,40769 +54307,54307 +31552,9203 +322562,244271 +15954,15954 +17240,17240 +381819,160495 +264476,264476 +366023,176189 +316622,316622 +15510,15510 +987,987 +189052,189052 +296043,296043 +126996,126996 +114031,114031 +104581,104581 +314580,136888 +397393,397393 +320527,244271 +1917,463 +58110,245658 +378758,378758 +383467,294484 +125,125 +424,424 +4209,4209 +31624,31624 +154509,27162 +158339,463 +102104,102104 +211364,211364 +255507,255507 +15953,9203 +6779,93 +67888,67888 +270143,270143 +362976,362976 +322045,263918 +192802,192802 +162388,123123 +191972,191972 +9027,9027 +37141,36553 +400205,400205 +285253,285253 +166317,166317 +35761,35761 +233896,233896 +325810,69789 +231567,231567 +2570,73 +300930,760 +620,38996 +235922,235922 +37371,208895 +205867,205867 +15600,15600 +119391,119391 +443,443 +66214,66214 +191963,638 +8730,8730 +137031,137031 +25261,25261 +317231,317231 +118536,118536 +340897,340897 +949,949 +41749,41749 +215463,261901 +225818,225818 +11229,11229 +264164,176189 +271754,271754 +173634,24310 +277699,277699 +189453,189453 +262540,262540 +234260,234260 +3085,3085 +150293,150293 +218311,218311 +204286,204286 +81640,81640 +92044,92044 +355200,176189 +322589,322589 +400366,400366 +216439,216439 +172503,101721 +85036,85036 +307386,228855 +75476,75476 +2961,2961 +343362,343362 +4192,54625 +143147,9220 +262477,161533 +181293,181293 +241987,241987 +253506,253506 +295944,295944 +4491,4491 +117,117 +281075,233867 +275215,123540 +228411,228411 +190400,190400 +151247,151247 +364655,364655 +73316,73316 +133632,79828 +311322,311322 +123219,123219 +217,217 +191301,191301 +227758,227758 +401216,401216 +8481,8481 +19764,7854 +392449,233867 +309113,14996 +282435,282435 +71882,71882 +340865,222509 +148601,148601 +173105,173105 +10550,10550 +304510,304510 +35488,35488 +162823,162823 +280032,280032 +266219,244536 +40381,118 +67185,332944 +350185,350185 +118705,144733 +12166,2651 +386366,170042 +286428,20100 +226519,226519 +321108,321108 +198138,198138 +172225,256804 +277448,264982 +257759,257759 +359029,359029 +9364,9364 +239840,239840 +247417,247417 +43152,43152 +220588,220588 +344277,344277 +193621,193621 +160081,160081 +181495,181495 +589,104710 +322785,322785 +162,162 +220827,139976 +25277,25277 +402283,402283 +265683,265683 +358737,358737 +334889,331787 +229130,107529 +144864,69789 +119637,14996 +19643,19643 +384213,384213 +230200,230200 +180956,147949 +267401,267401 +300192,12333 +287871,287871 +417197,417197 +286158,286158 +108018,2093 +243358,243358 +67254,67254 +295192,295192 +65907,65907 +247104,712 +262208,262208 +256874,146652 +15290,15290 +152765,215341 +39206,39206 +365056,104006 +36399,36399 +237860,237860 +298635,298635 +248900,248900 +111148,111148 +353152,284435 +129050,129050 +159692,159692 +37120,37120 +10997,10997 +361958,361958 +156138,156138 +128898,128898 +29073,29073 +234396,234396 +154182,154182 +144270,144270 +136056,12002 +231280,231280 +317582,317582 +153,432 +218129,218129 +1042,1042 +204801,204801 +319793,319793 +195372,195372 +143157,143157 +304847,304847 +19841,19841 +245271,136063 +382518,382518 +324413,324413 +66849,66849 +366456,366456 +284775,284775 +164812,164812 +210040,210040 +391795,391795 +256066,54625 +157789,157789 +181960,181960 +299027,158899 +216199,134726 +312959,256589 +2375,2375 +32441,32441 +229414,229414 +209325,173090 +343322,343322 +193867,193867 +29972,29972 +16366,16366 +198609,198609 +283387,283387 +192455,121921 +274093,274093 +16991,16991 +31483,31483 +72,902 +170587,206915 +336195,336195 +389820,389820 +80771,80771 +5781,5781 +383109,383109 +251293,251293 +236461,173090 +4394,13 +288080,288080 +340237,340237 +370789,370789 +403754,230080 +296694,1540 +1116,1116 +203780,2651 +296626,296626 +351594,351594 +118247,118247 +253185,253185 +344789,344789 +329450,105 +266504,266504 +15318,15318 +300936,137297 +350755,70323 +43262,21241 +245352,239307 +90305,90305 +142296,142296 +81453,81453 +358386,358386 +205045,227758 +420087,420087 +225729,225729 +258309,258309 +303954,303954 +201248,201248 +1262,61692 +37400,37400 +299592,299592 +260757,260757 +152959,13 +38531,38531 +333539,333539 +1484,1484 +18866,18866 +103649,28143 +200454,200454 +395623,395623 +257193,155068 +256885,256885 +3439,3439 +224483,224483 +256,256 +267979,267979 +205507,122515 +251433,251433 +281258,204472 +324853,324853 +324711,324711 +41627,41627 +4741,67254 +8095,8095 +345155,144592 +255708,255708 +184346,184346 +244,244 +216094,213460 +37196,37196 +360896,360896 +127493,127493 +276925,276925 +237031,237031 +127127,125678 +169147,169147 +384,384 +234621,234621 +173200,125678 +520,61692 +5867,5867 +137155,137155 +245659,245659 +299452,176165 +29839,29839 +4218,4218 +358690,358690 +145203,145203 +345266,345266 +1260,1260 +316287,128882 +40529,39463 +2389,2389 +364405,93 +66587,66587 +420805,420805 +14,5781 +142402,24310 +355224,355224 +76150,76150 +216658,134726 +245045,245045 +354886,244521 +232666,232666 +200934,200934 +179719,105134 +199723,199723 +236781,218479 +23107,23107 +2529,2529 +9341,9341 +175,175 +307044,307044 +128664,85256 +368676,368676 +154906,355224 +313531,313531 +298060,298060 +232824,328565 +338434,313889 +199793,199793 +158109,158109 +353815,353815 +19427,19427 +270293,270293 +798,798 +20134,20134 +8195,8195 +185123,69789 +305761,305761 +345377,345377 +67928,123607 +21791,21791 +264239,163412 +215613,215613 +167763,125678 +326937,294484 +362541,14996 +257066,257066 +367379,367379 +317372,317372 +198707,277659 +267475,267475 +264196,91872 +91523,91523 +295945,295945 +158572,158572 +112373,112373 +311900,311900 +260407,260407 +257,257 +154910,154910 +38506,38506 +250396,250396 +119866,9203 +269160,269160 +281619,281619 +144415,144415 +176530,176530 +2639,2639 +275916,275916 +284587,284587 +251890,251890 +22143,22143 +274533,274533 +341974,341974 +30,256680 +188164,188164 +130882,130882 +1044,1044 +94480,94480 +2288,712 +11057,11057 +209003,14105 +184491,184491 +405537,405537 +2162,54625 +168679,168679 +45748,93 +343900,343900 +143096,143096 +163841,163841 +137423,125548 +286,286 +118418,118418 +270636,270636 +331571,331571 +30367,30367 +251053,347013 +129294,129294 +314530,491 +246297,246297 +313065,313065 +354132,354132 +133956,133956 +25071,43443 +200890,200890 +40832,50 +6366,6366 +319971,319971 +15839,15839 +36400,36400 +214234,214234 +124965,91872 +2266,2266 +103686,103686 +243797,243797 +17161,17161 +284616,284616 +9215,9215 +285157,146652 +393973,393973 +142121,121408 +233955,233955 +223,223 +139899,139899 +201186,201186 +178570,178570 +125311,125311 +204431,147949 +67180,67180 +231819,171131 +272409,272409 +161226,144553 +228668,91872 +41302,41302 +1155,1155 +691,691 +255570,255570 +212765,212765 +390173,345584 +302280,302280 +369142,369142 +322524,322524 +254513,254513 +124827,124827 +511,511 +207016,169124 +172547,172547 +8172,8172 +158408,131357 +333055,407297 +73070,73070 +191572,191572 +231999,231999 +307963,307963 +192934,192934 +815,815 +7865,7865 +531,531 +420077,420077 +205127,205127 +344768,246684 +308621,308621 +122588,91872 +88126,36553 +3972,13 +371688,42 +269199,269199 +193557,193557 +34373,34373 +206757,206757 +83667,83667 +145633,69789 +1589,1589 +2932,463 +140535,140535 +1758,54625 +632,175117 +287607,244992 +349963,349963 +274037,274037 +255393,255393 +402024,402024 +85250,85250 +7866,7866 +158340,463 +189848,43443 +258308,258308 +293264,293264 +30539,30539 +144568,175095 +41429,41429 +380938,206718 +322421,322421 +2238,2639 +122,368061 +631,215311 +212956,127024 +347112,347112 +23686,23686 +32928,152 +271530,271530 +279720,279720 +327831,327831 +168274,168274 +372631,372631 +225910,225910 +111732,111732 +283212,283212 +171479,171479 +331398,186751 +367662,367662 +271785,271785 +200847,200847 +16216,93 +20,20 +23418,91 +283649,283649 +369751,199561 +270138,270138 +309129,309129 +383469,294484 +145976,84419 +22897,22897 +187687,133038 +247314,147151 +413260,413260 +132544,132544 +216403,216403 +192312,192312 +322195,322195 +18748,18748 +298281,298281 +223278,155426 +265017,265017 +39188,39188 +172552,172552 +253398,253398 +111,111 +230769,230769 +76417,76417 +246816,246816 +134520,134520 +123609,123607 +265,265 +153623,153623 +237087,237087 +301607,257501 +138704,138704 +294230,294230 +3870,3870 +34615,93 +153097,153097 +32674,32674 +234248,234248 +77,22143 +176103,20551 +168054,168054 +883,883 +27356,27356 +3837,3837 +99392,99392 +4174,4174 +232520,232520 +117960,117960 +287322,287322 +172971,172971 +5620,5620 +178944,178944 +79073,79073 +181797,181797 +412865,284189 +265537,265537 +943,463 +283797,283797 +276502,875 +234948,234948 +179182,179182 +19995,19995 +138788,138788 +83734,83734 +16,16 +303554,107529 +237145,237145 +32484,32484 +163930,163930 +181289,220308 +368954,368954 +24037,2653 +936,181279 +55253,55253 +145645,21763 +408180,408180 +128554,128554 +22532,9203 +255907,255907 +235591,224 +350689,350689 +184459,184459 +189067,189067 +32116,32116 +234931,205359 +273779,306735 +193670,193670 +335116,335116 +254123,135382 +381356,381356 +240225,240225 +313,313 +374502,374502 +805,805 +296167,296167 +108,7854 +322564,15511 +128445,193670 +1423,1423 +4688,4688 +329939,329939 +297658,297658 +348447,348447 +276386,276386 +208775,131260 +319579,319579 +125046,125046 +368609,368609 +39927,83667 +338468,141572 +1621,1621 +386502,386502 +140717,140717 +308762,194607 +31479,16986 +117663,117663 +400995,400995 +317859,317859 +193560,193560 +219832,219832 +403116,353545 +20545,20545 +281248,281248 +280132,280132 +164698,164698 +293531,223321 +6068,6068 +147930,147930 +359764,359764 +403265,403265 +275802,275802 +312767,254386 +1194,1194 +59753,12 +267814,267814 +8170,8170 +357,357 +2533,2533 +136000,136000 +312618,312618 +420,420 +299255,223321 +154428,255708 +156548,92190 +156501,171662 +156442,156442 +1425,1425 +2476,2476 +28620,28620 +341519,341519 +67600,29603 +28829,28829 +160958,125678 +235655,235655 +69601,69601 +56786,1117 +1334,1334 +257305,257305 +408547,408547 +30241,30241 +125977,125977 +154003,154003 +304985,304985 +338069,271754 +1561,463 +251723,176189 +2795,2795 +374895,374895 +139952,139952 +5622,5622 +227212,227212 +299104,299104 +171890,171890 +228602,228602 +18485,18485 +174524,174524 +305462,305462 +128931,128931 +35505,30539 +243538,243538 +108722,108722 +276997,276997 +176524,313889 +283211,248158 +341504,158899 +233676,233676 +298586,298586 +3041,3041 +348,348 +204493,204493 +7806,7806 +256065,93 +129731,129731 +17449,17449 +297895,297895 +154301,154301 +160903,160903 +172540,172540 +182082,93 +59,59 +378200,378200 +207991,207991 +232894,113294 +317105,163967 +149809,113294 +118000,118000 +147116,147116 +283152,156546 +295681,295681 +339614,339614 +12350,12350 +183315,183315 +282439,282439 +3655,13 +287,287 +246639,163412 +191612,191612 +932,215311 +169464,65532 +203411,203411 +245197,245197 +287754,54625 +14808,14808 +3967,3967 +70519,70519 +32424,32424 +173096,173096 +185196,185196 +244769,214484 +148290,148290 +85769,85769 +21654,21654 +130877,130877 +84889,84889 +242667,242667 +385331,385331 +80006,80006 +346482,248861 +278751,278751 +217776,217776 +266993,238992 +10081,10081 +349948,349948 +261403,261403 +275870,275870 +21804,21804 +19348,19348 +278554,278553 +351077,238992 +202288,46 +179245,179245 +250561,250561 +24509,24509 +266179,266179 +2582,2582 +380135,380135 +197320,79828 +12157,12157 +197065,150999 +40425,40425 +287941,287941 +95105,95105 +129556,129556 +340790,340790 +25951,25951 +259066,14105 +302344,302344 +177659,177659 +201006,201006 +237706,237706 +124839,313889 +200058,395623 +196257,196257 +262341,262341 +383579,355433 +202982,202982 +253786,206915 +282922,282922 +257164,80771 +277670,277670 +267735,267735 +1491,13884 +271460,271460 +28723,28723 +193428,193428 +228133,228133 +191055,191055 +198522,463 +322709,322709 +4249,4249 +32944,249381 +133528,133528 +339263,93260 +174458,151022 +124969,91872 +700,700 +394334,394334 +331328,331328 +38309,38309 +148532,144733 +250780,250780 +172881,172881 +121193,121193 +229741,229741 +124668,124668 +265784,22141 +253106,253106 +250621,250621 +11168,11168 +230191,230191 +8829,8829 +17393,17393 +103660,103660 +205907,205907 +175973,175973 +312804,312804 +508,508 +319031,260180 +300700,300700 +172155,69789 +1770,1770 +37734,37734 +203102,203102 +251420,251420 +392513,345584 +369282,369282 +437,1219 +192834,192834 +283642,283642 +6866,6866 +367375,367375 +381435,381435 +302469,302469 +182704,182704 +18291,18291 +328211,328211 +177249,177249 +4583,463 +34969,16986 +78733,78733 +295535,304985 +35350,35350 +68076,68076 +143176,143176 +342921,342921 +23730,23730 +284333,71671 +55952,55952 +22551,105134 +356314,356314 +31291,31291 +313698,313698 +8490,8490 +93724,59 +24762,24762 +186995,186995 +371922,371922 +388329,388329 +129351,129351 +324242,324242 +153737,153737 +283242,283242 +165967,165967 +352606,251658 +6050,129459 +227273,227273 +90870,90870 +119012,119012 +119781,119781 +367385,367385 +352138,352138 +256067,256067 +175360,175360 +58,58 +286160,286160 +140519,140519 +207062,207062 +287228,287228 +349992,349992 +262733,262733 +376893,376893 +205498,205498 +307561,307561 +42939,29368 +66855,66855 +191538,191538 +219708,219708 +5406,5406 +164840,463 +354568,5404 +323898,323898 +35572,35572 +11945,11945 +299566,180771 +311475,311475 +323262,323262 +344114,344114 +181260,181260 +56933,56933 +379908,298047 +206509,206509 +245928,245928 +44,44 +177965,177965 +238916,98527 +341048,341048 +94902,94902 +162559,134726 +692,692 +236248,236248 +148261,148261 +231197,231197 +759,759 +166158,166158 +4095,43443 +344839,228504 +313473,266083 +635,635 +118610,118610 +63091,54625 +245357,245357 +200456,69789 +210900,210900 +192947,260605 +178613,178613 +367047,339484 +169,169 +182351,182351 +124968,91872 +223779,223779 +344105,344105 +246201,246201 +403468,403468 +377420,377420 +38032,38032 +341583,341583 +135649,135649 +433,433 +232524,232524 +10383,105134 +27048,27048 +3421,3421 +371932,371932 +340288,340288 +226213,226213 +86955,43443 +38786,38786 +170815,96913 +322703,322703 +6541,6541 +149241,149241 +96152,88408 +152237,152237 +206490,206490 +36345,102104 +1038,1038 +3202,40209 +348602,348602 +353150,353150 +84465,84465 +25729,25729 +155708,238656 +245353,239307 +183896,102104 +235344,235344 +23451,23451 +275284,275284 +407343,407343 +8924,8924 +135281,232 +130792,130792 +159469,159469 +326869,244521 +250309,250309 +296577,296577 +247694,275870 +255249,156546 +415776,415776 +193210,193210 +181617,165950 +351810,351810 +20806,20806 +99875,99875 +281658,281658 +12346,12346 +286431,286431 +100679,100679 +335869,335869 +329670,161936 +626,626 +19948,19948 +172546,172546 +108044,108044 +33643,33643 +256918,256918 +348070,129948 +379005,379005 +96792,96792 +186567,151022 +191475,1465 +40770,40770 +38548,38548 +36708,36708 +23817,23817 +39242,39242 +241491,241491 +324345,345972 +101,215311 +314577,5622 +287158,287158 +33107,33107 +255683,255683 +216381,216381 +341935,341935 +168433,168433 +215371,215371 +130899,130899 +3236,3236 +181761,181761 +313073,313073 +275969,275969 +272438,272438 +58602,559 +234828,234828 +15369,15369 +5205,5206 +171129,171129 +95234,12692 +206504,206504 +327971,327971 +267370,267370 +20022,20022 +27463,27463 +230342,230342 +713,713 +340541,340541 +5451,5451 +329,329 +205477,205477 +386405,386405 +35285,35285 +358636,358636 +177079,177079 +299,299 +369270,369270 +376747,376747 +1768,233020 +218050,218050 +124380,124380 +2516,2516 +315043,315043 +75091,75091 +109779,109779 +315953,291508 +208766,208766 +339031,339031 +169704,169704 +20133,20133 +155122,155122 +357746,357746 +301019,204505 +34127,14996 +188314,188314 +40831,40831 +39813,25669 +325096,325096 +352823,352823 +189190,189190 +358669,358669 +142325,142325 +3263,3263 +146735,43443 +391288,138161 +214,214 +126008,91872 +260710,260710 +244099,244099 +305752,305752 +155451,155451 +344697,54625 +192638,192638 +360471,360471 +327778,327778 +341166,341166 +3464,256885 +18985,18985 +270538,270538 +292564,292564 +75212,75212 +70918,98778 +275974,275974 +302917,302917 +277080,277080 +221248,156546 +226631,226631 +359124,359124 +296,296 +341165,283355 +8124,8124 +347900,273264 +388339,388339 +339,339 +1265,1265 +19301,19301 +827,827 +270836,154203 +788,34119 +275010,75165 +192547,192547 +356238,220308 +231962,195372 +257058,257058 +287742,287742 +189,13 +4616,4616 +422332,374173 +139033,139033 +180602,180602 +305986,305986 +204837,39463 +415945,294484 +14083,14083 +326936,294484 +1597,1597 +149787,149787 +283792,283792 +117942,5782 +41569,41569 +298562,298562 +255360,255360 +313718,66849 +257067,257067 +267009,267009 +361025,361025 +96749,96749 +242520,242520 +140125,140125 +325414,325414 +3139,3139 +202721,202721 +94389,94389 +130486,130486 +353942,353942 +150926,37380 +380226,136063 +102148,102148 +377969,298047 +230408,463 +140951,215341 +4505,4505 +387515,387515 +248117,39938 +142124,142124 +22398,22398 +199223,199223 +141791,5716 +141090,141090 +177197,177197 +261145,261145 +334379,334379 +260332,207336 +311823,311823 +253652,253652 +245200,15818 +213492,213492 +300305,300305 +167698,11170 +176565,176565 +164702,139976 +137776,137776 +286344,38823 +18460,18460 +376740,376740 +127095,127095 +193668,193668 +319392,319392 +145308,145308 +140343,275802 +2604,2604 +325853,266083 +257674,257674 +256839,256839 +1419,1419 +274090,160851 +173047,173047 +2448,463 +269618,269618 +177939,148575 +343927,343927 +266448,266448 +393333,393333 +37165,54625 +154173,154173 +79131,79131 +46007,224 +29773,339214 +277025,277025 +349523,349523 +295949,295949 +334829,334829 +147,147 +231991,231991 +315631,194655 +384150,384150 +199493,199493 +114387,30869 +185709,185709 +224316,224316 +296063,296063 +670,670 +124847,124847 +347883,347883 +129090,164812 +391834,391834 +173536,173536 +156373,156373 +73538,102104 +149853,149853 +270168,270168 +258242,258242 +290357,98778 +99358,99358 +208480,208480 +406652,406652 +194230,125678 +908,908 +285773,285773 +36888,36888 +252854,252854 +359878,359878 +96713,96713 +261720,40628 +1927,43443 +22278,22278 +75223,75223 +32165,32165 +331979,159473 +256877,256877 +1125,1125 +112869,43443 +174155,222407 +3267,3267 +71021,182134 +40444,40444 +352238,352238 +56707,56707 +294047,294047 +282418,199042 +132428,132428 +170,170 +23604,23604 +19996,12346 +2612,2612 +68858,65282 +367272,3076 +135243,135243 +173341,327 +360152,244271 +464,464 +313261,287084 +320819,320819 +378387,378387 +160418,160418 +256513,256513 +256707,256707 +29387,102104 +142830,142830 +21641,21641 +6795,6795 +6707,6707 +212662,24310 +76674,76674 +65673,65673 +25794,25794 +108831,108831 +295103,295103 +347521,258210 +236245,236245 +34320,34320 +180198,180198 +38872,38872 +84838,43022 +1037,156714 +410991,410991 +36367,36367 +32341,32341 +227545,227545 +71655,71655 +17484,17484 +313963,313963 +378356,378356 +161546,85256 +178550,178550 +29663,1589 +165662,165662 +6613,6613 +19854,19854 +249675,273264 +1472,1472 +309408,309408 +246228,123570 +4090,4090 +251442,251442 +317519,177354 +255805,255805 +225885,225885 +247160,247160 +129122,41429 +3605,3605 +2633,2633 +344338,344338 +191710,13 +254188,254188 +156266,299104 +264637,196340 +9,9 +228051,53093 +4230,4230 +203219,66056 +244330,244330 +247436,250780 +407318,407318 +3409,36399 +394889,394889 +161547,85256 +276090,242653 +117914,117914 +258451,258451 +18500,18500 +122159,102104 +158976,69789 +1017,164698 +230262,36553 +147537,147537 +118497,118497 +283095,283095 +182120,182120 +75547,170042 +275564,188547 +393179,55600 +368119,66587 +115293,99 +209877,25729 +200171,146652 +368465,368465 +267304,71 +344254,260407 +859,28 +141008,93 +15033,15033 +270956,270956 +263192,180771 +93538,93538 +37231,37231 +176803,176803 +250664,250664 +271512,271512 +279727,279727 +380,380 +253574,253574 +12681,12681 +381117,381117 +17804,17804 +294378,294378 +335528,271518 +33468,33468 +276004,276004 +292032,284775 +144734,144734 +60131,60131 +186721,186721 +214988,4098 +300664,154825 +314589,314589 +226176,226176 +98085,98085 +299106,299106 +339289,339289 +189664,113873 +234429,234429 +34599,34599 +178896,178896 +174614,174614 +362205,362205 +343282,256804 +229370,229370 +294175,294175 +270131,165722 +9028,9028 +317511,317511 +91534,91534 +272993,172933 +217990,217990 +179071,179071 +183308,183308 +257096,89910 +173805,173805 +83040,36708 +360617,360617 +310203,309430 +293959,293959 +238164,238164 +252688,198138 +23,23 +190639,190639 +371535,371535 +409693,409693 +201308,201308 +306637,306637 +120605,120605 +11949,11949 +192927,192927 +122889,122889 +425428,2653 +39336,2651 +174744,174744 +246150,246150 +307844,307844 +314421,314421 +169141,169141 +38194,38194 +370621,370621 +383790,383790 +406854,406854 +200,1334 +175695,175695 +3234,3234 +24565,24565 +377515,377515 +232979,232979 +2228,2228 +2652,2652 +422,422 +222887,222887 +254619,254619 +338,338 +137397,137397 +178044,178044 +377793,297129 +306680,306680 +367351,367351 +180325,10 +19,19 +444,444 +366251,366251 +15889,2398 +46158,36553 +279306,279306 +184522,184522 +204602,204602 +139245,139245 +257198,235344 +235544,155624 +296238,296238 +353304,353304 +1430,1430 +17104,17104 +140863,140863 +35614,35614 +256509,256509 +5336,27627 +393307,393307 +152899,125548 +2290,2290 +18803,18803 +224031,826 +7349,7349 +256705,256705 +4385,463 +221155,221155 +160964,24742 +215308,215308 +29109,29109 +249673,249673 +319196,250458 +25674,25674 +63706,63706 +302809,10547 +155173,155173 +204728,123123 +169274,125548 +135116,121408 +186323,186323 +181329,181329 +25234,13 +325941,187617 +249821,178900 +269041,269041 +374866,374866 +163640,163640 +78954,78954 +230251,230251 +334363,334363 +398162,318977 +142854,142854 +249814,249814 +359962,359962 +235,235 +360899,360899 +265285,265285 +268890,268890 +5942,5942 +171835,171835 +136594,136594 +139131,313889 +186701,186701 +289247,289247 +331059,331059 +67601,29603 +128063,19857 +282171,282171 +206939,206939 +367396,128882 +28025,28025 +205057,205057 +258104,258104 +322010,322010 +3348,3348 +397736,318243 +419195,419195 +318183,318183 +333553,34219 +195867,195867 +168680,25821 +321641,321641 +199242,311715 +358246,358246 +241225,134726 +380837,380837 +56885,25821 +284229,284229 +37301,37301 +253719,253719 +283,1563 +302193,302193 +193953,168274 +399806,399806 +41003,50 +246855,174973 +215437,131111 +25213,25213 +216856,216856 +371873,371873 +153728,153728 +24920,24920 +84469,84469 +292034,284775 +3986,3986 +149119,149119 +131118,131118 +207910,207910 +140709,6249 +7479,7479 +215616,69789 +43307,43307 +14634,6830 +238094,238094 +304324,304324 +97915,281655 +311930,311930 +374562,374562 +41490,134520 +399987,399987 +275034,244654 +266064,266064 +129320,129320 +269146,269146 +1645,1645 +234521,54625 +84772,84772 +299571,191925 +367490,367490 +341416,341416 +331259,255984 +3141,3141 +97357,97357 +202755,121408 +274349,274349 +256623,256623 +205885,432 +193512,193512 +253807,253807 +7929,7929 +319135,319135 +73863,73863 +359406,271519 +110,110 +191071,191071 +29410,29410 +200785,200785 +179820,124708 +1323,1323 +150484,150484 +85,85 +184842,13 +332885,332885 +396618,47 +20080,20080 +156180,156180 +10788,10788 +247724,134726 +25574,25574 +211940,211940 +9408,9408 +135262,2582 +40531,39463 +333981,333981 +5795,235375 +224035,62871 +373600,253344 +333372,333372 +13293,13293 +302461,302461 +178302,178302 +168230,168230 +218995,218995 +186864,255615 +235627,235627 +2998,2998 +341573,341573 +29308,119 +298282,298282 +204575,204575 +328575,328575 +332015,332015 +302734,302734 +35342,35342 +545,545 +316750,316750 +22287,22287 +1339,1339 +282291,282291 +3243,3243 +321539,321539 +329484,329484 +292187,23817 +30662,93 +173275,173275 +1459,1459 +33003,33003 +31920,43443 +29259,29259 +266304,235344 +5576,5576 +299450,185538 +107190,107190 +218395,218395 +31133,31133 +322697,322697 +12632,12632 +131891,131891 +376472,376472 +204817,204817 +10653,10653 +341512,341512 +27172,27172 +4370,4370 +160559,160559 +13362,54625 +281073,228504 +188720,188720 +374541,374541 +300367,296167 +105624,105624 +301084,301084 +363625,363625 +782,782 +359612,256707 +122891,122891 +234711,234711 +237728,237728 +188076,24508 +101020,101020 +4154,4154 +177147,2653 +140135,40692 +193840,193840 +255633,255633 +42743,42743 +404538,391795 +317321,317321 +31722,31722 +25584,25584 +201846,201846 +331582,214484 +1444,21551 +1431,1442 +215565,99358 +19679,67254 +252693,252693 +234337,234337 +268493,268493 +155,152 +182094,143741 +2689,2689 +17970,17970 +69120,69120 +359999,31260 +22198,22198 +68228,4098 +269526,269526 +257380,257380 +261342,261342 +171964,171964 +194923,194923 +103132,103132 +298572,39463 +6931,6931 +4529,4529 +160968,160968 +257839,225729 +154880,154880 +244320,244320 +1666,1608 +286343,24800 +214996,214996 +276497,276497 +170199,170199 +22457,22457 +161880,161880 +94373,94373 +173441,173441 +143075,143075 +124622,124622 +75448,65282 +31503,432 +217099,217099 +293,293 +1710,1710 +3463,256885 +178494,148203 +353905,353905 +10819,10819 +98242,98242 +332075,54625 +155689,103885 +386538,191189 +317981,8172 +371,371 +568,568 +260316,260316 +84159,84159 +389102,389102 +306482,306482 +257435,257435 +382229,382229 +139562,139562 +256669,256669 +306697,134726 +383459,383459 +178134,178134 +3312,3312 +23985,170216 +550,550 +377449,377449 +307971,307971 +154443,154443 +1552,1552 +266447,171662 +419704,419704 +30804,30804 +257668,257668 +278783,278783 +68247,68247 +29285,29285 +4112,463 +30356,251890 +3154,3154 +197072,197072 +324513,324513 +4471,4471 +3086,3086 +224133,224133 +21892,21892 +199182,199182 +6281,6281 +280834,280834 +216798,46213 +10660,10660 +203828,177590 +102898,102898 +236239,236239 +4204,4204 +66085,50 +11265,11265 +118402,118402 +295957,295957 +260410,260410 +2250,2250 +2535,2535 +230498,230498 +6581,6581 +75789,75789 +125993,125993 +142039,463 +29294,29294 +38657,153623 +422674,229220 +29687,29687 +258412,254226 +1213,713 +42898,42898 +230765,230765 +116858,116858 +141,141 +352596,352596 +72667,72667 +252315,252315 +275089,275089 +219512,219512 +349703,125752 +257582,257582 +327076,327076 +129156,129156 +315234,315234 +269420,269420 +3553,3553 +402669,402669 +359893,359893 +300369,296167 +194789,194789 +154634,154634 +346057,346057 +130680,130680 +159492,159492 +135654,135654 +1899,1899 +364792,364792 +12234,12234 +12896,12896 +231553,231553 +299371,299371 +368463,368463 +341245,341245 +326908,326908 +69130,69130 +370597,197443 +394887,394887 +150146,150146 +144325,43443 +257601,36235 +328826,302524 +278120,278120 +4556,4556 +234691,234691 +360061,244271 +1209,1209 +12004,12004 +381327,18 +231665,231665 +179933,179933 +21380,21380 +200726,200726 +137290,137290 +174610,48726 +354273,354273 +401978,401978 +188178,188178 +7804,7804 +1036,1036 +255363,255363 +252297,252297 +8147,8147 +239175,239175 +96613,96613 +186279,186279 +192120,192120 +377716,377716 +2748,2748 +7104,798 +340834,142992 +19184,19184 +19650,19650 +402111,402111 +40214,40214 +171630,23107 +204605,204605 +261009,261009 +236305,236305 +315059,315059 +152757,136991 +834,834 +268191,244271 +249689,249689 +9825,815 +2455,713 +311031,311031 +6688,463 +259809,171131 +358284,358284 +338697,13 +131682,131682 +316080,257501 +299800,299800 +20609,6205 +153912,915 +265524,265524 +137095,137095 +4324,105134 +347767,347767 +247704,159473 +32114,32114 +374400,374400 +93971,93971 +3406,463 +342062,342062 +284429,284429 +142084,142084 +74390,74390 +180231,180231 +3128,3348 +232473,232473 +267652,267652 +3452,3452 +289550,289550 +370757,370757 +31056,31056 +315221,315221 +3632,3632 +234469,234469 +17027,17027 +91034,16991 +222988,222988 +804,342070 +115233,20545 +241164,241164 +38821,13 +123185,35052 +356313,356313 +3730,3730 +220780,220780 +147887,147887 +153425,2338 +353411,353411 +147623,147623 +3893,3893 +244144,13 +378476,378476 +284842,284842 +229427,54625 +218376,218376 +195227,159473 +356768,356768 +24070,24070 +131449,131449 +4212,99358 +226254,226254 +130552,54625 +101865,299 +422732,422732 +194232,194232 +13532,29285 +266140,266140 +235365,102104 +13883,30869 +4211,99358 +195194,195194 +245645,296 +234450,234450 +188390,188390 +345088,345088 +150783,150783 +178892,13293 +37208,37208 +209641,209641 +275972,103885 +415147,415147 +29581,29581 +121041,121041 +353572,353572 +343433,343433 +8817,40270 +1585,1585 +38749,13 +293275,293275 +136440,136440 +8946,8946 +364994,364994 +21754,21754 +232830,232830 +220988,220988 +302270,234248 +1275,1275 +1447,1447 +18289,18289 +253215,253215 +10934,10934 +164865,164865 +34496,34496 +318709,172 +170318,110277 +33665,33665 +29602,29602 +301665,125678 +1800,1800 +32838,32838 +191989,191989 +212404,212404 +402677,402677 +294448,294448 +331992,162007 +32014,32014 +5419,5419 +292811,292811 +219232,219232 +351876,351876 +142555,125678 +256729,256729 +166854,166854 +200247,200247 +35248,35248 +14080,14080 +217949,217949 +279644,279644 +242227,242227 +200924,40760 +173294,148575 +202819,202819 +354729,354729 +178591,178591 +8207,5576 +302189,230933 +183578,183578 +125943,125943 +25420,25420 +118410,118410 +233973,233973 +365742,365742 +283135,209778 +24304,24304 +281094,281094 +410209,318243 +163920,163920 +156372,131904 +194286,195137 +258411,254226 +320698,712 +38026,463 +315937,100423 +173319,463 +5684,5684 +175878,175878 +146784,146784 +167298,167298 +37696,37696 +2247,2247 +1830,1830 +12194,43443 +12140,12140 +322543,262547 +187353,148575 +349793,349793 +231748,206915 +178210,102104 +242324,242324 +57163,57163 +217576,217576 +9829,181530 +92120,248490 +192297,35497 +403,403 +63632,63632 +282463,269595 +123160,123160 +423401,423401 +299702,299702 +247360,247360 +32989,32989 +104994,104994 +313919,313919 +309917,309917 +275912,275912 +2981,2981 +281455,281455 +52328,147537 +378983,378983 +123576,123576 +176146,176146 +269489,269489 +159059,159059 +145601,145601 +1679,1679 +53168,53168 +168839,25951 +362164,362164 +367771,367771 +265430,265430 +206299,206299 +37728,37728 +5651,5651 +63539,63539 +298378,9440 +6955,220988 +101786,36367 +329593,329593 +15390,15390 +148205,148205 +163163,108906 +7614,1563 +376223,376223 +144743,299121 +5534,5534 +46807,46807 +119632,119632 +348877,173805 +369258,176494 +192673,192673 +207753,207753 +396542,396542 +148271,148271 +310953,2165 +271064,69789 +6719,6719 +317030,128882 +263155,263155 +216123,147020 +275469,275469 +1717,1717 +173504,173504 +206754,206754 +183572,148575 +407317,407318 +3577,3577 +66424,66424 +22766,66056 +179448,156546 +357271,357271 +1372,2247 +409572,409572 +201509,201509 +22237,157969 +37198,105134 +254888,254888 +198517,198517 +267,29972 +27739,27739 +257987,257987 +254588,27739 +431,6249 +274426,274426 +392,392 +127784,127784 +4985,4985 +109969,109969 +21287,21287 +215946,204472 +253399,253399 +36424,36424 +156175,1194 +254088,254088 +393530,241477 +179835,5534 +312675,312675 +247182,247182 +198832,198832 +378979,234277 +209696,209696 +17394,17394 +236709,236709 +96026,96026 +2129,2129 +264141,50768 +312512,312512 +4206,99358 +288316,228328 +270269,270269 +265204,265204 +65200,65200 +409496,244521 +245136,463 +206206,206206 +141932,141932 +58798,58798 +344925,344925 +243696,243696 +110524,110524 +311464,81640 +249421,149951 +296512,173090 +253756,253756 +19363,19363 +69552,69552 +367280,367280 +19947,19947 +103339,103339 +234877,234877 +225163,225163 +20079,20079 +221599,221599 +216725,180040 +342010,342010 +341919,341919 +244946,244946 +247,247 +329089,329089 +343525,343525 +178147,178147 +294263,294263 +140457,140457 +348073,348073 +174805,174805 +232829,232829 +352135,352135 +299733,299733 +2073,2073 +216578,216578 +244258,24310 +337864,337864 +418470,367966 +255175,255175 +8229,8229 +321596,321596 +13301,13301 +346199,346199 +91189,91189 +191177,191177 +269257,269257 +381715,229853 +267314,43443 +188188,131357 +178940,178940 +324657,240271 +357659,357659 +426796,426796 +104573,104573 +8521,8521 +383360,383360 +277030,277030 +386148,386148 +146149,146149 +257006,257006 +335240,335240 +351735,244711 +147431,147431 +257145,180771 +234120,234120 +310,310 +259571,148575 +227893,227893 +651,651 +255455,255455 +40603,40603 +35035,25729 +264806,264806 +257733,257733 +154519,154519 +277405,277405 +342343,342343 +280986,248158 +13123,463 +173115,173115 +2281,2281 +307170,307170 +95,95 +373828,373828 +180241,54625 +72809,72809 +379625,379625 +181523,181523 +254213,296167 +125050,125050 +4286,169255 +355735,355735 +6539,37904 +89415,20545 +341027,341027 +393175,393175 +1452,1452 +8552,8552 +236301,236301 +181254,181254 +91773,79073 +4214,4214 +80979,80979 +41636,41636 +43578,43578 +269967,269967 +73313,73313 +102181,102181 +67181,67181 +2363,2363 +331190,331190 +137909,137909 +113927,88408 +380442,380442 +25823,826 +155025,38309 +11106,54625 +17991,17991 +396251,396251 +377480,377480 +4173,4173 +541,541 +30932,30932 +275996,275996 +295565,295565 +310442,310442 +139433,22877 +133285,133285 +311725,311725 +172994,13 +87821,87821 +274128,125678 +193483,193483 +182770,148575 +45134,45134 +15157,15157 +250467,250467 +350198,350198 +156,223 +171226,171226 +374145,374145 +97803,97803 +282776,282776 +412911,412911 +5740,5740 +125924,125924 +317299,317299 +325293,181687 +282775,282775 +6263,6263 +246567,246567 +935,935 +369899,369899 +306300,306300 +3548,3548 +35669,35669 +296483,296483 +24878,24878 +230089,230089 +391137,391137 +911,911 +3661,3661 +322282,322282 +237251,237251 +344341,344341 +2471,2471 +2876,2876 +22347,22347 +149896,149896 +275840,275840 +267333,267333 +4553,4553 +230059,230059 +258413,254226 +64826,64826 +381078,381078 +209530,178147 +345888,345888 +192343,192343 +98347,218509 +226255,226255 +266460,266460 +368975,127060 +14683,293959 +206175,206175 +2539,2539 +359065,712 +29805,29805 +154510,154510 +272743,98778 +5770,41302 +337961,337961 +21464,21464 +227127,227127 +68,26457 +285972,214484 +265381,265381 +217934,217934 +130390,226254 +402215,270673 +119337,119337 +318556,318556 +28805,28805 +8166,8166 +353543,353543 +148291,148291 +275586,275586 +300993,300993 +385999,385999 +315048,2653 +184700,184700 +27385,27385 +90009,90009 +177727,177727 +283474,233571 +41239,49 +293267,293267 +229632,229632 +274075,274075 +34004,63975 +229956,229956 +233006,233006 +326485,139976 +367442,367442 +256442,256442 +174476,174476 +20782,20782 +160561,160561 +146408,146408 +255594,255594 +318474,230769 +8668,8668 +203204,11170 +1338,1338 +287638,287638 +3137,3137 +130592,463 +66081,42898 +23995,23995 +38984,38984 +67919,67919 +144388,463 +154259,154259 +25900,25900 +236272,236272 +383242,383242 +369898,3 +3230,3230 +165556,165556 +274590,134726 +58099,6249 +1212,713 +383158,383158 +350064,350064 +192240,192240 +23953,23953 +214491,214491 +360503,353543 +302413,302413 +362202,256804 +255037,255037 +379583,379583 +290618,290618 +316795,316795 +2077,2077 +284446,284446 +255659,38765 +292026,292026 +266938,134726 +190247,356768 +356999,356999 +24843,24843 +359601,359601 +368352,368352 +31954,31954 +113293,113293 +145012,145012 +259069,259069 +39832,39832 +20295,20295 +361214,361214 +192185,192185 +15826,15826 +366790,366790 +26055,233078 +336849,127023 +257726,257726 +177515,177515 +42929,42929 +254994,254994 +423517,423517 +56796,56796 +388036,388036 +162263,162263 +157323,157323 +196217,196217 +176262,176262 +92643,92643 +6663,6663 +152510,125678 +359857,359857 +286827,286827 +96704,96704 +255653,255653 +4854,4854 +277538,193867 +159406,159406 +279198,279198 +80642,80642 +40107,40107 +250779,250780 +252997,252997 +28218,28218 +139992,139992 +789,463 +10947,10947 +6817,6817 +1821,4214 +132758,132758 +350637,350637 +192,192 +47046,20100 +152053,152053 +370448,254127 +181811,181811 +139326,139326 +142267,142267 +352567,352567 +253743,277405 +196305,121408 +280501,20806 +419199,419199 +257063,257063 +230050,230050 +1498,1498 +262274,262274 +227029,227029 +211454,211454 +30166,43443 +3487,3487 +814,98085 +25727,25727 +343566,343566 +292894,292894 +267244,267244 +548,548 +330403,169654 +158753,158753 +62230,2247 +107704,152470 +31506,31506 +281260,281260 +380134,380134 +154905,139898 +334307,334307 +4047,4047 +248167,248167 +655,655 +9675,9675 +189350,189350 +325829,325829 +10167,2471 +224894,224894 +379959,379959 +1535,1535 +163976,163976 +119881,119881 +165004,165004 +24947,24947 +161527,13 +227002,227002 +3593,3593 +203719,112138 +217321,217321 +65225,65225 +276856,276856 +288385,288385 +42142,42142 +406660,406660 +134711,134711 +250821,250821 +268188,268188 +366322,366322 +248002,248002 +165876,165876 +163931,163931 +344415,303672 +1690,1690 +341753,341753 +17651,17651 +310067,310067 +283151,156546 +147747,147747 +342207,342207 +128698,128698 +306173,306173 +10814,10814 +280726,280726 +345969,345969 +151446,151446 +130605,9341 +261525,261525 +279419,279419 +300329,123570 +317983,317983 +121073,121073 +137154,137154 +299372,299372 +356742,356742 +1545,1545 +206156,206156 +149869,149869 +275067,78733 +230852,230852 +332070,165004 +251441,251441 +127312,127312 +294652,294652 +164506,34219 +378117,378117 +337324,337324 +302926,278553 +182453,173090 +220700,220700 +161530,161530 +291155,68820 +201406,201406 +232079,232079 +259537,259537 +381246,381246 +214296,214296 +202732,202732 +231942,29368 +1992,215312 +1705,1705 +103091,13 +13507,13507 +149361,84465 +4050,4050 +321,321 +123885,123885 +303006,303006 +13230,2266 +410655,410655 +3518,3518 +360951,360951 +854,854 +355199,147020 +169649,169649 +229,10 +24,233078 +6778,13 +207898,207898 +138166,138166 +2079,2079 +65568,65568 +172965,267609 +367820,367820 +366748,274124 +97,9625 +250754,250754 +342948,342948 +16497,16497 +145888,145888 +1883,1883 +357890,357890 +171110,171110 +317940,317940 +213882,213882 +13005,432 +168215,9220 +41052,41052 +143484,81640 +755,755 +706,706 +318195,318195 +279135,279135 +129165,9203 +309752,309752 +1720,1720 +338479,338479 +193238,4204 +756,756 +130006,130006 +222145,222145 +334931,121921 +136192,136192 +405923,405923 +129614,394334 +38797,38797 +299172,299172 +5445,5445 +317432,317432 +141067,141067 +360843,360843 +350079,123607 +360359,360359 +158130,65282 +216974,216974 +39328,39328 +278402,278402 +6714,6714 +31545,8172 +359838,359838 +196712,12350 +271262,271262 +349812,349812 +180616,69789 +249410,8051 +144761,144761 +367525,367525 +283768,1540 +160094,93 +27680,27680 +316090,316090 +237023,237023 +346645,119591 +235512,235512 +171672,171672 +329228,329228 +327077,327077 +269789,269789 +14188,14188 +347117,223040 +165,165 +364,287 +35935,35935 +65534,65534 +424975,424975 +240905,240905 +233974,233974 +4001,4001 +422126,422126 +25491,6249 +4210,4210 +245431,245431 +365357,365357 +282918,282918 +257284,85256 +847,847 +262188,262188 +334137,300905 +3413,236239 +176361,147949 +257056,257056 +4258,32989 +132326,132326 +11096,75476 +129359,43443 +7062,7062 +20750,18803 +3608,3608 +374201,374201 +231618,231618 +279307,279307 +963,6249 +11231,11231 +244141,244141 +196306,121408 +333516,333516 +388413,388413 +6542,25727 +260524,260524 +286735,286735 +1681,1681 +181494,181494 +32382,32382 +376610,376610 +158815,158815 +293665,293665 +3475,3475 +149620,149620 +142239,142239 +205164,205164 +378001,378001 +314243,54625 +247106,247106 +17835,17835 +208428,208428 +38318,38318 +31808,31808 +213370,213370 +373105,146652 +305668,13 +50381,50381 +170669,205164 +233958,233958 +3383,3383 +171492,171492 +3828,3828 +257372,257372 +405752,260180 +28086,155695 +176334,176334 +265635,191177 +194100,194100 +270233,270233 +286788,286788 +249582,249582 +105187,105187 +217475,217475 +259038,259038 +2470,2470 +142889,142889 +422484,422484 +351998,351998 +337690,204836 +368036,368036 +362366,362366 +23890,23890 +8993,8993 +256802,256802 +292033,284775 +816,816 +42244,42244 +207951,207951 +275589,275589 +229791,229791 +1376,1376 +207687,207687 +155827,112138 +153422,153422 +84464,17329 +145642,145642 +2259,2259 +341358,341358 +249670,4636 +369436,369436 +220508,220508 +300523,34219 +99312,99312 +308970,35815 +287780,287780 +218580,218580 +334652,334652 +253372,253372 +1496,1496 +147194,147194 +378890,255664 +74,74 +176596,11057 +172584,172584 +392492,392492 +318359,318359 +186302,186302 +92644,92644 +224079,224079 +2536,2536 +318450,281655 +198985,198985 +177096,177096 +23142,23142 +173092,173092 +247136,247136 +235902,261009 +226588,20545 +2150,2150 +324157,324157 +117995,63268 +309728,309728 +319263,319263 +181501,42910 +40276,40276 +329002,329002 +5825,5825 +20734,20734 +61484,61484 +153999,153999 +359502,359502 +217362,217362 +232303,5404 +406174,391795 +252265,252265 +221230,221230 +55601,55601 +266188,266188 +54735,54735 +221848,221848 +27165,27165 +231639,231639 +274471,274471 +295574,148575 +3855,3855 +291874,291874 +165595,165595 +28396,28396 +257966,257966 +222,222 +352483,352483 +5316,4001 +331363,331363 +156840,272739 +168537,168537 +374926,374926 +12171,12171 +338322,125678 +9963,194655 +201455,201455 +231664,231664 +324639,324639 +213497,213497 +275463,275463 +207208,207208 +10174,10174 +360332,360332 +283137,225167 +55834,55834 +130827,130827 +307862,307862 +329204,329204 +195242,195242 +65936,65936 +292031,284775 +249552,69789 +85204,85204 +174802,174802 +232980,232980 +387769,387769 +369388,369388 +294986,294986 +292892,292892 +276779,276779 +155702,148575 +31745,31745 +10156,2808 +329714,329714 +27969,27969 +125048,63268 +183959,183959 +160669,160669 +300323,130960 +380439,380439 +244794,244794 +343899,343899 +356873,356873 +280811,280811 +195709,156546 +194061,194061 +216865,216865 +2,215308 +158392,158392 +63740,63740 +1631,1631 +1002,1002 +21985,21985 +42328,42328 +39534,39534 +308493,308493 +189222,189222 +177875,177875 +42306,9203 +92666,92666 +301030,301030 +122690,98242 +42490,42490 +257001,43443 +353745,353745 +313841,313841 +132620,132620 +366318,366318 +13855,13855 +161108,161108 +22497,22497 +3597,3597 +224149,224149 +3125,3125 +325889,228602 +192858,192858 +66120,5782 +203740,203740 +490,490 +144574,144574 +213549,213549 +163056,163056 +255456,255456 +256313,256313 +181176,181176 +146922,146922 +219475,9674 +111502,98242 +7092,7092 +159632,159632 +256713,256713 +9617,9617 +72420,72420 +207568,207568 +10431,4001 +108161,108161 +621,621 +7742,7742 +106999,106999 +34,146021 +172062,12692 +248,248 +61458,61458 +372649,372649 +211734,211734 +62225,293959 +246535,125678 +114438,114438 +241066,241066 +249750,249750 +1493,1493 +94483,94483 +230304,279613 +248878,248878 +3208,3208 +235454,235454 +7290,7290 +406767,321608 +29355,29355 +359211,359211 +207330,207330 +374200,374200 +831,831 +180591,180591 +182260,206156 +253379,253379 +165186,165186 +225,6830 +29256,281655 +17851,17851 +213953,213953 +323614,323614 +285895,285895 +8515,8515 +218948,108906 +263938,263938 +64956,64956 +3190,3190 +221366,125678 +6203,29285 +322984,146791 +205079,205079 +367476,367476 +2640,2640 +256541,256541 +262818,224133 +1206,1206 +230650,230650 +240464,171110 +72644,72644 +1506,1506 +1583,1583 +287952,234190 +405538,405538 +202,202 +148083,148083 +307997,206051 +292907,292907 +97273,97273 +220558,220558 +300,300 +20101,20101 +266445,266445 +336811,336811 +244274,244274 +261614,12157 +146130,146130 +345967,345967 +150761,150761 +3218,3218 +373577,245487 +208808,208808 +368263,368263 +147614,147614 +26235,26235 +1445,1445 +1576,1576 +120669,120669 +369103,358246 +128733,76150 +343684,343684 +1143,22038 +76,76 +107148,9203 +17,17 +180761,180761 +159575,159575 +686,686 +316343,205046 +369635,155426 +59429,59429 +197439,197439 +162351,53093 +286156,286156 +339905,463 +19989,19989 +197178,197178 +181161,181161 +267661,267661 +220774,178900 +18746,18746 +322339,158600 +199780,199780 +253368,253368 +380707,224783 +117838,102104 +296557,296557 +329434,240567 +322623,322623 +63196,20806 +25114,25114 +355772,355772 +338467,338467 +347157,347157 +194523,194523 +380105,347013 +422042,422042 +281132,121193 +18243,18243 +221669,221669 +359527,320718 +203270,54625 +286439,217776 +222862,222862 +158816,158816 +6927,123955 +145014,145014 +276633,276633 +163172,163172 +4550,4550 +170901,36235 +917,917 +88513,88513 +169341,169341 +146548,146548 +379552,379552 +254110,254110 +390422,390422 +143981,211454 +66190,6249 +269456,242227 +63167,63167 +351991,351991 +367833,367833 +256964,256964 +341233,341233 +223952,223952 +423648,423648 +247785,313 +213670,43443 +3495,3495 +3408,3408 +280896,280896 +4079,463 +13751,8170 +101682,101682 +23950,23950 +129820,129820 +33495,33495 +3318,3318 +142063,209696 +175222,463 +387305,387305 +367086,367086 +302510,302510 +35400,35400 +161297,161297 +19358,19358 +220738,220738 +242149,242149 +240465,240465 +27532,27532 +234432,234432 +365526,365526 +191877,191877 +162107,162107 +205308,205308 +71973,71973 +3414,3414 +66193,66193 +114903,114903 +252212,252212 +256317,256317 +269537,269537 +144728,144728 +57998,38309 +143882,143882 +320446,320446 +21373,19854 +244994,244994 +299569,299569 +340216,340216 +324759,324759 +3895,3895 +302,302 +178209,102104 +25738,25738 +147190,71671 +38931,38931 +242740,209778 +11865,11865 +1350,1350 +158991,158991 +166776,248949 +237828,237828 +4488,4488 +4984,4984 +64220,64220 +344992,182134 +299171,299171 +69234,69234 +20865,20865 +418556,381249 +155460,155460 +252163,252163 +323707,323707 +159868,159868 +368557,11170 +204675,204675 +86156,86156 +23685,23685 +368,368 +344,344 +55863,55863 +81250,81250 +277410,277410 +25685,235 +912,912 +24568,2453 +387388,387388 +15045,105134 +4205,4214 +151151,151151 +251830,6249 +393887,393887 +1678,279644 +104627,104627 +100734,100734 +256876,151022 +371183,371183 +3573,3573 +83629,83629 +331647,331647 +218025,218025 +184866,184866 +284982,102237 +272666,272666 +285232,285232 +218933,54625 +14035,14035 +146559,146559 +137237,137237 +261424,70 +39019,39019 +173018,173018 +152241,38159 +354672,354672 +347638,347638 +369993,171273 +1149,1149 +350992,350992 +1577,1577 +1197,1197 +232134,232134 +255990,255990 +231554,231554 +244212,244212 +85108,85108 +29678,43443 +29903,29903 +256297,256297 +346205,346205 +326538,130486 +342210,342210 +414685,414685 +307656,307656 +36482,9203 +322476,322476 +303676,303676 +7571,7571 +341489,341489 +319264,53093 +411255,411255 +272541,102104 +7935,183308 +277672,277672 +8920,8920 +322039,322039 +339924,339924 +206805,206805 +262498,262498 +368854,163805 +419074,419074 +182626,182626 +36314,36314 +35369,102104 +259394,191612 +247935,247935 +864,864 +256883,233312 +128174,128174 +5571,1323 +57073,57073 +123228,39206 +365698,365698 +329563,329563 +30328,2129 +182352,182352 +252985,146652 +22359,22359 +327266,327266 +171356,171356 +217020,217020 +131246,131246 +191438,191438 +870,870 +328555,272533 +387201,387201 +395364,370591 +441,441 +421374,421374 +319375,254386 +209136,266830 +66126,66126 +213788,69789 +126,126 +23010,105134 +388476,388476 +158886,158886 +269810,269810 +7263,7263 +293309,293309 +359613,15839 +291828,2795 +326624,54625 +353945,353945 +255902,217934 +301616,301616 +200551,200551 +142,142 +147716,147716 +319348,319348 +34227,34227 +224271,224271 +233261,233261 +311731,65532 +393910,393910 +245214,9220 +32002,32002 +278685,278685 +258041,258041 +6481,6481 +3852,3852 +101013,101013 +303669,303669 +193486,193486 +292099,292099 +370193,240225 +1381,1381 +153625,491 +145975,145975 +330021,31260 +12897,12896 +361212,361212 +353546,353546 +266444,266445 +163929,145639 +4958,4958 +166107,166107 +175254,175254 +373759,373759 +85424,85424 +180205,180205 +114991,114991 +1413,1413 +191387,191387 +181236,181236 +240744,240744 +394127,394127 +8130,8130 +163097,163097 +194,194 +424280,318243 +191579,148575 +229006,229006 +34010,34010 +274405,274405 +397431,397431 +2555,2555 +216710,9203 +132148,132148 +198414,198414 +150016,150016 +11269,11269 +271524,271524 +24770,24770 +282006,282006 +235017,353942 +186904,186904 +1982,1982 +352263,352263 +33434,2651 +16933,43443 +22950,22950 +8273,8273 +356133,274093 +129976,169255 +153709,153709 +233956,103132 +62972,62972 +132497,132497 +101929,101929 +399011,399011 +135877,135877 +7843,7843 +221368,125678 +42997,42997 +368386,146886 +213648,213648 +319592,319592 +286326,229491 +315196,315196 +307832,307832 +364008,364008 +22420,22420 +294275,294275 +13354,2795 +197790,197790 +108344,108344 +217894,217894 +4920,4920 +2125,2125 +169275,125548 +217547,463 +228580,228580 +28044,28044 +386271,386271 +307621,73761 +182,182 +197333,209696 +198087,198087 +227995,227995 +3083,3083 +248188,53093 +49276,49276 +28907,160903 +281657,147537 +89,89 +374039,374039 +7118,798 +145219,145219 +260927,256 +235342,235342 +168770,168770 +25294,128 +385799,385799 +104377,104377 +242569,242569 +378477,188866 +10496,10496 +696,696 +266446,266446 +283748,283748 +4424,4424 +254976,254976 +143994,323707 +406663,375651 +320855,204493 +1708,1708 +209511,209511 +139508,139508 +240529,240529 +36887,36887 +21779,21779 +46782,46782 +240014,240014 +4974,4974 +1799,1799 +406498,406498 +62853,62853 +406322,9220 +238889,238889 +366129,366129 +424774,370591 +37589,463 +334100,334100 +220784,220784 +232041,232041 +56758,56758 +265489,265489 +245240,245240 +97683,97683 +5452,12234 +261321,69789 +356909,356909 +3061,3061 +222643,222643 +6923,6923 +313093,313093 +179350,179350 +347161,347161 +163937,163937 +373835,373835 +209951,209951 +184287,184287 +2800,2800 +64897,37904 +208974,2808 +26447,26447 +232974,232974 +197760,144733 +275973,354729 +376363,376363 +18723,18723 +415780,415780 +1669,1669 +260147,260147 +191073,191073 +337389,337389 +330769,330769 +269980,13 +147707,38054 +28452,28452 +334479,210274 +240843,240843 +393352,393352 +360212,42452 +286081,286081 +41474,36708 +338980,71 +102,102 +149910,149910 +163641,163641 +192351,192351 +259,20079 +128666,143741 +256478,256478 +91671,91671 +24396,24396 +20078,20078 +157653,91 +293972,293972 +237009,237009 +341931,341931 +120269,120269 +364942,364942 +90041,90041 +274432,274432 +217609,217609 +4921,4921 +286830,286830 +1536,1536 +13709,13709 +43264,43264 +126239,126239 +205185,205185 +175334,175334 +128921,128921 +5297,5297 +136558,223 +3040,3040 +174402,22825 +250481,250481 +103814,103814 +218161,218161 +248584,248584 +147241,147241 +3534,3534 +85000,85000 +17923,17923 +383452,383452 +262939,262939 +242343,257063 +269418,269418 +11582,11582 +318098,278553 +5455,5455 +5833,7843 +271528,271528 +220155,220155 +195226,195226 +286657,165950 +1674,1674 +235465,183251 +94396,94396 +265752,224483 +63758,63758 +397788,397788 +358974,358974 +22303,22303 +12283,12283 +132019,293959 +114667,114667 +252402,181810 +177014,177014 +274861,274861 +315943,111105 +203405,203405 +142262,142262 +172507,172507 +165877,165877 +4562,174744 +534,438 +267590,267590 +1379,1379 +329106,169141 +40432,463 +312965,312965 +294112,242227 +285853,21133 +226009,149896 +358588,248158 +210271,155451 +22864,22864 +180543,224483 +213149,213149 +895,895 +17988,17988 +366278,366278 +172969,125548 +368035,368035 +6930,3408 +10183,10183 +39932,39932 +244505,244505 +359318,359318 +219276,219276 +220628,220628 +422780,422780 +6738,6738 +6209,23142 +368974,154246 +1475,105134 +3864,3864 +5071,5071 +748,748 +293547,293547 +254239,235454 +124590,124590 +88594,88594 +41762,12171 +295221,295221 +159143,159143 +6353,6353 +3613,3613 +414107,414107 +55165,55165 +1412,1412 +165292,165292 +279900,279900 +169215,169215 +291334,291334 +254936,254936 +155496,155496 +5767,5767 +65825,65825 +153480,153480 +539,539 +284825,81640 +323784,323784 +220203,220203 +267568,267568 +192619,192619 +344405,344405 +230265,230265 +19419,42 +396587,345972 +346597,129459 +195237,153064 +135796,69130 +13084,6830 +353311,302524 +42111,42111 +43320,29581 +6607,43443 +243993,243993 +348872,348872 +270445,270445 +139443,139443 +136356,136356 +436,436 +13071,13071 +262994,262994 +280304,280304 +4014,4014 +318353,318353 +202942,202942 +3119,3119 +371431,987 +10206,10206 +393892,305682 +246873,246873 +361598,361598 +165748,165748 +198110,198110 +339302,339302 +1549,1549 +292363,292363 +375459,375459 +371140,14996 +194553,194553 +369395,369395 +271264,271264 +165628,165628 +248075,125678 +284291,284291 +102610,102610 +361240,361240 +398032,398032 +217353,217353 +157088,157088 +115288,97803 +246960,35052 +382035,382035 +341284,341284 +171261,171261 +359315,359315 +191982,191982 +216179,198832 +4493,4493 +359974,359974 +422374,422374 +288775,288775 +206859,206859 +2579,3605 +311465,311465 +1070,1070 +99437,130827 +204599,361 +2447,2447 +29875,29875 +144566,144566 +190333,190333 +276499,276499 +191543,51 +7514,7514 +140795,463 +213661,213661 +165346,165346 +235451,235451 +158534,158534 +270,270 +110331,110331 +27658,54625 +84869,84869 +287732,287732 +192401,192401 +13456,13456 +228399,228399 +244820,171835 +260645,155122 +295490,295490 +193265,156009 +423434,282524 +225214,225214 +368028,368028 +23053,23053 +358858,13 +145654,145654 +269069,269069 +6137,124590 +197101,197101 +111081,17329 +230273,69789 +193651,193651 +150005,18460 +173649,173649 +241334,193483 +206593,45986 +126750,126750 +342019,342019 +2968,2968 +11733,2398 +358515,134726 +234776,234776 +161943,140535 +92363,92363 +225610,225610 +4475,4475 +3044,3044 +5369,299 +10989,10989 +421310,421310 +10226,10226 +351038,351038 +316857,316857 +327371,327371 +123536,66587 +260234,28805 +13530,49 +83325,83325 +37461,37461 +183420,183420 +66982,30932 +279,279 +335446,188547 +5680,5680 +38391,32341 +345887,345887 +39232,187617 +28284,18460 +1894,1894 +217466,13642 +17997,17997 +4453,4453 +279497,279497 +1783,1783 +189294,189294 +358812,56758 +415550,27627 +375931,375931 +43530,43530 +181327,154386 +256159,256159 +373597,331106 +272085,272085 +941,941 +189062,189062 +41833,41833 +220975,220975 +400203,400203 +345122,345122 +118385,42898 +172613,172613 +362868,362868 +226445,226445 +86177,86177 +313269,313269 +322985,146791 +283871,283871 +283641,283641 +334207,6830 +11081,11081 +48979,48979 +162865,162865 +204886,204886 +13172,13172 +369634,369634 +181370,181370 +381790,381790 +308755,69789 +182619,182619 +177877,177877 +246530,102104 +299838,299838 +393888,393888 +209664,209664 +15878,463 +228390,228390 +235982,235982 +1602,463 +368046,368046 +328687,328687 +127561,79073 +99630,99630 +1711,1711 +1693,1693 +383064,383064 +169475,169475 +144567,144567 +340928,340928 +265249,265249 +322014,322014 +354892,244522 +275530,275530 +351113,257501 +165469,140863 +1315,1315 +2076,2076 +360641,240271 +55705,55705 +235944,105593 +224141,129731 +188530,188530 +33924,33924 +21358,21358 +21930,21930 +32901,32901 +23919,23919 +337262,24068 +347311,347311 +223742,223742 +294235,294235 +13266,3577 +17857,17857 +380175,380175 +10641,1583 +330116,149241 +39088,39088 +147635,147635 +121423,121423 +184170,184170 +160409,160409 +2944,2944 +237174,237174 +329862,329862 +2379,2379 +364393,364393 +67593,24480 +322283,322283 +232318,232318 +245994,245994 +298086,298086 +2678,2678 +302882,124668 +240957,216459 +322,322 +12071,12071 +177499,177499 +255484,1499 +216640,216640 +118023,118023 +341164,256804 +83197,368 +347757,347757 +67917,67917 +207338,207338 +351648,351648 +280575,280575 +406321,432 +146228,146228 +160567,143741 +8059,8059 +378889,378889 +1152,1152 +28185,28185 +257321,257321 +239826,415780 +259830,259830 +164158,159143 +174298,4230 +13337,13337 +147021,147021 +218126,218126 +182074,182074 +5511,3605 +347146,347146 +368517,368517 +398898,182874 +272538,272538 +137900,137900 +203759,203759 +160432,160432 +336552,336552 +194196,194196 +132817,132817 +97875,97875 +1644,1644 +364541,364541 +160744,160744 +93541,93541 +175755,175755 +11182,11182 +359945,359945 +404513,261901 +210052,210052 +333280,125924 +110102,131246 +284665,284665 +393,393 +418354,418354 +9021,9021 +371981,371981 +9139,9139 +766,766 +274363,274363 +192334,192334 +297674,297674 +13286,13286 +232045,232045 +134150,134150 +299946,299946 +394144,394144 +310885,310885 +39941,39941 +161681,161681 +122913,14105 +282007,282007 +4753,4753 +23981,23981 +212580,125548 +287783,202721 +460,539 +311610,311610 +332230,266121 +178688,178688 +34375,34375 +278693,43443 +191296,191296 +298701,298701 +286171,286171 +34169,34169 +68188,68188 +222531,222531 +36325,36325 +233194,233194 +395907,239942 +57,57 +321720,308621 +67178,67178 +129615,2633 +337853,337853 +332402,5620 +380619,54998 +1233,1233 +85147,8521 +252776,234396 +228412,228412 +20195,20195 +146,146 +128412,11 +35289,35289 +288378,169318 +358216,358216 +147305,147305 +285998,272409 +266564,266564 +165477,165477 +219717,63170 +316410,3605 +179217,179217 +63027,63027 +76203,463 +146725,146725 +399088,399088 +13089,13089 +234900,234900 +192735,172308 +105023,105023 +382578,382578 +264321,264321 +27710,13 +371133,371133 +872,872 +137651,137651 +11274,11274 +200834,46255 +590,590 +273065,273065 +117854,117854 +385720,385720 +216234,216234 +265202,265202 +1294,463 +334310,243759 +229598,229598 +114912,114912 +711,10 +249833,463 +414302,414302 +3093,3093 +154600,154600 +427,427 +207242,207242 +68260,68260 +297204,297204 +231223,231223 +176606,176606 +263178,230769 +369084,686 +35423,35423 +42444,42444 +390094,390094 +335678,347013 +4401,1041 +68603,68603 +418581,418581 +318328,318328 +58624,58624 +332393,332393 +264,264 +38735,38735 +326175,326175 +4102,4102 +164874,164874 +10527,10527 +164159,159143 +181440,181440 +93287,93287 +639,281655 +352591,352591 +206715,38159 +429653,271055 +299266,284775 +224125,224125 +366397,366397 +26983,26983 +33150,33150 +158100,146149 +355516,355516 +256438,256438 +306676,306676 +357203,357203 +260934,260934 +339532,339532 +337195,337195 +330664,298586 +418858,418858 +261624,149951 +154892,154892 +317526,317526 +37296,37296 +4008,4008 +161926,161926 +218179,218179 +232900,185343 +319604,319604 +155065,155065 +331635,331635 +38877,68264 +8719,8719 +82,82 +275557,275557 +352201,352201 +214204,214204 +275777,275777 +10501,508 +390163,390163 +923,923 +150013,150013 +357841,357841 +394961,394961 +26946,11 +202490,202490 +17162,17162 +96260,62219 +342081,342081 +187679,187679 +383300,253759 +16804,16804 +259586,163839 +332233,332233 +266266,266266 +174518,174518 +387836,271518 +3321,3321 +227110,150312 +207230,158886 +169697,169697 +22161,22143 +286667,300 +236931,236931 +145599,145599 +187289,187289 +27101,27101 +175961,175961 +209166,209166 +339753,339753 +95613,95613 +228183,228183 +145186,123885 +147451,147451 +164237,164237 +280203,280203 +8069,8069 +327242,280032 +1942,256802 +298628,147020 +335271,335271 +3095,3095 +3711,3711 +34659,34659 +330517,330517 +331652,331652 +330973,258074 +172896,172896 +176817,176817 +342021,223215 +319320,319320 +316632,316632 +225759,225759 +40761,40761 +299179,299179 +147768,147768 +364679,364679 +396655,396655 +172844,172844 +59149,59149 +204470,204470 +190572,148601 +206844,206844 +7103,798 +37672,54625 +426,426 +79067,79067 +282493,282493 +210152,210152 +111173,111173 +351155,136280 +2154,123955 +331408,331408 +4454,4454 +362505,362505 +257077,257077 +8138,8138 +182116,182116 +244171,244171 +252432,252432 +95386,95386 +246700,246700 +1421,1421 +189192,189192 +33088,33088 +203321,203321 +217531,217531 +3416,3416 +114261,114261 +25775,25775 +416266,416266 +319899,319899 +181265,181265 +199881,199881 +148641,56796 +296986,296986 +5508,12896 +123045,123045 +235362,235362 +284195,266445 +150010,216865 +144526,2533 +3818,3818 +423270,338467 +330,330 +24416,24416 +669,669 +27968,27968 +295609,295609 +362860,362860 +126912,126912 +387763,387763 +109451,109451 +2872,2872 +9735,169 +187056,1621 +236475,25821 +398684,348096 +255516,255516 +5614,5614 +164031,43443 +282707,282707 +284306,284306 +162315,162315 +194062,194062 +323046,323046 +2063,2063 +147299,147299 +279741,279741 +415981,415981 +336323,336323 +233976,233976 +224403,224403 +4356,4356 +346773,346773 +148767,148767 +149097,149097 +334646,334646 +266177,16992 +341876,253664 +383701,383701 +233015,233015 +126613,54625 +171278,171278 +5677,5677 +147240,13 +362723,362723 +363481,363481 +66781,66781 +27266,3895 +230590,230590 +5357,5357 +150014,150014 +368413,368413 +151,151 +7086,236239 +226146,226146 +312059,20734 +4522,4522 +4610,4610 +28302,463 +265785,265785 +293941,293941 +258,102104 +4637,4637 +9606,9606 +165347,165347 +11634,11634 +248763,248763 +341779,341779 +181122,181122 +357071,357071 +12898,12898 +342479,342479 +402324,402324 +319114,319114 +31697,31697 +129293,129293 +283289,283289 +356485,356485 +254189,172881 +172008,172008 +191986,191986 +192830,197178 +163027,163027 +88016,88016 +22677,22677 +314393,314393 +223602,223602 +177702,177702 +176,176 +288828,66171 +328859,328859 +154479,154479 +66437,66437 +1302,1302 +391497,391497 +219638,219638 +28739,438 +102144,102144 +69851,76150 +368956,368956 +131261,131261 +277131,277131 +236650,236650 +193551,193551 +62922,62922 +1203,1203 +222821,38531 +250,483 +950,950 +343847,343847 +342016,342016 +204879,204879 +72478,72478 +385325,344789 +35188,35188 +349179,349179 +326767,21133 +10642,1583 +16320,16320 +360706,251412 +342674,342674 +7251,3613 +141653,141653 +67823,67823 +1582,202942 +175495,175495 +33767,463 +265684,265684 +3279,3279 +8126,8126 +8316,8316 +2891,2891 +146158,146158 +13511,13511 +322124,322124 +203655,85256 +66125,66125 +304333,304333 +308416,308416 +286363,286363 +344408,344408 +329432,329432 +54643,1155 +344759,344759 +69278,69278 +249505,249505 +125996,186751 +308329,248158 +248375,299 +980,11 +311822,311822 +21947,21947 +21022,21022 +260786,234190 +292029,284775 +158544,158544 +295072,295072 +4862,4862 +395181,395181 +386989,386989 +347505,347505 +263223,263223 +174219,36553 +130295,130295 +286145,286145 +287507,287507 +2580,3605 +38553,38553 +6657,6657 +228766,228766 +1448,1448 +298512,298512 +163081,163081 +3586,3586 +129945,129945 +273655,146791 +131568,131568 +383458,383458 +379928,379928 +257706,257706 +378848,260605 +185021,185021 +373621,373621 +1668,1668 +288539,288539 +88406,88406 +354859,354859 +353848,353848 +273976,27627 +180942,146784 +347909,347909 +400113,400113 +72132,283748 +103184,103184 +14403,54625 +291511,46 +295931,295931 +392842,392842 +361923,361923 +410226,366683 +192656,192656 +147568,105134 +82402,82402 +15261,15261 +336851,331190 +370444,370444 +112991,43443 +228553,195137 +3992,3992 +697,697 +313129,313129 +891,891 +113,113 +236304,236304 +280566,280566 +160044,54625 +193213,193213 +354307,354307 +384136,384136 +109764,109764 +357975,357975 +259121,259121 +293981,293981 +16443,5576 +259857,259857 +233502,233502 +246742,246742 +192663,161108 +231450,231450 +246862,246862 +344937,344937 +299268,284775 +3710,157323 +12830,12830 +105024,105024 +92852,92852 +133437,43443 +245222,245222 +356907,139030 +8222,8222 +298154,99630 +219621,30539 +252576,125678 +4564,4564 +109548,109548 +1309,1309 +230361,230361 +39939,39939 +192296,192296 +151835,131260 +2316,31056 +275032,275032 +3412,236239 +258244,258244 +361905,361905 +320879,320879 +34639,34639 +172560,172560 +178007,178007 +368040,368040 +33759,337627 +177697,143741 +230358,230358 +316,316 +194078,194078 +85652,85652 +33732,33732 +118776,118776 +354866,354866 +54433,54433 +304666,304666 +360242,193867 +159355,159355 +282008,282008 +18932,18932 +318388,318388 +245389,203411 +150446,1499 +285554,285554 +342209,342209 +181393,181393 +259345,259345 +4255,4255 +152567,5781 +243971,243971 +121764,121764 +352485,352485 +156482,156482 +340899,340899 +34166,63975 +319107,319107 +66613,66613 +25314,463 +185374,185374 +162041,162041 +230667,230667 +2168,2168 +113931,113931 +327793,327793 +145501,145501 +258389,258389 +267402,626 +295147,295147 +199047,199047 +178835,178835 +194723,194723 +174611,174611 +252657,252657 +394735,394735 +353196,353196 +351488,351488 +370130,370130 +193715,193715 +363278,254683 +248928,248928 +194298,194298 +374134,374134 +212487,212487 +19187,5576 +16000,16000 +147370,147370 +274234,274234 +342277,342277 +43691,43691 +246531,102104 +232924,232924 +5393,5393 +12355,12355 +82955,82955 +40258,40258 +10789,10789 +55763,438 +221369,125678 +127920,127920 +22948,43443 +337070,337070 +232139,232139 +193485,193485 +359205,359205 +210342,85256 +153004,153004 +718,105 +368037,368037 +221372,221372 +266592,266592 +225317,225317 +292900,292900 +18333,102104 +253607,193867 +286109,286109 +347747,342894 +259435,28805 +67453,67453 +161578,161578 +193693,193693 +220778,220778 +90568,90568 +165694,165694 +42560,42560 +6752,6752 +367031,367031 +112192,112192 +5217,5217 +36597,8730 +2780,463 +4928,463 +301387,301387 +172362,172362 +15474,15474 +181807,181807 +255034,255034 +292490,232595 +381248,167355 +284639,284639 +319421,319421 +324344,324344 +184919,184919 +161761,161761 +379,379 +265575,265575 +63,63 +19803,6830 +210,210 +41658,41658 +322499,322499 +388838,39242 +29351,29351 +356996,356996 +418542,418542 +279911,279911 +127282,127282 +110870,110870 +135840,10183 +184704,184704 +188018,279869 +260201,260201 +158982,508 +210908,210908 +288010,274533 +159141,159141 +26459,26459 +2638,2638 +238412,238412 +937,16000 +1515,1515 +205961,205961 +16162,16162 +228570,228570 +243994,243994 +346742,346742 +220598,220598 +36739,36739 +294609,1679 +8887,8887 +378475,378475 +17536,17536 +250781,250781 +178212,178212 +7824,7824 +291855,291855 +339473,339473 +174400,123123 +315138,236709 +614,614 +337098,337098 +265260,265260 +104,104 +391290,271519 +250488,250488 +162378,102104 +27766,13 +27117,27117 +234578,234578 +262388,262388 +3692,3692 +6191,6191 +388570,388570 +5251,463 +244333,244333 +103061,103061 +6202,13855 +136587,136587 +54507,54507 +4086,4086 +30641,30641 +38429,38429 +1509,1509 +313008,313008 +30216,30216 +347347,347347 +213503,213503 +167292,167292 +280812,245931 +308368,308368 +263360,263360 +258295,258295 +260785,234190 +263177,135219 +201856,97842 +172207,24304 +146579,146579 +374909,374909 +2464,2464 +365983,365983 +325011,325011 +367432,4214 +148531,148531 +144492,144492 +114684,114684 +70532,70532 +161965,161965 +193725,193725 +38430,38430 +2224,2224 +323529,7843 +150298,150298 +102897,102897 +257160,257160 +43,90419 +160606,160606 +195454,195454 +363,363 +244806,244806 +347802,224272 +11159,5576 +360058,360058 +173486,173486 +450,450 +262042,262042 +363503,363503 +324150,324150 +2254,2254 +40941,40941 +89668,89668 +170225,170225 +228943,228943 +69136,69136 +2396,2396 +307161,307161 +234452,234452 +224374,224374 +375769,20437 +178655,178655 +62814,16747 +362917,362917 +298619,298619 +5233,11057 +309862,309862 +2114,2114 +719,719 +297531,297531 +951,951 +254681,254681 +306745,227072 +177490,177490 +147999,156009 +198455,198455 +229315,204836 +247313,247313 +232417,232417 +130911,130911 +158168,158168 +1098,1098 +265754,224483 +369154,369154 +237792,811 +27298,27298 +268936,234190 +324246,324246 +72800,55165 +90,90 +193727,193727 +137238,23451 +396543,396543 +325382,339214 +230591,230591 +374982,374982 +129974,54625 +214989,214989 +188325,188325 +166859,166859 +41090,41090 +3563,28805 +96,96 +4642,4642 +373055,373055 +261262,261262 +366488,14996 +189869,189869 +368039,368039 +153991,153991 +1796,1796 +145493,145493 +18794,18794 +258466,258466 +245710,245710 +103651,103651 +32990,32989 +355881,355881 +183797,183797 +46323,46323 +170969,170969 +261165,261165 +9342,9342 +191790,191790 +145475,145475 +402337,402337 +106753,106753 +409858,361958 +164655,164655 +202207,202207 +300036,300036 +385833,385833 +166202,166202 +30024,128554 +144479,144479 +283542,183959 +175088,6351 +161757,161757 +22465,22465 +277662,277662 +158237,158237 +11104,191073 +172073,172073 +232403,232403 +167828,37380 +160784,160784 +39383,39383 +87907,87907 +71593,71593 +234221,234221 +352,352 +170041,170041 +278824,278824 +260218,95105 +381591,381591 +191998,463 +38986,38986 +25008,25008 +299122,299121 +349131,349131 +135215,135215 +393456,393456 +282246,282246 +17533,17533 +153639,153639 +163377,180198 +308388,58421 +289467,289467 +160419,160419 +256980,256980 +59936,59936 +309081,2079 +164354,164354 +319754,319754 +76436,76436 +254017,254017 +156786,43443 +256422,54625 +217423,171110 +163399,21133 +180179,180179 +192116,192116 +282227,282227 +3003,3003 +210663,258104 +134524,181807 +209872,50 +668,668 +371356,345969 +416086,416086 +332170,332170 +234468,234468 +340040,340040 +212551,131260 +34871,34871 +88253,61487 +7483,7483 +206236,20551 +153497,153497 +99219,99219 +283634,283634 +383529,383529 +41612,41612 +12055,12055 +259393,259393 +152847,152847 +139147,139147 +255639,255639 +309297,309297 +274690,27627 +99573,18460 +253679,253679 +188343,188343 +172309,172309 +310363,310363 +84834,84834 +315954,315954 +379363,379363 +884,884 +11437,11437 +623,623 +273436,265489 +330665,330665 +31897,31897 +217553,217553 +330510,330510 +180816,43443 +328624,328624 +4,4 +303159,303159 +358000,169341 +279975,279975 +171541,171541 +6431,6431 +361284,255984 +56128,15474 +301002,301002 +171136,171136 +252362,252362 +22479,22479 +146035,146035 +417505,417505 +209289,209289 +145393,145393 +321506,321506 +553,553 +357475,357475 +313000,313000 +194019,194019 +4532,4532 +320858,204493 +380887,380887 +5504,5504 +251726,251726 +170300,170300 +8284,8284 +120265,120265 +2667,201308 +29379,29379 +2371,463 +276760,204836 +476,476 +5869,204675 +294508,9220 +268159,54625 +294294,294294 +48,48 +5985,5985 +246759,246759 +19624,19624 +124545,160669 +390406,390406 +158973,158973 +275849,3408 +347517,347517 +352482,352482 +5255,5255 +346643,346643 +12131,12131 +90474,90474 +307450,307450 +332853,332853 +12282,12282 +300428,300428 +255658,255658 +268252,268252 +3226,1498 +238090,238090 +363086,363086 +314019,274037 +190232,190232 +221805,221805 +282033,160418 +174064,463 +5195,5195 +204003,204003 +13403,13403 +256685,256685 +267377,267377 +36,36 +241796,241796 +2452,463 +15999,16000 +57141,57141 +195296,195296 +4884,351998 +283924,283924 +273284,273284 +181290,181290 +258154,258154 +241025,241025 +8790,8790 +262520,262520 +57759,57759 +423632,423632 +320859,204493 +343990,343990 +194081,194081 +236370,127493 +301441,301441 +256572,256572 +133405,133405 +382549,382549 +12608,12608 +147363,148575 +2838,2838 +187926,195421 +360931,125678 +35634,3 +251481,206175 +220609,102652 +21414,21414 +224134,43443 +401885,401885 +402206,402206 +4839,4839 +13597,13597 +149130,102104 +3071,712 +203191,203191 +99459,99459 +363893,360896 +329546,329546 +12899,12899 +265755,224483 +240827,240827 +145103,145103 +402310,361212 +7138,7138 +1202,1202 +292899,30957 +234438,71973 +392455,33154 +314170,314170 +354254,354254 +562,562 +312748,155122 +181325,181325 +341256,341256 +35476,35476 +342071,342071 +295604,264476 +291434,32989 +173804,173804 +411003,271518 +340909,393672 +293474,293474 +230898,230898 +1835,1835 +144607,10174 +458,458 +1823,1823 +361279,361279 +107635,107635 +210113,210113 +181404,181404 +283718,283718 +4769,4769 +255293,147949 +90190,90190 +15209,15209 +89342,89342 +12747,12747 +176980,222988 +371330,371330 +260561,260561 +376478,376478 +130134,130134 +8066,8066 +188225,188225 +5641,5641 +19544,19544 +231309,231309 +4346,4346 +65990,65990 +12488,1270 +261898,261898 +218863,218863 +19969,19969 +142557,20545 +314401,38862 +190462,15826 +424809,371183 +193083,193083 +253470,463 +387276,387276 +206266,206266 +166988,166988 +43526,20078 +176435,176435 +16373,16373 +103877,103877 +254193,254193 +11161,5576 +129204,129204 +406329,406329 +345594,345594 +331804,331804 +125658,125658 +256838,256838 +938,938 +75333,75333 +386136,54625 +300591,160903 +2583,313129 +296985,296986 +163175,163175 +316085,316085 +5243,5243 +219430,102104 +35477,35477 +355737,299169 +383758,383758 +71668,71668 +311920,38159 +8325,8325 +380394,380394 +9804,9804 +317411,317411 +174852,174852 +351969,351969 +367361,367361 +182982,182982 +15722,15722 +354669,354669 +23779,23779 +408381,408381 +20077,20077 +148231,148231 +103368,103368 +314672,217609 +87904,87904 +351600,296063 +166372,166372 +264212,264212 +4368,4368 +8935,8935 +260298,260298 +292489,72321 +17863,17863 +65334,107190 +4318,4318 +324320,324320 +40935,40935 +192827,197178 +356230,356230 +202443,202443 +99097,99097 +337796,198138 +27940,27940 +8096,8096 +2853,2853 +366,366 +352710,352710 +137,137 +335664,335240 +322696,322696 +30958,30958 +233361,42142 +103469,103469 +4388,216974 +278297,278297 +308028,308028 +290610,290610 +240822,240822 +292748,292748 +8798,8798 +212370,94104 +308,3348 +217335,217335 +174182,174182 +184561,25727 +23263,23263 +226089,226089 +241106,241106 +5711,171136 +188991,188991 +299815,282171 +3945,3945 +46669,46669 +200280,200280 +38873,38873 +223449,137031 +2520,2520 +404170,125993 +131493,131493 +224907,7806 +171544,299702 +417599,417599 +320992,320992 +244452,87821 +515,515 +387538,387538 +31621,31621 +138104,138104 +195981,195981 +340420,274533 +314971,314971 +364488,364488 +315975,102548 +386216,386216 +173460,173460 +252479,252479 +247980,247980 +3365,3365 +35438,35438 +306311,306311 +67199,67199 +44890,44890 +308305,308305 +2072,2072 +143782,143782 +1860,1860 +14258,14258 +102881,102881 +223726,223726 +75828,75828 +317515,317515 +223996,223996 +123844,123844 +30878,30878 +122890,122890 +27965,27965 +280475,216403 +223950,223950 +292030,284775 +420361,300442 +194392,194392 +2611,2611 +52568,52568 +201861,201861 +300127,300127 +126021,126021 +332420,332420 +289566,289566 +126000,126000 +286447,148951 +361918,361918 +321756,321756 +5478,5478 +22485,22485 +121958,121958 +342046,342046 +820,820 +286205,286205 +244170,244170 +159209,3141 +341286,481 +261529,261529 +415513,415513 +325038,325038 +355876,355876 +19765,293972 +158915,159143 +393000,201825 +363841,363841 +8957,2520 +204734,204734 +459,494 +193212,193212 +2759,2759 +202296,202296 +4657,4657 +87,87 +65313,65313 +365727,365727 +34747,34747 +214758,214758 +220547,220547 +828,828 +5699,24070 +41493,41493 +130705,130705 +4244,4244 +232822,463 +334975,334975 +358558,358558 +216864,216864 +273657,273657 +358079,358079 +137406,137406 +100169,100169 +329400,329400 +230751,93 +118215,118215 +366800,366800 +11385,11385 +321140,321140 +230315,230315 +398996,398996 +304620,195242 +422019,422019 +199076,67254 +303053,303053 +282255,282255 +146818,146818 +129348,129348 +59335,59335 +154895,154895 +20646,277030 +308565,308565 +250725,250725 +85105,85105 +295402,295402 +3341,3341 +187104,187104 +27817,27817 +157779,157779 +224678,151022 +202564,279869 +365455,365455 +256390,256390 +224303,265204 +359237,359237 +194233,125678 +334644,334644 +322354,322354 +4275,4275 +248702,248702 +173776,173776 +386273,386273 +16805,16805 +332606,332606 +223167,223167 +172662,172662 +257089,204286 +169146,169146 +12134,144574 +121657,121657 +29198,29198 +104805,17329 +1383,1383 +31449,31449 +151275,151275 +276169,276169 +161782,196 +66798,15818 +236484,236484 +177823,177823 +36986,36986 +386425,221669 +265031,265031 +253396,253396 +274566,274566 +238182,238182 +56995,56995 +98443,98443 +230430,230430 +359455,359455 +146207,146207 +35964,35964 +4085,4085 +282131,282131 +2960,2960 +142558,20545 +138026,172008 +108637,108637 +40,40 +359927,359927 +40491,17240 +201478,201478 +197455,197455 +153905,153905 +2802,2802 +94731,94731 +228452,228452 +265399,265399 +1695,1695 +330532,330532 +258437,272085 +85800,85800 +1463,1463 +180845,180845 +186986,186986 +394960,146652 +10623,10623 +18401,18401 +7844,7844 +316183,201921 +294463,294463 +309207,309207 +198412,198412 +1794,1794 +5222,5222 +332943,332943 +264858,264858 +5686,5686 +367201,367201 +283867,283867 +317365,317365 +246588,246588 +289601,289601 +241203,69789 +15167,33643 +186475,186475 +133534,133534 +207010,207010 +14038,14038 +124490,124490 +242325,242325 +86167,72809 +421199,421199 +311330,311330 +279087,279087 +192906,192906 +246696,246696 +337929,337929 +2133,2133 +227693,227693 +380677,380677 +361211,361211 +240892,240892 +246532,246532 +160012,224271 +73365,73365 +210101,210101 +122943,34219 +3149,3149 +8017,8017 +161383,159143 +2268,2268 +157912,157912 +126242,126242 +150580,150580 +165563,165563 +260799,2842 +175636,175636 +344050,344050 +210418,210418 +314395,275589 +330538,330538 +191895,191895 +3242,3242 +379056,271518 +199309,199309 +306182,306182 +330097,24310 +415792,415792 +55833,55833 +6226,6226 +26148,26148 +1449,1449 +38805,38805 +5306,5306 +41934,41934 +140279,131568 +206169,206169 +121806,121806 +235839,235839 +90942,90942 +91010,91010 +125315,125315 +144988,135215 +52,52 +38275,38275 +278304,152470 +150012,150012 +298690,298690 +2287,712 +191128,191128 +379706,379706 +1519,1519 +370598,352454 +289565,289565 +98762,98762 +67,67 +64,64 +182544,30804 +170223,170223 +170146,170146 +358027,358027 +141418,141418 +135508,135508 +313730,313730 +400266,400266 +153238,153238 +355276,223321 +15274,85424 +194964,194964 +75360,75360 +188124,188124 +300085,300085 +281514,281514 +303263,303263 +321537,40107 +4667,4667 +34701,398 +4226,4226 +158356,158356 +339598,339598 +363242,363242 +155042,155042 +17526,17526 +56320,56320 +129382,129382 +1520,1520 +300731,300731 +6767,6767 +4831,4831 +118703,118703 +13454,6830 +333373,333373 +178754,178754 +128425,128425 +29055,29055 +3177,3177 +71272,71272 +128011,128011 +331953,279613 +296164,296164 +159910,254976 +17922,17922 +293925,173536 +391124,171879 +9615,9615 +133518,8730 +232981,65282 +245444,245444 +273654,146791 +302281,302281 +146144,146144 +26162,26162 +29026,5206 +40235,40235 +113971,113971 +207919,207919 +188181,188181 +310031,1412 +124390,124390 +29140,16747 +367584,367584 +169530,169530 +40234,40234 +169366,169366 +280162,280162 +174093,174093 +218310,218310 +13347,13347 +386436,386436 +249275,249275 +373190,373190 +277,277 +499,499 +247733,247733 +289223,159508 +156007,156007 +158837,158837 +401543,401543 +246366,246366 +313002,313002 +2542,2542 +309625,309625 +91666,91666 +158564,158564 +249824,43443 +269917,269917 +174192,174192 +319078,188866 +211323,176334 +287591,287591 +30483,30483 +312,147623 +275626,36218 +162152,162152 +170202,170202 +234104,234104 +181385,154892 +10662,10662 +131581,131581 +282765,282765 +368109,368109 +5476,5476 +301480,301480 +7453,7453 +60815,60815 +248182,248182 +39103,8098 +108377,284306 +127134,127134 +299248,299248 +264991,264991 +327723,267661 +121409,121409 +119804,119804 +720,720 +2613,2613 +381827,381827 +205819,205819 +258693,258693 +311,311 +326355,6249 +39940,39940 +229599,229599 +181867,181867 +212839,212839 +1072,1072 +26156,26156 +9855,9855 +228526,228526 +337500,284775 +418812,161970 +180921,180921 +7218,7218 +23928,23928 +27028,27028 +637,637 +116046,116046 +367992,367992 +24410,24410 +338353,338353 +186723,84889 +175023,175023 +18946,18946 +359835,359835 +2860,2860 +21709,21709 +290829,66188 +261588,69789 +514,514 +356039,356039 +5394,5394 +342075,2129 +310194,310194 +2665,2665 +136284,90870 +301242,204135 +270851,270851 +8139,8139 +276337,276337 +334349,102548 +173759,173759 +135,135 +404041,404041 +99935,99935 +21436,21436 +1702,1702 +38778,165986 +29456,29456 +341963,341963 +110260,110260 +346950,346950 +284998,284998 +287275,164928 +319999,319999 +387015,387015 +343741,343741 +149793,149793 +7109,7109 +272215,272215 +138614,138614 +309913,309913 +38387,760 +359,359 +310636,472 +40243,40243 +284269,284269 +142503,147949 +342638,342638 +747,10174 +176914,176914 +8630,54625 +301018,301018 +6508,6508 +177248,177248 +365761,359502 +154560,144728 +147624,73761 +271837,271837 +322168,322168 +154394,154394 +329121,98527 +210292,210292 +232201,232201 +368754,324413 +566,566 +41100,41100 +379699,379699 +97155,97155 +254894,254894 +424679,424679 +142085,142085 +217544,217544 +367206,181304 +156719,156719 +2392,2392 +201037,146312 +124047,124047 +300407,300407 +1145,1145 +415938,415938 +200512,200512 +17465,17465 +379633,379633 +233848,233848 +239951,239951 +364356,281515 +14039,14039 +197269,176334 +147171,147171 +347304,347304 +223777,223777 +163105,6249 +12567,224374 +156457,156457 +265226,265226 +5635,5635 +145,145 +1533,1533 +279348,28259 +29383,29383 +104640,157969 +373284,373284 +417426,417426 +199357,199357 +142556,20545 +179259,179259 +2324,2324 +54221,54221 +110286,110286 +24935,24935 +195484,195484 +391886,295607 +33077,33077 +342200,342200 +390606,390606 +343334,343334 +300095,300095 +288335,288335 +42206,42206 +287673,287673 +413364,619 +249233,249233 +164236,164236 +264925,264925 +342073,342073 +108665,108665 +282527,282527 +204498,204498 +23917,23917 +19727,19727 +197786,197786 +206448,206448 +198003,198003 +280,216974 +220452,220452 +185817,143884 +39332,39332 +201920,201920 +415036,415036 +276296,276296 +9354,9354 +232254,232254 +5035,5035 +20889,20889 +262534,262534 +128204,128204 +258636,199780 +40550,3852 +207487,207487 +29017,29017 +1157,1157 +385408,385408 +14007,14007 +304042,204493 +354395,354395 +238221,238221 +66076,8124 +210295,210295 +181328,181328 +6642,6226 +258207,147451 +324803,2122 +350,350 +183264,183264 +26458,26458 +195547,195547 +13223,834 +222291,222291 +1313,1313 +403150,403150 +285039,285039 +133747,193557 +38980,38980 +354335,239464 +272599,272599 +5928,5928 +324278,324278 +367625,228855 +212581,125548 +1633,1633 +156878,156878 +11929,463 +106113,17396 +171431,171431 +257707,368040 +298764,298764 +11705,11705 +3637,3637 +246689,43443 +23348,23348 +412068,273264 +198630,35342 +326358,326358 +6117,6117 +110868,110868 +184563,18460 +254639,254639 +410103,24181 +281961,281961 +303036,284775 +4200,4200 +370325,233961 +55679,55679 +157322,157322 +289850,289850 +362700,362700 +343387,343387 +253087,253087 +5791,5791 +320255,320255 +277902,277902 +74408,54625 +171339,171339 +18606,18606 +85572,85572 +34334,96749 +162114,162114 +227888,54625 +360956,360956 +220193,102104 +61028,101785 +402106,402106 +149794,149794 +2090,12140 +152846,152846 +236974,236974 +8495,299 +138963,126100 +370984,370984 +43365,43365 +2422,76436 +7634,7634 +154804,125678 +68199,68199 +1525,1525 +374858,21920 +231027,231027 +408836,342562 +1380,1380 +145205,145205 +58329,58329 +343133,343133 +4168,4168 +144525,12995 +6861,6861 +296987,296986 +3595,3595 +5281,5281 +263351,263351 +404,404 +170537,170537 +131241,131241 +102690,102690 +252883,252883 +325401,325401 +168421,11 +337255,337255 +378293,378293 +150294,150294 +220141,43443 +285436,158886 +25695,25695 +16444,426 +171037,171037 +318559,318559 +341306,85769 +321757,4209 +324467,324467 +227605,227605 +166976,166976 +1371,1371 +208700,208700 +5042,5042 +120447,257 +426767,426767 +232353,232353 +137141,137141 +304983,304983 +62291,62291 +212450,212450 +1501,1501 +233996,233996 +366577,366577 +178030,178030 +175763,175763 +309857,284775 +2728,2728 +208754,9203 +1254,1254 +203800,36367 +420068,164928 +94255,94255 +253696,253696 +199269,199269 +118337,118337 +185378,224483 +265912,265912 +221233,221233 +40816,40816 +308948,27627 +177725,177725 +209206,209206 +607,607 +393531,159675 +282673,250780 +112694,112694 +36297,36297 +2919,463 +32129,32129 +352026,712 +56294,8098 +139747,139747 +8192,8192 +355850,355850 +7215,7215 +334049,334049 +165332,3076 +230275,230275 +207398,207398 +42731,25727 +283584,283584 +160853,160853 +244241,244241 +225736,225736 +46422,46422 +359758,337864 +148740,438 +230746,230746 +339790,339790 +19056,19056 +74102,74102 +295195,295195 +168700,181810 +337973,337973 +343665,137031 +303418,303418 +53624,191790 +378877,341974 +163047,43022 +142334,142334 +4651,4651 +210008,210008 +160524,160524 +99130,175095 +227171,179572 +381188,381188 +345684,345684 +18057,18057 +330145,330145 +242589,242589 +316928,316928 +2883,463 +42105,42105 +308652,308652 +366756,366756 +421547,369646 +302876,302876 +5772,5772 +14860,35342 +188885,188885 +329607,151022 +166418,166418 +341008,266121 +371091,371091 +4106,35248 +26952,463 +343386,343386 +205826,205826 +180853,180853 +403258,403258 +166569,166569 +327721,327721 +205831,205831 +300908,191894 +339296,339296 +338364,338364 +11432,5928 +165959,165959 +335467,335467 +42651,42651 +386906,11 +390903,390903 +264669,264669 +219774,187377 +160908,160908 +235113,25213 +29199,10662 +5034,1563 +298271,298271 +23421,23421 +298163,298163 +2252,58 +1591,1591 +153498,38545 +182047,182047 +269847,159575 +336622,336622 +63395,63395 +270443,270443 +304450,304450 +235533,235533 +249106,296912 +415843,3076 +232078,232078 +1950,1950 +125493,125493 +23935,23935 +260923,260923 +163310,163310 +2368,2795 +3248,3248 +37184,7929 +154939,154939 +262621,262621 +250865,168054 +4643,4643 +331685,331685 +174893,174893 +185380,224483 +285071,285071 +103670,103670 +17530,17530 +1278,1278 +27451,8790 +352818,352818 +300765,300765 +275785,275785 +365128,217861 +1836,1836 +223619,54625 +366997,32412 +853,853 +321305,294235 +155802,155802 +1726,1726 +265917,265917 +201557,201557 +255332,156091 +220730,220730 +1713,240 +4953,1899 +205774,205774 +286790,286790 +223518,223518 +223312,223312 +1965,1965 +328636,253185 +3656,3656 +298624,298624 +236125,192802 +263222,263222 +288798,85204 +217471,148575 +6928,1583 +121993,121993 +308475,308475 +365608,365608 +249751,249751 +11122,11122 +285115,285115 +137872,137872 +271693,271693 +293404,293404 +88871,88871 +7719,7719 +20082,20082 +25605,25605 +5687,5687 +241853,204505 +139572,139572 +369007,438 +350793,209696 +37906,37906 +228409,228409 +13016,13016 +382419,63268 +371556,371556 +278229,278229 +256939,256939 +359011,359011 +127981,127981 +229453,143986 +217176,217176 +7176,7176 +310610,310610 +403221,403221 +126313,126313 +348870,348870 +344974,344974 +135888,135888 +287116,287116 +236205,236205 +82610,82610 +410382,300905 +274028,274028 +368340,368340 +254634,254634 +351292,351292 +322523,276925 +179547,179547 +234439,183251 +144789,144789 +841,2569 +318307,318307 +342443,342443 +299178,299178 +8320,8320 +403683,403683 +118568,16986 +274178,274178 +21569,21569 +40483,24935 +206928,206928 +325409,102104 +152172,311823 +386018,386018 +12318,12318 +231624,231624 +315,463 +147206,147206 +32146,32146 +257700,43443 +178099,178099 +295503,186904 +144506,144506 +369509,415981 +251350,145393 +5941,5941 +227422,227422 +16035,16035 +723,723 +12533,12533 +12141,12141 +229240,229240 +383481,2338 +364042,364042 +217428,20545 +223033,223033 +1163,1163 +274,274 +180193,180193 +301317,301317 +710,710 +316494,316494 +145424,145424 +429293,429293 +34098,34098 +982,982 +309427,309427 +286358,199182 +2574,2574 +140314,140314 +197705,197705 +387776,387776 +408770,408770 +387144,15290 +1144,1144 +301572,301572 +30324,155362 +238181,127920 +334827,334827 +248072,248072 +371973,371973 +165404,165404 +140638,140638 +368899,368899 +6544,49276 +62214,62214 +1803,1803 +173574,173574 +3874,2392 +324894,324894 +228370,228370 +343121,343121 +178839,178839 +229543,229543 +183836,183836 +134283,134283 +185381,224483 +11091,11091 +385643,141572 +180937,180937 +302755,302755 +230553,230553 +322076,24773 +184145,107190 +197076,197076 +383087,414302 +33785,33785 +31821,463 +189123,189123 +2904,1563 +221371,166384 +223327,223327 +77011,77011 +13728,13728 +286770,286770 +5829,5829 +661,661 +178153,178153 +36480,36480 +326848,326848 +267991,697 +260788,260788 +267010,267010 +337784,337784 +334717,288513 +1881,1881 +6929,6929 +306656,131357 +116806,116806 +172358,172358 +286114,286114 +323206,323206 +334216,334216 +289183,238094 +214747,125548 +382315,232832 +201046,201046 +287247,287247 +10964,10964 +159333,159333 +1827,1827 +140612,140612 +285047,285047 +3707,3707 +186767,186767 +384175,384175 +473,473 +753,753 +147104,147104 +273909,273909 +574,574 +366067,366067 +170909,246862 +11436,11436 +102835,102835 +9962,553 +192508,192508 +7239,7239 +259134,4001 +329086,329086 +2123,2123 +6253,18401 +345036,131260 +793,793 +4228,4228 +2298,2298 +113567,113567 +174990,174990 +99808,99808 +37739,37739 +65272,65272 +360113,360113 +154125,42898 +271751,159503 +294233,294233 +129492,129492 +367978,302524 +310611,310610 +215503,215503 +11330,11330 +318079,318079 +1358,1358 +94365,94365 +76883,76883 +76247,76247 +284118,284118 +312463,312463 +11038,11038 +411404,463 +220284,220284 +302477,302477 +280984,280984 +366194,366194 +329128,38343 +134626,134626 +339349,339349 +29411,29411 +158970,158970 +368103,368103 +175707,299104 +869,869 +198408,198408 +303981,43443 +231215,231215 +220380,220380 +197707,197707 +302991,284775 +135193,135193 +155495,155495 +304821,304821 +266018,266018 +4207,4207 +256998,256998 +28037,28037 +1245,1245 +2301,1339 +152345,152345 +35220,221848 +371956,334829 +391045,391045 +263894,263894 +158971,158971 +751,751 +401217,401216 +303830,303830 +237114,192116 +276924,276924 +232090,232090 +239845,239845 +3836,3836 +374507,70519 +62030,266018 +372880,372880 +268274,102104 +131183,9203 +6495,6495 +281945,205164 +31575,31575 +352687,204836 +232661,232661 +99078,99078 +341189,267661 +232509,232509 +222462,222462 +219807,219807 +41875,2968 +364556,364556 +183447,183447 +8939,8939 +392473,392473 +179280,179280 +18747,18747 +246146,246146 +228944,228944 +268665,268665 +264278,264278 +291952,291952 +245904,245904 +282297,282297 +289,289 +319529,319529 +337397,54625 +321168,321168 +602,602 +41033,41033 +158793,158793 +7755,7755 +139897,139897 +34829,34829 +391165,391165 +386135,386135 +1489,1489 +79068,79068 +225062,67877 +392192,392192 +26054,26054 +159446,159446 +304987,304987 +233932,233932 +354031,241590 +104575,104575 +75957,75957 +363538,363538 +343745,343745 +284832,284832 +255392,255392 +361195,319971 +269971,269971 +208804,208804 +330602,330602 +425005,199792 +225316,225316 +176589,176589 +34819,34819 +363614,363614 +176963,176963 +371340,371340 +184371,184371 +357956,357956 +286925,286925 +38764,38764 +245824,245824 +428559,385331 +11886,11886 +1329,1329 +155636,155636 +8711,8711 +220248,220248 +240759,240759 +310612,310610 +245224,245224 +8976,2447 +339591,281655 +379110,379110 +181120,181120 +28944,28944 +10679,10679 +277611,181810 +271268,271268 +202737,202737 +12248,12248 +309000,309000 +378565,378565 +385770,385770 +276161,276161 +63778,40990 +414855,414855 +142432,142432 +179661,179661 +393306,393306 +264314,264314 +24771,24771 +258561,258561 +5698,5698 +507,507 +148213,148213 +369689,369689 +218200,218200 +261683,261683 +292917,292917 +368041,229598 +280106,240 +322568,322568 +4201,4201 +246746,246746 +407805,407805 +102681,102681 +76207,76207 +3110,3110 +362587,362587 +405460,405460 +266802,204836 +35293,1334 +129091,129091 +138105,138104 +346951,346951 +18115,18115 +220926,220926 +400498,5534 +42448,42448 +119464,119464 +344295,365455 +272542,102104 +284111,284111 +376966,376966 +3411,3411 +1508,1508 +322451,322451 +189504,463 +367295,367295 +62226,62226 +209450,209450 +260170,260170 +170472,170472 +399374,399374 +310726,310726 +327913,279613 +294623,294623 +16362,16362 +2607,2607 +346248,346248 +362693,163412 +178450,178450 +325191,325191 +78,22143 +5410,5410 +170477,170477 +205766,205766 +329084,329084 +169544,169544 +220341,220341 +191057,191057 +197285,197285 +142924,142924 +338678,253664 +861,861 +245532,245532 +211808,211808 +2608,2608 +248641,32674 +2524,2524 +226562,20551 +184372,184371 +176601,150376 +205249,205249 +168232,168232 +2938,2938 +33172,33172 +294113,294113 +251660,251660 +226454,226454 +391752,391752 +300148,300148 +358094,258148 +21704,21704 +306494,306494 +216985,216985 +154526,154526 +251131,251131 +155119,62871 +287693,287693 +76322,27225 +304728,248158 +157521,157521 +270270,270270 +379761,379761 +234842,234842 +290367,290367 +608,608 +324512,232254 +131332,19544 +331699,331699 +8003,8003 +256728,256728 +214898,12692 +131393,131393 +18121,2398 +345894,345894 +403409,403409 +288572,7453 +156976,156976 +91739,91739 +15410,15410 +148443,148443 +145478,1465 +183150,183150 +302965,302965 +79282,79282 +374573,374573 +204175,62871 +38364,38364 +199908,199908 +214125,214125 +401493,401493 +314397,314397 +5965,5965 +17971,7634 +4288,85769 +3385,3385 +354258,354258 +226256,226256 +39345,39345 +288558,288558 +177541,177541 +361084,361084 +203885,203885 +245085,245085 +67148,38159 +240100,268252 +417323,417323 +287671,287671 +33911,33911 +396091,396091 +96345,96345 +392611,392611 +2132,2132 +1814,929 +8812,8812 +18931,18931 +11202,11202 +309142,309142 +37441,37441 +4289,85769 +365770,35570 +65814,65814 +840,840 +182635,182635 +9556,9556 +27306,27306 +176633,176633 +24764,463 +42396,83734 +28436,28436 +299544,299544 +188465,188465 +175989,175989 +158098,1589 +331267,331267 +270637,9674 +207764,207764 +38471,38471 +128475,128475 +4292,4292 +324403,324403 +406684,406684 +256538,256538 +181235,18500 +388668,388668 +236250,236250 +340722,241590 +186945,186945 +909,909 +287258,287258 +197408,197408 +232461,232461 +10164,10164 +383789,262341 +224830,156373 +234167,234167 +409581,409581 +419125,419125 +118293,91523 +129380,129380 +13520,13520 +357813,154203 +32288,32288 +67436,67436 +182218,182218 +288533,288533 +391985,391985 +212958,212958 +244795,50 +181,105134 +361637,361637 +200170,200170 +16693,271460 +383551,383551 +133689,133689 +206091,206091 +71676,815 +313292,284775 +356080,356080 +41837,41837 +379297,379297 +247143,247143 +234949,332944 +215213,215213 +1806,1806 +326112,326112 +225836,225836 +171419,11 +366484,366484 +198611,198611 +322198,17484 +280131,280131 +11967,11967 +211453,211453 +313834,272438 +440,440 +340455,340455 +10707,10707 +415836,415836 +254992,254992 +330401,330401 +3679,3679 +3712,3712 +169062,169062 +358987,358987 +31542,31542 +2135,2135 +226997,226997 +306202,306202 +176247,176247 +309058,309058 +89695,124047 +5157,5157 +17030,17030 +31853,165 +10682,10682 +349082,349082 +8722,8722 +286062,286062 +183643,216985 +382828,382828 +153113,153113 +141419,141419 +258748,258748 +328862,328862 +383175,383175 +122691,122691 +313090,313090 +352981,287084 +140524,140524 +266141,21791 +321563,155821 +329669,329669 +219766,219766 +378135,378135 +347218,347218 +238957,238957 +336946,336946 +282237,282237 +296605,296605 +1997,1997 +41291,16986 +232267,232267 +193062,1117 +140997,140997 +988,8668 +299908,287780 +7451,7451 +289937,220558 +142132,36218 +174260,247585 +211813,155496 +313467,313467 +11093,11093 +391561,271518 +5482,5482 +61269,23107 +377645,377645 +240357,240357 +4358,4358 +269766,269766 +232345,232345 +321044,102548 +3572,3572 +9132,9132 +2353,2353 +331952,279613 +231666,231666 +152851,152851 +293556,293556 +143680,88408 +24082,24082 +153703,193670 +123129,42448 +37257,37257 +229965,163056 +154432,105134 +43249,43249 +351616,156091 +72941,72941 +286533,432 +265681,265681 +148204,148204 +128137,128137 +8782,8782 +147505,147505 +134,134 +219650,219650 +2794,2794 +314550,172287 +270972,270972 +260694,260694 +35801,35801 +371636,371636 +112381,112381 +298459,298459 +288276,288276 +144632,144632 +195353,195353 +128938,128938 +300521,300521 +187777,187777 +20590,20590 +187976,187976 +108157,108157 +5991,5991 +342492,342492 +326400,326400 +368000,319807 +383172,383172 +329812,329812 +5351,5351 +254846,254846 +24270,24270 +369800,369800 +7976,7976 +376,376 +372831,372831 +144150,144150 +171199,43443 +156843,156843 +80933,80933 +254132,254132 +256526,256526 +212376,212376 +359234,359234 +341574,341574 +4485,4485 +137744,137744 +416059,416059 +234373,234373 +37061,1589 +421208,421208 +354425,354425 +294788,294788 +368519,368519 +261246,261246 +127324,127324 +166109,166109 +315976,102548 +11438,11438 +12188,12188 +344334,254193 +207442,207442 +4287,4287 +21503,21503 +140172,140172 +153225,123885 +363695,363695 +212382,212382 +172542,172542 +370166,370166 +280201,280201 +208256,43443 +191038,191038 +63385,24935 +375616,375616 +134637,134637 +18824,18824 +324104,324104 +319736,319736 +202582,202582 +256940,112138 +14940,14940 +320030,320030 +52825,13 +5171,5171 +309109,24480 +66665,66665 +21854,21854 +147030,147030 +281676,281676 +151251,151251 +291183,291183 +59576,59576 +265039,223376 +75782,75782 +1257,1257 +9092,9092 +279014,279014 +114562,114562 +286980,158544 +9202,9202 +204055,204055 +300099,300099 +8250,8250 +357873,357873 +338521,338521 +26884,26884 +264295,264295 +99479,99479 +328237,328237 +6551,3855 +137480,137480 +31968,526 +20266,20266 +201345,201345 +189056,189056 +284082,284082 +161138,161138 +5559,5559 +203584,203584 +281385,281385 +386508,386508 +131121,131121 +24511,13 +206925,2633 +3339,17 +314349,233961 +195533,195533 +274300,274300 +13875,624 +380916,380916 +203560,203560 +136416,136416 +359657,165004 +66080,66080 +256701,256701 +287450,120523 +312722,312722 +42713,42713 +176564,176564 +22604,22604 +1844,204003 +239465,239465 +284054,284054 +205078,205078 +256779,224483 +3567,3567 +2091,2091 +6646,6646 +171721,171721 +3887,3887 +87120,87120 +348973,348973 +163277,130882 +198791,198791 +360700,360700 +360879,360879 +20761,20761 +287899,4001 +185241,3518 +359157,359157 +255635,255635 +207202,207202 +22544,5576 +282544,282544 +174926,166988 +298309,298309 +159566,159566 +72050,72050 +164027,38797 +313835,313835 +362121,362121 +12875,12875 +163354,163354 +327392,327392 +369,369 +372197,372197 +218957,218957 +371482,371482 +379582,379582 +6251,6251 +240902,4228 +37738,37738 +485,485 +161620,161620 +357991,357991 +10908,4488 +299105,299105 +22377,22377 +271038,271038 +156737,156737 +1253,1253 +3600,3661 +260239,260239 +344508,344508 +156853,156853 +155411,129731 +93185,93185 +91817,91817 +172206,172206 +369341,369341 +220224,220224 +359892,359892 +291105,204836 +7338,463 +387248,387248 +215521,215521 +1901,1901 +285133,19100 +249868,249868 +326019,227127 +166280,234842 +172158,172158 +233016,233016 +256085,166384 +3466,3466 +55131,55131 +17395,17395 +164205,164205 +67361,67361 +302933,302933 +308500,334307 +357316,357316 +746,746 +108430,108430 +103235,103235 +189506,189506 +38904,38904 +264566,264566 +242482,206156 +366470,366470 +1709,1709 +319829,319829 +70916,70916 +352810,235922 +326985,326985 +286559,286559 +310371,310371 +191991,191991 +199646,199646 +184560,25727 +265569,265569 +273993,273993 +271044,271044 +255524,50750 +36339,36339 +191285,191285 +2997,2997 +254138,243994 +340789,340789 +205420,227072 +29599,29599 +8285,8284 +158978,144728 +3966,3966 +167650,167650 +281206,281206 +2256,2256 +242292,242292 +357872,357872 +198971,198971 +158812,158812 +148264,148264 +46614,46614 +256708,256708 +2742,2742 +260156,260156 +262135,262135 +11396,11396 +150533,150533 +234673,234673 +233354,233354 +369483,369483 +279204,279204 +306169,306169 +42131,42131 +153870,153870 +204733,204733 +192274,192274 +13254,13254 +293671,54625 +32171,32171 +2157,2157 +2543,2543 +3851,3851 +128537,128537 +374199,374199 +244817,244817 +256801,256801 +129010,129010 +13995,13995 +31554,31554 +58782,58782 +192777,242 +368390,282922 +26138,12995 +2472,2472 +310757,310757 +9296,9296 +799,799 +332804,332804 +413461,413461 +360328,360328 +301,301 +46362,46362 +299453,299453 +347600,347600 +9386,6830 +333144,45986 +2610,235375 +4113,4113 +281982,281982 +379037,148949 +204803,131357 +189829,189829 +126026,85108 +47218,47218 +377028,377028 +87200,87200 +1782,1782 +216014,18723 +144228,144228 +427345,262712 +287222,287222 +310641,310641 +5939,240905 +146963,146963 +338763,338763 +15081,15081 +22203,22203 +325828,325828 +37885,37885 +244082,244082 +4091,4001 +400756,400756 +289397,289397 +403000,403000 +260465,260465 +137500,137500 +329962,329962 +195373,197178 +167237,167237 +352593,352593 +173270,5206 +94733,94731 +131232,131232 +162591,162591 +67693,67693 +284294,284294 +26468,26468 +247567,101785 +250355,250355 +4881,4881 +3316,3316 +309003,309003 +2211,2211 +424995,424995 +8232,8232 +215155,66781 +175541,175541 +244121,85204 +195232,195232 +82424,82424 +10523,10523 +226802,226802 +2994,29285 +348503,348503 +391995,391995 +180256,328565 +315252,163413 +182178,182178 +2541,2541 +257349,257349 +347603,347603 +163432,163432 +58625,58625 +1370,1339 +150996,135215 +369384,369384 +19903,19903 +244196,148575 +184730,184730 +1471,1471 +68250,68250 +275783,275783 +138338,138338 +3766,3766 +23827,23827 +246316,246316 +38858,38858 +238026,238026 +127432,127432 +66608,66608 +20228,20228 +1188,1188 +349750,349750 +151456,112138 +346296,346296 +2399,463 +303003,303003 +368939,294463 +26859,26859 +192824,197178 +342508,342508 +145722,145722 +402714,402714 +294813,294813 +136890,136890 +375440,375440 +41763,41763 +181192,43443 +187590,187590 +361503,361503 +256568,256568 +240906,240906 +27823,27823 +348425,348425 +41243,41243 +1566,39463 +251037,251037 +10559,10559 +867,867 +7831,7831 +386199,386199 +369104,369104 +9476,9476 +8954,8954 +191351,191351 +5485,5485 +5826,5826 +184085,184085 +27802,66056 +119899,119899 +372891,372891 +369862,369862 +37794,37794 +323841,323841 +368846,368846 +401795,401795 +7365,7365 +4270,4270 +247191,247191 +361314,361314 +38870,38870 +59008,59008 +360932,125678 +362965,362965 +372433,372433 +209095,209095 +536,536 +395906,256804 +159375,159375 +358808,134726 +378851,244992 +354806,354806 +321047,102548 +219122,219122 +209280,209280 +86415,38429 +58886,58886 +132416,132416 +375408,355093 +258376,258376 +5827,5827 +1271,1271 +22938,22938 +3627,3627 +278373,278373 +290028,178900 +6608,6608 +1518,1518 +301728,301728 +102631,102631 +161537,161537 +365453,365453 +7662,7662 +370687,370687 +336357,336357 +378629,281260 +36596,1782 +317312,317312 +297864,297864 +364277,364277 +497,497 +33155,33155 +15235,15235 +126426,126426 +272260,272260 +2179,2179 +263744,263744 +3050,4086 +40561,40561 +342927,342927 +177857,177857 +318702,463 +24157,24157 +247578,247578 +146880,146880 +158742,154634 +265113,265113 +237551,237551 +10579,10579 +381083,381083 +141428,141428 +315877,315877 +291951,291951 +204615,204615 +796,796 +223481,223481 +295368,295368 +194194,194194 +17397,17397 +238360,238360 +353326,353326 +400508,400508 +101796,101796 +319290,284775 +313159,313159 +400617,342894 +64675,64675 +343350,343350 +289765,289765 +93194,93194 +20044,28805 +402125,402125 +149863,149863 +170415,170415 +348325,348325 +285893,285893 +215436,131111 +97094,97094 +6627,6627 +378013,374145 +333759,333759 +245823,245823 +60029,60029 +309698,256513 +404179,404179 +197061,197061 +371544,371544 +83092,83092 +2060,2060 +148507,148507 +174556,174556 +162580,162580 +4291,85769 +287325,224483 +99696,99696 +264452,264452 +222951,309427 +236143,236143 +234093,234093 +18400,18400 +3517,3517 +175121,144728 +257836,257836 +342135,342135 +8208,8208 +285570,285570 +234105,234105 +18975,18975 +256778,224483 +180471,180471 +24207,24207 +199766,199766 +260000,204836 +94734,94731 +109,109 +373489,163172 +5021,5021 +360056,360056 +56880,56880 +207845,207845 +137933,137933 +171489,25669 +5060,5060 +268469,268469 +329648,329648 +9833,9833 +39635,208480 +350469,350469 +40370,40370 +301614,301614 +142265,142265 +343833,343833 +6926,1323 +182638,182638 +74596,100901 +394691,394691 +129946,129946 +40759,40759 +234292,234292 +385645,385645 +192701,192701 +112598,112598 +245629,245629 +3706,3706 +415921,415921 +300081,300081 +88140,88140 +242753,148575 +27490,27490 +359442,20734 +206943,206943 +317288,317288 +8553,8553 +226170,121408 +222853,222853 +10659,79067 +255356,38159 +249889,170042 +1317,1317 +179385,179385 +28738,125311 +4386,463 +202435,202435 +21182,21182 +38703,38703 +2342,2342 +199086,199086 +2376,2678 +1831,1831 +1269,1269 +141735,141735 +2975,463 +380784,380784 +156108,102104 +189351,189351 +415054,415054 +15827,15827 +297569,297569 +8702,8702 +256742,224483 +257667,257667 +108705,108705 +183720,183720 +360259,360259 +265304,265304 +366166,366166 +388367,63888 +145042,145042 +368229,368229 +207203,207203 +313723,313723 +172235,172235 +190553,43443 +37362,11396 +127188,127188 +346702,346702 +288424,288424 +32405,32405 +285110,285110 +238919,293959 +31443,31443 +17557,17557 +255013,102104 +12764,12764 +181319,181319 +66797,15818 +254743,254743 +323365,323365 +75441,75441 +147883,463 +211693,211693 +204601,204601 +261831,261831 +37383,37383 +104498,104498 +417155,417155 +156474,154939 +249768,249768 +129225,129225 +169814,121408 +256956,256956 +4934,4934 +7008,7008 +161995,161995 +260131,260131 +93819,93819 +203042,203042 +224119,224119 +316312,316312 +399826,399826 +22843,22843 +310880,3986 +10681,74 +258135,258135 +24225,420 +190017,178153 +82272,82272 +364276,364276 +164110,12692 +320084,259121 +200359,200359 +248761,248761 +67309,67309 +18615,18615 +63743,63743 +294594,236650 +172484,366577 +101644,101644 +6540,6540 +401325,401325 +231824,231824 +263,263 +259837,259837 +5041,5041 +242312,242312 +66088,66088 +264797,264797 +9346,9346 +85609,85609 +369519,155362 +193327,193327 +397,146418 +128218,128218 +148744,323365 +150364,150364 +325477,325477 +187121,187121 +140101,140101 +72285,72285 +179251,179251 +39066,39066 +383450,181761 +127839,127839 +341080,54625 +303,303 +380183,380183 +419384,419384 +4362,4362 +83196,83196 +254195,179280 +169658,169658 +249677,173804 +325681,325681 +303648,303648 +19665,19665 +403160,403160 +4009,4009 +132229,132229 +3170,3170 +359082,359082 +363455,492 +18529,18529 +346982,346982 +206904,206904 +217974,217974 +266980,266980 +22029,22029 +383791,383791 +196348,196348 +175464,175464 +170825,170825 +168582,168582 +277901,277901 +316113,316113 +144468,8098 +345408,345408 +209290,209290 +121615,121615 +162384,162384 +365037,365037 +307715,307715 +18781,123955 +365647,365647 +292506,292506 +176215,176215 +306577,306577 +182605,182605 +316620,316620 +320960,320960 +309315,309315 +373084,54625 +303734,303734 +174231,174231 +156750,156750 +408727,13 +165522,20545 +172164,550 +379066,318243 +10445,10445 +186020,186020 +408724,299106 +280655,280655 +334278,334278 +136245,136245 +94915,43443 +220331,220331 +139042,139042 +14017,1334 +170799,170799 +145609,145609 +232106,232106 +317,317 +378833,378833 +7753,158237 +230968,230968 +67285,67285 +24933,24933 +15435,15435 +193417,193417 +371842,371842 +415108,415108 +411865,411865 +5142,5142 +22606,22606 +99132,99132 +88190,18401 +172162,172162 +365653,365653 +189030,189030 +7975,7975 +4278,4278 +328478,328478 +24085,24085 +32149,32149 +420385,420385 +154498,154498 +379300,379300 +269403,269403 +352996,1323 +231045,231045 +208411,208411 +55781,55781 +203624,203624 +387472,387472 +98122,98122 +349258,349258 +21955,6830 +7502,7502 +417696,355433 +243435,243435 +10672,10672 +383725,383725 +4241,4241 +232216,232216 +22940,22940 +72448,72448 +289802,176963 +42112,42112 +162476,155068 +251364,912 +7748,7748 +386166,194655 +245876,187590 +233969,233969 +358805,358805 +35599,35599 +94331,94331 +209886,117959 +159515,159515 +23761,23761 +377704,34119 +249888,249888 +258131,258131 +282774,282774 +274548,274548 +232732,232732 +187808,187808 +302990,284775 +22847,22847 +302310,302310 +128568,128568 +240901,240901 +257306,257306 +194307,194307 +223669,223669 +317430,317430 +180809,180809 +256780,224483 +326264,326264 +149639,149639 +171133,171133 +296644,296644 +25242,25242 +142401,142401 +367030,367030 +88464,88464 +4980,4980 +310198,113294 +144223,144223 +406320,266083 +314461,314461 +299270,284775 +256487,256487 +297001,297001 +257991,257991 +283077,54625 +378654,378654 +330152,182134 +174584,174584 +96765,96765 +358561,337961 +26745,26745 +736,736 +387219,387219 +175510,175510 +351972,134453 +215482,215482 +387263,387263 +3663,2524 +349943,349943 +249095,249095 +252,252 +288431,234469 +21469,21469 +280041,154086 +99655,99655 +39169,39169 +256704,256704 +6584,2472 +138317,138317 +39045,39045 +372243,372243 +315219,315219 +417629,417629 +231152,231152 +36241,36241 +248760,248760 +43845,43845 +267013,267013 +10668,10668 +5228,5228 +316322,316322 +414546,414546 +35395,35395 +287189,287189 +73650,233006 +146451,146451 +5751,5751 +177538,177538 +158882,463 +83157,83157 +164448,164448 +193164,193164 +297234,297234 +196105,196105 +223514,223514 +359763,359763 +402373,402373 +310779,275974 +420214,420214 +162944,38159 +199790,121764 +319680,319680 +238277,127920 +166726,232979 +130499,130499 +175209,175209 +671,671 +201054,201054 +154902,154902 +2192,2192 +3765,3765 +362600,362600 +88922,88922 +32,32 +416830,298086 +282438,282438 +83068,83068 +102275,102275 +2249,2249 +378959,378959 +316344,93 +325679,325681 +188825,188825 +359443,148601 +344194,344194 +316704,316704 +268,268 +281664,281664 +10149,30216 +226312,17 +170951,170951 +4052,4052 +1910,1910 +1784,1784 +279643,230191 +323317,323317 +232956,94104 +410097,410097 +132799,132799 +59223,59223 +42361,42361 +251519,251519 +221977,221977 +5400,5400 +6976,6976 +3053,3053 +256391,256391 +144845,2228 +371118,371118 +164446,164446 +37615,37615 +183963,183963 +380844,380844 +415090,415090 +373877,373877 +241760,241760 +156061,156061 +144464,38159 +375261,243538 +204143,204143 +300882,300882 +130999,130999 +9149,9149 +5242,463 +388554,388554 +618,618 +409553,409553 +366012,204817 +158883,158883 +70324,70324 +279886,279886 +394064,125678 +139032,139032 +111172,111172 +254415,254415 +418238,418238 +3181,3181 +216694,216694 +196698,173804 +394094,394094 +240584,240584 +14054,14054 +378524,378524 +12367,713 +267246,267246 +276431,276431 +155258,155258 +5235,1323 +2494,2494 +119407,119407 +285627,285627 +163771,163771 +315882,253664 +232420,232420 +218314,218314 +109296,463 +227326,173804 +226006,226006 +308529,308529 +353782,156714 +322169,322169 +373435,373435 +365594,365594 +14042,14042 +182541,20545 +346623,346623 +100104,100104 +192286,192286 +173337,173337 +254532,254532 +1014,152470 +303733,303733 +40004,40004 +17534,17534 +404713,94104 +202096,148575 +139629,139629 +111069,111069 +424442,424442 +16105,16105 +255970,85256 +274072,94104 +303621,303621 +1558,1558 +28828,1668 +218007,218007 +144382,144382 +413948,413948 +1416,1416 +298166,298166 +25409,25409 +40182,40182 +197409,197409 +2884,2884 +12622,12622 +151310,140612 +39331,39331 +164760,164760 +56241,56241 +16538,16538 +225603,225603 +28574,28574 +177861,221848 +39862,39862 +264638,264638 +322522,322522 +259005,259005 +315326,315326 +310267,310267 +181464,181464 +373915,6249 +7823,7823 +382958,382958 +229782,229782 +182880,13 +4342,4342 +221408,221408 +216,216 +97939,97939 +411400,54625 +322560,322560 +120316,120316 +25182,25182 +48863,48863 +398368,398368 +3163,3163 +2995,2995 +370649,370649 +318638,318638 +332782,332782 +2903,2903 +381726,381726 +338164,338164 +118553,118553 +9135,2447 +356954,356954 +4613,183308 +340910,340910 +29656,29656 +103666,103666 +394193,394193 +251722,251722 +158548,158548 +186793,186793 +339222,339222 +173452,173452 +274563,274563 +406591,406591 +288284,288284 +424577,424577 +267313,267313 +83283,83283 +416281,416281 +298352,298352 +26203,1589 +63928,63928 +297666,241164 +374130,374130 +41006,41006 +1694,1694 +71886,71886 +158888,158888 +35865,35865 +1757,1757 +360121,360121 +3662,3662 +180204,180204 +185057,25727 +287411,287411 +184559,18460 +40213,93971 +216357,216357 +258140,14996 +244076,244076 +158791,158791 +339300,176189 +27380,27380 +17382,17382 +372343,329716 +153815,153815 +14186,14186 +225977,225977 +18961,18961 +358626,358626 +2641,2641 +299573,39534 +379153,379153 +351540,351540 +72799,72799 +1919,1919 +3237,3237 +549,549 +51195,51195 +13077,13077 +267397,267397 +235841,235841 +825,825 +198671,198671 +211450,211450 +338896,338896 +4746,4746 +19646,19646 +349805,349805 +273336,273336 +420242,420242 +9629,6830 +35453,35453 +130393,130393 +148036,105134 +96602,96602 +342805,342805 +168662,168662 +27938,27938 +1187,1187 +6504,6504 +369146,276925 +7114,7114 +371687,371687 +230860,230860 +255396,255396 +230064,195296 +21703,21703 +34284,34284 +24491,24491 +9288,9288 +249550,249550 +11166,11166 +114530,20078 +332229,266121 +1722,1722 +361639,361639 +99313,11122 +218489,618 +286939,286939 +169986,169986 +17654,17654 +185845,185845 +3133,160853 +5082,5082 +4425,4425 +12266,12266 +35179,35179 +302840,302840 +115105,115105 +277469,277469 +328289,328289 +202477,27225 +356224,356224 +181268,43443 +206,206 +155322,129946 +370210,370210 +287821,153064 +339545,339545 +123408,123408 +22826,22826 +298370,298370 +16177,16177 +25537,25537 +328642,328642 +273482,223376 +3269,3269 +176816,176816 +256381,256381 +288317,60815 +400949,368340 +266771,266771 +19918,19918 +39210,17329 +2885,2885 +30771,30771 +3369,3369 +154633,463 +268098,54625 +134824,25669 +177815,177815 +99120,99120 +270677,270677 +6569,6569 +26472,26472 +401505,283792 +2173,2173 +373544,373544 +5294,5294 +175626,175626 +382826,382826 +223538,223538 +358790,358790 +386198,386198 +299933,299933 +366753,270233 +172600,172600 +313471,313471 +183750,463 +285535,285535 +287691,131260 +280430,280430 +238935,238935 +147884,147884 +231854,212404 +6352,6352 +126789,126789 +94375,94375 +307191,197097 +177619,177619 +181209,168274 +285203,285203 +276281,276281 +226506,226506 +195231,195231 +252542,252542 +407720,407720 +245382,245382 +298278,13 +5332,5332 +161719,161719 +350072,54625 +362800,348554 +2978,2978 +10683,10683 +388753,388753 +137626,137626 +302212,234877 +72204,72204 +394081,394081 +239808,239808 +159470,159470 +26118,26118 +371055,371055 +140779,140779 +10904,10904 +107861,107861 +316217,216381 +1205,1205 +144958,144958 +324957,324957 +89767,89767 +390314,390314 +5718,5718 +289916,289916 +6554,6554 +217098,217098 +198608,198608 +142687,142687 +312958,69789 +4121,4121 +180867,180867 +12947,12947 +209222,209222 +252579,252579 +2844,2844 +164147,164147 +132766,18460 +345618,345618 +34276,34276 +411872,411872 +260264,260264 +203087,23995 +484,463 +322158,322158 +232119,232119 +201551,201551 +5480,5480 +23757,23757 +269970,269970 +315254,315254 +180345,180345 +357963,357963 +208918,148575 +345056,345056 +20772,20772 +334599,334599 +1879,1879 +26906,26906 +367194,367194 +36903,36903 +40638,40638 +233266,233266 +10986,10986 +241805,241805 +81850,81850 +280107,280107 +66896,66896 +159160,159160 +325678,325681 +211996,102104 +394218,146791 +30179,30179 +35472,35472 +160436,463 +2025,2025 +399378,399378 +344841,344841 +361259,361259 +133835,133835 +14452,14452 +373701,373701 +346467,346467 +25196,25196 +6381,2375 +29952,29952 +381429,63268 +66986,66986 +151683,151683 +24996,38318 +50719,50719 +109285,109285 +7970,7970 +198775,198775 +127438,127438 +316180,180852 +142364,142364 +404349,404349 +317643,317643 +172596,158991 +193981,193981 +183360,183360 +300509,300509 +13512,13512 +397926,224483 +55911,55911 +291431,291431 +228371,228371 +226322,226322 +223151,171339 +105199,105199 +352963,352963 +392193,392193 +383525,383525 +108783,108783 +148759,148759 +163048,43022 +413403,413403 +277017,223742 +369992,369992 +13729,13729 +206686,206686 +27574,27574 +5014,5014 +193105,75223 +167975,167975 +191932,191932 +359861,359861 +540,540 +178166,178166 +7989,7989 +355788,355788 +294237,294237 +349369,349369 +316407,316407 +355467,355467 +97377,299 +244169,244169 +18085,18085 +386168,386168 +3724,3724 +6641,6226 +9108,9108 +116877,94731 +299151,299151 +26736,26736 +31612,31612 +142451,142451 +232478,169215 +2699,2699 +170756,170756 +140163,174852 +207783,37400 +22472,22472 +394217,146791 +213421,213421 +5607,5607 +186974,186974 +28678,67 +349051,349051 +37982,37982 +174431,174431 +351869,351869 +262275,262275 +353684,353684 +401258,401258 +173648,173648 +218519,218519 +359929,387388 +266538,266538 +7576,7576 +246129,246129 +263085,263085 +29382,29382 +209714,209714 +22947,22947 +5549,13 +148471,148471 +196676,1513 +265960,463 +4991,74 +2443,2443 +212401,212401 +187587,187587 +29278,29278 +320559,320559 +27736,27736 +129710,216864 +347755,347755 +17895,17895 +12414,12414 +724,724 +340465,340465 +404462,156546 +341275,341275 +29638,29638 +166436,166436 +396335,396335 +316655,54625 +342636,342636 +218576,218576 +4916,4916 +359175,359175 +255678,203411 +368079,38931 +246355,246355 +67878,67878 +263236,263236 +17924,17924 +229235,229235 +225274,225274 +418628,418628 +195508,195508 +22378,22378 +10186,10186 +231392,463 +83919,83919 +148975,148975 +348972,348972 +409031,409031 +28705,28705 +334784,102104 +2778,2228 +99081,99081 +373576,259121 +4604,553 +120305,120305 +209926,294294 +351765,351765 +393488,393488 +211,211 +361895,361895 +382410,131357 +4330,394 +357778,357778 +281516,281516 +369353,369353 +9918,223669 +160814,102104 +4395,4395 +993,993 +285992,285992 +228378,228378 +154883,18723 +154472,154472 +1772,1772 +204680,204680 +198029,168679 +311702,311702 +401168,352515 +197588,197588 +109922,109922 +8721,8721 +7420,7420 +19878,19878 +364106,344105 +19464,19464 +319402,319402 +6121,463 +245704,245704 +209567,209567 +53103,492 +249404,249404 +344620,344620 +89951,526 +336791,336791 +418826,418826 +184207,36218 +358663,358663 +286147,286147 +39406,39406 +298528,123123 +6516,4001 +149169,149169 +17274,17274 +356226,256804 +13924,13924 +351581,351581 +297673,297673 +114504,114504 +34152,34152 +13503,13503 +174959,174959 +396607,157969 +243636,243636 +150485,150485 +285193,285193 +410251,410251 +215918,215918 +393429,393429 +148764,148764 +9803,9803 +144709,144709 +23828,23828 +268276,815 +125318,125318 +257962,257962 +249578,24310 +1986,1986 +311004,311004 +10376,10376 +286295,286295 +236108,236108 +251349,251349 +322197,322197 +220987,220987 +6860,6860 +402208,402208 +33030,33030 +179804,108665 +256626,256626 +378951,378951 +175177,32484 +363531,363531 +292914,292914 +177844,177844 +1356,1356 +4363,4363 +280994,280994 +93537,93537 +164627,164627 +229742,229742 +361540,361540 +195180,195180 +23878,23878 +191070,191070 +174975,174975 +236332,236332 +203312,21133 +126025,126025 +370418,370418 +231367,231367 +23915,23915 +60126,128 +225981,225981 +166298,166298 +201446,201446 +333252,333252 +194986,194986 +147790,147790 +362598,362598 +224288,224288 +284987,284987 +374593,227456 +402207,402207 +268183,54625 +38707,38707 +127275,127275 +342542,342542 +208340,208340 +43245,43245 +119729,119729 +54201,54201 +365752,283212 +326054,326054 +219509,219509 +363633,363633 +41849,41849 +3084,3084 +369410,369410 +412927,412927 +162292,162292 +216482,216482 +229496,229496 +23829,23829 +145086,145086 +358133,358133 +248567,248567 +376469,376469 +330617,330617 +420862,252657 +148309,148309 +255512,255512 +238676,301728 +111379,17329 +22509,22509 +177542,177542 +2629,2629 +7637,7637 +290378,290378 +23387,23387 +186435,186435 +4331,4331 +403240,70323 +60245,227693 +357298,357298 +228234,228234 +9237,9237 +369301,369301 +233033,233033 +2078,2078 +238012,238012 +704,704 +290380,290380 +449,449 +142197,142197 +168882,168882 +364579,364579 +291066,187777 +270350,270350 +287174,287174 +26961,26961 +418281,418281 +348463,348463 +76810,76810 +264685,264685 +238700,238700 +307182,307182 +388677,320446 +843,843 +260168,260168 +225000,225000 +161820,161820 +93001,6830 +244586,244586 +32143,32143 +314125,314125 +242742,242742 +378040,378040 +151450,151450 +382241,382241 +206450,206450 +15238,15238 +233590,233590 +333481,333481 +2343,2342 +400817,400817 +2478,2478 +224675,224675 +182385,182385 +217261,11 +244948,244948 +302892,302892 +300727,300727 +367575,367575 +278305,278305 +302269,302269 +161921,17988 +2201,2201 +394325,394325 +311894,311894 +30057,30057 +129904,15062 +231920,231920 +287608,175621 +340898,27627 +1324,214 +4449,4449 +356381,356381 +322739,322739 +154677,154677 +262198,262198 +195275,173275 +274429,274429 +427624,427624 +189160,189160 +271002,271002 +265771,265771 +5992,5992 +4202,4202 +298164,298164 +10244,10244 +232166,177354 +107638,107638 +343067,343067 +7994,214996 +38837,38837 +417542,417542 +318852,161681 +55158,55158 +19537,19537 +329533,144733 +269466,269466 +393404,393404 +30991,7742 +347889,347889 +305,305 +285125,285125 +152952,152952 +180387,180387 +35662,35662 +56835,56835 +341315,341315 +1943,1943 +154098,154098 +100172,100172 +308386,308386 +291008,291008 +193193,193193 +7922,7922 +193,193 +334537,334537 +407627,407627 +297661,10997 +1251,1251 +313349,313349 +4364,4363 +269623,269623 +6617,6617 +2553,2553 +255042,255042 +318551,318551 +6558,6558 +271270,271270 +154857,154857 +13976,13976 +329548,329548 +221198,221198 +235767,235767 +1543,1543 +86458,86458 +44614,44614 +393343,393343 +309721,197097 +673,673 +46530,24310 +233960,233960 +2881,16804 +18212,18212 +36623,36623 +374455,374455 +284751,284751 +21324,463 +9539,9539 +127333,127333 +184663,184663 +85245,85245 +204592,204592 +6916,6916 +1780,1780 +129395,463 +232823,171890 +66116,66116 +331946,331946 +54372,54372 +185244,185244 +344401,344401 +114800,114800 +38062,9354 +31553,31553 +168549,168549 +145344,35188 +16197,16197 +340858,340858 +184648,152846 +60316,63975 +6197,6197 +414648,279537 +231476,231476 +156097,113289 +172866,172866 +131017,131017 +281198,281198 +100473,76674 +162367,162367 +140065,35188 +226592,226592 +299604,299604 +419997,419997 +202026,202026 +232481,5782 +2213,2213 +19081,19081 +251632,251632 +302914,302914 +1912,1912 +193291,118703 +290872,6353 +168792,168792 +397227,397227 +244267,244267 +170922,170922 +393492,393492 +401177,401177 +29375,29375 +420091,420091 +346143,346143 +300296,300296 +2920,2920 +150930,253379 +363351,269595 +8944,8944 +7718,7718 +225976,225976 +275213,275213 +377185,377185 +376477,376477 +88559,88559 +251832,251832 +224416,224416 +399166,340288 +287217,287217 +197071,197071 +278971,278971 +40667,40667 +5296,5296 +285208,285208 +299939,299939 +84088,35497 +223454,223454 +421912,421912 +165022,165022 +374336,374336 +393975,393975 +164917,27225 +124000,124000 +320862,320862 +186990,186990 +410625,220877 +4510,4510 +2388,3661 +276654,276654 +11111,11111 +1250,10707 +217470,183006 +372852,372852 +262273,262273 +135019,135019 +4146,4146 +313776,286114 +244814,244814 +194778,159473 +207883,207883 +836,836 +360033,360033 +234860,181440 +169513,169513 +15049,15049 +296666,296666 +231574,225729 +328643,328643 +365626,131260 +247188,247188 +7164,7164 +246812,246812 +5702,5702 +223767,223767 +31822,15290 +15047,15047 +188614,188614 +301011,301011 +301032,301032 +201416,258376 +297897,297897 +96310,96310 +302571,302571 +289957,289957 +255029,255029 +146943,146943 +241829,241829 +320018,320018 +11429,11429 +17537,17537 +2538,2538 +183780,183780 +27,27 +275800,275800 +1375,1375 +30966,30966 +124356,124356 +375108,375108 +10973,220988 +227143,23817 +4978,9296 +347748,347748 +201812,201812 +415092,415092 +334712,334712 +9792,9792 +169436,169436 +22684,22684 +209423,209423 +368944,368944 +354342,260300 +220368,220368 +145470,145470 +173514,173514 +23400,23400 +1575,1575 +9640,9640 +13455,13455 +278401,278401 +334632,334632 +15957,15957 +29078,53093 +158268,158268 +386860,386860 +214123,214123 +6559,6559 +19212,19212 +332018,284775 +224319,224319 +1160,1160 +349042,349042 +246938,246938 +416817,416817 +136146,136146 +15069,15069 +378916,378916 +23311,23311 +198328,463 +335492,335492 +292509,292509 +330208,330208 +283795,283795 +8070,8070 +169375,169375 +185262,185262 +331228,331228 +371263,371263 +772,772 +18103,18103 +91668,91668 +200351,200351 +12736,12736 +394897,394897 +266756,266756 +368168,368168 +9112,9112 +334267,334267 +158876,158876 +19505,19505 +353289,353289 +17204,17204 +189341,85256 +400752,400752 +130729,17557 +29030,29030 +191191,191191 +57803,57803 +192288,192288 +333775,333775 +207899,207899 +362477,54625 +33259,33259 +289784,289784 +199418,199418 +2888,2891 +303961,216459 +299180,299180 +1555,1555 +23931,23931 +218575,463 +6814,6814 +3034,3034 +302268,302268 +3015,3015 +424395,2651 +230424,230424 +192315,175334 +286215,286215 +5573,1323 +230785,230785 +54300,54300 +9151,5677 +14701,14701 +144955,144955 +392403,392403 +230514,230514 +283216,283216 +470,470 +423579,423579 +206780,149910 +235511,235511 +250822,2254 +346255,346255 +9865,223669 +371333,371333 +3377,3377 +279056,279056 +228,228 +5831,5831 +86128,86128 +324342,252212 +6266,2511 +506,506 +330584,330584 +337726,337726 +72298,72298 +197946,197946 +307996,307996 +765,765 +193122,193122 +130908,130908 +354328,354328 +35706,35706 +307033,307033 +94732,94731 +148144,148144 +771,771 +259962,259962 +127721,42651 +26147,26147 +199907,159868 +336373,336373 +124548,124548 +10467,2520 +263996,256885 +177921,177921 +299971,133405 +13920,4564 +126274,126274 +31075,31075 +4975,4975 +344427,344427 +22863,22863 +9177,9177 +129280,129280 +343696,343696 +7089,7089 +182050,182050 +352003,352003 +286804,286804 +172006,172006 +34001,34001 +334187,334187 +349779,349779 +297570,297570 +3523,2298 +276205,276205 +367513,245654 +340473,340473 +29386,29386 +366458,366458 +358912,358912 +70499,70499 +222502,329716 +1572,1572 +33040,2471 +93540,93540 +153481,153481 +290611,290611 +378279,378279 +149746,149746 +142551,142551 +135530,135530 +160950,160950 +293579,293579 +397074,397074 +344332,344332 +389135,389135 +23055,23055 +319223,362205 +370858,370858 +128098,128098 +149286,149286 +741,741 +262310,262310 +1189,1189 +369082,369082 +246568,178754 +209672,20082 +190700,11168 +31198,1442 +335864,335864 +402429,232414 +6282,3661 +271,271 +8071,8071 +317367,50381 +276551,276551 +378,836 +39189,214296 +17859,79067 +91050,91050 +920,920 +205877,205877 +1373,1375 +396749,209778 +183441,183441 +229319,229319 +156420,156420 +317910,317910 +389,389 +6555,17 +17925,17925 +295571,295571 +183949,183949 +3246,3246 +3531,3531 +383733,383733 +363204,363204 +416552,416552 +41624,41624 +318392,102104 +329588,329588 +297478,206175 +5769,5769 +284261,284261 +31623,31623 +268962,121764 +411115,411115 +38923,38923 +387598,336811 +7623,7623 +4959,4959 +122435,122435 +223201,223201 +377945,377945 +420891,420891 +5241,5241 +359131,236305 +9650,22843 +198005,198005 +313951,313951 +38402,38402 +317418,279204 +88079,88079 +207117,207117 +7382,7382 +398947,398947 +25972,127493 +299159,299159 +285183,285183 +165521,20545 +259970,77423 +193912,193912 +363699,363699 +209863,209863 +249336,249336 +245371,245371 +403123,403123 +287326,224483 +5548,5548 +226860,226860 +230040,23995 +135270,463 +295480,295480 +334691,334691 +261490,261490 +354201,354201 +3646,3646 +272597,347748 +345863,345863 +38944,38944 +313064,313064 +308862,308862 +178515,178515 +402126,402126 +362692,362692 +339599,402207 +1150,1150 +63868,221848 +366575,366575 +3977,3977 +352923,352923 +110643,110643 +13933,13933 +216630,216630 +18867,18867 +56886,56886 +249748,249748 +93400,93400 +260037,260037 +234700,234700 +236178,236178 +198700,184371 +13314,13314 +18296,18296 +257957,257957 +16196,16196 +12627,12627 +55756,55756 +2265,2265 +38578,38578 +374266,148319 +356825,356825 +165657,165657 +284430,284430 +2212,2212 +364266,364266 +170437,170437 +299594,299594 +359232,359232 +331808,331808 +244502,244502 +374024,374024 +342251,342251 +2344,2344 +261666,149951 +28289,28289 +8815,8815 +12459,12459 +37875,37875 +130997,130997 +233018,11111 +62143,144566 +231683,231683 +122236,122236 +251228,251228 +396090,396090 +109801,109801 +131616,131616 +423307,423307 +195742,195742 +250878,250878 +72269,72269 +180977,180977 +23977,23977 +34450,34450 +10520,10520 +236713,236713 +335131,220778 +86406,86406 +346463,346463 +411545,411545 +368203,224149 +271275,271275 +180906,180906 +350610,350610 +240835,240835 +231125,231125 +215455,215455 +355129,306311 +356796,356796 +4436,4436 +1579,1579 +593,593 +191361,191361 +245206,213266 +341055,341055 +149083,36218 +208321,208321 +276923,276923 +353765,353765 +167604,230852 +181331,181331 +147474,147474 +224108,224108 +313163,257283 +238136,238136 +89403,89403 +416284,199042 +21769,21769 +292971,292971 +240926,240926 +411402,411402 +257378,257378 +332,332 +104736,104736 +6548,6548 +298535,298535 +76728,76728 +401303,401303 +337269,337269 +5697,5697 +184117,184117 +6974,6974 +181956,181956 +198701,184371 +239877,239877 +251213,251213 +386835,277659 +293112,255516 +35219,221848 +194532,13293 +8350,8350 +7537,7537 +280897,140535 +297702,297702 +4918,4918 +416,416 +177843,177843 +227162,227162 +290468,290468 +419720,419720 +141825,141825 +278989,278989 +7771,7771 +83492,9354 +487,487 +198670,85204 +126119,126119 +268134,268134 +239262,239262 +2339,2339 +3562,3562 +418801,244271 +251685,251685 +147144,147144 +6946,6946 +167283,167283 +4915,20889 +225909,225909 +170430,170430 +102151,102151 +259704,259704 +205544,229370 +324641,324641 +158492,158492 +367522,367522 +33159,33159 +260727,260727 +4848,4848 +366782,366782 +253575,253575 +310968,310968 +87141,87141 +191065,191065 +311828,311828 +155633,155633 +2444,2444 +292491,292491 +342246,342246 +206591,206591 +33018,33018 +3694,3694 +187488,187488 +240094,240094 +3403,3403 +1590,1590 +113853,113853 +144499,144499 +337513,149951 +385975,385975 +84989,13089 +343852,343852 +9360,9360 +262806,262806 +140236,140236 +160234,160234 +288933,288933 +3340,3340 +200886,200886 +461,461 +28004,5576 +263301,1496 +182953,20545 +348072,348072 +46410,5222 +145549,145549 +5333,5333 +7064,7064 +388183,257501 +4668,4668 +2350,2350 +290982,290982 +168512,128671 +3262,3262 +334583,319604 +211641,187679 +145553,145553 +131387,131387 +278042,278042 +314009,314009 +558,558 +194028,194028 +49261,49261 +325882,325882 +349692,236650 +245950,245950 +222424,222424 +204466,204466 +5178,5178 +142645,142645 +944,23142 +218028,218028 +411617,624 +26919,26919 +420876,420876 +77361,77361 +25768,25768 +34444,34444 +276001,275802 +203462,203462 +102107,102107 +10272,10272 +9663,9663 +368309,368309 +346677,346677 +237745,237745 +94724,696 +428224,428224 +224794,224794 +158445,158445 +215066,215066 +20847,20847 +377738,377738 +380356,373621 +151377,21790 +20731,20731 +45319,313 +6644,140 +189610,13293 +335017,335017 +245456,245456 +125936,125936 +20074,8192 +10168,10168 +256643,133528 +127589,127589 +171351,171351 +414,414 +200430,463 +192829,197178 +42688,42688 +18058,18058 +2857,2857 +398771,398771 +75890,75890 +74233,74233 +144290,144290 +122313,122313 +81542,81542 +25462,25462 +375195,375195 +357485,357485 +124991,124991 +399277,399277 +270227,270227 +331028,331028 +15271,15271 +381587,381587 +368230,368230 +865,865 +328535,328535 +391048,391048 +193584,193584 +345046,345046 +5503,5503 +247950,247950 +228101,228101 +257307,257307 +910,910 +233364,233364 +142205,142205 +147919,1323 +220499,194723 +345520,15069 +246147,246147 +297892,206939 +98975,98975 +367485,367485 +356296,356296 +347970,347970 +330964,330964 +227026,227026 +225166,225166 +154499,154499 +156945,156945 +164590,164590 +218996,150014 +60228,60228 +366797,265202 +165984,165984 +420311,420311 +91430,91430 +355801,355801 +276416,276416 +172033,172033 +180211,180211 +7828,7828 +324558,232254 +3618,35052 +135732,127493 +311686,311686 +10323,10323 +328536,328536 +118025,118025 +343483,343483 +405646,405646 +157449,157449 +60056,95 +13981,13981 +209282,209282 +338006,338006 +2248,2248 +36366,36366 +392448,154386 +109635,109635 +72460,72460 +128999,128999 +404846,404846 +5516,5516 +182510,182510 +374114,262341 +40455,40455 +221661,221661 +130357,130357 +70097,70097 +205080,205080 +243704,243704 +221677,221677 +13542,13542 +4659,4659 +205419,205419 +247778,338763 +177062,177062 +2082,2082 +272223,272223 +162022,63268 +18590,18590 +278784,278783 +323903,323903 +5811,463 +82948,82948 +335451,139976 +7501,7501 +17995,17995 +286656,286656 +320881,320881 +5940,2995 +185276,185276 +1716,1716 +343,343 +67426,32674 +9961,9961 +85567,85567 +143487,143487 +132251,132251 +193422,193422 +301662,125678 +310774,310774 +361552,361552 +379290,85256 +171124,171124 +12325,12325 +350108,350108 +289939,289939 +266940,266940 +312346,43443 +236216,236216 +257415,257415 +402109,402109 +225084,225084 +34905,34905 +356312,356312 +369257,369257 +90050,90050 +378395,378395 +183452,183452 +21463,21463 +374359,123540 +417224,417224 +283466,283466 +15180,15180 +312259,312259 +31586,31586 +10581,10581 +235252,235252 +281020,281020 +10884,1720 +181382,181382 +203716,203716 +297821,463 +246895,148575 +337394,43443 +312243,312243 +367819,367819 +353401,353401 +244153,244153 +417106,417106 +157406,157406 +242879,242879 +24078,24078 +188908,188908 +157451,157451 +319095,319095 +20623,20623 +2936,2936 +389780,389780 +220258,220258 +412268,191189 +2240,2240 +164259,164259 +171234,171234 +401501,401501 +13218,13218 +8757,8757 +192924,192924 +234846,234846 +5258,5258 +174243,174243 +361861,361861 +20414,20414 +375573,375573 +1312,1312 +9300,9300 +124838,124838 +292684,292684 +17450,17450 +147168,144479 +244203,244203 +3581,3581 +2300,2300 +2105,2105 +308566,308566 +271759,271759 +388683,388683 +330635,330635 +106560,2093 +30795,13455 +9616,9616 +285171,285171 +98739,98739 +1081,1081 +397912,397912 +193248,193248 +326983,326983 +177160,177160 +8843,8843 +378367,378367 +87893,87893 +343028,274841 +39994,39994 +67123,67123 +244269,244269 +415848,415848 +128114,128114 +349918,349918 +8690,8690 +1890,1890 +209849,209849 +167580,167580 +154006,154006 +153510,153510 +265947,265947 +253512,253512 +310301,310301 +1738,1738 +180785,148975 +170344,170344 +15173,15173 +313439,313439 +268543,268543 +7090,7090 +210660,210660 +351666,351666 +112118,112118 +165719,147747 +255255,255255 +158535,158535 +402526,402526 +304434,304434 +339741,339741 +169368,499 +4031,4031 +162480,101644 +396381,396381 +191067,191067 +267243,267243 +6914,72941 +337889,296483 +193831,193831 +314,314 +150049,105134 +37912,4244 +15386,15386 +351652,276925 +401,401 +427084,427084 +187785,22545 +313965,253368 +261,261 +24321,24321 +71099,71099 +24803,24803 +42415,42415 +291348,291348 +406459,463 +87632,87632 +182409,182409 +8717,17863 +2457,2457 +241068,241068 +191135,191135 +18481,18481 +224986,224986 +233144,233144 +237088,237088 +22924,22924 +13182,13182 +171542,171542 +228425,228425 +8383,10272 +234510,234510 +295478,295478 +41004,41004 +2216,2216 +370436,370436 +246728,246728 +247984,247984 +340773,340773 +180644,180644 +964,964 +182954,20545 +5058,5058 +73312,73312 +264205,222291 +2262,2262 +3794,3794 +181377,181377 +138728,138728 +181267,96749 +176678,176678 +125022,125022 +37931,37931 +295,295 +192023,192023 +305221,230650 +369869,369869 +9673,9673 +235360,235344 +1891,1891 +2236,12055 +348065,348065 +16435,16435 +100089,100089 +190577,190577 +256569,256569 +192201,192201 +178361,178361 +1594,36 +8679,1499 +393842,393842 +133671,133671 +300757,300757 +143416,143416 +236861,236861 +24028,24028 +14559,4363 +391625,391625 +223096,223096 +335130,335130 +642,642 +383983,383983 +86445,86445 +148007,148007 +320061,320061 +146197,146197 +378567,378567 +159405,159405 +3275,3275 +192668,192668 +346094,353289 +47125,47125 +146152,146152 +344402,344402 +11695,11695 +5277,5277 +314252,314252 +332621,332621 +370566,370566 +269077,269077 +310846,310846 +406852,406852 +3000,3000 +194577,194577 +205072,205072 +143657,143657 +118559,118559 +421246,421246 +261984,236305 +268846,299684 +8328,8328 +129858,129858 +337512,149951 +155023,155023 +321306,294235 +324670,324670 +357674,357674 +300944,300944 +181959,181959 +285234,285234 +295788,295788 +154,154 +15269,15269 +159877,159877 +36598,36598 +15911,15911 +3231,3231 +2043,2043 +257834,257834 +292487,292487 +59960,59960 +398774,398774 +177142,177142 +380109,380109 +130922,130922 +371138,371138 +319902,319902 +7639,7639 +2879,2879 +5183,5183 +183405,183405 +1319,1319 +27608,27608 +129029,129029 +176193,1219 +284072,264669 +305865,305865 +183626,183626 +96061,96061 +272889,2281 +396995,396995 +22733,22733 +330478,330478 +243752,243752 +280999,280999 +6021,6021 +170298,170298 +4235,4235 +155315,155315 +391892,391892 +162383,162383 +19902,19902 +17705,17705 +175619,34747 +179322,179322 +20122,20122 +68876,68876 +187347,187347 +43196,43196 +315289,315289 +424980,424980 +63052,137 +5278,5278 +140986,140986 +250539,250539 +261838,261838 +284981,284981 +94837,438 +13224,13224 +189925,189925 +3057,3057 +14036,14036 +197377,197377 +14525,4862 +391084,279869 +89918,89918 +205039,119729 +187420,187420 +386775,386775 +277184,277184 +192891,192891 +11139,300036 +155822,112138 +10022,10022 +7774,3661 +38400,38400 +228142,228142 +177976,177976 +402744,402744 +354842,354842 +189663,180387 +161966,161966 +142333,142333 +9077,9077 +344400,344400 +7447,7447 +202513,202513 +340879,340879 +2080,2080 +378731,378731 +24264,24264 +18887,18887 +16792,16792 +417741,417741 +318996,318996 +388473,388473 +278413,278413 +3667,3667 +7255,7255 +5736,798 +29860,29860 +403250,403250 +369558,369558 +9297,9297 +158916,159143 +133940,133940 +255020,255020 +3625,3248 +341362,341362 +178349,178349 +295694,295694 +24698,24698 +301262,301262 +43136,43136 +246263,246263 +104555,104555 +401784,401784 +108012,108012 +161706,161706 +423698,423698 +585,585 +368715,368715 +44558,44558 +220249,220249 +273636,273636 +148639,148639 +1387,1387 +1618,1618 +248737,248737 +344127,344127 +398388,398388 +239,12947 +162738,162738 +135577,135577 +357992,357992 +335872,335872 +5768,5768 +322626,322626 +359291,359291 +324884,324884 +258761,258761 +474,474 +5834,5834 +10676,10676 +7590,7590 +371486,264220 +22392,22392 +358607,358607 +381247,381247 +327396,327396 +106978,106978 +6039,6039 +283935,283935 +395636,395636 +41372,33468 +116981,116981 +415120,415120 +255680,255680 +260904,260904 +307728,307728 +302417,302417 +4323,4323 +4222,4222 +382966,382966 +12135,5480 +3507,3507 +16144,16144 +2199,2199 +6380,6380 +23658,23658 +166276,166276 +59161,17027 +38361,96749 +17538,17538 +9356,9356 +293387,223376 +4421,4421 +196392,196392 +220443,55705 +359238,359238 +256480,256480 +130242,130242 +342113,342113 +342717,342717 +344118,222291 +73543,26147 +42101,42101 +414283,414283 +123604,123604 +371042,463 +184802,184802 +356885,356885 +403601,403601 +307534,307534 +3152,3152 +404845,404845 +7849,7849 +68186,68186 +282721,282721 +239938,239938 +237106,237106 +342703,342703 +6918,6916 +31410,1334 +169926,169926 +415142,415142 +12699,12699 +2427,2427 +5086,5086 +5274,267661 +7950,7950 +4236,4236 +258665,258665 +7177,7177 +369114,369114 +33427,33427 +7955,7955 +73472,73472 +333776,333776 +145390,145390 +2285,2285 +285166,285166 +320677,206931 +360918,107529 +240175,240175 +395309,395309 +13978,2802 +286064,28396 +163798,163798 +204577,204577 +18579,18579 +230967,230967 +202265,202265 +18652,18652 +21829,21829 +273955,273955 +170195,170195 +32226,32226 +356785,356785 +6841,294484 +289018,289018 +363870,363870 +344117,222291 +72848,72848 +147681,147681 +215058,215058 +270913,270913 +150831,150831 +401223,401223 +312880,312880 +217197,18401 +1408,1408 +6937,1823 +402205,402205 +160125,160125 +250808,250808 +174646,174584 +104340,104340 +1920,1920 +27609,27609 +214910,214910 +358051,358051 +365369,365369 +5182,233016 +73960,73960 +5045,5045 +337638,337638 +7204,463 +210428,210428 +6112,6112 +370391,370391 +35812,35812 +344629,344629 +181031,181031 +4120,4120 +170431,170431 +399059,399059 +195518,195518 +302887,302887 +252484,252484 +2562,2562 +23375,23375 +4375,4375 +17022,36903 +20528,20528 +67084,67084 +135812,135812 +149621,149621 +316850,12692 +263736,263736 +5618,5618 +257395,257395 +266968,266968 +163319,163319 +408842,408842 +7750,135193 +221367,125678 +138589,121657 +2521,2521 +245384,245384 +331573,331573 +191095,191095 +388539,388539 +5637,5637 +286690,286690 +7635,7634 +68387,68387 +290,220988 +34139,34139 +104553,104553 +301085,301085 +240776,240776 +2335,2335 +158751,144479 +193697,193697 +12895,12896 +2546,2546 +329529,329529 +3633,3633 +2174,215308 +154094,93 +239930,239930 +12453,12453 +959,959 +801,801 +237798,237798 +9577,4085 +19074,19074 +129417,129417 +9504,9504 +366316,366316 +230266,230266 +248376,248376 +4961,4961 +3935,3935 +202884,202884 +83,82 +298130,351594 +261982,236305 +5264,5264 +108429,9625 +378887,244115 +6240,18747 +339526,71 +397747,397747 +1635,1635 +309545,255516 +283805,283805 +364343,364343 +258070,258070 +417268,183840 +4357,4357 +105265,105265 +400211,400211 +427278,427278 +166650,166650 +361860,361860 +18297,18297 +202494,202494 +433444,433444 +134420,28805 +194234,144728 +9870,223669 +381881,381881 +9867,9867 +218556,218556 +114784,114784 +288098,24068 +148494,148494 +174552,144728 +337391,337391 +159011,159011 +231812,53093 +12269,12269 +409005,19948 +361840,361840 +285970,285970 +227505,227505 +344339,344339 +137140,137140 +403280,403280 +103830,103830 +3843,3843 +284,128780 +270265,270265 +351956,351956 +422345,147020 +7240,7240 +2902,2902 +30706,10206 +237638,237638 +148375,148375 +296321,60815 +128252,128252 +367757,367757 +431121,418281 +134964,134964 +6942,8993 +25037,25037 +295483,295483 +261160,261160 +212378,212378 +5038,98975 +174517,174517 +390478,174430 +679,679 +6046,6046 +4815,4815 +396375,396375 +322394,236301 +360480,360480 +25423,6830 +169102,169102 +2366,2366 +18963,18963 +260644,260644 +313051,215 +7840,7840 +179627,179627 +44338,44338 +67421,67421 +343981,25821 +280282,280282 +202821,4505 +217338,217338 +5467,463 +148381,148381 +355786,284775 +13359,13359 +115370,115370 +111119,111119 +72131,158445 +230966,204601 +164589,164589 +17816,102104 +223360,223360 +332886,332886 +298171,298171 +319889,319889 +349242,153815 +354628,354628 +203381,463 +248366,248366 +8196,1540 +92759,2665 +306257,306257 +270869,270869 +153002,153002 +348581,348581 +320502,1860 +206463,5222 +395813,395813 +161813,264982 +140594,140594 +259710,259710 +203835,179259 +3771,3771 +70096,70096 +268952,268952 +266936,266936 +229527,219122 +38462,38462 +253149,71655 +218503,218503 +243697,243697 +191374,40182 +102219,102219 +2229,2229 +181694,181694 +188997,311702 +218465,218465 +394340,394340 +835,835 +263168,263168 +270223,270223 +300298,300296 +257313,257313 +322815,322815 +317119,317119 +231972,231972 +5997,5997 +36661,36661 +7475,7475 +172166,172166 +207486,207486 +3183,2795 +260269,260269 +113337,113337 +200371,200371 +362830,362830 +171708,171708 +19009,19009 +165586,75789 +20821,20821 +277930,277930 +11188,11188 +272636,272636 +337117,337117 +345194,345194 +20253,20253 +391824,463 +143323,143323 +159517,30539 +317722,317722 +230528,230528 +177513,159632 +382801,382801 +101118,101118 +182801,182801 +417100,417100 +290636,290636 +309319,309319 +369162,172162 +134804,86458 +283198,193483 +358016,358016 +38918,38918 +249299,249299 +358833,358833 +102159,3421 +377651,377651 +260126,161757 +10248,10248 +360552,360552 +412997,412997 +145794,145794 +177099,177099 +412381,412381 +5958,5958 +257669,257669 +246693,194626 +370438,370438 +262899,262899 +104655,104655 +53840,296605 +421281,421281 +16466,16466 +263051,263051 +9782,9782 +323367,323367 +64777,64777 +325433,325433 +237384,165748 +161290,161290 +424751,424751 +419705,359082 +312182,165595 +255165,255165 +173291,173291 +20269,6830 +2087,2087 +329293,329293 +425560,425560 +8317,8317 +75418,75418 +2758,2758 +335322,335322 +65582,65582 +256911,256911 +391549,391549 +231573,225729 +40843,40843 +337755,337755 +65565,65565 +2947,2947 +234972,234972 +273519,273519 +202652,202652 +21149,21149 +36788,36788 +335763,335763 +325704,204836 +247963,4471 +136240,136240 +413435,413435 +204755,204755 +145928,463 +254759,254759 +404233,404233 +93895,160081 +316401,6431 +292901,292901 +231876,231876 +137958,137958 +276832,276832 +91943,48863 +358019,358019 +364346,364346 +377068,398947 +263421,263421 +178958,178958 +254632,254632 +329932,329932 +217581,31612 +146762,146762 +509,509 +378556,378556 +253319,253319 +1620,1620 +220878,220878 +217554,217554 +148745,148745 +22666,64 +91425,91425 +203710,203710 +294810,294810 +315670,17329 +10534,10534 +158122,158122 +23615,23615 +139807,139807 +286154,286154 +338902,338902 +408885,359962 +301009,301009 +40949,40949 +120580,120580 +5700,5700 +1237,1237 +235494,235494 +292339,292339 +157815,157815 +3313,3313 +206798,206798 +272598,272598 +193818,193818 +394940,394940 +237229,237229 +369870,369870 +15110,15110 +11465,11465 +411982,327778 +24051,24051 +346553,346553 +282216,282216 +1352,1352 +15156,15156 +122599,122599 +193700,193700 +244716,143884 +260635,260635 +7310,7310 +125368,62871 +227502,7239 +194976,194976 +15153,15153 +365702,365702 +2412,2412 +97332,147537 +156101,156101 +296419,296419 +39710,39710 +125675,125675 +17125,17125 +1335,1335 +367344,172971 +177061,67123 +179794,179794 +3985,69130 +322624,322624 +332312,207830 +4020,5278 +353290,353289 +8833,8833 +4914,4914 +224662,224662 +394451,394451 +171742,171742 +126443,126443 +298173,298173 +378292,378292 +31336,31336 +56690,19841 +428603,428603 +7636,5829 +163255,163255 +158861,158861 +420017,381249 +271774,271774 +57349,57349 +378402,378402 +352486,352486 +369347,369347 +193240,193240 +165046,127589 +256640,256640 +122831,122831 +9150,9150 +278359,278359 +203265,206175 +274152,274152 +41311,41311 +378604,209450 +340123,340123 +243940,243940 +12501,12501 +353153,319604 +241761,85256 +6980,2444 +2672,4753 +380821,380821 +9200,9200 +319746,319746 +184800,184800 +383010,266507 +375209,375209 +173269,173269 +217619,217619 +385292,385292 +333136,151022 +20233,20233 +134009,28805 +385546,385546 +301083,301083 +378568,378568 +405772,405772 +71035,71035 +277475,277475 +3901,3901 +238407,238407 +4234,4234 +27970,27970 +176960,176960 +145915,145915 +68931,68931 +168752,143741 +271756,271756 +4671,1552 +195158,195158 +294756,223376 +417719,417719 +20907,20907 +149927,149927 +308126,308126 +348874,246761 +361387,361387 +2627,2627 +369024,369024 +69318,69318 +166858,166858 +268221,268221 +16185,16185 +158752,144479 +176588,176588 +266019,266019 +186947,186947 +171775,171775 +126404,126404 +303635,90474 +202204,202204 +11428,11428 +43801,43801 +26747,26747 +7638,28289 +379164,134726 +11581,11581 +288,288 +349194,349194 +257316,257316 +140865,463 +244738,102104 +194102,194102 +177053,177053 +74678,74678 +4343,4343 +10525,10525 +38187,38187 +5479,5479 +287680,287680 +345918,345918 +179723,179723 +227794,227794 +421299,421299 +54457,54457 +219783,219783 +2922,2922 +57201,463 +183361,183361 +422426,284189 +191432,191432 +276780,374199 +395376,395376 +279581,27463 +340598,340598 +34238,34238 +385245,385245 +5575,5575 +2334,2334 +434,434 +392694,392694 +248909,248909 +6045,6045 +172382,172382 +141467,56796 +232242,232242 +4366,4366 +1420,1420 +287711,287711 +198541,198541 +129951,129951 +369411,369411 +123370,123370 +1586,1586 +322809,322809 +372571,372571 +5830,5830 +226237,226237 +5383,5383 +211514,113294 +416780,416780 +20774,20774 +9439,9439 +35910,35910 +173259,140125 +207587,41429 +358263,40 +345027,286735 +85633,85633 +201281,2574 +313178,313178 +11706,11706 +381639,381639 +290025,102104 +188021,188021 +224013,224013 +281099,281099 +140796,102104 +2775,2775 +390169,390169 +319288,319288 +2559,2559 +339647,147949 +161762,161762 +17994,17994 +391086,391086 +195163,258748 +233048,233048 +334715,417426 +378830,378830 +254427,254427 +368307,368307 +379242,379242 +325545,325545 +7278,7278 +228509,228509 +357671,357671 +360224,360224 +4011,4011 +21277,8829 +10829,32989 +171950,171950 +339592,339592 +365534,365534 +1663,1663 +29376,29376 +427887,427887 +232827,232827 +11542,11542 +341510,341510 +98529,37196 +122701,122701 +325020,325020 +306072,306072 +380868,24310 +345626,345626 +6732,6732 +312626,312626 +408837,342562 +26250,221848 +2194,2194 +6037,6037 +270685,270685 +419202,419202 +172563,109548 +206087,206087 +368941,1219 +176850,229319 +41149,41149 +1208,1208 +293836,293836 +154742,154742 +337998,337998 +392372,392372 +151645,151645 +349601,349601 +368197,173504 +26047,26047 +336403,336403 +324885,324885 +225908,225908 +19653,8170 +350081,350081 +129735,129735 +225645,225645 +209716,209716 +242630,242630 +192984,192984 +19145,19145 +399375,399375 +147889,147889 +5065,5065 +161923,161923 +324426,242227 +5668,5668 +9117,9117 +20432,2891 +291445,291445 +90274,90274 +162391,162391 +316290,224483 +9104,3577 +3147,3147 +298261,298261 +212663,3837 +341402,341402 +280633,101644 +172493,135193 +267359,267359 +255381,255381 +422898,176189 +152115,152115 +355704,355704 +34403,83325 +385437,385437 +23329,23329 +26697,26697 +381349,381349 +17623,17623 +218491,218491 +65516,8017 +23284,23284 +397602,397602 +32995,32995 +66851,66851 +231878,231878 +226643,226643 +172998,172998 +190,190 +177210,463 +14451,14451 +200672,13293 +351874,351874 +419639,419639 +3070,3070 +72808,72808 +17728,3661 +176070,176070 +182952,20545 +199882,199882 +23657,23657 +415845,415845 +274735,298164 +32150,32150 +297510,297510 +119265,119265 +247294,247294 +57937,57937 +171978,124668 +128154,159160 +392767,30241 +27719,27719 +366463,366463 +209688,209688 +299074,299074 +370869,370869 +340440,340440 +165633,165633 +233962,233962 +363550,312786 +351809,351809 +260704,260704 +286021,286021 +401175,195421 +225303,225303 +32907,32907 +12168,1919 +7487,7487 +141430,156420 +121429,121429 +39278,39278 +25190,25190 +75674,75674 +367710,367710 +118177,118177 +101206,101206 +120033,120033 +1161,1161 +17075,17075 +175496,175496 +276107,276107 +248673,248673 +273769,273769 +283073,283073 +179581,179581 +399376,399376 +111999,111999 +50764,50764 +5656,256487 +6978,6978 +6700,6700 +369256,39332 +285538,285538 +388720,388720 +146387,146387 +95756,95756 +342006,342006 +349575,349575 +276839,276839 +215614,215614 +167404,167404 +425934,425934 +145766,145766 +40800,40800 +345542,345542 +363347,295192 +379773,337961 +316182,238656 +1773,1773 +192345,192345 +1300,1300 +2200,2200 +375322,375322 +3590,3590 +312744,312744 +121015,121015 +136229,136229 +308455,308455 +383451,383451 +380975,380975 +266769,266769 +88950,88950 +283208,283208 +754,754 +199913,199913 +38195,2533 +398887,398887 +171620,171620 +26315,20295 +350764,102104 +26620,26620 +10234,10234 +198,342073 +239682,239682 +15000,15000 +703,741 +11708,4222 +190266,190266 +254157,254157 +274127,274127 +28060,191300 +340498,340498 +124706,124706 +477,477 +251083,251083 +193121,193121 +40251,40251 +20586,42101 +143360,143360 +4816,4816 +173074,173074 +371031,371031 +336374,336374 +151070,151070 +363089,363089 +327643,327643 +165523,20545 +369996,194517 +268185,54625 +298678,298678 +175230,175230 +113656,113656 +67339,67339 +381834,381834 +355473,355473 +425873,425873 +6813,6813 +8804,102104 +260922,260922 +1516,1516 +64583,271 +234511,34635 +99698,99698 +32048,327 +285536,285536 +393760,144189 +209809,67254 +180650,180650 +4254,4254 +2918,2918 +225449,102148 +286861,276925 +108737,108737 +3965,3661 +5146,5146 +195515,195515 +42727,42727 +166210,166210 +24693,24693 +358815,358815 +392452,392452 +5541,5541 +1243,1243 +5279,5279 +4125,4125 +315021,315021 +1066,1066 +339742,339742 +233783,233783 +69843,69843 +411015,411015 +245952,217776 +197067,197067 +244584,244584 +25453,25453 +69105,69105 +345054,9150 +355847,355847 +296514,296514 +394332,394332 +316760,310968 +320097,320097 +310578,310578 +15548,15548 +1337,1337 +195850,172386 +311927,311927 +393457,393457 +230731,230731 +274909,274909 +35457,35457 +319365,5297 +176936,176936 +240143,103885 +5143,5143 +9858,9858 +378737,310192 +242616,242616 +322865,313471 +346621,346621 +322050,322050 +7538,7538 +6270,6270 +387202,322785 +182581,182581 +3807,3807 +381748,381748 +297318,297318 +361969,361969 +47484,47484 +219666,219666 +132456,132456 +6509,6509 +38886,38886 +1297,1297 +99770,99770 +171779,171779 +2698,2339 +1551,1551 +130548,217861 +244026,244026 +2875,1499 +264948,264948 +166888,166888 +134631,134631 +378172,125678 +342550,342550 +12253,12253 +142829,142829 +296667,296667 +63951,63951 +266003,266003 +5752,5752 +1898,82402 +81698,81698 +410292,289566 +323068,323068 +358620,358620 +311192,311192 +3641,3641 +231847,133689 +406312,406312 +331155,331155 +422045,422045 +258160,258160 +538,538 +267071,267071 +206938,206938 +206074,206074 +85563,85563 +207290,207290 +41185,28436 +283850,283850 +246534,221372 +235653,235653 +266844,266844 +182259,182259 +271036,271036 +17041,17041 +429262,54625 +317313,2268 +1804,1804 +3078,3057 +153802,2471 +295081,295081 +68816,68816 +397931,397931 +229244,206844 +356842,356842 +324937,104710 +6187,6187 +352725,352725 +166640,166640 +27480,6700 +248830,248830 +394507,394507 +176306,176306 +2088,2088 +347794,347794 +394053,394053 +7609,7609 +252277,220547 +1593,1593 +166300,166300 +320069,320069 +367024,367024 +2226,2226 +192762,192762 +5239,6976 +289427,289427 +25687,25687 +3022,3022 +2121,2121 +306687,306687 +203845,150364 +373657,373657 +214879,214879 +272,272 +125634,125634 +256380,256380 +10065,10065 +173784,173784 +254938,254938 +359299,359299 +128794,128794 +5988,5988 +408383,277458 +1434,1434 +268248,54625 +18724,18724 +356629,356629 +303812,303812 +10346,10346 +183212,313129 +363487,363487 +148000,11 +367521,367521 +5177,472 +1699,1699 +129751,129751 +365307,365307 +368554,368554 +55835,463 +411638,411638 +213631,213631 +337167,13218 +3063,3063 +221122,221122 +335541,171668 +101463,101463 +216224,216224 +26305,16435 +77034,77034 +377063,377063 +257204,257204 +363718,363718 +33196,33196 +42783,42783 +227563,227563 +11694,11694 +134596,134596 +414927,414927 +113301,113301 +294219,294219 +8508,8508 +5900,5900 +354632,354632 +5488,5488 +208995,208995 +38266,38266 +249882,249882 +30505,30505 +8307,8307 +379158,379158 +349201,349201 +81826,81826 +162677,162677 +380106,380106 +207828,207828 +10269,10269 +36415,36415 +296570,296570 +4359,158237 +39426,39426 +21366,21366 +364733,364733 +402503,402503 +203408,203408 +386270,386270 +22664,22664 +316093,28 +374,374 +175327,175327 +308354,308354 +254394,254394 +194400,194400 +1970,1970 +419192,341048 +127989,127989 +216895,216895 +103883,1219 +32820,32820 +142903,142903 +203029,203029 +189890,189890 +254135,254135 +281257,281257 +273825,273825 +155203,155203 +295254,295254 +1578,1578 +166341,166341 +377506,359861 +194992,194992 +250291,35342 +152471,152471 +321713,321713 +3568,3568 +382609,382609 +382676,382676 +191901,191901 +368088,368088 +35425,35425 +11514,11514 +286891,286891 +273699,273699 +148209,148209 +577,577 +331947,331947 +4977,4977 +335,335 +20441,20441 +6770,6770 +146937,146937 +28609,28609 +180938,180938 +7749,135193 +31547,31547 +403494,244271 +39565,6830 +342716,342716 +3749,3749 +362984,362984 +326998,326998 +238327,238327 +7503,7503 +272767,272767 +338095,338095 +185344,185344 +194777,194777 +407180,244522 +324930,324930 +294712,294712 +8737,8737 +188051,188051 +1321,1321 +341554,69789 +270110,97683 +194387,194387 +31378,31378 +6399,1782 +67972,67972 +136910,136910 +702,702 +6041,6041 +255702,255702 +239847,239847 +40830,40830 +31053,10653 +248154,248154 +344933,344933 +581,581 +239907,239907 +316289,224483 +168653,168653 +64080,64080 +260307,260307 +43332,34747 +297374,297374 +240921,240921 +391565,391565 +38204,38204 +10262,10262 +273164,273164 +89880,136229 +10245,10245 +8751,16185 +321699,321699 +316288,224483 +260592,260592 +370235,370235 +43393,43393 +138973,138973 +25,59294 +333460,333460 +394306,394306 +216220,90568 +282278,282278 +208023,208023 +190915,190915 +19048,19048 +151684,4174 +169795,169795 +234274,234274 +148730,148730 +25993,25993 +323598,323598 +3594,3594 +368330,368330 +313274,6249 +183,183 +267506,12692 +67251,67251 +378646,378646 +42057,121764 +28567,28567 +63011,63011 +388345,388345 +180050,72644 +130229,130229 +247316,247316 +365119,365119 +12604,12604 +32469,32469 +173666,173666 +294,492 +202989,8730 +367679,367679 +341005,341005 +4960,4960 +235697,235697 +257965,3837 +193696,193696 +41123,41123 +381826,381826 +177482,177482 +365121,365121 +331056,331056 +236803,236803 +2773,2773 +217447,217447 +232800,232800 +11978,30216 +26386,26386 +5923,5923 +4293,4293 +346995,346995 +217404,217404 +217424,217424 +5777,5777 +206068,206068 +402635,402635 +194229,194229 +290500,290500 +358995,358995 +367421,367421 +25142,359 +2602,2602 +325434,325434 +271045,271045 +209344,209344 +331902,331902 +43023,43023 +360175,360175 +118537,118537 +108341,108341 +334695,334695 +56342,553 +226616,187590 +343588,123260 +359348,359348 +264748,264748 +283591,283591 +375384,375384 +408308,408308 +23550,23550 +9044,9044 +172465,172465 +374342,463 +218610,140535 +39095,39095 +174688,174688 +11030,11030 +211128,211128 +2965,2965 +295020,295020 +323871,323871 +309600,276161 +344708,344708 +237800,237800 +304949,304949 +164279,164279 +260282,260282 +312738,312738 +285127,285127 +312911,312911 +19161,19161 +355,355 +62709,62709 +5990,5990 +150138,150138 +127096,127096 +277629,277629 +344290,204801 +108080,108080 +36599,36599 +343056,343056 +245598,245598 +243964,243964 +193436,193436 +26999,26999 +425235,425235 +255586,276779 +321215,321215 +21685,21685 +324158,324158 +161765,161765 +244966,244966 +1404,1404 +84913,84913 +229708,229708 +16149,16149 +226789,226789 +1907,1907 +158093,158093 +164775,164775 +267414,267414 +263312,199309 +2736,2736 +9619,9619 +129307,129307 +4087,4087 +238329,238329 +24122,24122 +990,990 +255712,255712 +245060,245060 +141249,141249 +225932,225932 +23258,23258 +12054,6251 +220478,220478 +39663,39663 +136606,136606 +24209,545 +204504,204504 +2986,2986 +11054,11054 +60035,60035 +400566,400566 +252314,249505 +338630,176189 +423432,423432 +6797,6797 +40411,40411 +39067,39067 +149296,105134 +1869,1869 +411396,411396 +367732,367732 +373063,373063 +274445,150293 +364049,364049 +287038,287038 +97093,97093 +329024,329024 +262770,212404 +6038,6038 +284949,284949 +204201,204201 +355071,355071 +124044,124044 +153723,153723 +426994,94389 +288583,265912 +75644,30958 +129038,129038 +182214,182214 +17235,17235 +174013,174013 +37491,37491 +21915,21915 +315671,315671 +371135,371135 +8626,8626 +395581,395581 +340292,340292 +115976,76247 +204576,204576 +351527,351527 +92188,92188 +195253,195253 +277066,277066 +234314,234314 +197528,197528 +366910,366910 +21991,21991 +8,8 +14387,14387 +162191,162191 +394269,394269 +401779,401779 +371449,371449 +285792,285792 +429186,429186 +265369,265369 +225526,225526 +341914,341914 +29848,29848 +12252,12252 +336031,336031 +128927,128927 +179548,179548 +41611,2447 +197321,197321 +205960,184700 +4141,4141 +209283,209283 +768,768 +380325,380325 +192346,192346 +367246,367246 +15990,8782 +297139,297139 +131788,131788 +12900,2802 +34696,34696 +643,643 +262122,262122 +26474,26474 +280979,9441 +1218,1219 +16142,16142 +120547,120547 +153757,153757 +109143,109143 +314376,314376 +367077,367077 +167,167 +262554,5255 +25312,539 +5023,5023 +77076,77076 +357667,357667 +190758,190758 +10096,3093 +8362,8362 +148282,148282 +369011,181807 +320101,320101 +400835,400835 +270140,270140 +348849,11825 +418177,418177 +365073,365073 +261985,236305 +341192,341192 +220707,220707 +169675,169675 +81691,81691 +94949,94949 +180202,180202 +315044,266445 +196220,196220 +238531,238531 +306348,306348 +184477,184477 +383053,383053 +5491,5491 +232210,232210 +396332,295374 +189154,189154 +182064,182064 +38562,30804 +368024,368024 +270680,127493 +103752,103752 +42617,42617 +370073,370073 +118688,118688 +255272,255272 +422071,422071 +70767,70767 +358050,358050 +284785,284785 +97655,97655 +175516,175516 +340428,340428 +315291,315291 +116860,116860 +135194,135194 +273433,273433 +208663,208663 +266102,169318 +218176,218176 +270513,270513 +189830,189830 +200549,200549 +745,745 +9161,9161 +27363,27363 +160664,138104 +30246,30246 +1792,1792 +394516,329204 +212807,212807 +361333,267401 +16793,16793 +8727,8727 +91653,91653 +156458,156458 +6653,6653 +10246,10246 +265286,35188 +143073,143073 +29126,29126 +163983,163983 +179929,179929 +20829,20829 +296113,9615 +418316,418316 +32466,32466 +327386,4050 +244166,244166 +158891,158891 +355039,355039 +22297,22297 +9143,2802 +392703,392703 +289438,289438 +393405,393405 +4176,4176 +156062,156062 +298143,298143 +6826,6826 +51429,51429 +257967,257967 +358053,358053 +407233,407233 +229540,164446 +33875,33875 +378142,378142 +337712,1323 +138966,138966 +259551,206844 +74311,74311 +38680,38680 +244909,244909 +565,565 +396914,396914 +417219,306482 +327107,204836 +63161,63161 +145578,145578 +239189,239189 +6993,6993 +217012,217012 +687,687 +4427,4427 +227582,227582 +64331,7662 +4016,4016 +132407,132407 +243231,243231 +3936,3936 +329410,329410 +241488,241488 +26372,32907 +330995,330995 +305838,253756 +355208,355208 +140682,140682 +12451,12451 +31926,31926 +37345,37345 +363486,363487 +13647,13647 +192623,192623 +375439,28805 +293728,293728 +359587,359587 +16957,16957 +131457,131457 +64896,64896 +235328,235328 +158243,158243 +16325,16325 +396649,396649 +251026,101206 +296363,296363 +163601,163601 +371539,371539 +8258,8258 +364022,364022 +2963,2963 +126771,126771 +96440,96440 +397228,397228 +11973,11973 +3670,3670 +41054,41054 +284640,284640 +163040,163040 +250285,250285 +421154,421154 +288254,288254 +16271,16271 +169246,169246 +267945,267945 +334513,334513 +27613,27613 +247952,247952 +220675,220675 +11756,11756 +10916,10916 +208887,208887 +1924,1924 +274557,274557 +177245,166210 +420040,420040 +265585,147194 +349792,189351 +375923,375923 +267182,188181 +186265,186265 +294231,294231 +354402,205164 +284617,284617 +11278,741 +269205,269205 +312633,312633 +337261,337261 +303552,463 +137173,137173 +14685,14685 +395875,395875 +381992,182134 +282863,191387 +7752,7752 +4500,4500 +173462,173462 +386761,386761 +331390,322785 +150605,150605 +404711,94104 +31021,31021 +208670,208670 +274230,274230 +256962,256962 +193699,127493 +207347,169062 +337760,337760 +211146,184085 +219,219 +264326,264326 +175627,175627 +22600,22600 +13676,13676 +356198,356198 +7033,7033 +86919,86919 +256443,256443 +373291,373291 +256831,256831 +321850,321850 +41019,41019 +361335,361335 +218,218 +11699,11699 +287110,287110 +18056,18056 +383120,383120 +117992,117992 +383,1382 +246508,217974 +329521,329521 +8736,8736 +410378,410378 +21935,21935 +325830,325830 +238510,238510 +339743,339743 +306799,249275 +2153,2153 +12538,1155 +329017,329017 +260568,260568 +393869,393869 +415197,213882 +333143,333143 +14441,14441 +9238,9238 +320280,320280 +344431,344431 +295449,355433 +257766,257766 +5953,5953 +336292,249814 +29138,6931 +322148,275589 +49400,18985 +354923,354923 +320383,13507 +394197,394197 +379306,379306 +3576,3576 +16030,16030 +322565,322565 +155754,155754 +182593,182593 +2205,2205 +204621,204621 +411369,411369 +252165,252165 +372967,307044 +279328,279328 +131321,131321 +411372,411372 +251253,251253 +208337,208337 +262262,262262 +276019,276019 +211533,211533 +42748,42748 +189427,189427 +300076,300296 +37741,37741 +245700,245700 +292394,292394 +234378,234378 +150797,150797 +169555,169555 +242328,242328 +129309,129309 +195477,195477 +202245,184170 +8509,69843 +117707,117707 +57368,57368 +33156,33156 +229406,229406 +7739,1499 +4917,4917 +241478,241478 +296044,296044 +165812,165812 +606,606 +187959,20253 +18881,18881 +220672,220672 +383479,383479 +1859,1859 +207370,168679 +231035,54625 +161886,161886 +330499,294275 +370749,370749 +227254,227254 +311990,311990 +2394,2394 +300023,300023 +1974,191073 +2138,2138 +91438,91438 +257722,257722 +318714,318714 +306906,306906 +247643,162107 +197911,197911 +230130,230130 +1477,1499 +205346,205346 +2215,2215 +665,665 +149618,149618 +321499,321499 +380839,380839 +274784,274784 +165090,165090 +223322,223322 +4964,4964 +430446,430446 +365103,365103 +3932,3932 +99042,99042 +387560,387560 +420279,352263 +2016,273955 +36659,36659 +142988,142988 +11500,69843 +127028,127028 +99976,167975 +1101,1101 +380923,380923 +15471,1544 +289055,289055 +248385,248385 +400997,400997 +381984,121193 +131060,131060 +343667,22940 +218824,218824 +284845,27225 +285028,156420 +376760,319107 +318322,318322 +16369,16369 +423683,423683 +233149,233149 +339619,339619 +375275,375275 +161682,161682 +363039,363039 +30684,30684 +9086,9086 +11889,11889 +254125,378654 +39704,39704 +2307,2307 +6215,2524 +3705,157969 +243581,243581 +6744,6744 +176631,176631 +319600,319600 +94615,94615 +84783,84783 +203104,130827 +151448,151448 +302258,302258 +382016,382016 +23848,23848 +43856,834 +360124,248878 +313352,8098 +301576,301576 +104780,104780 +292130,292130 +207,207 +3860,3860 +40385,4085 +79,22143 +42255,42255 +3251,3251 +204281,204281 +3162,3162 +348939,348939 +327062,327062 +379055,379055 +249773,20079 +400297,400297 +359515,296164 +266129,85256 +282494,282494 +645,645 +148356,148356 +7336,7336 +298539,298539 +5483,5483 +6638,4014 +429,429 +72200,31554 +93472,93472 +342090,342090 +345203,143741 +187032,187032 +365235,365235 +295159,295159 +5001,5001 +308533,197097 +255291,255291 +5818,5818 +4084,4084 +12957,156714 +1744,1744 +124248,124248 +417130,271518 +285789,285789 +2706,2706 +292507,292507 +4962,4962 +1940,1940 +9192,1883 +416118,11170 +371159,371159 +17821,17821 +406708,406708 +178397,178397 +279556,279556 +11179,11179 +17073,17073 +305053,238094 +293046,293046 +1246,1246 +365982,365982 +382960,382960 +168250,168250 +147563,147563 +111866,111866 +25299,25299 +274085,12350 +86542,86542 +324941,325414 +10310,10310 +35654,35654 +143023,143023 +2510,2510 +200729,200729 +16972,16972 +26686,26686 +126550,126550 +311527,311527 +72083,107635 +94746,94746 +2277,2277 +4178,4178 +525,525 +357989,172881 +357116,43443 +316915,316915 +157002,157002 +4276,4276 +359066,54625 +282081,282081 +247034,149119 +20379,20379 +243780,243780 +103039,103039 +165492,165492 +262141,262141 +147009,256952 +264318,264318 +231644,231644 +131933,131933 +199611,199611 +223455,223455 +426275,398032 +181244,181244 +176992,176992 +3051,3051 +27624,27624 +364760,364760 +400638,400638 +417352,417352 +225800,225800 +340225,340225 +4252,4085 +307803,307803 +93563,93563 +148557,148557 +157528,157528 +140613,140613 +97432,97432 +290733,290733 +291415,291415 +229241,229241 +98261,28805 +312682,312682 +423689,369646 +401968,401968 +325237,325237 +380782,380782 +15712,15712 +232437,232437 +28096,299 +231960,231960 +257960,257960 +228550,228550 +349134,349134 +365627,365627 +31803,31803 +7253,7253 +261316,261316 +294252,294252 +769,146418 +359754,359754 +350760,350760 +284821,284821 +129310,129310 +234451,365627 +36789,36789 +37592,37592 +263763,263763 +49396,18985 +320045,282227 +282530,282530 +239435,165628 +122327,122327 +136089,136089 +244428,244428 +178,178 +174252,174252 +170390,225836 +195450,195450 +402360,402360 +379395,379395 +239452,239452 +370671,54625 +401009,401009 +268805,268805 +298376,298376 +57037,57037 +393199,385975 +1760,1760 +234946,234946 +307929,307929 +336495,336495 +5475,5475 +415078,415078 +371794,371794 +197865,197865 +144460,144460 +411033,411033 +30102,30102 +8671,8671 +302057,368330 +225235,225235 +334141,299105 +379806,245654 +4294,4294 +5822,5822 +9908,9908 +8402,1563 +335736,196340 +245401,245401 +429332,429332 +267036,267036 +343699,343699 +107917,107917 +19651,19651 +253564,148575 +138616,138616 +12139,3577 +6374,6374 +30022,4230 +174991,174991 +33541,32907 +1721,1721 +114871,114871 +372439,372439 +382217,382217 +158589,158589 +298607,298607 +1991,1991 +313935,313935 +313536,313536 +319969,319969 +29377,29377 +1146,1146 +204541,204541 +56604,56604 +139728,139728 +285,17835 +17482,17482 +290722,290722 +42881,42881 +233951,233951 +33048,54625 +17054,17054 +180421,180421 +258049,258049 +209225,209225 +275188,275188 +328365,287222 +324517,324517 +54541,54541 +131416,131416 +176458,223770 +20467,67 +7838,7838 +272502,272502 +13645,13645 +226619,226619 +287260,287260 +420120,420120 +338690,338690 +50862,50862 +245446,245446 +226354,226354 +298435,298435 +134279,134279 +192203,192203 +230548,230548 +359398,359398 +422737,422737 +26004,26004 +373667,373667 +340374,340374 +230916,230916 +143701,3836 +213790,213790 +195842,238221 +367056,367056 +262626,262626 +33225,33225 +402668,402668 +347879,113873 +247394,247394 +406305,9674 +8666,1499 +250406,250406 +330560,330560 +194388,194388 +361771,361771 +29262,29262 +375215,375215 +381021,380975 +118561,118561 +1781,1781 +8049,7950 +365430,187679 +316291,224483 +195456,197178 +188347,188347 +13553,9296 +250333,250333 +36616,36616 +70222,70222 +143255,143255 +424972,192291 +265118,265118 +55315,55315 +401110,401110 +11002,11002 +305772,305772 +182274,182274 +247107,247107 +140995,140995 +201307,201307 +260348,260348 +410100,410100 +374212,374212 +8354,8354 +138670,9296 +302753,302753 +9041,9041 +112102,112102 +369120,284261 +251538,251538 +272745,272745 +161726,161726 +157135,157135 +7228,7228 +262479,262479 +3138,3138 +6847,7382 +288251,288251 +414082,414082 +351716,351716 +180355,218995 +364385,364385 +120814,120814 +8758,8758 +10140,10140 +271027,271027 +89575,27225 +28389,28389 +205439,205439 +1815,1815 +11964,11964 +37683,37683 +291563,291563 +235865,235865 +278398,252877 +242191,242191 +227813,227813 +156722,156722 +408545,408545 +323,323 +160434,160434 +389513,389513 +143509,143509 +373793,373793 +312372,312372 +306650,306650 +162012,19427 +157254,38471 +7640,7640 +166633,166633 +316387,223996 +137498,226997 +1305,68182 +64735,64735 +184928,184928 +73655,73655 +3219,3219 +388404,388404 +235513,235513 +377032,377032 +208093,208093 +171500,171500 +357258,357258 +255928,255928 +324458,276169 +304509,127493 +1288,1288 +342974,319902 +72340,72340 +422742,422742 +399885,399885 +288274,288274 +254923,254923 +8160,8160 +412062,412062 +194301,194301 +5186,5186 +355978,261525 +414291,414291 +2680,2680 +189166,189166 +4853,463 +20952,20952 +204764,204764 +40962,40962 +382054,382054 +10470,10470 +30287,30287 +312541,312541 +2095,2095 +1530,1530 +282332,282332 +102346,102346 +311020,311020 +377873,377873 +258512,258512 +88246,88246 +284646,284646 +193131,193131 +8036,69843 +38355,38355 +311191,311191 +144416,144416 +8538,189427 +204802,204802 +7779,7779 +282700,282700 +370378,370378 +352293,352293 +417491,417491 +407173,407173 +387,387 +267832,267832 +22182,22182 +385316,385316 +184664,184664 +406977,406977 +281310,281310 +16085,16085 +323352,85256 +248226,248226 +8537,8537 +2666,2666 +67910,40393 +647,647 +383139,383139 +375373,375373 +198886,198886 +332086,332086 +314542,314542 +204314,204314 +184917,184917 +2047,2047 +365593,365593 +12040,12040 +400495,400495 +181476,181476 +35305,35305 +368221,42142 +11730,11730 +73361,73361 +4919,4919 +9093,9093 +420995,420995 +342547,342547 +2127,2127 +283790,217020 +2812,2812 +49394,18985 +368464,368464 +340193,340193 +273009,7662 +380455,380455 +374026,374026 +163908,163908 +85332,137406 +351180,351180 +425445,425445 +57052,96345 +382134,382134 +19904,19904 +9473,9473 +379350,379350 +319921,319921 +313454,313454 +8033,8033 +159633,38318 +6405,6405 +200111,1323 +381105,381105 +151016,151016 +363489,363487 +181955,111173 +230081,230081 +170568,112138 +391162,391162 +1598,1598 +1697,1697 +343278,343278 +387817,387817 +38038,271460 +193161,193161 +189628,189628 +7058,7058 +221982,221982 +209452,168770 +136813,136813 +369759,334307 +80484,80484 +282229,282229 +227527,227527 +235249,235249 +88006,88006 +327509,327509 +20906,20907 +344051,253399 +395846,395846 +25617,25617 +323882,323882 +2061,2061 +170043,170043 +410768,277659 +352798,352798 +73363,73363 +149129,149129 +252323,252323 +278484,278484 +235695,235695 +314413,102104 +200282,200282 +93138,853 +130600,1219 +10301,12947 +364020,364020 +127883,127883 +426330,426330 +258379,1499 +256334,256334 +177566,177566 +57139,57139 +138016,138016 +369010,369010 +328732,328732 +286549,286549 +387148,15290 +4328,4328 +351851,377470 +151224,151224 +275086,275086 +283848,283848 +362959,54625 +327295,327295 +296027,296027 +7966,1720 +11646,2398 +375556,375556 +173374,173374 +271522,271522 +141734,141734 +12067,12067 +357465,357465 +177209,177209 +10889,10889 +195179,195179 +287552,2842 +429827,429827 +18246,18246 +264970,438 +137912,137912 +178939,178939 +377894,377894 +348708,348708 +65061,65061 +365122,370378 +237927,237927 +118732,118732 +9685,9685 +161109,161109 +5155,63975 +164686,164686 +247135,247135 +235427,235427 +285204,285204 +7943,7943 +4784,4784 +216740,216740 +218453,218453 +2809,2809 +18699,18699 +8037,2995 +12065,12065 +213491,213491 +324190,324190 +88316,88316 +66809,66809 +127648,127648 +292667,292667 +128352,128352 +191687,191687 +690,690 +15275,15275 +105864,105864 +125061,125061 +13779,13779 +151936,151936 +19329,19329 +25618,373701 +4842,4842 +172325,172325 +291549,291549 +5993,5993 +373787,373787 +226081,226081 +27884,27884 +178335,178335 +27042,27042 +177641,177641 +133,133 +364622,364622 +326243,326243 +3157,3157 +272522,272522 +82702,82702 +301710,301710 +120509,3576 +415838,415838 +397138,397138 +243297,243297 +292464,292464 +222798,222798 +220630,112138 +31605,31605 +351226,351226 +266474,266474 +37731,37731 +85243,85243 +267404,127493 +94493,94493 +394430,394430 +16674,16674 +80044,80044 +49392,18985 +301541,301541 +275817,275817 +376485,376485 +191292,191292 +279931,279931 +406454,406454 +38328,38328 +383880,383880 +22061,22392 +322750,163745 +220461,220461 +41032,41032 +254399,254399 +7159,463 +209090,209090 +241,241 +348216,348216 +246723,246723 +39290,39290 +11632,273993 +147400,147400 +4802,4802 +152174,152174 +282390,282390 +35003,6830 +286534,286534 +10756,10756 +3241,3241 +310479,244267 +378985,320390 +5929,5929 +277109,277109 +364287,265204 +2480,2480 +145675,145675 +375712,375712 +256233,256233 +309250,309250 +269214,125548 +2296,2296 +38437,38437 +13212,13212 +344039,344039 +49399,18985 +374868,374868 +3616,1540 +100795,31056 +1687,1687 +103975,103975 +5835,6700 +200957,200957 +172012,251433 +351635,351635 +67631,67631 +369765,334307 +258137,258137 +381375,381375 +202723,202723 +327004,291855 +122961,122961 +291834,291834 +136279,136279 +155314,155314 +193792,193792 +335953,335953 +207653,54625 +404923,404923 +236884,236884 +360322,18115 +414176,414176 +238065,2511 +2171,2171 +10995,10995 +218666,218666 +270699,67917 +273092,273092 +23818,23818 +8140,8140 +382894,175973 +150143,150143 +417403,417403 +25841,109285 +303650,303650 +69316,69316 +428062,428062 +352228,352228 +260733,260733 +7708,7708 +353957,353957 +403528,403528 +393200,385975 +390651,390651 +164059,164059 +177927,277 +408769,408769 +422541,422541 +322989,313471 +18422,18422 +305270,305270 +268899,268899 +250963,257 +63823,63823 +309341,309341 +10890,10890 +311209,311209 +4494,4494 +289306,211453 +10102,10102 +1367,105 +358026,358026 +284007,92828 +357974,65272 +368296,368296 +3472,3472 +186695,186695 +274205,1219 +224979,224979 +8056,8056 +83907,83907 +155406,155406 +295587,295587 +238025,238025 +209773,178153 +219622,30539 +428031,368173 +331126,331126 +107649,39095 +18311,18311 +145496,145496 +132532,132532 +7377,7377 +243599,243599 +304679,304679 +220843,220843 +10564,10564 +179560,179560 +180674,180674 +27945,27945 +271288,404233 +407570,165401 +41585,41585 +192324,20545 +287611,175621 +35665,35665 +292350,292350 +192496,192496 +409503,409503 +15383,137 +315624,315624 +3035,3035 +180295,180295 +245025,245025 +292707,292707 +415879,149951 +258457,258457 +366267,366267 +147920,147920 +351651,351651 +360377,360377 +423850,423850 +239082,287671 +206464,206464 +27948,27948 +360877,360877 +1263,1263 +336212,336212 +327549,327549 +21411,21411 +4215,4215 +23378,23378 +7934,7934 +255640,255640 +357172,357172 +8352,8352 +188196,188196 +235470,235470 +8351,8351 +142980,142980 +13493,2472 +6721,6721 +273005,20545 +415910,415910 +96728,96728 +5502,5502 +252475,252475 +331463,331463 +69232,69232 +198984,198984 +400831,205164 +12263,12263 +29146,29146 +8079,8079 +38772,38772 +282055,282055 +10716,10716 +249730,249730 +209734,209734 +376587,376587 +404712,94104 +164808,164808 +166019,166019 +176013,176013 +230570,230570 +217201,29603 +5107,5107 +153179,153179 +312535,312535 +308870,308870 +24230,24230 +399018,186721 +104063,104063 +57691,57691 +271645,271645 +330022,330022 +322067,322067 +245223,245223 +51250,51250 +258287,84869 +377898,4958 +6750,17 +182487,182487 +38499,38499 +173003,173003 +432261,432261 +292189,292189 +427150,712 +252197,252197 +162443,162443 +332181,332181 +155257,155257 +32327,32327 +406914,359029 +14082,13218 +2833,2833 +67891,67891 +36911,5541 +336753,336753 +268467,299 +74987,74987 +210414,210414 +169720,169720 +39536,39536 +7243,7243 +157973,157973 +130042,130042 +264242,264242 +423787,423787 +39020,39020 +6476,43196 +22111,22111 +335943,335943 +174046,126021 +146034,146034 +368265,368265 +399896,399896 +329771,329771 +6862,6862 +9916,9916 +428,428 +400080,285905 +349767,349767 +213301,213301 +381629,381629 +369552,322785 +8707,8707 +357740,357740 +132601,132601 +217890,217890 +320963,320963 +309128,2298 +191916,191916 +413087,413087 +143674,143674 +22126,22126 +217538,217538 +377563,377563 +177698,177698 +8101,8101 +3513,3513 +179606,179606 +27359,4001 +340348,340348 +335873,335873 +33071,33071 +376029,376029 +337617,85256 +375659,375659 +404983,404983 +181574,181574 +5389,215311 +295833,295833 +130304,130304 +3471,3471 +6470,2995 +27789,27789 +10230,10230 +197783,197783 +185987,261316 +377378,377378 +66643,66643 +379554,85256 +349408,349408 +890,890 +389345,389345 +274688,274688 +13980,13980 +262447,262447 +215469,215469 +20445,20445 +403122,403122 +358807,358807 +26233,26233 +3973,3973 +108832,108832 +154274,154274 +169925,192934 +340118,340118 +217884,217884 +334012,334012 +10267,10267 +81297,81297 +94116,94116 +23912,23912 +32031,32031 +8742,8742 +82863,82863 +256769,256769 +175845,175845 +347568,347568 +361469,361469 +26132,26132 +411543,411543 +329498,310610 +11293,11293 +321863,321863 +2180,2180 +16456,16456 +10300,10300 +219988,219988 +126076,126076 +233070,233070 +20120,20120 +220276,220276 +7993,7993 +5481,5481 +454,95 +337754,337754 +244702,144733 +1961,271460 +705,741 +6909,152470 +183716,183716 +291429,291429 +8333,8333 +18776,18776 +425,425 +132803,132803 +149705,149705 +392173,392173 +296498,296498 +17691,17691 +56641,56641 +3806,3806 +47410,13 +129311,129311 +277408,277408 +62809,105199 +266529,266529 +22758,22758 +224152,224152 +22511,22511 +380519,380519 +336831,336831 +341700,341700 +151369,151369 +161849,161849 +26855,42101 +372881,372881 +238506,463 +59031,4368 +11988,836 +140164,27048 +309208,309208 +352890,352890 +273937,273937 +13928,13928 +2405,2405 +235926,4358 +89912,89912 +1698,1698 +53723,53723 +235467,235467 +193577,673 +249817,249817 +340281,340281 +380681,380681 +18310,18310 +337460,337460 +381624,381624 +16186,16186 +28843,28843 +24525,463 +469,469 +173389,173389 +386660,174973 +292364,292364 +245090,245090 +17239,17239 +157723,42448 +298477,298477 +175226,175226 +300725,300725 +186501,186501 +118452,118452 +3751,2596 +360740,360740 +367642,367642 +79413,79413 +315046,296986 +251198,251198 +103783,103783 +321684,321684 +983,983 +26945,26945 +410495,410495 +192320,20545 +380924,826 +162888,162888 +36612,36612 +364018,260635 +233085,131357 +6578,6578 +5271,5271 +16415,16415 +1651,1651 +74312,74312 +23733,23733 +4290,4290 +355829,355829 +387561,387561 +148424,148424 +131047,131047 +18266,18266 +285099,285099 +126340,126340 +3826,3826 +154645,154645 +317613,317613 +342089,463 +192634,192634 +6346,6346 +2749,2749 +185456,185456 +319747,319747 +251153,228390 +55842,55842 +235991,235991 +359177,359177 +104376,104376 +6487,6487 +190115,190115 +319992,319992 +378873,378873 +386061,386061 +338747,338747 +159500,42448 +403128,403128 +4764,4764 +337378,337378 +68947,68947 +261397,380887 +157395,157395 +387483,7453 +8754,8754 +238636,238636 +59061,23107 +378329,378329 +322556,322556 +11284,11284 +186755,186755 +343384,312267 +162777,162777 +228713,228713 +378204,378204 +257180,107529 +283217,283217 +138484,138484 +419454,419454 +8986,8986 +318036,318036 +379160,379160 +144665,144665 +348032,348032 +226502,226502 +96188,96188 +7941,10300 +377123,377123 +109070,109070 +14881,14881 +277903,277903 +4332,4332 +363252,363252 +368540,368540 +2049,2049 +216282,216282 +368057,368057 +256486,256486 +387105,387105 +30023,4230 +235927,235927 +319792,319792 +533,533 +29380,29380 +394103,394103 +122399,122399 +414639,414639 +285902,285902 +181906,181906 +369571,369571 +370837,370837 +8424,5383 +353679,204836 +361089,361089 +102940,62871 +12181,12181 +419334,419334 +388082,388082 +212687,212687 +188758,188758 +742,741 +165044,165044 +420766,420766 +296277,296277 +18330,18330 +210465,463 +428099,428099 +176916,176916 +139390,139390 +399911,399911 +13881,12947 +16323,16323 +22476,285204 +3054,3054 +245483,245483 +341178,341178 +382903,382903 +345,345 +3727,3727 +193620,193620 +14781,241478 +134834,134834 +182915,463 +378496,378496 +256792,256792 +5864,5864 +231477,231477 +303548,303548 +4172,4172 +325611,325611 +244080,244080 +130907,130907 +24999,24999 +114386,114386 +1547,1547 +368045,368045 +280856,280856 +31454,31454 +2743,2743 +3459,3459 +341934,341934 +153839,153839 +85826,85826 +237079,237079 +130008,130008 +42641,5045 +257273,17240 +148050,148050 +336632,284775 +160517,160517 +393346,393346 +29,29 +200959,135577 +391766,391766 +87428,87428 +26621,26621 +803,803 +284227,43443 +377057,377057 +370020,370020 +236801,236801 +292333,17465 +191032,191032 +338075,338075 +365308,365308 +357795,357795 +4317,3661 +313649,11 +264157,264157 +244162,244162 +370911,370911 +31770,31770 +284600,284600 +148074,148074 +296334,296334 +315267,315267 +143131,143131 +167552,167552 +13375,13375 +341160,341160 +283755,283755 +93733,93733 +316625,316625 +64431,64431 +22399,22399 +8109,8109 +231181,231181 +237217,237217 +85165,85165 +297735,297735 +258440,258440 +326727,326727 +181866,9354 +374635,374635 +2988,2988 +293875,293875 +1289,1289 +388718,388718 +339686,339686 +15311,2944 +99310,99310 +5303,5303 +211852,211852 +364545,364545 +193278,43022 +176478,176478 +248224,248224 +318083,318083 +1177,1177 +32005,32005 +940,940 +140973,140973 +369760,334307 +40773,40773 +236881,236881 +246315,246315 +377858,377858 +98046,98046 +11764,11764 +18687,18687 +370231,174973 +113937,113937 +573,1380 +3998,3998 +140743,13 +362640,362640 +238834,238834 +260902,260902 +28879,28879 +235899,235899 +3691,3691 +192814,3243 +112210,112210 +11287,11287 +375365,375365 +179386,3234 +260335,260335 +4196,4196 +119782,119782 +369959,369959 +6503,6503 +358625,358625 +211962,211962 +8435,8435 +94371,94371 +1396,1396 +27071,27071 +3359,3359 +2554,2554 +393971,54625 +56410,8790 +333667,275783 +107463,107463 +97433,97433 +404544,374145 +7558,7558 +78093,78093 +158316,158316 +76352,76352 +118953,118953 +207602,207602 +90272,90272 +20130,20130 +386143,386143 +41835,41835 +244305,244305 +373782,373782 +139,182218 +125854,125854 +90730,90730 +4217,6045 +215526,215526 +353719,353719 +206202,206202 +35306,35306 +428058,428058 +245750,245750 +355787,284775 +346625,346625 +238018,238018 +400911,400911 +368467,368467 +264227,264227 +253318,253318 +164190,1323 +413299,413299 +402200,402200 +300724,5928 +12369,12369 +238972,238972 +148586,148586 +13269,13269 +348599,348599 +5052,5052 +263133,263133 +123406,123406 +7625,7625 +11132,9150 +149970,149970 +347302,347302 +95662,95662 +95364,95364 +10268,10268 +12126,12126 +414661,414661 +224478,224478 +3825,3825 +196122,196122 +6009,6009 +333693,333693 +11388,11388 +317118,317118 +302911,302911 +101872,101872 +10783,10783 +347865,347865 +429508,429508 +351603,351603 +55250,55250 +25014,25014 +172597,129951 +16169,16169 +59650,59650 +312594,312594 +244164,244164 +224992,224992 +195476,195476 +359009,359009 +129314,129314 +353636,353636 +407454,407454 +338549,338549 +178572,178572 +340744,340744 +264656,264656 +8522,8522 +311017,311017 +351098,351098 +298397,130792 +287895,287895 +357086,262341 +27626,27626 +158895,158895 +293237,265249 +312904,312904 +220137,220137 +301015,301015 +301946,301946 +314759,148951 +148592,148592 +246818,246818 +168265,142687 +8834,8834 +227163,227163 +381536,381536 +239883,239883 +11821,11821 +249312,249312 +208323,208323 +300088,300088 +51197,51197 +130912,148575 +368031,368031 +18127,18127 +6837,11821 +6735,6735 +185302,185302 +267986,267986 +323849,323849 +354768,354768 +299690,299690 +19909,19909 +181795,181795 +4208,4208 +43096,43096 +6088,6088 +93594,93594 +3603,3603 +7980,7980 +92046,92046 +16455,223669 +7579,97683 +161600,161600 +256122,188225 +25760,25760 +11930,11930 +35452,35452 +140861,140861 +14553,14553 +396015,54625 +17430,17430 +336597,336597 +23241,23241 +56943,56943 +344268,463 +37260,37260 +685,685 +49050,18985 +8355,8355 +419094,419094 +7112,7112 +281752,281752 +8356,8356 +6017,6017 +9376,2520 +21506,2392 +4265,4265 +257841,224271 +137789,137789 +1474,1474 +5275,267661 +23954,23954 +273352,273352 +260015,260015 +9794,9794 +303544,303544 +212969,212969 +282437,282437 +34255,34255 +20081,20081 +331795,331795 +128662,128662 +11283,11283 +378531,378531 +275100,275100 +217270,217270 +226115,226115 +381240,381240 +37444,37444 +291154,85256 +374487,374487 +139236,139236 +228603,228603 +181889,181889 +180598,29017 +5694,5694 +9259,9259 +408853,408853 +40005,40005 +157487,347883 +25937,25937 +225135,13293 +85857,85857 +18876,18876 +222750,222750 +3404,3404 +23642,23642 +209741,188181 +385990,385990 +283713,283713 +39976,39976 +85340,85340 +340980,340980 +5418,5418 +1588,1588 +121995,121995 +85004,85004 +300578,6830 +22406,22406 +357928,357928 +316767,316767 +107372,107372 +22721,22721 +347479,347479 +337891,337891 +134559,134559 +92838,92838 +286210,286210 +304490,172881 +349250,349250 +258206,258206 +265105,265105 +19591,263 +261265,261265 +255955,255955 +163482,163482 +295021,131357 +355730,355730 +266381,266381 +7694,7694 +327471,327471 +300866,300866 +362992,362992 +187383,187383 +382800,382800 +364425,364425 +75587,75587 +396866,396866 +302022,302022 +4413,4413 +397839,397839 +376641,376641 +413533,413533 +412728,412728 +247029,247029 +1252,1252 +107181,107181 +391761,391761 +230121,463 +262814,262814 +157529,157529 +337316,272215 +244163,244163 +42897,42897 +310159,310159 +337863,337863 +226264,226264 +34843,34843 +5728,5728 +27813,27813 +248196,248196 +412086,412086 +293274,293274 +265712,265712 +293236,293236 +200593,200593 +85899,85899 +380189,380189 +351572,351572 +42704,189192 +221398,221398 +246571,246571 +267732,267732 +277615,277615 +72242,72242 +264221,264221 +182499,8325 +49397,18985 +186624,186624 +314385,287411 +288068,288068 +163481,163481 +368093,111148 +223590,223590 +155195,155195 +367469,367469 +143048,143048 +369449,197831 +313543,313543 +125416,125416 +2189,2189 +313100,313100 +174637,174637 +109215,109215 +206802,206802 +8703,8703 +248332,120265 +11499,69843 +2235,2235 +1013,1013 +155877,155877 +272240,272240 +14355,14355 +227842,155315 +387198,387198 +365601,365601 +127433,127433 +328861,328862 +41198,41198 +340949,340949 +153479,153479 +2409,2409 +255233,337864 +41247,41247 +419496,419496 +347527,347527 +362216,362216 +312724,21133 +364609,2165 +368852,368852 +42702,119729 +411013,411013 +341713,322124 +139607,139607 +21072,21072 +340831,340831 +146746,146746 +3024,3024 +388721,388721 +313636,313636 +369764,334307 +183401,183401 +260955,260955 +417317,417317 +7378,7378 +121715,121715 +315978,315978 +18205,18205 +80934,80934 +94822,172881 +348732,348732 +383981,383981 +633,633 +177477,177477 +282713,219807 +247860,247860 +297958,7349 +1628,1628 +231032,231032 +177977,36986 +313824,313824 +182681,182681 +333486,299733 +378426,378426 +20610,20610 +278218,278218 +330298,330298 +142691,142691 +141089,141089 +342257,342257 +241067,85800 +184712,184712 +8643,8643 +192344,192344 +258164,258164 +260709,260709 +231966,263763 +17855,17855 +175634,175634 +212883,212883 +6768,6768 +42660,42660 +92465,92465 +5276,5276 +282224,282224 +256620,271512 +207796,207796 +299028,299028 +11452,11452 +347827,347827 +6,6 +293878,293878 +281921,281921 +9787,228 +10307,10307 +20543,20543 +384120,384120 +406501,406501 +20000,20000 +228601,228601 +267375,267375 +285870,285870 +8410,8410 +307703,1782 +19257,463 +143663,158122 +8909,8909 +62343,62343 +235361,235361 +322202,322202 +351849,351849 +3700,3700 +138729,138729 +178051,178051 +173755,173755 +314017,314017 +286422,286422 +342097,2453 +198537,198537 +680,680 +322183,322183 +297663,297663 +7650,7650 +412563,264241 +368650,368650 +160601,160601 +385765,385765 +153368,153368 +410774,410774 +124918,124918 +373744,373744 +200948,200948 +106523,41837 +10551,10551 +18531,18531 +6699,6700 +302316,302316 +199690,199690 +11957,11957 +4970,4970 +351622,351622 +383197,48726 +71569,71569 +195149,195149 +369560,369560 +28565,28565 +504,504 +253766,253766 +207378,207378 +329883,329883 +324895,324895 +220861,220861 +172088,172088 +174696,174696 +7978,7978 +24483,24483 +19676,19676 +342684,342684 +60464,60464 +243530,9674 +284650,284650 +154982,154982 +68227,68227 +225689,225689 +311397,311397 +9846,9846 +227650,2471 +6919,3661 +324522,324522 +415063,415063 +9854,9854 +348085,209450 +4877,4877 +167238,167238 +175824,175824 +18600,18600 +395627,395627 +241492,241492 +413254,413254 +20675,20675 +956,956 +39007,2995 +399104,399104 +4327,241164 +219926,185456 +304766,304766 +259015,311397 +2230,2230 +300420,137141 +343309,204836 +161913,161913 +109657,109657 +101930,101930 +17591,17591 +410769,410769 +73253,73253 +36550,36550 +153213,153213 +318838,318838 +287198,287198 +321240,297673 +393385,125678 +186996,186996 +365670,365670 +378945,378945 +270512,270512 +153103,153103 +11241,11241 +184566,184566 +68083,68083 +351300,351300 +160560,160560 +258184,258184 +4124,4124 +12718,12718 +273085,273085 +355346,355346 +27944,32907 +329148,329148 +161729,93 +5172,5172 +11997,463 +290768,257077 +99308,99308 +400607,400607 +104012,145042 +5200,5200 +240002,240002 +340913,285036 +26539,26539 +180599,180599 +229957,229957 +342409,342409 +3309,3309 +5935,5935 +12478,12478 +15212,15212 +128855,128855 +2483,2483 +3337,271460 +263175,263175 +131379,131379 +398331,398331 +394338,394338 +142417,142417 +191288,40182 +161773,161773 +350759,350759 +394699,394699 +249749,249749 +26716,26716 +31971,31971 +138869,138869 +273349,273349 +143983,143983 +248496,248496 +360676,147020 +3615,3615 +129013,150012 +9084,9084 +360090,275589 +3100,212807 +385797,385797 +209644,209644 +301366,301366 +209190,209190 +327402,327402 +322229,322229 +8705,255381 +241726,195137 +7758,7758 +17649,6861 +11110,11110 +60280,60280 +214213,214213 +124759,124759 +321476,193725 +413085,413085 +400947,400947 +67038,67038 +298631,298631 +75382,75382 +321307,294235 +343383,312267 +8179,8179 +13926,13926 +7834,7834 +342639,342639 +92177,92177 +203195,203195 +229640,43443 +417748,417748 +42257,42257 +235760,235760 +413469,413469 +38830,38830 +364048,364048 +17433,17433 +180943,180943 +299803,299803 +145381,145381 +114484,114484 +280730,280730 +351643,351643 +229408,229408 +2824,2824 +218769,218769 +275738,275738 +8243,8243 +400725,400725 +398945,398945 +3270,3270 +234299,234299 +401182,401182 +217977,217977 +416952,416952 +244327,244327 +359044,359044 +7938,7938 +324630,324630 +2721,2721 +39070,39070 +238355,238355 +9860,9860 +294456,294456 +383412,383412 +153987,13218 +13667,13667 +180672,21133 +7992,7992 +22227,22227 +10561,10561 +257440,257440 +245609,245609 +374751,374751 +133608,133608 +386007,194 +13915,5677 +379186,346296 +130043,130043 +36604,36604 +406378,406378 +252712,252712 +427866,169654 +334226,39710 +49391,18985 +16608,16608 +378707,378707 +89319,89319 +230316,201046 +161543,161543 +160396,160396 +22808,22808 +325079,325079 +125608,125608 +371071,371071 +288430,288430 +22186,22186 +362710,362710 +38755,38755 +185813,185813 +17352,17352 +3560,3560 +42498,42498 +979,979 +39798,39798 +65590,65590 +172837,172837 +292013,66188 +340569,340569 +294955,294955 +83228,83228 +376583,376583 +260937,233867 +10447,10447 +369763,334307 +55031,55031 +1627,1463 +267250,267246 +276023,276023 +11029,11029 +26840,26840 +172543,172543 +260711,220478 +413,182218 +359003,359003 +256536,256536 +192355,20545 +336549,336549 +35311,35311 +242354,148557 +109019,6830 +271820,271820 +416494,416494 +352311,352311 +69785,69785 +336893,336893 +184462,184462 +358022,358022 +378499,378499 +294773,294773 +4874,4874 +179918,179918 +407581,407581 +258209,226997 +361815,324413 +99777,99777 +347344,347344 +80869,80869 +19766,19766 +29288,43443 +172414,172414 +281782,54625 +182406,182406 +6765,2995 +19418,19418 +410,410 +11113,11113 +413663,413663 +367089,334307 +403209,403209 +324459,276169 +5878,5878 +327797,327797 +317298,148083 +21015,8098 +67022,322451 +42195,42195 +291550,291550 +353677,353677 +144736,144736 +204895,204895 +3064,3064 +1071,1071 +117986,117986 +417203,18 +23845,23845 +86169,86169 +276264,276264 +244910,244910 +118950,118950 +135650,135650 +168082,168082 +284074,284074 +302465,302465 +291743,291743 +200500,200500 +160470,160470 +160592,160592 +352605,329669 +153967,143741 +112995,112995 +231801,231801 +4256,4256 +199497,199497 +7181,7181 +365978,365978 +200096,50381 +237415,237415 +11084,11084 +38836,38836 +333405,333405 +20117,20117 +148528,148528 +12541,2398 +248421,248421 +156023,156023 +209113,209113 +21286,21286 +31067,3646 +133842,133842 +369445,197831 +68187,68187 +147372,360480 +11629,11629 +11373,11373 +121076,121076 +121322,121322 +263809,263809 +210412,463 +8334,8325 +42216,42216 +400629,400629 +332925,332925 +315276,315276 +172599,129951 +313802,253664 +324405,324405 +234512,247316 +26114,26114 +258347,113337 +392197,392197 +363696,363696 +31800,31800 +39324,39324 +181005,181005 +351937,351937 +308231,308231 +20053,20053 +117558,117558 +158968,158968 +644,644 +314063,314063 +561,561 +359895,359895 +301099,301099 +385756,385756 +222885,222885 +296204,296204 +322204,322204 +246685,246685 +20244,20244 +385412,385412 +369988,369988 +254263,161820 +270113,270113 +264089,264089 +166767,166767 +12936,12936 +26211,26211 +8724,8724 +13240,13240 +28553,28553 +39786,39786 +400058,400058 +421165,421165 +167787,167787 +41604,42101 +143745,143745 +402670,402670 +192637,192637 +269440,269440 +238041,238041 +371698,371698 +248927,463 +42207,42207 +3925,3925 +391720,76674 +8326,8326 +399759,19301 +290860,290860 +15267,15267 +202617,202617 +380004,380004 +246310,228766 +130725,130725 +25233,25233 +257644,257644 +316383,316383 +176466,176466 +418062,418062 +122809,122809 +298618,298618 +313241,313241 +4967,4967 +203421,203421 +3658,3658 +341502,341502 +22910,22910 +110336,110336 +385561,385561 +235819,322169 +6086,6086 +7967,7967 +184247,184247 +12160,12160 +192605,192605 +33605,33605 +33984,33984 +190264,64220 +326088,326088 +147782,93 +186,5332 +172278,172278 +3317,3317 +233933,233933 +182410,182410 +211810,211810 +203715,203715 +346800,346800 +356304,356304 +279928,279928 +429114,429114 +398772,398772 +8283,8283 +274296,285570 +40823,40823 +416054,416054 +220885,220885 +260277,293556 +269892,269892 +418762,298047 +271390,313951 +281460,281460 +312726,312726 +287822,287822 +23908,23908 +385317,385317 +227793,227793 +210065,210065 +155020,155020 +40446,40446 +364354,364354 +236827,154880 +13584,13584 +27926,27926 +22756,22756 +353526,291855 +371729,371729 +396895,396895 +231036,54625 +33595,463 +367241,367241 +375989,329862 +421852,421852 +366974,7976 +273492,109922 +16328,376966 +217431,217431 +282475,282475 +17448,17448 +8110,8110 +4349,4349 +271447,271447 +142277,142277 +246911,246911 +92140,92140 +248439,248439 +310290,310290 +197635,197635 +409509,409509 +275715,275715 +286927,147949 +324698,324698 +6250,553 +410599,410599 +25344,25344 +20043,20043 +270257,270257 +422478,422478 +14410,14410 +205790,162107 +390297,390297 +275158,50381 +381716,355850 +277931,277931 +388074,388074 +217229,217229 +199222,199222 +289428,289428 +313791,253215 +156443,156443 +5755,5755 +9095,9095 +10529,10529 +249650,249650 +2605,2605 +250411,250411 +176560,3864 +284003,228390 +412267,412267 +231575,231575 +381072,381072 +15678,15678 +196612,196612 +21572,21572 +285707,285707 +261355,206175 +22673,22673 +8042,8042 +220541,6191 +176826,163175 +282300,282300 +22901,22901 +334608,148204 +93879,93879 +3240,3240 +423697,423697 +341289,341289 +412527,412527 +224060,224060 +357192,357192 +395423,395423 +357404,357404 +326269,326269 +361140,361140 +13919,4564 +206666,206666 +32353,32353 +7184,7184 +378080,356768 +425276,294484 +150167,150167 +255962,255962 +235867,235867 +8577,8577 +429464,429464 +183511,183511 +308385,308385 +316234,316234 +287946,287946 +392825,172166 +249649,16804 +30020,4230 +250525,250525 +169743,169743 +275259,185709 +346603,346603 +43169,43169 +407214,407214 +5364,5364 +284192,284192 +257633,257633 +7470,1540 +298608,298608 +6085,6085 +203788,231960 +7861,2997 +24118,2281 +24475,24475 +16457,13218 +20741,5217 +155412,155412 +129308,129308 +127436,127436 +351766,351766 +170984,85256 +275561,334691 +137637,2613 +319794,85256 +286135,286135 +278322,278322 +357029,357029 +388435,388435 +226330,226330 +424203,424203 +357912,262520 +210410,463 +3612,3612 +182194,182194 +213834,213834 +322759,322759 +6118,6118 +376665,287 +394134,394134 +277035,277035 +136086,28436 +276629,276629 +351818,351818 +210097,210097 +340279,23995 +3109,33259 +361208,361208 +242818,242818 +22233,22233 +12211,1782 +2436,2436 +224815,224815 +209542,209542 +295155,760 +321727,321727 +767,767 +33624,33624 +406754,406754 +381,381 +29281,29281 +15231,15231 +377303,377303 +253074,253074 +12336,20266 +219985,148575 +41757,41757 +249692,249692 +271090,271090 +337812,337812 +369549,369549 +14814,11110 +3210,3210 +24923,24923 +280821,280821 +244073,244073 +329175,329175 +361065,361065 +95607,14441 +382888,382888 +314032,314032 +71956,71956 +287678,16497 +226457,226457 +144,144 +241828,241828 +299928,137140 +379921,379921 +317402,364733 +367243,367243 +368515,368515 +274525,274525 +265461,265461 +208801,208801 +277018,277018 +385947,385947 +8651,8651 +412013,412013 +627,627 +127650,127650 +708,708 +314336,314336 +343138,343138 +206061,206061 +428440,428440 +375311,375311 +31412,31412 +285273,285273 +167349,144479 +284926,284926 +114139,114139 +405542,405542 +153811,153811 +18265,2353 +229405,229405 +184688,184688 +125400,125400 +328302,328302 +131894,131894 +197893,197893 +156661,4173 +8818,8818 +148047,148047 +349593,349593 +325121,325121 +4336,4336 +209014,209014 +39515,39515 +171579,171579 +386300,358216 +312613,312613 +255697,411543 +364643,364643 +319602,319602 +6400,6400 +20031,20031 +343129,343129 +215389,215389 +170608,170608 +424152,424152 +200632,200632 +204429,204429 +335204,335204 +430,430 +280192,280192 +154931,154931 +170201,101644 +386328,386328 +249362,249362 +11412,11412 +406323,406323 +293890,293890 +9866,9866 +152228,152228 +158267,158267 +3954,3954 +40238,40238 +422463,422463 +7723,69843 +253320,253320 +310217,310217 +205506,205506 +15211,15211 +312968,312968 +25628,25628 +324883,324883 +409884,409884 +134419,134419 +75529,75529 +257604,257604 +235473,149787 +32346,32346 +31516,31516 +8329,8329 +13837,13837 +294710,294710 +407010,407010 +213371,213371 +247491,247491 +2710,2710 +42591,42591 +123923,123923 +21447,21447 +244039,244039 +209383,209383 +371836,371836 +299312,299312 +159003,159003 +162141,162141 +343385,312267 +301935,159575 +159685,159685 +380758,351969 +402750,402750 +377718,206931 +32465,32465 +349161,349161 +8322,8322 +204597,66986 +97595,97595 +211956,211956 +5843,5843 +272803,272803 +256609,256609 +345925,345925 +1130,1130 +343980,343980 +142219,142219 +381993,381993 +14088,14088 +134769,134769 +318613,318613 +98931,98931 +223946,223946 +2146,2146 +77200,77200 +81100,11 +151972,151972 +305862,305862 +226426,226426 +6338,10683 +279649,279649 +253835,253835 +277980,198832 +97521,97521 +284073,284073 +347400,347400 +286741,286741 +224656,224656 +14709,14709 +197944,197944 +161885,297486 +400750,400750 +323493,323493 +286983,286983 +133524,133524 +208377,140779 +215806,215806 +100798,160081 +20595,20595 +11812,11812 +193103,193103 +252530,252530 +310076,310076 +41186,463 +203027,203027 +155943,155943 +123635,123635 +6360,4564 +237212,237212 +30937,30937 +38881,38881 +38975,38975 +9339,9339 +37391,37391 +5464,5464 +425605,425605 +129971,129971 +4352,4352 +157053,157053 +179965,179965 +17996,17996 +241731,241731 +349488,349488 +141829,141829 +408320,408320 +10361,35477 +153745,153745 +140693,140693 +612,612 +288605,288605 +414798,414798 +379553,379553 +175864,175864 +42370,42370 +28017,28017 +382834,382834 +322751,163745 +391358,391358 +89478,89478 +257924,257924 +260322,260322 +405994,405994 +118330,118330 +137968,137968 +144412,144412 +256700,256700 +143843,63268 +182955,20545 +3099,3099 +400268,158991 +196634,165812 +30264,30264 +401158,401158 +217794,217794 +351855,148282 +285250,285250 +226736,226736 +64570,64570 +170555,170555 +378423,378423 +107173,107173 +201026,201026 +34943,34943 +400166,400166 +65521,65521 +209850,209850 +374630,374630 +317359,317359 +237715,237715 +354664,316767 +298116,298116 +385417,385417 +15721,15721 +15193,6830 +290756,290756 +10229,10229 +298345,148575 +102698,138729 +173336,173336 +8531,8531 +426229,426229 +265700,146387 +225740,225740 +231124,231124 +32477,32477 +96157,120669 +3485,3485 +2734,2734 +222401,222401 +3161,3161 +371178,371178 +5522,271460 +272711,272711 +133620,133620 +414349,414349 +141437,316625 +8415,8415 +5701,5701 +359644,278824 +232300,232300 +253763,19989 +40766,40766 +403063,294612 +335994,335994 +380300,271460 +82572,82572 +17208,17208 +411860,294484 +10394,10394 +367535,367535 +413389,413389 +365621,365621 +137811,137811 +8720,8720 +245545,245545 +151357,151357 +369803,299838 +155414,155414 +20899,13 +331897,331897 +254546,254546 +21798,21798 +42789,42789 +369895,369895 +27830,27830 +8913,8913 +35017,35017 +411980,411980 +25994,25994 +200999,200999 +34185,34185 +227561,227561 +17529,463 +107703,107703 +49096,18985 +4021,4021 +8461,8461 +66517,66517 +5173,5173 +280729,280729 +279776,279776 +280195,280195 +305723,305723 +313729,313729 +331549,331549 +160494,160494 +407812,147020 +327839,327839 +317865,317865 +400371,177524 +340030,85005 +311708,311708 +4656,4656 +179912,179912 +489,3321 +63906,63906 +26786,26786 +368837,368837 +241739,241739 +235254,235254 +166991,166991 +7203,7203 +33581,33581 +200396,200396 +191681,191681 +4683,4683 +185457,185456 +4479,4479 +222741,222741 +6417,6417 +36478,36478 +305855,305855 +391154,391154 +246094,198671 +238108,238108 +164022,164022 +356084,102104 +162614,162614 +226085,17 +279884,279884 +138945,138945 +130556,130556 +88147,88147 +369679,369679 +31711,6830 +5305,5305 +263323,263323 +8888,13403 +297530,297530 +147352,147352 +319765,70919 +74136,74136 +354900,354900 +148939,148939 +231587,231587 +258325,99459 +257080,257080 +17132,17132 +7641,7641 +341230,341230 +84922,102681 +38565,16030 +571,571 +398994,398994 +244172,244172 +204461,204461 +9197,9197 +32086,32086 +3666,3666 +97469,2453 +294216,294216 +178285,178285 +183577,183577 +228373,228373 +133535,133535 +287682,287682 +144587,144587 +332495,332495 +39699,71099 +358924,358924 +244009,244009 +166931,166931 +34245,34245 +8161,8161 +8304,8304 +6940,6940 +277565,277565 +707,707 +255134,255134 +336936,266083 +24704,24704 +23614,23614 +344128,344128 +289796,289796 +85468,85468 +1047,1047 +10261,10261 +271150,8989 +45020,45020 +25866,1465 +310300,310300 +8652,8652 +7607,7607 +245058,245058 +311751,311751 +401361,401361 +5298,5298 +111802,111802 +330196,232661 +42627,42627 +164975,164975 +300033,204801 +129313,129313 +1816,1816 +12111,12111 +128388,399104 +395251,395251 +402737,402737 +11135,11135 +249039,249039 +1873,1873 +397376,397376 +300120,192656 +296578,132018 +7991,7991 +14299,14299 +428819,428819 +371100,371100 +363208,342135 +209774,178153 +223222,1111 +354724,294813 +66964,66964 +257762,257762 +298705,298705 +310990,232509 +302421,102104 +35376,35376 +407804,407804 +282910,282910 +26486,26486 +130603,130603 +117555,117555 +2119,1275 +201560,158973 +18704,18704 +412127,412127 +245644,245644 +194438,194438 +224039,224039 +13936,13936 +404893,404893 +292962,292962 +34195,34195 +376155,376155 +8353,8353 +313876,313876 +338351,158572 +186905,186905 +344685,344685 +11707,8727 +141452,4916 +147735,147735 +421304,421304 +184525,184525 +256302,256302 +191178,191178 +275512,237745 +93639,93639 +404351,404351 +408598,4001 +4015,4015 +190828,190828 +358387,358387 +17119,760 +155745,143323 +419294,419294 +267133,267133 +421496,421496 +265682,265682 +10880,10880 +144253,144253 +17209,158267 +266071,184525 +130764,130764 +320817,60815 +7169,7169 +197551,268620 +372824,372824 +379339,379339 +250348,250348 +379075,379075 +133713,133713 +6049,6049 +197617,176936 +276,276 +153120,153120 +194097,13 +21293,21293 +224011,224011 +1691,1691 +43110,43110 +25569,25569 +244609,244609 +306579,306579 +1832,1832 +200646,200646 +406238,406238 +40803,225836 +231457,231457 +186980,186980 +343898,343898 +260,260 +382804,382804 +291773,291773 +34207,20907 +6920,6920 +2003,2003 +381124,381124 +182736,182736 +38929,38929 +218045,218045 +318074,318074 +194966,194966 +2362,2362 +49038,18985 +347587,347587 +247790,247790 +122271,122271 +88925,88925 +291048,291048 +244922,244922 +392471,392471 +235071,235071 +32821,32821 +106174,106174 +108155,108155 +321754,321754 +230146,230146 +7703,7703 +13341,13341 +182135,130680 +244939,244939 +401185,986 +40602,40602 +268398,197097 +335631,335631 +413075,413075 +136238,136238 +10822,10822 +75809,75809 +20966,20966 +8747,16185 +132452,6830 +126941,126941 +128658,128658 +402527,402527 +312593,312593 +204578,204578 +281663,281663 +353131,353131 +24020,24020 +319766,319766 +60579,60579 +16829,16829 +117997,63268 +359176,359176 +178098,158973 +346927,346927 +227315,227315 +97512,144567 +423835,423835 +236466,236466 +250380,250380 +24280,24280 +351868,351868 +347906,173337 +152848,152848 +422462,422462 +393909,393909 +228724,228724 +231983,231983 +293006,293006 +2705,760 +283849,283849 +198825,198825 +280472,148575 +127993,127993 +306910,126119 +85530,85530 +245753,245753 +164428,164428 +25253,25253 +280742,280742 +330881,330881 +120886,120886 +11640,11640 +362513,362513 +185383,185456 +281477,281477 +182408,182408 +1875,1875 +366888,267401 +251405,251405 +391560,422374 +206437,206437 +9932,9932 +2843,2843 +2232,463 +178442,178442 +7829,7829 +310693,310693 +379343,379343 +353139,1323 +27127,27127 +210406,463 +158767,158767 +322144,322144 +291400,291400 +20054,20054 +22477,22477 +182172,182172 +333487,299733 +6529,24321 +210402,463 +185246,185246 +630,630 +287586,287586 +315560,315560 +321229,321229 +25516,25516 +163186,163186 +341193,341193 +420815,420815 +398707,369257 +303317,303317 +150429,150429 +5893,5893 +194874,194874 +176071,17027 +253862,253862 +293691,293691 +60076,60076 +307336,307336 +352516,352516 +123587,123587 +10971,10971 +423070,423070 +402475,402475 +381825,381825 +36920,36920 +8743,21411 +252901,252901 +423051,423051 +311711,311711 +35122,35122 +300400,300400 +8441,8441 +383119,383119 +410112,410112 +187164,187164 +6007,6007 +18343,18343 +174618,174618 +5136,463 +108459,108459 +259715,259715 +345633,313543 +402305,217449 +303543,173804 +271942,271942 +123386,13 +445,445 +285102,285102 +346743,346743 +241964,241964 +262566,262566 +161126,36367 +302385,302385 +267907,267907 +298411,298411 +408636,408636 +88931,88931 +128219,128219 +223286,223286 +35254,35254 +199394,199394 +406278,406278 +8093,8093 +229909,229909 +82976,82976 +274442,274442 +236533,236533 +123223,123223 +14010,14010 +1411,1411 +5725,5725 +236481,236481 +339062,223376 +374709,374709 +306074,189869 +148330,148330 +8803,8803 +392117,392117 +124881,124881 +12715,299 +6448,6448 +269504,269504 +289494,341496 +11648,11648 +16719,16719 +84864,84864 +6848,6848 +16450,16450 +230228,230228 +18785,18785 +246751,349593 +209653,209653 +394130,394130 +336338,336338 +344454,344454 +7082,7082 +411295,411295 +308720,308720 +265019,265019 +422437,422437 +190047,190047 +348048,348048 +6890,6890 +351208,351208 +317115,317115 +140857,140857 +375567,375567 +167999,167999 +204659,225836 +307511,2511 +76994,76994 +10946,10946 +234657,234657 +424373,424373 +275956,275956 +232880,169124 +256170,256170 +244528,244528 +140468,140468 +187704,187704 +389860,389860 +324602,324602 +42901,42901 +205345,20000 +368383,368383 +235904,235904 +358030,358030 +17779,17779 +293391,289467 +249304,16450 +433099,433099 +300090,300090 +311829,322421 +5447,5447 +367443,207991 +329151,141428 +370879,370879 +275518,275518 +404381,404381 +66888,66888 +350713,350713 +183400,183400 +13637,13637 +258653,1323 +4472,4472 +230955,230955 +11983,11983 +254868,254868 +355271,355271 +150220,150220 +223947,223947 +366466,366466 +197633,197633 +432536,180020 +1916,1916 +7142,12140 +14514,14514 +86006,86006 +251434,251434 +262290,262290 +262561,262561 +416343,416343 +314086,314086 +4379,4379 +298017,298017 +229703,229703 +330747,330747 +188364,113337 +381853,308565 +174235,174235 +256151,256151 +384173,384173 +293708,293708 +343942,343942 +3617,3617 +377162,377162 +56685,56685 +68340,68340 +413034,413034 +164369,164369 +345069,345069 +163099,163099 +318484,318484 +37983,37983 +20300,20300 +168544,168544 +233094,233094 +388747,388747 +218842,218842 +180595,16986 +224793,224793 +9489,9489 +132773,132773 +2410,2410 +25045,122435 +367543,367543 +319593,208895 +217298,217298 +345031,345031 +12280,12280 +271550,271550 +244691,244691 +382182,382182 +395926,395926 +314837,4001 +69543,69543 +346989,346989 +9971,9971 +1244,1244 +14765,14765 +218923,218923 +376486,376486 +33692,463 +201668,201668 +310196,310196 +210390,463 +25749,25749 +396738,396738 +197928,197928 +291509,188225 +6924,2800 +175689,155315 +11435,11435 +379241,379241 +370771,1544 +262730,3053 +30879,438 +7735,62291 +81588,81588 +400137,400137 +404383,404383 +12049,12049 +252684,252684 +274049,274049 +88870,88870 +402267,402267 +8436,8436 +366900,366900 +144677,144665 +349947,180845 +409787,400113 +173335,173335 +217644,156546 +931,463 +248956,248956 +371027,261393 +342801,342801 +317398,317398 +363238,342492 +329710,329710 +1304,1304 +114,114 +133963,133963 +278920,278920 +426045,426045 +34593,34593 +11050,11050 +183340,183340 +361600,361600 +195305,195305 +341009,341009 +4935,4935 +33857,33857 +397139,397139 +234124,234124 +90004,90004 +709,709 +220848,220848 +416850,416850 +3532,3532 +2895,2895 +328970,328970 +247199,247199 +331308,331308 +410718,410718 +392464,392464 +254424,254424 +147427,463 +175704,175704 +286138,286138 +124034,124034 +3561,3561 +335239,265017 +17582,17582 +225727,225727 +427007,427007 +2271,2271 +429608,152 +419437,419437 +232501,232501 +411861,294484 +328325,328325 +426999,426999 +363995,21133 +323275,323275 +5494,5494 +8723,8723 +425936,91010 +109827,109827 +251622,251622 +198888,198888 +249102,249102 +1833,1833 +147458,147458 +27682,38159 +6036,6036 +333348,333348 +373009,373009 +170118,170118 +314337,314337 +276880,276880 +394072,394072 +230240,230240 +275087,275087 +55896,55896 +207905,463 +7566,7566 +339251,339251 +400858,400858 +348955,348955 +427904,427904 +261370,261370 +241323,241323 +388692,388692 +130053,2604 +40819,40819 +230246,230246 +371459,371459 +2164,2164 +8358,8358 +421373,421373 +7784,7784 +427388,427388 +261161,261161 +209322,209322 +159502,159502 +153292,8829 +228420,228420 +423802,423802 +127229,127229 +379926,379926 +290565,290565 +389845,389845 +193301,193301 +330307,330307 +259945,259945 +353604,353604 +197414,43443 +253675,253675 +366909,366909 +313085,313085 +7071,7071 +322717,322717 +371095,107529 +379177,379177 +5966,5966 +411403,411403 +130202,130202 +4875,4875 +4778,4778 +247526,247526 +265840,191301 +331416,331416 +283492,35188 +24127,24127 +182978,182978 +56022,56022 +54707,54707 +174491,174491 +350945,350945 +410338,410338 +283353,283353 +160762,160762 +420566,420566 +271666,271666 +37394,37394 +18472,33030 +95503,95503 +47722,47722 +58565,58565 +10472,10472 +218459,218459 +186489,186489 +417518,417518 +410680,320390 +111387,111387 +346323,346323 +286434,286434 +248082,248082 +223674,223674 +25999,25999 +95318,10226 +140626,140626 +67542,67542 +400494,251228 +251399,251399 +55222,463 +216351,216351 +18536,18536 +400467,400467 +323834,323834 +352821,298624 +328286,328286 +12505,12505 +39708,39708 +210401,463 +257599,257599 +397159,397159 +95449,95449 +190073,190073 +1623,1623 +5828,5828 +27339,27339 +129668,129668 +262480,262480 +18835,18835 +55999,55999 +180994,180994 +13654,463 +392064,392064 +258270,258270 +380041,380041 +20848,20848 +16617,16617 +186191,186191 +126069,126069 +3892,3892 +104775,104775 +362942,362942 +34376,34376 +368282,368282 +369995,369995 +385632,385632 +314529,314529 +375378,375378 +112532,112532 +13800,13800 +260238,333405 +349329,349329 +123399,123399 +18588,6554 +13979,13979 +5589,5589 +396,396 +728,728 +223573,223573 +313016,313016 +33823,33823 +200314,200314 +337238,337238 +251854,251854 +11477,11477 +356749,356749 +368906,368906 +378375,378375 +381711,381711 +17143,17143 +329613,329613 +108789,108789 +400265,286656 +372187,372187 +258818,258818 +363012,363012 +270237,270237 +208016,208016 +3405,3405 +253948,253948 +422314,32907 +166260,166260 +360032,360032 +329559,329559 +352882,352882 +353380,353380 +38,285570 +140235,140235 +271162,271162 +192283,192283 +293833,293833 +10634,10634 +36674,36674 +292082,292082 +36513,36513 +45569,45569 +231,231 +291178,291178 +39914,65568 +238915,238915 +136215,136215 +283161,283161 +144993,144993 +319097,319097 +391061,391061 +174049,174049 +265634,265634 +2474,2474 +339616,263763 +254230,254230 +7067,7067 +282066,282066 +279527,279527 +256957,256957 +415472,415472 +376284,376284 +379156,379156 +97582,97582 +149707,143515 +241611,254640 +305564,305564 +146014,146014 +165627,165627 +305211,305211 +276922,276922 +3127,3127 +203299,203299 +183404,224271 +319295,319295 +37612,37612 +403062,294612 +2751,2751 +381910,381910 +322250,322250 +275061,275061 +31025,12355 +262164,262164 +23605,1720 +287345,292962 +402673,402673 +9915,9915 +111142,111142 +164566,164566 +269607,269607 +237311,237311 +86165,86165 +31846,31846 +269564,143741 +363091,363091 +13498,13498 +170447,170447 +9146,9146 +2401,2401 +233501,233501 +132261,132261 +391215,391215 +342545,342545 +220234,220234 +309852,309852 +231316,231316 +333256,333256 +207335,207335 +224153,224153 +6720,6720 +402276,402276 +234101,234101 +3036,3036 +191049,191049 +380051,380051 +286761,286761 +213634,308652 +9636,9636 +28102,28102 +25478,4848 +308757,308757 +116948,116948 +338797,338797 +116737,116737 +15391,320061 +332778,260524 +394203,394203 +125605,115 +275634,275634 +256950,256950 +563,563 +394070,394070 +364797,364797 +192321,20545 +153939,153939 +20834,20834 +354242,354242 +201917,201917 +318189,318189 +307733,307733 +84671,84671 +12129,12129 +353513,80933 +380550,380550 +15683,27968 +169550,169550 +218683,218683 +3984,3984 +201510,201510 +290541,290541 +8990,8990 +266421,16986 +258752,258752 +424166,424166 +9438,9438 +247576,247576 +322381,286804 +420914,420914 +395493,395493 +342987,342987 +218612,191895 +8728,8728 +3921,3921 +235746,235746 +300399,176247 +354975,354975 +2402,2402 +388520,388520 +227790,180845 +276669,276669 +260931,260931 +106969,106969 +333472,333472 +196328,196328 +136085,136085 +323236,323236 +364774,364774 +10236,10236 +235986,235986 +218615,218615 +398059,227072 +344438,344438 +103843,103843 +185350,147949 +12142,12142 +182276,3439 +69844,69844 +378984,378984 +39617,39617 +363792,363792 +23999,23999 +344872,344872 +171488,144479 +6583,2472 +66641,2472 +298596,204836 +4199,4199 +331747,36235 +250463,364425 +398890,398890 +1402,1402 +279477,279477 +210411,210411 +397459,327 +220674,220674 +202478,27225 +183305,183305 +155440,155440 +4296,4296 +242317,242317 +370964,370964 +376612,376612 +76681,76681 +223790,223790 +51199,51199 +307041,307041 +290861,290861 +17697,17697 +19908,19908 +237181,137141 +286544,286544 +413133,413133 +2503,2503 +273006,273006 +336848,336848 +175224,175224 +199800,199800 +420472,420472 +39872,39872 +198548,6830 +98197,208670 +355987,355987 +147145,8222 +354727,354727 +403711,403711 +660,660 +356944,356944 +391255,391255 +23654,2472 +184780,184780 +188759,188759 +287657,287657 +362418,362418 +24994,24994 +146188,146188 +367601,367601 +150923,150923 +2781,2781 +180742,180742 +307808,307808 +250593,250593 +20136,11 +100881,438 +44125,44125 +367617,367617 +90142,90142 +425604,425604 +191132,191132 +321755,321755 +259501,259501 +276121,276121 +241658,158876 +239436,239436 +7870,7870 +379584,379584 +66507,66507 +9801,9801 +328500,328500 +294232,294232 +263089,263089 +272692,272692 +130400,130400 +51067,51067 +288087,288087 +124290,124290 +37351,37351 +361091,361091 +5930,5930 +228889,228889 +269036,269036 +171548,171548 +298147,298147 +417429,202494 +259829,259829 +69,69 +46991,46991 +2161,54625 +359961,359961 +259064,259064 +202227,36424 +323034,323034 +265120,265120 +353122,353122 +96342,96342 +219974,219974 +322049,322049 +123162,123162 +277481,277481 +569,569 +322585,322585 +8046,3667 +18061,18061 +9194,9194 +31797,31797 +4017,4017 +25302,25302 +268802,85256 +335726,335726 +2814,2814 +26306,148471 +13742,13742 +81571,81571 +226294,226294 +237991,43443 +409498,409498 +130723,130723 +17136,17136 +345622,345622 +307722,307722 +13290,13290 +7799,7799 +14762,14762 +280143,280143 +235628,235628 +20302,20302 +20090,20090 +101723,101723 +373062,373062 +69761,69761 +341433,341433 +33969,33969 +18096,7378 +415750,415750 +64142,64142 +323158,323158 +2600,2600 +276045,276045 +18580,18580 +111097,111097 +262291,164590 +218555,218555 +233994,233994 +257411,257411 +154307,54625 +130004,130004 +8923,8923 +165041,165041 +358604,358604 +257205,257205 +1570,1570 +337904,337904 +172673,172673 +345455,345455 +2713,2713 +9113,9113 +17615,17615 +223330,223330 +228882,228882 +143238,32484 +335857,335857 +234989,234989 +15432,15432 +92591,92591 +165797,165797 +322673,322673 +6907,6907 +18690,18690 +1470,1470 +342271,342090 +97248,97248 +69638,69638 +264984,264984 +141920,141920 +166335,166335 +274676,274676 +28258,16986 +9913,9913 +7003,7003 +229910,229910 +175592,175592 +32688,32688 +6053,6053 +321603,325545 +172875,172875 +54073,54073 +144417,144417 +17807,17807 +211084,211084 +311279,311279 +403634,54625 +2597,2597 +373444,373444 +25069,25069 +167185,17240 +388690,182134 +20627,20627 +250706,250706 +282251,317312 +5346,5346 +28454,28454 +6803,6803 +283157,283157 +12479,12479 +402792,402792 +1043,1043 +17967,463 +13771,13771 +36333,36333 +277334,277334 +409978,409978 +261244,261244 +335832,335832 +352540,352540 +255642,255642 +387849,387849 +253991,253991 +5875,5875 +188527,188527 +8544,8544 +5220,5220 +8245,8245 +298359,298359 +2704,220988 +172885,172885 +68620,68620 +197935,197935 +388225,388225 +183402,183402 +204397,54625 +3229,3229 +4320,3162 +179487,179487 +76487,76487 +2031,2031 +347888,127493 +34890,34890 +314742,314742 +157339,157339 +16332,16332 +271989,271989 +11160,11160 +153056,153056 +178600,313016 +55828,55828 +46369,5222 +297253,297253 +314881,314881 +395647,395647 +301638,301638 +89807,89807 +291380,20545 +167190,167190 +25973,25973 +7657,7657 +367027,367027 +84470,84470 +347034,347034 +407046,407046 +5955,5955 +208217,208217 +5924,5924 +420240,289565 +357724,303954 +158586,158586 +343542,343542 +209488,10934 +154890,154890 +17784,17784 +8571,8571 +16432,16432 +328484,328484 +376011,376011 +202177,89319 +5858,5858 +1390,1390 +168429,168429 +32639,32639 +7354,7354 +363892,402744 +2139,2139 +34381,34381 +388685,388685 +150197,150197 +3330,3330 +2762,2762 +24805,24805 +12218,3935 +1314,1314 +299857,299857 +244913,244913 +326329,326329 +387913,387913 +11766,11766 +216367,216367 +345284,345284 +369119,369119 +116231,116231 +282389,282389 +373829,373829 +52827,52827 +416027,416027 +198456,198456 +402814,402814 +325856,325856 +379932,379932 +154281,154281 +4794,4794 +231302,231302 +284107,284107 +394512,394512 +64955,64955 +397099,397099 +15122,15122 +361862,361862 +37743,37743 +282483,282483 +161063,161063 +198668,198668 +249307,249307 +115325,115325 +264742,222643 +37392,37392 +399318,371183 +66695,66695 +427865,427865 +10557,10557 +8421,8421 +333185,333185 +150599,150599 +98352,98352 +39034,39034 +371057,371057 +368541,368541 +254322,254322 +24845,24845 +164284,164284 +283160,463 +18841,18841 +353880,354242 +389814,389814 +177995,177995 +2757,2757 +148190,148190 +340239,21133 +368905,368905 +47130,47130 +301260,301260 +200114,200114 +307532,307532 +160608,160608 +26692,26692 +298030,167975 +203238,203238 +320283,24207 +7754,7754 +374019,374019 +109077,109077 +6982,825 +203757,161682 +209719,209719 +155700,155700 +218166,210113 +147251,147251 +6672,6672 +271043,271043 +199530,199530 +250619,66056 +330668,330668 +396042,396042 +245927,245927 +252962,252962 +7830,7830 +400093,400093 +400733,36553 +76920,76920 +397224,397224 +216347,3730 +425091,54625 +117549,117549 +296239,296239 +1775,1775 +111275,35497 +2720,2720 +281120,281120 +404268,404268 +63829,63829 +233206,233206 +168834,168834 +102773,144665 +36324,36324 +148138,148138 +5199,5199 +23957,23957 +270077,270077 +38335,38335 +303573,303573 +383012,383012 +137328,137328 +336274,336274 +39080,27613 +86003,86003 +5727,5727 +163565,177995 +313537,313543 +4049,4049 +220930,220930 +34948,34948 +287219,287219 +358601,358601 +228045,228045 +205263,192924 +22329,22329 +16874,16874 +342283,342283 +168382,168382 +2531,2531 +416079,156496 +99131,99131 +246510,246510 +354897,354897 +205478,205478 +367655,367655 +95679,95679 +229369,229369 +59808,59808 +202468,274230 +234259,234259 +296560,296560 +197749,197749 +51401,51401 +296892,296892 +357822,357822 +341426,341426 +11993,11241 +328793,328793 +238968,238968 +386728,386728 +163062,163062 +361207,463 +285892,285892 +378832,378832 +158887,158887 +15399,15399 +1082,1082 +334247,334247 +24318,271460 +84776,84776 +236179,236179 +148473,92140 +343373,3086 +155245,155245 +103807,103807 +184797,184797 +7307,7307 +219348,219348 +368357,6916 +282421,282421 +277152,277152 +5135,5135 +353086,353086 +209578,209578 +362607,362607 +203671,189123 +19253,463 +273762,273762 +5162,5162 +396727,396727 +37724,37724 +23707,23707 +286658,286658 +414274,414274 +368758,368758 +391014,391014 +6611,6611 +388741,388741 +69587,69587 +402711,402711 +186142,186142 +374059,374059 +404384,404384 +326030,326030 +24658,24658 +39219,39219 +412230,249 +151678,151678 +86247,86247 +13363,13363 +345634,313543 +12352,12352 +383249,383249 +283820,283820 +236365,235344 +382694,382694 +209748,209748 +6979,6979 +285529,235655 +338099,338099 +143387,143387 +199382,27162 +243927,243927 +331903,331903 +85124,85124 +6742,6742 +324182,324182 +17220,17220 +277679,277679 +218590,218590 +18817,18817 +357323,357323 +292961,292962 +321711,218333 +166977,166977 +133748,42101 +328553,328553 +196256,196256 +69815,69815 +91831,91831 +239982,239982 +187199,187199 +175221,175221 +175778,2471 +290822,290822 +418073,418073 +307172,336373 +198898,198898 +359405,359405 +286885,286885 +199007,144728 +421232,421232 +83647,83647 +29447,29447 +224590,224590 +334782,334782 +421316,421316 +134069,134069 +351725,351725 +151892,151892 +394722,394722 +160091,160091 +206664,206664 +225580,225580 +312504,312504 +32337,32337 +363393,363393 +159908,3243 +284957,284957 +984,984 +12562,12562 +13593,255381 +236508,236508 +183528,183528 +261450,85899 +421823,421823 +2310,2310 +163164,163164 +14102,14102 +221938,221938 +251825,251825 +178154,178154 +214535,214535 +261140,261140 +286904,84913 +154687,369689 +374542,374542 +195535,195535 +250626,250626 +377983,377983 +39089,39089 +247405,247405 +96564,96564 +210405,463 +380915,380915 +353632,353632 +264729,264729 +129322,10445 +19372,19372 +84609,84609 +344958,344958 +286247,286247 +200696,200696 +3182,3182 +145492,145492 +257680,257680 +363093,363093 +291100,347748 +110245,38545 +3067,3067 +1405,623 +86754,86754 +94338,94338 +52332,3586 +55198,55198 +88113,88113 +143505,143505 +230745,230745 +21342,21342 +39279,39279 +13094,248002 +392756,392756 +66825,66825 +115264,115264 +10584,10584 +71889,71889 +275214,275214 +262443,262443 +279418,15827 +2214,2214 +171475,171475 +424451,424451 +9668,9668 +257850,257850 +34419,34419 +216401,216401 +386269,386269 +209642,209642 +27098,27098 +372387,372387 +7931,7931 +191043,191043 +296247,296247 +330111,330111 +250643,319793 +333953,333953 +344419,344419 +7337,7337 +38825,38825 +359925,359925 +6008,6008 +96703,96703 +251731,251731 +320839,320839 +9905,9905 +300146,300146 +287346,287346 +97494,97494 +110407,19544 +173302,173302 +355947,355947 +3130,3130 +164600,164600 +334694,334694 +223404,223404 +377045,377045 +91512,91512 +249364,249364 +7578,7578 +14590,7382 +374458,374458 +102253,56320 +364012,86169 +354211,354211 +170203,170203 +168077,168077 +216360,188347 +4107,4107 +3265,3265 +380178,380178 +335884,335884 +234834,234834 +37755,37755 +213304,463 +178266,178266 +172312,172312 +29676,29676 +374055,374055 +38868,38868 +182101,182101 +353941,353941 +130223,130223 +4048,4048 +757,757 +35635,35635 +365605,365605 +388394,388394 +309832,195180 +257445,257445 +90855,90855 +85467,85467 +11129,11129 +318548,232509 +37777,191073 +17167,17167 +26890,26890 +9835,9835 +370835,370835 +239159,239159 +153327,28805 +372504,372504 +20617,20617 +229131,229131 +245695,245695 +277003,277003 +153916,101929 +175265,175265 +201144,201144 +234615,20545 +202223,202223 +11531,11531 +257994,257994 +181670,181670 +12146,12146 +412811,412811 +319767,319767 +13669,13669 +237648,237648 +174895,174895 +7939,7939 +127129,127129 +784,784 +1331,1331 +408637,408637 +2096,2096 +105292,105292 +387596,346702 +228310,228310 +191201,191201 +357257,357257 +5492,5492 +15060,15060 +385810,385810 +269756,218314 +288664,288664 +257073,257073 +100447,100447 +370230,370230 +37370,37370 +11433,11433 +90002,90002 +277586,277586 +104164,104164 +388,388 +209976,209976 +406281,374039 +174943,174943 +182349,182349 +9018,9018 +293739,293739 +41305,41302 +60342,60342 +11185,11185 +361405,361405 +370962,370962 +269238,269238 +312951,312951 +345637,345637 +5692,5692 +232238,463 +3970,3970 +64769,64769 +387647,387647 +107640,107640 +3604,3604 +2217,2217 +1649,1649 +2263,2263 +296353,296353 +340496,340496 +38829,16432 +304240,304240 +350730,350730 +31274,31274 +260212,260212 +140702,140702 +7588,7588 +104353,104353 +4574,4574 +276459,276459 +8363,8363 +301637,301637 +31074,2180 +8985,1219 +317087,317087 +70597,70597 +10968,10968 +344447,344447 +210315,177823 +16673,6700 +234614,20545 +403567,403567 +43480,16450 +201458,201458 +10914,10914 +3947,2472 +256710,256710 +392027,392027 +310619,310619 +35934,35934 +152985,152985 +313539,313543 +259731,259731 +7557,7557 +407575,407575 +19432,19432 +158059,158059 +345013,345013 +169470,169470 +360012,353289 +302463,46213 +97728,21414 +377393,377393 +24927,24927 +123511,123511 +149814,149814 +264843,264843 +364732,364732 +30834,30834 +54501,54501 +25593,25593 +319906,127920 +26033,26033 +261328,285250 +8134,8134 +428322,428322 +15820,15820 +10785,10785 +130763,130763 +385633,385633 +366932,366932 +10878,10878 +165805,165805 +197020,197020 +200691,200691 +37718,37718 +255478,255478 +6625,6625 +132598,132598 +26141,26141 +362,362 +275085,275085 +364689,364689 +180847,180847 +3008,3008 +365751,365751 +212298,463 +112445,112445 +254613,254613 +25546,25546 +125549,125549 +144959,144959 +2970,2970 +6885,6885 +198824,198824 +186404,186404 +7803,271460 +242409,175627 +11446,11446 +88045,88045 +403393,403393 +393097,393097 +313750,313750 +400570,400570 +359160,359160 +328958,328958 +373,373 +6402,6402 +287893,287893 +272434,272434 +374176,223376 +154811,154811 +188793,188793 +325710,325710 +175150,175150 +1701,1701 +35813,35813 +329560,329560 +39084,39084 +135557,1350 +241486,10527 +184590,29262 +90162,90162 +118539,118539 +234421,234421 +140939,140939 +346233,346233 +127572,127572 +2718,2718 +17146,17146 +389674,389674 +401225,401225 +1987,1987 +98475,98475 +124221,2891 +30951,30951 +223095,223095 +391161,391161 +371182,1098 +312619,312619 +207310,207310 +296331,296331 +157673,157673 +41496,41496 +208073,208073 +40619,40619 +184460,184460 +311541,204836 +375436,375436 +172598,172598 +431710,336811 +18011,18011 +252141,127589 +162038,162038 +8748,16185 +354924,354924 +145842,463 +43168,43168 +148349,148349 +79312,79312 +2395,2395 +38828,38828 +35618,35618 +272234,272234 +361311,361311 +406257,406257 +363209,342135 +323103,323103 +183976,183976 +906,906 +248907,295785 +66197,66197 +38637,66214 +10589,10589 +176433,176433 +12520,12520 +173629,173629 +237228,237228 +29691,29691 +421307,421307 +2836,2836 +102792,102792 +395200,395200 +187515,187515 +367527,22877 +420000,257501 +11763,11763 +237195,237195 +342807,22287 +275349,275349 +295806,295806 +171258,171258 +416790,416790 +249658,249658 +176557,176557 +60574,60574 +252096,252096 +180006,180006 +197069,197069 +146964,146964 +426467,255708 +257357,337864 +411881,411881 +279062,279062 +18880,18880 +393871,244115 +5343,5343 +387535,54625 +173093,173093 +27665,27665 +223597,223597 +362484,362484 +267415,267415 +149079,149079 +137307,137307 +316048,316048 +266937,266937 +223823,223823 +401310,401310 +401242,382694 +92186,92186 +358910,358910 +156836,156836 +5055,5055 +192323,20545 +75668,75668 +220240,220240 +282505,282505 +257045,257045 +12319,12319 +86538,86538 +292233,292233 +358127,358127 +37997,37997 +358796,358796 +264369,264369 +171862,171862 +210397,463 +326162,326162 +13651,13651 +188455,188455 +1378,1378 +258783,258783 +21849,21849 +11011,11011 +178496,56641 +323118,323118 +18256,18256 +13436,13436 +376479,376479 +208134,208134 +114863,114863 +424507,424507 +326238,326238 +425238,425238 +379643,274075 +64843,463 +73091,73091 +55841,55841 +27618,27618 +27373,27373 +275978,275978 +12795,12795 +192731,192731 +3238,3238 +425216,425216 +111855,111855 +33962,33962 +64161,64161 +377224,339532 +17464,17464 +299253,299253 +417334,417334 +91737,91737 +302517,1563 +118515,118515 +1896,1896 +7065,7065 +5590,5590 +144017,144017 +100436,100436 +379391,379391 +351492,351492 +35492,35492 +9509,9509 +278688,278688 +10038,10038 +181804,142205 +97329,97329 +10802,10802 +118336,118336 +325628,325628 +186089,232078 +400276,400276 +7562,89807 +149459,149459 +159501,138729 +210400,463 +425064,27162 +333022,333022 +252694,252694 +35768,54372 +287839,287839 +146157,25213 +336206,336206 +194640,194640 +296425,296425 +6146,6146 +150424,150424 +373778,373778 +186961,186961 +400486,293348 +382537,382537 +337932,337932 +139137,139137 +11060,11060 +197073,197073 +327612,463 +26795,7033 +8533,8533 +215065,215065 +1053,1053 +351903,351903 +243220,243220 +411393,411393 +266084,266084 +326090,326090 +5335,5335 +89898,89898 +238305,238305 +275344,275344 +234616,20545 +146333,146333 +7182,7182 +290464,290464 +33521,1710 +129603,129603 +73589,73589 +390611,390611 +92777,92777 +17787,1770 +146245,146245 +394893,394893 +340646,340646 +219502,71272 +172550,172550 +366409,463 +154243,154243 +379096,379096 +8428,8428 +273437,26447 +323609,413246 +206446,206446 +378557,378557 +34118,34118 +26582,26582 +10996,6830 +299630,299630 +298193,298193 +170867,170867 +356880,356880 +6456,6456 +331691,331691 +248168,248168 +251146,251146 +269982,218824 +170381,170381 +291605,210292 +382582,174235 +170980,170980 +297588,297588 +406861,406861 +425799,68187 +256967,256967 +7567,7567 +359288,359288 +359858,359858 +237834,237834 +31764,31764 +36332,36332 +227018,227018 +298728,298728 +295458,295458 +829,9782 +59707,59707 +206903,206903 +316691,316691 +57409,57409 +5044,5044 +15407,15407 +268255,235760 +380610,380610 +4316,4316 +387502,387502 +133243,4914 +150323,19544 +171130,171130 +26920,463 +227318,227318 +102676,86156 +288019,288019 +7129,7129 +364406,364406 +1028,1028 +3838,3838 +6771,6771 +12676,2795 +234216,234216 +2716,2716 +118051,5590 +125609,125609 +152229,152229 +177369,177369 +163031,463 +370127,370127 +267317,177590 +174529,174529 +4780,4780 +296102,296102 +310385,310385 +18342,18342 +427375,367030 +23724,23724 +12920,12920 +423050,423050 +362865,362865 +8693,8693 +5933,5933 +421203,421203 +1235,1235 +1712,1712 +224635,224635 +418954,418954 +340042,43443 +301399,124590 +2567,2567 +19735,19735 +22244,22244 +61319,61319 +202581,202581 +176651,176651 +17939,17939 +121599,121599 +367827,13254 +324175,324175 +61477,61477 +24449,24449 +12963,12963 +89386,89386 +8706,3270 +163174,163174 +374322,374322 +319526,319526 +346442,346442 +132784,132784 +7106,7106 +4789,4789 +192322,20545 +3245,3245 +3249,3249 +279877,279877 +320199,320199 +403282,403280 +341401,341401 +56195,56195 +6938,6938 +191619,7203 +143195,143195 +358195,252153 +365106,1950 +286616,286616 +209254,137141 +6024,6024 +420686,420686 +3499,3499 +116402,116402 +386219,386219 +250284,250284 +378616,378616 +178517,178517 +218044,218044 +367799,367799 +367367,367367 +1364,1364 +649,649 +123689,123689 +17684,22509 +173770,173770 +320781,354669 +162435,162435 +221832,221832 +92912,92912 +383357,352963 +29107,29107 +3325,3325 +113066,463 +325676,325676 +256841,256841 +204138,3818 +346959,346959 +240415,240415 +330311,330311 +348326,348326 +290140,290140 +349675,349675 +38334,38334 +7047,7047 +397841,35052 +3402,3402 +181808,181808 +197638,197638 +88402,155700 +31975,31975 +42256,42256 +360567,360567 +3247,3247 +151952,1563 +111026,111026 +398044,398044 +5964,5964 +370399,370399 +790,88 +10308,10308 +158341,463 +365190,365190 +6939,6939 +37633,37633 +183474,183474 +225082,225082 +5198,5198 +3081,3081 +372577,372577 +11674,11674 +387152,387152 +368853,368853 +10573,10573 +267179,267179 +203002,203002 +130685,130685 +281190,281190 +257138,257138 +298460,298460 +344551,344551 +465,465 +118342,118342 +387564,387564 +204141,204141 +296710,311397 +308852,308852 +297894,297894 +5459,5459 +17429,17429 +376416,463 +256021,256021 +315576,315576 +170131,217012 +290024,290024 +121987,121987 +16439,16439 +107003,107003 +8394,8394 +296559,296559 +293803,293803 +408859,408859 +380424,380424 +35256,35256 +123,123 +420315,420315 +176523,176523 +180559,160950 +28619,28619 +97747,1111 +13715,463 +374368,374368 +107012,107012 +215110,215110 +13361,1836 +232348,232348 +303994,241590 +195244,85256 +265293,265293 +209566,209566 +176884,176884 +183839,183839 +209320,209320 +4300,4300 +1341,1341 +403639,403639 +327498,327498 +323538,323538 +184440,184440 +7367,7367 +19416,19416 +5733,5733 +293648,289467 +174596,174596 +1000,1053 +146094,146094 +317637,123123 +400943,400943 +7536,7536 +402871,402871 +189218,189218 +19671,19671 +196031,196031 +68230,107703 +405758,405758 +25313,25313 +183677,183677 +242269,242269 +250051,250051 +230792,230792 +284326,284326 +1003,1003 +264591,264591 +63433,63433 +26869,26869 +306921,197097 +243312,243312 +165946,165946 +321228,321228 +158487,158487 +342486,342486 +33801,33801 +136954,136954 +244083,3119 +408288,408288 +342091,342090 +253048,253048 +192059,192059 +348878,348878 +268427,268427 +197614,25669 +218761,218761 +129969,129969 +35046,35046 +260833,260833 +2779,2228 +26129,39786 +169768,169768 +206594,206594 +2826,2826 +73536,73536 +391742,463 +26794,26794 +29959,29959 +419293,415036 +416836,416836 +5396,3084 +11399,11399 +157452,157452 +365980,365980 +170337,170337 +272697,272697 +191999,154892 +399094,399094 +404842,404842 +255335,255335 +9048,9048 +157416,157416 +332317,332317 +284948,284948 +309,394 +330786,330786 +293605,293605 +341798,341798 +272175,272175 +34328,34328 +21706,21706 +9063,9063 +108679,108679 +35684,186961 +187673,187673 +60682,23686 +349491,349491 +405936,405936 +30461,30461 +392154,392154 +5437,5437 +231207,231207 +11855,3694 +422177,422177 +95022,42101 +33140,33140 +431718,281259 +213866,213866 +159911,159911 +176634,176634 +109612,109612 +234554,13293 +35207,35207 +352254,352254 +1045,1045 +13994,27665 +310480,310480 +23521,23521 +7368,7368 +415707,294047 +264854,264854 +155577,8098 +367260,37919 +34744,34744 +332325,332325 +286892,286892 +26987,26987 +143703,143703 +164091,164091 +323887,323887 +216330,216330 +182403,182403 +8787,69843 +247954,247954 +420855,420855 +397352,397352 +116736,116736 +368341,368341 +227265,227265 +10221,10221 +230488,230488 +12189,12189 +283609,283609 +170439,170439 +247923,247923 +99791,99791 +32949,189427 +337209,337209 +285223,285223 +251987,251987 +421697,421697 +158416,158416 +252322,237551 +314043,314043 +382304,382304 +61902,61902 +263212,39332 +17644,6885 +37097,37097 +324388,324388 +186722,186722 +4012,4012 +150623,150623 +213926,9296 +3815,3815 +225083,276922 +192016,192016 +313945,313945 +393230,393230 +308676,308676 +92876,92876 +309099,26884 +348944,348944 +358078,334590 +26604,26604 +428577,428577 +423706,423706 +139456,139456 +261329,261329 +214970,214970 +207557,207557 +2284,3270 +28121,28121 +20678,20678 +17953,17953 +239969,239969 +402863,257501 +354378,228409 +2341,2341 +21479,21479 +182869,182869 +222584,222584 +46925,46925 +238210,238210 +392008,392008 +424196,424196 +17102,2802 +153486,153486 +386756,386756 +13410,10916 +69582,69582 +283259,283259 +323321,323321 +295646,295646 +282826,282826 +107027,107027 +16927,55781 +219208,219208 +217719,217719 +387275,424203 +340577,340577 +138127,20806 +284684,284684 +253742,253742 +130286,130286 +194231,194231 +70912,70912 +39530,216403 +246409,246409 +80474,80474 +249166,249166 +250834,67877 +2092,2092 +298413,298413 +369277,369277 +193136,193136 +414944,414944 +99062,99062 +382909,382909 +305825,305825 +152629,152629 +2621,2621 +10266,11388 +42882,42882 +376573,376573 +138470,138470 +340737,340737 +203673,203673 +197,2339 +101668,101668 +388643,388643 +290619,290619 +414030,414030 +321858,321858 +379846,379846 +389490,389490 +386745,386745 +41428,41428 +331819,331819 +375447,170447 +108862,130603 +385315,385315 +350960,350960 +353548,353548 +27236,27236 +282525,282525 +340889,340889 +369435,21133 +396753,396753 +388552,388552 +136819,53723 +17410,17410 +224680,224680 +236072,236072 +423533,423533 +102150,102150 +270626,270626 +351602,351602 +396336,257501 +337119,337119 +68504,68504 +8807,8807 +299235,299235 +263214,463 +162578,162578 +2354,2354 +276999,276999 +110730,110730 +37103,37103 +4503,4503 +210403,210403 +102597,102597 +183459,183459 +425056,425056 +131993,131993 +391214,391214 +236199,236199 +1140,1140 +18105,18105 +145206,145206 +296354,296354 +401706,401706 +377870,377870 +342940,342940 +402353,402353 +376661,376661 +256502,256502 +271727,271727 +277892,277892 +414996,306300 +291833,277458 +2668,2668 +152767,152767 +197641,197641 +172932,172932 +260980,330478 +226596,226596 +231368,231368 +375975,375975 +182225,206437 +355636,355636 +244525,14996 +218943,218943 +9152,9152 +235068,235068 +316042,316042 +417073,417073 +32429,32429 +165640,165640 +303120,303120 +424957,335467 +5862,5862 +374745,374745 +346949,346949 +287088,287088 +231559,231559 +180850,180850 +290769,290769 +20050,20050 +330539,330539 +158604,158604 +422331,422331 +386834,386834 +18084,18084 +218262,218262 +395771,395771 +226873,33259 +27687,27687 +198044,198044 +276782,252579 +243612,243612 +84916,84916 +376217,67877 +426444,426444 +121663,121663 +233332,233332 +132016,132016 +40440,40440 +356883,356883 +225136,13293 +133421,133421 +3979,3979 +157838,164812 +58764,242191 +346082,346082 +363542,363542 +150800,150800 +366011,269595 +169918,169918 +14012,14012 +234166,234166 +351007,351007 +184487,184487 +369918,369918 +142963,142963 +2599,2599 +232446,319402 +146204,146204 +370853,370853 +152824,152824 +143403,29805 +75877,22392 +213500,213500 +300094,300094 +349739,349739 +19186,19186 +1401,1401 +7095,7095 +183508,183508 +3674,3674 +382307,382307 +57865,57865 +170583,170583 +231872,231872 +31716,31716 +186510,186510 +9988,279776 +364485,364485 +302725,20545 +189678,189678 +332032,195421 +312456,333405 +394890,394890 +350729,176247 +98960,98960 +415002,415002 +430379,430379 +277803,277803 +260129,260129 +179020,179020 +386403,386403 +403256,403256 +301442,301442 +228742,228742 +247324,247324 +281979,281979 +393891,393891 +341139,257305 +247951,247951 +294320,294320 +400855,400855 +28817,172885 +288346,288346 +143840,143840 +20953,20953 +18701,18701 +138682,12622 +274527,274527 +625,287 +187000,187000 +407254,407254 +299915,299915 +154353,74136 +266268,266268 +38866,38866 +6944,8754 +175468,175468 +414852,414852 +425433,425433 +290745,290745 +17735,17735 +388659,388659 +339135,339135 +272531,272531 +421710,421710 +25298,25298 +317720,308566 +376496,376496 +322705,322705 +281144,281144 +268762,268762 +360214,360214 +109001,42101 +179973,179973 +192235,192235 +348458,348458 +120264,120264 +184351,184351 +302889,302889 +326943,310578 +7254,7382 +32414,26233 +11357,11357 +63014,63014 +373060,373060 +151640,151640 +236480,236480 +400400,400400 +188782,188782 +300011,300011 +132322,132322 +313306,313306 +278004,278004 +339930,339930 +314961,314961 +308238,308238 +142638,142638 +420863,420863 +313924,232405 +244506,244506 +137827,14441 +260046,260046 +244725,244725 +22166,22166 +156406,156406 +12455,12455 +369434,369434 +333904,257706 +29286,29286 +130017,130017 +9849,9849 +9759,9759 +1632,1632 +19297,5276 +406231,406231 +267376,267376 +331273,331273 +375695,375695 +8103,8103 +310800,310800 +146290,146290 +166710,166710 +12267,12267 +265219,265219 +72329,72329 +376302,376302 +70875,170951 +3528,507 +367667,367667 +5723,5723 +408758,408758 +17476,12055 +365597,365597 +12577,12577 +12018,12018 +11510,3694 +205496,205496 +413784,413784 +383775,383775 +33812,33812 +307543,307543 +294723,294723 +557,557 +5223,5223 +427354,318243 +33208,33208 +333955,333955 +178984,178984 +4437,4437 +321241,297673 +394739,66056 +112557,112557 +323873,323873 +231331,231331 +8902,8902 +229172,229172 +321033,321033 +266666,266666 +212695,212695 +4892,4892 +232358,232358 +356997,356997 +58098,58098 +9907,9907 +8518,4017 +244000,244000 +260648,260648 +208419,208419 +275642,275642 +8494,8494 +14523,14523 +2606,2606 +217430,217430 +390607,390607 +269145,269145 +283354,283354 +126213,126213 +288969,288969 +19732,19732 +367296,232520 +10906,10906 +3276,3276 +3158,3158 +140860,140860 +264633,173452 +211457,211457 +9010,9010 +9853,9853 +284690,284690 +351671,351671 +2645,2645 +366585,366585 +362106,362106 +367829,367829 +29106,29106 +240463,240463 +249020,249020 +386744,386744 +4990,4990 +403376,403376 +348588,293348 +428590,428590 +260334,260334 +259369,5206 +38827,8544 +4266,4266 +351393,351393 +6125,6125 +164764,164764 +172509,172509 +245714,245714 +281121,281121 +136415,136415 +344529,344529 +4650,4650 +278142,278142 +387911,387911 +6891,6891 +287104,287104 +235985,235985 +215029,215029 +354533,354533 +408658,408658 +287672,287672 +3065,3065 +124598,124598 +31669,31669 +1650,1650 +14842,12055 +144413,144413 +316525,316525 +8960,8960 +1210,1210 +223788,223788 +167177,121429 +370129,370129 +430350,430350 +402220,402220 +319478,319478 +166521,166521 +187002,27665 +916,916 +56208,56208 +1719,1719 +357173,357173 +349173,349173 +8911,8911 +256397,256397 +256500,256500 +277400,277400 +143254,143254 +210399,463 +17267,17267 +420443,420443 +254385,254385 +39029,39029 +266652,223096 +108690,108690 +42336,42336 +17765,17765 +283482,283482 +323616,323616 +347303,347303 +164855,164855 +4878,4878 +149520,149520 +259112,259112 +279789,279789 +22407,22407 +339052,339052 +425941,425941 +381418,381418 +270063,270063 +359810,359810 +12672,12672 +313540,313543 +288606,288606 +383533,383533 +479,479 +310865,310865 +10893,10893 +2001,2001 +251697,251697 +19399,19399 +218235,218235 +316627,316627 +42685,42685 +396334,396334 +233284,233284 +123915,123915 +8731,8731 +154904,154904 +280202,280202 +265477,281121 +316270,316270 +6897,6897 +11937,11937 +399912,399912 +243080,243080 +19304,6885 +183968,127493 +183649,183649 +65554,65554 +512,1924 +66611,66611 +39245,39245 +85076,85076 +400529,400529 +262234,262234 +346911,346911 +229297,229297 +381700,381700 +379588,379588 +308528,398890 +234886,234886 +10530,10530 +336345,265569 +2011,2011 +695,695 +298609,298609 +28702,28702 +255080,255080 +4623,4623 +375676,375676 +143370,313889 +24024,24024 +408590,408590 +194385,194385 +401710,401710 +20510,20510 +260562,260562 +390157,188547 +210161,210161 +252320,237551 +186514,186514 +186421,186421 +173121,173121 +260837,93260 +288179,288179 +8405,8405 +100275,100275 +367846,367846 +6615,6615 +192909,192909 +292936,292936 +2763,2763 +213578,213578 +20111,20111 +147124,147124 +255310,255335 +164073,164073 +3716,3716 +200871,200871 +168485,168485 +422180,422180 +40637,40637 +365473,365473 +5859,5859 +5194,5194 +295758,295758 +7230,7230 +231817,231817 +9564,9564 +262804,262804 +290561,290561 +367619,367619 +255620,255620 +4010,4010 +139471,139471 +130014,130014 +270501,270501 +4983,4983 +104239,104239 +374369,374369 +62623,62623 +325507,346621 +192226,192226 +386547,386547 +157894,157894 +140469,140469 +366357,366357 +223436,223436 +385757,385757 +34311,34311 +247076,247076 +242649,105134 +39134,39134 +422692,422692 +36737,36737 +94123,94123 +182799,182799 +247949,155412 +6042,6042 +160614,160614 +119371,119371 +132604,132604 +3772,647 +396695,396695 +47414,47414 +35556,10206 +35040,35040 +385543,385543 +209657,209657 +291440,20545 +386831,386831 +344441,344441 +37477,37477 +355800,355800 +272683,272683 +11469,69843 +175735,175735 +188784,188784 +43693,43693 +305911,305911 +243191,243191 +209812,1339 +70116,70116 +344567,344567 +415524,174973 +400045,400045 +424198,424198 +282027,282027 +385240,385240 +175959,175959 +26446,26446 +23212,23212 +9863,5223 +11149,11149 +410575,410575 +10998,10998 +388361,388361 +31601,157002 +266744,266744 +342802,342802 +235482,235482 +386422,386422 +294352,294352 +116978,116978 +84230,84230 +28253,28253 +212388,212388 +279322,23604 +286310,2453 +13996,13996 +170297,170297 +9111,9111 +273007,20545 +172159,172159 +3108,3108 +349071,349071 +298545,298545 +259009,259009 +375751,375751 +232360,232360 +98780,98780 +396384,311322 +20029,20029 +286666,286666 +5321,5321 +19351,19351 +20851,20851 +351332,351332 +20537,20537 +9565,9565 +250707,38836 +296136,296136 +21188,21188 +688,688 +370398,370398 +159455,159455 +235830,235830 +244403,244403 +386826,386826 +13885,240905 +17379,17379 +92776,92776 +2159,2159 +197636,197636 +304937,304937 +26124,26124 +69632,69632 +347011,347011 +4873,4873 +339754,339754 +344176,152 +17157,17157 +10611,16186 +418460,418460 +331905,331905 +40102,40102 +38299,38299 +173669,173669 +406232,406232 +24314,24314 +296948,204836 +340816,340816 +18683,18683 +55686,55686 +352602,352602 +417154,417154 +380005,380005 +288681,288681 +12662,12662 +25104,25104 +33850,33850 +39382,39382 +180849,230745 +63710,63710 +377576,377576 +364901,364901 +253271,169926 +413198,413198 +24087,24087 +247320,247320 +187550,187550 +255286,255286 +299420,299420 +42499,42499 +183899,3992 +355042,355042 +353758,353758 +367185,367185 +106631,106631 +358666,358666 +198655,144665 +227468,227468 +15163,15163 +13960,13960 +33545,33545 +248443,248443 +181083,181083 +120870,120870 +319959,319959 +286831,286831 +286931,286931 +258115,688 +11127,11127 +254498,1463 +14698,14698 +222705,222705 +26363,26363 +163119,163119 +302578,302578 +23570,23570 +256152,256152 +224596,224596 +235992,235992 +420033,420033 +29415,29415 +309629,309629 +192713,192713 +364653,364653 +267989,267989 +9909,9909 +420894,232405 +292873,292873 +319299,319299 +291610,291610 +22155,22155 +22266,22266 +334565,334565 +99044,99044 +42470,42470 +253385,253385 +104858,104858 +47158,47158 +286789,286789 +168383,168383 +16272,16272 +431197,431197 +40580,40580 +446,446 +3370,3370 +69347,69347 +40679,5504 +398763,398763 +338023,338023 +368749,222291 +30111,18701 +287168,287168 +243075,243075 +209594,209594 +38784,11168 +1580,1580 +312759,312759 +261112,261112 +153478,153478 +15159,15159 +17081,17081 +222913,222913 +1877,1877 +342258,342258 +2369,2369 +9790,9790 +217095,217095 +144874,144874 +403061,294612 +240844,240844 +384119,384119 +326007,326007 +161971,161971 +120801,120801 +210645,210645 +40352,40352 +32682,32682 +158495,158495 +307250,307250 +212437,212437 +274511,274511 +12583,12583 +320136,320136 +70451,70451 +22999,621 +6810,6810 +5779,5779 +291221,291221 +231126,277410 +282581,282581 +268251,268251 +5628,436 +240869,240869 +359173,359173 +293962,293962 +258725,1536 +20940,20940 +362457,362457 +370997,370997 +296358,296358 +141251,141251 +332155,332155 +69233,69233 +6124,6124 +249047,249047 +10264,10264 +227599,227599 +130674,130674 +97751,97751 +251535,251535 +167666,167666 +41448,41448 +1753,1753 +331317,331317 +955,955 +311190,311190 +150582,150582 +7984,7984 +381527,381527 +1460,1460 +2207,2207 +321837,321837 +292218,292218 +5994,5994 +21061,21061 +401101,401101 +283746,283746 +424976,424976 +272853,272853 +393974,393974 +76481,76481 +35047,35047 +406037,406037 +129315,129315 +7464,7464 +30370,30370 +30596,30596 +96870,71569 +19246,19246 +243694,243694 +212042,212042 +417886,417886 +297423,297423 +424437,424437 +2917,2917 +217344,217344 +32885,32885 +356903,224483 +372373,372373 +386,386 +415081,415081 +276280,276280 +284209,284209 +137606,137606 +4971,4971 +22644,22644 +304680,304680 +34597,34597 +326053,326053 +344696,344696 +264672,264672 +41382,41382 +153724,153724 +209649,209649 +261603,237079 +251137,251137 +321680,321680 +263980,263980 +8749,16185 +326440,267246 +204323,15510 +312794,92876 +267296,267296 +353869,353869 +286706,286706 +28516,28516 +264080,264080 +175086,175086 +17517,1950 +19877,19877 +167764,167764 +165737,165737 +11601,11601 +143844,143844 +396824,396824 +265030,13 +36944,2379 +355632,79067 +21488,463 +154778,154778 +15997,15997 +422436,295192 +262580,262580 +285623,285623 +336402,336402 +273539,273539 +324427,324427 +395306,395306 +235616,235616 +170423,170423 +295295,295295 +210817,210817 +11525,11525 +388723,415092 +4677,4677 +1012,1012 +113700,113700 +289474,267246 +382169,67877 +33901,13182 +29578,29578 +204407,204407 +8102,8102 +16110,16110 +255696,255696 +40179,40179 +370694,370694 +38924,38924 +340122,340122 +374071,374071 +409161,409161 +209624,209624 +457,457 +369557,369557 +382064,382064 +23643,23643 +301364,12355 +346321,346321 +7241,7241 +307365,307365 +376737,376737 +82397,82397 +20514,20514 +263053,195180 +284501,284501 +94140,94140 +347997,347997 +291,291 +370555,370555 +352578,352578 +252580,371794 +173752,173752 +20587,56641 +198474,463 +27852,27852 +38679,38679 +415003,415003 +280148,280148 +122168,122168 +62979,62979 +413079,232980 +423403,423403 +396882,396882 +20119,20119 +414907,380677 +68201,68201 +285105,285105 +367853,367853 +82691,82691 +252455,252455 +228686,228686 +200988,200988 +3937,3937 +103328,103328 +419989,419989 +422255,422255 +6725,11821 +61470,61470 +24079,24079 +6022,6022 +244300,244300 +151410,151410 +156453,156453 +5724,5724 +270135,270135 +162974,162974 +31651,157528 +156597,156597 +73244,11054 +140097,13512 +141922,141922 +210816,210817 +389816,389816 +107464,107464 +135213,135213 +209255,236178 +339336,339336 +390612,2129 +23279,23279 +391661,391661 +162619,162619 +397614,472 +345595,345595 +334282,334282 +1029,1029 +148185,148185 +408366,408366 +145306,145306 +12535,12535 +393939,393939 +334543,334543 +334320,334320 +301917,301917 +18647,18647 +100278,100278 +164288,164288 +412075,412075 +364451,364451 +353426,463 +388663,388663 +5870,5870 +57310,57310 +191529,191529 +14077,14077 +11056,11056 +396337,396337 +24025,24025 +14522,274 +217015,36599 +333,333 +63495,63495 +144969,144969 +28920,28920 +349464,349464 +54986,54986 +5519,5519 +37,37 +121031,121031 +263097,263097 +219661,219661 +27291,27291 +352684,352684 +346228,346228 +357934,357934 +11512,11512 +28444,28444 +108079,108079 +6044,6044 +388459,388459 +137596,53723 +395369,834 +21879,21879 +1866,1866 +200888,200888 +317093,317093 +402810,402810 +419117,419117 +147465,147465 +202994,202994 +174485,174485 +418845,146207 +388606,195137 +16875,23055 +241532,241532 +1227,1227 +51624,51624 +33803,33803 +162295,162295 +331011,331011 +244911,244911 +247723,247723 +113772,113772 +266845,266845 +192268,192268 +63551,63551 +19733,19733 +200257,200257 +428967,428967 +312262,312262 +182090,10934 +31302,31302 +310386,310386 +174474,174474 +340488,340488 +300996,300996 +323377,323377 +143712,143712 +1777,1777 +140467,140467 +174128,174128 +349740,349740 +389158,389158 +204102,204102 +47408,47408 +14468,14468 +378109,378109 +54620,3553 +3812,3812 +186442,186442 +41878,41878 +193337,553 +253899,253899 +7815,7815 +153107,153107 +176766,176766 +378701,378701 +269165,269165 +412952,412952 +267418,267418 +290551,290551 +239519,239519 +126255,283935 +211485,211485 +291381,20545 +129086,129086 +419416,419416 +309040,309040 +245059,245059 +9973,11054 +421283,421283 +389112,230650 +418763,418763 +294519,294519 +127947,127947 +223123,130997 +130670,130670 +31573,31573 +14715,14715 +190686,190686 +60707,463 +15830,15830 +209033,209033 +237569,237569 +183453,183453 +411937,411937 +222935,222935 +236946,236946 +313538,313543 +20630,20630 +380095,380095 +288654,288654 +217210,217210 +1307,1307 +50560,50560 +309710,309710 +266843,210113 +278914,18985 +130671,130671 +45757,45757 +410162,410162 +255695,255695 +165471,165471 +355984,355984 +73243,11054 +344843,344843 +8756,8756 +10836,10836 +159384,159384 +195447,195447 +253819,253819 +10304,10304 +134884,134884 +15731,463 +298165,298165 +408235,408235 +205348,20000 +284323,284323 +401409,401409 +41354,41354 +310833,310833 +213422,5541 +429402,429402 +378506,378506 +19634,19634 +142981,142981 +25246,25246 +266104,266104 +351537,351537 +7847,7847 +181928,181928 +105602,105602 +38763,38763 +360455,360455 +284585,284585 +246757,246757 +231303,231303 +38390,38390 +103236,103236 +212668,212668 +6566,6566 +11220,11220 +365211,365211 +275857,279135 +9843,9843 +362010,362010 +286200,286200 +226,867 +2040,2040 +362953,362953 +321595,321595 +393282,393282 +219564,219564 +295617,295617 +284388,21133 +236485,2629 +208707,208707 +202585,7203 +107604,9354 +243568,243568 +18966,18966 +176400,176400 +332703,332703 +106910,106910 +286236,286236 +415984,415984 +260588,260588 +260189,260189 +402003,402003 +513,513 +26947,26947 +291752,28143 +85201,85201 +30531,184866 +177002,177002 +12629,12629 +182400,182400 +351097,351097 +334620,334620 +269798,269798 +397215,397215 +1985,1985 +35863,463 +261451,261451 +328892,328892 +3993,3993 +175418,175418 +47475,47475 +21666,21666 +25944,25944 +196342,196342 +6040,6040 +188753,188753 +337439,402267 +413958,413958 +391827,391827 +429454,429454 +182793,182793 +403257,403257 +276974,276974 +119193,119193 +163867,1782 +28238,28238 +413480,257501 +352225,352225 +231611,231611 +7526,7526 +279996,279996 +350174,350174 +389113,389113 +351714,351714 +401877,401877 +412856,412856 +38287,38287 +162680,162680 +10014,10014 +6728,6728 +382386,382386 +254029,254029 +414318,414318 +143070,143070 +374456,374456 +202574,7203 +198060,198060 +144486,144486 +291273,291273 +236159,236159 +382572,382572 +323104,193483 +144383,144383 +370226,370226 +364407,364407 +35961,35961 +7796,7796 +5877,5877 +175822,175822 +160545,160545 +375706,322785 +156946,156946 +165095,165095 +2160,2160 +318622,318622 +300007,300007 +190246,190246 +211492,179217 +124992,124992 +229678,229678 +386447,386447 +34104,34104 +297275,297275 +422860,357991 +175893,175893 +56479,56479 +387742,387742 +149332,149332 +145027,145027 +426523,426523 +20732,20732 +201520,201520 +363009,54625 +871,871 +288182,288182 +202329,202329 +11124,11124 +113252,113252 +125436,125436 +292655,292655 +8089,8089 +15557,15557 +113650,113650 +76442,76442 +6896,8436 +272041,272041 +184656,184656 +187769,180198 +5382,5382 +35508,35508 +168900,168900 +2149,2149 +36963,36963 +238908,238908 +6507,6507 +61600,61600 +330593,330593 +153319,153319 +10084,10084 +410248,410248 +307379,307379 +211475,211475 +263318,263318 +428082,428082 +3657,3657 +13767,13767 +24013,24013 +424753,424753 +248157,248157 +15430,15430 +421556,421556 +176887,176887 +145897,145897 +296736,296736 +370228,370228 +378709,378709 +209393,209393 +415112,186751 +324461,324461 +210015,210015 +285242,285242 +237630,206175 +238932,238932 +172557,463 +334353,3097 +191312,220248 +8025,8025 +66547,5481 +10776,10776 +425602,425602 +184490,184490 +203215,203215 +145304,145304 +310781,253048 +277777,277777 +409878,409878 +36698,36698 +30504,30504 +12241,12241 +162941,162941 +307005,307005 +230543,230543 +140859,140859 +289105,289105 +338739,150364 +303540,303540 +12569,12569 +112745,112745 +210396,463 +160353,160353 +175920,175920 +129952,10206 +337077,337077 +246346,246346 +40838,40838 +307685,307685 +5927,5927 +343700,343700 +255227,255227 +378256,378256 +316070,316070 +361117,361117 +315272,148575 +341425,341425 +127646,127646 +217234,3119 +313541,313543 +281919,281919 +115128,115128 +262533,262533 +120781,120781 +40911,40911 +33663,33663 +242900,242900 +195271,195271 +13299,13299 +344942,344942 +5778,5778 +272655,272655 +72450,72450 +173059,173059 +1637,1572 +125547,125547 +256250,256250 +346109,346109 +365084,118174 +404938,404938 +325415,325415 +86882,86882 +271554,271554 +311332,311332 +377681,377681 +193854,193854 +254504,1463 +17918,17918 +1820,1820 +5226,5226 +277692,277692 +367178,367178 +342764,342764 +13193,13193 +407445,407445 +142996,10472 +657,657 +19554,19554 +198086,198086 +34092,34092 +422668,146312 +127497,127497 +359108,359108 +243437,243437 +17313,17313 +270737,270737 +145649,145649 +251664,251664 +356908,224483 +25477,4848 +378630,378630 +166648,166648 +12123,12123 +382405,382405 +350342,350342 +151191,151191 +370233,236305 +327249,60815 +302582,302582 +12202,299857 +138799,138799 +6995,6995 +160397,160397 +357553,357553 +299309,6830 +104558,104558 +429411,429411 +262002,262002 +72373,15290 +26765,26765 +7141,7141 +296759,289467 +254502,1463 +348716,348716 +14550,14550 +26560,26560 +30021,4230 +292354,292354 +254231,254231 +164778,202494 +360216,360216 +11947,11947 +271297,271297 +415207,415207 +339696,339696 +375903,375903 +191364,191364 +139374,139374 +131346,131346 +179352,179352 +93150,93150 +413009,413009 +200527,200527 +237995,237995 +179813,179813 +323002,43443 +21457,21457 +181669,181669 +25245,25245 +277064,277064 +362799,362799 +408368,408368 +94342,18985 +303306,303306 +42188,10206 +170044,170044 +362797,362797 +221059,221059 +357984,357984 +189685,130907 +368896,368896 +321118,321118 +256489,256489 +29020,231801 +362023,362023 +342949,342949 +8067,8067 +421362,421362 +179864,179864 +268254,262547 +288964,288964 +22145,22145 +15066,15066 +112844,112844 +18122,18122 +1778,1777 +18843,18843 +187607,187607 +31604,31604 +243698,243698 +9062,9062 +315045,315045 +196232,196232 +20708,20708 +302255,302255 +364478,364478 +374589,374589 +43555,43555 +16018,16018 +160500,93 +42275,3694 +300532,300532 +159070,159070 +202906,342258 +11925,11925 +161429,463 +378922,378922 +38865,38865 +40804,40804 +313724,313724 +391318,391318 +265276,265276 +368605,222291 +405877,368609 +135598,135598 +5197,5200 +368720,222291 +321242,297673 +239165,239165 +32409,32409 +8744,21411 +12810,12810 +353738,353738 +305837,11168 +168530,168530 +265099,265099 +132188,132188 +65845,65845 +7506,7506 +166915,166915 +235935,235935 +4213,4213 +130015,130015 +430765,430765 +36790,22111 +277456,277456 +260329,260329 +11125,11125 +91442,91442 +169492,169492 +367004,367004 +70311,70311 +36751,3439 +169652,169652 +311676,311676 +297006,241590 +97759,97759 +5096,5096 +27041,27041 +3358,3358 +362840,362840 +60386,60386 +392708,355850 +246822,15110 +367198,367198 +204496,204496 +178157,178157 +275998,275998 +375287,375287 +2319,2319 +1933,342071 +318080,318080 +25772,25772 +6365,6365 +84991,84991 +413487,413487 +411571,411571 +404982,102104 +355877,355877 +84153,84153 +32245,32245 +177868,177868 +137780,137780 +364903,364903 +9204,9204 +180147,463 +276623,276623 +356587,228855 +284330,284330 +66537,66537 +157586,157586 +8979,8979 +404204,404204 +359487,359487 +358081,358081 +64877,64877 +339165,339165 +89972,89972 +164202,164202 +519,519 +283700,283700 +137431,137431 +428618,428618 +30438,30438 +386081,284261 +9189,22509 +328268,328268 +7522,7522 +316056,316056 +131140,131140 +275650,275650 +18247,17 +308381,308381 +400274,400274 +241732,8707 +101685,101685 +178053,178053 +318562,35497 +128433,334012 +380524,380524 +24964,24964 +311542,311542 +260266,260266 +78468,144665 +192711,192711 +39781,39781 +234920,234920 +59309,41302 +334314,334314 +26688,26688 +161148,299074 +10326,10326 +415714,92828 +401002,401002 +127093,127093 +241859,241859 +260387,260387 +129173,19009 +9755,9755 +235455,235455 +116735,5382 +419045,419045 +48867,48867 +245134,245134 +239051,239051 +20881,20881 +28596,28596 +367376,367376 +394694,394694 +253165,253165 +4879,4879 +329104,329104 +306464,306464 +16741,16741 +270146,235344 +334945,131060 +359966,359966 +69687,69687 +5120,5120 +268308,54625 +6054,6054 +111051,111051 +271017,271017 +324855,324855 +192467,150485 +361218,361218 +321320,429454 +261221,43443 +420229,420229 +1878,25628 +323552,323552 +159865,159865 +69814,69814 +306677,834 +327485,327485 +129031,129031 +301683,301683 +96672,96672 +9345,9345 +31180,31180 +392370,392370 +23312,23312 +132461,132461 +108706,108706 +369749,369749 +193948,271268 +276641,276641 +375288,375288 +143520,143520 +17754,17754 +6988,6988 +6832,6832 +290437,290437 +36413,36413 +179,179 +178038,178038 +377565,377565 +132085,132085 +350468,350468 +68943,68943 +218988,218988 +211488,211488 +298362,298362 +268776,268776 +255235,143745 +191719,191719 +96074,96074 +72638,72638 +266320,266320 +331551,331551 +274605,3093 +362844,362844 +94628,94628 +372148,372148 +18791,337 +297703,297703 +194872,463 +265382,265382 +361048,361048 +431006,431006 +12458,12458 +650,650 +359667,325681 +174988,174988 +295703,295703 +316966,316966 +231409,231409 +28429,28429 +257187,257187 +299100,299100 +225979,151645 +374209,374209 +21012,19841 +26976,26976 +288349,288349 +235729,235729 +261711,261711 +265227,13293 +378370,378370 +319262,319262 +260219,260219 +253677,200729 +288520,288520 +250718,250718 +171663,171663 +17803,17803 +271823,271823 +212610,43443 +359755,359755 +411275,127024 +327482,327482 +150827,150827 +20643,20643 +151416,151416 +286269,286269 +415246,415246 +344689,344689 +22144,22144 +933,933 +94633,94633 +2384,2384 +375437,375437 +6766,6766 +144378,144378 +11846,3935 +257681,257681 +193328,267832 +343837,200282 +394894,341919 +162727,162727 +8216,8216 +360264,360264 +22614,22614 +368523,368523 +21370,8134 +10877,10877 +315071,315071 +260033,260033 +231122,231122 +258751,258751 +233673,233673 +143034,9866 +380889,380889 +261311,261311 +146747,130400 +137332,137332 +280694,280694 +150352,150352 +164930,143741 +382780,382780 +1793,1793 +203479,203479 +21437,21437 +19182,19182 +248041,248041 +2889,2889 +117908,117908 +405976,405976 +165565,165565 +237831,4780 +211213,211213 +370839,370839 +404417,404417 +3005,3005 +8132,8132 +169738,463 +18248,17 +9869,9869 +7795,16186 +282287,282287 +264410,264410 +104769,8098 +255608,255608 +3423,3423 +146262,123885 +2400,2400 +7683,7683 +72622,72622 +160348,160348 +154515,463 +293542,293542 +188561,463 +33664,33664 +12811,12811 +349944,349944 +218913,20545 +116739,116739 +98766,98766 +250661,66056 +255641,255641 +11126,11126 +4894,4894 +261491,261491 +14438,14438 +59655,59655 +266450,266450 +429301,429301 +422023,422023 +430757,430757 +422022,422022 +325690,325690 +40198,40198 +379977,379977 +256621,256621 +285617,285617 +375707,322785 +356904,224483 +395372,54625 +209836,209836 +423188,423188 +379178,891 +329543,329543 +329928,329928 +328926,102104 +253561,253561 +32333,32333 +198142,198142 +486,486 +210626,143323 +41869,41869 +146759,146759 +260563,260563 +265298,265298 +7366,7366 +13316,13316 +181194,203885 +501,501 +220597,220597 +42664,42664 +124281,124281 +173490,173490 +378278,102104 +231783,231783 +324635,324635 +334239,334239 +361640,361640 +210966,210966 +344614,275469 +339503,339503 +420201,420201 +35763,35763 +334266,238915 +412360,412360 +4273,4273 +371690,371690 +6460,6460 +42279,42279 +63497,63497 +4245,4245 +94916,94916 +378162,378162 +190104,190104 +1051,1051 +2131,2131 +271851,271851 +146247,146247 +264980,264980 +274950,274950 +20915,20915 +29736,29736 +22336,22336 +18870,18870 +241036,42206 +67767,67767 +79216,79216 +224999,224999 +25168,25168 +416060,416060 +319294,319294 +10605,10605 +386490,386490 +420950,407720 +314735,314735 +372052,372052 +258610,43443 +365652,365652 +38747,38747 +188198,463 +276622,215526 +31619,31619 +201305,201305 +257814,257814 +368768,368768 +242552,242552 +4537,4537 +34305,34305 +275273,43443 +415376,415376 +346937,346937 +274339,274339 +99880,99880 +282410,282410 +3725,3725 +341325,168609 +291957,291957 +413303,413303 +97990,271460 +329534,329534 +295605,295605 +242548,242548 +379800,379800 +378793,378793 +357661,301710 +264053,264053 +358375,358375 +376286,86445 +5704,5704 +10898,10898 +40185,40185 +139627,174893 +176642,220784 +365349,365349 +1110,1110 +148434,148434 +138730,138729 +422433,284189 +387055,387055 +374689,374689 +343507,343507 +342439,342439 +2415,19665 +285304,188465 +1079,1079 +375559,375559 +228722,228722 +247714,247714 +413028,413028 +403563,403563 +85472,85472 +27121,27121 +175020,175020 +378468,378468 +2864,2864 +1789,4266 +87876,87876 +101539,101539 +245539,231559 +99969,99969 +30565,30565 +270959,270959 +262974,262974 +25924,25924 +10471,10471 +6268,6268 +337393,337393 +411398,277903 +367372,367372 +64126,64126 +123114,123114 +379825,379825 +36933,36933 +321653,321653 +284178,314063 +127994,127994 +253568,253568 +2304,2304 +21036,21036 +325834,325834 +194810,194810 +279315,279315 +354078,354078 +22937,22937 +310370,310370 +118964,193818 +31401,31401 +173372,152952 +221766,221766 +264997,264997 +301628,178900 +394082,394082 +405620,405620 +4516,4516 +20839,20839 +12506,12506 +300008,300008 +16268,16268 +313551,313551 +159981,159981 +15676,2872 +3102,3102 +290689,290689 +344877,344877 +20001,20001 +414351,363 +147616,147616 +20036,20036 +17983,17983 +341136,341136 +306029,306029 +7386,7386 +212688,192016 +195489,195489 +166532,166532 +203266,203266 +80833,463 +155484,155484 +341546,341546 +342730,342730 +282346,282346 +2137,2137 +415808,415808 +180915,180915 +129021,129021 +215259,215259 +351363,351363 +338772,338772 +294851,294851 +325811,325811 +338189,338189 +313165,313165 +398974,323871 +396619,396619 +396795,396795 +20810,463 +269292,269292 +111094,111094 +376025,376025 +430047,430047 +424567,424567 +145586,145586 +366544,366544 +382700,382700 +310845,310845 +243113,243113 +336890,336890 +310947,127493 +9736,11054 +386341,323552 +13103,13103 +316055,268805 +362357,362357 +371558,371558 +357915,248385 +182788,182788 +262339,262339 +27323,27323 +221098,221098 +7783,7783 +163242,163242 +304239,265381 +16596,16596 +146458,146458 +406110,406110 +19361,19361 +106341,106341 +16344,16344 +337219,337219 +271037,271037 +118627,118627 +295951,295951 +1952,1952 +176647,176647 +7772,7772 +41587,41587 +245148,245148 +179615,179615 +124856,124856 +33870,33870 +308856,308856 +16499,16499 +143085,143085 +15945,15945 +209717,209717 +407034,407034 +365032,34887 +8548,8548 +1993,1993 +253803,253803 +255644,255644 +421041,378040 +20920,28396 +90375,90375 +129625,129625 +7140,7140 +133637,133637 +423560,423560 +340622,340622 +309709,188347 +153388,153388 +364794,364794 +163688,163688 +6759,6759 +223332,223332 +366114,366114 +10693,42101 +178595,178595 +358758,358758 +175867,175867 +318185,318185 +399706,399706 +140593,140593 +5902,5902 +188292,188292 +7097,7097 +157364,157364 +6478,6478 +8929,8929 +24042,24042 +287863,463 +227316,227316 +28522,28522 +277308,277308 +201028,201028 +279932,202513 +361909,361909 +257743,5772 +250975,250975 +173240,296044 +362150,362150 +6774,6774 +362025,16957 +210417,210417 +198881,198881 +60158,249658 +781,781 +347762,347762 +139842,139842 +204892,204892 +1277,1277 +397925,397925 +414117,414117 +7491,7491 +394327,394327 +21634,21634 +327313,234396 +141483,141483 +217378,217378 +391095,391095 +233659,233659 +370152,370152 +235541,235541 +86849,86849 +21062,21062 +404240,404240 +73238,73238 +183344,183344 +7624,7624 +408718,408718 +406523,406523 +354675,5223 +316626,316626 +19172,19172 +396252,16986 +133992,133992 +12733,12733 +85023,85023 +158818,158818 +369127,369127 +348461,348461 +170847,170847 +296639,296639 +349127,349127 +7622,9790 +302244,43443 +330621,559 +267052,267052 +5185,5185 +310383,310383 +353007,353007 +22202,22202 +140244,140244 +7712,4427 +208543,208543 +258384,258384 +259770,259770 +4160,4160 +103907,103907 +109786,109786 +124387,124387 +165889,165889 +175313,175313 +285112,285112 +338067,338067 +103728,103728 +27587,463 +104798,104798 +330533,330533 +286224,286224 +611,611 +322448,322448 +41712,41712 +262407,262407 +43802,43802 +288454,288454 +427509,427509 +194505,194505 +14474,14474 +103937,103937 +292643,292643 +200825,200825 +218905,218905 +25820,10272 +166215,166215 +9496,9496 +361088,360377 +259422,259422 +427382,427382 +91518,91518 +344704,344704 +360177,360177 +1680,1680 +92499,92499 +344273,344273 +257406,257406 +59602,1515 +402245,402245 +783,783 +404231,404231 +126708,126708 +286905,286905 +414116,414116 +252958,252958 +22427,22427 +24186,24186 +313956,313956 +153980,153980 +361509,223376 +426513,426513 +48159,539 +10154,10154 +323290,323290 +4740,4740 +7026,8033 +366071,366071 +418000,418000 +429939,429939 +41011,41011 +22094,22094 +113446,113446 +173253,173253 +355132,355132 +25665,25665 +159631,144665 +316560,316560 +400240,270847 +346446,346446 +144739,144739 +328251,328251 +238717,238717 +295460,295460 +229685,54625 +251826,251826 +30945,30945 +31887,31887 +141997,141997 +297999,297999 +8408,8408 +297372,279328 +431038,230802 +147852,147852 +327782,327782 +85377,85377 +23777,23777 +252428,252428 +220933,149896 +186476,186476 +281318,463 +420915,39089 +350718,350718 +14975,14975 +36431,36431 +10171,10171 +412908,412908 +40416,2471 +326240,326240 +428587,428587 +354916,354916 +23920,23920 +308484,308484 +340004,340004 +349730,349730 +324897,324897 +341427,341427 +283076,54625 +157995,157995 +16900,16900 +173961,173961 +28190,28190 +199577,199577 +19127,19127 +288648,288648 +261341,11 +138748,138748 +203958,203958 +150500,150500 +4675,4675 +84017,84017 +218637,218637 +270327,270327 +29879,29879 +355736,355736 +8434,8434 +146999,146999 +408121,408121 +375406,375406 +162660,162660 +160871,160871 +41148,41148 +394158,349805 +382774,382774 +224920,224920 +5515,5515 +338882,338882 +393633,393633 +247195,247195 +220721,220721 +209538,209538 +8981,8981 +180894,180894 +7995,7995 +264282,264282 +182228,182228 +197498,197498 +22299,22299 +29627,29627 +1120,1120 +6921,6921 +8279,8279 +1033,4017 +334606,85652 +402958,402958 +1076,1076 +235696,250539 +145274,145274 +2733,2733 +1486,1486 +126321,126321 +367704,367704 +208938,208938 +371415,371415 +64430,64430 +380452,380452 +21730,21730 +401020,401020 +234658,234658 +193947,193947 +148668,169652 +65136,65136 +381652,381652 +286573,286573 +319336,143741 +397226,397226 +72842,72842 +338086,338086 +40601,40601 +10818,10818 +8180,8180 +36412,36412 +286873,286873 +402194,402194 +11131,11131 +137841,137841 +310728,310728 +422831,422831 +359231,331819 +169320,169320 +37307,37307 +272325,272325 +402848,402848 +41748,41748 +421595,421595 +122867,122867 +74564,74564 +211322,211322 +220980,233015 +179600,179600 +316670,316670 +173930,173930 +216301,438 +242248,242248 +273755,273755 +73245,73245 +223892,223892 +34221,34221 +84453,84453 +9181,9181 +351936,351936 +288281,288281 +57910,57910 +164829,164829 +16471,16471 +223530,223530 +12743,12743 +282321,282321 +198778,198778 +66812,66812 +318657,34169 +214161,214161 +158713,158713 +488,488 +364571,364571 +382368,382368 +426692,426692 +256214,256214 +10265,10265 +197108,463 +392463,392463 +430643,358636 +7921,7921 +405924,405924 +325815,325815 +426601,426601 +5059,5059 +387166,387166 +34009,34009 +63790,63790 +159858,159858 +1346,1346 +274758,274758 +133969,133969 +11482,11482 +237501,237501 +71304,90 +21269,21269 +365691,365691 +424981,424981 +4295,4295 +162654,204496 +383597,383597 +236577,236577 +112462,112462 +35163,35163 +160773,160773 +4518,4518 +347566,347566 +42493,36708 +364904,364904 +348188,348188 +82343,82343 +159525,159525 +1268,443 +163576,163576 +20710,20710 +262329,262329 +333021,333021 +398680,398680 +429176,429176 +351718,351718 +285586,285586 +40609,40609 +163963,163963 +58003,58003 +415079,415079 +93555,93555 +371708,371708 +416333,416333 +1004,1004 +4979,4979 +362018,362018 +164670,164670 +8848,8848 +3920,371794 +12169,12169 +255342,255342 +395256,199478 +328252,328252 +386015,386015 +307967,307967 +17269,17269 +63397,63397 +346872,346872 +31667,31667 +3620,3620 +382065,382065 +279057,279057 +138141,138141 +415375,415375 +210395,463 +242374,242374 +400784,400784 +210425,210425 +32047,32047 +401787,401787 +357063,357063 +408839,408839 +530,530 +175328,175328 +326480,326480 +260749,260749 +288526,288526 +165909,165909 +8457,8457 +347765,347765 +15595,15595 +44342,44342 +319621,319621 +33782,33782 +326970,147194 +103294,103294 +16166,20839 +144862,144862 +255744,438 +376866,376866 +334979,334979 +268266,54625 +260724,260724 +36727,36727 +347548,347548 +166246,166246 +285703,285703 +260928,260928 +274277,274277 +92110,92110 +3159,3159 +422058,422058 +232224,232224 +86121,86121 +231019,231019 +214849,214849 +182960,182960 +91391,91391 +394151,394151 +167846,167846 +255072,255072 +415260,399826 +225991,225991 +411817,411817 +379216,379216 +359171,359171 +25448,25448 +104649,104649 +54729,54729 +63671,63671 +188827,188827 +73240,73240 +290734,290734 +323385,323385 +142043,142043 +245226,245226 +149885,149885 +8897,8897 +413397,413397 +130668,130668 +5193,5193 +3827,3827 +202516,202516 +276100,276100 +68606,68606 +174218,174218 +317716,317865 +27227,27227 +175363,175363 +374640,374640 +356752,272438 +314350,314350 +10595,10595 +198476,463 +4060,4060 +280378,102104 +263153,237569 +167850,368554 +410945,410945 +14679,14679 +381023,380975 +819,819 +192017,192017 +269175,269175 +9133,9133 +237171,237171 +176761,176761 +386532,386532 +362916,362916 +426710,426710 +424937,424937 +248423,21133 +369534,369534 +806,74678 +9211,9211 +39527,39527 +281523,281523 +428904,428904 +5167,5167 +8867,8867 +32253,32253 +413838,413838 +338070,337864 +369195,38159 +413818,352138 +228614,144665 +423020,423020 +69535,69535 +80942,80942 +1167,1167 +2821,271460 +11466,11466 +264047,264047 +264507,264507 +11085,11085 +17932,17932 +260979,260979 +300017,300017 +162575,162575 +380582,380582 +284849,256021 +399822,399822 +357653,357653 +425125,102104 +184879,184879 +42896,42896 +354610,354610 +424435,424435 +146006,86406 +208807,208807 +136029,136029 +339676,290561 +381235,381235 +49983,49983 +85948,108832 +346216,346216 +320002,320002 +372035,372035 +146989,146989 +3543,3543 +194593,194593 +270514,270514 +144803,10272 +202493,24947 +141337,141337 +20060,20060 +38301,27665 +45351,45351 +14545,14545 +5380,5380 +4455,4455 +424940,424940 +1299,1299 +351356,351356 +107868,107868 +7060,7060 +275711,275711 +3305,3305 +109601,507 +4123,4123 +94456,94456 +177356,177356 +100015,100015 +177955,177955 +208800,208800 +39745,39745 +185995,185995 +374996,374996 +339294,150014 +41047,41047 +407548,407548 +404649,404649 +21987,21987 +10403,10403 +404264,404264 +348532,291431 +1528,3270 +154495,154495 +289351,289351 +232874,232874 +11187,31302 +130565,130565 +27762,27762 +206212,206212 +103016,103016 +407006,407006 +254646,254646 +5743,5743 +125703,125703 +39375,39710 +18788,18788 +282455,282455 +8965,8965 +287456,85256 +326609,119899 +373776,55781 +13017,13017 +255,12947 +424425,424425 +31935,31935 +283942,283942 +5350,5350 +3527,3527 +8395,8395 +152961,463 +38925,38925 +325336,238305 +93679,93679 +38466,38466 +209053,209053 +402719,402719 +299251,299251 +17682,22509 +426043,426043 +210044,210044 +294707,294707 +371935,371935 +396339,396339 +8159,8159 +95745,95745 +344286,344286 +8382,8382 +352223,352223 +371579,371579 +196056,196056 +397096,397096 +326751,326751 +231315,231315 +6842,6842 +37998,37998 +171665,438 +128419,128419 +136337,136337 +3059,3059 +4957,4957 +148428,148428 +391354,391354 +216481,216481 +316072,316072 +265427,265427 +407595,407595 +168728,168728 +1609,1609 +259638,259638 +22464,22464 +188204,188204 +124404,124404 +240167,240167 +207900,207900 +364268,364268 +422628,422628 +51590,51590 +14367,14367 +285213,10946 +403331,403331 +267998,267998 +237553,237553 +59668,59668 +218043,169102 +105173,105173 +297612,216403 +139177,139177 +376570,376570 +263666,87 +342410,342410 +191906,191906 +89443,89443 +307382,307382 +146645,146645 +148581,148581 +11456,11456 +284179,314063 +23033,23033 +241733,241733 +8426,8426 +375563,310578 +387917,387917 +189902,189902 +328718,328718 +232097,232097 +10013,10013 +363343,363343 +313859,149241 +149324,149324 +428579,165950 +419277,419277 +70398,225909 +72368,72368 +254594,254594 +69721,69721 +67626,67626 +321250,321250 +121043,121043 +410716,410716 +27046,27046 +286848,286848 +17183,463 +20499,20499 +195214,195214 +419260,31624 +365714,365714 +364479,364479 +156287,156287 +327725,327725 +222931,222931 +273466,273466 +8043,8043 +52040,52040 +17958,17958 +299574,299574 +65243,65243 +287605,287605 +302207,302207 +105305,105305 +231538,231538 +86025,86025 +158163,158163 +385960,385960 +298508,298508 +403651,403651 +38205,38205 +253913,253913 +63015,63014 +2709,2709 +116844,116844 +239523,239523 +217268,217268 +20828,20828 +151801,151801 +394750,394750 +31557,31557 +68072,68072 +316972,316972 +286110,286110 +30914,30914 +365842,365842 +173408,173408 +401213,401213 +289370,289370 +9121,9121 +19630,19630 +276477,276477 +317728,317728 +240106,240106 +19551,19551 +369037,369037 +355635,355635 +405009,405009 +134618,134618 +310692,75476 +3540,3540 +198742,198742 +361583,361583 +262441,262441 +367199,367199 +260444,260444 +9276,9276 +305407,305407 +1468,1468 +208736,208736 +345625,345625 +332156,332156 +350054,239942 +104547,104547 +20002,20002 +34024,34024 +67377,67377 +316700,316700 +176153,176153 +7977,7977 +83199,83199 +246203,246203 +406713,406713 +16296,16296 +260516,260516 +146392,2511 +281261,281261 +287894,287894 +6130,6130 +269749,207899 +277323,277323 +11888,11888 +5860,5860 +406918,374145 +25758,25758 +369309,369309 +420705,420705 +30164,30164 +23404,23404 +55492,55492 +255251,255251 +27751,27751 +192997,192997 +28960,28960 +229223,229223 +381860,381860 +184367,184367 +310892,89807 +400496,400496 +18732,18732 +351149,351149 +386470,90009 +31583,299 +182137,130680 +14324,14324 +142619,142619 +108857,108857 +336792,336792 +10294,10294 +300125,300125 +143841,143841 +10820,10820 +142158,142158 +116194,116194 +24288,24288 +279268,279268 +12059,12059 +15108,15108 +277061,277061 +364787,1219 +171126,171126 +398746,398746 +351224,204836 +8471,8471 +78775,78775 +91759,91759 +146765,146765 +9389,9389 +27007,27007 +317128,317128 +34652,34652 +225320,225320 +342232,342232 +73242,73242 +120444,120444 +3643,3643 +10508,10508 +2725,2725 +395365,395365 +300091,300091 +377591,118410 +34692,34692 +355247,355247 +186827,186827 +73230,73230 +226192,226192 +14196,14196 +87926,87926 +270213,2511 +193254,43443 +323910,323910 +3155,3155 +1132,469 +276500,276500 +26918,26918 +2098,2098 +348964,348964 +187362,20100 +167463,167463 +118325,118325 +37099,37099 +230063,230063 +40964,40964 +314935,314935 +381926,328478 +361984,322451 +38766,38766 +146272,146272 +291009,291009 +427122,427122 +430825,430825 +196227,196227 +265392,265392 +223149,223149 +4870,4870 +2756,2756 +165888,165888 +421149,414944 +285783,191301 +113939,113939 +376971,236305 +241384,56641 +262158,21133 +48495,48495 +311968,311968 +233805,233805 +159573,159573 +286082,228724 +140960,140960 +400355,400355 +365757,365757 +121626,121626 +373292,373292 +102177,102177 +177076,177076 +4851,4851 +357701,357701 +24210,24210 +57636,57636 +11289,11289 +241311,19643 +329711,329711 +290131,290131 +143050,143050 +101686,101686 +375159,1269 +40413,40413 +304667,304667 +278267,278267 +214861,214861 +257081,257081 +285170,285170 +353005,353005 +128197,128197 +327405,327405 +31159,31159 +262079,262079 +361425,293348 +63353,63353 +319886,319886 +179930,179930 +267578,267578 +140621,140621 +356554,356554 +3940,3940 +359235,359235 +370095,370095 +72251,72251 +170267,170267 +408622,408622 +391213,391213 +363583,363583 +234137,3937 +210125,210125 +297386,297386 +278204,278204 +148450,148450 +131812,131812 +217868,217868 +82577,82577 +330543,330543 +394553,394553 +3535,3535 +15013,15013 +32050,32050 +283363,283363 +166183,166183 +16727,16727 +99286,99286 +54859,83325 +242186,2582 +182136,130680 +267301,267301 +337636,337636 +227150,227150 +226608,226608 +5881,5881 +119109,119109 +11094,11094 +314893,314893 +367514,367514 +8364,8364 +369473,369473 +374703,374703 +254147,254147 +361483,361483 +398948,398948 +227425,227425 +284299,284299 +168654,168654 +261290,261290 +165417,165417 +94476,94476 +419941,419941 +375360,375360 +191216,191216 +244460,244460 +281319,463 +32234,1442 +20954,20954 +412116,412116 +259499,29262 +372204,372204 +121545,121545 +218165,218165 +3731,1590 +363991,363991 +165464,165464 +405296,405296 +338750,338750 +20204,20204 +80719,80719 +374945,374945 +30546,30546 +310818,310818 +136363,136363 +343396,343396 +68716,274178 +229232,229232 +348074,348074 +371796,371796 +323309,323309 +144961,144961 +289487,289487 +292,883 +7948,69843 +23030,17136 +175235,175235 +15213,22509 +96266,96266 +510,510 +380229,380229 +187676,147537 +122110,122110 +397382,397382 +336109,336109 +6698,6698 +22154,22154 +270144,67084 +405696,405696 +130841,463 +117582,117582 +148280,148280 +328378,328378 +345026,345026 +203326,203326 +4013,4013 +13871,13871 +287216,21569 +24448,24448 +11027,11027 +142224,142224 +222275,222275 +30566,18817 +319113,319113 +417895,417895 +226842,226842 +160052,160052 +356630,356630 +422535,422535 +39772,39772 +72673,72673 +197563,197563 +219312,219312 +235984,235984 +391839,391839 +145847,54625 +14546,14545 +165190,165190 +370047,120217 +186034,186034 +169574,169574 +381635,381635 +239698,43443 +382647,382647 +255732,255732 +3091,3091 +161528,161528 +184987,130680 +5257,5257 +41844,41844 +5381,5381 +18083,18083 +11390,11390 +172263,172263 +251677,251677 +201877,223950 +32358,32358 +181197,181197 +287463,287463 +787,787 +9246,463 +172035,172035 +61316,61316 +32187,32187 +192722,192722 +189603,189603 +4036,4036 +89610,232358 +333116,333116 +188526,188526 +191081,191081 +164201,164201 +301444,301444 +376555,376555 +26424,26424 +3575,3575 +163687,163687 +351090,351090 +259342,259342 +2372,2372 +1310,110 +381723,381723 +264261,264261 +163706,163706 +20440,20440 +12062,12062 +402372,402372 +203884,203884 +4570,4570 +155836,155836 +4434,4434 +6748,6748 +180910,180910 +325836,325836 +1571,1571 +38826,38826 +231196,231196 +23596,23596 +40977,40977 +369400,284775 +57647,57647 +242690,463 +241757,241757 +338920,338920 +342177,342177 +409588,409588 +286196,180937 +39998,175621 +7986,7986 +26080,26080 +5453,5453 +373421,373421 +146544,146544 +203069,203069 +351627,351627 +1622,1622 +164619,164619 +63339,63339 +410234,410234 +356025,356025 +8267,8267 +245611,245611 +423586,257614 +378096,336811 +305758,305758 +363073,363073 +408704,344114 +144252,144252 +137794,463 +346396,346396 +404449,404449 +1504,1504 +6129,6129 +421795,421795 +255802,255802 +277148,277148 +406588,406588 +24820,24820 +421606,421606 +18275,18275 +277427,277427 +285128,285128 +8198,8198 +197639,197639 +280890,463 +376881,376881 +316813,316813 +274255,274255 +387834,387834 +345792,247342 +10210,10210 +156224,156224 +236674,236674 +363496,363496 +6740,6740 +349490,251538 +207059,207059 +351031,351031 +4285,4285 +29446,29446 +418851,418851 +31255,463 +340067,340067 +346235,346235 +350714,350714 +257961,257961 +8516,8516 +12870,12870 +102034,102034 +294487,294487 +205542,205542 +25289,70532 +86433,86433 +13547,13547 +121195,327392 +275275,275275 +176068,49 +366993,366993 +410705,410705 +218632,218632 +365624,365624 +396726,396726 +43041,43041 +235293,235293 +5757,5757 +171889,171889 +246740,246740 +40958,432 +254505,1463 +158236,158236 +879,879 +419785,419785 +2989,2989 +66277,218459 +146728,146728 +37770,37770 +82903,82903 +362636,2123 +102145,102145 +254500,1463 +358153,234190 +377631,377631 +255643,255643 +328049,328049 +20240,2398 +11562,11562 +368311,368311 +211101,211101 +110570,110570 +380809,380809 +293734,293734 +40801,40801 +245385,245385 +13378,13378 +4139,4139 +40006,40006 +373790,345925 +304155,304155 +113428,113428 +105280,105280 +12372,12372 +405735,405735 +385801,385801 +371360,371360 +419115,419115 +129326,129326 +184266,165888 +182556,182556 +92661,92661 +356900,224483 +361892,361892 +336606,336606 +376753,225603 +140725,140725 +364544,364544 +418772,418772 +11534,11534 +251534,251534 +217671,217671 +159041,159041 +422423,422423 +287191,2122 +256574,256574 +281018,281018 +330158,330158 +27341,27341 +39289,39289 +12813,12813 +238718,238718 +218318,218318 +173673,153723 +31556,31556 +398743,398743 +409534,409534 +200115,254193 +205374,205374 +57135,57135 +208022,208022 +175921,175921 +348676,348676 +396003,385797 +245826,245826 +300191,300191 +353728,63951 +165585,165585 +29522,42101 +161544,161544 +25204,25204 +226757,226757 +58230,58230 +17152,17152 +286350,112532 +284491,85256 +227070,227070 +225940,225940 +119065,119065 +193029,193029 +269518,269518 +245651,245651 +230619,230619 +129295,129295 +7721,7721 +856,856 +12305,12305 +171494,171494 +11893,11893 +88960,88960 +1502,1502 +360213,360213 +374330,335322 +3592,3592 +346996,346996 +26353,26353 +180,180 +126471,126471 +3500,3500 +374108,374108 +15214,15214 +337416,258131 +242546,242546 +92015,92015 +3928,3928 +392146,392146 +302695,338353 +5669,5669 +329578,329578 +94571,94571 +413809,413809 +247009,247009 +226529,226529 +22990,22990 +29639,29639 +197433,197433 +265672,311397 +224164,224164 +319742,319742 +374053,374053 +180916,180916 +338766,338766 +415238,415238 +192237,192237 +150004,150004 +104285,104285 +73233,73233 +244201,244201 +316044,316044 +8001,13651 +180133,180133 +12776,12776 +90464,90464 +398384,398384 +348502,348502 +228419,173121 +41529,41529 +10348,10348 +363940,363940 +269729,318079 +365840,365840 +25396,25396 +8755,38830 +17836,17836 +7063,7063 +22176,22176 +361983,361983 +118326,118326 +310476,310476 +199030,199030 +175742,175742 +364629,364629 +237388,237388 +19611,19611 +144420,144420 +4855,4855 +306286,306286 +257064,257064 +428844,428844 +288781,288781 +3890,3890 +199799,143884 +370820,370820 +197710,197710 +334515,334515 +132147,132147 +258069,232827 +150971,19878 +4593,4593 +361973,361973 +372135,372135 +64657,64657 +298304,298304 +344891,344891 +172879,172879 +3058,3058 +284895,284895 +320938,320938 +260137,260137 +7383,7383 +240322,240322 +347530,347530 +349748,349748 +349587,349587 +114228,114228 +289720,257991 +181390,181390 +256212,256212 +405437,405437 +321122,321122 +276851,276851 +8478,8478 +367603,367603 +26135,26135 +144957,144957 +17368,17368 +257731,257731 +350749,350749 +38995,38995 +336291,336291 +2380,2380 +130734,130734 +56406,8790 +273646,273646 +277671,322451 +5054,5054 +375448,375448 +268898,268898 +420931,420931 +104975,104975 +369155,369155 +313696,313696 +143076,143076 +69545,69545 +40168,40168 +277069,277069 +184506,184506 +244004,381993 +410003,410003 +322480,286761 +242693,463 +425239,247106 +387197,387197 +343013,277659 +1953,1953 +269527,269527 +421529,167513 +298431,298431 +233587,233587 +273257,273257 +12639,12639 +17153,17153 +344799,344799 +309632,309632 +209940,209940 +10188,10188 +125895,125895 +139026,66088 +326441,267246 +401367,401367 +35546,35546 +3634,3634 +2041,2041 +24894,1421 +242694,463 +285885,285885 +406317,406317 +169122,463 +194088,194088 +202264,202264 +401767,401767 +2255,2255 +205491,121408 +7270,7270 +245503,245503 +220199,271460 +309377,309377 +28726,28726 +361435,361435 +93402,93402 +269667,269667 +191309,191309 +58707,58707 +226358,226358 +144428,144428 +41107,41107 +233080,233080 +11421,11421 +156680,301572 +1700,1700 +39124,39124 +235989,235989 +194249,59335 +10800,10800 +141087,141087 +10386,10386 +421187,421187 +176149,176149 +34811,34811 +377281,377281 +8331,8331 +3916,3916 +416018,416018 +392093,392093 +3801,3801 +397252,397252 +159505,159505 +356901,224483 +310957,310957 +11177,11177 +414994,414994 +251957,251957 +131144,131144 +342,342 +9398,9398 +367844,67254 +339825,339825 +391780,18748 +35054,35054 +287195,2122 +340255,340255 +408553,408553 +376102,376102 +9103,9103 +296562,8798 +189513,189513 +371420,371420 +229988,13936 +22594,285204 +282781,463 +253680,241828 +351423,351423 +320202,3208 +425024,425024 +337543,337543 +354540,354540 +427087,400995 +29849,29849 +246212,246212 +353147,388225 +37087,37087 +309892,309892 +406129,406129 +286076,286076 +42482,42482 +274421,274421 +257443,257443 +266072,208808 +134603,134603 +28219,28219 +4909,4909 +166,35047 +63705,63705 +110337,110337 +326239,326239 +965,965 +419754,419754 +3585,3585 +261406,261406 +284180,314063 +250823,250823 +322052,322052 +40844,40844 +193973,193973 +22275,22275 +37686,37686 +299568,299568 +26293,26293 +158231,63339 +68532,68532 +241021,241021 +276766,276766 +36554,36554 +151985,182134 +127543,1782 +341795,341795 +38716,38716 +198912,198912 +396185,396185 +284126,54625 +10718,10718 +313946,313946 +32969,32969 +1672,1672 +366133,366133 +28050,28050 +2260,2260 +123828,123828 +290557,290557 +205101,205101 +329019,329019 +355135,355135 +4606,4606 +142584,142584 +264897,159143 +302135,302135 +65087,65087 +127526,176565 +258288,258288 +31558,31558 +392397,392397 +144802,10272 +157646,157646 +313542,313543 +11874,11874 +98120,98120 +181615,181615 +168446,168446 +207987,207987 +363771,363771 +75937,75937 +333031,206437 +172558,172558 +150691,150691 +260726,260726 +5786,5786 +188783,188783 +287033,287033 +351646,351646 +73241,5677 +386268,386268 +1019,1019 +345630,313543 +9404,9404 +420932,420932 +254618,254618 +1054,1054 +23081,23081 +253705,253705 +168226,168226 +8246,8246 +848,848 +93997,93997 +385562,385562 +351604,369899 +312728,89910 +169855,169855 +293495,293495 +93441,93441 +306500,306500 +313166,313166 +169465,169465 +3914,3914 +20533,20533 +186694,186694 +7088,7088 +349333,168274 +58283,58283 +339249,39786 +427841,427841 +416530,416530 +169236,169236 +39827,39827 +404829,253664 +6912,6912 +344120,344120 +423611,423611 +284752,284752 +353488,353488 +337155,337155 +152761,152761 +294604,294604 +359959,359959 +141058,38995 +1557,1557 +264719,197178 +348690,348690 +395407,395407 +333642,333642 +15070,15070 +124699,124699 +198077,198077 +386187,386187 +242692,463 +21297,21297 +349,349 +260722,260722 +14097,14097 +399951,399951 +94259,94259 +330554,330554 +374307,374307 +285712,285712 +176502,176502 +24797,24797 +341636,341636 +9810,9810 +393900,393900 +383323,399826 +357676,357676 +313863,313863 +146115,2524 +10375,10375 +385627,225909 +237938,237938 +398909,398909 +296564,296564 +354219,354219 +342997,342997 +242551,183305 +88011,88011 +399832,399832 +385436,385436 +54451,54451 +426869,54 +205613,14324 +1983,1983 +41860,41860 +287677,287677 +286410,286410 +418461,418461 +421215,421215 +192500,192500 +392635,318328 +83378,83378 +31365,31365 +340086,340086 +8311,8311 +369036,369036 +375177,375177 +419829,419829 +500,500 +183568,183568 +340575,340575 +419993,419993 +217959,217959 +15052,15052 +378842,378842 +33958,33958 +160868,160868 +246814,246814 +400143,400143 +283119,18803 +13295,13295 +5454,5454 +202589,202589 +30025,8070 +9861,9861 +286834,286834 +14934,14934 +190455,190455 +220532,220532 +347504,347504 +365915,365915 +295555,295555 +64520,64520 +117743,117743 +56197,56197 +159410,159410 +88008,88008 +161770,295951 +185081,185081 +25476,4848 +213444,213444 +51424,51424 +393113,393113 +142517,142517 +16632,16632 +318740,296736 +365555,365555 +43471,230745 +13388,13388 +311086,234190 +406714,323784 +340600,340600 +300759,300759 +154244,154244 +145209,145209 +396826,396826 +202023,228943 +303970,316700 +425798,425798 +154934,154934 +36510,36510 +374650,253664 +244531,244531 +2940,205101 +17516,23950 +272078,3837 +34291,34291 +195623,195623 +355205,228101 +12512,12512 +39271,39271 +289484,289484 +266842,266842 +365920,365920 +264267,32441 +24238,24238 +810,810 +350954,350954 +394160,394160 +3075,3075 +248695,248695 +223357,223357 +183784,183784 +12630,12630 +227071,227071 +10533,10533 +160484,160484 +89764,89764 +318103,318103 +297206,297206 +267419,267419 +105004,105004 +378913,378913 +351925,351925 +274151,463 +346834,346834 +9350,9350 +13972,13972 +371802,371802 +186799,130882 +370963,370963 +242689,463 +170676,170676 +241121,241121 +175263,175263 +242685,242685 +425789,1513 +320971,320971 +426425,426425 +424134,368758 +385966,385966 +350431,282581 +217187,217187 +374522,374522 +339580,339580 +371536,371536 +11136,145390 +7797,7797 +301926,301926 +46957,46957 +419643,419643 +391209,391209 +369946,369946 +308157,308157 +376791,176558 +113643,113643 +3664,2392 +338584,338584 +231474,94493 +285782,285782 +89383,89383 +11811,11811 +291236,291236 +69832,69832 +366290,366290 +24824,24824 +381557,381557 +291674,291674 +237498,237498 +350758,4001 +378125,378125 +42900,42900 +327134,197790 +187834,187834 +304599,304599 +259346,259346 +6879,6879 +238426,238426 +213372,213372 +310691,310691 +182404,182404 +191879,191879 +31352,31352 +33932,33932 +210183,210183 +31662,31662 +381741,381741 +39787,39787 +157093,157093 +39209,39209 +218685,218685 +315677,315677 +246090,246090 +5002,5002 +140782,140782 +207479,207479 +321244,297673 +325112,325112 +7808,7808 +256875,256875 +5348,5348 +404346,404346 +208673,208673 +344015,344015 +21614,21614 +40651,40651 +67368,67368 +287658,34297 +347862,347862 +170932,170932 +133480,133480 +8044,69843 +363970,363970 +14585,14585 +334233,334233 +14117,2997 +112840,112840 +175535,175535 +242222,242222 +413920,413920 +33387,33387 +188877,188877 +427560,427560 +396338,396338 +162070,162070 +262370,262370 +383508,383508 +2209,2209 +252987,252987 +36342,36342 +372612,372612 +315584,315584 +104121,104121 +16420,16420 +10780,10780 +181291,4974 +199825,199825 +3049,3049 +327702,327702 +362623,339592 +281680,281680 +294524,294524 +4554,4554 +253794,253794 +332831,332831 +286199,286199 +35137,32441 +157625,157625 +420061,420061 +1688,1688 +140600,140600 +12856,12856 +169927,169927 +254025,254025 +157291,157291 +275554,275554 +248640,248640 +262981,262981 +25004,25004 +292486,292486 +241034,289601 +886,886 +247821,247821 +313104,313104 +136566,136566 +76447,76447 +153762,153762 +346913,346913 +302099,302099 +17385,17385 +151978,151978 +336962,336962 +284862,284862 +317610,317610 +428891,428891 +253270,253270 +398730,398730 +429264,429264 +388923,388923 +390175,390175 +292103,292103 +18780,18780 +258506,258506 +200836,200836 +14013,14013 +328612,328612 +236938,236938 +254434,254434 +42474,42474 +203760,203760 +666,666 +42765,42765 +19968,19968 +420917,420917 +73606,73606 +413995,413995 +404540,374145 +253965,253965 +192352,192352 +185288,147949 +415855,373621 +288273,288273 +30165,9150 +325452,325452 +34919,34919 +288473,288473 +64778,12129 +141980,141980 +364444,364444 +224641,224641 +201639,201639 +264509,180387 +349068,349068 +193288,43443 +348809,348809 +6003,294487 +217035,156420 +375280,375280 +26717,17379 +17154,17154 +82098,82098 +347775,196256 +226272,226272 +427232,427232 +326294,326294 +265850,265850 +362450,362450 +39526,39526 +389429,389429 +282,282 +791,791 +321124,321124 +273913,273913 +285620,285620 +321951,321951 +184505,184505 +341954,341954 +11361,11361 +150998,150998 +9207,9207 +255677,255677 +396333,396333 +305498,305498 +23857,16450 +359388,359388 +378352,378352 +19789,19789 +422106,422106 +416232,416232 +382844,382844 +280756,280756 +284177,314063 +413080,413080 +291099,291099 +224946,224946 +304736,304736 +169540,169540 +382779,382779 +314070,314070 +123648,123648 +178096,178096 +218684,284326 +267802,267802 +226595,226595 +12788,12788 +302239,302239 +1727,1727 +380110,43443 +150628,150628 +12046,12046 +2532,463 +419179,419179 +145594,145594 +378206,378206 +168457,168457 +379935,379935 +350750,350750 +179304,179304 +32025,32025 +160430,160430 +178683,178683 +137179,137179 +233395,180845 +231674,231674 +8128,8128 +315625,315625 +9862,9862 +113831,113831 +150003,150003 +224123,224123 +234859,234859 +242523,242523 +601,601 +35548,35548 +309824,309824 +218534,6830 +19623,19623 +236184,236184 +309100,309100 +95805,279307 +144429,165492 +172118,172118 +202896,202896 +22062,22062 +6342,6342 +293586,293586 +15901,15901 +286661,286661 +414350,414350 +26448,26448 +8892,8892 +128270,128270 +7418,7418 +319762,319762 +375704,360956 +203997,203997 +205495,205495 +1599,1599 +202692,202692 +386132,386132 +7981,7981 +386888,386888 +5606,5606 +198477,463 +213260,213260 +321120,321120 +267040,267040 +29400,29400 +323414,323414 +140179,140179 +431613,431613 +240461,240461 +315333,315333 +356757,356757 +424991,424991 +147418,147418 +338857,20610 +342472,342472 +237130,237130 +286167,286167 +295610,295610 +421365,421365 +85949,85949 +332745,332745 +402997,402997 +48871,48871 +135090,135090 +217863,217863 +253269,253269 +14497,14497 +212882,212882 +162928,162928 +287194,2122 +154681,154681 +11339,11339 +43144,463 +207789,207789 +183973,183973 +161562,121408 +363479,255635 +366788,366788 +88633,88633 +369623,369623 +279905,279905 +233812,233812 +191791,191791 +403541,403541 +12679,12679 +117030,117030 +281418,297702 +406370,406370 +361215,463 +422735,422735 +147136,147136 +359002,359002 +202303,202303 +329715,329715 +194454,194454 +307361,307361 +295283,295283 +418879,418879 +352126,352126 +265210,463 +325422,325422 +234391,234391 +22493,22493 +85338,85338 +12118,7506 +296332,296332 +266080,173452 +274446,274446 +232799,232799 +1077,1077 +15102,27965 +340055,340055 +217134,217134 +202897,202897 +13706,13706 +287408,287408 +322223,322223 +10875,10875 +227757,227757 +134893,134893 +16537,16537 +21682,463 +167941,167941 +189944,189944 +321304,321304 +165884,165884 +330555,330555 +117975,117975 +274538,274538 +159506,159506 +375979,375979 +124954,124954 +338757,338757 +339749,339749 +391759,391759 +421314,421314 +384138,384138 +173031,173031 +379555,379555 +2694,2694 +166587,166587 +1616,1616 +286175,286175 +173800,173800 +43927,43927 +288852,288852 +208316,208316 +232162,232162 +40567,40567 +374335,463 +2145,2145 +346659,21133 +149521,149521 +344123,344123 +150033,150033 +205667,205667 +2383,2383 +256398,256398 +357118,357118 +67037,67037 +76085,76085 +334125,334125 +201928,201928 +306868,306868 +264011,264011 +5513,5513 +144418,13 +109239,109239 +29540,29540 +173123,204281 +420092,420092 +41065,41065 +22035,2375 +312899,312899 +406774,406774 +203001,203001 +306431,11168 +331426,331426 +205864,205864 +117823,117823 +340029,340029 +261738,261738 +311308,311308 +67695,67695 +120210,120210 +270696,270696 +416130,463 +179931,179931 +220333,220333 +30261,2472 +5224,5224 +294637,294637 +376316,376316 +257725,257725 +235088,235088 +3354,3354 +320562,320562 +14471,5900 +29012,29012 +112111,105173 +406706,406706 +422693,422692 +270238,210113 +386446,386446 +32606,32606 +215571,215571 +210470,210470 +420292,420292 +416937,416937 +309898,309898 +354618,354618 +397225,16792 +427671,427671 +5016,5016 +261213,261213 +93493,93493 +80908,80908 +340396,340396 +420360,420360 +293468,293468 +28266,28266 +218609,191285 +193870,193870 +249577,249577 +400382,400382 +240349,240349 +382436,382436 +41419,41419 +355458,355458 +405012,405012 +288662,63268 +39570,39570 +230013,230013 +421978,421978 +245537,245537 +10610,16186 +19796,19796 +336592,291008 +42412,232267 +359731,68603 +172067,172067 +389849,389849 +277034,303734 +103460,103460 +194627,194627 +378744,378744 +245652,245652 +214576,214576 +14678,14678 +381431,381431 +378489,378489 +310993,310993 +254124,254124 +148057,1513 +170046,170046 +428782,428782 +33223,33223 +367021,367021 +27408,168077 +14151,14151 +2584,2584 +389220,389220 +386961,386961 +34482,34482 +37714,37714 +400510,400510 +1348,1348 +135794,135794 +124760,124760 +123752,123752 +233288,233288 +276600,276600 +220124,220124 +380274,380274 +39327,39327 +14137,14137 +8215,8215 +16914,16914 +245848,245848 +24885,24885 +353414,353414 +306230,214535 +191872,35497 +279747,279747 +131895,131895 +17618,17618 +25219,25219 +164645,164645 +366089,366089 +397600,397600 +339605,339605 +57458,57458 +217713,217713 +19540,19540 +352892,352892 +12644,12644 +18584,18584 +343027,343027 +547,547 +170577,168549 +311658,311658 +209275,209275 +277707,277707 +10753,10753 +287342,287342 +335431,335431 +361035,361035 +326237,326237 +402241,402241 +190523,190523 +375700,2944 +180824,180824 +387566,387566 +31273,31273 +255012,154892 +27781,27781 +264663,264663 +134172,134172 +285040,285040 +275274,275274 +61383,61383 +159653,159653 +2669,2669 +108711,108711 +62344,62344 +112811,112811 +263922,263922 +173184,173184 +367758,367758 +388409,388409 +333842,333842 +324932,324932 +9277,9277 +413416,413416 +10232,28219 +4190,4190 +158967,158967 +38949,38949 +320829,320829 +180570,180570 +109643,109643 +316973,316973 +288584,288584 +400097,400097 +191893,191893 +3558,3558 +420794,420794 +8168,8168 +11320,11320 +313936,206686 +429455,429454 +381886,381886 +358627,358627 +199625,199625 +191295,191295 +18936,18936 +309352,309352 +346423,346423 +12136,12136 +6414,5217 +363165,363165 +421470,421470 +16031,16031 +91682,91682 +173286,173286 +235700,235700 +229416,229416 +369459,369459 +182540,182540 +14128,14128 +208532,208532 +330030,330030 +422258,422258 +258524,258524 +6236,6236 +74203,74203 +257951,257951 +28334,28334 +112335,112335 +390199,390199 +211169,266845 +255419,255419 +168754,168754 +244067,144479 +350035,350035 +360893,360893 +5783,5783 +287692,287692 +51196,51196 +181520,30804 +223352,223352 +338198,57937 +262077,262077 +20515,20515 +35809,35809 +302071,302071 +350660,350660 +129461,129461 +119629,119629 +313026,313026 +14498,14498 +208661,208661 +350255,350255 +344260,344260 +160403,285204 +205156,205156 +379062,379062 +30497,30497 +30286,30286 +336719,336719 +187814,187814 +118501,118501 +158774,158774 +5024,5024 +12044,12044 +296185,296185 +162744,162744 +344682,344682 +8200,8200 +246754,246754 +304332,304332 +271629,271629 +168494,168494 +325670,43443 +309501,309501 +218270,218270 +82223,82223 +263871,263871 +212976,212976 +86026,86026 +28838,28838 +347593,347593 +163478,163478 +23407,23407 +23285,23285 +260258,260258 +161881,161881 +2169,2169 +363683,363683 +155201,155201 +138015,99219 +1385,1385 +278903,278903 +360273,360273 +150427,150427 +177799,1111 +338455,338455 +412,412 +266259,266259 +124372,124372 +410662,410662 +417277,318243 +9241,9241 +270133,270133 +369984,369984 +12385,12385 +145653,109548 +94363,94363 +9784,9790 +183145,50381 +2561,463 +262445,25729 +10754,10754 +192730,192730 +30010,30010 +156721,156721 +188952,188952 +27649,27649 +376219,376219 +30081,99969 +3557,3557 +124757,124757 +166134,166134 +410273,410273 +302279,302279 +120323,35017 +175232,175232 +324,324 +7256,7256 +9379,9379 +397342,397342 +429766,17449 +226207,226207 +244150,244150 +23809,23809 +137708,168653 +396704,396704 +258627,258627 +310766,313876 +35481,35481 +382761,382761 +306005,306005 +312946,312946 +344177,344177 +362574,362574 +216631,216631 +1087,1087 +342218,4962 +14236,14236 +505,505 +14394,801 +210099,210099 +343071,343071 +137800,137800 +286420,286420 +245086,245086 +12128,12129 +356628,356628 +137803,137803 +1133,1133 +410275,410275 +416540,416540 +314487,314487 +418459,418459 +369233,369233 +8746,21411 +253560,253560 +195448,195448 +1007,1007 +16970,16970 +343382,343382 +13831,13 +280949,280949 +182429,182429 +339802,339802 +426410,426410 +84778,84778 +2676,2676 +272443,272443 +369092,369092 +184763,184763 +41870,41869 +182794,182793 +113324,113324 +193134,193134 +126419,27665 +187813,187813 +204594,60815 +359963,359963 +362503,362503 +381671,381671 +524,524 +283648,283648 +28679,28679 +153812,153812 +377088,377088 +403655,403655 +396781,1869 +181970,181970 +237133,237133 +176948,6929 +21206,21206 +20172,20172 +360432,360432 +142041,142041 +119342,119342 +164010,164010 +101934,101934 +37336,37336 +414130,414130 +245926,245926 +19793,19793 +372473,372473 +333386,333386 +400734,400734 +406911,406911 +369491,369491 +353322,353322 +355521,302510 +25105,25105 +63779,63779 +23271,23271 +345980,345980 +95788,95788 +37732,37732 +180673,180673 +251593,251593 +16383,16383 +88080,88080 +218042,218042 +279471,279471 +209893,209893 +105866,105866 +367197,367197 +4625,4625 +276744,276744 +255690,255690 +393361,393361 +249190,249190 +200289,200289 +233092,233092 +290681,290681 +386894,386894 +268920,268920 +9033,9033 +309245,309245 +419892,419892 +393304,393304 +238725,238725 +350202,350202 +269487,269487 +143671,143671 +289170,289170 +11700,11700 +373574,373574 +326475,326475 +216907,216907 +415,463 +165926,165926 +251848,251848 +39871,39871 +27343,27343 +335729,401310 +347578,347578 +7956,215311 +302089,302089 +172559,172559 +269048,269048 +14096,3661 +245376,245376 +256046,256046 +184513,43443 +431292,431292 +352689,352689 +248931,248931 +294529,294529 +374147,374147 +379873,379873 +3989,3989 +231415,231415 +340044,340044 +240134,240134 +39451,39451 +9957,9957 +357190,357190 +5897,5897 +15088,15088 +160447,160447 +418384,418384 +23216,23216 +219329,219329 +130188,130188 +83587,83587 +260051,260051 +346683,346683 +157089,157089 +355024,355024 +208431,208431 +222194,11229 +11527,11527 +33024,63014 +372883,372883 +202975,202975 +266525,266525 +11790,11790 +297734,297734 +13818,13818 +305872,305872 +153820,63268 +166071,166071 +35167,35167 +3360,140 +37721,37721 +684,684 +95542,95542 +423690,423690 +307810,307810 +389043,389043 +254814,254814 +170998,170998 +21141,21141 +77638,77638 +311323,202982 +393730,393730 +242687,242687 +242683,463 +11507,11507 +328557,328557 +418478,418478 +64656,64656 +131848,131848 +332560,203560 +160055,160055 +210016,140995 +316651,316651 +359165,359165 +308933,308933 +401484,401484 +277446,277446 +391891,391891 +8589,8589 +67034,67034 +204133,204133 +264424,264424 +245474,245474 +321175,321175 +330005,146144 +199262,199262 +406414,406414 +103280,103280 +337113,337113 +207853,207853 +287192,2122 +386549,386549 +334723,334723 +35574,35574 +70262,70262 +279366,279366 +144474,144474 +256388,256388 +373884,373884 +113456,113456 +423242,423242 +359516,359516 +227028,227028 +45307,45307 +378917,378917 +16830,16830 +271762,271762 +25991,25991 +172696,13936 +32159,32159 +390962,390962 +239621,239621 +227196,227196 +360203,360203 +337882,337882 +352681,352681 +385738,385738 +60513,60513 +295264,295264 +374190,374190 +18967,18967 +67272,67272 +29579,29579 +402261,402261 +123568,123568 +376218,376218 +36741,36741 +350670,285253 +156962,156962 +14024,14024 +4695,861 +236158,236158 +72310,72310 +337390,238329 +143588,143588 +348516,348516 +397426,397426 +148430,148430 +315766,315766 +8973,8973 +145872,145872 +218955,218955 +132729,132729 +346678,346678 +155586,155586 +261576,261576 +148183,148183 +172517,172517 +378488,378488 +134649,134649 +227145,226081 +129364,129364 +155246,38386 +314671,176 +124265,124265 +279997,279997 +86170,86169 +7355,7355 +281559,356039 +9233,9233 +31070,1412 +358224,127981 +84442,84442 +214232,214232 +330317,330317 +24229,24229 +149035,149035 +312533,312533 +17909,17909 +34222,34222 +243757,243757 +3468,3468 +17037,17037 +24518,24518 +329505,329505 +426329,426329 +33086,33086 +99227,99227 +190330,190330 +22364,22364 +363527,363527 +371838,371838 +209862,170423 +311657,311657 +292016,292016 +259114,259114 +402278,402278 +33757,33757 +72063,72063 +223763,223763 +104633,104633 +8201,8201 +39104,39104 +337808,337808 +175152,175152 +337466,337466 +291232,291232 +258301,285204 +40604,196202 +14379,14379 +148766,148766 +60895,60895 +278017,278017 +99063,99063 +251060,251060 +305912,305912 +393890,393890 +8740,1496 +342736,342730 +193250,193250 +19008,19008 +268377,268377 +60015,6830 +8741,8741 +189515,189515 +32598,26233 +168493,168494 +131671,131671 +190015,145475 +162067,9132 +285282,285282 +7947,7947 +317191,259061 +287639,287639 +10797,10797 +3677,3677 +93678,93678 +4177,4177 +302267,302267 +425081,425081 +404187,404187 +298129,298129 +286398,16085 +347337,347337 +269517,269517 +300900,300900 +405307,405307 +432671,432671 +165740,96026 +7680,7680 +205776,205776 +367580,367580 +354710,354710 +374257,374257 +182792,182793 +196238,196238 +365745,365745 +394200,394200 +67112,182593 +27265,3895 +203502,203502 +318526,318526 +393880,393880 +25795,25795 +387839,387839 +16028,16028 +396706,297673 +377221,377221 +313179,337864 +287193,2122 +359801,359801 +287410,287410 +24083,24083 +277471,277471 +419982,419982 +259424,259424 +281080,281080 +282621,282621 +180210,180210 +378810,378810 +347348,347348 +297728,297728 +404659,404659 +346571,346571 +17646,17646 +232163,232163 +402637,402637 +61549,4934 +279864,279864 +199729,1536 +41241,41241 +419259,419259 +72086,42101 +414595,414595 +392486,392486 +246730,246730 +240026,202204 +378953,378953 +226118,284446 +111147,111147 +210818,210817 +4243,4243 +11151,11151 +362226,362226 +37431,37431 +294488,294488 +309822,309822 +356042,356042 +187791,251433 +306065,311190 +267218,267218 +75783,75783 +318661,288179 +143926,143926 +267990,267990 +10697,42101 +18155,18155 +303276,303276 +157085,157085 +166583,72644 +9844,9844 +9391,9391 +284094,284094 +40544,40544 +198137,198137 +253856,253856 +214603,323365 +2806,2806 +22249,22249 +18288,18288 +3829,3620 +427006,427006 +286216,260156 +43552,43552 +5460,5460 +295821,295821 +153830,153830 +230144,230144 +363669,377716 +4163,4163 +3790,3790 +77495,77495 +135327,69318 +224087,224087 +63715,63715 +36827,36827 +186690,186690 +18475,18475 +205459,205459 +20993,20993 +354324,354324 +17452,3694 +342054,342054 +114893,114893 +207351,207351 +29489,29489 +9597,9597 +40392,40392 +310894,310894 +13310,13310 +192952,192952 +107420,107420 +43268,43268 +26067,26067 +375295,102104 +20888,20888 +1091,1091 +266353,266353 +290511,290511 +177533,177533 +270635,238136 +10256,10256 +23334,23334 +374043,374043 +277181,277181 +118128,118128 +22305,22305 +402238,402238 +17577,17577 +198615,198615 +71935,71935 +141291,463 +120770,120770 +259727,259727 +400922,304420 +65488,10206 +406761,406761 +73111,73111 +379586,379586 +201048,201048 +218993,218993 +252465,252465 +375316,375316 +44715,44715 +17676,17676 +13745,463 +158851,158851 +127156,85633 +173057,173057 +164652,164652 +4259,4259 +361289,361289 +196234,196234 +142480,142480 +405118,405118 +370748,370748 +262390,262390 +40171,40171 +192140,264748 +343848,343848 +7081,7081 +338696,338696 +415507,415507 +360027,360027 +399733,399733 +182791,182793 +396092,396092 +413991,413991 +81079,81079 +324783,324783 +368212,368212 +387682,387682 +188681,188681 +217322,217322 +152098,67542 +43141,43141 +231003,231003 +244697,244697 +271130,5994 +356625,356625 +285135,285135 +145793,145793 +185028,185028 +33389,33389 +20456,20456 +225054,19145 +349691,349691 +368678,368678 +223223,223223 +41788,41788 +316571,316571 +74615,74615 +116309,116309 +375075,375075 +378501,378501 +247957,247957 +306913,306913 +19414,19414 +188799,188799 +379009,379009 +381282,53093 +376312,376312 +13495,13495 +283699,283699 +364876,364876 +19619,19619 +136177,136177 +130388,130388 +328767,267313 +216727,30380 +88338,88338 +18352,18352 +243931,243931 +368626,368626 +370077,188825 +27743,27743 +318626,318626 +10407,10407 +431482,431482 +35784,35784 +25722,25722 +154795,154795 +34413,34413 +190162,190162 +260897,33643 +23383,23383 +327075,327075 +321868,321868 +315913,315913 +236264,35497 +3198,3198 +24784,24784 +274635,274635 +40420,40420 +167402,167402 +318097,318097 +35354,35354 +387838,463 +7790,7790 +1838,1838 +257377,257377 +402312,402312 +222338,181889 +173127,173127 +11338,11338 +281265,281265 +167951,167951 +209286,209286 +42705,42705 +127505,127505 +42352,42352 +202584,202584 +61943,61943 +76542,76542 +84247,84247 +166026,43443 +87288,87288 +33758,33758 +3104,3104 +209146,209146 +18891,18891 +349177,187377 +40961,40961 +353155,353155 +393525,393525 +12686,12686 +303074,303074 +4281,4281 +372973,372973 +251330,251330 +280799,280799 +181647,181647 +13623,13623 +25692,25692 +301248,301248 +323390,323390 +282504,282504 +368724,368724 +32016,32016 +225828,225828 +9991,753 +151790,151790 +365876,365876 +344659,344659 +147318,147318 +180908,180908 +223822,223822 +187257,279869 +207167,207167 +124199,214535 +210464,85204 +13832,8017 +156381,156381 +376480,350469 +229855,229855 +344598,344598 +267746,267746 +3077,3077 +4777,4777 +2942,2942 +2134,2133 +274167,274167 +39439,39439 +298541,298541 +397840,18 +202503,202503 +8745,21411 +30952,30952 +18023,18023 +6983,6983 +137476,137476 +8336,8336 +3001,3001 +150370,150370 +28983,28983 +127258,127258 +122346,122346 +292739,292739 +957,957 +14095,14095 +271133,271133 +164300,164300 +307009,307009 +413169,413169 +310041,310041 +423389,423389 +37584,37584 +34306,34306 +2111,2111 +268901,8721 +329927,329927 +2299,308119 +157014,157014 +305700,305700 +311289,311289 +340812,340812 +16709,16709 +215000,127493 +350994,350994 +229914,229914 +246026,246026 +186979,186979 +234873,234873 +141577,121663 +421443,421443 +419130,419130 +397005,397005 +25606,25606 +344035,344035 +71743,71743 +342689,342689 +150751,150751 +25602,25602 +349551,349551 +364953,364953 +367798,367798 +350065,337098 +235598,235598 +40774,19399 +148,148 +351516,351516 +232089,232089 +250887,250887 +359868,359868 +385415,385415 +154586,154586 +67609,67609 +163957,163957 +368170,368170 +38304,38304 +256543,256543 +30678,30678 +25575,25575 +352617,352617 +354509,354509 +336299,336299 +63972,63972 +357011,357011 +275278,275278 +19271,88079 +381335,315221 +376700,36553 +347592,347592 +158758,140469 +185104,185104 +9610,9610 +308967,163154 +218557,218557 +194812,194810 +36516,36516 +135107,135107 +237719,237719 +254159,254159 +214168,214168 +83750,83750 +175419,175419 +318354,318354 +151334,151334 +47994,47994 +138123,138123 +19772,19772 +203833,233932 +201890,463 +4392,4392 +168436,168436 +33436,56604 +727,727 +8028,8028 +206059,206059 +95778,24923 +26824,26824 +180416,180416 +11378,11378 +220198,220198 +22405,22405 +138206,138206 +67144,255696 +148705,148705 +247953,247953 +217752,217752 +323508,323508 +2428,2428 +27184,27184 +402560,402560 +369303,369303 +218460,218460 +43080,20761 +358306,358306 +366132,223742 +289747,289747 +376735,376735 +352181,342730 +202674,202674 +125832,230792 +428085,428085 +165541,165541 +14447,14447 +9467,9467 +25721,25721 +8008,8008 +419702,419702 +209946,209946 +31453,31453 +428348,428348 +246976,246976 +319424,319424 +240956,240956 +310603,310603 +254205,254205 +21001,21001 +90092,90092 +542,542 +16355,16355 +167579,167579 +194473,194473 +109932,109932 +275703,275703 +164226,164226 +207574,207574 +42463,42463 +285599,285599 +201973,201973 +141730,141730 +388208,388208 +360295,360295 +203410,203410 +5438,5438 +250523,250523 +346101,346101 +168376,168376 +150422,150422 +160599,160599 +73251,73251 +153052,153052 +24826,2938 +354660,354660 +316843,316843 +20112,20112 +377299,377299 +351535,351535 +36538,36538 +187197,187197 +12496,12496 +234473,234473 +338377,338377 +368227,255516 +7267,7267 +19442,19442 +217827,217827 +141107,141107 +180238,70262 +15043,15043 +403151,403151 +206753,206753 +314758,148951 +347581,347581 +347367,347367 +8556,8556 +175233,175233 +382833,382833 +3552,3552 +42066,42066 +298613,298613 +425638,425638 +349747,349747 +418201,418201 +426691,426691 +317951,317951 +272578,272578 +146511,146511 +352899,352899 +389103,389103 +432813,432813 +265437,265437 +304524,304524 +349568,349568 +421253,421253 +104521,104521 +433550,433550 +189865,189865 +399045,399045 +146597,146597 +316585,20545 +352941,352941 +310890,310890 +264021,264021 +351503,351503 +402908,402908 +345014,345014 +415465,415465 +293456,293456 +362149,362149 +422611,125678 +286745,286745 +378785,378785 +352175,352175 +151315,151315 +283060,283060 +381241,381241 +27199,27199 +34694,34694 +409170,409170 +289192,289192 +263576,263576 +394695,394695 +147708,415142 +13351,13351 +37708,37708 +198263,168494 +246267,246267 +98919,98919 +301942,102897 +21052,21052 +252502,252502 +295148,295148 +369116,369116 +1173,1173 +282058,230792 +166556,166556 +75292,75292 +194753,194753 +174023,174023 +313794,313794 +16285,16285 +368243,368243 +145635,145635 +2487,2487 +301294,301294 +159438,35188 +273518,273518 +11780,11780 +306298,306298 +158585,158585 +130677,188292 +281459,281459 +338085,338085 +367629,367629 +131935,131935 +225481,225481 +287246,287246 +424247,151446 +38759,38759 +57834,272502 +118791,118791 +18859,18859 +400239,400239 +47462,47462 +212381,212381 +207420,284585 +66566,66566 +274206,274206 +132414,132414 +145396,145396 +323701,323701 +374785,302022 +261147,261147 +235987,235987 +193119,193119 +234977,234977 +350094,350094 +368224,368224 +38524,38524 +139660,139660 +349873,349873 +233854,233854 +173637,173637 +315062,315062 +148503,148503 +227261,227261 +248722,248722 +4580,37477 +42360,42360 +233869,233869 +38331,38331 +188312,188312 +32946,32946 +368056,368056 +36993,36993 +96238,260465 +162474,162474 +154838,154838 +11342,11342 +36352,36352 +114143,114143 +375557,375557 +278012,278012 +24291,24291 +25988,463 +426469,394193 +159526,18985 +369852,369852 +28626,28626 +209737,209737 +289316,289316 +23619,23619 +279752,279752 +220406,220406 +251136,251136 +303661,303661 +267362,267362 +380163,318328 +39302,39302 +386139,386139 +118001,118001 +86816,246873 +156885,156885 +163603,163603 +3112,3112 +240836,240836 +64853,64853 +38404,257138 +218854,218854 +2819,2819 +204671,204671 +39545,39545 +422752,422752 +261168,261168 +28109,28109 +11404,11404 +283644,283644 +379122,178570 +68251,68251 +50356,50356 +11292,11292 +33414,33414 +40092,40092 +230789,230789 +158621,85633 +272595,272595 +215004,215004 +355459,29603 +108792,108792 +348274,348274 +7973,7973 +211191,211191 +378867,378867 +421928,421928 +133135,133135 +425648,425648 +386377,386377 +190761,190761 +87628,87628 +37401,37401 +260855,260855 +349063,349063 +420587,39331 +315366,175324 +169325,169325 +191204,191204 +413925,286939 +369856,369856 +346899,346899 +228138,228138 +322409,322409 +209831,209831 +276631,276631 +281119,281119 +252321,237551 +378584,378584 +400492,400492 +63661,63661 +360616,360616 +69848,69848 +123875,123875 +422339,302524 +228740,228740 +34310,34310 +19039,19039 +113957,113957 +102611,102611 +392074,392074 +238006,238006 +209445,209445 +245344,245344 +8713,8713 +331490,331490 +144670,144670 +374814,374814 +363339,363339 +299726,299726 +38050,38050 +30457,30457 +9845,9845 +155415,155415 +60217,60217 +391169,391169 +229366,229366 +283623,283623 +338517,338517 +253793,89319 +401596,176189 +39632,22186 +37259,37259 +18581,18581 +232792,28219 +39492,39492 +271819,271819 +379802,379802 +363112,253087 +88276,88276 +11440,11440 +25600,25600 +234769,234769 +4620,4620 +2210,177875 +335155,335155 +17453,17453 +3971,3971 +290919,290919 +312070,312070 +350256,350256 +16502,16502 +252358,252358 +351804,351804 +368412,368412 +329840,329840 +19800,19800 +420973,420973 +1733,1733 +5585,5585 +162288,162288 +252135,216856 +29118,29118 +407811,407811 +349741,349741 +29433,29433 +166475,166475 +270918,270918 +12219,3935 +169473,169473 +318449,318449 +192284,192284 +39850,39850 +203370,203370 +30028,8070 +183872,183872 +5134,5134 +347107,347107 +36947,36947 +356124,356124 +306170,306170 +298656,298656 +2634,2634 +17006,17006 +7039,7039 +286261,286261 +371691,371691 +359172,359172 +272242,272242 +347616,347616 +130598,130598 +282699,282699 +9871,9871 +194666,194666 +271443,271443 +312789,262042 +402240,402240 +334508,334508 +286632,286632 +295894,295894 +391769,391769 +349416,349416 +310314,310314 +25632,25632 +286659,286659 +148117,148117 +43486,43486 +3129,3129 +355034,355034 +38263,38263 +24465,24465 +20165,20165 +94596,94596 +388427,388427 +373991,373991 +392950,360056 +32109,2582 +2581,2581 +41699,41699 +425234,425234 +8330,8330 +38425,38425 +129224,129224 +187815,187815 +250805,250805 +3174,3174 +210937,210937 +40083,40083 +70128,70128 +252504,252504 +390608,390608 +321766,321766 +255222,255222 +31082,31082 +269573,141428 +304731,304731 +187528,187528 +24738,14042 +182720,182720 +303280,303280 +29960,29960 +196026,196026 +261449,261449 +247488,247488 +19978,19978 +165999,165999 +2143,271460 +22674,22674 +232959,232959 +288893,265382 +423198,423198 +390652,357934 +335661,335661 +395477,395477 +324143,324143 +129988,129988 +395512,395512 +381996,330584 +344934,287893 +39985,39985 +57161,57161 +333129,333129 +371320,371320 +329996,230889 +179521,308652 +255206,255206 +62207,62207 +433139,433139 +383221,383221 +218231,218231 +289330,289330 +414061,414061 +359750,359750 +209749,209749 +355938,355938 +301028,301028 +319307,319307 +319329,319329 +94484,94484 +154032,154032 +38943,38943 +418296,418296 +381986,381986 +38403,38403 +407395,407395 +29258,29258 +38503,38503 +394192,394192 +395834,395834 +92908,92908 +121604,121604 +18067,18067 +215749,54625 +190045,190045 +258355,258355 +400860,400860 +304222,304222 +14228,14228 +14439,14439 +359499,359499 +2907,2907 +1581,1581 +108310,108310 +294919,294919 +411894,411894 +256784,256784 +26829,26829 +246001,10014 +105003,105003 +399109,399109 +308072,308072 +389031,389031 +323718,323718 +119370,119370 +432527,206718 +6660,6660 +229537,229537 +373281,65282 +423803,423803 +16984,16984 +357691,357691 +196104,222988 +331097,331097 +252373,252373 +166186,166186 +375547,375547 +251745,251745 +119463,119463 +246089,246089 +18353,18353 +145836,145836 +176108,176108 +131828,131828 +229848,229848 +395451,395451 +420940,361861 +220857,220857 +81573,81573 +254142,254142 +154470,154470 +329429,246911 +268190,268190 +232656,232656 +11290,11290 +165587,2633 +3046,3046 +375815,375815 +251566,251566 +5973,5973 +167574,247790 +21065,21065 +127652,127652 +23402,23402 +224442,224442 +217323,217323 +329379,329379 +11572,594 +418264,418264 +131496,131496 +5854,5854 +177790,177790 +352508,352508 +292217,292217 +372930,372930 +32367,32367 +16214,16214 +22753,22753 +375441,375441 +13307,13307 +21747,21747 +882,882 +103745,103745 +109044,109044 +236202,236202 +88858,88858 +353455,353455 +143666,165492 +376546,376546 +244610,244610 +319988,319988 +276817,276817 +371236,371236 +380166,380166 +67499,67499 +70488,70488 +400928,400928 +91440,91440 +30583,6830 +207809,207809 +3554,3554 +3435,3435 +12085,12085 +127434,127434 +138167,138167 +31693,31693 +301785,301785 +333672,333672 +170482,43022 +39123,39123 +268408,268408 +320043,320043 +83861,83861 +1861,1861 +230890,17329 +150530,150530 +174037,174037 +4646,4646 +31335,31335 +69649,69649 +402299,402299 +148115,148115 +126161,126161 +297326,297326 +22319,22319 +220382,220382 +186141,186141 +232223,232223 +354165,428891 +2195,2195 +364150,364150 +253238,253238 +103638,103638 +802,802 +40569,40569 +254991,254991 +236904,236904 +131230,131230 +20192,20192 +4621,4621 +33395,33395 +26292,26292 +218236,218236 +147590,147590 +18184,18184 +422329,422329 +75919,75919 +266665,266665 +102105,102105 +289044,289044 +430641,414944 +35213,35213 +355421,355421 +178028,178028 +420992,420992 +427593,154597 +402999,402999 +358659,358659 +371001,371001 +424818,424818 +411327,411327 +424277,424277 +421974,421974 +298546,298546 +99881,99881 +356114,356114 +282249,282249 +276624,276624 +282596,70222 +27079,15108 +383631,383631 +404859,404859 +430634,414944 +354390,354390 +137751,182869 +265414,265414 +34342,178028 +329483,329483 +276005,276005 +12313,12313 +361336,361336 +158344,158344 +303483,303483 +272074,272074 +352843,352843 +112836,42101 +229856,229856 +395590,395590 +22628,22628 +8872,8872 +151742,151742 +140937,140937 +17298,17298 +388170,323156 +368857,368857 +295407,173452 +278320,278320 +340741,208670 +163343,163343 +372340,372340 +379795,379795 +343365,343365 +259897,259897 +140509,140509 +42494,42494 +346956,346956 +291732,291732 +200173,200173 +378365,378365 +380699,380699 +399917,399917 +26365,9391 +36022,36022 +9409,9409 +353006,353006 +346069,346069 +201394,201394 +208901,208901 +407831,407831 +323963,323963 +25343,5217 +400865,400865 +196478,196478 +371436,371436 +9859,9859 +66712,66712 +254161,254161 +171543,171543 +246209,246209 +85999,85999 +16389,139572 +356559,15110 +93575,93575 +242921,242921 +7102,7102 +285519,285519 +141526,141526 +151319,151319 +173292,173292 +14970,14970 +14821,19622 +6643,6643 +123712,123712 +340354,63268 +21635,21635 +159587,159587 +616,443 +316582,316582 +32745,32745 +4432,88 +421921,421921 +369642,369642 +352735,352735 +385582,385582 +62017,62017 +138204,138204 +215082,215082 +288062,288062 +18842,18842 +15228,15228 +114100,114100 +61043,61043 +360333,360333 +66245,66245 +308027,308027 +241231,241231 +12964,12964 +364906,364906 +264496,264496 +378438,361214 +136032,136032 +140060,140060 +11375,11375 +117668,117668 +10463,10463 +25630,25630 +281535,281535 +394201,394201 +85251,85251 +89833,89833 +338425,145492 +11341,11341 +224819,224819 +78647,78647 +860,860 +15164,7742 +5819,5819 +30896,30896 +140386,140386 +231788,231788 +137047,137047 +27678,27678 +402747,402747 +194536,194536 +348442,348442 +5295,5295 +294725,294725 +40001,40001 +236897,236897 +243618,243618 +289986,289986 +316596,316596 +182052,182052 +377482,377482 +400144,400144 +10215,10215 +315557,315557 +11116,11116 +4832,4832 +170691,170691 +209487,209487 +175274,208670 +316352,355433 +205884,205884 +59224,35812 +374631,374631 +262577,262577 +347374,347374 +4582,4582 +4237,4237 +7051,7051 +283838,283838 +146161,146161 +6943,6943 +414341,414341 +386992,386992 +165447,165447 +329946,559 +293458,463 +353148,259005 +300932,300932 +131565,131565 +224379,224379 +92080,92080 +179320,179320 +346374,346374 +323922,323922 +224163,224163 +8830,8830 +23695,23695 +322812,322812 +117837,117837 +366999,366999 +396139,396139 +320755,320755 +425657,425657 +293956,293956 +195342,195342 +406374,406374 +210108,210108 +207284,207284 +5322,5322 +231151,231151 +259554,298545 +256672,256672 +94041,94041 +424272,424272 +421249,421249 +412762,412762 +361556,361556 +429385,429385 +196045,196045 +387744,387744 +419908,419908 +264986,264986 +299215,299215 +284643,346702 +367849,367849 +422041,283393 +374990,318243 +41329,41329 +11046,11046 +267140,126404 +267941,267941 +165738,165738 +415128,415128 +157432,463 +364387,364387 +329933,185343 +201271,201271 +377991,377991 +319327,319327 +167892,167892 +88296,88296 +17285,17285 +421688,421688 +14369,14369 +17089,17089 +5174,5174 +64426,64426 +16174,16174 +407965,407965 +301530,301530 +349745,349745 +24026,24026 +287724,287724 +414850,414850 +26475,26475 +57053,57053 +159907,100734 +425704,425704 +358382,213790 +191792,191792 +317068,317068 +226632,226632 +176870,176870 +318416,318416 +11748,11748 +260492,260492 +244414,244414 +268847,268847 +398943,398943 +215069,215069 +13801,13801 +41966,41966 +399503,399503 +133662,133662 +204548,204548 +383444,383444 +7179,7179 +131182,131182 +415887,9441 +375370,375370 +286207,286207 +271226,271226 +421328,421328 +312289,312289 +63788,63788 +322164,322164 +187727,187727 +12212,12212 +23182,23182 +55483,55483 +237822,237822 +62952,62952 +295756,295756 +334514,334514 +255173,255173 +366351,366351 +154991,154991 +5647,5647 +429765,29410 +113898,113898 +1554,1554 +4469,4469 +33865,33865 +334009,334009 +285779,285779 +271227,20545 +200407,200407 +156118,156118 +178177,232979 +244999,260704 +201720,201720 +34764,34764 +261020,144223 +14847,14847 +319968,319968 +425533,425533 +352883,352883 +21219,21219 +286833,286833 +17216,17216 +296349,200729 +275982,275982 +342260,342260 +425467,425467 +220519,220519 +14817,14817 +426982,426982 +356763,356763 +325923,54 +12760,12760 +232510,232510 +185769,185769 +130669,130669 +398769,398769 +24485,24485 +90016,90016 +160904,160904 +6221,6221 +186461,186461 +792,792 +400108,400108 +158988,187673 +256416,256416 +338985,338985 +8409,6732 +314879,314879 +20645,20645 +65242,65242 +362874,362874 +423704,423704 +4774,4774 +298412,298412 +19781,19781 +176684,176684 +311918,311918 +3958,3958 +402608,402608 +136525,136525 +41115,41115 +118283,118283 +98721,98721 +107834,107834 +93044,93044 +21040,21040 +242465,242465 +4247,4247 +305841,305841 +180339,180339 +267190,267190 +344679,312259 +334601,334601 +345287,345287 +239841,239841 +359368,251538 +279763,279763 +180157,180157 +35466,35466 +80657,80657 +176291,176291 +320459,149951 +132519,132519 +416832,416832 +33871,33871 +385319,319971 +346430,346430 +68466,68466 +217867,217867 +137497,137497 +17237,8436 +89371,89371 +84454,84454 +20021,20021 +68202,68202 +115680,65282 +89493,89493 +61109,61109 +107533,107533 +187806,187806 +168449,168449 +316363,316363 +311539,204836 +254145,254145 +405732,405732 +52824,52824 +11972,11972 +281320,281320 +367865,367865 +131444,131444 +169393,169393 +236820,236820 +88549,88549 +193456,193456 +8420,8420 +319376,319376 +170994,170994 +272544,267989 +418181,418181 +416028,416028 +354787,354787 +220287,220287 +176518,176518 +428852,428852 +286211,286211 +421233,421233 +326247,326247 +374181,374181 +171443,171443 +284433,284433 +433365,433365 +407703,112694 +3374,3374 +162120,162120 +1936,1936 +241454,241454 +375003,297673 +428055,428055 +143761,143761 +311499,311499 +167240,167240 +34096,34096 +12802,12802 +396752,396752 +381660,381660 +200659,200659 +35607,35607 +366297,366297 +426035,318243 +258523,258523 +123371,378475 +376597,376597 +412963,307002 +146994,339 +176592,176592 +153763,153762 +357035,357035 +367753,367753 +366865,366865 +400786,463 +372860,372860 +380354,380354 +244585,244585 +339054,339054 +306141,281144 +35633,35633 +8446,8446 +25013,25013 +27035,27035 +396740,396740 +423577,423577 +237363,237363 +2364,2398 +10962,10962 +392497,392497 +28868,28868 +1734,1734 +290899,290899 +172250,172250 +323498,323498 +237136,237136 +327977,327977 +325748,325748 +285625,285625 +373488,373488 +396926,396926 +36291,36291 +348534,348534 +347346,347346 +350254,350254 +346842,346842 +412263,412263 +100367,100367 +364344,364344 +240081,240081 +161140,161140 +322907,322907 +398944,398944 +11448,186514 +1291,1291 +353004,353004 +209114,209114 +244678,244678 +240016,202204 +3417,3417 +298311,298311 +309030,309030 +11845,11845 +292804,292804 +189434,189434 +4072,5243 +354980,354980 +253420,253420 +66215,66215 +308858,283849 +33684,33684 +18117,18117 +340384,340384 +193191,193191 +428317,428317 +348443,348443 +248425,144150 +2198,2198 +328294,328294 +425253,425253 +238024,258210 +30474,18881 +353839,353839 +25437,801 +368116,368116 +61996,61996 +9066,9066 +3861,3861 +326605,326605 +342704,342704 +10543,33030 +12379,8070 +245053,245053 +19509,19509 +24284,24284 +19046,19046 +182039,182039 +66457,66457 +7561,7561 +370136,370136 +201273,201273 +94485,94485 +51818,51818 +367602,367602 +73424,73424 +292557,292557 +2839,2839 +284417,284417 +302238,302238 +39167,39167 +412418,412418 +124264,124264 +342504,342504 +224010,240926 +392491,253664 +73759,73759 +343300,343300 +250905,250905 +69292,69292 +358042,313543 +25197,25197 +251688,251688 +346092,346092 +156113,156113 +1529,1529 +174057,215614 +2974,2974 +9343,9343 +126168,126168 +261826,261826 +186954,186954 +194184,194184 +172168,172168 +277151,277151 +388340,1465 +4298,4298 +113511,904 +378941,378941 +167412,167412 +295184,295184 +207063,593 +250531,250531 +9326,9326 +347166,347166 +16826,16826 +30355,30355 +82983,82983 +254225,254225 +160420,160420 +376932,376932 +35901,35901 +185331,185331 +427870,427870 +184728,184728 +256399,256398 +334781,334781 +300101,300101 +360009,360009 +358605,358605 +62637,62637 +10757,10757 +194820,194820 +159948,159948 +25974,25974 +155668,155668 +328738,328738 +254103,254103 +10243,334012 +4082,463 +339475,339475 +267753,267753 +270957,270957 +169443,169443 +320880,320880 +278242,278242 +8863,7164 +113513,113513 +3924,3924 +156461,156461 +41326,41326 +317089,317089 +268921,268921 +212894,212894 +257076,257076 +131474,131474 +6805,6805 +12481,12481 +16718,16718 +225498,225498 +1274,1274 +258109,258109 +244088,144479 +324002,324002 +236999,236999 +428113,428113 +434141,434141 +239962,239962 +397629,397629 +258334,258334 +218418,218418 +311039,311039 +419851,419851 +1884,1884 +7606,7606 +22149,22149 +422059,422059 +261233,261233 +35697,35697 +348540,348540 +251994,243312 +32478,32478 +393166,393166 +297373,279328 +330610,330610 +354271,354271 +404881,404881 +410005,410005 +340567,324143 +322435,322435 +167089,167089 +241024,241024 +17108,17108 +412439,246728 +408538,342135 +274157,274157 +59850,59850 +42471,42471 +405866,405866 +267396,267396 +349140,349140 +398753,276925 +27803,27803 +343380,343380 +346138,114504 +374041,374041 +8406,8406 +13091,13091 +319038,319038 +358809,358809 +348504,348504 +15403,15403 +160092,160092 +408280,408280 +58473,58473 +325032,325032 +374154,374154 +173130,173057 +18144,18144 +398999,398999 +174720,174720 +22795,22795 +333077,333077 +423518,423518 +187329,463 +15764,15764 +316467,1421 +264323,264323 +345087,345087 +11015,11015 +338589,338589 +260661,260661 +350257,350257 +320972,320972 +319987,319987 +38824,38824 +286564,286564 +13556,13556 +342282,342282 +286222,286222 +11298,11298 +290795,290795 +306673,306673 +288083,319402 +299191,299191 +114405,114405 +4303,4303 +358731,358731 +29272,29272 +363186,363186 +335012,335012 +32428,96728 +8360,8360 +35557,35557 +8793,8793 +371852,371852 +123306,123306 +14304,14304 +182162,182162 +364357,364357 +9642,9642 +7782,7782 +128850,128850 +17720,17720 +108109,108109 +298657,298657 +289801,289801 +162687,30804 +225263,225263 +23735,23735 +15810,15810 +21338,21338 +3969,1421 +6466,6466 +386767,386767 +247451,158564 +5957,5957 +5876,5876 +339975,339975 +420564,420564 +112233,112233 +346017,346017 +369816,369816 +431862,431862 +247979,247979 +166009,166009 +147417,147417 +277424,277424 +411397,411397 +151530,151530 +173878,173878 +145929,145929 +287475,287475 +115944,115944 +9324,9324 +358614,148557 +400816,63539 +383496,176189 +184012,184012 +133944,133944 +270960,270960 +271052,271052 +380179,380179 +191110,191110 +43295,43295 +231273,231273 +2563,2563 +206170,109801 +389222,389222 +365640,365640 +22048,22048 +403227,403227 +240025,202204 +111841,111841 +197788,197788 +283521,283521 +282018,207899 +300938,225316 +22280,22280 +1960,1960 +427907,427907 +176943,176943 +13042,13042 +404447,404447 +308384,308384 +182273,182273 +116849,116849 +29291,29291 +208151,208151 +60210,60210 +192382,3475 +234754,234754 +166333,166333 +358621,358621 +93844,93844 +102669,102669 +37142,37142 +299636,299636 +172642,172642 +353829,353829 +189919,125675 +2760,2760 +296276,296276 +312529,278413 +137156,137156 +338692,338692 +254695,254695 +110864,110864 +13786,13786 +8385,8385 +529,48 +404715,1111 +118567,118567 +5118,5118 +343573,343573 +300082,300082 +260933,260933 +4445,4445 +210935,210935 +428191,428191 +42227,42227 +18145,18145 +177871,177871 +63067,63067 +180489,180489 +306737,306737 +117869,463 +410618,410618 +19435,19435 +181140,181140 +2038,2038 +11836,11836 +62509,62509 +270552,270552 +339244,134726 +68948,68948 +43403,43403 +319702,317115 +270054,270054 +429047,429047 +163259,163259 +263096,263096 +214965,214965 +124096,124096 +290030,290030 +38365,38365 +297811,297811 +265571,265571 +428445,428445 +354600,354600 +195435,195435 +412731,412731 +322145,322145 +257007,10375 +365911,365911 +393317,393317 +382374,382374 +424219,424219 +163043,163043 +382864,382864 +305559,305559 +420041,54625 +170324,170324 +317164,374689 +263179,263179 +357802,357802 +352055,352055 +12356,12356 +199528,199528 +31272,31272 +312664,312664 +379409,152470 +147678,147678 +362824,162141 +256503,11 +118014,118014 +38420,38420 +414127,414127 +13816,13816 +299686,299686 +374923,374923 +422561,422561 +280449,280449 +333180,333180 +295929,295929 +28740,28740 +365441,365441 +79510,79510 +33790,33790 +27324,27324 +283346,283346 +416184,416184 +90841,90841 +135192,135192 +17294,17294 +135220,47158 +292376,292376 +23072,23072 +217158,217158 +341548,341548 +351964,351964 +20450,20450 +290617,290617 +11413,3595 +372816,372816 +292817,292817 +263753,263753 +24086,24086 +183038,183038 +349917,349917 +21610,21610 +181188,181188 +194974,194974 +313766,313766 +365672,365672 +235983,235983 +25103,25103 +19891,19891 +63682,63682 +403281,403281 +201279,2574 +379639,379639 +287304,287304 +331498,331498 +104809,104809 +410392,276925 +35371,35371 +256777,256777 +365763,365763 +232919,232919 +265244,265244 +123723,123723 +42266,42266 +269072,232509 +19113,19113 +370439,370439 +392371,392371 +338326,338326 +9886,9886 +257955,257955 +1171,1171 +88301,88301 +395848,395848 +235507,235507 +237818,237818 +394595,394595 +274508,274508 +124647,124647 +202776,202776 +66985,66985 +189374,189374 +184861,152952 +284175,284175 +403599,403599 +14022,14022 +2810,17784 +6452,6452 +343122,271460 +126653,126653 +309699,309699 +70325,70325 +430702,239942 +281317,281317 +414807,414807 +186073,112373 +372259,372259 +69602,69602 +266778,266778 +253683,253683 +97339,97339 +273,273 +14377,14377 +349742,349742 +299489,299489 +277434,314893 +277100,277100 +346979,346979 +10095,10095 +4680,4680 +422373,373060 +254130,27852 +423417,423417 +42480,42480 +194998,194998 +257802,257802 +318193,318193 +218349,218349 +21716,21716 +182193,182193 +9060,463 +347070,347070 +322380,322380 +5201,5201 +401976,401976 +343313,343313 +13395,13395 +366152,366152 +329568,329568 +209661,209661 +1031,1031 +187205,187205 +10258,10258 +420930,420930 +9248,9248 +282041,194298 +233816,233816 +2813,2813 +209667,209667 +254578,204892 +306332,183420 +386891,386891 +4393,4393 +313858,313858 +59547,59547 +4246,4246 +16207,16207 +183197,183197 +35610,35610 +316594,316594 +262160,262160 +357079,357079 +347702,347702 +385563,385563 +404048,404048 +346958,346958 +18875,18875 +284627,284627 +215746,215746 +9560,9560 +156358,156358 +33359,33359 +8361,8361 +75936,75936 +410200,410200 +351140,351140 +379826,150484 +202698,202698 +207415,207415 +318641,318641 +52626,52626 +333271,333271 +327621,327621 +346836,346836 +371709,371709 +231213,231213 +156370,5445 +195625,195625 +358830,358830 +373129,373129 +309890,309890 +198629,198629 +420912,420912 +329174,329174 +232138,232138 +347885,347885 +104519,104519 +415291,415291 +353002,353002 +3293,352 +292981,292981 +333132,173452 +309716,309716 +333130,173452 +395373,54625 +348075,348075 +120397,120397 +361069,361069 +400053,400053 +240119,240119 +227981,227981 +136712,136712 +15183,15183 +410387,410387 +405615,405615 +143199,143199 +272751,272751 +194447,194447 +299790,99969 +280853,280853 +282074,14441 +85077,85077 +295406,173452 +34029,34029 +149167,149167 +364348,364348 +20257,20257 +375002,297673 +339544,339544 +19838,19838 +40853,1299 +2637,2637 +358122,358122 +362889,362889 +402395,402395 +2261,2261 +36633,36633 +210006,210006 +405688,405688 +306685,306685 +143421,143421 +64421,64421 +3619,3619 +265448,265448 +381144,381144 +46366,46366 +200998,200998 +410339,410339 +60781,60781 +54417,54417 +69703,69703 +3571,3571 +187726,187726 +139781,139781 +6159,27649 +365551,365551 +18930,18930 +353130,353130 +14371,14371 +133685,133685 +92013,92013 +406497,349812 +296785,296785 +2863,2863 +218819,218819 +378879,378879 +361891,361891 +424816,387388 +27458,27458 +5376,5376 +25470,25470 +1750,1750 +22108,22108 +343312,343312 +333441,280655 +333408,333408 +420508,420508 +205067,205067 +25065,25065 +36665,36665 +352517,352517 +227604,227604 +12306,12306 +23656,23656 +73362,73362 +4411,4411 +19592,19592 +183683,183683 +294489,7109 +302374,302374 +228081,228081 +363498,363498 +6246,6246 +214605,214605 +361875,361875 +303666,303666 +63520,63520 +3669,3669 +306538,306538 +54165,54165 +264855,264855 +269258,269258 +336647,336647 +10855,10855 +137802,137802 +62725,62725 +19078,19078 +312555,312555 +358137,358137 +9053,9053 +73756,73756 +146321,146321 +404163,404163 +8411,8411 +19534,19534 +230065,259897 +43230,43230 +28388,28388 +332260,332260 +167774,63268 +187313,187313 +186243,32441 +368308,368308 +296575,296575 +270229,270229 +19725,19725 +219374,219374 +304379,304379 +414275,414275 +209447,209447 +168220,168220 +338511,338511 +6023,6023 +189816,189816 +4000,4000 +4092,4092 +222315,222315 +265980,265980 +164187,164187 +334748,334748 +40178,40178 +197631,197631 +235531,235531 +417630,417630 +83787,83787 +379981,267746 +9487,9487 +240108,240108 +113995,113995 +353598,353598 +153432,153432 +15866,6541 +16043,16043 +27730,27730 +109936,109936 +57183,57183 +25879,25879 +280521,280521 +4579,4579 +318544,318544 +156430,156430 +333769,333769 +248756,248756 +378926,378926 +203005,203005 +98978,144412 +320102,320102 +350974,350974 +125554,125554 +62575,62575 +292810,292810 +39802,39802 +7143,7143 +382444,382444 +353769,353769 +200018,200018 +351821,351821 +146707,146707 +312206,312206 +68743,68743 +9512,9512 +26244,26244 +168385,168385 +186470,186470 +312630,312630 +345234,345234 +316999,316999 +198690,198690 +10397,10397 +39326,39326 +165552,165552 +23481,23481 +339451,339451 +1478,9625 +201012,201012 +133247,133247 +33735,33735 +298396,298396 +343208,343208 +18945,18945 +337741,337741 +424133,424133 +189270,189270 +218167,218167 +434151,434151 +222564,222564 +55885,55885 +349607,349607 +385590,385590 +432789,432789 +405425,405425 +419637,419637 +424543,424543 +419344,419344 +307269,307269 +412097,412097 +433963,433963 +225144,225144 +422120,164265 +4772,4772 +20642,20642 +348869,348869 +206968,144479 +312076,312076 +354794,354794 +383086,383086 +262988,262988 +418792,418792 +407542,407542 +206253,206253 +335273,335273 +291194,291194 +400729,400729 +344527,344527 +317400,317400 +391901,391901 +275985,275985 +263479,263479 +102739,102739 +8194,8194 +12094,12094 +110208,110208 +147345,147345 +319104,319104 +368201,238025 +274581,274581 +27568,27568 +25421,25421 +406126,363487 +128867,128867 +120674,161620 +338027,338027 +304041,304041 +361074,361074 +342530,342530 +152054,152054 +50631,50631 +383203,383203 +209853,160545 +85021,85021 +344758,344758 +302059,302059 +189423,189423 +377941,377941 +368317,368317 +122821,33259 +265484,265484 +292841,292841 +10690,10690 +3793,3793 +5986,5986 +140940,140940 +90155,90155 +356315,43443 +316473,1421 +10019,10019 +329339,329339 +397453,397453 +65113,27343 +393283,393283 +27318,27318 +340085,340085 +423830,423830 +203818,203818 +6005,6005 +8365,8365 +7679,7679 +238912,238912 +7054,7054 +369943,369943 +386144,386144 +381243,381243 +336607,336607 +169158,198608 +312928,312928 +14728,14728 +12527,12527 +137273,42101 +410187,410187 +300803,300803 +19657,19657 +68616,68616 +19967,19967 +274733,274733 +254201,254201 +276185,276185 +182790,182793 +31661,31661 +311105,311105 +11913,11913 +321119,321119 +271822,271822 +266382,266382 +15335,15335 +153217,153217 +294651,219122 +226167,226167 +21690,6740 +292569,292569 +366860,366860 +19917,463 +373017,373017 +349009,349009 +57207,57207 +363000,363000 +365843,362484 +125702,125702 +292494,292494 +130837,130837 +236114,236114 +395786,395786 +17522,17522 +274031,274031 +15981,15981 +401103,401103 +69823,69823 +329409,329409 +233570,233570 +28428,28428 +1512,1512 +69973,69973 +196224,196224 +367569,367569 +428198,428198 +155922,155922 +279902,279902 +144631,144631 +36381,36381 +254425,254425 +307243,307243 +15540,15540 +260847,260847 +373636,373636 +421356,421356 +8252,6456 +191473,191473 +264170,264170 +8750,8750 +99045,28219 +11689,11689 +292908,2922 +3335,3335 +422368,422368 +294000,294000 +308558,308558 +362233,362233 +7145,7145 +343228,343228 +66551,66551 +308589,308589 +131200,131200 +8324,8324 +178229,178229 +31767,4862 +365710,365710 +208643,208643 +25460,11054 +372478,372478 +21780,21780 +167718,167718 +359733,359733 +323965,323965 +240825,240825 +392153,295788 +371251,371251 +18908,18908 +328270,328270 +4114,4114 +3681,3681 +65796,65796 +296157,377420 +268411,267832 +322802,322802 +211882,211882 +380370,380370 +410119,410119 +238900,238900 +261533,261533 +40000,40000 +142902,142902 +346598,346598 +13522,13522 +285026,285026 +7825,7825 +308879,308879 +347552,347552 +265948,265948 +17752,17752 +4555,4555 +198692,198692 +331343,331343 +8835,8835 +3642,3642 +229955,229955 +423792,423792 +124602,124602 +21774,21774 +148049,148049 +17640,17640 +14561,14561 +361186,361186 +120000,120000 +11899,11899 +351653,351653 +226080,226081 +169713,169713 +282587,282587 +216629,216629 +293735,293735 +143090,143090 +352409,352409 +362528,362528 +263282,74136 +304419,416018 +384134,384134 +376741,376741 +386757,386757 +313836,313836 +371099,371099 +430023,430023 +371402,371402 +381197,381197 +432676,54625 +423561,699 +217473,217473 +293882,293882 +344701,344701 +207201,207201 +258514,258514 +339991,169102 +369598,369598 +144108,144108 +336987,336987 +314122,314122 +316710,316710 +191896,191896 +402427,402427 +311018,311018 +350144,350144 +127372,127372 +380765,380765 +308694,237498 +171002,171002 +421254,421254 +27754,27754 +363986,363986 +376103,376103 +383440,383440 +247258,247258 +13904,333386 +346293,346293 +241620,241620 +367618,367618 +255197,170118 +403657,403657 +234874,234874 +208771,208771 +109781,109781 +330837,330837 +309903,309903 +115321,115321 +155765,155765 +425588,425588 +323061,323061 +344640,344640 +42481,42481 +111307,111307 +279968,279968 +156077,156077 +309821,309821 +192275,192275 +238079,238079 +32869,32869 +239044,239044 +289787,463 +419651,419651 +116890,116890 +16647,16647 +277500,277500 +145580,145580 +407716,278553 +62708,24314 +244085,144479 +13394,13394 +21619,21619 +142068,142068 +298442,298442 +347601,347601 +63849,63849 +323148,310894 +392953,392953 +201992,201992 +277002,277002 +8338,8338 +176568,176568 +262930,357118 +54543,54543 +232385,232385 +340637,340637 +38998,38998 +21828,21828 +148044,148044 +392041,392041 +170641,170641 +92775,92775 +265481,265481 +267416,267416 +7727,7727 +7920,7920 +20941,20941 +255257,255257 +276219,276219 +3778,3778 +241014,463 +26977,26977 +198422,198422 +192239,192239 +316460,1421 +316458,1421 +408319,408319 +182961,135382 +81043,81043 +417492,206169 +109005,109005 +377302,377302 +36735,36735 +61165,162141 +285522,285522 +7791,7791 +296567,296567 +72794,72794 +19655,19655 +292194,292194 +159570,159570 +276859,276859 +104625,104625 +262726,262726 +146289,146289 +246546,246546 +209223,41302 +21212,21212 +235623,235623 +420106,420106 +286566,286566 +421049,408842 +35253,35253 +364637,364637 +14942,14942 +21755,21755 +17892,14934 +393305,393305 +333523,333523 +390101,390101 +222906,222906 +359076,359076 +54745,54745 +382127,382127 +369929,369929 +297262,297262 +6575,6575 +269209,256957 +32836,32836 +261251,181694 +209411,209411 +189055,189055 +250472,219661 +13371,13371 +432491,432491 +39151,39151 +233872,233872 +259972,259972 +24002,24002 +320540,320540 +38330,38330 +19380,19380 +264288,264288 +269586,269586 +143250,166858 +230556,230556 +200727,267832 +224454,224454 +391306,65532 +11195,11195 +235821,235821 +40615,40615 +405014,405014 +421297,421297 +62393,62393 +164626,164626 +231523,231523 +412228,412228 +19201,9288 +130520,130520 +247144,247144 +290853,225908 +352060,154880 +4969,4969 +257869,257869 +281888,281888 +3376,3376 +315445,315445 +378955,378955 +153372,153372 +119854,119854 +147892,393457 +35729,35729 +157573,223436 +324928,324928 +277154,277154 +187200,187200 +33964,33964 +294096,294096 +6128,6128 +425681,425681 +290896,290896 +83468,83468 +39195,26233 +277126,283746 +242550,242550 +33723,33723 +214486,246316 +10291,10291 +360696,360696 +1158,1158 +86997,86997 +178348,178348 +4268,4268 +134085,134085 +110564,110564 +260901,260901 +398770,398770 +256853,256853 +179552,179552 +235699,235699 +192995,192995 +163077,163077 +12823,12823 +230810,230810 +68313,68313 +121295,121295 +296040,296040 +167566,167566 +312987,312987 +6119,6119 +7216,7216 +342245,342245 +152793,152793 +42453,42453 +7178,7178 +416200,416200 +423921,423921 +332662,332662 +324699,324699 +429378,429378 +398929,398929 +428573,428573 +410359,410359 +383134,383134 +200660,200660 +289233,289233 +432079,432079 +381661,381661 +430697,430697 +433301,433301 +222225,222225 +210007,210113 +235940,235940 +323742,323742 +120924,120924 +392020,392020 +359452,359452 +140976,140976 +247649,247649 +294008,294008 +415748,415748 +431399,431399 +425224,425224 +300783,300783 +394748,394748 +244831,244831 +236441,236441 +361049,361049 +13846,13846 +342223,342223 +379982,267746 +306529,306529 +234564,234564 +143839,143839 +363547,363547 +322740,322740 +346762,5755 +264866,232403 +23281,23281 +382319,382319 +330514,330514 +337934,337934 +322838,322838 +386476,329204 +374136,374136 +370385,370385 +376507,376507 +187606,90870 +417721,417721 +235798,235798 +383209,383209 +12066,12066 +209310,288473 +330202,330202 +419981,419981 +258593,258593 +299919,299919 +155953,155953 +3156,3156 +8144,8144 +26927,26927 +159513,515 +12376,12376 +255723,255723 +382008,382008 +23408,23408 +239680,239680 +147921,267377 +187225,187225 +295459,295459 +286263,286263 +390491,390491 +35707,35707 +410160,410160 +370578,370578 +353209,353209 +259357,259357 +316456,1421 +33507,81043 +358039,313543 +84820,84820 +400770,86169 +423652,423652 +335581,213578 +316472,1421 +342072,342072 +169192,24314 +361219,361219 +279870,279870 +9319,9319 +10882,10882 +16512,16512 +270661,270661 +310606,310606 +404495,43443 +59338,59338 +319800,226631 +381551,381551 +72153,72153 +36508,36508 +252980,252980 +153653,153653 +14848,14848 +9485,9485 +254196,311542 +193280,38159 +227490,227490 +14189,14189 +1996,1996 +23073,23073 +216789,216789 +168578,168578 +329511,329511 +168055,168055 +5230,5230 +11449,11449 +243977,243977 +4861,4861 +340178,340178 +284325,284325 +386766,148575 +174563,174563 +372960,372960 +43092,43092 +8868,8868 +1523,1523 +22123,22123 +10932,10932 +363613,254759 +237698,19399 +95956,95956 +375442,279613 +271228,20545 +194496,194496 +350951,350951 +11631,11631 +206443,206443 +241070,241070 +355502,355502 +190116,190116 +21677,21677 +299545,299545 +166510,166510 +192349,192349 +154180,24083 +27853,27853 +346617,346617 +342839,342839 +260211,260211 +224750,224454 +180275,180275 +271513,271513 +31791,31791 +284328,284328 +254777,254777 +354507,354507 +98402,98402 +25436,801 +86129,86129 +261887,261887 +28306,28306 +325210,325210 +224663,224663 +400567,400567 +8476,8476 +8157,8157 +259360,259360 +182796,182796 +146227,146227 +158760,11231 +308663,308663 +251691,333523 +1682,1682 +377163,377163 +363941,363941 +604,604 +239770,239770 +371889,371889 +18357,18357 +138518,138518 +587,587 +178150,30804 +4271,4271 +207719,207719 +241397,241397 +6806,6806 +222314,222314 +146391,146391 +172279,172279 +285699,285699 +123275,146333 +34113,34113 +225085,32441 +344251,344251 +20241,24314 +323601,323601 +269242,269242 +284324,284324 +410118,410118 +19003,19003 +367568,367568 +38191,38191 +2905,2905 +30026,8070 +215796,215796 +191923,191923 +266331,266331 +402457,402457 +240423,240423 +11498,69843 +39587,39587 +67066,67066 +366576,366576 +13031,13031 +367511,367511 +229624,3818 +401104,401104 +392031,392031 +172161,5217 +302399,302399 +196617,196617 +58907,58907 +62106,62106 +26469,26469 +25766,25766 +5210,5210 +256982,256982 +9418,9418 +37574,37574 +172200,160868 +122069,122069 +24794,24794 +346630,346630 +256727,463 +159536,159536 +1365,1365 +238021,238021 +185186,185186 +26998,24797 +307436,307436 +18129,18129 +349769,105134 +385431,385431 +11407,11407 +93443,93443 +19392,19392 +369650,369650 +8816,8816 +309708,188347 +5377,5377 +324262,324262 +114231,114231 +34065,34065 +202864,202864 +419470,419470 +131349,131349 +294475,294475 +194306,194306 +297639,297639 +306551,306551 +215454,215454 +382847,382847 +395406,319262 +253202,253202 +364109,364109 +325390,325390 +423035,257501 +297807,297807 +354873,354873 +433285,433285 +328368,328368 +408000,408000 +193647,51424 +85676,85676 +276434,276434 +227267,227267 +196590,196590 +272399,272399 +414684,414684 +224184,224184 +172980,172980 +390316,103666 +376105,376105 +356844,146548 +376095,376095 +20749,20749 +343663,343663 +355848,141920 +240008,240008 +368320,268864 +401594,401594 +132605,132605 +281153,281153 +410238,410238 +185144,185144 +411438,411438 +359777,359777 +420147,420147 +408225,408225 +411882,411882 +361507,223376 +428431,428431 +373860,373860 +364402,364402 +307670,307670 +261293,261293 +350346,350346 +231403,231403 +335112,335112 +261979,261979 +253220,253220 +116405,116405 +282819,282819 +401741,401741 +16866,16866 +334499,334499 +192086,3475 +398226,398226 +97113,97113 +310791,310791 +184943,184943 +274878,274878 +260328,130997 +368761,136000 +193965,193965 +311760,311760 +212300,212300 +364688,364688 +17657,17646 +22238,22238 +21067,21067 +319308,319308 +18765,18765 +296734,296734 +42020,42020 +282947,282947 +161750,161750 +253434,253434 +360351,245714 +420498,420498 +11445,11445 +31972,31972 +255651,255651 +429816,429816 +316420,1421 +307970,307970 +228710,228710 +172984,172984 +414572,414572 +319706,319706 +209163,209163 +313059,313059 +34889,34889 +482,482 +14396,14396 +103043,103043 +285856,285856 +271265,271265 +356995,356995 +94683,94683 +14171,14171 +418731,316407 +30431,30431 +33686,33686 +421972,421972 +257028,257028 +263962,263962 +150511,150511 +266776,266776 +26854,463 +193698,193698 +370600,370600 +218738,218738 +19615,19615 +268400,268400 +265804,265804 +216695,216695 +147994,147994 +18477,18477 +24669,24669 +8662,8662 +124836,124836 +228318,228318 +380891,380891 +13614,5778 +208259,208259 +54056,316767 +12007,12007 +207918,207918 +246308,246308 +9396,9396 +359109,359109 +261173,261173 +105244,105244 +326201,326201 +406612,406612 +13345,13345 +37096,37096 +262197,262197 +410626,410626 +62721,62721 +3457,3457 +23304,23304 +174265,174265 +182407,182407 +350779,350779 +36690,36690 +403053,403053 +3671,3671 +2966,22094 +12708,12708 +180565,180565 +23063,9913 +265246,265246 +180739,180739 +121787,121787 +359504,359504 +336497,115105 +397613,397613 +418337,418337 +168211,168211 +25433,25433 +169328,169328 +378284,7854 +37883,285204 +35039,35039 +245502,245502 +411401,411401 +338545,282699 +422179,422179 +168535,168535 +20409,8134 +63808,26884 +5221,5221 +410249,165595 +1945,1945 +427464,27363 +401396,401396 +155113,155113 +366070,341178 +389794,389794 +282248,282248 +179433,179433 +36819,36819 +2880,2880 +208512,208512 +10391,10391 +310271,310271 +2609,2609 +398009,398009 +153484,153484 +178933,178933 +239016,239016 +159197,159197 +72507,72507 +176562,176562 +4239,4239 +319713,211457 +367929,367929 +339888,339888 +333145,4174 +11476,11476 +180590,180590 +124761,124761 +149322,149322 +343010,189427 +200169,200169 +279263,279263 +87856,87856 +4628,4628 +6047,6047 +425630,425630 +19168,19168 +319709,319709 +231799,231799 +148432,148432 +157697,157697 +414866,414866 +14836,14836 +14163,14163 +19124,19124 +12539,12539 +148211,148211 +17158,17158 +144310,144310 +183346,183346 +72751,72751 +183887,183887 +359127,472 +141390,141390 +104814,104814 +260228,260228 +125861,125861 +9407,90002 +11494,11494 +40081,40081 +10618,10618 +421630,421630 +3062,3062 +197780,197780 +265527,265527 +361064,361064 +1065,1065 +17683,22509 +146962,146962 +99064,99064 +4837,4837 +13263,13263 +145277,96266 +343290,343290 +117885,80933 +6818,6818 +166443,166443 +387716,387716 +1138,1138 +394051,394051 +425018,425018 +398367,398367 +421915,421915 +380709,380709 +378011,79510 +229705,229705 +411428,411428 +2264,2264 +194659,194659 +93577,93577 +406737,406737 +339710,339710 +429031,429031 +292999,292999 +42966,42966 +318439,318439 +413001,413001 +366984,366984 +348811,348811 +391836,391836 +366257,366257 +228075,2734 +406744,406744 +231545,231545 +326180,326180 +220592,220592 +145434,145434 +212960,19968 +324136,324136 +375619,375619 +109835,109835 +103281,103281 +383096,383096 +30902,30902 +19191,19191 +306698,306698 +111803,111803 +288604,394151 +424154,424154 +277804,277804 +353174,353174 +406933,406933 +33372,33372 +107357,107357 +393281,393281 +297375,279328 +179227,179227 +361596,361596 +50075,50075 +69371,69371 +141169,141169 +318954,318954 +402054,402054 +182868,182868 +213461,213461 +409578,409578 +35939,35939 +382836,382836 +327082,327082 +348000,348000 +18071,18071 +101700,101700 +389385,389385 +117709,117709 +180155,180155 +312763,223770 +100342,100342 +370267,370267 +257645,24310 +403682,403682 +309861,302071 +324868,324868 +250870,250870 +385274,385274 +111376,111376 +398656,398656 +380286,380286 +122242,22029 +261157,261157 +193459,193459 +46944,46944 +356131,238221 +89551,89551 +395374,54625 +5077,6862 +322009,322009 +370211,370211 +18325,18325 +267768,267768 +406226,406226 +424764,424764 +32387,32387 +259388,259388 +98192,98192 +308782,308782 +217331,217331 +210581,210581 +350338,350338 +421570,421570 +304986,304986 +8470,8470 +410290,410290 +16090,12140 +326092,326092 +29863,29863 +144495,42101 +284985,130680 +1689,1689 +236903,236903 +28105,5928 +363944,363944 +41859,41859 +69186,128780 +16705,16705 +376761,376761 +243640,243640 +77454,77454 +286535,286535 +357418,357418 +238615,13293 +353938,353938 +127498,127498 +410324,410324 +157414,157414 +56265,56265 +364990,364990 +39590,39590 +43243,22644 +17088,17088 +290680,290680 +154537,463 +284327,284327 +112833,112833 +76438,76438 +296669,296669 +197748,197748 +1192,1192 +291389,291389 +6903,6903 +406888,376587 +230647,43443 +185222,185222 +221298,221298 +66969,66969 +7040,7040 +276921,276921 +2477,2477 +20812,20812 +321263,321263 +416848,416848 +87927,87927 +253945,253945 +60488,60488 +25370,25370 +124716,124716 +181193,181193 +111858,111858 +326076,326076 +244923,244923 +30517,30517 +319325,319325 +2051,606 +35814,35814 +12230,3935 +160099,160099 +402813,402813 +55861,55861 +142859,142859 +15509,15509 +278886,278886 +34917,34917 +15121,15121 +208013,208013 +4843,4843 +258060,258060 +126703,126703 +96410,96410 +346459,346459 +123514,123514 +23891,23891 +125326,125326 +126664,126664 +9094,9094 +6917,6917 +363671,363671 +32855,32855 +340608,340608 +277107,277107 +382216,382216 +151215,77034 +51826,51826 +172874,172874 +42980,42980 +12956,12956 +131000,131000 +128800,128800 +32501,32501 +10175,10175 +173325,86169 +265142,265142 +146997,1472 +406862,406862 +347017,347017 +142653,142653 +24998,24998 +11726,11726 +167299,167299 +287934,287934 +395528,395528 +103755,103755 +176245,176245 +282842,282842 +265583,265583 +185393,185393 +241489,241489 +258474,195296 +203703,235344 +11848,11848 +156927,99120 +179956,179956 +13716,463 +294666,294666 +393347,393347 +102742,102742 +9070,9070 +332421,332421 +315572,229543 +123889,123889 +41137,41137 +300931,300931 +129693,129693 +13357,13357 +254008,254008 +260941,204583 +154682,154682 +131129,146333 +8220,8220 +3885,3885 +176115,176115 +262562,165041 +9393,9393 +179561,179561 +198214,198214 +197451,197451 +346538,63170 +357416,357416 +104778,104778 +347564,347564 +267988,267988 +209880,209880 +260233,260233 +20816,20816 +425682,425682 +410240,2165 +422121,164265 +26064,26064 +429749,429749 +292169,292169 +178406,178406 +158747,158747 +25223,25223 +163144,163144 +202727,202727 +416771,72050 +7759,7759 +199979,199979 +346641,346641 +413251,413251 +324209,324209 +329874,329874 +377418,113337 +334541,334541 +328830,328830 +42246,42246 +148191,148191 +352817,13293 +295019,295019 +268851,268851 +392495,392495 +407321,407321 +412179,412179 +345051,345051 +419035,419035 +32479,32479 +140596,140596 +37932,37932 +287806,287806 +402521,402521 +367654,367654 +266992,266992 +240395,240395 +412106,278553 +28321,16874 +354844,354844 +369405,369405 +23700,23700 +378792,378792 +325130,325130 +374993,2678 +422057,422057 +69886,69886 +191531,191531 +276616,276616 +361555,361555 +227936,227936 +146938,146938 +277273,463 +160410,160410 +300209,300209 +262444,262444 +11253,11253 +159021,159021 +293594,197790 +307028,307028 +404720,404720 +41288,41288 +274076,274076 +34130,34130 +168131,168131 +270878,270878 +360572,360572 +9827,9827 +23324,23324 +347614,347614 +265910,36903 +31578,31578 +181410,181410 +2750,89478 +414777,307534 +377632,377632 +419208,419208 +164391,164391 +316459,1421 +354715,354715 +326241,326241 +240895,240895 +419960,419960 +21295,21295 +8527,8527 +27643,27643 +94639,94639 +136180,136180 +107605,107605 +308855,308855 +430613,430613 +1214,1214 +25925,25925 +144865,144865 +14492,14492 +330283,330283 +164598,164598 +353575,353575 +294726,168549 +118294,118294 +63082,463 +390494,390494 +9911,9911 +6610,6610 +14277,14277 +145523,145523 +279414,279414 +2233,2233 +11702,11702 +38926,38926 +21386,21386 +321844,321844 +288876,288876 +267980,267980 +5582,5582 +25917,25917 +371438,463 +37611,37611 +17166,17166 +20024,20024 +22729,22729 +4187,4187 +32784,32784 +290906,290906 +171872,171872 +360209,360209 +9155,9155 +138217,138217 +192243,192243 +365634,365634 +233772,233772 +14597,14597 +191943,191943 +229161,229161 +424730,424730 +30800,30800 +37059,37059 +159245,159245 +3382,3382 +269169,269169 +175980,175980 +28430,28430 +422853,422853 +104819,104819 +394073,394073 +145765,145765 +65062,65062 +410624,410624 +267565,267565 +1046,1046 +7048,7048 +194534,176502 +267400,267400 +296576,296576 +178498,178498 +128716,85021 +158640,158640 +176859,176859 +216013,216013 +95083,95083 +66533,66533 +132556,132556 +383135,383135 +24267,24267 +330582,330582 +282506,282506 +313861,253215 +259525,259525 +85287,85287 +419642,345584 +255341,255341 +23863,23863 +13912,13912 +359189,359189 +122613,122613 +403136,403136 +5619,5619 +83933,83933 +73360,73360 +400663,400663 +146575,146575 +94518,94518 +323762,323762 +112698,112698 +25479,4848 +210308,210308 +26823,26823 +26535,26535 +5216,5216 +40478,40478 +325308,325308 +1336,1336 +40388,40388 +190329,190329 +79280,79280 +269148,269148 +11680,11680 +343831,343831 +18983,18983 +22008,22008 +26519,26519 +3939,3939 +3294,3294 +6706,6706 +391286,391286 +394438,394438 +305488,295555 +41532,41532 +106935,106935 +237766,237766 +7017,7017 +11277,11277 +325476,325476 +3798,3798 +5525,281655 +25627,25627 +235479,235479 +156545,156545 +17230,17230 +275280,105134 +253433,253433 +186843,186843 +5852,5852 +377051,377051 +311502,311502 +5738,5738 +259210,259210 +119639,119639 +9046,9046 +244090,144479 +22815,22815 +175868,175868 +131006,131006 +283241,283241 +147457,147457 +190530,43443 +220701,220701 +241006,241006 +37204,37204 +29080,29080 +342328,342328 +8753,8753 +182168,182168 +355035,355035 +80296,12346 +29821,29821 +306690,306690 +136523,136523 +29228,29228 +10249,10249 +57536,57536 +155994,155994 +5554,5554 +378285,378285 +7581,624 +389806,389806 +311497,311497 +33421,33421 +18613,4017 +294348,294348 +204410,204410 +53,53 +182023,182023 +301081,301081 +367346,367346 +246475,246475 +263375,263375 +377184,262974 +148329,148329 +427062,427062 +388469,388469 +411105,411105 +402716,402716 +359156,359156 +376109,376109 +430207,430207 +28715,28715 +173731,173731 +399304,399304 +395008,395008 +347316,347316 +234823,234823 +300543,300543 +381025,380975 +264215,264215 +385571,385571 +254049,254049 +20207,20207 +359555,359555 +162291,162291 +6987,6987 +277062,277062 +347399,347399 +256893,256893 +248362,463 +197092,197092 +429389,429389 +376373,226176 +30560,30560 +352498,352498 +33681,33681 +71849,71849 +155491,155491 +401598,401598 +365959,195137 +430161,430161 +154337,154337 +370638,370638 +271633,271633 +208105,232360 +353232,353232 +168182,168182 +93984,93984 +201399,201399 +288603,288603 +195478,211882 +365638,365638 +220377,220377 +7344,7344 +242619,242619 +9821,9821 +17374,17374 +28519,28519 +267744,267746 +302211,302211 +416726,416726 +183033,42101 +20998,20998 +16812,16812 +397432,397432 +349635,349635 +42665,42665 +313013,313013 +338653,338653 +413057,413057 +382185,382185 +36625,36625 +208360,208360 +147445,42448 +363648,363648 +367446,367446 +261124,261124 +248319,248319 +84960,84960 +410334,410334 +389407,18723 +280922,280922 +152370,152370 +5411,5411 +316421,1421 +111891,111891 +190829,168494 +418015,418015 +359790,359790 +363354,363354 +158836,158836 +333249,333249 +36709,36709 +28299,28299 +180547,5418 +415783,415783 +9397,9397 +240823,240823 +329394,329394 +8397,8397 +14407,14407 +23194,23194 +255597,255597 +379388,379388 +316462,1421 +257989,257989 +190529,186979 +316463,1421 +61206,61206 +411549,411549 +159969,159969 +39317,39317 +13739,13739 +242892,54625 +218383,218383 +429963,429963 +354843,354843 +6393,6393 +328033,235865 +39828,39828 +342281,342281 +9175,9175 +66954,66954 +183942,183942 +287285,235616 +14136,14136 +374447,374447 +208888,208888 +188754,188754 +301544,301544 +232344,232344 +23183,23183 +70012,70012 +32404,19657 +217212,217212 +69751,69751 +265047,43443 +19018,19018 +361488,361488 +98452,20610 +102238,102238 +502,502 +197544,181694 +281732,281732 +14113,14113 +272832,272832 +330049,330049 +8876,8876 +200753,200753 +29684,29684 +196240,196240 +151628,151628 +296789,296789 +262518,262518 +321602,32441 +18135,18135 +5707,5707 +40943,40943 +422181,422181 +420700,420700 +346141,346141 +4097,4097 +311356,311356 +213633,213633 +359033,359033 +10562,10562 +393322,393322 +184953,186979 +224328,224328 +328230,328230 +217838,217838 +234903,234903 +198634,198634 +379872,379872 +225441,225441 +113669,113669 +315883,2728 +227221,227221 +401711,43443 +391494,391494 +263992,263992 +428457,428457 +247948,247948 +286738,286738 +6406,6406 +1127,1127 +351487,168274 +335954,335954 +342593,342593 +9110,9110 +309094,11821 +7583,7583 +143842,143842 +343281,343281 +18461,18461 +235838,181906 +358285,358285 +307087,307087 +394886,394886 +2943,2943 +209562,209562 +358820,358820 +256915,256915 +22698,22698 +4679,8385 +194094,194094 +109825,109825 +37680,37680 +381400,381400 +265567,265567 +88130,88130 +6109,6109 +113517,113517 +369386,369386 +5300,5300 +230894,230894 +307375,307375 +426355,426355 +59414,59414 +19531,19531 +184439,184439 +368359,368359 +104351,104351 +211335,211335 +269887,269887 +3704,3704 +21622,21622 +13830,13830 +156822,156822 +175039,175039 +7917,7917 +15958,2884 +339291,339291 +372413,372413 +10033,10033 +90968,90968 +31858,31858 +173782,233872 +6526,6526 +14296,14296 +7777,7777 +7572,7572 +34218,195489 +264845,264845 +401102,401102 +338745,4001 +32410,32410 +281966,281966 +360238,360238 +98255,189944 +13535,13535 +191180,191180 +299130,299130 +340112,370398 +103601,103601 +32280,32280 +374018,374018 +15196,15196 +139675,139675 +114380,114380 +73247,4564 +392836,392836 +22344,22344 +196873,196873 +391829,391829 +9791,9791 +17391,17391 +63216,63216 +30838,30838 +325571,325571 +2958,2958 +238115,238115 +246142,246142 +428060,428060 +341939,341939 +382982,382982 +414348,414348 +29971,29971 +31521,31521 +357686,387197 +337978,337978 +375957,375957 +370819,370819 +248403,154838 +401076,401076 +429379,429379 +130636,130636 +186418,186418 +239995,239995 +213974,213974 +381598,381598 +405927,405927 +357840,357840 +391844,391844 +401146,401146 +363996,363996 +386370,386370 +218198,218198 +148086,148086 +356569,356569 +395252,395252 +421087,230553 +308478,308478 +367761,367761 +37462,37462 +405398,278553 +430762,218126 +405904,405904 +351980,256640 +339016,339016 +283345,21133 +148426,148426 +393482,393482 +308724,308724 +10458,10458 +386104,386104 +376950,376950 +397893,397893 +393130,393130 +315066,315066 +334225,334225 +130041,130041 +428279,283864 +321598,321598 +371002,371002 +138205,138205 +377709,377709 +167740,167740 +404883,404883 +27967,27967 +338668,338668 +122560,122560 +401166,401166 +429845,429845 +376882,376882 +414853,414853 +395764,206437 +8967,8967 +16756,16756 +353828,353828 +391128,391128 +404701,404701 +234722,54625 +310197,310197 +426126,426126 +388327,8098 +352929,352929 +399950,399950 +244086,144479 +363578,363578 +188520,188520 +406547,406547 +391856,391856 +259309,259309 +399350,399350 +280483,280483 +247768,247768 +355923,355923 +319356,319356 +266097,266097 +362321,362321 +42903,42903 +344612,344612 +19890,19890 +334568,334568 +191205,191205 +104029,104029 +32420,32420 +289951,289951 +359662,359662 +339489,339489 +10295,10295 +13304,13304 +239031,239031 +228233,228233 +29309,29309 +36664,36664 +346502,346502 +426362,426362 +293989,293989 +127709,127709 +127771,127771 +28458,28458 +379577,379577 +180797,180797 +393359,393359 +406907,406907 +38202,38202 +32322,32322 +17243,17243 +192885,192885 +17962,17962 +8895,8895 +337609,363718 +72170,72170 +15589,15589 +205476,205476 +334319,334319 +7080,7080 +9023,9023 +261996,261996 +191641,191641 +235988,235988 +8792,8792 +36250,463 +195569,85256 +121324,121324 +369979,369979 +369001,369001 +7130,8311 +110874,110874 +362736,362736 +66364,66364 +7018,7018 +427500,427500 +137931,137931 +178566,42101 +318323,318323 +114318,114318 +14974,14974 +123225,123225 +353600,353600 +276346,276346 +69826,69826 +356678,356678 +8809,8809 +26301,26301 +99043,99043 +71981,71981 +380555,85256 +8761,8761 +224041,224041 +65575,65575 +41021,41021 +332667,11476 +360832,360832 +343227,343227 +107063,107063 +231040,231040 +19971,19971 +362606,362606 +165604,165604 +382138,382138 +1343,1343 +428319,428319 +26117,26117 +353157,353157 +4611,4611 +12600,12600 +14506,14506 +244266,244266 +151422,151422 +8233,8233 +398991,398991 +351814,282581 +90167,90167 +115422,115422 +423729,423729 +300358,300358 +314497,314497 +178768,178768 +2243,463 +278600,278600 +40657,40657 +199689,199689 +22257,22257 +15139,15139 +162071,162071 +295455,295455 +268883,268883 +21412,21412 +329206,329206 +249199,26688 +419291,366194 +307348,307348 +5880,5880 +153509,153509 +396815,396815 +11344,11344 +24019,24019 +6954,6954 +354047,354047 +361921,361921 +8366,8366 +2753,2753 +9065,9065 +15484,15484 +355274,355274 +8788,8788 +31358,31358 +4147,4147 +7387,7387 +148427,148427 +381709,381709 +334627,134726 +269624,269624 +146067,146067 +117822,117822 +330704,54625 +187305,187305 +337958,337958 +32365,32365 +335819,335819 +278165,278165 +1665,1665 +153986,153986 +432488,432488 +1355,1355 +351422,351422 +126159,126159 +405559,405559 +7031,3571 +138325,138325 +324018,324018 +309816,309816 +3120,3120 +356245,356245 +370607,370607 +26956,26956 +362862,362862 +347924,347924 +270747,352055 +15008,15008 +218762,218762 +238408,238408 +244618,244618 +408136,408136 +144951,144951 +125724,125724 +399886,399886 +53344,53344 +419843,419843 +394349,394349 +401180,401180 +300394,300394 +423553,195421 +243443,243443 +319911,319911 +409729,409729 +376905,376905 +29434,29434 +433436,433436 +269444,269444 +423693,423693 +177451,177451 +361872,361872 +431872,431872 +428508,428508 +355113,355113 +104234,104234 +313887,313887 +196992,196992 +429478,267661 +217265,217265 +315746,315746 +203504,203504 +140773,140773 +129970,129970 +233786,233786 +390569,390569 +97727,97727 +39689,39689 +399654,399654 +283468,187590 +377630,377630 +432350,432350 +346952,346952 +280268,280268 +344923,344923 +288659,94259 +382924,382924 +428320,428320 +291953,291953 +403822,403822 +304526,304526 +28898,28898 +25897,25897 +198653,198653 +319425,122346 +276263,276263 +352445,352445 +38987,38987 +223132,223132 +336671,336671 +14209,14209 +247732,28219 +17197,17197 +193024,18460 +342909,342909 +378626,378626 +12296,12296 +362784,362784 +420722,420722 +378074,378074 +379995,379995 +131024,131024 +128484,128484 +230360,230360 +167855,167855 +288474,218007 +370165,370165 +257847,257847 +24015,24015 +306347,306347 +25876,25876 +269596,269596 +359593,359593 +401627,401627 +422123,164265 +205596,205596 +21942,21942 +113311,113311 +8253,8253 +10885,10885 +357797,357797 +262401,262401 +246154,246154 +336313,336313 +68063,6830 +67946,67946 +17539,17539 +320534,320534 +315051,315051 +85216,85216 +329294,329294 +316466,1421 +422855,131357 +67182,67182 +28727,28727 +316465,1421 +64844,64844 +425283,425283 +365986,365986 +64888,64888 +298150,298150 +352130,26117 +10242,10242 +122751,13936 +26075,26075 +135380,135380 +178610,178610 +412118,412118 +317314,317314 +10522,10522 +37114,37114 +184407,184407 +191642,191642 +72843,72843 +409052,55834 +202302,184440 +13686,83325 +30496,30496 +23572,23572 +8907,8907 +104957,104957 +306779,306779 +114188,114188 +341363,341363 +257958,257958 +232182,232182 +369876,369876 +300175,300175 +415829,415829 +23783,23783 +235525,235525 +255595,255595 +223359,223359 +136912,103016 +10405,10405 +417804,417804 +284598,165888 +417133,417133 +33606,33606 +176487,224108 +155763,155763 +378835,378835 +180257,180257 +370910,370910 +263879,263879 +37670,37670 +179994,179994 +28527,28527 +321688,321688 +419612,6830 +24884,24884 +337226,337226 +397347,397347 +17345,17345 +354726,354726 +180259,180259 +230917,230917 +370986,370986 +3469,3469 +183874,183874 +209428,209428 +39440,19427 +25901,25901 +420948,420948 +10635,10635 +10389,14396 +166771,166771 +183960,112844 +33288,33288 +15483,15483 +348968,574 +326762,326762 +224088,224088 +153506,153506 +215287,156420 +189975,189975 +13878,13878 +76120,76120 +252361,252361 +6408,6408 +341308,341308 +337612,337612 +18489,18489 +67869,67869 +133903,6830 +13465,13465 +23270,23270 +353128,353128 +2731,2731 +24644,24644 +85805,85805 +12387,12387 +198551,6830 +207043,207043 +269620,269620 +151078,151078 +363273,363273 +179679,179679 +19666,19666 +335968,335968 +266550,266550 +4799,4799 +400720,400720 +207965,207965 +368948,147949 +270326,270326 +207326,207326 +8451,8451 +147015,147015 +277083,277083 +9263,9263 +381203,381203 +381833,381833 +102097,102097 +11352,11352 +389815,389815 +42309,42309 +265715,265715 +17830,17830 +221643,221643 +326690,326690 +319716,211457 +227229,308856 +38286,8258 +261827,261827 +202566,202566 +213544,213544 +88085,88085 +298145,298145 +319715,211457 +8725,8725 +127823,127823 +141102,141102 +4360,4360 +388623,388623 +38141,38141 +293291,293291 +4864,4864 +264245,264245 +17195,17195 +183777,183777 +378055,378055 +147710,147710 +10214,10214 +97336,97336 +19417,19417 +17926,17926 +109718,109718 +332189,332189 +184011,184011 +16474,16474 +132616,28436 +55290,55290 +17510,17510 +347912,347912 +69356,69356 +32350,32350 +368272,368272 +347503,347504 +402366,258041 +270137,270137 +132302,132302 +10765,10765 +359748,359748 +192717,192717 +3033,3033 +290388,290388 +163697,163697 +36225,36225 +3494,3494 +167542,167542 +5678,5678 +6856,463 +11351,11351 +136563,136563 +8348,8348 +12737,12737 +16760,16760 +24189,24189 +12521,12521 +7539,2891 +7833,7833 +81561,81561 +129290,129290 +257612,257612 +247730,247730 +23061,23061 +238678,238678 +342804,342804 +343576,343576 +274387,274387 +320053,320053 +341334,341334 +264461,264461 +321504,321504 +231791,231791 +361816,361816 +420494,420494 +260932,260932 +268505,268505 +422309,422309 +270067,270067 +380853,380853 +178208,178208 +311788,311788 +411429,411429 +170928,170928 +323228,323228 +328841,328841 +350778,350778 +388558,388558 +423564,423564 +365513,365513 +136629,136629 +193311,193311 +396916,396916 +415822,415822 +332843,332843 +317498,317498 +307678,307678 +375908,375908 +257358,257358 +403912,403912 +265731,265731 +426283,426283 +166927,5953 +246975,246975 +388521,388521 +254928,254928 +134873,134873 +251785,251785 +5265,5265 +299223,299223 +312754,312754 +304894,220508 +234689,234689 +332578,332578 +310826,310826 +124095,124095 +338851,308652 +362019,463 +190549,190549 +198207,198207 +230480,230480 +260548,260548 +169736,463 +341258,341258 +336809,336809 +344136,344136 +330411,330411 +426836,426836 +368366,368366 +337134,337134 +236168,236168 +351374,351374 +368675,368675 +303586,303586 +294255,294255 +359614,359614 +227314,131024 +324289,324289 +406209,406209 +326136,326136 +403212,403212 +32947,32947 +93039,93039 +4450,4450 +373861,373861 +288943,288943 +17901,17901 +399132,399132 +225693,225693 +145065,144665 +154445,154445 +176919,176919 +196138,196138 +316493,281121 +39581,39581 +392427,392427 +127446,127446 +393504,393504 +404551,404551 +153126,153126 +212901,212901 +182780,182780 +364324,364324 +392097,392097 +210486,210486 +296330,296330 +238020,238020 +57064,57064 +4835,4835 +230781,230781 +21377,21377 +292148,292148 +21669,21669 +322810,322810 +110342,110342 +400863,400863 +11459,11459 +223388,223388 +390565,390565 +40682,2757 +93902,93902 +257883,257883 +13251,13251 +4818,4818 +42793,42793 +364167,364167 +7620,7620 +32712,32712 +360750,360750 +38779,38779 +239168,239168 +383466,383466 +10374,10374 +43315,43315 +322400,322400 +267916,267916 +361777,383452 +213681,213681 +6336,6336 +357638,357638 +73308,73308 +358753,358753 +5169,5169 +260560,260560 +410004,144728 +80028,80028 +149173,149173 +316457,1421 +195021,195021 +315596,315596 +352211,352211 +26764,22126 +207888,207888 +365603,365603 +6687,6687 +3805,3805 +342008,342008 +287870,287870 +336320,336320 +329099,329099 +394492,394492 +341246,341246 +147975,147975 +40417,40417 +284577,284577 +363096,127398 +356962,356962 +344246,344246 +394211,394211 +358278,358278 +180389,180389 +18099,9790 +14323,14323 +401395,284751 +344703,344703 +382610,382610 +10910,21769 +10568,10568 +167472,167472 +99776,99776 +235248,235248 +320687,320687 +86889,86889 +227525,227525 +32462,32462 +182333,182333 +377723,377723 +12877,12877 +28199,28199 +29981,29981 +113402,113402 +220976,220976 +248839,248839 +245741,245741 +211212,211212 +252404,252404 +312057,312057 +20027,20027 +7006,1721 +243707,243707 +25043,25043 +16584,16584 +17619,17619 +290066,290066 +8759,8761 +406299,324856 +19254,463 +169462,169462 +212097,212404 +152167,152167 +243424,243424 +305214,305214 +343480,343480 +161774,161774 +270505,181906 +161420,161420 +7476,220988 +38349,463 +206497,206497 +36666,36666 +23323,23323 +406863,406863 +150978,150978 +30865,30865 +244079,244079 +129287,129287 +353019,353019 +6621,6621 +32406,32406 +138703,11 +41328,41328 +131163,131163 +202945,202945 +158228,158228 +26608,26608 +1954,1954 +265476,265476 +297428,62952 +148179,148179 +256160,256160 +18251,18251 +24373,24373 +22991,22991 +375745,375745 +405718,405718 +93134,93134 +59948,59948 +89442,89442 +394751,394751 +251795,251795 +42311,42311 +21413,21413 +3760,3760 +377809,377809 +421020,421020 +12519,12519 +203122,203122 +2014,2014 +351644,351644 +335745,335745 +22074,22074 +258774,258774 +404475,193867 +731,731 +376934,376934 +13934,13934 +187739,187739 +32458,32458 +451,451 +302420,302420 +2861,22094 +129695,129695 +2495,2495 +326582,326582 +336054,336054 +146916,146916 +31181,31181 +258441,258441 +151089,151089 +61451,61451 +292070,281515 +298254,298254 +10380,10380 +1069,1069 +274053,274053 +181969,181969 +171087,171087 +339703,339703 +136246,136246 +186316,186316 +140680,146333 +37222,37222 +11585,11585 +178487,178487 +357654,357654 +244533,244533 +81509,81509 +223745,223745 +167723,1512 +237089,237089 +312770,312770 +149726,8098 +66372,66372 +331653,331653 +286308,225481 +6454,6454 +365749,365749 +283496,283496 +303542,303542 +378362,378362 +140610,140610 +25677,25677 +356615,143884 +284576,231876 +31660,31660 +268646,268646 +388571,388571 +41084,41084 +3516,3516 +85123,85123 +218981,218981 +130682,130682 +96420,4862 +174595,308652 +422753,422753 +425469,425469 +297541,297541 +365602,365602 +246615,246615 +376108,376108 +339441,339441 +416101,416101 +251005,251005 +7654,7654 +418388,418388 +347333,347333 +276059,276059 +301075,301075 +347055,347055 +359553,359553 +401138,401138 +301570,301570 +426713,426713 +241432,241432 +91000,91000 +324671,198832 +283912,283912 +404556,404556 +288015,288015 +313141,313141 +323067,323067 +237344,237344 +203446,203446 +425713,425713 +373086,373086 +29317,29317 +2151,2151 +334897,334897 +431308,318243 +267252,267252 +6278,6278 +423675,366458 +376053,376053 +10442,10442 +417980,417980 +364430,364430 +8345,8345 +329195,329195 +256055,256055 +260630,181889 +316237,316237 +312465,312465 +421358,421358 +215039,215039 +429895,224783 +421204,421204 +392483,392483 +290032,290032 +287905,287905 +405683,405683 +150618,150618 +271944,271944 +248891,248891 +429150,429150 +407702,407702 +420975,254683 +347929,347929 +377404,377404 +424978,424978 +337273,337273 +326488,326488 +400958,400958 +24869,24869 +425123,425123 +37015,37015 +151846,151846 +168626,168626 +16590,16590 +69645,69645 +54608,54608 +13334,13334 +119864,119864 +303297,303297 +299687,299687 +413124,272533 +366438,366438 +166764,166764 +93650,11689 +363546,363546 +377392,377392 +1929,1929 +14956,14956 +326068,326068 +64011,64011 +317300,317300 +220542,220542 +275464,275464 +165793,165793 +417856,417856 +39774,39774 +274204,274204 +224325,224325 +381689,381689 +333577,333577 +72523,72523 +403186,403186 +364347,364347 +246893,246893 +10247,10247 +83480,83480 +262213,169927 +337762,337762 +260206,43443 +13825,13825 +3982,3982 +346953,346953 +417450,417450 +363491,180845 +422183,422183 +12734,12734 +425712,425712 +36589,36589 +224324,224324 +217723,217723 +236313,236313 +420326,420326 +347749,347749 +256306,256306 +39146,39146 +164563,198537 +25301,25301 +235399,235399 +159970,20192 +143391,143391 +208087,184440 +5286,5286 +241525,241525 +270205,270205 +423016,423016 +342995,342995 +346015,346015 +427162,427162 +56412,56412 +338727,338727 +375912,375912 +399957,399957 +24862,29278 +377479,377479 +252327,252327 +19784,19784 +183832,183832 +229158,229158 +22878,22878 +82321,82321 +174403,174403 +373705,369918 +167332,167332 +22273,22273 +341870,245655 +359317,359317 +99385,99385 +88483,88483 +195469,195469 +19040,19040 +219195,219195 +319598,319598 +126174,126174 +110295,110295 +376742,376742 +256441,256441 +11441,11441 +191534,191534 +373760,232595 +28557,28557 +59070,59070 +400849,400849 +16573,16573 +298543,298543 +12034,21052 +351887,351887 +63688,63688 +13829,13829 +330354,330354 +37432,37432 +373855,257991 +11548,11548 +202517,202517 +192032,192032 +180666,267397 +317941,317941 +168353,168353 +394551,394551 +50698,50698 +250705,250705 +14724,14724 +16795,16795 +761,761 +424754,424754 +232660,232660 +21990,21990 +291869,291869 +364113,364113 +24227,24227 +144184,144184 +9032,9032 +11924,11924 +7207,7207 +406750,1117 +402936,402936 +113332,113332 +130048,130048 +362888,362888 +183049,144632 +369912,369912 +2854,2854 +33625,33625 +154721,154721 +413170,413170 +184900,184900 +158636,158636 +362931,362931 +321023,321023 +25631,25631 +293496,293496 +86587,86587 +301284,301284 +99555,99555 +265620,265620 +6361,5893 +197632,197632 +325570,325570 +354055,354055 +332779,332779 +19012,19012 +294648,463 +394723,13 +39685,39685 +182707,271460 +417243,417243 +425646,425646 +307657,307657 +130498,130498 +350267,350267 +356115,356115 +250951,250951 +183043,183043 +170586,170586 +9941,9941 +419472,419472 +419131,419131 +241205,241205 +36649,36649 +38993,38993 +150539,74 +192728,192728 +21957,40823 +613,613 +406595,406595 +38345,463 +217680,217680 +169984,169984 +21093,21093 +429861,429861 +15128,15128 +27939,27939 +59308,59308 +316598,316598 +300031,300031 +139640,139640 +303002,303002 +352811,352811 +251445,309030 +412535,412535 +239705,239705 +294251,294251 +6087,6087 +25435,801 +208145,208145 +1686,1686 +13115,13115 +285543,285543 +10509,10509 +22651,22651 +3039,3039 +408540,342135 +161835,161835 +238714,238714 +103749,103749 +263403,263403 +172555,2838 +4232,4232 +157435,157435 +16549,16549 +372857,372413 +109152,109152 +15341,15341 +111635,111635 +127805,127805 +370772,370772 +243708,243708 +383177,383177 +93530,93530 +7963,3901 +132406,132406 +119525,119525 +266367,266367 +45755,45755 +386915,386915 +370296,370296 +336645,336645 +360339,9203 +408992,408992 +351866,351866 +173448,173448 +24401,24401 +246606,246606 +403145,403145 +385604,385604 +324400,324400 +29515,29515 +419846,419846 +287706,287706 +27221,27221 +368300,368300 +425856,425856 +401712,401712 +222724,222724 +174592,308652 +420792,420792 +200218,200218 +247788,247788 +360976,360976 +312774,312774 +142740,142740 +390350,70222 +319033,38786 +333614,333614 +72994,72994 +338975,338975 +321038,321038 +433797,433797 +192138,264685 +130884,130884 +431208,349051 +305949,305949 +107684,107684 +217096,217096 +362994,362994 +299786,299786 +383322,383322 +399760,399760 +372740,372740 +193225,193225 +127684,127684 +423305,423305 +332232,332232 +183030,183030 +432033,432033 +258371,258371 +147660,147660 +167254,167254 +272442,272442 +424745,424745 +14734,14734 +402845,402845 +23808,23808 +7468,7468 +175743,175743 +270604,270604 +273396,273396 +433924,433924 +360486,360486 +7982,7982 +232879,232879 +283213,283213 +324804,324804 +20359,20359 +6807,6807 +346544,346544 +216429,216429 +396716,396716 +18354,18354 +245692,245692 +374042,374042 +94146,94146 +35953,35953 +336711,336711 +292608,292608 +329091,329091 +197297,49276 +348171,348171 +21369,1442 +362615,362615 +336672,336672 +18591,18591 +289978,289978 +306898,40544 +28408,28408 +414550,414550 +367775,367775 +420090,254188 +179277,179277 +291382,319097 +65094,65094 +396541,236072 +393669,42673 +11095,11095 +322555,322555 +195840,195840 +164747,209644 +313934,8829 +218721,218721 +153428,153428 +402307,402307 +244448,244448 +105129,105129 +385327,385327 +372889,372889 +316075,316075 +285605,285605 +112536,112536 +362008,362008 +64208,64208 +26151,38545 +67947,67947 +347159,188784 +68046,68046 +320846,320846 +421929,421929 +262761,262761 +28075,28075 +28296,28296 +370134,370134 +11176,11176 +308773,56022 +145183,463 +12069,12069 +2015,2015 +284329,284329 +28323,28323 +180266,180266 +154388,154388 +12979,157449 +428268,428268 +260297,260297 +186753,186753 +312570,145642 +66044,66044 +198776,43443 +6498,6498 +263419,263419 +420509,420509 +372818,372818 +150992,150992 +233721,233721 +291335,291335 +10849,10849 +171280,171280 +311680,182228 +346469,346469 +34109,34109 +253541,253541 +107031,107031 +409742,409742 +169309,169309 +376656,376656 +117689,117689 +67912,26233 +322772,322772 +37332,37332 +3425,3425 +309665,309665 +29372,29372 +284582,284582 +102741,102741 +33794,33794 +13065,13065 +16277,16277 +73390,73390 +112178,112178 +355439,355439 +14164,14164 +17635,17635 +18797,18797 +275293,238221 +2473,687 +262389,262389 +208406,208406 +6902,6902 +32683,32683 +321714,321714 +375701,375701 +314115,314115 +97050,97050 +209258,209258 +10602,10602 +86798,86798 +99952,50 +18373,18373 +243749,243749 +36883,36883 +228612,228612 +152621,152621 +184443,184443 +41546,41546 +131126,131126 +370283,370283 +319087,319087 +228903,228903 +310042,310042 +46781,46781 +11547,11547 +166972,166972 +247807,247807 +226597,226597 +59226,59226 +85474,85474 +5413,5413 +110160,110160 +289230,289230 +11414,11414 +194033,194033 +106821,106821 +21717,21717 +330568,330568 +285524,285524 +11055,16186 +316623,316623 +12317,12317 +357868,357868 +147039,147039 +5797,5797 +333515,333515 +193296,193296 +165952,165952 +873,873 +3946,3946 +31138,31138 +362532,362532 +3239,3239 +416800,416800 +9580,9580 +271332,267988 +167948,167948 +341404,341404 +424515,38949 +376985,308720 +5934,5934 +131304,131304 +10915,10915 +7433,7433 +29913,29913 +37500,37500 +7131,7131 +210019,210019 +153077,153077 +37072,37072 +361386,361386 +210350,210350 +49435,49435 +322685,322685 +180877,180877 +198206,198206 +369813,357298 +10008,10008 +278368,278368 +6604,6604 +426095,54625 +30330,30330 +406470,406470 +288874,206437 +375438,375438 +358802,358802 +153102,153102 +307,307 +11219,11219 +191206,146451 +183480,183480 +66950,63849 +10475,10475 +15334,15334 +406764,406764 +2032,2032 +283118,96345 +25228,25228 +205279,205279 +34977,238305 +29226,29226 +2048,2047 +223830,223830 +359646,359646 +218313,218313 +178843,178843 +424758,424758 +172510,172510 +265728,265728 +1560,1560 +27756,27756 +304492,304492 +154878,154878 +344394,344394 +13921,4564 +286714,286714 +373127,373127 +288493,288493 +199801,199801 +293101,463 +153516,153516 +3569,3569 +277371,2471 +289783,289783 +181456,181456 +96782,96782 +242547,242547 +54140,66665 +218473,218473 +302906,302906 +40948,40948 +385988,385988 +145715,145715 +256917,256917 +166248,166248 +167468,167468 +223762,223762 +319378,319378 +313603,313603 +371555,371555 +162062,162062 +389185,389185 +419113,419113 +169737,463 +175696,39786 +339661,339661 +412144,412144 +425768,425768 +301675,301675 +429661,429661 +289980,289980 +383014,383014 +339046,339046 +349796,349796 +352061,352061 +428351,43022 +346204,346204 +398559,398559 +26873,26873 +393762,3573 +289379,289379 +282725,282725 +397738,397738 +325158,325158 +295128,295128 +352837,463 +369132,369132 +416748,297999 +380027,380027 +234479,234479 +8262,8262 +342945,342945 +416486,416486 +13252,13252 +382824,382824 +255468,255468 +286792,286792 +378872,378872 +255133,255133 +32472,32472 +324642,324642 +388582,388582 +216709,216709 +421872,421872 +340829,340829 +334234,334234 +380978,380978 +250876,250876 +103258,103258 +427028,427028 +15220,33018 +211529,211529 +257214,257214 +234713,161726 +344275,344275 +365690,365690 +358780,358780 +363323,363323 +18350,18350 +405135,401325 +358107,358107 +296998,296998 +105040,105040 +362669,362669 +343407,343407 +29741,29741 +223501,223501 +58250,58250 +72311,72311 +38472,38472 +12794,12794 +217206,217206 +121780,121780 +388353,388353 +384152,384152 +313109,313109 +333572,333572 +135089,135089 +266898,266898 +415724,308028 +376948,376948 +12222,12222 +300379,11821 +421192,421215 +353816,353816 +368426,368426 +351889,351889 +169448,169448 +355260,355260 +21132,21132 +359744,359744 +167311,167311 +205987,205987 +276202,66214 +222658,222658 +368339,368339 +289793,463 +410206,410206 +88971,88971 +203098,203098 +405711,405711 +340830,340829 +91365,91365 +28455,28455 +316471,1421 +86429,86429 +233225,233225 +20605,20605 +65333,65333 +290144,290144 +395515,395515 +27928,27928 +405565,405565 +132727,132727 +248004,248004 +58193,58193 +299126,299126 +309585,309585 +15024,15024 +8414,8414 +69599,69599 +27876,27876 +63148,63148 +38660,38660 +372882,372882 +87581,87581 +2595,2595 +316461,1421 +102782,102782 +304353,202026 +123641,123641 +371310,371310 +407008,407008 +247297,247297 +346561,346561 +432456,432456 +362375,362375 +267750,180845 +20938,20938 +27634,27634 +6894,6894 +281524,281524 +39514,39514 +108790,108790 +36645,36645 +353743,353743 +275979,275979 +132262,132262 +11424,11424 +164529,164529 +158749,158749 +153964,153964 +277033,277033 +333816,333816 +38428,38428 +313964,206437 +144333,144333 +189068,189068 +409510,409510 +14691,14691 +282045,282045 +22040,22040 +289045,289045 +35893,35893 +364390,364390 +276278,276278 +11198,11198 +356477,356477 +215609,186905 +6762,6762 +3654,3654 +335859,188347 +333251,333251 +139108,139108 +19707,19707 +341702,341702 +201227,201227 +2501,2501 +43411,154934 +341154,341154 +358799,358799 +37694,37694 +267042,267042 +21207,21207 +9401,9391 +179440,179440 +8899,8899 +178930,178930 +286018,286018 +19158,19158 +265916,265916 +335652,335652 +300755,300755 +368128,463 +392110,392110 +398035,398035 +135431,135431 +99166,4209 +18042,18042 +60699,60699 +404045,183685 +65599,65599 +139690,139690 +77577,77577 +38230,38230 +286747,286747 +6111,6111 +137492,93 +336648,336648 +9232,9232 +367558,2609 +9681,9681 +197571,197571 +245131,321 +62626,62626 +42477,42477 +215227,463 +332017,332017 +222399,222399 +302676,302676 +11773,11773 +23613,23613 +260543,260543 +3338,3338 +162905,220988 +119471,119471 +225480,225480 +5922,5922 +137354,137354 +101898,101898 +349255,349255 +346747,346747 +3983,5217 +329577,329577 +14746,14746 +7802,7802 +7022,7022 +41091,41091 +369978,369978 +159407,159407 +174404,174404 +121331,121331 +2558,2558 +246543,4218 +395478,395478 +12154,12154 +64219,2381 +338025,338025 +65105,65105 +192207,209562 +41307,41307 +4712,4712 +325235,295605 +232412,232412 +296651,296651 +73252,12947 +73250,73250 +28841,28841 +393196,393196 +185069,185069 +335350,335350 +388395,388395 +198453,198453 +411440,554 +13414,13414 +85938,85938 +23831,23831 +71054,71054 +77148,77148 +140195,140195 +432487,432487 +202025,149621 +83803,83803 +1956,1956 +7019,7019 +195804,195804 +12801,12801 +155690,155690 +6184,6184 +182634,182634 +280482,280482 +1211,5178 +177411,99698 +349091,349091 +344973,344973 +6747,6747 +107718,107718 +392809,392809 +377982,355923 +40653,40653 +133104,133104 +236537,236537 +210023,210023 +165679,165679 +339140,339140 +101660,141997 +328664,328664 +195340,195340 +111327,111327 +22205,22205 +329842,329842 +19719,19719 +409976,409976 +11422,11422 +139758,139758 +268850,268850 +333750,333750 +285526,285526 +170120,170120 +178937,178937 +210387,210387 +342211,342211 +173931,4802 +334085,334085 +27949,27949 +333986,333986 +12291,12291 +367378,367378 +196165,196165 +376557,376557 +215007,215007 +99304,99304 +24400,24400 +174617,174617 +299373,299373 +245125,245125 +432717,432717 +366559,366559 +427005,427005 +288898,288898 +205489,205489 +284109,284109 +410274,336811 +416030,416030 +409331,336811 +155425,155425 +275038,275038 +276777,276777 +297325,297325 +199961,199961 +347046,347046 +344342,344342 +195407,195407 +211022,211022 +383554,383554 +322241,98120 +323057,323057 +21275,4862 +396893,396893 +246605,246606 +428009,428009 +344935,287893 +369153,369153 +423451,423451 +325347,21685 +121292,121292 +6158,6158 +270165,270165 +360026,360026 +366913,366913 +352765,352765 +367937,367937 +359482,359482 +156640,156640 +359914,359914 +379351,379351 +22018,22018 +278319,278319 +59950,59950 +185814,185814 +309782,309782 +361644,361644 +308355,299223 +402934,402934 +421360,421360 +316602,316602 +376100,376100 +257050,257050 +134987,89383 +7603,7603 +128308,128308 +370979,370979 +239230,239230 +188747,188747 +406502,406502 +347878,347878 +114062,2891 +235213,235213 +203665,180416 +416745,416745 +168924,18985 +292715,292715 +291984,291984 +267407,267407 +336673,336673 +91017,91017 +265048,265048 +395405,395405 +19564,19564 +395614,395614 +299682,299682 +211803,211803 +407579,407579 +151715,151715 +301528,301528 +70461,70461 +41007,41007 +28480,28480 +94343,252987 +250388,250388 +349180,349180 +42224,42224 +352519,352519 +285770,285770 +396006,156878 +151997,151997 +135610,135610 +419681,419681 +422805,234190 +322382,322382 +12680,12680 +303971,303971 +223676,223676 +328398,328398 +86578,86578 +193531,25727 +160962,36367 +419922,419922 +3465,3465 +41162,41162 +28629,28629 +20901,20901 +381440,334307 +42476,42476 +216848,216848 +422754,422754 +199129,204895 +86262,86262 +178453,178453 +242518,242518 +29151,29151 +356788,356788 +130667,130667 +43792,43792 +257921,257921 +16108,16108 +236458,236458 +14818,80044 +118359,118359 +166769,166769 +325637,1421 +876,876 +37560,37560 +382357,313543 +425693,425693 +345886,345886 +376482,376482 +3938,3938 +160961,36367 +311585,311585 +174748,174748 +331948,267832 +54037,54037 +19171,321727 +196664,196664 +354391,354391 +419204,419204 +10228,10228 +9314,9314 +37376,883 +262623,262623 +176485,176485 +325381,160409 +8430,8430 +333016,333016 +378625,378625 +19126,19126 +356334,356334 +69637,69637 +33371,33371 +27347,132601 +231132,231132 +131242,138518 +19847,19847 +150661,150661 +24656,24656 +212098,212404 +150276,264282 +410184,410184 +283853,283853 +374680,374680 +204681,204681 +311167,311020 +337834,337834 +9385,463 +239620,239620 +44993,44993 +93352,93352 +379163,360956 +239116,239116 +256269,256269 +244168,244168 +324739,324739 +103391,103391 +194994,194994 +33876,14441 +212629,212629 +229482,229482 +188441,188441 +211202,153723 +271225,20545 +124152,255702 +6089,463 +21597,21597 +138316,138316 +11492,11492 +193217,193217 +413548,413548 +259833,259833 +427598,427598 +95567,95567 +245600,245600 +18949,18949 +21772,21772 +184311,184311 +8419,8419 +345475,325834 +43017,463 +337585,337585 +113544,113544 +10966,10966 +223971,223971 +350028,125675 +159843,11821 +3096,3096 +4876,4876 +194819,194819 +209718,209718 +148215,148215 +4607,4607 +172940,127784 +432145,432145 +387393,387393 +259795,259795 +10645,10645 +271190,271190 +27070,27070 +362779,362779 +88460,88460 +247421,289601 +420687,420687 +29444,29444 +155021,155021 +7016,7016 +139963,139963 +56098,56098 +40115,2381 +430083,430083 +243343,243343 +108088,108088 +369563,369563 +40790,40790 +214759,214759 +231507,231507 +284188,284188 +307374,307374 +286572,286572 +157148,12318 +148762,148762 +3512,3512 +190803,190803 +258756,258756 +118697,81850 +3881,3881 +271827,315913 +56759,56759 +286365,286365 +322554,322554 +4029,4029 +145980,145980 +270377,270377 +240577,240577 +66254,66254 +351067,351067 +386364,386364 +15598,15598 +87829,87829 +283754,283754 +234052,234052 +282347,282347 +314565,314565 +6404,6404 +78247,78247 +256944,206437 +327838,327838 +345736,345736 +260707,376612 +20959,20959 +230560,230560 +398321,398321 +12464,12464 +254579,254579 +261492,63682 +243700,243700 +36647,36647 +249785,249785 +2557,105134 +9876,9876 +70376,70376 +186808,186808 +353647,353647 +370125,370125 +373450,373450 +153423,285273 +7248,7248 +10842,10842 +37502,37502 +304022,304022 +25920,25920 +266528,266528 +300138,300138 +70279,70279 +11464,463 +18805,18805 +292379,292379 +257246,338750 +301061,185302 +55663,55663 +131450,131450 +2188,2188 +154794,154794 +333565,333565 +179976,179976 +390178,390178 +315970,315970 +423266,423266 +10354,10354 +380427,380427 +413923,413923 +381139,381139 +430046,430046 +18154,18154 +248933,248933 +308599,308599 +39064,39064 +416777,416777 +418829,418829 +155756,155756 +270656,270656 +122237,122237 +248382,248382 +24350,24350 +296407,296407 +15946,15946 +412176,412176 +211024,211024 +292816,309501 +430699,430699 +410609,423305 +311821,311821 +321518,321518 +416309,33259 +332185,332185 +251851,177823 +429585,429585 +297256,297256 +391980,391980 +367980,367980 +169776,463 +24699,24699 +179797,179797 +292649,292649 +268826,268826 +373287,373287 +378827,378827 +188691,188691 +19019,19019 +113940,113940 +58299,58299 +96114,96114 +363062,363062 +416537,416537 +286033,286033 +216157,236305 +387837,387837 +124170,124170 +389679,389679 +418140,418140 +386213,386213 +235800,235800 +236934,137958 +173405,173405 +7545,7545 +410442,410442 +266897,266897 +415371,89319 +160013,160013 +127062,127062 +188398,188398 +424146,424146 +373128,373128 +235840,235840 +33181,33181 +319148,319148 +429900,429900 +406850,406850 +197107,197107 +171320,171320 +426082,426082 +209094,209094 +23235,23235 +27222,27222 +18029,18029 +320582,36553 +326242,326242 +113309,113309 +402765,402765 +293846,293846 +150682,150682 +401393,401393 +219420,219420 +316969,316969 +173131,173057 +35968,35968 +16210,16210 +20928,20928 +417486,417486 +319099,279366 +137429,137429 +273920,273920 +33520,33520 +391216,391216 +81432,81432 +379623,379623 +378574,69789 +340691,195450 +121050,121050 +33634,33634 +184709,174037 +8029,8029 +216015,216015 +410214,410214 +327019,327019 +413380,413380 +33657,33657 +190740,54625 +286279,286279 +363066,169215 +254616,254616 +26676,26676 +347606,6830 +419328,419328 +98736,98736 +61272,61272 +199593,169102 +174101,42101 +103042,103042 +340169,340169 +110052,110052 +71542,71542 +383705,383705 +289788,463 +284757,284757 +265023,265023 +26762,26762 +128345,128345 +8242,8242 +188948,188948 +418883,418883 +22404,22404 +14953,14953 +8193,8193 +145759,145759 +212972,212972 +404291,404291 +103264,103264 +412436,412436 +185032,185032 +11343,11343 +355197,355197 +178849,178849 +22939,22939 +264283,264283 +310228,310228 +14165,14165 +222960,222960 +372472,372472 +309104,309104 +173443,173443 +311263,311263 +347219,347219 +231654,231654 +68717,68717 +87873,87873 +408073,408073 +194808,143487 +233289,233289 +329154,329154 +296148,296148 +108991,108991 +316464,1421 +410109,410109 +109950,109950 +153513,153513 +214162,6830 +7056,7056 +333570,333570 +106185,106185 +387844,387844 +170917,170917 +378136,147020 +414668,414668 +18703,18703 +350572,350572 +381552,381552 +334341,14441 +40910,40910 +16123,16123 +8231,8231 +9294,105134 +197798,197798 +15912,15912 +405790,405790 +192805,192805 +154327,154327 +273389,273389 +290750,290750 +30864,30864 +72349,72349 +30016,30016 +58519,160592 +374516,374516 +69642,69642 +249529,249529 +340252,760 +42644,8790 +274038,274038 +207797,207797 +115092,115092 +293464,293464 +69465,69465 +65201,65201 +270009,270009 +386862,386862 +36486,36486 +374865,374865 +375445,375445 +346236,278824 +28583,28583 +389138,67182 +294241,294241 +405015,405015 +129585,129585 +7113,1421 +264251,264251 +122581,122581 +17490,17490 +156473,156473 +408250,408250 +343718,343718 +286001,193483 +284815,13 +39706,39706 +26635,297569 +3718,3718 +134569,134569 +338117,158572 +421255,421255 +57287,57287 +332171,332171 +187277,187277 +281659,281659 +1735,2290 +369627,369627 +123930,123930 +9138,9138 +327648,327648 +41740,41740 +232262,232262 +346339,294235 +89611,89611 +218667,218667 +355644,355644 +150134,150134 +164072,38679 +126728,126728 +8962,8962 +120002,120002 +10451,10451 +332399,332399 +162640,162640 +25489,25489 +414104,414104 +14142,14142 +209040,209040 +278260,278260 +268250,235344 +400790,344050 +89396,89396 +187816,187816 +165485,186979 +123055,123055 +5039,5039 +328784,328784 +8919,8919 +320019,320019 +382581,382581 +144352,85633 +279861,41916 +14902,14902 +290163,255335 +145911,145911 +5236,5236 +30204,30204 +18257,18257 +322087,322087 +295687,295687 +4410,327 +231417,231417 +75224,75224 +321257,321257 +12304,12304 +231503,231503 +95069,95069 +344285,344285 +378042,378042 +10378,10378 +32324,32324 +126597,126597 +226169,226169 +7199,7199 +269767,269767 +8565,8565 +240958,240958 +11235,11235 +309825,309825 +176286,176286 +236123,236123 +424149,103814 +247933,247933 +10309,10309 +160391,160391 +274754,274754 +11402,11402 +291384,291384 +243230,243230 +11471,11471 +207185,207185 +283249,283249 +636,636 +340080,340080 +374438,374438 +192975,192975 +167080,167080 +383587,383587 +5231,5231 +224997,224997 +293653,293653 +319358,319358 +2545,2545 +198493,198493 +372375,372375 +304068,304068 +165056,165056 +262749,3818 +9623,9623 +6527,6527 +215919,215919 +358385,358385 +126222,126222 +39180,39180 +317731,317731 +32196,32196 +415508,415508 +10372,10372 +107958,107958 +148376,148376 +4963,4963 +196667,176435 +176898,176898 +261903,261903 +204142,204142 +39544,39544 +39338,39338 +355249,355249 +3699,14441 +145271,145271 +31663,31663 +402231,402231 +346443,346443 +287965,287965 +25001,25001 +1354,1354 +43545,43545 +85222,85222 +253861,253861 +69842,69842 +111547,111547 +253937,253937 +406860,406860 +313875,226506 +13440,13440 +272364,272364 +270232,270232 +137750,137750 +107402,107402 +39087,39087 +329579,329579 +352625,352625 +198269,198269 +335733,335733 +144135,144135 +11394,11394 +396426,396426 +19167,19167 +370405,370405 +373467,373467 +207583,207583 +31305,31305 +95066,95066 +142965,163343 +11480,11480 +307647,307678 +176977,176977 +179519,308652 +207045,207045 +379906,379906 +334501,334501 +173002,173002 +237214,237214 +432570,432570 +421638,421638 +419136,419136 +338640,338640 +411217,411217 +208410,208410 +361002,361002 +425443,425443 +399719,399719 +154779,154779 +368552,39217 +225989,225989 +193096,193096 +392697,22877 +328473,328473 +367249,367249 +430526,359315 +432944,432944 +419231,419231 +203503,203503 +372622,372622 +263369,263369 +410086,410086 +272537,272537 +182947,182947 +383117,383117 +348155,348155 +404804,404804 +127179,127179 +415135,415135 +188456,188456 +401459,401459 +34090,34090 +72213,72213 +208341,208341 +27061,27061 +27711,27711 +246773,246773 +235225,235213 +28761,28761 +178633,4564 +210024,210024 +125496,125496 +130788,130788 +184507,40455 +113243,113243 +61920,61920 +61453,61453 +317052,317052 +40540,313141 +160211,160211 +380329,380329 +424570,424570 +326183,326183 +107761,107761 +354470,354470 +34105,34105 +425827,386198 +274908,117558 +169373,169373 +354486,354486 +25095,25095 +345045,345045 +432052,432052 +364867,364867 +406210,406210 +184520,184520 +390663,390663 +220144,220144 +299911,5504 +339341,339341 +143009,143009 +373881,373881 +245475,245475 +150275,150275 +269445,269445 +7983,7983 +180268,180268 +113690,113690 +10438,10438 +262222,381197 +381420,381420 +157696,157696 +425226,425226 +251472,251472 +421410,421410 +159655,159655 +202079,202079 +137087,137087 +64130,64130 +57166,57166 +284355,284355 +428630,428630 +193286,43443 +330712,330712 +427596,427596 +225586,225586 +310925,310925 +175262,175262 +290773,272853 +372817,372817 +252084,362023 +363342,363342 +8223,8223 +360284,360284 +421973,421973 +18066,1722 +83604,83604 +175842,175842 +103421,103421 +266098,266098 +329634,329634 +20531,20531 +426085,426085 +87184,87184 +356708,356708 +273929,273929 +419122,419122 +4773,4773 +295156,295156 +207957,26582 +169396,241805 +35827,18817 +385950,351765 +3436,3436 +23317,23317 +273919,273919 +108482,108482 +288422,288422 +412679,412679 +13531,13531 +3055,3055 +386469,130680 +19785,19785 +8543,8543 +147163,147163 +383987,383987 +318365,318365 +29712,29712 +355634,355634 +16604,16604 +228716,228716 +137472,137472 +32292,32292 +13949,13949 +317803,317803 +217950,215069 +36472,36472 +211853,148280 +144182,144182 +179349,179349 +7788,7788 +28203,148183 +28398,28398 +296571,296571 +401593,401593 +123512,123512 +86599,86599 +359518,359518 +38894,38894 +40970,40970 +362095,362095 +283235,283235 +349744,349744 +37006,42444 +39122,39122 +216268,216268 +320099,320099 +3748,3748 +266232,266232 +34402,34402 +114215,114215 +347605,347605 +345946,319402 +284636,284636 +9724,9724 +420572,420572 +170696,170696 +7075,7075 +322592,322592 +329435,329435 +251683,251683 +8780,14165 +248787,248787 +97898,97898 +64390,64390 +48830,48830 +209713,209713 +268275,268275 +18661,18661 +10588,10588 +353255,353255 +248129,248129 +247485,247485 +25461,25461 +2337,2337 +133176,108665 +39186,39186 +226048,226048 +411542,411542 +106929,106929 +7352,7352 +31664,31664 +165208,165208 +406974,406974 +35864,35864 +325489,325489 +212971,212404 +20058,20058 +354478,354478 +286046,286046 +8032,8032 +25835,25835 +156557,156557 +229007,229007 +118998,118998 +193660,180850 +40402,40402 +28756,357638 +232942,232942 +11346,11346 +15075,15075 +5019,5019 +21861,463 +432834,432834 +2856,2856 +17354,17354 +8839,8839 +8704,8704 +146384,146384 +40549,40549 +363939,363939 +151924,151924 +244430,244430 +335858,188347 +246469,157625 +7778,425056 +96949,96949 +5581,5581 +6801,6801 +191059,191059 +236398,236398 +42273,42273 +368431,368431 +270164,270164 +270638,270638 +266820,266820 +350566,257924 +338573,320136 +10563,10563 +103714,103714 +27936,27936 +383703,383703 +37779,37779 +164198,164198 +296250,296250 +292225,292225 +297555,297555 +145535,43443 +378751,378751 +171430,171430 +146099,146099 +340284,340284 +182877,182877 +24075,24075 +1729,1729 +183380,183380 +373492,373492 +877,877 +249405,249405 +7798,7798 +139765,139765 +254541,254541 +148814,148814 +15961,15961 +320752,320752 +316238,61487 +406316,406316 +23373,23373 +57767,57767 +378443,378443 +194550,194550 +5837,5837 +8700,198629 +296350,296350 +342390,342390 +312582,312582 +266781,266781 +199502,204895 +165711,165711 +143447,143447 +6913,6913 +8510,8510 +203170,203170 +3961,3961 +219489,219489 +270061,270061 +388360,388360 +191898,191898 +422747,422747 +246763,192909 +113360,113360 +2349,2349 +345966,345966 +39241,39241 +311912,25821 +121122,121122 +105130,105130 +201385,201385 +144342,144342 +158965,158965 +283293,283293 +14229,14229 +369651,369651 +249533,249533 +293506,293506 +11072,11072 +231620,231620 +6449,6449 +306032,306032 +174417,174417 +119500,119500 +181089,181089 +193628,193628 +11915,11915 +141724,141724 +37684,463 +255583,255583 +379295,379295 +290300,290300 +49423,49423 +183881,183881 +323911,323911 +38906,38906 +181006,181006 +36687,36687 +245827,245827 +27950,27950 +2176,152 +11112,11112 +34618,34618 +352599,352599 +5565,5565 +21066,21066 +47605,47605 +239940,239940 +359040,359040 +2776,2776 +377779,377779 +299543,299543 +68214,68214 +24441,24441 +295411,295411 +394552,394552 +7014,251826 +205114,205114 +154912,154912 +65592,65592 +117982,117982 +129745,129745 +285574,285574 +364103,364103 +303281,278012 +359132,359132 +36373,36373 +8388,8388 +420539,329939 +396544,396544 +177731,177731 +135321,146333 +129829,129829 +426861,426861 +408866,408866 +308125,308125 +428556,395181 +211086,12385 +25496,25496 +27569,27569 +402128,402128 +375520,375520 +418825,418825 +120473,120473 +370339,370339 +351151,351151 +26478,26478 +404571,404571 +348355,348355 +424145,424145 +273439,273439 +198852,198852 +24226,24226 +401248,54625 +338555,338555 +374144,374144 +302962,302962 +209532,209532 +153269,153269 +308552,308552 +389593,389593 +297004,297004 +358113,358113 +336846,336846 +428241,428241 +361805,361805 +422763,422763 +157572,157572 +379461,105173 +277975,277975 +244097,244097 +93552,93552 +188868,188868 +313893,285902 +286292,286292 +229215,42101 +297488,297488 +291057,291057 +277716,237171 +229165,229165 +91522,91522 +86293,86293 +10018,10018 +306259,306259 +322736,322736 +340033,463 +128998,128998 +404522,404522 +350882,350882 +378708,378708 +383205,383205 +10651,10651 +143146,143146 +409322,217780 +224922,224922 +87746,87746 +22082,22082 +33816,33816 +171916,171916 +374723,374723 +173163,308652 +309891,309891 +124497,124497 +222193,3439 +16814,16814 +266838,266838 +341688,341688 +25601,25601 +324443,324443 +382211,382211 +119496,119496 +271843,271843 +408772,408772 +194025,194025 +163633,163633 +152958,152958 +288875,288875 +351146,72251 +355461,355461 +183616,183616 +409473,409473 +207996,31926 +29576,286572 +160891,160891 +411896,411896 +386583,386583 +234701,234701 +313733,313733 +250559,237498 +354743,354743 +7658,7658 +192846,12140 +7132,7132 +344832,344832 +411936,411936 +296112,62626 +420370,420370 +402817,402817 +13087,13087 +392701,99698 +94821,94821 +367755,367755 +36514,36514 +18585,18585 +128143,128143 +233448,233448 +20695,20695 +133463,133463 +305997,305997 +269172,160545 +237925,237925 +168303,168303 +41550,41550 +12854,12854 +154545,75529 +67422,67422 +13275,13275 +29346,29346 +192009,192009 +377628,377628 +51279,51279 +182739,182739 +9270,9270 +335735,188784 +407882,407882 +256494,256494 +27461,27461 +282868,99969 +136093,136093 +18076,18076 +344095,344095 +369889,369889 +181415,181415 +31027,31027 +340568,340568 +258314,258314 +370980,370980 +149845,149845 +261048,261048 +18273,18273 +183349,183349 +127126,127126 +328881,328881 +20786,20786 +421647,421647 +229275,212404 +191672,191672 +16163,16163 +161276,161276 +10227,10227 +115770,115770 +296561,296561 +394137,394137 +388576,388576 +403547,88408 +136274,136274 +17233,17233 +39873,39873 +406217,329669 +157497,157497 +400942,206175 +41897,26233 +225265,225265 +19134,19134 +34769,34769 +6705,6705 +228460,257667 +57164,57164 +25850,25850 +3769,3769 +302761,302761 +8131,8131 +362956,362956 +294454,294454 +33234,33234 +374686,374686 +223467,223467 +286331,253048 +298689,298689 +25793,25793 +72964,72964 +375913,375913 +13267,13267 +35201,35201 +266344,266344 +355914,355914 +344282,344282 +33693,33693 +5363,5363 +319727,319727 +7252,7252 +2046,2046 +72508,72508 +15357,15357 +320134,320134 +7053,7053 +309880,309880 +337835,337835 +342280,342280 +246264,246264 +17061,17061 +132143,132143 +165998,165998 +12862,12862 +303275,303275 +156847,156847 +230642,230642 +294531,294531 +4811,4811 +6915,6916 +351717,351717 +359134,359134 +5056,5056 +423229,423229 +170989,170989 +18287,18287 +237185,237185 +5477,5477 +290462,290462 +153118,153118 +226166,226166 +39071,39071 +10752,10752 +34653,458 +63481,63481 +198445,198445 +29517,29517 +2317,2317 +321114,321114 +128515,128515 +197022,197022 +314126,463 +6235,6235 +108744,108744 +27549,27549 +56095,56095 +388397,388397 +119219,119219 +172259,172259 +27651,27651 +223734,223734 +407694,1208 +125367,125367 +91359,91359 +36238,36238 +183943,227604 +1451,1451 +3746,3746 +13268,13268 +249897,181265 +74309,74309 +4585,4585 +191203,191203 +114284,114284 +230774,180845 +29794,29794 +251469,222741 +12516,1733 +53279,53279 +231042,231042 +231139,231139 +344269,344269 +411981,411981 +264189,264189 +154363,154363 +162031,162031 +133450,133450 +103026,103026 +227819,180845 +342240,342240 +25538,25538 +293522,293522 +32665,14042 +148260,148260 +13069,13069 +93512,93512 +193695,193695 +157745,157745 +395952,395952 +18128,18128 +181356,181356 +235618,235618 +64159,64159 +163059,163059 +23569,23569 +43489,43489 +210297,210297 +147740,147740 +8738,8738 +387518,387518 +161560,161560 +167466,167466 +287580,287580 +432250,432250 +14971,14971 +64012,64012 +3997,3997 +15372,15372 +13229,13229 +12839,12839 +32559,32559 +420177,420177 +65402,65402 +73249,73249 +180027,180027 +304,304 +183042,183042 +393337,393337 +149078,149078 +228657,228657 +17094,17094 +12287,144733 +314546,314546 +153054,153054 +189155,189155 +10845,10845 +345623,345623 +325068,325068 +192245,192245 +6127,6127 +154642,154642 +363357,34819 +366296,366296 +226948,226948 +340607,340607 +7673,7673 +4568,4568 +136996,136996 +3695,3695 +316360,316360 +164564,164564 +424875,424875 +227453,227453 +256495,256495 +229611,229611 +268953,268953 +307369,321114 +200749,200749 +286290,274581 +257949,257949 +393640,393640 +19994,19994 +319344,319344 +404286,404286 +383716,383716 +140450,140450 +264606,264606 +10293,34444 +209640,5958 +164838,164838 +16191,16191 +413466,413466 +9292,9292 +128910,128910 +290755,290755 +379032,379032 +359121,290561 +409583,409583 +399887,399887 +285871,54625 +266500,266500 +383584,383584 +347892,347892 +129514,129514 +425480,425480 +299044,6540 +286226,286226 +356523,356523 +194457,194457 +25919,25919 +344241,344241 +204661,204661 +143542,143542 +412311,412311 +414041,414041 +208053,208053 +179030,179030 +319384,319384 +255395,255395 +420721,420721 +323699,18704 +318501,318501 +304435,304435 +163647,163647 +213964,213964 +422492,422492 +420980,420980 +301927,301927 +233409,233409 +398332,398332 +192139,220249 +324899,324899 +256684,256684 +425410,425410 +319234,319234 +349570,349570 +108228,108228 +311476,311476 +373064,373064 +348467,348467 +383586,383586 +373451,373451 +164585,164585 +165828,165828 +312592,312592 +422146,422146 +418146,418146 +321654,321654 +193235,193235 +421082,351969 +421649,421649 +401967,401967 +147108,147108 +37415,37415 +169422,169422 +383423,383423 +408945,408945 +239627,239627 +265045,265045 +102251,102251 +282275,282275 +366520,366520 +356421,356421 +200008,200008 +20541,20541 +370404,370404 +376786,376786 +368253,368253 +17612,17612 +368269,368269 +351827,351827 +418957,12995 +254690,254690 +267242,267242 +202476,202476 +170968,170968 +266094,266094 +111174,111174 +143549,143549 +394787,394787 +425505,425505 +296402,296402 +424765,198517 +114608,114608 +109123,109123 +286987,286987 +267303,255222 +138172,138172 +396931,396931 +133923,133923 +143847,143847 +426097,400113 +153920,153920 +348707,348707 +26722,26722 +366200,366200 +433398,433398 +310703,310703 +322287,322287 +383319,383319 +310615,310615 +95080,95080 +18281,18281 +331970,331970 +269546,269546 +381219,381219 +428518,428518 +302716,302716 +105355,105355 +222373,222373 +118882,118882 +213869,213869 +323843,323843 +352274,352274 +357030,357030 +117513,117513 +409993,409993 +182250,182250 +39397,18817 +347742,347742 +353167,353167 +320021,60815 +355010,355010 +10981,10981 +13256,13256 +29234,29234 +7185,7185 +25051,25051 +340084,340084 +293537,293537 +34848,34848 +403911,403911 +7875,7875 +167829,167829 +126071,126071 +21185,21185 +379017,379017 +22592,22592 +27472,27472 +291260,291260 +18669,18669 +279180,279180 +383442,383442 +262090,262090 +315440,315440 +111126,111126 +255191,143050 +389100,389100 +410108,148203 +37058,37058 +23463,23463 +278226,278226 +361714,361714 +406369,406369 +133298,133298 +324234,324234 +232146,232146 +16378,16378 +295393,295393 +175075,175075 +380360,380360 +28785,28785 +203033,203033 +6084,6084 +181461,181461 +170670,170670 +23068,23068 +30994,30994 +353939,353939 +206153,206153 +371790,371790 +365914,365914 +352234,352234 +160615,160615 +31949,31949 +15106,15106 +386222,386222 +30690,30690 +400625,400625 +160960,36367 +7785,7785 +55798,55798 +291864,291864 +416035,339598 +297823,297823 +37495,37495 +357179,357179 +17483,17483 +3579,3579 +177314,177314 +430856,430856 +23563,23563 +427269,427269 +16396,16396 +390576,463 +322664,322664 +298465,298465 +239123,239123 +380156,271460 +382478,382478 +381434,381434 +358571,358571 +381318,381318 +393193,393193 +24626,24626 +120882,120882 +315898,463 +235807,235807 +9076,9076 +10738,30834 +14888,14888 +197679,197679 +308722,308722 +4093,4093 +244527,244527 +12115,12115 +24562,24562 +162223,162223 +32630,32630 +276495,271460 +214281,214281 +35525,35525 +205430,205430 +93491,93491 +422046,422046 +2203,2203 +39989,39989 +141725,141725 +371980,371980 +172281,172281 +170296,153623 +116555,116555 +223125,223125 +410706,410706 +132205,132205 +8956,8956 +316181,238656 +15527,15527 +153216,10206 +337118,329529 +296411,296411 +289077,289077 +316049,316049 +188342,188342 +389092,220877 +4674,34890 +244160,244160 +33456,33456 +316165,316165 +95231,95231 +6362,6362 +3922,3922 +245857,245857 +377379,377379 +335219,335219 +331204,331204 +14309,14309 +32751,32751 +345968,345968 +197895,197895 +76541,76541 +2657,2657 +278355,278355 +380136,380136 +298375,12346 +209592,209592 +296940,296940 +231314,231314 +265490,265490 +375649,375649 +9847,9847 +396650,396650 +58194,58194 +10500,10500 +308412,308412 +91197,91197 +10353,10353 +147931,66969 +419378,419378 +248166,248166 +30000,30000 +421832,421832 +230076,32159 +22595,22595 +168678,286076 +55785,55785 +10299,10299 +11365,11365 +383446,383446 +366147,366147 +75962,75962 +95915,95915 +357720,357720 +200830,121408 +20048,20048 +161887,161887 +15112,15112 +5168,463 +11215,63975 +333167,333167 +420112,420112 +2939,22094 +15651,15651 +265082,168211 +209541,209541 +173344,173344 +192696,192696 +353453,353453 +381913,381913 +186669,186669 +101859,101859 +153496,153496 +224090,224090 +36804,36804 +177189,177189 +325421,325421 +196072,85256 +10259,10259 +29479,29479 +165769,165769 +36639,39089 +74107,74107 +187331,187331 +338627,267246 +100758,19772 +307383,307383 +165542,165542 +345859,345859 +377353,377353 +178322,178322 +27670,27670 +2927,2927 +406168,406168 +80858,80858 +10222,10222 +247900,247900 +16208,16208 +29783,29783 +9221,9221 +260719,260719 +11347,463 +11583,11583 +130167,130167 +342455,342455 +146364,146364 +203202,203202 +140390,140390 +13863,13863 +67781,67781 +265617,265617 +31507,31507 +192635,192635 +346658,346658 +129133,129133 +244727,244727 +117862,117862 +992,992 +6419,6419 +145305,145305 +194108,194108 +17878,17878 +107909,107909 +9201,9201 +145068,205346 +148270,148270 +3668,3668 +291741,105134 +296360,296360 +287474,287474 +313833,313833 +158638,140702 +8386,8386 +235468,1376 +70185,70185 +289054,289054 +278633,278633 +280245,280245 +404025,404025 +409744,409744 +272837,272837 +428933,428933 +412574,412574 +376603,376603 +344243,344243 +353421,353421 +426474,426474 +387733,387733 +344804,344804 +407487,407487 +270717,270717 +329129,329129 +378266,378266 +368228,368228 +412108,412108 +181491,181491 +377893,377893 +322932,322932 +297533,297533 +199250,199250 +431231,431231 +358327,358327 +274423,274423 +423686,423686 +380507,380507 +305774,305774 +425773,237182 +409849,250808 +415530,415530 +316697,316697 +386911,386911 +176563,176563 +415374,415374 +418797,418797 +340635,340635 +244990,244990 +344244,344244 +414303,414303 +108996,108996 +414556,414556 +416259,416259 +425222,425222 +283031,283031 +430586,430586 +421693,421693 +339138,339138 +221763,221763 +201707,201707 +345744,345744 +301231,301231 +413196,413196 +352039,352039 +429993,429993 +357212,357212 +413559,413559 +193856,193856 +296638,296638 +344238,344238 +157209,157209 +417814,417814 +420629,420629 +347971,347971 +296303,296303 +415835,415835 +344237,344237 +375909,375909 +199768,199768 +315605,315605 +376051,376051 +423948,423948 +302175,302175 +245366,245366 +405193,405193 +381237,381237 +254629,254629 +298682,298682 +328994,328994 +286015,286015 +253734,253734 +432457,432457 +286542,286542 +153807,153807 +35157,35157 +257603,257603 +72620,72620 +231786,231786 +402947,402947 +374857,374857 +368844,368844 +204492,204492 +430692,430692 +7656,7656 +401636,401636 +173004,308652 +426123,426123 +10437,10437 +143625,7090 +182233,182233 +327906,327906 +120206,89383 +107017,107017 +379546,379546 +38789,38789 +421831,421831 +277719,277719 +387827,387827 +120703,120703 +7655,7655 +354397,354397 +124266,124266 +266286,266286 +164601,164601 +428447,428447 +164332,164332 +180933,180933 +338480,338480 +84871,84871 +412816,412816 +88566,88566 +39057,39057 +412633,412633 +377447,377447 +319060,319060 +403175,403175 +309818,309818 +16996,16996 +227501,227501 +254934,254934 +401970,401970 +383030,406588 +67711,67711 +411736,411736 +209691,209691 +282228,282228 +19288,19288 +201487,201487 +120701,120701 +121326,121326 +122676,122676 +156110,156110 +333464,333464 +7998,7998 +4871,4871 +92879,92879 +394153,394153 +180271,180271 +280755,280755 +382092,382092 +258435,258435 +8162,8162 +88300,88300 +70957,70957 +253204,253204 +127796,127796 +371692,238221 +404936,404936 +365874,365874 +368318,368318 +24684,24684 +144964,144964 +116970,116970 +180627,180627 +217633,217633 +123839,123839 +184519,184519 +16566,16566 +422854,131357 +17581,17581 +429128,429128 +193264,193264 +307805,307805 +425729,425729 +160058,160058 +19556,19556 +191664,191664 +24285,24285 +98345,98345 +308431,308431 +303507,15827 +371840,371840 +239242,239242 +18324,18324 +223871,247649 +377432,377432 +264076,264076 +302380,302380 +178233,178233 +195480,195480 +30277,30277 +341511,760 +38411,38411 +193862,193862 +157507,157507 +81000,81000 +33060,33060 +8480,8480 +353231,353231 +154538,154538 +386850,386850 +273476,267989 +352608,352608 +423232,423232 +90972,90972 +194478,194478 +162074,162074 +215773,215773 +174686,174686 +372254,372254 +203681,203681 +366180,366180 +334603,334603 +430616,430616 +365921,365921 +378271,378271 +415888,415888 +84746,84746 +28826,28826 +333326,333326 +133365,133365 +354034,354034 +314761,314761 +251687,251687 +255221,255221 +278264,278264 +324082,324082 +41035,41035 +374574,374574 +287432,287432 +21432,21432 +375362,375362 +337308,337308 +197323,197323 +285758,285758 +22473,22473 +26516,26516 +205624,205624 +153746,153746 +386474,386474 +19350,19350 +284635,284635 +94738,94738 +253964,253964 +340105,340105 +4838,107017 +341451,234104 +224749,224454 +305202,305202 +286066,286066 +11236,11236 +207331,207331 +325573,325573 +282501,282501 +23349,23349 +361629,361629 +316170,6045 +337231,337231 +348821,348821 +14544,3641 +392462,392462 +53755,53755 +1015,1015 +247650,247650 +96554,96554 +302454,302454 +28379,28379 +1652,1652 +31766,5295 +256776,256776 +28189,28189 +197004,197004 +325550,325550 +342388,760 +333957,333957 +427106,427106 +426102,426102 +153433,153433 +59776,59776 +37937,37937 +23987,23987 +291646,291646 +38332,38332 +66755,66755 +10196,10196 +298433,298433 +268903,268903 +11649,11649 +14025,14025 +1328,1328 +22283,22283 +282864,282864 +10692,10692 +342239,342239 +374112,374112 +180208,180208 +197311,197311 +297578,297578 +346609,346609 +280243,280245 +15874,15874 +368220,368220 +411241,411241 +238212,238212 +345636,345636 +38983,38983 +151015,151015 +279646,279646 +243111,243111 +25992,25992 +270751,270751 +241665,241665 +3926,3926 +19028,19028 +403155,403155 +10848,10848 +24422,24422 +341441,150998 +905,905 +285048,285048 +21504,21504 +368790,368790 +14201,14201 +29725,29725 +19451,19451 +17902,17902 +245825,245825 +13222,13222 +402068,21061 +35661,35661 +2231,2231 +288061,288061 +423677,423677 +419909,419909 +68561,68561 +391992,463 +351769,351769 +28298,28299 +400209,400209 +39191,39191 +32823,32823 +131436,131436 +130352,130352 +198135,198135 +377501,401741 +241522,241522 +8783,39057 +186733,186733 +12584,12584 +12429,12429 +269907,269907 +304231,304231 +3355,3355 +3349,22287 +320713,320713 +111965,111965 +33157,33157 +43255,43255 +87467,87467 +276343,276343 +13226,34819 +269476,117959 +253095,253095 +26349,26349 +414490,414490 +93867,75292 +305216,305216 +23958,23958 +242544,242544 +232243,232243 +355940,355940 +281480,281480 +324718,324718 +243426,243426 +387370,387370 +407461,407461 +18907,18907 +1495,1495 +17441,17441 +100470,100470 +308598,308598 +360109,360109 +160658,160658 +19131,19131 +418311,344438 +159353,159353 +350087,350087 +12124,12124 +159930,159930 +17904,17904 +30080,99969 +36603,36603 +142747,81043 +241255,241255 +376715,376715 +137478,137478 +25597,25597 +305212,305212 +73110,73110 +92909,92909 +112107,112107 +2730,2541 +102625,102625 +360913,360913 +16358,16358 +367524,367524 +277783,277783 +394883,394883 +25533,25533 +39086,39086 +317018,317018 +36523,36523 +102885,102885 +7598,7598 +388363,388363 +347087,145549 +165753,165753 +7057,7057 +1325,1325 +209924,209924 +135478,135478 +371684,371684 +249825,249825 +308185,308185 +1142,1142 +24510,24510 +179203,339 +256053,256053 +390151,63268 +18587,2025 +258538,160545 +377117,377117 +12997,12997 +186075,186075 +270342,270342 +5078,5078 +307891,307891 +247312,151357 +353602,353602 +2674,2674 +326661,326661 +184518,184518 +347088,145549 +19835,3270 +45764,45764 +30852,90 +267976,267976 +25255,25255 +228319,228319 +264654,264654 +164423,164423 +14206,14206 +17910,17910 +418823,418823 +14779,14779 +414352,414352 +274651,8098 +409015,409015 +330968,330968 +137225,137225 +224715,224715 +306663,306663 +20802,20802 +148672,148672 +282132,282132 +363397,9296 +7681,7681 +174116,137958 +260706,260706 +373795,373795 +415815,294463 +418956,170324 +148212,148212 +88049,88049 +154247,25245 +371923,371923 +330546,330546 +322199,5058 +424053,337864 +424994,424994 +346614,346614 +304761,304761 +377502,377502 +382839,382839 +301273,301273 +363820,363820 +419206,419206 +170776,170776 +415227,415227 +256671,256671 +384183,384183 +390666,390666 +239288,239288 +378481,20078 +354459,354459 +172470,63339 +402212,402212 +71816,71816 +365891,365891 +26078,26078 +430728,430728 +24380,24380 +326235,85256 +194589,194589 +310672,11168 +325509,325509 +433481,433481 +311853,282699 +284977,284977 +16388,16388 +421975,421975 +427008,427008 +352358,352358 +332168,332168 +286907,286907 +197160,197160 +8115,8115 +253724,253724 +63776,63776 +21424,21424 +396742,396742 +27903,27903 +36284,36284 +21627,21627 +245345,245345 +424144,424144 +395009,395009 +376894,376894 +374699,374699 +359135,463 +366792,366792 +168398,168398 +38639,33259 +385608,385608 +152737,152737 +207186,207186 +298429,298429 +66940,66940 +2829,2829 +381127,381127 +404435,404435 +289789,463 +149305,149305 +4136,4136 +360323,360323 +152548,152548 +33149,33149 +351623,20545 +137835,137835 +402123,402123 +302398,302398 +271266,271266 +394453,394453 +103195,42101 +360908,360908 +399899,323103 +33957,33957 +383484,383484 +144807,144807 +256630,256630 +399901,378329 +311924,311924 +371557,371557 +277317,277317 +289790,463 +134358,134358 +120175,120175 +359901,359901 +376650,376650 +63684,63684 +86315,86315 +76703,76703 +354049,354049 +27145,27145 +372828,372828 +5247,5247 +362966,362966 +136847,136847 +348469,348469 +415875,415875 +73437,73437 +13487,13487 +175741,175741 +267469,267469 +378783,265728 +424472,424472 +186469,186469 +220733,373435 +192733,42101 +149369,149369 +230462,230462 +306948,306948 +367457,367457 +150110,150110 +368222,368222 +344698,344698 +183228,183228 +122637,122637 +354772,354772 +148694,148694 +30491,30491 +417912,267246 +418334,418334 +368623,368623 +394136,394136 +129377,129377 +13639,248933 +255613,255613 +282706,282706 +3781,3781 +339904,339904 +366235,40911 +200609,200609 +312583,312583 +31781,31781 +397751,397751 +355986,355986 +319297,319297 +6077,6077 +303503,303503 +22276,22276 +317866,317865 +253776,253776 +340832,340829 +151441,241805 +310122,310122 +12476,12476 +30046,30046 +38813,38813 +226523,226523 +231318,231318 +23699,23699 +223596,223596 +20108,20108 +282881,282881 +143747,154795 +383663,383663 +40634,40634 +269196,269196 +307995,307995 +71851,71851 +175988,175988 +28563,28563 +31537,31537 +224135,224135 +169686,169686 +13903,13903 +213856,194810 +169985,169985 +16340,16340 +424961,23808 +135443,135443 +318625,318625 +425142,425142 +316469,1421 +253333,253333 +209772,248702 +309214,309214 +11273,11273 +303215,303215 +131239,131239 +191754,191754 +33505,33505 +368574,368574 +296424,296424 +217257,217257 +348678,348678 +157018,157018 +289792,463 +287887,287887 +357034,357034 +116609,116609 +385835,385835 +391849,391849 +244418,244418 +237779,237779 +9105,9105 +412020,412020 +342568,86169 +36171,36171 +255174,255174 +72037,72037 +246673,246673 +6695,6695 +345607,345607 +296042,296042 +196443,196443 +230607,230607 +57979,57979 +258780,258780 +381725,381725 +254097,254097 +8309,8309 +406647,406647 +76699,76699 +397449,397449 +106818,106818 +169571,169571 +396929,342439 +14172,14172 +35366,35366 +160550,160550 +307772,307772 +385414,253664 +269984,269984 +430646,430646 +279072,279072 +365418,365418 +7482,46782 +14205,14205 +22451,22451 +386896,386896 +30027,8070 +142040,142040 +299947,136712 +17822,17822 +298922,298922 +170374,170374 +8431,8431 +266477,266477 +14871,14871 +314950,314950 +99807,99807 +21049,21049 +5441,5441 +26932,20761 +176965,176965 +366981,366981 +207245,207245 +12183,154934 +112963,112963 +297427,297427 +7407,7407 +12301,12301 +23668,23668 +32330,32330 +26182,26182 +169850,169850 +33673,33673 +373185,373185 +403014,361214 +286949,286949 +322185,322185 +372264,372264 +359851,359851 +7353,7353 +8225,8225 +371280,371280 +178796,178796 +264829,264829 +5010,5010 +419648,419648 +7450,7378 +268834,268834 +90592,90592 +11873,11873 +356241,356241 +12853,12853 +31057,31057 +24278,24278 +322913,322913 +174048,67254 +147915,147915 +5798,5798 +146741,146741 +88859,88859 +138064,138064 +17348,17348 +5905,5905 +230885,230885 +15877,15877 +306597,306597 +177262,177262 +2097,2097 +2320,2320 +309098,309098 +75230,75230 +9228,9228 +9488,9488 +340282,340282 +7541,7541 +89428,89428 +342617,342617 +172891,172891 +232950,232950 +360136,360136 +223457,223457 +118928,118928 +239629,239629 +379048,379048 +16500,16500 +165584,165584 +267139,267139 +120618,590 +29985,29985 +263171,70222 +406343,406343 +6423,6423 +172771,172771 +9170,9170 +144312,144312 +6824,6824 +19512,19512 +406487,356754 +94586,94586 +236905,236905 +188301,202732 +77754,77754 +256393,256393 +141284,141284 +74416,74416 +411857,411857 +226356,226356 +8903,8903 +209473,209473 +40938,40938 +187023,187023 +74974,74974 +261002,261002 +164636,164636 +6350,6350 +369566,369566 +163404,163404 +291612,291612 +18245,18245 +410006,410006 +378425,88 +324117,324117 +282068,282068 +18592,18592 +231267,231267 +824,824 +43556,43556 +378566,378566 +225569,225569 +249289,249289 +6676,6676 +396550,344877 +407982,407982 +11350,11350 +2062,2062 +201047,201047 +335756,335756 +21142,21142 +56244,56412 +370479,370479 +13105,13105 +190083,190083 +16273,16273 +407960,407960 +30600,30600 +10723,10723 +271815,271815 +257315,257315 +367940,367940 +271040,271040 +311043,311043 +26710,26710 +266880,266880 +9868,9868 +256062,256062 +404509,141517 +43522,43522 +180340,180340 +3113,3113 +5338,18266 +278782,1536 +16753,42266 +24191,24191 +344582,344582 +383142,383142 +241328,241328 +390568,390568 +20089,20089 +245751,245751 +9420,9420 +163704,163704 +31527,31527 +285523,285523 +227259,227259 +136283,136283 +8635,8635 +4713,571 +411025,411025 +160428,160428 +365154,365154 +335481,335481 +174238,174238 +307580,13316 +260364,260364 +138071,138071 +422579,310789 +428018,428018 +346142,182694 +281089,281089 +337243,337243 +233083,233083 +251471,251472 +236870,236870 +289626,289626 +106680,106680 +346771,346771 +377669,377669 +408447,408447 +151183,151183 +394449,394449 +420904,420904 +426680,426680 +396699,396699 +321327,321327 +299421,299421 +294717,294717 +200923,200923 +408565,408565 +420027,420027 +306805,306805 +202322,202322 +433387,433387 +269404,269404 +7678,7678 +414101,414101 +231634,231634 +157834,157834 +193532,193532 +270002,270002 +419743,238182 +425709,425709 +286849,286849 +29035,29035 +155046,155046 +410243,410243 +339601,339601 +104650,104650 +414457,414457 +148492,148492 +25536,25536 +354967,354967 +399785,399785 +139485,139485 +386914,103885 +173124,308652 +320465,320465 +286753,273646 +113615,113615 +301322,301322 +340610,340610 +383492,12333 +41349,41349 +199946,199946 +378141,378141 +247403,247403 +365673,365673 +360110,360110 +338733,338733 +314024,314024 +420802,420802 +364543,364543 +328171,328171 +332083,332083 +189017,189017 +262530,262530 +380320,380320 +317117,317117 +306978,306978 +198554,198554 +40462,40462 +406365,406365 +373595,373595 +351688,351688 +244721,244721 +322643,322643 +364875,364875 +374023,374023 +239846,239846 +403309,403309 +421153,421153 +424877,424877 +297883,21780 +182428,182428 +172929,172929 +376724,376724 +309340,309340 +64120,64120 +300152,300152 +398701,398701 +178590,178590 +314171,314171 +254106,254106 +432505,432505 +176743,42101 +274348,274348 +55908,55908 +429645,429645 +370427,370427 +341499,341499 +255987,255987 +286990,286990 +333329,333329 +188035,188035 +335675,335675 +356337,356337 +416689,416689 +313522,313522 +349002,349002 +266735,266735 +5465,5465 +217230,217230 +243970,243970 +344874,344874 +380449,380449 +325719,325719 +177874,177874 +253527,253527 +418447,418447 +416945,341178 +268272,268272 +3779,3779 +353396,353396 +414498,414498 +397918,397918 +287770,287770 +174038,37906 +32994,32994 +17039,17039 +120817,120817 +896,896 +311321,311321 +35164,35164 +173243,173243 +160319,160319 +262286,262286 +231502,231502 +239449,239449 +296045,296045 +11358,11358 +305644,305644 +271925,271925 +69363,69363 +333328,333328 +366350,366350 +419793,419793 +226650,226650 +395633,395633 +64347,64347 +22274,22274 +20350,20350 +290055,290055 +420928,420928 +380890,380890 +28248,28248 +429349,429349 +8149,8149 +112894,112894 +135663,135663 +286423,286423 +352376,264245 +291376,291376 +368625,368625 +283336,284577 +124013,34029 +347547,347547 +406908,406908 +24177,24177 +21343,21343 +243765,243765 +377198,377198 +216618,216618 +371974,371974 +381436,334307 +381439,334307 +198656,144665 +271344,271344 +218512,184440 +38206,38206 +310218,310218 +381166,381166 +193966,193966 +203394,203394 +380265,380265 +203975,203975 +160423,209644 +174008,174008 +19783,19783 +329408,329408 +9315,9315 +296135,296135 +222637,222637 +31263,31263 +374006,374006 +35489,35489 +169096,169096 +40474,42101 +9402,9402 +289585,272853 +329455,329455 +25295,25295 +141011,141011 +190129,190129 +233410,233410 +61315,61315 +382370,273336 +190772,190772 +24936,24936 +265136,265136 +356489,356489 +316470,1421 +122633,122633 +10809,10809 +113070,113070 +420723,420723 +41751,41751 +323398,323398 +130162,130162 +356379,356379 +88166,88166 +39920,39920 +683,683 +222867,222867 +231388,231388 +11130,11130 +359746,359746 +115496,115496 +89115,89115 +109277,109277 +321071,321071 +260526,260526 +4670,4670 +266589,266589 +338337,338337 +181397,181397 +372368,240463 +7569,7569 +307783,710 +216178,216178 +189887,189887 +231204,231204 +237972,237972 +429020,429020 +157470,157470 +209176,209176 +18640,18640 +344073,344073 +1450,1450 +351677,351677 +359095,359095 +16735,16735 +10601,10601 +324898,324898 +204799,204799 +231451,231451 +39255,39255 +12329,12329 +264171,230955 +37751,37751 +42007,42007 +174768,298460 +284300,284300 +300195,300195 +151230,151230 +391671,391671 +15061,15061 +8712,8712 +11847,11847 +28683,28683 +8443,8443 +354440,354440 +245520,245520 +329789,329789 +12663,12663 +338507,338507 +165182,165182 +157729,157729 +19308,19308 +259436,259436 +266095,266095 +364620,364620 +421969,345886 +24336,198629 +284934,284934 +211175,211175 +19155,19155 +215063,215063 +208138,208138 +22689,22689 +14608,14608 +25742,25742 +259462,259462 +245723,245723 +291439,291439 +129418,129418 +12841,12841 +6859,6859 +33173,33173 +148967,148967 +9587,2398 +219359,219359 +268225,268225 +256338,256338 +242674,242674 +67578,67578 +15748,15748 +11473,11473 +4867,4867 +181897,181897 +320766,320766 +136282,136282 +322325,322325 +24415,24415 +254930,254930 +30943,30943 +2972,248567 +234354,234354 +17896,17896 +139362,139362 +60218,60218 +172306,172306 +386098,386098 +121895,121895 +231803,231803 +20833,20833 +4872,4872 +142349,142349 +1236,1236 +35754,154388 +58400,58400 +371309,371309 +249094,249094 +165610,165610 +362218,362218 +289970,289970 +182984,182984 +21294,21294 +224554,224554 +7358,7358 +240911,240911 +123085,123085 +259724,259724 +310256,310256 +3023,3023 +14548,14548 +3209,3209 +386031,386031 +10260,10260 +182199,139443 +181466,181466 +428089,428089 +12210,12210 +396537,316165 +13392,13392 +8453,8453 +6367,6367 +304340,304340 +281245,209734 +62234,285204 +360554,360554 +159083,159083 +1537,1537 +300802,463 +179996,179996 +386986,386986 +310994,310994 +57311,57311 +358095,358095 +24069,24069 +42024,42024 +101906,101906 +36237,36237 +197656,197656 +372560,372560 +43481,43481 +37702,37702 +353889,353889 +132574,132574 +23770,23770 +12803,12803 +13010,13010 +108872,108872 +128213,128213 +21025,21025 +233841,233841 +175739,175739 +218471,63975 +422558,422558 +342389,342389 +197996,147030 +76684,76684 +68803,68803 +28815,463 +86907,86907 +110356,110356 +267125,267125 +220642,220642 +148522,148522 +4171,4171 +32753,32753 +109073,109073 +26943,26943 +397832,291221 +260292,260292 +388751,388751 +177572,177572 +257964,257964 +12544,12544 +199696,204895 +424808,424808 +38907,38907 +428692,428692 +170999,170999 +794,794 +19552,285204 +410198,410198 +24109,24109 +88672,88672 +91513,91513 +416419,416419 +400349,400349 +416221,416221 +174041,174041 +298591,298591 +431240,431240 +412698,412698 +233196,233196 +65889,65889 +208171,208171 +269913,269913 +333948,333948 +165706,165706 +117891,117891 +9156,9156 +8188,8188 +375521,349805 +146793,146793 +331910,169436 +283538,142401 +163275,319968 +159615,159615 +235428,235428 +258211,258211 +183403,183403 +267918,267918 +11966,11966 +244919,118410 +259419,259419 +347529,347529 +11829,11829 +26487,157625 +309431,373062 +424653,424653 +62888,62888 +160623,160623 +423085,392173 +172410,172410 +262708,262708 +370851,370851 +408155,408155 +344631,242742 +359827,207062 +363314,363314 +12568,12568 +8912,8912 +147799,147799 +41573,41573 +31610,31610 +7158,463 +109549,109549 +260050,260050 +132611,132611 +194079,194079 +165652,287463 +120778,120778 +175924,175924 +75818,75818 +158259,158259 +315064,315064 +2537,2537 +306997,306997 +418426,418426 +361477,361477 +132182,132182 +89301,89301 +409668,3870 +2385,2385 +222137,222137 +406671,406671 +264117,264117 +85682,85682 +86460,86460 +40085,40085 +350333,350333 +24315,24315 +235861,235861 +380317,380317 +281253,281253 +374824,374824 +319347,218383 +341227,341227 +334596,127179 +368904,368904 +181233,181233 +257008,257008 +27657,27657 +120330,120330 +374867,374867 +386171,386171 +261843,261843 +187525,187525 +303295,303295 +415182,415182 +330717,330717 +321035,321035 +316664,54625 +419358,419358 +213167,213167 +395315,395315 +287701,290769 +256759,256759 +352624,352624 +294170,294170 +300314,300314 +341953,341953 +224692,224692 +200263,200263 +207968,207968 +289987,289987 +286231,286231 +76718,76718 +195050,195050 +193306,193306 +400761,400761 +391313,391313 +117532,117532 +11297,11297 +10542,10542 +173428,179931 +329427,329427 +282590,282590 +281679,168449 +308022,150427 +423919,423919 +422176,422176 +12675,12675 +412883,412883 +124150,124150 +13142,13142 +408350,408350 +360988,360988 +280084,280084 +416092,416092 +400013,400013 +4030,4030 +268332,268332 +404279,404279 +408840,408840 +179366,179366 +400509,400509 +17246,17246 +432578,432578 +423691,69789 +194544,194544 +4022,4022 +32004,32004 +369565,369565 +421700,8242 +274717,274717 +340491,340491 +431169,431169 +193977,193977 +323549,323549 +222984,222984 +12978,191032 +10088,10088 +396975,396975 +31893,31893 +406522,406522 +425835,425835 +208618,208618 +151076,151076 +375623,375623 +405889,287104 +389997,389997 +193430,193428 +37984,37984 +40971,40971 +329147,329147 +27492,27492 +284634,284634 +323145,310894 +55728,55728 +396755,396755 +224832,15827 +246400,246400 +226723,226723 +359346,359346 +131627,131627 +262617,262617 +335221,335221 +307431,307431 +205336,205336 +87524,87524 +225183,225183 +50257,50257 +97651,97651 +19677,19677 +92227,92227 +378059,378059 +298595,298595 +16327,238025 +398628,398628 +385410,385410 +418584,418584 +207961,207961 +176242,176242 +419143,419143 +234630,234630 +65220,65220 +376886,376886 +227598,227598 +349174,349174 +422796,12 +186815,186815 +208165,208165 +45703,303503 +58392,58392 +425787,425787 +28510,28510 +205789,173752 +1075,1075 +163926,163926 +257109,257109 +133646,133646 +42525,42525 +409750,409750 +336682,336682 +280256,280256 +216791,216791 +322256,322256 +162914,162914 +184672,184672 +57329,57329 +402671,402671 +286140,286140 +293804,293804 +22765,22765 +237916,237916 +15232,15232 +322142,322142 +34579,34579 +343919,343919 +23012,23012 +242797,242797 +130654,130654 +159630,159630 +1850,1850 +406909,406909 +350473,350473 +341827,341827 +28384,28384 +347403,211457 +129462,129462 +169823,54625 +36401,36401 +18648,18648 +35985,35985 +23259,23259 +208659,208659 +298580,298580 +194609,194609 +301620,301620 +129024,129024 +149378,149378 +322896,322896 +379666,463 +397685,397685 +189121,189121 +202479,202479 +6567,6567 +223427,223427 +322586,322586 +33170,33170 +5384,5384 +261187,261187 +23766,23766 +288670,288670 +31873,3667 +94769,94769 +322070,322070 +376104,376104 +411399,411399 +338098,304987 +269074,269074 +338741,338741 +368301,368301 +368250,368250 +242402,242402 +12613,12613 +248899,248899 +147139,147139 +12303,12303 +139762,139762 +433074,433074 +134274,134274 +183786,183786 +409585,409585 +16737,16737 +238033,238033 +147459,147459 +19495,19495 +327409,327409 +256063,256063 +17587,17587 +269168,269168 +134848,134848 +23729,23729 +423667,423667 +408560,408560 +256474,256474 +19844,19844 +20841,20841 +192047,192047 +93240,93240 +14664,14664 +374765,374765 +226636,226636 +130019,130019 +17098,9391 +355899,355899 +7928,7928 +255954,255954 +344930,344930 +25588,25588 +24666,24666 +63708,63708 +19699,19699 +120682,120682 +39642,39642 +264422,264422 +267165,267165 +332306,395581 +285991,285991 +354411,354411 +36637,131581 +211787,211787 +399610,399610 +8906,8906 +16239,16239 +428029,428029 +124224,124224 +325114,325114 +124363,271460 +208894,208894 +320533,320533 +255618,256397 +268006,268006 +4195,4195 +32416,14042 +180311,264282 +267356,267356 +41332,41332 +12574,12574 +21309,21309 +319888,319888 +333023,333023 +159825,159825 +2614,2614 +237134,237134 +7049,7049 +355622,359 +287160,287160 +420252,420252 +92976,92976 +269439,269439 +362712,362712 +87937,87937 +36908,36908 +59873,59873 +353888,353888 +184452,184452 +390577,163771 +188985,188985 +1228,1228 +352616,352616 +4948,4948 +114216,114216 +148322,148322 +336315,336315 +10011,10011 +379842,379842 +334289,275518 +16600,16600 +153821,153821 +43775,43775 +412153,412153 +275687,275687 +325349,325349 +153898,153898 +268880,268880 +3844,3844 +47043,47043 +319997,319997 +379821,379821 +51367,100679 +5638,5638 +8931,8931 +232667,232667 +248267,248267 +1550,1550 +313962,313962 +5463,463 +99819,99819 +4754,4754 +2172,2172 +317744,317744 +335010,335010 +274034,274034 +183610,183610 +9989,9989 +18051,18051 +227417,227417 +417979,417979 +194968,194968 +250942,9476 +33365,33365 +406597,406597 +3069,3069 +117491,117491 +430341,430341 +15208,15208 +65589,65589 +42037,42037 +29637,29637 +368898,368898 +341759,341759 +39729,39729 +72664,72664 +140824,140824 +148918,148918 +82293,82293 +258111,258111 +357985,357985 +106222,106222 +181429,181429 +360256,360256 +88168,88168 +130339,130339 +218613,218613 +41889,41889 +345635,313543 +223687,223687 +195089,195089 +216562,216562 +371941,371941 +236275,236275 +162739,162739 +39165,39165 +9889,9889 +60369,60369 +136859,136859 +191291,191291 +98203,98203 +212288,212288 +378349,378349 +421395,421395 +419290,419290 +329177,329177 +383375,383375 +18857,463 +385634,385634 +125148,125148 +251721,251721 +231647,231647 +12334,12334 +287132,938 +354730,354730 +3492,3492 +328569,328569 +36738,36738 +114316,114316 +5312,5312 +166306,166306 +14469,14469 +22264,22264 +60872,60872 +244157,244157 +274231,274231 +162569,162569 +330129,330129 +21387,21387 +10700,3471 +15624,15624 +35265,287 +259398,259398 +226959,226959 +11169,11169 +131720,131720 +374778,374778 +39435,90 +32363,463 +9474,9474 +13466,13466 +230881,254193 +205873,2843 +8319,8319 +3918,3918 +9667,9667 +189735,189735 +19204,19204 +27707,27707 +68391,68391 +370860,370860 +217961,217961 +137233,137233 +38840,38840 +167334,167334 +427192,427192 +308356,308356 +381874,381874 +163719,163719 +266892,266892 +429635,429635 +226826,226826 +193888,193888 +111240,111240 +268933,268933 +419645,345584 +360068,360068 +402199,402199 +350526,350526 +430067,430067 +209518,209518 +23592,23592 +333115,333115 +344536,344536 +421161,421161 +404578,404578 +430081,430081 +134682,134682 +370991,370991 +176640,176640 +138169,138169 +315598,315598 +415943,415943 +252524,252524 +363619,363619 +306865,306865 +363296,16191 +421013,421013 +277928,277928 +195108,195108 +421160,421160 +141567,3270 +317135,317135 +340519,340519 +122708,122708 +361100,361100 +424356,424356 +400880,400880 +386738,386738 +200966,5635 +92316,92316 +183999,183999 +426258,426258 +249334,249334 +393454,393454 +240952,240952 +307151,307151 +280324,280324 +330509,330509 +202514,202514 +284654,284654 +66106,66106 +177806,177806 +173402,173402 +321615,321615 +404822,404822 +388477,388477 +433344,433344 +294357,294357 +383315,383315 +280133,280133 +419201,419201 +144425,144425 +33854,33854 +28614,28614 +107702,107702 +423665,423665 +173373,173373 +396341,396341 +213100,213100 +382811,382811 +359195,359195 +267927,267927 +304566,304566 +286851,286851 +415692,277080 +370441,370441 +325244,325244 +19722,19722 +337666,337666 +389906,242705 +365676,365676 +430053,430053 +419736,419736 +352451,352451 +162663,162663 +270969,270969 +193884,193884 +400870,400870 +418352,418352 +313748,313748 +174851,174851 +35072,35072 +427265,260516 +18222,18222 +367870,367870 +17614,17614 +302760,302760 +325922,325922 +257151,285204 +195517,195517 +99274,99274 +173351,173351 +266526,231559 +266134,266134 +155585,155585 +127322,127322 +191978,191978 +279868,279868 +13302,13302 +277159,277159 +181230,181230 +341926,341926 +252702,252702 +356037,356037 +153933,153933 +373858,373858 +307815,307815 +199300,199300 +234855,234855 +16626,16626 +4137,4137 +29991,29991 +36293,36293 +146213,146213 +283643,283643 +350163,350163 +15192,15192 +221765,221765 +301222,301222 +187050,187050 +135804,135804 +308553,308553 +255226,255226 +387685,387685 +271172,271172 +31541,31541 +197280,197280 +401371,401371 +416085,416085 +157084,321654 +26477,26477 +400491,400491 +286067,286067 +337232,337232 +368090,368090 +39035,39035 +2202,2202 +250329,250329 +311507,311507 +401943,284785 +383413,383413 +359915,359915 +124323,124323 +423080,249673 +306483,306483 +190528,190528 +67920,67920 +301645,301645 +285140,285140 +41147,41147 +392155,276851 +128803,128803 +30329,30329 +212017,212017 +313406,313406 +36551,36551 +174266,174266 +404809,404809 +363210,363210 +63852,63852 +242485,186979 +237289,237289 +41479,41479 +187431,184440 +348288,348288 +199711,199711 +10055,10055 +340057,340057 +28876,28876 +4514,4514 +262905,262905 +375696,438 +39239,39239 +387597,188347 +225037,225037 +255400,216630 +264732,264732 +302228,302228 +34724,34724 +162293,162293 +287515,287515 +13029,13029 +333959,463 +329098,280430 +192766,158899 +232213,232213 +133472,133472 +348352,348352 +243119,243119 +8819,8819 +85707,85707 +168944,168944 +146930,146930 +391191,391191 +389515,389515 +144829,213371 +413002,413002 +400572,400572 +287149,287149 +137153,137153 +3963,10378 +276398,276398 +256126,43443 +17038,17038 +40565,40565 +160717,160717 +376645,376645 +214500,214500 +38579,38579 +225773,225773 +39804,39804 +72342,72342 +1224,158861 +58195,58195 +368167,368167 +161574,161574 +37882,285204 +383133,364425 +183154,178595 +332287,332287 +148632,148632 +303434,155994 +5610,5610 +80130,80130 +146650,146650 +259465,259465 +20999,20999 +38229,38229 +234670,234670 +12530,12530 +28812,28812 +63557,109835 +12363,12363 +237500,262988 +1021,1053 +146972,146972 +376536,376536 +19233,19233 +26775,26775 +252537,252537 +165914,165914 +244033,244033 +304865,304865 +284482,284482 +199513,199513 +402983,402983 +313593,313593 +308705,308705 +345971,25069 +8332,8332 +19959,19959 +7651,7651 +271448,117555 +35651,35651 +11367,11367 +406324,406324 +402219,402219 +20517,20517 +293183,293183 +9042,9042 +15057,15057 +236869,160545 +398722,398722 +130631,130631 +14775,14775 +129981,129981 +202711,202711 +342049,342049 +4043,4043 +170804,144412 +388370,388370 +20951,20951 +90595,90595 +239296,239296 +163870,163870 +183146,183146 +41965,41965 +20811,20811 +208108,208108 +291954,291954 +2439,2439 +67052,67052 +304230,304230 +421762,421762 +24387,24387 +336491,336491 +291247,291247 +282137,147021 +292654,292654 +369255,369255 +48082,48082 +310171,310171 +385334,313543 +256316,256316 +135764,135764 +181898,181897 +162779,162779 +193316,50381 +345267,345267 +27674,27674 +5844,5844 +23265,23265 +66077,66077 +146452,146452 +216186,216186 +224505,212404 +97999,10210 +27120,27120 +287897,287897 +209543,209543 +276489,276489 +12558,12558 +205976,205976 +14852,14852 +25647,25647 +30779,30779 +155907,155907 +900,900 +310602,182116 +224161,112557 +14885,14885 +255592,255592 +171364,171364 +91201,91201 +263317,206437 +338852,338852 +219702,219702 +12196,12196 +11203,11203 +2377,2377 +173394,173394 +302866,302866 +39220,39220 +170174,170174 +26901,26901 +25548,25548 +4538,4538 +228677,228677 +56888,56888 +197634,197634 +278604,278604 +28816,28816 +5721,5721 +268582,268582 +99316,99316 +8554,8554 +156746,156746 +174044,174044 +433205,433205 +178936,178936 +10252,10252 +166388,166388 +112675,112675 +402816,402816 +25309,25309 +54604,54604 +192801,192801 +307376,307376 +10052,10052 +427718,102 +412257,412257 +292796,292796 +130673,130673 +186011,186011 +14354,14354 +9013,9013 +224993,224993 +391853,391853 +224805,224805 +22259,22259 +34014,34014 +295796,295796 +141544,141544 +261824,261824 +192928,192928 +6998,6998 +218445,218445 +160406,160406 +298018,298018 +355722,355722 +8197,8197 +380190,380190 +358005,358005 +205629,205629 +192196,192196 +67933,67933 +417743,255928 +174045,85652 +42320,42320 +207911,207911 +71921,71921 +4221,20445 +103748,103748 +382191,382191 +291226,291226 +3011,3011 +233093,233093 +153804,153804 +380914,380914 +227010,227010 +234062,234062 +214357,5958 +239309,239309 +181363,181363 +96954,71569 +166681,166681 +188389,11396 +211047,211047 +102550,102550 +192195,192195 +13464,463 +427324,427324 +12467,12467 +14301,14301 +40915,26292 +43239,43239 +90125,90125 +813,813 +237328,237328 +204657,204657 +129416,129416 +409869,8946 +378533,378533 +86166,86166 +351486,322204 +147966,147966 +25240,25240 +148660,302676 +254191,7806 +266997,169675 +247956,247956 +310695,310695 +327580,319762 +26407,26407 +239213,239213 +287564,287564 +39404,39404 +126758,126758 +13564,13564 +199733,199733 +20573,20573 +5043,5043 +375411,375411 +160886,160886 +19613,19613 +94420,94420 +18810,18810 +133431,133431 +12646,12646 +172011,172011 +292910,292910 +375698,375698 +21567,21567 +47223,47223 +9602,9602 +413860,11396 +244704,244704 +279475,279475 +249044,249044 +173338,173338 +135848,135848 +495,495 +216510,216510 +33212,3570 +10631,10631 +15559,15559 +352583,352583 +406561,406561 +154527,154527 +10399,10399 +104813,104813 +416089,359835 +5433,5433 +64404,64404 +387368,387368 +232444,232444 +152359,152359 +159890,190772 +250449,250449 +6701,6701 +99707,99707 +184337,184337 +376710,376710 +98406,98406 +337017,12453 +136562,136562 +237895,237895 +70939,70939 +102781,102781 +29888,29888 +238800,238800 +159507,159507 +367952,367952 +273936,273936 +320417,320417 +31069,31069 +103645,103645 +281731,281731 +6665,6665 +30741,30741 +2616,2616 +350589,350589 +257821,257821 +429234,429234 +303425,303425 +428801,428060 +428308,294484 +192075,192075 +304173,304173 +120578,120578 +36858,36858 +130735,130735 +431582,244271 +336380,336380 +366179,366179 +141580,141580 +230872,230872 +402922,223376 +430509,430509 +321334,321334 +320294,320294 +370114,370114 +388446,388446 +236161,236161 +408884,408884 +365115,365115 +382445,382445 +353863,353863 +195904,195904 +345598,345598 +263160,263160 +164352,164352 +151421,151421 +298529,4085 +24856,24856 +428892,428892 +108944,108944 +223050,223050 +414809,414809 +358136,358136 +357569,357569 +432426,432426 +143394,143394 +320958,320958 +67938,67938 +302197,302197 +147375,147375 +426150,426150 +357965,357965 +198031,198031 +256824,256824 +344836,344836 +408026,408026 +372820,372820 +346302,346302 +421663,421663 +221955,221955 +143051,143051 +394550,375676 +175860,175860 +87611,87611 +146215,6251 +271541,243312 +192142,192142 +290099,235344 +374637,374637 +374567,374567 +412695,412695 +244231,244231 +303413,303413 +197328,197328 +422741,422741 +309658,309658 +199092,143146 +131728,131728 +310401,310401 +388870,388870 +380321,380321 +262478,262478 +41501,41501 +369190,38159 +99296,99296 +374826,374826 +71046,71046 +401401,401401 +147200,34747 +430809,430809 +377889,377889 +365743,365743 +428324,428324 +391421,391421 +355437,355437 +388750,388750 +423580,423580 +375083,375083 +420919,420919 +167189,167189 +344397,344397 +235523,235523 +362110,11283 +154329,154329 +249490,249490 +239394,239394 +412539,412539 +306983,306983 +228486,228486 +275461,275461 +16342,16342 +367301,367301 +350876,350876 +138276,138276 +341538,8790 +385798,385798 +133564,133564 +68666,68666 +27912,27912 +398465,398465 +36457,36457 +13812,13812 +255531,305949 +37056,37056 +191528,2997 +89966,89966 +98849,98849 +45337,45337 +148567,148567 +406543,406543 +126434,126434 +103106,103106 +379855,379855 +35703,35703 +86248,86248 +377569,377569 +309530,309530 +325160,325160 +2527,2527 +338769,338769 +224392,11050 +36545,36545 +168915,168915 +35250,35250 +252994,252994 +132447,132447 +259389,259388 +320299,320299 +324896,324896 +170647,170647 +321179,321179 +25773,19800 +189841,189841 +118656,118656 +366040,366040 +336358,336358 +381111,381111 +364815,364815 +392152,392152 +267328,267328 +408441,408441 +35183,22924 +157627,157627 +380396,380396 +394865,394865 +235641,235641 +374784,311397 +24214,24214 +284187,284187 +299195,38204 +16064,16064 +322958,322958 +307072,307072 +118498,118498 +4028,4028 +177184,177184 +323379,323379 +195990,195990 +340186,340186 +139828,139828 +265442,265442 +375026,375026 +214359,214359 +17609,17609 +32483,32483 +25493,25493 +237073,463 +340157,340157 +410237,410237 +268200,268200 +322915,322915 +275216,275216 +419402,419402 +183019,183019 +10531,10531 +141855,141855 +372819,372819 +7478,7478 +311826,311826 +305828,305828 +20970,20970 +422003,422003 +359074,359074 +17367,17367 +304621,304621 +2116,2116 +13246,13246 +100206,100206 +35879,35879 +25050,81043 +212166,212166 +13815,13815 +43973,43973 +97257,97257 +373308,373308 +24221,24221 +11327,11327 +411514,411514 +152390,152390 +371786,371786 +39092,39092 +339463,339463 +402986,402986 +325891,325891 +233271,233271 +131485,131485 +160584,160584 +344466,344466 +377148,377148 +175536,175536 +316414,1421 +36287,36287 +376318,376318 +402237,402237 +219411,219411 +340720,340720 +344072,344072 +269975,269975 +336314,336314 +218642,218642 +113641,113641 +321020,321020 +19687,19687 +224761,224761 +87732,87732 +67883,67883 +143268,143268 +295385,295385 +347984,347984 +372815,372815 +190520,157053 +383443,383443 +194813,194810 +188616,188616 +378494,378494 +162633,162633 +359250,359250 +409707,409707 +365979,365979 +229712,36604 +400128,400128 +19170,19170 +374850,374850 +36636,36636 +156768,113957 +7024,7024 +152513,152513 +339412,339412 +35197,35197 +312996,312996 +22346,22346 +234374,234374 +172893,172893 +393219,393219 +274302,274302 +236507,236507 +312112,312112 +364195,364195 +102740,102740 +8064,8064 +187807,187807 +149864,149864 +117185,5217 +226052,226052 +376678,376678 +428363,428363 +296319,296319 +238326,238326 +190653,190653 +302224,302224 +21255,21255 +253924,253924 +419327,419327 +341956,341956 +21839,21839 +15350,15350 +172147,172147 +8189,8189 +149082,149082 +30562,30562 +350441,350441 +23726,23726 +279736,279736 +223498,158564 +368209,368209 +6458,6458 +348834,348834 +7015,7015 +199541,199541 +224923,224923 +21845,463 +351907,351907 +29711,29711 +35490,35490 +10838,10838 +222783,222783 +264434,264434 +35361,35361 +69134,69134 +12943,12943 +258432,258432 +43314,43314 +329953,329953 +361037,361037 +131479,131479 +41672,41672 +28765,28765 +297670,297670 +352080,352080 +238343,283850 +38358,463 +8557,8557 +230778,180845 +65140,65140 +224540,224540 +224937,224937 +419421,419421 +378150,378150 +416327,416327 +8248,8248 +94625,94625 +6314,108341 +24091,24091 +171054,171054 +11154,11154 +4666,4666 +256627,256627 +9723,9723 +197847,197847 +19133,19133 +316952,316952 +20461,20461 +11121,11121 +31765,31765 +19559,19559 +148442,148442 +316406,316406 +84028,84028 +141224,141224 +374789,374789 +409506,409506 +63601,63601 +304892,304892 +169157,169157 +5145,5145 +98267,98267 +17792,17792 +370883,370883 +129694,68947 +239963,239963 +243498,243498 +126807,243927 +44334,44334 +9521,9521 +18463,18463 +58504,58504 +254585,254585 +12714,12714 +278291,278291 +10297,10297 +4545,4545 +455,455 +50995,50995 +355922,230081 +140100,140100 +26394,26394 +28652,28652 +27899,27899 +252464,252464 +19310,19310 +89356,89356 +14119,14119 +357871,357871 +14253,14253 +263185,263185 +185074,26233 +144471,144471 +208123,208123 +152250,152250 +93463,93463 +5982,5982 +334988,334988 +344434,344434 +252638,252638 +170609,170609 +195940,195940 +328188,328188 +241297,241297 +8456,8456 +242202,14441 +17283,17283 +24708,24708 +124413,124413 +394163,151191 +216233,216233 +168577,168577 +374638,374638 +171387,171387 +137331,137331 +167752,167752 +372728,372728 +68601,68601 +43011,32639 +289786,359398 +54395,192235 +159816,159816 +14259,14259 +8930,8930 +3244,3244 +29491,29491 +279633,279633 +39160,39160 +363360,363360 +221633,221633 +108980,108980 +216336,216336 +255480,255480 +72339,72339 +400350,400350 +206272,206272 +8922,8922 +130801,130801 +25954,25954 +294996,294996 +185119,185119 +382798,382798 +98082,98082 +37423,37423 +402453,322703 +368245,368245 +23823,23823 +4272,4272 +174399,174399 +10162,10162 +295465,295465 +15491,15491 +276774,276774 +178926,178926 +251444,251444 +360279,360279 +352378,352378 +369986,369986 +314386,314386 +428626,428626 +17005,17005 +393978,393978 +56171,56171 +36467,36467 +351301,351301 +356066,356066 +307090,92828 +3913,3913 +26341,463 +16539,16539 +298583,298583 +11042,11042 +395953,355850 +259709,226237 +141042,141042 +173005,173005 +365464,365464 +315733,315733 +103806,57865 +198035,198035 +109476,109476 +20935,20935 +65566,65566 +27344,27344 +109011,109011 +231487,231487 +321090,321090 +199503,204895 +289129,289129 +311217,311217 +183883,183883 +19601,19601 +221263,221263 +42375,42375 +130185,130185 +277160,277160 +19957,19957 +142794,271460 +246071,246071 +425853,425853 +274498,274498 +296406,296406 +7745,7745 +184154,184154 +35138,35138 +306950,306950 +222879,222879 +297900,297900 +320505,320505 +32696,32696 +171546,171546 +153119,153119 +62395,62395 +179418,179418 +1453,1453 +21210,6830 +237783,237783 +119404,119404 +131282,131282 +8221,8221 +21217,21217 +94975,94975 +312459,312459 +184760,184760 +25229,25229 +256607,173302 +312612,316700 +344638,344638 +398647,398647 +322408,2091 +331857,331857 +304432,304432 +137105,137105 +414046,414046 +357706,357706 +307680,307678 +208179,208179 +166759,166759 +377166,377166 +201511,201511 +251684,251684 +319898,319898 +364658,364658 +421603,421603 +305165,10310 +425116,425116 +382658,382658 +381445,381445 +37874,37874 +432546,432546 +338097,338097 +173446,173446 +144390,144390 +243120,243120 +412012,412012 +378437,378437 +151786,151786 +262914,262914 +294875,294875 +375519,375519 +167672,167672 +144533,144533 +289758,289758 +71908,71908 +361591,361591 +418411,145659 +200098,200098 +422343,422343 +342085,342085 +300147,247649 +410835,410835 +394851,394851 +195007,195007 +380319,380319 +317691,317691 +427136,427136 +430054,430054 +226391,226391 +86765,86765 +381310,381310 +402766,402766 +163649,163649 +348671,348671 +253167,253167 +325584,325584 +294045,294045 +404537,404537 +417820,417820 +189882,144567 +375775,375775 +427788,427788 +372404,372404 +422125,422125 +298847,54625 +102062,102062 +376038,376038 +76149,76149 +279912,279912 +182529,182529 +13468,13468 +367395,362669 +383037,21050 +430354,430354 +434306,434306 +401458,401458 +421378,421378 +428696,428696 +220534,220534 +261991,261991 +264327,264327 +296389,296389 +310886,310886 +182480,182480 +170929,170929 +322969,322969 +423752,423752 +343517,343517 +428848,428848 +426184,426184 +363431,363431 +373538,373538 +431045,431045 +158703,158703 +263332,263332 +228116,112138 +253492,253492 +145197,145197 +19330,19330 +355651,355651 +401039,60815 +308689,308689 +218493,218493 +336757,336757 +273850,273850 +251531,251531 +199248,199248 +299973,299973 +390574,200729 +310273,310273 +406892,268805 +348930,348930 +316101,316101 +219950,219950 +377782,377782 +396184,396184 +34007,34007 +221279,221279 +424579,424579 +233008,233008 +119216,119216 +354804,354804 +323646,323646 +204845,204845 +313433,58392 +267421,236931 +271053,271053 +363019,363019 +432229,293014 +401347,401347 +356969,356969 +247247,247247 +309838,334599 +15850,15850 +295456,295456 +26518,26518 +392466,392466 +357209,357209 +344644,340080 +222742,222742 +138300,138300 +7670,7670 +429677,429677 +135442,135442 +241925,241925 +356620,356620 +410179,410179 +409010,409010 +1857,1857 +366019,195137 +125940,125940 +357865,357865 +244323,244323 +24236,24236 +407184,407184 +427729,427729 +135535,135535 +397603,397603 +253382,253382 +39475,39475 +42745,42745 +205458,241805 +357678,357678 +255340,255340 +406870,406870 +174747,174747 +190633,190633 +38769,36963 +33042,33042 +289220,289220 +213684,213684 +30578,30578 +218202,218202 +157525,157525 +310277,310277 +16570,16570 +391498,391498 +306899,306899 +176212,176212 +372859,372859 +301525,301525 +27280,27280 +20344,20344 +219602,235254 +334332,334332 +400796,400796 +186522,186522 +287114,287114 +38508,38508 +380302,380302 +328723,328723 +268189,268189 +350000,350000 +72387,72387 +362652,362652 +408236,408236 +37720,37720 +345106,331317 +39910,39910 +58641,176647 +17915,17915 +59938,59938 +344852,344852 +320882,320882 +37304,37304 +123725,123725 +112574,112574 +279317,279317 +25109,25109 +352260,352260 +148418,148418 +40584,40584 +224626,224626 +321092,256021 +39316,39316 +370867,370867 +344345,344345 +184504,184504 +378526,337261 +312721,312721 +72409,72409 +24003,24003 +63761,63761 +214298,214298 +306339,306339 +428389,428389 +360836,360836 +223238,223238 +379753,379753 +32793,32793 +34813,34813 +235621,235621 +74956,74956 +298191,298191 +357332,357332 +328883,328883 +401880,38159 +12852,12852 +133370,133370 +346850,346850 +24166,24166 +314013,314013 +275033,117558 +392476,392476 +248248,248248 +185793,6931 +8006,8006 +399216,399216 +44180,44180 +389469,389469 +307006,307006 +41049,41049 +14677,14677 +15358,15358 +374461,374461 +19802,6830 +200002,244323 +33252,33252 +429767,429767 +70184,70184 +7786,7786 +267027,267027 +297365,297365 +38421,38421 +404283,404283 +10750,10750 +356925,356925 +357918,357918 +24705,24705 +264161,264161 +44126,44126 +113670,113670 +416900,363695 +382356,313543 +47312,47312 +85799,85799 +22450,22450 +133409,133409 +18292,18292 +292087,292087 +8580,8580 +146936,146936 +35537,35537 +168899,168899 +83257,83257 +111839,111839 +319820,319820 +8669,8669 +309853,309853 +22415,22415 +65049,65049 +63792,63792 +72527,72527 +335608,335608 +5780,5780 +274147,274147 +408481,408481 +410342,410342 +31611,31611 +14261,14261 +257181,257181 +322885,322885 +236460,236460 +309688,309688 +322332,322332 +38006,38006 +47344,47344 +333943,333943 +170948,170948 +329585,329585 +276364,276364 +336312,336312 +395757,291855 +229836,229836 +269039,269039 +381438,334307 +394157,394157 +310274,310274 +406382,406382 +202820,202820 +234762,234762 +40583,40583 +19055,19055 +361826,361826 +31229,31229 +244147,244147 +40960,40960 +364153,364153 +258715,258715 +368742,368742 +290921,290921 +287577,287577 +357044,357044 +21970,21970 +15675,15675 +22921,22921 +17095,17095 +391741,391741 +368740,353086 +35396,35396 +8422,8422 +293442,293442 +249735,249735 +210521,210521 +16999,16999 +225765,154892 +333941,333941 +302403,302403 +17165,17165 +319980,319980 +206365,206365 +2467,2467 +363108,127493 +23962,23962 +15812,9391 +262195,262195 +40690,40690 +386030,386030 +17590,17590 +30644,30644 +16204,16204 +40097,40097 +38526,38526 +420921,420921 +144731,144731 +219349,219349 +405719,405719 +365305,365305 +131264,131264 +65979,65979 +7839,7839 +21613,21613 +228141,228141 +423231,423231 +407682,407682 +255742,255742 +32172,32172 +239671,239671 +385660,463 +244303,244303 +33186,33186 +16599,16599 +378958,256621 +133343,133343 +266611,266611 +868,868 +240997,240997 +391008,391008 +20566,20566 +23871,23871 +299069,299069 +402866,402866 +57055,57055 +284207,284207 +143105,154203 +25733,25733 +39155,39155 +258382,258382 +403139,226634 +39398,39398 +217505,217505 +288444,288444 +415312,415312 +111738,111738 +103341,103341 +231398,231398 +130672,130672 +5817,5817 +242554,242554 +131165,171672 +303956,303956 +214132,214132 +18811,18811 +9280,9280 +29225,29225 +9274,9274 +7385,7385 +107735,107735 +132550,132550 +4895,4895 +3213,3213 +141300,141300 +11035,11035 +349633,349633 +107448,107448 +282012,282012 +4635,4635 +40555,40555 +159869,159869 +1384,1384 +341901,341901 +23573,23573 +85346,85346 +225986,225986 +393190,393190 +3027,3027 +144131,144131 +296556,296556 +178087,178087 +347824,347824 +29455,29455 +93041,93041 +177503,180602 +139038,139038 +347,347 +287072,287072 +9087,9087 +334055,334055 +62535,62535 +217320,2944 +388929,388929 +365952,365952 +63589,63589 +191046,191046 +377545,377545 +35613,35613 +89577,89577 +427797,427797 +24779,24779 +7189,7189 +175923,175923 +198574,6830 +141828,141828 +244951,244951 +119472,119472 +161193,136910 +284708,284708 +63371,63371 +242918,242918 +193271,193271 +415073,415073 +144768,144768 +243101,243101 +93523,93523 +202713,204895 +14120,14120 +368267,368267 +1320,1320 +15614,15614 +187030,187030 +394880,394880 +165951,165951 +13072,13072 +4473,4473 +9501,9501 +233355,233355 +13997,13997 +147673,147673 +145652,145652 +18885,18885 +4968,4968 +51495,51495 +152442,152442 +351854,351854 +181045,181045 +164251,463 +401984,401984 +335484,335484 +4399,4399 +299670,299670 +9334,9334 +143145,70461 +61475,61475 +218634,218634 +35341,35341 +319,319 +5012,710 +407176,407176 +43260,43260 +379614,379614 +174181,174181 +316069,233206 +17903,17903 +13839,13839 +154728,154728 +206927,206927 +261117,261117 +12061,3015 +149911,149911 +10782,10782 +19498,19498 +89569,89569 +382243,382243 +155748,155748 +354978,354978 +8760,8761 +24213,450 +134531,134531 +15076,15076 +129465,129465 +1790,1790 +195330,203430 +1351,1351 +307633,307633 +410345,410345 +144967,144967 +123975,123975 +185334,185334 +107434,107434 +16209,16209 +250940,250940 +9054,9054 +119372,360177 +286829,286829 +391130,153486 +140674,140674 +20601,20601 +176158,176158 +377060,377060 +7389,7389 +179604,179604 +121813,121813 +146001,146001 +318992,318992 +277411,277411 +63830,63830 +418917,418917 +6811,6811 +10872,10872 +351900,351900 +148530,3570 +144122,144122 +146145,146145 +7905,7905 +8122,463 +5422,5422 +386332,386332 +342088,342088 +255427,255427 +10835,10835 +247169,247169 +2697,2697 +93164,109044 +168203,168203 +131448,131448 +32417,32417 +235900,235900 +345049,345049 +131759,131759 +243762,243762 +371851,371851 +292712,292712 +244193,244193 +41155,41155 +152245,152245 +7898,7898 +320988,320988 +61849,61849 +2911,2911 +22895,22895 +180185,180185 +351857,351857 +125534,125534 +86033,86033 +317885,317885 +85389,85389 +252697,252697 +4664,4664 +3814,3814 +88086,88086 +270316,270316 +207956,26582 +369938,266460 +195903,195903 +145581,145581 +322235,12269 +382650,382650 +155487,155487 +403529,403529 +428908,3076 +431420,431420 +293493,293493 +356846,356846 +403327,403327 +138194,138194 +197942,197942 +38518,38518 +352577,352577 +299384,299384 +253805,253805 +67411,67411 +269701,269701 +25539,25539 +224545,224545 +131567,131567 +8301,8301 +92514,92514 +85954,85954 +293980,323849 +378391,378391 +299064,299064 +166528,166528 +339195,339195 +378988,378988 +264506,264506 +419907,419907 +335650,335650 +178455,178455 +61317,61317 +420093,420093 +416159,416159 +226500,226500 +333566,333566 +21698,2398 +323026,323026 +407384,407384 +124313,124313 +257844,257844 +264711,264711 +398683,398683 +323153,323153 +230479,230479 +337432,337432 +310137,310137 +386951,386951 +264201,237925 +282704,282704 +13948,13948 +29589,29589 +337090,337090 +414567,414567 +214656,214656 +362165,362165 +344395,344395 +38371,38371 +202725,202725 +153295,153295 +291638,291638 +433910,433910 +120328,120328 +413737,413737 +8209,8209 +306718,306718 +203733,203733 +35187,35187 +363182,363182 +160480,160480 +322864,760 +275884,275884 +191238,191238 +202186,124413 +356417,356421 +382929,382929 +370801,370801 +16589,16589 +309863,302071 +194515,194515 +8407,8407 +432348,432348 +35649,35649 +419230,419230 +396657,318036 +167214,167214 +369735,317300 +195499,195499 +289632,289632 +267737,267737 +203549,203549 +314347,17618 +119421,119421 +7953,7953 +23454,23454 +360228,360228 +101596,101596 +22609,22609 +389226,389226 +423590,423590 +316699,316699 +27509,27509 +370229,38159 +255950,255955 +39670,39670 +31175,31175 +231815,10183 +367897,367897 +13737,13737 +234885,234885 +401109,401109 +272449,272449 +330714,330714 +233040,233040 +296422,296422 +348793,348793 +398149,397893 +33010,33010 +29675,29675 +412523,412523 +419746,291855 +23116,23116 +240172,240172 +388460,388460 +311195,311195 +69933,69933 +73765,73765 +15673,15673 +342658,342658 +151433,151433 +143436,182233 +229205,229205 +366309,366309 +15518,15518 +193382,193382 +424555,2165 +298415,298415 +356677,356677 +411252,411252 +34961,34961 +225489,225489 +31826,31826 +333583,146650 +306960,306960 +425824,425824 +157593,157593 +335849,335849 +208082,26582 +100216,31716 +37109,37109 +156723,156723 +382901,382901 +373987,373987 +371093,371093 +354252,354252 +258028,258028 +176345,190523 +358836,358836 +79057,79057 +422395,129556 +346424,346424 +422595,422595 +380930,380930 +393526,393526 +182355,182355 +41800,41800 +349356,349356 +228794,228794 +24154,24154 +308476,308476 +144434,144434 +265143,265143 +357014,339251 +294464,294463 +96944,96944 +99758,99758 +85527,85527 +45476,45476 +296735,296735 +373914,373914 +27223,27223 +38297,38297 +364782,364782 +121799,121799 +365924,365924 +410919,410919 +176635,176635 +338978,338978 +18815,18815 +238244,238244 +35382,35382 +281016,281016 +365131,365131 +28709,7071 +5962,5962 +4506,590 +86571,86571 +37719,37719 +40982,40982 +77453,77453 +280134,280134 +7812,7812 +222227,158887 +13738,13738 +160077,160077 +361693,290561 +360354,360354 +8272,8272 +22125,22125 +125878,125878 +238034,238034 +409481,409481 +216151,216151 +122619,122619 +30018,30018 +363568,363568 +339896,339896 +247448,247448 +332491,332491 +404717,404717 +360475,360475 +239964,239964 +132399,132399 +354079,354079 +11885,11885 +75816,75816 +308187,308187 +374315,374315 +321199,321199 +267749,267746 +180924,180924 +19632,19632 +244811,244811 +17585,17585 +19033,19033 +400856,400856 +83662,83662 +10080,10080 +305055,432 +17308,17308 +412538,412538 +231851,231851 +77199,96728 +138226,138226 +230615,230615 +110296,110296 +363664,363664 +190092,190092 +193190,193190 +239552,239552 +297925,297925 +282893,282893 +245128,245128 +91113,91113 +367567,367567 +6651,6651 +63674,63674 +164588,164588 +336746,336746 +161935,161935 +23835,23835 +280017,280017 +66952,66952 +303322,303322 +18789,18789 +192726,192726 +15160,15160 +13018,13018 +187882,187882 +27474,27474 +67708,67708 +62352,62352 +25375,25375 +20290,20290 +8587,8587 +165580,165580 +247927,247927 +348049,348049 +242483,242483 +404965,231215 +22655,22655 +400872,400872 +366383,178900 +34713,34713 +282890,282890 +357373,357373 +418597,418597 +348115,348115 +168006,168006 +36280,36280 +172340,172340 +191394,191394 +213755,213755 +370641,370641 +419407,419407 +293628,293628 +9424,9424 +335324,335324 +111733,111733 +38388,38388 +164847,164847 +10224,10224 +69326,69326 +28844,28844 +91394,91394 +2858,2858 +191660,191660 +193976,193976 +181998,181998 +7041,7041 +383129,364425 +258250,258250 +264607,264607 +251218,251218 +261000,261000 +293559,293559 +7020,6625 +134968,134968 +86032,86032 +17689,17689 +176076,176076 +132014,132014 +7441,7441 +23630,23630 +9664,9664 +285016,285016 +182092,182092 +301568,301568 +257908,257908 +37988,37988 +46992,46992 +12587,12587 +27428,27428 +148580,128419 +187480,187480 +190681,190681 +395644,54625 +277052,277052 +303166,303166 +12570,12570 +362446,362446 +7011,7011 +13746,13746 +187538,187538 +8014,8014 +19476,19476 +23331,23331 +298155,298155 +153232,153232 +93353,93353 +359236,359236 +334206,334206 +14995,14995 +21063,21063 +279320,279320 +9239,9239 +197075,197075 +37693,37693 +89605,89605 +76670,76670 +269707,269707 +31354,31354 +18284,18284 +9331,9331 +9646,9646 +144556,10272 +5551,5551 +100687,100687 +14126,14126 +190064,190064 +279390,279390 +177080,177080 +299993,299993 +113331,42101 +133531,133531 +6580,6580 +147719,147719 +334482,334482 +50465,50465 +255346,255346 +11882,11882 +389198,389198 +39306,39306 +130601,1219 +185014,185014 +168895,168895 +233009,233009 +143200,143200 +2460,2460 +205623,205623 +12821,12821 +258859,258859 +403498,403498 +318535,318535 +153380,153380 +258119,258119 +13432,13432 +51283,51283 +241146,265023 +311270,311270 +3351,3351 +97101,97101 +190582,190582 +303729,303729 +269038,269074 +12432,12432 +223329,223329 +365028,365028 +341222,341222 +12559,12559 +4341,4341 +38897,38897 +219410,219410 +150426,150426 +124159,124159 +207803,207803 +101414,101414 +309526,309526 +331831,331831 +32231,32231 +310356,310356 +296272,296272 +381579,381579 +432324,432324 +322373,322373 +131277,131277 +250938,250938 +19843,19843 +246088,246088 +170278,170278 +234049,234049 +408266,408266 +10805,10805 +237704,237704 +1981,1981 +7876,7876 +63047,63047 +356509,356509 +20564,20564 +154253,154253 +193031,193031 +411129,411129 +10666,10666 +181309,181309 +10993,10993 +24168,24168 +137910,137910 +7762,7762 +23342,23342 +10528,10528 +168012,168012 +238222,238222 +350567,257924 +4572,4572 +153753,153753 +5762,5762 +6689,6689 +425539,425539 +246709,246709 +128215,128215 +172244,223779 +34471,34471 +296404,296404 +168011,168011 +67884,67884 +23855,23855 +227492,227492 +230079,230079 +253526,253526 +393412,393412 +2373,2373 +7533,7533 +25023,25023 +301679,301679 +284080,284080 +292843,234292 +358080,358080 +254789,254789 +43176,43176 +347553,347553 +226511,226511 +403132,403132 +5030,5030 +11329,11329 +133886,133886 +2801,2801 +26395,26395 +201243,201243 +12368,12368 +283247,283247 +18840,18840 +423945,423945 +3378,3378 +145388,145388 +17847,17847 +333511,319762 +300752,300752 +11191,11191 +144778,144778 +83610,83610 +163635,163635 +149071,149071 +312799,312799 +37206,37206 +341936,341936 +362858,362858 +8298,8298 +270263,270263 +169056,66088 +29018,271 +97603,97603 +130355,130355 +5601,5601 +191074,191074 +21047,1419 +61824,61824 +17118,463 +28246,28246 +6852,8830 +260268,260268 +135092,135092 +62374,62374 +211245,211245 +367772,367772 +68210,68210 +280384,280384 +382758,382758 +163769,163769 +408763,408763 +360900,360900 +256720,256720 +353124,353124 +406692,406692 +306442,306442 +406928,406928 +171038,171038 +357543,357543 +356265,356265 +413605,413605 +24701,24701 +328673,328673 +316095,316095 +145184,145184 +246112,246112 +422981,422981 +144532,144532 +346608,346608 +339869,339869 +336144,336144 +324587,324587 +385275,385275 +340871,340871 +203007,203007 +143624,7090 +363645,363645 +255462,255462 +214564,214564 +263897,263897 +420203,420203 +197487,197487 +396121,396121 +400573,400573 +296423,296423 +80000,80000 +42372,42372 +58391,58391 +137235,137235 +427097,427097 +356219,356219 +314462,314462 +430698,430698 +363293,363293 +367001,367001 +336618,336618 +315757,315757 +172883,308652 +141182,141182 +371246,371246 +365669,365669 +123112,123112 +350183,350183 +357882,357882 +423892,423892 +182298,182298 +433462,36739 +346556,346556 +184989,184989 +307660,307678 +324554,324554 +12796,12796 +336789,336789 +173859,174238 +215920,215920 +97190,97190 +360500,360500 +427254,427254 +378311,378311 +349795,463 +419593,419593 +347620,340255 +433323,433323 +33213,33213 +155587,155587 +265969,265969 +259373,259373 +222757,222757 +231749,231749 +396957,396957 +391049,391049 +374748,374748 +43159,43159 +16379,16379 +383251,383251 +301950,301950 +429275,429275 +295092,295092 +410227,410227 +252561,252561 +233406,233406 +366249,366249 +28900,28900 +375865,375865 +34191,34191 +316975,12346 +220217,220217 +70802,70802 +397825,397825 +376402,368790 +410782,410782 +232493,232493 +249200,249200 +344505,344505 +419147,419147 +87079,87079 +339631,339631 +347910,347910 +277395,277395 +297785,31716 +345079,345079 +379645,379645 +380564,380564 +320678,320678 +32475,32475 +241758,241758 +314888,314888 +359867,359867 +320834,320834 +30068,30068 +346998,346998 +210063,210063 +428269,428269 +367436,367436 +316693,316693 +375410,375410 +431079,431079 +264671,276477 +304605,304605 +383964,383964 +380514,380514 +305840,4854 +27491,27491 +335126,335126 +393475,393475 +398366,398366 +432831,432831 +325256,325256 +417879,417879 +425575,701 +173125,173125 +356898,356898 +288477,288477 +349605,349605 +176804,176804 +255170,255170 +312545,312545 +252232,252232 +163052,163052 +371863,371863 +177329,177329 +312490,312490 +425237,425237 +366640,366640 +274100,274100 +244250,244250 +357052,357052 +406182,406182 +410628,410628 +366493,366493 +408775,408775 +348154,348154 +176790,176790 +397835,397835 +158934,158934 +325142,325142 +424924,424924 +147819,147819 +347884,347884 +389011,389011 +395260,395260 +181365,181365 +14903,14903 +346121,37731 +278926,278926 +25352,25352 +419313,419313 +412266,412266 +10286,10286 +334441,334441 +134843,134843 +181046,181046 +173670,173670 +377304,377304 +407178,191051 +335716,335716 +358754,358754 +348807,348807 +382930,382930 +155071,155071 +297434,99969 +214176,156420 +335348,335348 +103434,103434 +316356,3970 +66803,66803 +39058,39058 +13238,13238 +18621,18621 +346179,346179 +255292,255292 +246564,246564 +211087,211087 +352412,352412 +338986,338986 +239675,239675 +274567,274567 +413234,153064 +430995,430995 +118625,26775 +368551,222291 +295474,295474 +326604,326604 +178707,178707 +144956,213371 +372175,372175 +304781,304781 +212564,212564 +40486,40486 +356481,356481 +18738,18738 +159578,159578 +372034,372034 +21583,21583 +22239,463 +380355,380355 +175498,175498 +359618,1540 +71817,71817 +7646,7646 +126337,126337 +242698,242698 +304259,27754 +328220,328220 +277269,277269 +245870,245870 +158314,158314 +320020,319742 +118624,118624 +345574,358571 +416201,416201 +34452,34452 +352222,352222 +161651,161651 +390183,390183 +42411,232267 +274951,274951 +348182,348182 +401244,351488 +353129,353129 +401045,344689 +388525,388525 +161670,161670 +37297,37297 +25691,25691 +18337,18337 +13769,13769 +46313,1421 +420520,420520 +39727,39727 +421701,238305 +415623,415623 +37340,37340 +347963,347963 +401590,401590 +401090,401090 +254912,254912 +230614,230614 +417472,417472 +270948,270948 +293703,218383 +17753,17753 +200540,200540 +9040,85124 +432506,432506 +246458,246458 +323146,310894 +161996,161996 +8534,8534 +265062,265062 +275805,198142 +183094,183094 +208376,5455 +31813,31813 +328543,328543 +24592,24592 +301278,301278 +146170,146170 +27661,27661 +2690,2690 +18347,18347 +43400,43400 +21078,21078 +353334,353334 +398713,398713 +126667,126667 +93470,93470 +149473,149473 +260567,260567 +395422,395422 +382732,382732 +2837,2837 +16022,16022 +89341,38987 +317737,317737 +208482,208482 +18493,18493 +121893,121893 +31914,31914 +6471,6471 +22686,22686 +321037,321037 +161633,161633 +405871,405871 +162483,162483 +336501,239877 +73204,73204 +323214,323214 +368306,368306 +34634,34634 +414728,398991 +400926,235922 +282891,282891 +313455,313455 +389728,389728 +34868,34868 +342231,342231 +30293,30293 +370029,370029 +180927,218615 +123739,123739 +7509,7509 +55888,55888 +5643,5643 +18261,18261 +320468,231801 +343335,343335 +27413,27413 +184444,184444 +357883,357883 +381534,381534 +23820,23820 +205549,205549 +277459,277459 +415276,370997 +37212,37212 +38893,38893 +338669,338669 +326165,326165 +352296,352296 +55831,55831 +93592,93592 +39450,39450 +55986,55986 +19029,19029 +38954,38954 +5179,5179 +8492,8492 +325214,325214 +54835,54835 +12612,12612 +349365,349365 +18250,18250 +108009,108009 +327464,327464 +70359,70359 +6418,6418 +27123,27123 +380941,137354 +238683,238683 +294714,209280 +297830,12854 +17948,17948 +7448,7448 +135564,135564 +296165,296165 +381104,381104 +287573,287573 +84297,84297 +350472,350472 +368624,368624 +29413,29413 +234446,234446 +15148,15148 +83232,83232 +23239,23239 +256711,256711 +7229,220988 +17985,17985 +87508,87508 +12093,12093 +19189,19189 +7025,7025 +356020,356020 +290626,289951 +235872,235872 +39511,39511 +359741,359741 +339238,339238 +238017,238017 +252063,252063 +372134,372134 +308042,1536 +330760,330760 +15342,15342 +13668,13668 +206914,206914 +347009,347009 +173754,173754 +231203,231203 +391067,391067 +135493,135493 +14170,463 +232250,232250 +306643,306643 +156857,156857 +12351,12351 +362474,362474 +172377,172377 +86748,86748 +148192,148192 +33144,33144 +181421,181421 +9942,9942 +239121,239121 +250654,250654 +7507,7507 +282888,282888 +253947,253947 +35078,35078 +281417,281417 +88704,88704 +20260,20260 +42297,42297 +125740,125740 +24276,24276 +24311,178096 +345283,173090 +20558,20558 +182633,147194 +292848,292848 +21435,21435 +4887,4887 +65999,65999 +12723,12723 +290920,290920 +342998,342998 +18220,18220 +50910,50910 +244165,244165 +269180,269180 +72646,72646 +3923,3923 +16603,16603 +164392,164392 +359085,341192 +358998,358998 +27514,27514 +272826,272826 +89957,89957 +7599,7599 +8137,8137 +28517,28517 +36525,36525 +127426,127426 +3626,3626 +350722,350722 +260009,260009 +31455,31455 +249124,249124 +184713,184713 +294490,8722 +297789,112102 +151228,8924 +353694,353694 +3739,3739 +2124,2124 +352342,352342 +123107,16992 +231657,231657 +115997,115997 +320515,320515 +94292,94292 +40942,40942 +14943,14943 +20065,63975 +167432,167432 +199697,204895 +253949,253949 +144222,144222 +126713,126713 +273448,273448 +336321,336321 +5036,5036 +66624,66624 +182864,182864 +18698,18698 +117815,63014 +184223,184223 +292831,463 +178454,178454 +18564,18564 +351815,351815 +364245,364245 +224926,224926 +131475,131475 +209634,209634 +56962,56962 +184071,184071 +12695,12695 +129033,129033 +10349,10349 +342571,342571 +191928,191928 +198041,198041 +192181,192181 +156015,156015 +318632,318632 +282151,282151 +396250,396250 +365729,365729 +16330,16330 +259575,259575 +400861,400861 +301293,301293 +373558,373558 +222493,222493 +88399,88399 +14398,14398 +87861,87861 +337249,259830 +312401,2944 +114482,114482 +166440,166440 +417530,417530 +101766,101766 +57775,57775 +288023,288023 +9022,9022 +336888,336888 +38148,463 +20164,20164 +296302,187806 +136265,136265 +38288,38288 +1357,1357 +13437,13437 +176864,85633 +16729,16729 +322899,322899 +190563,190563 +4949,4949 +97456,97456 +282341,282341 +208284,208284 +267026,267026 +23583,23583 +286330,286330 +7851,7851 +123211,123211 +89241,89241 +13249,13249 +103512,103512 +414790,414790 +104618,104618 +302630,302630 +355333,355333 +112897,112897 +392439,392439 +116779,116779 +31676,31676 +191720,35665 +114441,114441 +15044,15044 +130627,130627 +73232,73232 +3639,3639 +6977,6977 +415885,415885 +203353,203353 +340125,340125 +394155,394155 +340102,340102 +160562,160562 +203401,203401 +203018,203018 +137362,137362 +276758,834 +402851,402851 +63907,63907 +27855,27855 +294201,294201 +349106,288969 +232771,232771 +422745,422745 +20429,11054 +358151,358151 +66400,66400 +358926,358926 +278734,278734 +354704,354704 +268767,124954 +5063,5063 +265813,265813 +175977,175977 +238342,283850 +58861,58861 +224151,224151 +283835,283835 +172064,172064 +77354,77354 +55760,55760 +7568,7568 +1611,1611 +19243,19243 +327299,327299 +208837,208837 +233001,233001 +23801,23801 +374481,211734 +236893,236893 +399728,399728 +3357,3357 +305104,305104 +40629,40629 +163188,163188 +408841,408841 +336356,336356 +17087,17087 +85022,85022 +33731,33731 +168949,168949 +100880,100880 +79998,79998 +4814,4814 +321753,321753 +308041,1536 +7296,7296 +377899,377899 +6383,6383 +139370,139370 +262399,262399 +351800,351800 +333220,4052 +394696,394696 +13257,13257 +116562,116562 +15620,15620 +3891,3891 +137937,137937 +24347,24347 +202941,202941 +321692,94338 +286703,286703 +5664,5664 +407210,142219 +415774,415774 +432768,432768 +341078,341078 +258802,258802 +392446,392446 +284689,284689 +102719,102719 +364334,364334 +339363,339363 +427830,427830 +417652,417652 +407197,316560 +310897,310897 +208263,208263 +221112,221112 +395411,395411 +348596,348596 +380126,380126 +228165,228165 +422536,422536 +246277,246277 +391767,391767 +414603,414603 +368443,368443 +416544,416544 +429960,429960 +134675,134675 +111842,111842 +429250,429250 +375518,375518 +390014,390014 +254275,254275 +272696,272696 +307666,307678 +430041,430041 +429463,429463 +421997,421997 +404263,404263 +360793,360793 +22676,22676 +425111,425111 +305860,305860 +354956,354956 +314061,314061 +374238,374238 +261109,261109 +369305,369305 +414276,414276 +345010,345010 +253665,253665 +376380,376380 +328476,328476 +424968,424968 +244427,244427 +246613,246613 +154657,154657 +347588,347588 +254775,254775 +432459,432459 +335757,335757 +66875,66875 +348169,348169 +381344,381344 +254623,254623 +380358,380358 +69235,69235 +434147,434147 +425288,425288 +295563,295563 +426580,146652 +395424,1782 +300229,300229 +191048,94255 +144555,144555 +225389,225389 +337581,337581 +357899,357899 +270881,270881 +375646,375646 +421069,421069 +121055,121055 +288651,288651 +309258,309258 +402993,402993 +98106,98106 +222139,222139 +433828,433828 +129513,129513 +276947,276947 +164195,164195 +419213,419213 +347698,347698 +311402,311402 +307672,307678 +406763,406763 +409617,409617 +341075,341075 +211388,211388 +196169,196169 +387962,387962 +309757,309757 +371143,371143 +146461,146461 +396917,396917 +343578,343578 +427237,427237 +280877,280877 +166978,166978 +365974,365974 +430515,430515 +211199,211199 +404044,400274 +402564,402564 +414633,414633 +428724,428724 +371227,371227 +195346,193096 +425710,425710 +101007,101007 +376036,376036 +211258,211258 +429587,199881 +246020,246020 +394986,394986 +362034,362034 +420249,420249 +422075,422075 +238404,238404 +355050,355050 +432522,432522 +257098,257098 +253898,253898 +325189,325189 +341414,341414 +389034,389034 +390143,390143 +373280,373280 +383118,383118 +374329,374329 +233861,233861 +312939,312939 +109598,109598 +391302,391302 +324125,324125 +380545,305559 +210051,210051 +170606,170606 +431055,431055 +277441,277441 +248298,248298 +429851,429851 +423813,423813 +328712,328712 +347916,347916 +422650,193725 +367847,367847 +417811,417811 +351773,351773 +175534,175534 +425745,425745 +412813,412813 +397837,397837 +72567,72567 +399812,399812 +228622,228622 +180120,180120 +421694,421694 +338911,338911 +396827,396827 +278538,278538 +402026,402026 +407815,407815 +428515,301710 +364032,364032 +153649,153649 +164965,164965 +419170,2398 +421505,421505 +428939,428939 +387612,387612 +239276,239276 +427234,427234 +411886,411886 +383370,383370 +406704,406704 +292107,292107 +254104,254104 +273573,273573 +423479,423479 +280764,280764 +292465,292465 +425769,425769 +319956,319956 +398930,398930 +393883,393883 +40599,40599 +253762,253762 +374830,374830 +434222,434222 +400788,400788 +88581,88581 +390572,222291 +231700,231700 +104692,104692 +346674,346674 +430883,430883 +88753,88753 +261032,261032 +22535,22535 +339626,339626 +397822,397822 +431905,431905 +320691,320691 +314732,314732 +202845,202845 +425511,425511 +164006,164006 +366990,366990 +416005,416005 +423049,423049 +216101,216101 +314248,314248 +233920,233920 +290558,290558 +319150,319150 +431040,431040 +421947,421947 +307781,307781 +401362,401362 +315006,315006 +356741,356741 +297022,297022 +195728,193096 +280569,280569 +342386,342386 +341000,341000 +195045,195045 +406871,406871 +79122,79122 +413224,413224 +384108,384108 +400818,400818 +201414,201414 +191637,191637 +249810,168250 +423223,297807 +419608,419608 +391971,391971 +267539,267539 +346249,346249 +8120,8120 +180243,180243 +237360,237360 +378950,378950 +235836,235836 +213321,213321 +408851,408851 +183804,183804 +393038,6226 +339549,339549 +240611,240611 +286588,286588 +362850,362850 +400032,400032 +416510,416510 +282847,282847 +402239,402239 +428022,428022 +428282,428282 +351095,351095 +425571,425571 +193857,193857 +430632,336811 +179966,179966 +353461,353461 +210717,210717 +264255,264255 +372963,7203 +290568,290568 +306184,306184 +172106,172106 +346295,346295 +411391,411391 +204611,204611 +408812,408812 +420310,420310 +291292,291292 +307641,307678 +37094,37094 +381392,381392 +204238,204238 +363580,363580 +252992,252992 +365730,365730 +220974,220974 +373227,373227 +430662,430662 +290767,290767 +420929,420929 +264382,418829 +331128,331128 +233850,233850 +287945,287945 +219082,219082 +304874,304874 +399795,399795 +369204,369204 +431634,431634 +386733,386733 +303430,303430 +306260,306260 +8505,8505 +358147,17167 +38899,38899 +286397,286397 +269776,269776 +277229,277229 +40273,40273 +123509,123509 +321188,321188 +291240,291240 +377041,377041 +12553,12553 +430703,430703 +382214,382214 +364024,364024 +428735,428735 +71828,71828 +28156,28156 +430461,430461 +98941,98941 +390571,390571 +30856,30856 +316041,316041 +31665,31665 +401089,401089 +333854,333854 +12636,12636 +247761,247761 +33097,33097 +430307,430307 +12864,12864 +401587,401587 +230141,230141 +28082,28082 +148193,148193 +320001,320001 +116731,116731 +294695,294695 +336818,336818 +351733,351733 +213815,42101 +169895,169895 +333364,333364 +27091,27091 +379876,379876 +148416,148416 +152126,152126 +325897,325897 +303604,303604 +423711,423711 +392375,392375 +249091,249091 +405144,405144 +35432,35432 +143002,143002 +226348,226348 +70271,70271 +277329,277329 +271841,271841 +288571,288571 +23191,23191 +343083,343083 +375279,375279 +304019,304019 +269760,269760 +199898,204895 +160071,160071 +162282,162282 +40078,40078 +231385,231385 +169270,169270 +4750,4750 +397248,397248 +428638,428638 +13274,13274 +65950,65950 +171868,148007 +146217,146217 +430875,430875 +185226,185226 +242979,242979 +70777,70777 +176637,176640 +400821,400821 +369972,369972 +188437,188437 +233198,233198 +331856,331856 +188415,188415 +289935,289935 +398030,398030 +38004,38004 +394294,394294 +419554,419554 +233275,233275 +243315,243315 +330479,65242 +378788,378788 +358210,358210 +36487,36487 +340210,340210 +367898,367898 +326493,326493 +55978,55978 +323143,310894 +421691,421691 +299470,299470 +296511,296511 +299219,299219 +208701,208701 +74023,74023 +146546,146546 +394758,394758 +6316,6316 +286013,286013 +313014,146458 +401363,401363 +348762,1540 +27890,27890 +359014,359014 +306946,306946 +122692,119496 +354816,354816 +29990,29990 +239681,239681 +232121,20100 +173855,173855 +23177,23177 +422963,422963 +319454,319454 +388396,388396 +134789,134789 +335686,335686 +224064,224064 +320814,145493 +376290,376290 +225239,225239 +413868,413868 +214822,214822 +97110,97110 +191052,191052 +429836,429836 +382120,382120 +319707,319707 +429178,429178 +407225,407225 +316495,316495 +150149,150149 +414892,414892 +201147,140 +421247,421247 +273272,273272 +27857,27857 +63620,63620 +72171,72171 +328051,328051 +22911,22911 +273339,273339 +199004,199004 +35904,1421 +286065,286065 +27755,27755 +161511,354628 +170848,170848 +15340,15340 +285480,285480 +150277,150277 +307777,307657 +257060,257060 +396745,396745 +187651,187651 +176842,176842 +353191,353191 +291746,291746 +128505,128505 +321586,321586 +394139,394139 +151511,151511 +360085,360323 +36404,36404 +237778,237778 +344037,37770 +31783,31783 +83889,83889 +287259,287259 +256527,256527 +99817,42101 +311057,311057 +352168,352168 +344535,344535 +317090,317090 +278662,278662 +22221,22221 +8606,8606 +329727,329727 +20882,20882 +411245,411245 +327645,20545 +282079,9391 +104345,104345 +389125,343507 +236925,36367 +280310,280310 +414048,414048 +231789,231789 +349373,263185 +226516,226516 +379353,374923 +342561,342561 +88616,88616 +360087,360087 +143159,143159 +252903,252903 +375737,375737 +377513,377513 +341516,341516 +389817,389817 +42383,42383 +15256,15256 +19535,19535 +368981,368981 +58725,58725 +197816,197816 +39152,39152 +303629,303629 +260470,260470 +373512,373512 +325442,325442 +414955,414955 +328055,328055 +38277,38277 +243252,243252 +131961,131961 +99818,99818 +253363,56171 +18790,18790 +399105,399105 +194063,194063 +22296,22296 +262335,262335 +9162,9162 +37922,463 +243607,243607 +42595,42595 +380712,380712 +333440,333440 +146251,146251 +29344,29344 +332614,161297 +246311,246311 +364651,364651 +169424,169424 +339643,339643 +42915,42915 +39449,39449 +43382,43382 +386506,386506 +377665,377665 +349743,349743 +138491,138491 +424971,424971 +7535,7535 +363715,363715 +41914,41914 +353166,353166 +404173,404173 +56403,56403 +42989,42989 +206321,206321 +353571,353571 +220305,220305 +302397,160545 +225984,225984 +301697,301697 +16740,193862 +324534,324534 +94236,94236 +18989,18989 +310948,310948 +280179,280179 +292929,292929 +248593,248593 +55647,55647 +385832,385832 +297798,297798 +420594,366194 +289759,272853 +135765,135765 +34339,34339 +427238,427238 +26234,26234 +206303,206303 +258442,258442 +289470,272853 +378886,378886 +150304,150304 +15920,15920 +275353,275353 +421895,421895 +367997,367997 +109935,109935 +329949,329949 +7741,7741 +248726,248726 +344837,344837 +76161,76161 +29342,29342 +170852,170852 +349976,349976 +418031,380975 +203986,203986 +134941,134941 +365335,365335 +27022,27022 +95983,95983 +346054,346054 +239830,239830 +3682,18129 +325896,325896 +31191,31191 +417357,417357 +145571,145571 +296009,313876 +255453,255453 +6415,6415 +338030,338030 +116215,116215 +282852,282852 +360955,360955 +358123,358123 +179593,178595 +260831,260831 +24245,24245 +33907,17557 +8459,8459 +104810,104810 +17661,17661 +306363,217680 +347163,188784 +109088,109088 +270906,127493 +402458,402458 +413053,413053 +401240,400209 +251694,251694 +16047,16047 +9990,9990 +224890,224890 +217645,217645 +251290,251290 +18156,18156 +144565,144565 +180688,352602 +401546,401546 +306463,306463 +329754,329754 +6804,6804 +304676,304676 +4836,4836 +163208,163208 +13743,13743 +169920,169920 +4188,4188 +5708,5708 +2101,2101 +168031,293495 +426482,426482 +203043,203043 +39077,39077 +195186,195186 +260205,43443 +256826,256826 +318293,318293 +141680,141680 +7841,7841 +27851,27851 +6078,6078 +10694,10694 +286561,286561 +26268,26268 +377394,377394 +40212,40212 +268460,268460 +9917,9917 +226638,226638 +335384,335384 +258087,258087 +21126,21126 +34404,34404 +410278,410278 +404429,315254 +307221,289601 +358494,358494 +351931,351931 +21039,21039 +403791,403791 +224453,224453 +108567,108567 +181355,181355 +400932,400932 +359642,359642 +105181,70128 +9484,9484 +168452,168452 +93483,93483 +254158,254158 +182848,182848 +15873,15873 +279088,279088 +364345,364345 +109203,109203 +6180,6180 +165880,165880 +775,2537 +426960,426960 +152868,152868 +2269,2269 +32644,32644 +29441,29441 +363018,363018 +258447,258447 +180914,180914 +32154,32154 +340772,313543 +245320,245320 +151775,151775 +259062,259062 +67545,67545 +84797,84797 +97232,97232 +275059,275059 +269963,269963 +148806,148806 +145587,145587 +16148,16148 +7985,7985 +15918,15918 +426311,426311 +252892,252892 +317732,317732 +118258,118258 +8997,8997 +29374,29374 +124709,124709 +6453,6453 +258438,258438 +359297,359297 +27032,90002 +217519,217519 +351192,336962 +318656,318656 +302452,302452 +1661,1661 +100049,100049 +256374,256374 +269448,269448 +20057,20057 +33884,33884 +113750,113750 +9569,9569 +13228,13228 +9083,9083 +38647,38647 +116972,116972 +165651,34113 +9856,9856 +10392,10392 +2586,2586 +217232,217232 +128446,128446 +32658,32658 +34114,34114 +192233,192233 +144091,144091 +59732,59732 +2590,2590 +31380,31380 +286251,286251 +172411,172411 +7208,7208 +123318,123318 +432843,432843 +333540,236577 +314064,314064 +410225,410225 +286772,286772 +280061,224992 +293050,293050 +28809,28809 +42716,42716 +280060,224992 +1947,1947 +28074,28074 +3951,3951 +14662,14662 +152625,152625 +292732,292732 +349167,349167 +231870,231870 +122281,122281 +27388,27388 +14496,14496 +255266,255266 +3660,3660 +19859,19859 +26613,26613 +429962,128780 +136138,136138 +36531,36531 +8708,8708 +39623,416 +348157,348157 +270632,270632 +378599,378599 +19674,19674 +22960,22960 +216580,216580 +384153,384153 +6377,6377 +353538,353538 +424321,424321 +346667,346667 +41081,41081 +362639,362639 +15880,15880 +15613,15613 +22213,22213 +391523,400113 +14424,14424 +23864,23864 +8155,20043 +177670,177670 +3384,3384 +19998,19998 +304698,304698 +335151,335151 +133957,133957 +8502,8502 +141569,141569 +22169,553 +104554,104554 +92303,92303 +185141,185141 +234600,234600 +221625,221625 +38234,463 +357395,357395 +26760,26760 +147993,147993 +115076,115076 +62533,8243 +56843,56843 +238883,238883 +182412,17 +284638,284638 +281666,281666 +225094,225094 +166156,166156 +262622,262622 +13939,13939 +412156,412156 +423238,423238 +40502,40502 +159611,159611 +99208,99208 +132325,132325 +270958,270958 +3145,3145 +379930,379930 +92497,12304 +243771,243771 +73248,73248 +23522,23522 +164722,164722 +310694,310694 +349494,349494 +433257,433257 +419149,419149 +431225,431225 +111721,111721 +362553,362553 +328896,328896 +350012,350012 +426148,426148 +229775,229775 +8237,8237 +158575,158575 +160049,160049 +369055,369055 +344848,344848 +9134,9134 +174236,174236 +10512,10512 +205915,205915 +30375,30375 +243257,243257 +67782,67782 +38399,38399 +386313,235088 +28695,28695 +341578,341578 +356339,198142 +331365,331365 +430631,430631 +320551,320551 +409915,409915 +351575,351575 +62398,62398 +272233,29375 +220166,220166 +377647,337226 +416081,416081 +349538,349538 +180404,180404 +432305,432305 +290007,290007 +175033,175033 +352411,352411 +291613,291613 +129746,129746 +323716,323716 +144163,144163 +316565,316565 +383077,383077 +405098,405098 +34709,34709 +328857,328857 +370279,370279 +261248,235523 +97451,97451 +363932,363932 +352162,352162 +356335,356335 +133444,133444 +153228,153228 +14110,14110 +424165,193912 +207288,207288 +216809,216809 +338629,338629 +211094,211094 +322931,322931 +254358,254358 +35005,35005 +323065,323065 +278396,278396 +8482,8482 +328397,328397 +311688,311688 +186326,186326 +346701,346701 +105035,105035 +341006,341006 +216390,216390 +333019,333019 +361070,361070 +397768,397768 +223851,223851 +434830,434830 +372143,372143 +349788,252958 +396648,396648 +339573,339573 +340069,340069 +338193,338193 +366639,366639 +165238,165238 +19118,19118 +36909,36909 +80587,80587 +218828,218828 +428365,428365 +41196,41196 +82267,82267 +332959,332959 +41139,41139 +305438,305438 +344538,344538 +408019,408019 +256337,256337 +320675,320675 +108525,108525 +176292,176292 +207107,207107 +388165,388165 +370021,370021 +399655,399655 +190489,190489 +4626,4626 +141006,141006 +163463,163463 +373784,373784 +421064,421064 +12797,12797 +292036,292036 +331488,331488 +247439,247439 +43492,43492 +335549,335549 +275778,275778 +168050,168050 +241748,241748 +231158,231158 +265568,265568 +311922,311922 +403523,267989 +312631,312631 +410349,410349 +7669,7669 +390321,390321 +248487,248487 +36393,36393 +306419,306419 +298594,298594 +403799,403799 +329346,329346 +151751,151751 +419755,419755 +421262,234 +322234,322234 +307512,307512 +61151,61151 +299708,299708 +311276,311276 +419471,419471 +252553,252553 +412553,412553 +328709,328709 +229844,229844 +315594,315594 +286316,286316 +344541,344541 +168740,168740 +57189,57189 +410257,410257 +331229,331229 +386762,386762 +310172,310172 +202892,202892 +357016,357016 +326067,326067 +31119,31119 +307836,307836 +349798,349798 +321335,321335 +178964,178964 +171966,171966 +254615,254615 +36569,36569 +260006,260006 +355824,355824 +381669,381669 +358639,358639 +24192,24192 +204721,204721 +301263,301263 +370342,370342 +167409,167409 +287737,287737 +338585,338585 +291233,291233 +26188,26188 +426596,426596 +11036,166915 +219159,219159 +360439,360439 +198624,198624 +10469,10469 +431569,431569 +66102,66102 +313894,313894 +430764,430764 +288945,288945 +34027,34027 +17864,463 +396828,396828 +347412,347412 +296453,285204 +59492,59492 +32609,32609 +340906,340906 +40522,40522 +325380,325380 +148671,148671 +428271,428271 +351820,351820 +287343,287343 +262144,262144 +65952,65952 +419751,263351 +31383,31383 +9519,9519 +203664,203664 +314208,314208 +277153,277153 +290900,290900 +154723,154723 +19853,19853 +36655,36655 +240088,240088 +23046,223 +199848,204895 +279543,279543 +75997,75997 +89333,89333 +289017,206068 +325738,325738 +10657,10657 +87501,87501 +349901,347698 +128490,128490 +415200,415200 +142758,142758 +361638,361638 +33598,33598 +280886,280886 +362200,362200 +8594,8594 +410671,147194 +176546,176546 +119344,119344 +208063,208063 +246004,246004 +2967,2967 +191615,191615 +11418,11418 +204881,204881 +34266,34266 +314048,5928 +256963,256963 +1872,1872 +154202,154202 +409519,409519 +98698,98698 +40436,37997 +185341,185341 +273008,273008 +423430,423430 +25029,25029 +127075,127075 +232263,232263 +254390,254390 +18223,18223 +130853,130853 +248781,200999 +402191,402191 +259802,259802 +40586,40586 +161888,161888 +370584,370584 +252703,252703 +346507,346507 +314840,314840 +310653,310653 +403296,403296 +303996,303996 +282519,282519 +17032,17032 +123881,123881 +327707,327707 +19610,19610 +31574,31574 +351428,351428 +204613,204613 +30686,30686 +29396,29396 +20984,20984 +43130,43130 +224443,224443 +316428,1421 +372749,372749 +266299,266299 +352215,352215 +348592,348592 +29938,29938 +324108,324108 +422083,422083 +176411,176411 +356142,356142 +8083,8083 +85706,85706 +12461,12461 +239657,239657 +62639,62639 +135891,135891 +316432,1421 +181577,181577 +230222,230222 +117697,117697 +331150,331150 +374588,374588 +319931,319931 +309776,341055 +104641,104641 +315287,315287 +353400,353400 +224921,224921 +171917,171917 +312020,137141 +359604,359604 +116133,116133 +310992,310992 +365667,365667 +321359,321359 +16533,16533 +39945,39945 +13641,13641 +425302,425302 +417754,417754 +189517,189517 +374568,374568 +422133,418352 +194591,194591 +408091,408091 +138492,138492 +126644,126644 +117560,117560 +7990,7990 +167966,167966 +176129,176129 +129499,129499 +320949,320949 +23832,23832 +2227,2227 +334073,334073 +5073,5073 +271373,271373 +404967,404967 +219417,219417 +28630,28630 +403109,403109 +39847,39847 +136995,136995 +18834,18834 +65822,65822 +12466,12466 +143347,71 +97510,97510 +16698,16698 +154299,154299 +25807,111126 +7770,7770 +336316,336316 +6164,6164 +284308,284308 +276751,276751 +229422,229422 +13147,13147 +27923,27923 +26524,26524 +168311,168311 +226586,226081 +5374,5374 +6014,6014 +25498,25498 +190573,190573 +306856,306856 +401980,401980 +417561,417561 +24507,24507 +411415,411415 +264998,264998 +260183,260183 +397834,397834 +332664,438 +399115,347603 +345991,345991 +120497,120497 +34859,34859 +307245,307245 +28573,28573 +10895,10895 +13932,13932 +39402,39402 +410826,410826 +68725,68725 +137916,137916 +406118,406118 +16744,16744 +371533,371533 +243048,243048 +135418,135418 +233990,233990 +325333,325333 +152800,152800 +63141,63141 +130791,130791 +351624,351624 +204189,204189 +277124,283746 +128189,128189 +383013,383013 +76083,76083 +124586,2891 +6822,6822 +4198,4198 +277517,277517 +301219,301219 +274420,274420 +286421,286421 +9172,9172 +23880,23880 +68790,68790 +14819,14819 +128510,128510 +372646,372646 +363984,363984 +153788,223573 +71462,71462 +310967,310967 +367640,367640 +14014,14014 +100879,100879 +16054,16054 +56844,56844 +256164,256164 +29930,29930 +277999,277999 +312322,270327 +68895,68895 +302568,302568 +15104,15104 +39716,39716 +27713,27713 +66909,66909 +18663,3270 +33838,33838 +227659,227659 +180825,180825 +24631,24631 +322734,322734 +20840,20840 +379292,379292 +5330,5330 +380472,380472 +261593,261593 +10352,10352 +43388,380360 +393487,393487 +32017,32017 +41785,41785 +282660,282660 +7403,7403 +7585,7585 +52012,52012 +348207,348207 +379613,379613 +22219,22219 +28348,28348 +106782,47414 +16559,16559 +30972,30972 +25271,25271 +8239,8239 +29218,29218 +9372,9372 +12122,12122 +396343,396343 +352564,352564 +410115,410115 +57065,57065 +181957,181957 +8947,8947 +187869,220988 +223858,223858 +22248,22248 +284496,237171 +36773,36773 +7767,7767 +264172,264172 +276223,276223 +277086,277086 +10548,10548 +362962,362962 +21671,21671 +20686,20686 +286737,286737 +212795,212795 +333940,333940 +19565,19565 +149557,149557 +229191,229191 +9864,9864 +176953,176953 +13112,13112 +140862,140862 +153789,153789 +21410,21410 +281660,281660 +13985,13985 +28167,28167 +24696,24696 +373990,373990 +352489,352489 +216078,216078 +9045,9045 +6345,6345 +251586,251586 +40829,40829 +249754,249754 +296297,463 +32876,9674 +166948,166948 +259356,259356 +142448,142448 +10146,10146 +92919,92919 +194889,194889 +13513,13513 +11206,11206 +326974,326974 +218682,218682 +11558,11558 +25653,25653 +32325,32325 +4297,4297 +27667,27667 +170295,170295 +160488,160488 +69904,69904 +430857,430857 +183152,183152 +23139,23139 +7946,7946 +279929,279929 +34111,34111 +309831,309831 +230775,180845 +264449,264449 +147755,463 +36712,36712 +319561,319561 +182268,182268 +139676,139676 +18157,18157 +268923,268923 +378623,378623 +14123,14123 +342576,342576 +260564,260564 +201503,201503 +144440,144440 +282515,282515 +254136,254136 +23374,23374 +88724,88724 +418828,418828 +26461,26461 +2630,2630 +408267,408267 +404261,404261 +100480,100480 +352149,352149 +376592,204836 +244616,244616 +405704,405704 +216300,230650 +417978,417978 +166051,166051 +20701,20701 +31266,31266 +393198,393198 +105185,105185 +234204,234204 +4482,4482 +334292,334292 +1332,1332 +303541,303541 +42955,42955 +43413,43413 +148940,148940 +160695,160695 +321182,321182 +34379,34379 +237675,237675 +351554,351554 +17700,17700 +62852,62852 +33690,463 +199847,204895 +356790,356790 +1785,1785 +217138,8903 +231206,231206 +103381,103381 +185363,185363 +81819,227466 +214171,214171 +140155,140155 +13060,13060 +109151,109151 +209362,209362 +2624,2624 +182196,182196 +88005,88005 +228001,228001 +220694,220694 +73163,73163 +3896,3896 +279914,279914 +19573,19573 +154010,154010 +143950,143950 +6355,6355 +70650,70650 +179978,179978 +287135,213834 +177289,177289 +156446,156446 +423946,423946 +430974,430974 +1247,1247 +177323,177323 +424398,424398 +38776,38776 +329531,329531 +26052,26052 +417796,417796 +61665,61665 +23340,23340 +12926,12926 +89869,89869 +212902,212902 +209753,209753 +67477,67477 +145400,145400 +24697,24697 +342567,342567 +40098,40098 +300040,300040 +373885,373885 +51923,51923 +193946,193946 +15453,15453 +179810,179810 +23760,23760 +34115,34115 +37701,37701 +171221,171221 +199612,204895 +1386,1386 +16314,16314 +11600,11600 +331367,331367 +55810,55810 +88954,88954 +41298,41298 +170887,170887 +125205,125205 +151155,151155 +283455,283455 +266877,130004 +363317,363317 +135805,135805 +154088,154088 +18086,18086 +368210,368210 +46023,46023 +200475,200475 +18694,18694 +109009,109009 +267571,267571 +326844,143741 +181198,181670 +329125,227466 +23292,23292 +264429,36648 +13766,463 +54706,54706 +20967,20967 +58124,267469 +25808,25808 +428578,428578 +9126,9126 +5539,5539 +132717,132717 +344870,292339 +39307,39307 +217018,217018 +143219,143219 +218608,218608 +205582,205582 +150615,150615 +325892,325892 +226013,226013 +308531,308531 +97112,97112 +85126,85126 +181832,181832 +154972,154972 +422620,422620 +151454,151454 +373933,373933 +250982,250982 +431370,431370 +390362,390362 +279531,246606 +297946,297946 +327610,327610 +69279,69279 +301642,301642 +130555,130555 +7424,7424 +366330,366330 +328708,328708 +410593,410593 +424739,424739 +401983,401983 +8021,8021 +404184,404184 +304503,204895 +233631,233631 +401547,401547 +314446,314446 +256149,256149 +362996,362996 +137922,137922 +332580,332580 +169338,169338 +353540,353540 +406158,23613 +198481,268251 +219568,219568 +108685,108685 +431635,431635 +400095,222291 +366714,366714 +255205,255205 +183235,183235 +387249,387249 +428948,428948 +379574,379574 +135371,135371 +279909,279909 +174036,174036 +262564,1513 +422850,422850 +387164,387164 +356002,356002 +310526,310526 +322429,322429 +51939,51939 +154249,25245 +427266,427266 +391511,391511 +351330,351330 +364015,364015 +421214,421214 +365482,365482 +426162,426162 +417523,417523 +260536,260536 +300589,300589 +411733,411733 +186161,186161 +370474,370474 +131001,131001 +428116,428116 +261123,261123 +341924,341924 +222905,222905 +406366,406366 +404498,404498 +322266,322266 +248930,248930 +18505,18505 +272535,272535 +3959,3959 +375090,375090 +199035,199035 +301007,301007 +336260,336260 +410831,410831 +427384,427384 +8142,8142 +63007,63007 +196980,196980 +15368,15368 +251833,251833 +316870,316870 +419323,419323 +152703,152703 +328710,328710 +250412,250412 +427583,2891 +391248,85707 +307332,307332 +138328,138328 +425943,425943 +348480,348480 +419758,419758 +390481,390481 +255172,255172 +225695,225695 +393342,393342 +332575,332575 +422525,422525 +400096,222291 +435064,435064 +174220,176292 +371271,371271 +267229,267229 +369680,369680 +407265,147020 +22657,22657 +355436,355436 +424740,424740 +355916,355916 +340136,340136 +427286,427286 +7780,7780 +264640,264640 +89618,89618 +171738,171738 +314445,314445 +417256,417256 +433812,433812 +304791,304791 +322086,322086 +149242,149242 +187675,207961 +410472,410472 +424002,424002 +395483,395483 +240409,240409 +433061,433061 +424552,41429 +426363,426363 +30843,30843 +338197,338197 +393493,393493 +276972,276972 +375618,375618 +429667,429667 +395293,395293 +340023,340023 +338720,338720 +396588,396588 +265070,265070 +280727,280727 +342106,342106 +430524,430524 +228496,228496 +173347,173347 +414316,414316 +324014,324014 +165025,165025 +356631,712 +229000,229000 +188946,188946 +215992,215992 +338391,338391 +360149,360149 +277631,277631 +386432,386432 +348457,348457 +324806,324806 +411625,411625 +241388,241388 +297834,297834 +177559,177559 +264670,264670 +278246,278246 +423922,423922 +335760,335757 +172360,172360 +431860,431860 +201670,201670 +374739,374739 +32968,32968 +333843,333843 +411816,411816 +330308,330308 +107361,107361 +382373,383118 +230623,230623 +404716,404716 +367596,367596 +133011,133011 +19935,19935 +287399,287399 +408619,408619 +329352,329352 +344398,344398 +121631,121631 +279542,279542 +416636,416636 +250420,250420 +260754,463 +309854,309854 +389410,389410 +378330,378330 +428989,428989 +65322,65322 +158411,158411 +84748,84748 +242318,242318 +411330,411330 +256458,256458 +373596,373596 +124447,124447 +418084,418084 +319692,319692 +363071,363071 +227214,227214 +359369,359369 +424524,424524 +269637,269637 +368284,368284 +361178,361178 +347563,347563 +36247,36247 +295878,295878 +63450,63450 +279513,279513 +13845,94259 +176299,176299 +97111,97111 +37373,37373 +182229,182229 +284820,284820 +16616,16616 +316357,3970 +376604,15358 +252978,281121 +75548,75548 +346187,346187 +410295,410295 +129370,129370 +303441,337864 +384171,384171 +209564,209564 +244112,244112 +16058,16058 +19422,19422 +431695,431695 +27550,27550 +17306,17306 +224115,224115 +23345,23345 +180332,180332 +29509,29509 +26574,26574 +407562,284785 +339847,339847 +183223,183223 +230646,230646 +348180,348180 +203634,194810 +26381,26381 +308049,308049 +162039,162039 +385409,385409 +319045,319045 +328172,328172 +262214,262214 +389797,389797 +289950,289950 +432248,402668 +411202,411202 +327067,327067 +329489,329489 +284488,291953 +267706,267706 +260874,260874 +168318,168318 +268770,268851 +225650,225650 +338654,338654 +381110,381110 +154147,154147 +399594,399594 +224188,224188 +387963,387963 +180637,180637 +246433,366438 +195561,195561 +34002,34002 +173820,173820 +75302,75302 +226534,226534 +321729,321729 +349116,349116 +21270,21270 +415215,415215 +259150,259150 +37164,37164 +39602,39602 +17248,17248 +287076,287076 +107908,107908 +194261,194261 +147907,147907 +50691,50691 +406580,406580 +316419,1421 +247840,121408 +215506,121408 +39741,39741 +242530,242530 +235625,235625 +173167,173167 +422744,422744 +316358,3970 +200555,200555 +278338,278338 +58538,193862 +195479,195479 +369897,369897 +38265,38265 +176312,176312 +356766,356766 +172453,134274 +84401,84401 +363609,363609 +170931,170931 +24787,24787 +341714,331317 +165598,165598 +264747,324806 +433640,253344 +271525,271525 +307187,307187 +63018,63018 +146929,146929 +227168,227168 +366998,366998 +383063,383063 +326356,326356 +388471,388471 +353808,337581 +376568,376568 +409662,409662 +192857,192857 +27283,27283 +176313,176313 +37996,37996 +69399,69399 +337815,337815 +55625,55625 +374021,374021 +347754,347754 +16167,16167 +252138,252138 +327071,299 +368983,368983 +366931,366931 +186631,186631 +130361,130361 +352679,352679 +74619,74619 +108406,108406 +322853,220988 +252359,252359 +87113,87113 +254179,254179 +310478,310478 +338370,204836 +109924,109924 +379102,379102 +342284,342284 +403638,403638 +30225,30225 +422334,422334 +72391,72391 +169365,169365 +36216,36216 +386609,386609 +96556,96556 +161139,161139 +193537,193537 +371928,371928 +306256,306256 +409935,409935 +20527,20527 +387889,387889 +17561,17561 +350731,350731 +14549,9103 +21568,21568 +252500,252500 +153223,153223 +213822,213822 +28887,28887 +375024,375024 +91529,91529 +266747,266747 +10201,10201 +56889,56889 +21244,21244 +111741,111741 +64921,64921 +150280,150280 +406734,406734 +21191,21191 +140722,140722 +20330,20330 +345120,345120 +6438,6438 +8562,8562 +399656,399656 +13650,13650 +320970,320970 +28745,28745 +132541,132541 +254531,254531 +131327,131327 +173626,173626 +242194,14441 +30272,30272 +300893,300893 +7200,7200 +379777,379777 +225036,225036 +23787,23787 +118790,118790 +64354,64354 +9180,9180 +280606,280606 +226210,226210 +55127,55127 +9828,9828 +142746,142746 +24632,24632 +214195,179978 +211551,211551 +361072,362226 +224804,224804 +309513,309513 +250627,250627 +266975,266975 +10685,10685 +27633,27633 +25846,25846 +303428,303428 +385737,385737 +32345,32345 +119757,119757 +253661,253661 +362543,362543 +231750,231750 +248246,248246 +353734,353734 +346673,346673 +324609,281442 +255938,255938 +19305,19305 +18033,18033 +318879,318879 +301529,301529 +175486,175486 +199303,199303 +331051,331051 +164632,164632 +410159,410159 +17776,17776 +378883,378883 +115343,15075 +17150,17150 +1050,1050 +381348,381348 +385766,385766 +296415,296415 +102343,102343 +114400,114400 +136887,136887 +31735,31735 +262542,262542 +353154,353154 +242758,242758 +10633,10633 +113822,113822 +411062,411062 +298831,298831 +8178,8178 +272445,272445 +14921,14921 +366799,366799 +86322,86322 +17515,17515 +5696,5696 +23185,23185 +231159,231159 +15706,15706 +217143,258627 +260703,260703 +114263,114263 +330833,330833 +248431,248431 +14985,14985 +206837,206837 +26924,26924 +121582,121582 +380406,380406 +14338,14338 +124491,124491 +148491,148491 +113552,113552 +351062,351062 +143596,143596 +112722,112722 +11100,11100 +30260,30260 +21196,21196 +211513,211513 +348444,348444 +9186,9186 +8418,8418 +2991,2991 +41470,41470 +27429,27429 +380137,245134 +10931,10931 +376348,376348 +422159,143741 +265028,265028 +13563,13563 +66000,66000 +325472,325472 +34436,34436 +19208,19208 +24541,24541 +223191,223191 +9848,9848 +428890,428890 +154412,154412 +19669,19669 +125369,125369 +27416,27416 +34303,34303 +241830,241830 +299992,299992 +287571,287571 +393362,393362 +420491,420491 +186437,186437 +90769,90769 +89254,89254 +16682,16682 +336550,8872 +19788,19788 +261580,261580 +4869,4869 +134212,134212 +72649,72649 +41671,41671 +19958,19958 +11755,11755 +26193,26193 +301446,301446 +39779,39779 +7329,7329 +22469,22469 +146208,146208 +7809,7809 +330020,330020 +16936,16936 +64919,64919 +270873,270873 +30754,30754 +384212,5641 +153220,167190 +389598,389598 +173367,173367 +144450,144450 +19693,19693 +244956,244956 +14520,14520 +225041,225041 +200521,239449 +332540,332540 +3684,3684 +107384,107384 +336972,336972 +286408,1111 +32263,6954 +15327,15327 +197267,197267 +379551,379551 +293349,293349 +308936,308936 +35160,35160 +87289,87289 +12697,12697 +22816,22816 +341701,341701 +404424,404424 +140422,140422 +134615,134615 +292023,292023 +12937,12937 +358789,358789 +9976,9976 +116449,116449 +2045,2045 +270087,270087 +14690,14690 +207251,207251 +365591,365591 +146549,146549 +23574,23574 +21083,9391 +12174,12174 +14649,14649 +252813,252813 +150540,74 +405018,405018 +189833,189833 +59765,59765 +332365,332365 +20265,20265 +192921,192921 +113067,63014 +247185,247185 +8945,8945 +295477,150998 +261679,261679 +155674,155674 +155413,155413 +10572,10572 +64812,891 +10701,10701 +142706,142706 +5160,5160 +346539,346539 +172733,172733 +422690,302477 +1238,32154 +103063,103063 +319259,319259 +50417,50417 +5156,5156 +332096,332096 +126206,126206 +292028,292028 +7186,7186 +293016,293016 +13683,13683 +153501,153501 +33904,33904 +9362,9362 +241012,241012 +394102,394102 +242270,242270 +213862,213862 +256856,256856 +269530,64220 +178568,178568 +325243,325243 +235018,235018 +294622,294622 +431200,431200 +62211,62211 +8094,8094 +336319,336319 +172375,172375 +42762,42762 +9495,9495 +279967,279967 +18563,18563 +299554,299554 +83381,83381 +221208,221208 +202893,202893 +9583,9583 +18913,18913 +15738,42627 +266941,266941 +386777,386777 +340097,340097 +389676,389676 +379229,379229 +11808,11808 +168013,168013 +173891,173891 +114283,114283 +247476,247476 +366127,298311 +28311,28311 +29338,248702 +135928,135928 +24255,19669 +92757,92757 +263715,263715 +206224,206224 +176548,463 +263699,263699 +102927,102927 +133731,133731 +365351,365351 +136190,136190 +360083,360083 +141275,141275 +127271,127271 +123448,15238 +34888,34888 +287336,287336 +108731,108731 +201822,271460 +109474,109474 +4791,4791 +24814,24814 +166136,147949 +4755,4755 +6081,6081 +37324,37324 +216232,216232 +24180,24180 +104281,104281 +352682,352682 +15187,15187 +2442,2442 +110875,110875 +14787,14787 +300083,300083 +429113,3242 +344473,344473 +12818,12818 +36860,36860 +342950,342950 +144503,144503 +237835,237835 +418817,418817 +149075,149075 +357742,357742 +8153,8153 +328470,328470 +23485,23485 +13233,13233 +122548,122548 +3810,3810 +271516,271516 +2034,2034 +148048,148048 +429024,429024 +39583,39583 +148533,148533 +18262,18262 +123616,123616 +199795,204895 +36385,36385 +89339,89339 +287392,287392 +11051,11051 +200383,11277 +341915,341915 +126464,126464 +90919,90919 +164929,164929 +14381,14381 +149472,149472 +377406,377406 +383190,383190 +328632,328632 +3506,3506 +11541,11541 +23207,23207 +400267,400267 +413525,413525 +286198,286198 +1080,1080 +18070,18070 +31683,31683 +143780,77034 +18547,18547 +176739,124856 +260664,260664 +24231,24231 +20056,20056 +187906,187906 +129609,129609 +159359,159359 +184077,184077 +19302,19302 +154585,154585 +29907,29907 +34319,34319 +382215,382215 +93271,93271 +100167,100167 +158708,158708 +37987,37987 +58742,58742 +40871,40871 +4299,4299 +179167,179167 +209220,209220 +235818,235818 +385617,385617 +242575,242575 +101628,75292 +179574,179574 +204165,204165 +103939,103939 +295881,295881 +35004,35004 +133359,133359 +169522,169522 +432542,432542 +143784,143784 +407700,2281 +426483,426483 +408768,408768 +320067,320067 +39835,39835 +387299,29278 +316355,3970 +423587,423587 +325028,325028 +325021,334307 +397348,397348 +179353,360439 +403353,292732 +407957,407957 +223319,223319 +224081,224081 +319758,319758 +30552,30552 +371485,371485 +220051,220051 +403343,403343 +395919,395919 +69697,10904 +172412,172412 +418111,418111 +125835,125835 +372842,372842 +210340,210340 +377903,377903 +327241,327241 +36544,36544 +240244,240244 +146110,146110 +399134,399134 +341143,281121 +18782,18782 +369553,168549 +185811,185811 +324478,334307 +202751,202751 +169651,169651 +41907,41907 +325186,325186 +382615,382615 +347526,347526 +278995,278995 +23314,23314 +201891,201891 +396053,13855 +405741,405741 +42550,42550 +406683,406683 +222745,222745 +263062,263062 +83287,83287 +356220,356220 +350881,350881 +175748,175748 +121520,121520 +300218,300218 +142074,142074 +413145,413145 +401499,401499 +88582,88582 +119319,119319 +28923,28923 +315914,315914 +114915,114915 +383095,383095 +247921,247921 +174564,174564 +167330,167330 +420152,420152 +156256,156256 +36443,36443 +255263,255263 +34353,34353 +328558,328558 +327521,327521 +206661,206661 +39869,39869 +219987,218262 +14692,14692 +417230,417230 +329373,329373 +367924,367924 +36368,36368 +354694,354694 +38977,38977 +147188,147188 +179998,179931 +306922,306922 +195274,463 +256376,327402 +60277,60277 +336027,336027 +309915,309915 +24031,24031 +174215,174215 +34953,34953 +8343,8343 +22824,22824 +352388,352388 +143212,143212 +176296,176296 +240470,240470 +328734,216865 +125626,125626 +316354,3970 +310786,310786 +152058,152058 +415026,250887 +347076,347076 +24316,24316 +43048,43048 +389742,389742 +39481,39481 +179914,179914 +373554,373554 +414192,414192 +309573,309573 +419875,419875 +114360,114360 +170715,230590 +177425,177425 +434662,434662 +268163,268163 +315554,315554 +128217,128217 +357551,357551 +363041,363041 +214288,214288 +378718,378718 +177764,177764 +365452,365452 +297518,297518 +25502,25502 +404325,404325 +317190,317190 +27078,27078 +266452,266452 +414474,414474 +314931,314931 +19545,19545 +272076,272076 +6324,6324 +27686,27686 +396822,396822 +28641,28641 +20491,20491 +205874,42101 +178842,178842 +268197,268197 +126782,126782 +325027,325027 +156046,156046 +114549,114549 +402618,402618 +300929,300929 +313084,313084 +35664,35664 +297835,297834 +429930,429930 +277267,277267 +377989,377989 +178578,178578 +381990,381990 +429152,12333 +383269,349796 +282457,7785 +180124,180124 +281311,281311 +422079,422079 +419668,419668 +33939,33939 +404348,404348 +282652,282652 +131644,131644 +290960,290960 +178931,178931 +139743,139743 +330162,330162 +37118,37118 +328177,328177 +220661,220661 +347752,347752 +100099,100099 +31531,31531 +349124,349124 +422375,422375 +223709,223709 +170921,170921 +335643,335643 +21139,21139 +151312,151312 +156223,156223 +336355,336355 +85437,85437 +403973,403973 +353539,353539 +369645,369645 +120522,120522 +139558,139558 +411419,411419 +258757,258757 +383462,383462 +95296,95296 +156261,156261 +426079,426079 +341823,341823 +131271,131271 +361385,361385 +371208,371208 +417142,417142 +50231,50231 +187520,187520 +180330,180330 +153003,153003 +360457,20701 +128463,128463 +5568,5568 +253542,253542 +415552,415552 +8264,8264 +295925,267988 +313941,313941 +396547,396547 +326411,326411 +297319,297319 +389085,342492 +337337,337337 +7489,7489 +371290,371290 +311515,311515 +14932,14932 +418718,418718 +194142,194142 +301201,93 +276039,276039 +257689,257689 +375390,375390 +332394,332394 +200479,200479 +224859,224859 +38614,38614 +380990,380990 +112379,112379 +242370,242370 +297077,297077 +434172,434172 +64563,64563 +380267,380267 +287226,287226 +46181,46181 +228483,153064 +420104,177541 +11207,11207 +74313,74313 +106382,106382 +173193,173193 +10924,10924 +200184,200184 +146388,146388 +148874,148874 +367731,367731 +85172,85172 +225099,199530 +38149,463 +365262,365262 +18951,18951 +400717,400717 +10622,10622 +125757,125757 +177721,177721 +339875,339875 +400631,368224 +153600,153600 +40821,40821 +406408,406408 +8116,8116 +382607,382607 +340958,340958 +18506,18506 +218735,218735 +156212,416836 +39603,39603 +303443,303443 +376593,376593 +3596,3596 +23059,23059 +207379,207379 +278000,278000 +377382,377382 +320281,320281 +416528,416528 +186569,32441 +423153,423153 +65517,65517 +184368,184368 +334098,334098 +166449,166449 +40643,40643 +295358,295358 +180922,180922 +324890,324890 +377906,377906 +133233,133233 +12858,12858 +374210,374210 +42565,42565 +248027,142963 +128771,128771 +18551,18551 +411433,411433 +133664,133664 +119578,119578 +157738,157738 +232325,232325 +316441,1421 +228296,10753 +170920,170920 +27794,27794 +67705,67705 +407065,407065 +357983,233070 +170761,170761 +100543,100543 +288434,288434 +37992,37992 +41725,41725 +328855,328855 +37784,37784 +127940,127940 +5192,5192 +326234,326234 +279175,279175 +25726,25726 +173463,173463 +337704,337704 +181752,181752 +379040,379040 +370885,277719 +21940,21940 +29420,29420 +20934,20934 +33247,33247 +70132,70132 +155326,155326 +382788,382788 +354374,354374 +21678,21678 +130055,130055 +394069,394069 +67925,67925 +324070,324070 +406751,406751 +95558,95558 +7954,252361 +154606,154606 +330322,330322 +277944,277944 +30551,13948 +39072,39072 +357870,357870 +256232,256232 +37446,37446 +252150,252150 +13426,13426 +232943,232943 +239048,239048 +340346,340346 +72312,72312 +328952,328952 +37878,37878 +50765,50765 +41704,17735 +20925,20925 +11288,11288 +5392,5392 +312193,312193 +270657,303503 +321034,321034 +173245,173245 +161704,161704 +265797,463 +379179,379179 +269395,269395 +270145,270145 +390782,390782 +17656,17656 +219405,219405 +309834,309834 +207239,81850 +371554,371554 +16312,16312 +62923,62923 +14473,14473 +263337,263337 +181792,181792 +265816,265816 +65378,65378 +418713,418713 +208792,208792 +62016,62016 +276339,276339 +175482,175482 +129649,106929 +419326,419326 +167322,167322 +23646,23646 +155523,155523 +23343,62972 +9727,9727 +241307,241307 +229356,229356 +209750,26233 +5970,5970 +197585,197585 +16715,16715 +24915,24915 +21805,21805 +241920,55781 +381836,381836 +290031,272853 +24338,24338 +129455,129455 +35678,14324 +22139,22139 +141054,141054 +356034,356034 +412158,412158 +160554,160554 +217603,217603 +286933,286933 +205474,205474 +36517,36517 +368845,63027 +250378,250378 +156481,156481 +38890,38890 +215390,215390 +18427,18427 +355913,355913 +331576,331576 +123989,123989 +344249,344249 +396554,396554 +200326,200326 +42653,42653 +64348,64348 +303134,303134 +352898,352898 +39240,39240 +415876,415876 +14807,14807 +34397,34397 +146030,146030 +16023,16023 +259366,259366 +42577,42577 +328168,328168 +27409,27409 +38732,4299 +22130,22130 +40395,15830 +170340,170340 +61887,61887 +10591,10591 +278284,224992 +348239,348239 +7765,7765 +372205,372205 +114755,114755 +34963,34963 +20544,20544 +276432,276432 +338579,338579 +26896,26896 +421053,408842 +228380,228380 +39337,39337 +114217,114217 +104578,104578 +163216,163216 +174177,174177 +27631,27631 +338838,338838 +165017,165017 +406314,406314 +20705,20705 +14661,14661 +47206,47206 +140410,140410 +103388,103388 +229351,229351 +410623,410623 +69620,69620 +1619,1619 +340293,340293 +251847,251847 +391774,391774 +272363,272363 +243045,243045 +371638,371638 +14018,14018 +39288,39288 +198699,249817 +29347,29347 +322368,322368 +194563,194563 +13660,13660 +23578,23578 +99721,99721 +357270,357270 +3252,3252 +326317,326317 +328292,328292 +118214,118214 +8978,8978 +290003,290003 +16827,16827 +31571,31571 +20471,20471 +279415,156420 +348158,348158 +58912,58912 +26766,26766 +280144,280144 +411282,411282 +19275,19275 +329748,54625 +278581,278581 +233082,233082 +353674,353674 +401623,401623 +380367,225981 +24111,24111 +12213,12213 +25762,25762 +141790,141790 +28124,28124 +203875,203875 +286141,286141 +245203,245203 +331790,331790 +270682,270682 +266724,266724 +21264,21264 +15282,15282 +188087,188087 +12867,12867 +66363,66363 +169921,169921 +16976,16976 +419830,419830 +18090,18090 +245694,245694 +10202,10202 +327600,223742 +365188,365188 +254341,254341 +383704,383704 +356387,356387 +13374,13374 +69441,69441 +365248,365248 +141088,141088 +402150,402150 +153308,153308 +66143,66143 +131069,131069 +38822,38822 +144305,144305 +14370,14370 +9286,310833 +99561,99561 +276124,276124 +278829,278829 +337956,337956 +341563,341563 +284481,284481 +30100,30100 +16449,16449 +2027,2027 +1018,1018 +64169,64169 +185187,185187 +312699,312699 +9284,9284 +10274,10274 +10952,10952 +16368,16368 +172387,172387 +374062,374062 +242373,242373 +25831,25831 +126614,126614 +425610,415921 +382486,382486 +66218,66218 +163184,163184 +406301,406301 +21838,21838 +37413,37413 +420610,303971 +397195,397195 +296188,289801 +329423,329423 +10571,10571 +329828,329828 +34315,34315 +312191,312191 +7443,7443 +255650,255650 +303727,313730 +3833,3833 +170511,165633 +271334,267988 +64887,64887 +274174,274174 +147396,147396 +4586,4586 +145275,123635 +9571,9571 +124146,124146 +3894,3894 +227837,227837 +130597,130597 +91038,91038 +337832,337832 +255228,255228 +5011,5011 +12293,12293 +364861,364861 +101629,75292 +184936,184936 +427435,427435 +158710,158710 +309523,309523 +10479,10479 +172120,172120 +355482,355482 +130611,130611 +405450,204836 +407956,407956 +230075,230075 +390729,390729 +300012,300012 +362832,362832 +130934,130934 +34964,34964 +177582,177582 +155481,155481 +28676,28676 +3481,3481 +10237,10237 +16548,16548 +183194,183194 +410221,410221 +271871,271871 +148415,148415 +15681,15681 +129454,129454 +14385,14385 +5022,5022 +181245,181245 +74527,74527 +185121,185121 +13475,13475 +18193,18193 +68379,68379 +393315,393315 +202742,202742 +262913,262913 +25868,25868 +265372,265372 +88088,88088 +199535,204895 +31216,31216 +378795,378795 +84630,84630 +327138,327138 +190739,190739 +48875,48875 +238613,238613 +267868,267868 +16290,16290 +25041,25041 +269621,131485 +24134,24134 +258394,258394 +65537,65537 +3045,3045 +67977,67977 +6680,6680 +146292,146292 +3073,3073 +70215,70215 +179283,179283 +196695,196695 +22610,22610 +32870,32870 +308963,308963 +128290,204583 +111304,111304 +365625,365625 +212756,212756 +27541,27541 +289185,289185 +357290,357290 +14897,14897 +12294,12294 +776,776 +28468,28468 +376651,376651 +3644,3644 +125097,125097 +277936,277936 +37884,285204 +144536,144536 +160591,150485 +16184,16184 +212498,212498 +9374,9374 +331146,331146 +376758,376758 +41691,41691 +150586,150586 +193445,193445 +348351,348351 +135851,135851 +73367,73367 +67041,67041 +222482,222482 +201513,201513 +343503,343503 +60038,60038 +287233,287233 +386977,386977 +387080,269917 +369245,369245 +187127,187127 +358086,201308 +21731,2398 +324093,324093 +134061,134061 +108803,108803 +233743,233743 +365844,362484 +392698,392698 +350947,350947 +126990,126990 +335946,140 +179135,179135 +23450,23450 +111972,111972 +186626,186626 +81439,81439 +58675,58675 +94455,94455 +9643,9643 +10708,10708 +11688,11688 +323835,323835 +174892,174892 +30175,30175 +7918,7918 +257197,235344 +413653,413653 +268001,268001 +4997,2339 +64447,271460 +205849,205849 +415924,415924 +372446,372446 +406975,406975 +381524,381524 +145674,23387 +79926,79926 +417097,417097 +285966,285966 +213052,213052 +416767,416767 +392047,392047 +246971,246971 +339250,339250 +297563,297563 +243730,243730 +344537,344537 +279481,279481 +385611,385611 +378779,378779 +145592,145592 +233411,233411 +418854,418854 +99613,99613 +35559,35559 +303529,303529 +262414,262414 +231380,231380 +307059,307059 +93364,93364 +392133,181521 +427584,427584 +153017,153017 +175128,175128 +296853,296853 +126873,126873 +267897,267897 +268264,268264 +17107,17107 +428377,428377 +35667,35667 +201418,201418 +295235,295235 +114027,114027 +110358,110358 +149114,149114 +203548,203548 +430598,430598 +307461,307461 +301523,301523 +429431,429431 +333488,333488 +400159,400159 +265436,265436 +356359,356359 +358296,358296 +419116,419116 +387735,387735 +320694,320694 +425101,425101 +14566,14566 +380996,380996 +344939,287893 +316802,316802 +194743,194743 +94370,94370 +358881,358881 +423058,423058 +145641,145641 +193234,193234 +61713,61713 +256835,256835 +84298,84298 +338554,338554 +427292,427292 +99010,99010 +395799,395799 +304001,304001 +376028,376028 +94369,94369 +331746,331746 +249766,249766 +324187,324187 +363277,363277 +175565,175565 +74245,74245 +356647,356647 +412063,195137 +411885,411885 +420272,420272 +325180,325180 +290654,290654 +310848,308552 +352428,254201 +433659,367710 +320372,320372 +357198,257109 +349713,349713 +15444,15444 +129748,129748 +293218,293218 +187349,187349 +391672,391672 +430591,430591 +342946,342946 +255548,463 +406300,406300 +432665,432665 +256312,256312 +292677,292677 +435020,435020 +231823,231823 +46092,46092 +376968,376968 +427095,427095 +218814,218814 +232107,232107 +416499,416499 +366124,366124 +318872,318872 +244991,244991 +341929,341929 +323501,323501 +357476,357476 +399787,399787 +365896,365896 +227914,227914 +250438,250438 +32192,32192 +264139,264139 +422968,422968 +328175,328175 +286971,286971 +313746,313746 +18046,18046 +359584,359584 +207849,207849 +26127,26127 +25398,25398 +246025,246025 +201734,201734 +372741,372741 +112614,112614 +145421,145421 +193435,193435 +100376,100376 +348237,348237 +358637,253835 +235936,235936 +22784,22784 +36830,36830 +408228,408228 +162674,162674 +421014,421014 +236771,236771 +154335,154335 +125449,125449 +411509,411509 +69409,69409 +341830,180845 +425687,425687 +302070,302070 +249111,249111 +421077,421077 +310377,310377 +414702,414702 +179241,179241 +409615,409615 +423176,423176 +186752,155491 +406688,406688 +126218,126218 +175037,175037 +334227,334227 +410720,410720 +410232,410232 +341973,341973 +424453,424453 +305785,305785 +120940,120940 +365475,365475 +39654,39654 +402080,374923 +148208,148208 +250383,250383 +425711,425711 +302143,302143 +401040,60815 +432417,432417 +199142,199142 +41478,41478 +307034,307034 +419688,419688 +165173,165173 +174333,281655 +284868,284868 +18861,18861 +309417,309417 +199376,199376 +334783,334783 +369264,369264 +359817,359817 +304941,304941 +374910,374910 +387465,387465 +426461,1111 +208662,208662 +131750,131750 +399256,399256 +209687,209687 +355184,355184 +201516,165753 +88142,88142 +351294,351294 +424801,424801 +394455,394455 +419669,419669 +222899,222899 +366652,366652 +154429,154429 +290169,290169 +37027,37027 +74472,74472 +266004,266004 +278825,278825 +146212,12252 +310820,310820 +184979,7278 +380994,380994 +398742,398742 +5706,5706 +401713,401713 +233047,233047 +410832,368463 +378828,378828 +389363,389363 +266307,266307 +414766,414766 +393894,393894 +302523,302523 +311925,311925 +284856,284856 +418586,418586 +416792,299 +303273,303273 +161344,161344 +267230,267230 +262163,262163 +158953,158953 +24313,24313 +432278,432278 +245561,245561 +310830,310830 +163645,163645 +327130,327130 +316177,125050 +91369,91369 +174661,174661 +387956,387956 +151642,151642 +259257,259257 +125758,125758 +256983,256983 +20585,20585 +397811,397811 +99608,99608 +328016,328016 +253723,253723 +420576,420576 +420605,420605 +226571,226571 +219759,143391 +287452,287452 +352688,352688 +400867,400867 +344189,344189 +158491,3408 +333522,333522 +38895,38895 +414562,414562 +84860,84860 +431527,431527 +428790,428790 +369495,369495 +213804,203733 +35881,35881 +379175,379175 +359809,359809 +323558,323558 +247839,224081 +182211,182211 +243996,164627 +185269,185269 +324880,324880 +226954,226954 +382158,382158 +294148,294148 +311466,311466 +427828,427828 +429604,429604 +383743,383743 +354983,230781 +369440,369440 +56994,56994 +376885,376885 +145026,145026 +392823,392823 +375321,375321 +404898,404898 +191607,191607 +352203,352203 +7871,7871 +402197,402197 +345070,266589 +343409,343409 +307779,307779 +403905,403905 +121484,121484 +393421,393421 +336189,336189 +340347,340347 +265973,265973 +182948,182948 +201023,201023 +411238,411238 +393506,393506 +335923,335923 +268673,268673 +377606,377606 +295175,324467 +381264,381264 +83612,83612 +324118,324118 +286400,286400 +372726,372726 +201486,201486 +201870,201870 +256624,256624 +307519,307519 +418137,418137 +29300,29300 +39482,39482 +321719,321719 +374856,374856 +135722,135722 +121752,121752 +61085,61085 +379610,379610 +287506,287506 +35911,35911 +135091,135091 +163363,163363 +87892,87892 +412105,412105 +383270,349796 +150177,150177 +407398,407398 +304864,304864 +170892,170892 +54336,54336 +70153,70153 +20867,20867 +316468,1421 +131683,131683 +412910,412910 +352586,352586 +372342,372342 +179816,463 +195348,193096 +181607,181607 +22772,22772 +336676,336676 +428709,428709 +370033,370033 +205431,205431 +36638,36638 +284343,284343 +379619,379619 +147478,147478 +43312,43312 +129015,129015 +292358,292358 +365628,365628 +18541,18541 +15417,15417 +316076,316076 +199850,204895 +42557,42557 +212912,212912 +235452,235452 +408151,408151 +9349,9349 +340862,340862 +117864,463 +57332,57332 +369136,369136 +13620,13620 +88587,88587 +203758,203758 +270691,270691 +225942,225942 +352088,352088 +249100,249100 +400036,400036 +314022,314022 +408099,408099 +376840,376840 +306962,306962 +419502,419502 +316644,316644 +398028,398028 +247736,247736 +307396,307396 +266770,266770 +303884,303884 +83980,83980 +29835,29835 +36704,36704 +126520,126520 +266568,266568 +85965,85965 +242659,242659 +231463,231463 +244435,244435 +224215,224215 +41892,41892 +366061,366061 +16601,16601 +316418,1421 +427036,427036 +379382,379382 +8016,8016 +399865,323103 +289149,289149 +81400,81400 +20976,20976 +340894,340894 +141293,141293 +351992,351992 +316417,1421 +316438,1421 +103400,103400 +359164,359164 +152878,152878 +39476,39476 +194668,194668 +190224,190224 +28697,28697 +420614,420614 +17555,17555 +252503,252503 +406077,463 +347917,347917 +228304,228304 +356232,356232 +14333,14333 +33123,33123 +159588,159588 +220357,220357 +229202,229202 +201680,201680 +20421,20421 +258708,258708 +53782,53782 +193038,193038 +130222,130222 +360133,360133 +381662,381662 +66149,66149 +263986,263986 +23535,23535 +7201,7201 +308111,308111 +37369,37369 +377489,377489 +337742,337742 +364695,364695 +306855,306855 +26777,26777 +37707,37707 +392436,392436 +203030,252962 +163422,163422 +27943,27943 +11934,11934 +274080,43022 +409505,409505 +279201,279201 +254384,254384 +38300,38300 +7685,7685 +338967,338967 +419786,419786 +389507,389507 +146477,146477 +293529,293529 +297312,297312 +316366,316366 +332379,332379 +183479,183479 +12633,12633 +116124,116124 +382472,382472 +385800,385800 +42695,42695 +348519,348519 +158606,158606 +164467,164467 +127813,127813 +372378,372378 +60032,60032 +96865,96865 +378183,378183 +378130,378130 +39726,39726 +345797,345797 +145464,145464 +189133,189133 +376711,376711 +28627,28627 +216900,216900 +270924,270924 +135937,135937 +26275,26275 +172115,172115 +109961,109961 +406499,406499 +170704,170704 +74857,74857 +287138,287138 +202750,202750 +114507,114507 +18072,18072 +17941,17941 +53090,53090 +33073,33073 +331945,331945 +374165,374165 +141013,141013 +286058,286058 +378258,378258 +268279,268279 +343744,2114 +39824,39824 +126544,126544 +371637,371637 +39452,39452 +12812,12812 +9352,9352 +373883,373883 +281714,281714 +41738,41738 +287430,287430 +416764,416764 +365873,365873 +422256,422256 +240001,240001 +41082,41082 +214290,214290 +84770,84770 +286272,286272 +29128,29128 +414171,414171 +141066,141066 +309277,309277 +41977,41977 +16412,16412 +265009,323716 +275551,275551 +341556,156420 +400092,400092 +16165,16165 +151853,151853 +302921,302921 +359325,359325 +283715,283715 +299833,64220 +316997,316997 +13311,13311 +27289,27289 +328052,328052 +32673,32673 +152154,152154 +14913,14913 +36806,36806 +365503,365503 +317520,317520 +302069,302069 +37154,37154 +150576,150576 +27397,27397 +310069,310069 +166095,148349 +9264,9264 +309851,309851 +18496,18496 +163575,163575 +268182,268182 +135727,135727 +107444,107444 +21816,21816 +407286,407286 +35191,35191 +411616,411616 +33369,99969 +20201,20201 +9384,9384 +165981,165981 +419953,419953 +350127,350127 +19021,19021 +18073,18073 +173264,463 +287546,233070 +24464,24464 +67406,67406 +286555,286555 +410414,410414 +302085,267988 +358104,358104 +63528,63528 +427353,427353 +30527,30527 +234875,234875 +329096,329096 +282889,282889 +92127,92127 +6076,6076 +23341,23341 +237724,237724 +14890,14890 +16441,16441 +142233,142233 +188797,188797 +2530,2530 +150716,150716 +376178,376178 +386103,13293 +6208,6208 +325398,169675 +17762,17762 +273391,273391 +30978,30978 +22523,2554 +70372,5086 +140088,140088 +341938,341938 +421361,421361 +13433,13433 +302302,302302 +28530,28530 +155241,155241 +291785,291785 +382742,382742 +17786,17786 +191722,191722 +87634,87634 +98804,98804 +402198,402198 +4833,4833 +261600,261600 +104738,104738 +14822,14822 +6691,6691 +11261,109835 +170940,170940 +331643,331643 +23074,23074 +282342,282342 +430635,430635 +402801,402801 +299889,299889 +8678,8678 +171197,2842 +352740,352740 +8794,8794 +15941,15941 +343485,343485 +13806,13806 +71594,71594 +148807,148807 +11087,11087 +15249,15249 +219527,219527 +38348,463 +9478,9478 +43712,43712 +384109,384109 +17475,17475 +378784,378784 +400854,400854 +123612,123612 +328779,328779 +22084,22084 +324471,324471 +8529,8529 +15696,15696 +70574,70574 +137046,137046 +158590,158590 +57676,57676 +7608,7608 +184638,184638 +326287,326287 +143744,143744 +372991,372991 +60562,60562 +94093,94093 +190736,190736 +62213,62213 +158051,158051 +10524,10524 +423714,423714 +42875,42875 +213891,213891 +168279,168279 +16678,16678 +20784,20784 +157571,157571 +240425,240425 +230010,230010 +17532,17532 +38702,38702 +72169,72169 +250432,250432 +318678,318678 +145294,145294 +261434,261434 +401979,401979 +121045,121045 +27128,27128 +329722,329722 +373944,373944 +11461,11461 +31588,31588 +27726,27726 +3519,3519 +29425,29425 +2486,2486 +20692,20692 +354124,354124 +31318,31318 +10972,10972 +236157,236157 +259497,259497 +33462,33462 +63837,63837 +22914,22914 +207988,207988 +212804,212804 +90291,90291 +367911,367911 +132323,132323 +66680,66680 +2017,215311 +198950,139443 +266155,266155 +41301,41301 +306654,306654 +21336,21336 +36729,36729 +196505,196505 +11962,11962 +260505,260505 +116738,116738 +286260,286260 +11496,11496 +3649,3649 +368294,368294 +10590,143745 +282841,282841 +413121,413121 +52286,69278 +186692,186692 +138746,138746 +24641,24641 +128811,128811 +396621,396621 +11405,3946 +251190,251190 +169058,169058 +16981,16981 +103178,103178 +147218,147218 +253115,253115 +25418,25418 +289856,289856 +169760,169760 +27460,27460 +11425,11425 +276869,276869 +297812,297812 +19025,19025 +40571,40571 +387516,387516 +344032,344032 +3832,3832 +389790,389790 +22744,22744 +134567,134567 +153990,153990 +230915,230915 +76416,76416 +187009,187009 +223622,204895 +265979,265979 +150160,150160 +1207,1207 +67718,67718 +5269,5269 +3598,3598 +26157,26157 +236698,236698 +257324,257324 +206328,57775 +231299,231299 +306272,129513 +400145,163983 +289928,289928 +280728,280728 +423583,423583 +130932,130932 +5998,5998 +2103,2103 +127112,127112 +131240,71 +209817,209817 +158221,158221 +69680,69680 +209502,209502 +10203,10203 +111853,111853 +299024,258314 +294670,294670 +293786,7060 +25977,25977 +278686,278686 +207337,207337 +251702,251702 +199241,199241 +21832,21832 +339301,339301 +302939,302939 +224502,224502 +4581,4581 +412154,412154 +14799,14799 +23411,23411 +290403,290403 +105550,105550 +37379,867 +104796,104796 +11890,11890 +183153,178595 +6300,6300 +362601,362601 +288638,288638 +38517,38517 +164629,164629 +10921,10921 +343952,343952 +147472,147472 +90460,90460 +24325,24325 +130149,130149 +9661,9661 +177225,177225 +24372,24372 +295469,295469 +26332,26332 +390592,390592 +39299,39299 +34600,34600 +322905,322905 +311036,311036 +12397,12397 +364630,364630 +147757,463 +271358,271358 +7460,7460 +137016,137016 +209628,209628 +294643,294643 +53284,53284 +7012,7012 +19152,19152 +98953,98953 +8148,8148 +22585,22585 +298487,298487 +2598,6977 +2067,2067 +37710,37710 +164248,164248 +124393,124393 +14032,14032 +223625,204895 +288137,288137 +145564,145564 +4407,4407 +346616,346616 +352646,352646 +3107,3107 +111543,111543 +191512,191512 +197693,197693 +32826,32826 +10192,10192 +1522,1522 +143618,143618 +77548,77548 +9996,9996 +126527,126527 +358752,358752 +14567,14567 +258080,258080 +4426,4001 +242927,242927 +411513,411513 +311726,311726 +133822,133822 +212817,212817 +146592,146592 +35543,35543 +12556,12556 +51630,2838 +320939,320939 +132233,132233 +269203,18963 +33093,33093 +377391,63268 +310510,310510 +15218,15218 +369681,323718 +36919,36919 +24657,24657 +33262,33262 +124107,124107 +183243,183243 +161125,161125 +39362,39362 +230606,230606 +31043,31043 +104801,104801 +205604,205604 +328586,699 +207722,207722 +166371,166371 +180292,180292 +211943,211943 +270127,270127 +296420,296420 +36985,36985 +7484,7484 +410722,410722 +163766,163766 +344274,344274 +359046,359046 +413921,131904 +401124,60815 +34034,34034 +257165,257165 +295889,295889 +36453,36453 +232025,94821 +425337,425337 +417162,375676 +175091,175091 +420774,420774 +18713,18713 +24184,24184 +360881,360881 +14573,14573 +26953,26953 +27865,27865 +143561,143561 +143310,143310 +124833,124833 +231473,231473 +29683,29683 +395632,395632 +410252,410252 +279482,279482 +17473,17473 +316706,316706 +146764,146764 +246356,246356 +334071,334071 +409048,409048 +424439,424439 +91445,91445 +86241,86241 +357651,357638 +358736,358736 +387236,387236 +352240,352240 +16492,16492 +102832,102832 +278361,278361 +423048,366458 +166035,166035 +383008,224149 +337854,337854 +26732,26732 +224860,224860 +400269,400269 +188428,188428 +262436,262436 +27135,27135 +247755,247755 +383074,383074 +267149,267149 +292893,292893 +24018,24018 +211915,211915 +177447,177447 +298100,25602 +361393,361393 +254739,254739 +206203,206203 +358986,358986 +345796,345796 +367152,367152 +140866,140866 +102064,102064 +362525,362525 +42125,42125 +287272,287272 +21662,21662 +143389,143389 +130653,130653 +15089,15089 +228623,228623 +377616,377616 +386342,386342 +358980,358980 +192394,37906 +29980,29980 +199028,204895 +153894,153894 +259370,259370 +29702,29702 +256182,256182 +223001,223001 +230038,230038 +413515,413515 +182242,182242 +220053,220053 +356618,300929 +334488,334488 +189731,189731 +118949,118949 +360937,360937 +402751,402751 +341908,341908 +276209,14324 +156784,134884 +111681,111681 +49808,49808 +425432,425432 +262854,262854 +8467,8467 +331049,331049 +21296,21296 +383246,349796 +19596,19596 +313083,313083 +338794,338794 +366264,366264 +407483,407483 +330696,321179 +71154,71154 +150213,150213 +69069,69069 +146220,146220 +221574,221574 +267629,267629 +404510,404510 +362614,362614 +312447,312447 +347167,347167 +257425,257425 +242873,242873 +133736,133736 +202228,202228 +400811,400811 +178689,178689 +138732,138732 +325572,325572 +356336,356336 +228463,228463 +390659,408545 +271154,271154 +332546,332546 +158813,158813 +375935,375935 +89072,89072 +400767,400767 +25285,25285 +81413,81413 +73770,73770 +214291,214291 +38563,38563 +23022,23022 +206511,206511 +27709,27709 +3184,3184 +226235,226235 +22757,22757 +21134,21134 +340453,340453 +408284,408284 +295145,295145 +182241,182241 +323369,323369 +363646,363646 +18494,18494 +348564,348564 +19744,19744 +421169,421169 +216006,216006 +45465,45465 +27133,27133 +268371,268371 +309830,309830 +360800,337098 +356619,356619 +294783,294783 +285619,285619 +275713,36638 +411933,411933 +292382,292382 +419701,419701 +341183,341183 +294613,294613 +247683,247683 +129027,129027 +193394,193394 +331673,331673 +32185,32185 +294762,294762 +408876,408876 +383245,349796 +162440,162440 +41187,41187 +29399,29399 +288300,288300 +38725,38725 +413314,413314 +304536,304536 +396702,396702 +59433,59433 +49377,49377 +29060,29060 +265701,265701 +403214,403214 +269650,269650 +411619,411619 +428408,428408 +268625,268625 +229995,229995 +375422,375422 +23117,23117 +328733,3818 +421766,226176 +310696,310696 +183509,124413 +89599,89599 +106790,106790 +195702,195702 +374729,374729 +73156,73156 +102863,102863 +406882,406882 +2859,2859 +281064,281064 +426147,426147 +160727,160727 +128272,128272 +170303,170303 +37309,37309 +33592,33592 +9524,9524 +41792,41792 +408834,213266 +260403,260403 +238525,238525 +299625,299625 +331481,331481 +371234,371234 +391334,391334 +266103,266103 +354667,354667 +7881,7881 +401186,401186 +284743,284743 +353786,353786 +314382,314382 +276719,15267 +328170,328170 +330176,3720 +279768,279768 +407291,407291 +306951,306951 +428768,428768 +335658,335658 +307885,11168 +341488,341488 +23846,160584 +399012,399012 +357015,357015 +256872,130960 +287861,287861 +13386,13386 +247168,247168 +401327,401327 +329674,329674 +195352,195352 +433007,433007 +17798,17798 +356870,356870 +20442,20442 +163369,163369 +13956,2795 +399368,399368 +164378,224081 +425635,425635 +62717,62717 +40109,40109 +135381,135381 +43916,43916 +158317,158317 +187697,187697 +37150,37150 +333141,333141 +27325,27325 +19786,19786 +117917,117917 +231501,231501 +41610,41610 +300865,300865 +14896,14896 +46953,46953 +35897,35897 +39687,39687 +225784,225784 +399753,399753 +370187,370187 +67035,67035 +359822,377304 +304412,177515 +206315,206315 +145198,130735 +406295,406295 +389090,389090 +411906,411906 +98387,98387 +380865,380865 +19312,19312 +222274,222274 +200477,200477 +22620,22620 +304128,304128 +62137,62137 +363845,363845 +37688,37688 +9635,9635 +83614,83614 +32563,32563 +78431,78431 +281940,281940 +162734,2639 +340674,340674 +21162,21162 +419038,382742 +217808,217808 +136975,136975 +341975,341975 +178731,178731 +85631,85631 +130207,130207 +164363,164363 +353836,353836 +292863,292863 +18419,18419 +26039,26039 +282976,282976 +232108,232108 +39620,39620 +369983,369983 +17505,17505 +16472,16472 +163028,163028 +35223,35223 +323916,323916 +253674,251472 +7674,7674 +24889,24889 +302298,302298 +175296,175296 +40837,40837 +366713,366713 +331541,137 +125444,125444 +226339,226339 +348181,348181 +35011,35011 +86779,86779 +276340,276340 +7007,7007 +237751,237751 +204320,204320 +370639,370639 +221074,221074 +6160,27649 +35708,35708 +330745,291954 +371487,242616 +352139,352139 +6505,6505 +273662,273662 +395139,395139 +383039,383039 +279783,275978 +95491,183 +30599,30599 +61074,61074 +129485,129485 +125669,125669 +45827,45827 +174204,174204 +119107,119107 +24662,24662 +21189,21189 +342675,327839 +93430,93430 +185338,185338 +233447,233447 +26492,26492 +20808,20808 +25635,32159 +207358,207358 +356667,356667 +22867,22867 +389414,389414 +254206,254206 +339286,339286 +31709,31709 +309337,309337 +34018,34018 +35362,35362 +269936,269936 +117858,117858 +249663,249663 +417316,417316 +374334,374334 +327506,327506 +154500,154500 +33484,33484 +30275,30275 +18838,18838 +391546,391546 +398253,398253 +36672,36672 +20625,20625 +34179,34179 +28763,28763 +132465,132465 +14816,14816 +70903,70903 +318324,318324 +310688,310688 +338670,338670 +383250,383250 +4380,4380 +230307,230307 +3754,3754 +257201,257201 +328825,328825 +232491,232491 +306758,306758 +37064,37064 +287394,287394 +7527,7527 +225354,225354 +5341,5341 +220214,220214 +36699,36699 +156925,156925 +43161,43161 +269575,269575 +24628,24628 +393864,393864 +122670,122670 +97600,97600 +118034,118034 +14722,14722 +37134,37134 +13059,13059 +173380,173380 +18762,18762 +32300,32300 +256367,256367 +95758,95758 +134165,134165 +321106,321106 +173390,173390 +287227,287227 +22533,22533 +154703,154703 +23849,23849 +335124,335124 +292019,292019 +371235,371235 +346505,346505 +350890,350890 +354087,354087 +383018,383018 +29239,29239 +150056,150056 +323564,323564 +11809,116405 +29710,29710 +296196,289801 +3757,3757 +158063,158063 +328679,328679 +342888,342888 +190100,190100 +167488,167488 +73113,73113 +12658,12658 +376720,376720 +30495,30495 +40789,40789 +248153,63743 +294094,294094 +366545,366545 +42536,42536 +7645,7645 +127131,127131 +262330,262330 +112136,112136 +32487,32487 +158682,158682 +4817,4817 +154489,154489 +195126,195126 +199149,199149 +328066,328066 +8462,8462 +263740,263740 +397085,397085 +71835,71835 +7521,7521 +106789,106789 +18429,18429 +206626,206626 +371798,371798 +272910,178900 +174380,174380 +113785,113785 +19240,19240 +424878,424878 +9282,9282 +423709,278886 +189624,189624 +109404,109404 +346230,346230 +11537,11537 +383445,383445 +373388,373388 +34486,34486 +371102,371102 +360553,360553 +278651,278651 +7775,7775 +194629,194629 +302275,302275 +40504,40504 +327601,327601 +422993,422993 +424880,424880 +24955,24955 +403246,403246 +16665,16665 +18336,18336 +41603,41603 +27237,27237 +218723,218723 +252878,252878 +311030,311030 +146977,3439 +128415,128415 +284659,284659 +209308,209308 +27188,27188 +381133,381133 +70456,70456 +11197,11197 +91515,91515 +378371,231181 +316478,316478 +27315,27315 +279417,156420 +191665,191665 +4525,4525 +270627,270627 +194187,359857 +363936,363936 +168201,168201 +17138,17138 +13927,13927 +25750,25750 +8901,8901 +388641,388641 +243175,243175 +56683,56683 +117000,117000 +156302,156302 +255716,255716 +180500,180500 +34884,34884 +12884,12884 +182405,182405 +189422,189422 +401626,401626 +5734,5734 +249844,249844 +113780,113780 +22212,22212 +151021,151021 +157643,157643 +236899,236899 +186342,186342 +11622,11622 +156866,156866 +231701,231701 +29795,29795 +183524,183524 +21628,21628 +332073,332073 +28891,28891 +372574,372574 +5907,2609 +130156,130156 +237186,237186 +12765,12765 +259984,259984 +366464,366464 +3368,772 +310973,310973 +159315,159315 +35575,35575 +307905,307905 +360987,360987 +174178,174178 +173248,192047 +144948,144948 +317405,317405 +56129,56129 +26721,26721 +108084,108084 +14427,14427 +153122,153232 +21392,21392 +176290,176290 +774,774 +192265,192265 +36906,36906 +14944,14944 +174162,174162 +286726,204895 +430209,430209 +121793,121793 +20877,20877 +5149,5149 +42321,42321 +12641,12641 +286312,1269 +160654,160654 +308777,308777 +181208,181208 +271735,271735 +14606,14606 +305207,305207 +23196,23196 +19285,19285 +8644,8644 +81825,81825 +295439,463 +220310,220310 +120254,120254 +312698,312698 +17738,17738 +256540,256540 +207713,178958 +10371,10371 +327297,327297 +409579,409579 +38710,38710 +360551,360551 +357463,236938 +179687,179687 +95979,95979 +368957,368957 +242553,242553 +427027,427027 +379631,379631 +60057,60057 +402327,402327 +275625,275625 +97470,97470 +182067,182067 +31477,31477 +7899,7899 +4337,4337 +348434,348434 +111418,111418 +229086,229086 +51499,51499 +365,365 +76445,76445 +6963,6963 +11974,11974 +288586,288586 +13872,13872 +169755,169755 +259329,259329 +3350,3350 +32252,32252 +242076,242076 +153571,153571 +374869,374869 +347908,347908 +260527,260527 +418516,418516 +159472,159472 +26344,26344 +177632,177632 +406596,406596 +144685,144685 +368630,368630 +121922,121922 +13067,13067 +33429,33429 +11462,11462 +53095,53095 +7232,7232 +135408,135408 +358972,358972 +37192,37192 +29809,29913 +200692,200692 +18858,18858 +21986,21986 +36734,36734 +238925,238925 +19485,19485 +173149,86169 +210699,210699 +104817,104817 +2712,2712 +32421,32421 +118698,118698 +164229,164229 +343516,343516 +348232,348232 +392150,392150 +182230,182230 +116188,116188 +64129,21189 +393958,393958 +147775,147775 +95123,95123 +18586,18586 +236459,236459 +278169,278169 +11384,11384 +33928,33928 +334794,334794 +9795,9795 +192043,262160 +14187,14187 +139023,139023 +353768,353768 +382103,382103 +303660,303660 +28784,28784 +8503,8503 +73574,415090 +223440,223440 +20550,20550 +245628,245628 +321475,204165 +199026,199026 +424773,424773 +4558,4558 +129381,129381 +263466,263466 +429367,429367 +377586,377586 +132793,132793 +357997,357997 +67288,67288 +33438,33438 +400772,400772 +378442,378442 +29709,29709 +70740,70740 +274176,274176 +250590,250590 +421631,421631 +317846,317846 +180066,180066 +323294,323294 +10621,10621 +11211,11211 +319698,319698 +9273,9273 +322677,322677 +366896,366896 +199027,204895 +5646,590 +12873,12873 +224836,224836 +24839,24839 +19294,19294 +2104,2104 +274906,274906 +168199,168199 +175855,175855 +23795,23795 +5308,5308 +425254,425254 +257209,257209 +11286,11286 +343835,343835 +418313,418313 +342104,342104 +380462,380462 +403106,403106 +328169,328169 +33779,33779 +7528,7528 +166963,166963 +147522,147522 +376584,376584 +20113,27938 +143187,143187 +36849,36849 +245492,245492 +174309,174309 +309954,309954 +4725,4725 +31756,31756 +36907,36907 +17181,17181 +975,975 +199081,199081 +324590,324590 +7516,7516 +40617,40617 +177193,177193 +149112,149112 +220226,220226 +356071,463 +16253,17081 +217679,7625 +156387,156387 +154298,154298 +16782,16782 +6153,34652 +234465,234465 +2361,2361 +242556,242556 +18719,18719 +5629,5629 +320445,320445 +35560,35560 +320680,127493 +265098,265098 +368805,368805 +402991,402991 +345201,345201 +221473,221473 +271291,271291 +383244,349796 +420690,420690 +416712,416712 +381815,381815 +357384,357384 +414071,414071 +261212,261212 +223917,223917 +368242,368242 +359069,359069 +233777,233777 +110764,110764 +264941,264941 +34332,34332 +237495,237495 +153293,153293 +179696,179696 +300852,300852 +22314,22314 +298410,341973 +432446,432446 +308942,308942 +380197,380197 +166064,166064 +371399,371399 +129019,129019 +325505,325505 +428453,232980 +300733,300733 +376639,291855 +125860,125860 +186264,186264 +27178,27178 +426446,426446 +338595,338595 +419926,419926 +408253,404893 +279906,279906 +294547,294547 +381391,381391 +401247,401247 +389599,389599 +350082,350082 +280334,177823 +155584,164205 +124657,124657 +158719,158719 +104978,104978 +314023,314023 +367842,110 +358594,358594 +280634,101644 +30568,30568 +369559,369559 +67587,67587 +309462,309462 +314831,264076 +371325,371325 +28959,28959 +62663,62663 +10113,10113 +300801,300801 +420813,420813 +422594,422594 +426962,426962 +346239,346239 +152957,152957 +324211,334307 +155193,155193 +217154,217154 +273758,273758 +36581,36581 +171420,171420 +378075,378075 +337177,337177 +372437,372437 +36302,36302 +108064,108064 +209558,209558 +37586,37586 +246831,246831 +363275,363275 +188401,188401 +158642,158642 +358597,358597 +319048,319048 +361168,361168 +118541,118541 +235283,235283 +419439,419439 +284655,284655 +227469,227469 +164954,164954 +120400,120400 +433473,433473 +32610,32610 +187359,187359 +356835,356835 +415936,254201 +303955,303955 +18313,18313 +369383,369383 +307809,307809 +380285,380285 +216736,216736 +254343,254343 +199860,199860 +66596,66596 +363152,363152 +378192,378192 +333177,333177 +217529,217529 +24297,24297 +205897,205897 +256004,256004 +348673,348673 +412231,412231 +430756,430756 +311014,311014 +365701,365701 +344543,344543 +116778,116778 +168559,168559 +217580,217580 +370384,370384 +318694,318694 +364265,364265 +386846,386846 +3530,3530 +392628,392628 +193545,193545 +425225,425225 +210423,210423 +169924,169924 +126268,126268 +297786,8264 +416578,416578 +352183,352183 +223872,223872 +281396,14010 +39604,39604 +23104,23104 +429640,429640 +16710,16710 +294687,294687 +384209,384209 +296684,296684 +250394,114438 +160643,160643 +309031,309031 +47732,47732 +324514,324514 +346805,346805 +350212,350212 +258434,258434 +338726,338726 +220366,220366 +328702,328702 +296038,296038 +124389,124389 +369766,369766 +419352,419352 +424916,424916 +137107,137107 +14948,14948 +426628,426628 +324415,463 +340520,340520 +336728,336728 +376912,376912 +377671,377671 +373975,373975 +347980,347980 +291696,180845 +423831,423831 +201554,163343 +310138,310138 +12447,12447 +391567,391567 +431053,431053 +7555,7555 +188965,188965 +173856,173856 +328589,328589 +402499,402499 +419572,283355 +367579,367579 +385570,385570 +230306,230306 +173122,173122 +18583,18583 +363150,363150 +362689,362689 +274902,274902 +222540,222540 +417549,417549 +404506,404506 +414946,414946 +331797,331797 +380107,380109 +139217,139217 +329990,329990 +140676,140676 +197302,197302 +407981,407981 +196517,196517 +299246,299246 +83057,83057 +272523,272523 +374828,374828 +370813,3439 +251855,255955 +327156,253167 +167427,167427 +374678,374678 +231284,231284 +379031,379031 +393595,393595 +190089,190089 +304002,304002 +179488,179488 +129950,129950 +368248,368248 +389600,389599 +402042,402042 +387163,387163 +366377,366377 +202030,202030 +89217,89217 +268926,266004 +289741,289741 +82777,82777 +423152,142296 +306957,306957 +425676,313073 +307381,307381 +187661,187661 +255978,255978 +325397,325397 +49480,49480 +434111,357332 +15672,15672 +173164,173164 +324092,334307 +388541,388541 +29474,29474 +64177,64177 +255109,255109 +300128,300128 +415860,415860 +128586,128586 +99695,99695 +400164,400164 +189941,189941 +175433,163343 +330310,330310 +26331,26331 +365716,365716 +229077,229077 +290790,290790 +267928,267928 +333767,358881 +368223,368223 +26037,26037 +363136,363136 +382850,382850 +427267,427267 +284954,284954 +149994,149994 +262145,262145 +281431,281431 +76092,5692 +38831,5831 +217198,4815 +348940,321179 +128776,128776 +224337,224337 +294785,182510 +271638,251228 +402771,402771 +12531,12531 +305331,305331 +6571,6571 +356612,335954 +335509,335509 +30459,30459 +346769,346769 +6269,6269 +159240,159240 +382851,382851 +7543,7543 +338179,338179 +154177,154177 +425861,425861 +284688,284688 +248893,248893 +70111,70111 +176314,176314 +72279,72279 +290017,290017 +39021,39021 +382853,382853 +363021,363021 +174731,284926 +146195,146195 +65716,65716 +427909,328211 +149774,149774 +355275,355275 +428336,428336 +327578,327578 +427293,427293 +168826,168826 +280761,280761 +174341,137958 +389518,389518 +389539,389539 +423771,423771 +67129,67129 +320443,320443 +349061,349061 +424893,424893 +316335,316335 +22683,22683 +315208,315208 +275641,275641 +344065,344065 +368962,368962 +61454,61454 +306954,306954 +371151,26292 +168358,168358 +312666,321654 +295251,295251 +378255,378255 +311851,311851 +281467,281467 +6274,6274 +140466,140466 +358533,358533 +295109,295109 +127990,127990 +51832,51832 +428098,428098 +383243,349796 +389415,389415 +199225,199225 +172694,172694 +359788,359788 +156171,156171 +375699,375699 +290037,290037 +294721,294721 +333272,333272 +297729,297729 +145471,145471 +254152,254152 +365981,365981 +232109,232109 +431636,431636 +158781,158781 +321205,321205 +410772,410772 +363328,363328 +421466,421466 +145384,145384 +325425,325425 +383247,349796 +429457,429457 +327739,336962 +376106,376106 +143870,143870 +406327,406327 +297548,297548 +358855,358855 +263698,1513 +372837,372837 +192847,192847 +427469,427469 +226049,226049 +419019,419019 +133794,133794 +387052,387052 +90821,90821 +28269,28269 +42096,42096 +192141,192141 +174326,137958 +198897,198897 +332687,332687 +342418,395919 +310306,310306 +368440,368440 +262748,262748 +290513,290513 +124525,124525 +425335,425335 +381806,381806 +29923,29923 +29677,29677 +8346,8346 +427528,427528 +334291,334291 +179989,179989 +349591,349591 +29059,29059 +111157,111157 +6816,6816 +66281,154838 +245289,245289 +262331,262331 +382943,382943 +325404,325404 +381532,381532 +169021,169021 +189151,189151 +396070,396070 +349760,349760 +366437,366437 +178510,178510 +33699,33699 +142604,142604 +420176,420176 +317097,317097 +409341,409341 +45265,45265 +228092,228092 +145795,145795 +382846,382846 +214462,214462 +416744,416744 +354972,354972 +142107,142107 +303929,303929 +360470,360470 +419569,419569 +423409,423409 +27020,27020 +140784,140784 +14904,14904 +376759,376759 +159236,159236 +340809,340809 +32261,32261 +279082,279082 +379852,379852 +275640,275640 +176210,176210 +111508,111508 +69736,69736 +343630,343630 +410394,410394 +147969,147969 +25426,25426 +336616,336616 +368323,368323 +248134,226596 +292761,292761 +353739,353739 +245711,245711 +308892,308892 +126172,126172 +33530,33530 +31072,31072 +409089,409089 +10435,10435 +13514,13514 +19391,37875 +410228,410228 +19910,19910 +126437,126437 +308225,308225 +8347,8347 +424785,424785 +230082,230082 +151680,151680 +333521,333521 +131308,499 +152323,152323 +307165,307165 +32910,32910 +10766,10766 +429404,429404 +15753,15753 +17685,17685 +108101,108101 +35202,35202 +221329,221329 +373270,373270 +88526,88526 +359894,272438 +220480,220480 +292078,292078 +296995,296995 +309137,160545 +400864,400864 +260752,32441 +96687,96687 +329554,329554 +25563,25563 +302105,302105 +65450,65450 +372211,141067 +179745,179745 +420947,420947 +185073,26233 +417964,417964 +347536,347536 +273661,145795 +38047,38047 +247640,247640 +329371,329371 +55154,11050 +5187,5187 +300799,300799 +355949,355949 +215393,215393 +265230,265230 +360565,360565 +130583,130583 +421485,421485 +203197,203197 +360657,360657 +425867,425867 +373719,373719 +19281,19281 +23776,23776 +102580,102580 +57191,57191 +346736,346736 +417722,417722 +324194,324194 +199501,204895 +10545,10545 +295239,295239 +14731,14731 +398457,398457 +271631,271631 +9414,9414 +132132,132132 +15067,15067 +329898,329898 +154541,154541 +332576,37500 +34304,34304 +365834,365834 +166170,166170 +422012,303553 +31748,31748 +4250,4250 +45357,45357 +35365,35365 +415025,415025 +421934,421934 +265756,265756 +140188,140188 +164175,164175 +35478,35478 +299343,299343 +12932,12932 +378522,378522 +189724,189724 +11181,11181 +24833,24833 +6602,6602 +151333,151333 +13430,13430 +205875,205875 +108456,108456 +375150,375150 +275289,275289 +351912,351912 +323376,323376 +42573,42573 +386869,383039 +29022,29022 +272232,272232 +112900,112900 +176319,176319 +402979,402979 +403460,403460 +81827,81827 +171107,171107 +257765,257765 +298687,298687 +20059,20059 +157302,157302 +40177,40177 +253174,253174 +37372,37372 +361632,361632 +255799,255799 +412700,412700 +212541,212541 +354488,354488 +432946,365534 +371308,371308 +347509,347509 +21948,21948 +427161,427161 +320404,320404 +142534,142534 +27326,27326 +102029,102029 +421925,421925 +425944,425944 +129039,129039 +359870,359870 +249500,249500 +241860,241860 +251568,251568 +410185,410185 +28111,28111 +16988,16988 +18455,18455 +374694,374694 +126663,126663 +163262,163262 +379637,379637 +393739,393739 +28759,28759 +333937,333937 +12534,12534 +401500,401500 +10587,10587 +310607,310607 +31064,3939 +168683,168683 +254914,254914 +293242,293242 +31287,31287 +423890,423890 +287173,287173 +19927,19927 +228436,228436 +26068,26068 +68174,68174 +171022,171022 +17897,17897 +33736,33736 +29442,29442 +377708,377708 +312887,463 +26300,26300 +376591,376591 +97442,97442 +417999,417999 +93389,93389 +17616,17616 +22944,22944 +378558,378558 +183977,183977 +333181,333181 +63202,63202 +117731,117731 +89387,89387 +210389,210389 +336873,336873 +311211,311211 +156389,156389 +353335,353335 +156356,156356 +94346,94346 +16588,16588 +192269,192269 +97818,97818 +283773,283773 +320833,320833 +412859,412859 +39879,39879 +23339,23339 +237722,237722 +307195,307195 +403100,339302 +375788,375788 +329844,328732 +14203,14203 +174339,174339 +43904,43904 +353333,353333 +209500,209500 +319382,319382 +20820,20820 +129378,174037 +407206,407206 +193788,193788 +289407,289407 +22367,22367 +186367,186367 +6905,6905 +70114,70114 +37344,37344 +242193,14441 +299910,299910 +232232,232232 +181174,181174 +418010,418010 +334045,334045 +9943,9943 +382575,382575 +3783,3783 +357950,357950 +242197,14441 +292570,292570 +12881,12881 +17373,17373 +283622,283622 +122403,122403 +395004,395004 +19452,19452 +22083,22083 +39448,39448 +406143,400209 +130510,130510 +389119,389119 +242196,14441 +14827,14827 +139297,13742 +341848,338794 +28782,28782 +11012,11012 +20061,20061 +8154,8154 +414047,414047 +171393,171393 +109552,109552 +17788,17788 +364270,364270 +306714,42448 +360824,360824 +251560,251560 +32026,32026 +119936,119936 +13574,13574 +340128,340128 +99828,99828 +30648,30648 +292807,292807 +63650,63650 +342676,218025 +390971,390971 +190625,190625 +241717,241717 +130628,130628 +10366,10366 +6900,3383 +348031,348031 +35297,35297 +213296,213296 +39826,39826 +240651,240651 +405426,405426 +256150,256150 +29713,29713 +8263,8263 +94446,94446 +387750,387750 +24967,24967 +237210,237210 +20942,20942 +137157,137157 +151219,151219 +13685,13685 +50437,50437 +31776,31776 +18232,18232 +59332,59332 +393345,393345 +147275,147275 +128683,128683 +34271,34271 +108981,108981 +725,725 +12324,12324 +429132,429132 +197521,197521 +198739,198739 +19366,19366 +20095,20095 +209050,209050 +12361,12361 +30660,30660 +28606,28606 +216559,216559 +3441,3441 +330749,330749 +10892,10892 +202323,202323 +9425,9425 +168166,168166 +39886,39886 +159627,159627 +346957,346957 +324935,324935 +286095,286095 +413532,413532 +117791,117791 +42556,42556 +172591,172591 +286080,286080 +6833,6833 +29127,29127 +177240,177240 +387079,387079 +11910,11910 +279060,279060 +338783,103814 +375753,375753 +190484,2164 +1928,1928 +64970,64970 +105364,105364 +25373,25373 +399749,399749 +135868,135868 +21827,21827 +66359,66359 +194029,194029 +19242,19242 +292556,130680 +40562,40562 +93289,130680 +81838,81838 +95757,95757 +68954,68954 +244089,244089 +4414,4414 +195076,195076 +368888,368888 +296623,17181 +19473,19473 +10411,10411 +288433,288433 +343520,3181 +232600,232600 +27479,27479 +185050,185050 +22059,22059 +154583,75529 +255546,255546 +309910,309910 +117702,117702 +249305,249305 +159383,159383 +379349,379349 +161999,161999 +7414,7414 +2827,2827 +307246,307246 +33950,33950 +14041,14041 +13427,13427 +10663,10663 +184390,184390 +1507,1507 +21118,21118 +29810,834 +214178,214178 +351560,351560 +301547,301547 +26291,4864 +30935,30935 +1129,1129 +297002,297002 +290010,290010 +153234,153232 +8199,8199 +11213,11213 +235016,235016 +18055,18055 +161793,161793 +145800,145800 +39202,39202 +130232,130232 +130039,130039 +24289,24289 +419317,419317 +27412,27412 +14846,14846 +7108,7108 +124240,124240 +205537,205537 +255503,255503 +170900,170900 +9776,9776 +7165,7165 +256235,256235 +27542,416 +136780,136780 +350663,350663 +176599,176599 +33152,33152 +211788,211788 +275555,275555 +337153,8222 +92243,92243 +154277,154277 +352290,261157 +120174,120174 +184627,184627 +218640,218640 +2030,2030 +222382,222382 +16802,2392 +287681,287681 +91995,137 +195255,195255 +8593,8593 +5863,5863 +257904,257904 +20153,20153 +119792,119792 +341484,341484 +147824,147824 +314746,314746 +119452,119452 +31421,31421 +4711,4711 +379323,379323 +30503,3937 +378047,378047 +311736,300929 +400972,400972 +22386,22386 +38034,38034 +230272,230272 +295926,267988 +122713,119496 +414829,414829 +40808,40808 +69494,69494 +87683,87683 +146606,146606 +72560,72560 +171049,171049 +262522,262522 +368855,368855 +345627,345627 +283809,267988 +236556,236556 +270271,270271 +1162,1162 +35702,35702 +4595,4595 +68746,68746 +34689,34689 +383131,364425 +21637,21637 +35917,35917 +8519,8519 +223503,204895 +231719,204895 +204894,204895 +203627,204895 +107007,107007 +131478,131478 +11774,11774 +313816,313816 +3999,2781 +160537,160537 +20769,20769 +11552,11552 +428479,428479 +157086,157086 +246797,246797 +164593,164593 +99038,99038 +145816,145816 +322191,322191 +369865,369865 +328330,328330 +27367,27367 +39098,39098 +141076,141076 +419568,419568 +431022,431022 +284193,284193 +195794,195794 +12027,12027 +14044,14044 +10957,10957 +313720,313720 +214276,166633 +6773,6773 +20807,20807 +134158,134158 +212959,212959 +340884,340884 +119204,119204 +242282,242282 +184843,184843 +10381,10381 +166938,166938 +750,750 +140026,140026 +66047,66047 +386372,386372 +288272,288272 +213584,204895 +199894,204895 +406286,406286 +162017,162017 +3031,3031 +152279,152279 +145419,145419 +17021,17021 +45723,45723 +1984,1984 +422175,422175 +17686,17686 +22799,22799 +66416,66416 +70922,70922 +136153,136153 +30079,30079 +140753,140753 +23560,23560 +320843,320843 +3037,3037 +20388,20388 +194034,194034 +177003,177003 +19044,19044 +83117,83117 +184489,184489 +108554,108554 +429443,429443 +391516,391516 +139703,139703 +24777,24777 +276021,276021 +285521,285521 +377395,377395 +236913,236913 +6777,6777 +22185,22185 +122825,3270 +16307,16307 +164225,164225 +49101,49101 +180188,180188 +184988,184988 +13355,13355 +5328,5328 +58637,58637 +126749,126749 +136144,136144 +325058,325058 +159556,159556 +104334,104334 +361763,361763 +199889,204895 +19030,19030 +188493,188493 +7334,7334 +193930,193930 +169831,169831 +11071,11071 +4738,4738 +348190,348190 +375973,375973 +251711,251711 +42099,42099 +372794,372794 +88181,88181 +37903,37903 +244234,102 +3929,3929 +131869,131869 +251205,251205 +32546,32546 +65526,65526 +293774,293774 +233780,233780 +25038,25038 +298559,298559 +239628,239628 +3019,3019 +31034,31034 +13080,13080 +33279,33279 +158052,158052 +217181,217181 +7411,7411 +224996,224996 +31973,31973 +5033,5033 +157294,157294 +5304,5304 +7415,7415 +23462,23462 +42778,42778 +294239,294239 +420554,420554 +34508,2842 +178306,178306 +242375,242375 +32748,32748 +354872,354872 +24706,24706 +21559,21559 +4803,4803 +200290,200290 +261719,261719 +334580,162295 +298723,298723 +223396,180066 +123233,123233 +1400,1400 +247829,247829 +371857,342090 +370642,346228 +26131,26131 +35806,35806 +348947,348947 +409809,409809 +290509,290509 +433682,433682 +404183,404183 +378210,378210 +346754,346754 +310030,310030 +386048,386048 +294735,294735 +10484,10484 +110752,110752 +422821,262341 +7949,7949 +344547,344547 +420447,420447 +327729,327729 +256803,256803 +176159,176159 +217872,217872 +55283,55283 +405188,405188 +42126,42126 +28848,28848 +339047,339047 +149828,149828 +4027,4027 +429423,429423 +426626,426626 +202275,220478 +234116,36367 +144783,144783 +428682,428682 +30428,30428 +321361,321361 +79673,79673 +425438,425438 +236952,236952 +135205,135205 +400490,400490 +403462,403462 +37756,37756 +98200,98200 +338544,338544 +387959,387959 +162270,162270 +62133,62133 +357556,357556 +7589,7589 +39751,39751 +33120,33120 +378295,378295 +238218,1499 +122297,122297 +170832,63975 +330000,330000 +203061,203061 +374075,374075 +91918,304333 +353156,353156 +12585,12585 +204797,400849 +292824,292824 +286828,286828 +322856,322856 +36630,36630 +31466,31466 +191019,191019 +108105,108105 +199851,204895 +39977,155201 +342344,342344 +285387,285387 +357961,357961 +294628,294628 +124063,124063 +21875,21875 +32344,32344 +175734,175734 +33114,33114 +9750,9750 +19884,19884 +219213,219213 +410197,410197 +297519,297519 +6138,6138 +421616,421616 +383073,383073 +363230,363230 +375292,375292 +403239,403239 +276955,267989 +221663,221663 +399751,147400 +10739,10739 +152468,152468 +71881,71881 +40374,40374 +96480,96480 +177410,177410 +82345,82345 +123213,123213 +280883,280883 +152747,152747 +111342,111342 +49258,49258 +408098,408098 +22979,22979 +249859,249859 +359080,359080 +11387,11387 +362114,362114 +27290,27290 +28288,28288 +183642,183642 +330291,330291 +192746,192746 +37157,37157 +115077,115077 +183869,183869 +175488,175488 +215887,215887 +190301,190301 +257439,257439 +429475,429475 +433584,433584 +15964,15964 +287781,255546 +206990,206990 +421073,421073 +25770,25770 +357392,357392 +259390,259388 +19200,19200 +161330,161330 +314976,314976 +417977,417977 +120846,120846 +368050,368050 +416483,416483 +381781,381781 +26174,26174 +423327,423327 +43115,43115 +16321,16321 +234097,234097 +184554,184554 +316368,316368 +136937,136937 +18904,18904 +239214,239214 +14115,14115 +371149,26292 +99408,99408 +111890,17396 +74306,74306 +333813,57064 +263743,263743 +24792,24792 +57116,57116 +141319,141319 +282176,282176 +396071,396071 +195740,193096 +312391,312391 +417364,417364 +287955,287955 +361139,361139 +23916,23916 +142077,142077 +344399,344399 +383042,383042 +91651,91651 +368806,368806 +202450,137031 +246256,246256 +357383,357383 +275886,275886 +49378,49378 +40200,40200 +338717,338717 +231278,231278 +133536,133536 +351621,351621 +414285,414285 +34077,34077 +246619,207242 +188929,188929 +276381,276381 +17155,17155 +343963,343963 +274948,274948 +331807,331807 +337431,337431 +176685,176685 +23078,23078 +299582,299582 +371148,371148 +186357,186357 +30105,30105 +292991,292991 +333146,333146 +156427,156427 +263343,263343 +362459,362459 +39621,39621 +364435,364435 +261520,183480 +241439,241439 +255394,255394 +370921,370921 +182979,182979 +152341,152341 +13557,13557 +419674,419674 +19896,19896 +252333,252333 +195331,195331 +250275,250275 +230160,230160 +24886,24886 +52647,52647 +277402,277402 +392134,392134 +10387,10387 +240147,240147 +17127,17127 +394437,394437 +172471,172471 +195012,251535 +269726,269726 +31768,31768 +147540,147540 +269556,291953 +254990,254990 +34445,34445 +229125,229125 +385564,385564 +428147,428147 +421932,421932 +368002,368002 +24232,24232 +199504,204895 +269034,269034 +33572,33572 +213551,213551 +418178,418178 +65204,65204 +167495,167495 +26748,26748 +159398,159398 +173857,173857 +375218,375218 +232958,232958 +330645,330645 +240817,240817 +303224,303224 +341156,341156 +138488,138488 +35367,35367 +295414,295414 +400707,400707 +304630,304630 +128816,128816 +19463,19463 +3865,3865 +362560,362560 +364155,364155 +280738,170374 +65112,65112 +67296,67296 +307470,307470 +170197,170197 +210349,210349 +95816,95816 +112153,112153 +56205,56205 +357640,357638 +179529,179529 +211275,211275 +416058,416058 +418399,418399 +364752,463 +6297,6297 +6165,6165 +378265,378265 +179528,179528 +7364,7364 +374730,374730 +175098,175098 +298258,298258 +368439,368439 +25803,25803 +338541,338541 +100193,100193 +421084,421084 +383165,383165 +173455,173455 +27310,27310 +96432,96432 +188502,188502 +229516,233973 +207296,207296 +26809,26809 +42483,42483 +26164,26164 +148907,301683 +171694,171694 +94416,94416 +245145,245145 +410948,410948 +353819,353819 +67381,67381 +421550,210817 +26671,26671 +291583,291583 +39182,39182 +176007,176007 +227901,227901 +347979,192296 +103924,103924 +369457,369457 +29373,29373 +419481,419481 +7897,7897 +151373,151373 +94377,94377 +281885,281885 +175952,175952 +39042,39042 +164465,164465 +194253,194253 +199833,204895 +365043,365043 +363038,363038 +92561,92561 +71812,71812 +27153,27153 +382606,382606 +350635,350635 +363176,363176 +346734,346734 +203815,203815 +374766,60513 +234872,234872 +125596,125596 +407577,407577 +290878,290878 +66136,66136 +175508,1304 +9316,9316 +261069,261069 +192956,192956 +39223,39223 +323291,323291 +118558,118558 +17900,17900 +187648,187648 +25521,25521 +69210,69210 +281410,281410 +140477,3946 +44080,44080 +25550,25550 +20973,20973 +33233,33233 +394272,394272 +100526,100526 +175648,175648 +132169,132169 +65789,65789 +241815,432843 +418123,418123 +229175,229175 +37484,37484 +130579,130579 +99355,99355 +22625,463 +406040,406040 +26833,26833 +191731,191731 +194656,194656 +414174,414174 +41559,41559 +339995,339995 +141052,141052 +340145,340145 +305135,305135 +309424,309424 +292153,292153 +311842,321654 +416948,1219 +56496,56496 +86414,86414 +240848,240848 +16322,16322 +155664,6504 +15465,15465 +377633,377633 +38818,38818 +299029,299029 +17292,17292 +283023,283023 +36556,36556 +258560,113898 +106350,106350 +16997,16997 +230588,230588 +206409,206409 +24715,24715 +169998,169998 +273494,273494 +382122,382122 +325003,325003 +23240,23240 +16811,16811 +278660,278660 +241519,241519 +386760,386760 +339004,158973 +184934,184934 +177794,177794 +4599,4599 +368539,324175 +13428,13428 +118507,118507 +366404,366404 +78704,101463 +198958,198958 +23593,23593 +60489,60489 +7880,7880 +23785,23785 +89949,89949 +23834,23834 +314549,4864 +21328,21328 +193593,193593 +313827,313827 +415627,415627 +367195,367195 +239203,239203 +407231,407231 +129340,129340 +222191,3439 +406303,406303 +289953,289953 +413129,413129 +146957,146957 +134096,134096 +35277,35277 +182232,182232 +17097,17097 +201685,201685 +373856,373856 +220271,220271 +159051,159051 +59302,59302 +352145,352145 +328468,328468 +16684,16684 +30160,30160 +327885,327885 +336188,336188 +260284,260284 +122055,122055 +343518,261831 +352860,352860 +133132,133132 +410231,410231 +350011,283212 +96021,96021 +376594,120870 +353787,353787 +264862,264862 +369399,369399 +321028,321028 +38376,38376 +301726,301726 +30839,30839 +28936,28936 +25579,25579 +156173,156173 +179064,88859 +13721,463 +175220,175220 +165472,14042 +247273,247273 +415212,415212 +27838,1274 +363667,363667 +138539,138539 +203917,203917 +247759,247759 +318302,318302 +399103,399103 +51474,51474 +86598,86598 +414313,115 +96629,96629 +99361,99361 +8251,8251 +60724,60724 +293732,293732 +366376,366376 +36408,36408 +150027,150027 +37007,37007 +40048,40048 +108982,108982 +284664,284664 +340684,330208 +8167,8167 +414469,414469 +21284,21284 +282089,282089 +198823,22392 +271835,271835 +320481,320481 +389858,389858 +360442,360442 +22051,22051 +119759,119759 +273586,273586 +15568,15568 +304861,178028 +125756,10245 +16553,16553 +255818,180845 +10827,10827 +3780,3780 +260732,260732 +19045,19045 +351995,351995 +215426,215426 +30655,30655 +337043,337043 +381065,284987 +37162,37162 +54672,54672 +2499,2499 +7340,7340 +303587,303587 +353964,353964 +124526,124526 +122812,122812 +7764,7764 +21333,21333 +88014,88014 +26351,26351 +182756,760 +346086,346086 +245462,245462 +6836,6836 +142576,142576 +237246,237246 +408132,408132 +264584,264584 +273979,273979 +373972,373972 +23921,23921 +400406,11821 +345118,117555 +89392,89392 +29535,29535 +347162,188784 +23792,23792 +346257,421505 +365454,365454 +21332,21332 +36715,36715 +34281,34281 +294780,294780 +26473,26473 +173641,173641 +298190,207062 +36013,36013 +7666,7666 +8387,3712 +33915,33915 +37730,37730 +376936,376936 +24924,24924 +302301,302302 +28187,28187 +195481,195481 +279922,279922 +14173,14173 +19434,19434 +19686,19686 +177325,177325 +403134,403134 +415773,415773 +5744,5744 +92053,92053 +201166,201166 +346636,346636 +67825,67825 +319918,319918 +429554,429554 +23786,23786 +47315,47315 +389493,389493 +408595,408595 +227581,227581 +149444,149444 +89765,89765 +176197,176197 +244508,244508 +170759,170759 +172769,172769 +20996,20996 +18809,18809 +213990,192047 +4284,4284 +233781,233781 +234590,60210 +380781,380781 +122186,122186 +27822,27822 +200288,200288 +38974,38974 +422252,262341 +169511,169511 +93965,93965 +6845,6845 +47323,47323 +7592,7592 +4428,4428 +212248,212248 +381529,381529 +153924,153924 +55039,55039 +373927,373927 +42335,42335 +123526,123526 +7888,7888 +30622,30622 +166437,166437 +19262,463 +31520,31520 +69260,69260 +36879,36879 +415732,415732 +420089,420089 +170301,170301 +8082,8082 +8501,8501 +34442,34442 +84866,271052 +21640,21640 +36808,36808 +30446,30446 +153514,153514 +380770,380770 +144771,40808 +163227,163227 +17333,463 +35390,35390 +285655,285655 +134616,134616 +30913,30913 +13401,13401 +16983,16983 +23298,23298 +422178,422178 +4899,4899 +8299,8299 +128214,3404 +101926,101926 +17564,17564 +21214,21214 +14870,14870 +83702,83702 +187088,187088 +321121,225265 +3438,3438 +396996,396996 +18381,18381 +284361,284361 +236204,236204 +131870,131870 +12262,12262 +147317,147317 +38192,38192 +11340,11340 +324938,324938 +41357,41357 +21181,21181 +140677,140677 +171828,171828 +4197,4197 +27604,27604 +41323,41323 +188721,188721 +4094,4094 +239743,239743 +8310,6732 +300401,300401 +153444,153444 +103571,103571 +29681,29681 +268544,268544 +2479,2479 +76702,76702 +22290,22290 +336349,336349 +151068,150160 +338910,338910 +10675,10675 +187903,187903 +209700,175855 +249929,249929 +323883,323883 +247512,247512 +7157,463 +4067,4067 +17191,17191 +4841,4841 +381893,169436 +19562,19562 +41834,41834 +52011,52011 +261456,261456 +341498,341498 +9131,9131 +51262,51262 +14997,14997 +6517,6517 +64370,64370 +222894,222894 +5849,5849 +330954,330954 +14167,14167 +399772,399772 +26467,26467 +1027,1027 +155231,155231 +6809,6809 +5679,5679 +7868,7868 +3047,3047 +218242,218242 +28729,28729 +132785,132785 +2190,2190 +346932,346932 +225575,225575 +319034,319034 +157423,157423 +23590,23590 +18334,18334 +432150,432150 +197481,197481 +346237,346237 +283808,267988 +35064,35064 +233181,233181 +204287,204287 +145185,145185 +51281,51281 +401882,401882 +68030,68030 +412804,412804 +8497,8497 +262398,262398 +6650,6650 +20138,20138 +133297,133297 +15913,15913 +252990,252990 +208170,208170 +2659,2659 +147498,122327 +24147,24147 +275780,275780 +6876,6876 +73563,73563 +337364,337364 +14021,14021 +146928,146928 +322037,322037 +194288,194288 +284502,284502 +182989,182989 +76628,76628 +330204,330204 +240089,240089 +84959,84959 +348247,348247 +123036,123036 +321091,321091 +212924,212924 +41446,41446 +18605,18605 +29811,29811 +398928,398928 +148948,148948 +18002,18002 +124639,124639 +168312,168312 +344407,344407 +107907,107907 +36631,36631 +143186,143186 +235637,235637 +428353,428353 +415807,193213 +22104,22104 +5140,5140 +17672,17672 +75917,75917 +366707,366707 +88553,88553 +422254,422254 +177665,177665 +395625,395625 +22851,22851 +367447,367447 +1169,1169 +29236,29236 +43710,173127 +42826,8243 +251724,251724 +108159,108159 +432947,365534 +174160,174160 +99700,99700 +243552,243552 +411877,399706 +148028,148028 +18375,18375 +22718,22718 +72863,72863 +262041,262041 +355487,39976 +385631,385631 +20680,20680 +33004,33004 +36321,36321 +384111,384111 +39447,39447 +278610,278610 +140694,140694 +13893,13893 +358543,358543 +6445,6445 +345582,463 +127685,127685 +24307,24307 +339419,339419 +121778,121778 +27336,27336 +179975,179975 +423357,423357 +43558,99969 +186382,186382 +199590,199590 +321659,321659 +382737,296167 +217869,217869 +29053,29053 +166390,166390 +297722,297722 +27603,24028 +334744,334744 +210003,210003 +204759,317314 +171751,171751 +406334,406334 +7596,7596 +43151,36687 +11857,11857 +296355,296355 +1913,1913 +27546,27546 +22981,22981 +16780,296045 +137432,137432 +107371,107371 +129941,129941 +130593,130593 +11257,11257 +150758,150758 +1008,1008 +380132,102835 +35247,35247 +206285,206285 +6678,6678 +2897,2897 +64765,64765 +38781,38781 +1318,1318 +105434,105434 +3564,3564 +160441,204583 +6710,271460 +34558,34558 +433449,424451 +173656,173656 +419695,419695 +54743,54743 +284776,284776 +174985,174985 +421540,421540 +137337,137337 +171901,171901 +152682,152682 +111644,111644 +42423,42423 +40344,40344 +15082,15082 +176402,176402 +34154,34154 +181997,181997 +157467,157467 +186409,186409 +22028,22028 +722,722 +30125,30125 +14026,14026 +41796,41796 +15929,15929 +180870,180870 +2619,2619 +122389,122389 +9169,9169 +3917,3917 +3401,3401 +2937,2937 +359113,359113 +198940,198940 +3131,3131 +251827,251827 +386897,365729 +17699,17699 +3450,3450 +168134,168134 +38340,38340 +6573,6573 +279751,279751 +161869,161869 +15654,15654 +35330,35330 +280237,280237 +312536,312536 +47327,47327 +213835,213835 +26444,26444 +357644,357644 +131125,131125 +265403,265403 +416735,416735 +432566,432566 +369418,369418 +354946,354946 +332172,332172 +9298,9298 +423310,423310 +297544,297544 +240954,240954 +202836,202836 +421483,421483 +250484,250484 +141582,141582 +261138,261138 +360895,340080 +23813,23813 +67401,67401 +404338,26474 +159196,159196 +262438,262438 +408938,408938 +328331,328331 +305371,305371 +369942,369942 +198480,198480 +297399,297399 +20286,20286 +428150,428150 +233408,233408 +37459,37459 +109056,109056 +227478,227478 +132263,1421 +4309,4309 +279915,279915 +298646,298646 +257055,257055 +32121,32121 +41476,41476 +332318,332318 +42000,42000 +370736,370736 +125665,125665 +234798,234798 +423146,423146 +251746,251746 +373054,373054 +35515,35515 +305879,11168 +357821,357821 +363272,363272 +431727,431727 +40190,40190 +238719,238719 +374831,374831 +427810,92828 +109851,109851 +419633,419633 +196647,196647 +431422,431422 +194938,194938 +351391,351391 +139040,139040 +38682,3939 +425703,425703 +357700,357638 +338660,338660 +16251,16251 +14332,14332 +354705,354705 +349259,349259 +187280,187280 +14595,14595 +67390,67390 +147759,147759 +92176,92176 +143086,143086 +367734,367734 +124040,124040 +377737,377737 +226193,226193 +262425,262425 +103898,103898 +294483,294483 +415872,356335 +423562,423562 +212650,212650 +330485,330485 +278143,278143 +131826,131826 +39647,39647 +173895,173895 +280146,280146 +289468,289468 +35712,35712 +300672,300672 +39483,39483 +24055,24055 +404067,404067 +72369,72369 +328717,328717 +397638,463 +20766,20766 +126440,126440 +335607,335607 +38656,38656 +268624,268624 +322718,322718 +332367,332367 +379910,379910 +63801,63801 +26501,26501 +309055,309055 +354489,63972 +85337,85337 +42236,42236 +338157,338157 +32984,32984 +7648,7648 +133549,133549 +186941,186941 +179571,179571 +262753,262753 +393677,393677 +171529,171529 +8296,8296 +431775,431775 +358476,358476 +26388,26388 +225713,225713 +247931,247931 +270330,270330 +297310,297310 +35577,35577 +310219,310219 +423076,423076 +161407,161407 +364004,364004 +7627,7627 +381989,381989 +293651,293651 +180612,180612 +293444,293444 +31741,31741 +396972,396972 +137012,137012 +209080,209080 +276834,276834 +306484,306484 +135156,135156 +147271,147271 +432330,432330 +377531,377531 +340327,340327 +326500,326500 +104452,104452 +351665,351665 +124891,124891 +95852,95852 +302673,302673 +184567,184567 +127164,127164 +377799,377799 +342931,342931 +28446,28446 +406391,406391 +142332,142332 +310226,310226 +408914,408914 +417457,417457 +15773,15773 +34441,34441 +417712,417712 +241218,241218 +226953,226953 +382685,380106 +357964,357964 +17639,17639 +89914,89914 +192626,176936 +378736,378736 +143581,143581 +172588,172588 +191967,191967 +29740,29740 +396448,396448 +298683,298683 +233043,233043 +137560,137560 +34354,34354 +249695,249695 +248960,42101 +138198,138198 +147198,147198 +407174,407174 +432338,432338 +366150,366150 +356822,356822 +375742,375742 +414638,414638 +143742,143742 +149283,149283 +252376,252376 +21994,21994 +333171,333171 +82083,82083 +379397,379397 +175603,175603 +7761,7761 +348095,348095 +67963,67963 +222725,222725 +382852,382852 +362588,362588 +321065,321065 +214351,214351 +34763,34763 +9980,9980 +289584,289584 +8558,8558 +415308,415308 +12940,12940 +301884,337864 +345864,345864 +198685,198685 +402193,402193 +32693,32693 +309004,309004 +378316,378316 +370774,370774 +329259,329259 +139817,139817 +70313,70313 +89107,89107 +7813,7813 +332430,332430 +64852,64852 +14104,14104 +152869,152869 +408630,408630 +29999,29999 +112697,112697 +202259,202259 +132260,132260 +421143,31263 +189474,189474 +326124,326124 +251600,251600 +392811,392811 +366630,366630 +357387,357387 +30887,30887 +372425,372425 +138277,138277 +6291,6291 +378294,378294 +16924,16924 +23536,23536 +264236,264236 +329297,329297 +267020,267020 +13529,13529 +332307,332307 +382735,382735 +13066,13066 +120680,120680 +346272,346272 +411983,411983 +429333,429333 +407980,407980 +352920,352920 +207915,207915 +180384,180384 +326626,326626 +8020,8020 +181587,181587 +21120,21120 +201834,201834 +337954,337954 +175597,175597 +123533,123533 +422316,422316 +63372,63372 +369556,261157 +373563,373563 +339186,339186 +376296,376296 +80854,80854 +149067,149067 +200764,200764 +310722,310722 +117948,117948 +413462,413462 +144697,144697 +113746,113746 +176307,176307 +236483,236483 +364623,364623 +414007,351635 +121080,121080 +135565,135565 +111202,111202 +402915,402915 +329374,329374 +324391,324391 +431305,193738 +240220,240220 +362656,362656 +109522,109522 +149727,149727 +140309,140309 +161862,161862 +200360,200360 +81703,81703 +239684,239684 +227452,227452 +140512,24264 +226253,226253 +173901,173901 +300713,300713 +247353,247353 +92028,92028 +419227,419227 +218281,218281 +320805,320805 +18188,18188 +406078,406078 +301975,301975 +31205,31205 +192923,192923 +256447,256447 +238357,238357 +250912,250912 +298773,67254 +186102,186102 +396800,396800 +21456,21456 +25447,25447 +375294,375294 +294659,294659 +34369,34369 +304030,304030 +207417,194810 +116626,116626 +148862,148862 +26231,26231 +201505,201505 +322632,322632 +366045,366045 +10085,10085 +67714,67714 +338991,338991 +350586,350586 +21534,21534 +30512,30512 +429622,429622 +150375,150375 +114446,114446 +293729,293729 +375298,375298 +201368,81588 +314559,314559 +8399,8399 +253606,253606 +144737,144737 +188230,188230 +411421,411421 +374317,374317 +369232,369232 +416033,416033 +32083,32083 +393788,393788 +213803,203733 +137232,137232 +340153,340153 +262412,2281 +332678,332678 +34815,34815 +242033,242033 +307930,307930 +20567,20567 +312285,312285 +235972,235972 +36874,36874 +38971,38971 +355219,355219 +150566,150566 +142694,142694 +370540,370540 +400512,400512 +426945,151022 +254501,254501 +301392,301392 +318046,318046 +247260,247260 +331885,331885 +413438,413438 +329586,329586 +9690,9690 +417110,417110 +30537,30537 +114388,114388 +250695,250695 +371989,371989 +376289,376289 +349993,349993 +15822,15822 +282075,282075 +323605,140519 +388969,388969 +206996,206996 +300596,300596 +369855,369855 +139932,139932 +304188,304188 +27319,27319 +356802,356802 +26792,26792 +194633,194633 +24274,24274 +291644,291644 +149778,149778 +11109,11109 +171343,171343 +65843,65843 +419795,419795 +146196,146196 +367953,367953 +306942,306942 +189339,189339 +307584,307584 +244496,244496 +342932,342932 +33934,33934 +81386,81386 +192625,176936 +164295,164295 +313769,232980 +278167,278167 +361475,361475 +31436,31436 +349057,349057 +362912,132205 +8274,8274 +166257,166257 +252879,252879 +417377,417377 +292410,292410 +357790,357790 +104777,104777 +332793,332793 +344599,344599 +58705,58705 +393395,393395 +322005,322005 +343720,343720 +423960,423960 +70917,70917 +90849,90849 +309906,309906 +57331,57331 +422552,422552 +386631,16000 +353996,353996 +34494,34494 +359957,359957 +329833,329833 +233404,233404 +59508,59508 +414025,414025 +163280,163280 +179738,179738 +32792,32792 +346250,143761 +421177,421177 +161967,161967 +7794,7794 +63199,63199 +416000,416000 +41798,41798 +191249,191249 +293358,293358 +255814,255814 +139720,139720 +357999,172881 +187016,187016 +107501,107501 +390192,390192 +219543,219543 +318917,318917 +416515,416515 +310294,310294 +27640,27640 +158701,158701 +125028,125028 +17693,17693 +13204,13204 +374195,374195 +381014,381014 +308366,308366 +117670,117670 +10219,10219 +89291,89291 +43006,43006 +381493,381493 +10541,10541 +258718,258718 +427674,425944 +292791,292791 +215628,215628 +409705,409705 +88844,88844 +190035,190035 +369489,369489 +318979,318979 +275833,275833 +10091,10091 +32623,32623 +372043,372043 +322205,322205 +128860,128860 +362024,362024 +394173,394173 +162585,162585 +181576,181576 +414686,414686 +26694,26694 +341942,204836 +284860,284860 +34629,34629 +139682,139682 +192393,37906 +240639,240639 +301218,301218 +349141,349141 +338558,338558 +19011,19011 +121935,121935 +422035,422035 +26397,26397 +24497,24497 +293000,293000 +317858,317858 +7914,7914 +38709,38709 +410364,410364 +399377,399377 +88176,88176 +217195,217195 +254614,254614 +102259,1401 +133924,133924 +225566,143391 +15814,15814 +60709,60709 +168408,56604 +340449,340449 +38333,38333 +424713,424713 +16745,16745 +354697,354697 +7520,7520 +374798,374798 +304147,304147 +184556,184556 +341816,341816 +248101,248101 +359888,359888 +130943,130943 +120100,120100 +282705,282705 +66460,66460 +426997,426997 +8769,8769 +213851,213851 +250455,250455 +207500,207500 +232122,33604 +66338,66338 +423429,423429 +29242,29242 +324135,324135 +416219,416219 +375505,375505 +123918,123918 +40665,2398 +364742,364742 +339232,339232 +64893,64893 +383387,383387 +373503,373503 +428299,428299 +227967,227967 +280855,280855 +175218,175218 +380273,380273 +195182,195182 +359898,7950 +430444,430444 +135734,135734 +429654,429654 +27753,27753 +176666,176666 +15531,15531 +86795,86795 +319155,319155 +63850,63850 +165788,165788 +331982,331982 +13265,13265 +420018,420018 +167496,261490 +163143,163143 +181011,181011 +6658,6658 +115339,115339 +374594,374594 +361232,200527 +306237,139374 +152842,152842 +65513,65513 +108728,108728 +13923,13923 +27013,27013 +378711,378711 +382766,382766 +240663,836 +185924,185924 +324126,324126 +359338,359338 +406768,406768 +342958,342958 +24386,24386 +58000,58000 +408586,408586 +340121,340121 +189989,189989 +191966,191966 +92002,92002 +222238,222238 +271836,271836 +24080,24080 +268674,268674 +17713,17713 +169231,294919 +154283,154283 +33404,33404 +359274,359274 +8086,8086 +405077,405077 +9933,9933 +237820,237820 +306277,306277 +175542,175542 +37083,37083 +48396,48396 +82680,82680 +208851,208851 +336484,336484 +103992,103992 +43062,43062 +411938,411938 +34457,34457 +125604,125604 +133476,133476 +32929,32929 +175061,175061 +198295,198295 +130691,130691 +61898,61898 +281485,119342 +318868,318868 +341866,341866 +77433,77433 +85132,85132 +38557,38557 +34468,34468 +108730,108730 +329544,329544 +53281,53281 +152355,152355 +15087,15087 +302546,302546 +368808,368808 +42004,42004 +387553,387553 +286894,286894 +40521,40521 +317291,317291 +199385,199385 +126173,126173 +84114,84114 +26523,26523 +200786,200786 +2900,2900 +108227,108227 +1548,1548 +156415,156415 +191695,191695 +161728,352765 +356487,356487 +188473,188473 +353792,353792 +2691,2691 +327644,327644 +175829,175829 +107551,30966 +427667,427667 +60479,60479 +365538,365538 +176907,176907 +348814,348814 +119704,119704 +300573,40092 +255718,255718 +416381,416381 +345186,345186 +154724,154724 +159161,159161 +425496,2795 +11904,11904 +355944,355944 +324948,324948 +176303,176303 +225140,225140 +20991,20991 +407715,406040 +377408,377408 +312252,312252 +23961,12854 +412903,412903 +10478,10478 +376640,376640 +12935,12935 +353159,353159 +274904,274904 +19282,19282 +320487,320487 +146332,12067 +205589,256838 +250331,1544 +175420,175420 +35242,35242 +414856,400209 +132701,82343 +5386,5386 +8785,8785 +94234,94234 +371847,371847 +4194,4194 +34726,34726 +153089,153089 +66835,66835 +305800,247683 +32186,229356 +241204,241204 +14910,14910 +57188,57188 +414696,414696 +326851,326851 +250962,250962 +289204,289204 +61726,61726 +376686,376686 +128930,128930 +265108,265108 +50621,50621 +307109,307109 +56499,56499 +401283,364425 +116373,116373 +38350,463 +405749,155695 +7431,7431 +19354,19354 +113334,143487 +21883,21883 +110961,110961 +21867,21867 +430308,430308 +34910,34910 +182959,182959 +278011,278011 +41842,41842 +51375,51375 +25432,25432 +12399,12399 +342654,342654 +1195,1195 +25169,25169 +362616,362616 +309965,309965 +15086,23679 +10402,10402 +250124,250124 +26449,26449 +349390,349390 +14911,14911 +24990,24990 +245730,245730 +181630,181630 +33222,33222 +348524,348524 +415517,415517 +39033,39033 +235435,235435 +152179,152179 +18854,18854 +40219,5217 +262769,262769 +60743,60743 +33145,33145 +315519,315519 +16796,16796 +35895,35895 +176335,176335 +86275,168485 +428771,428771 +8905,8905 +7883,7883 +282053,282053 +10305,10305 +5081,5081 +336387,336387 +88219,88219 +6241,6241 +261465,261465 +274024,274024 +27418,27418 +219704,219704 +6163,6163 +30060,30060 +25990,25990 +377280,377280 +20046,20046 +11533,11533 +194087,194087 +84785,84785 +432322,432322 +66112,66112 +36923,36923 +414990,414990 +371926,371926 +55167,55167 +107537,107537 +14286,14286 +40889,40889 +22168,22168 +14011,14011 +14144,14144 +101120,101120 +15338,15338 +296351,296351 +160443,160443 +188427,188427 +20262,20262 +220995,220995 +128788,128788 +24218,24218 +153891,67626 +43306,43306 +158820,158820 +142157,142157 +24130,24130 +22328,22328 +261678,261678 +7155,7155 +354860,354860 +33706,33706 +234319,234319 +208962,208962 +4542,4542 +319587,319587 +26297,26297 +310390,310390 +394864,313543 +11174,11174 +329712,329712 +186436,188292 +245388,245388 +397851,353694 +32754,32754 +154521,154521 +43497,43497 +166531,166531 +329739,329739 +16345,16345 +123447,123447 +18012,18012 +175005,175005 +10285,10285 +362859,362859 +328529,328529 +34777,34777 +319759,319759 +295126,295126 +2270,2270 +12088,12088 +171970,171970 +330976,330976 +11728,11728 +166429,166429 +7282,7282 +255203,255203 +14049,14049 +264969,264969 +182390,182390 +31167,299 +265584,265584 +112383,112383 +20371,20371 +155881,155881 +226226,226226 +14450,14450 +244054,244054 +327720,327720 +24970,24970 +424925,424925 +21357,14042 +14098,14098 +15154,15154 +5518,5518 +10101,10101 +9894,9894 +8655,8655 +214933,214933 +353912,343071 +212107,212107 +7580,7580 +66329,66329 +85804,85804 +10920,10920 +255519,255519 +261488,261488 +31712,31712 +353160,353160 +61510,61510 +17794,17794 +376172,376172 +398130,398130 +25870,25870 +336199,336199 +132509,132509 +5196,5196 +40199,178028 +156890,156890 +410279,410279 +19303,19303 +142519,142519 +125799,125799 +211946,211946 +11833,11833 +295134,295134 +200795,200795 +92326,92326 +16636,16636 +33698,33698 +244455,244455 +12499,463 +120658,120658 +281036,281036 +364054,364054 +27654,27654 +273831,273831 +109507,109507 +16286,16286 +234463,234463 +26029,26029 +14747,14747 +29201,29201 +407534,407534 +208890,155994 +27676,27676 +245633,245633 +10117,10117 +145673,145673 +35766,35766 +197945,197945 +376679,376679 +150541,74 +312997,312997 +193589,38192 +274792,2629 +32733,32733 +319414,319414 +9786,9786 +376756,376756 +7698,7698 +114044,114044 +299798,299798 +205770,205770 +28145,28145 +326122,326122 +250440,250440 +158251,158251 +12425,12425 +348694,348694 +3264,3264 +235945,191065 +6631,6631 +7023,251826 +147732,147732 +374792,374792 +57783,68202 +167470,167470 +206356,206356 +419831,419831 +236479,285183 +181624,181624 +13028,13028 +53167,53167 +8261,8261 +85564,85564 +171362,171362 +378956,378956 +28467,28467 +90997,90997 +10955,10955 +23322,23322 +64244,64244 +16767,16767 +254227,8924 +149076,149076 +5919,5919 +249093,249093 +187600,187600 +369750,369750 +4926,4926 +266073,184525 +303722,303722 +257596,148215 +6379,6379 +12790,12790 +343967,343967 +165020,165020 +272016,272016 +244338,153723 +294727,302302 +3207,3207 +609,32114 +62811,62811 +75445,75445 +87104,340829 +281307,281307 +10742,10742 +280281,280281 +14599,14599 +258126,258126 +348498,348498 +133337,32441 +22080,22080 +319291,319291 +345126,345126 +6333,6333 +119856,119856 +163982,163982 +389060,389060 +280736,280736 +133358,133358 +191120,191120 +23488,23488 +337809,337809 +18950,18950 +34216,34216 +243761,243761 +88082,88082 +285880,285880 +92957,92957 +198698,198698 +374836,374836 +243767,243767 +4710,4710 +18697,18697 +36764,36764 +162679,162679 +222580,222580 +19379,19379 +19648,19648 +230767,230767 +24778,24778 +35333,35333 +373269,373269 +150097,150097 +230910,230910 +352434,352434 +1654,1654 +236276,236276 +12226,12226 +6553,6553 +56257,56257 +34296,34296 +89977,352625 +401012,401012 +7380,7380 +6134,6134 +319292,319292 +80972,80972 +62565,62565 +391768,391768 +17362,17362 +32354,32354 +19547,19547 +265677,265677 +331226,331226 +39529,39529 +424889,424889 +26439,26439 +174381,174381 +33459,33459 +145632,145632 +13539,13539 +306811,306811 +189061,189061 +337614,337614 +183740,183740 +281521,281521 +158134,158134 +105153,105153 +171412,171412 +179702,179702 +345632,313543 +319400,319400 +6004,6004 +95127,95127 +22318,22318 +35401,35401 +9703,9703 +6934,6934 +4354,4354 +192212,177843 +7261,7261 +10636,10636 +37632,37632 +143040,143040 +178581,178581 +119502,119502 +330134,330134 +216557,248702 +202624,202624 +17004,17004 +123679,123679 +6780,6780 +58192,58192 +358260,265912 +32008,32008 +11768,11768 +406102,406102 +21708,21708 +60657,60657 +122944,122944 +75353,75353 +125647,125647 +337487,337487 +18136,356042 +312502,312502 +269646,269646 +253855,253855 +5067,5067 +124395,124395 +2420,2420 +123495,123495 +375853,375853 +758,758 +421376,421376 +21057,21057 +265777,265777 +431614,431614 +30765,3937 +256372,256372 +264379,264379 +137834,42783 +13026,30660 +95970,95970 +31026,31026 +433427,433427 +302364,302364 +38322,463 +96955,96955 +19050,19050 +6413,6413 +259966,259966 +27594,27594 +176630,338967 +131033,131033 +81437,81437 +135813,135813 +96291,96291 +294455,261157 +193448,193448 +286785,286785 +380706,380706 +9739,9739 +140961,140961 +7711,7711 +225270,225270 +386475,386475 +7664,7664 +359008,359008 +179887,179887 +157979,157979 +9159,9159 +3788,3788 +5266,5266 +19749,19749 +7604,7604 +348517,348517 +1407,1407 +285540,285540 +16247,16247 +102340,102340 +419382,245751 +15431,15431 +183050,183050 +42574,42574 +388522,324590 +184449,184449 +386956,386956 +28437,28437 +100214,100214 +28085,28085 +62277,62277 +250398,250398 +429758,429758 +153196,153196 +214951,214951 +240189,240189 +41896,41896 +2935,42227 +166902,166902 +25872,25872 +3437,3437 +244781,244781 +370770,370770 +14929,14929 +40054,40054 +130839,130839 +33709,33709 +348970,348970 +326664,326664 +173100,173100 +11483,11483 +268948,268948 +8632,8632 +10967,10967 +252649,252649 +132595,132595 +187201,187201 +26996,26996 +223948,223948 +54700,54700 +20272,20272 +43871,43871 +24795,24795 +71972,71972 +19821,19821 +130955,329727 +406179,411421 +221344,1380 +337572,337572 +429465,429465 +235285,235285 +32200,32200 +424118,424118 +112358,112358 +428580,428580 +414308,414308 +421968,32546 +291061,291061 +405540,405540 +176156,176156 +194791,194791 +421409,421409 +355143,355143 +41277,41277 +200190,200190 +364102,364102 +406052,406052 +413398,413398 +27456,27456 +20911,20911 +357953,357953 +329009,329009 +361562,361562 +115866,115866 +346803,346803 +365431,300229 +62550,62550 +23502,23502 +144071,144071 +256670,256670 +314076,314076 +308688,308688 +132234,132234 +369113,369113 +289475,289475 +426448,426448 +421484,421484 +14716,14716 +97027,97027 +243280,243280 +430474,430474 +261592,240651 +323120,323120 +203867,203867 +187655,187655 +387149,387149 +256414,256414 +207447,207447 +430769,430769 +341412,341412 +96012,96012 +185860,185860 +371306,371306 +419916,419916 +178893,178893 +111514,111514 +431311,431311 +17944,17944 +275320,275320 +425248,270638 +428288,428288 +421044,421044 +421444,421444 +203213,156118 +426023,426023 +428622,428622 +315958,315958 +322854,322854 +332991,332991 +424446,424446 +401415,401415 +25997,25997 +263231,263231 +192005,192005 +322007,322007 +286895,286895 +254741,254741 +169070,169070 +393963,393963 +368447,368447 +420066,420066 +393898,393898 +279822,279822 +416809,416809 +246078,246078 +236968,236968 +256089,256089 +255043,255043 +63352,63352 +95051,95051 +417358,417358 +391226,391226 +432218,326175 +421271,421271 +264971,264971 +357186,1513 +370848,370848 +330127,330127 +316497,316497 +364398,364398 +258590,258590 +343609,343609 +434331,434331 +406090,406090 +376165,270638 +301246,301246 +149346,149346 +376982,376982 +352294,352294 +363502,363502 +393700,393700 +341287,341287 +206537,206537 +309935,309935 +205669,9782 +331704,331704 +353910,353910 +419641,419641 +110284,110284 +420758,420758 +350784,350784 +426438,426438 +25406,25406 +426491,426491 +377294,377294 +8306,8306 +346420,346420 +419357,419357 +221078,221078 +374366,374366 +231078,231078 +378564,378564 +412188,412188 +406162,406162 +378051,378051 +373969,373969 +280601,280601 +419097,419097 +373243,373243 +286324,286324 +268682,268682 +265151,265151 +362610,362610 +425037,425037 +264413,264413 +421269,421269 +117546,117546 +217377,217377 +242056,242056 +392076,392076 +261171,261171 +262560,262560 +296996,296996 +424615,424615 +420312,420312 +254723,254723 +8525,8525 +411265,411265 +270434,270434 +229849,229849 +220785,220785 +289622,289622 +429651,429651 +72973,72973 +385993,385993 +286315,286315 +414149,414149 +202891,202891 +36169,36169 +341472,341472 +59984,59984 +426651,162435 +22552,22552 +215923,215923 +415975,415975 +253643,253643 +402687,402687 +326172,326172 +218976,218976 +324423,324423 +427439,427439 +429855,299 +148910,148910 +144662,144662 +267147,267147 +414647,47722 +294619,294619 +361754,361754 +421572,421572 +124933,124933 +394141,394141 +307653,307678 +178519,178519 +203436,203436 +322542,322542 +61437,61437 +42677,42677 +294530,294530 +403746,403746 +375243,375243 +274437,274437 +382691,382691 +211387,211387 +28878,28878 +396420,396420 +160008,160008 +219483,219483 +295534,295534 +207386,207386 +419333,419333 +421370,421370 +268677,268677 +298453,298453 +422941,422941 +64293,64293 +348501,348501 +7781,7781 +321094,321094 +8163,8163 +274448,274448 +402874,402874 +163585,163585 +422384,422384 +408129,408129 +201278,2574 +432520,432520 +30163,30163 +351047,351047 +316052,316052 +179667,179667 +179655,179655 +432078,432078 +418036,418036 +221190,221190 +255660,255660 +420757,669 +339705,339705 +143312,143312 +388236,388236 +401700,401700 +430404,430404 +389124,389124 +85786,85786 +332652,332652 +359328,359328 +352554,352554 +224634,224634 +39700,39700 +286319,286319 +192739,184011 +364352,364352 +400168,400168 +125146,125146 +189303,189303 +340378,340378 +405534,405534 +124301,124301 +352178,352178 +328174,328174 +426026,426026 +335843,335843 +336086,336086 +419096,419096 +250524,250524 +426499,426499 +417424,417424 +415874,415874 +406461,406461 +201018,201018 +182401,182401 +349374,349374 +37227,37227 +296158,296158 +148758,148758 +319426,319426 +379030,379030 +38124,38124 +404931,404931 +393668,393668 +289329,289329 +428752,428752 +418101,418101 +403840,403840 +104142,104142 +192541,192541 +365668,365668 +418102,418102 +422362,422362 +421442,421442 +8099,8099 +427629,427629 +334385,334385 +174308,174308 +421120,421120 +171949,171949 +337075,463 +316965,316965 +289936,289936 +413703,413703 +201514,201514 +316498,316498 +265346,265346 +172303,172303 +318395,318395 +161884,161884 +425121,425121 +282724,282724 +247250,247250 +59884,59884 +431256,431256 +322557,322557 +425717,425717 +308988,308988 +330468,330468 +126900,9391 +360509,360509 +318398,318398 +278746,278746 +429699,429699 +424511,424511 +62548,62548 +395319,395319 +343280,343280 +430026,430026 +184529,184529 +308421,308421 +109275,109275 +375334,375334 +227491,227491 +426322,190400 +427717,427717 +369597,369597 +307655,307678 +244598,244598 +321154,321154 +305560,305560 +176910,176910 +399942,399942 +403645,403645 +228974,228974 +332577,332577 +420130,420130 +387480,387480 +313788,313788 +307922,307922 +71773,71773 +359102,359102 +338799,338799 +328176,328176 +430969,430969 +38115,38115 +158761,158761 +168111,244991 +397683,397683 +410435,410435 +24195,24195 +348061,348061 +282453,282453 +137519,137519 +321386,321386 +386248,386248 +419708,193949 +8445,8445 +388710,388710 +332562,332562 +222204,222204 +200095,200095 +349550,349550 +334812,334812 +425978,425978 +99885,99885 +346060,346060 +297912,297912 +7890,7890 +252586,252586 +340873,340873 +380342,380342 +276717,276717 +415920,415920 +301945,301945 +324864,324864 +410126,410126 +198892,198892 +343226,343226 +331302,331302 +344233,344233 +252790,252790 +146763,146763 +381578,381578 +213646,213646 +199604,199604 +420232,420232 +434568,434568 +421532,421532 +338475,338475 +41951,41951 +422721,422721 +307220,307220 +431016,431016 +353460,353460 +373796,373796 +311830,311830 +326657,326657 +268334,268334 +407551,407551 +225051,225051 +242704,242704 +39459,39459 +394292,394292 +323394,323394 +373006,373006 +246358,246358 +375901,375901 +314239,314239 +433076,433076 +351736,351736 +353649,353649 +299073,18477 +276231,276231 +382105,382105 +7904,7904 +378927,378927 +286090,286090 +425731,425731 +273622,273622 +422750,422750 +352345,352345 +218361,218361 +341288,341288 +280715,280715 +340881,340881 +423901,423901 +317360,317360 +357036,357036 +425708,425708 +406399,406399 +152976,152976 +242661,242661 +368575,368575 +419108,419108 +428480,428480 +130434,130434 +406887,406887 +387157,387157 +276741,276741 +415743,415743 +269107,269107 +359045,359045 +37825,37825 +360357,360357 +337811,337811 +368425,368425 +402536,402536 +193091,193091 +342186,342186 +352822,352822 +282817,282817 +289339,289339 +406485,406485 +363704,363704 +388985,388985 +402028,402028 +344539,344539 +432940,432940 +339368,339368 +386059,386059 +408835,408835 +205689,205689 +31966,31966 +40079,148758 +62508,62508 +214127,214127 +311049,311049 +225846,225846 +434319,434319 +367570,367570 +323356,323356 +285161,285161 +323240,323240 +418483,418483 +301214,301214 +431368,431368 +299098,299098 +431853,431853 +158807,158807 +426154,426154 +275875,275875 +354563,354563 +197514,197514 +219030,219030 +244891,244891 +238662,238662 +254126,254126 +297023,297023 +226493,226493 +138620,138620 +382062,382062 +419684,419684 +327264,327264 +360564,360564 +194631,194631 +26973,26973 +375455,375455 +288540,288540 +262582,262582 +307675,307678 +362097,362097 +263000,263000 +21721,21721 +317062,317062 +37827,37827 +320474,320474 +379180,379180 +24769,24769 +433656,433656 +183414,183414 +132664,132664 +419093,419093 +431163,431163 +410351,410351 +331508,331508 +206536,206536 +385768,385768 +319940,319940 +273932,273932 +327303,327303 +274209,274209 +395403,395403 +253296,252992 +386010,386010 +196944,196944 +209260,209260 +412543,412543 +134818,134818 +429369,429369 +285109,285109 +388573,388573 +400721,400721 +331152,74136 +251720,251720 +307343,307343 +432463,432463 +369378,333472 +324131,324131 +433447,433447 +253173,253173 +322558,322558 +413081,413081 +269955,269955 +178639,178639 +326271,326271 +422533,422533 +337816,337816 +175292,175292 +131509,131509 +299228,299228 +103062,103062 +311486,311486 +367867,367867 +164953,164954 +261372,261372 +8303,8303 +71994,71994 +426522,426522 +327923,327923 +414848,414848 +361927,361927 +425723,425723 +362686,362686 +345609,345609 +340447,340447 +228575,228575 +432086,432086 +8302,8303 +424617,424617 +337818,337818 +327892,327892 +405695,405695 +21833,21833 +321100,321100 +400749,400749 +351044,351044 +135432,135432 +187082,187082 +417328,417328 +248207,248207 +261955,261955 +429671,429671 +334337,334337 +265856,265856 +240870,143761 +383504,383504 +229542,229542 +68137,68137 +391097,391097 +373921,373921 +353909,353909 +363933,363933 +428542,428542 +283321,283321 +198536,198536 +231709,231709 +432974,432974 +421119,421119 +184776,184776 +429670,429670 +380242,380242 +216265,216265 +318502,318502 +337821,337821 +256496,256496 +429860,429860 +388823,388823 +326978,463 +305993,305993 +171377,171377 +322726,322726 +8141,8141 +69280,69280 +433975,433975 +412565,412565 +183410,184776 +420476,420476 +305946,305946 +430633,430633 +343577,343577 +240679,240679 +421189,421189 +415352,415352 +287280,287280 +365129,365129 +97863,97863 +424569,424569 +339487,339487 +405070,405070 +435081,435081 +385684,385684 +374988,374988 +178415,178415 +429866,429866 +321872,321872 +329010,329010 +340814,340814 +330600,330600 +421001,421001 +122166,122166 +172691,172691 +318357,318357 +326397,326397 +13572,13572 +218177,218177 +237361,237361 +28390,28390 +363058,363058 +272686,272686 +88182,88182 +423931,423931 +40121,40121 +307432,307432 +380149,380149 +418533,418533 +252326,252326 +351731,351731 +217388,217388 +301470,301470 +423311,423311 +351255,351255 +381490,381490 +434871,388459 +129739,129739 +431453,431453 +68346,68346 +342592,342592 +248258,248258 +311305,311305 +419466,419466 +425095,425095 +417469,417469 +236855,236855 +158112,158112 +421355,421442 +414501,414501 +390685,390685 +428589,182351 +129098,129098 +301468,301468 +422555,422555 +141770,141770 +176209,176209 +318292,318292 +36259,36259 +374904,374904 +310847,310847 +419225,419225 +432666,432666 +428539,428539 +207579,207579 +349729,349729 +151270,151270 +395815,395815 +303560,303560 +389115,389115 +136003,136003 +206539,206539 +286037,286037 +95124,95124 +160859,160859 +316302,316302 +322143,322143 +209086,209086 +347700,347700 +400718,400718 +354969,354969 +360217,360217 +263422,263422 +428560,428560 +296295,296295 +70733,70733 +318387,318387 +410704,410704 +415741,415741 +178092,178092 +419275,419275 +219912,219912 +369958,369958 +287324,287324 +288285,288285 +202791,202791 +318061,318061 +413106,413106 +415690,415690 +317289,317289 +429774,2922 +32111,32111 +228167,228167 +360346,360346 +306420,306420 +430926,430926 +219422,219422 +152634,152634 +107924,107924 +426647,426647 +329123,329123 +431367,431367 +136228,136228 +302660,302660 +292986,292986 +376169,270638 +258243,258243 +244947,244947 +324066,324066 +420575,420575 +257275,257275 +434170,434170 +431794,431794 +286325,286325 +385625,385625 +163646,163646 +413572,413572 +432014,432014 +345145,345145 +405081,405081 +7686,7686 +304812,304812 +294998,294998 +237534,237534 +183699,183699 +336752,336752 +214034,214034 +423592,423592 +420186,420186 +412579,412579 +278198,278198 +7853,7853 +381084,381084 +177136,177136 +349945,349945 +270729,270729 +300586,300586 +388963,388963 +26749,26749 +69877,69877 +276055,276055 +394697,394697 +360511,360511 +431405,431405 +236872,236872 +243544,243544 +401364,401364 +319428,319428 +410592,410592 +270449,270449 +214967,214967 +140001,140001 +285307,285307 +328613,328613 +381761,381761 +422370,421532 +418709,418709 +227227,227227 +195094,195094 +117781,117781 +431550,431550 +304484,304484 +270224,270224 +218841,218841 +184056,184056 +178605,178605 +380060,380060 +164947,164954 +143746,143746 +432475,432475 +319815,319815 +369520,369520 +181151,184776 +100014,100014 +178602,178602 +380767,380767 +359454,359454 +323572,323572 +226602,226602 +34270,34270 +346297,346297 +433126,433126 +412636,412636 +407307,407307 +305576,305576 +415214,414766 +421967,421967 +302044,302044 +14877,14877 +7893,7893 +422637,422637 +382018,382018 +28558,28558 +422105,422105 +223678,223678 +288355,288355 +208963,208963 +343961,343961 +158483,158483 +408847,408847 +7595,7595 +389596,389596 +328610,328610 +297815,297815 +410474,312459 +287099,287099 +99477,99477 +312617,312617 +295102,295102 +422417,422417 +415898,415898 +253536,253536 +251553,251553 +421011,421011 +150334,150334 +416589,416589 +40263,40263 +305252,305252 +407481,338766 +397398,397398 +402027,402027 +310806,310806 +241529,241529 +43294,43294 +358200,358200 +132586,132586 +286608,286608 +421467,421467 +341428,341428 +86449,86449 +297415,297415 +32893,32893 +112799,112799 +424357,424357 +166197,166197 +311544,311544 +393886,393886 +26062,26062 +169693,169693 +429768,386850 +427332,427332 +85824,85824 +297800,297800 +433015,433015 +316374,316374 +389196,389196 +316643,316643 +299124,299124 +371550,371550 +287570,287570 +33121,33121 +254411,254411 +36576,36576 +422158,422158 +386138,386138 +275826,275826 +93060,93060 +85553,85553 +351741,351741 +334985,334985 +286347,286347 +316638,316638 +65096,65096 +351400,351400 +364099,364099 +342853,342853 +392398,392398 +317357,317357 +194755,19285 +433294,433294 +413956,413956 +187089,187089 +117054,117054 +428259,428259 +318138,318138 +426412,426412 +271622,271622 +256836,256836 +307658,307678 +366623,366623 +394299,394299 +174692,174692 +426843,2165 +424847,424847 +369674,369674 +346061,346061 +141936,141936 +118499,118499 +382778,382778 +24614,24614 +319242,319242 +353001,353001 +297979,297979 +220549,220549 +434858,434858 +354547,354547 +323868,323868 +123373,123373 +361775,361775 +29212,29212 +357709,326136 +406707,406707 +338068,338068 +366394,366394 +353856,353856 +433658,367710 +328180,328180 +319743,319743 +222203,222203 +276480,276480 +434569,434569 +343595,343595 +425592,425592 +137749,137749 +408881,408881 +169226,169226 +205272,205272 +177117,179966 +388687,388687 +378885,378885 +284986,284986 +24731,24731 +195292,195292 +119499,119499 +378073,378073 +59987,59987 +371933,371933 +9684,9684 +8244,8244 +298153,298153 +304373,304373 +172941,172941 +428194,428194 +428505,428505 +248971,248971 +314051,314051 +354933,354933 +198199,198199 +319681,319681 +428404,428404 +332053,332053 +433901,433901 +177123,308688 +404521,404521 +362022,362022 +268679,268679 +404816,404816 +279264,279264 +304404,304404 +247789,247789 +370917,370917 +37409,37409 +129738,129738 +349394,349394 +138453,138453 +283245,283245 +403652,403652 +369432,369432 +353878,353878 +376379,376379 +383694,383694 +421152,29913 +278472,278472 +331344,331344 +429352,429352 +341272,341272 +405859,405859 +432235,194517 +216077,216077 +431856,431856 +125709,125709 +295724,295724 +428266,428266 +266616,266616 +400714,400714 +419065,388663 +20356,20356 +317602,317602 +309572,309572 +421276,421276 +370317,370317 +431406,431406 +116016,116016 +378086,378086 +352957,352957 +192003,192005 +184301,184301 +40647,40647 +184052,184052 +251199,251199 +355080,355080 +227092,227092 +14680,14680 +358140,358200 +417602,400788 +429374,429374 +377471,377471 +366382,366382 +224128,224128 +108884,108884 +307069,307069 +333139,333139 +17261,17261 +155812,155812 +406000,406000 +292523,292523 +32588,32588 +433049,433049 +227321,227321 +319687,319687 +434572,434572 +301251,301251 +295654,295654 +341341,341341 +340148,340148 +338406,338406 +427623,427623 +285350,285350 +433863,433863 +356929,356929 +426909,426909 +431781,431781 +222005,222005 +146216,10230 +284085,284085 +247786,247786 +303803,303803 +328173,328173 +340941,340941 +225178,225178 +33913,33913 +400372,400372 +305476,305476 +431447,431447 +202011,202011 +7597,7597 +309700,309700 +322483,322483 +344588,344588 +414309,414309 +382180,382180 +413490,413490 +418143,418143 +382553,382553 +321865,321865 +378530,378530 +276872,276872 +257815,257815 +424678,150998 +428369,428369 +330058,330058 +406053,406053 +325263,325263 +372885,372885 +62362,62362 +315512,132664 +336242,336242 +278408,278408 +423526,423526 +184775,184776 +419598,419598 +372738,372738 +426564,426564 +266594,266594 +419030,419030 +421151,421151 +182991,182991 +37335,37335 +244497,244497 +312998,312998 +335025,335025 +339143,339143 +362122,362122 +8072,8072 +265597,265597 +389811,373621 +429532,425335 +37271,37271 +311296,311296 +136253,136253 +417663,29913 +160388,160388 +286321,286321 +166996,166996 +369094,369094 +376167,270638 +303265,303265 +315915,315915 +378596,378596 +353980,353980 +210162,210162 +344280,344280 +286317,286317 +418086,418086 +164424,164424 +331439,331439 +297782,297782 +327366,327366 +87580,34024 +381190,381190 +253660,253660 +178490,178490 +193967,193967 +132281,132281 +41335,41335 +62330,62330 +119738,119738 +302712,302712 +416192,416192 +385281,385281 +419654,419654 +358134,358134 +430345,430345 +431731,431731 +339989,339989 +278237,278237 +349484,349484 +363553,363553 +429652,429652 +319364,319364 +434340,434340 +313296,313296 +8927,8927 +338853,338853 +428357,428357 +363582,363582 +111794,111794 +331244,331244 +422369,421532 +164651,164651 +424559,424559 +124649,124649 +422987,422987 +415080,415080 +388515,388515 +413504,413504 +195361,195361 +423501,423501 +273338,273338 +260227,260227 +36723,36723 +288906,288906 +416869,416869 +258689,258689 +307652,307678 +404736,422362 +220010,220010 +310537,310537 +322552,322552 +231281,231281 +139198,139198 +282434,282434 +335018,335018 +255593,255593 +432878,432878 +210021,210021 +240248,240248 +417745,417745 +285401,285401 +347084,347084 +426912,426912 +418037,418037 +225242,225242 +290859,291674 +319241,319241 +346599,346599 +341074,341074 +426755,426755 +341121,341121 +28921,28921 +324669,324669 +318313,318313 +326665,326665 +318230,318230 +311472,311472 +198129,198129 +28997,28997 +338150,338150 +406514,406514 +428114,428114 +430533,384213 +337304,337304 +291830,291830 +228035,228035 +431988,293348 +132782,132782 +421445,421445 +184023,184023 +339775,85204 +193421,193421 +222408,222408 +218947,218947 +426964,426964 +220132,220132 +412024,412024 +346844,346844 +249770,249770 +406124,406124 +307834,307834 +278387,278387 +344626,344626 +250540,250540 +379542,379542 +381718,381718 +246898,246898 +263700,263700 +311767,311767 +421465,421465 +30717,30717 +277940,277940 +421503,421503 +295903,295903 +410519,410519 +269443,269443 +311163,311163 +388908,388908 +172203,172691 +412085,412085 +229372,229372 +430951,430951 +319595,319595 +109911,109911 +309570,14018 +432210,432210 +432826,432826 +295462,295462 +308591,308591 +423306,423306 +286896,286895 +248849,248849 +324346,256232 +413253,413253 +375281,375281 +231952,231952 +319768,319768 +369050,380149 +24196,24196 +391828,391828 +433080,433080 +8073,8073 +364453,364453 +234110,234110 +389336,389336 +332834,332834 +167268,167268 +242806,85204 +411373,411373 +368940,368940 +428541,428541 +334709,334709 +402956,402956 +421136,421136 +359477,359477 +415022,415022 +68177,68177 +360512,360512 +430568,430568 +404557,404557 +324809,324809 +423669,423669 +414079,414079 +414307,414307 +127637,127637 +359971,359971 +306651,173486 +347769,347769 +275685,275685 +230848,244891 +360770,360770 +278946,278946 +296722,296722 +257788,257788 +343286,343286 +256550,256550 +273438,273438 +425060,425060 +401789,401789 +336852,336852 +407954,407954 +329088,329088 +378065,378065 +264272,264272 +386276,386276 +373300,373300 +14601,14601 +147035,147035 +277028,277028 +348431,348431 +237326,237326 +317396,317396 +431581,423305 +380513,380513 +140341,140341 +304947,304947 +283939,283939 +333573,333573 +347766,347766 +300326,300326 +11175,11175 +129088,129088 +399276,399276 +134166,134166 +421375,421375 +411301,411301 +256614,256614 +311035,311035 +358125,358125 +417751,417751 +79814,79814 +108882,108882 +426133,426133 +425828,425828 +319990,319990 +302586,302586 +320804,320804 +414277,414277 +264400,264400 +319957,319957 +420496,420496 +326772,326772 +255236,255236 +408816,408816 +310276,310276 +343009,343009 +289435,289435 +217445,217445 +420185,420185 +324559,1380 +309212,309212 +290797,290797 +327576,327576 +318394,318394 +242792,242792 +412382,412382 +351968,351968 +309623,309623 +432579,432579 +351984,351984 +368283,368283 +415982,415982 +170585,170585 +116098,116098 +399131,399131 +235295,235295 +402460,301710 +364552,364552 +177298,177298 +25506,25506 +340661,340661 +403367,403367 +322550,322550 +358477,358477 +298334,298334 +43419,43419 +8289,8289 +392943,392943 +226059,226059 +175160,175160 +330064,330064 +417921,417921 +431783,431783 +421796,421796 +334527,334527 +234014,234014 +362358,362358 +93793,93793 +336677,336677 +383606,383606 +266198,266198 +175390,175390 +397924,397924 +339853,339853 +418382,418382 +421644,29913 +86512,86512 +346976,346976 +311375,311375 +307663,307678 +269574,269574 +67831,67831 +304671,304671 +213010,213010 +332362,332362 +408818,408818 +111727,111727 +262502,262502 +7665,7665 +341175,341175 +261034,261034 +298111,301263 +289361,289361 +347430,347430 +433536,433536 +378014,378014 +426481,426481 +158400,158400 +369314,369314 +414344,414344 +199436,199436 +395088,395088 +248074,248074 +95767,95767 +339049,339049 +364494,364494 +346837,346837 +428338,428338 +97652,97652 +202304,202304 +434219,388236 +374829,374829 +27207,27207 +348280,308566 +285236,285236 +357070,357070 +388362,388362 +303247,303247 +299787,299786 +385567,385567 +29823,29823 +247111,247111 +298315,298315 +220238,220238 +127568,127568 +227189,227189 +41236,41236 +38436,38436 +387842,387842 +200117,200117 +111039,111039 +281720,281720 +385433,385433 +396539,396539 +355852,355852 +326932,326932 +431670,431670 +212627,212627 +183007,184776 +8340,8340 +418247,713 +59124,59124 +42376,42376 +248820,248820 +232147,232147 +200425,200425 +262103,262103 +407508,407508 +338576,338576 +179254,169226 +256837,256837 +313854,313854 +258033,258033 +282649,282649 +400896,400896 +161419,161419 +407553,407553 +252121,252121 +338071,338071 +41292,41292 +356121,356121 +308410,308410 +151597,151597 +325833,325833 +421842,421842 +423773,423773 +164950,164954 +346807,346807 +313429,313429 +342982,343009 +276168,276168 +66583,66583 +7699,7699 +208619,208619 +226470,226470 +216902,216902 +306741,7784 +318239,318239 +279483,279483 +407009,407009 +307449,307449 +367382,1513 +399640,399640 +428763,428763 +366971,366971 +209501,209501 +253489,253489 +424558,424558 +420316,420316 +348691,348691 +162280,162280 +422890,422890 +337089,337089 +198721,198721 +193852,193852 +228453,228453 +320300,320300 +163873,163873 +147503,147503 +202673,202673 +64224,64224 +417797,29913 +359865,359865 +249098,249098 +433673,433673 +432561,432561 +426350,426350 +346158,346158 +64313,64313 +351282,351282 +134960,134960 +67313,67313 +331507,331507 +425593,425593 +253931,253931 +166120,166120 +163253,163253 +303279,303279 +93015,93015 +406511,406511 +119007,119007 +422613,422613 +23042,23042 +155733,155733 +392084,392084 +421954,421954 +349571,349571 +366370,366370 +247559,247559 +149826,149826 +40358,40358 +387573,387573 +389740,389740 +62262,62262 +315991,315991 +289799,289799 +425094,425094 +159457,159457 +256616,256616 +256294,256294 +188179,188179 +400672,400672 +426458,426458 +206499,206499 +424508,424508 +212648,212648 +434341,434341 +320245,320245 +154684,154684 +308151,308151 +330242,330242 +430445,430445 +218616,218616 +373152,373152 +28901,28901 +405267,405267 +172745,172691 +311403,311403 +194104,194104 +213314,213314 +241536,241536 +427625,427625 +174011,174011 +393420,393420 +433661,433661 +153750,153750 +417622,417622 +322139,322139 +155990,155990 +124830,124830 +313613,313613 +386965,386965 +362691,340255 +206538,206538 +405874,405874 +187309,187309 +301532,301532 +302581,302581 +73206,73206 +347514,347514 +225886,225886 +88726,88726 +425092,425092 +180390,180390 +328337,328337 +302311,302311 +270503,270503 +273966,273966 +223769,223769 +346168,346168 +402214,402214 +418383,418383 +286497,286497 +350126,350126 +416012,416012 +342533,342533 +211077,211077 +417682,417682 +402561,402561 +159766,159766 +269254,269254 +423716,423716 +432786,432878 +315513,315513 +192007,192005 +296593,296593 +270058,270058 +180467,180467 +401876,401876 +411322,411322 +302596,302596 +347654,347654 +265438,265438 +281482,281482 +418796,418796 +188809,188809 +425044,425044 +248143,248143 +220589,220589 +315259,315259 +23530,23530 +354548,354548 +416783,416783 +278251,278251 +425494,425494 +299143,299143 +322584,322584 +8240,8240 +346287,346287 +330422,330422 +281110,281110 +418008,418008 +272596,272596 +388406,388406 +345866,345866 +262741,262741 +339359,339359 +281117,281117 +332768,332768 +230411,230411 +401470,401470 +412868,412868 +70136,70136 +137655,137655 +143951,143951 +315314,315314 +304371,304371 +181009,181009 +418152,418152 +277022,277022 +413131,413131 +11516,11516 +251728,251728 +130554,130554 +229001,229001 +402016,402016 +283421,283421 +393646,393646 +342117,342117 +318153,318153 +330676,330676 +337819,337819 +332758,332758 +94519,94519 +412688,412688 +374906,374906 +367484,367484 +55654,55654 +417174,417174 +257642,257642 +372029,372029 +365674,365674 +196352,196352 +232145,232145 +306984,306984 +343172,343172 +286323,286323 +398370,398370 +425164,425164 +428284,428284 +351369,276629 +371147,371148 +248902,248902 +179506,179506 +99037,99037 +332761,332761 +432441,432441 +170272,170272 +311307,311307 +371237,371237 +433370,433370 +357998,357998 +227190,227190 +330065,330065 +426135,426135 +208620,208620 +432262,432262 +326973,326973 +245681,245681 +362215,193096 +422803,422803 +244925,244925 +234426,234426 +400533,400533 +232588,232588 +357842,357842 +282271,282271 +396728,396728 +290863,290863 +110386,110386 +220012,220012 +36419,36419 +167428,167428 +420474,420474 +300587,300587 +346986,346986 +274910,274910 +434299,434299 +166546,166546 +229714,229714 +394788,394788 +331333,331333 +371488,371488 +155581,155581 +340024,340024 +429439,429439 +421123,421123 +430950,430950 +407550,407550 +351583,351583 +408028,408028 +421371,421371 +404483,404483 +13462,13462 +144170,144170 +36105,36105 +226051,226051 +320286,320286 +182076,182076 +46385,46385 +228888,228888 +426622,426622 +303998,303998 +388965,388965 +29475,29475 +333997,333997 +254380,254380 +142520,142520 +37712,37712 +427257,427257 +293155,293155 +304257,304257 +424158,424158 +291506,291506 +28076,28076 +243131,243131 +364872,364872 +258518,258518 +301498,301498 +406521,406521 +322547,322547 +269142,269142 +22470,22470 +333138,333138 +238771,238771 +335138,335138 +164946,164954 +429438,429438 +434123,434123 +335980,335980 +376166,270638 +308428,308428 +326961,326961 +388127,388127 +386058,386058 +40535,40535 +416365,416365 +434832,434832 +174670,174670 +398754,398754 +394123,394123 +329991,329991 +344540,344540 +360489,360489 +424410,303503 +264085,264085 +321617,321617 +202472,202472 +321155,321155 +160007,160007 +404270,404270 +251404,251404 +318149,318149 +322544,322544 +415637,415637 +19061,19061 +351812,351812 +378600,378600 +7671,7671 +429865,429865 +7701,7701 +370131,370131 +19215,19215 +255971,255971 +123115,123115 +423672,406118 +110301,110301 +321264,321264 +313737,313737 +316481,316481 +235419,235419 +314517,314517 +253169,253169 +434857,434857 +210209,210209 +344950,344950 +285583,285583 +296737,310847 +420032,420032 +282823,282823 +109037,109037 +58813,58813 +383877,383877 +284807,284807 +430479,430479 +312571,312571 +260426,260426 +342278,342278 +164654,164654 +335634,335634 +320720,320720 +421873,330592 +341535,341535 +62235,62235 +301522,301522 +129442,1549 +322053,322053 +150331,150331 +380435,380435 +307293,307293 +263063,263063 +183286,183286 +300159,300159 +423671,406118 +33396,33396 +284741,284741 +344545,344545 +429129,429129 +367482,367482 +298567,298567 +428717,428717 +168860,168860 +290700,290700 +258677,258677 +231597,231597 +165502,165502 +154690,154690 +362473,362473 +403211,403211 +432890,432890 +208465,208465 +341544,341544 +321716,321716 +330599,330599 +433532,433532 +106824,106824 +64660,64660 +82298,269975 +248209,248209 +186841,308688 +29244,29244 +26278,26278 +420275,420275 +428162,428162 +423079,423079 +434852,434852 +419359,419359 +42998,42998 +397430,397430 +329617,329617 +431175,101785 +325983,325983 +302783,302783 +62558,62558 +370034,370034 +245022,245022 +196993,196993 +433984,433984 +374172,374172 +357183,357183 +138558,138558 +431449,431449 +351896,171964 +419450,419450 +342600,342600 +229835,229835 +290977,290977 +100094,100094 +421687,421687 +27932,27932 +25018,25018 +429709,429709 +345995,345995 +339984,339984 +400126,400126 +421400,421400 +402077,319060 +307029,307029 +381871,381871 +344235,344235 +319926,319926 +422234,422234 +46423,46423 +321869,321869 +195685,50381 +174154,174154 +424402,424402 +421105,463 +405482,405482 +31974,31974 +422386,422386 +424141,424141 +54444,54444 +407191,407191 +309969,309969 +133137,133137 +3505,3505 +66836,66836 +365486,365486 +3821,3821 +357541,357541 +160612,160612 +270952,270952 +85809,85809 +100647,100647 +431493,431493 +40356,40356 +198053,198053 +63114,63114 +421104,421104 +68086,68086 +288450,288450 +39335,39335 +339857,339857 +167426,167426 +255343,255343 +41127,41127 +294173,294173 +155709,155709 +27434,27434 +394186,394186 +172832,172832 +90577,90577 +108128,108128 +399439,399439 +377508,204836 +287035,287035 +92216,42101 +293262,17308 +243706,243706 +383093,383093 +164945,164954 +118935,118935 +151039,151039 +45672,45672 +370190,370190 +306836,306836 +338593,338593 +373575,373575 +408277,408277 +302060,302060 +31724,31724 +394679,394679 +377339,377339 +158536,158536 +122689,122689 +135671,135671 +400651,400651 +160609,160612 +276038,276038 +294624,294624 +329825,329825 +377712,377712 +56941,56941 +31717,31717 +357265,357265 +75599,75599 +55864,55864 +38580,38580 +324197,324197 +398050,398050 +34112,34112 +167882,167882 +409780,409780 +426487,426487 +286412,286412 +316916,316916 +24700,24700 +324216,324216 +29388,29388 +36023,36023 +26969,26969 +6310,6310 +32063,32063 +148864,148864 +197874,197874 +401188,2472 +426798,426798 +233407,233407 +380010,380010 +305036,305036 +372202,341823 +65823,65823 +313952,295483 +373978,373978 +132411,132411 +26905,26905 +316111,316111 +34036,34036 +16706,16706 +360013,360013 +145834,145834 +417522,321654 +320491,320491 +420418,420418 +37160,37160 +188906,188906 +248836,248836 +409781,409781 +25875,25875 +335688,335688 +374408,374408 +21390,21390 +158308,158308 +324220,268225 +25162,25162 +362676,362676 +41701,41701 +207387,207387 +123846,123846 +109003,109003 +151646,151646 +360936,360936 +323184,323184 +41589,41589 +27612,27612 +39842,39842 +89750,89750 +215037,215037 +164162,164162 +369396,369396 +186513,186513 +191112,191112 +140038,140038 +409116,409116 +175396,175396 +333156,333156 +21144,21144 +233264,233264 +321039,321039 +352391,352391 +374981,374981 +209690,193136 +366314,366314 +303202,303202 +135063,135063 +251990,251990 +254658,254658 +412438,412438 +29586,29586 +272985,272985 +146941,146941 +277942,277942 +158448,158448 +88802,88802 +32408,32408 +295446,295446 +50791,50791 +340810,340810 +343904,209624 +6815,2691 +28555,28555 +332611,332611 +17206,17206 +192445,192445 +153759,4656 +236740,236740 +27365,27365 +418351,418352 +383075,383075 +276756,276756 +88854,88854 +328971,328971 +16998,16998 +274946,274946 +76107,76107 +24719,24719 +164580,164580 +34028,34028 +263942,263942 +189182,189182 +37956,37956 +143636,22029 +326722,326722 +128598,128598 +302209,302209 +156073,156073 +354871,354871 +380036,380036 +406771,406771 +37768,37768 +432796,432796 +414078,414078 +356110,356110 +310501,310501 +160919,160919 +328235,328235 +12242,12242 +184093,184093 +16571,16571 +411613,411613 +66204,66204 +148140,148140 +429130,191189 +318241,318241 +7902,7902 +274534,274534 +433464,433464 +289238,289238 +36058,36058 +206032,206032 +363076,108088 +294771,67254 +216181,216181 +356306,356306 +400764,400764 +358813,358813 +334791,334791 +32686,32686 +15042,15042 +73277,73277 +394863,313543 +214669,214669 +9463,9463 +9301,9301 +207682,207682 +375431,375431 +102706,102706 +155439,155439 +173864,173864 +16082,16082 +26178,26178 +73047,73047 +100111,100111 +222379,222379 +253714,253714 +294513,294513 +236764,236764 +310969,310969 +187517,187517 +329779,257081 +351251,351251 +84907,84907 +33897,33897 +380922,380922 +172114,172114 +295981,295981 +300826,25546 +73259,73259 +160437,160437 +166396,166396 +190634,190634 +332493,332493 +35967,35967 +25138,25138 +16818,16818 +28451,12585 +361378,361378 +281255,281255 +291375,291375 +69290,69290 +118819,118819 +399805,399805 +283923,283923 +50002,50002 +231782,231782 +365656,365656 +280019,280019 +179526,179526 +106143,106143 +346802,346802 +274672,274672 +209925,209925 +400632,400632 +16280,16280 +314734,314734 +304601,304601 +14637,14637 +315437,315437 +37173,37173 +41001,41001 +340990,340990 +375986,375986 +81185,81185 +151563,151563 +310009,310009 +307156,307156 +136087,136087 +383528,383528 +380333,380333 +252498,252498 +333452,333452 +307513,307513 +159832,159832 +39507,39507 +325523,325523 +85191,85191 +13638,13638 +217886,217886 +209491,209491 +420088,420088 +169066,169066 +333182,333182 +146925,146925 +27303,27303 +33044,33044 +379850,379850 +179053,179053 +264332,264332 +38771,38771 +177355,177355 +219654,219654 +108877,108877 +353283,353283 +297542,32441 +317279,317279 +32762,32762 +51996,51996 +255256,7164 +153895,153895 +20377,20377 +161111,161111 +117829,117829 +136493,136493 +12284,12284 +320803,320803 +15688,15688 +311054,311054 +111748,111748 +238773,238773 +85229,85229 +30458,30458 +289985,289985 +179000,179000 +381131,381493 +314444,314444 +209475,209475 +38314,38314 +223113,223113 +184121,184121 +74194,74194 +171422,171422 +108883,108883 +7618,7618 +110824,110824 +89672,89672 +33819,33819 +163078,163078 +376902,376902 +171750,171750 +10992,10992 +367510,218025 +353586,353586 +94511,94511 +403902,403902 +415676,415676 +41063,41063 +83707,83707 +17632,17632 +149986,149986 +378534,169927 +16713,16713 +383720,383720 +17442,17442 +285388,204657 +6586,6586 +145881,7567 +298490,182229 +428796,428796 +387779,387779 +17891,17891 +333079,333079 +213685,213685 +104523,104523 +381481,381493 +108006,108006 +8532,8532 +136203,136203 +29394,29394 +427180,427180 +402872,402872 +42740,42740 +297212,297212 +15944,15944 +261345,261345 +329924,329924 +23906,23906 +263407,263407 +353158,353158 +406285,406285 +164988,164988 +8011,8011 +98102,99010 +176301,179931 +145716,145716 +33941,33941 +421707,421707 +53242,53242 +407764,407764 +351578,351578 +152264,152264 +295108,295108 +348941,348941 +217887,217886 +205743,205743 +135429,135429 +420274,420274 +249551,249551 +288774,288774 +306287,306287 +393341,393341 +354316,354316 +387178,387178 +83477,83477 +279771,279771 +243118,243118 +116823,116823 +36338,36338 +194737,194737 +107641,107641 +64795,64795 +333690,333690 +366358,366358 +333684,333684 +352136,352136 +302218,302218 +349119,349119 +156656,156656 +407457,407457 +210294,210294 +37782,37782 +93003,93003 +225032,225032 +424191,424191 +18133,18133 +371112,2944 +15467,15467 +29341,29341 +39769,39769 +19880,19880 +70924,70924 +24057,24057 +217806,217806 +14178,14178 +78562,78562 +391027,391027 +332380,332380 +26902,26902 +289245,289245 +387293,387293 +396073,297206 +386871,386871 +93068,93068 +1843,1843 +410099,410099 +125690,125690 +356613,356613 +69635,69635 +196167,196167 +235657,34884 +64376,64376 +14475,14475 +289557,289557 +8074,8074 +363794,363794 +370758,370758 +68498,68498 +330827,330827 +107162,107162 +213592,213592 +355337,355337 +285229,220988 +147928,147928 +243288,243288 +34594,34594 +32573,32573 +391010,391010 +32918,32918 +62406,62406 +298409,298409 +321599,283353 +406921,406921 +124064,124064 +233095,233095 +416687,416687 +37729,37729 +101550,101550 +124889,124889 +40592,40592 +327653,327653 +129376,129376 +25784,25784 +424484,424484 +296122,296122 +328678,328678 +238211,26233 +143184,12067 +363048,363048 +243336,243336 +2498,2498 +17381,17381 +130079,130079 +129643,129643 +220275,220275 +330290,330290 +188516,188516 +21268,21268 +21122,21122 +26681,26681 +401259,401259 +119436,119436 +9125,9125 +26356,26356 +351915,351915 +176483,176483 +396925,396925 +7801,7801 +26565,26565 +365198,365198 +321226,321226 +428847,428847 +26839,26839 +293210,293210 +28943,28943 +161711,161711 +25011,25011 +366918,366918 +114686,114686 +93390,93390 +15969,15969 +50612,50612 +178283,178283 +177711,177711 +61506,61506 +39776,39776 +22778,22778 +32061,32061 +361033,361033 +335651,335651 +3132,3132 +25415,25415 +7291,7291 +311037,311037 +13370,13370 +169872,169872 +12277,12277 +362323,362323 +151604,151604 +380503,380503 +356795,356795 +26012,26012 +157683,157683 +22647,22647 +32308,32308 +36676,36676 +208916,208916 +321036,321036 +55387,55387 +164250,164954 +9412,9412 +283650,283650 +25170,25170 +295409,295409 +294286,289951 +35093,35093 +21079,21079 +18918,18918 +433106,433106 +255986,255986 +378860,378860 +357319,357319 +13206,13206 +372576,372576 +301320,301320 +14512,14512 +388904,388904 +10987,10987 +60058,60058 +147366,147366 +113546,113546 +30597,30597 +22844,22844 +41553,41553 +42103,42103 +170977,170977 +159580,159580 +170679,170679 +390596,390596 +19846,19846 +362573,362573 +10314,10314 +146116,146116 +389499,389499 +386196,386196 +62862,62862 +376034,376034 +362677,362677 +329632,329632 +310104,266083 +263202,263202 +27191,27191 +278735,278735 +4702,4702 +103426,103426 +94489,94489 +291591,291591 +32542,32542 +19129,19129 +27985,5687 +8670,8670 +401107,401107 +303427,303427 +16565,16565 +6867,6867 +16228,16228 +32137,32137 +150273,104858 +295084,295084 +16853,16853 +212970,212970 +174970,174970 +29699,29699 +41420,41420 +269229,269229 +337443,337443 +363555,363555 +43594,43594 +205400,205400 +136367,136367 +13731,13731 +199403,148632 +343662,343662 +93570,93570 +373955,373955 +123451,123451 +225267,225267 +235441,212404 +300611,300611 +40551,40551 +330133,330133 +252044,252044 +388998,388998 +146214,146214 +279177,279177 +20622,20622 +29045,29045 +208006,208006 +16074,16074 +11979,11979 +238019,238019 +29820,29820 +9444,9444 +221083,221083 +234595,234595 +309955,309955 +139035,139035 +27896,27896 +23489,23489 +30755,30755 +133239,133239 +28045,28045 +40914,40914 +235690,235690 +290545,290545 +158894,43403 +23998,23998 +63814,63814 +241524,241524 +10312,10312 +14968,14968 +352188,352188 +518,518 +179789,179789 +88984,88984 +217184,66088 +170789,170789 +203035,203035 +14103,14103 +26307,26307 +280062,224992 +5954,5954 +360469,360469 +286609,286609 +16762,16762 +19119,164363 +206922,206922 +71820,71820 +33974,33974 +165369,165369 +57309,57309 +352781,352781 +23868,23868 +36031,36031 +14192,14192 +239967,239967 +40271,40271 +14723,14723 +20703,20703 +100643,100643 +13626,13626 +282209,282209 +125145,140995 +310687,310687 +6321,6321 +13695,13695 +27567,27567 +112932,112932 +12970,12970 +18235,18235 +197576,197576 +24979,24979 +228618,228618 +20282,20282 +155739,155739 +17551,17551 +7076,7076 +31224,31224 +22858,22858 +237898,237898 +43405,43405 +178019,178019 +154977,154977 +195708,177877 +41962,41962 +68602,68602 +237183,237183 +143384,143384 +82945,82945 +31492,31492 +295301,295301 +24739,14042 +22524,22524 +14797,14797 +17364,17364 +147276,147276 +75234,75234 +12240,12240 +15724,15724 +391341,391341 +34827,34827 +336120,354946 +6536,6536 +417359,417359 +109937,109937 +269614,178038 +60235,60235 +28549,28549 +184029,184029 +223162,86169 +40883,40883 +266553,526 +235905,258126 +17670,17670 +255299,255299 +32776,32776 +305098,305098 +167707,167707 +9245,17191 +99396,99396 +279589,279589 +15007,15007 +168335,168335 +1574,5295 +7696,7696 +25932,25932 +309972,309972 +307155,85256 +9178,9178 +40588,40588 +323322,323322 +6941,6941 +26236,26236 +11259,11259 +244949,244949 +174531,174531 +393353,393353 +21966,21966 +350216,410184 +15477,15477 +42777,463 +245516,322451 +20697,20697 +209557,209557 +426512,426512 +400571,391214 +245632,245632 +253612,253612 +22478,22478 +117001,117001 +25416,25416 +286332,286332 +394291,394291 +309563,309563 +20307,20307 +32806,32806 +348008,348008 +20532,14042 +22792,22792 +25734,25734 +31801,31801 +275890,275890 +89541,89541 +3290,3290 +140783,140783 +173808,173808 +181069,181069 +10850,10850 +146222,146222 +256507,256507 +347192,347192 +13970,13970 +12735,12735 +30694,30694 +51382,3818 +17805,17805 +12872,12872 +160440,160440 +309270,309270 +284075,284075 +189005,144733 +196358,196358 +8212,8212 +1057,1057 +3461,3461 +10078,10078 +8026,8026 +5626,5626 +16475,16475 +41487,41487 +27738,27738 +33430,33430 +68146,68146 +288859,288859 +21825,21825 +11936,11936 +165743,165743 +89548,89548 +123491,123491 +340158,340158 +13070,13070 +6936,6936 +40072,40072 +31820,31820 +19036,19036 +118699,91671 +168483,168483 +184383,64220 +25567,25567 +340377,340377 +157453,200609 +124271,124271 +8084,8084 +431042,21133 +402488,402488 +22437,22437 +381867,381867 +286775,204895 +286778,204895 +418338,418338 +25089,25089 +166530,166530 +434495,434495 +72596,72596 +43005,43005 +132413,132413 +377517,377517 +70648,70648 +410360,410360 +133850,133850 +158595,16355 +168627,168627 +25400,25400 +32141,32141 +147476,147476 +15162,5086 +2360,2360 +2926,2926 +154914,154914 +200936,200936 +218570,218570 +88900,88900 +248502,248502 +7421,7421 +118080,118080 +8581,8581 +371489,371489 +7493,7493 +52102,52102 +208118,208118 +383049,27654 +262202,204895 +286728,204895 +286779,204895 +268029,204895 +14343,14343 +21909,21909 +298158,298158 +251537,251537 +28511,28511 +406538,406538 +209756,209756 +21108,21108 +137149,137149 +278502,278502 +33238,33238 +169417,169417 +26872,26872 +43194,43194 +390290,390290 +357458,357458 +367964,367964 +141824,141824 +16019,16019 +39390,39390 +362958,362958 +124156,199149 +303988,303988 +251150,251150 +153121,153121 +149442,149442 +40606,40606 +1500,1500 +171774,171774 +91492,91492 +374727,374727 +7481,7481 +43040,43040 +223932,223932 +63944,63944 +498,498 +4283,4283 +315747,315747 +288240,204895 +286730,204895 +286777,204895 +343721,343721 +37463,37463 +143106,143106 +267086,267086 +98401,98401 +77460,77460 +35344,35344 +5000,5000 +105303,105303 +39510,39510 +229792,229792 +205888,205888 +41567,41567 +327562,327562 +206063,267565 +4138,4138 +109017,6830 +29565,29565 +145261,145261 +36799,36799 +8475,8475 +256605,256605 +312693,312693 +59613,59613 +38290,38290 +28498,28498 +337361,337361 +123049,123049 +220376,220376 +206505,206505 +395484,13293 +398967,265912 +301301,301301 +368714,368714 +6428,6428 +184938,184938 +50920,50920 +55881,55881 +377837,377837 +332756,332756 +203923,203923 +355921,253742 +130820,130820 +386953,386953 +225207,225207 +13917,5677 +131887,131887 +23260,23260 +234453,234453 +409501,409501 +24228,24228 +144334,144334 +381897,381897 +10578,10578 +400929,400929 +386019,386019 +7969,7969 +18620,18620 +368261,350469 +57702,57702 +156411,156411 +199797,204895 +25176,25176 +104902,104902 +370874,370874 +3272,3272 +206083,206083 +347029,347029 +1908,1908 +234316,234316 +56801,56801 +27139,27139 +156921,156921 +415737,415737 +21221,21221 +68945,68945 +146711,146711 +344228,344228 +124254,124254 +160621,160621 +180601,180601 +368126,368126 +118492,118492 +420585,420585 +258544,258544 +9984,9984 +222952,222952 +158077,158077 +30985,30985 +113515,113515 +4973,4973 +18024,18024 +284452,284452 +81841,81841 +24540,24540 +5872,5872 +7768,7768 +6863,6863 +166742,166742 +84407,84407 +85565,85565 +92304,92304 +430985,430985 +8344,8344 +30826,30826 +40537,463 +201971,201971 +11074,11074 +7259,7259 +30514,30514 +164249,164249 +229609,229609 +19114,19114 +239277,239277 +262099,262099 +234011,234011 +140271,121408 +332883,332883 +30385,30385 +409189,409189 +171892,171892 +146326,146326 +24039,24039 +286763,204895 +258286,258286 +24921,24921 +330092,330092 +21404,21404 +15995,15995 +308413,308413 +288243,204895 +411134,411134 +383751,383751 +30415,30415 +408828,251658 +322777,322777 +398768,398768 +404472,404472 +8034,8034 +40988,40988 +357824,357824 +26763,26763 +149971,149971 +221106,221106 +5246,5246 +432581,432581 +173534,173534 +208064,208064 +9015,9015 +41850,41850 +320584,320584 +320077,301007 +347751,347751 +356917,356917 +96956,96956 +176305,176305 +244624,244624 +59770,59770 +42019,42019 +274451,274451 +8054,8054 +324515,324515 +103527,103527 +246974,220382 +266734,182233 +153787,153787 +352982,352982 +27027,27027 +184521,184521 +85861,85861 +33700,33700 +406298,406298 +424322,424322 +268680,268680 +313638,313638 +146242,146242 +262405,262405 +18078,4341 +114211,114211 +331366,331366 +376249,376249 +25132,25132 +35036,35036 +130753,130753 +318541,318541 +265674,265674 +24835,24835 +278687,278687 +95374,95374 +28015,28015 +34488,34488 +81305,81305 +291884,291884 +247069,147537 +357459,357459 +132795,132795 +420253,420253 +433213,433213 +426604,426604 +321835,321835 +30984,30984 +112362,112362 +26181,26181 +378921,378921 +125873,125873 +27796,27796 +38550,3939 +399804,399804 +434146,17676 +184533,184533 +329426,329426 +97604,97604 +357322,357322 +423789,423789 +377699,377699 +297003,297003 +401941,284785 +314884,314884 +316365,316365 +348052,348052 +217836,217836 +153730,153730 +323537,323537 +11806,11806 +11676,11676 +30775,30775 +389813,389813 +371225,371225 +282839,282839 +359295,359295 +284663,176870 +33593,33593 +357181,357181 +145173,145173 +232954,232954 +89412,89412 +378487,378487 +147500,147500 +400037,400037 +153211,153211 +154966,154966 +426529,426529 +66523,66523 +188557,188557 +108729,108729 +321984,321984 +422202,422202 +325230,325230 +41450,41450 +307397,12129 +424581,424581 +30273,30273 +341152,341152 +382434,382434 +17418,17418 +188123,188123 +432528,432528 +153171,153171 +22636,22636 +33729,33729 +7789,7789 +414549,414549 +381501,381501 +143392,143392 +27274,27274 +402472,402472 +245529,245529 +254779,254779 +169999,169999 +375558,375558 +3180,3180 +348149,348149 +132227,132227 +195423,195423 +8390,8390 +390560,390560 +367631,367631 +13198,13198 +92049,92049 +375313,375313 +355318,355318 +17018,17018 +370957,370957 +35805,35805 +74331,74331 +84654,84654 +346075,379339 +315358,315358 +409856,409856 +339582,339359 +320025,320025 +21337,21337 +344876,344876 +129324,129324 +58811,58811 +399945,399945 +386032,386032 +155738,155738 +8776,8776 +56340,56340 +180820,135429 +301229,301229 +25389,25389 +23018,23018 +240182,240182 +339687,339687 +395294,395294 +261484,261484 +315320,315320 +229122,229122 +98104,98104 +401284,401284 +36503,36503 +33594,33594 +156428,156428 +43311,43311 +321831,321831 +361467,361467 +325520,325520 +334918,334918 +138900,138900 +63405,63405 +393617,393617 +210729,210729 +31805,31805 +26345,26345 +360905,360905 +167284,167284 +374115,374115 +381147,381147 +8235,8235 +72753,72753 +177454,177454 +24038,24038 +359862,359862 +321027,321027 +33718,33718 +424119,424119 +5087,5087 +33800,33800 +127456,127456 +28922,28922 +66893,66893 +151517,151517 +317692,317692 +17603,17603 +156609,156609 +428813,428813 +185342,185342 +37278,37278 +277300,277300 +7546,7546 +268838,268838 +252979,252979 +216743,216743 +287786,287786 +122575,122575 +219160,219160 +18226,18226 +413913,413913 +281155,281155 +154646,154646 +155149,155149 +310666,336189 +253361,253361 +175877,175877 +293977,293977 +420202,420202 +42699,42699 +370445,370445 +419805,419805 +146516,146516 +164926,164926 +221169,221169 +69379,69379 +247551,247551 +201835,201835 +374444,374444 +345146,345146 +173454,179529 +177453,177453 +343155,343155 +22622,22622 +345616,345598 +293523,293523 +43479,43479 +395501,395501 +218838,218838 +24819,24819 +198577,198577 +427520,427520 +178337,178337 +218786,218786 +400216,400216 +37852,37852 +7395,7395 +18074,18074 +199702,204895 +305882,11168 +58103,58103 +286357,286357 +227301,227301 +344396,382732 +156452,156452 +10058,10058 +392699,392698 +19205,19205 +19068,19068 +16095,230898 +385612,343071 +321934,321934 +171656,171656 +243565,243565 +190331,190331 +319047,319047 +298298,298298 +407466,407466 +8092,8092 +9904,9904 +297472,297472 +125992,125992 +36254,36254 +379609,379609 +17142,17142 +26793,26793 +264642,264642 +14894,14894 +375056,375056 +28486,28486 +134958,134958 +17325,17325 +34355,34355 +247622,247622 +6392,6392 +317640,317640 +428294,428294 +26836,26836 +274512,274512 +130518,130518 +402250,402250 +304664,304664 +31243,31243 +35186,35186 +324577,324577 +149804,149804 +327617,30834 +39759,39759 +287569,287569 +208437,208437 +424870,424870 +124844,124844 +334383,334383 +431049,322250 +266733,182298 +148579,148579 +381882,381882 +38183,38183 +110385,110385 +162444,162444 +9745,9745 +86794,86794 +424571,424571 +364224,364224 +336130,336130 +72890,72890 +158702,158702 +411213,411213 +431929,431929 +132170,132170 +369906,369906 +303959,303959 +380037,380037 +113469,113469 +5324,5324 +17952,17952 +164667,164667 +426579,426579 +309865,309865 +198133,198133 +318558,318558 +136851,136851 +57618,57618 +176300,173455 +123163,681 +195328,195328 +209777,209777 +52115,52115 +366060,366060 +359226,359226 +34714,34714 +30687,30686 +373886,373886 +3888,3888 +422498,422498 +57092,57092 +176569,176569 +219594,191943 +376696,376696 +363766,363766 +345129,345129 +320813,443 +189021,189021 +357326,357326 +206106,206106 +21824,21824 +159022,159022 +33811,33811 +131972,131972 +387489,387489 +422699,422699 +377473,377473 +296877,296877 +135586,135586 +199011,199011 +129522,129522 +26057,26057 +295542,295542 +108424,108424 +402620,402620 +314174,314174 +47230,47230 +429632,429632 +116785,116785 +403375,352679 +381236,381236 +286822,286822 +417920,352515 +12696,12696 +408874,408874 +370741,370741 +17950,17950 +335637,335637 +233807,233807 +269612,267832 +269458,269458 +13856,13856 +22949,22949 +397820,397820 +99685,99685 +72462,72462 +64380,64380 +61436,61436 +25693,25693 +385246,385246 +418025,418025 +373104,373104 +316102,316102 +41968,41968 +418103,418103 +27309,27309 +344337,344337 +17628,17628 +359190,359190 +200579,200579 +415615,415615 +418841,418841 +27170,27170 +18174,18174 +24050,24050 +7342,7342 +172778,26501 +111679,111679 +369863,369863 +17310,17310 +213550,213550 +360871,360871 +152813,152813 +265044,265044 +13244,13244 +400626,400626 +307071,307071 +391557,391557 +430334,430334 +274102,274102 +279728,279728 +352842,352842 +245002,245002 +313221,313221 +230431,230431 +7398,7398 +323188,323188 +428244,125678 +236763,236763 +328540,328540 +32092,32092 +420173,420173 +311000,311000 +18654,18654 +124618,124618 +39814,39814 +143307,143307 +87453,87453 +334110,334110 +60792,60792 +13502,13502 +170185,170185 +108225,108225 +419636,419636 +134282,134282 +7341,7341 +111014,111014 +383589,383589 +224837,224837 +434185,434185 +414508,414508 +24689,14201 +124720,124720 +256933,256933 +421125,421125 +163312,163312 +324785,324785 +255693,255693 +354688,354688 +233201,233201 +349469,349469 +23725,23725 +306666,306666 +320957,320957 +136036,136036 +224551,224551 +401326,401326 +15972,15972 +170810,170810 +340129,340129 +334991,334991 +200723,200723 +181911,181911 +47474,47474 +311398,311398 +204425,204425 +23434,23434 +26013,26013 +30564,30564 +401517,401517 +311404,311305 +162596,162596 +356588,356588 +131506,131506 +133509,133509 +99337,99337 +427942,427942 +13646,13646 +341755,341755 +147208,147208 +89345,89345 +29910,29910 +136359,136359 +37445,37445 +362225,362225 +39485,39485 +193481,50381 +173368,173368 +43223,43223 +341758,180845 +134697,134697 +357585,357585 +268678,268678 +316369,316369 +344229,344229 +141278,141278 +96428,96428 +159985,105134 +366461,366461 +338361,343155 +65626,65626 +103351,103351 +385679,385679 +328874,328874 +116846,116846 +161113,161113 +396089,396089 +161112,161112 +381838,381838 +328202,328202 +308518,308518 +3714,3714 +134756,134756 +60834,60834 +432811,432811 +21520,21520 +29328,29328 +348561,348561 +93955,93955 +66881,66881 +175463,175463 +37037,37037 +151346,151346 +432474,432474 +15084,15084 +373986,373986 +34058,15007 +173049,173049 +318521,318521 +173323,293495 +305987,305987 +429589,429589 +353386,353386 +306528,306529 +331563,331563 +330001,330001 +265811,265811 +66051,66051 +216745,216745 +333663,333663 +249596,249596 +337368,337368 +370949,370949 +299194,299194 +389516,389516 +379036,379036 +393416,393416 +426318,426318 +380315,179978 +9557,9557 +23653,8945 +131847,131847 +28853,28853 +152096,210183 +68173,68173 +283841,163343 +31802,31802 +35224,35224 +430378,430378 +349902,349902 +359680,359680 +233834,233834 +29648,29648 +184528,184528 +411047,318243 +265072,265072 +71729,71729 +406976,406976 +357254,357254 +13157,13157 +409616,276925 +30510,30510 +160549,160549 +242147,242147 +370234,370234 +319705,319705 +165335,165335 +307265,307265 +35105,35105 +336891,336891 +15461,15461 +30567,30567 +411902,343507 +39740,39740 +158434,158434 +291959,291959 +18609,18609 +12158,12158 +142015,142015 +121894,121894 +300176,300176 +10021,10021 +16844,16844 +422361,422361 +187982,187982 +167459,167459 +148669,148669 +120779,120779 +253105,253105 +412109,412109 +31115,28458 +353732,353732 +31647,31647 +425437,425437 +21416,21416 +425204,425204 +33733,33733 +35033,35033 +70361,70361 +10539,10539 +119590,119590 +72351,72351 +5967,5967 +73255,73255 +103354,103354 +75104,75104 +402341,402341 +352407,352407 +118328,118328 +83413,83413 +66201,66201 +96505,96505 +138439,138439 +343854,343854 +80886,80886 +422483,422483 +315629,315629 +253902,253902 +10974,23613 +90087,90087 +22774,22774 +30647,30647 +54920,54920 +343077,343077 +69350,69350 +57000,57000 +234835,234835 +28163,28163 +425430,425430 +36752,36752 +370967,370967 +16871,16871 +393517,393517 +301484,301484 +399370,399370 +176084,176084 +18453,18453 +411218,411218 +3743,3743 +186757,186757 +340915,340915 +216000,216000 +19132,19132 +47353,47353 +278409,278409 +342094,342094 +3789,3789 +128451,128451 +3968,3968 +389300,389300 +28434,28434 +28256,28256 +425042,425042 +30056,30056 +18272,463 +423151,2453 +212523,220988 +19809,19809 +230261,230261 +25106,25106 +411563,378953 +109047,109047 +419968,271460 +279959,279959 +351597,351597 +403248,403248 +259363,259363 +39597,39597 +8555,8555 +22618,22618 +279873,279873 +33995,33995 +26043,137331 +219900,219900 +164321,164321 +67081,67081 +427900,427900 +349642,349642 +147501,147501 +7668,7668 +425004,425004 +292492,292492 +18227,18227 +24453,24453 +84976,84976 +289761,289761 +28862,28862 +151451,151451 +343315,343315 +135507,135507 +126108,126108 +44089,44089 +318081,318081 +40227,72153 +425207,425207 +26159,26159 +374063,374063 +143521,143521 +39870,39870 +416356,5867 +148666,148666 +20310,20310 +18368,18368 +12019,12019 +25192,25192 +61529,61529 +34981,34981 +64617,64617 +128772,128772 +24123,24123 +426125,426125 +296775,296775 +226835,226835 +19116,19116 +431615,431615 +424573,424573 +327798,327798 +120853,120853 +152543,152543 +157993,157993 +217399,217399 +424125,424125 +63525,63525 +68286,68286 +344326,147949 +296650,296650 +294174,294174 +354555,354555 +134228,134228 +301527,301527 +277807,277807 +20259,20259 +73189,73189 +91231,91231 +5975,5975 +343152,343152 +36271,36271 +254331,254331 +8438,8438 +195536,195536 +144208,144208 +131073,131073 +10231,10231 +280743,280743 +14534,14534 +279006,279006 +23678,23678 +347104,347104 +19549,19549 +37091,37091 +261238,261238 +273266,273266 +279044,279044 +6196,6196 +232304,232304 +296572,296572 +14869,14869 +114506,114506 +334686,334686 +393167,393167 +142394,142394 +12326,12326 +26102,26102 +34740,34740 +54087,54087 +284289,234274 +159646,159646 +364445,364445 +32991,32991 +238190,238190 +292645,292645 +389733,389733 +250280,250280 +70053,70053 +9553,9553 +37014,37014 +5188,5188 +140358,140358 +26796,26796 +368121,368121 +279050,279050 +322832,220988 +98653,98653 +330255,330255 +421773,421773 +13243,13243 +410168,410168 +357910,357910 +164716,164716 +322934,322934 +170020,10229 +409513,409513 +394288,394288 +11291,11291 +392654,392654 +214712,214712 +362377,356334 +37785,37785 +234793,234793 +25178,25178 +20684,20684 +156886,156886 +422629,422629 +181205,181205 +217186,217186 +139645,139645 +8469,8469 +244152,244152 +287083,287083 +6018,6018 +26543,26543 +27994,27994 +75461,75461 +168514,168514 +245050,69789 +351545,351545 +32493,32493 +228932,228932 +26239,26239 +264208,264208 +327884,327884 +65931,65931 +158885,158885 +181091,181091 +227777,227777 +60221,1721 +41998,42004 +282849,282849 +316315,316315 +26706,26706 +155598,155598 +357005,357005 +14850,14850 +28970,28970 +17474,17474 +116774,116774 +13740,13740 +2815,2815 +386281,386281 +358585,358585 +155600,155600 +225817,225817 +67929,67929 +31385,31385 +348244,348244 +17818,17818 +14976,14976 +28768,28768 +94622,94622 +16903,16903 +28700,28700 +327226,327226 +37311,37311 +13161,13161 +389519,389519 +6442,6442 +24575,24575 +310909,310909 +305996,305997 +34662,34662 +25960,25960 +64229,64229 +15977,15977 +251141,251141 +364230,364230 +182713,182713 +178580,178580 +234010,234010 +145149,145149 +2744,2744 +46390,46390 +243390,243390 +92490,92490 +343299,343299 +37750,37750 +358937,358937 +23567,23567 +375781,375781 +122673,122673 +123983,123983 +192220,192220 +126635,126635 +393360,393360 +110112,110112 +226521,226521 +4761,4761 +378591,378591 +311848,311848 +6185,6185 +39844,39844 +419650,419650 +366205,366205 +6662,6662 +17680,17680 +217253,217253 +38040,38040 +147536,147536 +39211,39211 +9510,9510 +367148,367148 +26828,26828 +275063,275063 +12374,12374 +10287,10287 +10801,10801 +5920,5920 +317033,317033 +124914,124914 +151839,151839 +235612,235612 +30996,30996 +114037,114037 +383427,383427 +294202,294202 +19907,19907 +126625,126625 +12682,12682 +123882,17754 +26820,26820 +43010,43010 +10717,10717 +168173,168173 +35876,35876 +286039,286039 +148385,148385 +24740,14042 +33719,33719 +169367,169367 +201991,201991 +34220,34220 +9657,9657 +21180,21180 +20985,20985 +97685,97685 +260983,260983 +59293,59293 +14483,14483 +287689,287689 +238027,238027 +7846,7846 +401561,401561 +18916,18916 +214447,214447 +59653,59653 +99688,99688 +141585,141585 +128847,128847 +39350,39350 +17783,17783 +163393,163393 +12952,12952 +16021,16021 +55292,55292 +280479,280479 +34011,34011 +129401,129401 +45984,45984 +23205,23205 +324570,324570 +24590,24590 +23847,23847 +230495,230495 +421268,421268 +90015,90015 +7525,7525 +62242,62242 +130919,130919 +244103,244103 +312185,312185 +205081,8790 +109697,109697 +13446,13446 +81111,81111 +398906,323262 +20950,20950 +24458,24458 +344766,344766 +18087,18087 +339757,339757 +411347,194626 +417275,417275 +29023,29023 +12392,12392 +308115,308115 +287073,287073 +5611,5611 +351580,351580 +401085,401085 +18026,18026 +6834,6834 +338798,338798 +346700,346700 +14726,14726 +238077,238077 +315184,315184 +18476,18476 +9081,9081 +205688,322560 +3364,3364 +245625,245625 +34821,34821 +10133,10133 +164970,164970 +35858,35858 +150678,150678 +237589,237589 +13659,13659 +27638,27638 +63169,63169 +130166,130166 +129030,86433 +14867,17 +9005,9005 +327850,327850 +241659,241659 +83410,83410 +18372,18372 +151188,151188 +339313,339313 +171304,171304 +381134,381134 +222618,222618 +24139,24139 +230900,9398 +22678,22678 +63526,63526 +17594,17594 +126006,126006 +3876,3876 +130184,130184 +352782,463 +102888,102888 +262314,262314 +263762,263762 +177205,177205 +364232,364232 +39585,39585 +220697,176631 +403179,403179 +244954,244954 +368319,368319 +13929,13929 +1438,1438 +99167,99167 +207826,207826 +3747,3747 +198607,198607 +159198,159198 +418896,421540 +137971,137971 +3514,3514 +8936,8936 +16448,16448 +12023,230075 +168872,168872 +40874,40874 +320840,320840 +258594,258594 +2628,2628 +236277,236277 +25451,25451 +125585,125585 +313771,313771 +357441,357441 +19570,14661 +348512,348512 +187529,187529 +3638,3638 +21007,21007 +296469,296469 +324952,324952 +229958,229958 +344727,344727 +68819,68819 +140171,140171 +7394,7394 +15842,15842 +14162,14162 +148504,148504 +4858,4858 +34958,34958 +288818,288818 +14854,14854 +169556,169556 +157505,157505 +134434,134434 +8493,8493 +292566,292566 +10795,10795 +280249,280245 +135711,135711 +105079,105079 +3879,3879 +2660,2660 +5109,5109 +182789,182789 +7405,7405 +7763,7763 +7406,7406 +394891,394891 +22989,2392 +29009,29009 +180021,180021 +63581,148918 +255171,255173 +249683,37196 +35199,35199 +33793,33793 +315609,315609 +281394,281394 +36402,36402 +6899,6899 +19920,19920 +200311,200311 +230563,230563 +228577,228577 +157304,157304 +137325,137325 +233106,233106 +25871,25871 +275281,275281 +257944,257944 +17420,17420 +315673,17903 +353518,353518 +199505,204895 +199796,204895 +63900,63900 +349219,349219 +170976,170976 +9901,9901 +2765,2765 +187012,187012 +5999,5999 +231362,231362 +181376,181376 +4329,4329 +107680,107680 +185850,140866 +70220,70220 +68851,68851 +23774,23774 +17665,17665 +26302,26302 +388392,388392 +423549,423549 +60308,60308 +348575,348575 +141681,141681 +30840,30840 +286776,310256 +41572,41572 +219340,219340 +200707,179552 +226622,226622 +314994,314994 +8873,8873 +29279,29279 +96757,96757 +6001,6001 +228662,228662 +13592,13592 +9254,501 +20785,20785 +9719,9719 +198991,32410 +10426,10426 +10903,10903 +18323,18323 +29097,29097 +12882,12882 +256234,256234 +276183,276183 +303524,303524 +286734,204895 +30582,30582 +227260,227260 +5137,5137 +24466,24466 +361083,361083 +357303,357303 +389093,422628 +73731,73731 +144936,144936 +167348,167348 +31050,3939 +33879,33879 +406447,197790 +368147,368147 +146595,146595 +98125,98125 +33373,33373 +348796,348796 +75989,5692 +35031,35031 +88619,88619 +269183,269183 +201167,201167 +373623,373623 +75974,75974 +210204,210204 +420281,420281 +8572,8572 +10452,10452 +356085,154892 +74177,74177 +13777,463 +33959,33959 +66850,66850 +38994,38994 +272854,272854 +209977,209977 +107,107 +61664,61664 +107062,107062 +7335,7335 +172858,172858 +253555,253555 +7289,223 +157675,157675 +357628,357628 +384187,384187 +199029,204895 +295398,295398 +103361,103361 +23062,23062 +38133,38133 +32151,32151 +188703,188703 +19501,19501 +34091,34091 +388722,388722 +37854,37854 +282309,282309 +35012,35012 +113512,113512 +143866,143866 +7895,7895 +415854,415854 +153719,153719 +174251,220988 +65559,65559 +17272,2229 +177075,177075 +6272,463 +225731,225731 +7553,7553 +3014,3014 +8526,8526 +403412,403412 +266136,266136 +209315,209315 +84961,84961 +425442,206915 +26396,26396 +365433,365433 +245282,245282 +53621,53621 +26677,26677 +25922,25922 +16008,16008 +17638,17638 +171909,463 +358573,358573 +12411,12411 +425079,425079 +11801,11801 +596,596 +16994,16994 +189370,189370 +374735,374735 +32164,326851 +8151,8151 +5450,5450 +10704,10704 +2866,2866 +166929,166929 +67240,463 +177704,177704 +200699,463 +103461,156446 +23392,23392 +7684,7684 +216946,216946 +340813,266382 +120998,120998 +25315,25315 +39524,39524 +244332,244332 +57059,57059 +2746,2746 +41173,41173 +9036,9036 +104385,104385 +30335,30335 +204403,204403 +5709,5709 +128072,128072 +347956,347956 +427785,230050 +394573,394573 +305533,363696 +308367,258309 +154408,154408 +377577,377577 +316947,316947 +30341,30341 +60600,60600 +29499,29499 +42031,42031 +423239,423239 +23854,23854 +20363,20363 +7722,7722 +49033,49033 +130747,130747 +207974,207974 +169064,169064 +20846,20846 +63269,63269 +397755,397755 +10958,10958 +138806,138806 +124674,124674 +333059,333059 +6781,6781 +4311,4311 +16563,16563 +100059,100059 +274750,274750 +157682,157682 +14774,14774 +267908,267908 +69322,69322 +2687,2687 +12582,12582 +367891,367891 +9720,9719 +39845,39845 +23014,23014 +184229,184229 +334421,255335 +168174,168174 +302314,302314 +31715,31715 +401330,401330 +234623,234623 +399118,399118 +261844,438 +229686,229686 +57276,57276 +364741,364741 +236169,236169 +26687,26687 +270649,270649 +264026,264026 +357929,357929 +240775,240775 +358001,358001 +133737,133737 +262917,262917 +431100,431100 +413288,413288 +339335,339335 +347528,347528 +318347,242370 +136365,136365 +188972,50381 +253515,251472 +133609,133609 +64628,64628 +164762,164762 +378252,378252 +244614,244614 +286948,286948 +289175,289175 +207728,206365 +181125,181125 +264520,264520 +36792,36792 +225064,214576 +64203,64203 +87863,87863 +374513,374513 +357696,357638 +310877,310877 +425767,425767 +306094,306094 +433710,433710 +319458,319458 +99377,99377 +28041,12266 +231752,231752 +410256,410256 +325671,143195 +26881,26881 +251670,251670 +213485,213485 +23547,23547 +64822,64822 +388581,388581 +354014,354014 +219120,219120 +427253,427253 +251175,251175 +287659,287659 +166211,166211 +246251,246251 +303546,303546 +344546,344546 +382613,382613 +382953,382953 +137529,137529 +64554,64554 +174040,129364 +239160,239160 +397974,397974 +306246,306246 +184059,184059 +389739,389739 +109097,109097 +19795,19795 +367555,367555 +151392,151392 +60199,60199 +376381,376381 +181326,181326 +425028,425028 +114317,114317 +280063,280063 +13587,13587 +320027,320027 +430321,430321 +142614,142614 +187527,86169 +425532,425532 +42771,42771 +316962,753 +65718,65718 +126099,126099 +338949,338949 +312961,312961 +377720,377720 +180036,180036 +380774,380774 +284357,284357 +298332,298332 +274699,274699 +173809,173809 +340167,340167 +347555,347555 +383210,383210 +200432,200432 +326437,326437 +190076,190076 +425240,425240 +340368,340368 +297334,297334 +423600,423600 +75281,75281 +392465,392465 +381378,381378 +34100,34100 +342906,342906 +346454,346454 +92581,92581 +226724,226724 +305151,305151 +423546,423546 +297473,297473 +116323,116323 +144315,144315 +401611,401611 +357314,357314 +83978,83978 +130204,130204 +61306,61306 +419797,419797 +124636,124636 +251216,251216 +306119,306119 +133211,133211 +427557,427557 +290572,290572 +305168,305168 +424055,424055 +77915,77915 +129285,5686 +416075,416075 +303497,296877 +99632,99632 +188692,29913 +285857,285857 +133435,133435 +7133,7133 +283427,283427 +422240,422240 +403286,403286 +421545,421545 +426122,426122 +371987,371987 +132996,132996 +422861,214484 +38768,38768 +231340,231340 +127361,127361 +357685,357638 +330123,330123 +59868,59868 +373994,373994 +206759,206759 +405406,405406 +38963,38963 +324619,324619 +338466,338466 +317369,317369 +382656,382656 +153068,153068 +15073,15073 +432605,413533 +266396,266396 +29064,29064 +392567,392567 +339208,339208 +266158,266158 +361217,361217 +356616,356616 +429491,175117 +287224,287224 +398397,398397 +426640,251694 +369810,369810 +18879,18879 +114366,114366 +30365,204 +378205,378205 +132668,132668 +264605,264605 +142146,142146 +200740,163463 +332237,332237 +14335,14335 +344726,344726 +357703,357638 +358082,285902 +241107,241107 +299732,299732 +156019,156019 +265759,265759 +430938,430938 +171436,171436 +219706,219706 +174690,174690 +347627,347627 +410961,410961 +47141,47141 +323213,323213 +410120,410120 +106423,106423 +431743,431743 +341168,341168 +434131,434131 +131392,131392 +54622,54622 +231613,231613 +98103,99010 +419175,419175 +433891,433891 +430759,430759 +238071,238071 +324588,324588 +196168,196168 +292891,292891 +98586,98586 +328593,328593 +322157,263369 +424566,424566 +37337,37337 +417548,417548 +427692,375676 +135271,135271 +159594,159594 +339051,339051 +74465,74465 +218625,218625 +316339,316339 +322845,322845 +433384,433384 +402102,402102 +11984,11984 +278200,278200 +301437,301437 +354861,354861 +159662,159662 +360327,360327 +281184,281184 +302661,302661 +386987,386987 +38336,38336 +22896,22896 +429777,429777 +404241,404241 +404575,404575 +36495,36495 +188098,188098 +258562,151357 +152248,152248 +157165,157165 +129112,129112 +335711,335711 +401780,401780 +132149,132149 +246321,246321 +254982,254982 +365493,365493 +383527,383527 +400260,400260 +414811,414811 +82070,82070 +212962,212962 +298468,298468 +408939,408939 +424315,424315 +157003,157003 +131488,131488 +402548,402548 +224938,224938 +173354,173354 +204282,204282 +418983,418983 +25899,25899 +341299,341299 +6176,6176 +144517,144517 +225717,225717 +39434,39434 +299477,299477 +376500,376500 +256829,256829 +300539,300539 +29895,29895 +429340,429340 +429797,348872 +355621,355621 +396988,396988 +10436,10436 +401992,401992 +420548,463 +310055,310055 +329767,329727 +301212,301212 +88450,88450 +302144,302144 +239466,239466 +330540,330540 +1809,1809 +187086,187086 +373602,373602 +292990,142829 +296731,296731 +433809,433809 +212685,165044 +26800,26800 +373384,373384 +11398,11398 +299224,299223 +355324,355324 +123892,123892 +412557,412557 +317978,317978 +420072,420072 +329060,329060 +18777,18777 +298162,298162 +139738,139738 +426623,426623 +250992,250992 +285092,285092 +200153,200153 +306265,306265 +61721,61721 +384214,384214 +275006,275006 +171741,171741 +369482,369482 +60044,60044 +339030,339030 +422554,422554 +419866,396826 +40898,107017 +299961,299961 +321710,321710 +402546,402546 +285516,285516 +38898,38898 +162052,162052 +324428,324428 +424117,424117 +422171,422171 +148298,148298 +18655,18655 +157835,157835 +257878,257878 +269840,269840 +372217,372217 +297532,297532 +43351,43351 +262424,262424 +98210,99010 +336965,148415 +325818,325818 +417633,417633 +310856,310856 +202233,202233 +351507,351507 +255982,255982 +423168,423168 +149254,149254 +357652,357638 +328594,328594 +173501,173501 +124919,124919 +340991,340991 +232984,232984 +149019,149019 +22714,22714 +419055,419055 +369866,369866 +306344,306344 +266948,266948 +322760,322760 +139373,139373 +429427,429427 +321197,321197 +337523,337523 +256172,256172 +275595,275595 +390997,390997 +183975,183975 +389290,389290 +234652,234652 +240043,240043 +110013,110013 +370893,370893 +250669,250669 +110334,110334 +433737,433737 +348135,348135 +221245,166210 +154184,154184 +297884,297884 +245749,245749 +305341,305341 +187502,187502 +36072,36072 +162794,162794 +302786,302786 +171967,171967 +365483,365483 +390998,390998 +400178,400178 +420944,420944 +222281,222281 +70142,70142 +17608,286804 +62859,62859 +376144,376144 +396848,396848 +152246,152246 +160156,160156 +318566,318566 +359342,359342 +378948,378948 +158705,158705 +316334,316334 +303930,303930 +129460,129460 +146268,146268 +13339,13339 +175595,175595 +385675,385675 +41621,41621 +373250,1465 +264976,264976 +400368,400368 +422008,422008 +313025,313025 +30570,30570 +12254,12254 +271246,271246 +135889,135889 +391875,391875 +178711,178711 +365489,365489 +62738,62738 +62780,62780 +282674,282674 +247884,247884 +42547,42547 +174342,137958 +401630,401630 +77203,77203 +110604,110604 +27045,27045 +421234,421234 +376933,376933 +269516,269516 +294346,294346 +374587,374587 +385603,385603 +66079,66079 +234902,234902 +143662,143662 +301779,301779 +371260,371260 +365898,365898 +236833,236833 +365595,365595 +101879,101879 +334987,334987 +211805,211805 +6035,6035 +279092,279092 +411823,411823 +365125,365125 +374820,374820 +403389,403389 +111716,111716 +98105,99010 +103252,103252 +365515,365515 +321709,321709 +333461,333461 +365438,365438 +413676,310217 +95293,95293 +158706,158706 +232215,232215 +258563,170203 +318300,318300 +365491,365491 +273630,273630 +85035,85035 +304024,304024 +347895,347895 +125410,125410 +123676,123676 +191976,191976 +40560,40560 +280731,280731 +271852,271852 +96866,96866 +406178,406178 +429329,429329 +402768,402768 +119343,119343 +177624,170848 +294486,294486 +277113,277113 +197536,197536 +414280,414280 +361706,361706 +156005,156005 +388342,388342 +30488,30488 +224824,224824 +369835,369835 +337743,337743 +424802,424802 +162792,162792 +255569,255569 +417638,417638 +133739,133739 +397914,397914 +152437,152437 +140138,140138 +427105,427105 +305156,305156 +249771,249771 +34838,34838 +261706,261706 +187256,187256 +107862,107862 +324644,324644 +265071,265071 +98109,98109 +210112,308652 +341301,341301 +89096,89096 +285431,285431 +218420,218420 +406085,406085 +422506,422506 +338077,338077 +138450,138450 +39644,25602 +430939,430939 +268538,268538 +424371,424371 +276597,276597 +290156,290156 +42607,42607 +383071,383071 +357699,357638 +336538,336538 +164543,164543 +431183,431183 +177143,177143 +16671,16671 +194950,194950 +66697,66697 +235111,235111 +182381,182381 +432259,381348 +425665,425665 +387296,387296 +203732,203733 +368738,368738 +261249,261249 +255030,255030 +418353,418353 +66199,66199 +417635,417635 +261108,261108 +210504,210504 +137460,137460 +172111,172111 +434139,434139 +280631,280631 +375348,375348 +393524,393524 +365485,365485 +143099,143099 +264602,264602 +403285,403285 +322146,263369 +305153,305153 +164049,164049 +15091,15091 +122476,122476 +4707,4707 +370700,370700 +326051,289916 +430675,430675 +199056,199056 +129949,129949 +37248,37248 +301618,301618 +209499,209499 +148110,148110 +236573,236573 +388703,388703 +132602,132602 +358966,358966 +353146,353146 +337714,337714 +305342,305342 +209619,209619 +308703,308703 +403278,403278 +431211,431211 +197578,197578 +172454,172454 +349387,349387 +375276,375276 +426445,426445 +233071,191249 +255582,255582 +150593,150593 +279331,279331 +141895,141895 +211509,211509 +223048,223048 +122729,122729 +253210,143983 +173051,173051 +428792,428792 +319385,319385 +317095,317095 +354449,354449 +356469,356469 +7439,7439 +70212,70212 +299436,6540 +32956,32956 +380509,380509 +302591,302591 +398736,398736 +70807,70807 +429804,429804 +129396,129396 +126830,126830 +220448,220448 +331247,331247 +327121,327121 +369387,369387 +63723,63723 +363570,363570 +66294,66294 +228354,228354 +192392,37906 +342086,342086 +230363,230363 +421711,421711 +387161,387161 +351269,263369 +314311,314311 +173846,173846 +428256,428256 +221800,221800 +401554,401554 +318534,318534 +308576,308576 +18397,18397 +27177,27177 +383268,332318 +428140,428140 +102524,102524 +404831,404831 +317995,317995 +404473,404473 +70518,70518 +375242,375242 +162780,162780 +141305,141305 +4762,4762 +418093,149951 +337507,337507 +262528,50381 +374827,374827 +366467,366467 +302176,302176 +160011,160011 +73591,73591 +415925,415925 +150092,150092 +420313,420313 +308178,308178 +298127,4292 +39601,39601 +245861,245861 +83050,83050 +340155,340155 +307180,307180 +411341,294810 +361258,361258 +374819,374819 +347108,347108 +99493,99493 +431216,431216 +62363,62363 +125123,125123 +179390,179390 +225631,225631 +380701,380701 +432056,432056 +429885,429885 +299680,299680 +347986,347986 +363395,363395 +101023,101023 +420464,265489 +323838,323838 +432409,432409 +19404,19404 +306506,24819 +431782,431782 +341300,341300 +81829,81829 +365066,365066 +282083,282083 +258707,258707 +431402,431402 +158704,158704 +144600,144600 +433568,433568 +381343,381343 +408387,408387 +313587,313587 +299214,299214 +383107,383107 +122450,122450 +165269,165269 +27528,27528 +434326,434326 +176444,176444 +264603,264603 +340685,119899 +256984,256984 +362766,362766 +387295,387295 +150588,150588 +420144,420144 +302291,121626 +343726,343726 +366674,273339 +350013,350013 +151419,151419 +376964,376964 +329139,329139 +402113,402113 +29040,29040 +263761,263761 +99554,99554 +188982,174238 +359979,359979 +14297,14297 +270070,270070 +143084,143084 +300995,300995 +275627,275627 +418179,195137 +335759,335757 +395480,13293 +264994,264994 +125664,125664 +162607,162607 +301128,301128 +38940,38940 +201482,201482 +328591,328591 +132059,132059 +365620,365620 +135641,135641 +350956,350956 +42214,42214 +239633,239633 +376439,263369 +16194,16194 +411714,411714 +31129,31129 +362536,362536 +417637,417637 +301207,301207 +18335,18335 +401311,401311 +265621,265621 +421176,421176 +313855,299 +308938,308938 +330238,330238 +352199,352199 +170179,170179 +410730,410730 +426169,426169 +34368,34368 +159478,159478 +419473,30517 +151971,151971 +245394,245394 +20850,20850 +372592,372592 +129149,129149 +293772,293772 +15597,15597 +301626,301626 +191983,191983 +434281,434281 +33045,33045 +310070,310070 +145797,145797 +255556,255556 +106630,106630 +31809,31809 +433062,433062 +92859,92859 +31039,31039 +311834,311834 +311288,311288 +38599,38599 +430563,430563 +13688,13688 +152261,152261 +406214,406214 +292839,292839 +378331,378331 +238072,238072 +13344,13344 +91332,91332 +302583,302583 +69281,69281 +28142,28142 +31227,31227 +31904,31904 +372844,372844 +399013,15290 +200476,200476 +258852,258852 +407411,407411 +92654,92654 +379902,5312 +320954,320954 +380759,380759 +422556,422556 +131729,131729 +386918,386918 +31656,31656 +204117,204117 +125090,125090 +34197,34197 +372238,372238 +31946,31946 +371317,371317 +323973,323973 +297694,297694 +295270,295270 +419685,419685 +372650,372650 +307714,307714 +13346,13346 +15257,15257 +220851,220851 +424776,424776 +332547,332547 +20615,20615 +370076,370076 +402183,402183 +26738,26738 +159477,159477 +414864,414864 +420245,420245 +340432,340432 +341495,341495 +400866,400866 +21400,21400 +64783,64783 +300805,300805 +163304,163304 +32548,32548 +33167,33167 +348003,348003 +48647,48647 +28225,28225 +330203,330203 +6543,6543 +95484,95484 +355102,355102 +22157,22157 +5944,5944 +255817,2838 +72572,72572 +416237,416237 +423674,366458 +273820,273820 +297135,297135 +54725,54725 +71470,71470 +21975,21975 +369080,369080 +93468,93468 +272408,296042 +29445,29445 +18120,18120 +281333,267989 +16446,16446 +425340,425340 +31142,31142 +353430,353430 +344542,344542 +5560,5560 +328731,328731 +367576,367576 +19355,19355 +334864,334864 +116167,116167 +417698,417698 +19431,19431 +362222,362222 +69936,69936 +92289,92289 +210716,210716 +3395,3395 +251641,251641 +139679,139679 +235893,235893 +133976,133976 +164178,164178 +186991,186991 +175818,22274 +187750,187750 +248516,248516 +18162,18162 +375277,6362 +36899,36899 +18216,18216 +7800,7800 +355460,355460 +307583,307583 +193690,193690 +14023,14023 +328329,328329 +374907,374907 +262155,262155 +35322,35322 +24300,24300 +13849,13849 +316424,1421 +4263,4263 +14905,14905 +18374,18374 +167929,167929 +26026,26026 +35899,35899 +142654,142654 +248105,248105 +15976,15976 +28696,28696 +151562,151562 +378647,378647 +34265,34265 +124132,124132 +316092,316092 +420713,420713 +32348,32348 +354015,354015 +332076,332076 +414077,414077 +156074,156074 +370035,370035 +409541,255335 +227088,199530 +28772,3015 +138654,138654 +147831,147831 +178994,178994 +354556,354556 +168210,168210 +266403,266403 +148419,148419 +137627,137627 +306765,306765 +22641,22641 +294626,294626 +100194,100194 +234562,234562 +252550,12940 +136008,136008 +269739,269739 +133641,463 +38618,38618 +33878,33878 +10103,10103 +335710,335710 +18897,18897 +420733,420733 +27978,27978 +260139,260139 +316384,316384 +321300,321300 +113189,113189 +35158,35158 +131342,131342 +238898,238898 +76224,76224 +238084,238084 +359161,359161 +293560,293560 +381839,381839 +292335,292335 +28787,28787 +398038,398038 +20943,20943 +407406,407406 +27559,27559 +66274,66274 +295453,295453 +318957,318957 +263714,263714 +414331,414331 +278456,278456 +209548,209548 +391517,391517 +16950,16950 +222192,3439 +16195,195353 +35940,35940 +331032,331032 +408451,408451 +274952,274952 +18443,18443 +331969,331969 +370573,370573 +318577,318577 +31446,31446 +78011,34413 +18925,18925 +396894,396894 +302595,302595 +34268,34268 +39130,39130 +184945,184945 +366659,366659 +388993,388993 +300601,146548 +374702,374702 +351993,351993 +340430,340430 +295294,295294 +186300,186300 +414662,414662 +173370,173370 +31889,31889 +383022,383022 +177714,177714 +37095,37095 +30082,12854 +383405,383405 +16188,16188 +135672,1339 +184050,184050 +31160,31160 +37155,37155 +152358,152358 +95482,95482 +362933,362933 +8015,8015 +297079,297079 +311965,311965 +328619,328619 +27573,27573 +33820,33820 +18478,18478 +358810,358810 +25422,25422 +170422,170422 +8277,8277 +353724,353724 +311429,311429 +243356,203958 +378594,378594 +333005,333005 +24333,24333 +14979,14979 +406041,406041 +359937,311020 +8060,8060 +288871,288871 +38189,38189 +213680,213680 +367589,408387 +20869,20869 +367219,367219 +422060,463 +396347,396347 +62370,62370 +415181,415181 +2302,2302 +34214,34214 +312048,312048 +86996,86996 +309343,309343 +65810,65810 +66948,66948 +376298,322451 +24615,24615 +293668,293668 +295141,295141 +31127,31127 +29965,29965 +28014,28014 +299201,299201 +9978,9978 +366719,143782 +380039,380039 +64741,64741 +220294,220294 +27498,27498 +19863,19863 +341783,341783 +355561,355561 +66842,66842 +22963,22963 +422219,422219 +194969,463 +363842,363842 +41402,41402 +127274,127274 +141885,141885 +16213,16213 +381805,381805 +118685,118685 +214317,214317 +179333,179333 +113958,113958 +31538,31538 +95095,95095 +170350,170350 +406743,406743 +72262,72262 +13264,13264 +366978,366978 +12427,12427 +422155,405904 +212270,212270 +410127,410127 +202728,202728 +345067,345067 +177131,5298 +18305,297569 +339781,339781 +413967,413967 +40916,22674 +363678,363678 +14918,14918 +148218,148218 +134574,134574 +12955,12955 +328753,328753 +11180,11180 +351036,351036 +142156,142156 +404553,404553 +334598,334598 +301674,301674 +271907,271907 +57586,57586 +238016,238016 +85864,85864 +117787,117787 +360329,360329 +415136,376840 +99354,99354 +10034,10034 +277595,277595 +170740,170740 +425589,425589 +323971,323971 +146184,146184 +2685,2685 +147579,147579 +407582,407582 +370557,370557 +160778,160778 +187286,187286 +14886,14886 +351392,351392 +147265,147265 +270660,224805 +352010,352010 +183841,183841 +266235,266235 +355627,1381 +173339,173339 +255278,255278 +15058,15058 +29305,29305 +29306,29306 +264586,264586 +110328,110328 +424868,424868 +23537,23537 +342844,342844 +114565,114565 +401625,401625 +158639,158639 +22874,22874 +298886,298886 +54965,54965 +26222,26222 +3906,3906 +296101,296101 +252082,252082 +9400,9400 +342337,342337 +123917,123917 +266732,182232 +420706,420706 +431246,431246 +400814,287871 +387173,387173 +184950,184950 +209807,209807 +46950,46950 +297432,99969 +88081,88081 +19234,19234 +199548,199548 +310600,310600 +151034,151034 +215107,215107 +399387,399387 +123317,123317 +38607,38607 +370352,370352 +354427,354427 +176304,176304 +36843,36843 +17105,17105 +348577,348577 +284649,284649 +279423,279423 +70579,70579 +179040,179040 +397207,397207 +180086,180086 +309056,309056 +202253,202253 +264853,264853 +374124,374124 +41314,41314 +26675,26675 +17739,17739 +342412,342412 +407583,407583 +38144,38144 +187095,187095 +12524,12524 +278592,278592 +51333,51333 +373242,373242 +140288,140288 +397462,397462 +41434,41434 +39118,39118 +348033,348033 +14230,14230 +17199,17199 +128849,136146 +375789,375789 +425724,179275 +90729,90729 +274864,274864 +320835,320835 +255177,255177 +341785,341785 +21363,3270 +16857,16857 +224591,224591 +9382,9382 +256097,256097 +377319,377319 +287922,287922 +93737,93737 +14880,14880 +88127,88127 +224306,224306 +21240,21240 +418350,418352 +176545,176545 +415770,415770 +239119,239119 +219421,219421 +140303,140303 +14874,14874 +279907,279907 +41994,41994 +28796,28796 +26944,26944 +256314,256314 +328635,328635 +375622,375622 +76701,41326 +45141,45141 +425636,425636 +400273,400273 +294883,294883 +42795,42795 +9078,9078 +207798,207798 +30918,30918 +420984,420984 +20199,20199 +202320,202320 +8187,8187 +120887,120887 +357268,265461 +142652,142652 +366131,366131 +150234,150234 +307098,307098 +414825,414825 +179939,179939 +16447,16447 +36343,36343 +18043,18043 +352030,352030 +100251,100251 +334366,334366 +95295,95295 +38392,38392 +290857,290857 +38379,38379 +185441,185441 +375025,375025 +43700,43700 +325525,325525 +19443,19443 +390986,390986 +118587,118587 +268644,268644 +341883,341883 +40873,40873 +25910,25910 +31000,31000 +317358,317358 +227294,227294 +181128,181128 +15181,15181 +174848,174848 +309294,309294 +13365,13365 +15170,38818 +200370,200370 +5981,5981 +292378,292378 +114453,114453 +254050,254050 +20072,463 +242369,242369 +313106,337864 +276619,276619 +302938,302938 +198107,198107 +108994,108994 +128556,163078 +24713,24713 +357917,357917 +130020,130020 +89220,89220 +62371,62371 +15085,15085 +30743,30743 +16695,16695 +28003,28003 +16522,16522 +174124,174124 +42468,42468 +293453,293453 +6328,6328 +220070,220070 +131744,131744 +387964,387964 +35925,35925 +200811,200811 +14829,14829 +42618,42618 +391332,391332 +30691,3937 +13988,13988 +12651,12651 +376762,376762 +14939,14939 +364648,364648 +56611,56611 +29708,29708 +324664,324664 +36694,36694 +27616,27616 +217583,217583 +8412,8412 +38347,463 +25652,25652 +35288,35288 +24806,24806 +330195,330195 +66949,66949 +402917,402917 +17960,17960 +19336,229356 +36780,36780 +92878,92878 +121981,121981 +39764,39764 +383138,383138 +18518,18518 +281133,281133 +41991,41991 +230233,230233 +66045,66044 +370669,370669 +212690,212690 +310795,310795 +99577,99577 +252595,252595 +72129,72129 +87648,87648 +211274,211274 +6758,6758 +31439,31439 +37228,37228 +42863,42863 +42365,42365 +303124,303124 +269020,269020 +370471,370471 +12165,12165 +13151,13151 +368122,368122 +317990,317990 +124023,124023 +376389,376389 +35021,35021 +153766,287571 +167569,167569 +109830,109830 +30780,30780 +39848,39848 +376504,376504 +42237,42237 +40375,40375 +41807,41807 +320842,320842 +175348,175348 +273256,273256 +14352,14352 +332019,332019 +34352,32154 +37747,37747 +15036,15036 +25030,25030 +311319,311319 +283839,283839 +201603,201603 +6344,6344 +316171,213661 +146252,146252 +230171,230171 +175538,175538 +214863,217253 +212759,154892 +12878,12878 +9222,9222 +190629,190629 +261579,261579 +120765,120765 +150756,150756 +311354,311354 +263679,263679 +118535,118535 +12320,12320 +296793,296793 +23455,23455 +325100,325100 +197732,197732 +5416,5416 +2620,2620 +9064,9064 +29401,29401 +182967,182967 +373520,373520 +16790,16790 +410254,184843 +8156,8156 +10412,10412 +114327,114327 +69479,40502 +218359,218359 +34416,428480 +173322,293495 +331793,124954 +227175,760 +135217,135217 +187493,187493 +165714,165714 +16397,16397 +410010,410010 +29395,29395 +378335,378335 +17184,17184 +246517,246517 +353951,353951 +15422,15422 +297797,283849 +195104,195104 +133965,224815 +256945,206437 +371694,371694 +19341,19341 +268406,268406 +284490,284490 +376719,376719 +65141,65141 +71564,71564 +15697,15697 +8959,8959 +3956,3956 +371275,371275 +130750,130750 +361167,361167 +18934,18934 +42223,42223 +24823,24823 +141614,141614 +62126,40943 +153840,153840 +1183,1183 +18774,18774 +182835,182835 +20426,20426 +29371,29371 +291983,291983 +3761,3761 +22691,22691 +312962,312962 +286932,286932 +3491,3491 +328288,328288 +182752,182752 +228615,228615 +381830,381830 +334305,334305 +258758,258758 +410134,410134 +348151,348151 +258105,258105 +7404,7404 +22930,22930 +188573,188573 +22086,22086 +20626,20626 +77546,77546 +177100,177100 +394505,394505 +159014,159014 +17898,17898 +15115,15115 +9834,9834 +232914,232914 +183341,183341 +324879,324879 +20020,20020 +72290,72290 +31525,834 +323301,323301 +6092,6092 +144590,144590 +32865,32865 +18728,18728 +15299,15299 +363055,363055 +3148,3148 +378908,378908 +25697,25697 +315531,315531 +13575,418917 +13025,13025 +28685,28685 +21451,21451 +338031,338030 +223219,223219 +27904,27904 +279384,279384 +336011,336011 +261076,271460 +375444,375444 +18315,18315 +7486,7486 +353814,119500 +179554,179554 +363677,363677 +386274,386274 +4767,4767 +99946,99946 +21472,21472 +41777,41777 +234755,234755 +249745,249745 +24516,24516 +275583,275583 +252264,252264 +3911,3911 +3191,3191 +7272,7272 +11148,11148 +11311,11311 +281656,281656 +9210,9210 +27925,27925 +407535,197831 +309828,172662 +14092,14092 +24145,24145 +190913,190913 +157257,157257 +8315,6732 +39744,39744 +72197,72197 +19210,19210 +313182,313182 +408328,408328 +2865,2865 +162556,170977 +4066,4066 +1948,1948 +406524,406524 +183186,183186 +14350,14350 +36668,36668 +8775,8775 +191913,21613 +30318,30318 +177419,177419 +3006,3006 +341049,341049 +16437,16437 +13608,684 +20146,20146 +245630,245630 +27917,27917 +144472,144472 +253678,287571 +25395,25395 +35889,35889 +4277,4277 +340166,340166 +76567,76567 +21,21 +169425,169425 +2417,2417 +195496,195496 +9816,9816 +220154,220154 +264209,264209 +106836,106836 +178231,178231 +177046,177046 +1267,1267 +295824,295824 +16067,11821 +401640,401640 +69819,69819 +328144,328144 +7667,7667 +191771,359642 +239287,239287 +112607,112607 +15772,15772 +10410,10410 +41747,41747 +351908,351908 +361753,361753 +216852,216852 +322725,322725 +297406,297406 +304167,304167 +297244,297244 +307823,194088 +201559,201559 +14721,14721 +102871,102871 +37928,37928 +29748,29748 +66315,66315 +305460,305460 +42960,42960 +11376,11376 +7105,7105 +190648,190648 +8293,8293 +241252,256478 +204992,204992 +172755,172755 +28974,28974 +97565,97565 +427380,427380 +270690,270690 +265150,265150 +231112,231112 +131011,131011 +392118,392118 +8176,8176 +307776,307776 +68327,68327 +13755,463 +110649,110649 +18968,2389 +301590,301590 +324963,324963 +7153,7153 +227181,227181 +330173,330173 +95115,95115 +176858,176858 +349409,349409 +294127,115 +167625,167625 +13099,13099 +103077,103077 +401018,401018 +404517,404517 +329260,329260 +429401,176734 +196522,196522 +226408,226408 +103430,103430 +392274,392274 +191100,191100 +109554,333023 +238729,238729 +400621,400621 +407298,357404 +178621,178621 +155144,155144 +286910,286910 +152987,152987 +147398,147398 +249101,249101 +27147,27147 +268473,268473 +14837,14837 +4534,4534 +61619,61619 +304950,304950 +295807,295807 +39399,39399 +8770,8770 +303637,362616 +154364,154364 +36680,36680 +227263,227263 +286473,286473 +107465,107465 +197495,197495 +353897,410185 +202602,202602 +115884,115884 +175458,175458 +127476,127476 +144301,144301 +11598,11598 +361806,361806 +85402,85402 +9330,9330 +137327,137327 +336112,336112 +4645,4645 +10758,10758 +11345,11345 +178159,178159 +277067,277067 +4169,4169 +5882,5882 +198327,198327 +157455,157455 +382485,382485 +214903,168446 +185375,185375 +194412,250590 +3628,3628 +42636,70128 +244520,244520 +329416,329416 +37317,37317 +335454,266589 +200835,200835 +29290,29290 +268618,268618 +125137,125137 +96638,96638 +365961,365961 +207444,207444 +242215,242215 +5848,5848 +27821,29879 +11189,11189 +284705,284705 +269231,269231 +2959,2959 +348535,298545 +154011,154011 +163720,163720 +246729,246729 +29757,29757 +122711,122711 +141679,141679 +244239,244239 +141747,141747 +242985,22939 +402055,402055 +381346,381346 +347574,347574 +309314,378557 +320427,320427 +165019,165019 +356193,356193 +11637,11637 +368344,358789 +41576,41576 +111295,111295 +138577,138577 +83823,83823 +206508,206508 +33295,269646 +18922,18922 +305218,305218 +17849,17849 +37962,37962 +371519,371519 +246947,246947 +11108,11108 +62420,62420 +18902,2710 +21276,21276 +8276,8276 +150757,150757 +172020,172020 +142959,142959 +136528,136528 +26630,26630 +318012,318012 +11128,11128 +5713,5713 +8729,8729 +320268,320268 +153601,153601 +345940,345940 +219353,219353 +299570,299570 +3144,5217 +388338,388338 +22200,22200 +125051,125051 +11703,11703 +5349,5349 +237723,237723 +535,535 +80691,80691 +153038,153038 +135708,135708 +65556,65556 +298506,298506 +252093,252093 +234102,234102 +360894,360894 +172553,172553 +108049,108049 +392853,392853 +84948,84948 +29521,29521 +277457,277457 +14199,14199 +91079,91079 +36620,36620 +388920,388920 +374899,226597 +129126,129126 +129372,129372 +173568,173568 +287377,287377 +45745,45745 +293156,293156 +354442,354442 +123529,123529 +31399,31399 +371785,371785 +72891,72891 +22494,22494 +376481,376481 +350735,350735 +3296,3296 +73172,73172 +17773,17773 +177348,177348 +34758,34758 +7626,2965 +370416,370416 +269063,269063 +122640,122640 +2365,2365 +349541,349541 +148509,148509 +104799,104799 +212873,36599 +122970,122970 +41177,41177 +203310,203310 +75127,75127 +243673,243673 +368573,359878 +14233,329529 +114592,114592 +166048,166048 +233390,233390 +172576,172576 +375992,375992 +114307,114307 +3786,3786 +229735,229735 +11797,11797 +172840,172840 +12016,12016 +7127,7127 +195624,195624 +250965,250965 +45139,45139 +53809,53809 +41655,41655 +107925,107925 +27806,27806 +352202,352202 +246394,246394 +88879,88879 +281322,281322 +428231,428231 +88605,88605 +142901,142901 +119273,119273 +372618,372618 +123871,123871 +324179,324179 +432945,432945 +282782,282782 +396857,396857 +84745,84745 +165051,165051 +67006,67006 +54857,54857 +177854,177854 +41404,41404 +134504,134504 +70087,70087 +402061,402061 +415311,415311 +389559,389559 +408034,408034 +144339,144339 +119448,119448 +331149,331149 +128103,70740 +361235,361235 +119439,119439 +136597,136597 +142690,142690 +428057,428057 +42813,42813 +393812,393812 +428122,428122 +405432,405432 +427361,427361 +275946,275946 +307958,307958 +170534,170534 +33244,33244 +167281,167281 +13391,13391 +13506,13506 +225834,50381 +84728,84728 +164005,164005 +183789,183789 +333438,333438 +62649,62649 +22183,22183 +172877,172877 +216686,216686 +246538,246538 +145491,145491 +38700,38700 +193822,193822 +259367,259367 +329626,329626 +34816,34816 +36012,36012 +34213,34213 +150441,26292 +259354,259354 +36815,36815 +330309,72644 +287904,287904 +175332,175332 +419876,419876 +426988,426988 +165459,165459 +137285,137285 +37723,37723 +103753,103753 +24296,24296 +335871,335871 +124456,124456 +64962,64962 +386813,291178 +19450,19450 +320545,320545 +24022,24022 +113421,113421 +366272,366272 +151824,151824 +309952,207442 +39334,39334 +27973,27973 +163041,163041 +252324,252324 +213640,213640 +346140,346140 +356843,356843 +30314,30314 +100298,100298 +10770,10770 +117755,117755 +6280,6280 +28708,28708 +374161,374161 +8234,8234 +298536,298536 +70347,70347 +229371,229371 +400829,400829 +67790,67790 +319224,319224 +190046,190046 +401920,401920 +59423,59423 +112699,112699 +365074,365074 +248994,248994 +186439,186439 +372616,372616 +183436,183436 +334844,334844 +18992,18992 +257651,262079 +36096,36096 +376691,376691 +156825,156825 +263055,263055 +121034,121034 +320552,320552 +377454,377454 +66553,66553 +130784,130784 +18181,18181 +353133,353133 +3782,3782 +399265,399265 +422852,422852 +312557,312557 +10125,10125 +37669,37669 +137490,19786 +64781,64781 +19975,19975 +308343,9391 +236866,236866 +360122,360122 +377566,377566 +346285,346285 +354339,354339 +12597,12597 +19897,19897 +198203,198203 +25962,25962 +252696,252696 +431280,431280 +316434,1421 +34624,34624 +401661,401661 +41491,41491 +409277,409277 +411844,275032 +192718,192718 +92709,92709 +136524,136524 +213995,213995 +19582,19582 +32427,32427 +233243,233243 +253222,253222 +307581,307581 +412055,412055 +164184,164184 +6195,6195 +19203,19203 +175608,175608 +151259,151259 +189098,189098 +30395,30395 +118704,118704 +122554,122554 +76284,76284 +289727,289727 +359155,359155 +186557,303322 +202286,202286 +7317,7317 +424929,172081 +26988,26988 +164087,164087 +382525,382525 +20679,20679 +324839,324839 +23428,23428 +42424,42424 +433107,433107 +365958,365958 +187276,187276 +209319,209319 +268676,268676 +72591,72591 +200925,200925 +24902,24902 +33445,33445 +367850,367850 +35993,35993 +429124,274450 +35571,35571 +72998,72998 +16357,16357 +424007,424007 +338096,338096 +219696,219696 +14743,14743 +125775,125775 +184260,184260 +161303,161303 +28559,28559 +406552,406552 +6967,6967 +304295,304295 +295835,295835 +17947,17947 +351634,351634 +387738,387738 +26417,26417 +420156,420156 +234125,234125 +71951,71951 +349109,349109 +128101,128101 +24298,24298 +135113,135113 +265014,265014 +187391,187391 +42937,42937 +371314,371314 +220055,220055 +403008,403008 +310358,310358 +341854,341854 +275081,275081 +16648,16648 +358502,358502 +17378,17378 +140962,140962 +334582,205506 +240292,240292 +400177,400177 +24345,24345 +278400,278400 +36075,36075 +67043,67043 +329376,329376 +431454,431454 +143018,143018 +160714,124132 +401831,401831 +29608,29608 +100256,100256 +187967,187967 +116488,116488 +415778,415778 +16425,16425 +121440,121440 +94378,94378 +76204,76204 +164753,164753 +252139,252138 +291588,6885 +377711,377711 +316077,37206 +37637,37637 +171229,171229 +359876,39570 +262025,262025 +321329,133132 +149108,149108 +37475,37475 +358925,358925 +23118,23118 +304372,304372 +43428,43428 +262143,262143 +283422,283422 +38885,38885 +346808,346808 +424720,424720 +13565,13565 +314041,314041 +4007,4007 +272798,272798 +123937,123937 +267334,267334 +139159,139159 +21056,21056 +432540,432540 +341385,341385 +410216,410216 +35765,35765 +275728,275728 +397765,255546 +125747,125747 +373299,373299 +108940,108940 +237821,237821 +33142,33142 +357919,357919 +7628,7628 +135802,135802 +29813,29813 +14777,14777 +287349,287349 +354383,354383 +307070,307070 +63524,63524 +180026,180026 +306947,306947 +396899,396899 +229255,229255 +9001,9001 +58314,58314 +364026,364026 +351973,351973 +36714,36714 +39659,39659 +6075,6075 +414159,414159 +190065,190065 +284017,284017 +166646,166646 +24459,24459 +316976,316976 +12753,12753 +310868,310868 +334113,334113 +262415,262415 +81427,81427 +151782,151782 +26008,26008 +144582,144582 +413783,413783 +99409,99409 +428108,428108 +428366,428366 +254251,254251 +128444,128444 +248244,248244 +403605,403605 +123967,123967 +234382,234382 +34040,34040 +13785,13785 +25440,25440 +304342,304342 +65308,148185 +13773,13773 +22586,22586 +57926,57926 +341826,341826 +349107,349107 +240670,240670 +420022,420022 +27125,27125 +130812,130812 +193631,193631 +169582,169582 +12080,12080 +42354,42354 +32731,32731 +19365,19365 +380006,380006 +433624,433624 +30614,30614 +201940,201940 +337865,337865 +20905,20905 +159736,159736 +31496,31496 +178228,178228 +5816,5816 +27174,27174 +139127,139127 +40046,40046 +282870,99969 +100448,100448 +374669,374669 +151930,151930 +238805,127493 +114115,114115 +104349,104349 +412909,412909 +156174,156174 +35232,35232 +300991,300991 +32085,32085 +39234,39234 +207779,207779 +365941,365941 +355576,355576 +18269,18269 +42106,42106 +69929,69929 +4369,4369 +12096,12096 +358223,358223 +316364,316364 +230319,230319 +249251,249251 +16714,16714 +18215,18215 +382236,382236 +159769,159769 +350569,350569 +106125,18154 +93505,93505 +426657,426657 +341223,341223 +340137,340137 +24342,24342 +230602,230602 +214164,214164 +330500,330500 +231394,231394 +83071,83071 +281490,281490 +124569,124569 +63532,63532 +146300,146300 +323945,323945 +337766,337766 +64694,64694 +191729,191729 +431014,204836 +28421,28421 +320841,320841 +18787,18787 +359300,262547 +5857,5857 +34520,34520 +391241,391241 +305982,305982 +209124,209124 +39009,39009 +377354,377354 +284932,284932 +414725,414725 +417147,417147 +31169,31169 +112375,112375 +183879,183879 +7357,7357 +235647,235647 +176106,176106 +37104,37104 +363962,363962 +70555,70555 +12173,12173 +86473,86473 +133069,133069 +384172,384172 +121777,121777 +213493,213493 +248976,248976 +7793,7793 +294283,294283 +124989,124989 +28646,28646 +377624,377624 +81576,81576 +131930,131930 +412582,412582 +308344,308344 +131932,131932 +180763,180763 +25580,25580 +33591,33591 +11491,11491 +87583,87583 +295481,295481 +409621,409621 +296784,296784 +151307,151307 +346185,346185 +22708,22708 +174244,174244 +139330,139330 +335531,335531 +32375,32375 +343276,343276 +161137,161137 +431717,200512 +276087,276087 +354981,354981 +272049,272049 +13343,13343 +408632,408632 +16193,16193 +392974,392974 +367639,367639 +323653,30843 +181126,181126 +128770,128770 +309305,309305 +184933,184933 +409928,409928 +22742,22742 +418261,418261 +12068,12068 +132703,132703 +235626,235626 +29801,29801 +34497,34497 +23476,23476 +423490,423490 +299814,299814 +24431,24431 +87633,87633 +255983,255983 +32009,32009 +340156,340156 +194352,194352 +196015,196015 +420531,420531 +334388,334388 +213419,213419 +354797,354797 +320549,320549 +381714,381714 +292646,292646 +18059,7623 +260433,260433 +348945,348945 +365592,365592 +380162,380162 +33635,33635 +337162,337162 +39004,39004 +277974,7071 +360521,360521 +254345,254345 +347008,347008 +353307,353307 +31977,31977 +187497,187497 +282397,282397 +411107,375177 +328735,328735 +113116,113116 +271230,271230 +202971,202971 +406946,406946 +29495,29495 +129222,129222 +22210,22210 +146077,146077 +404378,404378 +107636,107636 +377208,377208 +121427,121427 +410373,410373 +431946,431946 +124846,196358 +89958,89958 +103285,103285 +370676,370676 +119071,119071 +133072,133072 +283149,283149 +33738,33738 +237002,237002 +7903,7903 +69633,69633 +367938,367938 +16287,16287 +31517,31517 +19839,19839 +40976,40976 +36044,36044 +131226,131226 +16707,16707 +132478,132478 +12555,12555 +366801,366801 +36470,36470 +63008,63008 +87186,87186 +149208,149208 +383277,463 +118465,118465 +85087,85087 +299152,299152 +149905,149905 +247735,247735 +412383,412383 +64766,64766 +283314,283314 +426645,426645 +32426,32426 +294685,294685 +184725,184725 +143928,166767 +412958,412958 +36270,36270 +16377,16377 +7700,7700 +6059,6059 +148685,146030 +16841,16841 +13999,13999 +77981,77981 +36534,36534 +118948,118948 +142116,142116 +423570,423570 +20219,20219 +320553,320553 +219069,219069 +328615,328615 +21560,21560 +340882,340882 +425444,425444 +160602,160602 +432390,432390 +38007,38007 +36384,36384 +237692,237692 +6277,6277 +34519,34519 +261658,261658 +340159,340159 +59864,59864 +128088,128088 +22468,22468 +24461,24461 +355128,355128 +177413,177413 +25317,25317 +404448,404448 +378439,361214 +391818,43245 +72223,72223 +256178,256178 +63621,63621 +230132,230132 +130748,130748 +123728,123728 +158333,158333 +23759,23759 +151283,151283 +191844,191844 +115729,115729 +369902,369902 +7661,7661 +300041,300041 +187523,187523 +39631,39631 +385532,385532 +46368,46368 +250592,250592 +418552,418552 +194590,194590 +296880,296880 +227732,227732 +126079,126079 +307116,307116 +262140,262140 +133587,133587 +16072,16072 +291192,291192 +16712,16712 +362653,362653 +413117,413117 +419570,419570 +17214,17214 +213495,213495 +100882,100882 +7842,7842 +113932,113932 +381035,381035 +414339,414339 +299615,299615 +386988,386988 +64222,1513 +379615,379615 +35569,35569 +171302,171302 +306953,306953 +311235,311235 +229651,229651 +412749,413783 +160590,160590 +212769,212769 +25098,25098 +191139,191139 +60304,60304 +23138,23138 +371324,371324 +8900,8900 +427357,427357 +300838,300838 +29825,29825 +139721,139721 +29705,29705 +182734,182734 +67454,67454 +36593,36593 +359146,359146 +6594,6594 +19524,66533 +406330,406330 +190086,190086 +432715,432715 +302383,302383 +23876,23876 +213498,213498 +372984,372984 +413187,413187 +330114,330114 +10290,10290 +431994,431994 +251500,251472 +286075,164022 +70505,70505 +387490,387490 +95846,95846 +24872,24872 +369009,369009 +148422,148422 +357924,357924 +23233,23233 +429123,274450 +430790,430790 +236626,236626 +26456,26456 +94439,94439 +70252,70252 +337730,337730 +69722,69722 +340150,340150 +257760,257760 +108740,108740 +25372,25372 +79310,79310 +334228,334228 +342642,342642 +402326,402326 +336119,336119 +189819,189819 +323289,323289 +91341,91341 +220991,220991 +389487,389487 +374871,374871 +365398,365398 +380680,380680 +58587,58587 +387280,387280 +190212,190212 +346819,346819 +381739,381739 +324758,324758 +412781,412781 +261447,261447 +369667,369667 +96069,96069 +63438,63438 +142583,142583 +168074,168074 +2772,2772 +8937,8937 +17090,17090 +193220,193220 +299021,299021 +406877,406877 +283145,283145 +193796,220333 +120776,120776 +92592,92592 +267944,267944 +63504,63504 +69598,97456 +408224,408224 +286915,286915 +18187,18187 +351638,230265 +131369,131369 +224260,224260 +51249,51249 +17281,17281 +178684,178684 +382477,382477 +146032,146032 +231840,231840 +17968,17968 +17375,17375 +247508,247508 +178132,178132 +41131,41131 +314751,314751 +26202,26202 +313497,313497 +129379,129379 +148771,148771 +383367,383367 +382665,382665 +39000,39000 +347342,347342 +62654,62654 +330128,330128 +69634,69634 +47131,47131 +21026,21026 +16103,16103 +190949,190949 +5498,5498 +70360,70360 +89975,89975 +187405,187405 +113756,113756 +14090,14090 +243183,243183 +410818,410818 +39184,39184 +306159,306159 +205886,205886 +37873,37873 +36886,36886 +190269,190269 +124687,124687 +122855,122855 +182820,182820 +65386,65386 +314525,314525 +142097,142097 +8766,8766 +13117,13117 +421955,421955 +145558,145558 +35528,35528 +70707,70707 +239929,239929 +263075,263075 +120815,120815 +63176,63176 +26416,26416 +60109,60109 +407204,313543 +36142,36142 +89103,89103 +356289,356289 +160433,160433 +9106,9106 +37077,37077 +168061,168061 +204674,204674 +393501,393501 +428787,428787 +321256,321256 +9637,9637 +179403,179403 +64842,64842 +128805,128805 +141416,141416 +34571,34571 +25664,25664 +36160,36160 +22421,22421 +95026,95026 +38903,38903 +358997,17181 +358154,358154 +261708,261708 +211264,211264 +31570,31570 +378093,378093 +182354,182354 +63828,63828 +34705,34705 +120862,120862 +199944,199944 +75203,75203 +176964,176964 +33772,33772 +408527,408527 +334561,334561 +28541,28541 +15970,130784 +9612,9612 +20019,20019 +35019,35019 +22506,22506 +263113,263113 +163884,163884 +21186,21186 +16989,16989 +148417,148417 +8384,8384 +381514,381514 +424139,424139 +299250,299250 +128500,128500 +13196,13196 +327804,327804 +264749,264749 +21423,21423 +241010,241010 +28637,28637 +316425,1421 +38715,38715 +363458,363458 +78547,78547 +320962,320962 +406690,406690 +12089,12089 +369934,463 +25790,25790 +217893,217893 +158248,182877 +380451,380451 +241017,241017 +168669,168669 +14073,14073 +338474,338474 +66951,66951 +237696,237696 +357540,357540 +289501,289501 +162960,162960 +278977,278977 +140042,140042 +118207,118207 +225730,225730 +20562,20562 +90846,90846 +157950,157950 +307421,263980 +261144,261144 +262075,262075 +132472,132472 +94716,94716 +257945,257945 +65579,65579 +6451,6451 +21793,21793 +28795,28795 +306194,306194 +34885,34885 +131665,131665 +252356,252356 +303132,303132 +261713,261713 +351281,351281 +376186,376186 +155813,155813 +11474,11474 +41893,41893 +126864,126864 +71189,71189 +27077,27077 +42578,42578 +37319,37319 +361972,361972 +200548,200548 +377120,377120 +37158,37158 +13838,13838 +427046,427046 +371850,371850 +158588,158588 +136738,136738 +18940,18940 +31988,29913 +79675,79675 +260401,260401 +159246,104858 +393355,393355 +270408,122842 +120120,421967 +218858,218858 +356498,356498 +203789,203789 +133244,133244 +329796,329796 +9268,9268 +110743,110743 +362709,362709 +231510,231510 +37661,37661 +381828,381828 +387961,387961 +170167,170167 +26409,26409 +24331,24331 +11059,11059 +269100,269100 +395254,395254 +136538,136538 +26623,26623 +9611,9611 +150196,150196 +15781,15781 +355007,355007 +327122,327122 +37648,37648 +378346,378346 +276803,59576 +233563,182793 +383193,383193 +103701,103701 +50629,50629 +188392,188392 +108695,108695 +42632,42632 +63335,63335 +11240,11240 +281653,281653 +403517,403517 +198509,198509 +148747,148747 +333219,4052 +357478,357478 +274438,274438 +32626,32626 +431244,431244 +16233,16233 +15930,15930 +114813,114813 +278407,278407 +64037,64037 +12586,12586 +382980,382980 +285682,285682 +18185,18185 +34017,34017 +36386,36386 +378961,378961 +293787,293787 +142533,142533 +378355,378355 +377597,377597 +292386,292386 +38874,38874 +226486,226486 +9141,9141 +13622,13622 +287454,287454 +326667,326667 +67706,67706 +13987,13987 +120386,120386 +59662,59662 +149854,149854 +14419,14419 +103144,103144 +156316,156316 +318713,318713 +201684,201684 +269764,269764 +194305,194305 +220724,220724 +341271,341271 +222319,222319 +66128,66128 +28202,148185 +25891,25891 +48976,48976 +26767,26767 +168430,168430 +359866,359866 +162159,162159 +345586,345586 +296799,296799 +372203,372203 +231648,231648 +27934,27934 +33775,33775 +65198,65198 +33106,33106 +285518,285518 +35498,35498 +267860,267860 +42714,42714 +33869,33869 +7107,7107 +386751,386751 +32986,32986 +14729,14729 +1141,1141 +18495,18495 +391356,391356 +57172,57172 +375255,375255 +19886,19886 +191875,191875 +324189,1269 +412681,412681 +286966,286966 +18865,18865 +18290,26918 +37126,37126 +12752,7786 +60454,60454 +8266,8266 +21993,21993 +25171,25171 +308453,308453 +352989,352989 +19149,19149 +12402,12402 +14540,14540 +373022,373022 +32140,32140 +33828,33828 +19270,19270 +15560,15560 +382101,382101 +21919,21919 +201025,201025 +390632,390632 +6791,6791 +7937,7937 +40574,40574 +180224,180224 +125836,125836 +14623,14623 +245515,245515 +34144,34144 +16640,16640 +7124,7124 +21298,21298 +149843,149843 +120042,120042 +6079,6079 +246269,246269 +40594,40594 +274753,274753 +8523,8523 +46701,46701 +22806,22806 +32306,32306 +172218,193593 +29527,29527 +17826,17826 +385544,385544 +155511,155511 +228314,228314 +61927,61927 +401526,401526 +131243,131243 +146168,146168 +261828,261828 +11607,11607 +262408,262408 +23273,23273 +297209,297209 +261068,261068 +373542,206904 +24919,24919 +80577,80577 +205087,205087 +16513,85965 +383201,256804 +231379,231379 +270128,270128 +174989,174989 +168252,168252 +130647,130647 +316995,316995 +139681,139681 +244523,244523 +29092,29092 +7773,7773 +18856,18856 +39012,39012 +2934,2934 +217366,217366 +134074,134074 +185048,185048 +106204,106204 +423427,2633 +189100,189100 +344098,344098 +246474,246474 +26369,26369 +28403,28403 +32268,32268 +24502,24502 +260751,32441 +24411,24411 +23082,18817 +85510,85510 +391679,391679 +346422,346422 +383441,383441 +281661,281661 +22065,22065 +42952,42952 +278682,278682 +13577,13577 +163046,163046 +43879,43879 +267206,267206 +20768,20768 +262813,262813 +39196,39196 +352281,352281 +416763,416763 +93204,93204 +183233,811 +264006,345586 +422846,422846 +374125,374125 +89105,89105 +286580,286580 +198986,198986 +298419,21990 +284897,284897 +24144,24144 +19885,19885 +23648,23648 +281519,294531 +32279,32279 +49380,49380 +35835,35835 +12087,12087 +16625,16625 +87898,87898 +13015,232444 +100449,100449 +4986,4986 +88755,88755 +18999,18999 +308696,308696 +41228,41228 +125434,125434 +19905,19905 +296361,296361 +302327,32441 +38967,38967 +188568,188568 +38482,38482 +32853,32853 +42791,42791 +39746,39746 +12091,12091 +298959,298959 +15204,15204 +14875,14875 +29122,29122 +15010,15010 +54748,54748 +4703,4703 +7419,7419 +26904,26904 +4533,4533 +744,744 +184155,184155 +8052,8052 +146576,146576 +395080,395080 +41719,41719 +174130,174130 +288334,288334 +36794,36794 +261487,261487 +16294,16294 +285626,285626 +144257,144257 +199942,199942 +217235,217235 +351729,351729 +15176,15176 +28438,28438 +31737,31737 +113686,113686 +224990,224990 +18928,18928 +28342,28342 +1807,1807 +9255,9255 +233081,254614 +15336,15336 +24065,20697 +243487,243487 +35694,35694 +262383,451 +28854,28854 +69900,93971 +336505,336505 +141904,141904 +27496,27496 +284033,284033 +386186,386186 +6218,6218 +67691,219900 +363759,363759 +14273,63975 +172698,172698 +85469,85469 +119369,3720 +24974,24974 +31782,31782 +239093,239093 +7932,7932 +7413,7413 +147859,126108 +356015,356015 +33705,33705 +143888,143888 +391933,4864 +23815,23815 +21121,21121 +8004,8004 +23788,23788 +297123,297123 +219437,219437 +206854,206854 +4813,4813 +8076,8076 +320751,320751 +34523,34523 +287473,165628 +235120,235120 +116142,6830 +389029,389029 +177504,177504 +99569,99569 +210499,210499 +11267,11267 +2508,2508 +176342,176342 +23352,167707 +86884,86884 +70943,70943 +1179,1179 +6243,6243 +11140,11140 +99067,99067 +5497,5497 +3101,3101 +318552,318552 +6435,6435 +32323,32323 +189143,189143 +336360,336360 +5838,5838 +14703,14703 +13898,13898 +3555,3555 +8313,3309 +15409,15409 +170950,170950 +9688,9688 +16241,16241 +12006,12006 +261486,261486 +8489,8489 +311675,311675 +251515,251515 +186107,186107 +279273,279273 +30677,30677 +341932,341932 +95128,95128 +4647,4647 +116331,116331 +4402,4402 +6788,6788 +205769,205769 +154022,154022 +22953,22953 +24142,24142 +114689,89668 +207187,207187 +379106,379106 +261578,261578 +25195,25195 +114145,114145 +11970,11970 +174344,174344 +39549,39549 +245159,245159 +426343,426343 +35929,35929 +131530,131530 +3693,3693 +127215,127215 +123807,123807 +184002,184002 +257094,257094 +429190,429190 +243671,243671 +69865,69865 +30988,3939 +365187,365187 +389784,389784 +320714,320714 +353682,353682 +86316,86316 +163100,163100 +15315,15315 +362954,362954 +411566,378953 +14362,14362 +214427,214427 +358572,358572 +6207,6207 +57244,57244 +42725,42725 +311914,311914 +140589,140589 +44766,44766 +218194,218194 +188014,188014 +26053,26053 +204735,204735 +8380,3711 +9903,9903 +269731,269731 +232241,232241 +3675,3675 +3611,3611 +118934,118934 +278578,278578 +241245,241245 +117987,71099 +251354,251354 +62052,62052 +2784,2784 +300022,300022 +356813,356813 +75,169328 +5057,5057 +389099,355516 +201637,201637 +50442,50442 +107549,107549 +11826,11826 +336,336 +151947,151947 +396789,396789 +380131,380131 +284500,284500 +378882,378882 +257225,257225 +135473,135473 +285889,285889 +36922,36922 +404813,404813 +110953,110953 +402776,377631 +305958,305958 +358338,358338 +402328,402327 +367439,367439 +111998,111998 +29982,29982 +22081,22081 +36567,36567 +70047,70047 +142765,142765 +162249,162249 +19026,463 +205278,205278 +85815,85815 +4776,4776 +36308,36308 +267975,267975 +428628,428628 +69410,69410 +28052,28052 +283843,273699 +118713,118713 +2996,2996 +172275,172275 +10574,10574 +16649,16649 +129272,129272 +91624,91624 +31785,31785 +113733,113733 +139634,139634 +30814,30814 +57134,57134 +119708,119708 +60313,60313 +94074,94074 +111737,111737 +168935,168935 +3591,3591 +208156,208156 +280083,280083 +331182,331182 +22101,22101 +24234,24234 +6985,6985 +134164,134164 +286429,230560 +187279,187279 +153710,153710 +3541,3541 +262513,262513 +401312,253664 +35632,35632 +199935,197585 +330251,330251 +19780,19780 +167759,167759 +166110,166110 +205168,205168 +139587,139587 +125187,125187 +89221,89221 +17238,17238 +63256,63256 +423717,423717 +44509,44509 +18977,18977 +46996,46996 +173860,173860 +182881,182881 +2390,2390 +246509,246509 +63182,63182 +117953,117953 +370225,370225 +376687,376687 +9883,9883 +87258,87258 +214881,214881 +151490,151490 +236826,236826 +260047,260047 +398147,398147 +136529,136529 +274023,274023 +99622,99622 +376692,376692 +156441,140100 +157920,157920 +65059,65059 +179111,158991 +183665,183665 +30944,30944 +35781,35781 +21646,21646 +255526,255526 +234103,234103 +159087,458 +245696,245696 +153669,153669 +238884,234292 +4096,4096 +10871,10871 +131435,131435 +169459,169459 +357188,357188 +15602,15602 +217789,217789 +40908,40908 +58694,58694 +346615,346615 +147523,105134 +18365,18365 +288432,288432 +434149,434149 +175320,175320 +426368,426368 +382165,382165 +61848,61848 +331148,331148 +16969,16969 +396608,396608 +217192,217192 +220237,220237 +24588,24588 +315363,316947 +67970,67970 +356968,356968 +13086,13086 +371232,463 +17972,17972 +55680,55680 +17889,17889 +167473,167473 +391257,391257 +7873,7904 +140785,140785 +373434,373434 +188233,188233 +129346,129346 +4348,4348 +30718,30718 +21334,21334 +104062,104062 +18550,18550 +13797,13797 +23393,23393 +218325,218325 +385724,385724 +288801,288801 +162748,162748 +147829,147829 +18994,18994 +10204,10204 +188818,463 +34915,34915 +229736,229736 +217486,217486 +417607,417607 +187984,187984 +430522,312504 +255957,255955 +385769,385769 +311185,311185 +376796,376796 +172068,172068 +387762,387762 +425857,425857 +424578,424578 +426872,426872 +381597,351621 +151469,151469 +187929,187929 +389293,389293 +406955,406955 +295470,295470 +37769,37769 +401394,401394 +29181,29181 +333387,333387 +68162,68162 +113459,113459 +230432,230432 +339048,339048 +112807,112807 +272529,272529 +244224,244224 +132312,132312 +134226,134226 +32059,32059 +124161,124161 +362925,362925 +271557,271557 +427111,427111 +231163,231163 +386399,386399 +430889,430889 +25368,25368 +295839,295839 +255741,255741 +392191,392191 +377416,377416 +70373,70373 +159737,159737 +30829,30829 +43547,43547 +422593,422593 +341757,341757 +154096,154096 +99532,99532 +291430,291430 +31816,31816 +38417,38417 +135278,135278 +17463,17463 +22773,22773 +327783,336962 +23449,23449 +180758,180758 +349476,349476 +433396,433396 +37600,37600 +423410,423410 +164637,164637 +157393,157393 +172890,172890 +299081,299081 +156176,156176 +206843,206843 +129305,129305 +132946,132946 +4782,4782 +357884,357884 +418471,270270 +380521,380521 +159448,159448 +321541,321541 +163613,261451 +277867,277867 +388544,388544 +395676,395676 +31226,31226 +413401,11821 +334524,334524 +18020,18020 +419835,419835 +286913,286913 +376766,376766 +310776,310776 +38366,38366 +371369,371369 +327781,336962 +407721,407721 +386130,386130 +86809,86809 +140542,140542 +424151,424151 +392779,392779 +330045,330045 +188488,188488 +299085,105355 +220037,220037 +262760,262760 +426159,426159 +97839,97839 +217988,217988 +361024,361024 +370260,370260 +365607,365607 +255980,255980 +66105,66105 +256410,256410 +329369,329369 +165736,165736 +239564,239564 +413491,413491 +429779,429779 +311713,311713 +33582,33582 +254398,254398 +216867,216867 +357253,3119 +270856,270856 +69597,69597 +133829,133829 +304743,304743 +202062,202062 +271842,271842 +86666,86666 +122135,122135 +31022,31022 +103529,103529 +210206,210206 +126683,126683 +428487,428487 +296695,296695 +364770,364770 +264790,264790 +150287,150287 +324473,324473 +158614,158614 +240231,240231 +289412,289412 +60608,60608 +144285,144285 +320200,320200 +35096,35096 +204793,299 +4462,4462 +194520,194520 +359456,359456 +302030,302030 +144725,144725 +125905,125905 +81487,81487 +172695,172695 +427459,427459 +332492,195903 +277221,277221 +288017,198629 +407211,407211 +35379,35379 +227222,227222 +38469,38469 +283369,283369 +254257,252524 +131582,131582 +113115,113115 +394606,394606 +164578,164578 +367235,367235 +327291,327291 +27731,27731 +156564,156564 +239641,239641 +265673,265673 +33488,33488 +65354,65354 +301435,301435 +312930,312930 +324293,324293 +238127,238127 +109551,109551 +424372,424372 +431257,431257 +353429,353429 +306530,306530 +405331,405331 +341584,341584 +408755,408755 +202217,202217 +254271,254271 +163561,163561 +318,318 +352166,163343 +431344,431344 +306991,306991 +163489,163489 +316184,316184 +130062,130062 +133797,133797 +67770,67770 +136602,136602 +225802,225802 +330667,330667 +245359,245359 +297346,18154 +327901,327901 +370285,370285 +296729,42101 +375503,375503 +410215,410215 +145618,145618 +689,689 +143755,143755 +317937,317937 +303719,303719 +434661,434661 +320261,320261 +380440,380440 +430961,430961 +395312,395312 +348184,348184 +331411,331411 +316604,316604 +376680,376680 +247423,247423 +428298,428298 +109893,109893 +225710,225710 +400919,400919 +29038,29038 +406331,406331 +404356,404356 +238304,238304 +330229,330229 +38537,38537 +359202,359202 +223551,223551 +200287,200287 +89576,89576 +27703,27703 +26929,26929 +130203,130203 +23594,23594 +371955,371955 +402939,402939 +326638,326638 +423162,423162 +152412,152412 +366455,366455 +429406,429406 +137039,137039 +199905,199905 +327743,336962 +175759,175759 +256590,180845 +311098,311098 +386960,386960 +150113,150113 +392470,392470 +224220,224220 +373015,187012 +96907,96907 +237899,237899 +428280,428280 +270300,270300 +29133,29133 +339943,339943 +396346,396346 +297564,297564 +301220,380821 +425606,425606 +348102,299069 +187266,187266 +32012,32012 +149678,149678 +426039,7806 +301615,301618 +246410,246410 +368632,368632 +349629,349629 +333442,333442 +25078,25078 +289647,289647 +306539,306539 +282247,282247 +417690,417690 +393357,393357 +169498,169498 +331433,312968 +141876,141876 +277236,277236 +142688,142688 +352829,352829 +197549,197549 +67934,67934 +386830,386830 +282497,282497 +67778,67778 +278991,278991 +32170,32170 +262001,262001 +297233,297233 +307453,307453 +37717,37717 +206721,206721 +431110,431110 +357682,357638 +65625,65625 +315639,315639 +34697,34697 +14340,14340 +109853,109853 +188909,463 +155696,155696 +419332,419332 +414553,414553 +296497,296497 +68875,68875 +147857,126108 +300194,300194 +275531,275531 +144411,144411 +348320,348320 +154359,154359 +356418,174243 +360817,360817 +425477,425477 +196782,196782 +420363,308565 +430609,430609 +153791,153791 +136382,136382 +38138,38138 +40013,40013 +429810,429810 +375409,375409 +269204,269204 +14713,14713 +404700,404700 +92005,92005 +327116,10657 +36294,36294 +320712,320712 +362875,362875 +297565,297565 +65701,65701 +150640,150640 +196135,85652 +398462,398462 +292183,292183 +308401,163343 +42833,42833 +162028,162028 +388440,388440 +262858,262858 +282423,282423 +39773,39773 +399732,399732 +326418,326418 +291778,291778 +341786,180845 +332732,332732 +322188,322188 +391771,391771 +354707,354707 +30862,30862 +26770,26770 +230800,230800 +31925,31925 +41405,41405 +307251,307251 +341336,32838 +405224,405224 +122109,122109 +422410,422410 +290068,290068 +430952,430952 +14689,14689 +362361,362361 +215615,215615 +37711,37711 +292385,292385 +429748,429748 +196635,196635 +323378,323378 +382465,169436 +354682,354682 +178802,178802 +110339,110339 +397079,397079 +286276,286276 +176195,176195 +227649,227649 +11851,11851 +310895,310895 +62048,62048 +376493,376493 +36331,36331 +255224,255224 +173459,173459 +250125,250125 +266837,266837 +390901,390901 +329438,329438 +422107,422107 +10824,10824 +421132,421132 +309111,309111 +130409,130409 +345805,345805 +420381,420381 +337649,337649 +345706,345706 +65405,65405 +196642,196642 +393866,393866 +139588,139588 +351144,351144 +340152,340152 +396973,396973 +360065,1720 +40453,40453 +239771,239771 +25694,25694 +278927,278927 +294672,294672 +386935,386935 +147071,147071 +415745,415745 +402769,402769 +357684,357638 +39550,39550 +65629,11821 +142275,142275 +34727,34727 +283417,283417 +379567,379567 +356009,356009 +351878,351878 +27285,27285 +137653,137653 +170421,170421 +162798,162798 +382474,382474 +144721,144721 +372730,372730 +393879,138729 +141867,141867 +28581,28581 +224742,224742 +430879,430879 +382785,382785 +426867,426867 +99890,99890 +335325,335325 +33055,33055 +35474,35474 +257679,257679 +413488,413488 +199186,199186 +24880,24880 +357702,357638 +319386,319386 +374168,374168 +367085,367085 +306648,306648 +148206,148206 +376559,376559 +372531,372531 +428015,428015 +174984,174984 +186291,186291 +408664,408664 +24879,24879 +198532,198532 +29042,29042 +358311,358311 +382627,382627 +96562,96562 +428359,428359 +376293,376293 +331306,331306 +43398,43398 +25542,25542 +402990,301263 +337171,337171 +410391,410391 +147709,147709 +42554,42554 +333057,333057 +354253,354253 +239700,239700 +121884,121884 +263390,265813 +347201,347201 +119809,119809 +283816,283816 +29587,29587 +136358,136358 +424522,424522 +217100,217100 +401398,401398 +427387,427387 +412907,412907 +58104,58104 +88145,88145 +417294,417294 +429862,429862 +47233,47233 +200717,200717 +391717,333182 +434150,434150 +169336,169336 +343714,343714 +232852,232852 +203525,203525 +338789,338789 +398914,398914 +413857,413857 +368814,368814 +222147,222147 +363797,363797 +343211,343211 +201506,201506 +334948,334948 +58616,58616 +391559,391559 +427177,427177 +341209,341209 +43117,43117 +150314,150314 +324128,324128 +344650,344650 +6823,6823 +324167,324167 +427673,427673 +173166,173166 +37970,37970 +228681,228681 +265809,265809 +300928,300928 +423932,423932 +426348,426348 +120131,120131 +400984,400984 +306952,306952 +169140,169140 +426908,426908 +171314,171314 +188979,188979 +378304,378304 +240684,240684 +224600,224600 +28897,28897 +339039,339039 +35975,26492 +71741,71741 +372621,372621 +95379,95379 +310570,310570 +149121,149121 +20175,20175 +265974,265974 +169750,169750 +375621,336189 +396900,396900 +425051,425051 +12806,12806 +426235,426235 +171318,171318 +123665,123665 +427060,427060 +402678,402678 +169090,169090 +346394,346394 +308025,308025 +276060,276060 +298677,298677 +111028,111028 +405680,405680 +286552,286552 +57948,57948 +309440,309440 +407212,407212 +343285,343285 +357681,357638 +404939,404939 +324605,324605 +324595,324595 +276902,276902 +181536,181536 +421010,421010 +19111,19111 +36410,36410 +223758,223758 +38513,38513 +215438,215438 +53748,53748 +329430,329430 +340397,340397 +187483,187483 +27941,27941 +315433,315433 +41580,41580 +433070,433070 +197011,197011 +369864,369864 +335761,335757 +327763,336962 +318508,318508 +284750,284750 +432492,432492 +197441,197441 +7211,7211 +414336,414336 +342985,342985 +134227,134227 +112670,112670 +151681,151681 +136272,136272 +379877,19435 +392612,392612 +236008,236008 +299123,299123 +289966,289966 +393437,393437 +19833,19833 +129814,129814 +39674,39674 +232796,232796 +39937,39937 +188983,188983 +89065,89065 +416341,416341 +297617,297617 +59513,59513 +298499,298499 +216135,216135 +27049,27049 +302592,302592 +97208,97208 +136858,136858 +414094,414094 +139552,139552 +410390,410390 +125456,125456 +386133,386133 +392696,392696 +40541,40541 +55123,55123 +155580,155580 +110787,110787 +168863,168863 +89346,89346 +327794,336962 +301216,301216 +6295,6295 +154771,154771 +187446,187446 +375545,375545 +32927,32927 +181497,181497 +166489,166489 +332522,332522 +378898,378898 +131834,131834 +41841,41841 +197167,197167 +361882,361882 +418249,418249 +259807,463 +36455,36455 +19066,19066 +309517,309517 +235469,27904 +419026,419026 +406719,184866 +58471,58471 +87868,87868 +431424,431424 +408714,408714 +405288,405288 +217185,217185 +179648,179648 +427555,427555 +374142,374142 +406103,406103 +166357,166357 +367481,367481 +224356,224356 +354626,354626 +362199,362199 +21988,21988 +432792,432792 +358905,358905 +103759,103759 +134600,134600 +165789,165789 +429121,429121 +432795,432795 +296773,70114 +179921,179921 +299788,299788 +176908,176908 +110433,110433 +421583,421583 +369091,369091 +378485,236072 +283716,283716 +393865,393865 +36197,36197 +420467,420467 +397433,397430 +38321,38321 +150267,150267 +333697,333697 +326505,326505 +193745,193745 +324555,324473 +28293,28293 +420942,420942 +129303,129303 +383235,383235 +361647,334987 +38131,38131 +262422,262422 +434140,434140 +227765,227765 +357697,357638 +127853,127853 +428582,428582 +9740,9740 +410233,410233 +310164,310164 +284134,284134 +419457,419457 +387759,387759 +25856,25856 +22933,22933 +420200,420200 +282420,282420 +145620,145620 +41705,41705 +78099,78099 +300074,300074 +173858,173858 +431839,431839 +420291,420291 +331489,331489 +136710,136710 +6319,6319 +234893,234893 +433407,433407 +65767,65767 +135853,135853 +378875,378875 +29354,29354 +30572,30572 +179920,179920 +183744,183744 +341142,341142 +301677,301677 +425009,425009 +175688,175688 +170627,10246 +28668,28668 +276975,276975 +227089,227089 +357683,357638 +35120,35120 +240929,240929 +150292,150292 +413705,413705 +423708,423708 +138173,138173 +32174,32174 +172349,172349 +428106,428106 +342028,342028 +21860,21860 +379820,379820 +147060,147060 +362592,362592 +43253,43253 +412094,374923 +29013,29013 +246002,246002 +223425,223425 +112093,112093 +377058,377058 +128817,128817 +342653,342653 +341423,341423 +421805,421805 +380372,380372 +423668,423668 +83650,83650 +122595,122595 +194560,194560 +347174,347174 +142582,142582 +194748,176936 +206546,206546 +225045,225045 +347882,347882 +23097,23097 +329422,329422 +359059,359059 +386278,386278 +413845,413845 +243442,243442 +154874,154874 +164148,164148 +128202,128202 +38816,38816 +197425,197425 +14820,77577 +188294,188294 +420159,420159 +353626,353626 +415149,415149 +430814,483 +193359,193359 +179603,179603 +84849,84849 +344575,344575 +229606,229606 +322619,322619 +341819,341819 +356434,356434 +401705,401705 +374069,374069 +298117,298117 +277026,335757 +118760,118760 +26644,26644 +28278,28278 +42878,42878 +31478,31478 +14760,14760 +231650,231650 +418009,256021 +38540,38540 +422546,422546 +356007,356007 +409847,409847 +212566,212566 +428992,428992 +295980,295980 +29862,29862 +302715,302715 +358179,358179 +423405,423405 +171450,171450 +363787,363787 +320942,320942 +135334,135334 +23747,23747 +344525,208437 +297700,67934 +364351,364351 +249782,249782 +303325,303325 +363652,363652 +180068,180068 +13680,13680 +186742,186742 +401555,401555 +127189,127189 +294236,294236 +132113,132113 +23595,23595 +422548,422548 +375720,375720 +318637,318637 +315277,315277 +36736,36736 +270735,270735 +195992,195992 +94372,94372 +197828,197828 +71622,71622 +363789,363789 +16288,16288 +36240,36240 +345288,345288 +379039,379039 +213839,213839 +9874,9874 +19567,19567 +26272,26272 +392620,392620 +427943,427943 +310298,9181 +201912,201912 +282648,282648 +277818,277818 +237030,146925 +301275,301275 +413497,413497 +158537,158537 +200406,200406 +388474,388474 +344961,344961 +329370,329370 +420330,420330 +277717,277717 +291160,35703 +430527,430527 +220408,220408 +237631,237631 +332118,332118 +339800,339800 +186359,186359 +227973,227973 +25886,25886 +421128,421128 +170856,170856 +58978,58978 +349961,349961 +204116,204116 +418475,418475 +216396,224742 +202792,202792 +82623,82623 +29329,29329 +291522,291522 +167878,167878 +63150,63150 +319244,319244 +43488,43488 +161834,161834 +420553,420553 +127760,127760 +41625,41625 +160759,160759 +328054,328054 +321010,321010 +371927,179931 +328684,328684 +17885,17885 +432806,432806 +433502,433502 +125680,125680 +163152,163152 +348946,348946 +146367,146367 +402758,402758 +179556,179556 +358750,358750 +58629,58629 +375381,375381 +35475,35475 +61517,61517 +211236,211236 +331753,331753 +147826,147826 +180397,56479 +122501,122501 +429874,429874 +31629,31629 +15137,15137 +83743,83743 +312505,312505 +387758,387758 +39851,39851 +275779,275779 +396930,396930 +397904,397904 +24554,24554 +288268,288268 +131928,131928 +343585,343585 +165507,165507 +347985,347985 +104181,104181 +59618,59618 +336262,336262 +30519,30519 +430637,370416 +425792,425792 +305251,305251 +202198,202198 +355889,355889 +377121,377121 +334884,334884 +34612,34612 +400899,400899 +326981,326981 +342544,395919 +204028,204028 +34679,34679 +252261,252261 +145389,145389 +151931,151931 +315278,315278 +240749,240749 +35913,35913 +408154,408154 +175029,175029 +359339,359339 +27051,27051 +385676,385676 +179695,179695 +17287,17287 +118768,118768 +286988,286988 +126216,126216 +113703,113703 +324611,324611 +231971,231971 +276837,276837 +140156,140156 +265803,265803 +337803,337803 +276482,276482 +179898,179898 +130201,130201 +412522,412522 +29343,29343 +35214,35214 +266362,266362 +31422,31422 +140629,183610 +36960,36960 +401111,401111 +417411,43022 +180640,180640 +167691,167691 +411432,411432 +309997,309997 +329072,329072 +107611,107611 +285432,285432 +63136,63136 +354513,354513 +38970,38970 +227431,227431 +377832,377832 +433368,433368 +337795,337795 +434347,434347 +313060,313060 +90176,90176 +144093,144093 +315894,389060 +109849,109849 +425209,425209 +393366,393366 +263363,263363 +279525,279525 +335979,335979 +433097,433097 +264996,264996 +118804,118804 +33889,33889 +427341,427341 +20470,20470 +23533,23533 +41750,41750 +252977,252977 +349284,349284 +31500,31500 +36436,36436 +42135,42135 +363370,363370 +154959,154959 +357510,357510 +419330,419330 +198815,198815 +113648,113648 +338017,341785 +343750,343750 +238405,238405 +271434,271434 +181150,181150 +18369,18369 +39762,39762 +401307,401307 +310302,310302 +312516,312516 +333193,333193 +19067,19067 +356746,356746 +204370,204370 +412815,412815 +180537,180537 +319934,319934 +94256,94256 +423514,423514 +327740,336962 +411747,411747 +267740,267740 +39300,39300 +362822,362822 +144081,144081 +22438,22438 +299523,299523 +12954,12954 +314114,314114 +251140,251140 +380268,380268 +371269,371269 +165420,165420 +18829,18829 +313710,313710 +387297,387297 +367859,367859 +97943,97943 +29665,29665 +373832,373832 +90928,90928 +417425,417425 +111199,111199 +302780,302780 +358209,358209 +376856,376856 +313574,132946 +39611,39611 +120218,120218 +14232,14232 +356867,356867 +211246,211246 +422669,422669 +38953,38953 +430603,430603 +423738,423738 +44911,44911 +372424,372424 +327742,336962 +170484,170484 +52504,52504 +190221,190221 +123773,123773 +27415,27415 +304427,304427 +378066,378066 +371839,371839 +6609,6609 +295760,295760 +262378,262378 +308718,138169 +36032,36032 +25116,25116 +368023,368023 +218474,218474 +292635,292635 +284095,284095 +302190,302190 +300444,300444 +414876,414876 +93814,93814 +337823,337823 +355017,355017 +104434,104434 +23125,23125 +263867,263867 +425228,425228 +327903,327903 +324801,324801 +169348,169348 +412006,412006 +352172,352172 +184051,184051 +42649,42649 +327185,327185 +178844,160211 +367548,367548 +309888,309888 +405304,405304 +425170,327130 +136254,136254 +359168,359168 +428750,428750 +420737,230765 +180035,180035 +239471,239471 +352976,352976 +358822,358822 +10876,10876 +179665,179665 +96768,96768 +234470,234470 +369389,369389 +180617,75782 +35300,35300 +17954,17954 +205415,205415 +167310,182820 +183415,183415 +28134,28134 +99306,99306 +174811,119864 +429926,429926 +364512,364512 +370401,370401 +424153,424153 +42564,42564 +390995,390995 +39364,39364 +432943,432943 +378982,378982 +386021,386021 +378555,378555 +371066,371066 +281649,281649 +365391,365391 +419063,419063 +56682,56682 +28665,28665 +428264,428264 +41629,41629 +341211,341211 +429956,429956 +129571,129571 +43583,43583 +401544,401544 +343139,343139 +423054,423054 +392636,392636 +380763,380763 +300334,300334 +402978,402978 +431089,431089 +21035,21035 +353665,353665 +419329,419329 +26415,26415 +318263,318263 +33724,33724 +245227,245227 +345028,345028 +176231,176231 +165079,165079 +312938,312938 +225795,225795 +92543,92543 +378483,378483 +139227,139227 +327248,327248 +417868,2375 +392099,329714 +180377,180377 +38939,38939 +141860,141860 +61597,61597 +176366,129513 +161302,161302 +64785,64785 +193961,193961 +109862,109862 +131658,131658 +431504,431504 +420797,420797 +147871,147871 +330562,330562 +28122,28122 +151509,151509 +279438,279438 +401722,401722 +310982,310982 +36433,36433 +429770,429770 +414198,414198 +434285,434285 +340438,340438 +70143,70143 +267061,267061 +304213,304213 +222855,222855 +425743,425743 +381731,381731 +13141,13141 +397210,397210 +365141,365141 +333476,333476 +30619,30619 +398630,398630 +128942,128942 +375383,375383 +226360,226360 +430836,430836 +383279,463 +95221,95221 +312771,312771 +400146,400146 +297813,297813 +402384,402384 +415024,415024 +30772,30772 +367417,367417 +299724,299724 +423078,423078 +272124,272124 +135583,135583 +41590,41590 +30320,30320 +401321,401321 +400785,400785 +379276,379276 +139951,139951 +38724,38724 +239950,239950 +224481,221848 +414235,414235 +292866,292866 +166653,166653 +178956,178956 +19799,19799 +253941,253941 +381737,381737 +431421,431421 +307993,307993 +288772,288772 +256928,256928 +179421,179421 +139712,139712 +169846,169846 +378896,378896 +30559,30559 +346509,346509 +292988,292988 +337236,337236 +253792,74 +113539,113539 +434124,434124 +346611,346611 +189193,189193 +12457,12457 +119503,119503 +354552,354552 +300602,300602 +32401,32401 +40246,40246 +145783,145783 +164932,164932 +427325,427325 +368807,368807 +318531,318531 +56805,56805 +165187,165187 +36217,36217 +25854,25854 +20887,20887 +146535,146535 +260868,297569 +259803,259803 +431980,293348 +422172,422172 +338394,338394 +291308,291308 +24498,24498 +113187,113187 +297443,297443 +332620,332620 +24772,24772 +427886,427886 +191053,191053 +180115,180115 +389547,389547 +85110,85110 +342262,342262 +403255,403255 +204491,204491 +134225,134225 +380371,380371 +191076,191076 +364050,364050 +421806,421806 +60399,60399 +186870,186870 +304740,304743 +95336,95336 +14604,14604 +399626,399626 +16073,16073 +182012,182012 +101270,101270 +170106,170106 +330430,330430 +433295,433295 +419553,419553 +240847,240847 +413334,413334 +433342,433342 +336343,336343 +319054,319054 +402451,402451 +32913,32913 +237158,237158 +23412,23412 +316678,316678 +353784,353784 +159842,104858 +137609,137609 +432493,432493 +383273,463 +272086,272086 +70216,70216 +52585,52585 +28178,28178 +33271,33271 +381417,381417 +73617,73617 +29322,29322 +215544,215544 +312387,312387 +182031,182031 +355507,355507 +119706,119706 +37088,37088 +83837,83837 +366372,366372 +37390,37390 +410665,410665 +35823,4292 +316370,316370 +412536,412536 +362007,362007 +29330,29330 +402248,402248 +357507,357507 +184072,179931 +289732,289732 +380441,380441 +430758,430758 +6168,6168 +103189,103189 +101521,101521 +223775,223775 +164701,164701 +69603,69603 +81034,81034 +350474,350474 +269394,269394 +34423,34423 +48759,48759 +335941,335941 +25378,25378 +423315,423315 +131592,131592 +420354,420354 +254272,254272 +419927,419927 +224083,224083 +318539,318539 +312768,312768 +351994,351994 +34181,34181 +109690,109690 +196519,196519 +390992,390992 +62417,62417 +293992,293992 +434158,434158 +397764,255546 +434656,434656 +31029,31029 +145368,145368 +284958,284958 +407018,407018 +158274,158274 +104897,104897 +329286,329286 +420466,420466 +365476,365476 +87096,87096 +299156,299156 +138508,138508 +193747,193747 +218930,218930 +433983,433983 +301374,301374 +432577,432577 +426852,426852 +140465,140465 +163142,163142 +33843,33843 +150654,150654 +349700,349700 +29172,29172 +343565,266589 +161090,161090 +371999,371999 +416392,2853 +377335,377335 +65467,15139 +119333,119333 +368559,368559 +99926,99926 +268978,268978 +348948,348948 +291581,291581 +121522,121522 +350481,350481 +209708,209708 +16134,16134 +67839,67839 +245228,245228 +426536,426536 +404445,404445 +131322,131322 +154930,154930 +300883,300883 +6690,6690 +126127,126127 +59869,59869 +406176,406176 +348464,348464 +230016,230016 +148420,148420 +226611,226611 +327795,336962 +329372,329372 +161847,161847 +41690,41690 +274467,274467 +251569,251569 +137546,137546 +299958,299958 +297263,297263 +202027,202027 +32056,32056 +369307,369307 +430494,430494 +410502,410502 +13360,13360 +307358,3901 +159440,35188 +36619,36619 +132839,129513 +200670,200670 +426665,426665 +322294,322294 +194508,194508 +39149,39149 +69158,69158 +327399,59576 +423751,423751 +430867,430867 +429148,429148 +365444,365444 +104610,104610 +152838,152838 +278601,278601 +34476,34476 +428684,208134 +379003,379003 +305659,305659 +348120,348120 +331841,331841 +27185,27185 +270371,270371 +89019,89019 +318618,318618 +411142,411142 +376697,376697 +305975,261711 +162586,162586 +432311,432311 +41403,41403 +431323,431323 +35905,35905 +14697,14697 +156929,156929 +37864,37864 +99701,99701 +35527,35527 +38190,38190 +24381,24381 +16269,16269 +12177,12177 +119931,119931 +31543,31543 +37074,37074 +247760,247760 +322512,322512 +392160,392160 +123210,123210 +421407,421407 +38302,38302 +406733,406733 +282345,282345 +42475,42475 +54874,54874 +57103,57103 +329659,329659 +35070,35070 +109478,109478 +15885,15885 +42501,42501 +298113,301263 +127295,127295 +292648,292648 +65401,63814 +340198,296185 +281003,281003 +95743,95743 +10238,10238 +125866,125866 +415903,415903 +389488,389488 +432258,432258 +163171,163171 +71892,71892 +242926,242926 +327953,1891 +33532,33532 +22002,22002 +324893,324893 +350585,350585 +126615,126615 +20719,20719 +144912,144912 +382132,382132 +183224,183224 +225574,225574 +33163,33163 +88293,88293 +402249,402249 +25330,25330 +37604,260334 +187812,187812 +363159,363159 +298540,298540 +344247,344247 +63766,63766 +204898,204898 +293549,323716 +406289,406289 +53863,53863 +100388,100388 +421819,421819 +71662,71662 +39849,39849 +340199,296185 +200668,200668 +60055,60055 +352990,352990 +187504,187504 +137850,137850 +122082,122082 +243763,243763 +38586,38586 +17115,17115 +53866,53866 +27064,27064 +293779,293779 +36441,36441 +33725,33725 +23529,23529 +308180,308180 +38426,38426 +69166,69166 +131161,131161 +19768,19768 +147996,147996 +409745,378271 +211916,211916 +341752,341752 +151375,151375 +293561,293561 +362332,362332 +69995,69995 +56634,56634 +364289,364289 +405878,405878 +43595,43595 +100389,100389 +122528,122528 +58880,58880 +429054,429054 +28505,28505 +155749,155749 +35116,35116 +244438,244438 +124104,124104 +409324,377304 +362675,24310 +41166,41166 +411477,411477 +294701,294701 +150882,150882 +428935,428935 +296253,296253 +154369,154369 +40088,40088 +182234,182234 +15925,15925 +113411,113411 +183029,183029 +31262,31262 +65188,65188 +158291,158291 +256761,256761 +9585,9585 +12690,12690 +414156,414156 +141547,141547 +328766,328766 +122608,122608 +328178,328178 +286280,206106 +89059,89059 +23071,23071 +7574,7574 +143848,143848 +6922,6922 +170449,170449 +4569,4569 +39730,39730 +233846,233846 +188535,188535 +94264,94264 +233778,20133 +117973,117973 +316447,1421 +23254,23254 +16572,16572 +40466,40466 +402404,352412 +180603,180603 +28393,28393 +20565,20565 +63072,63072 +316512,1421 +64242,64242 +209828,209828 +65588,65588 +306346,306346 +179015,179015 +128438,128438 +33666,33666 +149628,149628 +36586,36586 +173946,173946 +6161,6161 +131851,131851 +21317,21317 +61226,61226 +420389,420389 +322392,322392 +36533,36533 +35327,35327 +28890,28890 +102682,102682 +29874,29874 +120461,120461 +307576,307576 +31033,31033 +230083,230083 +11918,11918 +75530,75530 +170366,170366 +34140,34140 +13952,13952 +21921,21921 +95490,95490 +159467,159467 +5974,5974 +32817,32817 +19852,19852 +28634,28634 +101764,101764 +132488,132488 +128081,128081 +12703,12703 +140950,140950 +118740,118740 +82219,82219 +67998,67998 +27328,27328 +316513,1421 +39470,39470 +133819,133819 +206048,206048 +180873,180873 +316524,1421 +357980,357980 +50455,50455 +24514,24514 +70529,70529 +42386,42386 +310333,310333 +239947,239947 +36629,36629 +145264,145264 +38164,38164 +36104,36104 +31002,31002 +19730,19730 +37172,37172 +420099,420099 +386001,386001 +52108,52108 +147419,147419 +418339,418339 +95495,95495 +296718,292910 +346880,346880 +39894,99969 +26179,26179 +7901,7901 +187713,187713 +137015,137015 +25165,25165 +402619,402619 +42332,42332 +112645,112645 +317979,317979 +355138,355138 +156355,156355 +94910,94910 +281085,281085 +297514,297514 +326597,326597 +337192,337192 +154536,154536 +132144,132144 +316452,1421 +108078,108078 +219193,219193 +349146,349146 +37237,37237 +337640,337640 +316427,1421 +216868,216868 +65380,65380 +155353,155353 +41514,41514 +337890,337890 +177315,177315 +65202,65202 +205602,205602 +180941,180941 +338969,296556 +265469,265469 +16605,16605 +34487,34487 +72202,72202 +240148,240148 +16794,16794 +322270,217253 +176471,176471 +343582,343582 +63188,63188 +269398,269398 +245889,245889 +192126,192126 +27705,27705 +334391,334391 +270105,270105 +8270,8270 +417322,417322 +315528,315528 +245534,245534 +121612,121612 +14738,14738 +42225,42225 +32329,32329 +63733,63733 +335321,335321 +18388,18388 +27878,27878 +385586,385586 +125206,125206 +316511,1421 +424455,424455 +130507,130507 +380388,380388 +12092,12092 +61842,61842 +61859,61859 +362609,362609 +12384,12384 +178520,192746 +363902,363902 +148122,148122 +109852,109852 +19470,19470 +72091,72091 +156934,156934 +176446,176446 +271643,32441 +27238,27238 +18990,18990 +14448,14448 +35982,35982 +316666,316666 +23667,23667 +30946,30946 +26337,26337 +259495,259495 +33948,33948 +362162,362162 +38137,38137 +406294,406294 +273575,273575 +19004,19004 +18319,18319 +19563,19563 +421170,421170 +263665,263665 +350007,350007 +320005,320005 +319659,319659 +33821,33821 +365512,365512 +311470,311470 +410497,410497 +130429,130429 +66344,66344 +280583,147949 +352846,352846 +242739,242739 +217005,217005 +304261,304261 +15294,15294 +416218,416218 +130340,130340 +87468,87468 +321166,321166 +336845,336845 +316515,1421 +126570,126570 +392368,392368 +346232,346232 +286584,286584 +377457,377457 +316426,1421 +323604,323604 +18148,18148 +33999,33999 +375866,375866 +76539,76539 +287554,287554 +3580,3580 +37210,37210 +265021,265021 +14208,14208 +21857,21857 +19901,19901 +431631,431631 +148135,148135 +167471,167471 +66273,66273 +187718,243220 +76266,76266 +152278,152278 +373707,373707 +286444,286444 +69905,69905 +38317,38317 +262634,183626 +16704,16704 +141030,141030 +348943,348943 +140728,140728 +30631,30631 +36055,36055 +367242,367242 +101017,101017 +411565,378953 +272847,272847 +142148,142148 +359247,359247 +151844,151844 +10891,10891 +292140,292140 +405454,204836 +24887,24887 +38841,38841 +23206,23206 +327229,327229 +304433,304433 +264822,264822 +368743,368743 +70926,70926 +419137,419137 +325417,325417 +17096,17096 +116169,116169 +291832,291832 +320613,320613 +6484,6484 +376595,120870 +241647,241647 +34720,34720 +326739,326739 +62945,62945 +27043,27043 +9317,9317 +18224,18224 +182388,182388 +172254,172254 +58906,58906 +26007,26007 +81027,81027 +150082,150082 +171772,171772 +286239,286239 +12195,12195 +238447,238447 +368208,368208 +262536,262536 +13171,13171 +24711,24711 +177852,177852 +405478,405478 +174678,174678 +128111,17167 +421774,421774 +321315,321315 +132370,132370 +98551,98551 +39959,39959 +27507,27507 +262089,262089 +414153,414153 +6026,6026 +401886,401886 +134503,134503 +86673,86673 +43557,43557 +86750,86750 +423013,423013 +117939,117939 +408161,408161 +228143,17676 +116168,116168 +316439,1421 +326725,326725 +17943,17943 +163305,163305 +123736,123736 +36337,36337 +143699,143699 +391666,391666 +27545,27545 +134961,134961 +95375,95375 +297632,297632 +31270,31270 +11832,11832 +6091,6091 +46411,46411 +27107,27107 +20273,20273 +13776,13776 +306653,306653 +250777,250777 +192134,192134 +24992,24992 +85253,85253 +158625,158625 +136305,157593 +421611,143884 +428019,463 +3392,3392 +377564,377564 +114068,114068 +141506,141506 +410396,410396 +13181,13181 +293548,293548 +150075,150075 +381063,284987 +73812,73812 +25611,25611 +196350,196350 +194997,194997 +24851,24851 +396739,400209 +136376,136376 +365893,365893 +136497,136497 +349030,349030 +42002,42004 +11567,11567 +15720,15720 +6596,6596 +83280,83280 +23791,23791 +223761,223761 +85775,85775 +278140,341783 +39605,39605 +379034,379034 +13717,13717 +141014,141014 +67956,67956 +10560,10560 +118788,118788 +7629,7629 +326641,326641 +94835,94835 +9529,9529 +381206,381206 +183565,183565 +187113,187113 +34349,34349 +198109,198109 +143883,129513 +15001,15001 +14486,14486 +31908,31908 +241513,241513 +23782,23782 +356679,356679 +29738,29738 +139161,139161 +225938,225938 +3905,3905 +118943,118943 +15703,15703 +22642,22642 +240740,240740 +149825,149825 +13873,13873 +227280,227280 +12869,12869 +17808,17808 +29485,29485 +19629,19629 +7887,7887 +31653,31653 +9377,9377 +19291,19291 +38882,38882 +128082,128082 +248715,248715 +20430,20430 +8260,8260 +225570,225570 +16231,16231 +343676,343676 +245198,245198 +26401,26401 +72388,72388 +389491,389491 +20408,20408 +13496,13496 +406799,406799 +143985,143985 +18594,18594 +7137,7137 +9680,9680 +286155,286155 +14058,14058 +124599,124599 +23443,23443 +3332,3332 +22576,22576 +11374,11374 +9127,9127 +17029,17029 +94487,175498 +231395,231395 +113503,497 +35067,35067 +16305,16305 +385312,385312 +403147,403147 +40797,40797 +36411,36411 +291161,291161 +77443,77443 +39258,39258 +35092,35092 +103309,103309 +39366,39366 +347981,347981 +30128,30128 +175271,175271 +13192,13192 +279478,279478 +102870,102870 +247618,247618 +62364,62364 +125753,125753 +143560,143560 +15813,15813 +37692,37692 +406282,406282 +14832,14832 +238083,238083 +294683,294683 +21720,21720 +16164,16164 +27219,27219 +322879,322879 +125830,125830 +245486,186979 +297796,297796 +378569,378569 +230730,230730 +25869,25869 +329319,329319 +73554,73554 +37367,37367 +111810,111810 +140041,140041 +20878,20878 +65374,65374 +15027,15027 +39411,38781 +154487,154487 +16708,16708 +23794,23794 +130525,130525 +106075,106075 +178023,178023 +233538,233538 +2671,63975 +35616,35616 +68659,68659 +401006,401006 +32494,32494 +20939,20939 +328056,834 +10698,10698 +15966,15966 +64738,64738 +376279,376279 +364745,364745 +31854,31854 +227334,152245 +16140,16140 +16298,4971 +33687,33687 +329654,329654 +26731,26731 +21841,21841 +312462,312462 +63918,63918 +265815,265815 +311199,311199 +189004,189004 +427061,427061 +5238,5238 +139010,139010 +8917,8917 +33996,33996 +34683,34683 +14695,14695 +119816,119816 +41179,41179 +9256,9256 +33043,33043 +23164,23164 +16006,16006 +5398,5398 +13396,13396 +49179,49179 +211834,211834 +28710,28710 +15323,15323 +134660,134660 +208705,208705 +24975,24975 +2804,2804 +297524,297524 +158498,158498 +21307,21307 +201044,201044 +7122,7122 +147894,147894 +162887,162887 +65015,65015 +174767,174767 +41997,42004 +287823,287823 +33676,33676 +421779,421779 +10159,10159 +179721,179721 +32697,32697 +19299,19299 +21176,21176 +8417,8417 +311824,311824 +294315,17181 +15689,128500 +35641,35641 +8236,8236 +7687,7687 +417152,417152 +198264,198264 +295318,295318 +241015,241015 +111685,144412 +96042,96042 +21981,21981 +70379,70379 +22978,22978 +167506,167506 +33944,33944 +75851,75851 +33795,33795 +35760,35760 +148521,148521 +267444,267444 +242917,242917 +9355,9355 +218959,218959 +2084,2084 +375524,375524 +149281,149281 +17867,17867 +35963,35963 +172318,172318 +7376,7376 +7195,7195 +12786,12786 +242201,14441 +346429,346429 +163654,163654 +9107,9107 +14849,14849 +260763,463 +2451,2451 +129119,129119 +10364,10364 +23993,23993 +18158,18158 +249193,249193 +31036,31036 +262524,262524 +8278,8278 +7616,7616 +16230,16230 +91545,206854 +90738,90738 +165644,165644 +23869,23869 +153699,153699 +18614,18614 +157799,157799 +142070,142070 +381823,381823 +288479,288479 +115842,115842 +237304,237304 +92978,92978 +372436,372436 +18032,18032 +364495,364495 +251823,251823 +1728,1728 +32259,32259 +68473,68473 +5951,5951 +21977,21977 +255295,255295 +1089,1089 +55377,55377 +163330,163330 +20191,20191 +7268,7268 +37230,37230 +40598,40598 +20492,20492 +151601,151601 +18019,18019 +72721,72721 +87603,87603 +109703,109703 +48957,48957 +24152,24152 +363075,363075 +159081,463 +16010,16010 +128784,128784 +75062,75062 +366911,366911 +33898,33898 +67002,67002 +270030,270030 +8290,8290 +231997,231997 +14619,14619 +168869,168869 +5771,5771 +15329,15329 +284593,284593 +269730,269730 +17724,17724 +137355,137355 +334268,334268 +41901,41901 +177313,177313 +16179,16179 +35933,35933 +39682,39682 +22374,22374 +365243,365243 +333404,333404 +19279,19279 +21916,983 +60840,60840 +200463,200463 +283431,283431 +32526,32526 +354283,354283 +21074,6830 +148731,148731 +274054,274054 +371335,371335 +30797,30797 +207232,207232 +244149,143050 +24219,24219 +352184,352184 +61775,61775 +178630,178630 +205763,205763 +29546,29546 +29145,29145 +25212,25212 +8143,8143 +15255,15255 +398946,398946 +7738,7738 +371902,371902 +16331,16331 +23781,23781 +30263,30263 +184157,184157 +84971,84971 +93690,93690 +218701,218701 +246323,246323 +9097,9097 +358622,358622 +389223,389223 +240165,240165 +65830,65830 +171561,171561 +361480,361480 +13569,13569 +19221,19221 +208776,208776 +38339,38339 +32326,32326 +56264,56264 +3142,3142 +15252,15252 +7965,7965 +27779,27779 +342789,342789 +12279,12279 +8117,8117 +34417,34417 +110590,110590 +191530,191530 +136561,136561 +26420,26420 +252554,252554 +179204,1472 +12239,12239 +409925,85256 +237135,237135 +194736,194736 +220263,220263 +9271,9271 +24131,24131 +2019,2019 +171537,33643 +306760,306760 +351705,303322 +48154,48154 +93288,93288 +15265,15265 +1393,1393 +22767,22767 +42691,42691 +128180,128180 +260405,260405 +184494,184494 +335957,192283 +143769,143769 +4069,4069 +375160,375160 +246744,411542 +4431,1380 +154477,154477 +179124,179124 +145070,145070 +362482,362482 +283932,283932 +12209,12209 +27979,27979 +200775,200775 +145488,145488 +72680,72680 +419046,419046 +387282,387282 +414340,414340 +399371,399371 +108439,108439 +157389,157389 +58690,58690 +258672,258672 +177975,177975 +306001,306001 +11805,11805 +138219,138219 +8620,8620 +197113,197113 +208939,208939 +309571,309571 +239109,239109 +243755,243755 +17414,17414 +28508,2838 +75736,75736 +15784,15784 +28406,28406 +255676,255676 +110037,110037 +202664,202664 +6547,154934 +150925,30539 +3271,3271 +37127,37127 +93094,93094 +6869,63814 +37168,37168 +39944,463 +219278,219278 +241490,241490 +288877,288877 +310176,310176 +323170,323170 +160583,160583 +92081,92081 +381632,381632 +42473,42473 +17777,17777 +209168,209168 +175601,175601 +174163,174163 +213840,213840 +93428,93428 +163342,163342 +433425,433425 +130224,130224 +239310,239310 +432355,432355 +173751,173751 +89959,89959 +144577,144577 +102707,102707 +378745,378745 +351637,351637 +165800,165800 +165474,3669 +187373,187373 +156570,156570 +10803,10803 +10050,10050 +14322,14322 +182992,182992 +235299,235299 +40869,40869 +31994,31994 +35308,35308 +145874,145874 +221379,221379 +43390,43390 +203045,203045 +217962,217962 +145207,145207 +225426,225426 +98991,98991 +133966,133966 +15262,15262 +274101,274101 +107596,107596 +271239,271239 +18038,18038 +13162,13162 +4734,4734 +42687,42687 +16151,16151 +103466,103466 +56207,56207 +20864,20864 +335844,299069 +136241,136241 +16975,16975 +1774,10188 +56411,8790 +153553,153553 +262334,262334 +132145,132145 +41898,41898 +372848,372848 +428179,428179 +132327,132327 +414692,414692 +312443,312443 +135807,135807 +26674,26674 +30815,30815 +36696,36696 +58745,58745 +29666,29666 +33652,33652 +34456,34456 +40946,463 +353838,353838 +129504,40182 +141022,141022 +12339,12339 +7925,7925 +168234,168234 +238534,238534 +24716,24716 +3373,3373 +182215,182215 +227266,213266 +30936,30936 +388328,388328 +22578,22578 +158053,158053 +18163,192181 +19697,19697 +242992,246797 +30098,30098 +223034,223034 +21461,21461 +130117,130117 +163500,163500 +105872,105872 +133504,133504 +4729,4729 +370341,370341 +177574,177574 +302415,302415 +395935,395935 +426033,426033 +167414,167414 +420720,420720 +165573,165573 +187745,187745 +281148,281148 +130030,130030 +141073,141073 +33510,33510 +63168,63168 +112268,112268 +15529,312630 +16279,16279 +360796,360796 +16577,16577 +182216,174177 +16459,16459 +18349,18349 +354493,354493 +173099,173099 +88010,88010 +417458,417458 +222864,222864 +21473,21473 +211909,211909 +138223,138223 +6528,6528 +113518,113518 +40101,40101 +63492,63492 +10953,10953 +423419,423419 +224594,224594 +176011,176011 +219402,219402 +14720,14720 +9471,9471 +386188,386188 +30346,30346 +31458,31458 +13656,463 +1617,1617 +15195,15195 +85429,130680 +19475,11829 +406695,406695 +7269,7269 +133434,133434 +221361,221361 +7194,7194 +116104,116104 +342044,342044 +76465,76465 +39580,39580 +227571,227571 +352021,352021 +105871,105871 +70559,70559 +422070,422070 +405723,405723 +228805,228805 +37958,37958 +63347,63347 +307735,307735 +32983,32983 +180136,180136 +140798,140798 +49158,49158 +29484,29484 +19913,463 +157896,157896 +16896,16896 +6570,6570 +425077,425077 +65672,65672 +52514,52514 +17110,17110 +67206,67206 +24986,24986 +16203,16203 +205650,181429 +102670,102670 +232311,232311 +237184,237184 +10324,10324 +7217,7217 +279052,279052 +384176,384176 +189969,189969 +246217,246217 +1559,1559 +19763,19763 +821,821 +377568,377568 +18050,18050 +8585,8585 +373268,373268 +391253,391253 +128408,128408 +54798,54798 +119423,119423 +111830,111830 +264913,264913 +149839,149839 +191905,191905 +422875,169675 +19426,19426 +178451,178451 +419715,419715 +307522,8533 +422489,422489 +355465,355465 +225213,225213 +149792,149792 +369868,369868 +11335,16 +371865,371865 +401512,401512 +131162,131162 +286221,286221 +410125,410125 +230277,230277 +427882,427882 +176111,176111 +414535,414535 +22905,22905 +363034,363034 +365108,365108 +317099,317099 +343946,343946 +433792,433792 +194929,194929 +318409,318409 +119453,119453 +417367,417367 +129333,129333 +424859,424859 +420073,420073 +27602,27602 +422702,422702 +85430,85430 +313257,313257 +42819,42819 +22293,22293 +39895,39895 +382885,375321 +267632,267632 +40047,40047 +21744,21744 +330653,330653 +434136,434136 +419190,419190 +279474,279474 +305451,305451 +238251,238251 +251599,251599 +41888,41888 +231651,231651 +115623,115623 +334718,334718 +330240,330240 +266855,266855 +383966,383966 +428636,428636 +427983,427983 +390497,390497 +98297,98297 +402705,402705 +263385,263385 +420836,420836 +141883,141883 +205271,205271 +203275,203275 +407241,407241 +40917,40917 +101996,112807 +31108,31108 +377958,377958 +28924,28924 +410698,410698 +387746,387746 +322687,322687 +246198,246198 +299876,299876 +15677,15677 +286536,286536 +122080,122080 +341226,341226 +397237,397237 +425650,425650 +70333,70333 +432036,432036 +55215,55215 +33246,33246 +35919,35919 +87511,87511 +391136,391136 +117867,463 +123167,123167 +191061,191061 +337793,337793 +402557,402557 +404889,404889 +406145,406145 +133696,133696 +38930,38930 +155753,155753 +30455,30455 +328195,328195 +120961,120961 +396801,396801 +135769,135769 +424939,424939 +35113,35113 +308497,308497 +312283,312283 +343406,343406 +235901,224271 +280762,280762 +361543,361543 +293233,293233 +35176,35176 +396737,396737 +328538,328538 +328323,328323 +357040,357040 +359233,359233 +37667,37667 +419458,419458 +433727,433727 +99624,99624 +323047,323047 +97426,97426 +406287,406287 +406255,406255 +349111,349111 +87172,87172 +119531,119531 +306416,318409 +330686,330686 +277063,277063 +130582,130582 +255426,255426 +140679,140679 +401486,401486 +85697,85697 +41373,41373 +422645,422645 +372075,372075 +191080,191080 +50959,50959 +326748,326748 +424892,424892 +158282,158282 +69337,69337 +381808,381808 +196753,196753 +278901,273755 +423182,423182 +39658,39658 +127265,127265 +99537,99537 +421284,421284 +385938,385938 +43265,43265 +73335,73335 +386844,386844 +347204,347204 +38597,38597 +26598,26598 +355654,355654 +328341,328341 +373294,373294 +106045,106045 +38867,38867 +71977,71977 +217393,217393 +295097,295097 +341677,341677 +328409,328409 +353793,353793 +28793,28793 +316430,1421 +249594,249594 +120659,120659 +113563,113563 +24432,24432 +160659,160659 +379340,379340 +316446,1421 +22324,22324 +242696,242696 +369543,369543 +358658,358658 +184822,184822 +293234,293234 +373382,373382 +382904,382904 +114134,114134 +202695,202695 +38948,38948 +175779,175779 +20600,20600 +182117,182117 +64336,64336 +126926,126926 +330542,330542 +224541,224541 +373264,373264 +41873,41873 +245614,245614 +428077,428077 +376627,376627 +321867,321867 +21575,21575 +245361,190772 +44902,44902 +361360,361360 +127653,127653 +113549,113549 +194389,194389 +6171,6171 +184258,184258 +330125,330125 +248645,248645 +108636,108636 +26588,26588 +11377,11377 +121989,121989 +157143,157143 +57989,57989 +386060,386060 +8389,8389 +35601,35601 +355198,355198 +62868,62868 +388610,388610 +363161,363161 +85082,85082 +170045,170045 +36098,36098 +287641,287641 +320555,320555 +339901,339901 +430159,430159 +120208,120208 +59793,59793 +26879,26879 +119440,119440 +149637,149637 +34945,34945 +367200,367200 +24692,24692 +27320,27320 +372147,372147 +5653,5653 +322320,322320 +40377,40377 +427200,427200 +211727,211727 +124119,124119 +320544,320544 +193396,193396 +50689,50689 +141481,141481 +307795,307795 +410289,410289 +25549,25549 +152215,152215 +316448,1421 +208051,6321 +429474,429474 +142117,142117 +75605,75605 +17528,17528 +130075,130075 +37822,37822 +70341,70341 +33431,33431 +17837,17837 +131623,131623 +30257,30257 +242533,242533 +279089,279089 +171732,171732 +183504,183504 +376564,376564 +249340,249340 +39022,39022 +432152,432152 +66703,66703 +30646,30646 +164733,164733 +339192,339192 +71612,71612 +42398,42398 +182042,182042 +411087,411087 +144573,144573 +69123,69123 +86267,86267 +379385,379385 +202555,202555 +24858,24858 +24263,24263 +19667,19667 +426106,426106 +110907,110907 +140216,140216 +357881,357881 +182430,182430 +245955,245955 +334068,334068 +254364,254364 +42169,42169 +412115,411613 +310862,310862 +37306,37306 +316386,316386 +267573,267573 +8119,8119 +200026,200026 +38341,38341 +23028,23028 +264939,264939 +193957,193957 +373779,373779 +369859,369859 +15770,15770 +19382,19382 +144335,144335 +99427,99427 +21718,21718 +114417,114417 +370849,370849 +64784,64784 +301125,301125 +57506,57506 +253659,253659 +127936,127936 +353676,140155 +37788,37788 +3460,3460 +17879,17879 +403378,403378 +225258,225258 +70738,70738 +308389,308389 +110921,110921 +243372,243372 +313648,313648 +332581,463 +161083,161083 +224369,224369 +21474,21474 +16662,16662 +410000,410000 +100441,100441 +68892,68892 +174921,174921 +367362,367362 +395667,395667 +356774,356774 +33282,33282 +30055,30055 +8682,8682 +19942,19942 +316702,316702 +185625,185625 +6996,6996 +114230,114230 +382963,364425 +353663,353663 +120884,120884 +126719,126719 +136591,136591 +133563,36333 +26856,26856 +273580,273580 +269592,269592 +88255,88255 +25809,25809 +90221,90221 +15974,15974 +38615,38615 +33324,33324 +167244,167244 +35091,35091 +295004,295004 +26273,26273 +296310,296310 +299530,299530 +382962,364425 +31256,31256 +80993,80993 +81856,81856 +30050,30050 +33489,33489 +383256,383256 +89933,89933 +367368,367368 +374953,374953 +7426,7426 +7677,7677 +6074,6075 +162600,162600 +231532,231532 +306958,306958 +285759,147949 +152975,152975 +316443,1421 +57322,57322 +279098,279098 +303323,303322 +35013,35013 +164519,164519 +411272,411272 +72392,72392 +429169,429169 +333218,4052 +10777,10777 +26081,26081 +74421,74421 +78440,78440 +262494,262494 +31059,31059 +425666,425666 +177616,177616 +17604,17604 +370996,370996 +22560,22560 +119431,119431 +365374,365374 +19197,19197 +100097,100097 +343799,343799 +353165,353165 +20516,20516 +39996,39996 +320554,320554 +1454,1454 +125188,125188 +17288,17288 +102912,102912 +29461,29461 +23526,23526 +253438,253438 +320547,320547 +23960,23960 +305653,305653 +348071,348071 +322787,182 +33272,33272 +316449,1421 +73089,73089 +42732,42732 +139701,139701 +416778,416778 +421345,421345 +41578,41578 +6154,6154 +356986,356986 +294882,294882 +146590,146590 +189006,189006 +29091,29091 +156917,156917 +151505,151505 +317048,317048 +379858,379858 +21444,21444 +32714,32714 +358951,358951 +7115,7115 +362467,362467 +22004,22004 +106582,106582 +59527,56412 +104420,104420 +176221,176221 +238760,238760 +264061,264061 +33998,33998 +168028,168028 +280754,280754 +122083,122083 +316444,1421 +339675,339675 +226373,226373 +282139,282139 +23163,23163 +16978,16978 +135720,135720 +32176,32176 +87864,87864 +423504,423504 +90239,90239 +10044,10044 +201117,201117 +36437,36437 +198478,34104 +162118,162118 +79099,79099 +346788,346788 +374994,374994 +162177,162177 +302393,302393 +144447,144447 +331971,331971 +30322,30322 +38156,38156 +211148,211148 +14176,14176 +56493,56493 +66699,66699 +364998,364998 +376784,333182 +192521,192521 +396821,396821 +374442,374442 +432268,432268 +320688,320688 +55180,55180 +43235,43235 +408160,408160 +322796,322796 +66202,66202 +67763,67763 +79287,79287 +367697,367697 +2208,2208 +120797,120797 +7877,7904 +167572,167572 +58033,58033 +391882,391882 +327414,327414 +418323,418323 +408157,408157 +373085,373085 +181441,294294 +316454,1421 +131884,131884 +35010,35010 +391252,391252 +214467,214467 +207823,207823 +233988,233988 +31051,3939 +12815,12815 +38201,38201 +7220,7220 +131668,131668 +37486,37486 +340448,340448 +35206,35206 +316757,316757 +306963,306963 +276804,118536 +422428,422428 +377441,377441 +30429,30429 +171986,171986 +263383,263383 +417855,417855 +151894,151894 +34810,34810 +27399,27399 +189356,189356 +268683,268683 +95372,463 +358488,358488 +141839,141839 +160487,160487 +14262,14262 +285542,285542 +63006,63006 +375851,375851 +33975,33975 +93149,93149 +130469,130469 +17701,17701 +76202,76202 +418496,148575 +150528,150528 +58239,58239 +293919,293919 +182665,182665 +366959,366959 +28949,28949 +344087,344087 +180664,91425 +387940,387940 +5544,5544 +290701,290701 +40176,40176 +316516,1421 +420900,420900 +165514,165514 +330226,330226 +316451,1421 +292610,235451 +176989,176989 +6332,6332 +145917,145917 +30764,30764 +11526,11526 +278171,278171 +195333,195333 +109902,109902 +316514,1421 +25140,25140 +328691,328691 +358956,358956 +282513,282513 +357488,357488 +249419,249419 +114370,114370 +39712,39712 +28550,28550 +41269,41269 +67065,67065 +66165,66165 +175157,175157 +286149,286149 +28013,28013 +65138,65138 +406446,197790 +359286,359286 +70397,70397 +32667,32667 +188261,188261 +366273,366273 +15475,15475 +159429,159429 +19938,19938 +319319,319319 +320556,320556 +251749,251749 +20396,20396 +91095,91095 +246470,246470 +369924,369924 +316455,1421 +153434,153434 +20765,20765 +420012,420012 +232006,232006 +109226,109226 +17602,17602 +348963,348963 +319771,319771 +36103,36103 +251206,251206 +152560,152560 +158852,158852 +174894,174894 +14642,14642 +193931,193931 +230579,230579 +113071,113071 +377673,377673 +124507,124507 +316453,1421 +353410,353410 +324888,324888 +34329,34329 +199458,199458 +32209,32209 +226417,226417 +334389,334389 +316616,207899 +371877,371877 +20563,20563 +124956,124956 +270965,270965 +95232,95232 +355689,355689 +423235,423235 +7560,7560 +21233,21233 +330002,330002 +41522,41522 +132324,132324 +98416,98416 +353965,353965 +96437,96437 +387053,387053 +150817,150817 +380346,380346 +316385,316385 +80595,80595 +325060,325060 +24220,24220 +72744,72744 +417020,311715 +172752,172752 +265452,265452 +70462,70462 +416971,416971 +36015,36015 +9363,9363 +7285,7285 +368391,368391 +327309,59576 +21661,21661 +237603,237603 +187334,187334 +18283,18283 +241636,241636 +166534,166534 +304597,304597 +30104,30104 +188056,188056 +412059,412059 +306972,306972 +410372,410372 +38850,38850 +131227,131227 +29378,29378 +26525,26525 +365109,365109 +101767,101767 +14794,14794 +237230,237230 +279978,279978 +4590,4590 +63242,63242 +125587,125587 +396927,396927 +265676,265676 +349608,349608 +49174,49174 +377701,377701 +269851,269851 +217749,217749 +27952,27952 +111649,111649 +427179,36553 +316440,1421 +341774,341774 +171344,171344 +11617,11617 +310293,310293 +15907,15907 +103170,103170 +362715,235839 +346752,346752 +350280,77034 +33254,33254 +370446,370446 +354443,354443 +316650,316650 +349777,349777 +290508,290508 +406098,406098 +182498,182498 +6072,6072 +37300,37300 +36050,36050 +62949,62949 +325319,325319 +310120,310120 +295508,295508 +110265,110265 +137594,137594 +26325,26325 +16114,16114 +403439,403439 +184555,184555 +282443,282674 +18633,18633 +135468,135468 +59085,59085 +320140,320140 +108367,108367 +19586,19586 +51976,51976 +365075,365075 +38801,38801 +39344,39344 +345074,345074 +377780,377780 +69710,69710 +104280,104280 +149510,149510 +362713,362713 +255876,255876 +33281,33281 +33322,33322 +20226,20226 +306415,318409 +310896,245825 +204241,204241 +107996,1421 +318644,155994 +256040,256040 +25511,25511 +39681,39681 +31176,31176 +35830,35830 +421828,421828 +316431,1421 +235792,235792 +26121,26121 +23709,23709 +42454,42454 +292927,292927 +37375,37375 +34016,34016 +139678,139678 +330952,330952 +31513,31513 +267183,267183 +72819,72819 +181701,181701 +295373,287073 +256135,256135 +318355,318355 +126903,126903 +264857,264857 +11255,11255 +62411,62411 +173600,173600 +260681,260681 +65760,65760 +365196,86169 +35542,35542 +281208,198634 +225236,225236 +35413,35413 +37456,37456 +39053,39053 +263184,263184 +216679,216679 +375654,375654 +398679,398679 +343269,269546 +24268,24268 +138180,141747 +17733,17733 +5557,5557 +313117,313117 +72568,72568 +370451,370451 +22072,22072 +28663,28663 +18075,18075 +124325,124325 +47619,47619 +9744,9744 +63638,63638 +30262,30262 +227840,227840 +170389,170389 +39655,39655 +152216,152216 +163475,163475 +365912,365912 +375509,375509 +28593,28593 +26857,26857 +131295,131295 +35943,35943 +40164,40164 +50627,50627 +124279,124279 +405404,405404 +14062,14062 +34394,34394 +372407,372407 +424269,424269 +180864,180864 +212762,212762 +377796,377796 +36744,36744 +239177,239177 +424440,424440 +33653,33653 +301727,301727 +21519,21519 +160724,160724 +9183,9183 +215286,215286 +303707,303707 +312584,312584 +27801,27801 +353190,353190 +416282,416282 +38079,38079 +220945,220945 +12748,12748 +316433,1421 +42054,42054 +413715,413715 +361523,361523 +35825,35825 +25017,25017 +8169,8169 +161321,161321 +238271,238271 +348739,348739 +320542,320542 +425771,425771 +404262,404262 +152828,152828 +23951,23951 +104483,104483 +86593,86593 +327787,336962 +40852,40852 +96051,96051 +63137,63137 +36199,36199 +328155,328155 +242125,242125 +355206,355206 +29424,29424 +8305,8303 +143115,143115 +331014,331014 +351726,351726 +59882,59882 +130676,130676 +27487,27487 +62368,62368 +166002,166002 +109695,109695 +255722,255722 +9934,9934 +87969,87969 +20805,20805 +252149,252149 +98313,98313 +10004,10004 +60192,60192 +61640,61640 +4929,4929 +359088,359088 +332207,332207 +141807,141807 +382911,382911 +139221,139221 +323562,323562 +145829,145829 +28788,28788 +374048,374048 +153067,153067 +176325,176325 +171746,171746 +202565,202565 +327924,327924 +25094,25094 +328328,328328 +225430,225430 +39900,39900 +16624,16624 +96649,96649 +349285,349285 +24076,24076 +14505,14505 +21192,21192 +23113,23113 +22716,22716 +137877,137877 +27722,27722 +267365,267365 +65667,65667 +7313,7313 +20614,20614 +14415,14415 +405368,292732 +125833,192638 +23955,23955 +14210,26345 +337246,337246 +330819,330819 +368347,358789 +20490,20490 +42280,42280 +27695,27695 +34314,34314 +23825,23825 +420042,420042 +25268,25268 +33695,33695 +233782,233782 +147387,147387 +64981,64981 +360234,360234 +414314,115 +225937,225937 +27414,27414 +376777,376777 +377177,377177 +233747,233747 +30094,30094 +324857,324857 +396011,396011 +224803,224803 +172016,172016 +389096,389096 +49287,49287 +426844,368837 +115726,115726 +62799,62799 +145721,145721 +184885,159383 +177726,177726 +20944,20944 +82635,82635 +22906,22906 +426764,426764 +23628,23628 +31986,31986 +342494,342494 +15790,15790 +35221,35221 +278149,278149 +32829,32829 +349098,349098 +131497,131497 +153014,153014 +29989,29989 +295510,295510 +180013,180013 +37752,37752 +164290,164290 +265420,265420 +12885,12885 +90171,90171 +334270,334270 +14551,14551 +16453,16453 +30083,30083 +391729,391729 +43381,43381 +262078,262078 +112960,112960 +16426,16426 +12261,12261 +307736,307736 +20152,20152 +15130,15130 +29735,29735 +290836,290836 +298592,298592 +15634,15634 +419315,419315 +246260,246260 +12984,12984 +214939,214939 +30494,30494 +217582,217582 +6151,6151 +13842,13842 +251943,251943 +129816,129816 +102982,102982 +69576,69576 +142389,142389 +19575,19575 +20107,20107 +14838,14838 +41795,41795 +116349,116349 +18775,18775 +268563,268563 +10334,10334 +7408,7408 +160942,160942 +18364,18364 +98630,98630 +19384,19384 +228611,228611 +399743,399743 +238804,238804 +21712,21712 +94054,94054 +341586,341586 +32595,32595 +96251,96251 +413347,413347 +4151,4151 +365126,365126 +170769,170769 +38644,38644 +35100,35100 +169213,169213 +103799,103799 +293111,293111 +153015,153015 +339651,339651 +15565,15565 +257619,257619 +40407,40407 +201922,201922 +133652,133652 +304070,304070 +31692,31692 +24842,24842 +35464,35464 +352455,352455 +321722,321722 +21453,21453 +12863,12863 +333126,333126 +30571,30571 +8820,8820 +126629,126629 +91528,91528 +140043,140043 +253334,253334 +23996,23996 +28899,28899 +69776,69776 +104282,104282 +291343,291343 +147288,147288 +336613,336613 +115503,115503 +17264,17264 +20064,20064 +123439,123439 +40229,40229 +26303,26303 +124141,124141 +97385,97385 +142437,142437 +5915,5915 +42030,42030 +51865,379645 +354269,354269 +244857,244857 +168332,168332 +143660,143660 +40169,40169 +341274,341274 +64831,64831 +12359,12359 +100596,100596 +232936,232936 +4055,4055 +41146,41146 +13255,13255 +289994,289994 +6275,6275 +175935,175935 +240282,240282 +80621,80621 +321457,321457 +362681,362681 +12729,12729 +419709,419709 +21696,21696 +322131,322131 +98979,98979 +96265,96265 +296198,289801 +38157,38157 +16376,16376 +16966,16966 +124197,124197 +19561,19561 +305874,305874 +25077,25077 +65994,65994 +133558,133558 +64369,64369 +22735,22735 +42307,42307 +423412,423412 +62415,62415 +6951,6951 +176330,86156 +216005,216005 +355563,355563 +2465,2465 +29068,29068 +286055,286055 +33448,33448 +14749,14749 +421919,421919 +66763,66763 +2803,2803 +242916,242916 +33851,33851 +28243,28243 +292996,292996 +270042,270042 +10733,10733 +30058,30058 +130613,130613 +226765,226765 +336669,336669 +27483,27483 +25510,25510 +262978,262978 +279047,279047 +15960,15960 +361315,20133 +383738,383738 +296335,296335 +23364,23364 +30532,30532 +115304,115304 +137361,137361 +171942,463 +144385,144385 +14757,14757 +214667,248726 +126236,126236 +25523,25523 +410327,410327 +15405,15405 +28094,28094 +252656,252656 +23224,23224 +91736,91736 +95544,95544 +230818,9398 +7879,7879 +33994,33994 +10839,10839 +26959,26959 +381477,381477 +111204,111204 +31230,31230 +104374,104374 +37318,37318 +327622,327622 +155597,155597 +42824,42824 +26850,26850 +330288,330288 +38455,38455 +297795,297795 +26684,26684 +189410,189410 +42003,42004 +277702,277702 +328437,328437 +96267,96267 +149018,149018 +13692,13692 +41304,41304 +224671,224671 +49045,49045 +30927,30927 +428321,428321 +269905,269905 +223683,223683 +319310,319310 +89722,89722 +192130,192130 +186449,186449 +217196,217196 +42120,42120 +26453,26453 +22998,22998 +57920,57920 +31423,31423 +209008,209008 +5501,5501 +197642,197642 +216555,216555 +86881,86881 +253666,146963 +358142,358142 +2983,2983 +213957,213957 +45520,45520 +25527,25527 +19664,19664 +155735,155735 +19787,19787 +393458,393458 +217564,217564 +12710,12710 +11555,11555 +5846,5846 +54586,54586 +277011,277011 +350953,350953 +14466,14466 +54152,54152 +4765,4765 +13044,13044 +351389,351389 +367627,367627 +401622,401622 +349552,349552 +18798,18798 +330933,330933 +5892,5892 +162601,162601 +111396,111396 +19599,19599 +24648,24648 +171968,146408 +242199,14441 +34453,34453 +403443,403443 +7689,7689 +24143,24143 +23850,23850 +44448,44448 +289191,289191 +54708,54708 +140192,140192 +297643,297643 +25983,25983 +37342,37342 +5141,5141 +10454,10454 +118311,118311 +100469,100469 +23250,23250 +33597,33597 +274299,274299 +242200,14441 +667,667 +203000,203000 +165345,165345 +14727,14727 +362518,362518 +13523,13523 +34817,34817 +35990,35990 +274014,274014 +62000,62000 +348276,348276 +429763,429763 +11092,11092 +17196,17196 +15571,15571 +319323,319323 +276591,276591 +179194,179194 +28851,28851 +301967,301967 +351676,351676 +16717,463 +247896,247896 +216735,216735 +20433,20433 +43007,43007 +263874,263874 +200296,292732 +177876,177876 +179479,179479 +4167,4167 +40090,40090 +154689,154689 +110101,110101 +19807,19807 +225234,225234 +65827,65827 +6325,6325 +306746,306746 +346697,346697 +284590,284590 +86597,86597 +172398,172398 +14873,14873 +28194,28194 +59992,59992 +12228,12228 +148617,148617 +164633,164633 +19492,19492 +266899,266899 +269891,269891 +7412,7412 +136977,136977 +130530,130530 +266258,266258 +23363,23363 +38568,38568 +15829,15829 +184502,184502 +11876,11876 +240772,240772 +12628,12628 +22271,22271 +268845,268845 +19816,19816 +191129,191129 +60404,60404 +326032,142963 +355082,355082 +14002,14002 +8027,8027 +129505,129505 +32874,32874 +265088,265088 +180971,180971 +7409,7409 +326318,326318 +24098,24098 +326726,326726 +3088,3088 +15485,15485 +364737,364737 +176591,176591 +17698,17698 +13023,13023 +357869,357869 +32241,32241 +11048,11048 +131214,131214 +11538,11538 +3957,3957 +232920,232920 +241279,241279 +207686,590 +137774,137774 +270221,270221 +21562,8195 +19397,19397 +15092,15092 +6354,6354 +345461,345461 +209177,209177 +359658,359658 +39322,39322 +313754,313754 +247920,247920 +28643,28643 +182846,182846 +34680,34680 +20087,20087 +75279,75279 +280632,280632 +413040,413040 +218820,218820 +165709,165709 +27346,27346 +90189,90189 +128987,128987 +250659,250659 +63068,63068 +32498,32498 +19415,19415 +111645,111645 +21561,21561 +10418,10418 +203073,322131 +30688,30688 +11372,11372 +372729,372729 +357955,357955 +33903,52011 +345411,345411 +41043,145649 +196747,196747 +7582,7582 +283807,283807 +23728,23728 +12405,12405 +232251,232251 +19278,19278 +265245,265245 +96481,96481 +68640,68640 +40349,40349 +35089,35089 +142076,142076 +21636,21636 +172010,172010 +184887,184887 +12588,12588 +7906,7906 +8297,8297 +189589,189589 +40105,40105 +171497,171497 +5390,5390 +137158,137158 +5896,5896 +387565,387565 +8425,8425 +170788,170788 +284472,153830 +35115,35115 +216706,267832 +270064,270064 +30511,30511 +288020,288020 +3410,3410 +10566,10566 +347982,347982 +26063,26063 +11502,11502 +169077,169077 +77810,77810 +6945,6945 +21374,21374 +5484,3694 +9272,9272 +240698,240698 +15412,15412 +10917,10917 +35674,35674 +1226,1226 +189864,189864 +2175,2175 +5449,5449 +245528,173018 +46800,15512 +148721,148721 +140837,140837 +29227,29227 +36560,36560 +157385,157385 +148364,148364 +388104,388104 +187378,187378 +32936,32936 +252227,252227 +393348,393348 +422989,422989 +221449,221449 +11308,11308 +152428,144412 +420506,420506 +20578,20578 +7820,7820 +780,780 +168338,168338 +8844,8844 +337191,337191 +336368,336368 +15723,15723 +301215,267988 +333257,333257 +107039,107039 +330025,330025 +23367,23367 +353595,353595 +143269,143269 +376663,265912 +30770,30770 +2648,2648 +214194,214194 +27607,27607 +2035,2035 +86104,86104 +235506,235506 +406,406 +329095,329095 +157942,157942 +211661,211661 +159013,159013 +12217,12217 +166331,166331 +388337,388337 +160733,34444 +25518,25518 +254861,254861 +39949,39949 +379796,379796 +194419,174767 +31806,31806 +11406,11406 +253441,253441 +36143,36143 +65609,65609 +170096,170096 +324589,425602 +66894,66894 +116279,116279 +159479,159479 +281193,281193 +26733,26733 +29468,29468 +156395,156395 +94617,94617 +20070,20070 +188954,188954 +219199,219199 +140700,140700 +33119,33119 +143940,143940 +183004,183004 +26377,3270 +19850,19850 +9728,9728 +30031,30031 +158254,158254 +20819,20819 +110384,110384 +109995,109995 +26169,26169 +131861,131861 +164421,164421 +10016,10016 +115733,115733 +67429,67429 +171540,171540 +582,582 +137685,137685 +169988,169988 +21382,21382 +300527,300527 +26025,26025 +42860,42860 +235938,209362 +162461,162461 +309175,309175 +386311,386213 +414693,414693 +37229,37229 +66820,66820 +323022,323022 +281090,281090 +240812,240812 +367843,367843 +38313,38313 +18134,18134 +325242,325242 +162747,162747 +132380,132380 +28048,28048 +18852,18852 +12331,12331 +420468,287507 +31467,31467 +357959,357959 +154565,154565 +34117,34117 +16122,16122 +194411,194411 +170889,170889 +127317,127317 +337377,337377 +177750,212404 +216804,216804 +413238,413238 +238722,238722 +380454,380454 +103685,103685 +416529,416529 +8524,8524 +16005,16005 +311740,311740 +18910,3270 +374987,374987 +9601,9601 +60305,60305 +11301,11301 +273262,273262 +110774,110774 +11692,11692 +49431,49431 +25720,25720 +13603,13603 +359956,359956 +28649,28649 +14631,14631 +2438,2438 +337761,337761 +13294,13294 +26673,26673 +152287,152287 +311022,311020 +42907,42907 +25934,25934 +4868,4868 +2006,2006 +36429,36429 +206616,206616 +8600,8600 +400925,400925 +97985,97985 +323099,323099 +63361,63361 +101239,101239 +179629,179629 +140675,140675 +11951,11951 +220624,220624 +184473,184473 +22616,22616 +4655,4655 +305014,305014 +207871,207871 +325061,325061 +57814,57814 +362654,362654 +362818,362818 +164383,164383 +24639,24639 +8080,8080 +385964,385964 +64957,64957 +5634,5634 +132107,132107 +9593,9593 +289997,289997 +16938,16938 +28892,28892 +255297,255297 +40572,40572 +65359,65359 +189184,189184 +120899,120899 +10868,10868 +276889,276889 +155022,155022 +280200,280200 +314900,314900 +28693,28693 +42831,42831 +357283,357283 +297230,297230 +15388,15388 +187688,187688 +230061,230061 +27316,27316 +217365,91430 +195,195 +287575,287575 +421118,421118 +313544,313544 +19696,19697 +36299,36299 +7488,7488 +1306,1306 +125008,125008 +143359,143359 +261007,261007 +187186,187186 +19921,19921 +124378,124378 +394554,312786 +32194,32194 +15109,15109 +250319,250319 +30990,30990 +34767,34767 +285532,285532 +235471,235482 +118199,118199 +31707,31707 +278417,278417 +405279,405279 +72585,72585 +14089,14089 +340100,340100 +182126,182126 +325700,325700 +46951,46951 +399385,399385 +270167,270167 +113230,113230 +33806,33806 +35523,35523 +158070,158070 +360682,360682 +84417,84417 +431960,267732 +26056,26056 +211124,211124 +342087,342087 +98223,98223 +331295,331295 +310488,310488 +336278,336278 +147564,147564 +396992,396992 +38296,38296 +267767,267767 +33141,33141 +419672,419672 +231285,270661 +228585,228585 +118449,118449 +209858,209858 +225352,225352 +110912,110912 +432066,432066 +349085,319307 +332052,332052 +73102,73102 +40204,40204 +4602,4602 +16527,16527 +332859,332859 +245728,245728 +408723,160584 +434503,434503 +282518,282518 +223825,223825 +385613,385613 +50420,50420 +97865,97865 +418684,418684 +322082,322082 +109883,109883 +263182,63339 +94307,94307 +256064,463 +314539,314539 +241750,241750 +144505,144505 +311183,311183 +300969,300969 +23938,23938 +381508,381508 +367477,367477 +57749,57749 +372916,372916 +67241,67241 +117058,117058 +342951,342951 +39811,39811 +64137,64137 +207212,207212 +109372,109372 +427208,427208 +216489,216489 +129943,129943 +333403,333403 +190836,190836 +353962,353962 +102962,102962 +226054,161528 +323282,323282 +421195,421195 +363193,363193 +160628,160628 +8801,8801 +11451,11451 +37978,37978 +201750,201750 +374731,374731 +52047,52047 +13698,13698 +288468,288468 +164200,164200 +127772,127772 +366881,366881 +37040,37040 +394169,394169 +231652,231652 +133289,133289 +34372,34372 +258039,258039 +10796,10796 +10396,10396 +144050,144050 +283339,283339 +364031,364031 +357789,357789 +327035,327035 +372943,372943 +354662,354662 +41545,41545 +377967,377967 +324775,212404 +36251,36251 +320685,320685 +21819,21819 +354025,354025 +370915,370915 +277266,277266 +403213,403213 +410650,410650 +306944,306944 +24252,24252 +36950,36950 +424434,424434 +411392,411392 +39628,39628 +17042,17042 +25199,25199 +30650,30650 +393878,393878 +87197,87197 +168354,168354 +63633,63633 +24419,24419 +206993,206993 +406036,406036 +27057,27057 +294642,294642 +351489,351489 +361642,361642 +346485,346485 +137190,137190 +247442,247442 +295608,295608 +392804,392804 +391519,391519 +208869,208869 +66042,66042 +156047,156047 +109846,109846 +31372,31372 +226057,226057 +425046,425046 +422404,378988 +28698,28698 +27504,27504 +393284,393284 +357791,357791 +37327,37327 +34648,34648 +352933,352933 +109693,109693 +280607,280607 +116132,116132 +189630,189630 +329062,329062 +393356,393356 +207994,207994 +188327,188327 +30007,30007 +388186,388186 +262418,262418 +185223,185223 +321139,321139 +66350,66350 +9258,9258 +297335,297335 +32972,32972 +114911,114911 +27596,27596 +427260,328479 +359334,359334 +416788,416788 +248888,248888 +244467,244467 +35135,35135 +59088,59088 +14841,14841 +64779,64779 +414972,414972 +409908,409908 +5408,5408 +327917,327917 +428225,428225 +21737,21737 +319967,319967 +172845,172845 +154688,154688 +32535,32535 +242353,242353 +353009,353009 +365477,365477 +347330,347330 +91456,91456 +430317,430317 +284368,284368 +402329,402329 +109868,109868 +317252,317252 +39455,39455 +56323,56323 +39810,39810 +230959,230959 +63238,63238 +152326,152326 +57735,57735 +393923,393923 +35181,35181 +296147,296147 +178679,178679 +37285,37285 +397732,397732 +256961,256961 +433347,433347 +433305,433305 +218461,218461 +41348,41348 +250762,250762 +250760,250760 +383575,383575 +351365,351365 +183871,183871 +280732,280732 +173126,173126 +320011,320011 +336070,336070 +339284,339284 +292808,292808 +62185,62185 +143423,143423 +21950,21950 +348060,348060 +297986,297986 +108366,108366 +193790,193790 +80844,80844 +121885,121885 +132814,132814 +102601,102601 +171657,171657 +65456,65456 +363297,363297 +343628,343628 +410001,410001 +96539,96539 +331888,331888 +217402,217402 +304228,304228 +19037,19037 +164927,164927 +42430,42430 +381385,381385 +357374,357374 +24036,24036 +354384,354384 +327108,327108 +423247,423247 +260650,260650 +354995,354995 +296719,296719 +345613,345598 +319690,319690 +308467,308467 +284859,284859 +299542,299542 +123116,310820 +255499,255499 +418427,418427 +300335,300335 +42760,42760 +402617,402617 +34399,34399 +328705,328705 +42327,42327 +26232,26232 +63232,63232 +338854,338854 +297448,297448 +425298,425298 +347300,347300 +17647,17647 +264604,264604 +180743,180743 +253511,253511 +292710,292710 +39046,39046 +367746,367746 +196826,196826 +24849,24849 +135526,135526 +154644,154644 +97312,97312 +220705,220705 +352889,352889 +187004,187004 +162053,162053 +169269,169269 +386990,386990 +162403,162403 +185194,185194 +147443,147443 +331886,331886 +138796,138796 +42446,42446 +32343,32343 +261709,261709 +265479,265479 +367557,367557 +343827,343827 +409512,409512 +196515,196515 +292686,292686 +39559,39559 +58571,58571 +355902,355902 +28966,28966 +397796,397796 +426578,426578 +364730,364730 +353385,353386 +427651,427651 +59790,59790 +218626,218626 +187731,187731 +132178,132178 +400195,400195 +81440,81440 +120340,120340 +303679,303679 +36700,36700 +377730,377730 +174025,174025 +22752,22752 +62904,62904 +34672,34672 +181116,181116 +115347,115347 +398392,398392 +379108,379108 +419888,236305 +36281,36281 +38859,38859 +256886,256886 +420901,420901 +290862,290862 +306728,306728 +305383,305383 +432850,432850 +12064,261484 +69246,69246 +41642,41642 +128785,128785 +258699,258699 +224425,224425 +24064,24064 +342043,342043 +379193,379193 +183045,183045 +81752,81752 +429908,429908 +309282,309282 +9841,9841 +414023,414023 +151822,151822 +23524,23524 +23157,23157 +405481,405481 +29183,29183 +66962,66962 +377664,377664 +210386,210386 +159459,159459 +92100,92100 +268875,268875 +39198,39198 +108287,108287 +37314,37314 +300250,204895 +368303,368303 +311467,311467 +111079,111079 +386357,335954 +354829,354829 +355531,355531 +248642,248642 +383831,383831 +358946,358946 +94834,94834 +4706,4706 +197938,197938 +419971,419971 +24429,24429 +145200,145200 +372679,372679 +341596,341596 +216145,216145 +313932,313932 +170358,170358 +317158,317158 +357552,357552 +164640,164640 +5608,5608 +392149,392149 +111813,111813 +234275,234275 +131705,131705 +96998,96998 +57740,57740 +137564,137564 +23948,23948 +393825,393825 +333190,333190 +343839,343839 +354716,354716 +347510,347510 +402510,402510 +195989,195989 +98473,98473 +204427,204427 +401720,401720 +377414,377414 +296314,296314 +302587,302587 +35180,35180 +178057,178057 +426565,426565 +209697,209697 +333178,333178 +402773,402773 +374265,374265 +34107,34107 +434501,434501 +174259,174259 +32068,32068 +350242,350242 +216188,216188 +411007,411007 +42118,42118 +307796,307796 +39854,39854 +20540,20540 +433261,433261 +161212,161212 +36990,36990 +12678,12678 +427110,427110 +435073,435073 +66650,66650 +32763,32763 +357554,357554 +377635,377635 +86153,86153 +348233,348233 +96099,96099 +37577,37577 +20753,20753 +55525,55525 +429535,429535 +42160,42160 +12868,12868 +286489,286489 +316367,316367 +33113,33113 +186127,186127 +307054,307054 +224082,224082 +18140,18140 +36675,36675 +425603,425603 +133977,133977 +327966,327966 +16634,16634 +89405,89405 +428903,428903 +79332,79332 +400789,400789 +118176,118176 +38017,38017 +210177,210177 +406318,269526 +110338,110338 +34787,34787 +339334,339334 +38151,38151 +186798,186798 +10503,10503 +173561,173561 +433393,433393 +33613,33613 +145202,145202 +258124,258124 +308409,308409 +4992,4992 +322395,322395 +176354,176354 +232525,232525 +278539,278539 +270047,270047 +36260,36260 +38369,38369 +410261,410261 +186401,186401 +95908,32838 +248458,248458 +36682,36682 +193919,193919 +6150,6150 +142531,142531 +41575,41575 +430126,430126 +353434,353434 +301267,301267 +23132,23132 +373708,373708 +422882,422882 +43021,43021 +25500,25500 +159476,159476 +363642,363642 +190787,190787 +301252,301252 +36732,36732 +366320,366320 +363504,363504 +339376,339376 +330258,330258 +57281,57281 +307424,307424 +330934,330934 +23589,23589 +139125,139125 +416121,416121 +100112,100112 +421292,421292 +29806,29806 +37540,37540 +39120,39120 +274160,274160 +403643,367775 +426183,426183 +316176,316176 +387392,387392 +267733,267733 +98863,98863 +315065,315065 +402524,402524 +15621,15621 +191892,191892 +305172,305172 +306955,306955 +335909,335909 +177052,124132 +61540,61540 +272756,176229 +66989,66989 +19389,19389 +328212,328212 +138033,138033 +434466,434466 +169405,169405 +424803,424803 +368254,368254 +14686,14686 +335566,335566 +309054,309054 +361092,361092 +121899,121899 +359841,359841 +65382,65382 +304978,304978 +424313,370869 +337770,337770 +105030,5217 +145677,145677 +29766,29766 +404294,334488 +106679,106679 +414772,414772 +35119,35119 +223275,223275 +330579,330579 +289465,289465 +152420,152420 +266484,266484 +170330,170330 +283801,283801 +32621,32621 +348526,348526 +234380,234380 +33129,33129 +261373,261373 +169512,169512 +306873,306873 +344215,344215 +379082,379082 +333366,333366 +408033,408033 +249599,249599 +15762,15762 +33277,33277 +176852,218608 +307912,307912 +60371,60371 +324863,324863 +402432,402432 +401841,401841 +387722,387722 +106315,106315 +318089,318089 +421023,421023 +64748,64748 +32843,32843 +32587,32587 +175974,175974 +169761,150016 +312184,312184 +4820,4820 +162819,162819 +348674,348674 +26016,26016 +88631,88631 +352230,352230 +374254,374254 +158397,158397 +308077,308077 +171348,171348 +349136,349136 +358968,358968 +40389,40389 +311277,311277 +326128,326128 +408873,408873 +106083,106083 +20213,20213 +308728,308728 +41389,41389 +428361,428361 +272052,272052 +19593,19593 +299125,299125 +207851,207851 +390185,390185 +433108,433108 +87881,87881 +57187,57187 +119077,119077 +433073,433073 +174511,174511 +20210,20210 +64194,64194 +9764,9764 +269106,269106 +180072,180072 +128356,128356 +28632,28632 +145495,145495 +159942,159942 +339717,339717 +357788,357788 +171147,171147 +30378,30378 +394452,394452 +168253,168253 +13554,13554 +377527,377527 +150801,150801 +316081,316081 +166863,166863 +23395,23395 +66258,66258 +287297,287297 +332347,332347 +226010,226010 +143396,143396 +169518,169518 +381720,381720 +65514,65514 +304622,304622 +357792,357792 +32710,32710 +407580,407580 +86664,86664 +202729,50381 +144953,144953 +299541,299541 +38046,38046 +373988,373988 +366298,366298 +287488,287488 +27482,27482 +20870,20870 +391017,391017 +323704,323704 +376852,376852 +39347,39347 +359850,359850 +385272,385272 +40403,40403 +320062,285242 +133402,133402 +181806,181806 +179257,179257 +303851,303851 +23149,23149 +304673,304673 +127628,127628 +29868,29868 +258668,258668 +28837,28837 +310296,310296 +13504,13504 +145170,145170 +426847,426847 +291235,291235 +108121,108121 +31787,31787 +332008,332008 +136471,136471 +177974,177974 +109865,109865 +22021,22021 +42965,42965 +255557,255557 +167786,167786 +275084,275084 +433081,433081 +172652,172652 +247946,247946 +311232,697 +139095,139095 +65240,65240 +254190,254190 +40492,40492 +406448,197790 +204453,204453 +373989,373989 +380847,380847 +353963,353963 +69285,69285 +342907,342907 +390562,390562 +124547,124547 +42287,42287 +25085,25085 +21695,21695 +425233,425233 +28107,28107 +130411,130411 +29358,29358 +374721,374721 +24676,24676 +224388,224388 +378876,378876 +364205,364205 +108355,108355 +432352,432352 +229514,229514 +38414,38414 +136726,136726 +396110,396110 +404536,404536 +353341,29455 +397773,419323 +102118,102118 +162572,162572 +422698,422698 +379703,379703 +144982,4545 +434485,434485 +222936,222936 +291580,291580 +112083,112083 +12288,12288 +296696,296696 +348986,348986 +130477,130477 +301217,301217 +306108,306108 +388092,388092 +320457,320457 +425026,386031 +383487,383487 +140683,140683 +94950,94950 +81307,81307 +20158,20158 +57401,57401 +14268,14268 +24320,24320 +124076,124076 +4747,4747 +58246,58246 +260469,260469 +177006,177006 +353876,353876 +36760,36760 +237386,237386 +292337,328830 +33047,33047 +143587,143587 +86266,86266 +329418,329418 +405571,4366 +36955,36955 +12621,12621 +255673,255673 +326036,326036 +15301,15301 +300430,300430 +422357,422357 +198389,198389 +130451,130451 +35906,35906 +370442,370442 +17359,17359 +173349,173349 +3960,3960 +357787,357787 +130377,130377 +367556,367556 +158901,158901 +396971,396971 +270925,270925 +27954,27954 +378802,281121 +175651,175651 +270134,270134 +429953,429953 +410193,410193 +262227,262227 +28149,28149 +354965,354965 +264444,264444 +283696,283696 +44264,44264 +230928,230928 +41099,41099 +327002,327002 +347437,213964 +329105,329105 +357568,357568 +233237,233237 +357558,357558 +393921,393921 +21648,21648 +330253,330253 +370539,370539 +96419,96419 +31428,31428 +100443,100443 +141340,141340 +254393,254393 +273270,273270 +250433,250433 +106112,106112 +19798,19798 +287151,287151 +194021,194021 +209890,209890 +388821,388821 +376483,376483 +356298,356298 +392092,392092 +412629,412629 +332486,332486 +174664,174664 +417394,417394 +370447,370447 +19005,19005 +400158,400158 +117900,117900 +344100,344100 +172712,172712 +433211,433211 +114121,114121 +112378,112378 +28157,28157 +387932,387932 +22382,22382 +336537,336537 +378071,378071 +160974,160974 +25464,25464 +419205,419205 +393521,393521 +427262,427262 +386155,386155 +188853,188853 +15011,15011 +357785,357785 +378310,378310 +191596,191596 +392454,392454 +377462,377462 +411998,411998 +165705,165705 +93274,93274 +23865,23865 +267409,267409 +34236,34236 +15580,15580 +328411,328411 +57922,57922 +297512,297512 +144572,144572 +153819,153819 +76700,76700 +141733,141733 +30848,30848 +156197,156197 +417915,417915 +406925,463 +40552,40552 +270644,270644 +389200,389200 +202937,463 +287253,287253 +140152,140152 +26789,26789 +21232,21232 +354114,354114 +371316,371316 +86452,86452 +205029,205029 +97601,97601 +36067,36067 +66221,66221 +40074,463 +418517,418517 +375308,375308 +415987,415987 +309327,108310 +6296,6296 +64964,64964 +155561,155561 +36201,36201 +402025,402025 +279917,279917 +35104,35104 +96472,96472 +313470,373782 +309449,309449 +310295,310295 +404426,404426 +24550,24550 +321637,321637 +375284,375284 +284307,284307 +90565,90565 +190911,190911 +24178,24178 +147733,147733 +400179,400179 +27313,27313 +130702,130702 +42624,42624 +345930,345930 +252541,252541 +370094,370094 +29754,29754 +127424,127424 +249732,249732 +417664,417664 +357464,357464 +22681,22681 +265807,265807 +339443,339443 +418827,194819 +123124,123124 +131830,131830 +342919,342919 +360079,360079 +162045,162045 +430851,430851 +431017,204836 +44261,44261 +12596,12596 +34301,34301 +37132,37132 +31303,31303 +377086,377086 +34199,34199 +42013,42013 +338515,338515 +421542,421542 +26321,26321 +194660,194660 +277800,277800 +285753,285753 +20759,20759 +14086,14086 +235907,235907 +420342,420342 +324389,324389 +342167,342167 +312765,312765 +285214,285214 +99559,99559 +13104,13104 +32934,32934 +20405,20405 +221772,221772 +202614,202614 +72476,72476 +189305,189305 +234202,119472 +360483,360483 +29869,29869 +434246,434246 +325399,325399 +125375,125375 +410246,410246 +103533,103533 +364870,32441 +331417,331417 +40593,40593 +31374,31374 +143378,143378 +390994,390994 +32315,32315 +126537,126537 +320165,320165 +342905,342905 +375315,232267 +147260,147260 +154014,154014 +256199,256199 +31071,31071 +29363,29363 +85557,85557 +42985,42985 +257262,257262 +129006,129006 +29284,29284 +243155,243155 +19385,19385 +42425,42425 +138907,138907 +33096,33096 +24854,24854 +33027,33027 +3286,3286 +126055,126055 +155026,155026 +351894,351894 +39285,39285 +37055,37055 +21136,21136 +42363,42363 +131970,131970 +131152,131152 +60839,60839 +78698,78698 +385646,385646 +15963,15963 +169229,169229 +412532,412532 +284064,284064 +165449,164640 +99802,99802 +396135,396135 +85882,85882 +153310,153310 +69372,69372 +399829,399829 +177827,177827 +122858,122858 +32756,32756 +62913,62913 +37129,37129 +336615,336615 +329350,203958 +92103,92103 +6101,6101 +179911,179911 +169060,169060 +366319,366319 +103259,103259 +327851,336962 +35388,35388 +196171,196171 +197043,197043 +75849,75849 +357786,357786 +334990,334990 +156357,156357 +41848,41848 +341419,341419 +286298,286298 +308173,308173 +273154,273154 +390555,390555 +182712,182712 +352832,352832 +180088,180088 +45355,45355 +44664,44664 +30697,30697 +159468,159468 +23867,23867 +285851,285851 +420434,420434 +404185,404185 +24622,24622 +41453,41453 +298235,298235 +64146,64146 +171655,171655 +360067,360067 +113660,113660 +369512,369512 +286615,286615 +93870,93870 +223516,50381 +402552,402552 +345130,345130 +69319,69319 +433892,374145 +406968,406968 +338828,338828 +264992,264992 +218898,218898 +306243,306243 +5064,5064 +179986,179986 +104476,104476 +123812,123812 +376688,376688 +421604,421604 +354970,354970 +114827,114827 +371229,371229 +169922,169922 +420899,420899 +108698,108698 +107073,107073 +275282,275282 +89417,89417 +36809,36809 +334722,334722 +403272,403272 +34202,34202 +145484,145484 +297080,297080 +59541,59541 +352453,151936 +311498,311498 +337302,337302 +39153,39153 +146336,146336 +161572,161572 +89062,89062 +25016,25016 +15280,15280 +161932,161932 +34588,34588 +79551,79551 +195458,195458 +393285,393285 +195283,195283 +15132,15132 +40437,40437 +35124,35124 +302593,302593 +307113,307113 +40146,40146 +255364,255364 +390182,390182 +218673,25729 +31493,31493 +407232,74 +28741,28741 +45720,45720 +152608,152608 +383137,383137 +241224,241224 +241753,241753 +94957,94957 +190679,190679 +134146,134146 +306795,306795 +36028,36028 +41041,41041 +184948,184948 +373699,373699 +65678,65678 +287022,287022 +13145,13145 +231425,231425 +64086,64086 +352802,352802 +223424,223424 +415307,17591 +247422,247422 +84418,84418 +76261,76261 +42994,42994 +112465,112465 +11475,11475 +300584,300584 +134797,134797 +29871,29871 +315189,203958 +426910,426910 +180011,180011 +122968,122968 +426723,426723 +357587,357587 +88528,88528 +388326,388326 +57827,57827 +36872,36872 +182402,182402 +336046,336046 +371537,371537 +357629,357629 +146280,146280 +144521,144521 +143767,143767 +331358,331358 +410343,410343 +223924,223924 +153313,153313 +402450,402450 +10455,10455 +25888,25888 +59092,463 +118514,118558 +177507,177507 +358463,358463 +168787,168787 +342928,342928 +155710,155710 +35745,35745 +235538,235538 +381630,381630 +375391,375391 +33475,33475 +37813,37813 +421783,421783 +378803,378803 +180618,180618 +191752,191752 +33707,33707 +313739,373782 +249412,249412 +20919,20919 +88224,88224 +6309,6309 +377788,377788 +70124,70124 +296647,296647 +7293,7293 +376973,376973 +281540,281540 +21397,21397 +156480,156480 +391730,391730 +408421,408421 +357646,357646 +17508,17508 +287133,287133 +15983,15983 +4821,4821 +147273,147273 +370951,370951 +404350,404350 +108715,108715 +15794,15794 +268165,268165 +397746,397746 +430010,374145 +305988,305988 +326009,326009 +196321,196321 +338676,338676 +42089,42089 +162672,162672 +36452,36452 +247010,247010 +293059,293059 +182971,182971 +234318,234318 +116653,116653 +343156,343156 +413998,413998 +397601,397601 +398700,398700 +238270,238270 +305208,305208 +109803,109803 +33721,33721 +280895,280895 +27481,27481 +184097,184097 +287663,223096 +6172,6172 +353662,353662 +264337,264337 +41674,41674 +25327,25327 +296421,296421 +423874,423874 +144538,144538 +34405,34405 +109863,109863 +10748,10748 +280780,298618 +411932,411932 +423194,423194 +159345,159345 +32713,32713 +290651,290651 +83486,83486 +385587,385587 +205685,205685 +293681,293681 +38237,38237 +87422,87422 +37716,37716 +37936,37936 +29167,29167 +26891,26891 +142266,142266 +45313,45313 +414512,414512 +256937,256937 +74643,74643 +317571,317571 +258540,258540 +387160,387160 +42413,42413 +422528,422528 +297144,297144 +288585,288585 +51921,51921 +225667,225667 +21851,21851 +231869,231869 +402505,402505 +378910,358113 +195218,195218 +37414,37414 +240177,240177 +424572,424572 +209125,209125 +112312,112312 +346494,346494 +67314,67314 +58617,58617 +36353,36353 +26632,26632 +417975,417975 +372884,372884 +101762,101762 +96255,96255 +39395,39395 +322876,322876 +167920,167920 +382210,382210 +383167,383167 +71983,71983 +88561,88561 +423624,423624 +146106,146106 +366018,31949 +357560,357560 +422077,422077 +36542,36542 +419749,419749 +300585,300585 +343298,343298 +378057,378057 +25672,25672 +200626,200626 +365711,365711 +434230,434230 +432405,432405 +379704,379704 +369861,369861 +49418,49418 +172335,172335 +40257,40257 +70791,70791 +199453,199453 +33880,33880 +21427,21427 +37161,37161 +428123,428123 +360712,360712 +43034,463 +12259,12259 +414471,414471 +285284,285284 +280527,280527 +31494,144412 +309765,309765 +38352,463 +11067,11067 +14204,14204 +168079,168079 +27764,27764 +426454,426454 +240093,240093 +234443,234443 +38215,38215 +248103,248103 +145557,145557 +357722,357722 +298492,298492 +236867,236867 +25857,25857 +34736,34736 +186548,186548 +293110,293110 +373785,373785 +410615,3149 +380035,380035 +26597,26597 +37341,37341 +146210,146210 +56014,56014 +284667,284667 +359796,359796 +432205,432205 +339077,339077 +145684,145684 +311525,311525 +398758,398758 +33022,33022 +349623,349623 +30828,30828 +418553,418553 +405769,405769 +357645,357645 +423411,423411 +357544,357544 +357647,357647 +32250,32250 +98835,98835 +90924,90924 +420983,420983 +298584,25421 +300718,300718 +434293,434293 +19774,24833 +37980,37980 +64701,64701 +291402,291402 +410717,410717 +228437,228437 +14312,14312 +398459,398459 +51776,51776 +36451,36451 +198811,198811 +38463,38463 +366204,366204 +322399,322399 +358261,358261 +397380,397380 +370199,370199 +430976,430976 +243499,183405 +426603,426603 +71991,71991 +404884,85652 +12816,12816 +58702,58702 +258123,260469 +396653,396653 +18832,18832 +324315,324315 +30351,30351 +431202,431202 +169701,169701 +35412,35412 +147874,147874 +302379,302379 +121887,121887 +371532,371532 +303366,303366 +317383,317383 +41583,41583 +196062,196062 +352229,352229 +193964,193964 +345540,345540 +215034,215034 +31234,31234 +236413,236413 +109899,109899 +425293,425293 +322054,322054 +296818,296818 +95212,95212 +200206,200206 +115126,115126 +152436,152436 +359327,359327 +15276,15276 +73272,73272 +97498,97498 +39616,39616 +62890,62890 +317029,317029 +173943,173943 +322689,322689 +216554,216554 +392100,392100 +376282,376282 +422883,415036 +13892,13892 +358232,358232 +30229,30229 +145561,145561 +116787,116787 +10178,10178 +123134,123134 +427590,427590 +81431,81431 +422407,422407 +324997,324997 +370345,370345 +290170,290170 +159234,159234 +336129,336129 +184810,184810 +379314,379314 +186699,186699 +427393,427393 +115795,115795 +283846,283846 +429380,429380 +331261,331261 +245963,245963 +70508,70508 +314172,314172 +374632,374632 +33632,33632 +233792,233792 +92861,92861 +411008,8790 +222237,222237 +68936,68936 +201016,129346 +377929,377929 +282882,282882 +402736,27416 +268589,268589 +208591,208591 +426849,426849 +112695,112695 +57137,57137 +124077,124077 +188054,188054 +309020,309020 +401000,401000 +62715,62715 +85590,85590 +30034,30034 +148777,148777 +113743,113743 +161301,161301 +419411,419411 +42956,42956 +234214,234214 +30274,30274 +8908,8908 +189337,189337 +19238,19238 +179048,179048 +341259,341259 +9191,9191 +40538,40538 +374030,374030 +377374,377374 +427638,427638 +401179,401179 +29672,29672 +353940,353940 +357467,357467 +326723,326723 +155150,155150 +118769,118769 +412537,412537 +414943,414943 +406693,406693 +333095,333095 +37062,37062 +164697,164697 +423464,423464 +416814,1381 +109908,109908 +152464,152464 +34240,34240 +223161,223161 +10897,10897 +87414,87414 +414415,414415 +169702,169702 +256592,256592 +102116,102116 +60069,60069 +148583,148583 +125525,125525 +144782,144782 +24688,24688 +368705,368705 +42139,42139 +357555,357555 +352440,352440 +379371,379371 +287610,287610 +79185,79185 +322567,322567 +22613,22613 +284706,284706 +340843,340843 +399271,399271 +333872,333872 +109843,109843 +203106,203106 +354247,354247 +249588,249588 +381171,381171 +377440,377440 +152983,152983 +339844,339844 +341844,341844 +146808,146808 +29624,29624 +119332,119332 +140455,114684 +413272,413272 +230015,230015 +163708,163708 +34625,34625 +308697,308697 +238265,238265 +189412,189412 +29867,29867 +372927,372927 +337194,337194 +153927,119496 +109948,109948 +409642,409642 +408796,408796 +413643,413643 +319091,127493 +170745,170745 +55241,55241 +388419,388419 +121527,121527 +374440,374440 +23697,23697 +61393,61393 +357793,357793 +263099,263099 +229688,229688 +400635,400635 +408238,408238 +358696,358696 +319861,319861 +413645,413645 +228582,228582 +62367,62367 +137403,137403 +173894,173894 +410128,410128 +421704,421704 +65714,65714 +16099,16099 +417446,417446 +22096,22096 +30245,30245 +368722,368722 +358957,358957 +28833,28833 +357557,357557 +424548,424548 +23251,23251 +131943,131943 +353748,353748 +14510,14510 +300498,300498 +125965,178519 +28286,28286 +348219,348219 +26878,26878 +21159,21159 +84986,84986 +267308,267308 +307515,307515 +29219,29219 +410800,410800 +10233,10233 +124985,124985 +31989,31989 +357643,357643 +356779,356779 +17140,17140 +33929,33929 +177151,177151 +33896,33896 +335962,335962 +190755,190755 +339444,339443 +21129,21129 +330825,330825 +161974,161974 +16146,16146 +18326,18326 +342633,342633 +340162,340162 +278801,278801 +353259,353259 +422192,422192 +32999,32999 +411352,411352 +393163,393163 +278092,278092 +149493,149493 +424242,424242 +269550,269550 +423712,423712 +216420,216420 +286612,286612 +366128,366128 +404428,404428 +42107,42004 +237390,237390 +16303,16303 +41281,41281 +174577,174577 +200539,200539 +109886,109886 +433704,42448 +27791,27791 +118952,118952 +246016,246016 +13098,13098 +134179,134179 +231396,231396 +421937,421937 +10417,10417 +343606,343606 +189552,189552 +142445,142445 +381178,381178 +173638,173638 +183701,183701 +324942,324942 +46915,46915 +36564,36564 +284110,284110 +24890,24890 +404817,404817 +8779,8779 +414312,414312 +176343,176343 +119364,119364 +96693,96693 +37250,37250 +427434,427434 +174292,174292 +383718,383718 +301206,301207 +249681,249681 +148462,148462 +266166,266166 +409561,269595 +291157,35703 +147004,147004 +29062,29062 +95220,95220 +378909,378909 +408388,408387 +31773,31773 +414565,414565 +203225,203225 +357559,357559 +339624,339624 +223694,223694 +38752,38752 +419711,419711 +260755,260755 +122504,122504 +299142,299142 +30553,30553 +61710,61710 +382207,382207 +335537,335537 +162108,162108 +23696,23696 +22575,22575 +281249,281249 +286886,286886 +9281,9281 +366897,366897 +282785,282785 +370946,370946 +405292,280203 +322728,322728 +365094,365094 +284602,284602 +406853,406853 +282054,282054 +260940,204583 +309249,309249 +354272,354272 +355083,355083 +191324,191324 +19387,19387 +65935,65935 +137852,137852 +255899,255899 +337158,337158 +400999,400999 +408794,408794 +252663,252663 +430265,430265 +14409,17287 +40096,40096 +85475,85475 +24906,24906 +351901,351901 +102622,102622 +227568,227568 +42134,42134 +43001,43001 +29033,29033 +344499,344499 +381872,381872 +54587,54587 +99994,99994 +262194,262194 +100420,100420 +308952,308952 +207588,207588 +206834,206834 +366794,366794 +37888,37888 +160442,160442 +32281,32281 +15644,15644 +434241,434241 +275082,275082 +278629,278629 +30035,30035 +26028,26028 +134876,134876 +24647,24647 +158762,158762 +132557,132557 +86858,86858 +34620,34620 +24900,24900 +24606,24606 +298760,298760 +242536,242536 +321261,321261 +186180,186180 +244051,244051 +40361,40361 +380827,380827 +382487,382487 +237165,237165 +199828,199828 +376850,376850 +340154,340154 +167139,130004 +322605,322605 +434486,434486 +38382,38382 +378097,378097 +412551,412551 +379381,379381 +346247,346247 +321665,321665 +367045,367045 +15498,15498 +335978,335978 +184609,184609 +167345,167345 +299141,299141 +172080,172080 +151284,151284 +298255,298255 +379803,379803 +377620,377620 +305114,305114 +322775,322775 +145909,145909 +340955,340955 +173111,173111 +144952,144952 +295468,295468 +23188,23188 +13033,13033 +142587,142587 +156437,156437 +182657,182657 +418788,418788 +111703,111703 +351525,351525 +40500,40500 +50030,50030 +112942,112942 +277433,277433 +431552,431552 +32153,32153 +122568,122568 +48972,48972 +143284,143284 +33162,33162 +428283,428283 +131971,131971 +342929,342929 +362535,362535 +11619,11619 +251357,251357 +385615,385615 +89074,89074 +329382,329382 +71221,71221 +269626,269626 +301127,301128 +6884,6884 +217379,118410 +314279,314279 +318091,318091 +422965,422965 +236868,144733 +344033,344033 +66206,66206 +169499,169499 +368847,368847 +166903,166903 +268892,268892 +383128,364425 +33161,33161 +414445,414445 +145890,145890 +400025,400025 +357100,10435 +394881,394881 +173165,173165 +429273,429273 +360972,360972 +189675,189675 +388028,388028 +19073,19073 +12330,12330 +36857,36857 +36387,36387 +55649,55649 +18849,18849 +35668,35668 +68788,68788 +284068,284068 +82800,82800 +19721,19721 +146927,146927 +54044,54044 +429947,429947 +430763,430763 +30051,30051 +415471,415471 +118940,118940 +371705,371705 +187061,187061 +41394,41394 +179079,179079 +276601,276601 +30185,30185 +85476,85476 +194045,194045 +412380,412380 +12774,12774 +411462,411462 +124990,124990 +316082,316082 +83622,83622 +175602,175602 +422218,422218 +329843,329843 +102702,102702 +395666,395666 +383783,383783 +40640,40640 +83363,83363 +19594,19594 +315474,315474 +265225,265225 +139028,139028 +30955,30955 +58368,58368 +285139,285139 +413779,413779 +376026,376026 +398776,398776 +82631,82631 +412430,412430 +62506,62506 +342673,342673 +272397,269100 +375486,375486 +308153,308153 +333189,333189 +359860,359860 +51973,51973 +39855,39855 +26491,26491 +304310,304310 +427275,427275 +176650,176650 +378046,378046 +66657,66657 +421482,421482 +155212,155212 +317514,317514 +408086,408086 +8647,8647 +23266,23266 +182068,182068 +171943,171943 +377702,377702 +297828,297828 +30606,30606 +12564,12564 +280772,280772 +17862,17862 +274177,274177 +97605,97605 +228168,228168 +406252,406252 +101871,101871 +423825,423825 +13202,13202 +158931,158931 +129400,129400 +237530,237530 +345555,345555 +192983,192983 +37086,37086 +264442,264442 +27116,27116 +29443,29443 +30244,30244 +31486,31486 +430022,428108 +342939,342939 +366581,366581 +85626,85626 +55333,55333 +24725,24725 +34573,34573 +133738,133738 +190290,144412 +150296,150296 +204490,204490 +230036,11689 +86859,86859 +43310,43310 +179951,179951 +107974,107974 +358131,358131 +171520,171520 +121327,121327 +422104,267832 +356781,356781 +25660,25660 +413870,413870 +100494,100494 +68834,68834 +297739,297739 +199237,174177 +312622,312622 +407407,407407 +25361,25361 +29280,29280 +422427,422427 +41709,41709 +149697,149697 +373184,373184 +373857,373857 +36283,36283 +253176,253176 +34879,34879 +239433,239433 +29728,29728 +403397,403397 +11684,11684 +42804,42804 +338556,3057 +374822,374822 +411239,411239 +36725,36725 +177351,358113 +90641,90641 +309479,309479 +34209,34209 +374738,374738 +14406,14406 +354325,354325 +419403,419403 +371577,371577 +309706,309706 +47197,47197 +28012,28012 +92658,92658 +31384,31384 +67491,67491 +335546,335546 +144392,144392 +388814,388814 +19063,19063 +22218,22218 +420550,420550 +29630,29630 +94490,94490 +27659,27659 +252080,252080 +177522,177522 +173563,173563 +20503,20503 +381342,296185 +161536,161536 +73188,73188 +18233,18233 +305117,305117 +176597,176597 +3802,3802 +374174,374174 +22039,22039 +382170,382170 +22013,22013 +358291,358291 +377661,377661 +338945,338945 +59969,59969 +40063,40063 +420296,420296 +35356,35356 +24821,24821 +417321,417321 +37551,37551 +278233,278233 +371086,371086 +177009,177009 +13967,13967 +231386,231386 +36459,36459 +54468,54468 +311078,274206 +145671,145671 +70140,70140 +408940,408940 +306109,306109 +146139,146139 +123887,123887 +54084,54084 +133519,133519 +138813,138813 +268184,268184 +25113,25113 +260929,260929 +424568,397226 +131619,131619 +270365,270365 +169983,169983 +30587,30587 +417514,417514 +432547,432547 +115832,115832 +377290,377290 +10161,10161 +333954,333954 +37455,37455 +27679,27679 +118074,118074 +13019,13019 +320681,127493 +40131,40131 +288691,288691 +165564,165564 +186517,293495 +24348,24348 +259697,259697 +114235,114235 +23874,23874 +419401,419401 +14916,14916 +277186,277186 +359203,359203 +330369,330369 +170507,170507 +63802,63802 +68224,68224 +83270,83270 +208018,208018 +322232,322232 +34664,34664 +26928,26928 +349461,349461 +212282,212282 +11252,11252 +29669,29669 +9987,9987 +7085,7085 +18764,18764 +14190,14190 +349144,349144 +111654,111654 +145935,145935 +19934,19934 +284978,284978 +64917,64917 +126980,126980 +423046,423046 +13205,13205 +284290,203958 +252943,252943 +21403,21403 +26217,26217 +15807,15807 +128436,128436 +27337,27337 +19183,19183 +174373,174373 +15099,15099 +29319,29319 +233452,233452 +238672,238672 +280319,280319 +13653,13653 +7659,7659 +352901,352901 +288653,288653 +17275,17275 +16833,16833 +12197,12197 +25798,25798 +237004,237004 +19309,19309 +35045,35045 +259387,259387 +289976,289976 +9116,9116 +27019,27019 +54454,54454 +152533,152533 +263193,263193 +299683,299683 +228398,228398 +33276,33276 +144729,144729 +28753,28753 +39615,39615 +64179,64179 +15050,15050 +71753,71753 +408797,408797 +9620,9620 +402339,402339 +34070,34070 +216456,216456 +72332,72332 +399004,399004 +120866,120866 +209109,209109 +304362,304362 +332681,332681 +389537,389537 +214406,214406 +375752,375752 +23209,23209 +41852,41852 +405431,405431 +22871,22871 +34818,34818 +215778,215778 +95099,95099 +89389,89389 +15943,15943 +21484,21484 +92846,92846 +17875,17875 +13895,13895 +28653,28653 +14402,14402 +41943,41943 +66689,66689 +41853,41853 +160806,160806 +332519,332519 +284399,284399 +126043,126043 +206545,206545 +30833,30833 +158133,158133 +430593,256804 +35800,35800 +27068,27068 +304820,304820 +57950,57950 +267756,267756 +28791,28791 +16080,16080 +282523,282523 +16416,16416 +29451,29451 +12383,12383 +41639,41639 +180158,180158 +263586,263586 +24515,24515 +36211,36211 +96668,96668 +203968,203968 +30319,30319 +327760,336962 +204731,204731 +31885,31885 +172305,172305 +16242,16242 +47030,47030 +28572,28572 +292647,292647 +413917,413917 +340139,340139 +424157,424157 +303632,303632 +262472,262472 +156555,156555 +15449,15449 +35822,35822 +26497,26497 +130325,130325 +296971,296971 +253387,239847 +315905,315905 +310282,310282 +358132,358132 +298636,298636 +263925,263925 +176091,176091 +37092,37092 +125562,125562 +20534,20534 +34172,34172 +33148,33148 +109900,109900 +14528,14528 +38854,38854 +18068,18068 +355471,355471 +17884,17884 +415295,415295 +22690,22690 +421931,421931 +41791,41791 +1492,1492 +423889,423889 +354256,354256 +68598,68598 +298119,298119 +44501,44501 +97133,97133 +353857,353857 +85579,85579 +33535,33535 +273756,273756 +162897,162897 +2805,2805 +17301,17301 +174374,174374 +40429,31716 +14883,14883 +23226,23226 +22152,22152 +218857,218857 +15068,24819 +200291,200291 +74303,74303 +260402,260402 +229638,229638 +35903,35903 +105799,105799 +152463,402339 +26734,26734 +432839,432839 +390184,390184 +13992,13992 +195509,249047 +160431,160431 +383280,463 +322485,322485 +14776,14776 +364234,364234 +13665,13665 +113541,113541 +241722,241722 +43220,463 +271267,271267 +25120,25120 +27161,27161 +200800,200800 +355518,355518 +371921,212404 +27094,27094 +174076,174076 +130545,130545 +129527,129527 +187843,187843 +14264,14264 +212967,212967 +204186,204186 +56436,56436 +16409,16409 +348974,348974 +33026,33026 +39780,39780 +259344,259344 +40248,40248 +256321,256321 +39586,39586 +10619,10619 +248202,248202 +5164,5164 +160800,160800 +9974,9974 +42204,42204 +268573,268573 +330197,330197 +130099,130099 +164291,164291 +38946,21677 +251596,251596 +350104,299690 +346757,346757 +97349,97349 +308575,308575 +245626,245626 +96336,96336 +343596,343596 +45129,45129 +316618,316618 +404564,404564 +25515,25515 +11869,11869 +8339,8339 +15245,15245 +197564,197564 +345926,345926 +380386,380386 +85955,85955 +30217,30217 +27445,27445 +235939,235939 +26161,26161 +134233,134233 +303450,303450 +38316,38316 +176959,176959 +125005,125005 +12147,12147 +369997,369997 +321018,307670 +9985,9985 +42544,42544 +84057,84057 +125094,125094 +97687,97687 +140029,140029 +329101,329101 +22848,22848 +193150,8652 +46630,46630 +31228,31228 +10184,10184 +27159,27159 +12985,12985 +126981,126981 +128390,128390 +44940,44940 +15937,15937 +27198,27198 +28392,28392 +8398,8398 +335367,266589 +128795,128795 +97064,97064 +338840,339359 +66272,66272 +123412,123412 +13021,13021 +36008,36008 +123446,123446 +130452,130452 +255460,255460 +43009,43009 +348462,348462 +233670,233670 +160804,160804 +2831,2831 +33776,33776 +103465,103465 +351967,463 +34719,34719 +14219,463 +20482,20482 +200273,200273 +33007,33007 +143580,143580 +240480,463 +1068,1068 +271623,271623 +87178,87178 +36166,36166 +141623,141623 +341946,341946 +15226,15226 +54883,54883 +309057,309057 +47253,47253 +405269,400209 +33099,33099 +159091,159091 +264686,264686 +41739,41739 +217183,217183 +92656,92656 +26545,26545 +352925,352925 +33492,33492 +160801,160801 +110244,110244 +39657,39657 +377895,377895 +174284,174284 +272710,43443 +31995,31995 +46980,46980 +190325,190325 +306241,306241 +358537,358537 +140232,140232 +41315,41315 +8300,8300 +13231,13231 +223951,291430 +400708,400708 +127938,127938 +42045,42045 +36943,36943 +15973,15973 +94714,94714 +342922,342922 +267825,267825 +28766,28766 +27287,27287 +28168,28168 +42696,42696 +104381,104381 +386494,463 +363937,463 +248983,248983 +22734,22734 +388816,388816 +285090,285090 +9944,9944 +94268,94268 +70649,70649 +392551,392551 +10553,10553 +172256,172256 +329428,329428 +412282,412282 +16872,16872 +17966,17966 +22667,22667 +19502,19502 +350286,350286 +37312,37312 +22984,22984 +65106,65106 +4704,4704 +239006,239006 +319591,319591 +78796,78796 +309406,309406 +228147,228147 +5270,5270 +194188,194188 +20200,20200 +153082,153082 +25707,25707 +160605,160605 +8642,8642 +316342,316342 +72081,72081 +38295,38295 +137049,137049 +11576,11576 +280563,280563 +38783,38783 +11522,11522 +14920,14920 +29636,29636 +12805,12805 +407005,204836 +39697,39697 +425033,261157 +41563,41563 +64417,64417 +37621,37621 +19748,19748 +25837,25837 +186465,186465 +18131,18131 +119732,119732 +73525,38994 +142037,340100 +411051,400209 +425431,425431 +346267,346267 +349112,349112 +233878,233878 +17174,17174 +23989,23989 +116786,116786 +26074,26074 +17332,17332 +126895,126895 +63971,63971 +423424,423424 +355468,355468 +159374,159374 +13961,13961 +21158,21158 +23677,23677 +354300,354300 +191058,191058 +64874,64874 +39493,39493 +255194,255194 +6239,6239 +353615,353615 +326432,326432 +735,735 +16629,27496 +67166,67166 +77393,77393 +325852,325852 +416522,416522 +320174,320174 +361814,85256 +10211,10211 +70531,70531 +348051,348051 +207246,172733 +7816,7816 +19017,19017 +360437,360437 +174630,174630 +36149,36149 +242594,242594 +15824,15824 +18676,18676 +159010,159010 +428776,428776 +130768,130768 +318358,318358 +309618,309618 +5399,5399 +78063,78063 +6080,6080 +16126,16126 +382124,362106 +96075,96075 +98909,98909 +150171,150171 +219944,219944 +90369,90369 +37280,37280 +183529,183529 +145720,145720 +245623,245623 +30347,30347 +104556,104556 +35758,35758 +128499,128499 +4184,4184 +155834,155834 +69498,421151 +8547,8547 +302924,302924 +206846,206846 +129908,129908 +34382,34382 +424747,424747 +231868,231868 +64653,64653 +1787,1787 +90692,90692 +198193,198193 +11332,11332 +170930,170931 +317512,317512 +63580,63580 +67945,67945 +407011,407011 +189330,189330 +41358,41358 +426547,426547 +35114,35114 +319373,319373 +204873,204873 +191311,191311 +205340,205340 +116228,238083 +114440,114440 +66086,66086 +17019,17019 +245408,245408 +35996,35996 +69636,69636 +7029,7029 +40658,40658 +32489,32489 +68031,68031 +37284,33736 +35637,35637 +27696,27696 +187916,254923 +142928,142928 +71822,71822 +111475,111475 +171485,171485 +63690,63690 +10747,10747 +16020,293959 +420764,420764 +238178,238178 +226058,226058 +11314,11314 +173021,173021 +183526,26928 +297096,297096 +30279,30279 +28349,28349 +287111,287111 +64206,64206 +28204,28204 +22122,22122 +140161,140161 +117968,117968 +341749,341749 +155918,155918 +30518,30518 +12117,12117 +6849,6849 +179327,179327 +18662,3270 +346546,346546 +98386,98386 +114876,114876 +40066,40066 +43257,43257 +54308,54308 +25166,25166 +315353,315353 +27836,27836 +319892,319892 +219396,219396 +159856,159856 +26227,26227 +19316,19316 +415193,415193 +2658,2658 +157601,157601 +418513,418513 +159577,9782 +18236,18236 +129127,129127 +132947,132947 +32238,32238 +7492,7492 +4906,4906 +256979,256979 +350129,350129 +36917,36917 +378834,378834 +5823,5823 +306679,306679 +215228,215228 +25810,25810 +32616,32616 +182356,182356 +113556,113556 +9592,9592 +59084,59084 +411420,411420 +9796,9796 +336940,336940 +10821,10821 +23377,23377 +28193,28193 +3331,3331 +27034,27034 +6446,6446 +363557,363557 +19782,19782 +10421,10421 +260314,260314 +32190,32190 +5800,5800 +40332,40332 +10896,10896 +6592,6592 +87750,87750 +180913,180913 +405311,405311 +33937,33937 +166455,166455 +25878,25878 +285097,285097 +237682,237682 +25185,25185 +14234,14234 +27113,27113 +342082,342082 +11263,11263 +20283,20283 +7021,377788 +164890,164890 +66269,66269 +108230,108230 +9371,9371 +197977,197977 +120948,120948 +24972,24972 +178327,231299 +219720,219720 +7044,7044 +23391,23391 +307201,307201 +7916,7916 +172656,172656 +215261,215261 +42953,42953 +208889,208889 +143136,1881 +164524,164524 +5225,5225 +269615,269615 +176676,176676 +356839,356839 +218162,218162 +11105,11105 +17704,17704 +264601,264601 +11922,11922 +86524,86524 +147861,147861 +17749,17749 +17072,17072 +37225,37225 +36941,36941 +31139,31139 +155743,155743 +32221,32221 +21837,21837 +412155,412155 +17519,17519 +31473,31473 +15006,15006 +10464,10464 +9574,9574 +243756,243756 +192018,192018 +12332,12332 +254052,11168 +240006,240006 +37197,37197 +163214,163214 +315672,315672 +159643,159643 +16813,16813 +9130,9130 +382926,36599 +427707,427707 +28034,28034 +169242,169242 +31265,31265 +271301,228662 +332571,5312 +12335,12335 +360340,360340 +39823,39823 +134827,134827 +35473,22674 +198134,198134 +4483,4483 +285353,285353 +297597,297597 +32293,32293 +405016,405016 +19708,19708 +6694,6694 +159999,2317 +16937,16937 +152796,17534 +24664,24664 +25827,25827 +13133,13133 +173492,173492 +80462,80462 +12449,12449 +25217,25217 +13349,13349 +366457,366457 +6595,6595 +20898,20898 +143766,143766 +154316,154316 +24930,24930 +17848,17848 +42904,42904 +175872,175872 +26423,26423 +9486,9486 +5526,5526 +22588,22588 +38734,38734 +34074,34074 +166680,166680 +21549,21549 +166091,166091 +7301,7301 +61847,61847 +6639,6639 +153320,153320 +56407,8790 +371706,371706 +30092,30092 +237533,237533 +9429,9429 +74982,74982 +168308,168308 +28673,28673 +153112,153112 +198631,198631 +131611,131611 +116467,116467 +150965,150965 +280592,280592 +5320,5320 +2576,2576 +152459,152459 +17456,17456 +11254,11254 +13111,13111 +30624,30624 +149374,168274 +6906,2392 +6252,6252 +145100,145100 +7913,7913 +184774,184774 +12704,12704 +139946,139946 +12591,12591 +253754,253754 +308199,308199 +2592,2592 +3197,3197 +282135,178038 +290713,290713 +255671,255671 +2661,2661 +2923,2923 +274439,274439 +185228,185228 +1427,1427 +652,652 +286781,167951 +87681,87681 +24908,24908 +109790,109790 +234383,234383 +344119,344119 +303054,303054 +104359,104359 +383145,383145 +137826,137826 +28092,28092 +21729,21729 +168090,168090 +283875,283875 +329390,329390 +427960,427960 +63875,63875 +369622,369622 +386717,386717 +158208,158208 +222198,222198 +236559,236559 +26230,26230 +76394,76394 +188040,188040 +381809,381809 +13536,13536 +371578,371578 +270688,270688 +34503,34503 +400654,400654 +9993,9993 +328218,328218 +300904,300904 +251574,251574 +129292,129292 +19347,12584 +339540,339540 +219303,219303 +2946,2946 +898,898 +28776,28776 +14495,14495 +281677,281677 +3508,3508 +17284,17284 +3713,3713 +7322,7322 +23576,23576 +183666,183666 +130626,130626 +11083,11083 +335845,299069 +11508,220988 +564,564 +5856,5856 +206653,206653 +19120,19120 +293971,293971 +196548,196548 +24489,24489 +175475,175475 +34725,34725 +48214,48214 +213322,213322 +35051,35051 +14140,14140 +33122,33122 +378079,378079 +31434,31434 +111852,111852 +332561,88633 +24102,24102 +5968,5968 +76201,76201 +85320,85320 +22607,22607 +240187,240187 +40965,40965 +210827,210827 +160869,160869 +381816,381816 +41235,41235 +155845,155845 +26921,26921 +110799,110799 +244952,244952 +267618,267618 +37830,37830 +21775,15925 +36146,36146 +26066,26066 +6670,6670 +32278,32278 +168704,168704 +305222,305222 +149743,149743 +81913,81913 +400132,141828 +16837,16837 +43086,43086 +18816,18816 +34856,34856 +35037,35037 +19287,19287 +12850,12850 +33164,33164 +7128,7128 +4429,4429 +347602,347602 +12919,12919 +96511,96511 +8460,8460 +216647,216647 +127564,127564 +411890,411890 +177940,177940 +16308,16308 +153330,153330 +264154,264154 +193534,193534 +151221,151221 +29939,29939 +3566,3566 +58672,58672 +5026,5026 +168204,168204 +20737,20737 +36532,36532 +11156,11156 +145918,145918 +40208,40208 +125271,125271 +345707,345707 +160569,160569 +126748,126748 +364350,364350 +120977,120977 +12247,12247 +342546,342546 +241227,158973 +170996,170996 +20832,2944 +20965,20965 +3708,3708 +238501,238501 +377867,377867 +311180,311180 +14293,14293 +325884,325884 +103684,103684 +419694,419694 +27384,27384 +30529,30529 +42119,42119 +372838,372838 +35258,35258 +28597,28597 +73299,73299 +33754,33754 +22164,22164 +9307,9307 +158450,158450 +345020,345020 +27489,27489 +352513,352513 +316692,316692 +41178,41178 +22876,3270 +13888,13888 +179916,179916 +96719,41860 +220235,220235 +107489,107489 +114218,114218 +139705,139705 +24722,24722 +18552,463 +81438,81438 +303277,303277 +187191,187191 +366977,366978 +361204,361204 +95890,95890 +235437,235437 +319993,319993 +353206,463 +20264,20264 +38067,38067 +46245,125609 +28064,28064 +8841,8841 +92001,92001 +24519,24519 +358196,393166 +10152,10152 +11551,11551 +29626,29626 +37330,37330 +12740,12740 +133538,133538 +146442,146442 +186272,186272 +95611,95611 +154643,154643 +13914,13914 +163364,163364 +462,418917 +36835,36835 +432223,432223 +20903,20903 +393033,393033 +16659,16659 +17190,17190 +366239,366239 +425753,425753 +109269,109269 +343934,343934 +428350,428350 +387724,387724 +145150,145150 +25184,25184 +14237,463 +35117,35117 +14246,463 +192579,99969 +224610,2734 +123326,123326 +89393,89393 +259556,43443 +39403,39403 +15055,15055 +22389,22389 +381889,381889 +12894,12894 +23722,23722 +34361,34361 +8181,8181 +25249,463 +21992,20195 +377791,377791 +24790,20697 +147971,385272 +275217,275217 +99022,99022 +146870,146870 +167856,167856 +181175,181175 +154913,154913 +2504,2504 +177328,177328 +5932,5932 +67865,67865 +30787,30787 +43167,43167 +18164,18164 +167669,167669 +116938,116938 +77344,77344 +355927,355927 +24683,24683 +354977,354977 +32471,32471 +163464,163464 +113509,113509 +154252,463 +10427,10427 +147685,147685 +108343,108343 +27210,27210 +17123,17123 +66762,66762 +394124,394124 +403348,403348 +307377,307377 +91100,91100 +376888,376888 +175451,175451 +333163,333163 +308181,65979 +41233,41233 +361774,352260 +424156,424156 +41766,41766 +393870,393870 +171578,171578 +299451,299451 +155452,176803 +352490,352490 +421660,421660 +155107,155107 +21178,21178 +424175,308385 +98026,98026 +422127,422127 +336020,336020 +245397,245397 +373305,373305 +322818,322818 +378902,378902 +42546,42546 +18377,18377 +15641,15641 +46984,46984 +22845,22845 +66286,66286 +59279,59279 +382968,364425 +208104,208104 +340467,340467 +145194,145194 +23980,23980 +32899,32899 +382533,382533 +255488,134884 +377672,377672 +117664,117664 +172539,172539 +13840,13840 +23984,23984 +4785,4785 +134962,134962 +396218,396218 +16806,16806 +430330,430330 +340081,340081 +16828,16828 +31978,31978 +246456,246456 +418484,418484 +286281,286281 +25858,25858 +237926,237926 +103825,103825 +196743,196743 +112101,112101 +202933,202933 +109016,109016 +357397,357397 +75167,75167 +202251,202251 +247071,247071 +288800,288800 +403167,403167 +163818,163818 +223144,223144 +372847,372847 +352572,210499 +11216,11216 +169739,169739 +325521,325521 +95673,95673 +337203,337203 +357981,357981 +413342,413342 +11368,11368 +123798,123798 +185738,185738 +24957,24957 +186389,186389 +26599,26599 +39233,39233 +30290,30290 +302259,302259 +423816,423816 +22226,22226 +35263,35263 +183151,183151 +134433,134433 +72347,72347 +40482,40482 +200027,200027 +381510,381510 +14983,14983 +334450,334450 +262727,262727 +390181,390181 +257923,257923 +26611,26611 +403440,403440 +362028,362028 +92151,92151 +222063,42101 +295137,295137 +74388,74388 +293051,293051 +275686,275686 +60423,60423 +386749,386749 +28883,28883 +162728,162728 +200607,200607 +114567,114567 +43384,43384 +415077,415077 +296340,296340 +305148,305148 +55989,55989 +407952,407952 +16482,16482 +378716,378716 +404380,404380 +10328,10328 +198730,198730 +21933,21933 +402853,402853 +359936,359936 +24457,24457 +433558,433558 +110491,110491 +86342,86342 +421241,421241 +13635,13635 +404434,404434 +309515,309515 +18942,18942 +191196,191196 +268162,268162 +170618,170618 +114385,114385 +92128,92128 +89615,89615 +94969,94969 +341784,341784 +184369,34827 +431103,431103 +41461,41461 +62216,169998 +198399,198399 +286060,286060 +156242,156242 +377854,377854 +157897,157897 +216180,216180 +156861,156861 +145971,145971 +342552,342552 +12833,12833 +318393,300929 +129244,129244 +129441,129441 +315977,315977 +320462,320462 +420303,420303 +140500,140500 +176909,176909 +270504,270504 +26058,26058 +206625,206625 +121739,121739 +185504,185504 +138148,138148 +151194,151194 +36561,36561 +131066,131066 +248921,248921 +147298,147298 +332565,332565 +89703,89703 +185080,185080 +30528,30528 +181412,181412 +134532,134532 +386165,386165 +163562,163562 +9171,9171 +58723,58723 +78553,78553 +13324,13324 +37791,37791 +158712,158712 +378605,378605 +262657,262657 +6382,6382 +364242,364242 +38712,38712 +166310,166310 +262715,262715 +225217,225217 +41984,41984 +415970,415970 +11977,11977 +72004,72004 +228884,228884 +410336,410336 +29220,29220 +410167,410167 +107870,144670 +286487,220237 +21365,21365 +305322,305322 +433701,433701 +419721,419721 +32503,32503 +60237,60237 +430513,430513 +306982,306982 +43105,43105 +41331,41331 +288445,288445 +196247,196247 +304594,304594 +42553,42553 +377320,377320 +263131,263131 +234341,234341 +69700,69700 +402342,402342 +346864,346864 +33570,33570 +432670,432670 +414830,414830 +432188,432188 +321979,321979 +142193,142193 +19976,19976 +116768,116768 +34102,34102 +99492,99492 +348476,348476 +164780,164780 +186972,186972 +354237,354237 +80020,80020 +295419,295419 +404072,404072 +95039,95039 +5938,5938 +278736,278736 +182962,182962 +374241,374241 +130324,130324 +140185,140185 +126866,126866 +199452,199452 +164481,164481 +163752,163752 +110488,110488 +306534,306534 +57606,57606 +207357,207357 +309133,309133 +353550,353550 +37576,37576 +421829,421829 +25663,25663 +21874,21874 +138434,138434 +160798,160798 +341597,341597 +357561,357561 +34535,34535 +26113,26113 +66654,66654 +23452,23452 +368773,368773 +62587,62587 +102703,102703 +95840,95840 +200529,200529 +109854,109854 +138902,138902 +401014,401014 +209623,209623 +140151,140151 +319100,319100 +130345,130345 +119351,119351 +176339,176339 +130069,130069 +87786,87786 +255551,255551 +372426,165628 +187054,187054 +34614,34614 +193748,193748 +140121,140121 +285257,285257 +160966,160966 +246067,246067 +86860,86860 +160965,160965 +189109,189109 +122114,122114 +432243,432243 +219408,219408 +13030,13030 +176254,176254 +369427,369427 +244052,244052 +160892,160892 +151493,151493 +11285,11285 +402187,402187 +63370,63370 +32757,32757 +29192,29192 +160438,160438 +175563,175563 +133381,133381 +178845,178845 +176288,176288 +18314,18314 +181190,181190 +274696,274696 +156273,156273 +395634,395634 +362203,362203 +365440,365440 +176921,176921 +160944,160944 +32636,32636 +414896,414896 +225992,225992 +160951,160951 +37793,37793 +246073,246073 +120754,120754 +329100,329100 +271535,32441 +176340,176340 +176265,176265 +43090,43090 +30986,30986 +145617,145617 +15434,15434 +160875,160875 +171413,171413 +62803,62803 +302634,302634 +32208,317 +92590,92590 +61810,61810 +160972,160972 +66666,66666 +120857,120857 +63600,63600 +24430,24430 +160889,160889 +425292,412282 +238095,238095 +95076,95076 +252291,252291 +87463,403905 +381169,381169 +273276,273276 +265002,265002 +235694,235694 +131528,131528 +33810,33810 +168175,168175 +16469,16469 +246936,246936 +330892,330892 +21013,21013 +263690,263690 +217200,3662 +150551,150551 +138778,138778 +246083,246083 +21858,21858 +279862,279862 +105180,105180 +38105,38105 +23179,23179 +23716,23716 +353740,353740 +6200,6200 +247492,247492 +19160,19160 +120096,120096 +151257,151257 +68469,68469 +17652,17652 +17494,17494 +15776,15776 +21320,21320 +37374,37374 +176177,176177 +267985,267985 +369544,369544 +279943,279943 +96416,96416 +429413,429413 +36202,36202 +47018,47018 +36036,36036 +381688,381688 +87471,87471 +295392,295392 +6318,6318 +103983,103983 +148377,148377 +37179,37179 +20460,20460 +32515,32515 +39705,39705 +120788,120788 +70530,70530 +160456,160456 +318128,318128 +16628,16628 +120711,120711 +167609,167609 +215823,215823 +39194,39194 +398818,398818 +328064,328066 +69236,69236 +15203,15203 +215054,215054 +320541,320541 +42912,42912 +160503,160503 +89028,89028 +17610,17610 +88649,88649 +140212,140212 +128516,128516 +133902,133902 +61212,61212 +266901,266901 +180078,180078 +35383,35383 +216453,216453 +58393,58393 +140190,140190 +110951,110951 +120592,120592 +89416,89416 +161071,161071 +168322,168322 +426357,426357 +182591,182591 +160986,160986 +88800,88800 +351618,351618 +122823,3270 +423227,423227 +37630,37630 +37899,37899 +191092,191092 +16638,16638 +6060,6060 +30156,30156 +114553,114553 +176269,176269 +164755,164755 +349809,349809 +30463,30463 +400272,400272 +278374,278374 +36703,36703 +41880,41880 +418918,418918 +66170,66170 +292634,292634 +160985,160985 +215755,193382 +176266,176266 +303402,303402 +339285,339285 +137873,137873 +238198,238198 +328748,328748 +130678,130678 +108704,108704 +137693,137693 +139831,139831 +176000,176000 +229412,326762 +396943,396943 +401320,401320 +127991,127991 +222746,222746 +160905,160905 +163751,163751 +200381,200381 +376706,376706 +390899,390899 +306857,306857 +29739,29739 +410992,410992 +28792,28792 +248565,248565 +177519,177519 +152731,152731 +197284,197284 +209426,209426 +183635,183635 +203856,203856 +33558,33558 +52078,52078 +53867,53867 +18434,18434 +260384,260384 +176088,176088 +160977,160977 +24980,24980 +259475,259475 +230122,230122 +14898,14898 +175882,175882 +130268,130268 +26494,26494 +246069,246069 +332830,332830 +110977,110977 +11961,11961 +160842,160842 +351223,351223 +132004,132004 +131411,131411 +138622,138622 +160501,160501 +15993,15993 +139846,139846 +60451,60451 +134885,134885 +35949,35949 +73715,73715 +181379,181379 +130544,130544 +305558,305558 +140109,140109 +20026,20026 +37859,37859 +15573,15573 +14751,14751 +17213,17213 +123645,123645 +370417,370417 +23069,23069 +35502,35502 +109884,109884 +160802,160802 +154511,154511 +25136,25136 +253507,253507 +14626,14626 +59923,59923 +172661,172661 +134268,134268 +141289,141289 +301923,301923 +95321,95321 +306748,306748 +372329,372329 +112711,112711 +129620,129620 +120789,120789 +342989,342989 +240912,240912 +354790,354790 +160976,160976 +149447,149447 +120230,120230 +40973,36604 +65870,65870 +29921,29921 +135817,135817 +119512,119512 +36042,36042 +24780,24780 +139835,139835 +41031,41031 +285272,285272 +5665,5665 +43074,43074 +137860,137860 +319770,319770 +3259,3259 +276980,276980 +255045,255045 +67450,67450 +161455,161455 +30595,30595 +35977,35977 +209856,209856 +142312,142312 +137861,137861 +120383,120383 +148541,148541 +140184,140184 +19424,19424 +194786,194786 +4760,4760 +330477,330477 +140206,140206 +130255,130255 +122648,122648 +201515,201515 +261458,261458 +160448,160448 +137862,137862 +125584,125584 +340433,340433 +228396,228396 +26171,26171 +73549,73549 +115322,115322 +434367,154809 +122833,122833 +239008,239008 +346058,346058 +327161,327161 +375238,375238 +383032,383032 +176261,176261 +120228,120228 +309051,309051 +140189,140189 +39538,39538 +391420,391420 +36006,36006 +138903,138903 +147019,147019 +373618,373618 +176337,176337 +406555,406555 +107873,107873 +361991,361991 +429347,429347 +39293,39293 +120381,120381 +40896,40896 +24838,24838 +119892,119892 +124092,124092 +120049,120049 +311817,311817 +276759,834 +111478,111478 +151255,151255 +120856,120856 +23197,23197 +160929,160929 +354481,354481 +22385,22385 +18508,18508 +18567,18567 +16941,16941 +188130,188130 +231755,231755 +394333,394333 +246074,246074 +34095,34095 +34155,34155 +18300,18300 +6340,6340 +168838,168838 +70054,70054 +39412,38781 +120715,120715 +24033,24033 +246075,246075 +294811,294811 +126465,126465 +140146,140146 +5154,5154 +56296,56296 +20569,19435 +19941,19941 +265505,265505 +176178,176178 +176338,176338 +31685,31685 +140046,140046 +15264,15264 +331752,331752 +154344,154344 +148189,148189 +163703,163703 +420051,420051 +401694,401694 +154334,154334 +185185,185185 +313777,373782 +109649,109649 +12930,12930 +157313,157313 +63496,63496 +43244,43244 +331288,331288 +352047,352047 +307270,307270 +21222,21222 +153195,22910 +36445,36445 +130263,130263 +116471,116471 +123720,123720 +176006,176006 +173457,173457 +358378,358378 +160445,160445 +96076,96076 +358135,358135 +138171,138171 +168532,168532 +29337,29337 +16953,16953 +139837,139837 +116727,116727 +135810,135810 +81296,81296 +296625,17181 +36549,36549 +162898,162898 +356460,356460 +96426,96426 +414954,414954 +118954,118954 +140076,140076 +357804,357804 +173118,173118 +332340,332340 +170971,170971 +180126,180126 +15552,15552 +132716,132716 +64352,64352 +68930,68930 +175956,175956 +62518,62518 +66760,66760 +322980,322980 +36163,36163 +6294,6294 +130543,130543 +57680,57680 +333458,333458 +70753,70753 +128781,128781 +118079,118079 +34750,34750 +337542,337542 +34547,34547 +120169,120169 +180383,180383 +134073,134073 +180139,180139 +41191,41191 +150818,150818 +332153,332153 +192439,192439 +86872,86872 +24322,24322 +269219,269219 +23947,23947 +36507,36507 +56638,56638 +19965,19965 +409843,6541 +228291,228291 +163698,163698 +69771,69771 +170851,170851 +194456,194456 +38775,38775 +428635,223049 +95388,95388 +23198,23198 +256327,256327 +85454,85454 +113644,113644 +139834,139834 +298763,298763 +257641,257641 +43190,43190 +140201,140201 +70983,70983 +267146,267146 +429668,429668 +36134,36134 +140105,140105 +135383,135383 +28521,28521 +380373,380373 +151258,151258 +33813,33813 +6618,6618 +143516,143516 +89804,89804 +28750,28750 +287200,287200 +199427,199427 +123813,123813 +329153,329153 +38254,38254 +233945,182793 +359426,359426 +169774,169774 +130425,130425 +176161,176161 +104952,104952 +130338,130338 +30962,30962 +211561,211561 +214978,214978 +329618,329618 +156258,156258 +256840,256840 +415696,415696 +181332,181332 +64790,64790 +10959,10959 +176256,176256 +122905,122905 +120094,120094 +41872,41872 +390477,390477 +24832,24832 +109800,109800 +73612,73612 +62896,62896 +155850,155850 +327583,327583 +163695,163695 +418273,418273 +6157,6157 +130343,130343 +23280,23280 +85470,85470 +137726,137726 +13701,13701 +319110,319110 +109810,109810 +296609,296609 +302404,302404 +161150,161150 +120559,120559 +140108,140108 +18062,18062 +120097,120097 +33013,33013 +68705,68705 +155848,155848 +352406,352407 +32162,32162 +421004,421004 +139848,139848 +256625,256625 +342201,342201 +35550,35550 +231512,231512 +119536,119536 +181195,181195 +35152,35152 +181373,181373 +31313,31313 +399627,399627 +17717,17717 +172810,172810 +160573,160573 +316119,330240 +324622,324622 +170397,170397 +416220,416220 +118493,118493 +107430,107430 +140123,140123 +413866,413866 +29928,29928 +249008,249008 +114274,114274 +60070,60070 +130442,130442 +47019,47019 +160907,160907 +120389,120389 +311081,311081 +36139,36139 +120717,120717 +155915,155915 +180076,180076 +367528,367528 +347753,347753 +120710,120710 +40512,40512 +22291,22291 +332810,332810 +150369,150369 +376487,349258 +18484,18484 +163655,163655 +163694,163694 +120091,120091 +228743,228743 +67365,67365 +19103,19103 +159576,159576 +138898,138898 +207678,207678 +349038,349038 +25382,25382 +37128,37128 +427157,427157 +32593,32593 +97969,97969 +6083,6083 +153221,153221 +164856,164856 +120662,120662 +187627,187627 +114449,114449 +98657,98657 +180079,180079 +7653,7653 +176090,176090 +40496,40496 +400201,400201 +28042,28042 +31852,31852 +106535,106535 +19430,19430 +75326,75326 +397383,397383 +156132,156132 +26489,26489 +130458,130458 +30721,30721 +151256,151256 +180059,180059 +34362,34362 +24802,24802 +130664,130664 +9052,9052 +140183,140183 +70126,70126 +109728,109728 +221019,221019 +155518,155518 +337920,337920 +381903,381903 +109903,109903 +393491,393491 +218617,218617 +62372,62372 +34538,34538 +155910,155910 +23843,23843 +33098,33098 +397775,397775 +26531,26531 +343147,343147 +140247,140247 +29457,29457 +351510,351510 +140131,140131 +85017,85017 +357537,357537 +17100,17100 +86300,86300 +405233,405233 +114540,114540 +95574,95574 +163122,163122 +80851,80851 +9431,9431 +130380,130380 +283494,283494 +192985,192985 +305773,305773 +341756,341756 +176080,176080 +27459,27459 +180028,180028 +41937,41937 +33278,33278 +99339,99339 +104448,104448 +6029,6029 +47190,47190 +31331,31331 +28670,28670 +130430,130430 +139833,139833 +130088,130088 +338215,337236 +240908,240908 +359170,359170 +71718,71718 +235693,235693 +246068,246068 +6175,6175 +98196,98196 +204430,204430 +369475,369475 +108823,108823 +17305,17305 +334800,334800 +11660,11660 +422704,422704 +162907,162907 +95272,95272 +4063,4063 +95434,95434 +16433,16433 +15924,15924 +54374,54374 +156134,156134 +48316,48316 +32147,32147 +258335,258335 +330398,330398 +372139,372139 +130089,130089 +305995,305995 +331963,331963 +134214,134214 +363264,363264 +46688,46688 +164160,164160 +62323,62323 +340516,340516 +109909,109909 +19490,19490 +23175,23175 +70125,70125 +336776,336776 +411049,411049 +117671,117671 +140182,140182 +376031,223742 +28749,28749 +140148,140148 +171495,171495 +187481,187481 +113548,113548 +6098,6098 +17496,17496 +39183,39183 +29765,29765 +349089,349089 +367016,367016 +87098,87098 +397100,365534 +120847,120847 +414488,414488 +22216,22216 +356081,356081 +320440,320440 +177518,177518 +297181,37225 +59857,59857 +353791,353791 +386154,261165 +85859,85859 +33103,33103 +375754,375754 +152449,152449 +155906,155906 +176105,176105 +384193,384193 +66655,66655 +400927,400927 +257948,257948 +120908,120908 +120385,120385 +427558,427558 +142261,142261 +20977,20977 +155963,155963 +168909,168909 +431304,431304 +341106,18232 +176258,176258 +139839,139839 +139845,139845 +160446,160446 +180128,180128 +267542,267542 +120095,120095 +83428,83428 +287172,287172 +67388,67388 +208106,208106 +68057,68057 +132275,132275 +214230,214230 +258539,331261 +19963,19963 +354673,354673 +32657,32657 +86354,86354 +160975,160975 +23301,23301 +317525,317525 +228678,228678 +200956,200956 +214824,42101 +26838,26838 +176003,176003 +295493,295493 +192183,192181 +130198,130198 +335863,335863 +66283,66283 +64855,64855 +55365,55365 +378705,378705 +163707,163707 +282869,99969 +297232,42101 +178637,178637 +130716,130716 +34539,34539 +160906,160906 +5111,5111 +14815,14815 +313280,313280 +30506,30506 +163744,163744 +335952,335952 +247470,247470 +271908,271908 +156135,156135 +113918,113918 +36643,36643 +38362,38362 +158151,158151 +31394,31394 +314384,314384 +156195,156195 +17349,17349 +355484,355484 +276681,276681 +15523,15523 +137557,137557 +140186,140186 +38719,38719 +312591,312591 +195697,195697 +32897,32897 +261660,261660 +200384,200384 +181124,181124 +92995,92995 +138221,138221 +17358,17358 +176341,176341 +31426,31426 +140147,140147 +248825,248825 +29429,29429 +380266,380266 +35698,35698 +120166,120166 +25885,25885 +203301,463 +40112,40112 +344294,344294 +30591,30591 +242730,242730 +72399,72399 +23553,23553 +132560,132560 +122601,122601 +322868,322868 +139832,139832 +120093,120093 +346256,346256 +112293,51197 +180131,180131 +408400,408400 +25907,25907 +135436,135436 +353162,353162 +155849,155849 +120380,120380 +396953,396953 +65961,65961 +371226,371226 +9975,9975 +197830,197830 +79987,79987 +421983,421983 +123586,123586 +244038,244038 +172371,172371 +411452,411452 +34840,34840 +132421,132421 +200380,200380 +157060,157060 +132364,132364 +149855,149855 +25458,25458 +21617,21617 +103192,103192 +81824,81824 +318361,318361 +294325,294325 +66704,66704 +34913,34913 +156193,156193 +130072,130072 +36027,36027 +36823,36823 +93368,93368 +121329,121329 +41008,41008 +26534,26534 +130426,130426 +326449,326449 +138811,138811 +176667,176667 +290614,290614 +279639,279639 +20521,20521 +349347,349347 +270116,270116 +57682,57682 +139836,139836 +27924,27924 +191584,191584 +378993,378993 +36552,36552 +214896,214896 +134727,134727 +379900,379900 +140211,140211 +381403,381403 +306324,306324 +8800,8800 +160799,160799 +227797,227797 +395580,395580 +284377,284377 +198037,198037 +218004,218004 +163802,163802 +56737,56737 +105054,105054 +130431,130431 +138810,138810 +24863,24863 +86254,86254 +163702,163702 +163740,163740 +396977,396977 +380280,380280 +30593,30593 +279174,279174 +67951,67951 +246082,246082 +32240,32240 +34951,34951 +17402,17402 +135876,135876 +255195,255195 +403464,403464 +120092,120092 +41516,41516 +6640,6640 +25003,25003 +63840,63840 +27534,27534 +43081,43081 +262400,262400 +28657,28657 +21524,21524 +35875,35875 +180749,180749 +57552,57552 +388583,388583 +411735,411735 +359739,834 +40183,40183 +122549,122549 +335565,335565 +33807,33807 +226955,226955 +20792,20792 +11584,11584 +10944,10944 +26103,227466 +29551,29551 +59885,59885 +9051,9051 +340434,340434 +18363,18363 +31052,31052 +287215,287215 +31592,31592 +27154,27154 +217215,217215 +219973,219973 +83636,83636 +129605,129605 +290363,290363 +68009,68009 +361093,361093 +40371,40371 +14241,463 +229515,229515 +64672,64672 +89378,89378 +194416,194416 +296728,296728 +19263,3270 +152940,152940 +42098,42098 +414952,414952 +245627,245627 +214539,214539 +256523,256523 +266516,266516 +37238,37238 +26466,26466 +56316,56316 +265018,265018 +378068,378068 +155599,155599 +107851,107851 +330937,330937 +54167,54167 +281425,281425 +355270,355270 +13760,463 +24503,24503 +106779,106779 +67591,67591 +18519,18519 +426923,426923 +234771,234771 +420887,420887 +291513,291513 +372453,372453 +44841,44841 +28095,28095 +126553,126553 +25884,25884 +120098,120098 +15982,15982 +20994,20994 +40515,40515 +165635,165635 +15309,15309 +344250,425123 +128337,3270 +410335,410335 +155967,155967 +212707,212707 +28856,28856 +285833,285833 +160054,160054 +401091,401091 +318389,318389 +133655,133655 +408635,408635 +15561,15561 +164043,164043 +19734,19734 +304067,304067 +58356,58356 +32987,32987 +41626,41626 +406080,115 +20497,20497 +66351,463 +285258,285258 +33818,33818 +60048,60048 +321095,321095 +5407,5407 +11315,11315 +280768,280768 +53153,53153 +42700,42700 +16265,16265 +43308,43308 +10443,10443 +316078,316078 +40897,29913 +178647,178647 +11260,11260 +15931,15931 +297783,1111 +290632,272854 +68818,68818 +15321,15321 +424611,424611 +432067,43152 +40062,40062 +327557,327557 +51383,51383 +191313,191313 +17007,17007 +139683,139683 +34584,34584 +175831,175831 +18658,18658 +36848,36848 +91758,91758 +226047,226047 +150794,150794 +30589,30589 +327582,327582 +136992,136992 +29486,29486 +234381,234381 +22242,22242 +128504,128504 +251748,251748 +207886,207886 +16904,16904 +100393,100393 +28686,28686 +22668,22668 +72214,72214 +26784,26784 +6056,6056 +238933,262974 +327410,327410 +287942,287942 +428270,428270 +28497,28497 +168039,168039 +306832,306832 +160424,160424 +12156,12156 +380284,380284 +334823,334823 +378537,424484 +340132,340132 +190608,190608 +27006,27006 +30543,30543 +213881,213881 +29483,29483 +188583,188583 +34812,34812 +12719,12719 +356878,356878 +113553,113553 +88874,88874 +167445,167445 +177557,177557 +12103,12103 +137878,137878 +274084,274084 +296547,296547 +14936,14936 +158473,340829 +282534,282534 +343959,35497 +132788,132788 +89081,89081 +245733,245733 +6323,6323 +19123,19123 +75430,75430 +285749,290508 +15965,15965 +37775,37775 +5456,1835 +287572,287571 +286898,286898 +307468,307468 +18953,18953 +93979,93979 +338542,338542 +23422,23422 +396373,396373 +328715,328715 +66223,66223 +140019,140019 +21918,21918 +338220,338220 +388746,388746 +35636,35636 +24412,24412 +38224,421445 +212621,212621 +31261,31261 +275042,275042 +164019,164019 +10650,10650 +120168,120168 +12109,12109 +138760,138760 +37727,37727 +140034,140034 +33100,33100 +14181,14181 +260458,260458 +28005,28005 +17707,17707 +19268,19268 +137591,463 +65668,65668 +168165,3725 +336040,336040 +424482,424482 +360701,360701 +16843,16843 +304754,304754 +24451,24451 +351403,351403 +427787,427787 +18952,18952 +240382,240382 +140040,140040 +122716,122716 +30526,30526 +36587,36587 +33968,14042 +381170,381170 +7375,7375 +28783,28783 +23784,23784 +142946,142946 +358006,358006 +20599,20599 +12364,12364 +26683,26683 +9677,9677 +203214,203214 +286607,286607 +417369,417369 +96044,96044 +10652,10652 +19791,19791 +159962,159962 +5520,5520 +254549,254549 +32046,32046 +134216,134216 +26034,26034 +16092,16092 +206955,206955 +21750,21750 +35887,35887 +29514,29514 +287568,287568 +62889,62889 +1755,1755 +18677,18677 +5562,5562 +9185,9185 +335563,335563 +74929,74929 +31322,31322 +328616,328616 +142144,142144 +57202,57202 +342643,342643 +374311,374311 +182845,182845 +62129,62129 +30433,30433 +294879,294879 +6483,6483 +132138,132138 +8955,8955 +100321,100321 +74538,74538 +34828,34828 +392201,392201 +286663,286663 +70018,70018 +41140,41140 +154361,154361 +312809,312809 +12260,12260 +401656,401656 +94669,94669 +10727,10727 +32103,32103 +60754,60754 +245112,245112 +87365,87365 +70652,70652 +28986,28986 +111398,111398 +20549,20549 +32485,32485 +12573,12573 +27812,27812 +101601,101601 +8767,8767 +126953,126953 +37580,37580 +14430,14430 +107393,107393 +25287,25287 +12472,12472 +206172,206172 +21953,21953 +10956,10956 +68970,378709 +40554,40554 +194549,194549 +192193,192193 +259308,259308 +410211,410211 +15754,15754 +33257,33257 +7892,7892 +125412,125412 +60843,60843 +319151,319151 +17228,17228 +39875,39875 +320717,320717 +276034,276034 +17763,17763 +5937,5937 +249191,249191 +28742,28742 +14702,14702 +20212,20212 +24423,24423 +371600,371600 +24426,24426 +262815,262815 +26335,26335 +27611,27611 +17531,17531 +33439,33439 +25862,25862 +13858,13858 +18395,18395 +144913,144913 +123274,123274 +40094,40094 +8836,8836 +144643,144643 +390566,390566 +13544,13544 +16172,16172 +187439,187439 +268265,268265 +16778,16778 +56505,56505 +69461,69461 +133889,133889 +26168,26168 +257508,257508 +28855,28855 +40340,40340 +35536,35536 +179553,179553 +9499,9499 +392096,392096 +144176,144176 +383162,383162 +25840,25840 +104800,9409 +144387,144387 +269081,269081 +16995,16995 +29513,29513 +64475,64475 +179710,179710 +36124,36124 +251573,251573 +30630,30630 +234513,234513 +57461,57461 +337281,337281 +7445,7445 +23038,23038 +13765,463 +321299,321299 +261707,261707 +269987,269987 +262196,262196 +327543,327543 +12145,12145 +17887,17887 +17316,17316 +24687,24687 +236438,236438 +136984,136984 +125688,125688 +38346,463 +172119,172119 +15032,15032 +50438,50438 +270867,270867 +340120,340120 +59333,59333 +17553,17553 +367760,367760 +64115,64115 +253119,253119 +35722,35722 +17164,17164 +11488,293959 +173345,173345 +21878,21878 +76543,76543 +35959,35959 +17547,17547 +6568,6568 +15811,15811 +155657,163171 +345055,183571 +67950,67950 +377236,377236 +423425,423425 +20417,20417 +224501,224501 +195336,195336 +89942,89942 +202352,202352 +260989,260989 +296386,296386 +10942,10942 +70242,70242 +25122,25122 +162670,162670 +35241,35241 +365662,365662 +412913,412913 +19987,19987 +341751,463 +119468,119468 +33216,33216 +63012,63012 +175484,175484 +63809,63809 +329756,329756 +133049,133049 +5552,5552 +306670,306670 +9768,9768 +155153,247618 +287983,287983 +18424,18424 +358856,358856 +19277,242547 +9007,9007 +351430,351430 +125317,125317 +242545,242545 +30563,30563 +107923,107923 +9059,9059 +31625,31625 +8023,8023 +291458,291458 +294887,294887 +2976,22094 +21383,21383 +1990,1990 +319152,319152 +385985,385985 +209167,463 +31028,31028 +42515,42515 +19284,19284 +30171,30171 +379244,379244 +174097,174097 +10465,10465 +395421,395421 +151900,151900 +6904,6904 +128655,128655 +9979,9979 +281534,281534 +119974,119974 +231229,231229 +346657,383093 +3898,3898 +480,480 +7052,7052 +40875,40875 +30891,30891 +193255,193255 +358282,358282 +12923,12923 +268195,268195 +12265,12265 +13649,13649 +371953,371953 +207578,207578 +183277,183277 +235941,235941 +1889,1889 +181686,181686 +244526,244526 +9147,9147 +157468,157468 +35030,35030 +7835,7835 +6289,6289 +279016,279016 +88609,88609 +283781,283781 +64351,64351 +7859,7859 +307446,307446 +9575,9575 +5499,5499 +92293,92293 +266114,266114 +245698,245698 +3550,3550 +2108,2108 +20845,20845 +5133,5133 +141579,141579 +22431,22431 +334335,334335 +180491,180491 +121792,121792 +136420,98122 +36731,36731 +27536,27536 +1849,1849 +140607,281417 +282485,206175 +2924,2924 +33383,33383 +266308,266308 +24969,24969 +4903,2487 +258946,258946 +304336,304336 +37490,37490 +225653,225653 +25967,52011 +215532,215532 +22682,22682 +4159,4159 +279989,103814 +7534,7534 +31752,31752 +193081,193081 +177048,177048 +2258,2258 +10124,10124 +58247,58247 +380842,380842 +358510,358510 +251552,251552 +152173,152173 +352986,352986 +358177,358177 +206111,206111 +293650,293650 +147866,147866 +369858,369858 +38683,38683 +330775,463 +232784,232784 +427881,427881 +429662,429662 +38041,38041 +357739,357739 +190031,190031 +129779,129779 +363539,363539 +29658,29658 +39547,39547 +11331,11331 +17583,17583 +158449,158449 +127590,127590 +5936,5936 +10459,10459 +260336,260336 +9633,9633 +284839,284839 +328562,328562 +342560,342560 +156098,156098 +156412,156412 +128906,128906 +83620,83620 +258134,258134 +16049,16049 +34939,34939 +37359,37359 +22495,22495 +39809,39809 +433973,433973 +16850,10210 +326245,326245 +241695,241695 +360882,360882 +236755,236755 +36125,36125 +35705,35705 +29764,29764 +5748,5748 +66777,66777 +147256,147256 +142064,142064 +325535,325535 +273855,273855 +366300,366300 +31576,31576 +4039,4039 +23691,23691 +12408,12408 +188884,188884 +267829,267829 +252164,252164 +172776,172776 +6287,6287 +145328,145328 +181178,181178 +183065,134884 +263094,263094 +21642,21642 +3375,3375 +168450,2733 +317399,317399 +4444,4444 +406525,406524 +394852,156546 +603,603 +197066,197066 +85258,85258 +193908,193908 +59121,59121 +368695,259388 +26870,26870 +186676,186676 +283802,283802 +33916,33916 +337529,337529 +36099,36099 +61449,61449 +152082,24079 +141092,141092 +269648,269648 +5098,5098 +4025,4025 +33280,33280 +116189,116189 +24702,24702 +19855,19855 +331830,271460 +18682,18682 +16939,16939 +67018,67018 +123505,123505 +130724,130724 +168236,168236 +4340,4340 +56409,56409 +366250,366250 +61493,61493 +434006,434006 +3356,3356 +231068,231068 +12348,12348 +139687,139687 +40610,40610 +23885,23885 +161858,161858 +79739,79739 +28294,28294 +262771,262771 +413856,345622 +165757,165757 +57286,57286 +90826,90826 +196637,196637 +410344,410344 +430550,178038 +353801,353801 +30724,30724 +37549,37549 +339673,339673 +155167,155167 +249863,187727 +29100,29100 +39853,39853 +30649,30649 +32304,32304 +339851,339851 +245507,245507 +24810,24810 +22060,22060 +118316,118316 +137363,137363 +99838,99838 +277771,277771 +355946,225144 +31373,31373 +35123,35123 +258775,258775 +42528,42528 +1023,1023 +8000,8000 +382880,218769 +10319,10319 +286865,286865 +244882,244882 +2701,2701 +29352,29352 +201139,201139 +356301,218333 +257789,257789 +351885,351885 +216680,216680 +402859,402859 +402860,402860 +119314,119314 +402862,402862 +239966,239966 +199001,199001 +189651,189651 +358425,204836 +420987,319793 +28081,28081 +130460,130460 +104398,104398 +39283,39283 +296106,296106 +389732,389732 +194735,194735 +9730,9730 +401482,401482 +154061,154061 +24922,24922 +209429,209429 +328127,328127 +9428,9428 +3082,3082 +26433,26433 +16923,403905 +97500,97500 +29463,29463 +120995,120995 +83019,83019 +12536,12536 +153654,153654 +6574,6574 +37267,37267 +15520,15520 +3273,3273 +315967,315967 +94686,94686 +313529,313529 +380243,380243 +32105,32105 +367763,367763 +16944,16944 +40434,40434 +11205,11205 +121754,121754 +1657,1657 +100666,100666 +20781,20781 +41299,41299 +54046,54046 +187519,187519 +133351,133351 +122226,122226 +359244,359244 +413945,413945 +21901,21901 +16118,16118 +427098,427098 +17068,17068 +30492,30492 +12842,12842 +135190,135190 +300859,300859 +61819,61819 +163593,163593 +58810,58810 +304617,304617 +33110,33110 +362554,362554 +229126,229126 +253854,253854 +151772,151772 +223992,223992 +39487,39487 +12486,12486 +4731,4731 +152123,152123 +412178,412178 +299188,299188 +89663,89663 +378251,378251 +68848,68848 +84990,84990 +296143,50381 +304528,304528 +237984,237984 +433053,433053 +170483,170483 +341661,341661 +69259,69259 +414311,463 +62284,62284 +288449,288449 +337675,337675 +341138,341138 +24404,24404 +23287,23287 +21156,21156 +286908,286908 +324802,324802 +89070,89070 +91485,91485 +18244,18244 +392839,392839 +68079,68079 +310133,310133 +185143,150965 +420571,420571 +138598,138598 +101761,101761 +119684,119684 +115517,115517 +315002,315002 +37804,37804 +372840,372840 +42693,42693 +344844,1111 +7149,7149 +274824,274824 +137100,137100 +168051,168051 +109845,109845 +41244,41244 +425763,224271 +19794,19794 +100301,100301 +37123,37123 +374003,374003 +298454,267989 +304747,304743 +327998,327998 +257579,257579 +7459,7459 +236932,236932 +122527,122527 +40582,40582 +39918,39918 +402594,402594 +295194,295194 +316584,316584 +31922,31922 +337216,337216 +355435,355435 +357017,357017 +13398,13398 +21258,21258 +411729,411729 +336802,336802 +41808,41808 +13899,13899 +135230,135230 +16405,16405 +26097,26097 +144863,144863 +189282,189282 +37262,37262 +63890,63890 +429663,429663 +175965,175965 +400091,400091 +119494,119494 +176610,176610 +129576,129576 +365179,365179 +17562,17562 +363900,363900 +23160,23160 +38142,38142 +36469,36469 +433587,6249 +333258,333258 +142419,142419 +24435,24435 +109887,109887 +345457,345457 +427002,427002 +111976,111976 +391044,391044 +358288,261157 +179232,179232 +194503,194503 +293765,293765 +316074,316074 +423848,417321 +351996,181045 +36165,36165 +70339,70339 +37929,37929 +37902,37902 +351104,351104 +266358,266358 +334865,334865 +5756,5756 +332056,332056 +151489,151489 +385673,385673 +31208,31208 +66684,66684 +109330,109330 +132558,132558 +78539,78539 +17492,17492 +127440,127440 +6095,6095 +32603,32603 +127208,127208 +100205,100205 +199954,199954 +345898,345898 +173461,173461 +72993,72993 +195224,195224 +323708,323708 +221082,221082 +37536,37536 +39112,39112 +133611,133611 +103201,103201 +423348,423348 +39031,39031 +21723,21723 +38051,38051 +18767,18767 +32962,32962 +36167,36167 +192184,192181 +137611,137611 +381677,381677 +197997,197997 +337387,337387 +411014,411014 +147032,147032 +227152,227152 +174553,174553 +31471,31471 +15517,15517 +29257,29257 +272757,272757 +33166,33166 +173017,173017 +137715,137715 +38374,38374 +56744,56744 +307719,307719 +432824,432824 +294608,294608 +35998,35998 +284672,284672 +288779,288779 +99066,99066 +260920,260920 +144183,144183 +373561,373561 +284637,284637 +108875,108875 +128299,128299 +127064,127064 +27383,36337 +20664,20664 +325146,325146 +37735,37735 +6591,6591 +132192,132192 +85215,85215 +15229,15229 +337852,337852 +41379,41379 +324866,324866 +51500,51500 +159901,134884 +165525,165525 +399273,399273 +367884,367884 +279573,279573 +149301,149301 +249138,249138 +31338,31338 +366441,366441 +70536,70536 +27488,27488 +325389,325389 +65596,65596 +341526,341526 +130471,130471 +275885,275885 +66260,66260 +311745,311745 +431371,431371 +162273,162273 +149010,149010 +379027,379027 +118445,118445 +363054,363054 +11199,11199 +8773,8773 +79083,79083 +359230,359230 +136560,136560 +267024,267024 +25859,25859 +21650,21650 +110348,110348 +237180,237180 +413639,413639 +299819,299819 +323560,323560 +241752,241752 +295910,295910 +155837,155837 +367864,367864 +110116,110116 +9713,9713 +175103,175103 +15169,15169 +423745,423745 +41732,41732 +315365,315365 +170540,170540 +134288,134288 +56379,56379 +135115,135115 +29116,29116 +87514,87514 +418764,418764 +50693,50693 +263172,263172 +22961,22961 +64803,64803 +394885,394885 +352995,22392 +36159,36159 +29799,29799 +291476,291476 +422991,422991 +209503,209503 +428075,428075 +418299,418299 +86493,86493 +137251,137251 +368903,368903 +402105,402105 +245657,245657 +96680,96680 +17800,17800 +69802,69802 +353473,267832 +309938,309938 +109724,109724 +400030,400030 +419465,419465 +34231,34231 +120691,120691 +375652,375652 +37803,37803 +72175,72175 +119570,119570 +427149,427149 +271540,32441 +405386,405386 +86085,86085 +28484,28484 +174745,174745 +418539,418539 +38627,38627 +48655,48655 +422820,422820 +128957,128957 +147794,463 +249379,249379 +299471,299471 +426440,426440 +35359,35359 +302240,302240 +248161,248161 +128848,128848 +360698,360698 +226031,226031 +362839,362839 +355937,355937 +42739,42739 +205104,205104 +43221,43221 +43345,43345 +104635,104635 +154263,154263 +132418,132418 +39408,39408 +311909,311909 +34912,34912 +329158,329158 +334260,334260 +297126,297126 +11661,11661 +73568,73568 +183816,183816 +202073,202073 +16658,16658 +160671,160671 +18459,18459 +38593,38593 +223148,223148 +293149,293149 +19818,19818 +93669,93669 +129619,129619 +29618,29618 +335383,335383 +41126,41126 +162676,162676 +38129,38129 +82082,82082 +83159,83159 +25056,25056 +425790,425790 +73427,73427 +134111,134111 +247145,247145 +35204,35204 +325017,325017 +38274,38274 +132718,132718 +37124,37124 +49768,49768 +56879,56879 +50806,50806 +28433,28433 +270714,270714 +346772,346772 +174006,174006 +43157,43157 +22597,22597 +17669,17669 +131964,131964 +17116,17116 +349776,349776 +138331,138331 +22541,22541 +146166,146166 +127113,127113 +57120,57120 +18107,18107 +1704,1704 +44589,44589 +123994,123994 +21038,21038 +108634,108634 +26889,26889 +373490,463 +269462,269462 +84764,84764 +110004,110004 +99633,99633 +323702,323702 +69119,69119 +32585,32585 +358290,358290 +403570,403570 +353587,353587 +35539,35539 +288013,288013 +65764,65764 +22005,22005 +300034,300034 +284931,284931 +331257,331257 +377396,377396 +367182,367182 +116574,116574 +429034,429034 +63603,63603 +352768,352768 +425321,425321 +37148,37148 +248605,248605 +408711,408711 +182240,182240 +430996,430996 +325318,325318 +34735,34735 +320080,320080 +216074,216074 +235270,235270 +311248,311248 +162745,162745 +59887,59887 +92537,92537 +159202,159202 +317302,317302 +129271,129271 +303163,303163 +114857,114857 +63375,38818 +75434,75434 +280584,280584 +186653,186653 +15415,15415 +39884,39884 +304341,304341 +422173,422173 +61714,61714 +164797,164797 +239029,289957 +94280,94280 +251689,251689 +306006,306006 +97935,97935 +251359,251359 +157672,157672 +418477,303322 +30523,30523 +131974,131974 +170497,170497 +25926,25926 +36980,36980 +145367,145367 +66685,66685 +103054,103054 +22199,22199 +171342,171342 +41924,41924 +234591,234591 +222494,222494 +24634,24634 +420053,420053 +191078,191078 +32482,32482 +36162,36162 +41802,41802 +10240,10240 +72512,72512 +18445,18445 +38645,38645 +190635,190635 +293994,293994 +218301,218301 +336286,336286 +109857,109857 +101598,101598 +19010,19010 +81430,81430 +229607,229607 +253516,251472 +36095,36095 +75887,75887 +99728,99728 +99974,99974 +252474,252474 +287134,287134 +255464,255464 +5385,5385 +304744,304743 +256807,256807 +28995,28995 +311913,311913 +344455,344455 +181287,181287 +25459,25459 +145119,145119 +304291,304291 +147157,147157 +35944,35944 +255873,255873 +19421,19421 +223112,223112 +9006,9006 +35915,35915 +28801,28801 +11300,11300 +34313,463 +294215,294215 +378806,378806 +426241,426241 +170747,170747 +371946,245950 +141288,141288 +29836,29836 +303530,303530 +279090,279090 +382543,382543 +250537,250537 +26338,26338 +22353,22353 +268799,268799 +257867,257867 +135152,135152 +134162,134162 +121782,121782 +374837,374837 +146605,146605 +46940,46940 +17055,17055 +6107,6107 +111636,111636 +20162,20162 +145844,145844 +35420,35420 +36566,36566 +366020,195137 +366307,366307 +25509,25509 +307727,267989 +43051,43051 +91446,91446 +327384,327384 +186926,186926 +243178,243178 +65071,65071 +429648,429648 +153212,153212 +22201,22201 +292822,292822 +227220,227220 +20179,20179 +29476,29476 +422798,422798 +36059,36059 +28802,28802 +316408,231674 +276152,276152 +380846,380846 +185996,185996 +421346,421346 +357874,357874 +270055,270055 +229510,229510 +105149,105149 +37924,37924 +175333,175333 +427605,427605 +162935,162935 +312257,312257 +309043,267989 +416031,416031 +426103,426103 +31694,31694 +107419,107419 +297132,297132 +128357,128357 +92678,2762 +33477,33477 +251581,251581 +23674,23674 +425075,425075 +19771,19771 +391653,391653 +423347,423347 +289633,289633 +73205,73205 +37709,37709 +121481,121481 +47123,47123 +298079,267989 +206624,206624 +255713,255713 +255273,255273 +12014,12014 +89029,89029 +235253,235253 +100232,100232 +309398,309398 +265015,265015 +236705,236705 +39464,39464 +286976,286976 +267521,267521 +242712,242712 +23262,23262 +17047,17047 +353254,353254 +22730,22730 +11303,11303 +301360,301360 +137623,137623 +42513,42513 +348324,348324 +174003,174003 +427553,427553 +284360,290508 +66302,66302 +25756,25756 +299567,299567 +121872,121872 +431205,431205 +16692,16692 +114948,114948 +24989,24989 +396058,396058 +29802,29802 +301861,301861 +26576,26576 +33927,33927 +68690,68690 +169966,169966 +353608,353608 +87887,87887 +93806,93806 +139624,139624 +12185,12185 +21229,21229 +406973,406973 +260756,463 +153684,153684 +364384,364384 +187844,187844 +298422,298422 +26490,26490 +196073,196073 +101021,101021 +323705,323705 +40172,40172 +26098,26098 +27648,27648 +229600,229600 +338304,338304 +227325,227325 +119375,119375 +393184,393184 +134826,134826 +369538,369538 +353475,267832 +111324,111324 +9766,9766 +386062,386062 +31490,31490 +363333,363333 +34204,34204 +147499,147499 +184083,184083 +159095,159095 +28031,28031 +35974,35974 +162244,162244 +288903,288903 +36388,36388 +255309,255309 +422599,373778 +387347,387347 +33171,33171 +310778,310778 +358606,358606 +143174,143174 +281139,281139 +353469,353469 +82157,82157 +341716,341716 +420924,420924 +249167,249167 +249005,249005 +340596,340596 +91480,91480 +337336,337336 +24156,24156 +315072,315072 +11305,11305 +351093,16640 +89357,89357 +24392,24392 +41169,41169 +114102,114102 +29858,29858 +164783,164783 +70348,70348 +280240,280240 +120980,120980 +28972,13360 +172451,172451 +171349,171349 +133148,133148 +277808,277808 +8855,8855 +36499,36499 +183198,183198 +159138,159138 +10357,10357 +397349,397349 +36200,36200 +29615,29615 +166318,166318 +23231,23231 +28560,28560 +94340,94340 +132713,132713 +21088,21088 +298482,267989 +296648,296648 +30960,30960 +296790,296790 +35732,35732 +56284,56284 +431310,431310 +351719,351719 +39494,39494 +53154,53154 +328338,328338 +174129,174129 +99614,99614 +425859,425859 +37243,37243 +341229,341229 +312902,312902 +152439,152439 +315735,315735 +265203,265203 +265111,265111 +69413,69413 +84549,84549 +13965,13965 +234582,234582 +17177,17177 +240544,240544 +36080,36080 +14542,14542 +370200,370200 +79710,79710 +422451,422451 +284578,299 +333956,333956 +83876,83876 +43224,43224 +332183,332183 +29857,29857 +368702,368702 +37562,37562 +325917,325917 +36053,36053 +377823,377823 +28773,28773 +34586,34586 +353285,353285 +230895,230895 +32964,32964 +144859,144859 +70476,70476 +163278,163278 +42136,42136 +96527,96527 +18759,18759 +344088,344088 +396349,396349 +153651,153651 +41685,41685 +300362,300362 +22193,22193 +396610,417607 +245784,245784 +159208,159208 +23076,23076 +36509,36509 +136293,136293 +262066,262066 +318554,318554 +136289,136289 +340078,32441 +38690,38690 +91457,91457 +35526,35526 +30579,30579 +138220,138220 +21607,21607 +42885,42885 +344013,344013 +110632,110632 +150214,150214 +408713,408714 +336012,336012 +67501,67501 +184548,184548 +255981,255981 +9375,9375 +12249,12249 +103852,103852 +31459,31459 +34566,34566 +16055,16055 +407997,407997 +184246,184246 +168155,168155 +38073,38073 +310882,310882 +27317,27317 +138228,138228 +136259,136259 +269639,269639 +29044,29044 +132597,132597 +383604,383604 +37595,37595 +296381,296381 +200596,200596 +272519,272519 +174338,174338 +419119,419119 +133817,133817 +3774,3774 +143177,143177 +112896,112896 +166031,166031 +415739,415739 +180119,180119 +34552,34552 +303834,303834 +161335,161335 +411559,411559 +58470,58470 +204444,204444 +29334,29334 +26504,26504 +295087,295087 +260791,260791 +214488,214488 +143691,143691 +345794,345794 +227133,227133 +303761,303761 +31398,31398 +132201,132201 +426492,426492 +222726,222726 +391337,391337 +127738,127738 +403305,403305 +61967,61967 +198001,198001 +320900,1860 +42422,42422 +229903,229903 +122929,122929 +92104,92104 +304320,304320 +12421,12421 +347096,347096 +39555,39555 +61852,61852 +28077,28077 +173887,173887 +300119,300119 +60362,60362 +156376,156376 +215156,215156 +55239,55239 +42253,42253 +18306,297569 +132687,132687 +374997,374997 +421785,421785 +289752,289752 +41125,41125 +151397,151397 +85214,85214 +287872,240744 +131677,131677 +362612,362612 +39970,39970 +182725,155481 +141336,141336 +369928,369928 +13897,13897 +97401,97401 +29724,29724 +97237,97237 +246162,246162 +147851,147851 +36992,36992 +278223,278223 +153849,153849 +65696,65696 +13909,13909 +113105,113105 +21521,21521 +299922,299922 +191563,191563 +173044,173044 +91460,91460 +13736,13736 +41607,41607 +140532,140532 +369569,369569 +154858,154858 +154543,154543 +104387,104387 +128190,128190 +24061,24061 +428936,428936 +130327,130327 +72427,72427 +253497,253497 +325184,325184 +429453,312786 +296725,296725 +39575,39575 +169935,169935 +34729,34729 +41413,41413 +45049,45049 +412999,412999 +73392,73392 +41801,41801 +59040,59040 +403269,403269 +37538,37538 +209504,209504 +210488,210488 +99562,99562 +114229,114229 +231637,231637 +11228,11228 +64582,64582 +72509,72509 +357509,357509 +172884,172884 +27037,27037 +80351,72081 +372224,25069 +27082,27082 +350282,350282 +411348,411348 +387592,387592 +402387,402387 +65844,65844 +165725,165725 +33682,33682 +31487,31487 +19390,19390 +36082,36082 +426243,426243 +338569,338569 +66676,66676 +264176,264176 +323215,323215 +37073,37073 +32856,32856 +27918,27918 +109891,109891 +279479,279479 +41207,41207 +288267,288267 +152609,152609 +38214,38214 +167461,167461 +108572,108572 +292600,292600 +333582,333582 +278389,278389 +23077,23077 +34264,34264 +324535,324535 +39713,39713 +109907,109907 +368067,368067 +109901,109901 +183040,183040 +137694,137693 +34512,34512 +253157,253157 +238981,238981 +287004,287004 +423629,423629 +258099,258099 +127677,127677 +37564,37564 +425937,425937 +341188,341188 +113147,113147 +66786,66786 +169997,169997 +131732,131732 +336341,336341 +326502,326502 +357855,357855 +116383,116383 +368556,368556 +225487,225487 +27628,27628 +134261,134261 +251503,301618 +23683,23683 +78653,78653 +25806,305576 +243596,243596 +411812,411812 +239507,239507 +204058,204058 +61872,61872 +347208,347208 +88852,88852 +334308,334308 +284857,39180 +60797,60797 +250468,250468 +122039,122039 +276668,276668 +234819,234819 +135844,135844 +135907,135907 +12773,12773 +38851,38851 +26895,26895 +262417,262417 +33039,33039 +348545,348545 +131885,131885 +421016,421016 +137687,137693 +14395,14395 +60716,60716 +376494,376494 +394309,394309 +381341,381341 +164646,164646 +189626,189626 +68753,68753 +421699,421699 +86885,86885 +227074,227074 +31633,31633 +41779,41779 +68995,68995 +255168,255168 +66688,66688 +28316,28316 +307679,307679 +134959,134959 +6664,6664 +134741,134741 +309052,309052 +232009,232009 +145832,145832 +304223,304223 +150268,150268 +121430,121430 +204068,204068 +25725,25725 +50411,50411 +418515,418515 +132467,132467 +39816,39816 +41378,41378 +29932,29932 +341644,341644 +21812,21812 +39229,39229 +56428,56428 +383272,463 +158993,158993 +89609,89609 +23432,23432 +225644,225644 +170512,170512 +110344,110344 +120687,120687 +29617,29617 +132100,132100 +22453,22453 +260909,260909 +113386,113386 +242355,242355 +194185,194185 +376315,376315 +39974,39974 +39453,39453 +63037,63037 +254620,254620 +15056,15056 +158480,158480 +334586,334586 +418068,418068 +244257,244257 +7264,7264 +354712,354712 +69323,69323 +238096,238096 +171784,171784 +356541,356541 +426644,426644 +109881,109881 +361226,361226 +136782,136782 +33717,33717 +297719,297719 +186097,186097 +24545,24545 +139754,139754 +230084,230084 +280765,280765 +271500,271500 +420954,420954 +194057,194057 +36121,36121 +162932,162932 +31308,31308 +171593,171593 +38966,38966 +27484,27484 +34626,34626 +68151,68151 +349915,349915 +21868,21868 +230188,230188 +352436,352436 +145930,145930 +136260,136260 +16958,16958 +91490,91490 +17412,17412 +34553,34553 +24822,24822 +121801,121801 +150532,150532 +17263,17263 +39185,39185 +66660,66660 +371214,371214 +376510,376510 +48437,48437 +65601,65601 +58910,58910 +91470,91470 +297718,267989 +16732,16732 +147067,147067 +27075,27075 +154227,1421 +289365,289365 +142998,142998 +329994,329994 +284579,9334 +164532,164532 +74644,74644 +387345,387345 +69154,69154 +76456,76456 +294646,294646 +146112,146112 +17626,17626 +419228,419228 +247587,247587 +299779,299779 +186887,186887 +184782,193593 +129474,129474 +220259,220259 +24093,24093 +132671,132671 +358160,358160 +375748,375748 +261071,261071 +285988,285988 +428237,428237 +104675,104675 +170707,170707 +26618,26618 +32080,32080 +100466,100466 +14193,14193 +228297,228297 +409974,361335 +429381,429381 +331381,331381 +78842,78842 +389775,389775 +35216,35216 +22810,22810 +17696,17696 +260456,260456 +41485,41485 +254151,254151 +255275,255275 +157913,157913 +295099,295099 +433463,433463 +316436,1421 +56009,56009 +383132,364425 +196136,196136 +66759,66759 +43430,43430 +89578,89578 +41211,41211 +433547,361214 +387739,387739 +332009,332009 +4995,4995 +310384,310384 +64230,64230 +38442,38442 +134159,134159 +409531,409531 +37433,37433 +302274,302274 +178913,178913 +362683,362683 +341235,341235 +128295,128295 +115326,115326 +321269,321269 +373521,373521 +40557,40557 +410012,410012 +230014,230014 +229254,229254 +342233,342233 +65525,65525 +103172,103172 +97539,97539 +275719,275719 +425735,425735 +18872,18872 +328471,328471 +409701,409701 +39995,39995 +38396,38396 +115678,115678 +426572,426572 +25133,25133 +4748,4748 +205435,205435 +41688,41688 +375692,12747 +320224,320224 +271753,271753 +426948,426948 +62635,62635 +114688,114688 +142971,142971 +57063,57063 +342405,342405 +120807,120807 +17295,17295 +36854,36854 +50725,50725 +350885,350885 +433515,433515 +235876,235876 +35360,35360 +43029,43029 +359401,359401 +317991,317991 +332743,332743 +347028,347028 +93657,93657 +33479,33479 +111322,111322 +128684,128684 +163678,163678 +136261,136261 +381717,381717 +378586,378586 +346068,346068 +16486,16486 +291055,291055 +29826,29826 +71976,71976 +14667,14667 +427807,427807 +420574,420574 +157478,157478 +352129,352129 +98988,98988 +264779,264779 +69859,69859 +36268,36268 +66259,66259 +38291,38291 +177953,177953 +391558,391558 +46022,46022 +387734,387734 +295154,295154 +119635,119635 +332205,332205 +424890,424890 +287917,287917 +347821,347821 +104422,104422 +36158,36158 +17703,375545 +72176,72176 +347953,347953 +70982,70982 +34751,34751 +72092,72092 +425634,425634 +175113,175113 +166022,166022 +109904,109904 +10148,10148 +142358,142358 +58078,58078 +240272,240272 +129564,129564 +337677,337677 +38573,38573 +217251,217251 +41679,41679 +353395,353395 +38605,38605 +372445,372445 +109965,109965 +340710,340710 +287273,287273 +116590,116590 +91477,91477 +27386,27386 +11246,11246 +66675,66675 +12566,12566 +302443,302443 +87060,87060 +383692,383692 +42609,42609 +69982,69982 +89075,89075 +243196,243196 +4233,4233 +138074,138074 +109860,109860 +69656,69656 +4183,4183 +101661,101661 +325925,321 +33265,33265 +307639,307639 +16675,16675 +14645,14645 +183656,183656 +36528,36528 +296726,296726 +256131,256131 +249136,42101 +45451,45451 +26651,26651 +168324,168324 +37800,37800 +354018,354018 +108570,108570 +295467,295467 +135797,135797 +377380,377380 +149519,149519 +200464,200464 +36640,36640 +93655,93655 +301057,301057 +38057,38057 +60954,60954 +91473,91473 +433967,433967 +34755,34755 +9003,9003 +25873,25873 +174378,174378 +307175,307175 +38601,38601 +36109,36109 +163492,163492 +142232,16714 +41164,41164 +21438,21438 +208819,208819 +206860,206860 +306172,306172 +22908,22908 +192271,192271 +136277,136277 +229797,229797 +65659,65659 +357589,357589 +113653,113653 +365612,365612 +174205,174205 +138839,138839 +42137,42137 +15760,15760 +31947,31947 +22590,22590 +340582,340582 +340131,340131 +264934,264934 +39757,39757 +51648,51648 +413640,413640 +21220,21220 +326164,326164 +40018,40018 +178499,178499 +312380,312380 +430539,430539 +103658,103658 +280698,280698 +405375,405375 +27951,27951 +401256,401256 +163486,163486 +58877,58877 +92292,92292 +42144,42144 +153708,153708 +10832,10832 +371929,371929 +109966,109966 +23371,23371 +426822,426822 +322269,322269 +11467,11467 +36078,36078 +65413,65413 +387928,387928 +61297,61297 +50686,50686 +35971,35971 +36164,36164 +144578,144578 +19314,19314 +35605,35605 +234919,234919 +26660,26660 +261460,261458 +239953,239953 +30250,30250 +179815,179815 +147981,147981 +175507,175507 +10954,10954 +322444,322444 +378084,378084 +338746,338746 +113418,113418 +98957,98957 +281140,281140 +284927,284927 +74158,74158 +43328,43328 +65408,65408 +95521,95521 +33788,33788 +391566,391566 +140730,140730 +402566,402566 +147365,147365 +347788,347788 +21335,21335 +92296,92296 +351511,351511 +311862,307719 +312127,312127 +41684,41684 +9423,9423 +179149,179149 +123043,123043 +197172,197172 +138509,138509 +37835,37835 +42663,42663 +32722,32722 +42589,42589 +126671,126671 +197098,197098 +144767,144767 +26309,26309 +34909,34909 +181315,181315 +411984,411984 +404710,404710 +364159,364159 +38525,38525 +201977,201977 +213055,213055 +38921,38921 +335530,335530 +56501,56501 +342193,342193 +409524,314386 +294176,294176 +194105,194105 +324221,268225 +42305,42305 +314946,314946 +400193,400193 +91483,91483 +370833,370833 +395508,395508 +299318,299318 +43777,43777 +386616,386616 +390214,390214 +66701,66701 +373983,373983 +33979,33979 +66335,66335 +91488,91488 +418172,418172 +120762,120762 +179007,179007 +267594,267594 +152291,152291 +411038,411038 +88855,88855 +16910,16910 +131128,131128 +132442,132442 +17834,17834 +171312,171312 +24150,24150 +370797,370797 +158375,158375 +157184,157184 +13573,13573 +218012,218012 +139593,139593 +280059,280059 +282510,282510 +283469,283469 +236879,236879 +183659,183659 +86620,86620 +335013,335013 +41881,41881 +89046,89046 +99536,99536 +62656,62656 +71363,71363 +358199,358199 +56749,56749 +329482,329482 +369567,369567 +40992,40992 +261072,261072 +3791,3791 +132794,132794 +99379,99379 +35050,35050 +72051,72051 +25131,25131 +311589,311589 +252585,252585 +99276,99276 +31083,31083 +277233,277233 +318175,318175 +97516,97516 +123662,123662 +265529,265529 +67009,67009 +25867,25867 +350726,350726 +19371,19371 +40274,40274 +25892,25892 +413217,413217 +72291,72291 +75043,75043 +328210,328210 +419132,419132 +23534,23534 +36970,36970 +389116,23068 +287912,287912 +215870,215870 +362159,362159 +350959,19234 +410950,410950 +383181,383181 +10382,10382 +230264,230264 +41803,41803 +351881,351881 +175797,175797 +40418,40418 +97699,97699 +355440,355440 +384137,384137 +26128,26128 +418518,418518 +159873,159873 +15398,15398 +19689,19689 +142230,142230 +136033,136033 +180294,180294 +421184,421184 +278286,278286 +109680,109680 +3222,3222 +342123,342123 +302052,302052 +162682,162682 +36558,36558 +27407,27407 +35408,35408 +297535,297535 +346746,346746 +388062,388062 +38516,38516 +421492,421492 +22922,22922 +421377,421377 +188617,188617 +233626,233626 +37193,37193 +162275,162275 +18190,16944 +406208,406208 +413298,413298 +301978,301978 +89768,89768 +341369,341369 +36219,36219 +30577,30577 +57227,57227 +36193,36193 +35931,35931 +135108,135108 +6878,6878 +123891,123891 +327401,59576 +341719,341719 +299576,299576 +39652,39652 +37967,37967 +42400,42400 +300576,300576 +328889,328889 +391182,391182 +152839,152839 +65782,65782 +414337,414337 +24450,24450 +180690,180690 +410504,410504 +39158,39158 +40188,40188 +66921,66921 +14621,14621 +36033,36033 +332986,332986 +287974,287974 +359816,359816 +358294,358294 +67172,67172 +302074,302074 +250645,250645 +424784,463 +378734,378734 +28099,28099 +125049,125049 +339452,339452 +420100,420100 +136403,136403 +244679,3181 +33567,33567 +413965,413965 +97376,97376 +300873,300873 +407507,407507 +137771,137771 +28666,28666 +424172,308385 +157879,157879 +54880,54880 +327986,327986 +428469,428469 +334224,334224 +429172,429172 +278279,278279 +28847,28847 +145843,145843 +303963,303963 +375101,375101 +127316,127316 +227091,227091 +400163,400163 +4752,4752 +328129,328529 +178877,178877 +37557,37557 +22243,22243 +130291,130291 +119631,119631 +63531,63531 +349147,349147 +419634,254777 +43286,43286 +109850,109850 +91472,91472 +320089,320089 +128498,128498 +31734,31734 +154808,154808 +344430,344430 +28636,28636 +20933,20933 +58014,58014 +114168,114168 +408715,408715 +34075,34075 +311964,311964 +90043,90043 +255162,255162 +352289,352289 +331354,331354 +14635,14635 +419871,419871 +198868,198868 +229666,229666 +36208,36208 +219002,219002 +403216,403216 +133206,133206 +182043,182043 +256813,256813 +403284,403284 +248190,248190 +423899,423899 +57119,57119 +14444,14444 +68845,68845 +155142,155142 +65449,65449 +124721,124721 +335526,335526 +144583,144583 +35941,35941 +143489,143489 +25134,25134 +366708,366708 +38045,38045 +20588,20588 +37614,37614 +52977,52977 +260192,260192 +420228,420228 +32307,32307 +124527,124527 +424806,424806 +148055,148055 +21301,21301 +402712,402712 +86448,86448 +107532,107532 +36272,36272 +200606,200606 +202000,202000 +17760,17760 +235268,235268 +26631,26631 +329947,329947 +379805,379805 +299193,17379 +329703,329703 +239829,239829 +73382,73382 +34492,34492 +43759,43759 +184999,184999 +32643,32643 +91455,91455 +309053,309053 +421025,421025 +131248,131248 +251311,251311 +178798,178798 +66511,66511 +122839,122839 +400671,400671 +92157,92157 +19542,19542 +358299,358299 +208327,208327 +24853,24853 +71602,71602 +55033,55033 +28056,28056 +268507,268507 +94384,94384 +225460,225460 +30712,30712 +203791,203791 +73074,73074 +31447,31447 +34907,34907 +61149,61149 +73101,73101 +97777,97777 +165589,165589 +68334,68334 +238298,238298 +142616,142616 +89438,89438 +339310,242742 +29061,29061 +28500,28500 +83805,83805 +21810,21810 +17542,17542 +233588,233588 +208040,208040 +39484,39484 +31084,31084 +345332,345332 +26463,26463 +17346,17346 +25813,25813 +411145,411145 +126761,126761 +152451,152451 +291336,291336 +72722,72722 +279972,587 +358150,358150 +171673,171673 +26772,26772 +381802,381802 +358018,358018 +20758,20758 +39686,39686 +354027,354027 +32524,32524 +346970,303322 +101663,101663 +378083,378083 +269400,269400 +397930,397930 +29703,29703 +129439,129439 +401502,401502 +282802,282802 +365977,365977 +44120,44120 +39065,39065 +349331,349331 +9303,9303 +327780,336962 +32711,32711 +39227,39227 +393288,393288 +37268,37268 +192068,192068 +280955,280955 +16084,16084 +249536,249536 +160485,160485 +5972,5972 +410348,410348 +268738,268738 +72134,72134 +108523,108523 +157513,157513 +115852,115852 +86430,86430 +106516,106516 +24694,24694 +36580,36580 +93370,93370 +112357,112357 +73847,73847 +288181,288181 +329709,329709 +341969,341969 +34326,34326 +123938,123938 +354036,354036 +23066,23066 +43094,43094 +180676,180676 +93615,93615 +263365,263365 +10217,10217 +122794,122794 +340147,340147 +391000,391000 +153716,153716 +170407,170407 +62941,62941 +30476,30476 +260610,260610 +34386,34386 +369533,369533 +91471,91471 +392805,392805 +24251,24251 +324067,324067 +38574,38574 +405985,405985 +204405,204405 +316951,316951 +16473,16473 +154691,154691 +300894,300894 +71675,71675 +91996,91996 +38701,38701 +37537,37537 +401698,401698 +358194,358194 +11588,11588 +152977,152977 +405376,405376 +23698,23698 +33609,33609 +64828,64828 +378804,378804 +82014,82014 +26591,26591 +270104,270104 +108402,108402 +18263,18263 +27909,27909 +26886,26886 +92106,92106 +38012,38012 +374261,374261 +60450,60450 +335626,335626 +186918,186918 +379405,379405 +326921,326921 +422751,422751 +29538,29538 +172760,463 +318356,318356 +342093,342093 +116876,116876 +297802,297802 +129632,129632 +318760,318760 +162451,162451 +64804,64804 +316435,1421 +198990,198990 +253323,253323 +266131,266131 +338089,338089 +122167,122167 +298341,298341 +36362,36362 +254809,254809 +153267,153267 +26059,26059 +232978,232978 +19937,19937 +230242,230242 +322898,322898 +33165,33165 +375688,375688 +28822,28822 +277202,277202 +23949,23949 +423766,423766 +405617,405617 +17927,17927 +42497,42497 +357487,357487 +236707,236707 +149886,149886 +76595,76595 +365480,365480 +158846,158846 +353928,353928 +6025,6025 +411071,411071 +31899,31899 +27321,27321 +243391,243391 +401946,401946 +329245,33259 +223540,223540 +101849,101849 +271404,271404 +27486,27486 +31886,31886 +416016,416016 +143710,143710 +92107,92107 +285045,285045 +27902,27902 +372872,372872 +431984,293348 +168739,168739 +112117,112117 +89069,89069 +137919,137919 +361987,361987 +21305,21305 +125435,125435 +386561,386561 +24385,24385 +188940,188940 +192028,192028 +348487,348487 +103410,103410 +42684,42684 +424863,424863 +179802,179802 +31555,31555 +328671,290508 +151424,151424 +162274,162274 +302724,302724 +367181,367181 +70925,70925 +123993,123993 +87562,87562 +84625,84625 +36065,36065 +412810,412810 +73565,73565 +37814,37814 +39572,39572 +374141,374141 +65955,65955 +246478,246478 +25495,25495 +27157,27157 +273280,32441 +28179,28179 +416520,416520 +115747,115747 +338732,463 +59542,59542 +85692,85692 +140275,140275 +386145,386145 +26509,26509 +88155,88155 +348350,348350 +339575,339575 +47363,47363 +115416,115416 +31432,31432 +403514,403514 +365644,365644 +173562,173562 +140437,140437 +187038,187038 +11184,155022 +207184,207184 +4238,4238 +137692,137693 +251419,251419 +27122,27122 +13247,13247 +392954,463 +96473,96480 +34883,34883 +54614,54614 +36626,36626 +262639,262639 +313775,313775 +91478,91478 +36989,36989 +237694,237694 +24548,24548 +228490,228490 +72426,72426 +108845,108845 +275256,275256 +310132,310132 +253514,251472 +427243,427243 +240107,240107 +81596,81596 +37790,37790 +91469,91469 +353826,353826 +286137,286137 +50685,50685 +158892,158892 +18093,18093 +47458,47458 +6895,6895 +237570,237570 +405526,405526 +26570,26570 +15059,15059 +351367,351367 +427043,427043 +195080,195080 +41845,41845 +16032,16032 +36490,36490 +22504,22504 +151840,151840 +202556,202556 +305206,305206 +169501,169501 +11190,11190 +424829,424829 +282061,282061 +40095,40095 +34718,34718 +84624,84624 +310664,310664 +419159,419159 +249252,249252 +24966,24966 +344331,344331 +330489,330489 +109010,109010 +11302,11302 +65765,65765 +24914,24914 +339900,339900 +35009,35009 +193444,193444 +245087,245087 +377607,377607 +347377,347377 +37668,37668 +265547,265547 +410285,410285 +43448,43448 +122491,122491 +38582,38582 +36918,36918 +316437,1421 +133917,133917 +426051,426051 +122210,122210 +179492,179492 +70235,70235 +135744,135744 +320550,320550 +327261,327261 +90606,90606 +389597,389597 +199554,199554 +259494,259494 +414569,414569 +29124,29124 +311687,311687 +99469,99469 +69121,69121 +185957,185957 +22159,22159 +375774,375774 +38621,38621 +331991,331991 +23210,23210 +336790,336790 +349041,349041 +381732,381732 +201982,201982 +28954,28954 +42449,42449 +13124,13124 +99535,99535 +154398,154398 +429022,429022 +276342,150882 +17134,17134 +150286,150286 +15135,15135 +41380,41380 +92501,92501 +277890,277890 +410174,410174 +420105,420105 +42917,42917 +113854,113854 +29098,29098 +334821,334821 +262935,262935 +372289,372289 +18839,18839 +69060,69060 +173495,173495 +11820,11820 +34730,34730 +188956,188956 +37402,37402 +305230,305230 +240110,240110 +46691,46691 +321181,321181 +188235,66286 +10483,10483 +40428,40428 +292818,292818 +18299,18299 +21085,21085 +34955,34955 +169230,169230 +32791,32791 +147689,147689 +34537,34537 +109390,109390 +141822,141822 +414757,414757 +27664,27664 +321676,321676 +66692,66692 +184457,8270 +285750,290508 +28774,28774 +107988,107988 +28608,28608 +34396,34396 +6206,6206 +353454,353454 +219546,219546 +32978,32978 +37736,37736 +190070,190070 +370402,370402 +16711,16711 +401915,401915 +33680,33680 +216290,216290 +36018,36018 +23673,23673 +240548,240548 +350879,350879 +20132,20132 +22955,22955 +36859,36859 +69591,69591 +87749,87749 +300989,300989 +167117,167117 +63309,63309 +67868,67868 +217022,217022 +73103,73103 +300854,300859 +142677,231281 +99301,99301 +10763,10763 +366449,366449 +23819,23819 +111680,111680 +76609,76609 +159982,17184 +255715,255715 +18028,18028 +162201,162201 +166572,166572 +191585,191585 +169073,169073 +87809,87809 +120615,120615 +146815,146815 +59543,8195 +93652,93652 +302290,302290 +124286,463 +428318,428318 +264322,264322 +22426,22426 +424477,424477 +28028,28028 +224117,224117 +433890,433890 +337511,337511 +354444,354444 +251044,251044 +122529,122529 +36890,36890 +39841,39841 +108403,108403 +137686,137693 +222240,222240 +212274,212274 +140839,140839 +15095,15095 +36157,36157 +312442,312442 +33143,33143 +65776,65776 +15857,15857 +264443,264443 +420959,420959 +35130,35130 +24346,24346 +41248,41248 +125058,152123 +174405,174405 +47072,47072 +227102,227102 +144230,144230 +24556,24556 +187206,187206 +32418,32418 +111979,111979 +20883,20883 +41992,41992 +29817,29817 +28846,28846 +13537,13537 +354045,252541 +72385,72385 +57144,57144 +377194,377194 +133750,75529 +89433,89433 +249764,249764 +424876,424876 +423601,423601 +296574,296574 +343505,343505 +420379,420379 +191560,184083 +150531,150531 +175370,175370 +344104,344104 +223826,223826 +61123,61123 +27692,27692 +130104,130104 +111485,111485 +91475,91475 +169414,169414 +13521,13521 +263933,263933 +167517,167517 +36348,36348 +411723,411723 +434391,434391 +103286,103286 +12448,12448 +119493,119493 +26665,26665 +298242,298242 +268236,268236 +285243,285243 +354033,354033 +337440,337440 +172511,172511 +245512,245512 +424267,424267 +26011,26011 +51735,51735 +187891,187891 +120624,120624 +353898,353898 +252658,252658 +27735,27735 +375647,375647 +194238,194238 +148379,148379 +64184,11042 +434195,434195 +25626,25626 +64800,64800 +37797,37797 +366849,366849 +73121,73121 +422685,422685 +138724,138724 +109856,109856 +31132,31132 +98505,98505 +224546,224546 +413243,413243 +24494,24494 +38298,38298 +290503,290503 +132249,132249 +138436,138436 +315592,315592 +312663,312663 +40945,40945 +72320,72320 +433747,433747 +428545,428545 +386363,386363 +396849,396849 +42129,42129 +347184,347184 +197415,197415 +64249,64249 +109867,109867 +415969,415969 +121026,121026 +40228,40228 +105291,105291 +42703,42703 +335491,335491 +378070,378070 +188592,188592 +13605,13605 +337829,337829 +303219,303219 +70857,70857 +176788,176788 +346900,346900 +29720,29720 +297315,297315 +413248,413248 +85773,85773 +370208,370208 +159914,159914 +318935,42101 +419895,419895 +237583,237583 +28592,28592 +131508,131508 +136252,136252 +37085,37085 +37965,37965 +173479,173479 +6062,6062 +152946,152946 +86656,86656 +153361,153361 +9260,9260 +111816,111816 +70301,70301 +129827,129827 +322803,322803 +327182,327182 +325311,325311 +174579,174579 +16954,16954 +91467,91467 +162876,162876 +18914,18914 +88435,88435 +31343,31343 +5599,5599 +431385,431385 +249765,249765 +29815,29815 +291775,291775 +19411,19411 +50626,50626 +329321,329321 +307192,307192 +50684,50684 +417903,417903 +340146,340146 +28561,28561 +42967,42967 +11066,11066 +190970,190970 +425855,2001 +10089,10089 +122822,122822 +171392,171392 +259491,259491 +39852,39852 +231930,231930 +166069,166069 +37167,37167 +130534,130534 +401923,401923 +20574,20574 +36504,36504 +29854,29854 +221638,221638 +371424,373384 +350479,350479 +365663,365663 +110529,110529 +57177,57177 +37360,37360 +89532,89532 +430630,430630 +106970,106970 +252131,252131 +62541,62541 +113207,113207 +51606,51606 +153963,153963 +101804,101804 +195027,195027 +80184,80184 +187979,187979 +33446,33446 +138700,138700 +53630,53630 +40173,40173 +353825,353825 +355477,355477 +34637,34637 +78439,78439 +81436,81436 +376190,376190 +122815,122815 +69577,69577 +363930,363930 +133242,133242 +12119,12119 +62517,62517 +26628,26628 +63089,63089 +110923,110923 +198812,198812 +301485,301485 +29412,29412 +28794,28794 +415298,415298 +381163,381163 +157259,157259 +419700,419700 +11540,11540 +251474,251472 +36156,36156 +33011,33011 +18873,18873 +425870,425870 +381207,381207 +8774,8774 +32602,32602 +309042,267989 +155400,155400 +33232,33232 +28612,28612 +352767,352767 +72348,72348 +358660,358660 +428761,428761 +237070,237070 +143681,143681 +177346,177346 +15578,15578 +229553,229553 +11472,11472 +299334,299334 +139736,139736 +153194,153194 +123926,123926 +309785,309785 +410473,410473 +388214,388214 +2673,2673 +37844,37844 +225229,225229 +343828,343828 +198314,198314 +429944,429944 +127840,127840 +98731,98731 +27595,27595 +200687,200687 +318057,318057 +127952,127952 +240587,240587 +393489,393489 +38171,38171 +170336,170336 +144445,144445 +277961,277961 +240545,240545 +37910,37910 +274711,274711 +39990,39990 +36052,36052 +131158,131158 +26465,26465 +28598,28598 +171998,171998 +58817,58817 +318555,318555 +14276,14276 +385695,385695 +158711,158711 +253425,253425 +317608,463 +212647,212647 +25851,25851 +301131,301128 +70898,70898 +230410,230410 +11337,11337 +23887,23887 +195441,195441 +150284,150284 +87466,87466 +61857,61857 +36641,36641 +175366,175366 +101024,101024 +13661,13661 +352287,352287 +8768,8768 +20009,20009 +429805,429805 +37410,37410 +68787,68787 +37131,37131 +400488,400488 +104985,104985 +49161,49161 +64959,64959 +21425,21425 +160474,160474 +39923,39923 +324475,324475 +140381,140381 +61966,61966 +31126,31126 +163123,163123 +21409,21409 +42239,42239 +129650,129650 +42378,42378 +78545,78545 +37191,37191 +189863,189863 +352671,352671 +97059,97059 +36097,36097 +353237,353237 +294629,294629 +414749,414749 +403313,403313 +383056,383056 +269460,269460 +38096,38096 +303440,303440 +80578,80578 +66700,66700 +419321,419321 +280242,280242 +37356,37356 +36988,36988 +31206,31206 +276891,276891 +133071,133072 +149133,149133 +11333,11333 +309050,309050 +278405,278405 +35690,35690 +239961,239961 +18238,18238 +39943,39943 +360780,360780 +38576,38576 +233132,233132 +8664,8664 +400172,400172 +93417,93417 +250469,250469 +30554,30554 +94452,94452 +329698,329698 +183958,183958 +61891,61891 +15765,15765 +327911,327911 +37949,37949 +152825,152825 +30979,30979 +25570,25570 +351893,351893 +141892,141892 +36873,36873 +172173,172173 +179596,179596 +39159,39159 +39262,39262 +26637,26637 +23821,23821 +38917,38917 +330230,330230 +5153,5153 +42622,42622 +335984,335984 +85699,85699 +18996,18996 +72019,72019 +19656,19656 +65229,65229 +61530,61530 +427197,427197 +229637,229637 +71056,71056 +257786,257786 +86753,86753 +298478,298478 +339314,339314 +349263,349263 +30699,30699 +164051,164051 +70708,70708 +88509,88509 +25880,25880 +18820,18820 +269654,269654 +5891,5891 +28008,28008 +14620,14620 +34716,34716 +167346,167346 +21160,21160 +18768,18768 +419112,419112 +227108,227108 +367688,367688 +36322,36322 +26940,26940 +5489,5489 +17289,17289 +40012,40012 +419118,419118 +256401,256401 +53408,53408 +227609,227609 +113078,113078 +35561,35561 +332647,332647 +177121,177121 +228485,228485 +99678,99678 +28568,28568 +18285,18285 +226119,226119 +283800,283800 +393897,393897 +55899,55899 +21084,21084 +35973,35973 +15331,15331 +424107,424107 +20453,20453 +14833,14833 +152552,152552 +68138,68138 +149187,149187 +22015,22015 +20818,20818 +379172,379172 +26488,26488 +400200,400200 +273261,273261 +433075,433075 +38714,38714 +14862,14862 +310622,310622 +33792,33792 +23232,23232 +17491,17491 +19523,19523 +140723,140723 +187120,187120 +117005,117005 +382614,382614 +39866,39866 +213225,213225 +88084,88084 +381530,381530 +24913,24913 +23896,23896 +30468,30468 +51504,51504 +29575,29575 +25211,25211 +65236,65236 +102608,66286 +65686,65686 +38606,38606 +251690,251690 +123014,123014 +183041,183041 +67374,67374 +26636,26636 +361160,361160 +174546,174546 +363938,363938 +398668,398668 +404865,404865 +266510,266510 +406333,406333 +38591,38591 +109475,109475 +32880,32880 +17372,17372 +11270,11270 +46985,46985 +25522,25522 +21020,21020 +426181,426181 +37850,37850 +298305,298305 +23490,23490 +287753,287753 +286682,286682 +224980,224980 +106421,106421 +420521,420521 +28639,28639 +211080,211080 +143246,143246 +322196,322196 +246368,246368 +332392,332392 +37049,37049 +321103,321103 +11841,11841 +134955,134955 +244359,32441 +40410,40410 +25108,25108 +208418,208418 +109797,109797 +15779,15779 +29421,29421 +24673,24673 +359875,39570 +114914,114914 +194835,194835 +258125,258125 +111261,111261 +145631,145631 +38409,38409 +150102,150102 +173147,173147 +139399,139399 +156717,156717 +5971,5971 +417686,417686 +12075,12075 +376160,376160 +98114,98114 +225351,225351 +404071,404071 +122687,122687 +39880,39880 +340929,340929 +7544,7544 +14518,14518 +33902,33902 +28930,28930 +15655,15655 +215629,215629 +38481,38481 +362009,362009 +108732,108732 +166967,166967 +331668,331668 +24172,24172 +353269,353269 +130323,130323 +353892,261157 +21972,21972 +128508,128508 +15145,15145 +251289,251289 +247681,247681 +206284,187012 +39981,39981 +30894,30894 +396109,396109 +74714,74714 +18868,18868 +168831,168831 +29737,29737 +52231,52231 +340826,340826 +296348,296348 +259464,259464 +307083,307083 +230839,191313 +14616,14616 +350712,350712 +28154,28154 +180077,180077 +291853,291853 +36660,36660 +365358,365358 +12112,12112 +39505,39505 +182914,182914 +345083,345083 +84915,84915 +19518,19518 +357814,357814 +67354,67354 +139856,139856 +29340,29340 +12058,12058 +127124,127124 +33647,33647 +424087,424087 +44204,44204 +26019,26019 +410767,410767 +30534,30534 +394126,438 +23368,23368 +339388,319529 +87506,87506 +155794,155794 +11916,11916 +9432,9432 +111384,111384 +42774,42774 +35002,35002 +9873,9873 +344690,344690 +14269,14269 +121092,121092 +41584,41584 +33621,33621 +225216,225216 +39164,39164 +103525,103525 +66671,66671 +26702,26702 +130353,130353 +13624,13624 +13118,13118 +191727,191727 +78600,78600 +22661,22661 +375702,375702 +265074,265074 +24759,24759 +171791,171791 +217584,217584 +30435,30435 +145120,145120 +152413,152413 +86134,86134 +39477,39477 +7548,7548 +177047,177047 +194776,194776 +237980,237980 +16803,16803 +10281,10281 +345282,345282 +377427,377427 +22103,22103 +22017,22017 +88277,88277 +58216,58216 +142736,142736 +62257,62257 +35081,35081 +360487,370402 +123344,123344 +16454,16454 +41351,41351 +130420,130420 +39423,39423 +68758,68758 +25799,25799 +32631,32631 +150671,150671 +21408,21408 +26355,463 +20522,20522 +27134,27134 +127563,127563 +291848,291848 +168325,168325 +145331,145331 +41263,41263 +199867,199867 +152906,152906 +96254,96254 +131618,131618 +288330,288330 +10134,10134 +361075,361075 +12497,12497 +331341,331341 +25322,25322 +21260,21260 +202321,202321 +140794,140794 +99916,99916 +85506,85506 +34935,34935 +38589,38589 +128958,128958 +12001,12001 +179941,179941 +207247,207247 +397504,397504 +136037,136037 +12020,12020 +39904,39904 +422061,422061 +245768,245768 +8827,8827 +126948,126948 +363079,363079 +202506,202506 +6302,6302 +207354,207354 +321032,321032 +325013,325013 +82008,82008 +428287,428287 +11086,11086 +217233,217233 +28929,28929 +189484,189484 +144260,144260 +68619,68619 +107059,107059 +169798,169798 +65951,65951 +7315,7315 +196162,196162 +40518,40518 +160478,160478 +4571,4571 +219367,219367 +22414,22414 +204901,204901 +200515,200515 +111634,111634 +327588,327588 +168355,168355 +34923,34923 +46916,46916 +11976,11976 +6510,6510 +58432,58432 +236246,236246 +178362,178362 +259427,259427 +39171,39171 +52593,52593 +181543,181543 +68988,5422 +162103,162103 +315599,315599 +187730,187730 +67165,67165 +374838,374838 +12886,12886 +177931,177931 +268998,268998 +81959,81959 +21033,21033 +341056,341056 +249678,249678 +24409,24409 +117816,117816 +26546,26546 +328415,328415 +325524,325524 +146517,146517 +155514,155514 +26126,26126 +40025,40025 +33370,33370 +122965,122965 +130213,130213 +32051,32051 +299635,299635 +380855,380855 +107178,107178 +81746,81746 +327581,327581 +40394,40394 +214223,214223 +265269,265269 +142871,142871 +219360,247760 +63732,63732 +19032,19032 +83128,83128 +132200,132200 +254378,254378 +167431,167431 +11239,11239 +8559,8559 +240136,240136 +35884,35884 +366793,366793 +367947,367947 +374231,374231 +377398,212404 +27441,27441 +37427,37427 +26500,26500 +132570,132570 +15904,15904 +343925,343925 +14791,14791 +324784,204583 +185001,185001 +27725,27725 +377478,377478 +218410,218410 +378085,378085 +29345,29345 +425440,425440 +39825,39825 +381000,381000 +97420,97420 +357549,357549 +3200,3200 +427376,427376 +32988,32988 +22142,22142 +382463,463 +12114,12114 +6149,6149 +266572,266572 +16034,16034 +311743,311743 +308479,308479 +262351,262351 +341366,341366 +375467,375467 +6394,6394 +194940,194940 +358608,358608 +180153,180153 +210485,210485 +154379,154379 +334271,334271 +408285,408285 +36122,36122 +217434,217434 +8186,8186 +283426,283426 +46942,46942 +159201,159201 +12011,12011 +6320,6323 +41377,41377 +116723,116723 +283394,283394 +158948,158948 +44253,44253 +21811,21811 +18176,18176 +111577,111577 +38598,38598 +223880,223880 +95629,95629 +289075,289075 +340515,340516 +348238,348238 +171498,171498 +29887,29887 +348246,348246 +33655,33655 +9344,9344 +43579,43579 +13012,13012 +5648,5648 +15821,15821 +6267,6267 +28744,28744 +38726,38726 +31286,31286 +179367,179366 +24640,24640 +14500,14500 +187278,187278 +28790,28790 +166887,166887 +57681,57681 +51417,51417 +103014,103014 +129506,129506 +119390,119390 +135950,135950 +12928,12928 +29674,29674 +25782,25782 +11242,11242 +11560,11560 +15939,15939 +3717,3717 +16274,16274 +406560,406560 +112886,112886 +7119,7119 +20936,20936 +146824,146824 +353262,353262 +304047,304047 +340631,340631 +342709,342709 +371168,158818 +113061,113061 +96317,96317 +419649,419649 +146169,146169 +387905,387905 +36030,36030 +131494,131494 +292874,292874 +28925,28925 +304131,304131 +39187,39187 +59851,59851 +355907,355907 +162825,162825 +193147,193147 +22966,22966 +23675,23675 +10001,10001 +31628,31628 +35073,35073 +188995,188995 +112364,112364 +344653,344653 +78760,78760 +28274,28274 +4078,4078 +287441,287441 +14588,14588 +178436,178436 +181414,181414 +5598,5598 +38052,38052 +37220,37220 +337866,337866 +14152,14152 +4896,291430 +5151,5151 +153538,153538 +34921,34921 +127086,127086 +14699,14699 +37659,37659 +217598,217598 +102472,102472 +337197,337197 +35217,35217 +34136,34136 +6853,6853 +313717,313717 +6313,108341 +140345,140345 +404377,404377 +67214,127823 +169973,169973 +25424,25424 +421757,421757 +130568,130568 +35375,35375 +12110,12110 +173643,173643 +39298,39298 +11068,11068 +15932,15932 +38539,38539 +158390,158390 +22373,3377 +133215,133215 +19064,19064 +418250,418250 +29814,29814 +26493,26493 +124193,124193 +68172,68172 +15682,15682 +209539,209539 +347522,347522 +22475,22475 +195739,195739 +35443,35443 +334384,334384 +198274,198274 +65857,65857 +34957,34957 +249036,20545 +27334,27334 +188958,188958 +29326,29326 +250678,169755 +17624,17624 +89766,89766 +269647,269647 +34560,34560 +117144,117144 +9676,9676 +146467,3039 +389041,389041 +268166,268166 +40320,40320 +239505,239505 +14003,14003 +26968,26968 +24074,24074 +68470,68470 +419850,419850 +365630,365630 +34435,34435 +28599,28599 +20105,20105 +34674,34674 +39162,39162 +216219,216219 +10433,10433 +30816,30816 +24572,24572 +343075,343075 +192598,192598 +25060,25060 +120848,120848 +180201,180201 +263079,263079 +41633,12747 +103363,103363 +239453,239453 +19515,19515 +43546,43546 +102420,102420 +8684,8684 +10586,10586 +6115,6115 +40156,40156 +8640,8640 +4588,4588 +13449,13449 +10933,10933 +95861,95861 +16316,16316 +39030,39030 +279596,279596 +191378,191378 +87272,87272 +17622,17622 +40305,40305 +89437,89437 +248192,248192 +136269,136269 +163499,63268 +33685,33685 +39113,39113 +343876,343876 +295829,295829 +247156,247156 +22900,22900 +16306,16306 +13319,13319 +75269,75269 +325564,351809 +299561,299561 +168873,168873 +29050,29050 +18573,18573 +353906,353906 +132957,132957 +379899,379899 +27689,27689 +176097,176097 +371643,232134 +2219,2219 +236885,236885 +364338,364338 +30963,30963 +37487,37487 +19042,19042 +17101,17101 +406385,406385 +102744,102744 +25066,3270 +120594,120594 +213683,213683 +24185,24185 +11738,11738 +24598,24598 +178407,178407 +21053,21053 +14059,463 +55456,55456 +24871,24871 +11295,11295 +41145,41145 +173071,173071 +28385,28385 +35494,35494 +38059,38059 +101077,101077 +242872,242872 +14967,14967 +26451,26451 +97296,97296 +28591,28591 +27240,27240 +80425,80425 +34780,34780 +155711,155711 +142136,142136 +88793,88793 +252050,252050 +139185,139185 +24651,24651 +388296,388296 +240608,240608 +24844,24844 +286567,286567 +28830,28830 +186748,186748 +369259,369259 +136038,136038 +11959,11959 +7550,7550 +236933,236933 +5584,5584 +275348,275348 +103865,103865 +374132,374132 +22653,22653 +274346,274346 +195474,195474 +8183,8183 +5615,5615 +227927,227927 +97152,97152 +7878,7878 +16220,16220 +9656,9656 +177539,6321 +34911,34911 +59231,59231 +276325,276325 +403436,403436 +293782,293782 +14759,14759 +14630,14630 +242285,242285 +13006,13006 +32564,32564 +29855,29855 +6783,6783 +22892,1380 +9262,23572 +187092,187092 +10649,10649 +130480,130480 +35264,35264 +38501,38501 +117684,117684 +35252,35252 +15740,15740 +2305,2305 +143990,143990 +6255,6255 +253889,253889 +156766,156766 +363372,363372 +377865,377865 +37378,37378 +51336,51336 +145122,145122 +167410,167410 +228027,228027 +346744,346744 +7692,7692 +205367,205367 +35759,35759 +246158,246158 +365429,395508 +246737,246737 +94739,94739 +362613,362613 +8850,8850 +39987,39987 +358049,358049 +211002,211002 +417604,417604 +427261,427261 +18137,18137 +181411,181411 +150079,150079 +35295,35295 +169302,169302 +172110,172110 +3797,3797 +271621,271621 +154709,50381 +174999,174999 +27411,27411 +213169,60369 +379366,379366 +58153,58153 +337756,337756 +240291,240291 +189586,189586 +25093,25093 +19433,19433 +245622,245622 +7191,7191 +165708,165708 +4705,4705 +351364,351364 +252382,252382 +10413,10413 +174087,174087 +82845,82845 +23274,23274 +306792,306792 +16173,16173 +20017,20017 +344070,344070 +72181,72181 +95901,95901 +120549,120549 +133026,133026 +151888,151888 +25530,25530 +1055,1055 +166435,172158 +159140,159140 +242221,178038 +12595,12595 +24847,24847 +259432,259432 +7190,7190 +169297,169297 +332472,204734 +63191,63191 +220359,220359 +7417,7417 +346980,346980 +6110,6110 +154582,75529 +106545,106545 +14279,14279 +349028,349028 +246945,246945 +206425,206425 +128627,128627 +41258,41258 +13131,13131 +166968,166968 +289228,289228 +63451,63451 +93258,5195 +364244,364244 +14587,14587 +24566,24566 +92362,92362 +30776,30776 +192670,192670 +290033,290033 +155911,155911 +172816,224328 +317046,317046 +300021,300021 +369057,369057 +24001,24001 +157692,157692 +6991,6991 +201923,201923 +40299,40299 +81690,81690 +199969,26859 +23768,23768 +318549,318549 +341501,341501 +8975,8975 +153128,153232 +91424,91424 +35924,35924 +111083,111083 +42836,42836 +231345,231345 +5888,5888 +8715,8715 +28985,28985 +5439,5439 +17802,17802 +6212,6212 +203017,203017 +113671,113671 +16700,16700 +1316,1316 +25236,25236 +388745,388745 +200294,264282 +5165,5217 +34866,34866 +5790,5790 +39614,463 +141523,14441 +63611,63611 +15796,15796 +277765,277765 +137174,137174 +110653,110653 +20594,20594 +20969,20969 +5517,5517 +350527,282581 +266505,266505 +33569,33569 +1099,1099 +11965,11965 +202667,202667 +123848,123848 +353810,353810 +401910,401910 +279753,279753 +245191,245191 +73385,73385 +266654,266654 +20214,20214 +19670,19670 +211728,211728 +86203,86203 +16949,16949 +9757,9757 +164968,164968 +16543,16543 +254203,254203 +69198,69198 +109805,109805 +29490,29490 +361353,361353 +100213,100213 +182718,182718 +177537,6321 +16550,16550 +36796,36796 +23204,23204 +192246,192246 +21023,21023 +147149,147149 +33125,33125 +158289,158289 +1193,1193 +33112,16191 +97710,97710 +1330,1330 +307830,307830 +17791,17791 +1433,1433 +160413,160413 +19006,19006 +41794,41794 +32474,32474 +32266,32266 +204668,204668 +127374,127374 +417936,417936 +225930,225930 +31357,31357 +22670,22670 +42531,42531 +245293,245293 +179368,179368 +405306,405306 +244298,244298 +40405,40405 +22593,22593 +295367,295367 +382529,382529 +27987,27987 +147856,147856 +52541,52541 +17109,17109 +298848,298848 +302288,302288 +80815,80815 +244535,244535 +32271,32271 +134916,134916 +5342,5342 +38730,38730 +86938,86938 +233995,233995 +39361,39361 +72576,72576 +21544,21544 +6799,6799 +223166,223166 +328267,328267 +20365,20365 +217969,217969 +155854,155854 +153013,153013 +2109,2109 +9561,9561 +99821,99821 +14175,14175 +286268,286268 +355474,355474 +161929,161929 +14429,14429 +159997,159997 +182994,272854 +329007,329007 +23616,156570 +147155,147155 +14330,14330 +225510,225510 +66360,66360 +18295,18295 +21989,21989 +32668,32668 +139929,139929 +250328,250328 +31281,31281 +296418,296418 +29734,29734 +139450,139450 +298479,298479 +225490,225490 +22527,22527 +28571,28571 +164186,164186 +355061,355061 +18030,18030 +139178,139178 +97244,97244 +205708,205708 +34842,34842 +173209,173209 +159774,159774 +157771,157771 +95843,95843 +139477,139477 +37608,37608 +34517,34517 +434028,434028 +40406,40406 +242214,242214 +76552,463 +23361,23361 +149036,149036 +145948,145948 +223395,223395 +39677,39677 +18446,18446 +34708,34708 +43482,43482 +56605,56605 +248829,248829 +22195,22195 +16266,16266 +224154,224154 +302173,302173 +1241,1241 +26510,26510 +116967,116967 +24837,24837 +7643,7643 +15426,15426 +1848,1848 +31713,31713 +6881,6881 +14789,14789 +142344,142344 +12010,12010 +3509,3509 +39325,39325 +2711,149075 +14564,14564 +296352,296352 +1624,1624 +314106,314106 +194035,194035 +40386,40386 +31585,31585 +7944,7944 +9506,9506 +8970,8970 +187190,187190 +194689,194689 +165799,165799 +66648,66648 +281211,281211 +12961,12961 +9822,9822 +12224,12224 +4972,4972 +329561,329561 +16758,16758 +264269,264269 +36856,36856 +108433,108433 +25019,25019 +387848,387848 +10961,10961 +117720,117720 +316189,316189 +24726,24726 +19923,19923 +348538,348538 +124916,124916 +22012,22012 +168333,168333 +24272,24272 +153053,153053 +19569,19569 +29428,29428 +85696,85696 +18360,18360 +309620,309620 +23031,23031 +56046,56046 +38150,463 +30168,30168 +29448,29448 +25385,25385 +429517,429517 +134329,134329 +16237,16237 +42409,42409 +36537,42305 +38721,38721 +190834,190834 +21752,21752 +278219,278219 +202852,202852 +258626,258626 +240927,240927 +3038,3038 +209601,209601 +134547,134547 +22027,22027 +21777,21777 +303883,303883 +6219,6219 +183481,359203 +420945,420945 +255549,255549 +135386,135386 +150043,150043 +186528,186528 +199938,568 +89455,89455 +22579,22579 +372731,372731 +8249,8249 +5344,5344 +32624,32624 +34081,34081 +139148,139148 +405310,405310 +145391,145391 +365000,365000 +22601,22601 +113041,113041 +66285,66285 +139621,139621 +219996,219996 +240640,240640 +34581,34581 +143709,143709 +27931,27931 +318668,318668 +367946,367946 +430293,306482 +175394,175394 +18384,18384 +135379,135379 +12523,12523 +175207,175207 +37081,37081 +428100,428100 +225547,225547 +303881,303881 +289517,248702 +273479,273479 +206911,206911 +84440,84440 +71998,71998 +64270,64270 +159368,159368 +162561,162561 +36422,36422 +173999,173999 +66147,66147 +332870,332870 +37866,37866 +82185,82185 +41579,41579 +24895,24895 +83329,83329 +404837,404837 +348724,348724 +415968,130680 +354834,354834 +29202,29202 +59210,59210 +18173,18173 +124176,124176 +53283,53283 +62210,62210 +18047,18047 +321639,321639 +127619,127619 +419109,419109 +38092,38092 +243658,243658 +42930,42930 +202276,202276 +294658,294658 +40513,40513 +193590,184011 +38380,38380 +27241,27241 +62666,62666 +179878,179878 +9741,9741 +422992,422992 +356841,356841 +189407,189407 +262152,262152 +64211,64211 +377119,377119 +158930,158930 +41617,41617 +372919,372919 +380381,380381 +36720,36720 +317376,317376 +91527,91527 +65498,65498 +128939,128939 +430349,430349 +217008,217008 +405743,405743 +2992,2992 +23580,23580 +282909,282909 +133955,133955 +224840,224840 +117548,117548 +200415,200415 +65528,65528 +376775,376775 +134706,134706 +27688,27688 +396767,396767 +285020,285020 +130574,130574 +154561,154561 +81761,81761 +162883,162883 +422206,368210 +432267,432267 +16514,16514 +315178,315178 +349903,349903 +133643,133643 +33420,33420 +430578,430578 +252062,252062 +106186,106186 +348820,348820 +373302,373302 +64190,64190 +299204,299204 +132853,132853 +6031,6031 +417517,417517 +380034,380034 +259550,259550 +33200,33200 +59816,59816 +374793,374793 +112149,112149 +283588,283588 +365623,365623 +106546,106546 +249278,249278 +135135,135135 +369521,369521 +369545,369545 +10195,10195 +170376,170376 +61417,61417 +327319,327319 +15865,15865 +137284,137284 +378539,378539 +320158,320158 +306122,306122 +345900,345900 +311938,311938 +432984,432984 +22194,22194 +252127,252127 +431712,431712 +50696,50696 +314082,314082 +377622,377620 +177623,177623 +54408,54408 +95930,95930 +415762,415762 +174666,174666 +380757,380757 +24841,24841 +154859,154859 +65865,65865 +192573,192573 +145490,145490 +434229,434229 +12560,12560 +51309,51309 +88967,88967 +422739,422739 +291219,291219 +381670,381670 +152306,152306 +333856,333856 +329315,329315 +26265,26265 +344048,344048 +64932,64932 +342711,342711 +417919,417919 +67237,67237 +358592,358592 +410611,182864 +200016,200016 +270106,270106 +34309,34309 +302784,302784 +162123,162123 +122117,122117 +347478,347478 +337820,337820 +401796,401796 +94243,94243 +391562,391562 +66038,66038 +181072,181072 +406889,406889 +16289,16289 +66134,66134 +377363,377363 +322136,322136 +128922,128922 +383759,383759 +389602,389602 +368704,368704 +7276,7276 +39460,39460 +181442,181442 +134220,134220 +359163,359163 +225737,225737 +321667,321667 +56616,56616 +426342,426342 +65856,65856 +363992,363992 +347414,347414 +42694,42694 +116864,116864 +378254,378254 +357655,357655 +149694,149694 +281092,281092 +157204,157204 +328720,328720 +73970,73970 +339267,339267 +420866,20533 +302024,302024 +342286,342286 +402095,402095 +365407,365407 +40495,40495 +139859,139859 +309284,309284 +299848,299848 +326671,326671 +56100,56100 +148933,148933 +138080,138080 +429636,429636 +136268,136268 +146609,146609 +79795,79795 +371680,371680 +35820,35820 +94972,94972 +172977,172977 +66324,66324 +343574,343574 +359469,359469 +150495,197578 +379018,379018 +293831,293831 +37122,37122 +163768,163768 +406038,406038 +71884,71884 +234592,234592 +421527,421527 +3912,3912 +334400,334400 +353813,353813 +113646,113646 +27544,27544 +46436,46436 +12151,12151 +396976,396976 +59924,59924 +98436,98436 +241389,241389 +430457,430457 +75533,75533 +138147,138147 +415895,415895 +143493,143493 +15798,15798 +328122,328122 +337187,337187 +319036,319036 +382624,382624 +405117,405117 +116605,116605 +363990,363990 +341398,341398 +43373,43373 +428820,428820 +28961,28961 +39752,39752 +22460,22460 +37448,37448 +357636,357636 +430273,430273 +35519,35519 +406306,406306 +75202,75202 +333273,333273 +249293,249293 +400407,400407 +26638,26638 +325727,325727 +33499,33499 +119665,119665 +233500,233500 +28585,28585 +344655,344655 +269911,269911 +419576,419576 +113781,113781 +117951,117951 +337678,337678 +406554,406554 +427988,2891 +365180,365180 +170006,170006 +28425,28425 +128696,128696 +227825,227825 +251532,251532 +147822,301212 +37855,37855 +430957,430957 +332269,326638 +255149,255149 +28932,28932 +348346,348346 +87677,87677 +292387,292387 +24751,24751 +29671,29671 +31114,31114 +433124,146548 +37846,37846 +207443,207443 +306878,306878 +284710,284710 +178035,178035 +241150,241150 +374488,374488 +182723,182723 +17311,17311 +111970,111970 +12082,12082 +432551,432551 +60182,60182 +53753,53753 +383281,383281 +65014,65014 +95661,95661 +67308,67308 +357469,357469 +426173,426173 +260179,260179 +28136,28136 +402542,402542 +56631,56631 +430138,430138 +163072,163072 +37174,37174 +399841,399841 +229128,229128 +159939,159939 +68805,68805 +57174,57174 +243439,243439 +136484,136484 +32567,32567 +68860,68860 +372469,372469 +62746,62746 +270647,270647 +434915,434915 +304514,304514 +143623,143623 +282043,282043 +401232,401232 +360243,360243 +114907,114907 +287371,287371 +238358,238358 +342050,342050 +381010,381010 +303372,303372 +402911,402911 +39139,39139 +371788,371788 +364532,364532 +203039,203039 +427248,404286 +67582,67582 +138246,138246 +124453,124453 +37052,37052 +114474,114474 +180655,180655 +141982,141982 +70392,70392 +150036,150036 +41677,41677 +119083,119083 +39792,39792 +32058,32058 +40123,40123 +114821,114821 +221639,221639 +302008,302008 +73725,73725 +23974,23974 +382372,382372 +215635,215635 +151380,151380 +158488,158488 +308716,308716 +401781,401781 +405424,405424 +352336,352336 +58298,58298 +225564,225564 +376142,376142 +25890,25890 +27669,27669 +127934,127934 +332855,332855 +355441,355441 +121608,121608 +151288,151288 +34478,34478 +39931,39931 +29598,29598 +58887,58887 +428773,428773 +30425,30425 +130629,130629 +396754,396754 +163473,163473 +139143,139143 +302480,302480 +366265,366265 +426500,426500 +63383,63383 +35685,35685 +38305,38305 +32347,32347 +306062,306062 +17688,17688 +30740,30740 +299432,105035 +256125,256125 +36215,36215 +127703,127703 +224451,224451 +432799,432799 +422002,422002 +160170,160170 +129670,129670 +251068,251068 +240251,240251 +76402,76402 +360828,360828 +10343,10343 +181340,181340 +32339,32339 +18402,18402 +429669,429669 +54469,54469 +371505,371505 +198275,40131 +317258,317258 +277263,277263 +53482,53482 +35329,35329 +427664,427664 +55242,55242 +348868,348868 +330124,330124 +342760,342760 +219739,219739 +26271,26271 +417729,417729 +145171,145171 +423388,374075 +240077,240077 +38106,38106 +63411,63411 +336683,336683 +399015,399015 +274961,274961 +168157,168157 +154736,154736 +224329,224329 +258697,258697 +67236,67236 +425001,425001 +412467,412467 +53796,53796 +241088,241088 +38439,38439 +234321,234321 +224130,224130 +375357,375357 +26528,26528 +25231,25231 +354419,354419 +387170,387170 +135596,135596 +421960,421960 +152511,152511 +379184,379184 +196259,196259 +66196,66196 +94666,94666 +332474,332474 +62948,62948 +24735,24735 +207039,207039 +121455,121455 +138150,138150 +123081,123081 +78686,78686 +22567,22567 +421209,421209 +4804,4804 +420268,420268 +424633,424633 +214499,214499 +307960,19719 +434484,434484 +340484,340484 +352015,352015 +190694,190694 +342901,342901 +68958,68958 +41728,41728 +180730,180730 +411048,411048 +134837,134837 +433519,433519 +65706,65706 +171345,171345 +377435,377435 +338792,338792 +355630,355630 +348332,348346 +406760,406760 +343025,343025 +24943,24943 +355541,355541 +27636,27636 +388224,388224 +416273,416273 +243979,243979 +68366,68366 +364932,364932 +383576,383576 +346655,346655 +136250,136250 +307462,254411 +27180,27180 +10216,10216 +427831,427831 +155048,155048 +433338,433338 +39688,39688 +38028,38028 +96398,96398 +329476,329476 +154547,154547 +169559,169559 +31156,31156 +194014,194014 +71963,71963 +257153,257153 +85373,85373 +363359,363359 +112453,112453 +430247,430247 +125384,125384 +367366,367366 +20348,20348 +51311,51311 +18409,18409 +278737,278737 +366153,366153 +60787,60787 +20689,20689 +309759,309759 +71728,71728 +352807,352807 +136339,136339 +57289,57289 +431062,431062 +202883,202883 +30187,30187 +261130,261130 +433380,433380 +341834,341834 +43184,43184 +186806,186806 +410685,410685 +28493,28493 +37194,37194 +366331,366331 +124713,124713 +123030,123030 +222190,3439 +365044,365044 +161221,161221 +418064,418064 +365916,365916 +133729,133729 +369498,369498 +99476,99476 +307335,307335 +380389,380389 +25764,25764 +413648,413648 +75033,75033 +204956,204956 +282440,282440 +374260,374260 +164749,164749 +30089,30089 +316860,316860 +367894,367894 +74034,74034 +417201,318409 +434499,434499 +9832,9832 +209839,209839 +58366,58366 +359329,359329 +41325,41325 +129208,129208 +200530,200530 +298118,298118 +120162,120162 +338775,338775 +21202,21202 +260159,260159 +156013,156013 +286795,286795 +180012,180012 +113773,113773 +379342,379342 +100432,100432 +410241,410241 +372966,372966 +432220,432220 +115251,115251 +38108,38108 +28604,28604 +35060,35060 +124741,124741 +340578,340578 +434663,434663 +283277,283277 +21394,21394 +169377,169377 +264325,264325 +84429,84429 +90785,90785 +13491,13491 +159430,159430 +423359,264282 +421047,421047 +21928,21928 +153998,153998 +87922,87922 +85695,85695 +119938,119938 +12025,12025 +264188,264188 +19916,463 +412521,412521 +253187,253187 +27897,27897 +56193,56193 +306059,306059 +327915,336962 +350845,350845 +296797,296797 +333867,333867 +172573,172573 +59966,59966 +430882,430882 +33553,33553 +16532,16532 +145394,145394 +304430,304430 +6482,6482 +322328,322328 +29983,29983 +402980,402980 +36999,36999 +66541,66541 +12671,12671 +433065,433065 +242755,242755 +120622,120622 +154396,154396 +269304,269304 +261438,261438 +119886,119886 +414494,414494 +43327,43327 +296034,296034 +122614,122614 +429396,429396 +359931,359931 +245691,245691 +126445,126445 +242263,242263 +72261,72261 +23720,23720 +19213,19213 +381224,381224 +26834,26834 +423666,423666 +24266,24266 +360208,360208 +205656,205656 +150175,150175 +57117,57117 +209804,209804 +159960,159960 +24602,24602 +433383,433383 +291629,291629 +160619,160619 +287153,287153 +23431,23431 +5977,5977 +402158,411421 +24629,24629 +116107,116107 +419337,419337 +25551,25551 +313113,313113 +404182,114857 +205825,205825 +97722,97722 +26653,26653 +399958,399958 +128940,128940 +128971,128971 +429155,429155 +29914,29914 +379904,379904 +250879,250879 +159523,159523 +65424,65424 +317431,317431 +341367,341367 +110300,110300 +94417,94417 +281423,281423 +417513,417513 +347512,347512 +394187,394187 +218725,218725 +52862,52862 +344544,344544 +89863,89863 +307443,307443 +67173,67173 +115531,115531 +403223,403223 +352808,352808 +218771,218771 +182670,182670 +140306,140306 +37411,37411 +323709,323709 +299593,299593 +307541,37719 +125598,125598 +18394,18394 +345006,345006 +432425,432425 +372360,372360 +63505,63505 +190067,190067 +336297,336297 +240554,240554 +300823,300823 +300553,300553 +257629,257629 +130496,130496 +37930,37930 +434287,434287 +26751,26751 +388223,388223 +289519,289519 +405978,405978 +217805,217805 +42934,42934 +180408,180408 +432059,432059 +429811,429811 +423414,423414 +311181,311181 +39039,39039 +372117,372117 +276604,276604 +41643,41643 +264773,264773 +37439,37439 +217426,217426 +337892,337892 +321076,321076 +47127,47127 +138776,138776 +126672,126672 +12430,12430 +311520,311520 +342904,342904 +378072,378072 +408659,408659 +10969,10969 +421338,421338 +31268,31268 +27405,27405 +32091,32091 +33391,33391 +353725,353725 +111719,111719 +55650,55650 +324065,324065 +30430,30430 +30041,30041 +91408,91408 +106780,106780 +4612,4612 +36942,36942 +434098,434098 +240852,240852 +143143,143143 +307237,307237 +165262,165262 +112257,112257 +68475,68475 +11397,11397 +126909,126909 +181202,181202 +413652,413652 +27182,27182 +32781,32781 +322245,322245 +174334,174334 +333076,333076 +35598,35598 +7027,7027 +14882,14882 +26326,26326 +111631,111631 +34299,34299 +307721,307721 +269632,269632 +383524,383524 +242514,242514 +64659,64659 +29191,29191 +362074,362074 +32584,32584 +226040,226040 +191588,148209 +428128,428128 +325832,325832 +33500,33500 +72259,72259 +327995,327995 +13598,13598 +376942,376942 +66142,66142 +56942,56942 +244593,244593 +128697,128696 +431795,431795 +321325,321325 +403662,403662 +144448,144448 +398054,398054 +403307,403307 +419512,419512 +28548,28548 +111030,111030 +32385,32385 +170843,170843 +19550,19550 +186698,186698 +333051,333051 +272067,272067 +57669,57669 +276365,276365 +129755,129755 +6162,6162 +134426,134426 +429892,429892 +366871,366871 +198697,198697 +319369,319369 +23990,23990 +300721,300721 +349758,349758 +33834,33834 +65457,65457 +427644,427644 +416180,416180 +186137,186137 +21322,21322 +50074,50074 +430902,279556 +421549,421549 +430532,430532 +40505,40505 +432075,432075 +113784,113784 +420469,420469 +243333,243333 +267973,267973 +98856,98856 +147933,147933 +110100,110100 +12652,12652 +346684,346684 +39582,39582 +29039,29039 +40020,40020 +154998,154998 +289653,289653 +122427,122427 +60806,60806 +59172,59172 +64286,64286 +337618,337618 +90462,90462 +321369,321369 +111960,111960 +39982,39982 +328208,328208 +325258,325258 +299282,105035 +137779,137779 +310064,310064 +169097,169097 +326917,326917 +40011,40011 +11834,11834 +143687,143687 +400781,400781 +125889,125889 +37725,37725 +320475,320475 +35161,35161 +34669,34669 +423927,423927 +263347,263347 +219741,219741 +39323,39323 +392614,392614 +353306,353306 +195020,195020 +121628,121628 +192440,192440 +352403,352403 +225516,225516 +22088,22088 +338082,338082 +46101,46101 +100395,100395 +339013,339013 +43202,43202 +407684,407684 +218362,218362 +173831,173831 +279189,279189 +162879,162879 +366716,366716 +246322,246322 +130332,130332 +20979,20979 +432610,432610 +332839,332839 +275757,275757 +18538,18538 +199454,199454 +54124,54124 +13894,13894 +425549,425549 +121386,121386 +157113,157113 +217156,217156 +159617,159617 +97499,97499 +371860,371860 +158391,158391 +365178,365178 +161142,161142 +130410,130410 +31698,31698 +108136,108136 +434296,434296 +178976,178976 +426300,426300 +120215,120215 +163351,163351 +188847,188847 +417792,417792 +233499,233499 +136157,136157 +18014,18014 +316371,316371 +28159,28159 +103257,103257 +426359,426359 +185608,185608 +79816,79816 +349872,349872 +368298,368298 +201844,201844 +3391,3391 +389046,389046 +249614,249614 +31277,31277 +434868,434868 +84011,84011 +209656,209656 +414074,414074 +51609,51609 +28221,28221 +113672,113672 +30174,30174 +28214,28214 +122302,122302 +261536,261536 +429496,429496 +241751,241751 +233136,233136 +334155,334155 +406364,406364 +401662,401662 +306980,306980 +400288,400288 +287087,287087 +299749,299749 +41876,41876 +419729,419729 +403849,403849 +427141,427141 +248679,248679 +32144,32144 +405433,405433 +427339,427339 +150508,150508 +25494,25494 +80640,80640 +422906,422906 +83879,83879 +309836,309836 +376798,376798 +44007,44007 +161741,161741 +340304,340304 +242986,242986 +414948,414948 +12843,12843 +338221,338221 +329720,329720 +235340,235340 +328683,328683 +368739,368739 +27304,27304 +265977,265977 +406677,406677 +170616,170616 +422102,422102 +433358,433358 +37093,37093 +36997,36997 +60789,60789 +411731,411731 +178880,178880 +278577,278577 +182266,182266 +137558,137558 +307545,307545 +14074,14074 +88580,88580 +415691,415691 +64303,64303 +310629,310629 +335623,335623 +151066,151066 +182224,182224 +281038,140863 +28528,28528 +367508,367508 +615,615 +43426,43426 +117686,117686 +155064,155064 +154697,154697 +189411,189411 +369871,369871 +339946,339946 +220005,220005 +261400,261400 +308040,308040 +178526,178526 +320206,320206 +378114,378114 +213447,213447 +325526,325526 +50577,50577 +308780,308780 +158819,158819 +337921,337921 +43549,43549 +118467,118467 +325575,325575 +88256,88256 +395370,395370 +9887,9887 +71241,71241 +149117,149117 +218671,25729 +184997,184997 +34985,34985 +265073,265072 +434385,223376 +408869,408869 +223600,223600 +284811,284811 +370783,370783 +135248,135248 +339478,339478 +37843,37843 +100421,100421 +372834,372834 +123449,123449 +112294,112294 +17853,17853 +154501,154501 +110489,110489 +322446,322446 +31237,31237 +376865,376865 +97952,97952 +357204,357204 +23556,23556 +413191,413191 +166391,166391 +413915,291629 +238087,238087 +21557,21557 +32455,32455 +27115,27115 +59700,59700 +230880,230880 +420034,420034 +319683,319683 +366500,366500 +269710,269710 +35504,35504 +164959,164959 +159481,159481 +94497,94497 +150578,150578 +11819,11819 +31595,31595 +395505,395505 +127755,127755 +428889,381587 +332007,332008 +292926,292926 +31859,31859 +413839,17127 +172277,172277 +98195,98195 +110288,110288 +137241,137241 +337669,337669 +58300,58300 +381888,381888 +181936,181936 +327603,327603 +410263,410263 +15416,15416 +86583,86583 +37553,37553 +235648,235648 +162999,162999 +43421,43421 +155919,155919 +369408,369408 +180951,8134 +107601,107601 +22424,22424 +402421,402421 +302522,302522 +200995,200995 +408355,408355 +300808,300808 +154948,154948 +296990,296990 +169150,169150 +295438,295438 +340678,340678 +249743,249743 +29065,29065 +94968,94968 +325329,325329 +184054,184054 +357827,357827 +389990,389990 +18095,18095 +29511,29511 +425074,425074 +30300,30300 +416864,416864 +172920,172920 +14977,14977 +429846,429846 +33085,33085 +310861,310861 +150051,150051 +59156,59156 +391297,391297 +150316,150316 +63460,63460 +18635,18635 +144933,144933 +42876,42876 +177065,177065 +9503,9503 +36498,36498 +30407,30407 +26515,26515 +225939,225939 +18387,18387 +112628,112628 +10007,10007 +33070,33070 +402468,347985 +393162,393162 +10940,10940 +302161,302161 +33746,33746 +433735,433735 +162302,162302 +33748,33748 +135890,135890 +143661,143661 +34481,34481 +62695,62695 +162910,162910 +295039,295039 +30223,30223 +411568,411568 +243108,243108 +34550,34550 +392012,392012 +383500,383500 +122077,122077 +329523,329523 +60793,60793 +23174,23174 +377550,377550 +68171,68171 +247264,247264 +17258,17258 +424405,424405 +297259,297259 +62543,62543 +67899,67899 +408838,339532 +27601,27601 +176912,176912 +200545,200545 +330390,330390 +174066,174066 +34392,34392 +131056,131056 +389419,7604 +15389,15389 +323561,323561 +305990,305990 +400190,400190 +430606,430606 +431293,7092 +8078,8078 +32386,32386 +82613,82613 +319893,319893 +119090,119090 +184639,184639 +311278,311278 +33275,33275 +13528,13528 +404918,404918 +26714,26714 +400978,400978 +262856,262856 +338169,338169 +331961,331961 +177722,177722 +315729,315729 +287833,287833 +20830,20830 +123605,123605 +145485,145485 +431619,431619 +192941,192941 +72682,72682 +213297,213297 +323502,323502 +432932,432932 +117950,117950 +314045,314045 +411807,411807 +311056,311056 +158981,158981 +18410,18410 +282651,282651 +169591,169591 +7564,7564 +413537,413537 +127735,127735 +103374,103374 +61932,61932 +33132,33132 +15240,15240 +42026,42026 +367048,367048 +285181,285181 +47365,47365 +319408,319408 +309856,309856 +236358,236358 +41942,41942 +60861,60861 +6947,6947 +35672,35672 +184629,184629 +221114,221114 +326982,326982 +374955,374955 +422078,422078 +71064,71064 +22951,22951 +131645,131645 +39950,39950 +381437,381437 +37065,37065 +140221,140221 +430440,430440 +214344,214344 +128443,128443 +366185,366185 +113361,113361 +358250,358250 +162206,162206 +276510,276510 +434401,434401 +136959,136959 +227119,227119 +24496,24496 +331304,331304 +179416,179416 +41944,41944 +162831,162831 +168737,168737 +345097,345097 +38583,38583 +119935,119935 +423075,423075 +294657,294657 +324991,324991 +326737,326737 +240562,240562 +133674,133674 +303392,303392 +24326,24326 +154146,154146 +348286,348286 +343265,343265 +429461,429461 +116974,116974 +33052,33052 +395349,395349 +228606,228606 +41969,41969 +432716,432716 +235436,235436 +406091,406091 +131518,131518 +230958,230958 +148351,148351 +113069,113069 +123532,123532 +24712,24712 +345265,345265 +114529,114529 +93918,93918 +47234,47234 +429518,429518 +231521,231521 +89664,89664 +227472,227472 +66563,66563 +74395,74395 +433434,433434 +130265,130265 +333234,238083 +401906,401906 +406784,406784 +429983,429983 +406362,406362 +86573,86573 +422862,422862 +30711,30711 +421417,421417 +186678,186678 +37408,37408 +409659,409659 +350830,350830 +15134,15134 +206372,206372 +373570,373570 +169981,169981 +434157,434157 +66471,66471 +332121,332121 +406283,406283 +102149,102149 +316496,316496 +29861,29861 +29606,29606 +92564,92564 +281113,281113 +214310,214310 +36188,36188 +169575,169575 +401148,401148 +416177,416177 +58057,58057 +174687,174687 +188719,188719 +63033,63033 +21509,21509 +409021,409021 +99488,99488 +150025,150025 +263200,263200 +138012,138012 +320738,320738 +434087,434087 +354203,354203 +386004,386004 +62978,62978 +367560,367560 +99059,99059 +115228,115228 +347480,347478 +323438,323438 +331891,331891 +423382,423382 +86053,86053 +86348,86348 +402473,402473 +411098,411098 +101505,101505 +322442,322442 +386325,386325 +21889,21889 +346557,346557 +179160,179160 +118319,118319 +40127,40127 +368092,368092 +142260,142260 +240164,240164 +17549,17549 +175299,175299 +14270,14270 +374320,374320 +12921,12921 +348379,348379 +254873,254873 +139372,139372 +368316,368316 +36174,36174 +355525,355525 +405770,405770 +316230,316230 +280651,280651 +146075,146075 +215205,215205 +31917,31917 +113914,113914 +310391,310391 +424955,424955 +214892,214892 +34151,34151 +285286,285286 +317644,317644 +31337,31337 +259082,259082 +351239,351239 +297109,297109 +60276,60276 +350587,350587 +370920,370920 +380696,380696 +36518,36518 +33703,33703 +14895,14895 +16934,16934 +409525,409525 +153309,153309 +266755,266755 +386220,386220 +431913,431913 +146180,146180 +152811,152811 +335847,335847 +141150,141150 +393903,393903 +295443,295443 +38916,38916 +10415,10415 +10108,10108 +257000,257000 +372578,372578 +157404,157404 +245746,245746 +173098,173098 +344406,344406 +96673,96673 +30867,30867 +433987,433987 +383583,383583 +337229,337229 +39961,39961 +23114,23114 +237586,151251 +30588,30588 +97566,97566 +29136,29136 +434404,434404 +360356,360356 +127280,127280 +119301,119301 +388707,388707 +303562,303562 +144937,144937 +40116,40116 +28980,28980 +21803,21803 +371530,371530 +134497,134497 +43439,43439 +148997,148997 +3092,3092 +200506,200506 +378199,378199 +377619,377620 +16947,16947 +29163,29163 +123215,123215 +43406,43406 +30210,30210 +122892,122892 +131740,131740 +347807,347807 +69780,69780 +211914,211914 +40103,40103 +408029,408029 +143706,143706 +110931,110931 +20797,20797 +424881,424881 +35235,35235 +111302,111302 +142510,142510 +111024,111024 +147031,147031 +91007,91007 +35193,35193 +419173,419173 +34589,34589 +165634,165634 +23480,23480 +131223,131223 +433694,433694 +409529,88080 +18830,18830 +198248,198248 +126860,126860 +79626,79626 +429639,429639 +177146,177146 +157005,157005 +430806,430806 +153954,153954 +202987,202987 +315439,315439 +85598,85598 +128928,128928 +311034,311034 +160655,160655 +342503,342503 +121070,121070 +64276,64276 +130199,130199 +239226,110590 +372764,372764 +124635,124635 +173923,173923 +254787,254787 +432723,170324 +410439,834 +121218,121218 +425833,425833 +421716,421716 +423164,423164 +71461,71461 +342129,342129 +304727,304727 +112665,112665 +26845,26845 +125798,125798 +4829,4829 +134161,134161 +17357,17357 +154179,154179 +32659,32659 +403299,403299 +79340,79340 +286318,286318 +402246,402246 +419571,419571 +62540,62540 +173254,173254 +9394,9394 +174132,174132 +403553,403553 +128400,128400 +179917,179917 +177005,177005 +26569,26569 +182089,182089 +32655,32655 +380392,379030 +110739,110739 +9981,9981 +186430,463 +11818,11818 +26771,26771 +268335,268335 +430424,430424 +129989,129989 +286406,286406 +39384,39384 +405709,405709 +28117,28117 +359854,359854 +272337,272337 +70895,70895 +22351,22351 +372330,372330 +234441,234441 +14462,14462 +108881,108881 +57983,57983 +10063,10063 +353628,353628 +115104,115104 +352581,352581 +173415,173415 +66582,66582 +339491,339491 +378372,378372 +158373,158373 +57050,57050 +190524,190524 +37377,37377 +422984,422984 +33241,33241 +43003,43003 +431820,308936 +305021,305021 +100431,100431 +248399,248399 +175186,175186 +15078,15078 +405405,405405 +362520,362520 +96758,96758 +261377,261377 +414040,414040 +406701,406701 +65435,65435 +32700,32700 +34225,34225 +121665,121665 +277230,277230 +216513,216513 +173120,173120 +139518,139518 +432580,432580 +340370,340370 +421194,421194 +406539,38818 +239120,239120 +135860,135860 +252413,252413 +188071,188071 +372959,372959 +405163,405163 +336894,336894 +302930,302930 +297616,297616 +274779,274779 +298423,298423 +32803,32803 +128293,128293 +196745,130079 +112027,112027 +350827,350827 +25905,25905 +251692,251692 +290979,290979 +40548,40548 +192270,192270 +414267,414267 +157698,157698 +304882,304882 +31284,31284 +310801,310801 +27894,27894 +337732,337732 +68358,68358 +22036,22036 +114226,114226 +143752,143752 +386288,386288 +88214,88214 +31390,31390 +377583,377583 +140113,140113 +42932,42932 +82769,82769 +370780,216078 +316517,1421 +292027,292027 +405837,405837 +29466,29466 +324560,324560 +125894,125894 +310308,310308 +11348,11348 +148312,148312 +139633,139633 +30342,30342 +364272,364272 +38035,38035 +16854,16854 +265971,265971 +289224,289224 +432530,432530 +225739,225739 +213299,213299 +252433,252433 +179739,179739 +142407,142407 +98430,98430 +28728,28728 +318707,318707 +60551,60551 +403617,403617 +160854,160854 +334380,334380 +19088,19088 +113661,113661 +88876,88876 +377585,377585 +30654,30654 +265675,265675 +65231,65231 +58037,58037 +381428,381428 +236009,10742 +295726,295726 +323495,533 +127309,127309 +228294,228294 +158164,158164 +431549,342135 +34738,34738 +209287,209287 +26703,26703 +335642,335642 +425261,425261 +427128,427128 +33750,33750 +378545,34819 +405879,405879 +42734,42734 +42647,42647 +221069,221069 +24597,24597 +34640,34640 +75812,75812 +31400,31400 +429376,429376 +402730,402730 +118156,118156 +428586,428586 +238646,238646 +116407,116407 +430670,430670 +99529,99529 +272252,272252 +41682,41682 +166585,166585 +254988,254988 +254222,254222 +227682,227682 +27200,27200 +157422,157422 +34042,34042 +15645,15645 +43420,43420 +161074,161074 +363133,363133 +68457,68457 +146098,146098 +317171,317171 +368094,368094 +12090,12090 +110532,110532 +160452,160452 +354115,354115 +431313,431313 +130206,130206 +329107,329107 +361685,361685 +51913,51913 +294716,294716 +157369,157369 +293677,293677 +184399,184399 +29697,29697 +423034,423034 +362147,362147 +171177,171177 +199636,199636 +26216,26216 +366233,366233 +305904,305904 +260360,260360 +419297,419297 +420627,420627 +42848,42848 +30336,30336 +14565,14565 +64124,64124 +383717,383717 +39508,39508 +402118,402118 +168009,168009 +138528,138528 +43435,43435 +383092,383092 +408095,408095 +137243,137243 +305501,305501 +103841,103841 +268909,268909 +303670,303670 +16879,16879 +383425,383425 +152411,152411 +175645,175645 +23193,23193 +426455,426455 +298937,298937 +17975,17975 +4733,4733 +277514,277514 +34087,34087 +144981,144981 +90915,90915 +370862,370862 +31414,31414 +40132,40132 +331853,331853 +431594,431594 +136568,136568 +24106,24106 +310372,310372 +185243,185243 +412893,412893 +207896,207896 +40261,40261 +275041,275041 +16836,16836 +43098,43098 +292868,292868 +17514,17514 +12022,12022 +359785,359785 +42308,42308 +354546,354546 +190215,190215 +426566,426566 +401176,401176 +373057,373057 +239237,239237 +71539,71539 +285944,285944 +281496,281496 +352441,352441 +378510,378510 +26172,26172 +255622,255622 +13652,13652 +39311,39311 +119968,119968 +393442,393442 +64965,64965 +264175,264175 +368638,368638 +263219,463 +19636,19636 +27799,27799 +152965,152965 +24501,24501 +89088,89088 +402697,402697 +375507,375507 +304606,304606 +147663,147663 +10939,10939 +290970,290970 +397217,397217 +178614,178614 +131929,131929 +307229,307229 +363221,363221 +20775,20775 +126862,126862 +306054,306054 +194210,194210 +13510,13510 +391943,281310 +39226,39226 +59549,59549 +316957,316957 +163579,163579 +290691,290691 +146319,146319 +34748,34748 +126879,126879 +276784,276784 +37915,37915 +418982,418982 +330820,330820 +27329,27329 +333191,333191 +194788,194788 +368521,368521 +271930,271930 +15569,15569 +30426,30426 +111641,111641 +311394,311394 +69063,69063 +260454,260454 +170327,170327 +119293,119293 +305364,305364 +387405,387405 +426402,426402 +123692,123692 +100386,100386 +296356,296356 +122533,122533 +149020,149020 +136630,136630 +377897,377897 +26787,26787 +162868,162868 +116799,116799 +98250,98250 +156170,156170 +58821,58821 +65640,65640 +333674,333674 +379370,379370 +125994,125994 +128166,128166 +186983,186983 +10768,10768 +123111,123111 +63041,63041 +13629,13629 +402970,402970 +23558,23558 +127150,127150 +66706,66706 +202715,202715 +30119,30119 +150339,150339 +394140,394140 +179435,179435 +365622,365622 +39742,39742 +346865,346865 +98160,98160 +228879,228879 +263760,263760 +157345,157345 +187890,187890 +85190,85190 +30983,30983 +143758,143758 +137123,137123 +352514,352514 +36045,36045 +395363,395363 +400124,400124 +33407,33407 +424846,424846 +284753,284753 +249679,249679 +349754,349754 +217798,217798 +145327,145327 +123266,123266 +341720,341720 +405439,405439 +234774,234774 +61303,61303 +26045,26045 +39758,39758 +434199,434199 +129618,129618 +430116,430116 +140630,140630 +193876,193876 +116631,116631 +62743,62743 +419954,419954 +418672,418672 +309092,309092 +290566,290566 +322141,322141 +41824,41824 +37828,37828 +100415,100415 +12758,12758 +227503,227503 +157668,301212 +340545,340545 +251059,251059 +90368,90368 +421024,421024 +288333,220406 +150121,150121 +335132,335132 +66034,66034 +65539,65539 +58816,58816 +159076,159076 +407383,407383 +30159,30159 +429278,429278 +312923,312923 +292591,292591 +429348,271460 +328923,328923 +389818,389818 +127673,127673 +313514,313514 +226194,226194 +328603,328603 +43035,43035 +419256,419256 +434283,434283 +410584,410584 +213356,213356 +68760,68760 +23146,23146 +185812,185812 +130417,130417 +301265,301265 +374332,374332 +256828,256828 +23632,23632 +130521,130521 +38619,38619 +350570,350570 +18466,18466 +326593,326593 +361077,361077 +431282,431313 +327220,327220 +184711,184711 +40644,40644 +257992,257992 +23086,23086 +27905,27905 +125179,125179 +36224,36224 +186889,186889 +173117,173117 +340825,340825 +357794,357794 +263934,263934 +236547,236547 +319043,319043 +27530,27530 +243690,243690 +299575,299575 +128844,128844 +378053,378053 +395476,395476 +103060,103060 +380363,380363 +65451,65451 +24774,24774 +123821,123821 +432541,432541 +28120,28120 +398358,398358 +403225,403225 +112996,112996 +307951,307951 +418122,418122 +63940,63940 +401516,401516 +403224,403224 +336359,336359 +36147,36147 +252312,252312 +62937,62937 +30352,30352 +414075,414075 +224126,224126 +376548,376548 +432411,432411 +432340,432340 +415821,415821 +347101,347101 +150151,150151 +231995,231995 +111021,111021 +24194,24194 +39173,39173 +125858,125858 +22615,22615 +376953,376953 +88973,88973 +29743,29743 +243012,243012 +83242,83242 +35363,35363 +379556,379556 +209242,209242 +37545,37545 +413125,413125 +68637,68637 +43358,43358 +261379,261379 +21131,21131 +100416,100416 +124961,124961 +134887,134887 +74027,74027 +357648,357648 +404156,404156 +332461,332461 +18442,18442 +42393,42393 +309884,309884 +37079,37079 +357396,357396 +153427,153427 +102786,102786 +112094,112094 +327546,327546 +144147,144147 +130541,130541 +16759,16759 +406368,406368 +240190,240190 +111817,111817 +415132,415132 +14169,14169 +120676,120676 +340134,340134 +372077,372077 +311422,311422 +89954,89954 +360573,360573 +150318,150318 +20584,20584 +365167,365167 +31279,31279 +31913,31913 +211925,211925 +352739,352739 +37211,37211 +38071,38071 +24952,24952 +125002,125002 +347299,266381 +91857,91857 +427618,409978 +419662,419662 +407033,407033 +41533,41533 +171854,171854 +215735,215735 +29831,29831 +118764,118764 +34851,34851 +325392,325392 +38135,38135 +201970,201970 +429864,429864 +220332,220332 +137287,137287 +107454,107454 +235341,235341 +30093,30093 +28939,28939 +34761,34761 +338707,338707 +377714,377714 +230280,230280 +395333,395333 +364790,364790 +124711,124711 +125124,125124 +131013,131013 +4116,4116 +169342,169342 +34641,34641 +72276,72276 +373831,373831 +21799,21799 +331277,331261 +90807,90807 +386958,386958 +108211,108211 +253962,253962 +162878,162878 +37792,37792 +432255,432255 +405308,405308 +430827,430827 +205752,205752 +333133,333133 +265645,265645 +41484,41484 +363935,363935 +365487,365487 +135136,135136 +11178,11178 +38684,38684 +30384,30384 +42382,42382 +410513,410513 +65370,65370 +371844,371844 +124662,124662 +231865,231865 +66367,66367 +16485,16485 +18278,18278 +359120,359120 +116099,116099 +385607,385607 +16076,16076 +33887,33887 +408525,408525 +215470,215470 +170302,170302 +114051,114051 +262387,262387 +433056,433056 +375392,375392 +433505,1563 +321239,321239 +86879,86879 +427795,427795 +67301,67301 +34183,34183 +52501,52501 +32864,32864 +328293,328323 +394068,394068 +179799,179799 +191667,191667 +106132,106132 +348387,348387 +64673,64673 +79810,79810 +348704,348704 +30675,30675 +107362,107362 +113175,113175 +167401,167401 +16564,16564 +234434,234434 +283463,283463 +158542,158542 +13368,13368 +116729,116729 +417273,389739 +33616,33616 +288946,288946 +172175,172175 +328556,328556 +336180,336180 +31460,31460 +299562,299562 +433671,433671 +424447,424447 +172963,172963 +225044,225044 +427140,427141 +233853,233853 +395487,395487 +4806,4806 +89549,89549 +203762,203762 +432291,432291 +425464,425464 +291842,291842 +22945,22945 +63722,63722 +164469,164469 +373013,373013 +260712,260712 +341213,341213 +96781,96781 +76460,76460 +320516,320516 +24011,24011 +421827,421827 +427336,427336 +352011,352011 +109387,109387 +302515,302515 +250434,250434 +94411,94411 +217866,217866 +383388,383388 +111957,111957 +268675,268675 +42437,42437 +372030,372030 +156676,156676 +260659,260659 +432766,432766 +129699,129699 +136965,136965 +368217,368217 +142093,142093 +269331,269331 +322426,322426 +188400,188400 +396947,396947 +187641,187641 +205167,205167 +435087,435087 +35687,35687 +149635,1872 +222497,222497 +421022,421022 +14349,14349 +189365,189365 +35459,35459 +115122,115122 +114122,114122 +191017,191017 +327069,327069 +40362,40362 +318240,318240 +327550,327550 +23713,23713 +309300,309300 +387277,387277 +426613,426613 +38080,38080 +10644,10644 +285700,285700 +43211,43211 +153885,153885 +123730,123730 +65869,65869 +164503,164503 +243775,243775 +353325,353325 +87805,87805 +122358,122358 +191200,191200 +269198,269198 +263593,263593 +198575,198575 +360974,360974 +92854,92854 +315459,315474 +322842,322842 +102540,102540 +298691,298691 +169409,169409 +128410,128410 +19300,19300 +430009,430009 +321224,321224 +42736,42736 +347098,347098 +396350,396350 +37044,37044 +62403,62403 +324094,324094 +414828,414828 +132349,132349 +174283,174283 +40423,40423 +96565,96565 +340010,340010 +312302,312302 +118087,118087 +17852,17852 +426411,426411 +164204,164204 +33440,33440 +325309,325309 +31392,31392 +159912,159912 +363132,363132 +315470,315474 +429808,429808 +171747,171747 +342570,342570 +162934,162934 +32536,32536 +425256,425256 +194472,194472 +131219,131219 +408563,408563 +1180,1180 +120949,120949 +359174,359174 +174930,174930 +270368,270368 +145831,145831 +124225,124225 +326916,326916 +230334,230334 +99376,99376 +286653,286653 +247050,247050 +160461,160461 +82148,82148 +136290,136290 +336135,336135 +408044,408044 +208481,208481 +432489,432489 +31063,31063 +322257,322257 +165762,165762 +330243,330243 +426718,426718 +37143,37143 +354708,354708 +428175,428175 +258558,258558 +153334,153334 +30811,30811 +62698,62698 +127148,127148 +34421,34421 +249574,249574 +301790,301790 +43347,43347 +212981,212981 +110840,110840 +37249,37249 +266834,266834 +184871,184871 +42035,42035 +29885,29885 +152410,152410 +115778,115778 +141017,141017 +377355,377355 +20168,20168 +60807,60807 +58012,58012 +401942,401942 +26392,26392 +25814,18154 +235509,235509 +430426,430426 +424222,400209 +30073,30073 +130077,130077 +121280,121280 +43203,43203 +22528,22528 +176925,176925 +233325,233325 +297360,297360 +28383,28383 +363194,363194 +200546,200546 +416336,416336 +327195,327195 +38086,38086 +34796,34796 +377942,377942 +29418,29418 +166856,166856 +321988,321988 +334435,334435 +127783,127783 +16419,16419 +163588,163588 +104773,104773 +365706,365706 +20571,20571 +106960,106960 +425525,425525 +382363,382363 +69787,69787 +359623,359623 +5184,5184 +431618,431618 +321019,321019 +187583,187583 +200895,200895 +81492,81492 +362741,362741 +30629,30629 +43444,43444 +319684,319684 +64444,64444 +406049,406049 +423156,463 +21153,21153 +96001,96001 +163339,163339 +47359,47359 +15694,15694 +40157,40157 +18457,18457 +104454,104454 +377598,377598 +57407,57407 +189532,189532 +23748,23748 +210944,210944 +207168,207168 +71384,71384 +151317,151317 +37436,37436 +370259,370259 +111408,111408 +427840,427840 +91101,91101 +121071,121071 +164777,164777 +365133,365133 +239720,239720 +128472,128472 +39143,39143 +109591,109591 +393960,393960 +59537,59537 +402867,402867 +420002,420002 +90808,90808 +401305,401305 +176952,176952 +364483,364483 +18108,18108 +29462,29462 +155198,155198 +433450,433450 +143696,143696 +18447,18447 +111078,111078 +26633,26633 +71538,71538 +40526,40526 +22136,22136 +95554,95554 +173418,173418 +267620,267620 +274081,274081 +147868,147868 +428786,428786 +298684,298684 +426658,426658 +415551,415551 +238917,238917 +289102,289102 +184169,184169 +151248,151248 +62105,62105 +67409,67409 +127325,127325 +259502,259502 +158785,158785 +151820,151820 +116789,116789 +67312,67312 +226853,226853 +30409,30409 +402273,402273 +131310,131310 +368817,368817 +24530,24530 +42078,42078 +18808,18808 +325538,325538 +37578,37578 +422452,422452 +158543,158543 +240618,240618 +408477,408477 +59891,59891 +39291,39291 +110841,110841 +410123,410123 +316071,316071 +147046,147046 +352734,319307 +22954,22954 +338849,338849 +430835,430835 +157998,157998 +360853,337171 +275784,275784 +90115,90115 +154872,154872 +357484,357484 +124712,124712 +404164,404164 +37682,37682 +299965,299965 +278376,278376 +333828,333828 +317641,317641 +356525,356525 +29963,29963 +28570,28570 +335641,335641 +291679,291679 +36844,36844 +176869,176869 +424826,424826 +62688,62688 +244124,244124 +97675,97675 +142756,142756 +38569,38569 +148866,148866 +189338,189338 +73789,73789 +14212,14212 +175657,175657 +335019,335019 +29162,29162 +391003,391003 +31024,31024 +344165,344165 +124680,124680 +340604,340604 +357968,357968 +328700,328700 +46870,46870 +37381,37381 +412123,412123 +11798,11798 +127743,127743 +116584,116584 +220992,220992 +24637,24637 +175383,175383 +343389,343389 +111407,111407 +29966,29966 +279365,279365 +206831,206831 +208768,208768 +65419,65419 +413940,402817 +27036,27036 +120304,120304 +416203,416203 +34267,34267 +217269,217269 +380331,380331 +255937,255937 +156030,156030 +108364,108364 +21553,21553 +245868,245868 +428942,428942 +111854,111854 +109468,109468 +408871,408871 +351656,351656 +322033,322033 +405456,33148 +175149,175149 +341285,341285 +378009,378009 +141624,141624 +403499,321140 +428088,428088 +123686,123686 +360695,85204 +310506,310506 +27957,27957 +426175,426175 +31539,31539 +73203,73203 +347786,347786 +357462,357462 +333692,333692 +36530,36530 +71087,71087 +302015,302015 +67848,67848 +116604,116604 +421731,421731 +160894,160894 +304682,304682 +127221,127221 +71758,71758 +295191,295191 +247407,247407 +294111,294111 +228685,228685 +21360,21360 +317975,317975 +276391,276391 +131409,131409 +416554,416554 +411810,411810 +262653,262653 +29051,29051 +16093,16093 +58305,58305 +152750,152750 +180486,180486 +193227,193227 +38272,38272 +175517,175517 +168859,168859 +255451,255451 +67544,67544 +231064,234010 +91453,91453 +310466,310466 +126751,126751 +19436,19436 +21728,21728 +29548,29548 +382741,382741 +31526,31526 +10728,10728 +428094,89569 +20743,20743 +64353,64353 +154121,154121 +10064,10064 +398461,398461 +434107,434107 +35700,35700 +138638,138638 +113946,113946 +333666,333666 +283040,283040 +358798,358798 +189210,189210 +425307,425307 +405369,292732 +35686,35686 +320169,320169 +205103,205103 +162393,162393 +119693,119693 +108839,108839 +426024,426024 +20803,20803 +431407,431407 +108057,108057 +326473,326473 +365038,365038 +242754,242754 +32275,32275 +197785,197785 +229044,229044 +166025,166025 +67551,67551 +21726,21726 +348041,348041 +302019,302019 +99553,99553 +329769,329769 +372981,372981 +32376,96565 +66253,66253 +167230,167230 +423243,423243 +432941,432941 +179733,179733 +417877,417877 +102630,102630 +153635,153635 +26853,26853 +434576,434576 +425538,425538 +249327,249327 +331829,331829 +411431,411431 +112139,112139 +368207,368207 +100595,100595 +357377,357377 +260363,260363 +427589,427589 +287363,287363 +54932,54932 +433371,433371 +168347,168347 +403190,403190 +202863,202863 +131138,131138 +173016,173016 +154049,154049 +359778,359778 +38397,38397 +17273,17273 +346031,346031 +119826,119826 +209554,209554 +25585,25585 +354167,354167 +112380,112380 +14507,14507 +202936,202936 +299874,299874 +141034,141034 +391552,391552 +41432,41432 +404836,404836 +28677,28677 +128300,128300 +365244,365244 +181475,181475 +257620,257620 +32778,32778 +422559,364643 +125120,125120 +412566,412566 +225502,225502 +276815,276815 +400951,400951 +71813,71813 +31964,31964 +73730,73730 +293837,293837 +33219,33219 +177520,177520 +295151,295151 +425352,425352 +281741,281741 +33710,33710 +169789,169789 +327104,327104 +264912,264912 +30053,30053 +137286,137286 +32822,32822 +5949,5949 +359899,359899 +22731,22731 +42113,42113 +24418,24418 +12901,12901 +34438,34438 +104367,104367 +380444,380444 +176763,176763 +284633,284633 +121132,121132 +65894,65894 +20997,20997 +321933,321933 +322192,322192 +320096,320096 +17387,17387 +24349,24349 +251732,251732 +420949,420949 +112363,112363 +434821,434821 +137734,137734 +142438,142438 +144226,144226 +89108,89108 +122300,122300 +13485,13485 +29324,29324 +6102,6102 +421953,421953 +374518,374518 +30183,30183 +421301,421301 +122433,122433 +11987,11987 +114116,114116 +366560,366560 +65700,65700 +289654,289654 +360210,360210 +149509,149509 +416176,416176 +151455,151455 +386131,386131 +43434,43434 +130051,130051 +10360,10360 +37558,37558 +319064,413462 +66151,66151 +262419,262419 +283186,283186 +186358,186358 +286554,286554 +434280,434280 +318058,318058 +423943,423943 +164725,164725 +23019,23019 +382678,382678 +144045,144045 +334922,334922 +256516,256516 +419732,419732 +59023,59023 +302781,302781 +231446,231446 +294209,294209 +275924,275924 +22459,22459 +90781,90781 +290971,290971 +137250,137250 +392203,392203 +329112,329112 +111167,111167 +346336,346336 +68846,68846 +202049,202049 +263575,263575 +430730,430730 +22869,22869 +321495,321495 +432398,432398 +423748,423748 +25607,25607 +240558,240558 +214475,214475 +152614,152614 +175703,175703 +225312,225312 +66561,66561 +41615,41615 +364162,364162 +30317,30317 +30823,30823 +116644,116644 +248629,248629 +240555,240555 +301617,301618 +277235,277235 +353789,353789 +365450,365450 +329964,329964 +3799,3799 +306123,306123 +353418,353418 +194953,194953 +334495,334495 +30447,30447 +16410,16410 +289524,289524 +41827,41827 +335723,335723 +418675,418675 +192029,192029 +400762,400762 +378923,378923 +130241,130241 +129101,129101 +172768,172768 +11830,11830 +27622,27622 +376552,376552 +356786,356786 +350668,350668 +224544,224544 +192319,314082 +227726,227726 +355534,355534 +424726,424726 +286852,286852 +26223,26223 +208159,208159 +364236,364236 +325143,325143 +127776,127776 +97309,97309 +298421,298421 +168934,168934 +324122,324122 +36317,36317 +8862,8862 +417161,417161 +321472,321472 +361453,361453 +18448,18448 +353717,353717 +30550,30550 +400106,400106 +433452,433452 +179501,179501 +196588,196588 +364021,364021 +407187,407187 +32500,32500 +39715,39715 +417925,417925 +199859,199859 +97242,97242 +353512,353512 +41508,41508 +346606,346606 +113303,113303 +93713,93713 +290555,290555 +55357,55357 +165704,165704 +242876,242876 +425679,425679 +35418,35418 +321209,321209 +227564,227564 +27652,27652 +114773,114773 +60396,60396 +203616,203616 +333117,333117 +244354,244354 +24470,24470 +400950,400950 +1369,1369 +350337,350337 +37357,37357 +277239,277239 +427446,427446 +116635,116635 +318314,318314 +12563,12563 +153251,153251 +18141,18141 +109592,109592 +98269,98269 +397611,397611 +369677,369677 +333798,333798 +159913,159913 +376892,212967 +112734,112734 +119306,119306 +415926,415926 +421429,421429 +430959,430959 +386356,386356 +429633,429633 +375336,375336 +85902,5298 +120946,120946 +27694,27694 +406864,406864 +126235,126235 +28948,28948 +245021,245021 +293970,293970 +34514,34514 +314489,314489 +28610,28610 +127696,127696 +334690,334690 +25446,25446 +33268,33268 +115094,115094 +144603,144603 +93821,93821 +14216,14216 +34273,34273 +285446,285446 +418069,418069 +430288,430288 +30920,30920 +63399,63399 +15005,15005 +421923,421923 +277316,277316 +409967,409967 +128973,304617 +293969,293969 +329458,292962 +349052,349052 +68336,68336 +253012,253012 +380515,380515 +355539,355539 +34822,34822 +409068,409068 +102788,102788 +46115,46115 +410507,410507 +430640,430640 +374517,374517 +338903,338903 +207236,207236 +40028,40028 +394617,394617 +403619,403619 +299977,299977 +35902,35902 +26462,26462 +307821,19046 +429466,429466 +321337,321337 +393841,393841 +243186,243186 +203688,203688 +351740,351740 +109878,109878 +23154,23154 +38848,38848 +35307,35307 +354208,354203 +46814,46814 +303077,303077 +387050,387050 +111210,111210 +35066,35066 +60856,60856 +187725,187725 +187784,187784 +427908,427908 +345095,345095 +30482,30482 +422253,422253 +383028,383028 +303069,303069 +277112,277113 +38962,38962 +329324,199768 +32422,32422 +142586,142586 +150180,150180 +169331,169331 +53158,53158 +202416,202416 +218251,218251 +200748,200748 +256137,256137 +193569,193569 +106737,106737 +359407,359407 +260759,463 +224617,224617 +20362,20362 +219341,219341 +26498,26498 +143912,143912 +86586,86586 +184781,184781 +421985,421985 +302535,302535 +69669,69669 +370138,370138 +394314,133358 +370192,370192 +325457,325457 +46247,46247 +122551,122551 +375776,375776 +363380,363380 +352330,352330 +193556,193556 +360028,360028 +263191,263191 +21351,21351 +139617,139617 +422880,422880 +131580,131580 +153945,153945 +367979,367979 +126755,126755 +423544,423544 +280659,280659 +401123,401123 +24752,24752 +37234,37234 +196554,196554 +430360,430360 +24710,24710 +432548,432548 +418387,418387 +51379,51379 +68643,68643 +358829,358829 +46105,46105 +109874,109874 +26150,26150 +338163,338163 +39718,39718 +263927,263927 +335267,335267 +322849,322849 +318715,318715 +339043,339043 +11249,11249 +180787,180787 +248897,248897 +34616,34616 +13804,13804 +143500,143500 +353670,353670 +138661,138661 +28119,28119 +192761,192761 +238480,238480 +277937,277937 +322012,322012 +379871,379871 +268262,268262 +6490,6490 +315395,315395 +136148,136148 +383486,383486 +322848,322848 +301315,301315 +240514,240514 +199773,199773 +365184,365184 +346849,346849 +352280,352280 +248481,248481 +180481,180481 +355880,355880 +425320,425320 +270433,270433 +24848,24848 +428014,428014 +337622,337622 +348037,348037 +79813,79813 +10428,10428 +176525,176525 +294238,294238 +424914,424914 +20912,20912 +161683,161683 +67698,67698 +217799,217799 +325178,325178 +115008,115008 +24581,24581 +70578,70578 +348384,348384 +25684,25684 +243995,243995 +391292,391292 +37539,5608 +402501,402501 +380397,380396 +43052,43052 +395362,395362 +354831,354831 +177045,177045 +326370,326370 +403176,403176 +365273,365273 +152303,152303 +426191,426191 +327789,336962 +339181,339181 +433320,433320 +259413,259413 +209238,209238 +174325,174325 +245727,245727 +24389,24389 +330227,330227 +34837,34837 +267338,267338 +162849,162849 +143296,143296 +378512,378512 +24140,24140 +273267,273267 +351327,351327 +19098,19098 +128042,128042 +337344,337344 +423234,423234 +403466,403466 +47187,47187 +298279,298279 +194975,194975 +129440,129440 +299150,299150 +230747,230747 +12231,12231 +55212,55212 +431331,431331 +83184,83184 +434348,434348 +264860,264860 +191452,191452 +175376,175376 +97187,97187 +113739,113739 +163055,163055 +378353,378353 +178482,178482 +342778,342778 +138111,138111 +376959,376959 +97473,97473 +71157,71157 +70218,70218 +33977,33977 +425667,425667 +30756,30756 +183718,183718 +240431,240431 +85075,85075 +26373,26373 +154784,154784 +36548,36548 +254095,254095 +331794,124954 +406342,88080 +425439,425439 +160241,160241 +29537,29537 +276295,276295 +414862,414862 +154381,154381 +162209,162209 +225237,225237 +151734,151734 +38799,38799 +128818,128818 +97864,97864 +31963,31963 +112880,112880 +240557,240557 +136035,136035 +29069,29069 +366187,366187 +40008,40008 +423308,423308 +311428,311428 +333170,333170 +123809,123809 +152619,152619 +304376,304376 +104125,104125 +355522,355522 +424962,424962 +338270,338270 +351715,351715 +60302,60302 +20721,20721 +347565,347565 +142447,142447 +425912,425912 +283448,283448 +12759,12759 +38888,38888 +337240,337240 +14213,14213 +37525,37525 +116105,116105 +235245,235245 +32772,32772 +305921,305921 +150632,150632 +38985,38985 +296534,296534 +295880,295880 +344773,344773 +161854,161854 +223253,223253 +376698,376698 +351125,351125 +65079,65079 +152508,152508 +179532,179532 +419420,419420 +43147,43147 +164791,164791 +11364,11364 +431456,431456 +157114,157114 +275178,275178 +433409,433409 +264501,264501 +141899,141899 +29477,29477 +134259,133923 +306090,306090 +136866,136866 +253279,253279 +295479,295479 +379727,379727 +421554,421554 +171313,171313 +60997,60997 +256169,256169 +410375,410375 +381923,381923 +424907,424907 +109811,109811 +391083,391083 +189822,189822 +24090,24090 +387425,387425 +135679,135679 +175087,175087 +430997,430997 +127616,127616 +15017,15017 +41483,41483 +360514,360514 +168913,168913 +366271,366271 +430746,430746 +67074,67074 +17974,17974 +30412,30412 +10066,10066 +286036,286036 +287300,287300 +335289,335289 +354471,354471 +183209,183209 +363292,363292 +39591,39591 +418760,85204 +409119,409119 +289548,289548 +419977,419977 +127238,127238 +36226,36226 +163088,163088 +129633,129633 +84160,84160 +376767,376767 +14563,14563 +161324,161324 +311208,311208 +402870,402870 +163472,163472 +179566,179566 +366014,366014 +374546,374546 +433826,433826 +43394,43394 +265570,265570 +296124,296124 +252528,252528 +415150,415150 +29901,29901 +122429,122429 +354739,354739 +97378,97378 +34439,34439 +306669,306669 +412721,412721 +315337,315337 +88183,88183 +38815,38815 +39284,39284 +83132,83132 +10975,10975 +175373,175373 +102876,102876 +114442,114442 +362345,362345 +431165,431165 +110633,110633 +34824,34824 +326672,326672 +434426,434426 +299089,299089 +334210,334210 +165007,165007 +383590,383590 +382623,382623 +21891,21891 +420276,420276 +289738,289738 +279945,279945 +37650,37650 +333502,333502 +190636,190636 +125132,125132 +38633,38633 +285883,285883 +306943,306943 +131284,131284 +137849,137849 +177082,177082 +134977,134977 +195568,195568 +346153,346153 +333808,333808 +381804,381804 +242978,242978 +431341,431341 +428087,428087 +167467,167467 +155964,155964 +60208,60208 +91133,91133 +30307,30307 +403115,403115 +348689,348689 +431082,431082 +62538,62538 +110718,110718 +340742,340742 +53634,53634 +342037,342037 +433677,433677 +124840,124840 +315442,315442 +26060,26060 +315031,315031 +309416,309416 +95857,95857 +322798,322798 +427127,427127 +182383,182383 +179795,179795 +28737,28737 +298121,298121 +10087,10087 +314327,314327 +148971,148971 +428940,428940 +413132,413132 +280471,280471 +36762,36762 +20025,20025 +14568,14568 +63197,63197 +331789,331789 +429644,429644 +357460,357460 +268812,268812 +163969,163969 +27330,27330 +307521,307521 +279493,279493 +146362,146362 +30374,30374 +404229,404229 +35995,35995 +32497,32497 +71245,71245 +427432,427432 +281420,281420 +345437,345437 +357376,357376 +256158,256158 +205102,205102 +116983,116983 +209958,209958 +338109,338109 +16411,16411 +38095,38095 +427736,427736 +417099,417099 +400024,400024 +84626,84626 +14339,14339 +108794,108794 +350432,350432 +161561,161561 +68326,68326 +344748,344748 +37438,37438 +303431,303431 +95941,95941 +431153,431153 +404254,404254 +13471,13471 +126997,126997 +127375,127375 +127670,127670 +42009,42009 +339511,339511 +368777,368777 +334628,334628 +166553,166553 +149438,149438 +209202,209202 +321494,321494 +181047,181047 +361898,463 +384146,384146 +285869,285869 +140055,140055 +227861,227861 +21927,21927 +180875,180875 +38800,38800 +382524,382524 +433919,433919 +229697,229697 +103364,103364 +64366,64366 +123589,123589 +418604,418604 +163424,163424 +124994,124994 +20715,20715 +137134,137134 +197678,197678 +173378,173378 +340338,340338 +352512,352512 +152969,152969 +205778,205778 +141234,141234 +41931,41931 +359737,359737 +34389,34389 +184122,184122 +25779,25779 +43212,43212 +398762,398762 +95175,95175 +26725,26725 +321730,321730 +112091,112091 +147867,147867 +116645,116645 +36435,36435 +295472,295472 +286909,286909 +406694,406694 +425680,425680 +262551,262551 +39254,39254 +2747,2747 +227546,227546 +430554,430554 +230733,230733 +38956,38956 +433602,433602 +150055,150055 +348290,348290 +158074,158074 +41370,41370 +403130,403130 +40161,40161 +279049,279049 +133209,133209 +108019,108019 +119456,119456 +60075,60075 +118213,118213 +40043,40043 +376386,376386 +16606,16606 +412770,412770 +127635,127635 +35487,35487 +63105,63105 +127984,127984 +364229,364229 +180029,33875 +367186,367186 +301053,301053 +62991,62991 +44943,44943 +21261,21261 +405372,292732 +195115,195115 +371803,371803 +287807,287807 +277449,277449 +409848,409848 +427712,427712 +434506,434506 +319939,319939 +195337,195337 +401112,401112 +203239,203239 +128806,128806 +71468,71468 +301368,301368 +288058,288058 +35792,35792 +403561,403561 +44014,44014 +432148,432148 +416009,416009 +426828,426828 +428905,428905 +138168,138168 +364768,364768 +18391,18391 +124062,124062 +431047,431047 +62960,62960 +341393,760 +155684,155684 +21117,21117 +126906,126906 +433529,433529 +138208,138208 +326105,326105 +318421,318421 +63501,63501 +41441,41441 +317869,317869 +105903,105903 +144454,144454 +174291,174291 +23448,23448 +34078,34078 +109979,109979 +238715,238715 +237842,237842 +420923,420923 +179334,179334 +23159,23159 +94903,94903 +237029,237029 +60169,60169 +29332,29332 +177119,177119 +206401,206401 +19403,19403 +425420,425420 +261125,261125 +27991,27991 +66673,66673 +175089,175089 +127878,127878 +430343,430343 +66186,66186 +327045,327045 +42551,42551 +400105,400105 +223688,223688 +359798,359798 +73107,73107 +20854,20854 +33783,33783 +421645,428480 +92913,92913 +327020,327020 +241933,241933 +122451,122451 +65501,65501 +296961,296961 +93360,93360 +337619,337619 +295536,295536 +236417,236417 +292879,292879 +66032,66032 +218860,218860 +188548,188548 +113474,113474 +378386,378386 +153948,153948 +424857,424857 +432675,432675 +203534,203534 +159844,159844 +58628,58628 +430275,430275 +122473,122473 +148027,148027 +221513,221513 +179664,179664 +241133,241133 +113828,113828 +14428,14428 +66207,66207 +41874,41874 +198378,198378 +240626,240626 +352676,352676 +375532,375532 +308486,308486 +397928,397928 +89832,89832 +258469,258469 +99475,99475 +35909,35909 +64881,64881 +71815,71815 +133232,133232 +276730,276730 +253075,253075 +208622,208622 +432138,432138 +237829,237829 +416115,416115 +185775,185775 +131739,131739 +371219,371219 +330252,330252 +135864,135864 +42067,42067 +28917,28917 +66015,66015 +34800,34800 +240646,240646 +130245,130245 +25959,25959 +154862,154862 +92579,92579 +26212,26212 +58790,58790 +425084,425084 +197298,197298 +69745,69745 +143144,143144 +204824,204824 +31174,31174 +319962,319962 +22073,22073 +302204,302204 +410932,410932 +277911,277911 +63084,63084 +350847,350847 +108863,108863 +31643,31643 +28236,28236 +163743,163743 +285354,285354 +344707,344707 +360720,360720 +425932,425932 +29919,29919 +419912,419912 +428444,428444 +323434,323434 +21198,21198 +265643,265643 +346332,346332 +163733,163733 +222092,222092 +34286,34286 +36088,36088 +72152,72152 +146679,146679 +129034,129034 +14965,14965 +293152,293152 +92219,92219 +133602,133602 +377467,377467 +39237,39237 +255710,255710 +297130,297130 +79345,79345 +4573,4573 +146363,146363 +108332,108332 +274759,274759 +410433,410433 +223610,223610 +325331,325331 +185047,185047 +62163,62163 +59351,59351 +95945,95945 +16547,16547 +275326,275326 +28998,28998 +43470,43470 +269748,269748 +18318,18318 +416928,416928 +311264,311264 +152866,152866 +38670,38670 +237552,237552 +206381,206381 +45204,45204 +86819,86819 +58296,58296 +354382,354382 +57758,57758 +37802,37802 +43316,43316 +227553,227553 +383594,383594 +240705,240705 +155631,155631 +228161,228161 +206500,195182 +62940,62940 +433467,433467 +48906,48906 +248507,248507 +24339,24339 +334377,334377 +67949,67949 +119933,119933 +28090,28090 +36038,36038 +287559,287559 +127620,127620 +401234,401234 +433209,433209 +153951,153951 +315416,315416 +168140,168140 +308076,308076 +267185,267832 +34698,34698 +12661,12661 +193408,193408 +54086,54086 +133027,133027 +177247,177247 +259457,259457 +315910,315910 +404799,404799 +274483,274483 +190328,190328 +29772,29772 +32924,32924 +30048,30048 +31943,31943 +252606,252606 +427102,427102 +18031,18031 +399940,399940 +13719,13719 +26573,26573 +146297,146297 +20399,20399 +179673,179673 +423938,423938 +402553,402553 +121530,121530 +65361,65361 +408523,408523 +28162,28162 +428488,428488 +32663,32663 +367592,367592 +158486,17184 +329901,329901 +341646,341646 +51809,51809 +146856,146856 +96063,96063 +349218,349218 +121395,121395 +384159,384159 +32796,32796 +355334,355334 +11061,11061 +424319,424319 +34531,34531 +30831,30831 +127806,127806 +100677,100677 +59975,59975 +335595,335595 +403187,403187 +193173,193173 +283232,283232 +300020,300020 +28462,28462 +144235,144235 +42821,42821 +13794,13794 +29829,29829 +135487,135487 +432365,432365 +119092,119092 +434086,434086 +28186,28186 +58578,58578 +212449,212449 +432660,432660 +154760,154760 +401985,401985 +428993,428993 +178041,178041 +301291,301291 +412368,412368 +4860,4860 +233739,233739 +262532,262532 +329337,329337 +346481,346481 +394196,394196 +414489,414489 +19848,19848 +154990,154990 +18862,18862 +399657,399657 +31931,31931 +20929,20929 +417261,417261 +352050,352050 +409188,409188 +398055,398055 +422975,422975 +355124,355124 +40833,40833 +403608,403608 +390416,390416 +141290,141290 +279908,273932 +43206,43206 +138944,138944 +262048,262048 +422073,422073 +414298,414298 +128206,128206 +410947,410947 +12755,12755 +161819,161819 +273386,273386 +29034,29034 +108741,108741 +397265,397265 +182751,182751 +378484,378484 +115095,115095 +433431,433431 +63022,63022 +119667,119667 +430860,430860 +83285,83285 +174681,174681 +328870,328870 +310275,310275 +226374,226374 +353659,353659 +432207,432207 +125445,125445 +353686,353686 +47303,47303 +420704,420704 +406530,406530 +202981,202981 +56447,56447 +32980,32980 +38736,38736 +295437,295437 +223557,223557 +272748,463 +307650,307678 +419566,419566 +338788,338788 +371157,371157 +10864,10864 +322455,322455 +401704,463 +132675,132675 +57888,57888 +58056,58056 +415917,415917 +362479,362479 +410230,410230 +66249,66249 +357394,357394 +349757,349757 +155063,155063 +193803,193803 +380112,380112 +111314,111314 +175312,175312 +130330,130330 +325860,325860 +158506,158506 +68017,68017 +43457,43457 +30423,30423 +33752,33752 +124691,124691 +423192,174235 +124129,124129 +353509,353509 +419331,419331 +121696,121696 +377614,377614 +423179,423179 +254054,254054 +41528,41528 +320588,320588 +297336,297336 +333184,333184 +124551,124551 +45366,45366 +21961,21961 +30383,30383 +182629,182629 +67067,67067 +28133,28133 +311202,311202 +349974,349974 +124294,124294 +152305,152305 +287288,287288 +16670,16670 +141273,141273 +264583,264583 +327560,327560 +334084,334084 +251409,251409 +265385,265385 +108998,108998 +183126,183126 +357926,357926 +400935,400935 +418131,418131 +207367,207367 +133656,133656 +415866,415866 +110492,110492 +120139,120139 +178211,178211 +138096,138096 +122312,122312 +73394,73394 +34989,34989 +22602,22602 +189378,189378 +15178,15178 +430170,430170 +27464,27464 +260488,313141 +155768,155768 +406669,406669 +117498,117498 +31280,31280 +6828,6828 +142530,142530 +414916,414916 +119800,119800 +356793,356793 +95864,95864 +423387,423387 +271731,271731 +422124,422124 +65638,65638 +433683,433683 +392625,392625 +35463,35463 +302502,302502 +57251,57251 +17193,17193 +428758,428758 +429657,429657 +205194,205194 +277155,277155 +311526,311526 +62534,62534 +23267,23267 +91334,91334 +37546,37546 +127678,127678 +162477,162477 +263781,263781 +19206,19206 +423100,423100 +67303,67303 +468,468 +124597,124597 +343058,343058 +20084,20084 +367545,367545 +133939,133939 +103543,103543 +5283,5283 +71987,71987 +237780,237780 +31231,31231 +314053,314053 +404916,15963 +41866,41866 +159584,159584 +67952,67952 +212984,212984 +161416,161416 +140122,140122 +129115,129115 +179861,179861 +66073,66073 +62867,62867 +303875,303875 +163265,163265 +299563,299563 +29958,29958 +34753,34753 +294353,294353 +362119,362119 +311911,311911 +37149,37149 +16375,16375 +60364,60364 +32043,32043 +297492,297492 +287835,287835 +276328,276328 +110440,110440 +226894,226894 +328373,328373 +316361,316361 +382677,382677 +373087,369521 +270452,270452 +251067,251067 +81688,81688 +175392,175392 +18795,18795 +137640,137640 +165410,165410 +151376,151376 +88826,88826 +66649,66649 +32977,32977 +279297,279297 +39396,39396 +262207,262207 +332310,332310 +14391,14391 +360517,360517 +143345,143345 +429266,429266 +175397,175397 +195188,195188 +16851,16851 +23321,23321 +199900,199900 +152386,463 +359198,359198 +119106,119106 +149150,149150 +32064,32064 +34650,34650 +10031,10031 +33083,33083 +432011,432011 +110310,110310 +417410,43022 +34044,34044 +404451,411421 +19608,19608 +19931,19931 +15522,15522 +34781,34781 +263353,263353 +28039,28039 +292803,292803 +131317,131317 +138520,138520 +36263,36263 +21091,21091 +161795,161795 +19659,19659 +240552,240552 +377663,377663 +63483,63483 +164227,164227 +374268,374268 +124440,124440 +111229,111229 +298456,298456 +430396,430396 +410791,410791 +372341,372341 +363885,363885 +277667,277667 +110836,110836 +330805,330805 +426161,158390 +227086,298583 +360438,360438 +189233,189233 +179196,179196 +428403,428403 +18947,18947 +57971,57971 +39887,39887 +20687,20687 +360680,360680 +121190,121190 +4793,4793 +430967,430967 +64150,64150 +6682,6682 +23150,23150 +249353,249353 +159093,159093 +167019,167019 +53436,53436 +20321,20321 +345471,345471 +137629,137629 +92239,92239 +42319,42319 +85575,85575 +369361,369361 +339481,339481 +389757,389757 +70867,70867 +36491,36491 +400516,400516 +240633,240633 +203084,203084 +18959,18959 +403539,403539 +36948,36948 +420712,420712 +23706,23706 +139003,139003 +354910,354910 +112104,112104 +31344,31344 +420639,420639 +36440,36440 +23335,23335 +426589,89383 +121779,121779 +25239,25239 +38076,38076 +171592,171592 +238423,238423 +318346,318346 +218324,218324 +411302,411302 +73452,73452 +90778,90778 +40673,40673 +360207,360207 +184932,184932 +32724,32724 +32739,32739 +310924,310924 +89331,89331 +403465,403465 +54462,54462 +111518,111518 +406350,406350 +68951,68951 +145395,145395 +354837,354837 +62053,62053 +322305,322305 +132078,132078 +325190,325190 +202797,202797 +176986,176986 +420453,420453 +34805,34805 +125057,125057 +106971,106971 +332372,332372 +127307,127307 +264441,264441 +195633,195633 +289208,289208 +420288,420288 +127614,127614 +72360,72360 +412867,412867 +363958,363958 +433700,433700 +158864,158864 +119945,119945 +256322,256322 +415907,415907 +214464,214464 +304197,304197 +249139,249139 +38727,38727 +112283,112283 +426873,426873 +432915,373657 +172815,172815 +31699,31699 +97713,97713 +26532,26532 +2008,2008 +428585,428585 +91426,91426 +363997,363997 +145560,145560 +37021,37021 +206962,206962 +421381,421381 +65944,65944 +13484,13484 +432388,432388 +227723,227723 +338758,338758 +428501,428501 +434189,434189 +95942,95942 +386217,386217 +30064,30064 +415526,415526 +5855,87098 +430402,430402 +26061,26061 +270975,270975 +136248,136248 +39235,39235 +281894,281894 +108127,108127 +212295,212295 +73387,73387 +423404,423404 +10067,10067 +221018,221018 +308117,308117 +256800,256800 +19865,19865 +302677,302677 +401227,401227 +341185,341185 +42226,42226 +287593,287593 +138247,138247 +277898,277898 +96927,96927 +95974,95974 +31200,31200 +159905,159905 +364996,364996 +123232,123232 +315190,315190 +20826,20826 +417634,417634 +260758,463 +231499,231499 +148757,148757 +32746,32746 +374825,374825 +43418,43418 +12302,12302 +40010,40010 +242113,242113 +430576,430576 +65442,65442 +263689,263689 +13722,13722 +431378,431378 +388364,388364 +303100,303100 +55645,55645 +336006,336006 +235772,235772 +322834,322834 +37587,37587 +187809,187809 +68762,68762 +402675,402675 +257665,257665 +279272,279272 +325067,325067 +413332,413332 +43475,43475 +32896,32896 +125267,125267 +132269,132269 +15787,15787 +128775,128775 +37953,37953 +347874,347874 +349888,349888 +31009,31009 +124002,124002 +152440,152440 +283167,283167 +12235,12235 +423926,423926 +324217,324217 +344731,344731 +327905,327905 +423696,423696 +171388,171388 +246351,246351 +343206,343206 +16593,16593 +313821,313821 +42534,42534 +409495,409495 +61314,61314 +125175,125175 +236699,236699 +245809,245809 +294661,294661 +371876,371876 +245429,245429 +358961,358961 +19364,19364 +320171,320171 +23115,23115 +287293,287293 +116576,116576 +300427,300427 +219845,219845 +355733,355733 +86484,86484 +123206,123206 +360515,360515 +426066,426066 +355550,355550 +336334,336334 +338478,338478 +416472,416472 +143097,143097 +288509,288509 +298398,298398 +66847,66847 +425395,425395 +322431,322431 +103901,103901 +222156,222156 +14359,14359 +34814,34814 +402149,402149 +311236,311236 +132683,132683 +23052,23052 +39755,39755 +112037,112037 +21238,21238 +291479,291479 +367203,367203 +14331,14331 +328740,328740 +194414,194414 +401765,401765 +25633,25633 +29633,29633 +41793,41793 +24363,24363 +32589,32589 +128901,128901 +119893,119893 +82749,82749 +417961,417961 +65748,65748 +412696,412696 +229413,229413 +237560,237560 +432458,432458 +57278,57278 +417141,417141 +96889,96889 +20104,20104 +9537,9537 +303711,303711 +352285,352285 +29494,29494 +289508,289508 +145833,145833 +127638,127638 +434289,434289 +365775,365775 +174525,174525 +324917,324917 +29536,29536 +127396,127396 +29851,29851 +23208,23208 +93086,93086 +147937,147937 +419316,235299 +394043,394043 +268498,263353 +159364,159364 +29590,29590 +36547,36547 +16716,16716 +96908,96908 +38089,38089 +154754,154754 +360989,360989 +406456,406456 +382643,59850 +431027,431027 +248963,248963 +210416,210416 +65664,65664 +368728,368728 +68965,68965 +23043,23043 +410471,410471 +348931,348931 +41111,41111 +175979,133602 +39864,39864 +183634,183634 +10100,10100 +378511,378511 +31862,31862 +240796,240796 +420115,420115 +60448,60448 +23669,23669 +163765,163765 +9638,9638 +416175,416175 +360055,360055 +255580,255580 +266229,266229 +260762,463 +143697,143697 +240553,240553 +111646,111646 +285018,285018 +67796,67796 +178641,178641 +255875,197997 +279468,279468 +219655,219655 +41194,41194 +15955,15955 +378091,378091 +430705,430705 +417946,417946 +242236,242236 +346714,346714 +236368,236368 +92250,92250 +122607,122607 +37618,37618 +233449,233449 +66639,66639 +417257,417257 +352814,352814 +420718,420718 +181112,181112 +5901,5901 +17945,17945 +38449,38449 +24005,24005 +36750,36750 +32795,32795 +368249,368249 +430097,430097 +90184,90184 +202648,202648 +260144,260144 +368604,368604 +98468,98468 +178559,178559 +134940,134940 +317155,317155 +173176,173176 +416807,416807 +381876,381876 +36958,36958 +163366,163366 +2273,2273 +234692,234692 +112927,112927 +43550,43550 +30720,30720 +171486,171486 +147598,147598 +272653,272653 +258024,258024 +384210,384210 +26826,26826 +35942,35942 +229042,229044 +264589,264589 +263341,263341 +268521,268521 +70799,70799 +131233,131233 +316506,1421 +30651,30651 +22163,22163 +127313,127313 +344765,344765 +333134,333134 +32637,32637 +225353,225353 +24365,24365 +67175,67175 +134814,134814 +227862,227862 +213896,213896 +339792,339792 +350878,350878 +93617,93617 +74690,74690 +93444,93444 +150514,150514 +374356,374356 +9050,9050 +433414,433414 +208083,208083 +109858,109858 +406262,406262 +100726,100726 +88083,4017 +138668,138668 +63964,63964 +185815,185815 +96374,96374 +405383,405383 +277710,277710 +423421,423421 +302084,302084 +26110,26110 +176486,176486 +143692,143692 +430147,430147 +38529,38529 +189207,189207 +24744,24744 +67245,67245 +14207,14207 +402234,402234 +85339,85339 +408537,408537 +347983,347983 +263620,263620 +235650,235650 +343289,343289 +43889,43889 +387774,387774 +27294,27294 +407190,463 +289381,289381 +334856,334856 +127190,127190 +33443,33443 +45823,45823 +85239,85239 +176383,176383 +156268,156268 +417665,417665 +27030,27030 +338777,338777 +292129,292129 +375690,375690 +342424,342424 +180093,180093 +434683,434683 +120302,120302 +260910,260910 +158389,158389 +333475,333475 +380361,380361 +29454,29454 +427626,427626 +304502,304502 +200648,200648 +33509,33509 +34333,34333 +269945,269945 +224640,224640 +399836,399836 +411814,310009 +322474,322474 +139506,139506 +43217,43217 +27862,27862 +326168,326168 +382166,382166 +65421,65421 +406529,406529 +405578,405578 +73656,73656 +433511,433511 +65447,65447 +425490,166633 +59814,59814 +37443,37443 +36406,36406 +66814,66814 +396956,396956 +318991,318991 +143282,143282 +210273,210273 +115763,115763 +20677,20677 +13220,13220 +11657,11657 +11827,11827 +79715,79715 +428148,428148 +20041,20041 +270709,270709 +33235,33235 +372222,372222 +113705,113705 +346924,346924 +155056,155056 +421389,421389 +338742,338742 +28503,28503 +324909,324909 +65420,65420 +376769,376769 +359685,359685 +41361,41361 +11360,11360 +63534,63534 +140099,140099 +434434,434434 +222758,222758 +393319,393319 +121534,121534 +26819,26819 +16734,16734 +236013,236013 +19645,19645 +158464,158464 +315315,315315 +299689,299689 +93425,93425 +31062,31062 +309974,309974 +270057,270057 +34906,34906 +38036,38036 +323570,323570 +28022,28022 +164468,164468 +429493,429493 +32919,32919 +61361,61361 +401236,401236 +399745,399745 +328760,328760 +423372,423372 +179447,179447 +30910,30910 +402597,402597 +157091,157091 +431172,431172 +174953,207168 +303196,303196 +12609,12609 +169542,169542 +420926,420926 +44218,44218 +164734,164734 +338953,338953 +124744,124744 +103079,103079 +20529,20529 +19668,19668 +279077,279077 +92221,92221 +58185,58185 +25844,25844 +314057,314057 +419044,419044 +25282,25282 +161925,161925 +331849,331849 +405601,405601 +35882,35882 +59137,59137 +313096,313096 +89228,89228 +332904,332904 +231787,262856 +306649,306649 +39668,39668 +300881,300881 +349139,349139 +148054,148054 +25744,25744 +386851,293782 +364871,32441 +189847,189847 +23898,23898 +397792,397792 +430537,430537 +293308,293308 +405561,405561 +32938,32938 +23879,23879 +365113,365113 +38488,38488 +375534,375534 +29144,29144 +333826,333826 +317019,317019 +405852,405852 +256403,256403 +429307,429307 +344216,344216 +54716,54716 +127273,127273 +306876,306876 +127953,127953 +412433,412433 +317513,317513 +324737,324737 +299821,299821 +188397,188397 +172276,172276 +65813,65813 +22323,22323 +287117,287117 +30907,30907 +216445,216445 +209738,209738 +134976,134976 +321040,321040 +416296,416296 +158225,158225 +241496,241496 +44249,44249 +62865,62865 +122252,122252 +145372,145372 +352629,207043 +88946,88946 +110289,110289 +267178,267178 +163705,163705 +162867,162867 +154471,154471 +409482,409482 +72203,72203 +357266,357266 +429488,429488 +260760,463 +191871,191871 +431709,431709 +10826,10826 +360254,360254 +300588,300588 +268853,268853 +154076,154076 +350336,350336 +425435,425435 +345128,345128 +43188,43188 +424339,400209 +120555,120555 +250454,250454 +384181,384181 +38416,38416 +152419,152419 +111730,111730 +173605,173605 +364986,364986 +412814,412814 +76136,76136 +413581,413581 +395292,395292 +93442,93442 +398372,398372 +59254,21874 +320699,320699 +175001,175001 +344548,344548 +21995,21995 +399367,399367 +325010,325010 +129953,129953 +142103,142103 +328890,328890 +259674,259674 +321202,321181 +403618,403618 +36937,36937 +58686,58686 +220474,220474 +367921,367921 +128146,128146 +422940,422940 +27706,27706 +178144,178144 +122600,122600 +130334,130334 +232867,232867 +126753,126753 +127160,127160 +70283,70283 +110506,110506 +32517,32517 +300847,300847 +212896,212896 +260383,260383 +378373,378373 +4819,4819 +32481,32481 +30798,30798 +26868,26868 +100642,100642 +117934,117934 +192082,192082 +66248,66248 +36493,36493 +269032,269032 +164788,164788 +434500,434500 +199302,199302 +432709,432709 +426405,426405 +303393,303393 +406917,406917 +136287,136287 +129648,129648 +36446,36446 +272231,272231 +431019,431019 +68859,68859 +110503,110503 +381296,381296 +300732,300732 +25711,25711 +403287,403287 +18889,18889 +34587,34587 +13730,13730 +256409,256409 +29700,29700 +430779,430779 +16400,16400 +38942,38942 +413847,413847 +419959,419959 +30895,30895 +421141,310371 +180418,180418 +31606,31606 +167697,167697 +26390,26390 +422167,422167 +427366,427366 +199647,199647 +44250,44250 +31168,31168 +37976,37976 +373622,373622 +31202,31202 +110290,110290 +99442,99442 +382206,382206 +155237,155237 +410475,410475 +431145,431145 +429859,429859 +240536,240536 +383031,383031 +30167,30167 +240564,240564 +23158,23158 +118506,118506 +299744,299744 +388982,388982 +272481,272481 +359735,359735 +290908,290908 +65684,65684 +219889,219889 +144075,144075 +406891,406891 +387196,387196 +5873,3270 +382226,382226 +288264,288264 +22408,22408 +339708,339708 +65552,65552 +43404,43404 +338774,338774 +112944,112944 +40539,40539 +426249,426249 +118528,118528 +111027,111027 +432918,432918 +376701,376701 +337502,337502 +427666,427666 +432042,1465 +317380,317380 +421000,421000 +400658,400658 +162719,162719 +113956,113956 +344217,344217 +227559,227559 +171202,171202 +382302,382302 +94544,94544 +263298,263298 +426521,426521 +234955,234955 +89367,89367 +432356,432356 +225057,225057 +399746,399746 +124682,124682 +230414,230414 +36040,36040 +322538,322538 +34752,304820 +60198,60198 +40040,40040 +54463,54463 +43433,43433 +350943,19234 +46810,46810 +302184,302184 +142851,142851 +388029,388029 +428178,428178 +344471,344471 +156353,156353 +145907,145907 +331491,331491 +338362,338362 +338807,338807 +114170,114170 +432295,432295 +177584,177584 +348715,348715 +425632,425632 +19465,19465 +375196,375196 +228288,228288 +405373,292732 +404284,404284 +12731,12731 +425227,425227 +175024,175024 +309781,309781 +235654,235654 +405725,405725 +316811,316811 +94735,94735 +227335,227335 +159666,159666 +87957,87957 +414644,12071 +39454,39454 +22496,22496 +157669,301212 +410329,410329 +65572,65572 +113961,113961 +401728,287893 +170814,170814 +367899,367899 +22627,22627 +287045,287045 +42623,42623 +407436,407436 +159818,159818 +244581,244581 +27217,27217 +22184,22184 +255767,255767 +378861,378861 +322140,322140 +13225,13225 +19041,19041 +42619,42619 +422612,422612 +43210,43210 +307539,307539 +4220,4220 +60036,60036 +422647,422647 +222728,240107 +28265,28265 +51615,51615 +338859,338859 +120365,120365 +386852,293782 +149600,149600 +25683,25683 +327265,327265 +267255,267255 +313809,313809 +351711,351711 +262857,231786 +322649,322649 +38127,38127 +134758,134758 +333507,333507 +408644,408644 +280565,280565 +65959,65959 +341920,341920 +122767,122767 +4131,4131 +393486,393486 +399744,399744 +156901,156901 +22637,22637 +336842,336842 +137124,137124 +406367,406367 +115540,115540 +397810,397810 +96096,96096 +320733,320733 +123235,123235 +99325,99325 +113157,113157 +143180,143180 +29472,29472 +418113,20551 +247020,247020 +420113,420113 +71814,71814 +35027,35027 +431259,431259 +259718,259718 +25025,25025 +279585,279585 +432351,432351 +37419,37419 +327398,327398 +413996,413996 +419780,419780 +222495,222495 +67219,67219 +232985,232985 +295312,295312 +403178,403178 +34037,34037 +122254,122254 +374000,346927 +32557,32557 +115926,115926 +414335,414335 +97122,97122 +221288,221288 +370107,370107 +256851,256851 +280087,280087 +179962,179962 +10604,10604 +96622,96622 +85411,85411 +326786,326786 +402389,402389 +344869,344869 +382073,382073 +38737,38737 +156056,156056 +165434,165434 +167487,167487 +130249,130249 +91349,91349 +400973,400973 +91747,91747 +39877,39877 +31046,31046 +327972,327972 +336058,336058 +34388,34388 +378415,378415 +35682,35682 +433741,338179 +14461,14461 +65940,65940 +21318,21318 +389746,389746 +98377,98377 +291379,291379 +13525,13525 +66016,66016 +402739,402739 +318291,318291 +381533,381533 +382221,382221 +239423,239423 +227612,227612 +399167,248702 +336290,182230 +334505,11168 +222991,222991 +36029,36029 +241690,241690 +98025,98025 +39445,39445 +307255,307255 +16586,16586 +228451,228451 +258746,258746 +57193,57193 +29904,29904 +35398,35398 +83153,83153 +28644,28644 +58644,58644 +421950,2091 +56926,56926 +373059,373059 +172657,172657 +11630,11630 +18800,18800 +404929,404929 +409702,425667 +119669,119669 +403422,403422 +323872,323872 +383368,383368 +263348,263348 +414190,414190 +64864,64864 +263434,263434 +231853,231853 +276762,276762 +90840,90840 +110826,110826 +274017,274017 +425765,425765 +325548,325548 +298470,298470 +37125,37125 +171903,171903 +414503,414503 +202418,202418 +391135,391135 +133393,133393 +403165,403165 +324132,324132 +38375,38375 +122966,122966 +38990,38990 +28261,28261 +429780,429780 +421015,421015 +149805,149805 +281538,281538 +103159,103159 +433794,433794 +36497,36497 +33516,33516 +122126,122126 +151150,151150 +167097,167097 +425036,425036 +179222,16640 +16318,16318 +408787,408787 +117806,117806 +187973,187973 +117988,117988 +333299,333299 +332483,332483 +401725,401725 +323350,323350 +434134,434134 +29761,29761 +88938,88938 +142240,142240 +111156,111156 +129701,129701 +410260,410260 +99429,99429 +40100,40100 +15440,15440 +20754,20754 +223671,223671 +233190,233190 +52009,52009 +332890,332890 +431805,431805 +336485,336485 +221802,221802 +154893,154893 +1801,1801 +148141,148141 +321031,321031 +410441,410441 +235457,235457 +302064,302064 +322873,322873 +311076,311076 +141524,141524 +39075,39075 +135134,135134 +325034,325034 +2329,2329 +321198,321198 +405853,405853 +402263,402263 +65806,65806 +134707,134707 +193937,193937 +314966,314966 +389622,389622 +345262,345262 +13990,13990 +403470,403470 +323239,323239 +34409,34409 +232614,232614 +168349,168349 +269507,269507 +149700,149700 +127502,127502 +303072,303072 +304595,304595 +307038,307038 +186434,186434 +291500,291500 +116009,116009 +171761,171761 +372969,372969 +202752,202752 +406613,406613 +309290,309290 +329602,329602 +289778,289778 +395138,395138 +122436,122436 +429596,429596 +426840,426840 +279849,279849 +108926,108926 +377946,377946 +427989,427989 +20110,20110 +63929,63929 +293679,293679 +200559,200559 +260515,260515 +265618,265618 +113065,113065 +418573,418573 +417632,417632 +177633,177633 +333664,333664 +77428,77428 +191881,191881 +37407,37407 +112893,112893 +14780,14780 +218448,218448 +334798,334798 +125817,125817 +380316,380316 +19911,19911 +29233,29233 +71469,71469 +56400,56400 +206751,206751 +210184,210184 +203766,203766 +65453,65453 +21008,21008 +112182,112182 +403545,403545 +432354,432354 +205282,205282 +65615,65615 +62413,62413 +137217,137217 +21738,21738 +27391,27391 +202088,202088 +28158,28158 +59550,59550 +40154,40154 +81225,81225 +188999,188999 +209956,209956 +19444,19444 +367863,367863 +429940,429940 +411621,411621 +5976,5976 +34475,34475 +242090,242090 +396970,396970 +63730,63730 +115930,115930 +406956,406956 +342421,342421 +225648,225648 +60785,60785 +339683,339683 +391068,391068 +89964,89964 +228175,228175 +335298,335298 +300139,300139 +409357,409357 +303574,303574 +284863,284863 +129491,129491 +42082,42082 +413105,413105 +30884,30884 +365247,365247 +309866,309866 +244597,244597 +234345,234345 +340307,340307 +252439,252439 +264768,264768 +369933,369933 +430817,430817 +434570,434570 +28424,28424 +131186,131186 +408450,408450 +324338,324338 +353641,353641 +15445,15445 +334346,334346 +364010,364010 +96164,96164 +307150,307150 +138893,138893 +415753,415753 +393572,393617 +170030,170030 +129167,129167 +64234,64234 +248460,248460 +65586,65586 +157623,157623 +22769,22769 +73767,73767 +377164,377164 +70282,70282 +101769,101769 +363337,363337 +87585,87585 +246967,246967 +16701,16701 +34175,34175 +410503,410503 +139585,139585 +359111,359111 +431398,431398 +140516,140516 +366046,366046 +146160,146160 +338803,338803 +175306,175306 +420681,420681 +133818,133818 +411273,411273 +288663,63268 +346487,346487 +186689,186689 +307961,307961 +56005,56005 +134522,134522 +123484,123484 +144639,144639 +50219,50219 +281192,281192 +19224,19224 +289946,289946 +159572,159572 +226114,226114 +255576,255576 +322190,322190 +28020,28020 +348582,348582 +347787,347787 +30078,30078 +155526,155526 +37364,16640 +414701,414701 +42356,42356 +82586,82586 +244649,244649 +414126,414126 +412199,412199 +155151,155151 +36468,36468 +386250,386250 +376579,376579 +173928,173928 +128845,128845 +15500,15500 +380114,380114 +63201,63201 +411560,411560 +123966,123966 +334534,334534 +420060,420060 +99305,99305 +131944,131944 +38285,38285 +85311,85311 +431369,431369 +258545,258545 +143855,143855 +30625,30625 +19496,19496 +90773,90773 +32752,32752 +352335,352335 +147437,147437 +6030,6030 +49681,49681 +30892,30892 +76138,76138 +382168,382168 +199849,199849 +97826,97826 +230620,230620 +35640,35640 +20752,20752 +25863,25863 +229602,229602 +234911,234911 +61612,61612 +321052,321052 +46872,46872 +16683,16683 +289103,289103 +7374,7374 +121627,121627 +405194,405194 +171778,171778 +112609,112609 +279503,279503 +259469,259469 +37020,37020 +12981,12981 +382601,382601 +23621,23621 +306916,306916 +30072,30072 +305047,305047 +120219,120219 +34411,34411 +135405,135405 +102935,102935 +14069,14069 +301249,301249 +143355,143355 +405403,405403 +56539,56539 +124534,124534 +32909,32909 +423692,423692 +198906,198906 +21766,21766 +151447,151447 +191377,191377 +38010,38010 +37053,37053 +81923,81923 +351126,351126 +37139,37139 +30440,30440 +65643,65643 +35679,35679 +425631,425631 +84132,84132 +423365,423365 +209237,209237 +17171,17171 +128460,128460 +145502,145502 +36203,36203 +249851,249851 +28036,28036 +35000,35000 +322908,322908 +245517,245517 +142430,142430 +334629,334629 +427342,427342 +31456,31456 +404496,404496 +355524,355524 +394439,394439 +269101,269101 +38111,38111 +377522,377522 +322066,322066 +342538,342538 +434026,434026 +393856,393856 +35364,35364 +431458,431458 +177549,177549 +414977,414977 +99446,99446 +30283,30283 +365839,365839 +5978,5978 +34138,34138 +39488,39488 +9469,9469 +406611,406611 +308430,308430 +310375,310375 +21303,21303 +22973,22973 +31278,31278 +165818,165818 +418256,418256 +97471,97471 +124809,124809 +139810,139810 +86893,86893 +288570,54625 +112797,112797 +60752,60752 +208208,208208 +216753,216753 +173503,173503 +27088,27088 +193371,193371 +247139,247139 +22739,22739 +407234,407234 +262924,262924 +171374,171374 +68614,68614 +41513,41513 +359742,359742 +261433,261433 +370354,370354 +98023,98023 +402043,402043 +19229,19229 +62980,62980 +290564,290564 +65055,170006 +425114,425114 +113783,113783 +114495,114495 +342422,342422 +16202,16202 +33361,33361 +123161,123161 +175026,175026 +121492,121492 +43166,43166 +352869,352869 +424970,424970 +65505,65505 +317516,350954 +338094,338094 +63631,63631 +122542,122542 +130531,130531 +162774,162774 +116149,116149 +99556,99556 +329644,329644 +38170,38170 +151615,151615 +36588,36588 +420990,420990 +387757,387757 +39127,39127 +141427,141427 +5006,5006 +567,567 +351723,351723 +66506,66506 +297707,297707 +21455,21455 +129170,129170 +225168,225168 +305209,305209 +245535,245535 +40613,40613 +110945,110945 +432912,432912 +356392,356392 +195405,195405 +303505,303505 +75977,75977 +227052,227052 +237413,237413 +72894,72894 +186268,186268 +200693,200693 +127640,127640 +171591,171591 +16642,16642 +375382,375382 +86793,86793 +414775,414775 +128026,128026 +118522,118522 +299869,299869 +211211,211211 +29102,29102 +42441,42441 +150187,66286 +43495,43495 +41040,41040 +95194,95194 +255719,255719 +28251,28251 +430761,430761 +4728,4728 +35290,35290 +315885,315885 +198876,198876 +115759,115759 +249250,249250 +411901,411901 +227966,227966 +119469,119469 +277114,277113 +265004,265004 +233625,181205 +391065,391065 +341788,341788 +341773,341773 +30389,30389 +199193,199193 +36395,36395 +304017,304017 +382237,382237 +29950,29950 +251686,251686 +232244,232244 +85079,85079 +44009,44009 +39714,39714 +368367,368367 +174839,174839 +25753,25753 +209811,209811 +16096,16096 +410960,410960 +110316,110316 +383693,383693 +327216,327216 +428540,428540 +41093,41093 +35604,35604 +107788,107788 +145589,145589 +369985,369985 +15144,15144 +29945,29945 +20481,20481 +15815,279263 +402386,402386 +36814,36814 +334721,334721 +300982,36598 +403555,403555 +283425,283425 +68899,68899 +404924,404924 +373932,373932 +224160,224160 +209520,209520 +411910,411910 +279740,279740 +35744,35744 +31675,31675 +20465,20465 +237628,237628 +99080,99080 +294877,294877 +66841,66841 +420565,420565 +198939,198939 +433674,433674 +121533,121533 +188690,379645 +128145,128145 +37202,37202 +341763,341763 +29185,29185 +207240,207240 +38422,38422 +62971,62971 +409979,409979 +314968,314968 +31300,31300 +28882,28882 +60740,60740 +435056,435056 +126275,126275 +349070,349070 +368683,368683 +6166,6166 +120275,120275 +38934,38934 +38675,38675 +22711,22711 +357692,357692 +12150,12150 +362662,362662 +30837,30837 +1828,1828 +269002,269002 +316665,316665 +403352,403352 +324329,324329 +378944,378944 +23013,23013 +38250,38250 +65663,65663 +177860,177860 +356300,2997 +370066,370066 +137853,137853 +135164,135164 +12271,12271 +151286,151286 +227435,227435 +104767,104767 +38624,295878 +56174,56174 +110322,110322 +348086,348086 +113555,113555 +187241,187241 +386557,386557 +222233,222233 +348042,348042 +340124,340124 +24723,24723 +413790,413790 +163318,163318 +316913,316913 +434410,434410 +62033,62033 +397080,4769 +31912,31912 +387935,266381 +163337,163337 +194042,194042 +17663,17663 +334977,334977 +27997,27997 +116348,116348 +228438,228438 +35624,35624 +378322,378322 +400662,400662 +403610,403610 +119304,119304 +18521,18521 +138556,138556 +65778,65778 +431386,431386 +217204,217204 +68907,68907 +325912,325912 +90764,90764 +32442,32442 +160065,160065 +124431,124431 +98959,98959 +227662,227662 +191316,191316 +25040,25040 +365040,365040 +63366,63366 +42500,42500 +132792,132792 +11921,11921 +7886,7886 +279582,279582 +123890,123890 +22768,22768 +71207,71207 +286353,286353 +303608,303608 +218781,218781 +323578,323578 +127793,127793 +430734,430734 +200623,17287 +125738,125738 +243317,243317 +34954,34954 +51028,51028 +356467,356467 +28952,28952 +26087,26087 +326108,326108 +19058,19058 +169994,169994 +241663,241663 +258837,258837 +39863,39863 +184770,184770 +382223,382223 +220246,220246 +334848,334848 +33762,33762 +177326,177326 +11752,11752 +23106,23106 +360287,360287 +145699,145699 +16156,16156 +149179,149179 +60008,60008 +350665,350665 +339902,339902 +217795,217795 +36148,36148 +283743,283743 +367609,367609 +264521,264521 +222148,222148 +209550,209550 +134845,134845 +434870,434870 +419017,419017 +373319,373319 +337289,337289 +424183,424183 +129672,129672 +72232,72232 +20793,20793 +38662,38662 +41926,41926 +329157,329157 +24481,24481 +376305,376305 +348719,348719 +373668,373668 +295416,295416 +46109,46109 +19812,19812 +169740,169740 +51319,51319 +13860,13860 +14519,14519 +425683,425683 +339041,339041 +423325,301710 +119722,119722 +310208,310208 +250446,250446 +26284,26284 +278386,278386 +316761,316761 +418072,418072 +103588,103588 +210223,210223 +103827,103827 +2525,2525 +335205,335205 +343704,343704 +38628,38628 +11134,11134 +37144,37144 +431203,431203 +335486,335486 +380508,380508 +186029,186029 +251139,251139 +193979,193979 +153273,153273 +386704,386704 +38121,38121 +34505,34505 +42549,42549 +216182,216182 +343294,343294 +155931,155931 +141621,141621 +386484,386484 +35615,35615 +62741,62741 +367822,367822 +11272,11272 +216572,216572 +225514,225514 +26086,26086 +428697,428697 +272070,272070 +341399,341399 +322433,322433 +342878,342878 +341717,341717 +37219,37219 +244530,244530 +154311,154311 +377122,377122 +321698,321698 +168896,168896 +361907,361907 +59215,59215 +299117,299117 +85993,85993 +25425,25425 +369747,369747 +256524,256524 +179337,179337 +110294,110294 +113090,113090 +31983,31983 +189408,189408 +381837,381837 +429245,429245 +325077,325077 +431054,431054 +108964,108964 +326424,326424 +20780,20780 +90757,90757 +426799,426799 +26476,26476 +294760,294760 +405602,405601 +64217,64217 +51664,51664 +329375,329375 +114094,114094 +424130,424130 +426067,426067 +27889,27889 +350949,19234 +430016,430016 +34762,34762 +339241,339241 +424300,424300 +63178,63178 +128943,128943 +65790,65790 +425073,425073 +272830,272830 +38077,38077 +427340,427340 +101014,101014 +364107,364107 +376514,376514 +403364,403364 +20066,20066 +408007,408007 +220833,220833 +111155,111155 +310131,310131 +334424,334424 +124664,124664 +320160,320160 +39551,39551 +430451,430451 +112708,112708 +322694,322694 +192944,192944 +39876,39876 +18345,18345 +308622,308622 +197001,197001 +29325,29325 +229545,229545 +325539,325539 +325696,325696 +341331,341331 +387912,387912 +410446,410446 +345098,345098 +344520,344520 +115931,115931 +91045,91045 +16774,16774 +244254,244254 +119240,119240 +16033,16033 +300870,300870 +348404,348404 +65082,65082 +420004,420004 +90389,90389 +34116,34116 +238997,238997 +139815,139815 +255521,255521 +64880,64880 +148105,148105 +422006,422006 +38704,38704 +46926,46926 +19405,19405 +40060,40060 +410191,410191 +31058,31058 +434115,434115 +431591,431591 +428484,428484 +345138,345138 +422990,422990 +177321,177321 +205286,205286 +352276,352276 +314010,314010 +181321,181321 +97055,97055 +296708,296708 +8661,8661 +145431,145431 +127385,127385 +104806,104806 +375653,375653 +123667,123667 +321309,321309 +333192,333192 +356311,356311 +37472,37472 +46918,46918 +423326,463 +97900,97900 +319106,319106 +26992,26992 +33527,33527 +64195,64195 +281154,281154 +403660,403660 +63194,63194 +16360,16360 +427277,427277 +355414,355414 +122251,122251 +62943,62943 +29915,29915 +184515,184515 +233360,233360 +11324,11324 +378492,378492 +378486,378486 +128624,128624 +344082,344082 +45749,45749 +247046,247046 +321255,321255 +330955,330955 +346954,346954 +35670,35670 +129579,129579 +356730,356730 +272485,272485 +25812,25812 +208786,208786 +33230,33230 +29261,29261 +297416,297416 +289461,289461 +183537,183537 +24463,24463 +283941,283941 +27519,17802 +331132,331132 +377466,377466 +225972,225972 +409472,409472 +38659,38659 +237327,237327 +433382,433382 +23429,23429 +200673,200673 +160680,160680 +338005,338005 +143352,143352 +224619,224619 +115430,115430 +75824,75824 +407213,407213 +429853,429853 +362586,362586 +341549,341549 +148383,148383 +433470,433470 +374490,374490 +122081,122081 +317343,317343 +16915,16915 +170405,170405 +378748,378748 +138665,138665 +37489,37489 +156991,156991 +257954,463 +132029,132029 +40454,40454 +367826,367826 +426669,426669 +44277,44277 +304888,304888 +123488,123488 +122215,122215 +357901,357901 +40524,40524 +338226,338226 +120339,120339 +204380,204380 +150103,150103 +209241,209241 +19344,19344 +357051,357051 +258595,258595 +21115,21115 +385638,385638 +387188,387188 +382309,382309 +389269,389269 +22343,22343 +272388,272388 +268876,268876 +374724,374724 +22891,22891 +90418,90418 +134811,134811 +179635,179635 +144402,144402 +302337,248702 +5473,5473 +116563,116563 +257329,257329 +8271,8271 +343366,343366 +350842,350842 +58030,58030 +113478,113478 +116570,116570 +158318,158318 +244943,244943 +137752,137752 +207725,207725 +382956,382956 +424574,424574 +332477,332477 +275291,275291 +108465,108465 +141528,141528 +418300,418300 +69268,69268 +376768,376768 +60578,60578 +101845,101845 +15105,15105 +20650,20650 +432146,156858 +33065,33065 +13942,13942 +16785,16785 +421472,421472 +281740,281741 +407513,407513 +110843,110843 +340808,340808 +38269,38269 +302007,25415 +304208,304208 +121035,121035 +56000,56000 +432640,432640 +300855,300859 +403568,403568 +432936,177559 +127604,127604 +27203,27203 +378888,378888 +15291,15291 +118951,118951 +188810,188810 +391889,391889 +376451,376451 +157214,157214 +430478,430478 +138657,138657 +32878,32878 +75810,75810 +85827,85827 +410007,410007 +34900,34900 +7224,7224 +53587,53587 +274257,274257 +137668,137668 +32902,32902 +31948,31948 +97929,316184 +51610,51610 +281650,281650 +36383,36383 +359812,359812 +163675,163675 +172749,172749 +419886,341795 +192085,192085 +220994,220994 +354480,354480 +89686,89686 +200915,200915 +125575,125575 +312795,312795 +402430,402430 +423193,174235 +239766,239766 +427601,427601 +158857,158857 +21454,21454 +26434,26434 +393575,393617 +179493,179493 +383408,383408 +23184,23184 +43207,43207 +431734,431734 +285829,285829 +209224,209224 +70278,70278 +81303,81303 +294995,294995 +421930,421930 +352176,352176 +199791,199791 +68596,68596 +311316,311316 +357758,357758 +308352,308352 +55420,55420 +239231,239231 +28135,28135 +31030,31030 +14800,14800 +268549,268549 +33630,33630 +121081,121081 +420304,420304 +422130,422130 +422619,422619 +428537,366458 +364933,323883 +58093,58093 +406886,406886 +125027,125027 +13270,13270 +71083,71083 +422557,422557 +414831,414831 +362711,362711 +28043,28043 +382536,382536 +402556,402556 +358788,358788 +403506,403506 +28277,28277 +92426,92426 +218490,218490 +304193,304193 +366638,366638 +125891,125891 +174489,174489 +368576,368576 +355619,355619 +118111,118111 +163209,163209 +350327,350327 +201593,201593 +289260,289260 +319597,319597 +14489,33609 +158849,158849 +409537,409537 +372958,372958 +142532,142532 +269046,269046 +100302,100302 +36657,36657 +332583,332583 +32963,32963 +264847,264847 +427000,427000 +57742,57742 +325924,325924 +383104,383104 +403522,403522 +72939,72939 +121797,121797 +177535,177535 +327078,327078 +322165,322165 +69623,69623 +124690,124690 +114393,114393 +155701,155701 +311410,311410 +376709,376709 +158898,158898 +122900,122900 +18328,18328 +149184,149184 +420142,420142 +156342,156342 +376771,376771 +62910,62910 +15648,15648 +41398,41398 +138521,138521 +128418,128418 +39735,39735 +32057,32057 +25715,25715 +301205,301205 +300236,300236 +223429,223429 +326905,463 +125801,125801 +139646,139646 +122249,122249 +160229,160229 +114314,114314 +136481,136481 +37674,37674 +26214,26214 +12793,12793 +290690,290690 +129983,129983 +299103,299103 +321276,321276 +427635,324320 +33133,33133 +408886,408886 +431285,431285 +432394,432394 +69349,69349 +30184,30184 +24991,24991 +417997,760 +361717,361717 +110138,110138 +268938,268938 +147025,147025 +86545,86545 +264944,264944 +350756,350756 +386858,386858 +193524,193524 +124021,124021 +311947,311947 +66546,66546 +300555,300555 +21644,21644 +189458,189458 +427352,427352 +40621,40621 +337667,337667 +234863,234863 +325734,325734 +423790,423790 +26860,26860 +345708,345708 +128544,128544 +21197,21197 +39150,39150 +99658,99658 +30390,30390 +116214,116214 +377567,377567 +283621,283621 +39377,39377 +31617,31617 +154951,154951 +341808,341808 +362096,362096 +423007,423007 +359367,359367 +250522,250522 +341059,341059 +111450,111450 +32499,32499 +340238,340238 +291507,291507 +226345,226345 +16484,12117 +35409,35409 +158068,158068 +130453,130453 +140490,140490 +12176,12176 +59878,59878 +301424,301424 +325229,325229 +368961,368961 +331161,331161 +33768,33768 +419998,419998 +63009,63009 +414849,414849 +95517,95517 +31613,31613 +145566,145566 +23166,23166 +164287,164287 +38938,38938 +159422,159422 +428909,428909 +129438,129438 +132594,132594 +168003,168003 +429997,429997 +419640,419640 +404917,15963 +318768,318768 +430455,430455 +410253,410253 +297516,297516 +37753,37753 +433614,433614 +178869,178869 +153959,153959 +433440,433440 +431167,431167 +420227,262341 +425032,425032 +66017,66017 +70915,70915 +323238,323238 +400726,400726 +263757,263757 +138623,138623 +121009,121009 +307340,307340 +335862,335862 +127115,127115 +16100,16100 +113089,113089 +427096,427096 +274785,274785 +215757,215757 +63101,63101 +46358,46358 +90096,90096 +42979,42979 +353741,10934 +344162,344162 +267442,267442 +105055,105055 +56739,56739 +357482,357482 +127641,127641 +353927,353927 +17257,17257 +118556,118556 +377481,377481 +353704,353704 +20978,20978 +72540,72540 +29481,29481 +422568,422568 +189881,189881 +64627,64627 +174352,174352 +187664,187664 +128255,128255 +316259,324896 +205048,205048 +433466,433466 +426583,426583 +291943,291943 +6628,6628 +415499,415499 +41283,41283 +367881,367881 +229641,229641 +176246,176246 +328696,328696 +174733,174733 +131626,131626 +284581,284581 +410385,410385 +434070,434070 +10519,10519 +341278,341278 +418674,418674 +368901,368901 +119649,119649 +329790,329790 +176287,176287 +346478,346481 +157292,157292 +404032,404032 +406234,406234 +42784,42784 +34318,34318 +143303,143303 +28904,28904 +403571,403571 +21227,21227 +408627,408627 +62386,62386 +37909,37909 +129434,129434 +128843,128843 +378440,378440 +186950,186950 +302395,302395 +131113,131113 +135146,135146 +167395,167395 +98793,98793 +331318,331318 +344245,344245 +394856,394856 +277678,277678 +144983,144983 +400033,400033 +176567,176567 +119004,119004 +421480,421480 +301938,301938 +393853,393853 +362160,362160 +21715,21715 +192091,192091 +226870,226870 +334372,334372 +403113,403113 +129956,129956 +93670,93670 +331554,331554 +240512,240626 +65321,65321 +171850,171850 +320560,320560 +233148,233148 +324414,324414 +154143,154143 +352910,352910 +297202,297202 +61610,61610 +46939,46939 +192347,192347 +23438,23438 +160093,160093 +31992,31992 +391260,391260 +426167,426167 +23319,23319 +272898,272898 +99278,99278 +30144,30144 +70563,70563 +170698,170698 +31079,31079 +176574,176574 +323870,323870 +168346,168346 +153712,153712 +426439,426439 +336933,336933 +333291,333291 +66787,66787 +31090,31090 +14418,14418 +427738,427738 +338907,338907 +122582,122582 +290155,290155 +299082,299082 +385340,385340 +31409,31409 +90992,90992 +321308,321308 +341748,341748 +422964,422964 +175646,175646 +201467,201467 +354864,354864 +128141,128141 +431437,431437 +76672,76672 +240320,240320 +99220,99220 +428793,428793 +238250,238250 +177510,177510 +427559,427559 +253570,335637 +61830,61830 +71618,71618 +241808,241808 +434164,434164 +63270,63270 +300447,463 +114159,114159 +34976,34976 +37034,37034 +71595,71595 +23650,23650 +87483,87483 +66039,66039 +150631,150631 +350584,350584 +330413,330413 +366289,366289 +432016,432016 +33193,33193 +73235,73235 +370661,370661 +152466,152466 +313427,313427 +289657,289657 +14592,14592 +281183,281183 +184534,184534 +116646,116646 +183834,183834 +88671,88671 +342913,342913 +22658,22658 +46945,46945 +14562,14562 +229556,229556 +413432,413432 +356711,356711 +175151,175151 +27972,27972 +368399,368399 +322312,322312 +416669,416669 +322957,322957 +289244,289244 +270692,270692 +414485,414485 +17129,17129 +53690,53690 +154351,154351 +417157,417157 +322307,322307 +410762,410762 +149506,149506 +348871,348871 +425146,425146 +372615,372615 +414691,414691 +423584,423584 +129733,129733 +166249,166249 +287124,287124 +140699,140699 +92824,92824 +363349,363349 +30981,30981 +293065,293065 +58711,58711 +433897,433897 +382063,382063 +173947,173947 +162068,162068 +300767,300767 +11636,11636 +144917,144917 +119858,119858 +423423,423423 +331545,331545 +286106,286106 +25147,25147 +23124,23124 +116601,116601 +53143,53143 +30489,30489 +321834,321834 +200532,200532 +377804,377804 +375249,375249 +404425,404425 +42271,42271 +32704,32704 +15141,15141 +120833,120833 +26678,26678 +422458,422458 +26266,26266 +430425,430425 +430973,430973 +377572,377572 +152538,152538 +265968,265968 +32565,32565 +243009,243009 +417156,417156 +205428,205428 +24027,24027 +421070,421070 +419196,419196 +347398,347398 +388039,388039 +35440,35440 +299434,299434 +119228,119228 +281074,281074 +37182,37182 +432302,432302 +86539,86539 +277149,277149 +67071,67071 +345096,345096 +148350,148350 +341873,341873 +245509,245509 +32388,32388 +302684,302684 +130957,130957 +108423,108423 +233135,233135 +348401,348401 +419840,419840 +377532,377532 +194721,194721 +159075,159075 +13826,13826 +187360,187360 +294999,294999 +373599,373599 +346750,346750 +345039,345039 +145923,145923 +130692,130692 +236765,236765 +313023,313023 +354821,354821 +415859,415859 +112232,112232 +272411,272411 +160032,160032 +39672,39672 +396652,396652 +329070,329070 +174559,174559 +346534,346534 +326670,326670 +43696,43696 +433931,433931 +264409,264409 +282944,282944 +76733,76733 +338182,338182 +31166,31166 +399909,399909 +426702,426702 +35958,35958 +110292,110290 +218230,218230 +407482,407482 +36679,36679 +19806,19806 +229484,229545 +382425,382132 +37329,37329 +430614,91873 +286396,286396 +434834,434834 +318437,318437 +62694,62694 +129593,129593 +11518,11518 +38490,38490 +430588,430588 +304933,304933 +373077,373077 +431585,431585 +370679,370679 +272849,272849 +73237,73237 +65749,65749 +109610,109610 +284730,325068 +31681,31681 +129543,129543 +127306,127306 +155176,155176 +393819,393819 +259404,259404 +418355,418355 +86841,86841 +30515,30515 +254387,254387 +173630,173630 +28743,28743 +34282,34282 +431226,431226 +415919,415919 +29916,29916 +279190,279190 +256421,256421 +128287,128287 +403530,403530 +128133,128133 +23911,23911 +199862,199862 +263221,263221 +129938,129938 +100753,100753 +143838,143838 +175379,175379 +123590,123590 +232892,232892 +322318,322318 +69836,69836 +157337,157337 +51315,51315 +174663,174663 +358952,358952 +352278,352278 +335656,335656 +191890,191890 +9945,9945 +96433,96433 +71978,319705 +255365,255365 +388322,388322 +194662,194662 +201783,201783 +252950,252950 +247044,247044 +305174,305174 +430525,430525 +434660,434660 +32411,32411 +39971,39971 +358479,358479 +60698,60698 +37476,37476 +38767,38767 +23445,23445 +37145,37145 +351159,351159 +230282,230282 +406177,406177 +71240,71240 +230604,230604 +242874,242874 +27014,27014 +62027,62027 +287126,287126 +255112,255112 +321859,321859 +404172,404172 +381432,381432 +177162,177162 +118526,118526 +116148,116148 +360463,360463 +70233,70233 +419064,419064 +83069,83069 +44252,44252 +242549,242549 +47004,47004 +164642,164642 +383025,383025 +336660,336660 +233539,233539 +402516,402516 +38798,38798 +385758,385758 +424126,424126 +211203,211203 +120892,120892 +127548,127548 +51376,51376 +264995,264995 +425275,425275 +282335,282335 +433900,433900 +12041,12041 +134200,134200 +292769,292769 +291276,291276 +429539,429539 +34263,34263 +363352,363352 +116469,116469 +113708,113708 +428629,428629 +433355,433355 +59635,59635 +405388,405388 +274253,274253 +111728,111728 +114544,114544 +383461,383461 +34256,34256 +20427,20427 +420486,420486 +56687,56687 +61654,61654 +424294,424294 +402783,402783 +64374,64374 +320013,320013 +345395,345395 +25005,25005 +140838,140838 +226346,226346 +98391,98391 +398941,398941 +303869,144665 +25966,25966 +216714,216714 +70349,70349 +253120,253120 +104442,104442 +151205,151205 +94892,94892 +190642,190642 +192524,192524 +358947,358947 +20068,20068 +420708,420708 +30632,30632 +32741,32741 +433620,433620 +347684,347684 +14792,14792 +261380,261380 +206916,206916 +402495,402495 +361981,361981 +252010,252010 +86345,86345 +304199,304199 +402525,402525 +358191,358191 +263190,263190 +3134,3134 +362775,362775 +286283,286283 +199874,199874 +127427,127427 +67846,67846 +158983,158983 +364362,364362 +357409,357409 +87822,87822 +373297,373297 +31882,31882 +68856,68856 +434822,434822 +103921,103921 +66885,66885 +55662,55662 +25698,25698 +431295,431295 +58049,58049 +34962,34962 +194077,194077 +151492,151492 +403297,403297 +69938,69938 +416957,416957 +4575,4575 +214397,214397 +249349,249349 +358108,358108 +430962,430962 +129803,129803 +424264,424264 +366043,366043 +97657,97657 +62058,62058 +401155,401155 +9972,9972 +24428,24428 +409859,409859 +430495,430495 +315390,315390 +155844,155844 +195783,195783 +421007,421007 +123775,123775 +51588,51588 +281143,281143 +108735,108735 +23041,23041 +349496,349496 +164096,164096 +268450,268450 +42511,42511 +391212,391212 +348106,348106 +231128,231128 +15387,15387 +428272,428272 +384177,384177 +178826,2472 +110130,110130 +158684,158684 +145799,145799 +358665,358665 +126668,126668 +406875,406875 +270866,270866 +424360,424360 +322166,322166 +19296,19296 +331890,331890 +109730,109730 +35446,35446 +333781,333781 +178043,178043 +134627,134627 +302666,302666 +41927,41927 +24513,24513 +337401,337401 +311509,311509 +328125,328125 +137189,137189 +409842,409842 +267534,267534 +38979,38979 +208883,208883 +127382,127382 +69788,69788 +92012,92012 +139068,139068 +131292,131292 +22458,22458 +68889,68889 +337102,337102 +67875,67875 +349670,349670 +410444,410444 +33240,33240 +37471,37471 +174668,174668 +161747,161747 +301881,301881 +270926,270926 +431400,18765 +380368,380368 +367831,367831 +267969,267969 +384174,384174 +322366,322366 +347183,347183 +60706,60706 +405366,292732 +31965,31965 +65956,65956 +387604,387604 +89229,89229 +227442,227442 +324134,324134 +41473,41473 +33895,33895 +95951,95951 +65864,65864 +348323,348323 +27087,27087 +433114,323873 +106472,106472 +403622,403622 +417749,417749 +14624,14624 +363640,363640 +173662,173662 +429992,69844 +243217,243217 +339992,339992 +138544,138544 +156035,156035 +44991,44991 +172605,172605 +229840,229840 +400242,400242 +375863,375863 +421624,421624 +135730,135730 +133253,133253 +382937,382937 +247944,247944 +64650,64650 +327918,327918 +434356,434356 +31811,31811 +429838,429838 +187705,187705 +224452,463 +256773,256773 +163592,163592 +199221,199221 +319423,319423 +129484,129484 +119461,119461 +426136,426136 +423987,423987 +152971,152971 +374763,374763 +35743,35743 +137923,137923 +17304,17304 +32672,32672 +174448,174448 +69299,69299 +30536,30536 +341874,341874 +402615,402615 +287736,203673 +353851,353851 +328725,328725 +341965,341965 +183261,183261 +157298,157298 +307637,307678 +112733,112733 +316518,1421 +231408,231408 +81482,81482 +23588,23588 +115887,115887 +321207,321181 +251418,251418 +340556,340556 +159376,159376 +421366,421366 +65431,65431 +149399,149399 +397002,397002 +365484,365484 +41406,41406 +399784,399784 +129697,129697 +299058,299058 +122678,122678 +135985,135985 +276857,276857 +85074,85074 +43329,43329 +70345,70345 +406674,406674 +93435,93435 +278266,278266 +220586,220586 +131156,131156 +6058,6058 +125829,125829 +430419,430419 +43460,43460 +146436,146436 +410347,410347 +240972,240972 +355383,355383 +287445,287445 +187596,187596 +209353,209353 +115114,115114 +172554,172554 +406507,406507 +27947,27947 +111715,111715 +63402,63402 +335868,335868 +393839,393839 +160449,160449 +432264,432264 +25855,25855 +137246,137246 +397435,397435 +428419,428419 +63545,63545 +114935,114935 +435066,435066 +138255,138255 +406872,406872 +341957,341957 +374690,374690 +407587,407587 +417891,417891 +40379,40379 +122532,122532 +28799,28799 +259473,259473 +419964,419964 +361902,361902 +341776,341776 +84884,84884 +336182,336182 +112892,112892 +195041,195041 +340376,340376 +21907,21907 +344344,344344 +190482,190482 +30358,30358 +413468,413468 +341182,341182 +34269,34269 +422664,422664 +300887,300887 +120173,120173 +94427,94427 +169637,169637 +36475,36475 +119445,119445 +356783,356783 +97928,97928 +353809,353809 +232404,232404 +64010,64010 +405387,405387 +158048,158048 +365474,365474 +268261,268261 +101787,101787 +325542,325542 +403259,403259 +344063,344063 +30149,30149 +147441,147441 +254396,254396 +414563,414563 +5753,5753 +260916,260916 +218327,218327 +331316,331316 +25650,25650 +315710,315710 +32136,32136 +128808,128808 +143293,143293 +351847,351847 +3952,3952 +130800,130800 +222239,222239 +119661,119661 +40153,40153 +86496,86496 +113407,113407 +401823,401823 +246018,246018 +127105,127105 +20088,20088 +170369,170369 +17908,17908 +102047,102047 +357214,357214 +41059,41059 +257213,127113 +263166,263166 +242094,242094 +383089,383089 +402076,402076 +23473,23473 +358481,358481 +247088,247088 +152967,152967 +183934,183934 +175122,175122 +320743,320743 +355537,355537 +338845,338845 +29570,29570 +33607,33607 +20360,20360 +333689,333689 +366751,366751 +90786,90786 +420365,308565 +86355,86355 +119894,119894 +356961,356961 +14782,14782 +34880,34880 +401660,401660 +6133,6133 +423776,423776 +168837,168837 +40489,40489 +141266,141266 +385578,385578 +139790,139790 +370108,370108 +29804,29804 +297550,297550 +297907,297907 +28863,28863 +144796,144796 +305434,305434 +181081,181081 +25655,25655 +150786,150786 +402746,402746 +262368,262368 +48174,48174 +383965,383965 +271076,271076 +429612,429612 +205816,205816 +401007,401007 +370549,370549 +108524,108524 +260839,260839 +267911,267911 +212349,212349 +21043,21043 +35681,35681 +333447,333447 +158579,158898 +380365,380365 +126971,126971 +42856,42856 +143302,143302 +329537,252063 +378523,378523 +119072,119072 +204180,204180 +376613,376613 +73727,73727 +134521,134521 +78097,78097 +296893,296893 +29186,29186 +128459,128459 +302703,302703 +37270,37270 +164143,164143 +98164,98164 +228140,228140 +88110,88110 +131003,131003 +400524,400524 +332962,332962 +368044,368044 +70320,70320 +92531,92531 +229438,229438 +99036,99036 +373995,373995 +319092,127493 +302300,302300 +374796,374796 +32077,32077 +298330,298330 +387719,387719 +147751,147751 +119695,119695 +369675,369675 +58035,58035 +338984,338984 +183202,183202 +429149,429149 +327964,327964 +126911,126911 +336091,336091 +373830,373830 +311112,311112 +420986,420986 +167674,167674 +200079,200079 +92204,92204 +44011,44011 +405611,405611 +319243,319243 +147693,147693 +295236,295236 +20747,20747 +140067,140067 +133075,133075 +334973,334973 +38435,38435 +249104,249104 +342649,342649 +152954,152954 +207075,207075 +372862,372862 +233774,233774 +161410,161410 +251693,251693 +430139,430139 +360129,360129 +58908,58908 +429891,429891 +434301,434301 +32825,32825 +49267,49267 +227565,227565 +99640,99640 +396933,396933 +223941,223941 +69277,69277 +386806,386806 +89160,89160 +22813,22813 +413782,413782 +405181,405181 +433521,69233 +6600,6600 +228969,228969 +186468,186468 +142820,142820 +90130,90130 +192325,192325 +100048,100048 +69793,69793 +270999,270999 +76253,76253 +8789,40131 +10123,10123 +284899,284899 +44654,44654 +360864,360864 +81109,81109 +422318,422318 +137448,137448 +388616,388616 +355088,355088 +85121,85121 +82386,82386 +89284,89284 +257436,257436 +25912,25912 +101019,101019 +282520,282520 +433460,433460 +66187,66187 +38085,38085 +240202,240202 +65291,65291 +421311,421311 +272695,272695 +127117,127117 +198421,198421 +423294,423294 +377437,377437 +154017,154017 +108475,108475 +405783,405783 +122148,122148 +242077,242077 +61702,61702 +38753,38753 +301625,301625 +353707,353707 +404178,404178 +227504,227504 +58295,58295 +424905,424905 +234491,234491 +32321,32321 +38078,38078 +321398,321398 +129740,129740 +331944,331944 +251309,251309 +365460,365460 +322439,322439 +296232,296232 +47235,47235 +19770,19770 +114021,114021 +156115,156115 +363548,363548 +34192,34192 +387648,387648 +340340,340340 +433433,433433 +24434,24434 +283780,283780 +403446,403446 +420544,463 +408645,408645 +94008,94008 +355095,355095 +20493,20493 +29572,29572 +37283,37283 +228443,228443 +18079,18079 +378837,378837 +121889,121889 +6178,6178 +17478,17478 +71971,71971 +110345,110345 +354833,354833 +434664,434664 +355469,355469 +182262,182262 +430927,430927 +37082,37082 +149162,149162 +328386,328386 +216355,216355 +279976,279976 +159768,159768 +123405,123405 +95943,95943 +213870,213870 +229237,229237 +434906,434906 +125541,125541 +428423,428423 +181840,181840 +41755,41755 +39378,39378 +393164,393164 +39224,39224 +95129,95129 +23718,23718 +339268,339268 +187612,187612 +271619,271619 +389301,389301 +204780,204780 +20355,20355 +229673,229673 +350993,350993 +166374,166374 +303888,303888 +53638,53638 +367169,367169 +381320,381320 +109882,109882 +433103,433103 +426725,426725 +5124,5124 +149439,149439 +35151,35151 +400070,400070 +212767,212767 +358010,358010 +35185,35185 +332364,332364 +318937,319043 +33422,33422 +156260,156260 +118296,118296 +287435,287435 +29643,29643 +306995,306995 +30251,30251 +298363,298363 +65671,65671 +427647,427647 +158567,158567 +419600,419600 +258633,258633 +302987,302987 +397417,397417 +408610,408610 +302743,302743 +117518,117518 +116347,116347 +396898,396898 +107978,107978 +27393,27393 +40030,40030 +38109,38109 +170147,170147 +33452,33452 +41438,41438 +332261,332261 +21502,21502 +52654,52654 +408276,408276 +372957,372957 +58701,58701 +285303,285303 +158217,158217 +257946,257946 +433232,393963 +36688,36688 +62086,62086 +274161,274161 +111421,111421 +311380,311380 +341858,341858 +429506,429506 +433228,433228 +11490,11490 +110403,110403 +182418,182418 +159629,159629 +260315,260315 +179900,179900 +66320,66320 +176861,176861 +410516,410516 +205814,205814 +336455,336455 +87341,87341 +127948,127948 +23860,23860 +402964,402964 +361919,361919 +209031,209031 +413968,373657 +101623,101623 +152701,152701 +141938,223671 +338168,338168 +234246,234246 +27866,27866 +284970,284970 +37524,37524 +21903,21903 +207561,207561 +377438,377438 +29157,29157 +378559,378559 +420182,420182 +249526,249526 +28305,28305 +433743,433743 +129055,129055 +353785,353785 +400055,400055 +132902,132902 +167291,167291 +193662,193662 +93653,93653 +402520,402520 +32718,32718 +194739,194739 +65427,65427 +33101,33101 +428947,428947 +27477,27477 +65964,65964 +28448,28448 +45453,45453 +182299,182299 +68634,68634 +36277,36277 +185753,6251 +107453,107453 +209957,209957 +321832,321832 +176367,176367 +26830,26830 +111521,111521 +429388,429388 +366459,58329 +219665,219665 +12220,12220 +209424,209424 +240561,240561 +27733,27733 +28569,28569 +147213,147213 +32454,32454 +17928,17928 +178529,178529 +383374,383374 +225845,225845 +303864,144665 +416834,416834 +43563,43563 +328761,328292 +19704,19704 +401801,401801 +384147,384147 +24655,24655 +184762,184762 +406867,406867 +63768,63768 +147881,147881 +98868,98868 +359615,359615 +13419,13419 +130599,130599 +417732,417732 +362206,362206 +266363,266363 +373295,373295 +14005,14005 +37757,37757 +274521,274521 +360334,360334 +401508,401394 +158659,158659 +66322,66322 +39438,39438 +113562,113562 +14292,14292 +230370,230370 +364696,364696 +174627,174627 +137369,137369 +184878,184878 +29759,29759 +12474,12474 +41215,41215 +57800,57800 +32815,32815 +408221,408221 +382219,382219 +217512,217512 +208816,208816 +169517,169517 +402423,402423 +243635,243635 +366186,366186 +123737,123737 +221448,221448 +16916,16916 +416772,341788 +127397,127397 +133136,133136 +326037,326037 +237209,237209 +293923,293923 +110539,110539 +407986,407986 +235412,235412 +28918,28918 +139800,139800 +70809,70809 +40937,181957 +59269,59269 +353642,353642 +394174,394174 +178525,178525 +144966,144966 +192513,192513 +161144,161144 +123080,123080 +228176,228176 +283866,283866 +386337,386337 +150922,150922 +303909,303909 +13120,13120 +63597,63597 +128547,128547 +352241,352241 +30465,30465 +188365,188365 +193731,193731 +42439,42439 +136150,136150 +285188,285188 +15366,15366 +58135,58135 +66052,66052 +291225,291225 +31903,31903 +360251,360251 +35239,35239 +101658,101658 +58709,58709 +51612,51612 +101113,101113 +204475,204475 +405379,405379 +269820,269820 +23326,23326 +349553,349553 +204318,204318 +341157,341157 +16221,16221 +124634,124634 +110307,110307 +20353,20353 +303808,303808 +333829,333829 +10205,10205 +23458,23458 +217238,217238 +412442,412442 +244178,244178 +201020,201020 +108734,108734 +134175,134175 +150526,150526 +337926,337926 +78549,78549 +307184,307184 +238403,238403 +309253,309253 +237855,237855 +299031,299031 +37565,37565 +393972,428501 +115638,115638 +125855,125855 +416253,416253 +32634,32634 +33033,33033 +273447,273447 +38088,38088 +113611,113611 +29555,29555 +57829,57829 +197501,197501 +64148,64148 +129502,129502 +197569,197569 +65527,65527 +161772,161772 +184079,184079 +429042,429042 +160039,160039 +40939,40939 +114036,114036 +145702,145702 +118146,118146 +169351,169351 +335362,335362 +401215,401215 +189683,189683 +16560,16560 +81039,81039 +24425,24425 +116170,116170 +21316,21316 +100378,100378 +310311,310311 +427796,427796 +153110,153110 +359815,359815 +78458,78458 +152480,152480 +342184,342184 +63904,63904 +310792,383738 +24582,24582 +382546,382546 +425940,425940 +189385,189385 +401697,401697 +338008,338008 +433258,433258 +130819,130819 +400961,400961 +339994,339994 +81909,81909 +43953,43953 +122544,122544 +139564,139564 +90759,90759 +43325,43325 +24978,24978 +26514,26514 +406926,406926 +328219,328219 +184539,184539 +358955,358955 +378507,378507 +428296,428296 +184298,184298 +297708,297708 +61488,35703 +262248,262248 +118521,118521 +176085,176085 +6455,6455 +192679,192679 +38631,38631 +97577,97577 +372470,372470 +402340,402340 +38128,38128 +90387,90387 +288394,288394 +181159,181159 +429414,429414 +176479,176479 +209236,209236 +132790,132790 +433480,433480 +128956,128956 +307718,307718 +179811,179811 +24032,24032 +425758,370874 +149384,149384 +22564,22408 +422333,422333 +332915,332915 +316605,316605 +173267,173267 +394570,394570 +334974,334974 +43186,43186 +380886,380886 +288667,288667 +125827,125827 +420263,420263 +29682,29682 +321370,321370 +246046,246046 +344693,344693 +126878,126878 +415143,415143 +427138,427138 +3176,3176 +391521,391521 +146885,146885 +340908,340908 +422980,422980 +297141,297141 +18973,18973 +177773,177773 +104803,104803 +346682,346682 +14179,14179 +314050,314050 +421914,421914 +392741,392741 +135041,135041 +32468,32468 +132352,132352 +429913,429913 +39964,39964 +52537,52537 +332866,332866 +141981,141981 +433954,433954 +318494,318494 +137242,137242 +17778,17778 +335377,335377 +346787,346787 +177789,177789 +128301,128301 +111251,111251 +42923,42923 +62983,62983 +42832,42832 +422654,422654 +328531,328531 +29978,29978 +148328,148328 +414290,414290 +61809,61809 +114404,137156 +29108,29108 +361970,361970 +359783,359783 +421986,421986 +357410,357410 +387752,387752 +239166,239166 +118634,118634 +4891,4891 +277397,277397 +259526,259526 +377157,377157 +292383,292383 +411227,411227 +32931,32931 +96887,96887 +119888,119888 +130511,130511 +102254,102254 +410213,410213 +269227,269227 +277050,463 +34431,34431 +32808,32808 +412782,412782 +34422,34422 +69716,69716 +352333,352333 +20923,20923 +18941,18941 +340268,340268 +13819,13819 +421794,421794 +377843,377843 +405199,405199 +42782,42782 +302785,302785 +161322,161322 +20037,20037 +310898,310898 +25965,25965 +378884,378884 +319682,321181 +28978,28978 +19269,3646 +382548,382548 +234279,234279 +72191,72191 +21492,21492 +20665,20665 +175385,175385 +29942,29942 +40931,40931 +417421,417421 +129411,129411 +23444,23444 +71486,71486 +129470,129470 +404040,404040 +379357,379357 +307654,307654 +260525,260525 +46656,158488 +219425,219425 +431625,431625 +186271,186271 +66863,66863 +182111,182111 +34141,34141 +260302,260302 +267176,267176 +113719,113719 +137983,137983 +305265,35187 +177864,177864 +38406,38406 +136478,136478 +127988,127988 +177554,177554 +29852,29852 +367808,367808 +228691,228691 +253870,253870 +425677,425677 +158096,158096 +41312,41312 +407573,407573 +127388,127388 +148574,148574 +29195,29195 +17112,17112 +65933,65933 +19407,19407 +36083,36083 +356540,356540 +101850,101850 +60060,60060 +315393,315393 +353474,267832 +10806,10806 +119366,140 +252156,252156 +39909,39909 +147341,147341 +180775,180775 +198813,198813 +365488,365488 +139674,139674 +145600,145600 +141375,141375 +298467,298467 +300756,300756 +416261,416261 +405289,405289 +33714,33714 +30040,30040 +39050,39050 +416888,416888 +396750,396750 +224423,224423 +84724,84724 +68853,68853 +183877,183877 +433317,433317 +206336,206336 +352401,352401 +163295,163295 +72049,72049 +316372,316372 +412100,412100 +145803,145803 +42798,42798 +265591,265591 +409576,409576 +121916,121916 +351246,351246 +394067,394067 +325937,325937 +303705,303705 +429991,429991 +376960,376960 +426498,426498 +65606,65606 +351654,351654 +289797,289797 +431319,431319 +216781,216781 +294610,294610 +419070,419070 +145741,145741 +388399,388399 +175372,175372 +334001,334001 +306630,463 +148006,148006 +377410,377410 +145903,145903 +39041,39041 +69369,69369 +201143,201143 +123585,123585 +339483,339483 +275692,275692 +430813,430813 +316803,316803 +192381,192381 +279506,279506 +158388,158388 +40099,40099 +32868,25522 +423516,423516 +342249,342249 +324891,324891 +313472,313472 +291212,291212 +24682,24682 +138248,138248 +331994,331994 +20738,20738 +426182,426182 +326166,326166 +147395,147395 +103269,103269 +91367,91367 +18370,18370 +365116,365116 +116476,116476 +37656,37656 +263880,263880 +85134,85134 +219466,219466 +35620,35620 +424741,424741 +429605,429605 +42913,42913 +40612,40612 +378029,378029 +328686,328686 +28140,28140 +189195,189195 +393952,393952 +299903,299903 +149134,149134 +114309,114309 +126046,126046 +148790,148790 +188009,188009 +13984,13984 +110537,110537 +96890,96890 +205850,205850 +126925,126925 +61025,61025 +154149,154149 +429852,429852 +183717,183717 +398056,338653 +62064,62064 +303681,303681 +57798,57798 +426805,410772 +420327,420327 +31250,31250 +390987,390987 +182244,182244 +31203,31203 +415183,415183 +100029,100029 +109543,109543 +412361,412361 +32301,32301 +16477,16477 +428753,428753 +342920,342920 +343498,343498 +34473,34473 +215223,215223 +205655,205655 +390990,390990 +373761,373761 +91986,91986 +411873,411873 +189200,189200 +42461,42461 +371930,371930 +102771,102771 +301181,301181 +328749,328749 +296808,296808 +423928,423928 +37181,37181 +245315,245315 +209449,209449 +24569,24569 +18217,18217 +209632,209632 +286030,286030 +424221,424221 +321210,321210 +184403,184403 +92082,92082 +301163,301163 +143973,143973 +119285,119285 +26691,26691 +361778,361778 +236880,236880 +340267,340267 +44285,44285 +160774,160774 +320086,320086 +410186,410186 +169572,169572 +35796,35796 +420069,420069 +141086,141086 +231515,231515 +371165,371165 +178049,178049 +43452,43452 +172582,172582 +35140,35140 +200457,200457 +372974,372974 +145685,145685 +430415,430415 +16094,16094 +308021,308021 +56947,56947 +251398,251398 +308195,308195 +119026,119026 +223435,223435 +230119,230119 +193798,193798 +242208,242208 +151477,151477 +428297,428297 +23090,23090 +65185,65185 +140423,140423 +10250,10250 +426186,426186 +296461,296461 +29310,29310 +29746,29746 +30846,30846 +428234,428234 +143778,143778 +419338,419338 +293550,293550 +66288,66288 +163344,163344 +75620,75620 +67872,67872 +275039,275039 +159892,159892 +300575,300575 +51619,51619 +374146,374146 +93511,93511 +15382,15382 +31152,31152 +149161,149161 +174483,174483 +424885,424885 +181040,181040 +382479,382479 +413471,413471 +276377,276377 +21034,21034 +166989,166989 +246496,246496 +196570,341563 +342120,342120 +300816,300816 +64501,64501 +432182,432182 +370326,370326 +260142,260142 +308411,308411 +426754,426754 +308996,308996 +127260,127260 +301226,301226 +138245,138245 +10759,10759 +97189,97189 +38018,38018 +413919,413919 +25989,25989 +379443,379443 +408379,408379 +55552,55552 +424263,424263 +182990,182990 +28035,28035 +344292,344292 +78688,78688 +216744,216744 +333187,333187 +138689,138689 +364164,364164 +220445,220445 +261376,261376 +178491,178491 +113254,113254 +323869,323869 +339931,339931 +123358,123358 +270874,270874 +124057,124057 +94720,94720 +402674,402674 +433858,433858 +287977,287977 +143498,143498 +410696,410696 +36536,36536 +432408,359203 +361187,361187 +95764,95764 +35184,35184 +110306,110306 +241685,241685 +50624,50624 +359208,359208 +377994,377994 +30854,30854 +4758,4758 +36956,36956 +32065,32065 +386746,386746 +145280,145280 +25156,25156 +93967,93967 +155243,155243 +430589,430589 +292842,292842 +23358,23358 +11043,11043 +400152,400152 +246813,246813 +180770,180770 +75613,75613 +117152,117152 +397763,397763 +176926,176926 +366991,366991 +149065,149065 +291693,291161 +81405,81405 +15012,15012 +428827,428827 +229546,229545 +338238,338238 +72846,72846 +257208,257208 +9756,9756 +412087,412087 +218411,218411 +43280,43280 +182699,182699 +36262,36262 +364882,364882 +317340,317340 +142522,142522 +26567,26567 +163739,163739 +293592,293592 +33251,33251 +15015,15015 +230555,230555 +419168,419168 +405367,292732 +39703,39703 +54854,54854 +194707,194707 +426968,426968 +336871,336871 +320973,320973 +19489,19489 +301025,301025 +430783,430783 +379632,379632 +93521,93521 +91110,91110 +101136,101136 +68369,68369 +36864,36864 +359789,359789 +292374,292374 +164306,164306 +422168,422168 +431230,431230 +363080,363080 +382233,382233 +29478,29478 +379537,379537 +109611,109611 +43436,43436 +23484,23484 +338646,354203 +66761,66761 +431083,431083 +122639,122639 +327040,327040 +36968,36968 +307196,307196 +333292,333292 +64307,64307 +407814,407814 +278912,278912 +99659,99659 +400551,400551 +58363,58363 +23403,23403 +322029,322029 +29501,29501 +137696,137696 +106542,106542 +354711,354711 +296121,296121 +22148,22148 +344949,344949 +287086,287086 +40029,40029 +417373,417373 +180439,180439 +341231,341231 +367616,367616 +310470,310470 +216840,216840 +422639,422639 +180610,180610 +324715,389269 +32830,32830 +15650,15650 +30219,30219 +52245,52245 +136278,136278 +65529,65529 +146603,146603 +235535,235535 +312621,312621 +311231,311231 +30436,30436 +368215,368215 +29812,29812 +23539,23539 +184972,184972 +75052,75052 +156724,156724 +389555,389555 +282060,282060 +381516,381516 +69370,69370 +394216,394216 +403678,403678 +188627,188627 +186266,186266 +353437,353437 +418722,418722 +276970,276970 +225219,225219 +253631,253631 +212830,212830 +72806,72806 +369875,369875 +416953,416953 +420551,420551 +35992,35992 +108110,108110 +342196,342196 +63106,63106 +126525,126525 +407437,407437 +426567,426567 +32397,32397 +236200,236200 +114066,114066 +259328,259328 +43087,43087 +32807,32807 +434411,434411 +148287,148287 +421933,421933 +431173,431173 +41080,41080 +33408,33408 +405198,405198 +14632,14632 +170539,170539 +214531,214531 +122120,122300 +153001,153001 +320463,320463 +419784,419784 +171794,171794 +163449,163449 +36878,36878 +148587,148587 +109051,109051 +129651,129651 +330629,330629 +426119,426119 +324072,324072 +66481,66481 +179281,179281 +400868,400868 +13545,13545 +338734,338734 +354274,354274 +198695,198695 +99951,99951 +67838,67838 +163271,163271 +414158,414158 +279883,279883 +16062,16062 +337303,337303 +365409,365409 +414072,414072 +326404,326404 +72449,72449 +24620,24620 +184607,184607 +381350,381350 +373617,373617 +355728,355728 +423088,423088 +357320,357320 +29792,29792 +377535,377535 +216334,216334 +293862,293862 +13548,13548 +10585,10585 +402667,402667 +364874,364874 +428824,428824 +309907,309907 +64295,64295 +422338,422338 +105119,105119 +30520,30520 +317428,317428 +27525,27525 +371548,371548 +38611,38611 +41713,41713 +405442,405442 +37080,37080 +199651,199651 +58881,58881 +42625,42625 +273134,273134 +311230,311230 +421272,421272 +38666,38666 +34331,34331 +26153,26153 +430868,430868 +117927,117927 +36309,36309 +32720,32720 +36628,36628 +142831,142831 +67940,67940 +65694,65694 +416653,416653 +405200,405200 +316167,168353 +67840,67840 +69884,69884 +16468,16468 +353716,353716 +116854,116854 +150620,2389 +34540,34540 +329473,329473 +139430,139430 +160009,160009 +346554,346554 +37763,37763 +291806,291806 +36066,36066 +88993,88993 +359752,359752 +109091,109091 +302945,302945 +19510,19510 +406191,406191 +421987,421987 +396920,396920 +42864,42864 +137209,137209 +220978,220978 +10569,10569 +131434,131434 +171797,171797 +22117,22117 +418244,418244 +122680,5464 +43198,43198 +24611,24611 +108923,108923 +427288,427288 +59755,59755 +352040,352040 +114518,114518 +425957,425957 +268546,268546 +403620,403620 +292896,292896 +57757,57757 +22486,22486 +256820,256820 +69118,69118 +428481,428481 +240531,240531 +22663,22663 +285266,285266 +116470,116470 +14106,14106 +346756,346756 +354204,354203 +147535,147535 +39731,39731 +127644,127644 +114022,114022 +65316,65316 +214487,214487 +143537,143537 +198495,198495 +22006,22006 +408522,408522 +387254,387254 +422553,300905 +177978,177978 +57734,57734 +57977,57977 +104969,104969 +161962,161962 +261545,261545 +188590,188590 +129800,129800 +227864,227864 +84879,84879 +348231,348231 +366286,366286 +30502,30502 +157161,157161 +397857,397857 +30085,30085 +218812,218812 +403447,403447 +62742,62742 +186744,186744 +115978,115978 +387531,387531 +144860,144860 +425501,425501 +349828,349828 +113527,113527 +192069,263700 +394567,394567 +357825,357825 +291354,291354 +134646,134646 +428725,72991 +328704,328704 +124036,124036 +55049,55049 +336968,336968 +66718,66718 +176789,176789 +429935,429935 +377904,377904 +421447,421447 +367285,367285 +174395,174395 +122306,122306 +334297,334297 +29588,29588 +29685,29685 +269765,269765 +110353,110353 +68750,68750 +67238,67238 +5787,5787 +66414,66414 +434481,434481 +118635,118635 +65369,65369 +419460,419460 +116336,116336 +337032,337032 +26639,26639 +89652,89652 +365182,365182 +432072,432072 +125108,125108 +304893,304893 +121135,121135 +22817,22817 +131155,131155 +322835,322835 +106146,106146 +329343,329343 +6156,6156 +66191,66191 +34335,34335 +72070,72070 +95223,95223 +8617,8617 +123090,123090 +88493,88493 +37251,37251 +12660,12660 +36295,179795 +302180,302180 +343293,343293 +401388,401388 +307166,307166 +129233,129233 +58643,58643 +334261,334261 +183541,183541 +343728,343728 +350765,350765 +99657,99657 +68434,68434 +433554,433554 +281481,281481 +133589,133589 +315163,99969 +146604,146604 +378612,378612 +357222,357222 +293053,293053 +22975,22975 +124715,124715 +27475,27475 +194546,194546 +302062,302062 +68913,68913 +37421,37421 +391837,391837 +148431,148431 +29528,29528 +33744,33744 +150898,150898 +320241,270167 +320078,320078 +90771,90771 +57179,57179 +433686,433686 +120973,120973 +18385,18385 +42438,42438 +108638,108638 +61653,61653 +379103,379103 +122523,122523 +19951,19951 +16594,16594 +19817,19817 +196255,196255 +18450,18450 +433031,433031 +37480,37480 +177095,177095 +225912,225912 +127710,127710 +39142,39142 +255338,255338 +170623,170623 +338509,338509 +8512,8512 +129352,129352 +423872,423872 +228169,228169 +21796,21796 +40885,40885 +309532,309532 +343008,343008 +149397,149397 +40353,40353 +429446,429446 +262406,262406 +302585,302585 +159491,159491 +419412,419412 +344928,344928 +255520,255520 +146225,146225 +147553,147553 +248932,248932 +78681,78681 +221084,221084 +23639,23639 +15917,15917 +429858,429858 +375500,375500 +369487,369487 +292641,292641 +36266,36266 +377953,377953 +51629,51629 +68662,68662 +430859,430859 +432869,432869 +98591,98591 +4544,4544 +54691,54691 +403301,403301 +317138,317138 +58838,58838 +161318,161318 +386338,386338 +14741,14741 +217608,179488 +130756,130756 +307256,307256 +31406,31406 +145768,145768 +275782,275782 +376492,376492 +326734,326734 +12993,12993 +11183,11183 +65862,65862 +182041,182041 +17413,17413 +139942,139942 +243632,243632 +126872,126872 +32229,32229 +378544,378544 +423829,423829 +217541,217541 +298637,298637 +404272,404272 +432602,432602 +34845,34845 +55702,55702 +187311,187311 +17677,36291 +432137,432137 +63090,63090 +338735,338735 +82434,82434 +45324,45324 +37403,37403 +372998,372998 +427259,427259 +160483,160483 +161218,161218 +28282,28282 +43301,43301 +308764,308764 +141555,141555 +380755,380755 +203809,203809 +28192,28192 +238191,238191 +136264,136264 +63215,63215 +22369,22369 +19882,19882 +383976,383976 +136951,136951 +99118,99118 +21016,21016 +27366,27366 +62756,62756 +5268,5268 +326316,326316 +338831,338831 +43815,43815 +134926,134926 +91192,91192 +347224,347224 +405435,405435 +46626,46626 +401608,401608 +39785,39785 +125054,125054 +104172,104172 +344449,344449 +30194,30194 +10173,10173 +32979,32979 +220993,220993 +51308,51308 +63735,63735 +17175,17175 +161129,161129 +180923,180923 +180931,180931 +361901,356359 +425529,425529 +157667,301207 +34661,34661 +128951,128951 +233215,233215 +342664,342664 +244310,244310 +109999,109999 +287251,287251 +359166,359166 +180039,180039 +230217,230217 +32715,32715 +63419,63419 +10628,10628 +129521,129521 +406357,406357 +88506,88506 +329676,329676 +425531,425531 +398927,398927 +127201,127201 +338728,338728 +433432,433432 +36982,36982 +424488,424488 +196742,34113 +61321,61321 +66883,66883 +137688,137693 +405983,405983 +127166,127166 +67760,67760 +426507,426507 +67816,67816 +117901,117901 +431044,431044 +66323,66323 +293627,293627 +31987,31987 +41264,41264 +192700,192700 +431018,204836 +152698,152698 +37424,37424 +292081,292081 +29159,29159 +402301,402301 +278915,278915 +222545,222545 +138563,138563 +133547,133547 +180130,180130 +283030,283030 +345009,345009 +339689,339689 +217205,217205 +339858,339858 +161746,161746 +402540,402540 +194195,194195 +326658,276616 +315441,315441 +268671,268671 +415503,415503 +274070,274070 +73420,73420 +173158,173158 +100873,100873 +24433,24433 +90777,90777 +65057,65057 +13820,13820 +40527,40527 +103681,103681 +383017,383017 +13422,13422 +30087,30087 +323603,323603 +119724,119724 +340549,340549 +190485,190485 +307167,11441 +168362,168362 +67121,67121 +432498,432498 +368387,368387 +28320,28320 +184078,184078 +152849,152849 +154656,154656 +109696,109696 +124866,124866 +64310,64310 +308772,308772 +36428,100378 +420290,420290 +396757,396757 +61613,61613 +412005,412005 +249570,249570 +424397,424397 +135434,135434 +31131,31131 +40363,40363 +37022,37022 +426488,426488 +37449,37449 +19928,19928 +427114,427114 +340599,340599 +255688,255688 +119663,119663 +427283,427283 +381928,381928 +287043,287043 +252522,252522 +356310,356310 +183226,183226 +431566,431566 +425673,180491 +36186,36186 +19207,19207 +401986,401986 +244284,244284 +378560,378560 +425812,425812 +30451,30451 +284879,284879 +36016,36016 +28358,28358 +159451,159451 +424608,424608 +425285,425285 +433752,433752 +247757,247757 +32939,32939 +65569,65569 +319475,319475 +144049,144049 +263943,263943 +379450,379450 +46956,46956 +299851,299851 +42959,42959 +163491,163491 +21285,21285 +372606,372606 +433091,433091 +207623,207623 +12388,12388 +377458,377458 +192523,192523 +33417,33417 +31415,31415 +15919,15919 +137541,137541 +151048,151048 +27196,27196 +243620,243620 +68847,68847 +109087,109087 +425565,425565 +358584,358584 +191603,191603 +290969,290969 +342637,342637 +411363,405460 +135188,135188 +369187,369187 +58050,58050 +101684,101684 +38022,38022 +28300,28300 +110683,110683 +145044,145044 +62313,62313 +297377,297377 +98373,98373 +167664,167664 +373188,373188 +58834,58834 +380713,380713 +17324,17324 +321638,321638 +118504,118504 +408378,408378 +149561,149561 +180748,180748 +31444,31444 +89411,89411 +16912,16912 +37542,37542 +110351,110351 +87928,87928 +290978,290978 +256619,256619 +13631,13631 +405394,405394 +131166,131166 +91254,91254 +401013,335204 +381665,381665 +242634,242634 +41613,41613 +69115,69115 +122269,122269 +88776,88776 +187637,187637 +127663,127663 +305107,305107 +36394,36394 +420299,420299 +39136,39136 +169546,169546 +386978,386978 +430991,430991 +183900,183900 +97650,97650 +207432,207432 +129168,129168 +405453,405453 +328682,328682 +178870,178870 +135216,135216 +248462,248462 +156895,156895 +40855,40855 +317215,317215 +18260,18260 +241570,241570 +417269,417269 +324886,324886 +338693,338693 +241192,241192 +309345,309345 +139642,139642 +82069,82069 +30350,30350 +13234,13234 +307111,307111 +24659,24659 +33534,33534 +414069,414069 +138048,138048 +27231,27231 +382583,382583 +313351,313351 +27906,27906 +415756,415756 +277227,277227 +167397,167397 +422325,422325 +155060,155060 +34365,34365 +300723,300723 +13583,13583 +32230,32230 +427064,427064 +247575,247575 +369532,369532 +123663,123663 +58328,58328 +36062,36062 +211923,211923 +42854,42854 +284050,284050 +31163,31163 +316509,1421 +167272,167272 +197093,197093 +144462,144462 +39930,39930 +109702,109702 +414947,414947 +37447,37447 +415030,415030 +424116,424116 +426433,426433 +179728,179728 +435089,435089 +316711,316711 +304028,304028 +434355,434355 +265308,265308 +242765,242765 +147408,147408 +32553,32553 +221273,221273 +144518,144518 +72065,72065 +111723,111723 +161414,161414 +228892,228892 +283480,283480 +431858,431858 +432585,432585 +31345,31345 +431024,431024 +391210,391210 +288872,288872 +191367,191367 +174669,174669 +282512,282512 +430429,295251 +126020,126020 +191587,148209 +339944,339944 +394963,394963 +387362,387362 +143091,143091 +226459,226459 +61723,61723 +224727,224727 +158850,63268 +351039,7378 +161969,161969 +227941,227941 +393114,393114 +40620,40620 +413394,413394 +202179,202179 +123145,123145 +430256,430256 +119313,119313 +420233,420233 +158530,158530 +255046,255046 +33931,33931 +249319,249319 +409591,409591 +285531,285531 +32957,32957 +420803,420803 +130074,130074 +148002,148002 +100380,100380 +15246,15246 +29004,29004 +419756,419756 +112821,112821 +286277,286276 +19286,19286 +43197,43197 +213779,213779 +37385,37385 +320076,320076 +262435,262435 +151345,151345 +87635,87635 +203040,203040 +364365,364365 +160020,160020 +17417,17417 +26170,26170 +295616,295616 +121432,121432 +345085,463 +16423,16423 +175132,175132 +427319,173337 +407463,407463 +347832,347832 +43059,43059 +357994,357994 +11816,11816 +31901,31901 +231066,234010 +4826,4826 +392847,392847 +200172,200172 +26782,26782 +265642,265642 +430797,430797 +64373,64373 +344660,344660 +434546,700 +29458,29458 +157583,157583 +14147,14147 +423293,423293 +87308,87308 +430551,430551 +426949,335204 +380905,284617 +33403,33403 +63099,63099 +29161,29161 +307906,307906 +410437,834 +134201,134201 +168089,168089 +349482,349482 +159656,159656 +26485,26485 +143305,143305 +313434,313434 +73503,73503 +113176,113176 +28132,28132 +386645,386645 +152311,152311 +24063,24063 +180773,180773 +265266,265266 +56554,56554 +274057,274057 +352505,352505 +20127,20127 +99277,99277 +402784,402784 +257627,257627 +151267,151267 +28535,28535 +39633,39633 +140774,140774 +151116,151116 +373237,373237 +323500,323500 +383141,383141 +25062,25062 +428723,428723 +129129,129129 +396563,396563 +172533,172533 +198667,198667 +26251,26251 +414687,414687 +88095,88095 +325827,325827 +24445,24445 +144164,144164 +31738,31738 +343989,343989 +263701,263701 +23141,23141 +329057,329057 +32735,32735 +322114,322114 +86752,86752 +234224,234224 +424370,424370 +68902,68902 +28825,28825 +253960,253960 +321471,321471 +56048,56048 +42780,42780 +425468,425468 +28640,28640 +352446,352446 +293260,293260 +42870,42870 +411755,411755 +154783,154783 +194709,194709 +422456,422456 +133340,133340 +418594,418594 +403663,403663 +121216,121216 +69125,69125 +340597,340597 +147756,13360 +221101,221101 +119303,119303 +188618,188618 +12353,12353 +323316,323316 +425558,425558 +35811,35811 +271292,271292 +363428,363428 +149575,149575 +251135,251135 +338001,338001 +180111,180111 +262037,262037 +216138,216138 +261337,261337 +17598,17598 +11593,11593 +163595,163595 +384077,384077 +367025,367025 +332006,332006 +5950,5950 +38572,38572 +354550,354550 +116201,116201 +334785,334785 +21545,21545 +434400,434400 +31320,31320 +337597,337597 +295040,295040 +386864,364107 +424180,424180 +19185,19234 +283420,283420 +260911,260911 +256368,256368 +434096,434096 +256508,256508 +32490,32490 +122543,122543 +120997,120997 +146589,146589 +37569,37569 +21171,21171 +401494,401494 +403728,403728 +327746,336962 +41504,41504 +298517,298517 +40134,40134 +24223,24223 +393931,393931 +42128,42128 +352809,352809 +122642,122642 +421369,421104 +307530,194975 +71796,71796 +157316,157316 +120090,120090 +192357,192357 +403295,403295 +402455,402455 +181420,181420 +123153,123153 +257842,257842 +128411,128411 +11369,11369 +93200,93200 +184898,184898 +33084,33084 +289556,289556 +28166,28166 +338124,177354 +299226,299226 +25670,25670 +236574,236574 +169756,169756 +42603,42603 +39732,39732 +35132,35132 +368214,368214 +35981,35981 +353303,353303 +361079,361079 +20223,20223 +262271,262271 +413527,413527 +420131,420131 +28336,28336 +372931,372931 +201422,201422 +394080,394080 +388059,388059 +183205,183205 +19746,19746 +16097,16097 +177713,177713 +368629,258544 +360619,360619 +134435,134435 +354849,354849 +299315,299315 +324743,324743 +343153,343153 +342652,342652 +428263,428263 +212144,212144 +24391,24391 +138534,138534 +427742,427742 +431637,431637 +90896,90896 +431239,431239 +231990,231990 +63044,63044 +309893,309893 +401184,401184 +427567,427567 +16519,16519 +64301,64301 +27226,27226 +26071,26071 +117727,117727 +270069,270069 +427099,427099 +301021,301021 +21495,21495 +29160,29160 +303135,303135 +128470,128470 +60266,60266 +421116,421116 +26095,26095 +74715,74715 +30353,30353 +46655,46655 +71570,71570 +321892,321892 +92583,92583 +31220,31220 +123440,123440 +399729,399729 +408618,408618 +106977,106977 +143675,143675 +31165,31165 +224721,224721 +255059,255059 +369886,369886 +22880,22880 +332079,332079 +180371,180371 +398060,398060 +170409,170409 +292424,292424 +100433,100433 +107439,107439 +56031,56031 +152683,152683 +232690,232690 +159957,159957 +139002,139002 +372515,372515 +227617,227617 +410695,410695 +184058,184058 +103971,103971 +299540,299540 +329650,329650 +328274,328274 +30127,30127 +412117,412117 +109545,109545 +404910,404910 +18753,18753 +371853,371853 +20254,20254 +6427,6427 +62539,62539 +378703,16085 +194928,194928 +226062,226062 +430815,430815 +434178,434178 +381116,381116 +39081,39081 +430376,430376 +359887,359887 +27076,27076 +339881,339881 +107744,107744 +33660,33660 +73280,73280 +32811,32811 +229567,229567 +211704,25729 +236261,236261 +116208,116208 +303717,303717 +36131,36131 +124345,124345 +320083,320083 +64758,64758 +145704,145704 +10859,10859 +30345,30345 +37662,37662 +402961,402961 +349784,349784 +255721,255721 +354832,354832 +229563,229567 +368025,368025 +426360,426360 +34703,34703 +430743,430743 +260229,260229 +163251,163251 +311274,311274 +429330,429330 +418543,418543 +387527,387527 +338563,338563 +194993,194993 +30410,30410 +10746,10746 +300594,300594 +190206,190206 +343717,343717 +59815,59815 +132614,132614 +36474,36474 +89211,89211 +310468,310468 +341345,341345 +404489,404489 +40409,40409 +225892,225892 +21169,21169 +381960,381960 +341667,341667 +181039,181039 +111984,111984 +108368,108368 +97206,97206 +198533,198533 +386299,386299 +409044,409044 +66287,66287 +116095,116095 +373135,373135 +427433,427433 +401157,401157 +30313,30313 +403688,403688 +368781,368781 +349887,349887 +252331,252331 +255574,255574 +320816,320816 +38592,38592 +115768,115768 +324907,324907 +408222,408222 +423413,423413 +121920,121920 +377375,377375 +128876,128876 +378606,378606 +42114,42114 +343301,343301 +360321,360321 +143949,143949 +97205,97205 +307073,307073 +342289,342289 +140177,140177 +299507,299507 +235411,235411 +99513,99513 +103757,103757 +37106,37106 +78542,78542 +332838,332838 +144810,144810 +142749,142749 +393643,393643 +108281,108281 +402186,402186 +334360,334360 +132564,132564 +327479,327479 +326788,326788 +153367,153367 +24532,24532 +26099,26099 +272059,272059 +127617,127617 +26571,26571 +362823,362823 +147254,147254 +15205,15205 +176618,176618 +109261,109261 +266850,266850 +62773,62773 +147854,147854 +346433,346433 +431446,431446 +40501,40501 +217807,217807 +379107,379107 +25815,25815 +23856,23856 +19692,19692 +367177,367177 +224313,224313 +402559,402559 +153974,153974 +39429,39429 +411898,411898 +11244,11244 +26737,26737 +303150,303150 +387760,387760 +408077,408077 +122041,122041 +9448,9448 +185235,185235 +349031,349031 +16652,16652 +113709,113709 +30822,30822 +16819,16819 +65897,65897 +61712,61712 +268884,268884 +315183,315183 +240502,240502 +380786,380786 +217202,217202 +112669,112669 +270268,270268 +182669,182669 +29036,29036 +11591,11591 +121044,121044 +425002,425002 +27606,27606 +30071,30071 +23047,23047 +42502,42502 +335963,335963 +156244,156244 +361407,361407 +56735,56735 +147922,147922 +34986,34986 +307395,307395 +149719,149719 +135130,135130 +124408,124408 +413655,413655 +201683,201683 +433815,433815 +347785,347785 +15986,15986 +34312,34312 +21600,21600 +176983,176983 +320075,320075 +278877,278877 +387615,387615 +66268,66268 +24580,24580 +149160,149160 +177677,177677 +295044,295044 +175290,175290 +127643,127643 +23180,23180 +390996,390996 +129446,129446 +14922,14922 +92749,92749 +336132,336132 +286869,286869 +23622,23622 +368892,368892 +57112,57112 +290507,290508 +210158,210158 +51908,51908 +116573,116573 +119098,119098 +393953,393953 +430611,430611 +334211,334211 +22131,22131 +272852,272852 +111188,111188 +148472,148472 +26892,26892 +66413,66413 +309147,309147 +30141,30141 +419029,419029 +19402,19402 +137990,137990 +4824,4824 +324183,102029 +389045,389045 +36316,36316 +298243,298243 +324044,324044 +34857,34857 +341849,341849 +30480,30480 +16639,16639 +96004,96004 +253935,253935 +338731,248702 +87473,87473 +20398,20398 +66876,66876 +334235,334235 +10176,10176 +33384,33384 +6973,6973 +146183,146183 +39368,39368 +179224,179224 +230675,230675 +300869,300869 +317281,26475 +273912,273912 +244151,244151 +431185,431185 +30235,30235 +325541,325541 +361175,361175 +427185,427185 +21006,21006 +419255,419255 +177144,177144 +12656,12656 +304685,304685 +63036,63036 +433104,433104 +327289,327289 +285290,285290 +19823,19823 +347907,347907 +29403,29403 +299656,299656 +66776,66776 +85607,85607 +422064,422064 +37138,37138 +157743,157743 +352341,352341 +31241,31241 +69967,69967 +71568,71568 +331010,331010 +427272,427272 +27885,27885 +64193,64193 +433102,433102 +339856,339856 +197838,197838 +127157,127157 +137216,137216 +240097,240097 +333501,333501 +93835,93835 +26072,26072 +340956,340956 +368064,368064 +424851,424851 +151379,151379 +151961,151961 +287551,287551 +419745,419745 +301622,301622 +197903,197903 +294211,294211 +381208,381208 +365031,365031 +123394,123394 +14596,14596 +432015,432015 +60700,60700 +347554,347554 +218990,218990 +355734,355734 +220476,220476 +300530,300530 +116572,116572 +346563,346563 +67997,67997 +144379,144379 +156586,156586 +429328,429328 +426166,158397 +301247,301247 +189118,189118 +177204,177204 +36691,36691 +162853,162853 +421270,421270 +72958,72958 +35456,35456 +15789,15789 +58576,58576 +228072,228072 +305100,305100 +29956,33609 +31183,31183 +294070,294070 +38603,38603 +326606,326606 +68356,68356 +289754,289754 +303121,303121 +425421,425421 +253721,253721 +30242,30242 +37434,37434 +38807,38807 +190684,190684 +7061,7061 +364288,364288 +298588,298588 +263040,263040 +17921,17921 +126676,126676 +92183,92183 +47119,47119 +66775,66775 +67136,67136 +96495,96495 +101646,101646 +340007,340007 +333650,333650 +371116,371116 +72986,72986 +195209,195209 +374186,374186 +418437,418437 +430145,430145 +147048,147048 +178867,178867 +372985,372985 +177334,177334 +319283,319283 +84823,84823 +298418,298418 +30460,30460 +235649,235649 +13472,13472 +416635,416635 +347773,347773 +197727,197727 +33728,33728 +26662,26662 +32175,32175 +38443,38443 +391727,391727 +113550,113550 +428267,428267 +24950,24950 +32197,32197 +129275,129275 +341821,341821 +318507,318507 +415253,415253 +66185,66185 +410703,410703 +47471,47471 +37817,37817 +42928,42928 +17546,17546 +333510,333510 +11107,11107 +22556,22556 +114471,114471 +268704,268704 +86904,86904 +169004,169004 +149888,149888 +54913,54913 +406029,406029 +354466,354466 +266032,266032 +221423,221423 +258129,258129 +424128,424128 +426977,426977 +154777,154777 +370088,370088 +417699,417699 +272643,272643 +168894,168894 +221630,221630 +51132,51132 +18917,18917 +159607,159607 +162832,162832 +201636,201636 +420795,420795 +177970,177970 +125031,125031 +39436,39436 +432039,432039 +164083,164083 +109273,109273 +239377,239377 +422521,422521 +139349,139349 +279574,279574 +12668,12668 +182007,182007 +176991,176991 +155932,155932 +408382,408382 +110729,110729 +17937,17937 +134202,134202 +64296,64296 +289739,289739 +434820,434820 +139240,139240 +329950,329949 +152580,152580 +340749,300905 +30735,30735 +188600,188600 +182384,182384 +311312,311312 +55240,55240 +426602,426602 +130478,130478 +190844,190844 +181035,181035 +36695,36695 +434099,434099 +55062,55062 +24638,24638 +65745,65745 +41412,41412 +432964,432964 +269514,269514 +321594,321594 +65801,65801 +127739,127739 +213548,213548 +151789,151789 +222850,222850 +272069,272069 +378317,378317 +379913,3966 +367029,367029 +389118,389118 +398648,398648 +127384,127384 +322327,322327 +336261,336261 +144293,144293 +208353,208353 +113248,113248 +52477,52477 +359782,359782 +377803,377803 +420383,420383 +35748,35748 +382746,339341 +261240,261240 +375397,375397 +139194,139194 +144543,144543 +12551,12551 +378572,27496 +391081,391081 +433362,433362 +268194,268194 +375194,375194 +417658,417658 +254463,254463 +286613,286613 +413506,413506 +178282,178282 +147875,147875 +246038,246038 +27220,27220 +88841,88841 +159423,159423 +129111,129111 +374600,374600 +372198,372198 +127804,127804 +296645,296645 +62968,62968 +63412,63412 +293815,293815 +14460,14460 +29137,29137 +229485,229545 +117683,117683 +294849,294849 +421714,421714 +18191,18191 +23219,23219 +131672,131672 +192444,192444 +174206,174206 +298514,298514 +170365,170365 +110435,110435 +211811,211811 +240549,240549 +70406,70406 +409515,409515 +294445,294445 +33704,33704 +95138,58907 +336994,336994 +16045,16045 +374998,374998 +403689,403689 +174039,174039 +128841,128841 +274561,274561 +26508,26508 +327092,327092 +210253,210253 +346866,346866 +322866,322866 +154679,154679 +207625,141876 +38186,38186 +18929,18929 +62925,62925 +305481,305481 +403298,403298 +65315,65315 +304207,302393 +83319,83319 +153806,153806 +323571,323571 +26887,26887 +36813,36813 +406469,406469 +111425,111425 +42366,42366 +377655,377655 +380409,380409 +21884,21884 +299785,299785 +62891,62891 +32511,32511 +53164,53164 +418603,418603 +385421,385421 +69568,69568 +196719,196719 +318196,318196 +28893,28893 +329215,302302 +210711,210711 +23021,23021 +15719,15719 +377777,377777 +118464,118464 +62778,62778 +28520,28520 +15926,15926 +264387,264387 +378880,378880 +320161,320161 +31150,31150 +61257,61257 +11493,11493 +396705,396705 +308758,308758 +288026,288026 +407290,463 +186688,187360 +398377,398377 +176639,176639 +432199,432199 +102161,102161 +310958,310958 +365317,365317 +174750,174750 +415019,415019 +19217,19217 +393954,393954 +40158,40158 +121815,121815 +214944,214944 +293498,293498 +48194,48194 +244628,244628 +41744,41744 +365110,365110 +182024,182024 +313012,313012 +21725,21725 +164492,164492 +46371,46371 +40014,40014 +338612,338612 +356715,356715 +109374,109374 +373786,373786 +360008,360008 +301613,301613 +41096,41096 +235785,235785 +281145,281145 +38809,38809 +136934,136934 +20349,20349 +432293,432293 +179508,179508 +153842,153842 +12208,12208 +32611,32611 +255334,255334 +401233,401233 +25514,25514 +413489,413489 +58077,58077 +366501,366501 +109188,109188 +32228,32228 +30696,30696 +337099,337099 +40194,40194 +420969,420969 +292666,292666 +153752,153752 +36991,36991 +146691,146691 +142789,142789 +162681,162681 +112610,112610 +228186,228186 +175368,175368 +198410,198410 +325898,325898 +324962,324962 +36931,36931 +352983,352983 +243683,243683 +351633,351633 +53147,53147 +388812,388812 +151954,151954 +209599,209599 +8061,8061 +30212,30212 +57890,57890 +26083,26083 +368218,368218 +408546,408546 +431620,431620 +427094,427094 +401319,401319 +163533,163533 +36434,36434 +342197,342197 +55400,55400 +127085,127085 +152943,171313 +66476,66476 +172304,172304 +331624,331624 +22307,22307 +240418,240418 +433256,433256 +418065,418065 +326736,326736 +360917,360917 +240674,240674 +434318,434318 +89308,89308 +171570,171570 +93927,93927 +31918,31918 +161924,161924 +147215,147215 +332499,332499 +299112,299112 +90772,90772 +39409,39409 +434300,396727 +164050,164050 +200081,200081 +209174,209174 +244035,244035 +23123,23123 +36464,36464 +23143,23143 +132031,132031 +424908,424908 +303866,144665 +269972,269972 +40041,40041 +317381,317381 +261621,261621 +31953,31953 +136714,136714 +25473,25473 +30344,30344 +367854,338179 +164156,164156 +60114,60114 +10342,10342 +226375,226375 +368302,368302 +42861,42861 +410946,410946 +48907,48907 +362461,362461 +428393,428393 +420857,420857 +311095,311095 +36610,36610 +425080,425080 +14298,14298 +401038,401038 +432051,432051 +433887,312592 +381162,381162 +398662,192746 +138754,138754 +88129,88129 +90805,90805 +134511,134511 +368082,334307 +383100,364425 +183556,183556 +321328,321328 +175770,175770 +403661,403661 +98881,98881 +421420,421420 +30207,30207 +354867,354867 +316708,316708 +402391,402391 +32845,32845 +170661,170661 +144073,144073 +70870,70870 +405922,405922 +320092,320092 +414333,414333 +113557,113557 +406590,406590 +126775,126775 +203713,203713 +141554,141554 +147977,147977 +140895,140895 +405811,405811 +338898,338898 +160053,160053 +406721,20734 +139124,139124 +127790,127790 +423924,423924 +116116,116116 +346560,346560 +37994,37994 +341353,341353 +158050,158050 +377200,377200 +359814,359814 +23882,23882 +218317,218317 +65074,65074 +116333,116333 +346240,346240 +386334,386334 +407182,407182 +148286,148286 +137126,137126 +44283,44283 +126158,126158 +369363,369363 +33564,33564 +64034,64034 +152854,152854 +42730,42730 +99440,99440 +40534,40534 +360280,360280 +358468,358468 +315438,315438 +342824,320457 +433583,433583 +390357,390357 +242885,242885 +46960,46960 +364326,364326 +36282,36282 +309272,309272 +37276,37276 +12026,12026 +355513,355513 +317609,463 +60414,60414 +178850,178850 +80996,80996 +309247,309247 +262038,262038 +73501,73501 +281324,281324 +60674,60674 +358461,358461 +298532,298532 +385948,385948 +206503,206503 +40430,40430 +173023,173023 +427445,427445 +352182,352182 +125560,125560 +101704,101704 +235937,235937 +129451,129451 +384076,384076 +194258,194258 +48219,48219 +417547,417547 +360338,360338 +146909,146909 +400774,400774 +400064,400064 +143297,143297 +250656,250656 +204773,204773 +69920,69920 +386330,386330 +175108,175108 +366367,366367 +32508,32508 +233075,233075 +430751,430751 +421354,421354 +19065,19065 +109575,109575 +343405,343405 +203198,203198 +279872,279872 +127349,127349 +407435,407435 +83623,83623 +433518,211727 +195129,195129 +35880,35880 +294966,294966 +38847,38847 +433411,433411 +175250,175250 +433451,433452 +122471,122471 +67310,67310 +306229,306229 +393026,393026 +301264,301264 +419847,419847 +279859,279859 +17877,17877 +300216,300216 +408045,408045 +338016,338016 +67293,67293 +197329,197329 +301770,301770 +155490,155490 +227610,227610 +323788,323788 +81347,81347 +318177,318177 +433318,433318 +116006,116006 +128839,139705 +73231,73231 +401560,401560 +424150,241590 +6864,24986 +324887,324887 +290972,290972 +11356,11356 +278372,278372 +67789,67789 +65523,65523 +334822,334822 +109998,109998 +20351,20351 +159893,134884 +138095,138095 +91185,91185 +358593,358593 +137223,137223 +330581,590 +341011,16105 +154747,154747 +428376,428376 +275879,275879 +161220,161220 +363700,363700 +125439,125439 +86122,86122 +425000,425000 +37819,37819 +272087,272087 +415117,415117 +62218,62218 +142257,142257 +155057,155057 +268879,268879 +407490,407490 +54962,54962 +373246,373246 +137851,137851 +27151,27151 +410175,410175 +63427,63427 +429579,429579 +191449,191449 +431087,431087 +277809,277809 +31178,31178 +28461,10124 +138626,138626 +406517,406517 +61537,61537 +236654,236654 +259335,259335 +352978,352978 +120783,120783 +58818,58818 +393573,393617 +386916,386916 +319472,319472 +253278,253278 +25902,25902 +357511,357511 +240849,240849 +127162,127162 +336938,336938 +110317,110317 +362542,362542 +348962,348962 +27998,27998 +68355,68355 +376749,376749 +16838,16838 +429032,429032 +26374,26374 +433105,433105 +12033,12033 +411899,411899 +150680,150680 +20853,20853 +158395,158395 +433187,433187 +8357,8357 +405476,405476 +5983,5983 +64238,64238 +142796,142796 +113683,113683 +369231,369231 +281105,281105 +189304,189304 +267566,267566 +322437,322437 +118305,118305 +417937,417937 +420910,420910 +326212,326212 +29438,29438 +74668,74668 +27466,27466 +320088,320088 +255901,255901 +200608,200608 +30008,30008 +62998,62998 +406059,406059 +30091,30091 +25737,25737 +148733,148733 +244220,244220 +421197,421197 +255973,255973 +279889,279889 +410518,271754 +5853,5853 +343664,343664 +116130,116130 +335562,335562 +128685,128685 +401612,401612 +339160,339160 +97425,97425 +54422,54422 +41201,41201 +21304,21304 +36998,36998 +397077,397077 +372976,372976 +42949,42949 +413526,413526 +434093,434093 +240518,240518 +137457,137457 +90795,90795 +40556,40556 +350334,350334 +359167,359167 +71666,71666 +144745,144745 +433970,433970 +46097,46097 +143295,143295 +435058,435058 +394270,394270 +350231,350231 +372980,372980 +194565,194565 +320093,320093 +388744,388744 +268517,268517 +4859,7946 +228207,228207 +433067,433067 +344995,344995 +417667,417667 +428583,428583 +37807,37807 +424977,424977 +92584,92584 +232862,232862 +342199,342199 +17406,17406 +63039,63039 +29946,29946 +162756,162756 +294156,294156 +128456,128456 +110107,141086 +322530,322530 +198592,198592 +203332,203332 +355540,355540 +130289,130289 +72154,72154 +27647,27647 +38112,38112 +81454,81454 +374737,374737 +36697,36697 +127552,127552 +416148,416148 +342548,342548 +163419,163419 +93427,93427 +229555,229556 +412220,412220 +404047,404047 +18462,18462 +127337,127337 +322329,322329 +42138,42138 +371155,371155 +107316,107316 +67456,67456 +277444,277444 +97851,97851 +329653,329653 +311233,311233 +170149,295154 +386110,386110 +134888,134888 +322098,322098 +7196,7196 +121603,121603 +287836,287836 +368048,324739 +311272,311272 +72882,72882 +15605,15605 +404687,340080 +40772,40772 +268874,268874 +95222,95222 +83483,83483 +255454,255454 +253336,253336 +365181,365181 +324750,324750 +32691,32691 +67086,67086 +59493,59493 +272383,272383 +102539,102539 +76431,76431 +358859,358859 +435070,435070 +102957,102957 +390127,390127 +427092,427092 +323967,323967 +98448,98448 +356010,356010 +292527,292527 +109547,109547 +389264,389264 +37365,20210 +223838,223838 +32133,32133 +16817,16817 +251417,251417 +109916,109916 +312668,312668 +401606,401606 +29949,29949 +351361,351361 +378858,378858 +331258,331258 +334863,334863 +23020,23020 +229991,229991 +129773,129773 +433179,433179 +384144,384144 +24616,24616 +342130,342130 +238091,238091 +432900,432900 +105140,105140 +31865,31865 +336103,336103 +245283,245283 +62332,62332 +74906,74906 +93464,93464 +37841,37841 +330840,330840 +322839,322839 +310134,310134 +65867,65867 +42559,42559 +315331,315331 +132264,132264 +193309,193309 +14665,14665 +73846,73846 +61930,61930 +57967,57967 +68529,68529 +277049,277049 +15277,15277 +329827,329827 +270264,270264 +401939,401939 +353708,353708 +301074,301074 +38744,38744 +329829,329829 +38091,38091 +406183,406183 +30088,30088 +401260,401260 +59712,59712 +62544,62544 +430150,430150 +370499,2795 +332054,332054 +176185,176185 +23133,23133 +430929,430929 +300886,300886 +407179,407179 +27535,27535 +29948,29948 +64615,64615 +172515,172515 +17052,17052 +369832,369832 +422055,422055 +299190,299190 +365719,365719 +99531,99531 +23396,23396 +210048,210048 +89655,89655 +294645,294645 +39496,39496 +99489,99489 +13887,13887 +227185,227185 +335104,335104 +17512,17512 +305549,305549 +431251,431251 +276778,276778 +33678,33678 +283693,283693 +363327,363327 +72361,72361 +369678,369678 +249313,249313 +134203,134203 +67077,67077 +341481,341481 +42070,42070 +155782,155782 +298176,298176 +25358,25358 +359738,359738 +349555,271460 +303862,144665 +343685,343685 +202962,202962 +72341,72341 +66474,66474 +129924,129924 +179431,179431 +137982,137982 +424996,424996 +431379,431379 +148448,148448 +27031,27031 +23105,23105 +275639,275639 +57736,57736 +72075,72075 +429053,429053 +41582,41582 +14433,14433 +393158,393158 +39622,39622 +380657,380657 +58092,58092 +134198,134198 +378593,378593 +324601,324601 +101740,101740 +33933,33933 +25971,25971 +34015,34015 +423597,271460 +355533,355533 +334859,334859 +29843,29843 +187443,187443 +67539,67539 +113617,113617 +321694,321694 +227940,227940 +308424,308424 +156718,156718 +337719,337719 +26158,26158 +128807,128807 +158745,158745 +243270,243270 +28502,28502 +431784,431784 +374328,369418 +391338,391338 +63999,63999 +142644,142644 +177273,177273 +138101,138101 +243100,243100 +35833,35833 +24604,24604 +43057,43057 +287409,287409 +237849,237849 +395517,395517 +122714,122714 +353456,57937 +15362,15362 +281486,281486 +111638,111638 +329536,252063 +69162,69162 +165842,165842 +98720,98720 +337862,337862 +434182,434182 +257975,257975 +372288,372288 +167532,167532 +153884,153884 +214465,81043 +137624,137624 +374310,374310 +42659,42659 +182378,182378 +259816,259816 +199640,199640 +12975,12975 +22920,22920 +387099,387099 +193891,193891 +87102,87102 +30388,30388 +148129,148129 +45367,45367 +170493,170493 +427575,427575 +341889,341889 +32824,32824 +194293,194293 +25981,25981 +337674,337674 +335958,335958 +256863,256863 +335369,335369 +11928,11928 +160572,160572 +35794,35794 +33069,33069 +417408,43022 +399723,399723 +106528,106528 +423849,423849 +29791,29791 +174223,174223 +115925,115925 +157999,157999 +357210,6862 +33362,33362 +403037,403037 +280766,280766 +43038,43038 +180428,180428 +37239,37239 +151411,151411 +341964,341964 +29002,29002 +66858,66858 +240551,240551 +159897,134884 +364241,364241 +101843,101843 +405408,405408 +81077,81077 +22804,22804 +225847,225847 +176871,176871 +139818,139818 +401105,401105 +28391,28391 +140627,106929 +29114,29114 +57558,57558 +171767,171767 +430850,430850 +325615,325615 +302692,302692 +380410,380410 +224219,224219 +62551,62551 +141477,141477 +153887,153887 +321937,321937 +203535,203535 +428083,428083 +346128,346128 +343579,343579 +327619,327619 +237557,237557 +422193,422193 +29755,29755 +343292,343292 +420118,420118 +414767,414767 +15546,15546 +33437,33437 +249709,249709 +22454,22454 +320899,320899 +259421,259421 +74332,74332 +356811,356811 +330774,330774 +31751,31751 +371846,371846 +415964,415964 +136255,136255 +97518,97518 +66678,66678 +417360,417360 +205995,205995 +263237,263237 +68910,68910 +28962,28962 +353646,353646 +326759,326759 +39002,39002 +434094,434094 +320279,320279 +100115,100115 +202902,202902 +62121,62121 +67824,67824 +430921,430921 +299145,299145 +375709,375709 +49253,49253 +69344,69344 +340764,340764 +266431,266431 +328324,328324 +415977,415977 +286282,286282 +346906,346906 +363037,363037 +137603,137603 +56748,56748 +303501,296877 +67233,67233 +42005,42005 +141722,141722 +145590,145590 +62833,62833 +357388,357388 +390207,390207 +68481,68481 +431998,431998 +308174,308174 +111819,111819 +299783,299783 +253109,253109 +358943,358943 +29605,29605 +307843,307843 +17866,17866 +131168,131168 +377297,377297 +126162,126162 +402120,402120 +415806,415806 +156405,156405 +35918,35918 +4592,4592 +302665,302665 +70179,70179 +115016,115016 +306264,306264 +392623,392623 +274713,274713 +400345,400345 +116019,116019 +65730,65730 +403391,403391 +20813,20813 +180928,180928 +232868,232868 +387855,387855 +31599,31599 +292904,23407 +161851,161851 +94205,94205 +182730,182730 +327048,327048 +355529,355529 +176302,176302 +39947,39947 +34522,34522 +153883,153883 +146165,146165 +339242,339242 +423976,423976 +37289,37289 +56583,56583 +145567,145567 +274086,274086 +123157,123157 +408237,408237 +171989,171989 +380033,380033 +399959,399959 +389177,389177 +15871,15871 +405451,405451 +175065,175065 +206379,206379 +268373,263353 +116865,116865 +420269,420269 +15646,15646 +67291,67291 +67088,67088 +312458,312458 +147243,147243 +352283,352283 +264174,264174 +170712,170712 +279876,279876 +320384,320384 +201330,201330 +431171,431171 +328924,328924 +359780,359780 +53684,53684 +122546,122546 +321245,321245 +259415,259415 +132008,132008 +419844,419844 +75233,75233 +265835,265835 +177979,177979 +33524,33524 +402756,402756 +38673,38673 +322108,322108 +25679,25679 +241109,241109 +160217,160217 +346840,346840 +430460,430460 +63666,63666 +317388,317388 +212471,212471 +33763,33763 +426586,426586 +95855,95855 +212594,212594 +78098,78098 +322031,322031 +369939,369939 +432870,432870 +335079,335079 +68894,68894 +426961,426961 +394024,394024 +251610,251610 +17259,17259 +35111,35111 +353904,353904 +18178,18178 +377874,362669 +33454,33454 +406585,406585 +71313,71313 +25388,25388 +149728,149728 +131263,131263 +391301,391301 +37943,37943 +111208,111208 +430353,430353 +422128,422128 +336483,336483 +8582,8582 +3775,3775 +163060,163060 +33550,33550 +161785,161785 +127615,127615 +163061,163061 +431434,431434 +120133,120133 +353185,353185 +117906,117906 +329276,329276 +135423,135423 +23750,23750 +281517,281517 +93363,93363 +16137,16137 +431098,431098 +255904,255904 +323566,323566 +314470,314470 +156206,156206 +266480,266480 +266154,266154 +21510,21510 +26897,26897 +143137,143137 +432663,432663 +280311,280311 +132751,132751 +402502,402502 +322013,322013 +245807,245807 +432629,432629 +41829,41829 +30396,30396 +321330,321330 +128452,128452 +191250,191250 +307523,307523 +15558,15558 +419200,419200 +39315,39315 +185094,185094 +174659,174659 +307046,307046 +229603,229603 +144770,144770 +295471,295471 +88725,88725 +11996,11996 +401994,401994 +320724,320724 +97337,97337 +434069,434069 +14399,14399 +40870,40870 +137656,137656 +300241,300241 +110711,110711 +387594,387594 +127239,127239 +152022,152022 +390570,390570 +169433,169433 +406087,406087 +253397,253397 +163083,163083 +347089,347089 +328680,328680 +217016,217016 +374233,374233 +404410,16997 +382055,382055 +388574,388574 +44287,44287 +229407,229407 +13570,13570 +402989,402989 +334303,334303 +22078,22078 +304416,304416 +388513,388513 +405598,405598 +382672,382672 +423084,337261 +199573,199573 +120951,120951 +429416,429416 +57972,57972 +30337,30337 +54467,54467 +145701,145701 +112617,112617 +404930,404930 +401153,401153 +150409,150409 +177920,177920 +352140,352140 +58793,58793 +115510,115510 +21638,21638 +15119,15119 +340444,340444 +326216,326216 +255102,255102 +34489,34489 +63456,63456 +304311,304311 +222380,222380 +128570,128570 +38761,38761 +217841,217841 +270071,270071 +322285,322285 +247716,247716 +25566,25566 +44944,44944 +162740,162740 +27137,27137 +137857,137857 +137522,137522 +317503,317503 +405525,405525 +62124,62124 +401588,401588 +63861,63861 +169854,169854 +40224,40224 +297142,297142 +122307,122307 +32049,32049 +318013,318013 +262457,262457 +32650,32650 +79339,79339 +287090,287090 +322648,322648 +286832,286832 +40166,40166 +276735,276735 +395506,395506 +378957,463 +405407,405407 +416668,416668 +57607,57607 +168829,168829 +35984,35984 +326596,326596 +383471,383471 +430096,233932 +430039,430039 +244853,244853 +21911,21911 +124351,124351 +57799,57799 +304455,304455 +198222,198222 +300513,300513 +391563,391563 +314440,314440 +314459,314459 +235646,235646 +121937,121937 +36274,36274 +149569,149569 +109821,109821 +24403,24403 +354899,354899 +181818,181818 +39562,39562 +68724,68724 +127794,127794 +332293,332293 +177333,177333 +148003,148003 +27908,27908 +363356,363356 +428910,428910 +198941,198941 +415018,415018 +143757,143757 +292381,292381 +426939,426939 +154230,154230 +92349,92349 +140312,140312 +208798,208798 +433699,433699 +111381,111381 +432684,432684 +14499,14499 +321668,321668 +433082,433082 +30698,30698 +141531,141531 +36492,36492 +26730,26730 +322851,322851 +39791,39791 +139691,139691 +430732,430732 +349786,349786 +386848,356066 +371117,371117 +172645,172645 +394210,394210 +91548,91548 +432049,432049 +20357,20357 +243999,243999 +313469,313469 +240539,240539 +429225,429225 +203038,203038 +404733,404733 +310889,310889 +159887,159887 +146389,146389 +154725,154725 +114952,114952 +423606,423606 +226014,226014 +355085,355085 +415071,415071 +266725,182333 +303296,303296 +35182,35182 +333194,333194 +210064,463 +157080,157080 +428415,428415 +342102,342102 +352854,352854 +57095,57095 +371527,371527 +329306,329306 +363854,363854 +385831,385831 +365210,365210 +24579,24579 +405543,405543 +434442,434442 +282034,282034 +33560,33560 +159889,159889 +58367,58367 +400537,400537 +402300,402300 +332675,332675 +340874,340874 +62984,62984 +413449,413449 +37856,37856 +30227,30227 +378517,378517 +50279,50279 +21313,21313 +127704,127704 +184769,184769 +406190,406190 +354629,354629 +413331,413331 +112882,112882 +29634,29634 +421397,421397 +330835,330835 +28564,28564 +24113,24113 +406205,406205 +68096,68096 +172126,172126 +162429,162429 +134666,134666 +143344,143344 +27141,27141 +260225,260225 +148610,148610 +17977,17977 +404154,404154 +430780,309903 +23199,23199 +418087,418087 +408069,408069 +31391,31391 +36049,36049 +418246,418246 +226082,249536 +101862,101862 +18065,18065 +34022,34022 +30397,30397 +378521,378521 +108054,108054 +321310,321310 +408027,408027 +34959,34959 +261716,261716 +39911,39911 +424533,424533 +21786,21786 +219877,219877 +154722,154722 +246440,246440 +359671,359671 +423309,423309 +239630,239630 +69624,69624 +136950,136950 +244219,244219 +341335,341335 +403415,403415 +422213,422213 +36256,36256 +152290,152290 +156120,156120 +153323,153323 +406542,406542 +37200,37200 +13125,13125 +36966,36966 +55886,55886 +431104,431104 +359749,359749 +37203,37203 +370678,370678 +11487,11487 +104951,104951 +60852,60852 +430793,430793 +423228,423228 +340009,340009 +134530,134530 +173948,173948 +63408,63408 +11599,11599 +272371,272371 +27699,27699 +94263,129814 +34049,34049 +111533,111533 +407012,407012 +58727,58727 +327263,327263 +322298,322298 +153646,153646 +311168,311168 +378048,378048 +358965,358965 +299144,299144 +314919,314919 +206089,206089 +40391,40391 +426916,426916 +319964,319964 +2142,2142 +295413,295413 +276967,276967 +153224,153224 +30190,30190 +300340,300340 +426139,426139 +367006,367006 +393294,393294 +102613,102613 +206688,206688 +378315,378315 +31723,31723 +93375,93375 +39367,39367 +22743,22743 +383191,228722 +118304,118304 +434423,399104 +177091,177091 +200350,200350 +285503,285503 +36358,36358 +86347,86347 +37018,37018 +195729,195729 +131829,131829 +69282,69282 +402659,402659 +324139,324139 +70194,70194 +88664,88664 +20075,20075 +283533,283533 +347427,347427 +182896,182896 +64096,64096 +137523,137523 +300819,300819 +10930,10930 +24730,24730 +41217,41217 +37851,37851 +12605,12605 +409743,409743 +189363,189363 +27548,27548 +304166,304166 +349669,349669 +139759,139759 +215001,215001 +22225,22225 +290980,290980 +224983,224983 +361770,361770 +18418,18418 +356338,356338 +328291,328291 +108793,108793 +403243,403243 +62665,62665 +363725,363725 +37287,37287 +413274,413274 +338203,338203 +172135,172135 +164183,164183 +285261,285261 +325920,325920 +419157,419157 +368726,368726 +336918,336918 +33770,33770 +386336,386336 +344034,273932 +139719,139719 +45816,45816 +423141,423141 +348702,5222 +76210,76210 +408047,408047 +420752,420752 +133634,133634 +429400,429400 +308418,308418 +201309,201309 +398696,398696 +66200,66200 +35798,35798 +88805,88805 +39936,39936 +387701,387701 +31445,31445 +174330,174330 +75797,75797 +335677,335677 +187711,187711 +38203,38203 +237559,237559 +26655,26655 +23532,23532 +353744,353744 +374367,374367 +320087,320087 +4805,4805 +426993,426993 +25818,25818 +32721,32721 +54517,54517 +86829,86829 +43437,43437 +356135,356135 +34135,34135 +43069,43069 +129747,129747 +23147,23147 +66884,66884 +40269,40269 +382889,382889 +356951,356951 +341355,341355 +247269,1197 +365753,365753 +18170,18170 +177224,177224 +131147,131147 +411221,267832 +367180,367180 +244707,244707 +406773,406773 +340848,340848 +301952,301952 +299859,299859 +156241,156241 +211259,211259 +224120,224120 +16883,16883 +37294,37294 +23079,23079 +312838,312838 +85145,85145 +152405,152405 +416663,416663 +329497,302302 +8831,8831 +111399,111399 +291788,291788 +253697,253697 +121366,121366 +328379,10882 +226410,226410 +206660,206660 +408633,408633 +133210,133210 +177971,177971 +29632,29632 +287512,287512 +113688,113688 +413842,413842 +87848,87848 +22632,22632 +145898,145898 +323237,323237 +38952,38952 +233356,233356 +338858,338858 +330536,330536 +329724,329724 +260059,260059 +15343,15343 +269200,269200 +204432,204432 +340441,340441 +5079,5079 +345556,345556 +100865,100865 +159618,159618 +26799,26799 +38011,38011 +294072,294072 +264775,264775 +429687,429687 +279999,279999 +371339,371339 +144507,144507 +400120,400120 +232488,232488 +341122,341122 +33552,33552 +326774,326774 +43952,43952 +332010,332010 +57886,57886 +430291,430291 +31140,31140 +359376,359376 +303867,144665 +68939,68939 +371581,371581 +357921,357921 +157840,157840 +433388,433388 +295655,295655 +243335,243335 +419652,419652 +113414,113414 +110106,110106 +33575,33575 +169744,169744 +376637,376637 +37570,37570 +284707,284707 +253432,253432 +227942,227942 +372863,372863 +147068,147068 +31960,31960 +378153,378153 +47393,47393 +391885,391885 +41431,41431 +20783,20783 +127724,127724 +131607,131607 +186582,186582 +260984,260984 +385949,385949 +434233,434233 +196491,196491 +410255,410255 +150498,150498 +86667,86667 +392158,392158 +393895,393895 +400130,400130 +389309,389309 +40631,40631 +65522,65522 +143743,143743 +209883,209883 +259458,259458 +130273,130273 +296783,296783 +89347,89347 +35106,35106 +74087,74087 +82782,82782 +14214,14214 +276969,276969 +261539,261539 +19059,19059 +120975,120975 +86411,86411 +312999,312999 +332682,332682 +176332,176332 +241304,241304 +325322,325322 +32457,32457 +127158,127158 +231555,231555 +352658,352658 +396521,396521 +373712,373712 +423617,204493 +72654,72654 +353673,353673 +431262,431262 +41279,41279 +29184,29184 +307075,307075 +294518,294518 +60431,60431 +165875,165875 +374081,374081 +54209,54209 +21388,21388 +62669,62669 +373770,373770 +359770,359770 +36820,36820 +145159,145159 +401937,401937 +240550,240550 +275944,275944 +343840,343840 +37152,37152 +271501,271501 +123831,123831 +25374,25374 +13170,13170 +406572,406572 +37343,37343 +431403,431403 +367451,367451 +401595,401595 +133612,133612 +37483,37483 +348398,348398 +420812,420812 +36730,36730 +371087,371087 +35994,35994 +38385,38385 +430755,430755 +395722,388513 +47118,47118 +186607,186607 +335175,335175 +144986,144986 +29550,29550 +38853,38853 +37722,37722 +371418,371418 +360146,360146 +95441,95441 +344279,344279 +210968,210968 +398119,398119 +37277,37277 +339784,339784 +127303,127303 +20746,20746 +58041,58041 +30243,30243 +425714,425714 +424631,424631 +430768,430768 +169293,169293 +403434,403434 +280236,280236 +324672,324672 +25778,25778 +244102,244102 +23923,23923 +133212,133212 +39343,39343 +354783,354783 +431882,431882 +277059,277059 +64006,64006 +21797,21797 +200155,200155 +177805,177805 +37920,37920 +33227,33227 +327073,327073 +12939,12939 +25819,25819 +308937,308937 +347772,347772 +29893,29893 +342640,40131 +191897,191897 +363298,363298 +124111,124111 +66614,66614 +34048,34048 +5148,5148 +10062,10062 +100382,100382 +282851,282851 +300716,300716 +174594,174594 +308573,308573 +129669,129669 +135142,135142 +65434,65434 +103683,103683 +327727,327727 +127803,127803 +6034,6034 +37914,37914 +306964,306964 +297210,297210 +208331,208331 +19112,19112 +34541,34541 +151639,151639 +335667,335667 +397608,397608 +61779,61779 +104954,104954 +334432,334435 +37566,37566 +176602,176602 +320861,320861 +373523,373523 +28600,28600 +363934,363934 +155236,155236 +133901,133901 +341214,341214 +392451,392451 +424486,424486 +31462,31462 +26109,26109 +95384,95384 +29392,29392 +321796,321796 +121374,121374 +373710,373710 +39665,39665 +135522,135522 +335020,335020 +25371,25371 +389341,389341 +101742,101742 +215917,215917 +322404,322404 +5180,5180 +17443,17443 +363701,66777 +128994,128994 +421793,421793 +11353,11353 +373974,373974 +363008,363008 +376857,1770 +40036,40036 +200706,200706 +426941,426941 +180904,180904 +362098,362098 +278255,278255 +18465,18465 +191373,191373 +131058,131058 +373762,373762 +216427,216427 +148121,148121 +312674,312674 +299319,299319 +319069,319069 +42189,42189 +89882,89882 +118591,118591 +32513,32513 +335125,335125 +212968,212968 +37242,37242 +352988,352988 +9839,9839 +33949,33949 +30713,30713 +329292,329292 +19082,19082 +35655,35655 +184512,184512 +37117,37117 +139523,139523 +129866,129866 +161502,161502 +293525,293525 +433688,433688 +332813,254179 +16657,16657 +230172,230172 +114383,114383 +89608,89608 +413550,2472 +203188,203188 +408596,408596 +67106,67106 +253121,253121 +6537,6537 +369947,369947 +94631,94631 +36456,36456 +170143,170143 +338237,338237 +63367,63367 +412857,412857 +114450,114450 +5094,5094 +287694,287694 +297585,297585 +10263,10263 +165333,165333 +375906,375906 +177569,177569 +297487,297487 +27092,27092 +15419,15419 +93654,93654 +40687,40687 +31600,31600 +386955,386955 +24094,24094 +12800,12800 +226157,226157 +281686,281686 +340385,340385 +322215,322215 +155777,155777 +894,894 +383592,383592 +174331,174331 +343304,343304 +70944,70944 +392949,392949 +11279,11279 +60046,60046 +226011,226011 +251991,251991 +312681,312681 +310785,310785 +180926,180926 +24905,24905 +31550,31550 +370778,165041 +351500,351500 +143737,143737 +40022,40022 +7212,7212 +233166,233166 +188693,188693 +341351,341351 +95812,95812 +406372,406372 +342078,342078 +164016,164016 +340051,340051 +32912,32912 +136251,136251 +180045,180045 +21281,21281 +53161,53161 +94043,94043 +189188,189188 +38117,38117 +104638,104638 +304377,304377 +127949,127949 +312975,312975 +39147,39147 +273282,32441 +147648,147648 +406290,406290 +370892,370892 +129158,129158 +378903,378903 +92855,92855 +131501,131501 +400924,400924 +115120,115120 +393982,393982 +352334,352334 +405901,405901 +403371,403371 +426226,426226 +156029,156029 +65998,65998 +416526,416526 +137756,137756 +181436,181436 +430340,430340 +347930,175029 +109609,109609 +139615,139615 +326376,326376 +20815,20815 +132354,132354 +22942,22942 +169941,169941 +187699,187699 +218669,218669 +346062,346062 +283138,283138 +258515,258515 +322852,322852 +296699,296699 +309302,309302 +114169,114169 +425967,425967 +192861,192861 +26938,26938 +67376,67376 +324036,324036 +418063,418063 +430747,430747 +382156,382156 +330205,330205 +117924,117924 +23731,23731 +227751,227751 +23894,23894 +39521,39521 +396445,396445 +63401,63401 +153809,153809 +29926,29926 +398733,398733 +178369,178369 +432201,432201 +4743,4743 +66656,66656 +215801,215801 +27846,27846 +39059,39059 +328414,328414 +43473,43473 +198934,198934 +224397,224397 +56198,56198 +269939,269939 +327745,336962 +403802,403802 +250274,250274 +32320,32320 +175579,175579 +171170,171170 +276308,276308 +234913,234913 +37176,37176 +9880,9880 +176166,176166 +433405,433405 +225053,225053 +188274,188274 +17978,17978 +399741,399741 +361803,361803 +429231,429231 +377017,377017 +29790,29790 +228581,228581 +377857,377857 +322138,322138 +29070,29070 +170440,170440 +359869,359869 +322825,322825 +382629,382629 +431247,393978 +64151,64151 +61888,61888 +28996,28996 +138692,138692 +25381,25381 +322659,220988 +267074,267074 +354117,354117 +78121,78121 +416074,416074 +429254,241590 +375290,375290 +30453,30453 +25110,25110 +407181,2651 +368052,368052 +57665,57665 +212579,212579 +193936,193936 +26327,26327 +113012,113012 +11141,11141 +22692,22692 +161937,161937 +358459,358459 +430534,430534 +287257,287257 +433524,433524 +370022,370022 +22231,22231 +408476,408476 +245599,245599 +339055,339055 +315730,271460 +32225,32225 +176308,176308 +347477,347477 +287082,287082 +126881,126881 +399955,399955 +154564,154564 +344552,344552 +84623,84623 +42621,42621 +351823,351823 +124478,124478 +24440,24440 +417409,43022 +342902,342902 +101451,101451 +292014,292014 +37801,37801 +21843,21843 +369139,369139 +36964,36964 +42316,42316 +257088,257088 +406292,138123 +21128,21128 +58001,58001 +294656,294656 +9449,9449 +409168,409168 +412998,412998 +25980,25980 +141147,141147 +134428,134428 +126223,126223 +377595,377595 +18417,18417 +14458,14458 +89658,89658 +330089,330089 +153867,153867 +31491,31491 +304569,304569 +352328,352328 +324600,324600 +426502,426502 +34498,34498 +19121,19121 +29905,29905 +162125,162125 +433212,433212 +383531,383531 +251143,251143 +228806,228806 +409302,409302 +264121,264121 +130287,130287 +32760,32760 +411335,411335 +278253,278253 +201141,201141 +88530,88530 +254844,254844 +411809,411809 +382612,382612 +378061,378061 +391600,391600 +121207,121207 +66670,66670 +318565,318565 +157397,157397 +128511,128511 +130292,130292 +58469,58469 +380656,380656 +116795,116795 +156980,156980 +43020,43020 +214831,214831 +63016,63016 +73708,73708 +30750,30750 +427068,427068 +362524,362524 +179489,179489 +73119,73119 +177715,177715 +23859,23859 +111959,111959 +361090,361090 +232209,232209 +110424,110424 +135404,135404 +33661,33661 +64274,64274 +127125,127125 +414885,414885 +400712,400712 +41369,41369 +341179,341179 +169123,169123 +115854,115854 +142092,142092 +40847,40847 +371216,371216 +382017,382017 +60803,60803 +321931,321931 +20728,20728 +157767,157767 +406416,406416 +313957,313957 +175836,175836 +427137,183610 +79950,79950 +424220,400209 +63709,63709 +25998,25998 +30685,30685 +406060,406060 +377486,377486 +106299,106299 +138179,138179 +152620,152620 +227755,227755 +403907,403907 +323492,323492 +33926,33926 +420563,420563 +325328,325328 +405531,405531 +56007,56007 +41039,41039 +382919,382919 +291726,291726 +15609,15609 +342899,342899 +109147,109147 +46452,46452 +340559,340559 +20856,20856 +308474,308474 +233543,233543 +17124,17124 +431450,431450 +339993,339993 +207839,207839 +320897,320897 +111639,111639 +335188,335188 +145643,145643 +319818,319818 +29467,29467 +378502,378502 +415364,415364 +19013,19013 +116473,116473 +224667,224667 +385714,385714 +424936,424936 +287417,287417 +188610,171313 +396072,396070 +268354,268354 +35007,35007 +345066,345066 +263406,263406 +334397,334397 +180596,180596 +110842,110842 +321331,321331 +395187,5312 +200537,200537 +147682,147682 +287085,287085 +208318,208318 +164020,164020 +427728,427728 +339938,339938 +381810,381810 +67224,67224 +408536,408536 +34855,34855 +128440,128440 +86665,86665 +334947,334947 +240201,240201 +391473,391473 +343866,343866 +211703,25729 +123376,123376 +430472,430472 +419263,419263 +343026,343026 +326167,326167 +37442,37442 +429415,59226 +33993,33993 +376280,376280 +344764,202884 +37572,37572 +26362,26362 +408061,408061 +40802,40802 +32787,32787 +29762,29762 +277675,277675 +21830,21830 +326232,326232 +433390,433390 +244095,244095 +399363,399363 +209018,209018 +135024,135024 +296711,296711 +93961,93961 +429942,429942 +429060,429060 +80812,80812 +380779,380779 +304319,304319 +42465,42465 +127326,127326 +285239,285239 +118565,118565 +35810,35810 +237215,237215 +173836,173836 +117173,117173 +115427,115427 +116213,116213 +402822,402822 +382130,382130 +238880,238880 +25428,25428 +30917,30917 +40568,40568 +284190,284190 +50605,50605 +362684,362684 +287299,287299 +199861,199861 +99324,99324 +111401,111401 +346282,346282 +61389,61389 +393623,393623 +38005,38005 +197037,197037 +160983,160983 +415865,415865 +121064,121064 +35623,35623 +45349,45349 +403448,403448 +29927,29927 +13795,13795 +398666,398666 +433814,463 +24951,24951 +39016,39016 +30011,30011 +146425,146425 +291578,291578 +406207,88080 +132343,132343 +302641,302641 +5313,14486 +234580,234580 +49320,49320 +35316,35316 +168328,168328 +311047,311047 +110680,110680 +91638,91638 +99888,99888 +162427,162427 +405726,405726 +144317,144317 +422868,422868 +420755,420755 +15093,15093 +276378,276378 +411724,411724 +297364,297364 +43464,43464 +54941,54941 +58796,58796 +373545,373545 +431785,431785 +26082,26082 +288661,63268 +410576,410576 +412954,412954 +311171,311171 +389044,389044 +409067,409067 +310907,310907 +31292,31292 +127151,127151 +279990,279990 +133874,133874 +234201,119472 +400347,400347 +304050,304050 +125107,125107 +222575,222575 +430953,430953 +324944,324944 +245873,245873 +366783,366783 +235921,235921 +295101,295101 +55243,55243 +368078,368078 +14578,14578 +366315,366315 +44863,44863 +214565,214565 +52878,52878 +157303,157303 +322035,322035 +128025,128025 +39049,7380 +402461,402461 +237685,237685 +37826,37826 +258327,258327 +322833,322833 +291350,291350 +72447,72447 +62655,62655 +79596,79596 +326518,326518 +162051,162051 +416202,416202 +326371,326371 +353671,353671 +346904,346904 +347830,112963 +316762,316762 +31498,31498 +30070,30070 +26090,26090 +398172,398172 +332028,332028 +209606,209606 +24117,24117 +17824,17824 +385762,385762 +242576,242576 +358522,358522 +58786,58786 +434142,434142 +127585,127585 +405835,405835 +147551,147551 +51312,51312 +129447,129447 +38483,38483 +315312,315312 +225384,225384 +121079,121079 +55392,55392 +160097,160097 +87552,87552 +17567,17567 +13664,13664 +30466,30466 +11006,11006 +433185,433185 +30653,30653 +293345,293345 +342002,342002 +305354,305354 +328544,328544 +363858,363858 +155792,155792 +177982,177982 +195015,195015 +414861,414861 +209607,209607 +173310,173310 +375790,375790 +263120,263120 +335564,335564 +28807,28807 +118605,118605 +128124,128124 +20143,20143 +312528,312528 +377592,377592 +202422,202422 +26092,26092 +141529,141529 +242268,242268 +329223,329223 +276757,276756 +400759,400759 +41442,41442 +381549,381549 +11486,11486 +191444,191444 +146543,146543 +412256,412256 +156369,156369 +79614,79614 +118273,118273 +178056,178056 +355415,355414 +432590,432590 +331935,331935 +43521,43521 +146803,146803 +31359,31359 +330063,330063 +303933,7181 +29911,29911 +301520,301520 +411858,411858 +84622,84622 +180776,180776 +393289,393289 +357927,357927 +71790,71790 +295135,295135 +25889,25889 +29526,29526 +183160,183160 +111007,111007 +129215,129215 +338782,338782 +393358,393358 +175987,175987 +286056,286056 +212908,212908 +73130,73130 +408526,408526 +236011,236011 +23080,23080 +427587,427587 +48280,48280 +365589,365589 +389716,389716 +433860,433860 +16917,16917 +41854,41854 +18509,18509 +19230,19230 +159524,159524 +117719,117719 +277105,277105 +329356,329356 +348993,348993 +46660,46660 +58369,58369 +129203,129203 +62981,62981 +405679,405679 +432914,432914 +202940,202940 +227578,227578 +15202,15202 +377401,377401 +157670,301212 +169698,169698 +18525,18525 +269397,269397 +132712,132712 +119465,119465 +369045,369045 +61554,61554 +15344,15344 +92187,92187 +33519,33519 +36141,36141 +18596,18596 +15436,15436 +403801,403801 +126723,126723 +11946,11946 +403626,403626 +165779,165779 +221881,221881 +35136,17968 +17172,17172 +131280,131280 +377596,377596 +69847,69847 +22719,22719 +177115,177115 +407809,407809 +354841,354841 +432991,432991 +252971,252971 +427263,427263 +418467,418467 +325168,325168 +113213,113213 +206433,206433 +227120,227120 +317843,317843 +240820,240820 +218066,218066 +378069,378069 +307989,307583 +351918,351918 +413310,413310 +398307,398307 +14465,14465 +183158,183158 +410164,410164 +362682,362682 +339968,339968 +423565,423565 +309887,309887 +423604,423604 +419760,419760 +133613,133613 +375980,375980 +245527,245527 +23523,23523 +350844,350844 +191908,191908 +285965,285965 +146996,146996 +421948,421948 +58542,58542 +38231,38231 +410505,410505 +403118,403118 +256415,256415 +377722,377722 +241716,241716 +414304,414304 +117955,117955 +301027,301027 +10074,10074 +405876,354618 +421481,421481 +390428,390428 +138253,138253 +279554,279554 +375615,375615 +365457,209001 +65616,65616 +333764,333764 +26274,26274 +139711,139711 +124683,124683 +233624,233624 +64162,64162 +359270,359270 +191346,191346 +39341,39341 +360490,360490 +372873,372873 +100885,100885 +162166,162166 +322296,322296 +239112,239112 +78556,78556 +30882,30882 +18612,18612 +269226,269226 +26966,26966 +96050,96050 +162873,162873 +19458,19458 +129150,129150 +111181,111181 +415740,415740 +347733,347733 +427561,427561 +19830,19830 +198752,198752 +268881,268881 +352165,352165 +64285,64285 +160696,2103 +116985,116985 +253191,253191 +62531,62531 +414286,414286 +142145,142145 +386620,386620 +330569,330569 +41118,41118 +299710,190035 +31981,31981 +238484,238484 +41509,41509 +18420,18420 +163026,163026 +344190,344190 +162991,162991 +65747,65747 +162314,162314 +39571,39571 +408385,408385 +216202,216202 +396088,396088 +429717,418062 +58038,58038 +138880,138880 +363139,363139 +404188,404188 +153976,153976 +427338,388751 +126276,126276 +227791,227791 +62286,62286 +146634,146634 +27497,27497 +367942,367942 +168388,168388 +301319,301319 +294755,294755 +411846,411846 +20796,20796 +124489,124489 +144764,144764 +383090,383090 +236916,236916 +251520,251520 +340082,340082 +423605,423605 +217329,217329 +209792,209792 +295395,295395 +144090,144090 +29016,29016 +25955,25955 +248461,248461 +69850,69850 +155958,155958 +307913,307913 +359057,359057 +405673,405673 +262113,262113 +62496,62496 +168622,168622 +31890,31890 +86021,86021 +69619,69619 +233986,233986 +299083,299082 +412992,412992 +351989,351989 +320912,320912 +373286,373286 +116580,116580 +335627,335627 +11299,11299 +81483,81483 +92217,92217 +358324,358324 +374849,281144 +183961,183961 +357946,357946 +371313,371313 +93160,93160 +110778,110778 +245608,245608 +200176,200176 +30206,30206 +209739,209739 +63042,63042 +391221,140 +35178,35178 +137275,137275 +329582,329582 +17518,17518 +332556,332556 +14795,14795 +426778,426778 +73894,73894 +398719,398719 +176613,176613 +151412,151412 +246695,246695 +56455,56455 +116156,116156 +404168,404168 +11718,11718 +132674,132674 +42234,42234 +20370,20370 +116571,116571 +415257,415257 +351008,351008 +337358,337358 +200064,200064 +170317,170317 +301393,301393 +24587,24587 +40039,40039 +341902,341902 +32073,32073 +376565,376565 +55318,55318 +302942,302942 +48079,48079 +219969,219969 +200210,200210 +306993,306993 +284445,284445 +294225,294225 +36559,36559 +426587,89383 +256811,256811 +28376,28376 +96918,96918 +67304,67304 +144975,144975 +32079,32079 +19751,19751 +423723,423723 +8898,8898 +366317,366317 +152142,152142 +420858,420858 +87416,87416 +230388,230388 +13325,13325 +16848,16848 +191446,191446 +195902,195902 +33076,33076 +430540,8690 +134762,134762 +125063,125063 +149917,149917 +230412,230412 +18926,18926 +16592,16592 +92387,92387 +35611,35611 +40032,40032 +378033,378033 +432376,432376 +268696,268696 +112213,112213 +191717,191717 +159096,159096 +54804,54804 +432084,432084 +36936,36936 +351728,351728 +80825,80825 +230309,230309 +43032,43032 +12769,12769 +202636,202636 +152791,152791 +301829,301779 +175032,175032 +195344,195344 +276110,276110 +281478,281478 +82962,82962 +42814,42814 +425875,22126 +401514,401514 +226949,226949 +203068,203068 +97979,97979 +211702,25729 +200543,200543 +107010,107010 +28658,28658 +283803,283803 +135772,135772 +223493,223493 +380698,380698 +416932,416932 +334837,334837 +314891,314891 +300123,300123 +352553,352553 +427225,427225 +133948,133948 +429394,429394 +173824,173824 +14928,14928 +66946,66946 +349904,349904 +358963,358963 +274550,274550 +68654,68654 +405301,405301 +410965,410965 +427811,427811 +299827,299827 +300018,300018 +121332,121332 +314628,314628 +230644,230644 +138523,138523 +409275,409275 +113471,113471 +15949,15949 +182547,182547 +15378,15378 +157878,157878 +299254,299254 +64272,64272 +28912,28912 +222693,222693 +333525,333525 +131407,131407 +62944,62944 +29899,29899 +136778,136778 +423178,423178 +32577,32577 +25591,25591 +227989,227989 +317906,317906 +293150,293150 +431674,431674 +362392,362392 +136291,136291 +254056,254056 +425462,425462 +29650,29650 +299076,299076 +191126,191126 +36213,36213 +136783,136783 +430327,430327 +36198,36198 +90224,90224 +41294,41294 +305678,305678 +147312,147312 +71999,71999 +64386,64386 +361564,8435 +269508,269508 +307253,307253 +197827,197827 +405309,405309 +388964,388964 +249284,249284 +171990,171990 +66472,66472 +29110,29110 +227556,227556 +114320,114320 +282533,9610 +425793,463 +378490,378490 +381319,381319 +251186,251186 +276833,276833 +66470,66470 +68024,68024 +125004,125004 +419956,419956 +418813,418813 +402179,402179 +23518,23518 +23516,23516 +419903,419903 +331548,331548 +324878,324878 +246980,246980 +6477,6477 +11579,11579 +32010,32010 +26701,26701 +39054,39054 +423578,423578 +82143,82143 +418690,418690 +427349,427349 +155734,155734 +92324,92324 +157050,157050 +433415,433415 +256597,256597 +251470,251470 +341948,341948 +333428,333428 +202968,202968 +302720,302720 +27774,27774 +175687,175687 +175705,175705 +420666,420666 +69091,69091 +406699,406699 +414045,414045 +287091,287091 +138662,138662 +290981,290981 +386419,386419 +323876,323876 +31749,31749 +43313,43313 +32349,32349 +139616,139616 +66751,66751 +122798,122798 +26051,26051 +103805,103805 +173417,173417 +34274,34274 +67843,67843 +405040,405040 +388517,388517 +29900,29900 +385577,385577 +67294,67294 +344571,344571 +308717,308716 +128216,128216 +382542,382542 +33411,33411 +95609,95609 +425144,425144 +426634,426634 +420366,420366 +258619,258619 +422819,422819 +43012,43012 +90518,90518 +339137,339137 +115936,115936 +340006,340006 +40639,40639 +13046,13046 +368361,368361 +430020,430020 +18436,18436 +130326,130326 +240519,240519 +25576,25576 +125546,125546 +29409,29409 +266630,266630 +388426,388426 +424985,424985 +421945,421945 +35249,35249 +389737,389737 +237853,237855 +32974,32974 +368635,39206 +206058,206058 +406655,406655 +35552,35552 +391020,391020 +64063,64063 +137210,137210 +237437,237437 +380055,380055 +7000,7000 +9492,9492 +58635,58635 +15761,15761 +264763,264763 +417447,417447 +370582,370582 +61124,61124 +381667,381667 +67850,67850 +357164,357164 +152266,152266 +111800,111800 +315581,315581 +292799,292799 +433233,433233 +410893,410893 +255223,255223 +365776,365776 +58319,58319 +274722,274722 +133130,133130 +29616,29616 +24729,24729 +197453,197453 +128203,128203 +224766,224766 +102502,102502 +221685,221685 +44574,44574 +108718,108718 +94472,94472 +340893,340893 +366933,366933 +332555,332555 +32534,32534 +425076,425076 +32717,32717 +341988,341988 +403611,403611 +209695,209695 +205672,205672 +312038,204895 +14421,14421 +14494,14494 +228312,228312 +164728,164728 +318934,318934 +369668,369668 +405079,405079 +23758,23758 +19388,19388 +426174,426174 +29213,29213 +37609,37609 +363621,363621 +65423,65423 +219418,219418 +309975,309975 +289390,289390 +324881,324881 +28603,28603 +311967,112745 +20358,20358 +10862,10862 +334402,334402 +431157,431157 +35455,35455 +281383,281383 +428118,428118 +414821,414821 +352318,352318 +27809,27809 +429157,429157 +114225,114225 +433744,433744 +17015,17015 +42021,42021 +34288,34288 +31474,31474 +371145,371145 +382585,382585 +71152,71152 +65863,65863 +213769,213769 +27986,27986 +203798,203798 +373777,373777 +279059,279059 +369049,369049 +382673,11284 +225826,225826 +297881,17220 +145555,145555 +428845,224983 +26930,26930 +41619,41619 +402422,402422 +338564,338564 +32780,32780 +136288,136288 +125863,125863 +299269,240626 +262272,262272 +419189,419189 +21228,21228 +349677,349677 +181486,181486 +116837,116837 +118394,118394 +425117,425117 +22330,22330 +67432,67432 +236977,194627 +176934,176934 +245393,245393 +42724,42724 +137108,137108 +266636,266636 +39267,39267 +223991,223991 +400206,400206 +41925,349872 +298303,298303 +37848,37848 +432661,432661 +426104,426104 +99533,99533 +37544,37544 +327761,336962 +344753,344753 +335115,335115 +174482,174482 +23474,23474 +217199,217199 +321636,342233 +286847,286847 +242229,242229 +246674,246674 +154861,154861 +432215,432215 +431180,431180 +37655,37655 +290973,290973 +419455,419455 +27390,27390 +59468,59468 +427205,427205 +43073,43073 +84775,84775 +39702,39702 +182237,182237 +238386,238386 +36454,36454 +432257,432257 +332182,332182 +142966,142966 +64471,64471 +326377,326377 +329701,329701 +406189,406189 +184962,184962 +224543,224543 +286227,286227 +85366,85366 +333789,333789 +177150,177150 +15437,15437 +73621,73621 +130472,130472 +26399,26399 +27209,27209 +393858,393858 +272146,272146 +421614,421614 +350227,350227 +111288,111288 +360064,360064 +398761,398761 +170775,170775 +168276,168276 +327575,327575 +358755,358755 +142553,142553 +197794,197794 +123456,123456 +340942,340942 +326374,326374 +43447,43447 +410836,410836 +162657,162657 +431324,431324 +65679,65679 +70570,70570 +420009,420009 +154539,154539 +20177,20177 +110530,110530 +403780,403780 +365568,365568 +322808,292962 +353672,353672 +339071,339071 +407963,407963 +363082,363082 +232208,232208 +237107,237107 +253164,253164 +162891,162891 +67761,67761 +27831,27831 +348734,348734 +47085,47085 +359938,311020 +425110,425110 +182010,182010 +402056,402056 +25323,25323 +62366,62366 +360344,360344 +179247,179247 +25009,25009 +294889,294889 +329353,329353 +330666,330666 +36450,36450 +110641,110641 +402519,402519 +408307,408307 +240546,240546 +387168,387168 +367240,368215 +361567,361567 +352086,352086 +403110,403110 +10076,10076 +339240,339240 +72286,72286 +365003,365003 +101369,101369 +427039,227466 +118466,118466 +353581,353581 +136631,136631 +26328,26328 +344078,344078 +126248,126248 +417809,417809 +409665,88080 +153561,153561 +59531,59531 +311519,311519 +427093,427093 +162279,162279 +256408,256408 +187666,187666 +64292,64292 +374365,374365 +433745,178038 +332191,332191 +336793,336793 +322441,322441 +40564,40564 +253509,253509 +165871,165871 +420864,420864 +273565,273565 +337101,337101 +15018,15018 +195114,195114 +410681,410681 +128520,128520 +429052,429052 +43469,43469 +214131,214131 +383695,383695 +264401,264401 +37041,37041 +420753,420753 +151391,151391 +298473,298473 +299267,240626 +403428,403428 +43534,43534 +201512,201512 +373718,373718 +325315,325315 +361223,361223 +222703,37712 +28525,28525 +390367,390367 +28950,28950 +113830,113830 +267633,267633 +63872,63872 +405981,405981 +383593,383593 +116788,116788 +15538,15538 +425085,425085 +419107,419107 +348050,348050 +47107,47107 +147876,147876 +34242,34242 +149385,149385 +137645,137645 +428196,428196 +110719,110719 +218335,218335 +171713,171713 +426130,426130 +432070,432070 +322107,322107 +64289,64289 +123588,123588 +43350,43350 +351331,351331 +298526,298526 +244055,244055 +129700,129700 +133847,133847 +335852,335852 +38838,38838 +244599,244599 +305487,305487 +301182,301182 +162027,162027 +33743,33743 +136266,136266 +240592,240592 +151383,151383 +144326,144326 +238806,238806 +164092,164092 +192556,192556 +183276,183276 +305580,305580 +32113,32113 +416729,416729 +184057,184057 +182236,182236 +412560,412560 +127123,127123 +35108,35108 +65462,65462 +105349,105349 +181560,181560 +40126,40126 +64241,64241 +63038,63038 +274291,274291 +371211,371211 +150870,150870 +326179,326179 +353579,353579 +43449,43449 +228661,228661 +396319,396319 +257953,257953 +264423,264423 +304312,304312 +57307,57307 +152307,152307 +67292,67292 +359606,359606 +127699,127699 +180081,180081 +282030,282030 +14644,14644 +426476,3139 +234656,234656 +205236,205236 +13413,13413 +169942,169942 +175325,175325 +353770,353770 +206838,206838 +138049,138049 +66585,66585 +33127,33127 +70510,70510 +289969,289969 +337228,337228 +270730,270730 +39533,39533 +304387,304387 +88469,88469 +6329,6329 +212686,212686 +251036,251036 +65191,65191 +128182,128182 +431593,431593 +434135,434135 +432705,432705 +19638,19638 +427643,427643 +144113,144113 +370145,370145 +18646,18646 +35799,35799 +228087,228087 +43000,43000 +394987,394987 +238098,238098 +138163,138163 +11233,11233 +218686,218686 +379345,379345 +416693,86156 +382550,382550 +251584,251584 +223615,223615 +287040,11228 +402481,402481 +25893,25893 +432214,432214 +422544,463 +277566,277566 +41676,41676 +147865,147865 +42435,42435 +354472,354472 +144613,144613 +278287,278287 +13793,13793 +35683,35683 +35513,35513 +323318,323318 +32509,32509 +430320,430320 +205823,205823 +327412,327412 +12824,12824 +143559,143559 +26954,26954 +206182,206182 +385423,385423 +366037,366037 +305914,305914 +27056,27056 +69781,69781 +98428,98428 +95007,95007 +359039,359039 +89530,89530 +17017,17017 +306675,306675 +318706,318706 +303228,303228 +104439,121893 +188897,188897 +406253,406253 +350245,350245 +36115,36115 +41367,41367 +65024,65024 +123360,123360 +66722,66722 +106042,106042 +148435,148435 +43466,43466 +72009,72009 +28537,28537 +427562,427562 +295095,295095 +301801,301801 +46982,46982 +334311,334311 +144403,144403 +336661,336661 +315360,315360 +69939,69939 +50554,50554 +410957,410957 +363901,363901 +321721,321721 +30693,30693 +344046,344046 +206542,206542 +422161,422161 +335960,335960 +278151,278151 +434433,434433 +98489,98489 +165293,165293 +422460,422460 +129846,129846 +159899,134884 +16876,16876 +380113,380113 +136258,136258 +99642,99642 +419459,419459 +431092,431092 +33021,33021 +34122,34122 +341397,17294 +406675,406675 +252506,252506 +98276,98276 +178398,178398 +29750,29750 +23386,23386 +421186,421186 +420059,420059 +20849,20849 +59711,59711 +275637,126020 +428751,428751 +168525,168525 +383546,383546 +13708,13708 +15566,15566 +64273,64273 +90782,90782 +160751,160751 +100009,100009 +72302,72302 +414191,414191 +121528,121528 +412892,204836 +228807,228807 +53239,53239 +30408,30408 +431680,431680 +28937,28937 +255188,255188 +36357,36357 +177769,177769 +107567,107567 +339548,339548 +311306,311306 +23475,23475 +84883,84883 +173780,173780 +302913,302913 +37240,37240 +91814,91814 +149568,149568 +254596,254596 +431168,431168 +386473,386473 +333855,333855 +143497,143497 +301621,301621 +434035,434035 +36601,36601 +182481,182481 +36223,36223 +58028,58028 +58631,58631 +76318,76318 +330684,330684 +405569,405569 +427699,427699 +431478,270350 +39269,39269 +165795,165795 +43412,43412 +352312,352312 +209581,209581 +278987,278987 +261159,159865 +43182,43182 +129691,129691 +407216,407213 +157319,157319 +427740,427740 +52492,52492 +197890,197890 +420483,420483 +207004,207004 +18433,18433 +87114,87114 +343746,343746 +335917,335917 +309271,309271 +405701,405701 +303642,303642 +84620,84620 +24394,24394 +249071,249071 +312778,312778 +111235,111235 +72118,72118 +377176,463 +167457,167457 +109466,109466 +27564,27564 +269266,269266 +197461,197461 +35411,35411 +11592,11592 +157462,157462 +398170,398170 +209239,209239 +430399,430399 +420538,420538 +20556,20556 +364560,364560 +69203,69203 +161645,161645 +181488,181488 +362084,362084 +431596,431596 +36471,36471 +57770,57770 +322549,322549 +55030,55030 +329957,329957 +71387,71387 +355331,355331 +341234,341234 +72761,72761 +19401,19401 +22462,22462 +37528,37528 +19602,19602 +42488,42488 +331305,176574 +430482,430482 +357639,357639 +39638,39638 +23937,23937 +125892,125892 +185458,185458 +154288,154288 +43296,43296 +123933,123933 +421811,421811 +32801,32801 +396342,396342 +77803,77803 +432683,262498 +292144,292144 +19014,19014 +115603,115603 +116561,116561 +12927,12927 +376170,376170 +25640,25640 +343157,343157 +309304,309304 +432573,432573 +131442,131442 +134653,134653 +127116,127116 +421499,421499 +151381,151381 +25930,25930 +169812,169812 +166557,166557 +24187,24187 +36781,36781 +62648,62648 +202398,202398 +145846,145846 +210748,210748 +85189,85189 +232601,232601 +30038,30038 +434406,434406 +229501,229501 +301259,301259 +163674,163674 +41695,41695 +329621,329621 +186656,186656 +402390,402390 +67895,67895 +129570,129570 +28148,28148 +38600,38600 +412812,139221 +98563,98563 +149434,149434 +154806,154806 +357417,357417 +370677,370677 +110458,110458 +250657,250657 +58825,58825 +91681,91681 +348720,348720 +433453,433452 +149576,149576 +94494,94494 +154492,154492 +42166,42166 +428208,428208 +28191,28191 +382137,25245 +33079,33079 +340880,340880 +379874,379874 +363345,363345 +9325,9325 +73014,73014 +333860,333860 +256504,256504 +9124,9124 +123323,123323 +344845,344845 +35127,35127 +222644,222644 +7136,7136 +176059,176059 +88465,88465 +417258,417258 +81032,81032 +35883,35883 +138708,138708 +38020,38020 +434654,434654 +53745,53745 +93210,93210 +429269,429269 +398704,398704 +41729,41729 +98447,98447 +315359,315359 +420016,420016 +354330,354330 +414700,414700 +146260,146260 +33435,33435 +130797,130797 +87253,87253 +291570,291570 +112746,112746 +155367,155367 +357562,357562 +211167,211167 +35898,35898 +116003,116003 +369932,369932 +67305,67305 +134861,134861 +13534,13534 +395519,395519 +41601,41601 +425972,425972 +230444,230444 +258370,258370 +339934,339934 +344979,344979 +131743,131743 +302736,302736 +37067,37067 +413994,256152 +98063,98063 +353215,353215 +22153,22153 +4144,4144 +152998,152998 +110305,110305 +377385,377385 +335956,335956 +419800,419800 +326572,203958 +32662,32662 +97452,97452 +75982,75982 +134738,134738 +276829,276829 +171993,171993 +138519,138519 +296879,296879 +107858,107858 +282067,282067 +85207,85207 +110464,110464 +145144,145144 +139366,139366 +231448,231448 +296070,296070 +20103,20103 +433914,433914 +23753,23753 +406545,406545 +119394,119394 +414522,414522 +387374,387374 +169551,169551 +29994,29994 +370759,370759 +430983,430983 +258695,258695 +20663,20663 +59710,59710 +162799,162799 +321955,321955 +360683,360683 +2107,2107 +403290,403290 +77221,77221 +92199,92199 +120256,120256 +122446,122446 +33263,33263 +149244,149244 +156215,156215 +28987,28987 +327005,125758 +335865,335865 +197039,197039 +66108,66108 +428611,428611 +284231,284231 +37366,37366 +406328,406328 +34161,34161 +408621,408621 +34201,34201 +35593,35593 +373598,373598 +422877,422877 +180132,180132 +326920,326920 +364180,364180 +57138,57138 +193797,193797 +59472,59472 +59714,59714 +123207,123207 +273469,273469 +321225,321225 +71271,71271 +157786,157786 +53832,53832 +19144,19144 +38070,38070 +30220,30220 +14773,14773 +339695,339695 +430777,430777 +294757,294757 +380662,380662 +294598,294598 +11734,11734 +354863,354863 +70587,70587 +322627,322627 +30912,30912 +271284,271284 +278541,278541 +331129,331129 +31468,31468 +348729,348729 +31636,31636 +122945,122945 +16430,16430 +200120,200120 +181424,181424 +50448,50448 +35121,35121 +204896,204896 +20340,20340 +426868,379706 +157288,157288 +35622,35622 +43422,43422 +293235,293235 +366717,366717 +41067,41067 +4660,4660 +36755,36755 +300333,300333 +101759,101759 +257628,257628 +402513,402513 +108939,463 +126375,126375 +310050,310050 +15079,15079 +168291,168291 +354289,354289 +16292,16292 +199180,199180 +354668,354668 +233870,233870 +31121,31121 +332299,332299 +422604,422604 +286969,286969 +299110,299110 +344291,344291 +336181,336182 +155121,155121 +318933,319043 +28909,28909 +353680,353680 +420270,420270 +335160,335160 +128164,128164 +264665,264665 +39766,39766 +157585,157585 +427582,427582 +345927,345927 +430377,430377 +334819,334819 +120277,120277 +222243,222243 +281745,281745 +347131,347131 +128136,128136 +193201,193201 +407978,228081 +125949,125949 +309718,309718 +119097,119097 +142329,142329 +335731,335731 +430355,430355 +358111,358111 +202888,202888 +181105,181105 +432401,432401 +67290,67290 +405733,405733 +416664,416664 +30434,30434 +38278,38278 +282042,282042 +30796,30796 +18911,18911 +316505,1421 +133074,133074 +30969,30969 +85007,85007 +36349,36349 +42392,42392 +229601,229601 +319878,319878 +28184,28184 +335439,335439 +18430,18430 +351722,351722 +326806,326806 +42947,42947 +116852,116852 +88989,88989 +83703,83703 +138522,138522 +28667,28667 +160122,160122 +255384,255384 +229547,229545 +14425,14425 +33410,33410 +399870,399870 +326735,326735 +155053,155053 +277939,277939 +357206,357206 +14750,14750 +300052,300052 +429523,429523 +416773,416773 +81036,81036 +414129,414129 +12148,12148 +25838,25838 +36307,36307 +5761,5761 +335900,335900 +404499,404499 +299649,299649 +289206,289206 +414356,414356 +298558,298558 +57975,57975 +409834,409834 +353233,353233 +216815,216815 +281475,281475 +272400,272400 +402058,402058 +31874,31874 +36279,36279 +342285,342285 +416692,24310 +68886,68886 +379411,379411 +307188,307188 +240517,240517 +14811,14811 +352400,352400 +431159,431159 +145636,145636 +146682,146682 +196433,196433 +173228,173228 +58789,58789 +27775,27775 +418602,418602 +31153,31153 +294697,294697 +302674,302674 +161777,161777 +114524,114524 +5159,5159 +196170,196170 +429305,429305 +17882,17882 +307664,307664 +115520,115520 +362351,362351 +28439,28439 +34217,34217 +300117,300117 +17550,17550 +258690,258690 +432149,11531 +430628,430628 +27370,27370 +434216,434216 +90647,90647 +37016,37016 +309130,309130 +322836,322836 +291065,291065 +29850,29850 +23734,23734 +42065,42065 +379823,379823 +347535,347535 +326163,326163 +39929,39929 +430130,430130 +62365,62365 +95448,95448 +84266,84266 +96064,96064 +208218,208218 +346464,346464 +226056,226056 +229541,229541 +406678,406678 +169815,169815 +381512,381512 +193084,193084 +66860,66860 +289597,289597 +44006,44006 +429058,429058 +35793,35793 +213884,213884 +109465,109465 +63005,63005 +433522,433522 +36275,36275 +162806,162806 +27566,27566 +238217,238217 +117933,117933 +335624,335624 +433439,433439 +30349,30349 +300466,300466 +336073,336073 +393569,393617 +338850,338850 +163125,163125 +325527,325527 +177243,177243 +15516,15516 +362932,362932 +200499,200499 +129386,129386 +143132,143132 +434443,434443 +31199,31199 +338371,338371 +427351,427351 +114496,114496 +47307,47307 +357863,357863 +99806,99806 +420982,420982 +108360,108360 +430421,430421 +253005,253005 +385959,385959 +53294,53294 +334753,334753 +399939,399939 +91807,91807 +351520,351520 +198004,198004 +155687,155687 +381233,381233 +367824,367824 +32586,32586 +124018,124018 +39523,39523 +265065,265065 +425299,287158 +329929,329929 +35287,35287 +196123,196123 +62345,62345 +311207,311207 +34425,34425 +126931,126931 +223241,223241 +431412,431412 +23172,23172 +113404,113404 +62887,62887 +260860,260860 +38125,38125 +404839,404839 +69557,69557 +104584,104584 +418255,418255 +261375,261375 +17873,17873 +296442,296442 +59268,59268 +97141,97141 +320368,320368 +63962,63962 +61332,61332 +274714,274714 +123313,123313 +186594,186594 +378067,378067 +404027,404027 +144857,144857 +264519,264519 +395419,395419 +378364,378364 +309827,247258 +433408,433408 +210388,210388 +42249,42249 +30498,30498 +169509,169509 +370777,370777 +342103,342103 +145804,145804 +159172,159172 +313500,313500 +340606,340606 +358105,358105 +434117,434117 +38119,38119 +34546,34546 +178734,178734 +276153,276153 +393291,393291 +247555,247555 +417901,417901 +186821,186821 +20284,20284 +67015,67015 +423312,423312 +100109,100109 +291493,291493 +411388,411388 +109388,109388 +223598,223598 +94360,94360 +34803,34803 +313264,313264 +406101,406101 +104258,104258 +36214,36214 +421287,421287 +14252,14252 +407810,407810 +38999,38999 +15996,15996 +13167,13167 +129718,129718 +276228,276228 +27797,27797 +97503,97503 +433823,433823 +173794,173794 +32459,32459 +309301,309301 +282473,282473 +279673,279673 +379934,379934 +203082,203082 +177803,177803 +214885,214885 +322301,322301 +125095,125095 +22174,22174 +136263,136263 +307007,307007 +49324,49324 +80299,80299 +97408,97408 +407705,407705 +433756,433756 +27849,27849 +33284,33284 +23910,23910 +298452,298452 +36974,36974 +19536,19536 +138725,138725 +318652,318652 +359058,359058 +289849,289849 +394079,394079 +120337,120337 +159394,159394 +424237,424237 +197231,197231 +14744,14744 +359842,359842 +285389,285389 +333153,333153 +29187,29187 +345090,345090 +423737,423737 +258290,258290 +42537,42537 +111323,111323 +229625,229625 +18411,18411 +224129,224129 +350946,350946 +380840,380840 +108751,108751 +27808,27808 +433705,433705 +176579,176579 +292392,292392 +63351,63351 +3172,3172 +132771,132771 +403687,403687 +4520,4520 +323168,323168 +21606,21606 +34088,34088 +26526,26526 +327113,327113 +201692,201692 +25032,25032 +37839,37839 +324943,324943 +38968,38968 +314081,314081 +432809,432809 +95509,95509 +399448,399448 +79514,79514 +312673,312673 +408872,408872 +214024,214024 +353914,353914 +393574,393617 +96097,96097 +24478,24478 +302025,302024 +287128,287128 +316993,316993 +419698,271460 +415259,17405 +404217,404217 +280212,280212 +399114,399114 +27539,27539 +9900,9900 +308823,308823 +29082,29082 +243693,243693 +127136,127136 +264505,264505 +372121,372121 +183217,183217 +143670,143670 +405290,405290 +63866,63866 +134005,134005 +148609,148609 +19225,19225 +99970,99970 +218011,218011 +65895,65895 +426468,426468 +23152,23152 +99515,99515 +19223,19223 +329506,329506 +127351,127351 +144229,144229 +234579,234579 +192410,192410 +63103,63103 +30076,30076 +396897,396897 +181369,181369 +376648,376648 +357940,357940 +37010,37010 +152414,152414 +139457,139457 +76323,76323 +219453,219453 +334923,334923 +377450,377450 +411897,411897 +15699,15699 +65637,65637 +140280,140280 +120207,119931 +249494,249494 +36378,36378 +11781,11781 +253958,253958 +416185,416185 +322941,322941 +140136,140136 +329558,329558 +418085,418085 +252970,252970 +211924,211924 +431830,431830 +28161,28161 +39980,39980 +180030,202329 +69858,69858 +254096,254096 +293828,293828 +310190,310190 +400210,400210 +69911,69911 +432281,432281 +18048,18048 +129283,129283 +135761,135761 +149392,149392 +221686,221686 +307955,307955 +423991,423991 +25366,25366 +26994,26994 +400719,400719 +177153,177153 +148265,148265 +302466,302466 +173942,173942 +86219,86219 +63096,63096 +302061,302061 +333297,333297 +13342,13342 +63185,63185 +324586,324586 +39541,39541 +86905,86905 +275058,275058 +132103,132103 +239173,239173 +411866,411866 +263199,263199 +260647,260647 +29217,29217 +233562,233562 +159667,159667 +249820,249820 +339600,339600 +137221,137221 +169428,169428 +158505,158505 +69429,69429 +34401,34401 +66967,66967 +62528,62528 +189016,189016 +421939,421939 +20035,20035 +14020,14020 +272063,272063 +323974,323974 +354207,354203 +328626,328626 +41221,41221 +68807,68807 +374363,374363 +389097,389097 +19295,19295 +125788,125788 +268796,268796 +407192,407192 +11306,11306 +375972,375972 +31326,31326 +253350,253350 +152310,152310 +338144,338144 +113299,113299 +36161,36161 +109967,109967 +406873,406873 +20718,20718 +334917,334917 +63428,63428 +43106,43106 +44653,44653 +433113,433113 +36447,36447 +132415,132415 +433479,433479 +381480,381480 +34460,34460 +109607,109607 +372471,372471 +325231,325231 +298120,298120 +115551,115551 +46392,46392 +65774,65774 +256591,256591 +272055,272055 +39928,39928 +173903,173903 +113295,113295 +377059,377059 +378930,378930 +180544,180544 +421139,421139 +305046,305046 +274431,274431 +246968,246968 +355070,355070 +432804,432804 +37076,37076 +350318,350318 +227451,227451 +250277,250277 +142301,142301 +133607,133607 +340197,340197 +149867,149867 +428381,428381 +137411,137411 +29780,29780 +154232,154230 +31211,31211 +428441,428441 +335548,335548 +24728,24728 +81869,81869 +152550,152550 +42855,42855 +137667,137667 +37258,37258 +402485,402485 +332400,332400 +34208,34208 +263729,107549 +312037,204895 +14064,14064 +120498,120498 +425012,425012 +32413,32413 +318631,318631 +377677,377677 +23467,23467 +217355,217355 +239407,239407 +125877,125877 +295370,295370 +39273,39273 +255065,255065 +428721,428721 +386504,237501 +382776,382776 +138483,138483 +252213,252213 +30673,30673 +67167,67167 +27510,27510 +136874,136874 +173412,173412 +208102,208102 +30036,30036 +112933,112933 +175027,175027 +307177,307177 +22738,22738 +323823,323823 +105397,105397 +179947,179947 +186477,186477 +33847,33847 +85039,85039 +280860,280860 +11644,11644 +378699,325389 +170809,170809 +380783,380783 +300073,7071 +332154,332154 +223773,223773 +386758,386758 +195463,195463 +325325,325325 +63466,63466 +267902,267902 +27009,27009 +32737,32737 +88397,88397 +16201,16201 +160006,160006 +404171,404171 +129128,129128 +270674,270674 +281665,281665 +425479,425479 +388066,388066 +38103,38103 +32576,32576 +25355,25355 +407013,407013 +135399,135399 +264508,264508 +404358,404358 +284451,284451 +38100,38100 +41270,41270 +195910,195910 +133227,133227 +42815,42815 +119992,119992 +342641,342641 +267739,267739 +169646,169646 +24477,24477 +12987,12987 +11933,11933 +319194,319194 +373535,373535 +29430,29430 +30709,30709 +418967,418967 +204126,204126 +328420,328420 +40223,40223 +401965,401965 +101947,101947 +66659,66659 +175524,175524 +31626,31626 +119626,119626 +286032,286032 +161963,161963 +406906,406906 +29165,29165 +426865,426865 +416950,416950 +142368,142368 +304596,304596 +155705,155705 +435062,435062 +141029,141029 +338738,338738 +410596,410596 +421799,421799 +59377,59377 +36565,36565 +156670,156670 +122657,122657 +37017,37017 +138656,138656 +171372,171372 +421543,421543 +380251,380251 +51316,51316 +267055,267055 +116553,116553 +278444,278444 +163965,163965 +11065,11065 +40359,40359 +304616,304616 +415863,415863 +35783,35783 +404057,404057 +285206,285206 +291776,291776 +328638,328638 +412462,412462 +51318,51318 +346480,346481 +124252,124252 +355989,355989 +228600,228600 +415558,415558 +302132,302132 +65619,65619 +23601,23601 +173940,173940 +24981,24981 +181183,181183 +306976,306976 +70086,70086 +338651,338651 +34737,34737 +40431,40431 +410438,834 +320696,320696 +274479,274479 +425255,425255 +372841,372841 +34872,34872 +334862,334862 +348400,348400 +223827,223827 +348805,348805 +297525,297525 +188511,188511 +270629,270629 +415785,411421 +47232,47232 +297349,297349 +338234,338234 +37043,37043 +410282,410282 +309288,309288 +184037,184037 +395314,395314 +54461,54461 +370640,370640 +61358,61358 +91331,91331 +89422,89422 +253524,253524 +130494,130494 +365436,365436 +37607,37607 +231359,231359 +431563,431563 +144321,144321 +54674,54674 +37959,37959 +150753,150753 +157732,157732 +133290,133290 +395924,395924 +154542,154542 +25357,25357 +394219,394219 +244849,244849 +407014,407012 +344572,344572 +409977,409977 +251388,251388 +24542,24542 +391790,391790 +216421,276161 +102791,102791 +422072,422072 +400044,400044 +122164,122164 +261429,261429 +330949,330949 +398150,398253 +405776,405776 +97311,97311 +416212,416212 +123658,123658 +134938,134938 +356317,356317 +358959,358959 +413499,413499 +109556,109556 +21609,21609 +313712,313712 +323877,323877 +411338,411338 +137144,137144 +96667,96667 +327997,327997 +197733,197733 +162613,162613 +260764,463 +40543,40543 +393854,393854 +157681,157681 +176488,176488 +19729,19729 +428757,428757 +304607,304607 +392384,392384 +35646,35646 +335622,335622 +248611,248611 +42931,42931 +427899,427899 +116569,116569 +178523,178523 +226053,226053 +375958,375958 +422985,422985 +139901,139901 +349612,349612 +26713,26713 +134229,134229 +36442,36442 +430068,430068 +24685,24685 +156939,156939 +131939,131939 +151405,151405 +110151,110151 +378036,378036 +64454,64454 +137170,137170 +138454,138454 +24462,24462 +37213,37213 +252386,252386 +57108,57108 +31120,31120 +123492,123492 +311943,311943 +23737,23737 +387575,387575 +39983,39983 +118450,118450 +112838,112838 +406520,406520 +31221,31221 +334928,334928 +434549,434549 +341930,341930 +350780,350780 +127612,127612 +109467,109467 +198485,198485 +113109,113109 +401099,401099 +151795,299821 +430435,430435 +133859,133859 +261401,261401 +381204,381204 +378536,378536 +136958,136958 +14984,14984 +7073,7073 +18412,18412 +110709,110709 +340090,340090 +293997,293997 +124725,124725 +38602,38602 +419498,419498 +128494,128494 +317389,317389 +130175,130175 +322032,322032 +178715,178715 +374547,284639 +218915,218915 +36812,36812 +168336,168336 +420909,420909 +149340,149340 +325508,325508 +358336,358336 +38594,38594 +137041,137041 +325459,325459 +423102,423102 +419558,419558 +60859,60859 +417565,417565 +26246,26246 +365176,365176 +153172,153172 +395810,395810 +195109,195109 +419999,419999 +433514,433514 +59355,59355 +425399,425399 +166353,166353 +416198,416198 +67300,67300 +334468,334468 +432410,432410 +339050,339050 +40623,40623 +2351,2351 +276318,276318 +177013,177013 +357656,357656 +432916,295147 +51603,51603 +66584,66584 +131153,131153 +244003,244003 +309286,309286 +90779,90779 +102002,102002 +402491,402491 +359968,359968 +402528,402528 +122309,122309 +254526,254526 +158620,158620 +307045,307045 +355552,355552 +198521,198521 +383494,383494 +127787,127787 +360169,360169 +20962,20962 +391300,391300 +434430,700 +178645,178645 +119100,119100 +157207,157207 +142320,142320 +23439,23439 +233991,233991 +299059,299059 +118317,118317 +46112,46112 +371841,371841 +431859,431859 +386544,386544 +127122,127122 +28001,28001 +122719,122719 +296794,296794 +219667,219667 +420465,420465 +391043,391043 +323878,323878 +23566,23566 +310195,310195 +23303,23303 +134430,134430 +411340,294810 +41245,41245 +298148,298148 +344833,344833 +234364,234364 +407928,407928 +290550,290551 +423154,271460 +14197,14197 +150176,150176 +219719,219719 +173207,173207 +388624,388624 +27503,27503 +41686,41686 +387936,266381 +118680,118680 +424630,424630 +23775,23775 +30189,30189 +169636,169636 +70318,70318 +67794,67794 +402820,402820 +363130,311332 +182416,182416 +57671,57671 +149695,149695 +405706,405706 +37951,37951 +425868,425868 +234943,234943 +69744,69744 +247500,247500 +313930,313930 +176566,176566 +87967,87967 +128992,128992 +83878,83878 +359791,359791 +209021,209021 +140673,463 +272053,272053 +113397,113397 +148756,148756 +131553,131553 +42755,42755 +42329,42329 +402385,402385 +205261,205261 +143304,102622 +334328,334328 +425202,425202 +337172,337172 +60934,60934 +32882,32882 +69974,69974 +421240,421240 +431451,431451 +328609,328609 +72209,72209 +72220,72220 +32580,32580 +38629,38629 +34569,34569 +381302,381302 +322025,322025 +111186,111186 +245506,245506 +122512,122512 +354026,354026 +177980,177980 +26882,26882 +335874,335874 +23515,23515 +124554,124554 +130524,130524 +400812,400812 +8688,8688 +340419,340419 +242290,463 +292766,292766 +177349,177349 +322432,322432 +434837,434837 +71004,71004 +173944,173944 +433786,433786 +160405,160405 +31346,31346 +46654,46654 +426620,406887 +431513,431513 +191589,148209 +419863,419863 +312885,312885 +432341,432341 +368449,368449 +335021,335021 +108139,108139 +57755,57755 +393740,393740 +350968,16640 +25145,25145 +98087,98087 +31876,31876 +242212,242212 +130071,130071 +286286,286286 +20776,20776 +24004,24004 +300849,300849 +16427,16427 +300438,300438 +67849,67849 +137659,12569 +328639,328639 +65866,65866 +15504,15504 +350345,350345 +133419,133419 +297584,297584 +296311,296311 +254365,254365 +18080,18080 +429970,429970 +39921,39921 +358835,358835 +327840,336962 +249877,249877 +424388,424388 +328666,328666 +425788,425788 +329431,329431 +172514,172514 +305562,305562 +126053,126053 +39528,39528 +109970,109970 +281395,281395 +60786,60786 +264626,264626 +146678,146678 +29686,29686 +400936,400936 +325428,325428 +381322,381322 +139199,139199 +268888,268888 +405075,405075 +37754,37754 +288935,160919 +410726,410726 +240616,240616 +353436,353436 +127517,127517 +358985,358985 +433346,433346 +180911,180911 +401696,401696 +65670,65670 +339365,339365 +367908,367908 +43425,43425 +405483,405483 +308264,308264 +212491,212491 +116097,116097 +379784,379784 +325147,325147 +400052,400052 +364693,364693 +378508,378508 +154390,154390 +175972,175972 +65785,65785 +20904,20904 +33426,33426 +109355,109355 +356006,356006 +375055,375055 +141411,141411 +375733,375733 +367990,367990 +21310,21310 +142737,142737 +311265,311265 +182779,182779 +266087,266087 +24092,24092 +10861,10861 +310878,310878 +189066,189066 +187094,187094 +22695,22695 +120438,120438 +160771,160771 +434655,434655 +64513,64513 +22138,22138 +401938,401938 +259920,259920 +400841,400841 +113072,113072 +434213,434213 +426449,426449 +432147,432147 +394879,394879 +165960,165960 +33064,33064 +410169,410169 +168316,168316 +169431,169431 +32089,32089 +118683,118683 +159925,159925 +313521,313521 +391220,391220 +319381,319381 +40836,40836 +46686,46686 +387833,387833 +38560,38560 +425939,425939 +333002,333002 +430132,430132 +413000,413000 +109765,109765 +432552,432552 +121972,121972 +16766,16766 +127200,127200 +154802,154802 +28651,28651 +296724,296725 +30338,30338 +89365,89365 +293704,293704 +431396,431396 +41773,41773 +409767,409767 +242082,242082 +116979,116979 +305470,305470 +159466,159466 +256522,256522 +109059,109059 +277718,277718 +122253,122253 +237003,237003 +171974,171974 +117795,117795 +30131,30131 +39830,39830 +104901,104901 +134174,134174 +39768,39768 +98749,98749 +65426,65426 +129436,129436 +392652,392652 +24917,24917 +99430,99430 +424944,424944 +387574,387574 +349366,349366 +259492,259492 +325533,325533 +337025,17909 +19022,19022 +8941,8941 +94125,94125 +31077,31077 +299873,299873 +43407,43407 +131275,131275 +434084,434084 +34000,34000 +18451,18451 +26877,26877 +434866,434866 +129161,129161 +389726,389726 +240566,240566 +199712,199712 +127386,127386 +402522,402522 +292820,292820 +363361,363361 +343987,343987 +193960,193960 +428399,428399 +404288,404288 +203311,203311 +311500,311500 +120363,120363 +380124,380124 +25598,25598 +16200,16200 +433909,433909 +392624,392624 +284400,284400 +401808,401808 +148337,148337 +38861,38861 +405875,405875 +237844,237844 +357264,357264 +108941,108941 +314832,271460 +431630,431630 +37529,37529 +68955,68955 +38520,38520 +147214,147214 +26664,26664 +317614,317614 +394281,394281 +245805,245805 +113310,113310 +66153,66153 +295049,295049 +104605,104605 +13585,13585 +427249,427249 +43072,43072 +134838,134838 +326481,326481 +95167,95167 +261489,261489 +101790,101790 +305674,305674 +182895,182895 +239637,239637 +251669,251669 +182360,182360 +396966,396966 +340133,340133 +43553,43553 +180600,180600 +18259,18259 +159875,159875 +207822,207822 +128294,128294 +302678,302678 +357909,357909 +114207,114207 +114297,114297 +28456,28456 +383288,383288 +58053,58053 +6027,6027 +327129,327129 +27368,27368 +309916,309916 +356879,356879 +174915,174915 +386643,386643 +335026,335026 +95775,95775 +339667,339667 +156636,156636 +29840,29840 +387382,387382 +66920,66920 +299342,299342 +26875,26875 +188363,188363 +361603,361603 +266364,266364 +151273,151273 +323972,323972 +422477,422477 +36449,36449 +407020,407020 +25362,25362 +346985,346985 +348287,348287 +23929,23929 +400375,400375 +280590,280590 +32847,32847 +64791,64791 +292787,292787 +306840,306840 +348156,348156 +88804,88804 +127348,127348 +349182,349182 +403658,403658 +434167,434167 +334911,334911 +361473,361473 +69585,69585 +338167,338167 +111405,111405 +428902,428902 +153074,153074 +291162,291162 +347939,347939 +168299,168299 +433404,257501 +119608,12585 +91646,91646 +345883,345883 +329935,329935 +26280,26280 +144172,144172 +425230,204498 +359063,359063 +422317,422317 +125849,125849 +405261,405261 +263713,263713 +37321,37321 +425020,425020 +430750,430750 +197238,197238 +298590,298590 +428538,366458 +429206,429206 +410161,410161 +26557,26557 +289262,289262 +127279,127279 +116790,116790 +111038,111038 +309761,309761 +336558,336558 +49888,49888 +64189,64189 +156544,156544 +161604,161604 +397830,397830 +26712,26712 +68901,68901 +406970,406970 +169980,169980 +157205,157205 +116236,116236 +388514,388513 +342419,342419 +137356,137356 +39037,39037 +66157,66157 +218466,218466 +262374,463 +37068,37068 +281095,281095 +69352,69352 +272389,272389 +353918,353918 +139878,139878 +130057,130057 +430348,430348 +195724,195724 +185225,185225 +89902,89902 +319851,319851 +171628,171628 +101834,101834 +253789,253789 +152438,152438 +369516,369516 +118444,118444 +309033,309033 +97981,97981 +59706,59706 +44123,44123 +428799,428799 +143532,143532 +31567,31567 +30541,30541 +346755,346755 +371808,371808 +90981,90981 +358954,358954 +38016,38016 +159204,159204 +71310,71310 +391890,391890 +151955,151955 +313789,313789 +91411,91411 +190597,190597 +26000,26000 +368560,368560 +36681,36681 +129060,129060 +323051,323051 +128416,128416 +32319,32319 +16598,16598 +251671,251671 +91099,91099 +342759,342759 +137211,137211 +426323,426323 +434860,434860 +329385,463 +423083,423083 +432288,387738 +16059,16059 +129818,129818 +415032,415032 +26776,26776 +73723,73723 +235885,235885 +191453,191453 +18639,18639 +205238,205238 +367927,367927 +269506,269506 +265978,265978 +434861,434861 +285136,285136 +6500,6500 +14579,14579 +433057,370095 +291950,291950 +66874,66874 +11142,11142 +435082,435082 +433679,433679 +208752,267902 +149382,149382 +313832,313832 +361233,361233 +176587,176587 +429405,429405 +58044,58044 +33668,33668 +80446,80446 +270004,270004 +145905,145905 +28894,28894 +309774,309774 +352604,352604 +109872,109872 +228317,228317 +313210,313210 +430456,430456 +423814,423814 +96774,96774 +29552,29552 +377962,377962 +421552,421552 +93098,93098 +227573,227573 +162778,162778 +395638,395638 +31910,31910 +231114,231114 +429849,429849 +113159,113159 +42877,42877 +98445,98445 +18416,18416 +57968,57968 +323818,323818 +359243,359243 +24649,24649 +30707,30707 +39846,39846 +13494,13494 +262504,262504 +11817,11817 +164508,164508 +309029,309029 +431990,431990 +12767,12767 +264942,264942 +120318,120318 +123429,123429 +25364,25364 +402497,402497 +33450,33450 +209240,209240 +62301,62301 +40125,40125 +123108,123108 +20126,20126 +340043,340043 +412684,412684 +73721,73721 +120993,120993 +406601,406601 +74970,74970 +38031,38031 +376049,376049 +132270,132270 +300766,300766 +16402,16402 +432582,432582 +324726,324726 +25743,25743 +38494,38494 +333799,333799 +145260,145260 +85548,85548 +333402,333402 +20394,20394 +26502,26502 +143032,143032 +338088,338088 +297396,297396 +387271,387271 +102049,102049 +156220,156220 +301020,301020 +426608,426608 +73025,73025 +393303,393303 +178466,178466 +37420,37420 +355025,355025 +230645,230645 +40147,40147 +259564,259564 +411343,411343 +393962,393962 +332258,332258 +61724,61724 +250389,250389 +387749,387749 +33741,33741 +15360,15360 +404386,404386 +248390,248390 +32453,32453 +291377,291377 +138777,138777 +131170,131170 +29668,29668 +256812,256812 +269928,269928 +138526,138526 +432609,367367 +23385,23385 +397744,397796 +27455,27455 +418011,418011 +192998,192998 +433560,433560 +108997,108997 +287296,287296 +393647,393647 +151823,151823 +433847,433847 +403264,403264 +178554,178554 +409997,409997 +275752,275752 +310893,310893 +32749,32749 +84946,84946 +148010,148010 +17747,17747 +328864,328864 +137071,137071 +40110,40110 +387723,387723 +114306,114306 +42431,42431 +362522,362522 +30542,30542 +294647,294647 +369086,1260 +395334,395334 +26323,26323 +286850,286850 +337837,337837 +358073,358073 +406510,406510 +410110,410110 +65948,65948 +129635,129635 +175022,175022 +175430,175430 +109036,109036 +212898,212898 +17023,17023 +295787,295787 +11828,11828 +209032,209032 +6892,6892 +160519,160519 +4749,4749 +324298,324298 +112359,112359 +116953,116953 +117748,117748 +309311,309311 +433088,433088 +178483,178483 +27476,27476 +414093,414093 +418768,418768 +178997,160919 +70448,70448 +276216,276216 +13720,13720 +32950,32950 +37548,37548 +28760,28760 +279583,279583 +167102,167102 +65494,65494 +430160,430160 +116639,116639 +290715,290715 +430642,430642 +347097,347097 +162964,162964 +54506,54506 +421045,421045 +410496,410496 +357182,422181 +425670,380582 +422574,422574 +310469,310469 +96399,96399 +241151,241151 +260823,260823 +23505,23505 +417509,417509 +328073,328073 +342166,342166 +33424,33424 +376110,212404 +37945,37945 +177116,177116 +35621,35621 +356570,356570 +302087,302087 +408080,408080 +291499,291499 +360225,338747 +157783,157783 +363466,363466 +336486,336486 +372805,372805 +32788,32788 +51026,51026 +194448,194448 +127708,127708 +144979,144979 +114546,114546 +411319,411319 +247261,247261 +171783,171783 +56541,56541 +352288,352288 +138705,138705 +363889,363889 +434291,434291 +183200,183200 +31049,31049 +168989,168989 +6378,6378 +385977,385977 +263367,263367 +21877,21877 +336815,336815 +162533,162533 +103657,103657 +33049,33049 +408031,408031 +174323,174323 +79643,79643 +432823,432823 +259999,259999 +18659,18659 +176911,176911 +285403,285403 +32766,32766 +292607,292607 +32903,32903 +274607,274607 +101433,101433 +375151,375151 +325429,325429 +344728,344728 +10787,10787 +323815,323815 +270046,270046 +336934,336934 +133470,199149 +333382,333382 +5524,5524 +414088,414088 +274217,173302 +97239,97239 +332167,332167 +382802,382802 +312253,312253 +26923,26923 +128435,128435 +400472,400472 +300006,300006 +363033,363033 +36758,36758 +419461,419461 +335891,335891 +33992,33992 +309077,309077 +268670,268670 +423416,423416 +278543,278543 +44358,44358 +20160,20160 +142611,142611 +429718,429718 +172070,172070 +301870,301870 +127880,127880 +288288,288288 +70237,70237 +131360,131360 +169519,169519 +96795,96795 +36716,36716 +333911,333911 +147666,147666 +161143,161143 +18760,18760 +102783,102783 +427129,227466 +388354,388354 +67007,67007 +354451,354451 +107505,107505 +308976,308976 +18053,18053 +163540,163540 +360907,360907 +135400,135400 +155136,155136 +134357,134357 +66918,66918 +379512,379512 +424576,424576 +28287,28287 +423920,423920 +297383,297383 +275750,275750 +70284,70284 +306550,306550 +330754,330754 +193755,193755 +169298,169298 +362655,362655 +13425,13425 +144732,144732 +425736,425667 +168789,168789 +32074,32074 +68884,68884 +137886,137886 +28764,28764 +145801,145801 +39275,39275 +122401,122401 +433060,433060 +422455,422455 +429646,429646 +416779,416779 +406308,406308 +308824,308824 +381681,381681 +194408,194408 +16436,16436 +5487,5487 +332699,332699 +120279,120279 +302745,302745 +261535,261535 +54801,54801 +328633,328633 +308567,308567 +382745,339341 +210205,210205 +428870,428870 +29222,29222 +116568,116568 +92550,92550 +288027,288027 +431429,431429 +406337,406337 +343397,343397 +31225,31225 +163732,163732 +375943,375943 +187625,187625 +337768,337768 +122617,122617 +221281,221281 +267254,267254 +414194,414194 +132272,132272 +434001,434001 +342099,342099 +60303,60303 +93261,93261 +17256,17256 +374038,374038 +191968,191968 +182993,182993 +111404,111404 +154148,154148 +429943,429943 +416076,416076 +51369,51369 +270581,270581 +58630,58630 +281039,281039 +36390,36390 +197082,197082 +124681,124681 +254705,254705 +65963,65963 +10006,10006 +221583,221583 +234677,234677 +218546,218546 +371906,371906 +28419,28419 +38081,38081 +408096,408096 +398171,398171 +60368,60368 +396108,396108 +29221,29221 +245774,245774 +263349,263349 +289046,289046 +319028,319028 +409051,409051 +410262,410262 +163003,163003 +208753,208753 +346938,346938 +118801,118801 +154692,154692 +134933,134933 +415115,15566 +432575,432575 +176753,176753 +387203,387203 +285259,285259 +119670,119670 +15831,15831 +426259,426259 +433896,433896 +402981,12355 +434097,434097 +374327,265674 +333157,333157 +197174,197174 +23793,23793 +166269,166269 +412900,406799 +371160,371160 +147033,147033 +417539,417539 +9532,9532 +414643,414643 +32648,32648 +402424,402424 +12809,12809 +57756,57756 +31945,31945 +346620,346620 +257140,257140 +167668,167668 +418336,418336 +355222,355222 +273279,273279 +313006,313006 +30638,30638 +73791,73791 +146713,146713 +181888,181888 +414269,414269 +73065,73065 +137188,137188 +377453,377453 +33256,33256 +334504,334504 +194186,194186 +331009,331009 +36928,36928 +29407,29407 +24646,24646 +429494,429494 +34099,34099 +71821,71821 +432788,432788 +21494,21494 +31325,31325 +323440,323440 +276338,276338 +18302,18302 +432211,432211 +314027,314027 +99960,99960 +16891,16891 +159904,134884 +296795,296795 +30557,30557 +428027,428027 +242527,242527 +380899,380899 +258521,258521 +184090,184090 +114315,114315 +299316,299316 +111052,111052 +82627,82627 +156011,156011 +417406,43022 +267748,267748 +408386,280729 +16797,16797 +377474,377474 +26411,26411 +417550,417550 +21593,21593 +339068,339068 +98129,98129 +411354,324471 +63004,63004 +376596,376596 +424243,424243 +84914,84914 +37760,37760 +137797,137797 +234012,234012 +395635,395635 +412530,412530 +11908,11908 +12327,12327 +399279,399279 +65762,65760 +8859,8859 +127788,127788 +157420,157420 +322028,322028 +11804,11804 +44366,44366 +112878,112878 +67893,67893 +168286,168286 +27783,27783 +116163,116163 +158972,158972 +69919,69919 +232005,232005 +282490,282490 +355146,355146 +142774,142774 +225451,225451 +110341,110341 +27575,27575 +163952,163952 +139520,139520 +424120,424120 +187908,187908 +413284,413284 +365726,365726 +414761,414761 +137283,137283 +127186,127186 +225040,225040 +154746,154746 +276140,276140 +355643,355643 +26831,26831 +180135,180135 +433793,433793 +413252,413252 +272407,192746 +14783,14783 +219441,219441 +417168,417168 +433422,433422 +36678,36678 +415509,415509 +414184,414184 +234709,234709 +407618,407618 +170092,170092 +66152,66152 +285842,285842 +323517,323517 +313968,313968 +147520,147520 +25187,25187 +357406,357406 +113172,113172 +149408,149408 +365548,365548 +303410,303410 +40669,40669 +359591,359591 +200505,200505 +180197,180197 +276718,276718 +26009,26009 +41694,41694 +66513,66513 +420271,420271 +227692,227692 +217860,217860 +133880,133880 +57754,57754 +124409,124409 +62122,62122 +169576,169576 +58784,58784 +373619,373619 +129599,129599 +363537,363537 +210159,210159 +195110,195110 +112847,112847 +289963,289963 +434399,434399 +23137,23137 +61177,421444 +386122,386122 +43399,43399 +340243,340243 +31898,31898 +140240,140240 +35549,35549 +73572,73572 +167667,167667 +239293,239293 +334500,334500 +404368,404368 +116690,116690 +128972,128972 +343580,343580 +171379,171379 +168127,168127 +145204,145204 +302153,302153 +24330,24330 +420111,420111 +162111,162111 +341782,341782 +342656,342656 +202899,202899 +329166,329166 +225873,225873 +251320,251320 +273255,273255 +131192,131192 +365479,365479 +61508,61508 +157329,157329 +98322,98322 +418587,418587 +357539,357539 +406235,406235 +218822,218822 +435057,435057 +431397,431397 +220668,220668 +334354,334354 +27305,27305 +276734,276734 +128469,128469 +369397,369397 +5191,5191 +350836,350836 +250324,250324 +428177,428177 +113738,113738 +13312,13312 +27527,27527 +104720,104720 +137365,137365 +432327,432327 +7704,7704 +156559,156559 +172157,172157 +432062,432062 +430277,430277 +433086,433086 +308634,308634 +396963,396963 +34944,34944 +46952,46952 +76158,76158 +244222,244222 +143677,143677 +12817,12817 +414185,414185 +126825,126825 +225218,225218 +150527,150527 +160632,160632 +34021,34021 +403435,403435 +33168,33168 +110457,110457 +113754,113754 +402568,402568 +156024,156024 +256243,256243 +227566,227566 +369719,369719 +121803,121803 +404244,404244 +153956,153956 +372896,372896 +128962,128962 +396615,396615 +320531,320531 +363336,363336 +31017,31017 +66291,66291 +309291,309291 +185000,184999 +138035,138035 +326914,326914 +69375,69375 +149380,149380 +260905,260905 +235642,235642 +39736,39736 +244782,244782 +340445,340445 +155583,155583 +258071,258071 +347095,347095 +183230,183230 +141812,141812 +210157,210157 +357479,357479 +155750,155750 +179006,179006 +405212,405212 +222389,222389 +39100,39100 +282690,282690 +429986,429986 +23975,23975 +306931,162273 +299427,299427 +28711,28711 +282400,282400 +18689,18689 +426170,426170 +350476,350476 +430691,430691 +366107,366107 +257630,257630 +367187,367187 +256142,256142 +124656,124656 +16483,16483 +315008,315008 +29414,29414 +38168,38168 +147855,147855 +324998,324998 +324786,324786 +15138,15138 +281146,281146 +407515,407515 +149802,149802 +171910,171910 +41216,41216 +344713,344713 +134841,134841 +39498,39498 +383578,383578 +174751,174751 +112108,112108 +26350,26350 +75032,75032 +185604,185604 +304029,304029 +47073,47073 +342137,342137 +8579,8579 +13088,13088 +15631,15631 +431033,113971 +130454,130454 +68806,68806 +168027,168027 +426367,426367 +164553,164553 +52034,52034 +281312,281312 +122095,122095 +29751,29751 +159555,159555 +171034,171034 +35024,35024 +363703,363703 +405377,405377 +127161,127161 +188078,188078 +37818,37818 +382504,382504 +291805,291805 +366749,366749 +286285,286285 +235863,235863 +161066,161066 +120774,120774 +113573,113573 +433816,433816 +407955,407955 +380335,380335 +29884,29884 +54760,54760 +387513,387513 +424350,424350 +122803,122803 +158661,110290 +67953,67953 +42034,42034 +405870,405870 +39119,39119 +368102,368102 +357923,357921 +26626,26626 +135986,135986 +412931,311397 +12836,12836 +162775,162775 +237132,237132 +63031,63031 +354735,354735 +308473,308473 +162930,162930 +29155,29155 +136775,136775 +258178,258178 +238886,238886 +30420,30420 +30137,30137 +16183,16183 +274509,274509 +244053,244053 +420165,420165 +21283,21283 +54959,54959 +144209,144209 +414993,414993 +340697,340697 +19105,19105 +326428,326428 +33835,33835 +66030,66030 +414204,414204 +41851,41851 +38423,38423 +227594,227594 +333554,333554 +34307,34307 +266380,266380 +32568,32568 +382620,382620 +434848,434848 +190734,190734 +330776,330776 +357483,357483 +398337,398337 +429582,429582 +187909,187909 +419214,419214 +57123,57123 +40241,40241 +299444,299444 +407037,407037 +38344,38344 +398773,398773 +419735,419735 +58633,58633 +29071,29071 +32877,32877 +350967,16640 +418145,418145 +309332,309332 +328724,328724 +306549,306549 +222692,222692 +169310,169310 +37762,37762 +89125,122300 +276155,276155 +15959,19234 +403976,403976 +37291,37291 +319169,319169 +295014,295014 +174631,174631 +336134,336134 +162685,162685 +145559,145559 +312521,312521 +395931,395931 +103107,103107 +59617,59617 +434438,434438 +419271,419271 +26243,26243 +153246,153246 +213853,213853 +117876,117876 +281739,281739 +67283,67283 +16731,16731 +37643,37643 +122641,122641 +77202,77202 +116691,116691 +23096,23096 +363628,363628 +157615,157615 +43454,43454 +32649,32649 +178414,270629 +228095,228095 +285017,285017 +21649,21649 +359802,359802 +292505,292505 +14440,14440 +32920,32920 +125862,125862 +383616,383616 +52658,52658 +31095,31095 +18507,18507 +232264,232264 +431991,431991 +289106,289106 +247031,247031 +417448,417448 +322436,322436 +165941,165941 +350088,350088 +13724,13724 +261435,261435 +263334,263334 +150349,150349 +147737,147737 +7485,7485 +421193,421193 +226485,226485 +329475,329475 +236757,236757 +326668,326668 +9019,9019 +68212,68212 +257871,257871 +323594,323594 +292356,292356 +262585,262585 +342432,342432 +386440,386440 +284843,284843 +157275,157275 +416665,416665 +426726,426726 +335478,335478 +336277,336277 +433445,433445 +40680,40680 +88339,88339 +25828,25828 +320082,320082 +36749,36749 +286220,286220 +414287,209450 +14426,14426 +315201,315201 +429776,2922 +40608,40608 +178061,178061 +111019,111019 +65707,65707 +29808,29808 +110016,110016 +281926,281926 +381998,381998 +405371,292732 +127983,127983 +62805,62805 +369896,369896 +225310,225310 +20662,20662 +102961,102961 +356964,356964 +31348,31348 +24328,24328 +159497,159497 +33134,33134 +430994,430994 +279083,279083 +59150,59150 +37252,37252 +160149,160149 +335920,40131 +310464,310464 +40019,40019 +38575,38575 +137735,137735 +69578,69578 +36757,36757 +410178,410178 +131272,131272 +317080,317080 +433895,433895 +96997,96997 +424935,424935 +181618,181618 +36719,36719 +219253,219253 +400103,400103 +153683,153683 +332661,332661 +162874,162874 +413128,413128 +69889,69889 +426091,426091 +16880,16880 +408767,408767 +434137,434137 +26130,26130 +216737,216737 +326378,326378 +234425,234425 +233353,233353 +311052,311052 +42806,42806 +138843,138843 +220085,220085 +40449,40449 +34327,34327 +26183,26183 +338776,338776 +4351,4351 +338568,338568 +429549,429549 +311868,8669 +362685,362685 +135112,135112 +117938,117938 +373979,373979 +176880,176880 +35907,35907 +16311,16311 +433676,433676 +258692,258692 +358672,358672 +186869,186869 +353563,353563 +106893,106893 +99435,99435 +17813,17813 +413486,413486 +59479,59479 +170123,170123 +308759,308758 +150993,150993 +388073,388073 +352657,352657 +351362,351362 +434211,434211 +407183,407182 +405299,405299 +18431,18431 +158220,158220 +42683,42683 +277664,277664 +25141,25141 +34830,34830 +327567,327567 +263121,263121 +154042,154042 +332273,332273 +84774,84774 +376515,376515 +430993,430993 +42522,42522 +40365,40365 +28445,28445 +115947,115947 +280824,280824 +378038,378038 +342710,342710 +15054,15054 +192221,192221 +426965,426965 +374780,374780 +324438,324438 +137407,137407 +410192,410192 +137142,137142 +36087,36087 +64306,64306 +424844,424844 +237970,237970 +261216,261216 +399844,399844 +276831,276831 +353958,353958 +64299,64299 +299422,299422 +342191,342191 +10029,10029 +68095,68095 +21618,21618 +62334,62334 +110250,110250 +419717,419717 +118468,118468 +87678,87678 +58645,58645 +23148,23148 +263374,263374 +227611,227611 +329316,329316 +57066,57066 +18668,18668 +112688,112688 +147569,147569 +348327,348327 +40576,40576 +124973,124973 +410224,410224 +36500,36500 +339854,339854 +193985,193985 +292717,292717 +201138,201138 +259122,259122 +97398,97398 +331997,331997 +72027,72027 +427604,427604 +430584,430584 +58008,58008 +177251,177251 +27578,27578 +96583,96583 +33135,33135 +410579,410579 +367151,367151 +434075,434075 +322364,322364 +383493,383493 +433523,433523 +304759,304759 +271260,271260 +144140,144140 +410580,410580 +64266,64266 +356955,356955 +393593,393593 +224396,224396 +116151,116151 +397229,397229 +22331,22331 +31233,31233 +113955,113955 +396961,396961 +90809,90809 +107044,107044 +109223,109223 +382652,382652 +10538,10538 +310365,310365 +433406,433406 +383188,383188 +333293,333293 +247318,247318 +359863,359863 +34345,34345 +119742,119742 +253088,253088 +177664,177664 +258615,258615 +330250,330250 +20428,20428 +17203,17203 +330027,330027 +20309,20309 +320921,320921 +111402,111402 +434405,434405 +162828,162828 +34477,34477 +226517,226517 +307739,307739 +23067,23067 +336133,336133 +52498,52498 +341140,341140 +40026,40026 +324468,324468 +172078,172078 +331585,331585 +108490,108490 +33697,33697 +407561,407561 +408722,408722 +92220,92220 +11620,11620 +147073,147073 +249910,249910 +11927,11927 +15971,15971 +340518,340518 +208973,208973 +181962,181962 +45326,45326 +99307,99307 +66292,66292 +172660,172660 +189198,189198 +378298,378298 +158770,158770 +207353,207353 +31982,31982 +343011,343011 +382696,382696 +37100,37100 +138583,138583 +414466,414466 +29896,29896 +97057,97057 +336246,336246 +98801,98801 +433277,433277 +225524,225524 +207289,207289 +144812,144812 +37460,37460 +433127,410772 +332668,332668 +127114,127114 +415216,415216 +23223,23223 +306023,306023 +34484,34484 +187490,187490 +329004,329004 +6234,6234 +213305,213305 +28988,28988 +305379,305379 +391082,391082 +167612,167612 +183627,183627 +286352,286352 +234839,234839 +226423,226194 +367994,367994 +408309,408309 +59886,59886 +251504,251504 +31018,31018 +372786,372786 +302513,302513 +127185,127185 +428429,428429 +159235,159235 +427159,3439 +215547,215547 +423056,423056 +237830,237830 +433226,433226 +122919,122919 +115480,115480 +151163,151163 +425744,425744 +326911,240626 +26426,26426 +20462,20462 +309035,309035 +43408,43408 +40618,40618 +337520,337520 +176738,176738 +421124,421124 +370353,370353 +142311,142311 +183980,183980 +36897,36897 +182552,182552 +99512,99512 +303432,303432 +137777,137777 +367774,367774 +324519,324519 +198209,198209 +328611,328611 +375156,375156 +381782,381782 +424361,424361 +137377,137377 +338233,338233 +42081,42081 +434413,434413 +425475,425475 +29364,29364 +140844,140844 +351388,351388 +165588,165588 +56235,56235 +17296,17296 +138102,138102 +38338,38338 +28512,28512 +339492,339492 +372443,39779 +183218,183218 +154970,154970 +110716,110716 +334860,334860 +404821,404821 +298189,298189 +381316,381316 +270506,270506 +124435,124435 +331575,331575 +65237,65237 +172374,172374 +395649,395649 +69328,69328 +24916,24916 +63183,41580 +32134,32134 +59990,59990 +83028,83028 +189364,189364 +118560,118560 +293258,293258 +424529,424529 +24749,24749 +359666,359666 +432151,432151 +419476,419476 +340046,340046 +32532,32532 +227122,227122 +155066,155066 +37541,37541 +261396,261396 +412264,412264 +300003,300003 +61906,61906 +207892,207892 +267066,267066 +61947,61947 +125910,125910 +30911,30911 +5639,5639 +136090,136090 +144875,144412 +111440,111440 +276282,276282 +402713,402713 +102785,102785 +306979,306979 +250288,250288 +154595,154595 +193694,193694 +123298,123298 +156250,156250 +41758,41758 +41489,41489 +178620,178620 +27332,27332 +83215,83215 +46426,46426 +115320,115320 +108673,108673 +363011,363011 +285185,285185 +422163,422163 +378008,378008 +30454,30454 +413029,413029 +374879,374879 +318237,318237 +38613,38613 +22736,22736 +51583,51583 +303990,303990 +106923,106923 +118944,118944 +303130,303130 +121069,121069 +106483,106483 +80653,80653 +338187,338187 +427362,427362 +336157,336157 +56002,56002 +162656,162656 +43392,43392 +372678,372678 +58052,58052 +350781,350781 +414717,414717 +15705,15705 +38146,38146 +258714,258714 +143077,143077 +18386,18386 +133978,133978 +324429,324429 +408074,408074 +36076,36076 +163109,163109 +424891,424891 +15478,15478 +363218,363218 +132976,132976 +131805,131805 +429894,429894 +400162,400162 +423582,423582 +13200,13200 +24984,24984 +216733,216733 +115438,115438 +331218,331218 +134759,134759 +406512,406512 +402433,402433 +82986,82986 +299225,299225 +133658,133658 +334416,334416 +65444,65444 +162360,162360 +321200,321181 +225137,225137 +426225,426225 +403408,403408 +94904,94904 +24864,24864 +67835,67835 +149601,149601 +128409,128409 +173668,173668 +21722,21722 +297213,297213 +404732,404732 +426319,426319 +128479,128479 +41480,41480 +60741,60741 +14289,13181 +59639,59639 +383585,383585 +180747,180747 +13566,13566 +321201,321181 +286518,286518 +100690,100690 +350478,350478 +40625,40625 +416344,416344 +276736,276736 +357911,357911 +375738,375738 +28660,28660 +12307,12307 +125155,125155 +184114,184114 +29175,29175 +346241,346241 +402195,402195 +401066,401066 +151815,151815 +345019,345019 +197565,197565 +279901,279901 +25333,25333 +23382,23382 +351845,351845 +63791,63791 +278388,278388 +272065,272065 +350430,350430 +425090,425090 +18189,18189 +65454,65454 +403975,403975 +303774,303774 +146276,146276 +111231,111231 +233265,233265 +39546,39546 +429450,429450 +20648,20648 +411130,411130 +428798,325937 +281207,281207 +37588,37588 +174962,174962 +198425,198425 +202709,202709 +15489,15489 +182778,182778 +301022,301022 +396944,396944 +332608,332608 +22882,22882 +41543,41543 +180788,180788 +155929,155929 +49744,49744 +161823,161823 +112938,112938 +415056,415056 +428477,428027 +372977,372977 +25442,25442 +26429,26429 +331901,331901 +338228,338228 +378319,378319 +118495,118495 +403781,403781 +33194,33194 +342092,342092 +355845,355845 +434437,434437 +169655,169655 +31780,31780 +332077,332077 +121330,121330 +28730,28730 +188399,188399 +336877,336877 +174532,174532 +165798,165798 +433733,433733 +26288,26288 +281247,281247 +40193,40193 +408162,408162 +10255,10255 +325150,325150 +138787,138787 +39737,39737 +180912,180912 +355470,355470 +24495,24496 +104721,104721 +354050,146144 +434292,434292 +25499,25499 +274846,274846 +115367,115367 +350470,350470 +394275,394275 +429854,429854 +330506,85999 +420558,420558 +53760,53760 +41251,41251 +341913,14816 +287746,287746 +366894,366894 +387273,387273 +347306,347306 +434386,434386 +201452,201452 +13723,13723 +432085,432085 +229554,229556 +423989,423989 +327370,59576 +311412,311412 +173753,173753 +423008,423008 +186847,186847 +287044,287044 +35291,35291 +120135,120135 +316996,316996 +200773,200773 +293091,293091 +72150,72150 +321203,321181 +303725,302684 +405977,405977 +406088,406088 +29176,29176 +251540,251540 +374861,374861 +187670,187670 +110010,110010 +380445,380445 +6097,6097 +209949,209949 +16219,16219 +119374,119374 +421217,421217 +350588,350588 +38669,38669 +303811,303811 +171744,171744 +392467,392467 +31457,31457 +304493,304493 +431915,431915 +25267,25267 +180981,180981 +42443,42443 +4825,4825 +341344,341344 +114561,114561 +144375,144375 +157398,157398 +341060,341060 +39082,39082 +25666,25666 +351333,351333 +281685,281685 +76555,76555 +91336,91336 +84331,84331 +202505,202505 +121066,121066 +175362,175362 +288025,288025 +118390,118390 +322137,322136 +428330,428330 +283626,283626 +11513,11513 +43326,43326 +421368,421368 +265024,265024 +326740,326740 +334720,85204 +23084,23084 +101434,101434 +17035,17035 +133583,133583 +141865,141865 +388523,388523 +134204,134204 +238263,238263 +58706,58706 +15243,15243 +40024,40024 +85566,85566 +6155,6155 +335599,335599 +16763,16763 +43540,43540 +227570,227570 +32935,32935 +322034,322034 +426813,426813 +42797,42797 +226233,226233 +410229,410229 +177246,177246 +32765,32765 +160692,160692 +339568,339568 +406332,406332 +32544,32544 +143299,143299 +393528,393528 +29006,29006 +361544,361544 +148495,148495 +242731,242731 +356837,356837 +432662,432662 +127283,127283 +332623,332623 +343052,343052 +381999,381999 +262139,262139 +418397,418397 +70115,70115 +186269,186269 +255542,255542 +74040,74040 +427456,427456 +25767,25767 +353992,353992 +15361,15361 +162882,162882 +429580,429580 +180997,180997 +53688,53688 +19792,19792 +264402,264402 +96837,96837 +433030,433030 +322375,322375 +81916,81916 +118523,118523 +432879,432879 +201383,200326 +86271,86271 +18962,18962 +115833,115833 +432265,432265 +10254,10254 +201632,201632 +128945,128945 +25083,25083 +432393,432393 +24898,24898 +173306,173306 +416087,416087 +21058,21058 +67297,67297 +12381,12381 +408585,408585 +39417,39417 +29292,29292 +404705,404705 +39430,39430 +109658,109658 +330026,330026 +255611,255611 +301370,301370 +420074,420074 +357299,357299 +23187,23187 +402761,402761 +38535,38535 +427880,427880 +30672,30672 +337887,337887 +156390,156390 +121611,121611 +341387,341387 +160228,160228 +4600,4600 +174263,174263 +33037,33037 +357050,357050 +36740,36740 +281592,281592 +414495,414495 +71995,71995 +315585,315585 +278411,278411 +154976,204583 +366359,366359 +48526,48526 +429373,429373 +23509,23509 +299745,299745 +385626,385626 +378180,378180 +128138,128138 +72919,72919 +410501,410501 +31825,31825 +291135,291135 +42735,42735 +124899,124899 +432413,432413 +428151,428151 +199774,199774 +200198,200198 +376907,376907 +134807,134807 +416109,416109 +307569,307569 +221330,221330 +23487,23487 +269694,269694 +28026,28026 +388732,388732 +356302,356302 +37977,37977 +381906,381906 +18778,18778 +111757,111757 +20756,20756 +323567,323567 +20506,20506 +111759,111759 +428834,428834 +35450,35450 +372897,372897 +28144,28144 +10499,10499 +108639,108639 +361321,361321 +199648,199648 +422054,422054 +413464,413464 +248076,248076 +231619,231619 +33780,33780 +127742,127742 +38284,38284 +58729,58729 +112274,112274 +86530,86530 +136788,136788 +399718,399718 +159613,159613 +340475,340475 +426609,426609 +231393,231393 +422801,422801 +430928,430928 +227576,227576 +386289,386289 +237960,237960 +28562,28562 +37187,37187 +38042,38042 +421245,421245 +427620,427620 +63447,63447 +408991,408991 +332104,332104 +416731,416731 +51280,51280 +306905,306905 +259578,259578 +218472,218472 +133300,133300 +62982,62982 +59134,59134 +430400,430400 +144916,144916 +379617,379617 +425341,425341 +88136,88136 +337454,337454 +404481,404481 +7144,7144 +297805,31716 +371167,371167 +414822,414822 +20778,20778 +299995,299995 +107790,107790 +356750,356750 +287400,287400 +41971,41971 +390964,390964 +247146,247146 +286208,286208 +30748,30748 +14835,14835 +37831,37831 +123820,123820 +7283,7283 +123580,123580 +227151,227151 +230838,230838 +407480,407480 +123299,123299 +352921,352921 +340892,340892 +359200,359200 +27201,27201 +363976,363976 +280822,280822 +54919,54919 +240184,240184 +23602,23602 +335618,335618 +230471,230471 +144316,144316 +35594,35594 +34524,34524 +24529,24529 +579,579 +417948,417948 +16878,16878 +94208,94208 +388580,388580 +364196,364196 +433964,433964 +140053,271516 +63763,63763 +298481,267989 +277558,277558 +301129,301129 +68450,68450 +228502,228502 +23155,23155 +376288,376288 +433424,433424 +343015,343015 +376183,376183 +355463,355463 +26403,26403 +238955,238955 +334351,334351 +332479,332479 +146586,146586 +341679,341679 +30151,30151 +288319,288319 +248647,248647 +75765,75765 +431750,431750 +151118,151118 +163573,163573 +224121,224121 +57348,57348 +406251,406251 +429209,429209 +269171,269171 +38609,38609 +333346,333346 +342174,342174 +383125,383125 +327764,327764 +302295,302295 +64663,64663 +41407,41407 +39829,39829 +106777,106777 +324813,324813 +125491,125491 +285544,285544 +26761,26761 +419144,419144 +359505,359505 +184668,184668 +15742,15742 +42590,42590 +240078,240078 +402332,402332 +17832,17832 +54387,54387 +34287,34287 +263688,263688 +367561,367560 +400898,400898 +130577,130577 +65861,65861 +16882,16882 +16182,16182 +127741,127741 +20770,20770 +434343,434343 +258354,258354 +432447,432447 +226415,226415 +432012,432012 +41742,41742 +382230,382230 +432130,432130 +8294,8294 +400953,400953 +16317,16317 +179995,179995 +41124,41124 +289086,207500 +256365,256365 +66094,66094 +312716,312716 +32773,32773 +279349,279349 +7891,7891 +433911,433911 +237826,237826 +26939,26939 +405170,405170 +36466,36466 +35404,35404 +388428,388428 +425050,425050 +365725,365725 +311220,311220 +217495,217495 +96911,96911 +99666,99666 +5003,5003 +402005,402005 +122376,122376 +305353,305353 +368558,368558 +34336,34336 +145201,145201 +43154,43154 +132030,132030 +324958,324958 +218189,218189 +307954,307954 +350414,350414 +312061,312061 +245508,245508 +405443,405443 +427333,427333 +33716,33716 +77486,77486 +257194,257194 +425383,425383 +32569,32569 +16885,16885 +198092,198092 +143135,143135 +60783,60783 +407572,407572 +48491,48491 +12434,12434 +65452,65452 +234035,171313 +142244,142244 +363540,363540 +27593,27593 +433818,433818 +240085,240085 +230470,230470 +347308,347308 +119862,119862 +74909,74909 +174327,174327 +54465,54465 +139507,139507 +5763,5763 +414459,414459 +186135,186135 +363494,363494 +64960,64960 +359653,359653 +27819,27819 +340126,340126 +299428,105035 +413854,413854 +399740,399740 +322498,322498 +163652,163652 +16913,16913 +160232,160232 +24212,24212 +433428,433428 +206348,206348 +369511,369511 +358462,358462 +65642,65642 +40165,40165 +108680,108680 +181335,181335 +96013,96013 +423190,423190 +36713,36713 +153569,153569 +402834,402834 +21326,21326 +420451,420451 +186131,186131 +20791,20791 +129837,129837 +421988,421988 +28314,28314 +165031,165031 +65448,65448 +301521,301521 +434653,434653 +35240,35240 +12323,12323 +58788,58788 +116629,116629 +66862,66862 +255976,255976 +121600,121600 +368062,368062 +409999,409999 +16051,16051 +12945,12945 +35467,35467 +432733,432733 +339640,339640 +94354,94354 +202787,202787 +88466,88466 +276971,276971 +348163,348163 +240535,240535 +151280,151280 +34875,34875 +235980,19537 +22247,22247 +406035,406035 +377219,377219 +139589,139589 +332484,332484 +402948,402948 +173646,173646 +254374,254374 +68289,68289 +161211,161211 +14319,14319 +393826,393826 +43199,43199 +39266,39266 +98178,98178 +13784,13784 +155830,155830 +143604,143604 +40827,40827 +323222,323222 +377487,377487 +159900,134884 +248717,248717 +372978,372978 +335959,335959 +268870,268870 +122165,122165 +68952,68952 +423591,423591 +180385,180385 +353935,353935 +31223,31223 +363149,363149 +128135,128135 +29689,29689 +425484,425484 +154787,154787 +125824,125824 +61926,61926 +332520,332520 +429306,429306 +149263,149263 +396924,396924 +350965,16640 +138458,138458 +197927,197927 +343846,343846 +271282,271282 +66138,66138 +355028,355028 +112230,112230 +39594,39594 +434706,434706 +170040,170040 +279108,279108 +96886,96886 +262373,262373 +238179,238179 +215525,215525 +36578,36578 +135264,135264 +188202,188202 +159743,159743 +20859,20859 +23167,23167 +414353,414353 +169581,169581 +403429,403429 +404059,404059 +42987,42987 +428937,428937 +423573,423573 +407557,344659 +113160,113160 +420518,420518 +5440,5440 +411850,411850 +129219,129219 +374052,374052 +41510,41510 +65176,65176 +38249,38249 +188283,188283 +335660,335660 +279116,279116 +319896,319896 +274903,274903 +353387,353386 +418149,418145 +252497,252497 +424159,424159 +419689,419689 +382461,382461 +66667,66667 +312769,312769 +336947,336947 +419408,419408 +229604,229604 +420151,420151 +26281,26281 +357477,357477 +430920,430920 +429879,429879 +368462,368462 +29194,29194 +136825,136825 +426807,426807 +365329,365329 +323248,323248 +277016,277016 +129171,129171 +403606,406332 +167434,167434 +105900,105900 +112403,112403 +95929,95929 +281935,281935 +409661,409661 +121602,121602 +59879,59879 +419099,419099 +169645,169645 +60705,60705 +149893,149893 +381722,381722 +399956,399956 +331414,331414 +76275,76275 +419219,419219 +426034,426034 +331796,331796 +35747,35747 +140667,140667 +318405,318405 +138807,138807 +258296,258296 +19469,19469 +99370,99370 +30238,30238 +424897,424897 +378852,378852 +89604,89604 +324021,324021 +405449,405449 +187747,187747 +19222,19222 +212739,212739 +138132,138132 +38976,38976 +46658,46658 +128959,128959 +356762,356762 +152616,152616 +29086,29086 +355420,355420 +113307,113307 +25507,25507 +176737,176737 +12941,12941 +43216,43216 +37706,37706 +157057,157057 +339060,339060 +335811,335811 +417279,417279 +262632,262632 +40120,40120 +266428,266428 +156601,156601 +58787,58787 +330788,330788 +420545,463 +430191,430191 +237378,237378 +151890,151890 +38632,38632 +414969,414969 +340011,340011 +432525,432525 +338503,338503 +148423,148423 +283058,283058 +40357,40357 +302418,206511 +338900,338900 +200209,200209 +121939,121939 +405728,405728 +337007,337007 +366125,366125 +122744,122744 +68937,68937 +34358,34358 +250444,250444 +23840,23840 +351990,351990 +184156,184156 +353771,353771 +374779,374779 +21932,21932 +298577,298577 +23227,23227 +413155,413155 +36048,36048 +343957,343957 +7817,7817 +160551,160551 +174285,174285 +331276,331261 +434180,434180 +136267,136267 +430738,430738 +298256,298256 +62657,62657 +18231,18231 +216134,216134 +403304,403304 +20654,20654 +418673,418673 +37520,37520 +22841,22841 +40152,40152 +37426,37426 +338740,338740 +96037,96037 +402203,402203 +24973,24973 +365315,365315 +218052,218052 +126787,126787 +249790,249790 +182366,182366 +389925,389925 +433397,433397 +62559,62559 +30145,30145 +121783,121783 +66035,66035 +175593,175593 +14009,14009 +325019,325019 +434179,434179 +29037,29037 +30847,30847 +400871,400871 +6169,6169 +111153,111153 +53685,53685 +32439,32439 +33273,33273 +25450,25450 +33447,33447 +41941,41941 +20990,20990 +182749,182749 +252487,252487 +173414,173414 +268537,268537 +272056,272056 +70307,70307 +380048,380048 +321675,321675 +259754,259754 +419734,419734 +327373,59576 +26911,26911 +431388,431388 +414033,414033 +420562,420562 +143343,143343 +397394,397394 +230840,191313 +375739,375739 +63374,63374 +65192,65192 +39446,39446 +342947,342947 +426516,426516 +65507,65507 +108493,108493 +17976,17976 +194545,194545 +38610,38610 +431797,431797 +345101,345101 +324212,324212 +346479,346479 +405710,405710 +282987,282987 +404166,404166 +344569,344569 +131350,131350 +335558,335558 +371191,371191 +287878,287878 +171994,171994 +359214,359214 +232189,232189 +324792,324792 +434198,434198 +9600,9600 +259470,259470 +378412,378412 +348236,348236 +354218,354218 +222241,222241 +142159,142159 +134035,134035 +337168,337168 +31023,31023 +301029,301029 +178160,178160 +162871,162871 +26592,26592 +334618,334618 +177101,177101 +178036,178036 +90070,90070 +342279,342279 +34576,34576 +408631,408631 +372972,372972 +206081,206081 +144809,144809 +330936,330936 +82446,82446 +357657,357657 +426971,426971 +264731,264731 +115474,139901 +156681,156681 +24436,24436 +27131,27131 +434209,434209 +227964,227964 +41232,41232 +255333,255333 +155003,155003 +23826,23826 +59813,59813 +188077,188077 +23436,23436 +36609,36609 +415428,415428 +327132,327132 +217432,217432 +432212,432212 +128991,128991 +166424,166424 +418512,418512 +171690,171690 +393855,393855 +335482,335482 +11316,11316 +113869,113869 +420265,420265 +415040,415040 +22241,22241 +144775,144775 +313755,312809 +347840,347840 +25776,402497 +37789,37789 +428104,428104 +381354,381354 +266896,266896 +390619,390619 +374877,374877 +38803,38803 +404921,402713 +110950,110950 +60209,60209 +295836,295836 +35520,35520 +30112,30112 +11310,11310 +385636,385636 +30297,30297 +257704,257704 +217510,217510 +410346,410346 +177655,177655 +337163,337163 +236898,236898 +158120,158120 +430000,430000 +120244,120244 +328058,328058 +418549,418549 +168914,168914 +343734,343734 +33970,33970 +129523,129523 +93658,93658 +338812,338812 +183219,183219 +233912,233912 +38590,38590 +22994,22994 +431238,431238 +246950,246950 +58570,58570 +249775,249775 +31332,31332 +40160,40160 +92257,92257 +110707,110707 +391725,391725 +22079,22079 +428797,428797 +420157,420157 +322135,322135 +423248,423248 +35274,35274 +312715,312715 +434349,434349 +169350,169350 +237426,237426 +318176,318176 +34125,34125 +141821,141821 +146953,146953 +432701,378109 +419426,419426 +301024,301024 +336658,336658 +292784,292784 +121472,121472 +42640,42640 +100442,100442 +317051,317051 +324628,324628 +25906,25906 +151449,151449 +320143,320143 +121090,121090 +109255,109255 +65860,65860 +331644,331644 +341125,341125 +15843,15843 +366253,366253 +333800,333800 +82717,82717 +170498,170498 +43429,43429 +60100,60100 +272060,272060 +298954,298954 +72002,72002 +87170,87170 +19250,19250 +240537,240537 +343146,343146 +11225,11225 +298578,298578 +392800,392800 +359479,283932 +119377,119377 +204977,204977 +22589,22589 +311557,311557 +41554,41554 +15443,15443 +22656,22656 +225262,225262 +112700,112700 +35334,35334 +431306,431306 +305043,305043 +39471,39471 +145906,145906 +20755,20755 +153421,153421 +301123,301123 +201885,201885 +222730,222730 +65455,65455 +433862,433862 +424811,424811 +266560,266560 +61671,61671 +286278,286276 +423217,423217 +43269,43269 +63034,63034 +37348,37348 +287265,287265 +96689,96689 +361014,361014 +392711,392711 +164672,164672 +338802,338802 +34562,34562 +34430,34430 +38760,38760 +20016,20016 +240293,240293 +24679,24679 +220326,220326 +156291,95758 +221103,221103 +407289,407289 +424138,424138 +432332,112807 +344519,344519 +223691,223691 +279444,279444 +158868,158868 +331934,331934 +412552,412552 +38608,38608 +124633,124633 +35512,35512 +420484,420484 +38181,38181 +38484,38484 +359856,359863 +342047,342047 +156600,156600 +423929,423929 +414320,414320 +24534,24534 +341429,341429 +33028,33028 +12922,12922 +405420,405420 +22409,22409 +32805,32805 +154415,154415 +222413,222413 +11744,11744 +426599,426599 +244056,244056 +50558,50558 +71390,71390 +427363,427363 +57248,57248 +349359,349359 +145951,145951 +35565,35565 +346419,346419 +14467,14467 +272248,272248 +406504,406504 +69984,69984 +390495,390495 +364366,364366 +301879,301879 +393576,393576 +401483,401483 +422878,422878 +117911,117911 +395397,395397 +287125,287125 +382187,382187 +119055,119055 +137453,137453 +366109,366109 +404830,404830 +36952,36952 +3281,3281 +307464,307464 +363541,363541 +325549,325549 +76457,76457 +39424,39424 +220288,220288 +142887,142887 +350952,350952 +239099,239099 +341494,341494 +433513,433513 +411978,145219 +70172,70172 +30067,30067 +54083,54083 +309313,309313 +403177,463 +241004,241004 +32675,32675 +24126,24126 +301516,301516 +433391,433391 +232144,232144 +392481,392481 +87626,87626 +158230,158230 +429218,3605 +299780,299780 +20658,20658 +325323,325322 +15217,15217 +406004,406004 +195466,195466 +157007,157007 +435039,435039 +108815,108815 +56430,56430 +313857,313857 +154693,154693 +62726,62726 +430134,430134 +32970,32970 +136480,136480 +422542,422542 +433204,433204 +355631,355631 +11995,11995 +269225,269225 +411716,411716 +144970,144970 +318034,318034 +426137,426137 +245001,245001 +423170,423170 +427773,427773 +155052,155052 +38625,38625 +28903,28903 +36292,36292 +278913,278913 +50443,50443 +25705,25705 +28850,28850 +379035,379035 +37675,37675 +121526,121526 +131145,131145 +116564,116564 +306977,306977 +333162,333162 +180865,180865 +32081,32081 +285785,285785 +304431,304431 +430542,430542 +316634,316634 +403613,403613 +296970,296970 +24789,24789 +368990,368990 +130346,130346 +260912,260912 +251386,251386 +111016,111016 +319586,319586 +85425,85425 +286583,286583 +216792,216792 +369555,369555 +15125,15125 +6372,6372 +427501,427501 +357054,357054 +117514,117514 +406549,406549 +192479,192479 +406570,406570 +63455,63455 +397086,397086 +31980,31980 +251313,251313 +92982,92982 +184848,184848 +27856,27856 +35257,35257 +421911,421911 +327166,326183 +111163,111163 +409121,409121 +88848,88848 +433303,255335 +29390,29390 +163138,163138 +12825,12825 +383472,383472 +338122,338122 +306956,306956 +42077,42077 +259008,259008 +139664,139664 +206053,206053 +34454,34454 +68888,68888 +431724,431724 +300858,300859 +410637,410637 +140277,140277 +431764,431764 +173823,173823 +276273,276273 +423157,423157 +344047,344047 +268910,268910 +41234,41234 +355520,355520 +410577,410577 +32510,32510 +367413,367413 +253175,253175 +141617,141617 +377529,377529 +351816,351816 +341119,341119 +82079,82079 +264406,264406 +313447,313447 +266348,266348 +33469,33469 +26811,26811 +31719,31719 +26742,26742 +23075,23075 +136994,136994 +361486,361486 +392459,392459 +44269,44269 +234249,234249 +428117,428117 +177084,177084 +184199,184199 +103744,103744 +308035,308035 +409069,409069 +352875,352875 +427739,427739 +37575,37575 +96958,96958 +326979,326979 +176611,176611 +413255,413255 +351737,351737 +22868,22868 +300019,268400 +20425,20425 +64382,64382 +220793,220793 +350295,350295 +127311,127311 +23397,23397 +388819,388819 +25590,25590 +41353,41353 +111824,111824 +366594,366594 +300045,324718 +29977,29977 +379376,379376 +206333,206333 +18366,18366 +323185,323185 +180300,180300 +133806,133806 +147690,147690 +124242,124242 +21949,21949 +116549,116549 +31565,31565 +228865,228865 +23362,23362 +129572,129572 +51368,51368 +158668,158668 +103870,103870 +158001,158001 +179490,179490 +297474,297474 +331512,331512 +209372,209372 +424949,424949 +20190,20190 +426636,426636 +28991,28991 +337160,337160 +370914,370914 +37620,37620 +380659,380659 +63115,63115 +405938,405938 +138443,138443 +337896,337896 +37011,37011 +373012,373013 +337398,337398 +42796,42796 +198385,198385 +415742,415742 +67841,67841 +393791,393791 +84531,84531 +66461,66461 +244350,244350 +183599,183599 +225615,225615 +331745,331745 +422823,422823 +237973,237973 +111642,111642 +18407,18407 +22619,22619 +421280,404178 +205035,205035 +39568,39568 +125508,125508 +387011,387011 +200481,200481 +260541,260541 +5948,5948 +311077,311077 +30473,30473 +357321,357321 +329323,329323 +90088,90088 +407004,407004 +177573,177574 +430807,430807 +391001,391001 +38527,38527 +52103,52103 +40996,40996 +40956,40956 +171806,171806 +102137,102137 +428080,209447 +116106,116106 +427800,255635 +224802,226485 +31310,31310 +283331,283331 +127152,127152 +368548,368548 +261295,261295 +314894,314894 +429781,429781 +124559,124559 +51323,51323 +377095,377095 +39984,39984 +143713,143713 +121014,121014 +337237,337237 +418469,322282 +30109,30109 +96856,96856 +132677,132677 +87419,87419 +252357,252357 +424232,400209 +39660,39660 +97982,97982 +67836,67836 +66140,66140 +148454,148454 +407355,407355 +183037,183037 +98718,98718 +301941,301941 +15630,15630 +425872,425872 +434508,434508 +46102,46102 +56422,56422 +375221,375221 +434247,434247 +109923,109923 +317867,317867 +416103,416103 +120055,120055 +291337,291337 +58666,58666 +316031,316031 +62358,62358 +352004,352004 +25608,25608 +27449,27449 +306417,318409 +56001,56001 +420456,420456 +400234,400234 +336942,336942 +412107,412107 +29471,29471 +318446,318446 +411853,411853 +313490,313490 +107359,107359 +201369,201369 +128195,128195 +159762,159762 +433302,433302 +174225,174225 +360478,360478 +363501,363501 +417164,417164 +94203,94203 +429516,429516 +181034,181034 +20764,20764 +286430,286430 +25540,25540 +358048,358048 +425690,425690 +202647,202647 +203206,203206 +34684,34684 +111523,111523 +137719,137719 +328872,328872 +43170,43170 +405104,405104 +394185,394185 +155681,155681 +317711,317711 +67992,67992 +432387,432387 +17063,17063 +134429,134429 +76564,76564 +38177,38177 +23997,23997 +330209,330209 +239695,239695 +32892,32892 +62351,62351 +344270,344270 +390989,390989 +66358,66358 +269635,269635 +218282,218282 +431051,431051 +317151,317151 +109385,109385 +6331,6331 +357331,357331 +204174,204174 +210302,210302 +358486,358486 +433089,433089 +273578,273578 +362679,362679 +110137,110137 +119772,119772 +366789,366789 +55247,55247 +428315,243312 +294621,294621 +135963,135963 +231522,231521 +116867,116867 +434422,434422 +66131,66131 +69807,69807 +354839,354839 +220729,220729 +56130,56130 +254026,254026 +59702,59702 +21135,21135 +21525,21525 +112143,112143 +331402,331402 +392769,392769 +329633,329633 +129160,129160 +38445,38445 +417098,417098 +121634,121634 +72670,72670 +31944,31944 +138099,138099 +325534,325534 +269182,269182 +427085,427085 +146934,146934 +181001,181001 +296690,296690 +28823,28823 +21042,21042 +36196,36196 +421291,421291 +22352,22352 +23477,23477 +300149,300149 +40065,40065 +368542,368542 +320974,320974 +197094,197094 +176773,330684 +26436,26436 +112466,112466 +373792,373792 +272430,272430 +316499,268834 +417700,417700 +317324,317324 +417562,417562 +40839,40839 +20276,20276 +128022,128022 +301722,301722 +431543,431543 +280318,280318 +378635,378635 +344417,344417 +383712,383712 +428781,428781 +132613,132613 +343948,343948 +92133,92133 +373368,373368 +157301,157301 +41280,41280 +137007,137007 +431155,431155 +360472,360472 +156228,156228 +179777,179777 +414051,414051 +403127,403127 +67995,67995 +119919,119919 +406358,406358 +17833,17833 +103071,103071 +123324,123324 +21784,21784 +98871,98871 +171306,171306 +343527,343527 +368996,368996 +59640,59640 +277924,277924 +263195,263195 +108682,108682 +12973,12973 +379979,379979 +36831,36831 +33187,33187 +324040,324040 +300868,300868 +357269,357269 +31533,31533 +319056,319056 +341500,341500 +431652,431652 +358756,358756 +40493,40493 +11985,11985 +124506,124506 +62650,62650 +321319,321319 +96517,96517 +114232,114232 +189677,189677 +353760,353760 +324137,324137 +431757,431757 +110540,110540 +58304,58304 +150949,150949 +287947,287947 +332875,332875 +297715,297715 +239640,239640 +228100,228100 +417564,417564 +339188,339188 +127332,127332 +362680,362680 +218675,218675 +146111,146111 +276478,276478 +414076,414076 +127381,127381 +141276,141276 +39965,39965 +194285,194285 +206549,206549 +115366,115366 +327043,327043 +111973,111973 +20762,20762 +66321,66321 +402434,402434 +346114,346114 +304887,304887 +431003,431003 +386451,386451 +90733,90733 +428384,428384 +66036,66036 +353438,353438 +115760,115760 +182755,182755 +19441,19441 +395342,395342 +26065,26065 +342142,342142 +282336,282336 +143165,143165 +247810,247810 +154233,154233 +418557,418557 +27621,27621 +362948,362948 +195217,195217 +347191,347191 +155957,155957 +42822,42822 +38014,38014 +30819,30819 +73057,73057 +41515,41515 +231565,231565 +424797,424797 +116161,116161 +36512,36512 +11523,11523 +367192,367192 +21687,21687 +424110,424110 +11080,11080 +37406,37406 +293381,293381 +420546,463 +239618,239618 +335638,335638 +408556,408556 +305201,305201 +323279,323279 +15579,15579 +30733,30733 +175393,175393 +340675,340675 +377192,377192 +289408,289408 +39664,39664 +151902,151902 +64531,64531 +89552,89552 +262087,262087 +205163,205163 +12857,12857 +373065,373065 +151250,151250 +333871,333871 +321681,321681 +79815,79815 +288528,288528 +428619,428619 +22745,22745 +32531,32531 +128196,128196 +31514,31514 +88548,88548 +424564,424564 +70246,70246 +420382,420382 +409186,409186 +354658,354658 +26359,26359 +31672,31672 +311423,311423 +339015,339015 +15124,15124 +249069,249069 +113388,113388 +268463,268463 +35279,35279 +144915,144915 +121489,121489 +15373,15373 +375722,375722 +30987,30987 +347823,347823 +404812,404812 +24633,24633 +429607,429607 +367483,367483 +177335,177335 +369428,369428 +46652,46652 +354738,354738 +106517,106517 +66127,66127 +36934,36934 +33137,33137 +225602,355987 +30014,30014 +63998,63998 +338623,338623 +358890,358890 +409171,409171 +16467,16467 +56221,56221 +332152,332152 +343012,343012 +20809,20809 +401924,401924 +30130,28296 +422889,7453 +250969,250969 +169241,169241 +424351,424351 +12101,12101 +42545,42545 +38588,38588 +406603,406603 +24613,24613 +28409,28409 +270162,270162 +81692,81692 +53689,53689 +152015,152015 +256815,256815 +160389,160389 +164560,164560 +357185,357185 +362466,362466 +173114,173114 +325225,325225 +427799,427799 +22170,22170 +357944,357944 +141879,141879 +374773,374773 +171914,171914 +425244,425244 +123485,123485 +14949,14949 +255936,255936 +111230,111230 +24686,24686 +326435,326435 +111789,111789 +337430,182401 +38509,38509 +406526,16634 +34126,34126 +313383,313383 +353597,353597 +127987,127987 +424000,424000 +294596,294596 +24756,24756 +4856,4856 +110001,110001 +117936,117936 +227369,227369 +172513,172513 +432845,432845 +63702,63702 +408072,408072 +167317,167317 +404260,404260 +20518,20518 +30037,30037 +429203,429203 +429863,429863 +403525,403525 +128269,128269 +41908,41908 +29726,29726 +66770,66770 +383213,383213 +43104,43104 +25582,25582 +355422,355422 +429914,429914 +319694,319694 +240625,240625 +205235,205236 +429641,429641 +206065,206065 +19546,19546 +58034,58034 +378165,378165 +178213,178213 +212563,212563 +122602,122602 +340395,340395 +20927,20927 +307178,307178 +434496,434496 +67797,67797 +101853,101853 +323602,156446 +21518,21518 +376539,376539 +135521,135521 +360162,360162 +373008,373008 +410322,410322 +433689,433689 +430007,430007 +37687,37687 +428700,428700 +401304,401304 +140106,140106 +299991,299991 +303452,303452 +413711,413711 +17326,17326 +32180,32180 +35086,35086 +356988,356988 +28329,28329 +102655,102655 +431551,342135 +120310,120310 +425534,425534 +299577,299577 +126674,126674 +299238,299238 +268282,263353 +120861,120861 +39695,39695 +35321,35321 +129933,129933 +85555,85555 +408648,408648 +30394,30394 +297387,297387 +187297,187297 +62419,62419 +285923,285923 +14329,14329 +284337,284337 +109644,109644 +196833,196833 +124911,124911 +63069,63069 +31463,31463 +141478,141478 +327547,327547 +308951,308951 +175401,175401 +207036,207036 +259113,259113 +16867,16867 +265416,265416 +427392,427392 +264427,264427 +127183,127183 +400753,400753 +241642,241642 +387941,387941 +133604,133604 +430966,430966 +347572,347572 +20789,20789 +268681,268681 +177536,177536 +42614,42614 +310312,310312 +395928,395928 +418506,418506 +237359,237359 +20568,20568 +400736,400736 +22837,22837 +62542,62542 +79213,79213 +159783,159783 +34516,34516 +29459,29459 +342105,342105 +154346,154346 +41756,41756 +39954,39954 +157932,157932 +137224,137224 +40835,40835 +432407,432407 +250815,250815 +433244,433244 +40614,40614 +429537,429537 +336903,336903 +122732,122732 +65766,65766 +374258,374258 +171360,171360 +23971,9592 +253349,253349 +30620,30620 +341905,341905 +372331,372331 +41867,41867 +36085,36085 +60854,60854 +174662,174662 +365359,365359 +154513,154513 +166565,166565 +247767,247767 +341940,341940 +186977,186977 +315952,315952 +430992,204836 +304335,304335 +31407,31407 +58265,58265 +29141,29141 +427296,427296 +24954,24954 +283627,283627 +403112,403112 +16888,16888 +42464,42464 +298688,298688 +102214,102214 +11742,11742 +388629,388629 +28080,28080 +431143,431143 +115629,115629 +142703,142703 +15359,15359 +352180,352180 +182600,182600 +176469,193556 +154987,154987 +175423,175423 +326763,326763 +422960,422960 +432391,432391 +122301,122300 +409836,409836 +374520,374520 +367299,367299 +123104,123104 +426996,426996 +116484,116484 +379033,379033 +235701,235701 +59589,59589 +51330,51330 +175391,175391 +125558,125558 +28319,28319 +66725,66725 +340047,340047 +102247,102247 +111383,111383 +342194,342194 +430017,430017 +212271,212271 +151460,151460 +201421,201421 +419319,419319 +327487,327487 +230770,230770 +420871,420871 +416255,416255 +274166,274166 +99578,99578 +67834,67834 +41362,41362 +411030,411030 +42747,42747 +343575,343575 +319417,319417 +170115,170115 +134199,134199 +34529,34529 +127892,127892 +231667,231667 +375939,375939 +161534,161534 +194921,194921 +27732,27732 +164756,164756 +104423,104423 +432802,432802 +151360,151360 +353270,353270 +85203,85203 +413185,413185 +174237,174237 +129164,129164 +133321,133321 +254211,254211 +379278,379278 +231423,231423 +402587,402587 +133899,133899 +79809,79809 +14070,14070 +283451,283451 +247868,247868 +393859,393859 +200620,200620 +18437,18437 +110470,110470 +276964,276964 +23437,23437 +321312,321312 +355664,355664 +24054,24054 +419691,419691 +123771,123771 +317864,317864 +265808,265808 +428623,428623 +329513,329513 +402074,402074 +318041,318041 +366969,366969 +356965,356965 +27197,27197 +25283,25283 +398631,398631 +409998,409998 +407953,407953 +34466,34466 +428818,428818 +144461,144461 +35517,35517 +178500,178500 +402565,402565 +355327,355327 +113192,113192 +41360,41360 +164510,164510 +165062,165062 +214258,214258 +188976,188976 +308619,308619 +158834,158834 +348935,348935 +239638,239638 +280778,280778 +267335,267335 +119305,119305 +43061,43061 +159341,159341 +425674,5312 +338003,338003 +420019,420019 +363697,363697 +96880,96880 +378516,378516 +266604,266604 +65506,65506 +314490,314490 +70487,70487 +32160,32160 +46030,46030 +89100,89100 +286979,286979 +84071,84071 +424958,424958 +255547,255547 +134614,134614 +212628,212628 +148985,148985 +377330,234473 +174683,174683 +164570,164570 +367985,367985 +170090,170090 +297511,297511 +415426,415426 +60857,60857 +69135,69135 +30926,30926 +88305,88305 +163071,163071 +21759,21759 +306880,306880 +39208,39208 +417488,417488 +133319,133319 +352900,352900 +23121,23121 +15769,15769 +129487,129487 +282837,282837 +24904,24904 +44570,44570 +374586,374586 +28195,28195 +301680,301680 +34542,34542 +368703,368703 +156095,156095 +37033,37033 +121883,121883 +324001,324001 +426465,426465 +135527,135527 +99781,99781 +116641,116641 +41388,41388 +347065,41360 +352214,352214 +158165,158165 +198387,198387 +20975,20975 +137367,137367 +421402,421402 +328999,328999 +98895,98895 +435065,435065 +160486,160486 +241944,241944 +229236,229236 +338225,338225 +370866,370866 +32112,32112 +425654,143050 +63510,63510 +99665,99665 +124470,124470 +124324,124324 +375219,375219 +422140,422140 +140090,140090 +175936,175936 +277158,277158 +298342,298342 +165098,165098 +139697,139697 +424181,424181 +222236,222236 +140590,140590 +24553,24553 +13526,13526 +16445,16445 +276151,276151 +124434,124434 +143160,143160 +178020,178020 +302737,302737 +10909,10909 +80438,80438 +313305,313305 +433872,433872 +91866,91866 +30734,30734 +270103,270103 +172862,172862 +60795,60795 +139767,139767 +142524,142524 +178542,178542 +90186,90186 +233167,233167 +124710,124710 +340509,340509 +383582,383582 +6148,6148 +118224,118224 +119346,119346 +311794,311794 +39270,39270 +133588,133588 +431302,7092 +327981,327981 +340548,340548 +250816,250816 +322443,322443 +299722,299722 +313526,313526 +66137,66137 +429370,429370 +360906,360906 +366048,371844 +249085,249085 +96892,96892 +285823,285823 +340099,340099 +32770,32770 +65288,65288 +29592,29592 +43148,43148 +322434,322434 +318971,318971 +352909,352909 +36940,36940 +392702,392702 +426460,426460 +347932,175029 +301180,301180 +432555,432555 +207837,207837 +417171,272854 +109462,109462 +431423,431423 +229040,229044 +426641,426641 +245004,245004 +175485,175485 +2723,2723 +423649,344789 +171205,171205 +27382,27382 +83408,83408 +156602,156602 +381539,381539 +114666,114666 +93735,93735 +395708,395708 +60284,60284 +350086,350086 +18452,18452 +410891,410891 +174732,174732 +247645,247645 +423237,423237 +358732,358732 +399725,399725 +154516,154516 +290776,290776 +237725,237725 +374358,374358 +374123,374123 +376335,376335 +40577,40577 +46106,46106 +424345,424345 +154680,154680 +408453,408453 +316178,316178 +36692,36692 +111784,111784 +217203,217203 +433090,433090 +141625,141625 +154080,154080 +71369,71369 +32703,32703 +380841,380841 +46246,46246 +257097,257097 +253280,253280 +161628,161628 +269467,269467 +32848,32848 +319018,319018 +300651,300651 +420070,420070 +20961,20961 +116038,116038 +139659,139659 +209633,209633 +347402,347402 +37991,37991 +38370,38370 +14998,14998 +341809,158575 +299115,299115 +416822,416822 +20352,20352 +193106,193106 +17179,17179 +161649,161649 +208299,208299 +435009,435009 +23807,23807 +64000,64000 +351100,351100 +18988,18988 +104411,104411 +296320,296320 +395356,395356 +39589,39589 +32975,32975 +71386,71386 +73619,73619 +379550,379550 +212921,212921 +21009,21009 +35195,35195 +63585,63585 +170665,170665 +190733,190733 +34491,34491 +300278,300278 +142259,142259 +245949,245949 +398738,398738 +163950,163950 +34731,34731 +285313,326358 +13869,13869 +42592,42592 +173599,173599 +314394,314394 +345092,345092 +419872,419872 +421607,421607 +372807,372807 +16363,16363 +237125,237125 +426272,426272 +127394,127394 +281175,281175 +357982,357982 +42606,42606 +429462,429462 +15859,15859 +171808,171808 +306674,306674 +429224,429224 +57984,57984 +432711,432711 +30886,30886 +336943,336943 +218452,218452 +71993,71993 +110003,110003 +349790,349790 +352018,352018 +60853,60853 +68353,68353 +41549,41549 +232362,232362 +343962,343962 +302254,302254 +302303,302302 +20777,20777 +102267,102267 +87336,87336 +240751,240751 +420116,420116 +39260,39260 +37889,463 +172841,172841 +184767,184767 +110185,110185 +414193,414193 +21143,21143 +343686,343686 +320894,320894 +159663,159663 +407299,407299 +370091,370091 +35131,35131 +28840,28840 +344163,344163 +121134,121134 +148216,148216 +252771,252771 +274268,274268 +263224,263224 +417189,417189 +40846,40846 +42841,42841 +406687,406687 +258844,160762 +432209,432209 +197344,197344 +408452,408452 +293205,293205 +326266,326266 +119307,119307 +431457,431457 +319813,321181 +291338,291338 +414199,414199 +27543,27543 +39111,39111 +235620,235620 +399971,399971 +405865,405865 +338352,354790 +434354,434354 +336959,336959 +30236,30236 +129288,129288 +37531,37531 +420006,420006 +37347,37347 +244182,244182 +420302,420302 +31061,31061 +62529,62529 +305343,87856 +180422,180422 +37887,37887 +245833,245833 +34826,34826 +130418,130418 +270511,270511 +417934,417934 +368059,368059 +189514,189514 +348428,348428 +109681,109681 +98073,98073 +401809,401809 +66049,66049 +413127,413127 +183227,183227 +62342,62342 +383652,383652 +403524,403524 +180905,180905 +346843,346843 +62789,62789 +71487,71487 +184799,184799 +25286,25286 +405201,405201 +160656,160656 +124684,124684 +265041,265041 +276048,276048 +148890,148890 +179616,179616 +411738,435073 +17242,17242 +264502,264502 +340651,340651 +400189,400189 +302888,302888 +408717,408717 +69484,69484 +255571,255571 +414824,414824 +70469,70469 +414289,414289 +64282,64282 +38136,38136 +424366,424366 +36079,36079 +383231,383231 +191087,191087 +408973,408973 +386167,386167 +114313,114313 +256827,256827 +228608,228608 +382177,382177 +406624,406624 +46120,46120 +395379,395379 +312670,312670 +427957,429942 +432858,432858 +303744,303744 +251695,251695 +90388,90388 +85712,85712 +20779,20779 +41443,41443 +382551,382551 +27526,27526 +431394,431394 +23056,23056 +113306,113306 +418476,418476 +233564,233564 +115368,115368 +377890,377890 +343084,343084 +430014,430014 +20855,20855 +301314,301314 +54162,54162 +25704,25704 +168967,168967 +289514,289514 +21359,21359 +301136,301136 +129698,129698 +379372,379372 +247496,247496 +366847,366847 +177330,177330 +228388,228388 +389294,210113 +32163,32163 +398223,348955 +218620,218620 +306858,306857 +90775,90775 +292814,292814 +281325,281325 +417432,417432 +276674,276674 +407175,407175 +232857,232857 +261864,261864 +31902,31902 +162786,162786 +37286,37286 +308756,308758 +129756,129756 +157251,157251 +31648,31648 +419188,419188 +294203,294203 +30916,30916 +172604,172604 +360360,360360 +307540,307540 +402660,402660 +230278,230278 +421134,421134 +202255,202255 +281389,281389 +22712,22712 +137846,137846 +366641,366641 +338002,338002 +147211,147211 +34203,34203 +413116,311397 +19140,19140 +299900,299900 +178290,178290 +33940,33940 +73264,73264 +14420,14420 +202129,202129 +284632,284632 +279820,279820 +319936,319936 +220311,220311 +368083,334307 +116209,116209 +430416,430416 +424798,424798 +39051,39051 +356910,356910 +291540,291540 +36290,36290 +428681,428681 +174157,174157 +123785,123785 +296788,296788 +405685,405685 +15619,15619 +411139,17749 +325455,325455 +72336,72336 +421237,421237 +246306,246306 +367274,367274 +83744,83744 +43319,43319 +268259,268259 +26663,26663 +11998,11998 +100271,100271 +17170,17170 +98995,98995 +255575,255575 +37464,37464 +412547,412547 +39957,39957 +21680,21680 +159619,159619 +22680,22680 +138227,138227 +284731,284731 +425979,425979 +426400,426400 +34595,34595 +302063,302063 +322309,322309 +127149,127149 +15992,15992 +356391,356391 +302422,302393 +355519,97687 +412077,412077 +400107,400107 +317020,317020 +55615,55615 +356021,356021 +186324,186324 +53795,53795 +298301,298301 +104218,104218 +429514,429514 +353783,353783 +66266,66266 +388702,388702 +54942,54942 +225206,225206 +152509,152509 +56004,56004 +293629,293629 +161479,161479 +34427,34427 +240534,240534 +305473,305473 +425218,425218 +347569,347569 +28808,28808 +43574,43574 +325069,325069 +26375,26375 +5372,5372 +304036,304036 +190327,190327 +430794,430794 +363734,363734 +69648,69648 +252664,252664 +32768,32768 +353811,353811 +302304,302302 +365861,365861 +70089,70089 +25329,25329 +323792,323792 +156292,156292 +5490,5490 +133601,133601 +387281,387281 +407951,407951 +15227,15227 +65473,65473 +28152,28152 +17455,17455 +129503,129503 +168547,168547 +160837,160837 +417109,417109 +418975,418975 +426774,426774 +335128,335128 +420691,420691 +158960,158960 +133749,32639 +409343,409343 +31402,31402 +299138,299138 +187876,187876 +433120,73554 +378865,378865 +359684,359684 +28418,28418 +222997,222997 +332003,332003 +301899,301899 +113058,113058 +153322,153322 +36100,36100 +120276,120276 +214476,214476 +137695,137695 +131507,131507 +316168,316168 +58719,58719 +152547,152547 +17046,17046 +344993,344993 +323311,323311 +30544,30544 +290714,290714 +276154,276154 +227172,227172 +181184,181184 +369508,369508 +32572,32572 +33577,33577 +342481,342481 +42737,42737 +60452,60452 +228305,228305 +326845,326845 +32812,32812 +267741,267741 +346565,346565 +181973,181973 +256517,256517 +248252,248252 +424825,424825 +153063,153063 +47364,47364 +374255,374255 +428694,373264 +355659,355659 +260001,260001 +430977,430977 +420624,420624 +328681,328681 +31130,31130 +360963,360963 +377610,377610 +406957,406957 +119017,119017 +310279,310279 +11401,11401 +277774,277774 +204495,204495 +23466,23466 +428451,428451 +325140,325140 +163002,163002 +135414,135414 +153848,153848 +312451,312451 +433202,433202 +225311,225311 +433378,433378 +331286,331286 +430958,430958 +121927,121927 +306554,306554 +25346,25346 +132410,132410 +295457,295457 +83542,83542 +200618,200618 +126509,126509 +382733,382733 +178351,178351 +172967,172967 +153636,153636 +229037,229044 +67911,67911 +396540,396540 +129854,129854 +157279,157279 +270014,270014 +335120,335120 +383043,383043 +307307,307307 +255606,255606 +21956,21956 +291774,291774 +99615,99615 +261402,261402 +301563,301563 +299867,299867 +21515,21515 +322870,322870 +243716,243716 +200937,200937 +328215,328215 +97965,97965 +132271,132271 +27193,27193 +340022,340022 +134882,134882 +113327,113327 +97967,97967 +130683,130683 +124688,124688 +358662,358662 +377448,377448 +139150,139150 +375746,351602 +305131,305131 +247531,247531 +129349,129349 +321932,321932 +421608,421608 +183215,183215 +15143,15143 +364267,364267 +232929,232929 +194984,194984 +28061,28061 +23295,23295 +261468,261468 +417965,417965 +389094,389094 +360223,360223 +392460,392460 +191476,191476 +433413,433413 +207309,207309 +349108,349108 +332482,332482 +305029,305029 +419748,419748 +419678,419678 +99957,99957 +298325,298325 +143214,143214 +230118,230118 +56433,56433 +65460,65460 +119660,119660 +129471,129471 +128128,128128 +30487,30487 +408561,408561 +227686,227686 +264310,264310 +176593,176593 +382231,382226 +27369,27369 +117803,117803 +358156,358156 +170538,170538 +160349,160349 +357582,319307 +310201,310201 +18168,18168 +99441,99441 +201855,201855 +405619,405619 +164986,164986 +23836,12213 +343743,342105 +29723,29723 +179575,179575 +398669,398669 +428906,300753 +429857,429859 +137700,137700 +29315,29315 +422453,422453 +341346,341346 +433509,433509 +406686,406686 +156328,156328 +107983,107983 +120773,120773 +313853,313853 +34432,34432 +21694,21694 +127314,127314 +289190,303247 +122813,122813 +325141,325141 +432815,35327 +355532,355532 +43440,43440 +22713,22713 +322430,322430 +169549,169549 +277225,277225 +176935,176935 +163448,163448 +29628,29628 +347394,347394 +291544,291544 +306168,306168 +109057,109057 +324561,324561 +386453,386453 +152872,152872 +417812,417812 +35128,35128 +116603,116603 +182703,182703 +249539,249539 +283162,283162 +394198,394198 +96194,96194 +354450,354450 +254265,254265 +406618,406618 +90139,90139 +26627,26627 +33190,33190 +261988,261988 +242371,242371 +192833,192833 +175388,175388 +287898,287898 +424401,424401 +62536,62536 +61150,61150 +307480,307480 +122975,122975 +63584,63584 +84311,84311 +85212,85212 +54761,54761 +120271,120271 +26667,26667 +265616,265616 +22720,22720 +205287,205287 +139107,139107 +319596,319596 +29993,29993 +419787,419787 +256417,256417 +32841,32841 +417661,417661 +425977,425977 +145472,145472 +88825,88825 +35177,35177 +169334,169334 +145819,145819 +42788,42788 +20886,20886 +368315,368315 +316990,316990 +262576,262576 +417662,417662 +403612,403612 +54466,54466 +35304,35304 +17545,17545 +154289,154289 +32719,32719 +113897,113897 +145806,145806 +100724,100724 +306201,306201 +73843,73843 +246949,246949 +340612,340612 +413313,413313 +47024,47024 +256613,256613 +97705,97705 +291590,291590 +57733,57733 +102274,102274 +431248,431248 +424137,424137 +393867,393867 +328207,328207 +433315,433315 +365733,365733 +17664,17664 +150604,150604 +337683,337683 +273520,273520 +323559,323559 +64240,64240 +298403,298403 +229124,229124 +223389,223389 +72559,72559 +402928,402928 +365220,365220 +66099,66099 +433637,433637 +423974,423924 +354455,354455 +178090,178090 +25825,25825 +354205,354203 +28839,28839 +347771,347771 +425960,425960 +355538,355538 +41780,41780 +300339,300339 +324068,324068 +122119,122300 +97428,97428 +89797,89797 +147141,299082 +175745,175745 +192327,192327 +403117,403117 +26228,26228 +13176,13176 +179621,179621 +331151,331151 +27975,27975 +392679,392679 +237129,237129 +81104,81104 +230569,230569 +135609,135609 +433229,433229 +26783,26783 +352974,352974 +317144,317144 +191350,191350 +32145,32145 +416662,416662 +362372,362372 +159331,159331 +238627,238627 +122283,122283 +342665,342665 +353710,353710 +296781,296781 +32898,26292 +268228,268228 +310920,310920 +377484,377484 +170812,170812 +42358,42358 +434435,434435 +41938,41938 +396896,396896 +380446,380446 +297367,297367 +23620,23620 +322189,322189 +36227,36227 +110000,110000 +307479,307479 +199372,199372 +406544,406544 +119417,119417 +171946,171946 +163664,163664 +184727,184727 +293683,293683 +9678,9678 +197547,197547 +35389,35389 +341818,341818 +119069,119069 +126551,126551 +344097,344097 +197761,197761 +419100,419100 +140032,140032 +33109,33109 +378841,378841 +263364,263364 +34121,34121 +388274,388274 +178625,178625 +335187,335187 +264458,264458 +366882,366882 +97980,97980 +312637,312637 +410603,410603 +204412,204412 +334787,334787 +27523,27523 +319961,319961 +278170,278170 +244600,244600 +188744,188744 +6579,6579 +335570,335570 +244180,244180 +68325,68325 +137755,137755 +256244,256244 +21168,21168 +403537,403537 +313076,313076 +382645,382645 +25599,25599 +106625,106625 +60784,60784 +153274,153274 +30802,30802 +37048,37048 +128139,128139 +326730,326730 +94094,94094 +19767,19767 +417993,218421 +157766,157766 +176924,176924 +171365,171365 +120894,120894 +166034,166034 +93896,93896 +417988,218421 +433990,433990 +65573,65573 +175384,175384 +16012,16012 +153282,153282 +317354,463 +119727,119727 +65886,65886 +159878,159878 +427808,427808 +317862,317862 +163490,163490 +64979,64979 +362223,362223 +420297,420297 +342687,342687 +358996,358996 +333753,333753 +87886,87886 +429471,429471 +433210,433210 +280597,280597 +175238,175238 +76538,76538 +227319,227319 +154726,154726 +428337,428337 +180396,180396 +43195,43195 +70779,70779 +374046,374046 +16199,16199 +119609,119609 +281980,281980 +348482,348482 +164737,164737 +306099,306099 +111818,111818 +38097,38097 +42426,42426 +379169,379169 +110147,110147 +402396,402396 +371817,266344 +422973,422973 +432304,432304 +43322,43322 +329318,329318 +35421,35421 +63421,63421 +406452,406452 +401118,401118 +66332,66332 +352977,352977 +421926,421926 +65799,65799 +65751,65751 +425264,425264 +233758,233758 +69377,69377 +376336,376336 +418182,418182 +269946,269946 +151743,151743 +127106,127106 +41350,41350 +32620,32620 +300885,300885 +145739,145739 +301974,305107 +94237,94237 +38019,38019 +174561,174561 +139844,139844 +209770,209770 +371224,371224 +379234,379234 +420536,420536 +63942,63942 +118636,118636 +429856,429856 +421977,421977 +34757,34757 +43183,43183 +365218,365218 +3795,3795 +182329,182329 +338548,338548 +21943,21943 +405298,405298 +375525,375525 +415738,415738 +65722,65722 +388611,388611 +332803,332803 +190028,190028 +334806,334806 +71153,71153 +31288,15566 +127705,127705 +24724,24724 +96309,96309 +41167,41167 +131074,131074 +175667,175667 +432208,432208 +394284,394284 +382905,382905 +41465,41465 +12550,12550 +59361,59361 +169565,169565 +123176,123176 +66504,66504 +400596,400596 +373004,373004 +183149,183149 +59291,59291 +425554,425554 +213671,213671 +159311,159311 +94037,94037 +356102,356102 +114020,114020 +278363,278363 +319410,319410 +175523,175523 +387717,387717 +134869,134869 +10736,10736 +43192,43192 +139494,139494 +358580,358048 +13632,13632 +307964,307964 +386866,386866 +139715,139715 +262975,262975 +398664,398664 +404937,404937 +306949,306949 +166928,166928 +23316,23316 +307952,307952 +67991,67991 +171637,171637 +281682,281682 +254197,254197 +414188,414188 +109150,109150 +36967,36967 +312793,312793 +125383,125383 +139956,139956 +139151,139151 +143751,143751 +71720,71720 +240697,240697 +271139,271139 +42069,42069 +112605,112605 +119547,119547 +182334,182334 +392712,392712 +98870,98870 +64414,64414 +11953,11953 +363035,363035 +335262,335262 +319688,319688 +17886,17886 +379004,379004 +49899,49899 +37009,37009 +34035,34035 +286395,286395 +432260,432260 +287197,287197 +332297,332297 +32078,32078 +351867,351867 +322115,322115 +88894,88894 +161411,161411 +402753,402753 +433788,433788 +395307,395307 +295900,295900 +179694,179694 +389821,389821 +43451,43451 +65425,65425 +258022,258022 +425465,425465 +278005,278005 +16952,16952 +432089,432089 +200583,200583 +215676,215676 +354551,354551 +33986,33986 +315597,315597 +349785,349785 +333846,333846 +134284,134284 +320832,320832 +302293,302293 +98743,98743 +334950,334950 +333797,333797 +427073,427073 +159782,159782 +59528,59528 +138948,138948 +411215,411215 +423739,423739 +383257,383257 +412962,412962 +200704,200704 +392957,392957 +14771,14771 +317502,317502 +250668,250668 +90049,90049 +319061,319061 +422550,422550 +150529,150529 +218368,218368 +39540,39540 +371862,371862 +40067,40067 +184027,184027 +37715,37715 +337751,337751 +402873,402873 +407987,407987 +376770,376770 +36957,36957 +152549,152549 +350571,350571 +406445,406445 +434875,434875 +129435,129435 +16568,16568 +169442,169442 +40553,40553 +139298,139298 +112045,112045 +263098,263098 +301276,301276 +386362,386362 +122338,122338 +394213,394213 +425796,425796 +55285,55285 +266424,266424 +201901,201901 +60018,60018 +123149,123149 +363239,363239 +11098,11098 +32062,32062 +58039,58039 +119501,119501 +127752,127752 +413654,413654 +36253,36253 +198839,198839 +113778,113778 +227853,227853 +401639,281260 +425260,425260 +130073,130073 +272749,272749 +383470,383470 +135435,135435 +29645,29645 +433706,433706 +422944,422944 +26085,26085 +295452,295452 +183680,183680 +340144,340144 +68863,68863 +18837,18837 +128968,128968 +9970,9970 +60878,60878 +143558,143558 +41531,41531 +182175,182175 +379659,379659 +59540,59540 +377627,377627 +110262,110262 +163300,163300 +434154,434154 +304515,304515 +433379,433379 +63369,63369 +162112,162112 +268894,268894 +379799,379799 +340187,340187 +374035,374035 +37274,37274 +71209,71209 +424411,424411 +24393,24393 +316185,316185 +181575,181575 +188492,188492 +404029,404029 +374613,374613 +298833,298833 +386833,275059 +311682,311682 +415834,415834 +432280,432280 +86792,86792 +127363,127363 +30773,30773 +351283,351283 +433478,433478 +431039,431039 +159399,159399 +420154,420154 +338516,338516 +379700,379700 +373130,16030 +181522,181522 +23680,23680 +105918,105918 +367212,367212 +410176,410176 +53759,53759 +12834,12834 +297558,297558 +79275,79275 +283033,283033 +27553,27553 +311784,311784 +39380,39380 +423313,423313 +400660,400660 +129259,129259 +13599,13599 +415852,415852 +132607,132607 +395331,395331 +65804,65804 +134821,134821 +327558,327558 +316611,27968 +127159,127159 +430397,430397 +352332,352332 +428766,428766 +154980,154980 +177826,177826 +115656,115656 +401925,401925 +44542,44542 +20693,20693 +418803,418803 +184587,184587 +171849,171849 +342539,342539 +276297,276297 +138254,138254 +262305,262305 +409574,409574 +258348,258348 +38960,38960 +421274,421274 +273685,273685 +102775,102775 +346612,346612 +96340,96340 +325324,325322 +430972,430972 +405185,405185 +25291,25291 +147103,147103 +13796,13796 +281893,281893 +119016,119016 +226411,226411 +430726,430726 +152920,152920 +305044,305044 +252607,252607 +365604,365604 +282529,282529 +133310,133310 +75976,75976 +38706,38706 +20921,20921 +356767,356767 +171902,171902 +186890,186890 +349060,349060 +189820,189820 +43037,43037 +25822,25822 +298140,298140 +130542,130542 +170772,170772 +270645,270645 +37594,37594 +422076,422076 +391788,391788 +19631,19631 +154284,154284 +406608,406608 +24533,24533 +127347,127347 +377451,377451 +28123,28123 +127711,127711 +355033,355033 +331239,331239 +251342,251342 +427646,427646 +241023,241023 +222383,222383 +306125,306125 +70258,70258 +46124,46124 +73152,73152 +33415,33415 +36432,36432 +141255,141255 +284014,284014 +251333,251333 +56313,56313 +285881,285881 +29179,29179 +281078,24706 +267129,267129 +371169,371169 +240530,240530 +309244,309244 +42038,42038 +159609,159609 +9012,9012 +327152,327152 +57830,57830 +328742,328742 +381985,381985 +114423,114423 +115470,115470 +375309,375309 +225256,225256 +425436,425436 +181383,181383 +327183,327183 +159898,134884 +234699,234699 +313460,313460 +404493,404493 +184880,184880 +58836,58836 +265315,265315 +10928,10928 +23544,23544 +305372,305372 +382258,382258 +179812,175836 +51618,51618 +296798,296798 +425220,425220 +19620,19620 +368104,299098 +20804,20804 +153955,153955 +344760,344760 +12159,12159 +241303,241303 +29197,29197 +360545,331097 +10938,10938 +333128,333128 +168629,168629 +354415,354415 +310121,310121 +41981,41981 +294243,294243 +138660,138660 +105278,105278 +281476,281476 +349542,349542 +432807,432807 +431692,317300 +32798,32798 +127701,127701 +414118,414118 +405448,405448 +307344,307344 +63484,63484 +29389,29389 +428514,428514 +228182,228182 +192161,192161 +145273,145273 +90847,90847 +312569,312569 +50934,50934 +73961,73961 +31085,31085 +293437,293437 +208005,208005 +30598,30598 +118505,118505 +202327,202327 +412529,412529 +163069,163069 +124238,124238 +89215,89215 +179045,179045 +403990,403976 +295475,295475 +194585,194585 +187935,187935 +25332,25332 +227653,227653 +46948,46948 +353435,353435 +141248,141248 +349187,349187 +405190,405190 +136374,136374 +421286,421286 +178004,178004 +126670,126670 +88330,88330 +140213,140213 +62546,62546 +31004,31004 +62957,62957 +348026,348026 +320920,320920 +158593,158593 +6301,6301 +37386,37386 +29833,29833 +33012,33012 +208401,208401 +322731,322731 +413505,413505 +201456,201456 +161336,161336 +110352,110352 +93010,93010 +320007,320007 +407389,407389 +142523,142523 +340967,340967 +229449,229449 +13707,13707 +258696,258696 +428535,428535 +363313,363313 +311421,311421 +356287,356287 +255685,255685 +61691,61691 +31609,31609 +258700,258700 +153350,153350 +92587,92587 +366740,366740 +337860,337860 +381324,381324 +32212,32212 +35212,35212 +28079,28079 +248920,248920 +32933,32933 +57282,57282 +59288,59288 +175110,175110 +156711,156711 +209635,209635 +73132,73132 +319806,319806 +32273,32273 +116226,116226 +187895,187895 +262108,262108 +408519,408519 +187539,187539 +64308,64308 +31048,31048 +371341,371341 +13519,13519 +287120,287120 +33050,33050 +399437,399437 +140601,140601 +82585,82585 +181143,181143 +299966,299966 +420791,420791 +36379,36379 +352012,352012 +135481,135481 +429033,322524 +14572,14572 +99596,99596 +43181,43181 +338180,338180 +202470,202470 +135463,135463 +171826,171826 +177019,177019 +112819,112819 +421951,421951 +124473,124473 +339485,339485 +24584,24584 +62005,62005 +395839,395839 +395340,395340 +238253,238253 +403739,403739 +37787,37787 +65784,65784 +218280,218280 +25402,25402 +158119,158119 +205500,205500 +143851,143851 +35419,35419 +392390,392390 +350232,349784 +20144,20144 +302348,302348 +337224,337224 +115863,115863 +138019,138019 +401137,401137 +157139,157139 +65768,65768 +143849,143849 +22043,22043 +157997,157997 +29931,29931 +349540,349540 +43760,43760 +35171,35171 +37195,37195 +340886,340886 +342127,342127 +337747,337747 +286034,286034 +283201,283201 +29756,29756 +289188,289188 +340402,340402 +148513,148513 +132724,132724 +318493,318493 +137028,137028 +10745,10745 +28992,28992 +94556,94556 +6174,6174 +248466,248466 +12951,12951 +28771,28771 +272786,272786 +410177,367775 +160102,160102 +282169,282169 +170435,170435 +4530,4530 +260924,260924 +427170,427170 +19706,19706 +127379,127379 +143266,143266 +177417,177417 +433972,433972 +32777,32777 +405480,405480 +433819,433819 +343302,343302 +12554,12554 +209039,209039 +175387,175387 +169653,169591 +412528,412528 +97983,97983 +169657,169657 +18444,18444 +360131,360131 +163714,163714 +322194,322194 +346536,346536 +15487,15487 +344780,344780 +305947,305947 +18912,18912 +353280,353280 +335016,335016 +30012,30012 +70265,70265 +243129,243129 +433474,433474 +67923,67923 +417822,417822 +136357,136357 +287171,287171 +34607,34607 +204076,204076 +420153,420153 +154554,154554 +231653,231653 +298146,298146 +392280,392280 +432374,432374 +31924,31924 +91407,91407 +35056,35056 +33416,33416 +341796,341796 +946,946 +306603,306603 +170642,170642 +32738,32738 +113782,113782 +161698,161698 +34793,34793 +22569,22569 +250666,250666 +429371,429371 +131745,131745 +27132,27132 +297567,297567 +13633,13633 +382121,382121 +145779,145779 +110002,110002 +14143,14143 +67699,67699 +203368,203368 +111724,111724 +343303,343303 +47183,47183 +332585,332585 +299734,299734 +23410,23410 +170495,170495 +28780,28780 +142276,142276 +28332,28332 +123241,123241 +114468,114468 +42605,42605 +173234,173234 +35715,35715 +236882,236882 +42058,42058 +238252,238252 +12592,12592 +424560,424560 +70367,70367 +26347,26347 +296668,296668 +125571,125571 +403114,403114 +29158,29158 +285317,285317 +378866,378866 +227660,227660 +28719,28719 +17080,17080 +403068,403068 +378931,378931 +161753,161753 +402069,402069 +364399,364399 +345451,345451 +57305,57305 +125826,125826 +69816,69816 +40373,40373 +94967,94967 +316601,316601 +421021,421021 +28656,28656 +59872,59872 +40415,40415 +300311,300311 +380345,284261 +124436,124436 +36702,36702 +89299,89299 +140462,140462 +191947,191947 +430410,430410 +170129,170129 +321770,321770 +115307,115307 +322200,322200 +353338,341963 +421200,421200 +157145,157145 +35015,35015 +191539,191539 +424102,424102 +431359,431359 +219990,377157 +22070,22070 +25341,25341 +272592,272592 +405597,405597 +329519,329519 +99886,99886 +149578,149578 +377468,377468 +12789,12789 +78550,78550 +59530,59530 +11454,11454 +39011,39011 +341837,341837 +376456,376456 +65056,65056 +117874,117874 +434029,434029 +413728,413728 +421502,421502 +111857,111857 +123327,123327 +22196,22196 +298379,298379 +18449,18449 +172071,172071 +343492,343492 +425017,425017 +377574,377574 +334058,334058 +303528,303528 +76578,76578 +149807,149807 +202039,202039 +420146,420146 +433357,433357 +346852,346852 +35567,35567 +34039,34039 +284888,284888 +225289,28446 +291879,291879 +64302,64302 +12417,12417 +266573,266573 +67324,67324 +114119,114119 +42905,42905 +227569,227569 +426598,426598 +335906,335906 +14993,14993 +103808,103808 +129931,129931 +135409,135409 +67833,67833 +13601,13601 +301772,301772 +270508,270508 +276382,276382 +424185,424185 +86320,86320 +146796,146796 +154145,154145 +68180,68180 +317725,317725 +421698,421698 +386964,386964 +10023,10023 +287402,287402 +418968,418968 +283847,283847 +333676,333676 +41071,41071 +431258,431258 +13617,13617 +163000,163000 +109183,109183 +344970,344970 +429806,429806 +382744,339341 +351739,351739 +331406,331406 +28965,28965 +111714,111714 +25860,25860 +177828,177828 +13461,13461 +310477,310477 +16404,16404 +118389,118389 +216855,15760 +330003,330003 +393976,393976 +136292,136292 +435038,420366 +352279,352279 +28967,28967 +249006,249006 +301578,301578 +198465,198465 +40215,40215 +426938,426938 +172897,172897 +382154,382154 +101683,101683 +35584,35584 +274827,274827 +260250,260250 +425655,425655 +159453,159453 +18850,18850 +180679,180679 +262434,262434 +160473,160473 +71460,108524 +181323,181323 +97395,97395 +32203,32203 +348066,348066 +126727,126727 +374565,374565 +224818,224818 +178486,178486 +180134,180134 +36269,36269 +58424,58424 +62404,62404 +118724,118724 +23379,23379 +360253,348469 +377678,377678 +353256,353256 +276682,276682 +42914,42914 +82268,82268 +145958,145958 +405389,405389 +327572,327572 +163480,163480 +162875,162875 +434169,434169 +32403,32403 +17365,17365 +150622,150622 +109869,109869 +26360,26360 +213357,213357 +369046,88633 +391064,391064 +29170,29170 +84558,84558 +10135,10135 +306859,306857 +158293,158293 +423770,423770 +96168,96168 +153790,153790 +123661,123661 +159365,159365 +420172,420172 +41171,41171 +29557,29557 +433137,433137 +116949,116949 +284181,284181 +23517,23517 +385605,385605 +20106,20106 +19583,19583 +137212,137212 +199326,199326 +320779,320779 +425364,425364 +136299,136299 +385589,385589 +115015,115015 +118312,118312 +23035,23035 +430688,7092 +18404,18404 +405382,405382 +118175,118175 +322071,322071 +30471,30471 +111538,111538 +38447,38447 +134139,134139 +367930,367930 +42862,42862 +411423,411423 +227141,227141 +363291,363291 +131265,131265 +433186,433186 +426313,426313 +42466,42466 +323812,323812 +5947,5947 +70319,70319 +425205,425205 +418482,418482 +283324,283324 +341814,341814 +68318,68318 +182983,182983 +42976,42976 +192817,156118 +232662,232662 +203382,203382 +377509,377509 +118689,118689 +310240,310240 +334034,334034 +28819,28819 +33266,33266 +42012,42012 +397175,397175 +281746,281746 +429483,429483 +36926,36926 +424352,400209 +26213,26213 +24490,24490 +187384,187384 +371783,371783 +128165,128165 +253644,253644 +335567,335567 +204508,204508 +406665,406665 +153702,153702 +24547,24547 +9218,9218 +329671,329671 +303526,303526 +14341,14341 +42817,42817 +30581,30581 +377456,377456 +293530,293530 +34485,34485 +32925,32925 +411725,391549 +29752,29752 +311929,311929 +234123,234123 +238881,238881 +13148,13148 +147741,147741 +185960,185960 +377444,377444 +151704,151704 +182985,182985 +126673,126673 +312669,312669 +294620,294620 +32727,32727 +320961,320961 +35566,35566 +202872,202872 +162650,162650 +177615,177615 +357256,357256 +194996,194996 +431608,431608 +369542,369542 +36606,36606 +359654,359654 +31584,31584 +245840,245840 +380714,380714 +138891,138891 +27130,27130 +22789,22789 +419422,419422 +35583,35583 +25345,25345 +351986,351986 +11815,243632 +321187,321187 +20666,20666 +415001,415001 +319037,319037 +158521,158521 +182671,182671 +14390,14390 +286452,286452 +96071,96071 +240183,240183 +178158,178158 +350264,349784 +42792,42792 +29177,29177 +419967,419967 +409500,409500 +417396,417396 +60601,60601 +37950,37950 +364030,364030 +60703,60703 +53834,53834 +26269,26269 +132804,132804 +254298,254298 +263361,263361 +283041,283041 +34804,34804 +41400,41400 +379698,379698 +247449,247449 +384110,384110 +354385,354385 +391471,391471 +104168,104168 +43185,43185 +136195,136195 +195350,195350 +355523,355523 +244770,244770 +127121,127121 +378607,378607 +40187,40187 +432703,432703 +284929,284929 +112801,112801 +172772,172772 +22095,22095 +183705,183705 +278293,278293 +433811,433811 +365275,365275 +424647,424647 +420003,420003 +5528,5528 +24023,24023 +266148,266148 +28999,28999 +40162,40162 +385713,385713 +200754,200754 +342766,342766 +425561,425561 +324173,324173 +289458,289458 +350475,350475 +179735,36675 +161585,161585 +109605,109605 +168689,168689 +134757,134757 +415053,415053 +64502,64502 +31740,31740 +36458,36458 +369111,369111 +111238,111238 +434333,434333 +116017,116017 +324121,324121 +130351,130351 +34702,34702 +241141,241141 +302966,302966 +12510,12510 +36191,36191 +26723,26723 +272447,272447 +136961,136961 +238499,238499 +203226,203226 +36057,36057 +332892,332892 +337030,337030 +129405,129405 +311253,311253 +100011,100011 +425756,257706 +160934,160934 +282916,282916 +307516,307516 +186942,186942 +253321,253321 +121068,121068 +24500,24500 +291297,249735 +300791,300791 +318579,318579 +359248,359248 +273137,273137 +39651,39651 +37183,37183 +33923,33923 +405900,405900 +432873,432873 +218109,218109 +163522,163522 +163004,163004 +381422,381422 +402656,402656 +275040,275040 +299979,299979 +176439,176439 +329059,329059 +324476,324476 +316054,17582 +254260,254260 +193177,193177 +413905,413905 +288944,288944 +67973,33609 +434203,434203 +179997,179997 +151337,151337 +141893,141893 +160566,160566 +68621,68621 +110474,110474 +415251,415251 +310790,310790 +39369,39369 +343207,343207 +399384,399384 +87167,87167 +7429,7429 +63467,63467 +56806,56806 +109964,109964 +31670,31670 +411366,411366 +306862,306862 +344772,344772 +97439,97439 +273371,273371 +299119,299119 +400341,400341 +90052,90052 +58054,58054 +357301,357301 +51607,51607 +26371,26371 +129617,129617 +382227,382227 +144680,144680 +414470,414470 +18467,18467 +37180,37180 +152705,152705 +133420,133420 +301948,301948 +246305,246305 +409558,409558 +59718,59718 +312587,312587 +265744,265744 +64949,64949 +190271,190271 +402496,402496 +73210,73210 +31368,31368 +249538,249538 +57970,57970 +65741,65741 +386147,386147 +37916,37916 +255457,255457 +15221,15221 +243216,243216 +221767,221767 +32906,32906 +146234,146234 +305381,305381 +324042,324042 +37535,37535 +311075,311075 +159439,159439 +132189,132189 +326291,326291 +421075,421075 +203227,203227 +393236,393236 +33576,33576 +359916,359916 +375703,375703 +17218,17218 +433055,319762 +111637,111637 +406557,406557 +62950,62950 +383062,383062 +13930,13930 +273626,273626 +187090,187090 +429452,429452 +33980,33980 +160164,160164 +222893,222893 +404808,404808 +27307,27307 +40275,279272 +323059,323059 +285041,285041 +286968,286968 +57832,57832 +125171,125171 +37003,37003 +25457,25457 +278390,278390 +70471,70471 +30103,30103 +29313,29313 +6173,6173 +130356,130356 +369848,369848 +57274,57274 +202421,202421 +30124,30124 +358806,358806 +329797,329797 +69362,69362 +422480,422480 +7079,7079 +429303,429303 +29749,29749 +152028,152028 +41109,41109 +130056,130056 +393434,247144 +25325,25325 +308037,308037 +137727,137727 +256899,256899 +390378,390378 +237742,237742 +431389,431389 +251667,251667 +376693,43497 +172280,172280 +421162,421162 +43548,43548 +139749,139749 +108381,108381 +394159,394159 +257626,257626 +364954,364954 +432283,432283 +312986,312986 +114663,114663 +20469,20469 +159247,159247 +187754,187754 +172838,172838 +129467,129467 +156208,156208 +432224,432224 +415894,415894 +430439,430439 +23494,23494 +3987,3987 +282920,282920 +392550,392550 +36817,36817 +32443,32443 +113917,113917 +344444,344444 +66774,66774 +332249,332249 +401631,401631 +404422,404422 +303710,303710 +32139,32139 +292903,1029 +41072,41072 +50518,50518 +27697,27697 +39222,39222 +205166,205166 +41246,41246 +124115,124115 +372925,372925 +4630,4630 +281370,337677 +71102,71102 +432512,432512 +132279,132279 +170410,170410 +418688,418688 +177630,177630 +413568,413568 +305685,70128 +128132,128132 +30254,30254 +179177,179177 +339932,339932 +62557,62557 +14924,14924 +112815,112815 +21910,21910 +396348,396348 +330004,330004 +117486,117486 +48029,48029 +26263,26263 +277627,277627 +383253,383253 +417407,43022 +166201,166201 +26801,26801 +122591,122591 +223472,223472 +433813,433813 +140197,140197 +429889,429889 +317606,317606 +301702,301702 +361719,361719 +298139,298139 +124027,124027 +407064,407064 +344122,344122 +54286,54286 +135647,135647 +253116,253116 +423721,423721 +66848,66848 +8091,8091 +374232,374232 +257889,257889 +34528,34528 +7369,7369 +117788,117788 +311528,8669 +43053,43053 +171810,171810 +30681,30681 +97580,97580 +326862,387769 +434707,434707 +416999,416999 +348162,348162 +205426,205426 +393926,393926 +157480,157480 +171948,171948 +131985,131985 +309773,369154 +396871,396871 +173359,173359 +392044,276756 +326590,326590 +25055,25055 +21482,21482 +135417,135417 +173173,173173 +30360,30360 +139820,139820 +21914,21914 +145965,145965 +33827,33827 +120816,120816 +171399,171399 +340775,340775 +304266,24797 +151554,151554 +35080,35080 +297160,297160 +142554,142554 +400173,400173 +279667,279667 +36707,36707 +313208,313208 +109864,109864 +328167,328167 +26287,26287 +265152,265152 +5866,5866 +127373,127373 +15481,15481 +433121,433121 +65808,65808 +120775,120775 +141919,141919 +20553,20553 +35403,35403 +257289,257289 +16907,16907 +173553,173553 +24668,24668 +172258,172258 +253351,253351 +123850,123850 +11088,11088 +381079,381079 +387054,387054 +415129,415129 +72979,72979 +435050,435050 +358982,358982 +35326,35326 +299735,299735 +341884,341883 +33612,33612 +142014,142014 +129253,129253 +95416,95416 +65682,65682 +349693,349693 +322965,271460 +260514,260514 +328614,328614 +374569,374569 +281156,281156 +29954,29954 +278236,278236 +284972,284972 +229996,227546 +86029,86029 +299718,299718 +320806,320806 +217211,217211 +303886,303886 +207451,207451 +43576,43576 +430162,430162 +229544,229545 +172355,172355 +432669,432669 +62770,62770 +47684,47684 +433183,433183 +379232,379232 +107004,107004 +7391,7391 +338583,338583 +110453,110453 +23173,23173 +26513,26513 +325321,325322 +32037,32037 +220740,220740 +343521,343521 +177450,177450 +219433,219433 +64288,64288 +3900,3900 +63860,63860 +263427,263427 +351477,351477 +95299,95299 +338229,338229 +279179,279179 +38279,38279 +112275,112275 +121644,121644 +64239,64239 +19660,19660 +99647,99647 +98583,98583 +408010,408010 +325528,325528 +136939,136939 +64945,64945 +370832,370832 +377115,343664 +357864,357864 +261332,261332 +23927,23927 +31276,31276 +212231,212231 +386853,293782 +70340,70340 +162182,162182 +181086,181086 +35299,35299 +33057,33057 +108837,108837 +39893,39893 +321145,321145 +42857,42857 +351099,351099 +348718,348718 +18049,18049 +99225,99225 +32267,32267 +64305,64305 +376527,376527 +36959,36959 +149300,149300 +139579,139579 +176683,176683 +38806,38806 +368376,368376 +39966,39966 +26330,26330 +271646,271646 +28957,28957 +13588,13588 +193710,193710 +16451,16451 +31666,31666 +425055,425055 +329331,329331 +338236,338236 +332288,332288 +29593,29593 +208835,208835 +193312,193312 +431025,431025 +403471,403471 +341807,341807 +39972,39972 +382046,382046 +24341,24341 +431088,431088 +358757,358757 +425241,425241 +234360,234360 +127202,127202 +59267,59267 +427163,427163 +317456,317456 +267738,267738 +181068,181068 +353286,353286 +145593,145593 +31957,31957 +402244,402244 +416671,416671 +400455,400455 +157124,157124 +6865,6865 +248108,248108 +260602,260602 +41488,41488 +32786,32786 +433962,433962 +338502,338502 +137280,137280 +240515,240515 +10039,10039 +206390,206390 +273521,273521 +34844,34844 +65709,65709 +249135,249135 +93376,93376 +425434,19399 +420725,420725 +86478,86478 +206807,206807 +37550,37550 +354713,354713 +305017,305017 +83420,83420 +377587,377587 +33942,33942 +423684,423684 +308710,308710 +235692,235692 +40532,40532 +289782,289782 +419808,419808 +345686,345686 +38728,38728 +319769,319769 +136553,136553 +427044,427044 +340028,340028 +44650,44650 +214940,214940 +57386,57386 +116956,116956 +64007,64007 +341958,341958 +121194,121194 +27044,27044 +63587,63587 +156414,156414 +342566,342566 +352016,352016 +283778,283778 +301977,301977 +193449,13360 +371198,371198 +139016,139016 +298122,298122 +252578,252578 +361339,361339 +93423,93423 +97493,97493 +15690,15690 +378509,378509 +378532,378532 +18456,18456 +57473,57473 +307988,307988 +332304,332304 +182783,182783 +378102,378102 +221741,221741 +143499,143499 +376512,376512 +227116,227116 +367993,367993 +36051,36051 +30162,30162 +38030,38030 +418634,418634 +28470,28470 +288634,288634 +394323,394323 +91517,91517 +285309,285309 +256667,256667 +26224,26224 +4827,4827 +351985,351985 +188402,188402 +378905,378905 +129482,129482 +6407,6407 +434174,434174 +423364,423364 +192490,192490 +102269,102269 +322618,322618 +49070,49070 +125201,125201 +39205,39205 +68890,68890 +139751,139751 +402621,402621 +265145,265145 +263370,263370 +392042,392042 +227180,227180 +15034,15034 +260455,260455 +34026,34026 +411226,411226 +415464,415464 +338477,338477 +246476,246476 +143708,143708 +124476,124476 +350074,350074 +130659,130659 +429578,429578 +200769,200769 +227567,227567 +241018,241018 +62331,62331 +134803,134803 +40645,40645 +426853,426853 +84029,84029 +244451,244451 +416065,43530 +73577,73577 +63498,63498 +168760,159766 +63368,63368 +423478,423478 +380058,380058 +401003,401003 +354536,354536 +291772,291772 +403384,403384 +410639,410639 +428693,428693 +345099,345099 +356207,302302 +434095,463 +226055,226055 +319686,319686 +203756,203756 +312672,312672 +136018,136018 +204855,204855 +399904,259393 +413181,413181 +96106,96106 +172141,172141 +410494,410494 +96710,96710 +224038,224038 +430833,430833 +70657,70657 +376003,376003 +341349,341349 +261522,261522 +25543,25543 +413997,413997 +29301,29301 +259819,259819 +221115,221115 +350341,350341 +135631,135631 +64005,64005 +428383,428383 +13248,13248 +34347,34347 +403623,403623 +403254,403254 +232858,232858 +55677,55677 +27066,27066 +22482,22482 +340904,340904 +360050,360050 +422381,422381 +402772,402772 +90770,90770 +124029,124029 +425860,425860 +429239,429239 +197867,197867 +179273,179273 +20403,20403 +57098,57098 +176615,176615 +345103,345103 +358057,358057 +299192,17379 +298407,298407 +320079,320079 +18853,18853 +24883,24883 +178524,192556 +38056,38056 +289415,289415 +36557,36557 +363482,363482 +136295,136295 +69141,69141 +149865,149865 +140800,140800 +359771,359771 +431052,431052 +173968,173968 +134525,134525 +107695,107695 +434244,434244 +258299,143323 +253085,253085 +37450,37450 +20661,20661 +12138,12138 +339681,339681 +38612,38612 +370605,370605 +76715,76715 +30147,30147 +322315,322315 +433048,319762 +19849,19849 +14065,14065 +320074,320074 +355527,355527 +250304,250304 +405295,405295 +112956,112956 +37178,37178 +375158,375158 +239936,239936 +59694,59694 +26880,26880 +6697,6697 +369173,369173 +159142,159142 +95815,95815 +29784,29784 +317377,317377 +278254,278254 +7192,7192 +295100,295100 +14300,14300 +230509,230509 +34918,34918 +277666,277666 +128955,128955 +269381,269381 +41408,41408 +306968,306968 +138727,138727 +6315,6315 +32716,32716 +60722,60722 +157167,157167 +186065,186065 +31146,31146 +425172,425172 +21625,21625 +305959,305959 +253282,253282 +24621,24621 +145349,145349 +431152,431152 +60358,60358 +26907,26907 +228145,228145 +37631,37631 +408159,88080 +28964,28964 +68984,68984 +359736,359736 +429911,213266 +32158,32158 +414338,414338 +182716,182716 +406451,158390 +73766,73766 +359793,359793 +358832,358832 +302179,302179 +383373,383373 +119773,119773 +338087,338087 +29556,29556 +195172,195172 +27215,27215 +427251,427251 +337282,337282 +40986,40986 +38276,38276 +329131,1465 +358642,358642 +265450,265450 +64942,64942 +380838,380838 +174224,174224 +29842,29842 +65429,65429 +39140,39140 +218118,218118 +348697,165628 +21516,21516 +154981,154981 +108024,108024 +427297,427297 +158833,158833 +152322,152322 +24942,24942 +409912,409912 +205414,205414 +402839,402839 +25067,25067 +108777,108777 +402549,402549 +35153,35153 +330228,330228 +158992,158992 +372986,372986 +162804,162804 +325317,325317 +159482,159482 +37625,37625 +13900,13900 +371311,371311 +31370,31370 +358031,358031 +431134,431134 +18524,18524 +188413,188413 +158797,158797 +29385,29385 +116102,116102 +62402,62402 +30249,30249 +154322,154322 +226492,226492 +112834,112834 +346863,346863 +176547,176547 +121491,121491 +42205,42205 +286043,286043 +258050,258050 +278654,278654 +352337,352337 +232183,232183 +399275,399275 +44359,44359 +23624,23624 +232093,232093 +159823,159823 +61929,61929 +27179,27179 +402493,402493 +361711,361711 +326659,276616 +20981,20981 +154733,154733 +42935,42935 +104889,104889 +146273,146273 +37963,37963 +282062,282062 +429955,429955 +173244,173244 +28449,28449 +46923,46923 +340660,340660 +433083,433083 +62647,62647 +171827,171827 +211652,211652 +28542,28542 +293829,293829 +353228,353228 +413646,413646 +30382,30382 +424942,424942 +39352,39352 +326752,326752 +16881,16881 +75046,75046 +363290,363291 +375612,375612 +29856,29856 +20301,20301 +244709,244709 +26018,26018 +329672,329672 +317984,317984 +426519,426519 +429268,429268 +388839,388839 +239515,239515 +198879,198879 +81385,81385 +426434,426434 +266401,266401 +300874,300874 +122355,122355 +381777,381777 +279446,279446 +90995,90995 +344234,344234 +376774,376774 +358201,358201 +14547,14547 +433526,433526 +38027,38027 +315284,315284 +69291,69291 +213885,213885 +110674,110674 +399280,399280 +227124,227124 +36885,36885 +145873,145873 +187444,187444 +39401,39401 +406755,406755 +31195,31195 +140572,140572 +137230,137230 +308406,308406 +37030,37030 +329182,329182 +67897,67897 +111090,111090 +325177,325177 +32940,32940 +72226,72226 +299742,299742 +431561,431561 +408249,408249 +62693,62693 +433692,433692 +26624,26624 +90476,90476 +71400,71400 +147220,147220 +203378,203378 +278653,278653 +155746,155746 +161725,161725 +148253,148253 +67221,67221 +227683,227683 +205657,205657 +382358,382358 +124686,124686 +247194,247194 +134935,134935 +113913,113913 +424951,424951 +32269,32269 +17128,17128 +115663,115663 +188680,188680 +26096,26096 +105139,105139 +30873,30873 +401775,401775 +429477,429477 +13763,13763 +124433,124433 +302486,302486 +113323,113323 +424012,67884 +162830,162830 +430727,430727 +288527,288527 +23545,23545 +26693,26693 +126466,126466 +21211,21211 +323966,323966 +15802,15802 +130569,130569 +183199,183199 +7148,7148 +341400,341400 +125852,125852 +293929,293929 +358047,358047 +207159,224128 +318664,318664 +20702,20702 +23091,23091 +376226,376226 +10332,10332 +340939,340939 +334625,334625 +374051,374051 +111522,111522 +328637,328637 +27562,27562 +8701,8701 +75961,75961 +42162,42162 +316507,1421 +321204,321181 +370209,370209 +403542,403542 +353054,353054 +415121,415121 +357390,357390 +6358,6358 +163167,163167 +89413,89413 +415209,415209 +33740,33740 +98326,98326 +71108,71108 +394324,394324 +256696,256696 +79617,79617 +161948,161948 +362161,362161 +57741,57741 +27964,27964 +427247,427247 +409105,409105 +217208,217208 +383115,383115 +326326,326326 +139114,139114 +32819,32819 +284057,284057 +125967,125967 +413066,413066 +16025,16025 +324579,324579 +122472,122472 +272381,272381 +138077,138077 +302533,302533 +181036,181036 +22760,22760 +153761,153761 +258054,258054 +132009,132009 +99202,99202 +421817,421817 +175319,175319 +29153,29153 +318908,318908 +315334,315334 +402121,402121 +146351,146351 +41595,41595 +411224,411224 +196110,196110 +289341,289341 +417202,318409 +184327,184327 +337519,337519 +180327,180327 +183628,183628 +342743,342743 +11521,11521 +431436,332260 +129162,129162 +409190,409190 +323070,323070 +61948,61948 +390547,390547 +20397,20397 +27792,27792 +139186,139186 +425165,425165 +387747,387747 +231514,231514 +300029,300029 +325227,325227 +138082,138082 +38440,38440 +402763,402763 +357728,357728 +278455,278455 +68835,68835 +433087,433087 +357064,357064 +132949,132949 +404218,349550 +95489,95489 +43112,43112 +419973,359405 +220552,220552 +382584,382584 +24605,24605 +421446,421446 +48002,48002 +39946,39946 +149923,149923 +120022,120022 +15371,15371 +93432,93432 +30418,30418 +263216,463 +271430,271430 +122743,122743 +314499,314499 +69887,69887 +121275,121275 +331031,331031 +18408,18408 +68849,68849 +403253,403253 +97421,97421 +91531,91531 +25198,25198 +405775,405775 +360205,360205 +261368,261368 +426231,400209 +137368,137368 +100471,100471 +260487,260487 +242751,242751 +30998,30998 +135992,135992 +316797,316797 +67701,67701 +374894,374894 +62727,62727 +339543,339543 +241639,241639 +299564,299564 +418480,418480 +340164,340164 +380700,380700 +15307,15307 +25334,25334 +234824,182793 +254867,254867 +304513,304513 +299978,299978 +14627,14627 +184592,184592 +361561,361561 +133860,133860 +180779,180779 +299440,299440 +313829,127493 +397370,397370 +309925,309925 +65918,65918 +359781,359781 +413193,413193 +229531,229531 +306400,306400 +90787,90787 +427108,427108 +373088,369521 +411458,411458 +153020,153020 +361170,361170 +307264,307264 +432574,432574 +267280,267280 +422424,422424 +425737,425737 +138144,138144 +173000,173000 +30230,30230 +38114,38114 +84981,84981 +319379,319379 +345929,345929 +249607,249607 +37523,37523 +36520,36520 +380164,380164 +236889,236889 +88210,88210 +403640,403640 +36784,36784 +37412,37412 +116480,116480 +164911,164911 +150510,150510 +58812,58812 +33286,33286 +164478,164478 +423631,423631 +393500,393500 +322867,322867 +433337,433337 +274292,274292 +418700,418700 +307254,307254 +129445,129445 +343540,343540 +327731,357183 +21885,21885 +184906,184906 +208057,208057 +412894,412894 +163980,161753 +213096,213096 +14154,14154 +129962,129962 +226705,226705 +51313,51313 +25347,25347 +110956,110956 +399758,399758 +266234,266234 +42202,416 +431433,431433 +124560,124560 +252880,252880 +137218,137218 +43459,43459 +252284,252284 +160982,160982 +138767,138767 +380760,380760 +22158,22158 +69480,69480 +86123,86123 +12783,12783 +16863,16863 +51519,51519 +39673,39673 +403654,388082 +97453,97453 +18003,18003 +44286,44286 +372237,372237 +43093,43093 +65504,65504 +42728,42728 +141525,141525 +86317,86317 +218909,218909 +122578,122578 +340171,340171 +309543,309543 +6439,6439 +177551,177551 +92294,92294 +203844,203844 +393209,393209 +25519,25519 +425409,3377 +43076,43076 +157090,157090 +333520,333520 +347091,347091 +203826,203826 +154261,154261 +252330,252330 +421808,421808 +23483,23483 +253932,253932 +33859,33859 +62588,62588 +348686,348686 +173274,173274 +396741,396741 +337919,337919 +335855,335855 +375933,50381 +180477,180477 +307357,307357 +43275,43275 +36346,36346 +279187,279187 +243137,243137 +153670,153670 +27570,27570 +85242,85242 +142689,142689 +11009,11009 +386618,386618 +275724,275724 +99169,99169 +111410,111410 +421178,421178 +309281,309281 +373560,373560 +429062,429062 +14937,14937 +394273,6252 +355479,355479 +415914,415914 +110141,110141 +355666,355666 +22075,22075 +306830,306830 +325743,325743 +138640,138640 +136164,136164 +246959,246959 +308425,308425 +150137,150137 +156756,156756 +37399,37399 +354966,354966 +427330,427330 +350250,350250 +187886,187886 +186969,186969 +434176,434176 +139628,139628 +413780,413780 +315415,315415 +328727,328727 +42963,42963 +311937,311937 +210424,210424 +426957,224 +425429,425429 +70306,70306 +12310,12310 +276781,276781 +159248,159248 +416250,416250 +131918,131918 +354171,354171 +145168,145168 +10734,10734 +416077,416077 +307146,307146 +355075,355075 +326018,182233 +327552,327552 +31078,31078 +97065,97065 +70317,70317 +23332,23332 +269770,269770 +338621,338621 +313350,313350 +48905,48905 +66683,66683 +33210,33210 +104311,104311 +24609,24609 +151807,151807 +320454,320454 +2523,2523 +342187,342187 +117544,117544 +329341,329341 +380937,380937 +199172,199172 +208767,208767 +386221,386221 +224146,229044 +382841,382841 +96811,96811 +340823,340823 +325559,325559 +174360,174360 +333295,333295 +429341,429341 +31339,31339 +35541,35541 +332071,332071 +204106,204106 +331572,331572 +273474,273474 +313078,313078 +420102,420102 +19955,19955 +324744,324744 +75960,75960 +36187,36187 +251181,251181 +119998,119998 +294361,294361 +353583,353583 +180080,180080 +58474,58474 +36658,36658 +432301,432301 +258941,258941 +339748,339748 +433284,433284 +343131,343131 +268868,268868 +324988,324988 +38360,38360 +426635,426635 +422638,422638 +202649,202649 +61153,61153 +30481,30481 +168295,168295 +17076,17076 +261997,261997 +41922,41922 +18935,18935 +408448,408448 +351902,351902 +425213,425213 +354908,354908 +338465,338465 +344283,344283 +33891,33891 +28337,28337 +42666,42666 +304413,304413 +31962,31962 +270453,270453 +172935,172935 +358173,358173 +225774,225774 +257622,257622 +330035,330035 +21894,21894 +98022,98022 +344164,344164 +264679,258109 +145670,145670 +57738,57738 +27436,27436 +229189,229189 +141133,141133 +362478,362478 +364542,364542 +291359,291359 +354927,354927 +40175,40175 +13062,13062 +32467,32467 +350244,350244 +332819,332819 +365143,365143 +382240,382240 +139770,139770 +194547,194547 +137738,137738 +30442,30442 +110461,110461 +402869,402869 +432507,432507 +20341,20341 +41577,41577 +66133,66133 +328332,328332 +220394,220394 +434207,434207 +70395,70395 +321500,321500 +207434,207434 +223363,223363 +33283,33283 +361161,361161 +250976,250976 +104550,104550 +401629,401629 +36994,36994 +102687,102687 +217586,217586 +261317,261317 +64277,64277 +42355,42355 +314880,314880 +42646,42646 +322004,322004 +53157,53157 +42986,42986 +315709,315709 +44872,44872 +60090,60090 +59162,59162 +191718,191718 +89666,89666 +8732,8732 +38037,38037 +384003,463 +120225,120225 +138482,138482 +96683,96683 +378286,378286 +414334,414334 +258684,258684 +15131,15131 +317690,317690 +255996,255996 +37940,37940 +422174,422174 +251494,251494 +9067,9067 +162208,162208 +407984,407984 +203445,203445 +289462,289462 +181142,237029 +388691,388691 +429249,429249 +91985,91985 +297582,347733 +127503,127503 +98719,98719 +397829,397829 +386859,364107 +116567,116567 +24758,24758 +33644,33644 +350428,350428 +34338,34338 +313512,313512 +285850,285850 +23112,23112 +393893,393893 +433429,433429 +176987,176987 +69137,69137 +137670,137670 +59944,59944 +33090,33090 +424979,424979 +90799,90799 +268103,268103 +415431,415431 +430344,366577 +313063,313063 +132136,132136 +349183,349183 +70577,70577 +349500,349500 +187709,187709 +396949,396949 +130595,130595 +54079,54079 +403349,403349 +215109,215109 +133417,133417 +251601,251601 +10558,10558 +279363,279363 +286270,286270 +334490,334490 +31110,31110 +301213,301212 +342095,342095 +193794,193794 +162593,162593 +296662,296662 +330037,330037 +126905,126905 +28624,28624 +27403,27403 +30271,30271 +17734,17734 +333832,333832 +88829,88829 +22537,22537 +367752,367752 +151109,151109 +413120,413120 +128454,128454 +179518,179518 +180934,180934 +112202,112202 +187453,187453 +270684,270684 +173241,173241 +277674,277674 +24953,24953 +68357,68357 +24944,463 +32102,32102 +406619,406619 +173825,173825 +193546,193546 +173818,173818 +134839,134839 +409047,409047 +312714,312714 +127383,127383 +432841,432841 +391716,391716 +373125,373125 +351988,351989 +70214,70214 +42936,42936 +60704,60704 +188572,188572 +72778,254365 +434052,434052 +135159,135159 +16117,16117 +299430,105035 +409079,409079 +299987,299987 +339248,339248 +110585,110585 +251680,251680 +400016,400016 +190638,190638 +118031,118031 +433066,433066 +338399,338399 +393387,393387 +176169,176169 +369957,369957 +370877,370877 +187885,187885 +340111,340111 +377412,377412 +245020,245020 +108920,108920 +402507,402507 +39676,39676 +332463,332463 +386980,386980 +61935,61935 +26832,26832 +422315,422315 +32076,32076 +340328,340328 +306192,306192 +381895,381895 +279961,279961 +157315,157315 +29917,29917 +107874,107874 +406919,406919 +335428,335428 +350966,16640 +300103,300103 +33081,33081 +352908,352908 +427203,427203 +411734,411734 +179773,179773 +27119,27119 +30997,30997 +413914,424345 +222813,222813 +265770,265770 +430137,430137 +262411,262411 +331798,331798 +295877,295877 +32274,32274 +29081,29081 +252120,252120 +423545,423545 +435029,435029 +416837,416837 +57662,57662 +144772,144772 +428425,428425 +402796,402796 +32915,32915 +407391,407391 +39141,39141 +292104,292104 +426794,426794 +348373,348373 +422081,422081 +426349,426349 +292362,292362 +55069,55069 +424448,424448 +23542,23542 +358923,358923 +392025,392025 +157503,157503 +28083,28083 +411251,411251 +68843,68843 +426138,426138 +431624,431624 +43247,43247 +151024,151024 +281744,281744 +362572,362572 +296999,296999 +249592,249592 +406527,16634 +37664,37664 +103064,103064 +370189,370189 +155956,155956 +427242,427242 +34688,34688 +23626,23626 +128471,128471 +127180,127180 +184589,184589 +322729,322729 +253456,253456 +114236,114236 +134014,134014 +242984,242984 +346483,346481 +322669,322669 +401919,401919 +43739,43739 +318250,318250 +271034,271034 +355142,355142 +255975,255975 +355935,355935 +282004,282004 +361460,361460 +28038,28038 +305359,305359 +378601,378601 +15532,15532 +309874,37168 +315313,315313 +42533,42533 +244167,244167 +406876,406876 +22128,22128 +155831,155831 +431455,431455 +341835,341835 +24405,24405 +409625,409625 +340334,340334 +195252,195252 +90980,90980 +95824,95824 +94508,94508 +175435,175435 +254397,254397 +30874,30874 +20612,20612 +131112,131112 +23465,23465 +199388,199388 +29331,29331 +320085,320085 +29832,29832 +343085,343085 +279712,279712 +22463,22463 +80756,80756 +22779,22779 +20960,20960 +430594,430594 +377314,357822 +315377,315377 +66548,66548 +155214,155214 +138532,138532 +43282,43282 +420289,420289 +35211,35211 +8230,8230 +42808,42808 +127281,127281 +124689,124689 +391240,391240 +202988,202988 +216346,216346 +113620,113620 +65677,65677 +401609,401609 +21347,21347 +120281,120281 +87671,87671 +35671,35671 +13438,13438 +31998,31998 +360638,360638 +296796,296796 +391898,391898 +14411,14411 +305910,305910 +149574,149574 +378012,378012 +36577,36577 +34802,34802 +253750,253750 +30749,30749 +173557,173557 +65942,65942 +432805,432805 +166568,166568 +381458,32441 +194300,194300 +62111,62111 +32615,32615 +180123,180123 +423750,423750 +379618,379618 +336663,336663 +10870,10870 +109506,109506 +187588,187588 +331290,331290 +370834,370834 +30521,30521 +144336,144336 +124058,124058 +428182,428182 +32652,32652 +398889,398889 +426953,426953 +423824,416027 +326919,326919 +42807,42807 +234048,234048 +425766,425766 +281748,281748 +195436,195436 +358958,358958 +24420,24420 +366102,366102 +96685,96685 +277203,277203 +337861,337861 +154879,154879 +39047,297564 +253785,253785 +342048,342048 +288543,288543 +126048,126048 +252027,252027 +158311,158311 +299912,192857 +113561,113561 +10446,10446 +318368,249868 +99664,99664 +350834,350834 +117771,117771 +373559,373559 +109778,109778 +316967,316967 +401904,401904 +380549,343380 +122969,122969 +342943,342943 +341057,341057 +332836,332836 +228300,228300 +357860,357860 +38084,38084 +27400,27400 +167308,167308 +424563,424563 +163577,163577 +114239,114239 +338965,190582 +372429,372429 +18414,18414 +296296,296296 +213323,213323 +29830,29830 +40145,40145 +426146,367185 +134117,134117 +159760,159760 +30359,30359 +37054,37054 +41592,41592 +155502,155502 +154265,154265 +39125,39125 +287779,287779 +136300,136300 +367882,367882 +21140,21140 +68084,68084 +382464,382464 +431149,431149 +111162,111162 +100164,100164 +40027,40027 +431286,431286 +121001,121001 +433459,433459 +75813,75813 +306996,25576 +405773,405773 +271548,271548 +251450,251450 +428500,428501 +141274,141274 +153326,153326 +111136,111136 +90810,90810 +90794,90794 +36621,36621 +429476,429476 +32842,32842 +92702,92702 +25595,25595 +128561,128561 +358616,358616 +221565,221565 +31649,31649 +330836,330836 +145582,145582 +29103,29103 +38965,38965 +131296,131296 +336332,336332 +359833,359833 +25706,25706 +110575,463 +34230,34230 +388443,388443 +15875,15875 +350782,350782 +51740,51740 +432521,432521 +182091,182091 +376033,376033 +424984,424984 +95422,95422 +182729,182729 +38130,38130 +104989,104989 +125131,125131 +306096,306096 +401556,401556 +128899,128899 +401322,401322 +297503,297503 +120224,120224 +125130,125130 +154985,154985 +106435,106435 +177241,177241 +258127,258127 +185142,150965 +52686,52686 +66174,66174 +21743,21743 +21847,21847 +433392,433392 +111400,111400 +391006,391006 +66502,66502 +18406,18406 +208981,208981 +66477,66477 +94308,94308 +367762,367762 +158871,158871 +396654,396654 +133142,133142 +169748,169748 +205237,205237 +18503,18503 +76544,76544 +264755,264755 +96623,96623 +412858,16986 +416649,416649 +330839,231409 +299137,299137 +259769,259769 +429890,429890 +256148,256148 +419836,419836 +110285,110285 +136296,136296 +154465,154465 +395950,395950 +158622,158622 +34881,34881 +154735,154735 +402509,402509 +434092,434092 +17823,17823 +170934,170934 +361878,361878 +120667,120667 +184579,184579 +371231,371231 +134886,134886 +143830,143830 +174024,174024 +60788,60788 +16046,16046 +236525,236525 +37812,37812 +25556,25556 +16768,16768 +58352,58352 +430339,430339 +432396,432396 +2930,2930 +95238,95238 +37532,37532 +408265,408265 +22177,22177 +353584,353584 +13963,13963 +212468,212468 +399848,399848 +193275,193275 +188595,188595 +260907,260907 +332516,332516 +30639,30639 +427381,9391 +320429,320429 +63508,63508 +3653,3653 +150834,150834 +10860,10860 +264203,264203 +28072,28072 +66104,66104 +297121,297121 +113462,339748 +127501,127501 +37947,37947 +117884,117884 +139620,139620 +348559,348559 +299060,163152 +368787,368787 +411935,411935 +62652,62652 +221672,221672 +406913,406913 +386406,386406 +261250,261250 +142196,142196 +134070,134070 +349159,349159 +15519,37225 +64298,64298 +185392,185392 +127319,127319 +36826,36826 +34632,34632 +347623,347623 +57203,57203 +29282,29282 +38676,38676 +433084,433084 +275618,275618 +29512,29512 +159895,134884 +372338,372338 +200698,200698 +379364,379364 +314833,314833 +409104,409104 +34472,34472 +119662,119662 +137775,137775 +93029,93029 +237221,237221 +132376,132376 +153957,153957 +53888,53888 +174694,174694 +51617,51617 +228316,228316 +193035,193035 +337657,337657 +373706,373706 +406905,406905 +263987,263987 +348812,348812 +127902,127902 +104728,104728 +26511,26511 +144815,144815 +168686,168686 +191148,191148 +425686,425686 +334064,334064 +134934,134934 +302287,302287 +27060,27060 +284401,284401 +37199,37199 +380811,380811 +96121,96121 +29182,29182 +290549,290551 +47367,47367 +306471,306471 +334578,334578 +90763,90763 +247084,247084 +279880,279880 +89203,89203 +65802,65802 +184897,184897 +335110,335110 +402938,402939 +25759,25759 +337767,337767 +394214,394214 +60527,60527 +298949,313023 +338151,338151 +217273,217273 +154786,154786 +124860,124860 +37130,37130 +429469,429469 +21902,21902 +178696,178696 +256805,256805 +403649,403649 +168655,168655 +54464,54464 +193657,193657 +433340,433340 +401881,401881 +29007,29007 +16481,16481 +405210,405210 +25785,25785 +34057,34057 +104215,104215 +109925,109925 +243436,243436 +340609,340609 +14628,14628 +23283,23283 +288228,288228 +301972,301972 +72893,72893 +195464,195464 +242508,242508 +58401,58401 +15734,15734 +30305,30305 +406742,406742 +133156,133156 +4830,4830 +138560,138560 +23637,23637 +377824,377824 +136220,136220 +63798,63798 +402388,402388 +419757,419757 +127740,127740 +34426,34426 +234034,171313 +332573,332573 +420408,420408 +164880,164880 +175594,175594 +113803,113803 +418440,418440 +153835,153835 +325023,325023 +430383,430383 +299578,299578 +29872,29872 +133975,99969 +141798,141798 +218252,218252 +33092,321145 +135981,135981 +116682,116682 +97978,97978 +51326,51326 +163831,163831 +160000,463 +361231,361231 +111018,111018 +177261,177261 +130675,130675 +27017,27017 +48625,48625 +22315,22315 +31598,31598 +62530,62530 +360412,360412 +56635,321933 +16356,16356 +164154,164154 +299423,105035 +120999,120999 +428816,428816 +27202,27202 +329775,329775 +377605,377605 +380154,380154 +217435,217435 +360697,360697 +363530,363530 +42611,42611 +353830,353830 +127968,127968 +160150,160150 +34563,34563 +213880,213880 +296777,296777 +230854,230854 +434872,403257 +71726,71726 +307183,307183 +362521,362521 +220852,194293 +338074,338074 +125122,125122 +251603,251603 +152275,152275 +376970,376970 +355530,355530 +356784,356784 +56916,56916 +193632,193632 +35315,35315 +352576,352576 +1154,1154 +334858,334858 +253663,253663 +9997,9997 +176607,176607 +119666,119666 +301221,301221 +399612,399612 +316362,316362 +20156,20156 +371560,371560 +7423,7423 +23903,23903 +276326,276326 +296714,296714 +382320,382320 +184582,184582 +34960,34960 +189860,189860 +24292,24292 +126245,126245 +428331,428331 +341872,341872 +23875,23875 +26995,26995 +354206,354203 +137281,137281 +41415,41415 +160723,160723 +119692,119692 +32575,32575 +138549,138549 +423094,423094 +227454,227454 +29193,29193 +43458,43458 +28427,28427 +359110,359111 +216472,216472 +68039,379645 +278569,278569 +365492,365492 +31076,31076 +368737,368737 +376250,124668 +65772,65772 +68351,68351 +111838,111838 +167993,167993 +36693,36693 +124724,124724 +363576,363576 +127207,127207 +195799,195799 +348429,348429 +129479,129479 +363551,363551 +406961,406961 +315009,315009 +129840,129840 +336311,336311 +127618,127618 +20696,20696 +125495,125495 +154490,154490 +368688,368688 +37917,37917 +224746,224746 +257057,257057 +37469,37469 +40017,40017 +342433,342433 +422756,422756 +285884,285884 +307244,307244 +402554,402554 +129961,129961 +126220,126220 +57198,57198 +99170,99170 +369355,369355 +38068,38068 +287472,287472 +66353,66353 +331275,331261 +31125,31125 +113132,113132 +408071,408071 +423211,423211 +325185,325185 +431639,431639 +157318,157318 +362448,362448 +314485,314485 +87474,87474 +321492,321492 +355526,355526 +119292,119292 +407873,407873 +36590,36590 +406279,406279 +260944,260944 +284933,284933 +384155,384155 +430536,430536 +32921,32921 +431621,431621 +174633,174633 +177676,177676 +62674,62674 +16889,16889 +311170,311170 +143038,143038 +146113,146113 +145584,145584 +285890,285890 +365079,365079 +152623,152623 +65550,65550 +339502,339511 +21028,21028 +424946,424946 +115572,115572 +283202,283202 +27599,27599 +18607,18607 +294941,294941 +35228,35228 +327026,327026 +121642,121642 +32705,32705 +102958,102958 +425448,425448 +409975,348517 +224553,224553 +285178,285178 +400710,400710 +318645,318645 +263107,263107 +322104,322104 +381680,381680 +367279,367279 +110830,110830 +420567,420567 +212721,212721 +114815,114815 +140205,140205 +326732,326732 +41195,41195 +294349,294349 +135477,135477 +317922,317922 +172621,172621 +427109,427109 +40636,40636 +93163,93163 +217514,217514 +66041,66041 +408449,408449 +361046,265369 +352442,352442 +412881,412881 +405116,405116 +340940,340940 +137222,137222 +322741,322741 +291548,3157 +328876,328876 +181570,181570 +65769,65769 +262420,262420 +97014,97014 +128773,128773 +16120,16120 +386034,386034 +320073,320073 +28297,28297 +430674,430674 +225822,225822 +377312,377312 +325837,325837 +326482,326482 +113649,113649 +360992,360992 +191631,191631 +60692,60692 +368636,368215 +88289,88289 +412110,412110 +240543,240543 +118762,118762 +268372,263353 +147160,147160 +209684,209684 +44577,44577 +155205,155205 +37417,37417 +363534,363534 +262242,262242 +128393,128393 +23242,23242 +432359,432359 +335645,335645 +43554,43554 +170817,170817 +298497,298497 +85957,85957 +15191,15191 +179483,179483 +209800,209800 +431432,431432 +360965,360965 +122143,122143 +35053,35053 +430671,430671 +22726,22726 +386867,386867 +32726,32726 +178059,178059 +43427,43427 +71683,71683 +76695,76695 +134842,134842 +176398,176398 +381920,381920 +420084,420084 +109915,109915 +335015,335015 +240541,240541 +159680,159680 +15638,15638 +43082,43082 +338224,338224 +410117,410117 +376721,376721 +197989,197989 +24327,24327 +368335,368335 +259438,259438 +152563,152563 +16861,16861 +431486,431486 +303465,303465 +226043,14036 +252667,69069 +25258,25258 +34795,34795 +184141,184141 +202415,202415 +434082,434082 +29753,29753 +428185,428185 +395085,395085 +66299,66299 +57216,57216 +364434,364434 +402431,402431 +92084,92084 +41395,41395 +353234,353234 +334704,334704 +200621,200621 +333766,333766 +229841,229841 +31746,11734 +150525,150525 +97994,97994 +309254,309254 +144501,144501 +341348,341348 +360258,360258 +7923,7923 +21339,21339 +103696,103696 +416545,416545 +299746,299746 +377888,377888 +288331,288331 +85246,85246 +419646,419646 +248148,248148 +205376,205376 +395838,395838 +313061,313061 +407964,407964 +246500,246500 +29391,29391 +22591,12303 +429243,429243 +110514,110514 +36776,36776 +432939,432939 +39330,39330 +36961,36961 +32574,32574 +218402,218402 +148137,148137 +12659,12659 +228235,228235 +381136,381136 +118524,118524 +171566,171566 +123102,123102 +197712,197712 +282913,146351 +207836,207836 +139602,139602 +154576,154576 +158503,158503 +259997,259997 +139618,139618 +61439,61439 +390550,390550 +424253,424253 +49447,49447 +377469,377469 +432844,432844 +37207,37207 +12021,12021 +35394,35394 +32723,32723 +170217,170217 +434657,434657 +405447,405447 +24601,24601 +72900,72900 +429272,429272 +353629,353629 +25881,25881 +343572,343572 +415037,415037 +218296,218296 +33533,33533 +68862,68862 +96390,96390 +123105,123105 +175021,175021 +340824,340824 +423420,423420 +27216,27216 +405947,405947 +339603,339603 +348499,348499 +4225,4225 +342531,342531 +18304,18304 +400686,400686 +16359,16359 +416270,416270 +414292,414292 +351987,351987 +31916,31916 +375792,375792 +137430,137430 +433225,294813 +175559,175559 +12473,12473 +158860,158860 +264503,264503 +18744,18744 +427737,427737 +204871,204871 +30915,30915 +34660,34660 +330206,330206 +405618,405618 +380993,380993 +113899,113899 +34321,34321 +350783,350783 +59273,59273 +89694,89694 +123688,123688 +62739,62739 +166101,166101 +430956,430956 +284069,284069 +110742,110742 +6330,6330 +413270,413270 +357820,357820 +293256,293256 +128045,128045 +431837,431837 +29204,29204 +406363,406362 +12847,12847 +32923,32923 +49739,49739 +360260,360260 +209186,209186 +321677,321677 +253347,253347 +256948,256948 +121535,121535 +378528,378528 +433412,433412 +371265,371265 +388670,388670 +16087,16087 +72029,72029 +322361,322361 +12701,12701 +337962,337962 +117488,117488 +242895,242895 +300100,300100 +177553,177553 +63378,63378 +62740,62740 +378493,378493 +38748,16114 +32246,32246 +240741,240741 +324740,324740 +327001,327001 +65371,65371 +219214,219214 +435022,435022 +24618,24618 +337217,337217 +106520,106520 +39473,39473 +416536,416536 +178189,178189 +41290,41290 +92007,92007 +256511,256511 +166290,166290 +276047,276047 +341418,341418 +24610,24610 +352046,352046 +26445,26445 +33364,33364 +403403,403403 +22474,22474 +110724,110724 +192976,192976 +156333,156333 +256128,256128 +402161,402161 +428286,428286 +347293,347293 +327919,327919 +421489,421489 +46107,46107 +61305,61305 +18293,18293 +334405,334405 +43036,43036 +392199,392199 +6032,6032 +317149,317149 +93489,93489 +380391,379030 +377615,377615 +137532,137532 +167274,167274 +73620,73620 +261070,261070 +27150,27150 +153473,153473 +67247,67247 +204893,204893 +317101,317101 +381509,381509 +38717,38717 +13153,13153 +15365,15365 +31047,31047 +352812,352812 +337908,337908 +174685,174685 +18522,18522 +413059,413059 +175862,175862 +427993,427993 +318404,318404 +365791,371844 +423314,423314 +179583,179583 +66752,66752 +111846,111846 +36965,36965 +16414,16414 +70281,70281 +246144,246144 +39865,39865 +156216,156216 +36086,36086 +20676,20676 +297977,297977 +324902,324902 +431043,431043 +419557,419557 +11877,11877 +30538,30538 +29254,29254 +28706,28706 +112664,112664 +123950,123950 +115123,115123 +426689,426689 +291799,291799 +64275,64275 +358203,358203 +344130,273932 +32785,32785 +20837,20837 +324634,324634 +232532,232532 +67298,67298 +145658,145658 +38122,38122 +332589,332589 +359381,359381 +37066,37066 +22023,22023 +399830,399830 +426447,426447 +340550,340550 +178294,178294 +316920,316920 +301054,301054 +89795,89795 +415889,381264 +171795,171795 +420293,420293 +434862,434862 +427648,427648 +43462,43462 +265506,265506 +351358,351358 +264341,264341 +399903,399903 +39680,39680 +29273,29273 +137139,137139 +406095,406095 +168961,168961 +34483,34483 +374364,374364 +20509,20509 +432328,432327 +121108,121108 +128701,128701 +347791,347791 +299748,299748 +341745,341745 +34448,34448 +33670,33670 +29180,29180 +359994,359994 +43016,43016 +99461,99461 +307780,307780 +209752,209752 +19715,19715 +183974,183974 +42801,42801 +188216,188216 +373713,373713 +29745,29745 +120881,120881 +163578,163578 +321111,321111 +339447,339447 +130967,130967 +43516,43516 +336279,336279 +158504,158504 +68161,68161 +13232,13232 +141933,141933 +101743,101743 +433517,433517 +36563,36563 +368368,368368 +131115,131115 +398057,398057 +10764,10764 +382371,382371 +418097,418097 +238394,238394 +205957,205957 +330685,330685 +206349,206349 +429529,429529 +417956,417956 +23065,23065 +21393,21393 +430679,430679 +359753,359753 +313489,313489 +182517,182517 +147114,147114 +26802,26802 +116474,116474 +362934,362934 +354782,354782 +408318,408318 +118525,118525 +301208,301207 +228099,228099 +380250,380250 +63426,63426 +32239,32239 +13336,13336 +31640,31640 +417150,417150 +29188,29188 +58107,58107 +27966,27966 +401028,401028 +93475,93475 +254433,463 +19235,19234 +168855,168855 +216059,216059 +372928,9127 +6335,6335 +253125,253125 +374188,374188 +309976,309976 +124745,124745 +233964,233964 +398685,398685 +300822,300822 +15979,15979 +431942,431942 +328758,328758 +31883,31883 +432621,432621 +258870,258870 +110194,110194 +414898,412059 +57285,57285 +368809,368809 +381779,381779 +374213,374213 +231970,231970 +6170,6170 +184841,184841 +377901,377901 +410244,410244 +378318,378318 +228617,228617 +114834,114834 +41813,41813 +320815,320815 +272390,272390 +110439,110439 +299203,299203 +188069,188069 +113572,113572 +27804,27804 +116094,116094 +9618,9618 +40056,40056 +41681,41681 +350884,350884 +57132,57132 +303877,303877 +271831,271831 +357317,357317 +287581,287581 +426643,426643 +9312,9312 +33766,33766 +95357,95357 +43204,43204 +247003,247003 +434242,434242 +276298,276298 +106786,106786 +65934,65934 +81410,81410 +97966,97966 +70326,70326 +227117,227117 +157278,157278 +423794,423794 +115327,115327 +169196,169196 +178951,178951 +326375,326375 +416055,416055 +362663,362663 +333147,333147 +29604,29604 +234951,234951 +323824,323824 +411085,411085 +162167,162167 +242688,242688 +12221,12221 +209879,209879 +38060,38060 +99228,99228 +281412,281412 +341708,341708 +404722,404722 +291689,291689 +116893,116893 +328590,328590 +36981,36981 +27301,27301 +365550,365550 +367577,367577 +64658,64658 +379664,379664 +297344,297344 +327029,327029 +338133,338133 +79820,79820 +129822,129822 +377124,377124 +17876,17876 +27555,27555 +36488,36488 +420218,420218 +348466,348466 +31742,31742 +413522,345083 +39997,39997 +14648,14648 +401756,401756 +26252,26252 +378482,378482 +335242,335242 +375314,375314 +65416,65416 +307417,307417 +67455,67455 +175564,175564 +284106,284106 +276385,276385 +167096,167096 +41939,41939 +64290,64290 +338227,338227 +142561,142561 +3171,3171 +30017,30017 +28489,28489 +405979,405979 +39588,39588 +398734,398761 +128560,128560 +35764,35764 +306306,306306 +364340,364340 +408554,408556 +432038,432038 +41936,41936 +232430,232430 +31297,31297 +67168,67168 +217427,217427 +366169,366169 +30472,30472 +127815,127815 +76354,76354 +179979,179979 +173358,173358 +37269,37269 +160844,160844 +36949,36949 +422956,422956 +403003,403003 +155985,155985 +291451,291451 +144850,144850 +106543,106543 +336045,336045 +63629,63629 +145807,145807 +361595,361595 +40951,40951 +353179,353179 +201043,201043 +243674,243674 +71970,71970 +433250,433250 +405829,405829 +43205,43205 +412546,406470 +434824,434824 +41733,41733 +119438,119438 +406149,406149 +374560,374560 +173585,173585 +9502,9502 +341528,341528 +99053,99053 +18899,18899 +25331,25331 +125202,125202 +29957,29957 +416015,416015 +260761,463 +326913,326913 +32690,32690 +314469,420508 +128975,128975 +420731,420731 +434235,434235 +286972,286972 +407571,407571 +219190,219190 +41597,348734 +145886,145886 +169932,169932 +123515,123515 +7363,7363 +433893,433893 +11666,11666 +32384,32384 +308760,308758 +187746,187746 +269163,269163 +162603,162603 +158017,158017 +62418,62418 +402492,402492 +135415,135415 +307463,307463 +167265,167265 +57323,57323 +97061,97061 +225043,225043 +62745,62745 +424171,308385 +16733,16733 +75044,75044 +159015,159015 +140382,140382 +299717,299717 +41680,41680 +171856,171856 +33258,33258 +347000,347000 +42455,42455 +188478,188478 +73273,73273 +252547,252547 +177879,177879 +62290,62290 +430205,259121 +381865,381865 +36677,36677 +320820,320820 +153125,153125 +30191,30191 +42462,42462 +52589,52589 +137778,137778 +431419,431419 +415862,415862 +328063,328063 +264993,264993 +174855,174855 +33528,33528 +39353,39353 +402063,402063 +430741,430741 +36221,36221 +391211,391211 +304418,304418 +30940,30940 +339038,339038 +16407,16407 +70099,70099 +400271,400271 +302485,302485 +32627,32627 +263196,263196 +73718,73718 +344469,344469 +352613,352613 +22728,22728 +403311,374689 +171904,171904 +30695,30695 +135768,135768 +333811,333811 +5746,5746 +320130,320130 +352797,40819 +78466,78466 +246079,246079 +433468,433468 +104373,104373 +137374,137374 +70475,70475 +203836,203836 +180652,180652 +42957,42957 +36258,36258 +36427,100378 +9047,9047 +268578,268578 +302191,302191 +410331,410331 +398376,398376 +12716,12716 +39767,39767 +176999,176999 +63045,63045 +42158,42158 +184292,184292 +364238,364238 +12300,12300 +152340,152340 +231307,231307 +36242,36242 +67702,67702 +179713,179713 +406533,406533 +400213,400213 +416090,416090 +40624,40624 +97656,97656 +329109,329109 +12552,12552 +274088,274088 +110510,110510 +138066,138066 +383979,383979 +1592,1592 +366042,366042 +62844,62844 +41089,41089 +170486,170486 +193129,193129 +292629,292629 +26625,26625 +139367,139367 +376972,376972 +299861,299861 +367988,367988 +31985,31985 +406600,406600 +25552,25552 +121474,121474 +265601,265601 +340149,340149 +432985,432985 +432176,337261 +200523,200523 +60749,60749 +209864,209864 +21710,21710 +349806,349806 +39177,39177 +123818,123818 +66194,66194 +299022,299021 +12910,12910 +38074,38074 +17493,17493 +229487,229545 +429456,380175 +108584,108584 +34479,34479 +231461,231461 +128832,128832 +335964,335964 +126955,126955 +214852,214852 +289125,289125 +10863,10863 +420168,420168 +265852,265852 +30343,30343 +256825,256825 +421295,421295 +254198,254198 +31769,31769 +309279,309279 +99668,99668 +215036,215036 +345939,345939 +357262,357262 +56838,129513 +431046,431046 +310642,310642 +53686,53686 +418771,418771 +336072,336072 +186958,186958 +385654,385654 +53162,53162 +35714,35714 +202491,202491 +118789,118789 +401472,401472 +101673,101673 +18435,18435 +41046,41046 +195165,195165 +112802,112802 +408153,408153 +245653,245653 +387730,387730 +403230,403230 +194894,194894 +111860,111860 +394074,394074 +358960,358960 +171357,171357 +431312,431312 +409538,409538 +28469,28469 +190825,184011 +128014,128014 +154205,154205 +33151,33151 +39207,39207 +91098,91098 +32035,32035 +257054,257054 +132159,132159 +277953,277953 +305365,305365 +291426,291426 +36483,36483 +179742,179742 +330069,330069 +408798,408798 +365705,365705 +254407,254407 +67621,67621 +359713,359863 +396589,396589 +10737,10737 +63931,63931 +43266,43266 +348399,348399 +366015,366015 +11234,11234 +399000,399000 +298925,298925 +24543,24543 +416956,416956 +30199,30199 +130881,130881 +21542,21542 +216858,216858 +359743,359743 +180713,180713 +29976,29976 +147848,147848 +262193,262193 +124049,124049 +283372,283372 +61313,61313 +241022,241022 +434190,434190 +12256,12256 +157330,157330 +127330,127330 +326214,326214 +66284,66284 +279764,279764 +361542,361542 +368744,368744 +120611,120611 +57402,57402 +27012,27012 +40439,40439 +37677,37677 +144569,144569 +39221,39221 +240818,240818 +22918,22918 +430804,430804 +30391,30391 +32900,32900 +127544,127544 +322030,322030 +398148,398148 +303246,303247 +365642,365642 +346428,346428 +267128,267128 +43046,43046 +223405,223405 +338835,338835 +34383,328557 +277708,277708 +200528,200528 +26899,26899 +338643,354203 +140715,140715 +352327,352327 +213018,213018 +168056,168056 +285947,285947 +425086,425086 +59538,59538 +71902,71902 +18426,18426 +126678,289997 +381636,381636 +97145,97145 +37496,37496 +31810,31810 +35554,35554 +112468,112468 +189546,189546 +66778,66778 +288626,288626 +393787,393787 +125916,125916 +64198,64198 +422636,422636 +225573,225573 +127358,127358 +374728,374728 +19396,19396 +322264,322264 +368240,368240 +403387,403387 +60193,60193 +246892,246892 +24486,24486 +175381,175381 +415775,426718 +260404,260404 +121624,121624 +248967,248967 +350002,350002 +227613,227613 +187332,187332 +67717,67717 +374839,374839 +42899,42899 +84984,84984 +28552,28552 +208409,208409 +310297,310297 +150295,150295 +163651,163651 +422590,422590 +433553,433553 +430852,430852 +426808,426808 +240547,240547 +197327,197327 +30143,30143 +277304,277304 +191930,191930 +85533,85533 +366656,366656 +68689,68689 +417555,417555 +278414,278414 +189845,189845 +357948,357948 +297926,297926 +67993,67993 +321723,321723 +432526,432526 +18739,18739 +373993,373988 +300135,300135 +340383,340383 +224687,224687 +407823,407823 +15123,15123 +29015,29015 +409841,409841 +251142,251142 +42347,42347 +19353,19353 +32018,32018 +426885,426885 +173763,173763 +134836,134836 +108420,108420 +409812,409812 +355412,355412 +377575,377575 +322113,322113 +397752,397752 +61999,61999 +76676,76676 +17980,17980 +116667,116667 +201718,201718 +24499,24499 +57974,57974 +112291,112291 +402110,402110 +98088,98088 +271551,271551 +419613,419613 +362831,362831 +151744,151744 +396224,386561 +66130,66130 +399266,399266 +262825,262825 +300600,300600 +359897,359897 +367591,367591 +274274,274274 +329518,329518 +37226,37226 +266361,266361 +412258,412258 +117674,117674 +284971,284971 +97080,97080 +253510,253510 +131414,131414 +263061,263061 +331156,331156 +173019,173019 +182209,182209 +430869,430869 +281555,281555 +99760,99760 +49039,49039 +30150,30150 +333232,333232 +355560,355560 +31442,31442 +236122,236122 +344060,344060 +74782,74782 +133312,133312 +63729,63729 +293870,293870 +69833,69833 +178999,178999 +412520,412520 +32800,32800 +40087,40087 +404640,404640 +142222,142222 +113497,113497 +41839,41839 +37233,37233 +207348,207348 +386558,386558 +20619,20619 +66365,66365 +433188,433188 +172876,172876 +263109,263109 +285433,285433 +41505,41505 +427167,427167 +67703,67703 +219212,219212 +65090,65090 +431366,431366 +35407,35407 +308761,308758 +202980,202980 +36686,36686 +350560,350560 +335408,335408 +434415,434415 +185772,185772 +311347,311347 +76873,76873 +55394,55394 +20539,20539 +330332,290508 +253940,253940 +16738,16738 +283507,283507 +363236,363236 +350131,350131 +145703,145703 +13862,13862 +27437,27437 +195725,195725 +361908,361908 +227441,227441 +419731,419731 +238356,238356 +400857,400857 +398400,398400 +120226,120226 +429515,429515 +127353,127353 +420278,420278 +186096,186096 +40202,40202 +51322,51322 +340580,340580 +93656,93656 +374585,374585 +405202,405202 +162877,162877 +428795,428795 +299472,299472 +334317,334317 +155712,155712 +13859,13859 +130965,130965 +62857,62857 +424293,23312 +206878,206878 +405868,405868 +304721,304721 +258285,258285 +332064,332064 +68226,68226 +20926,20926 +431617,431617 +306227,306227 +29583,29583 +430158,430158 +27465,27465 +350763,350763 +150439,150439 +428769,428769 +39711,39711 +362833,362833 +231564,231564 +343014,343014 +21302,21302 +419442,419442 +193523,193524 +237865,237865 +304211,302393 +174632,174632 +352672,352672 +316375,316375 +171427,171427 +228945,228945 +37554,37554 +132076,132076 +260999,204583 +357471,357471 +19761,19761 +179595,179595 +31207,31207 +341643,341643 +324440,324440 +320695,320695 +13320,13320 +16246,16246 +428195,428195 +20795,20795 +27224,27224 +302047,302047 +284208,284208 +85101,85101 +145672,145672 +369568,369568 +427142,427142 +40676,40676 +393177,393177 +354700,354700 +428257,428257 +62916,62916 +340026,340026 +170667,170667 +232865,232865 +285824,285824 +64630,64630 +208774,208774 +97597,97597 +325181,325181 +197169,197169 +224463,224463 +73775,73775 +126861,126861 +22786,22786 +386401,386401 +97040,97040 +403379,429874 +120922,120922 +332882,332882 +145781,145781 +113717,113717 +173777,173777 +425876,425876 +55396,55396 +431097,337864 +433311,433311 +35936,35936 +291871,291871 +286565,286565 +46941,46941 +59426,59426 +66913,66913 +335303,335303 +64243,64243 +334160,334160 +65809,65809 +29975,29975 +412464,412464 +196089,196089 +43509,43509 +135741,135741 +38003,38003 +34237,34237 +42620,42620 +153686,153686 +53343,53343 +30493,30493 +416943,416943 +28810,28810 +350128,350128 +197546,197546 +132747,132747 +428899,428899 +129560,129560 +113074,113074 +168858,168858 +355329,355329 +142868,142868 +353189,353189 +252447,252447 +313287,313287 +72089,72089 +369991,369991 +68844,68844 +147159,147159 +232179,232179 +382955,382955 +27901,463 +338989,338989 +268968,268968 +314682,314682 +33737,33737 +23468,23468 +416170,416170 +357327,357327 +433925,433925 +400851,400851 +227618,227618 +327225,327225 +142178,142178 +403386,403386 +31523,31523 +369690,369690 +32844,32844 +382174,382174 +40031,40031 +235656,235656 +400732,400732 +107424,107424 +152324,152324 +24607,24607 +153834,153834 +29569,29569 +432565,432565 +377452,377452 +239378,239378 +194924,11821 +346151,346151 +127681,127681 +420038,420038 +430791,430791 +388813,388813 +349153,349153 +42794,42794 +239007,239007 +251064,251064 +425831,425831 +63088,63088 +122479,122479 +416134,416134 +429771,291236 +417260,417260 +183559,183559 +225149,225149 +40249,40249 +307003,307003 +67842,67842 +126772,126772 +301478,301478 +17169,17169 +19440,19440 +362447,362447 +25656,25656 +66661,66661 +138530,138530 +14966,14966 +351005,351005 +350233,349784 +390147,390147 +35746,35746 +133813,133813 +418067,336357 +322292,322292 +329570,329570 +326666,326666 +116103,116103 +37534,37534 +259488,259488 +370965,370965 +257120,257120 +129631,129631 +111382,111382 +348062,348062 +94953,94953 +311275,311275 +14161,14161 +7884,7884 +31404,31404 +264968,1219 +37665,37665 +39543,39543 +402202,402202 +370327,370327 +406084,406084 +120994,120994 +28464,28464 +27448,27448 +328868,328868 +322226,322226 +41662,41662 +172887,172887 +393813,393813 +167592,167592 +176933,176933 +401996,401996 +154312,154312 +368373,368373 +36938,36938 +40597,40597 +31997,31997 +99510,99510 +41526,41526 +65551,65551 +244708,244708 +433100,433100 +129453,129453 +33433,33433 +119993,119993 +14706,14706 +29729,29729 +127058,127058 +34742,34742 +301080,301080 +360445,360445 +41381,41381 +28933,28933 +42478,42478 +393956,406523 +38083,38083 +230279,230279 +268878,268878 +255691,255691 +64009,64009 +170816,170816 +53021,53021 +152944,152944 +427175,427068 +24335,24335 +341177,341177 +340970,340970 +249812,249812 +407425,407425 +371925,371925 +9842,9842 +145410,145410 +114804,114804 +336128,336128 +426762,426762 +155968,155968 +249688,249688 +21733,21733 +13002,13002 +32071,32071 +304260,37238 +41816,41816 +353840,353840 +28514,28514 +312320,312320 +73314,73314 +13684,13684 +322330,322330 +364360,364360 +43456,43456 +341706,341706 +255529,255529 +21836,21836 +415768,415768 +371267,371267 +52031,52031 +260834,260834 +31299,31299 +188613,188613 +269233,269233 +31673,31673 +39410,39410 +336184,336184 +191259,191259 +64515,64515 +164823,164823 +173484,173479 +176922,176922 +334386,334386 +310783,310783 +339894,339894 +261538,261538 +257624,257624 +347625,347625 +309937,309937 +153869,153869 +429390,429390 +178026,178026 +280138,280138 +101531,101531 +151069,151069 +377834,377834 +176449,176449 +310449,310449 +62412,62412 +238540,238540 +375461,375461 +15420,15420 +7449,7449 +369118,369118 +33890,33890 +396714,396714 +377821,377821 +403388,403388 +413400,413400 +16381,16381 +338222,338222 +151356,151356 +383581,383581 +35082,35082 +20591,20591 +413644,413644 +214314,214314 +40424,40424 +263745,263745 +2702,2702 +181510,181510 +42049,42049 +71393,71393 +134954,134954 +271484,271484 +419129,419129 +151072,151072 +36444,36444 +328419,328419 +287089,287089 +113614,113614 +420148,420148 +59733,59733 +360170,360170 +42071,42071 +62690,62690 +26913,26913 +59932,59932 +278378,278378 +396954,396954 +349782,349782 +158118,158118 +41340,41340 +406599,406599 +21489,21489 +245715,245715 +188134,188134 +116566,116566 +34470,34470 +37032,37032 +66048,66048 +30832,30832 +373307,373307 +426581,426581 +130821,130821 +237825,237825 +266866,266866 +224312,224312 +423588,423588 +301851,301851 +139376,139376 +355057,355057 +363164,363164 +376041,376041 +422154,422154 +33610,33610 +96555,96555 +397929,397929 +34308,34308 +262803,262803 +303067,303067 +4507,4507 +141295,141295 +128856,128856 +23190,23190 +26810,26810 +68152,68152 +119579,119579 +270509,270509 +55099,55099 +237579,237579 +37153,37153 +385581,385581 +87461,87461 +356848,356848 +34371,34371 +329407,329407 +396915,396915 +30938,30938 +229568,229567 +428791,428791 +272083,272083 +30115,30115 +54964,54964 +169656,169656 +193030,193030 +125913,125913 +373283,373283 +303131,303131 +431307,393617 +431728,431728 +421500,231042 +10251,10251 +364539,364539 +407514,407514 +141979,141979 +170061,170061 +27747,27747 +90761,90761 +115306,115306 +108405,108405 +307962,307955 +108623,108623 +413840,413840 +318980,319043 +179052,179052 +172982,172982 +11719,11719 +355453,355453 +325000,325000 +255039,255039 +32952,32952 +15702,15702 +424359,424359 +311696,311696 +401607,401607 +431906,431906 +420568,420568 +137487,137487 +67449,67449 +163452,163452 +184594,184594 +365001,365001 +156876,156876 +371321,371321 +28990,28990 +33138,33138 +35736,35736 +223543,223543 +126994,126994 +333492,333492 +243420,243420 +333833,333833 +193819,193819 +413321,413321 +434421,434421 +43123,43123 +206054,206054 +291808,291808 +270225,270225 +20657,20657 +241924,241924 +43453,43453 +31408,31408 +257785,257785 +378602,378602 +96135,96135 +291153,291153 +30265,30265 +175477,175477 +131807,131807 +416464,416464 +114026,114026 +68094,68094 +134080,134080 +146714,146714 +346208,346208 +124113,124113 +189705,189705 +181200,181200 +226646,226646 +359759,359759 +383023,383023 +206858,206858 +258522,258522 +102387,102387 +292660,292660 +322003,322003 +357513,357513 +120425,120425 +297974,297974 +134523,134523 +69254,69254 +195930,195930 +306945,306945 +40137,40137 +65502,65502 +220977,220977 +378687,378687 +87649,87649 +58831,58831 +24492,24492 +323700,323700 +168771,168771 +431586,431586 +41955,130680 +35788,35788 +171773,171773 +412643,412643 +30424,30424 +24941,24941 +427713,354866 +30478,30478 +104371,104371 +156880,156880 +419693,419693 +107922,107922 +391298,391298 +337842,337842 +171527,171527 +43049,43049 +250773,250773 +163276,163276 +418222,418222 +326731,326731 +418473,418473 +331294,331294 +306124,306124 +28450,28450 +427327,427327 +197352,197352 +62280,62280 +68837,68837 +347759,347759 +433687,433687 +321660,321660 +26091,40131 +328677,328677 +300901,300901 +67941,67941 +23738,23738 +328728,328728 +128089,128089 +333779,333779 +38094,38094 +175431,175431 +294069,294069 +247707,247707 +275751,275751 +138597,138597 +323782,323782 +56532,56532 +322988,322988 +422321,422321 +32998,32998 +402531,402531 +336614,336614 +322422,322422 +344259,344259 +249407,249407 +31342,31342 +306097,306097 +38069,38069 +375976,375976 +116479,116479 +416171,416171 +399914,399914 +333802,333802 +119299,119299 +429167,429167 +63963,63963 +137171,137171 +159008,159008 +359010,359010 +18991,18991 +371931,371931 +414151,414151 +350477,350477 +108990,108990 +399327,399327 +62549,62549 +205273,205273 +37877,37877 +336214,336214 +388444,388444 +390692,390692 +61667,61667 +32835,32835 +376521,376521 +131951,131951 +381637,381637 +424950,424950 +146578,146578 +381317,381317 +226950,226950 +36303,36303 +354421,354421 +320898,320898 +9966,9966 +328621,328621 +387851,387851 +395507,395507 +197077,197077 +265933,265933 +283037,283037 +360252,360252 +299750,299749 +313878,313878 +120327,120327 +36300,36300 +364498,364498 +256043,256043 +141115,141115 +58036,58036 +187097,187097 +15947,15947 +419680,419680 +130443,130443 +434856,434856 +388992,388992 +36391,36391 +270678,270678 +387748,387748 +328922,328922 +93706,93706 +71638,71638 +340130,340130 +118734,118734 +406885,406885 +21263,21263 +17065,17065 +360431,360431 +420085,420085 +204129,204129 +331561,331561 +142165,142165 +388845,388845 +66019,66019 +289513,289513 +321206,268681 +57982,57982 +351071,351071 +209253,209253 +210502,210502 +358478,358478 +160748,160748 +169538,169538 +212108,212108 +110152,110152 +418428,418428 +26382,26382 +381138,381138 +342420,342420 +324677,324677 +101932,101932 +63604,63604 +41464,41464 +369901,369901 +403621,403621 +96797,96797 +24757,24757 +388060,41509 +428061,428061 +315412,315412 +42233,42233 +376930,376930 +28661,28661 +16945,16945 +124487,124487 +192485,192485 +224399,224399 +430401,430401 +80813,80813 +388987,388987 +279010,279010 +25474,25474 +309538,309538 +205169,205169 +381925,381925 +433795,433795 +319799,319799 +142605,142605 +309351,309351 +40607,40607 +35638,35638 +37798,37798 +59742,59742 +314541,314541 +352694,352694 +362968,362968 +366237,366237 +132470,132470 +131289,131289 +128075,128075 +379322,379322 +64439,64439 +325530,325530 +129354,129354 +423815,423815 +279086,279086 +163644,163644 +326738,326738 +341847,341847 +65954,65954 +323806,323806 +114234,114234 +353715,353715 +164047,164047 +197494,197494 +77162,77162 +23144,23144 +402774,402774 +137073,137073 +122310,122310 +338951,11168 +110509,110509 +167611,167611 +153958,153958 +155741,155741 +209810,209810 +208271,208271 +309285,309285 +30509,30509 +34970,34970 +421479,421479 +392461,392461 +15583,15583 +352035,352035 +219978,219978 +132686,132686 +68993,68993 +37458,37458 +191253,191253 +130567,130567 +363705,363705 +17617,17617 +17982,17982 +376560,376560 +225805,225805 +389337,113294 +341390,341390 +403569,403569 +87193,87193 +342903,342903 +323856,323856 +215211,215211 +402829,402829 +118533,118533 +36953,36953 +130883,130883 +392373,392373 +144585,144585 +40253,40253 +182011,182011 +433520,433520 +419924,419924 +87895,87895 +62881,62881 +70897,70897 +429650,429650 +13789,13789 +166551,166551 +295950,295950 +316504,316504 +426399,426399 +142529,142529 +35251,35251 +65496,65496 +428546,428546 +46116,46116 +51611,51611 +291483,291483 +227574,227574 +41812,41812 +335765,335765 +120863,120863 +390556,390556 +310887,310887 +13178,13178 +14740,14740 +367590,367590 +114117,114117 +418262,418262 +199374,199374 +205547,205547 +318936,319043 +147397,147397 +65641,65641 +45841,45841 +297363,297363 +66912,66912 +180230,215482 +417120,417120 +21491,21491 +163210,163210 +32809,32809 +381383,381383 +352660,374560 +33409,33409 +40497,40497 +172906,172906 +86127,86127 +333437,333437 +121047,121047 +295933,295933 +357393,357393 +154100,154100 +290023,290023 +150921,150921 +291770,291770 +39797,39797 +26484,26484 +319316,319316 +186854,186854 +46117,46117 +28977,28977 +209483,209483 +356963,356963 +360017,360017 +400735,400735 +325327,325327 +352383,352383 +53966,53966 +24718,24718 +32398,32398 +15397,15397 +55641,55641 +352692,352692 +222729,222729 +311219,311219 +384143,384143 +21032,21032 +403261,403261 +20825,20825 +111389,111389 +300876,300876 +368544,368544 +124542,124542 +362843,362843 +32530,32530 +269630,269630 +325080,325080 +37012,37012 +24165,24165 +141535,141535 +124685,124685 +43066,43066 +40034,40034 +109000,109000 +428838,428838 +129476,129476 +86132,86132 +49507,49507 +38356,38356 +192260,192260 +304886,304886 +176527,176527 +305060,305060 +113673,113673 +123719,123719 +37253,37253 +21446,21446 +351844,351844 +12407,12407 +434436,283212 +433181,433181 +162428,196062 +304521,304521 +243593,243593 +357378,357378 +340429,340429 +186693,186693 +27563,27563 +7284,7284 +37418,37418 +186726,186726 +184581,184581 +419148,419148 +14824,14824 +114563,114563 +406304,406304 +44280,44280 +156796,156796 +123611,123611 +278015,278015 +37214,37214 +426584,426584 +229990,229990 +118208,118208 +224001,224001 +370787,370787 +41237,41237 +35088,35088 +24623,24623 +42479,42479 +305829,305829 +392458,392458 +203669,133519 +384005,384005 +352691,352691 +144435,144435 +114636,114636 +43467,43467 +421468,421468 +358602,358602 +332067,332067 +162847,162847 +32525,32525 +67982,67982 +6293,6293 +114151,114151 +307992,307993 +25202,25202 +147862,147862 +396241,396241 +424629,424629 +434944,434944 +34561,34561 +57996,57996 +184357,184357 +428633,428633 +422795,422795 +26781,26781 +34350,34350 +344257,344257 +30710,30710 +349083,349083 +121217,121217 +51332,51332 +416586,416586 +21599,21599 +327105,327105 +49724,49724 +258072,258072 +256326,256326 +126820,126820 +424945,424945 +297536,297536 +302664,302664 +402494,402494 +329459,329459 +25646,25646 +52701,52701 +120962,120962 +185132,185132 +47028,47028 +38104,38104 +62120,62120 +220934,220934 +21926,21926 +285264,285264 +31596,31596 +36705,36705 +269735,269735 +329942,329942 +161838,161838 +109788,109788 +216128,216128 +427156,427156 +428352,428352 +59951,59951 +62274,47344 +287180,287180 +424415,424415 +331928,331928 +388457,388457 +322362,396963 +85054,85054 +219660,219660 +317934,317934 +324892,324892 +287956,287956 +378032,378032 +63071,63071 +103626,103626 +297148,297148 +172981,172981 +15692,15692 +28786,28786 +286911,286911 +15356,15356 +263213,263213 +327984,327984 +401940,401940 +295834,295834 +43047,43047 +69983,69983 +29504,29504 +28386,28386 +393176,393617 +42086,42086 +418687,418687 +421026,421026 +158913,158913 +20674,20674 +419474,419474 +15883,15883 +30486,30486 +372979,372979 +35083,35083 +29892,29892 +181070,181070 +207327,207327 +28688,28688 +269230,269230 +341977,341977 +132108,132108 +310362,310362 +394296,394296 +427335,427335 +160789,160789 +33805,33805 +143664,143664 +283834,283834 +399659,399659 +126229,126229 +424392,424392 +30857,30857 +14915,14915 +353260,353260 +149417,149417 +66498,66498 +379616,379616 +415188,415188 +44271,44271 +16613,16613 +122700,122700 +277782,277782 +58042,58042 +38110,38110 +110566,110566 +76713,76713 +11497,11497 +365449,365449 +137443,137443 +376668,376668 +365736,365736 +294856,294856 +314016,314016 +360094,360094 +200022,200022 +30885,30885 +429398,429398 +387785,387785 +104244,104244 +37272,37272 +403836,403836 +353216,353216 +220117,220117 +80341,80341 +400360,400360 +215965,215965 +260024,260024 +23222,23222 +386613,386613 +319785,319785 +113328,113328 +39117,39117 +37652,37652 +258162,258162 +359445,359445 +181017,181017 +419404,419404 +12312,12312 +386548,386548 +168743,168743 +390479,390479 +382208,382208 +178100,178100 +37834,37834 +42873,42873 +215795,215795 +363493,363493 +182750,182750 +128004,128004 +311182,311182 +127182,127182 +69157,69157 +358197,358197 +21475,21475 +28546,28546 +290319,290319 +240408,240408 +38751,38751 +420164,420164 +419066,419066 +291576,291576 +242891,310195 +38489,38489 +224094,224094 +154555,154555 +344308,344308 +336089,336089 +174808,174808 +37245,37245 +363554,363554 +192442,192442 +421996,421996 +293737,293737 +375347,375347 +432696,432696 +82829,82829 +146979,146979 +283537,283537 +151249,151249 +254633,317312 +52901,52901 +225238,225238 +145822,145822 +19406,19406 +317539,317539 +412101,412101 +333407,333407 +407475,407475 +277665,277665 +178899,178899 +91016,91016 +133505,133505 +25956,25956 +36204,36204 +351543,351543 +84923,84923 +122365,122365 +319271,319271 +163981,163981 +33808,33808 +42254,42254 +114144,114144 +20739,20739 +322243,322243 +169496,169496 +434510,434510 +118392,118392 +157465,157465 +316347,316347 +400967,400967 +256476,193225 +122508,122508 +406715,406715 +113613,113613 +153302,153302 +266542,266542 +347006,347006 +270876,270876 +31264,31264 +322027,322027 +111025,111025 +176293,176293 +132024,132024 +66159,66159 +31192,31192 +110741,110741 +431448,431448 +416429,416429 +429173,429173 +121629,121629 +163350,163350 +388334,388334 +243208,243208 +29384,29384 +30751,30751 +391576,391576 +40487,40487 +25269,25269 +117165,117165 +38015,38015 +32641,32641 +25143,25143 +42440,42440 +157326,157326 +50439,50439 +219940,219940 +401093,401093 +154103,154103 +193319,193319 +262972,262972 +153280,153280 +41772,41772 +412561,412561 +35174,35174 +35868,35868 +36484,36484 +19698,19698 +207780,207780 +393642,393642 +424948,424948 +321364,321364 +288286,288286 +352571,352571 +43334,43334 +138621,138621 +38448,38448 +351727,351727 +283829,283829 +240565,240565 +65097,65097 +316416,316416 +327544,327544 +286386,286386 +44794,44794 +19462,19462 +141321,141321 +334533,334533 +26143,26143 +36336,36336 +349539,349539 +365494,365494 +66887,66887 +175460,175460 +404500,404500 +413799,413799 +147979,146152 +309198,309198 +344632,344632 +163817,163817 +184047,184047 +23746,23746 +328541,328541 +18249,18249 +34559,34559 +120542,120542 +27953,27953 +206260,206260 +362983,362983 +40923,40923 +338149,338149 +307544,25576 +86088,86088 +179706,179706 +291179,291179 +119270,119270 +256564,256564 +163451,163451 +301056,301056 +129855,129855 +424108,424108 +249595,249595 +15775,15775 +21681,21681 +100000,100000 +121240,121240 +373794,373794 +144303,144303 +118181,118181 +313535,313535 +42251,42251 +240576,240576 +66772,66772 +41967,41967 +20714,20714 +195871,195871 +16063,20 +358846,358846 +332039,332039 +343192,343192 +302307,302307 +299046,299046 +56686,56687 +42809,42809 +40058,40058 +52342,52342 +139475,139475 +172978,172978 +22553,22553 +161879,161879 +24269,24269 +27620,27620 +127320,127320 +116460,116460 +319757,319757 +33432,33432 +318396,318396 +359673,359673 +76545,76545 +148242,148242 +319267,319267 +369620,369620 +207291,207291 +340241,340241 +374435,374435 +43562,43562 +19034,19034 +427944,427944 +16422,16422 +30278,30278 +124692,124692 +202419,202419 +407015,407015 +372193,372193 +171434,171434 +338111,338111 +393290,393290 +79245,79245 +402600,402600 +309131,309131 +15094,15094 +70394,70394 +405312,405312 +34241,34241 +318547,318547 +248097,248097 +355991,355991 +408469,408469 +29496,29496 +317439,317439 +177990,163152 +381675,381675 +24925,24925 +207741,207741 +287305,287305 +249527,249527 +334148,334148 +68145,68145 +131661,131661 +30610,30610 +30939,30939 +378576,378576 +41689,41689 +138961,138961 +168668,168668 +339215,339215 +34407,34407 +351360,351360 +37521,37521 +179549,179549 +217515,217515 +68249,68249 +12561,12561 +56537,56537 +287298,287298 +406762,406762 +12768,12768 +17297,17297 +247883,247883 +20649,20649 +340249,340249 +19970,19970 +406453,406453 +422010,422010 +150289,150289 +292821,292821 +430690,430690 +337531,337531 +10840,10840 +386174,386174 +40057,40057 +32277,32277 +313254,88397 +4822,4822 +306803,306803 +205413,205413 +428584,428584 +7517,7517 +383784,383784 +342234,342234 +180777,180777 +218782,218782 +340008,340008 +425263,425263 +419794,419794 +415258,415258 +30444,30444 +268502,268502 +236927,236927 +63863,63863 +46933,46933 +369518,369518 +417675,417675 +396234,396234 +430979,355326 +426511,426511 +32581,32581 +191303,191303 +327912,327912 +397789,397789 +127782,127782 +395495,395495 +422746,422746 +434665,430867 +339187,339187 +120893,120893 +240622,240626 +138214,138214 +332907,332907 +256177,256177 +112031,112031 +360769,360769 +427894,427894 +63523,63523 +300813,300813 +431826,431826 +199061,199061 +277709,277709 +412198,412198 +240556,240556 +354742,354742 +252046,252046 +40929,40929 +334269,334269 +26975,26975 +428238,428238 +43438,43438 +240540,240540 +299741,299741 +255208,255208 +138527,138527 +20835,20835 +16341,16341 +60606,60606 +117726,117726 +419653,419653 +60138,60138 +326104,326104 +30015,30015 +168585,168585 +260666,260666 +302100,302100 +391412,391412 +141105,141105 +161980,161980 +287182,287182 +154503,154503 +177195,177195 +121523,121523 +26728,26728 +361082,361082 +194366,194366 +26536,26536 +229562,229567 +325729,325729 +175371,175371 +334512,334512 +36913,36913 +406460,406460 +40525,40525 +330043,330043 +184040,184040 +130526,130526 +276150,276150 +297449,297449 +207197,207197 +69244,69244 +87135,87135 +157137,157137 +34073,34073 +196038,196038 +398079,2838 +59719,59719 +22294,22294 +139761,139761 +399946,399946 +402265,402265 +30628,30628 +23306,23306 +10338,10338 +362533,463 +427703,427703 +162892,162892 +225456,225456 +90014,90014 +94202,94202 +37573,37573 +363465,363465 +430599,178038 +51189,51189 +36706,36706 +18166,18166 +270532,270532 +7373,7373 +108624,108624 +405584,405584 +38172,38172 +112172,112172 +13476,13476 +32437,32437 +261398,261398 +76667,76667 +20209,20209 +14577,14577 +43054,43054 +422444,422444 +47083,47083 +65660,65660 +36054,36054 +200431,200431 +422037,422037 +36423,15760 +357046,357046 +26773,26773 +207407,207407 +17077,17077 +108713,108713 +395025,395025 +339940,339940 +68321,68321 +269689,269689 +123152,123152 +164472,164472 +408557,408557 +26279,26279 +286010,286010 +320090,320090 +302521,302521 +406228,406228 +134431,134431 +25150,25150 +373261,373261 +333071,333071 +322110,322110 +36081,36081 +231014,231014 +121488,121488 +34572,34572 +79811,79811 +419390,419390 +32837,32837 +199787,199787 +316712,316712 +166270,166270 +302671,302671 +41417,41417 +346537,346537 +29758,29758 +34922,34922 +62562,62562 +76132,76132 +77085,77085 +59880,59880 +32625,32625 +143967,204583 +281216,281216 +36539,36539 +269698,269698 +29123,29123 +271062,271062 +180692,180692 +18756,18756 +145429,145429 +429597,429597 +130562,130562 +380560,380560 +33920,33920 +30136,30136 +148789,148789 +23050,23050 +294593,294593 +39794,39794 +74476,74476 +158872,158872 +73379,73379 +10302,10302 +31236,31236 +120146,120146 +43632,43632 +306100,306100 +70942,70942 +40380,40380 +21243,21243 +431093,431093 +400138,400138 +91409,91409 +137103,137103 +34003,34003 +119291,119291 +287077,287077 +63701,63701 +371220,371220 +349676,349676 +37147,37147 +421956,421956 +157079,157079 +421530,421530 +431733,431733 +305484,305484 +30607,30607 +285435,285435 +227756,227756 +328730,328730 +396318,396318 +97490,97490 +321640,321640 +355074,355074 +324241,324241 +320830,320830 +345057,345057 +33525,33525 +262261,262261 +343974,343974 +380056,380056 +103570,103570 +381673,381673 +385987,385987 +25149,25149 +278916,278916 +159050,159050 +232118,144874 +24537,24537 +32400,32400 +139017,139017 +375977,375977 +309429,309429 +26049,26049 +260720,260720 +426555,426555 +22003,22003 +27404,27404 +60804,60804 +192456,192456 +180978,180978 +354836,354836 +297678,297678 +12298,12298 +377154,377154 +396371,396371 +151279,151279 +161278,161278 +186809,186809 +336496,336496 +355791,355791 +135626,135626 +138762,138762 +26512,26512 +119294,119294 +39858,39858 +349813,349813 +431081,431081 +72652,72652 +411593,157 +164934,164954 +225619,225619 +39733,39733 +216267,216267 +356076,356076 +12982,12982 +40170,40170 +37107,37107 +366747,366747 +130070,130070 +165927,165927 +37895,37895 +424197,424197 +154176,154176 +68360,68360 +335685,335685 +31668,31668 +21226,21226 +411838,411838 +322727,322727 +144779,144779 +365153,365153 +434152,386850 +10984,10984 +421784,421784 +295382,295382 +134276,134276 +303687,303687 +401545,401545 +34706,34706 +26993,26993 +78243,78243 +349746,349746 +281381,281381 +334826,10766 +130329,130329 +94124,94124 +294004,294004 +65953,65953 +430394,430394 +63381,63381 +104531,104531 +181758,181758 +145830,145830 +37201,37201 +7945,7945 +166128,166128 +9872,9872 +79343,79343 +179948,179948 +123398,123398 +249537,249537 +22365,22365 +245343,245343 +65600,65600 +188217,174378 +332497,332497 +180442,180442 +32802,32802 +159932,159932 +254344,254343 +160568,160568 +67999,67999 +24202,24202 +200624,200624 +121487,121487 +391909,391909 +3002,3002 +233775,233775 +44284,44284 +345710,345710 +301363,301363 +63131,63131 +86253,86253 +349084,41833 +144806,144806 +233536,233536 +127691,127691 +343702,343702 +332884,332884 +35203,35203 +422701,422701 +349610,349500 +62268,62268 +354422,354422 +179113,179113 +27531,27531 +137370,137370 +302536,35569 +28267,28267 +73082,73082 +416728,417749 +35740,35740 +206250,206250 +171660,171660 +37547,37547 +343733,343733 +415789,415789 +34322,34322 +255604,255604 +298137,298137 +163454,163454 +34455,34455 +179484,179484 +112467,112467 +32527,32527 +307991,307991 +330241,330241 +38134,38134 +253490,253490 +172770,172770 +333626,333626 +337201,337201 +41697,41697 +34946,34946 +30392,30392 +156605,156605 +180253,180253 +377446,377446 +329090,329090 +139554,139554 +16877,16877 +20690,20690 +333851,333851 +429807,429807 +388706,388706 +403163,403163 +344769,344769 +431735,431735 +124112,124112 +338729,338729 +79316,79316 +186895,186895 +93736,93736 +370043,370043 +30084,30084 +57908,57908 +126018,126018 +405729,405729 +141072,141072 +28540,28540 +414698,414698 +36721,36721 +150285,150285 +434658,434658 +43150,43150 +300992,300992 +163064,163064 +411365,411365 +352579,352579 +38705,38705 +383199,383199 +145950,145950 +112106,112106 +39750,39750 +89210,89210 +420656,420656 +354840,354840 +338092,338092 +43155,43155 +38668,38668 +425556,425556 +50242,50242 +137691,137693 +224911,224911 +12322,12322 +312625,312625 +174576,174576 +341707,341707 +173945,173945 +32054,32054 +152853,152853 +329773,329773 +125676,125676 +146317,146317 +232658,232658 +55823,55823 +323223,323223 +252351,252351 +49337,49337 +429893,429893 +36350,36350 +292080,292080 +112835,112835 +385719,385719 +25036,25036 +10068,10068 +280858,280858 +361704,361704 +33031,33031 +333749,333749 +322311,322311 +118503,118503 +251152,251152 +423863,423863 +343805,343805 +55245,55245 +325610,325610 +347010,347010 +430669,430669 +21890,21890 +173667,173667 +290731,290731 +135673,135673 +170399,170399 +425562,425562 +432143,146989 +19521,19521 +18027,18027 +33312,33312 +303525,303525 +18346,18346 +398968,398968 +147830,301212 +45758,45758 +38444,38444 +422608,422608 +142360,142360 +301258,301258 +29149,29149 +129705,129705 +361989,361989 +4499,4499 +415911,415911 +134644,134644 +427714,427714 +202378,202378 +58671,58671 +31275,31275 +92344,92344 +128838,128838 +94117,94117 +252282,252282 +421665,421665 +312796,312796 +381291,381291 +25064,21281 +353922,353922 +235058,235058 +169537,169537 +171555,171555 +10024,10024 +109606,109606 +35192,35192 +355528,355528 +73419,73419 +182256,182256 +397004,397004 +430570,85256 +413220,413220 +171125,171125 +127387,127387 +37140,37140 +218483,218483 +92974,92974 +171627,171627 +131505,131505 +235450,235450 +6390,6390 +13486,13486 +178954,178954 +112482,112482 +143906,143906 +108992,108992 +151318,151318 +408310,408310 +17489,17489 +339194,339194 +145901,145901 +125948,125948 +208964,208964 +109154,109154 +424910,424910 +191109,191109 +161817,161817 +417908,417908 +41204,41204 +408705,408705 +409436,409436 +32813,32813 +148004,148004 +39584,39584 +300004,300004 +206806,206806 +413859,413859 +156617,156617 +306475,306475 +137276,137276 +166369,166369 +238328,238328 +406031,406031 +155697,155697 +136482,136482 +289463,289463 +62646,62646 +129566,129566 +245891,245891 +69890,69890 +350561,350561 +41240,41240 +117786,117786 +417744,417744 +138020,138020 +112036,112036 +341906,341906 +238842,238842 +349894,349894 +92629,92629 +154755,154755 +386893,386893 +431944,431944 +22412,22412 +90762,90762 +98717,98717 +405452,405452 +110829,110829 +29426,29426 +434418,434418 +163180,163180 +122144,122144 +391770,391770 +127639,127639 +190603,190603 +38253,38253 +145166,145166 +421201,421201 +122497,122497 +184166,184166 +40262,40262 +171769,171769 +33654,33654 +26014,26014 +329168,329168 +383572,383572 +300419,300419 +432319,432319 +309097,429874 +20504,20504 +272062,272062 +31888,31888 +178556,178556 +362502,362502 +144414,144414 +363853,363853 +258336,258336 +171971,171971 +118569,118569 +430795,430795 +32529,32529 +433455,433452 +377400,377400 +420421,420421 +66107,66107 +195722,195722 +37629,37629 +257068,257068 +104765,104765 +97746,97746 +42615,42615 +408617,408617 +39144,39144 +396969,396969 +42918,42918 +66959,66959 +109890,109890 +32981,32981 +434827,320101 +78469,78469 +408367,408367 +381880,381880 +36614,36614 +163738,163738 +325223,325223 +179438,179438 +154788,154788 +335848,335848 +223507,223507 +263333,263333 +331364,331364 +135469,135469 +221079,221079 +39812,39812 +171556,171555 +83888,83888 +426561,426561 +194611,194611 +329992,329992 +78745,78745 +137730,137730 +308018,308018 +113110,113110 +108626,108626 +228292,228292 +70344,70344 +33471,33471 +355295,355295 +255553,255553 +140562,140562 +20161,20161 +134840,134840 +62828,62828 +207196,207196 +139953,139953 +343870,343870 +31128,31128 +41225,41225 +332247,332247 +204168,204168 +427001,427001 +343970,343970 +173806,173806 +33102,33102 +346254,346254 +32883,32883 +396820,396820 +178402,178402 +144467,144467 +272051,272051 +412686,412686 +347798,112807 +85390,85390 +420314,420314 +272061,272061 +234829,234829 +346809,346809 +369496,206915 +172912,172912 +271877,271877 +135738,135738 +120525,120525 +387383,387383 +313488,313488 +246671,246671 +166278,166278 +19932,19932 +69940,69940 +186214,186214 +61937,61937 +240623,240549 +173559,173559 +361993,361993 +111164,111164 +143502,143502 +257767,333442 +13748,14197 +249285,249285 +27798,27798 +315017,315017 +241865,241865 +113403,113403 +209339,209339 +277065,277065 +177671,177671 +109360,109360 +321670,321670 +363223,363223 +159689,159689 +37522,37522 +155998,155998 +122314,122314 +24812,24812 +103682,103682 +134654,134654 +338230,338230 +149906,36727 +299591,299591 +67886,67886 +133523,133523 +336528,336528 +433184,433184 +385887,385887 +420529,420529 +72650,72650 +425718,425718 +358964,358964 +110919,110919 +30047,30047 +311770,204895 +202802,202802 +104811,104811 +154020,154020 +117984,117984 +72899,72899 +144954,144954 +400885,429874 +407880,407880 +427569,427569 +314969,314969 +34555,34555 +36465,36465 +10193,10193 +195629,195629 +34176,34176 +287840,287840 +95902,95902 +103979,103979 +39387,39387 +27105,27105 +356370,356370 +36669,36669 +325543,325543 +19429,19429 +39743,39743 +236703,236703 +43172,43172 +420729,420729 +423621,204493 +399783,399783 +26032,408715 +5027,5027 +378597,378597 +229557,229556 +42492,42492 +7160,7160 +42810,42810 +26240,26240 +184053,184053 +57122,57122 +97545,97545 +139745,139745 +192182,192181 +255051,255051 +328628,463 +426316,426316 +172447,172447 +21969,21969 +184596,184596 +67386,67386 +111184,111184 +114478,114478 +379549,379549 +182376,182376 +310025,310025 +22026,22026 +278485,278485 +32613,32613 +63301,63301 +40220,40220 +38446,38446 +308719,308719 +407417,207043 +430100,430100 +403222,403222 +36925,36925 +392468,392468 +37799,37799 +61343,61343 +35582,35582 +16932,16932 +39701,39701 +394172,394172 +299747,299747 +186467,186467 +432698,432698 +380104,380104 +351060,19234 +405275,405275 +74093,74093 +240659,240659 +218464,218464 +403266,403266 +363157,363157 +377658,377658 +47108,47108 +280312,280312 +331147,331147 +115518,115518 +430319,430319 +136262,136262 +289459,289459 +432861,432861 +343388,343388 +375323,375323 +38367,38367 +403338,403338 +342101,342101 +156240,156240 +259124,259124 +339967,339967 +65088,65088 +114024,114024 +291736,291736 +430918,430918 +96606,96606 +129918,129918 +183283,183283 +393415,393415 +301947,301947 +72734,72734 +20250,20250 +211902,211902 +6802,6802 +39110,39110 +405984,405984 +69935,69935 +215391,215391 +122374,122374 +140178,140178 +24563,24563 +171260,171260 +377609,377609 +426712,426712 +14828,14828 +128491,128491 +330611,330611 +153946,153946 +5007,5007 +350841,350841 +41511,41511 +403159,403159 +66189,66189 +59343,59343 +129671,129671 +307622,307622 +58647,58647 +31371,31371 +112177,112177 +22135,22135 +350964,16640 +426369,426369 +387593,387593 +386407,386407 +65680,65680 +258337,258337 +42800,42800 +297898,297898 +37605,37605 +226703,226703 +386553,386553 +364799,364799 +47452,47452 +18376,18376 +335682,335682 +71100,71100 +228584,228584 +332507,332507 +33715,33715 +381724,381724 +350849,350849 +178021,178021 +56548,56548 +326544,326544 +259077,259077 +197083,197083 +31081,31081 +315181,315181 +40626,40626 +399966,399966 +153597,153597 +312879,145632 +217459,217459 +413938,413938 +12883,12883 +402046,402046 +331622,331622 +42489,42489 +62283,62283 +388414,388414 +133240,133240 +152309,152309 +145823,145823 +431254,431254 +202979,202979 +67201,67201 +348642,348642 +36656,36656 +52260,52260 +88280,88280 +324675,324675 +254244,254244 +32314,32314 +221309,221309 +136297,136297 +55664,55664 +14182,14182 +395360,395360 +406616,406616 +409911,409911 +67073,67073 +430243,430243 +342761,42101 +403974,403974 +325089,25556 +312718,312718 +411840,411840 +175472,175472 +121918,121918 +18892,18892 +339454,339454 +426070,426070 +166112,166112 +156469,156469 +145412,145412 +357949,357949 +370865,370865 +403456,403456 +321691,321691 +410389,410389 +301574,301574 +245047,245047 +263194,263194 +30574,30574 +188895,188895 +300441,300441 +221102,221102 +119658,119658 +14718,14718 +65122,65122 +27715,96480 +159475,159475 +118414,118414 +30727,30727 +303138,303138 +350187,350187 +59717,59717 +137128,137128 +432392,34119 +119633,119633 +406383,406383 +382189,382189 +214222,214222 +25896,25896 +361194,361194 +285355,285355 +123697,123697 +37001,37001 +28223,28223 +433356,433356 +401219,401219 +69062,69062 +327508,327508 +12916,12916 +339442,339442 +88152,88152 +248474,248474 +171992,171992 +133614,133614 +351721,351721 +378881,378881 +147285,147285 +72352,72352 +10218,10218 +161618,161618 +138485,138485 +12689,12689 +75111,75111 +172438,172438 +419515,392612 +396990,25085 +160747,160747 +64941,64941 +430336,430336 +345068,345068 +119961,119961 +139152,139152 +143301,143301 +95297,95297 +286289,286289 +10069,10069 +36825,36825 +383207,383207 +131628,131628 +248388,248388 +404922,402713 +407314,176870 +23171,23171 +147797,147797 +31244,31244 +231862,231862 +12143,12143 +408473,408473 +399882,399882 +153953,153953 +394313,394313 +429974,429974 +21820,21820 +169352,169352 +175355,175355 +163090,163090 +57205,57205 +191445,191445 +406593,341914 +38661,38661 +319090,127493 +158643,158643 +362845,362845 +291754,291754 +184290,184290 +39653,39653 +131405,131405 +32852,32852 +6179,6179 +176638,176638 +343519,343519 +297724,297724 +11157,11157 +18092,18092 +328694,328694 +43067,43067 +174030,174030 +308846,308846 +188433,188433 +35656,35656 +3025,3025 +129404,129404 +394054,394054 +136567,136567 +34882,34882 +84842,84842 +37908,37908 +187083,187083 +152354,152354 +193451,13360 +18675,18675 +303993,303993 +165501,165501 +424874,424874 +16370,16370 +229109,229109 +334459,334459 +201013,116473 +365451,365451 +31182,142611 +27824,27824 +114960,114960 +43180,43180 +47358,47358 +411986,411986 +278289,278289 +330652,330652 +123534,123534 +6303,6303 +358139,358139 +199781,199781 +352128,352128 +375516,375516 +56438,56412 +307640,307678 +35103,35103 +58896,58896 +36535,36535 +306553,306553 +32890,32890 +297668,297668 +345799,345799 +178607,178607 +192519,192519 +23282,23282 +140625,140625 +34449,34449 +26984,26984 +381898,381898 +424333,424333 +377838,377838 +19252,19252 +66192,66192 +339699,339699 +256823,256823 +332759,332759 +388820,388820 +176775,176775 +363368,363368 +23381,23381 +349773,349773 +365746,365746 +56746,56746 +140611,140611 +59638,59638 +41278,41278 +203032,203032 +173058,173058 +35286,35286 +129132,129132 +73329,73329 +433907,433907 +17377,17377 +171947,171947 +428449,428449 +34180,34180 +242080,242080 +51321,51321 +369676,463 +63094,63094 +422216,422216 +165423,165423 +374337,374337 +129594,129594 +326962,326962 +99283,99283 +153886,153886 +117509,117509 +113776,113776 +421085,421085 +171825,171825 +147807,147807 +283251,283251 +206845,206845 +65310,65310 +34518,34518 +96462,96462 +290020,290020 +199568,199568 +33236,33236 +34474,34474 +29190,29190 +268004,268004 +403614,403614 +400018,400018 +36069,36069 +18726,18726 +431106,431106 +30728,30728 +28423,28423 +23369,23369 +148523,148523 +67994,67994 +215381,215381 +433528,433528 +348164,348164 +100700,100700 +233874,233874 +332481,332481 +327604,327604 +283418,283418 +425779,425779 +370841,370841 +375548,375548 +124583,124583 +404042,404042 +80276,80276 +22852,22852 +156368,156368 +404098,404098 +242535,242535 +232860,232860 +33377,33377 +222498,222498 +325580,325580 +331933,331933 +432787,432787 +295464,295464 +36839,36839 +125126,125126 +36627,36627 +157334,157334 +406605,406605 +17934,17934 +296218,296218 +351499,351499 +176998,176998 +43873,43873 +176945,176945 +362105,400144 +297808,297808 +311310,311310 +157765,157765 +421251,421251 +288381,288381 +182206,182206 +43951,43951 +36439,36439 +224511,224511 +422011,422011 +53636,53636 +40859,40859 +39749,39749 +279330,279330 +389265,389269 +340649,340649 +62553,62553 +342509,342509 +144047,144047 +424927,424927 +334899,334899 +138437,138437 +434424,434424 +103168,103168 +175654,175654 +352029,352029 +194612,194612 +34765,34765 +23749,23749 +56003,56003 +433242,433242 +60644,60644 +137454,137454 +136932,136932 +194708,194708 +432083,432083 +63987,63987 +4730,4730 +263197,263197 +34582,34582 +68929,68929 +339180,339180 +33274,33274 +286943,286943 +315042,315042 +410833,410833 +199455,199455 +428747,428747 +164851,164851 +15096,15096 +299313,299313 +66696,66696 +336654,336654 +243134,243134 +404949,404949 +378060,378060 +313947,313947 +372287,372287 +357260,357260 +332382,332382 +339353,339353 +39305,39305 +372462,372462 +144242,144242 +418532,418532 +239745,239745 +393899,393899 +62585,62585 +311012,311012 +427467,427467 +221730,221730 +64311,64311 +212702,212702 +26289,26289 +84074,84074 +284210,284210 +322846,322846 +276276,276276 +294071,294071 +434279,434279 +214474,214474 +19714,19714 +424189,424189 +209509,209509 +156265,156265 +255358,255358 +140224,140224 +300861,300861 +280936,280936 +416084,416084 +379324,379324 +110437,110437 +303846,303846 +375656,375656 +299084,299084 +39548,39548 +122918,122918 +143759,143759 +357960,357960 +99035,99035 +173369,173369 +2552,2552 +35680,35680 +420477,420477 +298386,298386 +173779,173779 +369834,369834 +400499,400499 +379496,379496 +42344,42344 +20691,20691 +230310,231521 +43463,43463 +421167,421167 +155815,2032 +175395,175395 +105800,105800 +207621,207621 +227577,227577 +127029,127029 +228130,228130 +16489,16489 +189266,189266 +23623,23623 +408667,408667 +402084,402084 +383978,383978 +413467,413467 +41199,41199 +31952,31952 +165462,165462 +60306,60306 +406617,406617 +434108,169 +334518,334518 +406288,406288 +209311,209311 +121630,121630 +227014,227014 +117775,117775 +162493,162493 +13974,13974 +357922,357921 +393857,393857 +292890,292890 +21922,21922 +275638,275638 +124666,124666 +130005,130005 +344264,344264 +220743,220743 +161942,161942 +307536,307536 +118633,118633 +39052,39052 +27047,27047 +252650,252650 +101108,101108 +343918,343918 +167821,167821 +32514,32514 +342029,342029 +4155,4155 +39301,39301 +101350,101350 +335022,335022 +416186,416186 +31006,31006 +365183,365183 +306143,306143 +367544,367544 +11860,11860 +39795,39795 +21745,21745 +424364,424364 +41440,41440 +219579,219579 +68479,68479 +359721,359863 +5371,5371 +402479,402479 +328592,328592 +67235,67235 +151119,151119 +137213,137213 +116330,116330 +10854,10854 +182243,182243 +57200,57200 +432068,432068 +33392,33392 +250271,250271 +175454,175454 +39376,39376 +352435,352435 +151160,151160 +255706,255706 +36043,36043 +349643,349643 +146992,146992 +403385,403385 +342847,342847 +287383,287383 +330816,330816 +38711,38711 +70504,70504 +42803,42803 +352331,352331 +302682,302682 +420776,420776 +403615,403615 +330470,330470 +163156,163156 +277442,277442 +319531,319531 +18294,18294 +360560,360560 +219306,219306 +9455,9455 +295136,295136 +171245,171245 +235931,12975 +371012,371012 +369860,369860 +137967,137967 +158562,158562 +16044,16044 +32633,32633 +336241,336241 +127713,127713 +16696,16696 +177050,177050 +137654,137654 +353342,353342 +66184,66184 +266383,266383 +61931,61931 +19930,19930 +16170,16170 +124511,124511 +171852,171852 +86579,86579 +133418,133418 +423407,423407 +119664,119664 +17010,17010 +37571,37571 +322657,322657 +179744,179744 +30942,30942 +139931,139931 +31817,31817 +378794,378794 +177036,177036 +122018,122018 +63707,63707 +24531,24531 +121898,121898 +59024,59024 +246039,246038 +177851,177851 +13835,13835 +207355,207355 +182879,182879 +312067,312067 +138581,138581 +46089,46089 +163358,163358 +379869,379869 +44581,44581 +41212,41212 +29271,29271 +38843,38843 +194664,194664 +227572,227572 +387659,387659 +41401,41401 +135275,135275 +302324,302324 +227498,227498 +140927,140927 +42458,42458 +121393,121393 +411597,411597 +23099,23099 +201089,201089 +410699,410699 +28097,28097 +174031,174031 +287027,287027 +205605,205605 +420651,420651 +433742,433742 +46932,46932 +61731,34597 +123430,123430 +65947,65947 +170846,170846 +40633,40633 +422036,422036 +20827,20827 +335370,335370 +204870,204870 +148243,148243 +262107,262107 +128656,128656 +332666,332666 +154325,154325 +122214,122214 +222629,222629 +422074,422074 +356412,356412 +288939,288939 +422697,422697 +154772,154772 +142299,142299 +158974,158974 +274282,274282 +357738,357738 +136273,136273 +277539,277539 +36591,36591 +296299,296299 +348402,348402 +432735,432735 +9366,9366 +414468,414468 +34463,34463 +137194,137194 +421430,421430 +5462,5462 +410369,410369 +427719,427719 +134747,134747 +434825,434825 +327982,327982 +163832,163832 +38596,38596 +38120,38120 +351764,351764 +298241,298241 +365771,365771 +36152,36152 +393529,393529 +28958,28958 +164084,164084 +432648,432648 +343688,343688 +115798,115798 +426803,410772 +155955,155955 +130050,130050 +199384,199384 +130155,130155 +229486,229545 +313774,313774 +22958,22958 +401511,401394 +54605,54605 +14463,14463 +124722,124722 +53427,53427 +352325,352325 +27556,27556 +55186,55186 +11587,11587 +198034,198034 +353582,353582 +23744,23744 +365490,365490 +164729,164729 +38093,38093 +417935,417935 +414652,414652 +173789,173789 +42657,42657 +357695,357695 +95734,95734 +303721,303721 +267730,267730 +322308,322308 +32451,32451 +301518,301518 +339230,339230 +425232,425232 +171748,171748 +187660,187660 +187085,187085 +89128,89128 +304191,304191 +286391,286391 +180861,180861 +297227,297227 +341298,341298 +25637,25637 +233810,233810 +391011,391011 +181157,181157 +408594,408594 +234044,234044 +117895,117895 +323269,323269 +43300,43300 +247329,247329 +138779,138779 +17681,17681 +431803,431803 +430403,430403 +331407,331407 +28979,28979 +328640,328640 +20860,20860 +187114,187114 +411243,411243 +423090,423090 +433736,433736 +147750,147750 +374878,374878 +129202,129202 +101763,101763 +251679,227466 +30357,30357 +319044,319044 +380008,380008 +123497,123497 +130608,130608 +123132,123132 +428625,428625 +154730,154730 +168995,168995 +429840,429840 +141983,141983 +393191,393191 +31620,31620 +92642,92642 +350887,350887 +311940,311940 +123711,123711 +147216,147216 +14517,14517 +28605,28605 +433471,433471 +26642,26642 +357284,357284 +217139,217139 +39907,39907 +410702,410702 +136186,136186 +106074,106074 +408474,408474 +403129,403129 +111091,111091 +152194,152194 +5085,5085 +26282,26282 +50023,50023 +202194,202194 +16897,16897 +145824,145824 +124868,124868 +148219,148219 +100230,100230 +54600,54600 +325292,325292 +60605,60605 +301901,301901 +216715,216715 +294997,294997 +200377,200377 +382119,382119 +30844,30844 +118527,118527 +265200,265200 +378089,378089 +426105,426105 +19837,19837 +276392,276392 +140458,140458 +228763,228763 +28971,28971 +406193,406193 +27110,27110 +192536,178402 +35065,35065 +181470,181470 +351551,351551 +341354,341354 +117153,117153 +144893,1859 +214238,214238 +139950,139950 +418125,418125 +166599,166599 +300005,300005 +409533,88080 +378045,378045 +181692,181692 +431778,431778 +64422,64422 +371529,371529 +111787,111787 +286006,286006 +299738,299738 +72847,208916 +363727,140 +426228,426228 +195689,195689 +162880,162880 +29231,29231 +206380,206380 +30791,30791 +272517,272517 +412637,412637 +157027,157027 +7518,7518 +312577,312577 +380596,380596 +303828,303828 +19572,19572 +349166,349784 +100016,100016 +12598,12598 +55450,55450 +148944,148944 +150766,150766 +31240,31240 +207992,207992 +148421,148421 +350716,350716 +41296,41296 +303449,303449 +137215,137215 +42359,42359 +302927,302927 +357007,357007 +52631,52631 +368427,368427 +26238,26238 +385715,385715 +337711,337711 +225565,225565 +261841,261841 +132952,132952 +132109,132109 +337682,337682 +211541,211541 +340595,340595 +342908,342908 +327779,336962 +376525,376525 +253795,253795 +308026,308026 +282120,282120 +247932,247932 +350987,350987 +19950,19950 +354784,354784 +110022,110022 +200918,200918 +285848,285848 +34987,34987 +402755,402755 +12498,12498 +114472,114472 +366646,366646 +238701,212762 +408480,408480 +209610,209610 +36822,36822 +189367,189367 +340141,340141 +411263,411263 +18520,18520 +10851,32458 +345800,345800 +432503,207043 +104715,104715 +304871,304871 +159480,159480 +405196,405196 +395510,395510 +295499,295499 +379801,379801 +318835,318835 +127318,127318 +124484,124484 +358759,358759 +34229,34229 +178050,178050 +410578,410578 +109722,109722 +374457,374457 +52483,52483 +263411,263411 +304367,304367 +15716,15716 +63414,63414 +423465,423465 +40435,40435 +371801,371801 +29777,29777 +56203,56203 +1097,1097 +354441,354441 +377713,377713 +69883,69883 +165137,165137 +305045,305045 +417372,417372 +69853,69853 +10336,10336 +31930,31930 +433206,433206 +177094,177094 +419180,419180 +82307,82307 +173277,173277 +302198,302198 +432303,432303 +38053,38053 +6028,6028 +181249,181249 +427329,427329 +429994,429994 +340923,340923 +65459,65459 +92253,92253 +298538,299021 +377524,377524 +423618,423618 +331566,331566 +393731,393731 +27653,27654 +189340,136144 +121524,121524 +67944,67944 +256819,256819 +210695,210695 +150612,150612 +314080,314080 +14813,14813 +433856,433856 +378056,378056 +17092,17092 +137282,137282 +405305,405305 +62281,62281 +305900,305900 +351287,351287 +127875,127875 +154092,154092 +29041,29041 +102963,102963 +96916,96916 +285650,285650 +294274,294274 +326439,326439 +18486,18486 +51052,51052 +23153,23153 +269097,269097 +56306,56306 +433849,433849 +299166,299166 +201197,201197 +174043,174043 +25392,25392 +254090,254090 +417894,417894 +431622,431622 +177089,177089 +298685,298685 +22740,22740 +381929,381929 +309289,309289 +421236,421236 +127118,127118 +432576,432576 +211225,211225 +40461,40461 +62244,62244 +134621,134621 +267970,267970 +102439,102439 +24859,24859 +36759,36759 +67183,67183 +432969,432969 +289128,289128 +326906,463 +157056,157056 +357297,357297 +122596,122596 +37146,37146 +89692,89692 +428588,428027 +187084,187084 +141033,6487 +85601,85601 +410208,410208 +31921,31921 +294382,294382 +178006,178006 +292361,110539 +152962,152962 +404576,404576 +325486,325486 +118767,118767 +304429,304429 +123742,123742 +120148,120148 +174562,174562 +202898,202898 +164803,164803 +60052,60052 +417220,194515 +120278,120278 +340089,340089 +433927,66849 +372814,372814 +274579,274579 +308078,308078 +406254,406254 +296992,296992 +155062,155062 +24612,24612 +189176,189176 +57249,57249 +60528,60528 +411815,411815 +333098,333098 +432037,432037 +101419,101419 +409968,409968 +381122,381122 +130150,130150 +124025,124025 +170396,170396 +66139,66139 +231861,231861 +180121,180121 +24586,24586 +360501,360501 +15189,15189 +365841,365841 +64312,64312 +64824,64824 +129106,129106 +43323,43323 +320071,320071 +30722,30722 +295255,295255 +109386,109386 +368205,368205 +375705,375705 +194242,194242 +57175,57175 +129934,129934 +432783,432783 +122426,122426 +27055,27055 +39793,39793 +5943,5943 +206498,206498 +239679,239679 +351657,351657 +284792,284792 +159620,159620 +299433,105035 +306903,306903 +58312,58312 +38087,38087 +406626,406626 +270516,270516 +10331,10331 +141880,141880 +57976,57976 +342629,342629 +281246,281246 +69605,69605 +416843,416843 +232001,159865 +382897,160443 +267405,267405 +109260,109260 +110009,110009 +126530,126530 +42292,42292 +232199,232199 +353995,353995 +119302,119302 +322193,322193 +171867,171867 +418824,418824 +24375,24375 +87509,87509 +115124,115124 +380057,380057 +191586,148209 +91256,91256 +319775,319775 +431340,431340 +121424,121424 +334664,334664 +26568,26568 +267413,267413 +261399,261399 +21746,21746 +43187,43187 +391376,391376 +408521,408521 +428226,428226 +64098,64098 +425252,425252 +118795,118795 +393183,393617 +406044,406044 +394708,394708 +338938,338938 +254595,254595 +66475,66475 +352277,352277 +40998,40998 +319346,319346 +27140,27140 +22563,22563 +33658,33658 +210430,210430 +387761,387761 +35789,35789 +236462,236462 +281076,281076 +385672,385672 +340349,340349 +342551,342551 +88303,88303 +122923,122923 +110007,110007 +145802,145802 +343522,343522 +297483,297483 +65571,65571 +227601,227601 +217517,217517 +15424,15424 +435086,435086 +40163,40163 +65800,65800 +433461,433461 +21886,21886 +152476,152476 +118520,118521 +324594,349676 +28672,28672 +33930,33930 +123777,123777 +29631,29631 +92249,92249 +389819,389819 +358950,358950 +307514,307514 +338223,338223 +122718,122718 +128449,128449 +52591,52591 +143300,143300 +307439,307439 +21485,21485 +90806,90806 +327773,336962 +423383,423383 +4563,4563 +287096,287096 +60802,60802 +244942,244942 +137165,137165 +151821,151821 +212735,162677 +334535,334535 +137571,137571 +23745,23745 +210432,210432 +247795,247795 +107931,107931 +381912,381912 +23057,19012 +369531,369531 +36489,36489 +350957,350957 +238797,238797 +329447,329447 +43030,43030 +236704,236704 +346301,346301 +382234,382234 +300301,300301 +428142,428142 +39831,39831 +419779,419779 +63509,63509 +333260,333260 +86265,86265 +81876,81876 +37189,37189 +420481,420481 +85573,85573 +109959,109959 +184364,184364 +208952,208952 +350001,350001 +239455,173806 +420653,420653 +381729,381729 +412545,412545 +39287,39287 +114832,114832 +283752,283752 +111671,111671 +102119,102119 +276294,276294 +230589,230589 +199132,199132 +321930,322135 +433437,433437 +192680,192680 +425942,425942 +24034,24034 +173732,173732 +271152,271152 +28963,28963 +416815,416815 +389250,389250 +67817,67817 +405529,405529 +147788,147788 +32395,32395 +322365,322365 +352144,352144 +406988,406988 +26308,26308 +434054,434054 +322916,322916 +116481,116481 +358347,358347 +147264,147264 +142888,142888 +260915,260915 +9946,9946 +404494,404494 +125060,125060 +33334,33334 +43339,43339 +327039,327039 +9813,9813 +158980,158980 +166140,166140 +333186,333186 +218569,218569 +325159,325159 +388447,388447 +24946,24946 +91392,91392 +336664,336664 +329795,329795 +335654,335654 +13318,13318 +201226,201226 +380583,380583 +297214,297214 +119650,119650 +290976,290976 +185952,185952 +394283,394283 +37973,37973 +433215,433215 +130732,130732 +7915,7915 +123861,123861 +31871,31871 +322313,322313 +4828,4828 +15190,15190 +206055,206055 +69713,69713 +426493,426493 +306994,306994 +22624,22624 +28664,28664 +273934,273934 +431300,7092 +420971,420971 +180869,180869 +377519,377519 +246132,246132 +43050,43050 +67463,67463 +111409,111409 +18405,18405 +252651,162744 +25979,25979 +70219,70219 +24937,24937 +121842,121842 +424530,424530 +36359,36359 +153383,153383 +380264,380264 +28103,28103 +178640,178640 +375905,375905 +70986,70986 +337517,337517 +27467,27467 +31232,31232 +98906,98906 +65530,65530 +414491,414491 +154986,154986 +339852,339852 +431181,431181 +36438,36438 +121525,121525 +95405,95405 +188468,24234 +343982,343982 +322109,322109 +323569,323569 +198330,198330 +32486,32486 +43189,43189 +378893,378893 +172842,172842 +327333,327333 +71391,71391 +37972,37972 +429459,429459 +381721,381721 +358346,358346 +353798,353798 +409992,409992 +418358,418358 +23717,18959 +113652,113652 +188694,188694 +29000,29000 +406393,406393 +111969,111969 +176549,176549 +75574,75574 +128278,128278 +30386,30386 +428691,428691 +37780,37780 +128061,128061 +120548,120548 +302297,302297 +208589,208589 +311273,311273 +339136,339136 +246293,246293 +244125,244125 +346431,346431 +415237,415237 +412432,412432 +68324,68324 +303913,303913 +346660,346660 +162016,162016 +133755,133755 +363083,363083 +4051,4051 +150140,150140 +38143,38143 +291565,291565 +357137,357137 +183981,183981 +435028,335467 +85670,85670 +26634,26634 +301204,99010 +197878,197878 +347893,347893 +30470,30470 +408539,408539 +432800,432800 +47026,47026 +243438,243438 +395503,395503 +21674,21674 +48515,48515 +65949,65949 +264720,264720 +174619,174619 +381890,381890 +193624,193624 +66242,66242 +287196,287196 +360829,360829 +200175,200175 +65773,65773 +62355,62355 +35079,35079 +173371,173371 +21110,21110 +78421,78421 +25391,25391 +371266,371266 +38441,38441 +418716,418716 +181247,181247 +180041,180041 +227691,227691 +7266,7266 +358044,463 +144708,144708 +158162,158162 +323437,323437 +12780,12780 +29531,29531 +203187,203187 +368049,368049 +117524,117524 +12548,12548 +239844,239844 +368788,368788 +302371,302371 +145172,145172 +240559,240559 +158990,158990 +124718,124718 +202834,202834 +59939,59939 +354838,354838 +272829,272829 +154520,154520 +69852,69852 +60717,60717 +339564,339564 +248152,248152 +67892,67892 +42357,42357 +383698,383698 +41774,41774 +216446,216446 +321540,321540 +419750,419750 +129337,129337 +25058,25058 +421615,421615 +433339,432 +417477,417477 +408408,408408 +16517,16517 +181156,181156 +278731,278731 +152950,152950 +27360,27360 +287183,287183 +305269,305269 +168409,168409 +299817,299817 +26579,26579 +346170,346170 +419475,419475 +370087,370087 +223879,223879 +204494,204494 +424938,424938 +302778,302778 +100450,100450 +143156,143156 +58646,58646 +420294,147949 +398860,398860 +303527,303527 +257004,257004 +367044,367044 +134652,134652 +433369,433369 +169271,169271 +39960,39960 +228086,228086 +434847,434847 +60531,60531 +284740,128958 +11323,11323 +419292,419292 +419193,419193 +183234,183234 +300121,300121 +38941,38941 +162610,162610 +46384,46384 +91003,91003 +66037,66037 +232635,644 +126722,126722 +403392,403392 +20651,20651 +403399,403399 +61945,61945 +178881,178881 +390991,390991 +83905,83905 +191349,191349 +308771,308771 +351965,351965 +129759,129759 +232987,232987 +34630,34630 +26619,26619 +103716,103716 +208853,208853 +43214,43214 +35843,35843 +65446,65446 +66018,66018 +111729,111729 +27312,27312 +22853,22853 +372593,372593 +420149,420149 +346846,346846 +391295,391295 +429386,429386 +408602,408602 +294782,294782 +99165,99165 +32257,32257 +311802,311802 +93366,93366 +169561,169561 +157363,157363 +42262,42262 +130492,130492 +326497,326497 +37552,37552 +91988,91988 +248363,248363 +21490,21490 +35737,35737 +310102,310102 +366557,366557 +28460,28460 +31680,31680 +354719,354719 +11667,11667 +100375,100375 +221887,221887 +158592,158592 +301725,301725 +327796,327796 +177614,177614 +42865,42865 +26245,26245 +423967,423967 +275660,275660 +33885,33885 +182479,182479 +342645,342645 +95854,95854 +135601,135601 +327762,336962 +311234,311234 +345231,345231 +394432,394432 +61962,61962 +330834,330834 +30074,30074 +387303,630 +240521,240521 +128699,128699 +251138,251138 +432345,432345 +407019,407019 +200695,200695 +180015,180015 +314967,314967 +120974,120974 +62285,62285 +182331,182331 +3135,3135 +333052,333052 +90233,90233 +417148,417148 +128900,128900 +168343,168343 +240528,240528 +27565,27565 +1630,1630 +378348,378348 +329122,329122 +162717,162717 +278013,278013 +326992,326992 +404577,404577 +363320,363320 +341076,341076 +29283,29283 +409009,409009 +149120,149120 +28884,28884 +28309,28309 +35529,35529 +421127,421127 +379362,379362 +235949,235949 +367664,367664 +420359,420359 +122650,122650 +132476,132476 +359275,230543 +32207,32207 +336960,336960 +242519,242519 +291813,291813 +338743,338743 +106533,106533 +301769,301769 +373156,373156 +427135,427135 +39934,39934 +217175,217175 +310832,310832 +29087,29087 +152639,152639 +59734,59734 +38456,38456 +307452,307452 +325145,325145 +404468,404468 +416551,416551 +170005,170005 +64407,64407 +269497,269497 +108868,108868 +34507,34507 +345233,345233 +48641,48641 +214235,214235 +32550,32550 +19685,19685 +244595,244595 +387237,387237 +66552,66552 +120311,120310 +409187,409187 +386763,386763 +369043,288019 +7427,7427 +11894,11894 +154573,154573 +296959,296959 +401944,401944 +31164,31164 +197817,197817 +291809,291809 +41366,41366 +400766,400766 +411913,411913 +430585,430585 +90843,90843 +65639,65639 +186138,186138 +406034,406034 +127820,127820 +38754,38754 +129035,129035 +25441,25441 +227560,227560 +27776,27776 +290612,290612 +124333,124333 +351366,351366 +303128,303128 +32725,32725 +147421,147421 +29178,29178 +36971,36971 +17160,17160 +37642,37642 +1151,1151 +278379,278379 +390496,146351 +112271,112271 +53687,53687 +387854,387854 +37051,37051 +135849,135849 +333814,333814 +307953,307953 +173870,173870 +300251,204895 +47103,47103 +66252,66252 +382547,382547 +304378,304378 +63488,63488 +331664,331664 +145820,145820 +422959,422959 +308190,308190 +43567,43567 +46046,46046 +68474,68474 +110822,110822 +186002,186002 +20381,20381 +26197,26197 +220758,220758 +137334,137334 +60140,60140 +68997,68997 +130214,130214 +358485,358485 +240532,240532 +46302,46302 +402558,402558 +223772,223772 +203544,203544 +76196,76196 +424122,424122 +419679,419679 +161957,161957 +264335,264335 +238089,238089 +85180,85180 +357641,357641 +25957,25957 +421946,421946 +67143,67143 +307890,307890 +108348,108348 +384190,384190 +64427,64427 +40670,40670 +308857,308857 +93714,93714 +26852,26852 +330791,306483 +71206,71206 +174261,174261 +272184,272184 +339207,339207 +28518,28518 +50249,50249 +378514,378514 +290147,290147 +109060,109060 +402529,402529 +133177,133177 +159747,159747 +106544,106544 +124022,124022 +406233,406233 +39161,39161 +120671,120671 +433889,433889 +29722,29722 +35372,35372 +427805,427805 +336075,336075 +244674,244674 +40135,40135 +14790,14790 +423438,423438 +372917,372917 +370120,370120 +205765,205765 +30387,30387 +393344,393344 +44362,44362 +19723,19723 +419484,419484 +14068,14068 +57511,57511 +258097,258097 +90788,90788 +123675,123675 +128311,128311 +87099,87099 +24138,24138 +157016,157016 +371210,371210 +64314,64314 +169300,169300 +326448,326448 +309519,309519 +345426,345426 +227109,227109 +66892,66892 +179879,179879 +408534,408534 +316373,316373 +304172,304172 +359944,359944 +157260,157260 +67936,67936 +202467,202467 +183449,183449 +314566,314566 +408282,408282 +117937,117937 +181619,181619 +93616,93616 +106515,106515 +303878,303878 +24193,24193 +325471,325471 +430062,430062 +3995,3995 +254926,254926 +337079,337079 +378031,378031 +374152,374152 +46442,46442 +63237,63237 +428886,428886 +339460,339460 +391439,391439 +403374,403374 +193793,193793 +11754,11754 +64752,64752 +288803,27536 +357866,357866 +341941,341941 +133793,133793 +403805,403805 +24052,24052 +43284,43284 +337260,337260 +33749,33749 +145796,145796 +218225,218225 +433182,433182 +135726,135726 +3407,3407 +428949,428949 +319427,319427 +404512,404512 +347868,347868 +63841,63841 +433824,344087 +26180,26180 +404324,404324 +35032,35032 +32736,32736 +227595,227595 +40384,40384 +327120,327120 +85363,85363 +151291,151291 +159652,159652 +405370,405370 +64235,64235 +430828,430828 +268891,268891 +309883,309883 +219314,219314 +19566,19566 +39105,39105 +355875,355875 +233195,233195 +433725,433725 +359404,359404 +295257,295257 +194896,194896 +329886,329886 +216870,216870 +136247,136247 +65868,65868 +321184,321184 +81620,81620 +219352,219352 +56736,56736 +203872,203872 +16816,16816 +19851,19851 +422313,422313 +303071,303071 +2267,2267 +353222,353222 +187636,187636 +144978,144978 +54381,54381 +353003,353003 +433920,433920 +379392,365673 +379220,379220 +89230,89230 +338232,338232 +315574,315574 +307478,307478 +29076,29076 +236708,236708 +82081,82081 +225711,225711 +177000,177000 +84880,84880 +39925,39925 +26874,26874 +334061,334061 +16037,16037 +434842,337261 +354028,354028 +292671,292671 +270068,270068 +215803,215803 +10813,10813 +135803,135803 +261127,261127 +429458,429458 +64232,64232 +27271,27271 +158361,158361 +38102,38102 +387571,387571 +377445,377445 +12687,12687 +324003,324003 +66773,66773 +357508,357508 +380590,380590 +174159,174159 +65968,65968 +13338,13338 +427592,427592 +115764,115764 +102188,102188 +358024,358024 +328875,328875 +411439,411439 +33285,33285 +30292,30292 +297211,297211 +63734,63734 +64786,64786 +36797,36797 +253117,253117 +277724,277724 +150519,150519 +405180,405180 +49913,49913 +27554,27554 +363070,363070 +99025,99025 +99999,99999 +67830,67830 +312246,312246 +70468,70468 +28252,28252 +158951,158951 +98283,98283 +204365,204365 +131758,131758 +264600,264600 +24421,24421 +18806,18806 +36852,36852 +124717,124717 +181951,181951 +65740,65740 +32519,32519 +57666,57666 +280593,280593 +421122,421122 +377764,377764 +12698,12698 +310590,310590 +39661,39661 +349756,349756 +202417,202417 +120777,120777 +10070,10070 +130331,130331 +29164,29164 +154983,154983 +336840,336840 +7288,7288 +17817,17817 +37166,37166 +146677,146677 +281889,281889 +163058,163058 +351426,351426 +430368,430368 +61933,61933 +128730,128730 +395811,395811 +255192,31716 +410116,410116 +173416,173416 +20958,20958 +411296,411296 +118024,118024 +256518,256518 +265046,265046 +406548,406548 +115445,115445 +390735,390735 +381580,381580 +70533,70533 +288974,288974 +403685,403685 +27164,27164 +425219,425219 +238418,238418 +181992,181992 +308179,308179 +401015,401015 +131890,131890 +412102,412102 +351904,351904 +271003,271003 +112839,112839 +218805,218805 +168843,168843 +304491,304491 +194922,194922 +412747,412747 +36673,36673 +414477,414477 +263181,263181 +200587,200587 +12666,12666 +110713,110713 +284898,284898 +97701,97699 +14111,14111 +37527,37527 +323348,323348 +352443,352443 +37699,37699 +393571,393617 +5426,5426 +318939,319043 +129444,129444 +20361,20361 +308087,308087 +58303,58303 +209561,209561 +157515,157515 +408271,314386 +302208,302208 +25676,25676 +158219,158219 +40009,40009 +29943,29943 +35869,35869 +397414,397414 +66873,66873 +153526,153526 +244623,244623 +151893,151893 +429952,429952 +125197,125197 +426333,426333 +191743,191743 +48677,48677 +9491,9491 +253188,253188 +23901,23901 +178521,178521 +318836,318836 +83288,83288 +40427,40427 +292089,292089 +299967,299967 +161591,463 +298614,298614 +142781,142781 +201619,201619 +341981,341981 +36430,36430 +142095,142095 +419047,419047 +340140,340140 +273075,273075 +168567,168567 +333890,333890 +411756,411756 +112034,112034 +292823,292823 +147610,147610 +245033,245033 +124995,124995 +430970,430970 +141827,141827 +381930,381930 +305069,305069 +322704,322704 +159664,159664 +90093,90093 +110315,110315 +245879,245879 +330662,330662 +396729,396729 +258687,258687 +412196,412196 +261541,261541 +260736,260736 +179597,179597 +301391,301391 +179380,179380 +12798,12798 +252074,252074 +344043,344043 +170726,170726 +177007,177007 +83541,83541 +136703,136703 +56286,56286 +325122,325122 +18421,18421 +63151,63151 +172113,172113 +90814,90814 +32522,32522 +55906,55906 +62074,62074 +180246,180246 +422635,422635 +31469,31469 +340982,340982 +355027,355027 +378570,378570 +120675,120675 +401001,401001 +383038,383038 +434226,434226 +74286,74286 +415712,415712 +34896,34896 +36113,36113 +97564,97564 +86807,86807 +185355,185355 +45321,45321 +341777,341777 +338550,338550 +111510,111510 +174901,174901 +197535,197535 +363552,363552 +383321,383321 +356887,356887 +37653,37653 +425427,425427 +410223,410223 +310875,310875 +128960,128960 +251561,251561 +429097,429097 +24576,24576 +339942,343289 +321870,321870 +29056,29056 +103330,103330 +20402,20402 +317348,317348 +164807,164807 +10097,10097 +122299,122300 +6533,6533 +415394,415394 +98753,98753 +151545,151545 +137214,137214 +181334,181334 +40984,40984 +65508,65508 +178034,178034 +432797,432797 +25978,25978 +304428,304428 +172937,172937 +33453,33453 +265022,265022 +135098,135098 +422038,422038 +421739,421739 +151896,151896 +383052,383052 +24293,24293 +133168,133168 +112813,112813 +418289,341823 +210940,210940 +323226,323226 +414950,414950 +144781,144781 +177092,177092 +357958,357958 +403226,403226 +433180,433180 +150034,150034 +177203,177203 +176586,176586 +26495,26495 +235480,235480 +209711,209711 +318578,318578 +5995,164564 +39340,39340 +66953,66953 +414995,414995 +234422,234422 +272054,272054 +418773,418773 +27843,27843 +85556,85556 +326729,326729 +299140,299140 +11594,11594 +416017,416017 +109939,109939 +356356,154298 +60681,60681 +108808,108808 +42145,42145 +332228,332228 +43385,43385 +386594,386594 +41170,41170 +128476,128476 +36861,36861 +397745,397745 +117865,117865 +132373,132373 +183051,183051 +127924,127924 +309299,309299 +286929,286929 +340211,340211 +34294,34294 +297011,297011 +328634,328634 +126265,126265 +158670,158670 +433476,433476 +314584,314584 +184152,184152 +429531,429531 +65430,65430 +105908,105908 +88369,88369 +235409,235409 +31990,31990 +152288,152288 +431243,431243 +316508,1421 +56281,56281 +399168,399168 +105179,105179 +233393,233393 +420781,420781 +295423,295423 +416901,416901 +284206,284206 +265949,265949 +379866,379866 +96772,96772 +60014,60014 +286906,286906 +25961,25961 +114532,114532 +113335,113335 +255318,255318 +276968,276968 +70509,70509 +92045,92045 +30790,30790 +175378,175378 +32538,32538 +325626,325626 +368396,368396 +179271,179271 +305106,305106 +30731,30731 +301210,301212 +411859,411859 +297120,297120 +300603,300603 +395420,395420 +350850,350850 +113639,113639 +285137,285137 +263042,263042 +169793,169793 +239450,239450 +432017,432017 +163650,163650 +403231,403231 +111956,111956 +43402,43402 +163153,163153 +353637,353637 +263972,363900 +266089,266089 +269432,269432 +26285,26285 +16101,16101 +248245,248245 +23470,23470 +145648,145648 +21477,21477 +311280,311280 +403515,403515 +15161,15161 +5510,5510 +323181,323181 +31993,31993 +321706,321706 +304659,304659 +25671,25671 +359732,359732 +134709,134707 +326388,326388 +369102,369102 +299871,299871 +153722,153722 +402136,402136 +21582,21582 +332305,332305 +34567,34567 +179626,179626 +294245,294245 +20033,20033 +368769,368769 +218588,28148 +25076,25076 +408790,408790 +201338,201338 +140420,140420 +131657,131657 +127237,127237 +26310,26310 +51613,51613 +70309,70309 +305205,305205 +251585,251585 +11999,11999 +383426,383426 +113342,144450 +186540,186540 +22446,22446 +305992,305992 +195141,195141 +34045,34045 +41637,41637 +42812,42812 +381924,381924 +93866,93866 +38542,38542 +36463,36463 +200482,200482 +176932,176932 +41230,41230 +301378,301378 +243331,243331 +19672,19672 +426489,426489 +218414,218414 +29788,29788 +36265,36265 +123735,123735 +415444,415444 +103637,103637 +342534,342534 +129896,129896 +47470,47470 +367415,367415 +299218,299218 +114554,114554 +208112,194352 +425236,425236 +99194,99194 +34685,34685 +73426,73426 +359813,359813 +428442,428442 +113356,113356 +42874,42874 +264852,264852 +61655,61655 +292828,292828 +276870,276870 +190756,190756 +322015,322015 +14801,14801 +10027,10027 +334334,334334 +279572,279572 +4182,4182 +164505,164505 +118029,118029 +13185,13185 +24781,24781 +241804,241804 +236706,236706 +267591,267591 +23895,23895 +40341,40341 +43474,43474 +30980,30980 +294369,294369 +411851,411851 +195000,195000 +176581,176581 +378276,378276 +383498,383498 +339765,339765 +33062,33062 +35720,35720 +354518,354518 +58852,58852 +433894,433894 +166851,175238 +29166,29166 +7430,7430 +192449,192449 +24107,24107 +188288,188288 +97628,97628 +370085,370085 +312449,312449 +347373,347373 +83055,83055 +149370,149370 +297311,297311 +168163,168163 +427118,427118 +335903,335903 +333203,333203 +408712,408714 +7908,7908 +307740,307740 +352709,352709 +26807,26807 +20842,20842 +283719,283719 +32313,32313 +30922,30922 +374519,374519 +414664,414664 +128450,128450 +361641,361641 +346751,346751 +21538,21538 +427164,427164 +318401,318401 +209549,209549 +126003,126003 +158393,158393 +16406,16406 +433079,433079 +220497,220497 +428529,428529 +141881,141881 +143707,143707 +346280,346280 +320081,320081 +427165,427165 +358735,358735 +320546,320546 +422543,422543 +304368,304368 +41692,41692 +185256,185256 +85589,85589 +65120,65120 +423595,423595 +67441,67441 +91067,91067 +151090,151090 +345474,345474 +23979,23979 +327730,327730 +340190,340190 +183807,183807 +11307,11307 +66919,66919 +22066,22066 +35717,35717 +147093,147093 +249060,249060 +254986,254986 +65687,65687 +368821,368821 +321666,321666 +126680,126680 +246758,246758 +418683,406454 +344716,344716 +421798,421798 +431360,431360 +108474,108474 +5379,5379 +99661,99661 +38900,38900 +423828,423828 +17327,17327 +414808,414808 +24829,24829 +167314,167314 +240563,240563 +415493,415493 +169532,169532 +31700,31700 +129719,129719 +33267,33267 +376855,376855 +421008,421008 +344218,344218 +223137,223137 +128156,128156 +312450,312450 +252067,252067 +16399,16399 +307341,307341 +177964,177964 +37264,37264 +417636,417636 +122127,122127 +263388,263388 +302667,302667 +100797,100797 +17780,17780 +291577,291577 +221249,221249 +147882,147882 +340382,340382 +415272,415272 +271582,271582 +65715,65715 +35888,35888 +127898,127898 +16569,16569 +12480,12480 +61534,61534 +356776,356776 +9144,9144 +277045,277045 +254316,254316 +380263,380263 +8734,8734 +356486,356486 +419753,419753 +175206,175206 +69971,69971 +371334,371334 +35061,35061 +365723,365723 +420692,420692 +429631,429631 +313120,313120 +232866,232866 +33650,33650 +70180,70180 +29049,29049 +433255,433255 +187361,187360 +160444,160444 +382586,382586 +257139,257139 +276123,276123 +309303,309303 +409362,409362 +293268,293268 +90774,90774 +30805,30805 +121605,121605 +157666,301212 +332741,332741 +31637,31637 +386861,364107 +33730,33730 +420480,349796 +400998,400998 +367034,367034 +167602,167602 +274611,274611 +430101,430101 +94823,94823 +92997,92997 +29580,29580 +25039,25039 +346987,346987 +155986,140 +364056,364056 +395837,395837 +349110,349110 +245624,245624 +108266,108266 +109463,109463 +127600,127600 +18428,18428 +398670,398670 +34424,34424 +74323,74323 +408662,408662 +431548,342135 +96434,96434 +41371,41371 +127560,127560 +244470,244470 +189342,189342 +230780,230780 +32669,32669 +26581,26581 +408870,408870 +150184,150184 +169982,169982 +37952,37952 +365157,365157 +299778,299778 +249893,249893 +431000,1246 +146933,146933 +197373,197373 +162933,162933 +152465,152465 +420086,420086 +299239,242263 +338979,338979 +340151,340151 +69831,69831 +212168,212168 +18351,18351 +333859,333859 +360491,360491 +372403,212404 +18116,18116 +430045,430045 +423937,423937 +289996,289996 +132007,132007 +40686,40686 +431590,431590 +359772,359772 +282675,282675 +136005,136005 +30499,30499 +291575,291575 +165274,11821 +72711,72711 +216712,216712 +113829,113829 +433366,433366 +198432,198432 +27499,27499 +5946,5946 +122811,122811 +228765,228765 +365168,365168 +38519,38519 +9279,9279 +328139,328139 +433540,433540 +101846,101846 +37218,37218 +193374,193374 +340572,340572 +113480,113480 +130581,130581 +63422,63422 +132789,132789 +235639,235639 +264594,264594 +154559,154559 +323313,323313 +19635,19635 +240819,240819 +353703,353703 +133672,133672 +286322,286322 +382066,382066 +256612,256612 +381384,381384 +186538,186538 +66415,66415 +30311,30311 +309298,309298 +16895,16895 +116761,116761 +433617,433617 +31608,31608 +335123,335123 +141789,141789 +192913,192913 +209966,209966 +421133,421133 +232407,144229 +64287,64287 +378043,378043 +61539,61539 +138038,138038 +173103,173103 +122287,122287 +200059,200059 +330547,330547 +120010,120010 +337813,337813 +114198,114198 +357131,357131 +110933,110933 +263985,263985 +152941,152941 +289651,289651 +17000,17000 +169429,169429 +431948,431948 +349609,349609 +9493,9493 +354051,354051 +96771,96771 +360550,360550 +36421,36421 +43219,43219 +35272,35272 +160644,160644 +36319,36319 +275799,275799 +110538,110538 +240013,240013 +209790,209790 +53028,53028 +42911,42911 +51658,51658 +103051,103051 +36572,36572 +354053,354053 +25452,25452 +14478,14478 +247895,247895 +323551,323551 +159149,159149 +268877,268877 +155024,155024 +72350,72350 +369903,369903 +130264,130264 +313400,313400 +393790,393790 +43375,43375 +289803,289803 +168906,168906 +146293,146293 +340205,340205 +68924,68924 +39820,39820 +414172,414172 +302027,302027 +240995,240995 +67832,67832 +35544,35544 +24148,24148 +159684,159684 +17411,17411 +411707,411707 +350224,350224 +60367,60367 +19209,19209 +152469,152469 +155997,155997 +118451,118451 +32473,32474 +248719,248719 +29154,29154 +268873,268873 +137164,137164 +175875,175875 +232863,232863 +313819,313819 +287817,237834 +29169,29169 +332480,332480 +368633,19427 +330249,330249 +25949,25949 +129947,129947 +19836,19836 +286965,286965 +31134,31134 +314113,314113 +203425,203425 +125557,125557 +63905,63905 +40868,40868 +392477,392477 +429125,429125 +57761,57761 +34235,34235 +425935,425935 +320434,320434 +336234,336234 +406048,406048 +186533,186533 +159205,159205 +139737,139737 +34695,34695 +340103,340103 +335751,335751 +353594,353594 +41156,41156 +399234,399234 +30739,30739 +416006,416006 +307179,307179 +248738,248738 +406729,406729 +299236,299236 +153377,153377 +274727,274727 +120370,120370 +75956,75956 +37619,37619 +431179,431179 +415694,415694 +335679,335679 +176821,176821 +303563,304513 +302306,302302 +421282,421282 +406676,406676 +306028,306028 +37786,37786 +11453,11453 +247861,247861 +388382,388382 +152607,152607 +327766,327766 +318242,318242 +205433,205433 +333169,333169 +41295,41295 +406571,406571 +418980,418980 +127184,127184 +16544,16544 +430676,430676 +39385,39385 +24619,24619 +21893,21893 +428443,428443 +339394,339394 +23156,23156 +369976,369976 +159434,159434 +44938,44938 +404190,404190 +322792,322792 +19143,19143 +338231,338231 +329127,5928 +136962,136962 +28622,28622 +326761,326761 +123524,123524 +356868,356868 +426848,426848 +69934,69934 +433123,433123 +13130,13130 +43071,43071 +159029,159029 +293007,293007 +165419,165419 +323028,323028 +129845,129845 +392946,392946 +194338,194338 +366904,12049 +169548,169548 +18599,18599 +301934,301934 +271140,271140 +434332,434332 +163252,163252 +154870,154870 +9123,9123 +331547,331547 +25068,25068 +132791,132791 +172603,172603 +205473,205473 +24149,24149 +304329,304329 +281081,281081 +288665,288665 +314071,314071 +392440,392440 +15730,15730 +365030,365030 +97483,97483 +21500,21500 +72407,72407 +120976,120976 +333810,333810 +33220,33220 +127120,127120 +145598,145598 +375620,375620 +112258,112258 +230932,230932 +431439,431439 +239639,239639 +310588,310588 +35777,35777 +360760,360760 +424494,424494 +43108,43108 +255217,255217 +103894,103894 +408611,88080 +163126,139828 +164033,164033 +218753,218753 +285404,285404 +318335,318335 +353589,353589 +322872,322872 +430694,430694 +65957,65957 +303547,303547 +363994,363994 +238258,238258 +355553,355553 +404174,404174 +32520,32520 +360519,360519 +43730,43730 +149827,149827 +13452,13452 +271155,271155 +168592,168592 +248692,248692 +146328,146328 +416122,416122 +340045,340045 +429403,429403 +424941,349593 +332396,332396 +267205,267205 +128201,128201 +41376,41376 +57099,57099 +389449,389449 +128501,128501 +433908,433908 +116565,116565 +82887,82887 +44256,44256 +342287,342287 +170242,170242 +360615,360615 +110698,110698 +401833,401833 +278911,278911 +162651,162651 +286629,286629 +431158,431158 +5747,5747 +84136,84136 +3280,3280 +31010,31010 +343920,343920 +351286,351286 +95053,95053 +120859,120859 +181067,181067 +38834,38834 +201457,201457 +19997,19997 +331657,331657 +31701,31701 +93328,93328 +170811,170811 +256242,256242 +36064,36064 +423183,423183 +329630,329630 +67306,67306 +82584,82584 +23531,23531 +430423,430423 +242108,242108 +223780,223780 +143852,143852 +296991,296991 +238023,238023 +119770,119770 +63093,63093 +21707,21707 +111491,111491 +289362,289362 +183220,183220 +365462,365462 +175382,175382 +12404,12404 +283757,283757 +316832,316832 +176860,176860 +293827,293827 +313371,313371 +186609,186609 +63380,63380 +108830,108830 +312378,312378 +157506,157506 +317401,317401 +253186,253186 +415949,285110 +313955,313955 +18413,18413 +39126,39126 +340555,340555 +98741,98741 +288773,288939 +327240,327240 +268999,268999 +39532,294882 +31328,31328 +430082,430082 +424302,424302 +190693,190693 +396320,396320 +18392,18392 +123434,123434 +224618,224618 +365712,365712 +127380,127380 +214391,214391 +280320,280320 +399005,399005 +420329,420329 +58791,58791 +321606,321606 +404912,404912 +427086,427086 +372535,372535 +60575,60575 +46103,46103 +21314,21314 +259477,259477 +12547,12547 +10598,10598 +36255,36255 +298474,298474 +14393,14393 +423898,423898 +37223,37223 +25379,25379 +347876,347876 +23804,23804 +194665,194665 +426073,426073 +392457,392457 +377993,377993 +64300,64300 +186136,186136 +110084,110084 +264921,107549 +75022,75022 +20606,20606 +287738,208165 +164296,164296 +418588,418588 +250435,250435 +267210,267210 +179138,179138 +60205,60205 +434310,434310 +34613,34613 +29564,29564 +129702,129702 +123883,123883 +402775,402775 +330919,330919 +124020,124020 +138663,138663 +243834,243834 +35896,35896 +426763,426763 +123996,123996 +31450,31450 +43324,43324 +187459,134615 +40033,40033 +39131,39131 +343764,343764 +144515,144515 +364800,364800 +192807,192807 +241638,241638 +176050,176050 +217718,217718 +300002,300002 +86178,86178 +371545,371545 +218548,218548 +351819,351819 +324019,324019 +132075,132075 +405455,405455 +13406,13406 +43424,43424 +407036,407036 +33124,33124 +434066,434066 +342326,342326 +432395,432395 +413794,413794 +426619,426619 +415916,415916 +233949,233949 +66310,66310 +300157,300157 +141057,141057 +16413,16413 +23095,23095 +86772,187405 +297215,297215 +143158,143158 +390988,390988 +361772,361772 +43068,43068 +410840,410840 +398021,332732 +292098,292098 +315595,315595 +31907,31907 +39817,39817 +184082,184082 +149250,149250 +237799,237799 +121735,121735 +14508,14508 +204373,204373 +406731,406731 +34686,34686 +422009,422009 +358962,358962 +14063,14063 +431854,431854 +154223,154223 +43200,43200 +430733,430733 +149381,149381 +203823,203823 +52239,52239 +25221,25221 +397286,397286 +30186,30186 +226351,226351 +407828,407828 +277398,277398 +376294,376294 +41929,41929 +21536,21536 +307481,307481 +146248,146248 +356577,356577 +402052,402052 +275646,275646 +415033,415033 +404706,404706 +171521,171521 +108095,108095 +40016,40016 +422268,422268 +132475,132475 +226872,226872 +42990,42990 +129940,129940 +128836,128836 +182543,182543 +36257,36257 +406123,406123 +29529,29529 +110947,110947 +19538,19538 +182044,182044 +413551,413551 +21639,21639 +197731,197731 +144575,144575 +33669,33669 +227724,227724 +112931,112931 +330246,330246 +148302,148302 +32204,32204 +24695,24695 +137619,137619 +269775,269775 +254221,254221 +56416,56416 +174084,174084 +86319,86319 +274863,274863 +28582,28582 +274480,274480 +25668,25668 +68914,68914 +32651,32651 +202396,202396 +24437,24437 +342045,342045 +155992,155992 +306925,306925 +60034,60034 +322978,322978 +422205,422205 +286414,337861 +407993,407993 +33751,33751 +420964,420964 +40952,40952 +118606,118606 +26304,26304 +340570,340570 +225604,225604 +351848,351848 +433239,433239 +359370,359370 +430853,430852 +326868,326868 +253857,253857 +68940,68940 +12791,12791 +309569,309569 +401865,401865 +31864,31864 +228148,228148 +380651,380651 +27718,27718 +216444,216444 +326595,326595 +19453,19453 +29781,29781 +338409,338409 +415923,415923 +31319,31319 +426011,426011 +226230,226230 +338981,338981 +254475,254475 +417828,14816 +146163,146163 +22306,22306 +377588,377588 +16382,16382 +304527,304527 +430919,430919 +25610,25610 +217516,217516 +272117,272117 +123710,123710 +56176,56176 +218813,218813 +167293,167293 +9890,9890 +433971,433971 +18923,18923 +92389,92389 +363222,363222 +209609,209609 +262088,262088 +361086,361086 +420155,420155 +329449,329449 +34153,34153 +413555,324635 +352051,352051 +105350,105350 +328692,328692 +307444,307444 +92134,92134 +403544,403544 +338551,338551 +31304,31304 +113970,113970 +27886,27886 +114187,114187 +228356,228356 +90755,90755 +386113,386113 +31040,31040 +221936,221936 +36060,36060 +62990,62990 +425755,425755 +425884,425884 +244217,244217 +333824,333824 +307435,267989 +183651,183651 +118047,118047 +434509,434509 +303226,303226 +291378,291378 +18874,18874 +317394,317394 +145936,145936 +29822,29822 +429921,429921 +110459,110459 +102277,102277 +421980,421980 +325066,325066 +367593,367593 +163414,163414 +429019,429019 +130495,130495 +333886,333886 +350032,350032 +174634,174634 +131150,131150 +41200,41200 +332475,332475 +211122,211122 +399726,399726 +63234,63234 +127204,127204 +428664,223040 +66290,66290 +342679,342679 +32642,32642 +111722,111722 +372501,372501 +400670,412059 +57106,57106 +25486,25486 +356357,356357 +422215,422215 +355558,355558 +112296,112296 +128831,128831 +286541,286541 +182507,182507 +403679,403679 +410163,410163 +240397,240397 +150517,150517 +72717,72717 +175852,175852 +377528,377528 +158176,158176 +401742,401742 +118547,118547 +299431,105035 +43476,43476 +91366,91366 +33464,33464 +324860,324860 +193596,193596 +40630,40630 +184540,184540 +335372,335372 +311460,311460 +42091,42091 +32834,32834 +309134,309134 +29962,29962 +132359,132359 +433630,429859 +27788,27788 +281743,281743 +17086,17086 +152418,152418 +188519,188519 +19597,19597 +293148,293148 +33207,33207 +338672,338672 +369867,369867 +279858,279858 +136623,136623 +407186,407186 +137620,137620 +292493,292493 +367766,367766 +117998,117998 +154993,154993 +159090,159090 +101837,101837 +42697,42697 +357962,357962 +207692,207692 +72006,72006 +416691,416691 +107677,107677 +27142,27142 +83129,83129 +65066,65066 +30999,30999 +292547,292547 +426044,426044 +57973,57973 +403420,403420 +38325,38325 +119485,119485 +32767,32767 +297913,297913 +36041,36041 +163895,163895 +121012,121012 +38507,38507 +249819,249819 +183654,183654 +42543,42543 +20154,20154 +265970,265970 +330062,330062 +240520,240520 +153305,153305 +113479,113479 +346081,346081 +258587,258587 +182630,182630 +431479,431479 +105987,105987 +204899,204899 +67996,67996 +201024,201024 +130604,130604 +404151,404151 +43441,43441 +391785,391785 +36711,36711 +291717,291717 +99544,99544 +37610,37610 +189402,189402 +136483,136483 +402523,402523 +321298,321298 +13561,13561 +64465,64465 +377626,377626 +395007,395007 +69838,69838 +263366,263366 +239128,239128 +136873,136873 +293045,293045 +12410,12410 +34131,34131 +280710,280710 +356001,356001 +325312,325312 +350003,350003 +323233,323233 +152308,152308 +147047,147047 +227328,227328 +434143,434143 +421080,421080 +96748,96748 +278593,278593 +184245,184245 +419479,419479 +115079,115079 +24275,24275 +355472,355472 +379844,379844 +66911,66911 +127662,127662 +37886,37886 +430454,430454 +22650,22650 +421115,193240 +3648,3648 +63110,63110 +140781,140781 +149072,463 +405731,405731 +336329,336329 +65705,65705 +89354,89354 +118017,118017 +432584,432584 +63424,63424 +162538,162538 +36194,36194 +58879,58879 +420150,420150 +82570,432283 +300907,300907 +328057,328057 +406195,406195 +408774,408774 +393896,393896 +10841,10841 +71389,71389 +330491,330491 +127165,127165 +367832,367832 +44565,44565 +32242,32242 +157512,157512 +108204,108204 +393889,393889 +54347,54347 +152430,152430 +30146,30146 +342256,342256 +86480,86480 +293117,293117 +381919,381919 +140170,140170 +424752,424752 +66114,66114 +135145,135145 +381189,381189 +127199,127199 +382739,382739 +327038,327038 +64268,64268 +31301,31301 +127951,127951 +431064,431064 +28264,28264 +397809,397809 +188981,188981 +193581,193581 +127074,127074 +23145,23145 +432553,432553 +107969,107969 +179749,179749 +27560,27560 +282368,282368 +351513,351513 +115013,115013 +404265,404265 +35950,35950 +192446,192446 +304366,304366 +225215,225215 +23797,23797 +88299,88299 +177077,177077 +131896,131896 +396711,396711 +430427,430427 +162426,162426 +263371,263371 +262531,262531 +427602,427602 +335004,335004 +40042,40042 +427246,222643 +288475,288475 +42076,42076 +204185,204185 +323029,323029 +429941,429941 +22230,22230 +65775,65775 +200997,200997 +145805,145805 +327222,327222 +289506,289506 +172285,172285 +154996,154996 +97440,97440 +38223,38223 +421196,421196 +160057,160057 +353847,353847 +32055,32055 +406878,406878 +252508,252508 +153947,153947 +122326,122326 +298284,18314 +352043,352043 +405374,292732 +402770,402770 +402748,402748 +310609,310609 +378357,378357 +24761,24761 +25163,25163 +332715,332715 +2056,2056 +342941,342941 +367381,367381 +138452,138452 +165594,165594 +399003,399003 +318085,318085 +32689,32689 +191111,191111 +244050,244050 +109069,109069 +156315,156315 +179747,179747 +202650,202650 +323219,323219 +306919,243 +417563,417562 +324171,324171 +205246,205246 +302726,302726 +2683,2683 +359859,359859 +401142,401142 +39738,39738 +62297,62297 +298519,298519 +433085,433085 +278362,278362 +361166,361166 +297441,297441 +114559,114559 +36448,36448 +25723,25723 +406711,406711 +357668,357668 +40159,40159 +210208,210208 +137689,137693 +208408,208408 +37028,37028 +123362,123362 +172808,172808 +393902,393902 +397790,397790 +149163,149163 +429842,429840 +18126,18126 +346969,346969 +389473,389473 +420161,420161 +410284,410284 +368518,368518 +333161,333161 +431452,3577 +129936,129936 +353606,353606 +30842,30842 +395313,395313 +29241,29241 +17645,17645 +42151,42151 +65518,65518 +300719,300721 +277899,277899 +28544,28544 +372466,212404 +51903,51903 +352667,352667 +382157,382157 +96581,96581 +227602,227602 +323563,323563 +400493,400493 +18332,18332 +58251,58251 +124124,124124 +379807,379807 +65607,65607 +114023,114023 +406620,406620 +23252,23252 +317719,317719 +377409,377409 +265003,265003 +341360,341360 +176616,176616 +321740,321740 +13445,13445 +404205,10660 +303607,303607 +295898,295898 +314047,314047 +433078,433078 +6033,6033 +37339,37339 +433377,433377 +402075,402075 +276871,276871 +145370,145370 +328047,328047 +21480,21480 +31482,31482 +16212,16212 +404186,404186 +6292,6292 +104271,104271 +186301,186301 +151091,151091 +391448,391448 +300507,300507 +235953,235953 +27118,27118 +100343,100343 +149073,149073 +55244,55244 +43446,43446 +140238,140238 +227552,227552 +328322,328323 +240978,240978 +35870,35870 +227530,227530 +432050,432050 +375915,375915 +241420,241420 +428076,428076 +257643,202975 +152328,152328 +432397,432397 +60398,60398 +171997,171997 +396965,396965 +428854,428854 +89573,89573 +124743,124743 +64845,64845 +377776,377776 +150236,150236 +42802,42802 +416414,416414 +32709,32709 +111955,111955 +20740,20740 +3388,3388 +6276,6276 +317121,317121 +363346,363346 +296973,296973 +180795,180795 +397220,397220 +425297,425297 +41606,41606 +66748,66748 +34243,34243 +333898,333898 +221124,221124 +134244,134244 +13032,13032 +378104,378104 +235894,235894 +426240,426240 +72755,72755 +147045,147045 +413852,413852 +392655,392655 +307466,307466 +304649,304649 +250441,250441 +363156,363156 +135218,135218 +135433,135433 +53049,53049 +282511,282511 +352329,352329 +34177,34177 +143461,143461 +159048,159048 +127935,127935 +409914,409914 +13560,13560 +422834,422834 +430187,430187 +322321,322321 +293008,293008 +416021,416021 +108970,108970 +111527,111527 +202655,202655 +173377,173377 +25186,25186 +326289,326289 +140809,140809 +90734,90734 +60078,60078 +359474,359474 +19972,19972 +202653,202653 +36077,36077 +64449,64449 +206638,206638 +73396,73396 +240542,240542 +281522,281522 +429710,429710 +368423,368423 +33014,33014 +430744,430744 +282017,282017 +333200,333200 +4692,4692 +288646,288646 +131606,131606 +434366,434366 +414637,414637 +403653,116938 +67295,67295 +58149,58149 +386404,386404 +370891,329024 +419718,419718 +158987,158987 +353219,353219 +68840,68840 +176517,176517 +311315,311315 +15536,15536 +377413,377413 +285434,285434 +18383,18383 +42626,42626 +335621,335621 +198628,187405 +221116,221116 +425761,425761 +326141,326141 +426160,426160 +331399,331399 +304192,304192 +117673,117673 +10071,10074 +36837,36837 +262723,262723 +388441,388441 +329110,329110 +23888,23888 +301857,301857 +332945,332945 +131490,131490 +99558,99558 +406361,406361 +126932,126932 +433216,433216 +11032,11032 +127119,127119 +138314,138314 +14397,14397 +58583,58583 +410196,410196 +413250,413250 +163673,163673 +174467,174467 +348677,348677 +392757,392757 +362690,362690 +64377,64377 +127328,127328 +277821,277821 +314330,314330 +301602,301602 +432808,432808 +71937,71937 +263386,263386 +36205,36205 +127099,127099 +406033,406033 +307430,307430 +118209,118209 +113923,113923 +27895,27895 +171283,171283 +125199,125199 +264446,264446 +343307,147151 +237090,237090 +315515,315515 +431609,431609 +107575,107575 +38626,38626 +366293,366293 +365904,365904 +321726,321726 +240913,240913 +38511,7378 +335363,335363 +428109,428109 +305073,305073 +266309,266309 +413056,413056 +348819,348819 +380697,380697 +327843,336962 +386374,386374 +65509,65509 +104278,104278 +41272,41272 +343006,343006 +168555,168555 +128015,128015 +333248,333248 +69855,69855 +68881,68881 +110493,110493 +289340,289340 +72745,72745 +408587,408587 +278652,278652 +175164,175164 +96120,96120 +408766,408766 +140922,140922 +426837,426608 +206755,206755 +144666,144665 +34525,34525 +423651,423651 +37657,37657 +362857,362857 +430337,430337 +51371,51371 +276672,276672 +271508,271508 +36311,36311 +30868,30868 +26769,26769 +182013,182013 +36862,36862 +41940,41940 +287095,287095 +146356,146356 +43468,43468 +142241,142241 +404956,404956 +66756,66756 +39358,39358 +256681,256681 +417625,417625 +115236,115236 +325737,325737 +434491,434491 +433283,433283 +151543,151543 +348090,348090 +379837,328732 +45844,45844 +430338,430338 +41308,41308 +131669,131669 +43401,43401 +333819,333819 +353795,353795 +308635,308634 +30411,30411 +41423,41423 +33183,33183 +201022,201022 +65797,65797 +128003,128003 +402786,402786 +54979,54979 +374570,374570 +20576,20576 +106049,106049 +309296,309296 +151281,151281 +377900,377900 +26596,26596 +116326,116326 +353916,353916 +431480,431480 +402000,402000 +426768,426768 +145956,145956 +357834,357834 +430981,430981 +250798,250798 +16429,16429 +332740,332740 +379589,379589 +159165,159165 +138207,138207 +49726,49726 +404253,404253 +62050,62050 +291579,291579 +287395,287395 +208836,208836 +431026,431026 +143550,143550 +431410,431410 +134066,134066 +311694,463 +422936,422936 +433457,433452 +135376,135376 +90993,90993 +158406,158406 +433059,433059 +88468,88468 +297380,297380 +10881,10881 +24367,24367 +426995,426995 +428482,428482 +55341,55341 +278268,278268 +311706,311706 +19251,19251 +39010,39010 +322843,322843 +163044,163044 +431241,1950 +19960,19960 +177491,177491 +421582,421582 +340446,340446 +433854,433854 +431418,431418 +131738,131738 +101641,101641 +180127,180127 +432734,432734 +433495,433495 +168918,168918 +127712,127712 +111107,111107 +14344,14344 +428107,428107 +96376,96376 +425338,425338 +21620,21620 +24903,24903 +264031,264031 +36046,36046 +296972,296972 +381738,269020 +30222,30222 +169333,14985 +382204,382204 +90994,90994 +101803,101803 +429241,429241 +356284,356284 +39427,39427 +418096,418096 +404691,404691 +304483,304483 +130798,130798 +405678,405678 +270675,270675 +430490,430490 +250961,250961 +31996,31996 +428032,311557 +212722,212722 +143283,143283 +350049,350049 +345258,345258 +4274,4274 +182726,182726 +62085,62085 +27558,27558 +40469,40469 +110934,110934 +328272,328272 +25777,25777 +433930,433930 +417346,417346 +400937,400937 +363988,363988 +187107,187107 +91187,91187 +400815,400815 +66054,66054 +100680,100680 +377589,377589 +397828,397828 +428149,428149 +128657,128657 +180502,180502 +345434,345434 +430888,430888 +276733,276733 +429260,429260 +345139,345139 +351248,351248 +325326,325326 +355535,355535 +86672,86672 +125194,125194 +433153,433153 +417559,417559 +408475,408475 +7360,7360 +251645,251645 +93429,93429 +405593,405593 +185004,185004 +371875,371875 +246682,246682 +64445,64445 +113916,113916 +171641,171641 +333017,333017 +126524,126524 +302980,302980 +26496,26496 +127043,127043 +406573,406573 +424947,424947 +227149,227149 +242950,242950 +422607,422607 +340380,340380 +433456,433452 +380992,380992 +127695,127695 +120561,120561 +75641,75641 +417378,417378 +384208,384208 +334630,334630 +397073,397073 +30113,30113 +266298,266298 +306829,306829 +32461,32461 +173001,173001 +359378,359378 +35260,35260 +422851,422851 +420988,420988 +324720,324720 +65805,65805 +128085,128085 +162833,162833 +255994,255994 +118941,118941 +171796,171796 +99552,99552 +20667,20667 +50418,50418 +269741,269741 +375916,375916 +275801,275801 +247516,247516 +193218,193218 +41717,41717 +136024,136024 +353181,353181 +127073,127073 +393510,393510 +36924,36924 +37811,37811 +75958,75958 +372335,372335 +240769,240769 +35960,35960 +292179,292179 +225867,225867 +427174,427174 +65750,65750 +261436,261436 +389295,210113 +26808,26808 +22250,22250 +390558,390558 +176099,176099 +332319,332319 +18358,18358 +378912,378912 +72663,72663 +424872,424872 +351742,351742 +5884,5884 +273480,273480 +26046,26046 +345712,345712 +18440,18440 +168791,168791 +409844,409844 +32764,32764 +338199,338199 +406043,406043 +20083,20083 +358011,88633 +20681,20681 +386335,386335 +35444,35444 +306098,306098 +380761,380761 +35500,35500 +387741,387741 +115860,115860 +121428,121428 +132812,132812 +210420,210420 +37833,37833 +158522,158522 +416951,416951 +432545,432545 +333183,333183 +350748,350748 +119114,119114 +52860,52860 +16561,16561 +423074,423074 +191322,191322 +59787,59787 +358264,358264 +403300,403300 +355091,355091 +114628,114628 +428024,428024 +393959,393959 +378092,378092 +53127,53127 +26680,26680 +403105,403105 +376793,376793 +225164,225164 +374984,374984 +195727,195727 +331278,331261 +175644,175644 +139688,139688 +368213,368215 +42866,42866 +428775,463 +229739,229739 +43442,43442 +339666,339666 +73415,73415 +20688,20688 +402943,402943 +365399,365399 +251397,251397 +365172,365172 +355751,355751 +175375,175375 +429061,429061 +124421,124421 +277891,277891 +418204,418204 +300667,300667 +431284,431284 +26414,26414 +39107,39107 +338972,338972 +428934,253652 +14742,14742 +109694,109694 +101923,101923 +218409,218409 +394310,394310 +342984,342984 +66135,66135 +39739,39739 +28895,28895 +272698,272698 +42548,42548 +177093,177093 +431393,431393 +300122,300122 +56006,56006 +282467,282467 +177745,177745 +431170,431170 +194949,194949 +88327,88327 +100803,100803 +333124,333124 +360119,360119 +346778,346778 +41826,41826 +429844,463 +355994,355994 +31020,31020 +32810,32810 +432081,432081 +16702,16702 +176609,176609 +124663,124663 +73004,258290 +63348,63348 +204400,204400 +29785,29785 +420761,420761 +18548,18548 +403358,403358 +303773,303773 +253122,253122 +6317,6317 +431616,431616 +405410,405410 +122908,122908 +65474,65474 +240628,240628 +33068,33068 +194947,194947 +46981,46981 +25349,25349 +237081,15267 +281082,281082 +303578,303578 +68688,68688 +15636,15636 +201008,201008 +66040,66040 +375059,375059 +255768,255767 +68277,68277 +274465,274465 +128100,128100 +247456,247456 +279765,279765 +184925,184925 +413498,421232 +68956,68956 +383365,316048 +413249,413249 +25829,25829 +33764,33764 +220218,220218 +379197,379197 +20707,20707 +310233,310233 +204289,204289 +74218,74218 +375565,375565 +312544,312544 +358969,358969 +21319,21319 +28888,28888 +4687,4687 +317385,317385 +359784,359784 +338125,338125 +208742,208742 +403543,403543 +23140,23140 +72309,72309 +359497,359497 +325894,325894 +368998,368998 +413003,413003 +19716,19716 +166203,166203 +66540,66540 +30123,30123 +341928,341928 +410729,410729 +359804,359804 +430978,430978 +286556,286556 +108838,108838 +59117,59117 +176755,176755 +184954,184954 +58439,58439 +86896,86896 +339714,339714 +43465,43465 +15936,15936 +42387,42387 +249926,249926 +32758,32758 +427551,427551 +40465,40465 +137732,137732 +60660,60660 +402233,402233 +168209,168209 +95687,95687 +32011,32011 +68149,68149 +34756,34756 +127785,127785 +433631,425469 +93922,93922 +19662,19662 +300009,300009 +405766,405766 +186157,186157 +104245,104245 +432272,432272 +408995,408995 +319093,127493 +301912,301912 +266730,266730 +53416,53416 +152500,152500 +295935,295935 +294885,294885 +22175,22175 +134007,134007 +130246,130246 +135640,135640 +103829,103829 +169796,169796 +433886,433886 +299776,299776 +154144,154144 +30525,30525 +124114,124114 +30013,30013 +173500,173500 +111264,111264 +18439,18439 +351601,351601 +379029,379029 +430044,430044 +22935,22935 +370075,370075 +58361,58361 +378904,378904 +42512,42512 +30437,30437 +144453,144453 +142231,142231 +31080,31080 +57760,57760 +325313,325313 +108787,108787 +319457,319457 +398339,398339 +28485,28485 +268872,268872 +31201,31201 +422606,422606 +303860,303860 +27962,27962 +422214,422214 +295827,295827 +100039,100039 +222234,222234 +320095,320095 +272406,272406 +81300,81300 +405076,405076 +416110,416110 +56243,56243 +119756,119756 +139528,139528 +247804,247804 +22487,22487 +231266,231266 +414520,414520 +192102,192102 +65340,65340 +422425,422425 +29964,29964 +63113,63113 +215800,215800 +56242,56242 +130328,130328 +386279,386279 +40186,40186 +88107,88107 +324992,324992 +431334,14441 +309835,309835 +325532,325532 +430480,430480 +33742,33742 +409584,409584 +129032,129032 +429950,429950 +121067,121067 +306683,306683 +346421,346421 +249693,249693 +140191,140191 +368745,368745 +169423,169423 +388325,388325 +168451,168451 +434078,434078 +355377,355377 +434350,434350 +423233,423233 +171911,171911 +317392,317392 +363828,363828 +37778,37778 +16374,16374 +343949,343949 +220929,220929 +433386,433386 +254702,254702 +324363,324363 +330535,330535 +30753,30753 +31991,31991 +380362,380362 +144980,144980 +9806,9806 +420287,420287 +299720,299720 +341806,341806 +327186,327186 +100047,100047 +434205,434205 +281430,281430 +256515,1246 +31135,31135 +240627,240626 +328277,328277 +418546,418546 +299852,299851 +71360,71360 +380756,380757 +265838,265838 +162821,162821 +36409,36409 +170874,170874 +25266,25266 +34602,34602 +32701,32701 +345077,345077 +161827,161827 +97738,97738 +34289,34289 +168508,168508 +36939,36939 +380087,380087 +41830,41830 +382123,382123 +50823,50823 +82033,82033 +83693,83693 +400151,400151 +157401,157401 +411020,411020 +323713,323713 +263105,263105 +337611,337611 +31007,31007 +108641,108641 +23126,23126 +297136,297136 +20187,20187 +200082,200082 +265216,265216 +335714,335714 +404289,405938 +407576,88080 +36602,36602 +230353,230353 +127352,127352 +344850,344850 +409969,409969 +12113,12113 +70655,70655 +153581,153581 +241145,241145 +31956,31956 +432973,432973 +433189,433189 +362637,362637 +38672,38672 +88349,88349 +310580,310580 +40955,40955 +365185,365185 +283791,283791 +27109,27109 +138809,138809 +345571,345571 +93725,93725 +125475,125475 +421792,421792 +137576,137576 +433394,268279 +431107,431107 +261314,261314 +139861,139861 +338899,338899 +296231,296231 +98285,98285 +217286,217286 +24670,24670 +358941,358941 +5190,5190 +85131,85131 +237194,237194 +211747,211747 +172692,172692 +426715,426715 +235823,235823 +406958,406958 +163245,163245 +237863,237863 +299184,299184 +99616,99616 +160746,160746 +249666,249666 +422434,422434 +20305,20305 +76562,76562 +174007,174007 +10350,10350 +131136,131136 +360717,360717 +67228,67228 +99514,99514 +110876,110876 +139958,139958 +425148,425148 +372250,372250 +28886,28886 +66542,66542 +247181,247181 +310239,310239 +341328,341328 +415877,415877 +32976,32976 +394431,394431 +194738,194738 +36239,36239 +418014,204126 +68595,68595 +339939,339939 +38604,38604 +14477,14477 +55388,55388 +99530,99530 +388524,388524 +346605,346605 +351749,351749 +51380,51380 +343736,343736 +276003,276003 +228832,228832 +42723,42723 +28414,28414 +23904,23904 +345994,345994 +278375,278375 +42698,42698 +391736,391736 +214844,214844 +159876,159876 +82578,82578 +332796,332796 +117373,117373 +339246,339246 +95792,95792 +4487,4487 +416747,416747 +429961,429961 +313751,313751 +346434,346433 +332291,332291 +30905,30905 +207902,207902 +5495,5495 +9031,9031 +68451,68451 +36273,36273 +367705,367705 +300115,300115 +37398,37398 +35048,35048 +30066,30066 +158615,158615 +381900,381900 +129410,129410 +118648,118648 +65807,65807 +29629,29629 +399724,399724 +17145,17145 +25619,25619 +425663,425663 +156860,257313 +326747,326747 +334930,334930 +62520,62520 +366269,366269 +113349,113349 +382102,382102 +112484,112484 +96966,96966 +343950,343950 +21629,21629 +195316,195316 +418630,418630 +18743,18743 +415305,415305 +23100,23100 +249789,249789 +257735,257735 +146513,146513 +378592,378592 +127483,127483 +82080,82080 +22071,22071 +270062,270062 +40138,40138 +37457,37457 +14855,14855 +28382,28382 +124784,124784 +172939,172939 +120649,120649 +354620,354620 +25501,25501 +273489,273489 +421250,421250 +411307,411307 +35144,35144 +92853,92853 +286176,286176 +365481,365481 +177038,177038 +176004,176004 +27786,27786 +63239,63239 +424898,424898 +22076,22076 +265795,265795 +323791,323791 +177118,177118 +35162,35162 +174717,174717 +121485,121485 +432451,432451 +127063,127063 +423189,423189 +179458,179458 +124311,124311 +85011,85011 +64362,64362 +13640,13640 +96418,96418 +145430,145430 +110293,110293 +37781,37781 +50515,50515 +211994,211994 +121476,121476 +273757,273757 +392976,392976 +392739,392739 +343055,343055 +325283,325283 +27063,27063 +419194,419194 +426950,335204 +137220,137220 +66348,66348 +202414,202414 +140357,140357 +431387,431387 +338552,338552 +294317,294317 +368516,368516 +29240,29240 +171749,171749 +13457,13457 +31524,31524 +225807,225807 +402448,402448 +429886,429886 +301359,301359 +136872,136872 +116154,116154 +83664,83664 +60215,60215 +115467,115467 +151378,151378 +103080,103080 +352804,352804 +321105,321105 +382552,382552 +31551,31551 +31635,31635 +37796,37796 +389412,389412 +359624,359624 +434204,434204 +35368,35368 +68904,68904 +153827,153827 +125716,125716 +115004,115004 +28671,28671 +21497,21497 +174512,174512 +29974,29974 +429972,429972 +393644,393644 +42079,42079 +150269,150269 +14043,14043 +105728,105728 +339461,339461 +27311,27311 +384180,384180 +64980,64980 +384198,384198 +149733,149733 +122519,122519 +23083,23083 +324340,324340 +409934,409934 +175210,175210 +419415,419415 +155747,155747 +405276,405276 +345100,345101 +257840,257840 +289591,289591 +22814,22814 +368070,368070 +16066,16066 +274867,274867 +35832,35832 +109218,109218 +383986,383986 +304214,304214 +41645,41645 +260713,260713 +328209,328209 +135866,135866 +401348,401348 +20248,20248 +420744,420744 +43485,43485 +64165,64165 +24594,24594 +60801,60801 +239591,239591 +313309,313309 +403565,403565 +25898,25898 +429230,429230 +426585,426585 +134595,134595 +205985,205985 +294962,294962 +102738,102738 +32664,32664 +28011,28011 +39625,39625 +160858,160858 +342634,342634 +108800,108800 +9967,9967 +62318,62318 +433477,433477 +428677,428677 +43423,43423 +23600,23600 +243084,243084 +262205,262205 +323888,323888 +175013,175013 +29085,29085 +90780,90780 +422454,422454 +422572,422572 +326230,326230 +76686,76686 +190110,190110 +38090,38090 +427748,427748 +17569,17569 +23478,23478 +30443,30443 +29008,29008 +322606,322606 +31941,31941 +26941,32510 +141808,141808 +13678,13678 +227863,227863 +421907,421907 +306418,318409 +169399,169399 +430028,430028 +342850,342850 +97228,97228 +239400,239400 +31089,31089 +58878,58878 +401695,401695 +153244,153244 +408669,408669 +159944,159944 +165528,164954 +269771,269771 +419171,419171 +227965,229044 +97606,97606 +424561,70587 +396142,396142 +240221,240221 +38264,38264 +376585,376585 +420547,420547 +6229,6229 +142518,142518 +417144,434466 +332582,331657 +416974,416974 +350806,350806 +358339,358339 +91441,91441 +410283,410283 +37353,37353 +36425,36425 +111403,111403 +352484,352484 +322310,322310 +65570,65570 +38219,38219 +380463,380463 +146498,146498 +12804,12804 +69991,69991 +280767,280767 +147018,147018 +430125,430125 +150281,150281 +37543,37543 +136298,136298 +250498,250498 +396797,396797 +174643,174643 +378035,378035 +365902,365902 +30181,30181 +136294,136294 +361880,361880 +99833,99833 +274755,274755 +382823,382823 +37946,37946 +211653,211653 +383580,383580 +433898,433898 +187409,187409 +110823,110823 +191494,191494 +22761,22761 +150188,150188 +370071,370071 +31042,31042 +65458,65458 +55571,55571 +266864,266864 +42682,42682 +144852,144852 +225518,225518 +387019,387019 +406264,406264 +422443,422443 +202538,202538 +41206,41206 +27780,27780 +344084,344084 +341133,341133 +307531,307531 +126565,126565 +420673,420673 +431008,431008 +228410,228410 +55391,55391 +352062,50381 +106298,106298 +110828,110828 +158977,158977 +433385,433385 +307537,307537 +38534,38534 +262190,262190 +278415,278415 +165653,165653 +125751,125751 +23497,23497 +433864,433864 +39648,39648 +44769,44769 +19232,19232 +14222,14222 +410122,410122 +391023,391023 +297137,297137 +179836,179836 +322617,322617 +22425,22425 +26316,26316 +272050,272050 +103090,103090 +23389,23389 +148768,148768 +126816,126816 +246498,246498 +22254,22254 +362599,362599 +99612,99612 +137017,137017 +266077,266077 +326125,316165 +6564,6564 +128633,128633 +38722,38722 +171230,171230 +28239,28239 +337493,337493 +128184,128184 +14290,14290 +41324,41324 +16299,16299 +27529,27529 +11838,11838 +311320,311320 +23433,23433 +38750,38750 +32243,32243 +194606,194606 +66224,66224 +34211,34211 +371054,371054 +168300,168300 +300572,300572 +313114,313114 +21960,21960 +127621,127621 +36869,36869 +23994,23994 +9697,9697 +124316,124316 +11760,425431 +58182,58182 +160857,160857 +247357,247357 +21563,21563 +39069,39069 +7013,7013 +4603,4603 +347594,347594 +30282,30282 +320561,320561 +174800,174800 +63897,63897 +142363,142363 +15733,15733 +370201,370201 +41783,176898 +1480,1782 +21265,21265 +120655,144412 +66799,66799 +12321,12321 +14084,14084 +22885,22885 +197407,197407 +181401,181401 +18845,18845 +26715,26715 +35501,35501 +353382,353382 +131482,131482 +26699,26699 +32419,32419 +113936,118330 +14493,14493 +125092,125092 +396942,396943 +9347,9347 +296201,289801 +256180,256180 +36651,368998 +13219,13219 +394387,287073 +97963,97963 +36701,36701 +105128,105128 +342502,342502 +45743,45743 +15989,15989 +56881,56881 +99252,99252 +28842,28842 +89084,89084 +217102,217102 +157286,157286 +38243,38243 +62103,62103 +12866,12866 +180244,180244 +27171,27171 +126249,126249 +17838,17838 +115232,115232 +168564,168564 +258403,258403 +416690,416690 +130731,130731 +433350,433350 +377947,303672 +172436,172436 +276105,276105 +23799,23799 +161206,161206 +14085,14085 +131684,131684 +108396,108396 +34937,34937 +34942,34943 +32118,32118 +13618,13618 +110073,110073 +25338,25338 +295010,289801 +148770,148770 +350707,350707 +176554,176554 +28935,28935 +338737,338737 +102813,102813 +388553,388553 +282728,282728 +18878,18878 +378894,378894 +32297,32297 +152247,152247 +16699,16699 +19307,19307 +221053,221053 +18981,18981 +256262,256262 +220681,220681 +5113,5113 +31877,31877 +316268,463 +153391,153391 +2985,2985 +176570,20031 +28350,28350 +237975,178038 +199214,199214 +24608,24608 +133118,133118 +351828,233364 +23506,23506 +13788,13788 +281186,281186 +10887,10887 +105137,105137 +98017,98017 +323446,323446 +30948,30948 +54736,54736 +349624,349624 +234827,234827 +36824,36824 +89402,89402 +386323,386323 +146723,146723 +4496,4496 +259310,259310 +4037,4037 +13064,13064 +124032,124032 +8950,8950 +321273,321273 +93631,93631 +123506,123506 +236112,236112 +10000,10000 +72781,72781 +41078,41078 +19804,19804 +116625,116625 +164307,164307 +164785,164785 +36689,36689 +209658,209658 +35846,35846 +187129,187129 +13020,13020 +354521,194879 +134137,134137 +31306,31306 +98686,98686 +313250,313250 +27841,27841 +23032,23032 +25985,25985 +11543,11543 +21748,21748 +17789,17789 +361630,361630 +22067,463 +137205,137205 +83649,83649 +148233,148233 +18649,18649 +227558,227558 +360934,463 +8561,8561 +16884,16884 +111362,111362 +419852,419852 +317724,317724 +102538,102538 +356744,202296 +170372,170372 +5401,5401 +170343,170343 +22571,146934 +261102,261102 +283351,283351 +190842,190842 +176663,176663 +352164,352164 +6000,6000 +3698,3698 +116155,116155 +7187,7187 +21431,21431 +273714,273714 +159537,159537 +193928,193928 +97246,97246 +354214,354214 +2677,2677 +151453,151453 +1016,1016 +3396,183474 +11849,11849 +2466,2466 +261077,261077 +20444,20444 +236909,236909 +27700,27700 +6626,6626 +104818,104818 +6966,6966 +48343,48343 +37246,433816 +3882,3882 +145723,145723 +370627,370627 +148380,148380 +157489,157489 +12184,12184 +24203,24203 +11981,11981 +376981,376981 +4766,4766 +5337,5337 +1005,1005 +86450,86450 +146302,146302 +3542,3542 +208119,208119 +7458,7458 +329966,329966 +8539,8539 +2187,2187 +103234,103234 +205607,205607 +351359,351359 +153523,153523 +136122,136122 +325842,117555 +5739,5739 +5138,5138 +21361,21361 +132552,132552 +214282,214282 +85669,85669 +142398,273448 +8341,8341 +399866,399866 +217681,217681 +20167,20167 +104782,104782 +99057,99057 +183381,183381 +123450,123450 +176795,176795 +69861,69861 +129554,129554 +34380,34380 +1786,1786 +41297,41297 +159595,159595 +155351,155351 +2020,2020 +377688,377688 +140665,140665 +46430,46430 +375307,375307 +179923,179923 +197090,197090 +15185,15185 +175545,175545 +15250,15250 +17462,17462 +260813,260813 +345466,345466 +21532,21532 +238529,238529 +3215,3215 +200524,200524 +15002,15002 +353667,342730 +59514,59514 +15244,15244 +426230,426230 +16281,16281 +10985,129149 +3123,12587 +18846,18846 +8969,8969 +120423,120423 +414764,414764 +9522,9522 +12286,12286 +13540,13540 +117495,117495 +193350,74 +13552,13552 +38410,38410 +28827,28827 +11024,270627 +21856,21856 +298745,298745 +22819,22819 +119376,119376 +306672,306672 +277401,277401 +35853,35853 +301591,301591 +11097,11097 +202870,202870 +24146,463 +14609,14609 +212676,212676 +10945,10945 +31118,31118 +233595,233595 +191557,191557 +265411,265411 +403126,403126 +117529,117529 +7593,7593 +139563,139563 +11923,11923 +101782,101782 +11589,11589 +361357,361357 +19503,19503 +10239,10239 +66658,66658 +24636,24636 +378108,378108 +19491,19491 +24808,24808 +163643,163643 +7896,7896 +17300,17300 +6016,6016 +151762,151762 +411413,411413 +256303,256303 +23973,23973 +289410,289410 +272802,295483 +10040,10040 +18356,18356 +354968,354968 +4708,4708 +24044,24044 +29577,29577 +227944,227944 +14581,14581 +5115,5115 +108005,108005 +201849,201849 +24030,24030 +97060,97060 +62311,62311 +10696,10696 +160476,160476 +12144,12144 +260787,260787 +114361,114361 +50630,50630 +21789,21789 +39461,39461 +307447,13972 +199745,199745 +41153,41153 +377646,377646 +31795,31795 +13501,13501 +15165,15165 +285001,285001 +8639,8639 +405926,405926 +10194,10194 +30956,30956 +15304,15304 +201674,201674 +380139,380139 +108716,13229 +178408,178408 +42941,42941 +92577,92577 +119315,119315 +13470,13470 +73022,73022 +10894,10894 +34784,34784 +295757,295757 +355137,355138 +23269,23269 +123103,123103 +148732,148732 +12371,12371 +107299,107299 +337639,337639 +9056,9056 +239232,239232 +269732,269732 +239457,239457 +118395,118395 +307004,307004 +187091,240001 +27577,27577 +218774,218774 +168497,35497 +123490,109612 +10731,10731 +236278,236278 +320046,320046 +272243,272243 +20255,20255 +364930,364930 +17880,17880 +40342,40342 +17671,17671 +21137,21137 +377233,377233 +35209,35209 +410619,410619 +322553,322553 +35085,35085 +145310,145310 +40310,40310 +116767,116767 +5821,5821 +243764,243764 +21585,21585 +30744,30744 +331955,331955 +199949,199949 +95096,95096 +14245,463 +46943,46943 +12056,12056 +367944,367944 +15404,15404 +227744,227744 +306781,306781 +71939,71939 +6396,6396 +90844,90844 +40330,40330 +377925,377925 +191471,191471 +205677,205677 +38973,38973 +65941,65941 +414557,414557 +28440,28440 +32036,32036 +32617,32617 +195836,195836 +181747,181747 +232953,232953 +397343,19030 +32335,32335 +184766,184766 +183133,183133 +27124,20697 +324223,324223 +29767,29767 +36962,36962 +191716,191716 +17846,17846 +60194,60194 +136960,136960 +380453,380453 +181757,181757 +332259,433816 +23546,23546 +291291,291291 +394268,394268 +159814,159814 +17231,17231 +154673,154673 +18969,18969 +26843,26843 +19690,19690 +216509,216509 +348815,348815 +15457,15457 +42027,42027 +15586,15586 +156764,156764 +326079,326079 +40133,40133 +31642,23550 +9596,9596 +316705,316705 +5803,5803 +35839,35839 +14226,463 +36206,36206 +18474,18474 +68147,68147 +197496,197496 +39038,39038 +31607,31607 +174460,174460 +111982,111982 +63362,63362 +52919,52919 +32600,32600 +259974,259974 +130362,130362 +30452,30452 +7271,7271 +40303,40303 +401878,401878 +21000,21000 +136997,136997 +40292,40292 +427603,427603 +223351,223351 +122125,122125 +86086,86086 +409589,409589 +35834,35834 +70327,70327 +42552,42552 +60400,60400 +419891,419891 +306200,306200 +301382,301382 +259409,259409 +358072,358072 +320159,320159 +10846,10846 +178001,178001 +14725,14725 +19482,19482 +30001,30001 +4661,4661 +140036,140036 +160574,160574 +1976,1976 +27740,27740 +29798,29798 +26555,26555 +177730,177730 +364335,364335 +18784,18784 +11626,11626 +161563,161563 +21554,21554 +121010,121010 +200705,200705 +185739,185739 +286132,286132 +34068,34068 +35894,35894 +169030,169030 +142331,142331 +19211,19211 +4994,4994 +38451,38451 +27702,27702 +271232,271232 +41181,41181 +32635,32636 +89940,89940 +327618,327618 +301062,301062 +27085,27085 +93291,93291 +114560,114560 +20006,20006 +20121,20121 +29135,29135 +32596,32596 +296338,296338 +410096,410096 +114286,114286 +83272,83272 +26548,26548 +180496,180496 +399016,399016 +363308,363308 +6577,6577 +160600,160600 +34543,34543 +149949,144412 +368346,358789 +48118,48118 +20376,20376 +89030,89030 +237178,237178 +279723,279723 +128123,128123 +29248,29248 +114531,114531 +113292,113292 +21111,21111 +28272,28272 +22788,22788 +4406,4406 +103275,103275 +161647,161647 +67169,67169 +161707,161707 +15967,15967 +361992,361992 +326724,326724 +71567,71567 +27074,27074 +155216,155216 +177295,177295 +66062,66062 +424127,424127 +158288,158288 +120772,120772 +136316,136316 +16313,16313 +328697,328697 +7872,7872 +42689,42689 +168744,168744 +199879,199879 +35282,35282 +130153,321937 +385584,385584 +15576,15576 +340142,340142 +39294,39294 +63590,63590 +273263,273263 +71986,71986 +38617,38617 +356882,356882 +12643,12643 +91258,91258 +38294,38294 +36004,36004 +250503,250503 +377976,377976 +32612,32612 +275676,275676 +378340,378340 +214826,214826 +19712,19712 +49420,49420 +13250,13250 +402038,402038 +10792,10792 +130446,130446 +200014,200014 +392650,392650 +433110,433110 +333056,333056 +130875,130875 +341210,341210 +216891,216891 +21247,21247 +107706,107706 +16278,16278 +5126,5126 +1085,1085 +34146,34146 +35892,35892 +17036,17036 +16065,16065 +13482,13482 +43383,43383 +337673,337673 +6147,6147 +83875,83875 +363532,363532 +190604,253438 +250726,250726 +365596,365596 +336057,203958 +152843,152843 +88532,88532 +184293,184293 +21353,21353 +363777,363777 +15726,15726 +7850,7850 +22904,22904 +358628,358628 +6096,6096 +10017,463 +30530,30530 +102174,102174 +180061,180061 +8778,8778 +130322,130322 +31708,31708 +407017,407017 +257182,257182 +30215,30215 +17307,17307 +19290,19290 +309339,309339 +87479,87479 +30853,30853 +142684,142684 +292198,292198 +30291,30291 +200478,200478 +62822,62822 +96760,96760 +272235,272235 +191072,191072 +133852,133852 +426140,426140 +103153,103153 +28694,28694 +12250,12250 +159063,159063 +137584,137584 +16607,16607 +38413,38413 +368986,368986 +212054,212054 +287080,287080 +327227,327227 +51373,51373 +41359,41359 +130344,130344 +18004,18004 +264202,264202 +110908,110908 +30973,30973 +418855,418855 +27999,341708 +41903,41903 +45135,45135 +271861,271861 +39799,39799 +14938,14938 +386442,386442 +16361,16361 +217716,217716 +352049,352049 +91458,91458 +17386,17386 +82188,82188 +37090,37090 +69786,69786 +175784,175784 +124732,124732 +400768,400768 +25026,25026 +25427,25427 +20151,20151 +331432,331432 +40390,40390 +34223,34223 +19260,19260 +254402,254402 +57176,57176 +14900,14900 +411039,411039 +34527,34527 +32937,32937 +6326,6326 +163420,163420 +160552,160552 +21253,21253 +17255,17255 +120167,120167 +176125,176125 +412008,412008 +109546,109546 +20180,20180 +218729,218729 +126677,126677 +378441,378441 +88845,88845 +9655,9655 +402912,402912 +288873,50381 +66366,66366 +234594,234594 +4653,4653 +92181,301912 +328217,328217 +100738,100738 +38988,38988 +288811,288811 +329583,329583 +17093,17093 +20285,20285 +31429,31429 +22526,22526 +11839,11839 +29609,29609 +13901,13901 +25084,25085 +6312,6312 +139798,139798 +123855,123855 +133157,133157 +204897,204897 +120606,120606 +201280,201280 +110706,110706 +112891,112891 +242300,242300 +19504,19504 +179674,179674 +31634,31634 +127753,127753 +173564,173564 +171449,171449 +392499,392499 +65043,65043 +133610,133610 +176459,176459 +33363,33363 +22211,22211 +107590,107590 +334624,340906 +56576,463 +28141,28141 +146699,146699 +414768,414768 +98682,98682 +371805,371805 +18210,18210 +64518,64518 +403107,403107 +209552,209552 +329945,329945 +84037,84037 +20411,20411 +386533,386533 +16962,16962 +18195,18195 +284428,284428 +12934,12934 +414472,414472 +27625,27625 +262035,262035 +22925,22925 +217023,217023 +326170,326170 +426314,421540 +32958,32958 +15905,15905 +15823,15823 +36983,36983 +67048,67048 +5189,5189 +9920,9920 +26780,26780 +160971,160971 +86238,86238 +17544,17544 +136485,136485 +34665,34665 +183824,183824 +41231,41231 +25571,25571 +130964,130964 +14456,14456 +39843,39843 +392496,392496 +15314,15314 +92585,92585 +35538,35538 +7219,7219 +97624,97624 +277084,277084 +25454,25454 +81686,81686 +28463,28463 +41151,41151 +34926,34926 +152723,152723 +138618,138618 +89616,89616 +266099,266099 +54754,54754 +9777,9777 +4264,4264 +35531,35531 +11309,11309 +143630,143630 +11713,11713 +207673,207673 +399267,399267 +353607,353607 +24129,24129 +66180,66180 +21426,21426 +142630,142630 +135578,135578 +29594,29594 +17625,17625 +340160,340160 +401324,401324 +132860,132860 +38468,38468 +221954,221954 +233044,233044 +108092,108092 +9552,9552 +18329,18329 +408609,408609 +130256,130256 +89351,89351 +262423,262423 +7379,7379 +120387,120387 +19779,19779 +159894,134884 +100877,100877 +283944,283944 +353800,353800 +31959,31959 +9096,9096 +97316,97316 +4757,4757 +128228,128228 +364233,364233 +35025,35025 +26572,26572 +41356,41356 +66220,66220 +246023,246023 +34792,34792 +31775,31775 +108492,108492 +317384,317384 +151162,151162 +308660,308660 +187310,187310 +124143,124143 +317297,317297 +405707,405707 +192877,192877 +23548,23548 +342131,342131 +244906,244906 +14094,14094 +182046,182046 +21224,21224 +63630,63630 +260870,260870 +70654,70654 +21535,21535 +13027,13027 +20736,20736 +381728,381728 +380040,380040 +118490,118490 +153617,153617 +192981,192981 +41964,41964 +16079,16079 +16504,16504 +187672,187672 +15860,15860 +121521,121521 +360950,335204 +27502,27502 +28173,28173 +250830,250830 +27506,27506 +129018,129018 +21556,21556 +21430,21430 +23645,23645 +40999,40999 +244307,244307 +123995,123995 +229675,229675 +145423,145423 +69702,69702 +33839,33839 +65372,65372 +17319,17319 +234081,234081 +153324,153324 +150480,150480 +155067,155067 +184729,184729 +21595,21595 +368072,368072 +28747,28747 +9477,9477 +113338,113338 +317378,317378 +10318,10318 +38623,38623 +355926,355926 +24071,24071 +38584,38584 +35507,35507 +247777,247777 +184973,184973 +297083,297083 +93006,93006 +40149,40149 +176550,176550 +118993,118993 +408314,408314 +121017,121017 +125816,125816 +99887,99887 +241854,241854 +18425,18425 +11143,11143 +8948,8948 +16736,16736 +20487,20487 +315068,315068 +98257,98257 +28322,28322 +99049,99049 +27995,27995 +86155,86155 +53764,53764 +6925,6925 +30561,28627 +91352,91352 +161339,161339 +293519,293519 +122715,122715 +38622,38622 +26589,26589 +29876,29876 +156850,156850 +125441,125441 +12031,12031 +115245,115245 +54982,54982 +124144,124144 +14227,463 +38832,38832 +28589,28589 +24912,24912 +21428,21428 +39608,39608 +6911,6911 +25146,25146 +16842,16842 +12625,12625 +38066,38066 +145208,145208 +268192,14702 +20498,20498 +400102,400102 +296966,296966 +62858,62858 +147870,147870 +12990,12990 +48758,48758 +401982,401982 +113775,113775 +62319,62319 +131990,131990 +177292,177292 +38595,38595 +337499,337499 +26622,26622 +285854,285854 +6279,6279 +431836,431836 +309953,309953 +163629,163629 +32407,32407 +39497,39497 +356777,356777 +421103,421103 +352762,352762 +33618,33618 +11045,11045 +100452,100452 +327089,327089 +38233,38233 +11564,100378 +413271,413271 +14487,14487 +38585,38585 +9831,9831 +89725,89725 +426098,426098 +48008,48008 +299990,299990 +152385,152385 +223869,223869 +36335,36335 +194364,194364 +42888,42888 +12860,12860 +97137,97137 +318570,318570 +136952,136952 +357138,238034 +82460,82460 +393885,393885 +51025,51025 +164254,164254 +67075,67075 +68452,68452 +324799,324799 +31777,31777 +361458,361458 +122920,122920 +25252,25252 +38101,38101 +362918,362918 +319527,285242 +30899,30899 +22967,22967 +414175,414175 +209553,209553 +72244,72244 +256762,256762 +10772,10772 +242308,242308 +33844,33844 +164748,164748 +274741,274741 +180817,180817 +369950,369950 +84996,84996 +142643,142643 +331884,331884 +32523,32523 +319429,319429 +229217,234010 +328736,328736 +195512,195512 +33892,33892 +422884,422884 +424900,424900 +36461,36461 +205311,205311 +38415,38415 +200065,200065 +64451,64451 +291328,291328 +113909,113909 +12214,12214 +39230,39230 +23833,23833 +74935,392842 +36838,36838 +244116,244116 +40211,40211 +127939,127939 +29203,29203 +19711,19711 +110494,110494 +172744,172744 +320548,320548 +353858,353858 +202835,202835 +24707,24707 +31786,31786 +36154,36154 +170213,170213 +230297,230297 +379634,212404 +39094,39094 +226298,226298 +352006,352006 +353794,353794 +16655,16655 +17498,17498 +104440,104440 +224507,224507 +39867,39867 +23557,23557 +33551,33551 +403185,378804 +327375,327375 +69142,69142 +145962,145962 +28002,28002 +327411,327411 +371854,371854 +325272,325272 +319032,319032 +162630,162630 +31362,31362 +277545,26676 +344059,344059 +125648,125648 +36460,36460 +29359,29359 +139031,139031 +87087,87087 +90765,90765 +360704,360704 +31488,31488 +33888,33888 +31495,31495 +98624,98624 +21075,21075 +236701,236701 +261374,261374 +43344,43344 +110675,110675 +28669,28669 +6103,6103 +66009,66009 +316564,316564 +29270,29270 +356438,356438 +389503,389503 +57125,57125 +193450,13360 +112704,112704 +36002,36002 +81255,81255 +141384,141384 +127588,127588 +310216,310216 +34233,34233 +107701,107701 +149321,149321 +67721,67721 +330588,330588 +61106,61106 +16789,16789 +70236,70236 +16061,16061 +21234,21234 +13761,463 +20375,20375 +299247,299247 +17353,17353 +48391,48391 +84033,84033 +300193,300193 +36644,36644 +185005,185005 +129393,129393 +426365,426365 +32905,32905 +66647,66647 +40841,40841 +27984,27984 +251725,251725 +112151,112151 +296806,296806 +19256,19256 +21308,21308 +26727,26727 +29021,29021 +131252,131252 +163630,163630 +81446,81446 +148765,148765 +128175,128175 +110513,110513 +121890,121890 +31894,31894 +191037,191037 +88220,88220 +323568,323568 +26206,26206 +133807,133807 +42333,42333 +83969,83969 +286296,286296 +38852,38852 +383547,383547 +225030,225030 +42353,42353 +227003,227003 +16579,16579 +47021,47021 +413635,413635 +205798,205798 +38544,38544 +23924,23924 +66441,66441 +19822,19822 +152618,152618 +64692,64692 +131367,131367 +13332,13332 +362501,362501 +356627,356627 +37561,37561 +127546,127546 +27561,27561 +14067,14067 +35208,35208 +36011,36011 +112042,112042 +216066,103670 +56581,56581 +321871,321871 +29094,29094 +74089,74089 +109913,109913 +129801,129801 +9182,9182 +62316,62316 +103056,103056 +187825,187825 +52104,52104 +266005,266005 +33674,33674 +96098,96098 +23302,23302 +34654,34654 +41363,41363 +227174,227174 +320848,320848 +16478,16478 +341813,341813 +106739,106739 +221626,221626 +150147,150147 +112272,112272 +33971,33971 +313770,313770 +38833,38833 +149514,149514 +347030,347030 +162284,162284 +43330,43330 +94429,94429 +421172,421172 +44484,44484 +187382,187382 +37579,37579 +107442,107442 +412799,412799 +162730,162730 +352042,352042 +25203,25203 +58573,58573 +139708,139708 +250872,250872 +239878,239878 +63598,63598 +24671,24671 +27744,27744 +59154,59154 +180950,180950 +250491,250491 +35057,35057 +113298,113298 +109046,109046 +42143,42143 +340104,340104 +280314,280314 +27996,27996 +41129,41129 +21299,21299 +20332,20332 +424202,424202 +75045,75045 +27327,27327 +240458,240458 +10340,10340 +406553,406553 +50260,50260 +134190,134190 +73530,73530 +18274,18274 +19488,19488 +32694,32694 +59947,59947 +282063,282063 +227272,227272 +425608,425608 +239506,239506 +153989,153989 +44341,44341 +35955,35955 +20197,20197 +40930,40930 +274482,274482 +356382,356382 +132578,132578 +200378,200378 +169578,169578 +44843,44843 +59168,59168 +27874,27874 +129014,129014 +314031,314031 +38021,38021 +242893,242893 +64993,16912 +426980,426980 +244816,244816 +423832,423832 +369147,369147 +39761,39761 +42712,42712 +230276,230276 +188611,171313 +13397,13397 +75038,75038 +330746,34245 +56126,56126 +216187,216187 +159730,159730 +216627,216627 +31569,31569 +38972,38972 +124037,124037 +13907,13907 +433348,433348 +106019,106019 +80980,80980 +147571,147571 +31193,31193 +341410,341410 +225387,225387 +266895,266895 +124340,124340 +63487,63487 +148355,148355 +365739,365739 +11710,11710 +361034,361034 +342426,342426 +108618,108618 +37808,37808 +128109,128109 +81461,81461 +39314,39314 +99820,99820 +216684,216684 +259822,259822 +362331,362331 +15116,15116 +133727,133727 +182512,182512 +187018,187018 +122007,122007 +186344,23323 +123615,123615 +132805,132805 +166574,166574 +152725,152725 +413929,413929 +39771,39771 +229938,229938 +65377,65377 +58785,58785 +27462,27462 +19071,19071 +200509,200509 +16224,16224 +168326,168326 +42535,42535 +18470,18470 +374771,374771 +260145,260145 +59757,59757 +114792,114792 +89923,89923 +344968,344968 +33568,429874 +173821,173821 +65038,65038 +22171,22171 +86173,86173 +170491,170491 +57399,57399 +154380,154380 +30968,30968 +167780,167780 +244580,244580 +89410,89410 +35954,35954 +303264,303264 +137333,137333 +411024,411024 +222731,42482 +25488,25488 +315319,315319 +178574,178574 +58047,58047 +97115,97115 +27354,27354 +35951,35951 +101002,101002 +44381,44381 +28249,28249 +64662,64662 +69276,69276 +173236,173236 +17942,17942 +162990,162990 +329625,329625 +66677,66677 +13711,13711 +411135,411135 +287404,287404 +36846,36846 +108993,108993 +19136,19136 +65007,65007 +87281,87281 +32060,32060 +17973,17973 +87361,87361 +426765,426765 +207916,207916 +207855,207855 +122717,122717 +150116,150116 +15385,15385 +20347,20347 +42295,42295 +411264,411264 +31086,31086 +85292,85292 +410959,410959 +5066,5066 +88128,88128 +55797,55797 +433636,433636 +18772,18772 +327224,327224 +179945,179945 +122658,122658 +29397,29397 +107468,107468 +408867,408867 +177660,177660 +97458,97458 +37556,37556 +10990,10990 +352377,352377 +230463,230463 +33008,33008 +24911,24911 +373834,9220 +127679,127679 +74028,74028 +398378,398378 +34544,34544 +160227,160227 +23070,23070 +22583,22583 +36624,36624 +131630,131630 +60817,60817 +36579,36579 +370579,370579 +25012,25012 +59807,59807 +58354,58354 +229190,229190 +89080,89080 +432343,411033 +69639,69639 +35234,35234 +225753,225753 +15186,15186 +33637,33637 +343738,343738 +122826,3270 +157331,157331 +160631,160631 +322369,322369 +120401,120401 +179179,179179 +124164,124164 +74127,74127 +38280,38280 +266559,266559 +21821,21821 +21578,21578 +277693,277693 +350963,350963 +30414,30414 +21770,21770 +36129,36129 +159682,159682 +20548,20548 +102248,102248 +60609,60609 +390623,390623 +236773,236773 +121048,121048 +107639,107639 +163307,163307 +146291,146291 +418501,418501 +299944,299944 +117965,117965 +37975,37975 +94667,94667 +212757,212757 +18361,18361 +398672,407299 +36403,36403 +11570,11570 +25340,25340 +23384,23384 +418805,1299 +69230,69230 +79188,79188 +362508,362508 +70493,70493 +26556,26556 +315316,315316 +230337,230337 +41628,41628 +24557,24557 +424817,424817 +348242,348242 +21225,21225 +33485,33485 +228172,228172 +34721,34721 +64512,64512 +16661,16661 +254173,254173 +110024,110024 +297203,37225 +414024,241006 +31219,8669 +30398,30398 +352045,352045 +25716,25716 +361590,361590 +70479,70479 +403493,403493 +27974,27974 +133720,133720 +136094,136094 +195731,195731 +11872,11872 +359825,359825 +127050,127050 +28955,28955 +84773,84773 +63355,63355 +119997,119997 +34071,34071 +130762,130762 +35063,35063 +130037,130037 +382057,382057 +98667,98667 +62722,62722 +4474,4474 +290514,290514 +131746,131746 +30702,30702 +133230,133230 +286845,286845 +126983,126983 +65939,65939 +126721,126721 +123208,123208 +304603,304603 +14767,14767 +22240,463 +69803,69803 +277817,277817 +127504,127504 +413855,413855 +315593,315593 +302020,302020 +88972,88972 +214713,214713 +119939,119939 +21612,21612 +55393,55393 +36145,36145 +85561,85561 +36595,36595 +14417,14417 +247105,247105 +34387,34387 +31253,31253 +425047,425047 +61635,61635 +300613,300613 +126666,126666 +137101,137101 +20948,20948 +41262,41262 +39199,39199 +410811,265461 +352527,352527 +61774,61774 +149379,149379 +24454,24454 +252132,252132 +16243,16243 +229188,229188 +122625,122625 +113473,113473 +30841,30841 +330233,330233 +28213,28213 +229127,229127 +183187,183187 +312455,312455 +17854,17854 +383060,383060 +422251,422251 +31720,31720 +35068,35068 +431481,431481 +30061,30061 +323515,323515 +377333,377333 +141890,141890 +26160,26160 +10118,10118 +42933,42933 +201159,201159 +362389,362389 +23968,23968 +166466,166466 +31218,31218 +100218,100218 +89901,89901 +24962,24962 +155707,155707 +347829,112963 +339670,339670 +39579,39579 +58032,58032 +104250,104250 +406866,406866 +348445,348445 +203523,203523 +423820,314386 +262316,262316 +31546,31546 +128502,128502 +97828,97828 +164849,164849 +124952,124952 +243010,243010 +184510,184510 +424131,424131 +105301,105301 +42596,42596 +145503,463 +34501,34501 +287397,287397 +136781,136781 +97386,97386 +28478,28478 +75037,75037 +89527,89527 +171847,171847 +63233,63233 +424912,424912 +38185,38185 +229747,229747 +325165,26033 +171295,171295 +168536,168536 +38533,38533 +386280,386280 +380702,380702 +376287,376287 +233096,233096 +373306,373306 +26044,26044 +17731,17731 +43227,43227 +38123,38123 +72818,72818 +29881,29881 +129548,129548 +175257,175257 +367445,367445 +92124,92124 +21476,21476 +12017,12017 +414278,414278 +286089,286089 +171265,171265 +27850,27850 +313571,313571 +38118,38118 +411418,411418 +230086,230086 +117701,117701 +33184,33184 +299222,291953 +420473,420473 +38116,38116 +237001,237001 +24262,24262 +189680,189680 +401921,401921 +132756,132756 +395353,395353 +60201,60201 +35190,35190 +242822,242822 +307838,307838 +19553,19553 +19346,19346 +15289,15289 +233165,233165 +113687,113687 +104802,104802 +386329,386329 +54592,54592 +403442,403442 +34188,34188 +34908,34908 +17714,17714 +23520,23520 +277660,277660 +25936,25936 +377872,377872 +27136,27136 +230426,230426 +136908,136908 +39218,39218 +36061,36061 +58051,58051 +139947,139947 +408269,408269 +16686,16686 +393210,393210 +110672,110672 +40122,40122 +290161,193593 +264999,264999 +209359,209359 +35301,35301 +301379,301379 +25963,25963 +50813,50813 +16788,16788 +21643,21643 +26967,26967 +16898,16898 +356016,356016 +45756,45756 +267818,267818 +352769,352769 +89932,89932 +114194,114194 +193279,193279 +36396,36396 +119428,119428 +357472,357472 +84437,84437 +109888,109888 +231422,231422 +323611,323611 +128276,128276 +141091,141091 +169520,169520 +314169,314169 +26575,26575 +352044,352044 +37872,37872 +3539,3539 +113508,113508 +335468,335468 +27763,27763 +233532,233532 +174493,174493 +335277,335277 +192079,9319 +176681,176681 +425257,425257 +340658,340658 +102825,102825 +399008,399008 +41923,41923 +360262,8790 +38964,38964 +48089,48089 +395358,395358 +39467,39467 +10179,10179 +118572,118572 +33765,33765 +253367,253367 +347931,175029 +21151,21151 +233045,233045 +17961,17961 +232366,232366 +37647,37647 +28315,28315 +33118,33118 +16835,16835 +357389,357389 +414730,414730 +31381,31381 +28420,28420 +38937,38937 +124988,124988 +188424,188424 +143735,143735 +37315,37315 +32351,32351 +135490,135490 +90108,90108 +26480,26480 +36070,36070 +131852,131852 +20992,20992 +65757,65757 +285015,285015 +27749,27749 +421293,421293 +38099,38099 +71989,71989 +29105,29105 +423060,423060 +60188,60188 +68885,68885 +320543,320543 +164836,164836 +274574,274574 +88910,88910 +164732,164732 +5980,5980 +300622,99408 +434156,434156 +33953,33953 +154019,154019 +418466,418466 +15577,15577 +36207,36207 +24599,24599 +22502,22502 +181537,181537 +56343,56343 +179112,434139 +28058,28058 +154781,154781 +187768,187768 +75210,75210 +50367,50367 +22872,22872 +36360,36360 +36047,36047 +202651,202651 +338575,338575 +123365,123365 +225735,225735 +20034,20034 +214312,214312 +40196,40196 +11150,11150 +130528,130528 +33460,33460 +320539,320539 +433510,433510 +171390,171390 +246516,246516 +230779,230779 +367995,367995 +30904,30904 +122516,122516 +35989,35989 +94457,94457 +196044,196044 +427202,399134 +145487,145487 +16610,16610 +9551,9551 +191447,191447 +112048,112048 +25033,25033 +121490,121490 +33784,33784 +63219,63219 +32438,32438 +51075,51075 +15574,15574 +181917,181917 +421198,421198 +134664,134664 +229452,229452 +396803,396803 +58585,58585 +120056,120056 +21576,21576 +422457,422457 +34548,34548 +26550,26550 +122278,122278 +121075,121075 +34636,34636 +16488,16488 +98672,98672 +19831,19831 +36073,36073 +28027,28027 +82039,82039 +400125,400125 +245787,245787 +64995,64995 +34178,34178 +347418,347418 +47100,47100 +59854,59854 +285891,285891 +68786,68786 +346988,346988 +35979,35979 +161776,161776 +331468,331468 +120865,120865 +28415,28415 +123494,123494 +134883,134883 +38532,38532 +132720,132720 +121084,121084 +59735,59735 +70362,415142 +403306,403306 +182696,182696 +40627,40627 +232363,232363 +311271,311271 +251251,251251 +363231,363231 +55707,55707 +313581,313581 +416686,416686 +117557,117557 +15448,15448 +29732,29732 +36278,36278 +423775,423775 +39968,39968 +30422,30422 +37323,37323 +25049,25049 +42404,42404 +38581,38581 +32917,32917 +171338,171338 +36354,36354 +325741,325741 +19199,19199 +27734,27734 +411863,411863 +382218,382218 +119883,119883 +111434,111434 +62397,12530 +277984,277984 +31437,31437 +404334,404334 +36175,36175 +39833,39833 +324442,324442 +88254,88254 +34671,34671 +429951,429951 +394274,394274 +166179,166179 +161478,161478 +111707,111707 +7474,7474 +26753,26753 +17423,17423 +256146,256146 +426406,426406 +26590,26590 +375655,375655 +15337,15337 +187669,187669 +42858,42858 +19438,19438 +55149,55149 +227579,227579 +411855,383093 +148742,148742 +24765,24765 +6624,6624 +267972,267972 +318075,318075 +353712,353712 +299061,299061 +33720,33720 +408156,408156 +148266,148266 +217987,217987 +3256,3256 +433918,433918 +145821,145821 +25755,25755 +63272,63272 +332471,332471 +83411,83411 +428780,428780 +406587,406587 +160897,160897 +132526,132526 +21163,21163 +370617,370617 +155013,155013 +38058,38058 +29744,29744 +194584,194584 +127950,127950 +413641,413641 +36094,36094 +417427,417427 +16350,16350 +272066,272066 +112671,112671 +11566,11566 +63867,63867 +211348,211348 +103176,103176 +34551,34551 +348097,348097 +103375,103375 +273277,273277 +397854,397854 +229719,229719 +19926,19926 +38140,38140 +311283,311283 +16931,16931 +400104,400104 +42247,42247 +433071,433071 +298521,298521 +146190,146190 +175880,175880 +32338,32338 +76200,76200 +143324,143324 +339053,339053 +328631,328631 +420963,420963 +395086,395086 +38650,38650 +318164,64431 +338695,338695 +360949,360949 +62668,62668 +22467,22467 +366387,366387 +109775,109775 +14978,14978 +35325,35325 +253123,253123 +20945,20945 +36479,36479 +26427,26427 +37039,37039 +40668,40668 +9024,9024 +235597,235597 +21822,21822 +11007,11007 +145427,145427 +32256,32256 +40401,40401 +27018,27018 +66225,66225 +159903,159903 +128012,128012 +62056,62056 +18001,18001 +37019,37019 +31532,31532 +5574,5574 +128036,128036 +49163,49163 +39969,39969 +186039,186039 +169510,169510 +38671,38671 +284935,284935 +12529,12529 +25659,25659 +59643,59643 +153756,153756 +18298,18298 +55672,55672 +12076,12076 +23930,23930 +119063,119063 +36594,36594 +306247,306247 +16259,16259 +98034,98034 +227123,227123 +62315,62315 +119741,119741 +71923,71923 +346212,346212 +12528,12528 +261381,261381 +295984,295984 +345147,345147 +20364,20364 +32708,32708 +177268,177268 +23051,23051 +84116,84116 +115360,115360 +401950,401950 +34897,34897 +100110,100110 +29641,29641 +43391,43391 +391018,391018 +31397,31397 +410190,410190 +37783,37783 +24595,24595 +41503,41503 +152833,152833 +43377,43377 +17502,17502 +159052,159052 +413636,413636 +174969,174969 +423352,423352 +136013,136013 +130610,130610 +175264,175264 +429271,429271 +127819,127819 +265951,265951 +236694,236694 +159984,339068 +16365,16365 +70492,70492 +157458,157458 +73293,73293 +18491,18491 +22316,22316 +129125,129125 +68468,68468 +42289,42289 +121104,121104 +112890,112890 +4823,4823 +182740,182740 +407958,407958 +32854,32854 +66652,66652 +104060,104060 +20312,20312 +155601,155601 +238526,238526 +228226,228226 +286403,286403 +376517,376517 +337917,337917 +40167,40167 +311983,311983 +38547,38547 +137608,137608 +147849,147849 +30555,30555 +38139,38139 +242220,242220 +332198,332198 +109910,109910 +39374,39374 +109885,109885 +99214,99214 +27284,27284 +95219,95219 +367431,367431 +112460,112460 +21584,21584 +22617,22617 +108986,108986 +149052,149052 +129466,129466 +356712,356712 +62123,62123 +28453,28453 +169824,169824 +186956,186956 +35271,35271 +91941,2392 +339865,339865 +47349,47349 +64821,64821 +227128,227128 +417557,417557 +365199,365199 +132764,132764 +193934,193934 +249234,249234 +390597,390597 +66205,66205 +41593,41593 +28662,28662 +110691,110691 +30419,30419 +26048,26048 +131670,131670 +139561,139558 +73340,73340 +357174,357174 +136929,136929 +205792,205792 +34145,34145 +1918,1918 +164476,164476 +118456,118456 +226212,226212 +291804,291804 +231420,231420 +243209,243209 +133380,133380 +200617,200617 +294881,294881 +12918,12918 +169853,169853 +159207,159207 +370809,370809 +337399,337399 +48217,48217 +11158,11158 +337530,337530 +412098,412098 +155589,155589 +123110,123110 +18186,18186 +41953,41953 +323585,323585 +29493,29493 +228620,228620 +11133,11133 +39133,39133 +46946,46946 +145398,145398 +360082,360082 +347551,347551 +356601,356601 +351831,351831 +47015,47015 +63527,63527 +153390,153390 +334352,334354 +365536,365536 +42418,42418 +125735,125735 +173567,173567 +154095,154095 +66970,66970 +228094,228094 +349611,349612 +423360,376866 +64036,64036 +323435,323435 +73302,73302 +38252,38252 +109895,109895 +155123,155123 +211964,211964 +193153,153002 +108031,108031 +43270,43270 +75105,75105 +32216,32216 +322850,322850 +326198,387769 +90742,90742 +109896,109896 +25020,25020 +279588,398696 +297781,5878 +116113,116113 +36910,36910 +235549,235549 +149501,149501 +36021,36021 +132101,132101 +306688,306688 +331959,331959 +57186,57186 +281141,281141 +111306,111306 +151548,151548 +29733,29733 +30108,30108 +340101,340101 +45574,45574 +71992,71992 +399881,399881 +410013,410013 +15758,15758 +5613,5613 +203848,203848 +408564,408564 +110490,110490 +129531,129531 +371249,371249 +21311,21311 +116164,116164 +344570,344570 +202504,202504 +91419,91419 +424960,424960 +20508,20508 +113408,113408 +13323,13323 +237123,237123 +13791,13791 +47086,47086 +46723,46723 +326777,326777 +22363,22363 +155235,155235 +38731,38731 +38132,38132 +402945,402945 +31248,31248 +6683,6683 +314839,314839 +57994,291629 +15834,15834 +18758,18758 +36310,36310 +21200,21200 +204316,204316 +340391,340391 +25377,25377 +419910,419910 +33722,33722 +30439,30439 +344706,344706 +164471,164471 +120989,120989 +32775,32775 +8771,8771 +16476,16476 +373423,373423 +35573,35573 +36501,36501 +341855,14816 +36074,36074 +193369,193369 +147731,147731 +419671,419671 +64724,64724 +36494,36494 +197677,197677 +30556,30556 +112276,112276 +230087,230087 +175721,175721 +294603,294603 +124048,124048 +58917,58917 +19558,19558 +36264,36264 +31646,31646 +114908,114908 +347372,347372 +229222,229222 +25504,25504 +122797,122797 +123231,123231 +156213,156213 +119183,119183 +36305,36305 +142067,142067 +36138,36138 +249355,249355 +155704,105134 +149057,149057 +417221,417221 +10606,10606 +236737,236737 +300616,300616 +293524,110 +133820,133820 +357942,357942 +236640,236640 +114798,114798 +95839,95839 +189101,189101 +91715,91715 +60413,60413 +29800,29800 +36370,36370 +274148,274148 +27741,27741 +299906,299906 +38958,38958 +34063,34063 +3221,3221 +239376,239376 +28507,28507 +372613,212404 +14714,14714 +27004,27004 +65787,65787 +229743,229743 +53144,53144 +419438,419438 +25244,25244 +375155,375155 +11884,11884 +69916,69916 +137364,137364 +15414,15414 +137592,137592 +9206,9206 +412680,412680 +8578,8578 +276776,276776 +167337,167337 +24624,24624 +29834,29834 +184055,184055 +419896,419896 +115891,115891 +39499,39499 +281957,281957 +72626,72626 +64192,64192 +22284,22284 +38013,38013 +27811,27811 +129637,129637 +168651,168651 +37766,37766 +107937,107937 +177718,177718 +39917,39917 +229667,229667 +34050,34050 +19072,19072 +51529,51529 +66325,66325 +215145,215145 +13567,13567 +66025,66025 +309531,309531 +29174,29174 +17716,17716 +320684,320684 +35957,35957 +183648,183648 +131412,131412 +162124,162124 +98802,27507 +32955,32955 +59397,59397 +325585,325585 +335001,335001 +26299,26299 +293526,293526 +108017,108017 +107967,107967 +16849,16849 +273830,273830 +247866,247866 +30289,30289 +133545,133545 +63665,63665 +239034,239034 +16004,16004 +123876,123876 +25216,25216 +362826,12920 +322844,463 +34783,34783 +271857,271857 +27442,27442 +410328,244906 +36063,36063 +137084,137084 +41565,41565 +16556,16556 +37820,37820 +352007,352007 +251993,251993 +131622,131622 +181678,181678 +16825,16825 +131476,131476 +28976,28976 +64056,64056 +208587,208587 +25159,25159 +20125,20125 +350164,350164 +18864,18864 +85479,85479 +25908,25908 +248454,248454 +214146,214146 +151693,151693 +39225,39225 +192041,192041 +271817,271817 +58102,58102 +4548,4548 +156985,156985 +213233,213233 +187180,187180 +240919,240919 +31472,31472 +11363,11363 +6299,6299 +324993,324993 +414699,414699 +76241,76241 +174365,174365 +61909,61909 +36108,36108 +22009,22009 +357213,357213 +243319,243319 +25215,25215 +386779,463 +14636,14636 +335895,335895 +415979,415979 +38681,38681 +130038,130038 +38218,38218 +134974,134974 +31932,31932 +345541,345541 +169144,169144 +165520,165520 +369054,271460 +42608,42608 +126973,126973 +16516,96004 +36585,36585 +106004,106004 +16152,16152 +426758,426758 +328074,328074 +212829,212829 +29303,29303 +6093,6093 +212555,212555 +35049,35049 +127702,127702 +24095,24095 +200201,200201 +228762,228762 +402087,402087 +21037,21037 +382352,382352 +39215,39215 +317435,317435 +137970,137970 +159896,134884 +19866,19866 +31172,31172 +92632,92632 +352518,352518 +245280,245280 +271006,42101 +421182,421182 +143286,143286 +315530,43227 +427065,427065 +29312,29312 +237558,237558 +72662,43227 +123623,123623 +148323,148323 +119537,119537 +156209,156209 +389517,389517 +378077,378077 +37435,37435 +298522,298522 +133025,133025 +129644,129644 +40255,40255 +52648,52648 +177856,177856 +407559,346015 +19070,19070 +23058,23058 +419804,419804 +31690,31690 +39924,39924 +43826,43826 +116834,116834 +62119,62119 +262409,262409 +29771,29771 +12702,12702 +26088,26088 +37842,37842 +274828,274828 +413637,413637 +38616,38616 +38180,38180 +34257,34257 +181481,181481 +18569,18569 +256744,256744 +13199,13199 +378704,378704 +33778,33778 +127682,127682 +155447,155447 +37871,37871 +71205,71205 +427241,427241 +345253,345253 +375708,375708 +145864,145864 +230893,230893 +391414,391414 +164718,164718 +59004,59004 +35952,35952 +26167,26167 +25183,25183 +35244,35244 +73087,73087 +400889,463 +66788,66788 +87913,87913 +246464,246464 +18241,18241 +157508,157508 +392202,392202 +373593,373593 +9709,9709 +139324,139324 +40806,40806 +327181,327181 +12232,12232 +22805,22805 +28746,28746 +18214,18214 +299062,299062 +119807,119807 +158054,158054 +203858,203858 +213645,134357 +13941,13941 +32629,32629 +72657,72657 +20570,20570 +88531,88531 +162116,162116 +30845,304887 +328487,328487 +29349,29349 +265950,265950 +342446,342446 +11729,11729 +34619,34619 +174170,174170 +22234,22234 +277935,277935 +55577,55577 +30508,30508 +278959,278959 +24114,24114 +54219,54219 +69930,69930 +38293,38293 +23507,23507 +26419,26419 +38564,38564 +375152,375152 +312546,312546 +375549,375549 +65418,65418 +38167,38167 +424174,308385 +314495,314495 +36093,36093 +96402,96402 +416132,1299 +35323,35323 +162535,162535 +73289,73289 +131283,131283 +22513,22513 +38649,38649 +29816,29816 +153841,153841 +101001,101001 +65312,65312 +154741,154741 +186378,186378 +35534,35534 +271527,32441 +25976,25976 +10943,10943 +374338,374338 +388572,388572 +22310,22310 +29622,29622 +118534,118534 +345793,8098 +89388,89388 +392955,463 +109889,109889 +387101,387101 +178579,178579 +34344,34344 +317301,317301 +36017,36017 +247450,247450 +31566,31566 +352678,352678 +350061,351809 +434120,434120 +34234,34234 +37810,37810 +123879,123879 +123808,123808 +415693,415693 +21467,21467 +111068,111068 +153325,153325 +283154,283154 +13050,13050 +23440,23440 +279584,279584 +20712,20712 +36037,36037 +28312,28312 +93151,93151 +6734,6734 +4629,4629 +7126,7126 +22124,22124 +321838,321838 +3136,3136 +24861,24861 +121049,121049 +64147,64147 +184562,184562 +35608,35608 +184536,182983 +21905,21905 +35493,35493 +227115,227115 +59610,59610 +271081,271081 +400199,400199 +17454,17454 +58031,58031 +69854,69854 +13841,13841 +24558,24558 +270839,270839 +262823,262823 +93042,93042 +144971,144971 +19828,19828 +223228,223228 +117935,117935 +183510,183510 +22648,22648 +113568,113568 +17694,17694 +107350,107350 +18751,18751 +224054,224054 +131356,131356 +103078,103078 +337152,337152 +10879,10879 +32774,32774 +325304,325304 +236888,236888 +43505,330676 +359517,359517 +23098,23098 +227090,227090 +422274,422274 +128659,128659 +365291,365291 +15768,15768 +110115,110115 +38459,38459 +384191,384191 +16730,16730 +70852,70852 +137690,137693 +320686,320686 +17845,17845 +340494,340494 +170322,170322 +28748,28748 +249605,249605 +10498,10498 +35862,35862 +101924,101924 +132809,132809 +409494,409494 +369887,369887 +370469,370469 +425162,425162 +345393,345393 +428951,428951 +381793,381793 +137555,137555 +36192,36192 +27444,27444 +179515,179515 +37948,37948 +20656,20656 +19110,19110 +31559,31559 +325757,325757 +39280,39280 +66555,66555 +15640,15640 +344220,344220 +31867,31867 +138063,138063 +119725,119725 +65339,65339 +29530,29530 +11282,11282 +162122,162122 +18219,18219 +226316,463 +32783,32783 +180569,180569 +20343,20343 +40367,40367 +14485,14485 +38458,38458 +34357,34357 +195726,195726 +320838,320838 +124864,124864 +70328,70328 +37832,37832 +131413,131413 +158398,158398 +17084,17084 +150914,150914 +352284,352284 +357858,357858 +95659,95659 +207094,412637 +37955,37955 +20328,20328 +325694,325694 +187333,187333 +126907,126907 +35970,35970 +38438,38438 +103000,103000 +215290,215290 +20098,20098 +128976,128976 +36847,36847 +39788,39788 +37964,37964 +39800,39800 +283333,283333 +415406,415406 +11771,11771 +185453,185453 +36009,36009 +354127,1293 +206774,206774 +136387,136387 +123619,155362 +33428,33428 +190598,190598 +124432,124432 +42579,42579 +377644,377644 +71385,71385 +396138,396138 +63618,63618 +420386,420386 +34348,34348 +40113,40113 +36007,36007 +372836,372836 +35380,35380 +133636,133636 +352614,352614 +175863,175863 +36173,36173 +337817,337817 +147692,147692 +295071,295071 +116165,116165 +129443,129443 +97660,15760 +113355,113355 +99340,99340 +328352,290508 +25054,25054 +64221,64221 +9624,9624 +22971,22971 +30417,30417 +28885,28885 +36252,36252 +21971,21971 +270879,270879 +69470,69470 +425954,425954 +21213,21213 +22873,22873 +24398,24398 +166550,166550 +20067,20067 +362404,362404 +396005,396005 +24650,24650 +289742,289742 +399091,144543 +51044,51044 +285098,285098 +128908,128908 +103923,103923 +12406,12406 +176283,176283 +115679,115679 +110645,110645 +181989,181989 +20561,20561 +35062,35062 +15200,15200 +90386,90386 +30656,30656 +14488,14488 +36355,36355 +269261,269261 +228522,228522 +146588,146588 +71990,71990 +367950,367950 +129350,129350 +260985,260985 +120057,120057 +26812,26812 +177316,177316 +278141,278141 +171389,171389 +306556,306556 +240372,70301 +233200,233200 +29859,29859 +96769,96769 +352619,352619 +330528,330528 +144048,144048 +223690,223690 +114954,114954 +86157,86157 +60602,60602 +96653,96653 +433668,433668 +110374,110374 +101772,101772 +115352,115352 +32492,32492 +240538,240538 +95032,95032 +319072,319072 +35866,35866 +6601,6601 +129249,129249 +240246,240246 +36140,36140 +64443,64443 +39048,39048 +5765,5765 +30376,30376 +319094,319094 +95560,95560 +81707,81707 +227866,227866 +233202,233202 +69117,69117 +128144,128144 +249638,249638 +15968,15968 +126675,126675 +240857,240857 +312507,312507 +7151,7151 +29287,29287 +82090,82090 +31112,31112 +34723,34723 +127587,127587 +344343,344343 +72700,72700 +127072,127072 +72423,72423 +35510,35510 +37244,37244 +16929,16929 +399113,399113 +345274,345274 +30971,30971 +30736,30736 +75089,75089 +336657,336657 +403377,403377 +89924,89924 +132074,132074 +327759,336962 +38638,38638 +86993,86993 +18393,18393 +242204,242204 +61986,61986 +144664,144664 +368101,368101 +109898,109898 +26267,26267 +287074,287074 +22596,22596 +62584,62584 +34739,34739 +21487,30046 +304862,304862 +23277,23277 +164189,164189 +40348,40348 +38082,38082 +90796,90796 +57273,57273 +36767,36767 +67713,67713 +349772,349772 +428982,428982 +290774,590 +31881,31881 +189103,189103 +225970,225970 +423616,423616 +35956,35956 +132424,132424 +21499,21499 +36039,36039 +85593,85593 +219393,219393 +63997,63997 +17085,17085 +169536,169536 +325299,325299 +33628,33628 +38634,38634 +98789,98789 +158355,158355 +300414,300414 +25915,25915 +37858,37858 +120216,55250 +75761,75761 +418100,418100 +29465,29465 +428882,263422 +354202,354202 +90230,90230 +18180,18180 +57173,57173 +29846,29846 +174501,174501 +164750,164750 +38113,38113 +423055,423055 +115882,115882 +6311,6311 +72048,590 +419686,419686 +135210,135210 +41741,41741 +401400,401400 +151876,151876 +228524,228524 +35026,35026 +96800,96800 +55994,55994 +14157,14157 +42288,42288 +35738,35738 +174067,174067 +108120,108120 +13143,13143 +387279,387279 +90776,90776 +233544,233544 +114664,114664 +28919,28919 +16463,16463 +309516,309516 +20946,20946 +243207,243207 +14378,14378 +326359,326359 +147180,147180 +20598,20598 +431851,264282 +72860,72860 +130489,130489 +27218,27218 +417902,417902 +223747,223747 +64827,64827 +211706,211706 +123811,123811 +31597,31597 +28551,28551 +39666,39666 +153563,153563 +41319,41319 +11455,11455 +34076,34076 +37328,37328 +415711,415711 +199416,199416 +162805,162805 +197270,197270 +118463,118463 +351108,351108 +122246,122246 +20727,20727 +362583,362583 +54391,54391 +175843,175843 +324867,324867 +299751,299751 +44245,44245 +37110,37110 +96294,96294 +22974,22974 +34504,34504 +362537,362389 +31616,31616 +59140,59140 +298507,298507 +376177,376177 +153966,153966 +35972,35972 +23952,23952 +9797,9797 +43888,43888 +148743,148743 +377071,377071 +40925,40925 +53165,53165 +43817,43817 +357422,357422 +233199,233199 +40862,40862 +159329,159329 +240896,240896 +291534,291534 +9289,9289 +20480,20480 +31104,31104 +36306,36306 +346432,346433 +16787,16787 +190741,190741 +39268,39268 +115248,115248 +12700,12700 +301745,301745 +13156,13156 +378034,378034 +37816,37816 +265779,265779 +345901,345901 +126232,126232 +33058,33058 +182396,182396 +110110,110110 +38126,38126 +312735,312735 +222501,222501 +130174,130174 +424742,424742 +27314,27314 +27050,27050 +169345,169345 +393326,393326 +361810,361810 +28736,28736 +169344,169344 +390661,390661 +371412,371412 +6285,6285 +202326,202326 +15612,15612 +17871,17871 +401156,401156 +374390,374613 +25467,25467 +171391,171391 +92580,92580 +38620,38620 +48633,48633 +175258,175258 +94690,94690 +338571,338571 +82187,82187 +229259,229259 +36527,36527 +48530,48530 +36323,36323 +340168,340168 +100445,100445 +369128,369128 +181721,181721 +160100,160100 +18831,18831 +33063,33063 +21530,21530 +12840,12840 +268358,268358 +14733,14733 +82211,82211 +342441,342441 +81308,81308 +37939,37939 +175256,175256 +25805,25805 +100005,100005 +21199,21199 +226392,226392 +364392,364392 +312075,15760 +99805,99805 +14320,14320 +308779,308779 +351892,351892 +25208,25208 +151712,151712 +410352,410352 +158867,463 +42048,42048 +363168,363168 +93000,93000 +402500,402500 +228287,228287 +221222,221222 +359393,359393 +387523,387527 +277145,277145 +19369,19369 +53993,53993 +60794,60794 +64236,64236 +133930,133930 +26580,26580 +66766,66766 +37795,37795 +43577,43577 +103634,103634 +414953,414953 +132953,132953 +41883,41883 +31564,31564 +109859,109859 +391715,391715 +57314,42783 +37292,37292 +1567,1567 +95345,398 +119604,119604 +28543,28543 +326265,154892 +2089,2089 +3996,3996 +174,174 +19946,19946 +166448,166448 +198669,198669 +89245,89245 +88996,88996 +229243,229243 +27073,27073 +10593,10593 +191657,191657 +14591,14591 +23552,23552 +14109,14109 +405541,405541 +182532,182532 +389802,389802 +107466,107466 +294491,8720 +11371,11371 +39975,39975 +3601,3601 +392565,392565 +17050,17050 +124357,124357 +105150,105150 +8735,8735 +38729,38729 +26296,26296 +277403,463 +72660,72660 +36652,36652 +87572,87572 +292338,292338 +27982,433816 +207381,207381 +320831,11821 +22045,22045 +61491,61491 +24257,24257 +270043,270043 +43531,43531 +23456,23456 +360158,360158 +147765,147765 +29316,463 +11217,11217 +87584,87584 +4690,4690 +101829,101829 +171112,171112 +243738,243738 +15473,15473 +57707,57707 +17276,17276 +204104,204104 +249744,249744 +207716,207716 +12203,12203 +73257,73257 +259496,259496 +400348,400348 +20318,20318 +31113,31113 +192067,192067 +304035,304035 +378283,463 +421090,421090 +356624,300296 +115573,115573 +9157,9157 +23682,23682 +239723,239723 +20486,20486 +18539,18539 +8549,8549 +134252,134252 +158431,158431 +118693,118693 +21806,21806 +175858,175858 +26194,26194 +68920,68920 +21512,21512 +11505,11505 +323307,323307 +66483,66483 +38289,38289 +27194,27194 +34020,34020 +264680,264680 +27387,27387 +572,572 +180181,180181 +11616,11616 +4372,4372 +240824,240824 +93222,93222 +235702,235702 +31347,31347 +221024,221024 +5144,5144 +20902,20902 +329509,221298 +177575,177574 +66219,66219 +17643,17643 +352338,352338 +18007,18007 +5391,5391 +392657,392657 +18109,18109 +240111,240111 +17232,17232 +99592,99592 +193795,193795 +178364,178364 +195696,195696 +130529,130529 +168287,168287 +127367,127367 +96605,96605 +130658,130658 +181342,147975 +1998,1998 +68868,68868 +10637,10637 +84602,84602 +378148,378148 +2450,2450 +406518,406518 +33842,33842 +3012,3012 +159017,159017 +19247,19247 +15910,15910 +28831,28831 +375146,375146 +35465,463 +229224,463 +355794,355794 +217135,217135 +341703,341703 +151156,151156 +9775,9775 +16615,16615 +297526,297526 +25673,25673 +25209,21942 +216146,463 +348818,348818 +57510,57510 +341302,341302 +28126,28126 +12428,12428 +32432,32432 +140510,140510 +43156,43156 +340999,340999 +40422,40422 +105870,105870 +16438,16438 +71988,71988 +16660,16660 +22762,22762 +191451,191451 +214203,214203 +43500,43500 +276159,276159 +191450,191450 +348248,348248 +231837,231837 +289202,289202 +174689,174689 +36234,36234 +8452,8452 +9520,9520 +18499,18499 +174494,174494 +9299,9299 +7586,7586 +7009,7009 +268471,226860 +1109,1109 +155465,155465 +90471,90471 +8645,8645 +185024,185024 +127092,127092 +4054,4054 +184349,184349 +168785,168785 +31367,31367 +333950,333950 +292661,292661 +25703,25703 +6496,6496 +1754,239770 +6177,6177 +344101,344101 +26957,26957 +17207,17207 +166965,166965 +14980,14980 +12179,12179 +145784,145784 +230477,230477 +3953,3953 +13882,13882 +334619,334619 +296341,463 +9548,9548 +14053,14053 +24875,24875 +267651,267651 +180297,180297 +16691,16691 +402338,402338 +31505,569 +33683,33683 +181038,41107 +156133,156133 +233104,233393 +7221,7221 +238699,238699 +51506,51506 +127829,127829 +278542,278542 +36818,242374 +4584,4584 +31411,31411 +172636,172636 +297208,297208 +19195,19195 +24081,24081 +23842,23842 +150179,150179 +16685,16685 +22112,22112 +22631,22631 +8657,8657 +324162,324162 +29121,29121 +239708,239708 +23976,23976 +35701,35701 +6883,6883 +12968,12968 +151340,151340 +29132,29132 +10497,10497 +174055,174055 +19261,19261 +50625,50625 +198011,198011 +98581,98581 +89614,89614 +9763,9763 +202829,190162 +17031,17031 +7691,7691 +24788,3270 +317936,317936 +242945,242945 +115272,115272 +346079,346079 +38741,38741 +15553,15553 +46420,379645 +65763,65763 +42084,42084 +4883,4883 +24101,24101 +294012,294012 +206853,206853 +193175,193175 +10592,10592 +21864,21864 +25210,25210 +6237,6237 +314402,16986 +34715,34715 +351293,351293 +167455,167455 +285514,285514 +422893,422893 +6523,6523 +3310,3310 +271728,271728 +12887,12887 +236736,236736 +14291,14291 +178163,178163 +35485,35485 +5792,1609 +139843,139843 +21081,21081 +10950,10950 +192633,192633 +104612,104612 +326038,231045 +365314,365314 +17827,17827 +11919,11919 +114443,114443 +359975,359975 +158403,158403 +128783,128783 +24135,24135 +183679,167855 +14872,14872 +92098,92098 +1481,1481 +27773,27773 +209826,209826 +105146,105146 +9370,9370 +2617,2617 +333812,333812 +40369,40369 +9322,9322 +322026,322026 +243689,243689 +23060,23060 +404719,404719 +66522,66522 +17589,17589 +232367,232367 +222589,222589 +1458,1458 +27308,27308 +15408,15408 +343070,343070 +14336,14336 +271305,271305 +2509,2509 +59461,59461 +89076,89076 +219383,219383 +267867,267867 +14615,14615 +163479,163479 +243592,243592 +312532,312532 +24308,24308 +65404,65404 +374064,426362 +88473,88473 +11118,11118 +46979,46979 +296967,296967 +275922,275922 +28607,66047 +370850,370850 +18077,18077 +211995,211995 +13836,13836 +21672,21672 +359485,359485 +35857,35857 +361071,361071 +423474,423474 +151643,151643 +19731,19731 +394183,354300 +285731,285731 +24205,24205 +41265,41265 +377360,377360 +140037,140037 +25839,25839 +106051,106051 +416541,416541 +241035,241035 +96295,96295 +128974,128974 +33862,33862 +342814,342814 +8714,8714 +156728,156728 +175567,175567 +35840,35840 +227078,227078 +5150,5150 +18651,18651 +329330,329330 +37279,37279 +60708,60708 +26443,26443 +39753,39753 +25220,25220 +38846,38846 +32042,32042 +13279,13279 +33503,33503 +269610,267832 +155596,155596 +27095,27095 +16017,16017 +27015,27015 +7246,7246 +7940,7940 +12799,12799 +17176,17176 +25000,25000 +303659,303659 +27955,27955 +26186,26186 +31548,31548 +82679,82679 +21252,21252 +401285,401285 +335921,335921 +133982,133982 +41978,41978 +23693,23693 +328181,328181 +93391,93391 +17173,17173 +158137,158137 +35200,35200 +300618,300618 +382736,382736 +30516,30516 +30633,30633 +101705,101705 +262646,262646 +379833,379833 +206030,206030 +64160,64160 +76448,76448 +176297,176297 +13090,13090 +366706,366706 +163321,163321 +18052,18052 +40325,40325 +154973,154973 +16104,16104 +258029,258029 +227685,227685 +366887,366887 +12161,12161 +29439,29439 +129016,129016 +21204,21204 +171745,171745 +40331,40331 +40301,40301 +138542,138542 +270274,270274 +14884,14884 +205551,205551 +33006,33006 +339937,323716 +19627,19627 +117717,117717 +357305,357305 +176176,176176 +40307,40307 +316877,316877 +98674,98674 +8085,8085 +5368,5368 +173914,173914 +40231,40231 +136811,136811 +34874,34874 +24958,24958 +22214,22214 +11837,11837 +124880,124880 +35491,35491 +13048,13048 +39639,39639 +40616,40616 +33600,38818 +33245,33245 +40306,40306 +5353,5353 +40324,40324 +16919,16919 +16302,16302 +40322,40322 +128503,128503 +180042,180042 +256548,256548 +39313,39313 +154175,154175 +40326,40326 +18900,18900 +38315,38315 +382361,382361 +376484,376484 +39257,39257 +42523,42523 +36828,36828 +144580,144580 +409049,409049 +103751,103751 +11639,11639 +21396,21396 +7874,7874 +148284,148284 +153627,153627 +200598,200598 +265032,265032 +140194,140194 +182389,182389 +281689,281689 +15927,15927 +5785,5785 +72113,72113 +120713,120713 +177943,177943 +31824,463 +24469,24469 +192549,192549 +33938,33938 +41818,41818 +22030,22030 +255740,255740 +20263,20263 +13811,13811 +133784,133784 +40419,40419 +100046,100046 +405236,405236 +30784,30784 +134718,134718 +51600,51600 +17014,17014 +25403,25403 +27704,27704 +17559,17559 +350204,350204 +6722,144670 +307425,307425 +31587,31587 +175830,175830 +12770,12770 +111020,111020 +107784,107784 +65548,65548 +18766,18766 +38785,38785 +38008,38008 +40296,40296 +21112,21112 +7807,7807 +33104,33104 +235874,235874 +54914,186721 +142773,142773 +65338,65338 +14449,14449 +16102,16102 +428030,428030 +62689,62689 +369081,369081 +348816,348816 +284984,284984 +58061,58061 +295127,295127 +10755,10755 +433064,433064 +124848,124848 +40304,40304 +32750,32750 +68480,68480 +40336,40336 +21323,21323 +24983,24983 +6989,6989 +21758,21758 +31788,31788 +66361,66361 +239828,239828 +22531,22531 +193744,193744 +40329,40329 +78546,78546 +96298,96298 +19528,19528 +34378,34378 +19255,19255 +22521,22521 +66262,66262 +19239,19239 +7030,7030 +25864,25864 +14917,14917 +33987,33987 +148303,148303 +281536,281536 +134285,134285 +167947,167947 +66747,66747 +385721,385721 +69237,69237 +3975,3975 +2830,2830 +139121,139121 +125440,125440 +374090,374090 +28338,28338 +14712,14712 +17069,17069 +281537,281537 +366303,366303 +40286,40286 +25237,25237 +4517,4517 +84952,84952 +42680,42680 +264648,264648 +34768,34768 +295830,295830 +402435,402435 +58058,58058 +10729,10729 +35771,35771 +16452,16452 +20502,20502 +40595,40595 +18987,18987 +146295,146295 +204987,204987 +374434,374434 +154743,154743 +2424,2424 +5806,5806 +907,907 +108117,108117 +43279,43279 +33755,33755 +14919,14919 +96314,96314 +352420,352420 +22985,22985 +153252,153252 +175616,175616 +16352,16352 +424871,424871 +258694,258694 +123257,123257 +66373,66373 +97598,97598 +28091,28091 +25740,25740 +14037,14037 +5310,5310 +248995,248995 +245000,245000 +356019,356019 +12513,12513 +115756,115756 +225993,225993 +23940,23940 +18018,18018 +41144,41144 +203054,203054 +32608,32608 +19973,19973 +17215,17215 +361230,361230 +7330,7330 +29987,29987 +146875,146875 +6099,6099 +24555,24555 +156933,156933 +233630,233630 +353685,353685 +30133,30133 +169547,169547 +244509,244509 +18253,18253 +31489,31489 +15524,15524 +26237,26237 +120558,120558 +120864,120864 +203139,203139 +31143,31143 +40632,40632 +22381,463 +14925,14925 +335280,335280 +316039,316039 +88153,88153 +209597,209599 +284212,284212 +128967,128967 +192685,192685 +35373,35373 +38655,38655 +372921,372921 +8772,8772 +22759,22759 +30590,30590 +14950,14950 +146920,41888 +393430,393430 +32942,32942 +11842,11842 +15782,15782 +35776,35776 +27511,27511 +24763,24763 +85560,85560 +26846,26846 +122502,122502 +379374,379374 +32041,32041 +101899,101899 +109582,109582 +309407,938 +119863,119863 +133456,133456 +23841,23841 +146598,146598 +377459,377459 +25531,25531 +46917,46917 +59818,59818 +269213,269213 +62802,62802 +225232,225232 +328396,328396 +362914,463 +418765,418765 +24273,24273 +147165,147165 +54410,54410 +20787,20787 +207484,207484 +157728,157728 +6304,6304 +425685,425685 +20166,20166 +304229,304229 +20383,20383 +118511,118511 +25411,25411 +29838,29838 +30099,30099 +27208,27208 +133838,133838 +258710,258710 +208820,208820 +127097,127097 +157777,157777 +181406,181406 +68179,68179 +70130,70130 +296698,130680 +131685,131685 +17600,17600 +15935,15935 +179782,112268 +325215,325215 +400837,400837 +8777,8777 +35966,35966 +38049,38049 +343374,343374 +376516,376516 +24279,24279 +217489,217489 +35965,35965 +102009,102009 +24593,24593 +248833,248833 +355489,355489 +35336,35336 +137628,137628 +426127,426127 +13424,13424 +26705,26705 +417184,32968 +86783,86783 +325705,325705 +42170,42170 +243329,243329 +91102,91102 +33305,33305 +235853,235853 +237139,237139 +41375,41375 +143790,143790 +132615,132615 +45128,45128 +30788,30788 +35885,35885 +5969,5969 +16347,16347 +25207,25207 +40192,40192 +106531,106531 +340510,248702 +379390,379390 +28153,28153 +22312,22312 +39903,39903 +125193,125193 +26507,26507 +26657,26657 +14906,14906 +31687,31687 +19754,19754 +184873,184873 +12342,12342 +177322,177322 +14195,14195 +340514,340516 +22890,22890 +33555,33555 +115323,115323 +28447,28447 +306713,306713 +55174,55174 +63149,63149 +2869,2869 +32518,32518 +100440,100440 +115853,115853 +406506,406506 +58466,58466 +21223,21223 +267336,267336 +19367,19367 +2325,2325 +25052,25052 +217682,217682 +53091,53091 +176127,176127 +387177,79675 +22917,22917 +39309,39309 +239965,239965 +33936,33936 +156267,156267 +158307,158307 +180952,180952 +197706,197706 +357857,357857 +106968,106968 +12944,12944 +12709,12709 +15922,15922 +50457,50457 +2828,2828 +360337,360337 +14858,14858 +153605,153605 +36829,36829 +38327,38327 +397950,397950 +23719,23719 +362825,362825 +31499,31499 +69972,69972 +29393,29393 +60485,60485 +309685,309685 +62209,62209 +15685,15685 +47314,47314 +120668,120668 +42744,42744 +244988,244988 +191060,191060 +330953,330953 +348449,348449 +372929,372929 +169783,169783 +29431,29431 +349191,349191 +357385,357385 +22044,22044 +11850,162045 +14556,14556 +155767,155767 +231350,231350 +228173,228173 +10384,10384 +413118,413118 +14405,14405 +103463,103463 +183102,183102 +184451,184451 +28164,28164 +15923,15923 +346021,346021 +14318,14318 +38674,38674 +91351,91351 +38240,38240 +21537,21537 +276632,276632 +349728,349728 +149393,149393 +25553,25553 +19595,19595 +34210,34210 +22962,22962 +93433,93433 +11668,11668 +58371,58371 +33449,33449 +277676,277676 +14891,14891 +12664,12664 +4966,4966 +228103,228103 +23647,23647 +419178,419178 +319387,319387 +115734,115734 +291223,291223 +72313,72313 +127540,127540 +34513,34513 +295831,295831 +27192,27192 +347413,347413 +20603,20603 +364670,364670 +178592,178592 +33393,33393 +67792,159818 +59636,59636 +326389,326389 +7170,7170 +17543,17543 +138984,138984 +28118,28118 +118555,118555 +14555,14555 +175796,175796 +8857,8857 +61195,61195 +64829,64829 +110505,110505 +21653,21653 +388065,388065 +42768,42768 +224488,224488 +101771,101771 +35555,35555 +12354,12354 +15174,15174 +37236,37236 +92102,92102 +187123,187123 +376523,376523 +16524,16524 +416787,416787 +27617,27617 +140941,140941 +27720,27720 +22893,22893 +208356,208356 +124007,124007 +322085,322085 +22269,22269 +276885,276885 +170379,170379 +13400,13400 +13068,13068 +137855,137855 +39457,39457 +21068,21068 +24456,24456 +430117,430117 +315529,315529 +14509,14509 +84448,84448 +371037,371037 +332264,332264 +63298,63298 +33342,33342 +11489,11489 +308726,245000 +27067,27067 +340943,340943 +123237,123237 +249604,249604 +276366,276366 +31891,31891 +109240,109240 +14345,14345 +58256,58256 +373833,463 +41172,41172 +25387,10484 +181361,181361 +398359,398359 +179589,179589 +426932,426932 +31389,31389 +218994,218994 +31878,31878 +32859,32859 +320142,320142 +3792,3792 +79720,79720 +363483,363483 +198479,198479 +233121,233121 +7121,7121 +33536,33536 +7305,7305 +279576,279576 +38587,38587 +181748,181748 +373614,373614 +197846,197846 +41226,41226 +109818,109818 +21251,21251 +29147,29147 +176113,176113 +103929,103929 +64168,64168 +17141,17141 +330651,330651 +389047,389047 +378717,378717 +27396,27396 +259467,259467 +12297,12297 +89112,89112 +192785,192785 +12273,12273 +14670,14670 +324666,324666 +82224,82224 +378479,378479 +380177,380177 +312628,312628 +158203,158203 +211806,211806 +333321,333321 +66501,66501 +154780,154780 +176605,176605 +92297,92297 +21760,21760 +9699,9699 +17592,17592 +32985,32985 +37880,37880 +19511,19511 +7787,7787 +404928,404928 +111303,111303 +400869,400869 +98799,98799 +204056,204056 +34797,34797 +156799,156799 +24364,24364 +187616,187616 +194039,194039 +10468,10468 +145700,145700 +359047,359047 +99660,99660 +39897,39897 +342288,342288 +66524,66524 +109929,109929 +229846,229846 +149902,149902 +20555,20978 +351882,351882 +138490,138490 +10160,10160 +47413,47413 +96963,96963 +6094,6094 +345086,345086 +25581,25581 +26682,26682 +377381,377381 +11958,11958 +400678,400678 +61720,61720 +35437,35437 +33226,33226 +156181,156181 +16922,16922 +88601,88601 +419663,419663 +99623,99623 +16886,16886 +25063,25063 +83450,83450 +148197,148197 +245765,245765 +197507,197507 +121851,373563 +114347,114347 +119707,119707 +17860,17860 +35205,35205 +67700,67700 +85288,85288 +22982,22982 +170257,170257 +21379,21379 +59083,59083 +178649,178649 +224669,224669 +28523,28523 +18177,18177 +338862,338862 +134917,134917 +40260,40260 +87465,87465 +62797,62797 +15833,15833 +87449,87449 +60800,60800 +109848,109848 +368752,368752 +292475,292475 +27717,27717 +38033,38033 +30953,30953 +37829,37829 +30197,30197 +34293,34293 +23234,23234 +124195,124195 +122924,122924 +187081,187081 +42555,42555 +67431,67431 +311065,311065 +321497,321497 +410205,410205 +135424,135424 +216422,216422 +72406,72406 +39643,39643 +122730,122730 +22433,22433 +10107,10107 +24006,24006 +363240,363240 +39896,39896 +32862,32862 +431021,431021 +376695,376695 +4727,4727 +109894,109894 +160682,160682 +26139,26139 +16401,16401 +28659,28659 +123744,123744 +15319,15319 +27557,27557 +258338,258338 +50205,50205 +15938,15938 +251468,251468 +12685,12685 +12792,12792 +7214,7214 +38839,38839 +29001,29001 +147435,147435 +16091,16091 +29929,29929 +27485,27485 +36832,36832 +25465,25465 +36179,36179 +128786,128786 +35912,35912 +106065,106065 +105726,105726 +145374,145374 +176211,176211 +131364,348346 +333097,333097 +298759,298759 +56308,56308 +406223,406223 +52107,52107 +35731,35731 +46650,46650 +240694,240694 +15795,15795 +42715,42715 +115576,115576 +109905,109905 +31657,31657 +168330,168330 +14769,14769 +34398,34398 +333142,333142 +6327,6327 +29422,29422 +142434,142434 +36728,36728 +25639,25639 +39607,39607 +182086,352443 +34467,34467 +16408,16408 +20956,20956 +33498,33498 +14912,14912 +17314,17314 +16541,16541 +32034,32034 +134281,134281 +17178,17178 +139559,139558 +7286,7286 +251401,251401 +34647,34647 +27540,28528 +172902,172902 +16155,16155 +254400,254400 +332026,332026 +27021,27021 +36155,36155 +41306,41306 +39479,39479 +17356,17356 +41825,41825 +3121,3121 +5218,5218 +134112,134112 +10359,10359 +15766,15766 +177434,177434 +72007,72007 +24888,24888 +304338,304338 +7910,7910 +428701,428701 +32052,32052 +140599,140599 +11014,11014 +327908,336962 +960,960 +247582,247582 +26120,26120 +132423,132423 +15572,15572 +5612,5612 +77072,77072 +366647,366647 +39168,39168 +137169,137169 +40918,40918 +296104,296104 +370593,370593 +113062,113062 +172524,172524 +8574,8574 +64452,64452 +11761,11761 +26402,26402 +15962,15962 +94488,94488 +109364,109364 +63070,63070 +162358,162358 +224857,224857 +427235,427235 +26821,26821 +167294,167294 +192562,28436 +15035,15035 +15459,15459 +137934,137934 +319790,319790 +142044,142044 +117485,117485 +184557,184557 +18693,18693 +368073,368073 +29906,29906 +53526,53526 +263662,263662 +196991,196991 +134509,134509 +113551,113551 +135292,135292 +38528,38528 +17629,17629 +17810,17810 +12450,12450 +397395,397395 +385342,385342 +28477,28477 +87058,87058 +126913,126913 +5925,5925 +41256,41256 +89943,89943 +4501,4501 +131149,131149 +68867,68867 +111290,111290 +27662,27662 +15921,15921 +10857,10857 +98266,98266 +294304,294304 +43252,43252 +124550,124550 +147066,463 +17916,17916 +176104,176104 +109461,109461 +352404,352404 +66987,66987 +172934,172934 +283522,283522 +25958,25958 +337276,337276 +413325,413325 +20559,20559 +26709,26709 +24383,24383 +29361,29361 +5945,5945 +123608,123608 +5132,5132 +402070,402070 +329717,329717 +115575,115575 +40408,40408 +348193,348193 +234309,234309 +124318,124318 +68239,68239 +13317,13317 +7043,7043 +98973,98973 +7066,7066 +22514,22514 +27963,463 +90187,90187 +119580,119580 +40119,40119 +6105,6105 +31866,31866 +17265,17265 +371361,371361 +27086,27086 +18016,18016 +367996,463 +351588,351588 +30605,30605 +325536,325536 +186959,186959 +240816,240816 +165533,165533 +24546,24546 +294784,294784 +245057,245057 +11720,11720 +20931,20931 +152081,152081 +79996,79996 +36900,36900 +73310,73310 +418232,418232 +34534,34534 +221649,221649 +339709,339709 +180293,180293 +401181,401181 +21341,21341 +81763,81763 +392198,392198 +101719,101719 +318436,318436 +32884,32884 +325921,325921 +103171,103171 +23036,23036 +35433,35433 +227555,227555 +63812,63812 +210960,210960 +250278,250278 +37263,37263 +40372,40372 +104404,104404 +143501,143501 +291621,291621 +182258,182258 +95216,95216 +136809,136809 +19467,19467 +23471,23471 +239098,239098 +327267,327267 +9176,9176 +283441,283441 +150518,150518 +39308,39308 +349195,349195 +4684,4684 +21573,21573 +388851,388851 +350080,350080 +18423,18423 +337447,337447 +137288,137288 +369499,369499 +76403,76403 +113426,113426 +157775,157775 +19869,463 +388507,388507 +42946,42946 +20115,20115 +67821,67821 +67013,67013 +23092,23092 +49131,49131 +149565,149565 +329453,329453 +38292,38292 +87545,87545 +35479,35479 +33863,33863 +38792,38792 +14240,463 +115794,115794 +93557,93557 +285971,285971 +47929,47929 +17627,17627 +143294,143294 +38793,38793 +289965,289965 +5127,5127 +30331,861 +160617,150485 +364237,364237 +181042,248584 +173157,173157 +33830,33830 +3915,3915 +258171,202204 +194688,194688 +10926,10926 +282094,293053 +323087,207796 +176172,176172 +191470,191470 +157049,157049 +163151,163151 +234653,234653 +168755,168755 +32415,32415 +314348,314348 +136244,136244 +208698,234473 +1440,1440 +37396,37396 +27847,27847 +14313,14313 +305268,305268 +35506,35506 +22089,22089 +98737,98737 +88884,88884 +69885,69885 +15392,15392 +256817,256817 +19135,19135 +92961,92961 +114444,114444 +28106,28106 +137088,137088 +24785,463 +237697,237697 +144990,144990 +245648,245648 +360943,463 +135970,135970 +92152,92152 +142294,142294 +232983,232983 +147858,4299 +111292,111292 +140840,140840 +86174,86174 +11258,11258 +286791,286791 +2867,463 +59071,59071 +365470,365470 +281264,371555 +34759,34759 +245998,245998 +8675,8675 +19949,19949 +131404,131404 +40230,40615 +40659,40659 +16139,16139 +311266,311266 +1911,1911 +85841,85841 +9670,9670 +20831,20831 +99973,99973 +141314,141314 +24395,24395 +68500,68500 +50808,50808 +111454,111454 +9373,9373 +217948,217948 +18379,18379 +370651,370651 +22830,22830 +339551,339551 +118408,118408 +287302,287302 +103556,103556 +189064,189064 +12104,12104 +19227,19227 +100465,100465 +27011,27011 +28049,28049 +277404,463 +262819,262819 +78325,78325 +31147,31147 +104976,104976 +15902,15902 +3295,3295 +201453,201453 +11701,11701 +159396,159396 +67509,67509 +298151,298151 +11194,11194 +15166,15166 +380161,175510 +43487,43487 +15555,15555 +6437,6437 +65103,65103 +293460,293460 +12849,12849 +253629,253629 +28328,28328 +16309,16309 +77259,77259 +185733,185733 +163605,163605 +9715,9715 +194952,194952 +212348,212348 +208,208 +156567,156567 +5735,5735 +131856,131856 +272770,272770 +309886,309886 +15991,15991 +172063,172063 +93199,93199 +348966,348966 +1596,1596 +64648,64648 +153567,153567 +154551,75529 +283159,283159 +135084,135084 +202010,202010 +168064,168064 +269091,269091 +421264,234 +11651,11651 +240099,240099 +14660,14660 +41664,41664 +35058,35058 +206520,206520 +285861,285861 +228311,228311 +59048,59048 +1417,1417 +119474,157683 +37498,37498 +247847,247847 +11691,463 +361457,235451 +29680,29680 +189886,189886 +135154,135154 +11326,11326 +59060,59060 +5215,143560 +127506,173463 +7152,7152 +4140,4140 +43174,43174 +32645,32645 +14694,14694 +281920,281920 +232969,232969 +72364,72364 +99986,99986 +158716,158716 +20091,20091 +142704,142704 +31289,31289 +35927,35927 +3301,3301 +17083,17083 +16578,16578 +25887,25887 +146774,146774 +65746,65746 +43193,43193 +16026,16026 +34019,34019 +433352,433352 +13790,13790 +106003,106003 +39765,39765 +152409,152409 +96413,96413 +39951,39951 +30366,30366 +12820,12820 +119730,119730 +16557,16557 +40068,40068 +184442,405016 +305587,305997 +20246,20246 +1909,1909 +6233,6233 +41894,8790 +93275,93275 +34984,34984 +318059,318059 +103687,103687 +62294,62294 +239504,255546 +386102,386102 +1639,1639 +5799,147881 +254540,254540 +159053,159053 +16223,16223 +302014,302014 +193013,184078 +355444,355444 +5076,5076 +29523,29523 +28270,28270 +35346,35346 +183604,183604 +104652,104652 +135799,135799 +225728,225728 +152421,74 +191199,191199 +219183,219183 +35170,34444 +32425,32425 +1903,1903 +15253,15253 +25115,25115 +10385,10385 +30592,26292 +236371,236371 +260382,260382 +66238,186905 +38570,38570 +14401,14401 +296036,296036 +119272,119272 +29452,29452 +25913,25913 +340189,340189 +24493,24493 +22326,22326 +179846,179846 +163023,163023 +408882,408882 +3703,3703 +392806,392806 +139684,139684 +2898,2898 +7524,7524 +214098,214098 +7615,7615 +134519,134519 +327301,327301 +265716,265716 +164939,164939 +12907,3270 +109679,109679 +5832,5832 +4697,4697 +1539,1539 +6961,6961 +237688,237688 +11033,11033 +360510,360510 +253993,253993 +170857,170857 +15339,15339 +22834,22834 +145309,145309 +182320,182320 +321196,321196 +99557,99557 +10393,10393 +347550,347550 +183347,183347 +366306,366306 +171143,171143 +17416,17416 +129727,129727 +343956,343956 +43240,43240 +224171,224171 +274787,274787 +4161,4161 +29063,29063 +191857,191857 +29247,29247 +33502,33502 +25222,25222 +34054,34054 +152741,152741 +12911,12911 +32889,32889 +21248,21248 +130644,130644 +12072,12072 +102333,102333 +358283,358283 +14160,14160 +16264,16264 +376314,376314 +14745,14745 +26962,26962 +28435,28435 +148386,148386 +42834,42834 +118457,118457 +23034,23034 +67327,67327 +66819,66819 +305676,305676 +151192,151192 +26558,26558 +289231,463 +28716,28716 +324680,3818 +18565,18565 +115829,9556 +127926,127926 +140479,140479 +29084,29084 +164544,164544 +19516,19516 +36505,36505 +32195,32195 +105053,105053 +22341,22341 +28524,28524 +2278,2278 +6858,6858 +160819,160819 +10053,10053 +26116,26116 +26166,26166 +408588,408588 +232596,232596 +201839,201839 +302016,302016 +253992,253992 +39083,39083 +10867,10867 +314116,314116 +120860,120860 +20451,20451 +8628,8628 +254897,254897 +29143,29143 +6835,6835 +29920,29920 +26652,26652 +100058,100058 +367143,367143 +269522,269522 +9658,9658 +254266,254266 +119365,119365 +40884,40884 +72970,72970 +9649,9649 +18206,18206 +11943,11943 +33089,33089 +135238,135238 +8625,8625 +93237,93237 +375562,375562 +130013,130013 +4913,4913 +26871,26871 +153312,153312 +359883,359883 +27450,27450 +35384,35384 +60031,60031 +26094,26094 +353281,353281 +28538,28538 +35730,35730 +4003,4003 +64051,3825 +8275,8275 +129530,129530 +72712,72712 +327608,327608 +233220,233220 +18143,18143 +17905,17905 +175761,175761 +8681,8681 +306827,306827 +110263,110263 +381500,381500 +174297,174297 +286809,286809 +355642,355642 +366915,366915 +13727,463 +21381,21381 +387304,387304 +268010,268010 +200496,200496 +133530,133530 +363827,364384 +100489,100489 +246070,246070 +331287,331287 +14865,14865 +18271,18271 +229689,229689 +9008,9008 +37966,37966 +362957,362957 +160454,160454 +20243,20243 +18322,18322 +14166,14166 +31872,31872 +28616,28616 +14302,14302 +17662,17662 +97294,271460 +21021,21021 +15071,15071 +266835,266835 +174845,174845 +164172,164172 +17460,17460 +8584,36408 +14282,14282 +304907,304907 +28255,28255 +23344,38501 +16089,16089 +16333,16333 +15293,15293 +29880,29880 +72676,72676 +53750,53750 +364736,364736 +105290,105290 +182534,182534 +14287,14287 +20900,20900 +342701,342701 +21279,21279 +12739,12739 +17040,17040 +7594,7594 +122910,122910 +197711,79413 +248232,248232 +323268,323268 +8540,8540 +34678,34678 +156751,156751 +176112,176112 +28374,28374 +10874,10874 +9836,9836 +180191,6321 +72684,72684 +25339,25339 +31976,31976 +20895,20895 +97676,97676 +35847,35847 +332080,332080 +104214,104214 +120231,120231 +30121,30121 +64069,64069 +357435,357435 +35430,35430 +150813,150813 +319482,319482 +159139,159139 +283433,283433 +122832,463 +313716,313716 +2594,2594 +185407,185407 +327609,327609 +12008,12008 +398164,398164 +25072,25072 +413500,413500 +9253,9253 +209007,209007 +167675,167675 +381145,381145 +25296,25296 +94993,94993 +355960,355960 +6131,6131 +360902,360902 +9965,9965 +60191,60191 +97827,97827 +26042,26042 +8165,8165 +42456,42456 +40293,40293 +181745,181745 +11145,11145 +10026,10026 +297704,297704 +65064,65064 +40297,40297 +17727,17727 +340571,340571 +120229,120229 +208367,208367 +22298,22298 +135685,135685 +343003,343003 +21187,21187 +95933,95933 +267863,267863 +38554,38554 +101951,101951 +28032,28032 +274472,274472 +19315,19315 +191443,290508 +157655,157655 +28401,28401 +153585,153585 +230777,230777 +17408,17408 +18015,463 +34244,463 +287744,287744 +16001,16001 +114538,114538 +4061,4061 +27234,27234 +246329,318409 +430592,358690 +191389,191389 +69825,69825 +315018,315018 +21853,21853 +33648,33648 +16300,16300 +23687,23687 +140219,140219 +72917,72917 +29024,29024 +39036,39036 +414465,414465 +145329,145329 +219345,34438 +22913,22913 +95428,95428 +44844,44844 +25070,25070 +15856,15856 +42318,42318 +153360,153360 +265619,265619 +40256,40256 +278733,278733 +224107,224107 +138224,138224 +26668,26668 +55238,55238 +18221,18221 +297945,297945 +12917,12917 +227358,227358 +346149,346149 +175343,175343 +44768,44768 +140159,140159 +75172,75172 +11643,11643 +380504,380504 +17266,17266 +27375,27375 +362328,362328 +328721,328721 +58317,58317 +37479,37479 +10112,10112 +57673,57673 +17630,17630 +429467,429467 +151058,151058 +228227,228227 +11793,11793 +191000,191000 +18230,18230 +283250,283250 +42023,42023 +137622,137622 +14825,14825 +151794,151794 +402984,402984 +65771,65771 +4115,4115 +334290,334290 +12257,12257 +22313,22313 +267888,267888 +121036,121036 +13550,13550 +76717,76717 +26253,26253 +110571,110571 +41313,41313 +24012,24012 +403108,403108 +9542,9542 +6769,6769 +161919,161919 +337223,337223 +367019,367019 +15687,15687 +46542,46542 +134257,134257 +246076,246076 +11463,11463 +246012,246012 +199940,199940 +113113,113113 +395311,395311 +32661,32661 +33841,33841 +38720,38720 +152936,152936 +16098,16098 +16963,16963 +261455,261455 +246072,246072 +32392,32392 +195310,195310 +31951,31951 +103736,103736 +22932,22932 +136539,136539 +139824,139824 +27820,27820 +12042,12042 +176465,176465 +317126,317126 +35261,35261 +40189,40189 +88630,88630 +24526,24526 +14412,14412 +12619,12619 +254551,254551 +30464,30464 +81742,81742 +14600,14600 +30719,30719 +232982,232982 +15023,15023 +85306,130246 +16956,16956 +391564,391564 +22717,22717 +128105,128105 +141549,141549 +11442,11442 +23256,23256 +294592,67254 +139753,139753 +5984,5984 +129102,129102 +94687,94687 +11264,11264 +92252,92252 +16270,16270 +21724,21724 +16491,16491 +36840,36840 +171266,171266 +21107,21107 +406159,433431 +92556,92556 +347425,347425 +281518,281518 +16081,16081 +11844,285020 +152744,152744 +129754,129754 +270954,270954 +372826,372826 +40037,40037 +21215,21215 +63767,63767 +17637,17637 +168116,168116 +26741,26741 +16536,16536 +268947,268947 +400711,400711 +192308,192308 +267115,267115 +10695,10695 +410506,410506 +171582,171582 +3690,3690 +42371,42371 +133499,133499 +46726,46726 +95605,95605 +236160,236160 +5602,5602 +10430,10430 +16697,16697 +30110,30110 +31246,31246 +312188,312188 +155698,155698 +269471,13972 +12814,12814 +18630,18630 +28245,28245 +288897,288897 +62996,62996 +414666,414666 +182341,182341 +186740,186740 +86209,86209 +1340,1340 +10335,10335 +14504,14504 +4591,4591 +152709,152709 +172370,172370 +22325,22325 +140202,140202 +124454,124454 +28777,28777 +401011,335204 +15908,15908 +363271,363271 +11569,11569 +340998,340998 +17360,17360 +26254,26254 +93378,93378 +31386,31386 +263919,263919 +229083,229083 +35772,35772 +42563,42563 +110507,110507 +26951,26951 +21579,21579 +68106,68106 +94959,94959 +76104,76104 +39506,39506 +21498,21498 +41330,41330 +18106,18106 +191524,191524 +28513,28513 +270939,148575 +400026,428816 +10406,10406 +27090,27090 +340512,340516 +131898,131898 +132319,132319 +155984,155984 +10735,10735 +23790,23790 +115034,19204 +25916,25916 +112540,112540 +8968,8968 +28618,28618 +92024,92024 +305074,305074 +316569,316569 +336718,336718 +93263,93263 +19703,19703 +34806,34806 +34066,34066 +81310,81310 +23742,23742 +34056,34056 +273956,273956 +4751,4751 +385585,385585 +300150,300150 +36137,36137 +20463,20463 +267922,267922 +17523,17523 +15693,15693 +219376,219376 +227749,227749 +353264,353264 +20114,20114 +346971,346971 +92980,92980 +160980,160980 +72461,72461 +15751,15751 +11546,11546 +63241,63241 +313405,313405 +346774,346774 +192078,192078 +366299,366299 +116769,116769 +304653,304653 +318500,318500 +314049,314049 +409110,409110 +24559,24559 +207538,207538 +22121,22121 +13237,13237 +230816,9398 +239503,239503 +86459,86459 +8118,8118 +138726,138726 +106870,106870 +166930,166930 +386753,386753 +110354,110354 +35545,35545 +15346,15346 +11723,11723 +419687,43443 +20863,20863 +158409,158409 +13195,13195 +40987,40987 +238759,238759 +9283,9283 +32173,32173 +7028,7028 +66705,66705 +170438,170438 +336084,336084 +218097,218097 +28275,28275 +78552,78552 +146931,146931 +128473,128473 +66222,66222 +70507,70507 +29516,29516 +114803,114803 +66232,66232 +250542,250542 +365447,365447 +29152,29152 +20384,20384 +241842,241842 +9361,9361 +351971,351971 +64223,64223 +88297,88297 +157813,157813 +159840,159840 +417808,417808 +237693,237693 +37084,37084 +122503,122503 +31239,31239 +321953,321953 +13168,13168 +287446,287446 +4756,4756 +24868,24868 +31562,31562 +37333,37333 +27010,27010 +242345,242345 +66050,66050 +153146,153146 +41257,41257 +97692,97692 +23943,23943 +34997,34997 +30890,30890 +184886,184886 +24010,24010 +192884,192884 +177235,177235 +27058,27058 +173929,174006 +283488,283488 +187521,187521 +212761,212761 +168290,168290 +66723,66723 +6057,6057 +20730,20730 +13483,13483 +154896,154896 +42167,42167 +21591,21591 +148382,148382 +16293,16293 +131229,131229 +11222,11222 +30196,30196 +58097,58097 +325005,325005 +400804,400804 +31892,31892 +35445,35445 +405235,405235 +154126,154126 +42322,42322 +367357,367357 +126005,126005 +330821,330821 +353726,353726 +128007,128007 +35129,35129 +123584,123584 +198735,198735 +36945,36945 +23275,23275 +359038,359038 +198386,198386 +22539,22539 +150483,150483 +256510,159865 +23942,23942 +13369,13369 +381727,381727 +268904,268904 +28413,28413 +281021,281021 +97602,97602 +374774,374774 +24215,24215 +320147,320147 +34675,34675 +369550,432733 +34823,34823 +86895,86895 +10865,10865 +147863,3937 +340161,340161 +263266,263266 +286635,286635 +66478,66478 +66663,66663 +87476,87476 +189217,189217 +24133,24133 +19642,19642 +333900,333900 +66757,66757 +25927,25927 +41368,41368 +103425,103425 +295451,295451 +69065,69065 +377703,377703 +39079,39079 +200790,200790 +153382,153382 +22471,22471 +115309,115309 +29360,29360 +230336,230336 +122530,122530 +164668,164668 +35976,35976 +24583,24583 +110943,110943 +376929,376929 +137946,137946 +134195,134195 +35087,35087 +209744,209744 +38178,38178 +110482,110482 +31311,31311 +60796,60796 +32734,32734 +121613,121613 +39967,39967 +154378,154378 +21267,21267 +29747,29747 +360456,360456 +122547,122547 +238669,238669 +119298,119298 +283539,283539 +116114,116114 +127091,127091 +62653,62653 +228286,228286 +30304,30304 +22443,22443 +35280,35280 +181432,181432 +161775,161775 +58370,58370 +26408,26408 +35946,35946 +61486,61486 +25319,25319 +11238,11238 +12546,12546 +255958,255958 +49323,49323 +70250,70250 +39200,39200 +70091,408715 +92708,92708 +343295,343295 +350785,350785 +133360,133360 +16542,16542 +31743,31743 +40600,40600 +123445,123445 +104753,104753 +32191,32191 +209137,209137 +169193,169193 +359345,359345 +274301,274301 +20249,20249 +6645,6645 +19887,19887 +353635,315334 +340138,340138 +28690,28690 +96396,96396 +161076,161076 +407462,407462 +351577,351577 +168289,168289 +111766,111766 +11571,11571 +186595,186595 +22262,22262 +178003,178003 +39115,39115 +14603,14603 +174475,174475 +300299,300299 +111017,111017 +210628,210628 +435035,271460 +43612,43612 +39504,39504 +309541,309541 +129353,129353 +229723,229723 +420762,166633 +105045,105045 +12807,12807 +231871,231871 +27737,27737 +26758,26758 +73428,73428 +63398,63398 +5092,5092 +41544,41544 +86878,86878 +43396,43396 +147204,147204 +287081,287081 +25882,25882 +67716,67716 +22584,22584 +123482,123482 +373552,373552 +4662,4662 +57878,57878 +40663,40663 +60185,60185 +28227,28227 +161064,161064 +21011,21011 +231024,231024 +50244,50244 +228566,228566 +64561,64561 +312492,312492 +21938,21938 +138562,138562 +141684,141684 +130782,130782 +358055,358055 +356850,356850 +9747,9747 +278691,278691 +324678,324678 +253053,253053 +292359,292359 +37957,37957 +28125,28125 +15114,15114 +42248,42248 +124705,124705 +25443,25443 +46659,46659 +164355,164355 +268937,268937 +106296,106296 +35535,35535 +147388,147388 +312454,312454 +110035,110035 +51975,51975 +35059,35059 +29649,29649 +125783,125783 +97397,97397 +63956,63956 +150313,150313 +150291,150291 +231232,231232 +120333,120333 +29894,29894 +35324,35324 +96474,96474 +269525,269525 +135809,135809 +120979,120979 +80811,80811 +328873,328873 +193034,193034 +17495,17495 +13604,13604 +35980,35980 +145892,145892 +261485,261485 +23811,23811 +352141,352141 +10141,10141 +38160,38160 +228289,228289 +190558,190558 +27807,27807 +187132,187132 +406219,406219 +138225,138225 +103895,103895 +406672,406672 +23479,23479 +129291,129291 +377488,377488 +32370,32370 +272048,272048 +82609,82609 +428680,428680 +411376,411376 +7117,7117 +13947,13947 +329631,329631 +63020,63020 +36170,36170 +19757,19757 +34606,34606 +33504,33504 +224016,224016 +38470,38470 +337189,251726 +227073,227073 +309873,309873 +23415,23415 +147123,147123 +419972,419972 +397838,397838 +115632,115632 +139369,139369 +15732,15732 +21094,21094 +91992,91992 +2964,2964 +295065,295065 +6167,6167 +34646,34646 +312398,312398 +420907,420907 +18540,18540 +316118,316118 +371213,371213 +153897,153897 +173549,173549 +180868,180868 +376522,376522 +4321,4321 +137385,137385 +36111,36111 +24667,24667 +28330,28330 +312677,312677 +170614,170614 +119646,119646 +12653,12653 +340576,340576 +232934,232934 +284844,284844 +33399,33399 +154964,154964 +228228,228228 +121536,121536 +23922,23922 +55175,55175 +26112,26112 +56741,56741 +38165,38165 +73058,73058 +256183,256183 +101121,101121 +423057,423057 +160825,160825 +186795,186795 +72001,72001 +137137,137137 +230140,230140 +47025,47025 +377797,377797 +124412,124412 +199166,199166 +312671,312671 +164463,164463 +41678,41678 +423774,423774 +21761,21761 +339712,339712 +163086,163086 +36056,36056 +33675,33675 +174144,174144 +228174,228174 +260463,260463 +95322,95322 +83088,83088 +339508,339508 +47670,47670 +421331,421331 +21587,21587 +29620,29620 +64123,64123 +95750,95750 +103537,103537 +343901,343901 +410181,410181 +31349,31349 +30484,30484 +372028,372028 +352008,352008 +18415,18415 +246617,246617 +35969,35969 +7432,7432 +43145,3956 +20339,20339 +421952,421952 +39135,39135 +36574,36574 +342068,156714 +29647,29647 +120868,120868 +340971,340971 +36151,36151 +123535,123535 +224812,224812 +5596,5596 +38161,38161 +37057,37057 +17446,17446 +168275,168275 +24755,24755 +21571,21571 +264598,264598 +182167,182167 +251372,251372 +357536,357536 +52620,52620 +102182,102182 +139631,139631 +36183,36183 +363989,363989 +321956,321956 +281267,14010 +21440,21440 +13571,13571 +37363,246046 +15530,15530 +128799,128799 +151049,151049 +263293,263293 +291986,291986 +99597,99597 +37961,37961 +38248,38248 +124508,124508 +27805,27805 +30540,30540 +12808,12808 +40907,40907 +25909,25909 +156354,156354 +64381,64381 +11078,11078 +20572,20572 +36850,36850 +104929,104929 +124719,124719 +37821,37821 +203354,203354 +36003,36003 +21445,21445 +17291,17291 +36133,36133 +261214,261214 +229608,229608 +36176,36176 +36091,36091 +333350,333350 +363492,363492 +228295,228295 +38158,38158 +345593,345593 +428519,428519 +254406,254406 +241330,241330 +37217,37217 +104971,104971 +343671,343671 +401004,401004 +82084,82084 +52027,52027 +324796,324796 +409499,409499 +250983,250983 +29129,29129 +35074,35074 +399765,253048 +327902,327902 +21624,21624 +43208,43208 +25430,25430 +37865,37865 +230425,230425 +34717,34717 +6733,6733 +38256,38256 +195461,195461 +34360,34360 +64448,64448 +171337,171337 +184365,184365 +259010,259010 +230599,230599 +300623,300623 +99378,99378 +331989,331989 +187665,187665 +86432,86432 +122653,122653 +54240,54240 +119053,119053 +42496,42496 +350156,350156 +13850,13850 +186190,186190 +40150,40150 +68966,68966 +17321,17321 +116372,116372 +59099,59099 +64799,64799 +36210,36210 +412691,412691 +133014,133014 +126617,126617 +401551,401551 +41847,41847 +182501,182501 +180490,180490 +36296,36296 +106871,106871 +26593,26593 +229508,229508 +393840,393840 +11785,11785 +406093,406093 +91526,91526 +31179,31179 +232933,232933 +30308,30308 +188629,188629 +120631,120631 +257691,257691 +221188,221188 +67971,67971 +86596,86596 +106297,106297 +122128,122128 +109892,109892 +420309,420309 +32914,32914 +325569,325569 +109719,109719 +16386,16386 +34041,34041 +49914,49914 +225192,225192 +35165,35165 +125195,125195 +56293,56293 +29450,29450 +30806,30806 +43461,43461 +30682,30682 +37806,37806 +227870,227870 +339936,339936 +323970,323970 +41365,41365 +356065,356065 +158394,158394 +331409,65087 +356297,356297 +36020,36020 +291803,291803 +198922,198922 +180005,180005 +22794,22794 +64816,64816 +67332,67332 +25987,8493 +59779,59779 +406413,406413 +331562,331562 +36209,36209 +38757,38757 +86251,86251 +39859,39859 +36805,36805 +162325,162325 +63023,63023 +97103,97103 +433840,433840 +25445,25445 +55457,55457 +115669,115669 +25189,40131 +113406,113406 +22390,22390 +36153,36153 +44026,44026 +386530,386530 +150265,150265 +126523,126523 +227562,227562 +125631,125631 +15844,15844 +66264,66264 +118969,118969 +95494,95494 +421797,421797 +36245,36245 +33578,33578 +23290,23290 +22371,22371 +76675,76675 +426040,426040 +293527,10415 +60503,60503 +134555,134555 +333103,333103 +236212,236212 +30849,30849 +159849,159849 +14311,14311 +139055,139055 +21699,21699 +132288,132288 +40397,40397 +24596,24596 +213647,213647 +8971,8971 +52505,52505 +27168,27168 +309971,272443 +115197,115197 +32247,32247 +11898,11898 +12565,12565 +208958,208958 +30825,30825 +128952,128952 +145647,145647 +37941,37941 +49113,49113 +88959,88959 +10136,10136 +18863,18863 +263188,263188 +433665,433665 +173328,173328 +43341,43341 +140086,140086 +132374,132374 +21448,21448 +134210,134210 +9450,9450 +34447,34447 +48276,48276 +163693,163693 +65414,65414 +33051,33051 +62236,62236 +10823,10823 +368334,368334 +104389,104389 +306144,109548 +23119,23119 +30039,30039 +401150,401150 +52716,52716 +55708,55708 +56439,56439 +430816,160851 +24561,24561 +17946,17946 +343749,343749 +99634,99634 +240795,240795 +42073,42073 +125845,125845 +34608,34608 +60184,60184 +343751,343751 +26547,119465 +31141,31141 +33608,33608 +38173,38173 +256163,256163 +231798,231798 +240617,240617 +49180,49180 +97379,97379 +58979,58979 +38687,38687 +197216,197216 +97838,97838 +326046,326046 +245748,245748 +242729,242729 +186345,186345 +386754,386754 +72097,72097 +12594,12594 +106675,106675 +34850,34850 +119111,119111 +17309,17309 +416331,416331 +360211,360211 +154994,154994 +32943,32943 +397599,181523 +38175,38175 +48650,48650 +36019,36019 +4709,4709 +38530,38530 +186906,186906 +354931,354931 +200139,200139 +14598,14598 +67379,67379 +109861,109861 +139734,139734 +38169,38169 +64522,64522 +38902,38902 +37188,37188 +240615,240615 +30858,30858 +31679,17927 +15470,15470 +400101,400101 +101258,101258 +184045,184045 +144858,144858 +187221,187221 +54629,54629 +186957,186957 +178709,178709 +34337,34337 +4638,4638 +119723,119723 +231797,231797 +175143,175143 +93644,93644 +297082,297082 +228592,228592 +306345,306345 +360518,360518 +36185,36185 +45923,45923 +405700,405700 +37764,37764 +60187,60187 +62321,62321 +123382,123382 +103842,103842 +398151,398151 +35999,35999 +36001,36001 +184939,184939 +112808,112808 +34429,34429 +159462,159462 +393594,393594 +20270,20270 +31849,31849 +37860,37860 +58730,58730 +68154,68154 +122553,122553 +175241,175241 +35762,35762 +202519,202519 +36119,36119 +115665,115665 +26903,26903 +36304,36304 +36389,36389 +18432,18432 +178430,178430 +26036,26036 +335899,335899 +52347,52347 +352813,352813 +30193,30193 +331058,331058 +71571,71571 +127802,127802 +34521,34521 +36114,36114 +296333,296333 +135894,135894 +129900,129900 +215147,215147 +14243,463 +8680,8680 +36089,36089 +62322,62322 +283771,283771 +37837,37837 +328147,328147 +414759,414759 +376024,376024 +35948,35948 +421820,421820 +26311,26311 +173635,173635 +62036,62036 +35716,35716 +23902,23902 +11653,11653 +77219,77219 +16656,16656 +247452,41509 +202221,202221 +33659,33659 +8866,8866 +18279,18279 +60407,60407 +84642,84642 +33886,33886 +370840,370840 +367184,367184 +32039,32039 +124591,124591 +43060,43060 +54651,54651 +307538,307538 +38163,38163 +103848,103848 +297412,297412 +288283,288283 +98520,98520 +5340,5340 +19122,19122 +134432,134432 +36128,36128 +131139,131139 +164787,164787 +127683,127683 +175278,175278 +247667,247667 +51780,51780 +100564,100564 +420067,420067 +84618,84618 +20744,20744 +337975,337975 +402541,402541 +41055,41055 +133653,133653 +96524,96524 +230468,230468 +70266,70266 +111974,111974 +237131,237131 +31044,31044 +39443,39443 +32435,32435 +51783,51783 +352766,352766 +32954,32954 +376887,376887 +121494,121494 +38770,38770 +276883,276883 +19680,19680 +161723,161723 +10935,10935 +193395,193395 +36116,36116 +117699,117699 +36144,36144 +67275,67275 +109870,109870 +413463,413463 +20062,20062 +25996,25996 +29027,29027 +428839,428839 +70150,70150 +226353,226353 +23599,23599 +359158,158965 +424869,424869 +224015,224015 +228031,228031 +52082,52082 +17252,17252 +38257,38257 +36135,36135 +103733,103733 +172516,172516 +38162,38162 +118443,118443 +30513,30513 +134932,134932 +29763,29763 +312900,312900 +15714,15714 +37215,37215 +155410,155410 +132725,132725 +127069,127069 +12580,12580 +230120,230119 +83811,83811 +338684,338684 +254742,254742 +231026,231026 +35069,35069 +37985,37985 +98264,98264 +143590,463 +191712,191712 +229911,229911 +15488,15488 +408988,408988 +154355,154355 +34631,34631 +178648,178648 +17593,17593 +5595,5595 +144593,144593 +306063,306063 +22976,22976 +21486,21486 +103633,103633 +35978,35978 +99018,99018 +30154,30154 +58015,58015 +97454,97454 +231796,231796 +36090,36090 +38487,38487 +368713,368713 +34458,34458 +25099,25099 +36184,36184 +60203,60203 +258709,258709 +99236,99236 +140942,140942 +36177,36177 +61908,61908 +126979,126979 +178405,178405 +36150,36150 +141470,141470 +174247,174247 +129299,129299 +162180,162180 +85953,85953 +237077,237077 +36261,36261 +88432,88432 +31041,31041 +237000,237000 +36172,36172 +36126,36126 +36130,36130 +137428,137428 +37845,37845 +32790,32790 +231969,231969 +39640,39640 +166554,166554 +35107,35107 +300443,300444 +337867,319918 +355202,355202 +197825,197825 +73190,73190 +40646,40646 +34341,34341 +18255,18255 +115666,115666 +19810,19810 +333763,333763 +137038,137038 +16531,16531 +137187,137187 +46752,46752 +186145,186145 +21398,21398 +65099,65099 +351553,351553 +123666,123666 +35916,35916 +24343,24343 +33636,33636 +246786,246786 +36101,36101 +27977,27977 +108841,108841 +64196,64196 +26893,26893 +124411,124411 +153970,153970 +359607,359607 +15472,15472 +36024,36024 +127603,127603 +31818,31818 +124158,124158 +219424,219424 +406541,406541 +282032,282032 +66261,66261 +175681,175681 +2522,2522 +257838,257838 +179736,194952 +189152,189152 +27205,27205 +42811,42811 +183639,183639 +326425,326425 +115655,115655 +349762,349762 +11659,11659 +180476,180476 +57192,57192 +111058,111058 +128464,128464 +39991,39991 +139106,158355 +401621,401621 +100187,100187 +173838,173838 +15292,15292 +132802,132802 +109079,109079 +64759,64759 +280317,280317 +30182,30182 +29318,29318 +334886,334886 +19218,19218 +352770,352770 +197504,197504 +8686,8686 +38184,38184 +67697,67697 +38255,38255 +16653,16653 +282676,282676 +328014,328014 +122645,122645 +99606,99606 +6055,6055 +135778,135778 +43063,43063 +100458,100458 +327891,327891 +139327,139327 +39542,39542 +131667,131667 +26290,26290 +191441,191441 +309872,309872 +36005,36005 +30234,30234 +434106,434106 +220236,220236 +32090,32090 +127751,127751 +134312,134312 +391340,391340 +435067,463 +370186,370186 +89687,89687 +165191,165191 +102199,102199 +10313,10313 +39522,39522 +383530,383530 +20652,20652 +15984,15984 +195285,195285 +49034,49034 +376513,376513 +261073,261073 +33817,33817 +26885,26885 +35997,35997 +112702,112702 +28147,28147 +382184,382184 +41025,41025 +29503,29503 +154377,154377 +41497,41497 +324124,324124 +152368,152368 +300445,300445 +24828,24828 +61204,61204 +32357,32357 +88992,88992 +51386,51386 +6104,6104 +24399,24399 +27795,27795 +202037,202037 +430420,430420 +44500,44500 +203091,203091 +154031,154031 +37840,37840 +95285,95285 +348394,348394 +95031,95031 +34224,34224 +15545,15545 +83226,83226 +92251,92251 +173829,173829 +20479,20479 +174406,174406 +336642,336642 +420261,420261 +170299,170299 +12974,12974 +229720,229720 +423351,423351 +315890,315890 +33457,33457 +36178,36178 +47469,47469 +247955,247955 +24799,24799 +193886,193886 +53932,53932 +32309,32309 +38686,38686 +292181,292181 +176438,176438 +17192,17192 +231746,231746 +29255,29255 +20329,20329 +75034,75034 +416973,416973 +383505,383505 +22151,22151 +67246,67246 +38461,38461 +256058,258941 +66307,66307 +18822,18822 +60860,60860 +338018,338018 +29335,29335 +158371,158371 +377807,377807 +34038,34038 +29882,29882 +189357,189357 +109855,109855 +25119,25119 +131680,131680 +230074,230074 +91800,91800 +13943,13943 +30490,30490 +64756,64756 +64070,64070 +21823,21823 +130561,130561 +424973,424973 +77990,77990 +104844,104844 +98796,98796 +49513,49513 +133651,133651 +420770,420770 +62787,62787 +111983,111983 +111439,111439 +188966,188966 +32027,32027 +398463,398463 +42970,42970 +10131,10131 +40412,40412 +26242,26242 +15493,15493 +316530,316530 +120879,120879 +28836,28836 +135589,135589 +157328,157328 +127228,127228 +43337,43337 +154347,154347 +287557,287557 +28325,28325 +362472,362472 +376519,376519 +379697,408715 +185264,185264 +37989,37989 +138002,138002 +33561,33561 +406075,88080 +198542,198542 +30877,30877 +67177,67177 +57126,57126 +30054,30054 +29998,29998 +177621,177621 +98294,98294 +182746,182746 +19529,19529 +29470,29470 +287469,287469 +59125,59125 +137662,137662 +104569,104569 +227557,227557 +36117,36117 +31969,31969 +309512,309512 +147906,147906 +38505,38505 +229912,229912 +54823,54823 +279958,279958 +307720,307720 +12650,12650 +28951,28951 +41219,41219 +137160,137160 +19386,19386 +148005,148005 +229344,229344 +35268,35268 +70478,70478 +14225,463 +37942,37942 +41734,41734 +144627,144627 +22696,22696 +22549,22549 +277673,277673 +33094,33094 +39503,39503 +111305,111305 +31905,31905 +134862,134862 +43544,43544 +22555,22555 +87083,87083 +64797,64797 +98487,98487 +361470,361470 +26601,26601 +216790,216790 +135976,135976 +276675,276675 +37171,37171 +24536,24536 +40456,40456 +11275,11275 +376657,376657 +94796,94796 +132265,132265 +229256,229256 +89587,89587 +316709,316709 +14613,14613 +344611,344611 +101254,101254 +14543,14543 +32045,32045 +132273,132273 +279048,279048 +156682,156682 +28803,28803 +30752,30752 +27114,27114 +78021,78021 +36132,36132 +22983,22983 +152220,152220 +198192,198192 +64345,64345 +36180,36180 +68478,68478 +277888,277888 +192080,192080 +38242,38242 +98477,98477 +38246,38246 +15486,15486 +316703,316703 +231757,231757 +69699,69699 +156284,156284 +188084,188084 +130032,130032 +123853,123853 +272651,272651 +64793,64793 +350034,350034 +15384,15384 +52607,52607 +24681,24681 +15567,15567 +138133,138133 +116218,116218 +19543,19543 +195519,195519 +300361,300361 +36110,36110 +102453,102453 +30373,30373 +418719,418719 +90463,90463 +393641,393641 +228290,228290 +210768,210768 +7110,7110 +36068,36068 +133650,133650 +38258,38258 +261452,261452 +290765,290765 +74224,74224 +14772,14772 +110291,110290 +402103,402103 +289505,289505 +32732,32732 +163053,163053 +199990,199990 +12048,12048 +300313,300313 +41675,41675 +129009,129009 +18239,18239 +20073,20073 +108076,108076 +17334,17334 +343680,343680 +38174,38174 +118779,118779 +96675,96675 +16893,16893 +179436,179436 +278164,278164 +14988,14988 +305679,305679 +167724,167724 +236420,236420 +29611,29611 +169432,169432 +12618,12618 +178247,178247 +36369,36369 +370769,370769 +43484,43484 +269636,269636 +120047,120047 +33400,39768 +149767,149767 +228302,228302 +37663,37663 +120780,120780 +198822,193382 +224326,224326 +120560,120560 +99720,99720 +127723,127723 +36182,36182 +98546,98546 +88718,88718 +303865,303865 +149798,149798 +109807,109807 +27206,27206 +35945,35945 +230413,230413 +183448,183448 +155971,155971 +31929,31929 +353591,353591 +151491,151491 +106896,106896 +20523,20523 +407996,407996 +266680,266680 +32379,32379 +58024,58024 +390294,390294 +141891,141891 +164155,164155 +123874,123874 +129375,129375 +140710,140710 +158707,158707 +37597,37597 +340527,340527 +12971,12971 +282037,282037 +94036,94036 +11664,11664 +36026,36026 +81246,81246 +131333,131333 +186068,186068 +17168,17168 +358295,358295 +273911,273911 +130775,463 +170631,170631 +429153,429153 +109667,109667 +209347,209347 +42991,42991 +126976,126976 +16011,16011 +12667,12667 +12615,12615 +46750,46750 +5556,5556 +35983,35983 +169570,169570 +73653,73653 +72404,72404 +18660,18660 +26108,26108 +27818,27818 +118442,118442 +25982,25982 +11864,11864 +80472,80472 +325424,325424 +17990,17990 +420174,420174 +35439,35439 +38241,38241 +18896,18896 +178501,178501 +400384,400384 +111525,111525 +404374,404374 +289237,289237 +353164,353164 +22781,22781 +273478,273478 +212489,212489 +39634,39634 +33486,33486 +367890,367890 +16823,16823 +64503,64503 +167223,167223 +133379,133379 +40578,40578 +124482,124482 +52079,52079 +115673,115673 +166584,166584 +64278,64278 +274582,274582 +53163,53163 +346511,346511 +315281,315281 +27148,27148 +72151,72151 +14663,14663 +24737,24737 +205472,205472 +96883,96883 +409971,409971 +240163,240163 +33745,33745 +42282,42282 +262394,262394 +64401,64401 +380024,380024 +22530,22530 +127744,127744 +230071,230071 +132483,132483 +94852,94852 +6480,6480 +133021,133021 +351891,302734 +25201,25201 +242346,242345 +48675,48675 +158374,158374 +35405,35405 +64087,64087 +68906,68906 +18348,18348 +124272,124272 +37815,37815 +133341,133341 +349755,349755 +217487,217487 +43565,43565 +31534,31534 +148224,148224 +339996,339996 +267644,267644 +12726,12726 +64798,64798 +90758,90758 +118393,118393 +27398,27398 +41050,41050 +310355,310355 +60844,60844 +19163,19163 +38251,38251 +326623,326623 +73758,73758 +129188,129188 +96406,96406 +256943,256943 +49907,49907 +32647,32647 +127389,127389 +70363,70363 +252267,252267 +324665,324665 +23186,23186 +30086,30086 +23168,23168 +220704,220704 +9002,9002 +32352,32352 +160341,160341 +11655,11655 +64319,64319 +229871,234010 +36889,36889 +92113,92113 +230601,230601 +34428,34428 +89310,89310 +20597,20597 +397416,397416 +174246,174246 +30445,30445 +356221,356221 +24910,24910 +334789,71991 +142528,142528 +122518,122518 +20655,20655 +25911,25911 +16190,16190 +161767,161767 +132568,132568 +5627,5627 +71204,71204 +22286,7816 +39101,39101 +34693,34693 +19226,19226 +20216,20216 +379922,379922 +146052,146052 +23909,23909 +17870,17870 +37838,37838 +250541,250541 +410388,410388 +38179,38179 +127539,127539 +231548,231548 +128950,128950 +35726,35726 +228137,228137 +240516,240516 +330822,330822 +300884,300884 +21119,21119 +199863,199863 +231714,231714 +232034,232034 +13517,13517 +124778,124778 +6123,6123 +14048,356711 +35988,35988 +26425,26425 +37805,37805 +21700,21700 +49114,49114 +312461,312461 +31804,31804 +184903,184903 +35947,35947 +123443,123443 +26577,26577 +255511,255511 +300544,300544 +35769,35769 +309970,272443 +33349,33349 +360516,360516 +111056,111056 +42272,42272 +297557,293260 +90379,90379 +98714,98714 +12003,12003 +49444,49444 +37954,37954 +330778,330778 +171864,156118 +27655,27655 +56593,56593 +126679,126679 +33855,33855 +21658,281940 +32019,32019 +426611,426611 +137697,137697 +231806,231806 +152367,152367 +197150,197150 +296452,296452 +24077,24077 +121127,121127 +233217,233217 +337824,271460 +58425,58425 +32066,32066 +111647,111647 +37205,37205 +326741,326741 +32656,32656 +36608,36608 +46355,46355 +34790,34790 +35991,35991 +404643,404643 +147169,147169 +118679,118679 +38244,38244 +135935,135935 +14605,14605 +231544,231544 +267861,267861 +7438,7438 +124786,124786 +116502,116502 +37960,37960 +8918,8918 +38072,38072 +42010,42010 +25638,25638 +27059,27059 +218015,218015 +172925,172925 +43250,43250 +141468,141468 +196516,196516 +367359,367359 +139047,139047 +101595,101595 +197826,197826 +384160,384160 +297712,297712 +159971,159971 +19654,19654 +357970,357970 +20908,20908 +96607,96607 +33832,33832 +129020,129020 +37559,37559 +13296,13296 +102169,102169 +32199,32199 +24825,24825 +144319,144319 +63825,63825 +186981,186981 +40587,40587 +37293,37293 +318407,318407 +410521,410521 +300797,300797 +88007,88007 +41472,41472 +27861,27861 +121540,121540 +327571,327571 +28183,28183 +93513,93513 +57219,57219 +328353,328353 +37944,37944 +36181,36181 +30033,30033 +370998,370998 +33442,33442 +287470,463 +166566,166566 +202425,202425 +35785,35785 +139109,139109 +38541,38541 +135643,135643 +228664,228664 +134230,134230 +247028,247028 +114936,114936 +221022,221022 +127094,127094 +125003,125003 +110584,110584 +124061,124061 +29619,29619 +5572,5572 +26900,26900 +304675,304675 +421086,421086 +342083,342083 +211807,211807 +240568,240568 +14892,14892 +114190,114190 +231625,231625 +21739,21739 +231025,231025 +2469,2469 +29473,29473 +376618,376618 +104617,104617 +21660,21660 +6395,6395 +18469,18469 +170047,194352 +255609,255609 +203314,203314 +20131,20131 +168390,204583 +218958,177975 +189665,189665 +63713,63713 +160756,160756 +20014,20014 +319389,319389 +10540,10540 +181763,181763 +13022,13022 +394191,394191 +19150,19150 +366711,366711 +152462,152462 +106992,106992 +9193,9193 +38419,38419 +65761,65761 +30726,30726 +101946,101946 +32254,32254 +16424,16424 +31950,31950 +24570,24570 +16921,16921 +322892,322892 +119602,119602 +27243,27243 +72017,72017 +61722,61722 +23503,23503 +190950,190950 +168176,168176 +200083,200083 +177680,171339 +5836,5836 +295420,295420 +193681,193681 +81445,81445 +268976,268976 +33221,33221 +3473,3473 +3738,3738 +2732,2732 +10208,10208 +63442,63442 +4886,4886 +20293,20293 +146172,146172 +57951,57951 +87745,87745 +14502,14502 +324127,324127 +10858,10858 +251727,251727 +237590,237590 +13127,13127 +30716,30716 +19410,19410 +63932,63932 +325117,325117 +32317,32317 +24899,24899 +41341,41341 +27579,27579 +39574,39574 +13095,13095 +210767,210767 +29693,29693 +163945,163945 +224664,224664 +164346,309517 +26346,26346 +1595,1595 +203352,50381 +8752,8752 +11209,11209 +88533,88533 +26481,26481 +5263,5263 +49454,49454 +22865,22865 +182093,182093 +146327,146327 +68284,68284 +143952,143952 +120897,120897 +13690,13690 +43346,43346 +4319,4319 +83278,83278 +191910,217233 +216072,216072 +21513,21513 +206445,206445 +9500,9500 +145852,145852 +3688,3688 +12360,12360 +6531,6531 +6877,6877 +151343,151343 +154860,28436 +18741,18741 +308345,265276 +124475,124475 +167156,167156 +11010,11010 +43348,43348 +119972,119972 +217968,217968 +24939,24939 +29591,463 +62357,62357 +14001,14002 +389803,389803 +148628,148628 +13613,13613 +131484,131484 +289186,289186 +117725,117725 +324662,324662 +369337,369337 +172310,137909 +163724,163724 +63981,63981 +300867,300867 +296069,296069 +159064,2001 +3066,3066 +13962,13962 +23318,23318 +63606,63606 +29093,29093 +194182,194182 +247008,378097 +103845,103845 +2158,2158 +20149,20149 +12152,12152 +13578,13578 +23039,23039 +198475,198475 +21511,21511 +13177,13177 +40520,40520 +24760,24760 +25472,25472 +99947,99947 +209506,209506 +258436,258436 +368123,368123 +187489,92644 +425070,425070 +38543,38543 +246986,102104 +2196,2196 +150659,198886 +13284,13284 +363094,363094 +7811,126471 +14174,14174 +63712,63712 +10119,10119 +198817,198817 +244615,244615 +16310,16310 +15048,15048 +1432,1432 +23803,23803 +193399,211275 +229080,229080 +167514,167514 +369141,369141 +35317,35317 +1476,38974 +86758,86758 +161742,161742 +192033,192033 +142318,142318 +35590,35590 +261454,261454 +33036,33036 +9544,9544 +354989,354989 +111532,111532 +64071,64071 +26506,26506 +56295,56295 +2222,34523 +148230,148230 +218046,218046 +3455,3455 +10507,10507 +14851,14851 +42039,42039 +216877,216877 +315533,315533 +9914,9914 +416150,416150 +13458,13458 +8663,8663 +156854,156854 +261120,261120 +243682,243682 +241322,241322 +9075,9075 +21596,21596 +11735,11735 +246780,246780 +279140,279140 +4632,4632 +14047,14047 +209559,209559 +34690,34690 +10277,10277 +114227,114227 +135719,122327 +191469,191469 +128909,128909 +366395,366395 +3678,3678 +9714,9714 +15303,15303 +335180,335180 +2359,2359 +28128,463 +32506,32506 +27814,27814 +16680,16680 +103767,103767 +19075,19075 +13802,13802 +280239,280239 +206857,206857 +33017,33017 +9586,9586 +16799,16799 +5636,3270 +13770,13770 +12967,12967 +5229,5229 +17957,17957 +1658,1658 +153522,153522 +19480,19480 +246736,246736 +6794,6794 +12086,12086 +118203,118203 +23798,23798 +9931,9931 +110105,110105 +339474,339474 +428498,428498 +173537,173537 +26867,26867 +32961,32961 +20704,20704 +101861,6578 +152742,152742 +142249,142249 +237319,237319 +42779,42779 +13000,13000 +27844,27844 +11517,11517 +150099,150099 +34886,34886 +14127,14127 +13451,13451 +219375,219375 +376347,376347 +361877,361877 +131802,131802 +30634,30634 +165901,165901 +18561,18561 +17872,17872 +16967,16967 +344842,344070 +36363,36363 +340127,156420 +24987,24987 +352286,352286 +20174,20174 +22840,22840 +35986,35986 +14479,14479 +2862,2862 +364400,364400 +36485,36485 +29482,29482 +4617,4617 +167812,167812 +315274,315274 +238500,238500 +112580,112580 +293999,293999 +30535,30535 +40865,40865 +182588,182588 +19052,19052 +22403,22403 +285512,285512 +23884,23884 +14687,14687 +33797,33797 +36868,36868 +124865,124865 +53512,53512 +35851,35851 +10481,10481 +40457,40457 +361171,361171 +12099,12099 +281209,281209 +117855,117855 +30161,30161 +30097,30097 +33771,33771 +316568,316568 +102671,102671 +64593,64593 +102545,102545 +10594,10594 +18927,18927 +8498,8498 +34275,34275 +293180,293180 +1791,1791 +23229,23229 +25689,25689 +3948,3948 +24948,24948 +21611,1038 +62837,62837 +268849,268849 +12375,12375 +40318,40318 +35606,35606 +31792,31792 +129121,129121 +35856,35856 +1204,1204 +124494,124494 +351584,351584 +400118,400118 +10198,10198 +12518,12518 +267181,267181 +242146,242212 +113856,113856 +68663,68663 +221942,221942 +159199,159199 +248837,248837 +27432,27432 +222903,222903 +13600,13600 +327376,327376 +361173,361173 +3498,3498 +244953,244953 +26249,26249 +18479,18479 +351669,351669 +242590,242590 +40517,40517 +2822,2822 +8984,8984 +39901,39901 +2506,2506 +329831,329831 +18544,18544 +30950,30950 +104577,104577 +176553,176553 +392175,392175 +154373,154373 +52608,52608 +202266,202266 +293145,293145 +66515,66515 +24741,24741 +374673,374673 +24661,24661 +155602,155602 +168283,168283 +333105,333105 +34052,34052 +41561,41561 +7672,7672 +57674,57674 +187105,187105 +129987,129987 +134673,134673 +176416,176416 +21350,21350 +24791,24791 +358489,358489 +20448,20448 +25151,25151 +363615,363615 +324516,324516 +347048,347048 +101417,101417 +21934,21934 +18502,18502 +1455,1455 +31502,31502 +7882,7882 +390595,390595 +14830,14830 +29498,29498 +10073,10073 +46959,46959 +36462,36462 +25047,25047 +10362,10362 +15266,15266 +15933,15933 +58394,58394 +294492,294492 +302375,302375 +290364,290364 +229454,229454 +163124,3270 +104603,104603 +23617,23617 +168256,168256 +346540,346540 +27787,27787 +25363,25363 +40281,40281 +22899,22899 +40279,40279 +23355,23355 +13931,13931 +32533,32533 +25578,25578 +351905,351905 +286650,286650 +6855,6855 +55710,55710 +41499,41499 +246702,197585 +386378,85256 +51378,51378 +120593,120593 +231074,231074 +13043,13043 +24654,24654 +349471,349471 +20466,20466 +40763,40763 +107510,107510 +207799,207799 +220245,220245 +39598,39598 +26842,66286 +359818,359818 +13135,13135 +25369,25369 +187741,187741 +19166,19234 +40298,40298 +345643,345643 +37047,37047 +41961,41961 +40280,463 +12047,12047 +46993,46993 +40294,40294 +266116,266116 +161075,195477 +36642,36642 +28536,28536 +102088,102088 +40288,40288 +5555,5555 +100333,100333 +63454,63454 +7649,7649 +40313,40313 +34120,34120 +264260,264260 +41687,41687 +13188,13188 +369619,369619 +408719,408719 +12462,12462 +25654,25654 +143704,143704 +93285,93285 +196533,196533 +71984,71984 +38009,38009 +40319,40319 +208139,208139 +200413,200413 +18903,18903 +82086,82086 +19762,19762 +27453,27453 +31366,31366 +60059,60059 +35841,35841 +120595,120595 +40316,40316 +171317,171317 +21375,21375 +30406,30406 +6145,6145 +344336,344336 +156233,13172 +351813,351813 +36742,36742 +147608,147608 +35886,35886 +34722,34722 +58574,37225 +27580,27580 +145428,299977 +72005,72005 +20717,3270 +28108,28108 +21315,21315 +3179,3179 +15345,15345 +27935,27935 +31285,31285 +40285,40285 +40314,40314 +424374,424374 +118184,168838 +110740,110740 +10367,10367 +187605,187605 +335447,335447 +29841,29841 +413836,413836 +134209,134209 +21364,21364 +11580,11580 +40323,40323 +364738,364738 +40335,40335 +40315,40315 +17552,17552 +27778,27778 +25354,25354 +107599,107599 +363569,363569 +11457,11457 +84788,84788 +80666,80666 +40277,40277 +168563,168563 +40282,40282 +315280,315280 +17497,17497 +41439,41439 +201003,201003 +40283,40283 +25541,25541 +18742,18742 +146361,146361 +119269,119269 +389805,389805 +84722,84722 +59819,59819 +71897,71897 +40290,40290 +28369,28369 +236509,236509 +21742,21742 +2745,2745 +40334,40334 +96877,96877 +223705,223705 +18672,18672 +35071,35071 +346470,346470 +352848,352848 +350829,350829 +85155,85155 +152986,152986 +161650,161650 +18308,297569 +353747,353747 +40278,40278 +23409,23409 +90017,90017 +147017,147017 +40287,40287 +396788,396788 +240338,240338 +250826,250826 +13562,13562 +99218,99218 +327510,327510 +4998,4998 +3871,3871 +219409,219409 +143832,143832 +17312,17312 +12610,12610 +149856,149856 +23751,23751 +40470,40470 +131741,131741 +17631,17631 +18194,18194 +26031,26031 +35402,35402 +264816,264816 +19499,19499 +31572,31572 +35756,35756 +13889,13889 +28590,28590 +21325,21325 +20455,20455 +166901,166901 +29827,29827 +12015,12015 +174526,174526 +17989,17989 +313466,313466 +16150,16150 +9837,9837 +332517,332517 +103926,103926 +2700,2700 +20699,20699 +331588,331588 +382353,382353 +21939,21939 +152827,152827 +19525,19525 +31630,31630 +16351,16351 +271281,271281 +353585,353585 +111228,111228 +296132,296132 +401119,401119 +169439,352802 +42397,42397 +277420,277420 +387121,387121 +30835,30835 +263130,263130 +22165,22165 +163192,163192 +14802,14802 +31170,31170 +139858,139858 +18039,18039 +358103,358103 +35932,35932 +10143,10143 +283946,283946 +40511,40511 +93556,93556 +89320,89320 +16487,16487 +126451,126451 +69156,69156 +38695,38695 +400620,400620 +23211,23211 +124123,124123 +28331,28331 +31827,31827 +184508,184508 +104240,104240 +10976,10976 +34061,34061 +229671,229671 +129528,129528 +332709,332709 +16515,16515 +16391,16391 +299898,299898 +14866,14866 +30611,30611 +40671,40671 +242043,242043 +26387,26387 +375715,375715 +405872,375524 +25545,25545 +22488,22488 +177161,177161 +170494,170494 +136256,136256 +164889,164889 +187111,187111 +405686,405686 +31312,31312 +41083,41083 +193705,193705 +13966,13966 +40239,40239 +52333,52333 +110572,110572 +18727,18727 +15684,15684 +186833,186833 +391888,391888 +30129,30129 +10311,10311 +39491,39491 +314755,314755 +39531,39531 +90732,90732 +341276,341276 +19956,19956 +3094,3094 +306965,344547 +368938,368938 +5267,5267 +5805,5805 +41904,41904 +230209,230209 +102960,102960 +371678,371678 +94868,94868 +21778,21778 +32181,32181 +353619,353619 +19054,19054 +37002,37002 +16677,16677 +166231,166231 +350335,350335 +49123,49123 +25259,25259 +42265,42265 +121039,121039 +19241,19241 +287301,287301 +17198,17198 +186605,186605 +129384,129384 +31396,31396 +405271,405271 +346812,346812 +87085,87085 +218130,218130 +28150,28150 +13399,13399 +264107,264107 +366098,366098 +34059,34059 +266978,266978 +36473,36473 +25194,25194 +39472,39472 +120232,120232 +39610,39610 +119989,119989 +24834,24834 +17868,17868 +33467,33467 +15279,15279 +70188,70188 +212625,212625 +15534,15534 +22621,22621 +95632,95632 +410220,410220 +426501,426501 +154089,154089 +46931,46931 +25573,25573 +42108,42108 +84759,84759 +186285,186285 +29573,29573 +206777,206777 +42948,42948 +285608,285608 +39747,39747 +17290,17290 +136257,136257 +152505,152505 +16852,16852 +317938,317938 +136808,136808 +131538,131538 +372212,372212 +31942,31942 +39490,39490 +43191,43191 +36541,36541 +125125,125125 +28545,28545 +159445,35188 +318483,318483 +59997,59997 +184080,184080 +274734,274734 +120529,120529 +30361,30361 +296627,296627 +36842,36842 +76693,76693 +16894,16894 +17613,17613 +20320,20320 +35145,35145 +30211,30211 +101927,101927 +296343,296343 +30777,30777 +426009,351646 +28940,28940 +159465,105053 +17541,17541 +136867,136867 +37898,37898 +267305,267305 +25075,25075 +7099,7099 +40055,40055 +212565,212563 +376454,376454 +359192,359192 +27769,27769 +381443,381443 +43333,43333 +139405,139405 +28594,28594 +17809,17809 +39489,39489 +97444,97444 +33425,33425 +32210,32210 +56545,56545 +4673,4673 +70815,70815 +97977,97977 +317549,113572 +268260,268260 +267072,267072 +32433,32433 +30881,30881 +15215,15215 +141693,141693 +29828,29828 +17841,17841 +394055,394055 +261129,261129 +25128,25128 +6061,6061 +166301,166301 +317387,317387 +1479,1479 +41227,41227 +7345,7345 +163716,163716 +136389,136389 +6306,6306 +89073,89073 +124103,124103 +33627,33627 +33861,33861 +18458,18458 +63815,63815 +91400,91400 +257279,257279 +112843,112843 +27001,27001 +386689,386689 +404911,404911 +334451,334451 +16908,16908 +111905,111905 +35328,35328 +30906,30906 +32336,32336 +18801,18801 +10144,10144 +421294,421294 +320844,320844 +28703,28703 +29048,29048 +18307,297569 +129124,129124 +154751,154751 +11173,11173 +353666,353666 +17940,17940 +239949,239949 +112935,112935 +9576,9576 +229687,229687 +223613,223613 +104265,104265 +99031,99031 +53778,53778 +127528,127528 +277318,277318 +29679,29679 +27138,27138 +34215,34215 +33726,33726 +293823,293823 +401860,401860 +23255,23255 +76598,76598 +42869,42869 +125726,125726 +283945,283945 +23305,23305 +72128,72128 +88567,88567 +280137,280137 +136176,136176 +62834,62834 +156658,156658 +267426,267426 +19936,19936 +33826,33826 +170305,170305 +22534,22534 +24317,24317 +271149,271149 +15556,15556 +430644,430644 +139453,139453 +269279,57139 +16384,16384 +152740,152740 +25290,25290 +48760,48760 +343583,343583 +24736,24736 +169634,169634 +197969,197969 +35693,35693 +37232,37232 +28400,28400 +30043,30043 +411256,411256 +128750,128750 +114906,114906 +37749,37749 +417819,417819 +38908,38908 +282470,282470 +41530,41530 +183561,183561 +12949,12949 +66668,66668 +411614,411614 +26960,26960 +16315,16315 +210837,210837 +35392,35392 +269638,269638 +114195,114195 +36803,36803 +224213,224213 +30609,30609 +279326,279326 +360204,360204 +40683,40683 +15718,15718 +28335,28335 +181071,181071 +67980,67980 +325445,325445 +195014,195014 +15328,15328 +11758,11758 +26726,26726 +79136,79136 +71782,71782 +360547,360547 +67694,67694 +43699,43699 +29951,230675 +10373,10373 +321236,321236 +72282,72282 +36106,36106 +32916,32916 +62259,62259 +55342,55342 +42085,42085 +28242,28242 +324525,324525 +35148,35148 +372733,372733 +24745,24745 +14914,14914 +25544,25544 +124410,124410 +16663,16663 +24250,24250 +11565,11565 +41537,41537 +20304,20304 +165631,165631 +26837,26837 +306971,306971 +269671,269671 +401564,401564 +35786,35786 +66554,66554 +14516,14516 +34979,34979 +89747,89747 +22970,22970 +372023,372023 +33126,33126 +190552,135851 +159397,159397 +424283,424283 +182314,182314 +19718,19718 +143287,143287 +382183,382183 +128084,128084 +240513,240513 +138232,138232 +140685,140685 +60022,60022 +56481,56481 +4685,4685 +32549,32549 +20893,20893 +194638,194638 +316273,316273 +401224,401224 +408600,408600 +14239,463 +18482,18482 +13282,13282 +40089,40089 +35540,35540 +410245,410245 +129526,129526 +93286,93286 +109608,109608 +18242,18242 +383424,383424 +12721,12721 +39321,39321 +88403,88403 +5538,5538 +39618,39618 +15906,15906 +18515,18515 +32237,32237 +27538,27538 +10048,10048 +40649,40649 +167159,167159 +22554,22554 +45983,45983 +213315,213315 +89309,89309 +244185,244185 +223183,223183 +152127,152127 +408004,408004 +92562,92562 +229696,229696 +348949,348949 +53151,53151 +254947,254947 +24589,24589 +201224,201224 +42570,42570 +59275,59275 +32599,32599 +388068,388068 +28412,28412 +40443,40443 +16587,16587 +29101,29101 +35139,35139 +157640,157640 +169047,169047 +33130,33130 +24816,24816 +288985,288985 +49311,367200 +280481,280481 +178342,178342 +11595,11595 +13821,13821 +136369,136369 +158377,158377 +40485,40485 +36212,36212 +31631,31631 +59642,59642 +127737,127737 +14593,14593 +62864,62864 +247625,247625 +89082,89082 +69151,69151 +51377,51377 +18616,18616 +139105,139105 +123374,123374 +99239,99239 +94836,94836 +408592,408592 +55762,55762 +113475,113475 +279484,279484 +5587,5587 +14652,14652 +369101,369101 +276166,276166 +178646,178646 +165349,165349 +248149,248149 +131116,131116 +55199,55199 +20618,20618 +380283,380283 +192660,192660 +41333,41333 +117879,117879 +26366,26366 +83303,83303 +22831,22831 +263342,263342 +128391,128391 +428180,428180 +230239,230239 +141292,141292 +128732,128732 +340143,340143 +36915,36915 +70588,70588 +128768,128768 +253929,253929 +20407,20407 +187677,187677 +9818,9818 +24560,24560 +43331,43331 +19625,19625 +13138,13138 +425208,348247 +26640,26640 +17439,17439 +93202,93202 +778,778 +29079,29079 +35118,35118 +351121,351121 +119681,119681 +11574,11574 +119534,39180 +15521,15521 +33249,33249 +270108,270108 +314504,314504 +11662,11662 +257849,257849 +21391,21391 +12012,12012 +26069,26069 +24690,24690 +417981,3818 +147793,463 +232657,232657 +182035,182035 +187087,187087 +24060,24060 +158443,158443 +115363,115363 +27235,27235 +18114,18114 +163928,163928 +23800,23800 +10457,10457 +122248,122248 +432567,261157 +42787,42787 +41535,41535 +116415,116415 +22751,22751 +327574,327574 +35084,35084 +175386,175386 +7292,7292 +428679,428679 +26774,26774 +6064,6064 +18037,18037 +199603,199603 +20611,20611 +235472,235472 +36685,36685 +329951,329951 +190289,144412 +367082,367082 +135466,135466 +40811,40811 +36301,36301 +109897,109897 +87564,87564 +235856,235856 +23739,23739 +7392,7392 +22118,22118 +337120,337120 +267137,267137 +146602,146602 +36853,36853 +6550,6550 +361985,361985 +40414,40414 +359605,463 +30348,30348 +80447,80447 +157654,157654 +407287,407287 +21327,21327 +37598,37598 +67443,67443 +293975,293975 +253337,253337 +9525,9525 +35225,35225 +82857,82857 +25935,25935 +128851,128851 +263368,263368 +31187,31187 +148413,148413 +36502,36502 +128238,128238 +131154,131154 +177280,177280 +18321,18321 +124472,124472 +360088,360088 +45152,45152 +63030,63030 +25528,25528 +172502,172502 +29955,29955 +235764,235764 +171853,171853 +31188,31188 +152444,152444 +24281,24281 +29607,29607 +393275,393275 +165731,165731 +30126,30126 +94869,94869 +91198,91198 +25914,25914 +347315,347315 +33602,33602 +378404,378404 +32888,32888 +12037,12037 +329133,329133 +26286,26286 +43056,43056 +30368,30368 +86874,86874 +287574,287574 +188957,188957 +14639,14639 +10404,10404 +207352,207352 +96608,96608 +22268,22268 +213711,405016 +344533,344533 +165551,165551 +31970,31970 +81486,81486 +2933,463 +90974,90974 +32742,32742 +182040,182040 +111919,111919 +199025,199025 +16009,16009 +136565,136565 +412151,412151 +234203,234203 +352815,352815 +158170,158170 +22309,22309 +9733,9733 +126631,126631 +35353,35353 +59311,59311 +357851,357851 +227554,227554 +13036,13036 +122911,122911 +22167,22167 +19609,19609 +104070,104070 +41958,41958 +127442,127442 +25393,25393 +175183,175183 +148797,148797 +1921,1921 +11955,11955 +344205,344205 +151396,151396 +251334,251334 +2577,2577 +253521,253521 +222107,222107 +160153,160153 +263676,263676 +108214,108214 +12133,12133 +113246,113246 +151184,151184 +130186,130186 +82589,82589 +191961,191961 +9014,9014 +13431,13431 +290793,290793 +26562,26562 +344057,344057 +409580,409580 +340917,248722 +22580,22580 +219615,219615 +41321,41321 +27929,27929 +29571,29571 +31190,31190 +15749,15749 +13643,13643 +414959,414959 +307296,307296 +143285,143285 +36995,36995 +187987,187987 +135842,135842 +4624,4624 +250494,250494 +302627,302627 +28068,28068 +31213,31213 +142258,142258 +1292,1292 +52276,52276 +12116,12116 +256130,256130 +36671,36671 +39466,39466 +90922,90922 +39148,39148 +22724,22724 +4152,4152 +373562,373562 +260662,260662 +144935,144935 +28229,28229 +140602,140602 +13696,13696 +254838,254838 +138594,137693 +168007,168007 +184251,184251 +7952,7952 +377402,377402 +13280,13280 +206330,206330 +18497,18497 +164420,164420 +364639,364639 +12775,12775 +86887,86887 +26298,26298 +38905,38905 +320795,320795 +173862,173862 +368345,358789 +158817,158817 +112929,112929 +154400,154400 +180871,180871 +30310,30310 +56441,56441 +14770,14770 +32816,32816 +13500,13500 +114110,114110 +9546,9546 +133246,133246 +153229,153229 +201440,170096 +17521,17521 +97757,97757 +15396,15396 +31101,31101 +35370,35370 +196446,196446 +300096,300096 +22866,22866 +28333,28333 +260330,260330 +193274,193274 +4257,4257 +274175,274175 +7162,7162 +471,471 +11481,463 +20592,20592 +379421,379421 +26185,26185 +69459,69459 +59515,59515 +29664,29664 +4732,4732 +13499,13499 +18725,18725 +26225,26225 +1941,1941 +140714,140714 +174047,174047 +33571,33571 +378899,378899 +164157,164157 +14987,14987 +36071,36071 +371916,371916 +184190,184190 +19775,463 +401922,401922 +30192,30192 +227592,227592 +382136,382136 +25155,25155 +408,408 +309760,309760 +9507,9507 +5089,5089 +2178,2178 +218577,218577 +157061,90050 +7792,7792 +186925,186925 +25642,25642 +240004,240004 +10570,10570 +27863,27863 +211988,211988 +4185,4185 +374521,374521 +234974,234974 +11529,11529 +22362,22362 +2321,2321 +53631,53631 +20843,20843 +34356,34356 +255739,255739 +13076,13076 +20003,20003 +2021,2021 +285760,285760 +9226,9226 +216350,216350 +27829,27829 +33217,33217 +38226,38226 +154770,154770 +349165,349165 +196231,196231 +404798,404798 +10899,10899 +375523,375524 +127428,127428 +10790,10790 +25399,25399 +198311,198311 +9518,9518 +281637,281637 +39181,39181 +6696,6696 +5681,5681 +10077,10077 +39442,39442 +58696,58696 +265221,265221 +101768,101768 +34776,34776 +36351,36351 +258648,258648 +6343,6343 +178799,178799 +2237,2237 +20236,20236 +11212,3946 +9769,9769 +39525,39525 +19628,19628 +3346,3346 +19276,19276 +17907,17907 +35314,8690 +7437,7437 +17338,17338 +261637,261637 +40510,40510 +29837,29837 +53403,53403 +334745,334745 +231655,231657 +21004,21004 +5080,5080 +255803,255803 +10905,10905 +28712,28712 +6784,6784 +202244,202244 +35631,35631 +24867,24867 +134215,134215 +7510,7510 +20373,20373 +9770,9770 +208236,208236 +388719,388719 +151020,151020 +26685,26685 +255816,2838 +28824,28824 +364112,364112 +129117,129117 +176352,176352 +2155,2155 +35926,35926 +15805,15805 +35920,35920 +19966,19966 +181375,181375 +7401,7401 +52039,52039 +15149,15149 +200845,200845 +3362,3362 +10072,10072 +247120,248967 +7198,7198 +285600,285600 +17736,17736 +172262,28436 +253584,253584 +61953,61953 +240132,240132 +8458,8458 +122442,122442 +20557,20557 +12571,12571 +37581,37581 +23692,23692 +63824,63824 +8650,8650 +376861,376861 +167416,94686 +11917,11917 +91191,91191 +153641,153641 +11645,11645 +33380,33380 +6908,6908 +13385,13385 +277454,277454 +354505,354505 +191884,191884 +187283,187283 +28188,28188 +35780,35780 +73262,73262 +3544,3544 +6450,6450 +235085,235085 +13756,463 +36743,402956 +23597,23597 +23272,23272 +43293,43293 +68229,68229 +413911,413911 +9368,9368 +8265,8265 +107977,107977 +5883,5883 +9043,9043 +114287,114287 +202629,202629 +33397,33397 +50499,50499 +12418,12418 +14557,14557 +517,517 +29031,29031 +216117,216117 +27723,463 +260254,260254 +14901,14901 +63521,63521 +46961,46961 +236702,236702 +246727,246727 +169970,169970 +198128,198128 +384170,384170 +86352,86352 +379620,379620 +386421,386421 +26979,26979 +385583,385583 +25535,25535 +65632,65632 +30180,30180 +25320,25320 +171539,171539 +8090,8090 +335111,335111 +189846,189846 +26241,26241 +307455,307455 +346152,340255 +18603,18603 +26376,26376 +31425,31425 +9879,9879 +7490,7490 +331486,331486 +8541,8541 +197637,197637 +28040,28040 +15499,15499 +22572,146934 +9058,9058 +24897,24897 +66243,66243 +231645,231645 +193183,193183 +254209,254209 +5323,5323 +25853,25853 +142508,143447 +222499,222499 +11743,11743 +41411,41411 +150979,150979 +7001,7001 +16189,16189 +13097,13097 +32730,32730 +29323,29323 +30621,30621 +97381,97381 +9219,9219 +98292,98292 +20085,20085 +28635,28635 +161538,161538 +40516,40516 +76705,76705 +353530,116169 +33461,33461 +42840,42840 +137547,137547 +386376,85256 +26603,26603 +12315,12315 +186043,186043 +200024,200024 +75807,75807 +11712,11712 +51999,51999 +29968,29968 +40328,40328 +33472,33472 +391887,391887 +13541,13541 +300284,300284 +196834,196834 +63806,63806 +17331,17331 +392504,288179 +244436,244436 +286369,286369 +27350,27350 +28268,28268 +183779,183779 +21667,21667 +94311,94311 +37493,37493 +8013,8013 +37761,37761 +5652,5652 +113499,113499 +57241,57241 +10699,10699 +13986,13986 +315960,315960 +3327,3327 +26756,26756 +152222,152222 +24136,24136 +73947,73947 +419752,419752 +144784,144784 +26010,26010 +10843,10843 +33874,33874 +23625,23625 +13891,13891 +187714,187714 +266366,373004 +9952,9952 +124492,124492 +58876,58876 +11196,11196 +188122,188122 +24971,24971 +35860,35860 +234631,234631 +10082,10082 +19289,19289 +37896,37896 +22694,22694 +34408,34408 +25438,25438 +75764,75764 +176268,176268 +16133,16133 +258350,258350 +99675,99675 +33539,33539 +394892,396943 +98288,98288 +92563,92563 +108385,108385 +99979,99979 +37428,37428 +7889,203858 +12000,12000 +329172,329172 +132864,132864 +355041,287983 +37004,37004 +66240,66240 +11870,11870 +356059,356059 +22255,22255 +264451,264451 +20620,20620 +36477,36477 +17828,17828 +365499,365499 +14056,14056 +421051,408842 +34137,34137 +187080,187080 +164541,164541 +127541,127541 +24577,24577 +23087,23087 +23399,23399 +333259,333259 +179031,179031 +22977,22977 +40203,40203 +173081,173081 +36816,36816 +26295,26295 +22302,3270 +34384,34384 +314072,314072 +3254,3254 +15611,15611 +167413,167413 +53072,53072 +30096,30096 +403215,299544 +31035,31035 +27054,27054 +321272,321272 +245040,245040 +28465,28465 +33474,33474 +27698,27698 +213679,213679 +100247,100247 +12771,12771 +327980,327980 +245636,245636 +35660,35660 +400489,225167 +18948,18948 +33496,33496 +40118,40118 +368117,368117 +156668,156668 +269634,269634 +213682,213682 +12751,12751 +66753,66753 +114392,114392 +353727,353727 +52080,52080 +34123,34123 +17078,17078 +16869,16869 +23769,23769 +16821,16821 +9953,9953 +24877,24877 +122352,122352 +239172,26033 +35711,35711 +126637,126637 +381829,381829 +32814,32814 +184248,184248 +374720,938 +184963,184963 +194727,194727 +10439,10439 +380025,380025 +12483,12483 +184250,184250 +33689,33689 +353997,353997 +167494,167494 +67012,67012 +131119,131119 +424505,424505 +32193,32193 +38024,38024 +26024,26024 +124900,124900 +25466,25466 +12186,12186 +200140,200140 +22466,22466 +62796,62796 +329952,329952 +9819,9819 +18139,18139 +10363,10363 +25710,25710 +110330,110330 +26173,26173 +378929,378929 +88529,88529 +155374,155374 +13303,13303 +404807,404807 +176289,176289 +131160,131160 +15892,15892 +321138,321138 +17051,17051 +176368,176368 +222868,222868 +27505,27505 +18197,18197 +4108,4108 +73127,73127 +27571,27571 +268318,268318 +22422,22422 +46180,46180 +22972,22972 +152826,152826 +160973,160973 +122635,122635 +16291,16291 +148621,148621 +19420,19420 +11603,11603 +7819,7819 +17477,17477 +289621,289621 +19043,19043 +34621,34621 +27062,27062 +37666,37666 +37299,37299 +22110,22110 +38467,38467 +109029,109029 +219701,219701 +40899,40899 +19455,19455 +25714,25714 +14909,14909 +53422,53422 +214408,214408 +232092,232093 +32463,32463 +39231,39231 +306970,306970 +29253,29253 +33852,33852 +27610,27610 +113097,113097 +286169,140863 +193659,193659 +26152,26152 +175216,175216 +11070,11070 +296344,296344 +39556,39556 +13868,13868 +33537,33537 +36622,36622 +15003,15003 +268554,268554 +287592,287592 +42250,42250 +158368,158368 +36891,36891 +82616,82616 +243766,243766 +35335,35335 +418435,418435 +267569,267569 +272670,272670 +331342,331342 +69266,69266 +34841,34841 +31413,31413 +7294,7294 +300556,300556 +32771,32771 +35222,35222 +40071,40071 +19339,105364 +148123,148123 +136216,136216 +425913,425913 +41957,41957 +117675,117675 +108805,108805 +32362,32362 +25765,25765 +23780,23780 +73099,73099 +97326,97326 +255064,255064 +21826,21826 +26221,26221 +95024,95024 +29333,29333 +141864,141864 +26076,26076 +65744,65744 +194663,194663 +41935,41935 +27083,27083 +139838,139838 +15118,15118 +51647,51647 +7894,7894 +127835,127835 +134110,134110 +36851,36851 +27867,27867 +96486,96486 +31590,31590 +24362,24362 +19808,19808 +199457,199457 +19861,19861 +42410,42410 +102544,102544 +8799,8799 +31706,31706 +180665,180665 +420273,420273 +126982,126982 +34766,34766 +425902,425902 +14887,14887 +22639,22639 +38512,38512 +11895,11895 +23353,23353 +33214,33214 +31705,31705 +142399,142399 +421081,421081 +5537,5537 +62360,62360 +30975,30975 +35014,35014 +314945,314945 +356851,356851 +116482,291806 +234371,36599 +22777,22777 +58309,58309 +279715,279715 +16421,16421 +32371,32371 +13152,13152 +95389,95389 +26898,26898 +158255,158255 +20683,20683 +17227,17227 +414310,414310 +200469,200469 +116965,116965 +242615,242615 +27990,27990 +35194,35194 +15379,15379 +335222,335222 +132466,132466 +32539,32539 +15295,15295 +5397,5397 +74592,74592 +6070,6070 +11439,11439 +33199,33199 +42310,42310 +165654,165654 +28230,28230 +358487,358487 +20488,20488 +113842,113842 +30240,30240 +34622,34622 +232973,232973 +180338,180338 +99598,99598 +16518,16518 +17260,17260 +115611,115611 +261537,261537 +35298,35298 +241713,241713 +329704,329704 +58809,58809 +134648,134648 +37606,37606 +330237,330237 +54676,54676 +23585,23585 +214026,216877 +141116,16239 +34260,34260 +22127,22127 +40488,40488 +9695,9695 +124845,124845 +175958,175958 +84750,84750 +225515,225515 +317064,317064 +75209,75209 +18589,18589 +18598,18598 +29058,29058 +265352,265352 +25736,25736 +325461,332026 +363211,363211 +203984,203984 +20369,20369 +125030,125030 +26255,26255 +12693,12693 +51502,51502 +118686,118686 +302036,302036 +33341,33341 +378041,378041 +26933,26933 +103403,103403 +14927,14927 +328623,328623 +6244,6244 +129231,129231 +40184,40184 +412736,412736 +32632,32632 +21663,21663 +426431,426431 +31097,31097 +356906,356906 +158367,158367 +191883,191883 +111805,111805 +354879,354879 +9494,9494 +17790,17790 +211180,211180 +132786,132786 +66726,66726 +14798,14798 +12244,12244 +26750,26750 +237752,237752 +427599,427599 +77228,77228 +136584,136584 +298443,298443 +26670,26670 +22224,22224 +334484,334484 +160890,160890 +11878,11878 +275068,275068 +286394,286394 +40007,40007 +27169,27169 +163306,163306 +41673,41673 +358520,358520 +236883,236883 +239968,239968 +21872,21872 +15197,15197 +62700,62700 +36573,36573 +157656,157656 +200547,200547 +352543,352543 +377384,377384 +15868,15868 +345990,345990 +12358,12358 +416785,169786 +57771,57771 +58431,58431 +433928,433928 +22105,22105 +40934,40934 +306893,306893 +72679,72679 +267136,267136 +25583,25583 +368741,368741 +95015,95015 +37742,37742 +32135,32135 +34549,34549 +32973,32973 +60189,60189 +25713,25713 +353656,353656 +63109,63109 +36372,36372 +3787,3787 +6519,6519 +23918,23918 +185229,185229 +89414,89414 +20150,20150 +128507,128507 +119627,119627 +41574,41574 +30642,30642 +124675,124675 +66464,66464 +109844,109844 +18280,18280 +10828,10828 +225936,225936 +21235,21235 +29246,29246 +90801,90801 +82719,82719 +364855,364855 +30153,30153 +150050,150050 +19437,19437 +33323,33323 +119928,119928 +16581,16581 +34545,34545 +96616,96616 +109847,109847 +30284,30284 +158266,158266 +141486,141486 +139052,139052 +32695,32695 +274788,274788 +247509,247509 +95025,95025 +25024,25024 +224631,224631 +355918,355918 +98557,98557 +214938,214938 +54406,54406 +103174,103174 +135949,135949 +95079,95079 +33358,33358 +431838,63268 +94445,94445 +344253,344253 +21514,21514 +97269,97269 +101791,101791 +385927,385927 +34187,34187 +139046,139046 +32449,32449 +161871,161871 +376660,376660 +362924,362924 +429302,429302 +164962,164962 +23288,23288 +174171,174171 +175217,175217 +67489,67489 +71066,71066 +123858,123858 +83462,83462 +131291,131291 +174245,174245 +301292,301292 +33346,33346 +369882,369882 +12991,12991 +25592,25592 +167101,167101 +109866,109866 +11478,11478 +34990,34990 +33321,33321 +41427,41427 +432080,432080 +69298,69298 +27785,27785 +123441,123441 +19675,19675 +406531,406531 +77269,77269 +63622,63622 +71392,71392 +37526,37526 +16824,16824 +30594,30594 +11897,11897 +124223,124223 +36276,36276 +113569,113569 +111423,111423 +16582,16582 +409565,409565 +19713,19713 +19219,19219 +13798,13798 +34770,34770 +293090,293090 +90382,90382 +139454,139454 +205385,205385 +175505,175505 +17935,17935 +10099,10099 +4484,4484 +19979,19979 +93132,93132 +33302,33302 +32488,32488 +176604,176604 +140079,140079 +97989,97989 +4498,4498 +162541,162541 +140503,140503 +148258,148258 +106037,106037 +12778,12778 +298424,298424 +14754,14754 +10456,10456 +109650,109650 +179059,179059 +137747,137747 +428825,428825 +342933,342933 +88121,88121 +109120,109120 +264307,264307 +30042,30042 +285422,285422 +95899,95899 +30768,30768 +86112,86112 +125509,125509 +29077,29077 +123617,123617 +122838,122838 +73290,73290 +57101,57101 +12861,12861 +9122,9122 +96072,96072 +33914,33914 +17840,17840 +132612,132612 +7236,7236 +159082,159082 +43714,43714 +174248,174248 +130767,130767 +64372,64372 +186531,186531 +231546,231546 +183563,183563 +15928,15928 +20337,20337 +364361,364361 +175772,175772 +22838,22838 +62240,62240 +19980,19980 +79796,79796 +64474,64474 +37879,37879 +100737,100737 +15725,15725 +101252,101252 +391051,391051 +33335,33335 +15988,15988 +179800,179800 +38523,38523 +24359,24359 +95081,95081 +21999,21999 +28217,28217 +40458,40458 +62838,62838 +23778,23778 +12730,12730 +309753,309753 +53438,53438 +37474,37474 +13877,13877 +119930,119930 +43477,43477 +17963,17963 +40904,40904 +376921,376921 +123082,123082 +40764,40764 +34346,34346 +178181,178181 +91497,91497 +17139,17139 +68153,68153 +31011,31011 +33356,33356 +62410,62410 +86083,86083 +21508,21508 +426379,426379 +228229,228229 +403135,403135 +39228,39228 +45147,45147 +392975,392975 +14671,14671 +129185,129185 +26888,26888 +31173,31173 +63181,63181 +334589,334589 +255600,255600 +337206,337206 +277142,277142 +20483,20483 +37901,37901 +30500,30500 +99883,99883 +31323,31323 +183527,183527 +128990,128990 +13242,13242 +40575,40575 +149897,149897 +370919,370919 +166003,166003 +53741,53741 +30901,30901 +127591,127591 +116763,116763 +33309,33309 +35643,35643 +71874,71874 +36375,36375 +348693,348693 +130771,130771 +119925,119925 +254388,254388 +288271,286422 +19500,19500 +14732,14732 +112791,112791 +339845,339845 +21526,21526 +425419,425419 +348130,348130 +30045,30045 +9421,9421 +17262,17262 +142251,142251 +368379,368379 +311015,311015 +419961,419961 +31880,31880 +29547,29547 +33317,33317 +352013,352013 +85321,85321 +130433,130433 +126908,126908 +179724,179724 +150228,150228 +119932,119932 +419870,419870 +136503,136503 +360089,360089 +363155,363155 +220695,220695 +34992,34992 +25667,25667 +182364,182364 +33306,33306 +373011,373011 +104718,104718 +103927,103927 +42942,42942 +31721,31721 +376511,376511 +217271,217271 +13423,13423 +19933,19933 +109156,109156 +108836,108836 +73515,73515 +136863,136863 +28556,28556 +32244,32244 +32355,32355 +38819,38819 +33054,33054 +29168,29168 +67439,67439 +139146,139146 +363366,363366 +30198,30198 +24169,24169 +119300,119300 +30714,30714 +372210,372210 +315563,315563 +51252,51252 +33338,33338 +7440,7440 +34047,34047 +8146,8146 +58909,58909 +30608,30608 +27770,27770 +33310,33310 +123538,123538 +368076,368076 +423087,423087 +134937,134937 +51381,51381 +148441,148441 +15809,15809 +115671,115671 +39157,39157 +389411,389411 +228783,228783 +315332,315332 +121650,121650 +344504,344504 +172009,271460 +326669,326669 +14135,14135 +32033,32033 +20700,20700 +123857,123857 +35076,35076 +33293,33293 +150080,150080 +258147,258147 +126984,126984 +283608,283608 +13442,13442 +298444,298444 +89195,89195 +26428,26428 +26970,26970 +128513,128513 +18802,18802 +15603,15603 +132726,132726 +37209,37209 +431484,431484 +265405,265405 +33556,33556 +6066,6066 +208799,208799 +91255,91255 +92586,92586 +90803,90803 +102833,102833 +17981,17981 +32891,32891 +139553,139553 +33316,33316 +347988,347988 +117550,117550 +127315,127315 +37393,37393 +83915,83915 +239702,239702 +303420,303420 +5722,5722 +364359,364359 +54460,54460 +25616,25616 +37646,37646 +32255,32255 +137245,137245 +33296,33296 +171787,171787 +329501,329501 +256308,256308 +421810,421810 +311227,311227 +31654,31654 +40490,40490 +98329,98329 +103795,103795 +277143,277143 +33289,33289 +85375,85375 +34930,34930 +159621,159621 +99581,99581 +304452,304452 +76454,76454 +228741,228741 +204900,204900 +317845,317845 +32496,32496 +68586,68586 +256304,256304 +127098,127098 +27361,27361 +142252,142252 +106041,106041 +346269,346269 +25970,25970 +344178,344178 +124196,124196 +17770,17770 +141995,141995 +125769,125769 +107344,107344 +420555,420555 +336617,336617 +99487,99487 +4044,4044 +113156,113156 +11605,11605 +343871,343871 +68839,463 +282509,282509 +185384,185384 +122217,122217 +127537,127537 +177858,177858 +118061,118061 +150255,150255 +111662,111662 +88970,88970 +20142,20142 +34998,34998 +9367,9367 +268336,268336 +33332,33332 +30774,30774 +102366,102366 +234707,234707 +11892,11892 +38075,38075 +229870,234010 +37288,37288 +118391,118391 +115125,115125 +420952,420952 +90055,90055 +129612,129612 +66103,66103 +128492,128492 +17217,17217 +112374,112374 +127937,127937 +21688,21688 +12626,12626 +103057,103057 +139049,139049 +166173,166173 +19688,19688 +137159,137159 +240560,240560 +108989,108989 +111894,111894 +37422,37422 +187518,187518 +166164,166164 +41242,41242 +39963,39963 +38107,38107 +34972,34972 +285256,285256 +285584,285584 +23472,23472 +24277,24277 +375847,375847 +120599,120599 +379356,50381 +246824,132574 +29216,29216 +36476,36476 +247754,247754 +258138,258138 +24097,24097 +183207,183207 +33339,33339 +140395,140395 +36243,36243 +157892,157892 +40858,40858 +404376,404376 +27435,27435 +33398,33398 +34469,34469 +203873,203873 +115117,115117 +59503,59503 +97150,97150 +50890,50890 +54042,54042 +85115,85115 +89693,89693 +141978,141978 +75278,75278 +389396,389396 +66146,66146 +34966,34966 +68897,68897 +287391,287391 +16909,16909 +137848,137848 +109389,109389 +125573,125573 +46962,46962 +27537,27537 +183617,183617 +90374,90374 +30730,30730 +264924,264924 +426408,426408 +27349,27349 +337294,337294 +21522,21522 +354329,354329 +120912,120912 +44251,44251 +28654,28654 +10761,10761 +30258,30258 +132723,132723 +376508,376508 +89763,89763 +204288,204288 +344049,344049 +280027,280027 +161814,161814 +155498,155498 +248471,248471 +26368,26368 +16618,16618 +15482,15482 +266829,266829 +302152,302152 +118532,118532 +295659,295659 +324918,324918 +66354,52107 +123236,123236 +68288,68288 +124872,124872 +421089,421089 +98328,98328 +114826,114826 +159902,134884 +388516,18011 +43164,43164 +30280,30280 +57978,57978 +292733,292733 +27342,27342 +174169,174169 +39595,39595 +63029,63029 +32894,32894 +35426,35426 +138572,138572 +17781,17781 +27840,27840 +62696,62696 +122964,122964 +138816,138816 +131889,131889 +356905,356905 +33343,33343 +13055,13055 +16887,16887 +405705,405705 +39495,39495 +1880,1880 +227118,227118 +165733,165733 +343869,343869 +52590,52590 +13079,13079 +115108,115108 +22518,22518 +113966,113966 +30044,30044 +18576,18576 +193230,193230 +22207,22207 +400204,400204 +32628,32628 +305203,305203 +127226,127226 +18955,18955 +282945,282945 +364525,364525 +132596,132596 +137234,137234 +127441,127441 +97974,97974 +193625,193625 +306402,306402 +112353,112353 +122311,122311 +159390,159390 +962,962 +263401,263401 +33313,33313 +427326,427326 +162829,162829 +293984,293984 +43125,43125 +213011,213011 +13543,13543 +40266,40266 +412534,412534 +37035,37035 +117779,117779 +150699,150699 +328046,328046 +20983,20983 +68175,68175 +24840,24840 +125770,125770 +198391,198391 +338081,338081 +182892,182892 +111106,111106 +33328,33328 +405612,405612 +11727,11727 +21054,21054 +14016,14016 +36810,36810 +411325,411325 +17795,17795 +334154,334154 +24371,24348 +132866,132866 +19682,19682 +111822,111822 +37273,37273 +162562,162562 +345617,345617 +360713,360713 +14432,14432 +384118,384118 +143298,143298 +129529,8790 +118512,118512 +297490,297490 +368356,368356 +142601,142601 +130778,130778 +139519,139519 +123346,123346 +291170,291170 +13093,13093 +29601,29601 +310387,310387 +124563,124563 +40053,40053 +112537,112537 +26883,26883 +304370,304370 +124157,124157 +25586,25586 +11633,11633 +114202,114202 +265842,265842 +42450,42450 +63578,63578 +372133,372133 +70280,70280 +197728,197728 +372452,372452 +299325,299325 +411248,411248 +37582,37582 +28601,28601 +17566,17566 +139053,139053 +25921,25921 +138032,138032 +29075,29075 +34971,34971 +28404,28404 +90744,90744 +317605,317605 +383224,383224 +15707,15690 +17936,17936 +62697,62697 +357546,357546 +33038,33038 +139452,139452 +179223,179223 +69199,69199 +137135,137135 +332292,332292 +406532,406532 +138952,138952 +103821,103821 +30888,30888 +376974,376974 +401154,401154 +40909,40909 +34965,34965 +33355,33355 +136715,136715 +204618,204618 +33347,33347 +19454,19454 +116835,116835 +40267,40267 +33228,33228 +136876,136876 +71388,71388 +92633,92633 +31073,31073 +34914,34914 +98797,98797 +302154,302154 +286876,5107 +102281,102281 +93155,93155 +130650,130650 +109164,109164 +226357,226357 +25943,25943 +4771,4771 +106420,106420 +28130,28130 +11675,11675 +42769,42769 +89390,89390 +34786,34786 +28210,28210 +130342,130342 +72929,72929 +27494,27494 +300671,300671 +38667,38667 +133669,133669 +120280,120280 +39478,39478 +32502,32502 +433279,433279 +393449,393449 +94139,94139 +110827,110827 +111145,111145 +13497,13497 +427452,427452 +33331,33331 +138658,138658 +15601,15601 +204546,97312 +397346,397346 +346399,346399 +25717,25717 +33326,33326 +330758,330758 +119923,119923 +20205,20205 +199533,199533 +40596,40596 +15547,15547 +33352,33352 +34008,34008 +37673,37673 +34771,34771 +33318,33318 +128267,128267 +275020,275020 +31915,31915 +139054,139054 +142226,142226 +131934,131934 +27425,27425 +34633,34633 +102115,102115 +32296,32296 +423356,423356 +138946,138946 +13759,463 +173407,173407 +33320,33320 +7154,7154 +132859,132859 +28407,28407 +374543,374543 +121810,121810 +33294,33294 +67382,67382 +47099,47099 +33881,33881 +100601,100601 +373500,373500 +199855,199855 +216425,216425 +352555,352555 +49351,49351 +33325,33325 +21801,21801 +95100,95100 +27677,27677 +192982,192982 +116952,116952 +213098,213098 +161392,161392 +33300,33300 +124017,124017 +287030,287030 +351295,351295 +111520,111520 +96408,96408 +15376,15376 +25365,25365 +431266,431266 +25845,25845 +17811,17811 +34772,34772 +33345,33345 +419383,419383 +139331,139331 +88020,88020 +9584,9584 +5632,5632 +147880,147880 +37108,37108 +371795,371795 +400194,400194 +16739,16739 +28973,28973 +313719,313719 +377118,377118 +11137,11137 +35709,35709 +380854,380854 +27331,27331 +23710,23710 +364274,364274 +335754,335754 +4186,4186 +93972,93972 +406622,406622 +433810,433810 +176109,176109 +33304,33304 +51385,51385 +17074,17074 +33270,33270 +13197,13197 +33297,33297 +31485,31485 +218002,218002 +26950,26950 +139149,139149 +167059,167059 +40590,40590 +9689,9689 +163883,163883 +16431,16431 +370803,370803 +51805,51805 +386898,386898 +40197,40197 +135859,135859 +165641,165641 +33333,33333 +208810,208810 +35245,35245 +33340,33340 +342374,342374 +21958,21958 +314748,314748 +38098,38098 +18645,18645 +24750,24750 +61196,61196 +26690,26690 +63097,63097 +22001,22001 +128512,128512 +229192,229192 +10172,10172 +138639,138639 +430562,430562 +124474,124474 +327228,24210 +415978,415978 +219434,219434 +128455,128455 +123621,123621 +232266,232266 +141071,141071 +158253,158253 +32316,32316 +33087,33087 +175240,175240 +355562,355562 +96618,96618 +257640,257640 +375740,375740 +96615,96615 +18327,18327 +42217,42217 +157164,157164 +37169,37169 +33337,33337 +197074,197074 +10977,10977 +33298,33298 +359751,359751 +122211,122211 +36654,36654 +158178,158178 +108022,108022 +19870,463 +417904,417904 +39480,39480 +6808,6808 +128426,128426 +402325,402325 +119887,119887 +43019,43019 +12009,12009 +79819,79819 +152551,152551 +108922,108922 +196319,196319 +35110,35110 +432798,432798 +33350,33350 +426390,426390 +421600,421600 +14803,14803 +19147,19147 +20671,20671 +35146,35146 +89197,89197 +32178,32178 +95946,95946 +25035,25035 +146662,146662 +33330,33330 +432681,432681 +158594,158594 +123083,123083 +340860,340860 +155682,155682 +168738,168738 +42405,42405 +269290,269290 +7034,38374 +34025,34025 +369494,369494 +64509,64509 +154979,154979 +115624,115624 +132345,132345 +106417,106417 +94341,94341 +206383,206383 +123226,123226 +406197,406197 +421585,316165 +314079,314079 +15562,15562 +96625,96625 +30142,30142 +175311,175311 +98265,98265 +34704,34704 +38433,38433 +84525,84525 +129807,129807 +219966,219966 +27299,27299 +41027,41027 +102008,102008 +17444,17444 +149423,149423 +35695,35695 +401539,401539 +33351,33351 +117151,117151 +6443,6443 +334933,334933 +387032,387032 +261334,261334 +10180,10180 +396140,396140 +97461,97461 +263304,263304 +110467,110467 +180017,180017 +131666,131666 +70467,70467 +144977,144977 +402622,402622 +33354,33354 +349243,349243 +425858,425858 +114186,114186 +20524,20524 +24301,24301 +119986,119986 +426208,426208 +40459,40459 +118242,118242 +414504,414504 +352880,352880 +129611,129611 +253934,253934 +36929,36929 +119991,119991 +39469,39469 +39437,39437 +334861,334861 +111878,111878 +33315,33315 +17812,17812 +46110,46110 +241056,241056 +152970,152970 +32393,32393 +85073,85073 +52625,52625 +60159,60159 +353261,353261 +5327,5327 +41696,41696 +32846,32846 +158265,158265 +96669,96669 +102117,102117 +413235,413235 +14529,14529 +15177,15177 +433351,433351 +327904,327904 +15994,15994 +430517,430517 +41492,41492 +33000,33000 +71996,71996 +127181,127181 +19139,19139 +254461,254461 +167436,167436 +376578,376578 +410098,410098 +112191,112191 +393485,393485 +424121,424121 +42761,42761 +68352,68352 +118557,118557 +209888,209888 +192933,192933 +68887,68887 +374448,374448 +160978,160978 +407302,407302 +135662,135662 +409864,409864 +420888,420888 +192066,192066 +23635,23635 +159665,159665 +174351,174351 +28426,28426 +142726,142726 +193000,193000 +24287,24287 +268882,268882 +33357,33357 +96891,96891 +69667,69667 +248102,248102 +346198,346198 +18611,18611 +33319,33319 +377475,377475 +422857,422857 +144679,144679 +96627,96627 +103774,103774 +34952,34952 +19106,19106 +40240,40240 +26520,26520 +35345,35345 +98558,98558 +322423,322423 +189529,189529 +18022,18022 +8563,8563 +88563,88563 +339933,339933 +33002,33002 +11192,11192 +30467,30467 +376509,376509 +69296,69296 +174127,174127 +272073,272073 +277140,277140 +97387,97387 +65847,65847 +379067,379067 +30062,30062 +34996,34996 +33009,33009 +37603,37603 +217945,217945 +147745,147745 +17121,17121 +36328,36328 +130920,130920 +18101,18101 +16839,16839 +93545,93545 +276007,276007 +141493,141493 +122050,122050 +18138,18138 +143799,143799 +40906,40906 +135893,135893 +25564,25564 +354044,354044 +34991,34991 +28625,28625 +335860,335860 +51960,51960 +189213,189213 +17376,17376 +15786,15786 +12170,12170 +60079,60079 +168667,168667 +128929,128929 +35597,35597 +271168,271168 +185219,185219 +341409,341409 +29651,29651 +28182,28182 +9950,9950 +38239,38239 +63781,63781 +95813,95813 +160686,160686 +271924,271924 +275873,275873 +43352,43352 +143488,143488 +12201,12201 +69805,69805 +391187,391187 +22725,22725 +17187,17187 +42770,42770 +34794,34794 +88304,88304 +283449,283449 +42051,42051 +34860,34860 +34967,34967 +138812,138812 +119922,119922 +107842,107842 +245780,172303 +210889,210889 +370552,370552 +311710,231045 +131222,131222 +225290,225290 +221918,221918 +1414,1414 +341465,341465 +194040,194040 +1240,1240 +357867,357867 +138319,138319 +151776,151776 +27937,27937 +195111,195111 +6709,6709 +32030,32030 +277761,277761 +21433,21433 +342837,342837 +42969,42969 +7381,7381 +129955,129955 +339855,339855 +18010,18010 +358623,358623 +123444,123444 +22660,22660 +42681,42681 +130615,130615 +191056,191056 +5261,5261 +104504,104504 +33192,33192 +19117,19117 +37023,37023 +26790,26790 +14826,14826 +29909,29909 +32075,32075 +122209,122209 +19872,463 +33388,33388 +121790,121790 +140974,140974 +8904,8904 +177437,143509 +109456,109456 +189615,189615 +266971,266971 +28755,28755 +5640,5640 +285454,285454 +9651,9651 +232932,232932 +9101,8345 +189593,189593 +16534,16534 +298741,298741 +130713,130713 +3151,3151 +2441,2441 +25690,25690 +151603,151603 +16301,16301 +174086,174086 +75322,75322 +158508,158508 +159443,35188 +145534,43443 +163987,163987 +13625,13625 +116010,116010 +15480,15480 +41085,41085 +218241,218241 +181074,39180 +29507,29507 +119088,119088 +37645,37645 +34184,34184 +99221,99221 +19867,463 +40080,40080 +58688,58688 +32276,32276 +111333,111333 +161743,161743 +26196,26196 +3164,3164 +111426,63216 +293520,293520 +4408,4408 +85558,11821 +11164,11164 +188430,188430 +260062,260062 +83364,83364 +31316,31316 +281429,281429 +195706,195706 +343559,343559 +422465,422465 +331016,331016 +124543,124543 +34148,34148 +224132,224132 +151532,151532 +396551,344877 +41445,41445 +145483,145483 +15150,15150 +146023,146023 +28131,28131 +36092,36092 +10440,10440 +41142,41142 +134305,317614 +26175,26175 +28495,28495 +92097,92097 +382476,382476 +138199,138199 +17740,17740 +406855,341501 +61796,61796 +14266,14266 +379187,379187 +28515,28515 +210901,210901 +27358,27358 +251761,251761 +31355,31355 +404430,404430 +26672,26672 +24660,24660 +13558,13558 +18125,18125 +38359,38359 +396344,396344 +3016,3016 +100004,100004 +153470,192556 +272570,272570 +24539,24539 +30248,23656 +136117,432 +302055,302055 +10565,10565 +227871,407466 +8005,8005 +15698,15698 +177018,177018 +21802,21802 +10370,10370 +217340,217340 +13732,13732 +16013,16013 +27930,27930 +259498,259498 +27771,27771 +257488,257488 +38756,38756 +27576,27576 +16773,16773 +34663,34663 +52054,52054 +30256,30256 +90053,90053 +372209,372209 +39819,39819 +29944,29944 +22791,22791 +147752,147752 +59614,59614 +10106,10106 +2336,2336 +236440,236440 +154841,154841 +192279,192279 +175236,175236 +4248,4248 +287505,287505 +171211,7989 +236449,315599 +94941,1299 +9456,9456 +10505,10505 +237395,237395 +10883,10883 +331851,331851 +367188,367188 +242464,242464 +300896,300896 +164558,164558 +1643,1643 +94266,94266 +16371,16371 +187717,187717 +161498,161498 +185261,185261 +42977,42977 +181264,181264 +257761,257761 +12938,12938 +14124,14124 +193429,193428 +42417,42417 +352819,352819 +114477,114477 +33182,33182 +5446,5446 +20188,20188 +268553,268553 +25096,25096 +235858,235858 +22797,22797 +570,570 +4549,4549 +336705,336705 +9817,9817 +18986,18986 +179928,179928 +120512,120512 +17380,17380 +222732,129031 +35808,35808 +122656,122656 +59929,59929 +157017,157017 +8483,8483 +130096,130096 +209751,209751 +272172,224805 +2257,2257 +3587,3587 +405756,204135 +305515,305515 +266780,266780 +229605,229605 +17746,17746 +22928,425073 +1088,1088 +134254,134254 +14200,14200 +16050,16050 +1885,1885 +42926,42926 +17993,17993 +202878,202878 +36426,36426 +26077,26077 +9167,9167 +138022,138022 +17060,17060 +24120,9319 +35628,35628 +388621,388621 +18890,18890 +19797,19797 +20109,20109 +28689,28689 +62576,62576 +3546,3546 +186696,186696 +30228,30228 +418056,418056 +218331,218331 +30850,30850 +8921,8921 +364269,463 +24945,24945 +11940,11940 +15433,15433 +189065,189065 +36222,36222 +157684,157684 +69724,69724 +14055,14055 +25028,25028 +39992,39992 +286314,286314 +380387,380387 +7332,7332 +2618,2618 +135735,135735 +183652,183652 +38689,38689 +88913,88913 +215957,215957 +33189,33189 +28169,28169 +425122,425122 +23347,23347 +257099,257099 +403380,21464 +21018,21018 +22350,22350 +121709,121709 +148461,148461 +257382,257382 +377537,377537 +4391,4391 +12275,12275 +287303,231837 +104781,104781 +17906,17906 +18089,18089 +40302,40302 +170342,170342 +28351,28351 +233883,233883 +31015,31015 +41654,41654 +344167,344167 +33853,33853 +172968,172968 +15258,15258 +19280,19280 +6225,6225 +95807,1321 +131584,131584 +121088,121088 +32698,32698 +12728,12728 +217097,216877 +200725,200725 +406859,406859 +64603,64603 +86084,86084 +195501,195501 +4307,4307 +180473,180473 +5375,5375 +49520,49520 +173556,173556 +240105,240105 +22335,22335 +308768,308768 +131755,131755 +132783,132783 +72265,72265 +19220,19220 +35579,35579 +3220,3220 +225233,225233 +27615,27615 +207194,207194 +35849,35849 +28198,28198 +28207,28207 +17126,17126 +10401,10401 +268291,268291 +337515,337515 +7298,7298 +3366,3366 +23426,23426 +9683,9683 +165715,165715 +40343,40343 +392761,392761 +292982,292982 +353638,353638 +303636,303636 +38232,38232 +145118,145118 +10779,10779 +320476,302302 +65603,65603 +171671,171671 +218821,218821 +20291,20291 +185744,244906 +35852,35852 +382205,382205 +170937,170937 +34480,34480 +174054,59813 +293229,6321 +140478,140478 +131336,131336 +7591,7591 +61615,61615 +300946,300946 +225492,225492 +27417,27417 +260337,25001 +40338,40338 +255591,255591 +66055,66055 +21608,21608 +2977,2977 +117146,117146 +335569,335569 +41706,41706 +383069,383069 +255672,255672 +24173,24173 +114819,114819 +238074,238074 +47148,47148 +24163,24163 +174070,174070 +36244,36244 +87667,87667 +147193,147193 +109214,109214 +231216,231216 +27590,27590 +132806,132806 +34808,34808 +165897,165897 +144581,144581 +228895,292733 +162117,289951 +38465,38465 +286209,286209 +224093,224093 +14052,14052 +27279,27279 +306203,306203 +26915,26915 +288392,288392 +425108,425108 +281432,281432 +256897,256897 +15774,15774 +32804,32804 +395015,395015 +90172,90172 +57987,57987 +14558,14558 +89426,89426 +86902,86902 +165011,165011 +139686,139686 +280244,280244 +10980,10980 +4932,4932 +13435,13435 +327620,327620 +16769,16769 +63235,63235 +11840,11840 +204025,204025 +16418,16418 +160544,160544 +32108,32108 +33548,33548 +28869,28869 +33301,33301 +227164,227164 +14853,14853 +140044,140044 +44550,44550 +18501,31347 +218232,218232 +10555,10555 +23376,23376 +286846,286846 +94433,94433 +37700,37700 +15757,15757 +33622,33622 +111640,111640 +5315,5315 +120791,120791 +32265,32265 +277515,277515 +16979,16979 +7037,7037 +284182,284182 +37405,37405 +6844,6844 +34023,34023 +14986,14986 +186756,186756 +277760,277760 +9309,9309 +334684,334684 +38065,38065 +14015,14015 +155833,155833 +31733,31733 +17715,17715 +133895,133895 +188947,188947 +28631,28631 +112582,112582 +228663,228663 +247373,247373 +39253,39253 +271351,271351 +23762,23762 +40086,40086 +14389,14389 +40438,40438 +253197,253197 +377492,377492 +97993,97993 +346912,346912 +157293,157293 +297108,297108 +17725,17725 +32537,32537 +39026,39026 +27632,27632 +399687,399687 +198038,198038 +175398,175398 +85574,85574 +18009,18009 +271620,271620 +147056,147056 +232040,232040 +335636,335636 +119202,119202 +7084,7084 +16960,16960 +28353,28353 +32213,32213 +111975,111975 +36766,36766 +184162,184162 +67793,67793 +27666,27666 +97736,97736 +34300,34300 +358289,358289 +130900,130900 +26755,26755 +205497,205500 +93241,93241 +124011,124011 +326569,463 +190600,190600 +133551,133551 +40321,40321 +24768,24768 +278406,278406 +124280,124280 +145112,145112 +18993,18993 +19249,19249 +17001,17001 +255290,255290 +131962,131962 +16757,16757 +85828,85828 +220011,220011 +63871,63871 +27052,27052 +16982,16982 +216707,267832 +362062,284435 +20713,20713 +25817,25817 +19142,19142 +73258,73258 +296193,289801 +11693,463 +138352,138352 +101874,101874 +163365,163365 +89376,89376 +187597,187597 +16687,16687 +137875,137875 +67353,67353 +16558,16558 +27430,27430 +88828,88828 +218215,218215 +255714,255714 +37705,37705 +150558,150558 +140031,140031 +18884,18884 +137618,137618 +69324,69324 +180159,180159 +41174,41174 +69160,69160 +308123,308123 +301698,301698 +150920,150920 +38743,38743 +148808,148808 +312445,312445 +37071,37071 +106363,106363 +196848,196848 +154821,154821 +173497,173497 +19825,127260 +13852,13852 +271028,271028 +128954,128954 +276096,276096 +205475,159865 +34649,34649 +21166,21166 +156226,156226 +34053,34053 +18783,18783 +112831,112831 +131320,131320 +420244,420244 +325303,325303 +12401,12401 +35166,35166 +28240,28240 +158596,158596 +17621,255194 +116312,116312 +32887,32887 +14947,14947 +293924,293924 +31671,14499 +264306,264306 +238905,238905 +6082,6082 +23649,23649 +21170,21170 +18152,18152 +181360,181360 +30403,30403 +18234,18234 +125374,125374 +29655,29655 +13906,13906 +28254,28254 +248688,248688 +378248,2633 +71025,71025 +140078,140078 +414315,115 +23195,23195 +40662,40662 +156264,156264 +217965,217965 +20386,408715 +153780,153780 +30400,30400 +370030,370030 +64619,64619 +89290,89290 +20478,463 +310229,310229 +72587,72587 +23425,23425 +187767,187767 +35169,35169 +15626,15626 +66976,66976 +79446,79446 +41014,41014 +183653,183653 +122912,122912 +353643,353643 +404887,404887 +47105,47105 +124553,124553 +139920,139920 +168524,168524 +24818,24818 +144924,17676 +99977,99977 +36605,36605 +113437,113437 +200992,200992 +122631,122631 +429059,429059 +169412,9817 +33696,33696 +358513,358513 +397219,397219 +18526,18526 +410789,410789 +107358,107358 +326803,326803 +38919,38919 +29502,29502 +131775,131775 +3536,3536 +21089,21089 +126715,126715 +341828,341828 +302125,302125 +28180,28180 +16965,16965 +197038,197038 +88813,88813 +123951,123951 +46122,46122 +21201,21201 +328856,328856 +14786,14786 +85456,85456 +45979,45979 +352005,352005 +171336,171336 +30584,30584 +11062,11062 +12035,12035 +39371,39371 +129100,129100 +19753,19753 +221139,65588 +29350,29350 +63035,63035 +199041,199041 +22106,22106 +183767,183767 +68893,68893 +366110,366110 +34601,34601 +200641,200641 +397845,397845 +36996,36996 +205338,205338 +34667,34667 +120054,120054 +98038,98038 +111509,111509 +56783,56783 +74164,74164 +334909,334909 +17445,17445 +22452,22452 +386454,386454 +51593,51593 +24663,24663 +9383,9383 +39509,39509 +302172,302172 +10607,10607 +3809,3809 +282363,282363 +152441,152441 +107867,107867 +125134,125134 +305880,305880 +15025,15025 +32671,32671 +31522,31522 +113485,113485 +164795,164795 +35331,35331 +34980,34980 +58661,58661 +135562,135562 +27684,27684 +29173,29173 +11468,11468 +65690,65690 +36632,36632 +128557,128557 +292084,292084 +12845,12845 +29156,29156 +109052,109052 +98376,98376 +25125,25125 +14657,14657 +24334,24334 +18964,18964 +31470,31470 +17920,17920 +208032,208032 +17188,17188 +29046,29046 +32123,32123 +129547,129547 +40542,40542 +25100,25100 +35691,35691 +202090,202090 +39606,39606 +256218,256218 +178248,178248 +56534,56534 +11665,11665 +353508,353508 +199914,199914 +40828,40828 +34999,34999 +22025,22025 +30522,30522 +83994,83994 +139632,139632 +366709,366709 +128281,128281 +138557,138557 +45978,45978 +23752,23752 +29597,29597 +343272,343272 +165745,165745 +97947,97947 +246972,246972 +14250,463 +322767,322767 +34994,34994 +28704,28704 +67854,67854 +29362,29362 +41183,41183 +249813,249813 +37823,37823 +41950,41950 +69167,69167 +319689,319689 +39319,39319 +296994,296994 +273281,32441 +155908,155908 +35692,35692 +222245,222245 +54519,54519 +40997,40997 +30462,30462 +98474,98474 +257167,257167 +22946,22946 +15198,15198 +72747,72747 +35753,35753 +26822,285823 +32182,32182 +111725,111725 +34673,34673 +371595,371595 +159392,159392 +18060,18060 +22849,22849 +368055,388987 +13687,13687 +129452,129452 +12742,12742 +31655,31655 +164257,164257 +22662,22662 +378382,378382 +125150,125150 +299923,299923 +58191,58191 +348699,348699 +97836,97836 +22258,22258 +12416,12416 +21501,21501 +15223,15223 +168905,168905 +55376,55376 +68374,68374 +261524,261524 +229702,253734 +34437,34437 +46749,46749 +39609,39609 +121590,121590 +17293,17293 +38696,38696 +277453,277453 +16324,3270 +98929,98929 +52713,52713 +331048,331048 +29029,29029 +98786,98786 +116810,116810 +123747,123747 +14785,14785 +31772,217355 +30201,30201 +194716,194716 +23839,23839 +173535,173535 +261081,261081 +98742,98742 +340938,340938 +104606,104606 +27406,27406 +324437,324437 +33299,33299 +27097,27097 +26707,26707 +23037,23037 +114870,114870 +37346,37346 +277130,277130 +110113,110115 +33082,33082 +27003,27003 +423386,423386 +42945,42945 +17320,17320 +27834,27834 +111980,111980 +4890,4890 +161552,161552 +110617,110617 +230442,230442 +79756,79756 +221109,40131 +249141,249141 +61318,61318 +140145,140145 +126902,126902 +126203,126203 +222590,222590 +291854,291854 +33919,33919 +149406,149406 +429621,429621 +382831,382831 +39175,39175 +26949,26949 +267862,267862 +133861,133861 +340517,340517 +21533,21533 +406936,406936 +157484,157484 +42074,42074 +397833,397833 +20222,20222 +151013,151013 +102324,102324 +66500,66500 +63489,63489 +296962,296962 +10576,10576 +182956,182956 +111294,111294 +387485,387485 +231224,231224 +181490,181490 +40045,40045 +22187,22187 +282057,282057 +27096,27096 +101774,101774 +119538,119538 +95863,95863 +37013,37013 +23461,23461 +231688,231688 +32251,32251 +241148,241148 +101836,101836 +36821,36821 +29775,29775 +25661,25661 +42773,42773 +148540,148540 +95029,95029 +26974,26974 +108023,108023 +31269,31269 +34643,34643 +13096,13096 +351222,351222 +315552,315552 +130719,130719 +16627,16627 +30427,30427 +33672,33672 +96464,96464 +24408,24408 +6063,6063 +5979,5979 +297314,30834 +67845,67845 +27672,27672 +15934,15934 +26797,26797 +9591,9591 +7295,7295 +244308,244308 +39612,39612 +109550,109550 +86350,86350 +31038,31038 +312575,312575 +75061,75061 +19483,19483 +48715,48715 +282946,282946 +37265,37265 +18678,18678 +109914,109914 +205615,205615 +102599,102599 +224994,224994 +23492,23492 +112947,112947 +21172,21172 +231767,231767 +146743,146743 +35302,35302 +11769,11769 +24041,24041 +14388,14388 +12435,12435 +182536,182536 +183294,183294 +65848,65848 +276838,276838 +231753,231753 +109155,109155 +10056,10056 +123269,123269 +109963,109963 +366737,366737 +42637,42637 +150348,150348 +33633,33633 +352089,352089 +11909,11909 +419567,419567 +149338,149338 +252266,252266 +166649,166649 +38961,38961 +19445,19445 +105935,105935 +19548,19548 +235019,463 +37824,37824 +16258,16258 +131742,131742 +15402,15402 +13054,13054 +100012,100012 +24720,24720 +254710,254710 +257843,257843 +17111,17111 +24295,24295 +26720,26720 +310620,310620 +127801,127801 +172194,172194 +122079,122079 +418189,418189 +325416,325416 +17768,17768 +159302,159302 +182426,182426 +7297,7297 +175881,175881 +99639,99639 +99226,99226 +28206,28206 +25952,25952 +126073,126073 +25622,25622 +376017,376017 +34995,34995 +397340,397340 +35270,35270 +22033,22033 +26643,26643 +118292,118292 +37290,37290 +52081,52081 +337888,337236 +20909,20909 +37853,37853 +255264,255264 +31197,31197 +18771,18771 +25615,25615 +230427,230427 +327775,336962 +285149,285149 +12502,12502 +267134,267134 +417783,417783 +23430,23430 +97075,97075 +34832,34832 +69626,69626 +135857,135857 +11948,11948 +88395,88395 +306495,306495 +26744,26744 +346639,346639 +259312,259312 +30883,30883 +19506,19506 +9419,9419 +219920,219920 +28093,28093 +137176,137176 +43079,43079 +97405,97405 +73567,73567 +19266,19266 +410195,410195 +17674,17674 +23893,23893 +124539,124539 +108984,108984 +35149,35149 +12413,12413 +103313,103313 +17894,17894 +13201,13201 +9888,9888 +382209,382209 +34157,34157 +147050,147050 +17254,17254 +13697,13697 +92494,92494 +140246,140246 +179439,179439 +122795,122795 +41566,41566 +309951,309951 +25614,25614 +338570,338570 +12095,12095 +17506,17506 +30116,30116 +189135,189135 +261335,261335 +87855,87855 +19148,19148 +186903,186903 +111443,111443 +23351,23351 +227606,227606 +159553,159553 +25842,25842 +6288,6288 +90645,90645 +34086,34086 +408716,408715 +28981,28981 +146051,146051 +217705,217705 +15606,15606 +158018,158018 +81389,81389 +421920,421920 +19871,463 +15349,15349 +24108,24108 +14221,463 +35343,35343 +128183,128183 +26277,26277 +23897,23897 +17888,17888 +279546,279546 +126078,126078 +368277,368277 +97053,97053 +182051,182051 +268893,268893 +36785,36785 +322075,322075 +115344,115344 +72725,72725 +261333,261333 +59507,59507 +289112,289112 +340774,340774 +36582,36582 +92582,92582 +75940,75940 +167816,167816 +14453,14453 +379543,379543 +152286,152286 +376707,376707 +181996,181996 +11208,11208 +64097,64097 +171385,171385 +56408,56408 +155327,155327 +4133,4133 +4148,463 +318978,318978 +226961,226961 +282471,282471 +264780,264780 +34904,34904 +58663,58663 +213520,195496 +41500,41500 +6708,6708 +20896,20896 +375361,375361 +110484,110484 +71673,71673 +188039,188039 +15729,32888 +19141,19141 +14238,463 +8685,8685 +95753,95753 +32996,32996 +102750,102750 +31361,31361 +296339,296339 +266623,283488 +6789,6789 +58139,58139 +24253,24253 +4614,4614 +8268,8268 +191558,191558 +14589,14589 +51842,51842 +25073,25073 +1808,1808 +212493,212493 +194661,194661 +23933,23933 +296449,6541 +10960,10960 +1683,1683 +15140,15140 +22665,22665 +156050,156050 +283430,283430 +281158,281158 +178879,178879 +7756,7756 +314892,271460 +34617,34617 +42381,42381 +4422,4422 +14242,463 +43472,43472 +16576,16576 +132846,132846 +14030,14030 +53739,53739 +21705,28510 +4866,4866 +6685,6685 +288451,288451 +347732,347732 +422814,3383 +179457,159865 +368794,368794 +42016,42016 +24968,24968 +382621,382621 +216782,216782 +111871,111871 +353416,353416 +332914,332914 +183612,412059 +171944,171944 +74098,74098 +377370,377370 +132320,132320 +284016,284016 +56684,56684 +50445,50445 +64890,64890 +20880,20880 +25413,25413 +11759,11759 +171361,155854 +34603,34603 +125395,2471 +177001,177001 +346008,346008 +43241,43241 +229234,229234 +57111,57111 +5535,5535 +25042,25042 +260172,260172 +9550,9550 +25797,25797 +38571,38571 +29554,463 +16943,16943 +196976,196976 +16746,16746 +2625,2625 +9049,9049 +13867,13867 +126328,126328 +160630,160630 +42028,42028 +16145,24716 +258332,258332 +11536,11536 +58374,58374 +12162,271460 +14235,18531 +13533,13533 +42835,42835 +329176,329176 +93763,98953 +325388,295605 +306867,306867 +36894,36894 +102887,102887 +86588,86588 +25046,25046 +424619,424619 +10059,10059 +163263,163263 +20885,20885 +6216,6216 +164878,177478 +29553,29553 +63092,463 +22109,22109 +17570,17570 +131159,131159 +269904,269905 +141049,141049 +76443,76443 +11528,11528 +316919,316919 +155213,155213 +219511,219511 +144735,178707 +131756,131756 +39770,39770 +364649,364649 +424225,424225 +218447,218447 +29025,29025 +1388,1388 +6511,6511 +32423,172978 +153624,153624 +27103,27103 +16039,16039 +21813,21813 +173290,173290 +206856,206857 +2437,2437 +4880,4880 +64654,64654 +3582,9610 +41180,41180 +32399,37225 +209626,209626 +17596,43227 +7206,7206 +12403,12403 +365251,365251 +21684,21684 +42373,42373 +42380,42380 +32960,32960 +151783,193593 +3709,3709 +32480,32480 +123056,123056 +245171,245171 +267971,267971 +242620,242620 +9881,9881 +16555,16555 +132800,132800 +165912,165912 +168946,168946 +336502,336502 +428764,428764 +163881,163881 +17601,17601 +246548,246548 +111283,111283 +340836,340836 +7907,7907 +135677,135677 +86013,86013 +344240,344240 +6587,98667 +131028,131028 +68104,68104 +136,136 +8683,8683 +8213,8213 +119387,119387 +7617,7617 +65595,65595 +5101,5101 +119504,119504 +6619,6619 +11026,11026 +16276,16276 +267978,267978 +138693,138693 +343532,343532 +88585,88585 +37894,37894 +325091,325091 +354209,354209 +10139,10139 +348433,348433 +70174,357874 +146109,146109 +8511,8511 +297594,463 +182239,182239 +128021,128021 +5898,5898 +25449,25449 +28354,28354 +3903,3903 +38648,38648 +170713,170713 +375772,463 +253757,253757 +171484,171484 +50611,50611 +268177,268177 +285604,285604 +26818,26818 +12503,12503 +9422,9422 +33402,33402 +65630,65630 +11479,11479 +111811,111811 +14959,14959 +32258,32258 +25226,25226 +13174,13174 +33482,33482 +257803,292733 +35842,35842 +292136,225239 +34158,34158 +200073,200073 +379925,379925 +29111,29111 +289249,289249 +275859,275859 +27069,27069 +49475,49475 +162072,162072 +6623,6623 +382538,382538 +354128,354128 +12439,12439 +318529,331439 +258516,258516 +250530,250530 +209175,209175 +40366,40366 +19060,19060 +16175,16175 +11944,11944 +3323,3323 +191405,191405 +353648,353648 +14684,14684 +106283,106283 +42961,42961 +16783,16783 +338500,338500 +27457,27457 +334579,334579 +218720,218720 +14594,14594 +131526,131526 +335248,335248 +29427,29427 +135427,135427 +12345,12345 +99016,99016 +191063,118080 +33761,33761 +135438,135438 +10279,10279 +25751,25751 +286073,286073 +5913,5913 +41605,41605 +35844,35844 +22150,22150 +35332,35332 +73699,73699 +143700,143700 +291582,291582 +48687,48687 +15316,15316 +6530,6530 +62054,62054 +34677,34677 +40144,40144 +34259,34259 +160726,317311 +14552,14552 +24190,24190 +11879,11879 +27288,27288 +10983,10983 +11982,11982 +34367,34367 +29150,29150 +43008,43008 +228725,228725 +8440,8440 +10395,10395 +364027,364027 +47071,47071 +97840,97840 +27357,27357 +35639,35639 +13335,13335 +35848,35848 +63040,63040 +177625,177625 +198680,198680 +35734,35734 +21259,21259 +36168,36168 +13781,13781 +14831,14831 +3426,3426 +22050,22050 +26791,26791 +358655,358655 +11355,11355 +27893,27893 +14711,14711 +89282,89282 +187109,187109 +35861,35861 +377719,377719 +17829,17829 +103025,103025 +13681,13681 +39163,39163 +33976,33976 +177090,177090 +20575,20575 +293872,293872 +247190,247190 +173145,173145 +402764,402764 +17648,17648 +29967,29967 +70366,70366 +147904,147904 +102278,102278 +23732,23732 +28359,28359 +72000,72000 +39091,39091 +37275,37275 +274526,274526 +354076,354076 +7072,7072 +264447,264447 +28845,28845 +145323,145323 +29314,29314 +10480,10480 +169719,169719 +119008,119008 +8648,8648 +39017,39017 +125955,125955 +359201,359203 +5068,5068 +38474,38474 +206331,206331 +175586,175586 +13628,13628 +40605,40605 +304589,304589 +33774,33774 +32184,32184 +166195,166195 +267909,267909 +86784,86784 +16372,16372 +164786,164786 +192743,192743 +55900,55900 +146135,146135 +363484,363484 +331754,331754 +18924,18924 +69092,69092 +30729,30729 +26989,26989 +145924,145924 +253177,253177 +251681,251681 +11403,11403 +239701,239701 +35516,35516 +23029,23029 +232629,232629 +68393,68393 +3847,3847 +124676,124676 +73037,73037 +35094,35094 +15450,15450 +29054,29054 +19710,19710 +15297,15378 +175434,175434 +157907,157907 +27879,27879 +28340,28340 +14999,14999 +25832,25832 +352413,352413 +191442,191442 +21630,21630 +204132,204132 +19579,19579 +9523,9523 +19084,19084 +40049,40049 +154124,154124 +243425,243425 +26948,26948 +253494,253494 +56476,56476 +162776,162776 +21757,21757 +27845,27845 +24468,24468 +217545,217545 +101730,101730 +168773,168773 +6790,6790 +381168,381168 +103719,103719 +20400,20400 +40460,321934 +192594,192594 +33441,33441 +23192,23192 +74243,74243 +113608,113608 +26600,26600 +301587,285991 +20484,20484 +78470,78470 +10151,10151 +15347,15347 +117871,117871 +22041,22041 +65681,65681 +358967,358967 +28945,28945 +425727,425727 +138619,138619 +139495,139495 +54292,54292 +138078,138078 +15554,15554 +209288,209288 +90938,90938 +22442,22442 +209545,209545 +35041,35041 +253681,253681 +1114,1114 +24438,24438 +165016,13301 +94092,94092 +61889,61889 +169228,169228 +255627,255627 +14294,14294 +47075,47075 +28303,28303 +13278,13278 +9838,9838 +411072,411072 +42988,42988 +149172,149172 +32638,32638 +22833,22833 +221631,221631 +27065,27065 +27392,27392 +120556,120556 +40368,40368 +60791,60791 +45584,45584 +14823,14823 +5592,5592 +14633,14633 +90183,90183 +15550,15550 +33997,33997 +7123,7123 +13834,13834 +40660,40660 +144246,144246 +6633,6633 +42758,42758 +123166,123166 +367563,367563 +158278,158278 +263226,263226 +57170,57170 +362814,362814 +17979,17979 +29707,29707 +32953,32953 +115577,115577 +104272,104272 +348971,348971 +302810,302810 +20748,20748 +12892,12892 +21029,21029 +359159,359159 +56633,56633 +168835,168835 +309927,309927 +93740,93740 +22793,22793 +279420,279420 +22261,22261 +20335,20335 +23261,23261 +201746,201746 +197499,197499 +17679,17679 +113845,113845 +14675,14675 +57288,57288 +92291,92291 +243219,243219 +24299,24299 +370935,370935 +26955,26955 +35303,35303 +20583,20583 +115608,115608 +24949,24949 +195874,195874 +41051,41051 +161867,161867 +188880,188880 +33344,33344 +115324,115324 +419133,419133 +25111,25111 +115208,115208 +34968,34968 +180485,180485 +26140,26140 +59539,59539 +71807,71807 +28244,28244 +13140,13140 +382845,382845 +24164,24164 +26229,26229 +18886,18886 +209547,209547 +290362,290362 +21844,21844 +188334,2843 +25117,25117 +370737,370737 +16902,16902 +24876,24876 +39878,39878 +40642,40642 +175694,175694 +33960,33960 +65336,65336 +327317,327317 +102855,102855 +23743,23743 +12950,12950 +10041,10041 +66267,66267 +293439,293439 +120247,120247 +24452,24452 +63704,63704 +36365,36365 +27023,27023 +38788,38788 +319313,3439 +180774,180774 +42061,42061 +28205,28205 +29206,29206 +262393,262393 +397387,397387 +57602,57602 +175302,175302 +10979,10979 +36000,36000 +308196,308196 +202335,202335 +296187,289801 +32214,32214 +23176,23176 +241657,241657 +3277,3277 +217946,217946 +11400,11400 +29074,29074 +82303,82303 +134176,134176 +35259,35259 +279580,279580 +188900,188900 +263373,263373 +7087,7087 +187771,187771 +217021,217021 +50446,50446 +35018,35018 +33075,33075 +25783,25783 +129409,129409 +19479,19479 +138574,138574 +16890,16890 +32799,32799 +8739,8739 +15026,15026 +26735,26735 +25074,25074 +295068,295068 +374783,374783 +40174,40174 +18301,18301 +32543,32543 +15777,15777 +179267,179267 +33640,33640 +62317,62317 +14622,14622 +67762,67762 +340165,340165 +298333,298333 +7074,7074 +17540,17540 +32911,32911 +18438,18438 +16503,16503 +183609,183609 +14810,14810 +327541,327541 +358514,358514 +76254,76254 +282458,282458 +34982,34982 +15704,15690 +76569,76569 +317460,317460 +30970,30970 +4333,4333 +148453,148453 +180170,180170 +22688,22688 +25148,25148 +310489,310489 +333834,333834 +22120,22120 +29936,29936 +419477,419477 +230841,230841 +3299,3299 +22113,22113 +9265,9265 +94715,94715 +209321,209321 +97419,97419 +271077,271077 +135330,170365 +352528,352528 +85991,85991 +39728,39728 +31334,31334 +22685,22685 +194888,194888 +54829,54829 +174629,174629 +212803,212803 +24271,24271 +5345,5345 +9960,9960 +30032,30032 +35962,35962 +96060,96060 +5125,5125 +43799,423590 +35480,35480 +42974,42974 +111432,111432 +106318,106318 +112360,112360 +12398,12398 +19375,19375 +164969,164969 +378341,378341 +34733,34733 +71106,71106 +17137,17137 +226932,226932 +100741,100741 +27338,27338 +109583,109583 +100620,100620 +356204,356204 +57533,57533 +146435,146435 +65909,65909 +20215,20215 +99509,99509 +179010,179010 +22623,22623 +202775,202775 +20947,20947 +26704,26704 +136428,136428 +157287,157287 +15854,15854 +26788,26788 +33922,33922 +93405,93405 +269438,269438 +13851,13851 +63627,63627 +127230,127230 +31659,31659 +92755,92755 +320014,320014 +86000,86000 +410454,410454 +18546,18546 +52711,52711 +26912,26912 +147246,147246 +21280,21280 +416959,416959 +22217,22217 +370653,370653 +156710,156710 +182898,182898 +15495,15495 +141542,141542 +23044,23044 +105379,105379 +225966,225966 +23238,23238 +13810,13810 +275452,248702 +262413,262413 +40155,40155 +245049,245049 +23945,23945 +374685,374685 +157454,157454 +400183,400183 +53742,53742 +69150,69150 +42978,42978 +166340,166340 +276227,276227 +6422,6422 +300619,300619 +238042,238042 +400969,400969 +200470,200470 +40207,40207 +300892,300892 +254166,254166 +39902,39902 +267231,267231 +97763,97763 +310224,310224 +129559,129559 +242288,242288 +92588,92588 +181115,181115 +313594,313594 +29402,29402 +60080,60080 +404805,404805 +132858,132858 +10128,10128 +195462,195462 +331360,331360 +29113,29113 +269104,269104 +8653,8653 +21527,21527 +3462,3462 +100739,100739 +5963,5963 +27614,27614 +16002,16002 +122799,122799 +407301,407301 +21543,21543 +9626,9626 +28241,28241 +411730,411730 +90034,90034 +150601,150601 +22538,22538 +400315,400315 +93912,93912 +382698,382698 +128148,128148 +338461,338461 +19705,19705 +36863,36863 +202961,202961 +90760,90760 +12782,12782 +233844,233844 +369484,369484 +73874,73874 +130774,130774 +353603,353603 +149838,149838 +338942,338942 +105575,105575 +138808,138808 +361825,361825 +294764,294764 +246294,246294 +340183,340183 +38235,38235 +244621,244621 +24617,24617 +191125,191125 +40451,40451 +114630,114630 +382244,382244 +60610,60610 +124439,124439 +40051,40051 +25792,25792 +295078,295078 +240533,240533 +56382,56382 +82690,82690 +120614,120614 +166233,166233 +120026,120026 +127889,127889 +37281,37281 +95085,95085 +124541,124541 +30747,30747 +155904,155904 +292353,292353 +117931,117931 +124625,124625 +21944,21944 +127586,127586 +32707,32707 +297347,297347 +31937,31937 +172758,172758 +38147,38147 +15496,15496 +12028,12028 +151037,151037 +422856,422856 +119721,119721 +22565,22565 +79854,79854 +18610,18610 +92290,92290 +14521,14521 +226020,226020 +344980,344980 +11881,11881 +98750,98750 +126244,126244 +403244,403244 +37868,37868 +17959,17959 +111406,111406 +33111,33111 +90784,90784 +14629,14629 +35829,35829 +19292,19292 +24766,24766 +33872,33872 +34940,34940 +148889,148889 +35578,35578 +310221,310221 +256197,256197 +90370,90370 +121287,121287 +187609,187609 +158798,158798 +95371,95371 +162494,162494 +213756,213756 +163477,163477 +186420,186420 +129926,129926 +114680,114680 +111141,111141 +387488,387485 +2220,2220 +16901,16901 +25787,25787 +18480,18480 +10111,10111 +16016,16016 +227529,227529 +25360,25360 +424575,424575 +182903,182903 +216758,216758 +415202,415202 +15594,15594 +94207,94207 +49494,49494 +140127,367560 +20346,20346 +415201,415201 +153429,153429 +38212,38212 +70522,70522 +121290,121290 +37308,37308 +143504,143504 +144207,144207 +9694,9694 +31350,31350 +38023,38023 +109159,109159 +34290,34290 +15097,15097 +11021,11021 +140204,140204 +343872,343872 +175966,175966 +16525,16525 +325015,325015 +88626,88626 +26815,26815 +39613,39613 +56555,56555 +236269,236269 +344623,344623 +27873,27873 +28007,28007 +175990,175990 +140713,140713 +22208,22208 +37979,37979 +379109,379109 +140112,140112 +98312,98312 +131417,131417 +136088,136088 +69195,69195 +94864,94864 +40180,40180 +396638,396638 +20319,20319 +200605,200605 +24727,24727 +116385,116385 +387662,387662 +20354,20354 +376518,376518 +32583,32583 +139158,139158 +28098,28098 +43126,43126 +119087,119087 +28380,28380 +34186,34186 +26398,26398 +334971,334971 +400119,400119 +14150,14150 +338719,338719 +135524,135524 +197972,197972 +290148,290148 +124733,124733 +375537,375537 +126439,126439 +56785,56785 +147003,147003 +178950,178950 +164058,164058 +26645,26645 +343059,433066 +185278,185278 +37744,37744 +18331,18331 +205545,205545 +326433,326433 +118778,118778 +109585,109585 +53740,53740 +105104,105104 +34261,34261 +160320,160320 +155847,155847 +20644,20644 +30421,30421 +400877,463 +136970,136970 +33739,33739 +13180,13180 +23838,23838 +180138,180138 +12972,12972 +18542,18542 +38324,38324 +57683,57683 +67786,67786 +72235,72235 +34239,34239 +28713,28713 +8692,8692 +119937,119937 +15604,15604 +378738,378738 +316646,316646 +82088,82088 +92625,92625 +57246,57246 +31560,31560 +32189,32189 +227607,29402 +262918,262918 +16217,16217 +142511,142511 +178489,178489 +187491,187491 +163213,163213 +9702,9702 +122837,122837 +265460,265460 +31591,31591 +24892,24892 +16859,16859 +30961,30961 +83318,83318 +141360,141360 +39486,39486 +58476,58476 +12831,12831 +163423,163423 +29662,29662 +101922,101922 +90797,90797 +69149,69149 +90907,90907 +29406,29406 +190016,190016 +147843,147843 +393098,393098 +109165,109165 +235797,235797 +217882,217882 +25699,25699 +89127,89127 +380506,380506 +22517,22517 +171717,171717 +43450,43450 +429492,429492 +94621,94621 +165003,165003 +90054,90054 +100675,100675 +100186,100186 +101257,101257 +130432,130432 +17034,17034 +124330,124330 +203827,203827 +13492,13492 +56955,56955 +110495,110495 +77205,77205 +198040,198040 +23899,23899 +294660,294660 +18823,18823 +430866,430866 +29864,29864 +238334,238334 +10086,10086 +33667,33667 +293276,293276 +37416,37416 +28211,28211 +40245,40245 +26971,26971 +122840,122840 +88228,88228 +21655,21655 +2692,2692 +140684,140684 +157476,157476 +34975,34975 +392884,392884 +257428,257428 +170356,170356 +263730,263730 +135820,135820 +35496,35496 +142133,142133 +38457,38457 +333555,333555 +256889,256889 +36288,36288 +422411,422411 +30059,30059 +279885,279885 +109163,109163 +28655,28655 +108999,108999 +38812,38812 +286225,286225 +90433,90433 +14704,14704 +171473,171473 +402060,402060 +34292,34292 +140130,140130 +42799,42799 +30475,30475 +18208,18208 +42690,42690 +22022,22022 +32926,32926 +14072,14072 +162102,162102 +64473,64473 +209965,209965 +53412,53412 +38424,38424 +316392,316392 +339704,339704 +200685,200685 +22461,22461 +205975,205975 +9662,9662 +98559,98559 +39988,39988 +89226,89226 +36855,36855 +27025,27025 +70197,70197 +18593,18593 +93739,93739 +160508,160508 +108987,108987 +63064,63064 +15533,15533 +257677,257677 +41421,41421 +103310,103310 +198388,198388 +155902,155902 +24652,24652 +31158,31158 +416860,416860 +67851,67851 +189545,189545 +26361,26361 +31961,31961 +28212,28212 +152771,152771 +93627,93627 +263336,263336 +43263,43263 +36916,36916 +138717,138717 +94626,94626 +64870,64870 +121714,121714 +317939,317939 +25280,25280 +33015,33015 +19198,19198 +124348,124348 +75275,75275 +310223,310223 +114074,114074 +284717,284717 +17575,17575 +173893,173893 +25781,25781 +88892,88892 +17149,17149 +38238,38238 +41871,41871 +362880,362880 +223007,223007 +24938,24938 +35558,35558 +95074,95074 +192460,192460 +332737,332737 +116108,116108 +39474,39474 +11163,11163 +256946,256946 +73963,73963 +37481,37481 +407654,407654 +26050,26050 +276285,276285 +125686,125686 +15014,15014 +125734,125734 +62527,62527 +161119,161119 +16528,16528 +30188,30188 +10137,10137 +70405,70405 +7042,7042 +114674,114674 +9627,9627 +423350,423350 +34283,34283 +146560,146560 +96620,96620 +371421,371421 +10554,10554 +90756,90756 +38039,38039 +177202,177202 +164944,164954 +259466,259466 +301199,232223 +144678,144678 +103800,103800 +111864,111864 +23982,23982 +422958,422958 +170646,170646 +262537,262537 +32832,32832 +429700,429700 +170502,170502 +416004,416004 +132346,132346 +251639,251639 +82027,82027 +41355,41355 +160547,160547 +22000,22000 +327252,327252 +430955,430955 +269132,269132 +14470,14470 +35663,35663 +324629,227120 +113647,113647 +387846,387846 +22483,22483 +34749,34749 +9877,9877 +21880,21880 +80998,80998 +363836,363836 +411727,411727 +126928,126928 +17194,17194 +180152,180152 +189335,189335 +173279,173279 +120972,120972 +25644,25644 +10061,10061 +15803,15803 +192459,192460 +9753,9753 +13159,13159 +114173,114173 +32590,32590 +3204,3204 +426659,426659 +63365,63365 +108387,108387 +9235,9235 +68164,68164 +397910,397910 +113173,113173 +144008,144008 +15870,15870 +18179,18179 +84005,84005 +119929,119929 +355464,355464 +26978,26978 +161402,161402 +392883,392883 +428778,428778 +35719,35719 +17774,17774 +63010,63010 +123537,123537 +283442,283442 +131401,131401 +294597,294597 +322494,322494 +28263,28263 +327568,327568 +120557,120557 +14416,14416 +39919,39919 +343727,343727 +136479,136479 +112220,112220 +1851,1851 +13184,13184 +113859,113859 +412014,412014 +17384,17384 +18943,18943 +127800,127800 +163700,163700 +112631,112631 +2411,2411 +37746,37746 +414162,316048 +128083,128083 +325182,325182 +188086,188086 +413865,413865 +53156,53156 +140140,140140 +357951,357951 +27854,27854 +122324,122324 +119994,119994 +10138,10138 +18211,18211 +111726,111726 +376941,376941 +70911,70911 +47378,47378 +125599,125599 +34836,34836 +277228,277228 +25227,25227 +31861,31861 +14019,14019 +122500,122500 +116478,116478 +27008,27008 +398213,398213 +38044,38044 +100234,100234 +375768,375768 +380593,380593 +32507,32507 +349450,349450 +21913,21913 +64256,64256 +18169,18169 +371528,371528 +366736,366736 +38652,38652 +35077,35077 +114632,114632 +116463,116463 +15799,15799 +26719,26719 +40498,40498 +339440,339440 +227121,227121 +27233,27233 +99583,99583 +216349,216349 +97997,97997 +39922,39922 +27765,27765 +27869,27869 +43226,43226 +357806,357806 +6359,6359 +169052,169052 +15744,15744 +145353,145353 +98782,98782 +33617,33617 +97954,97954 +20181,20181 +17890,17890 +22178,22178 +15377,15377 +42161,42161 +140418,140418 +19146,19146 +89293,89293 +386443,386443 +150565,337542 +23264,23264 +114277,114277 +92593,92593 +59666,59666 +107973,107973 +11722,463 +275984,187741 +312453,312453 +20401,20401 +402196,400209 +40044,40044 +226323,226323 +27212,27212 +66698,66698 +139001,139001 +59876,59876 +139142,139142 +30448,30448 +227603,227603 +120214,120214 +424173,424173 +24767,24767 +113699,113699 +105124,105124 +119739,119739 +55225,55225 +11721,11721 +143446,143446 +92558,92558 +15767,15767 +283772,283772 +263068,263068 +29249,29249 +188240,188240 +358657,358657 +26283,26283 +25139,25139 +421469,421469 +330557,330557 +85959,85959 +113635,113635 +333418,333418 +66057,66057 +25090,25090 +33547,33547 +165721,165721 +109153,109153 +95089,95089 +94624,94624 +129229,129229 +21138,21138 +281724,281724 +130772,130772 +34285,34285 +19616,19616 +15090,15090 +136385,136385 +3397,3397 +40652,40652 +355094,265912 +325097,325097 +327722,327722 +170034,463 +146146,146146 +21711,21711 +7996,7996 +9089,9089 +72087,72087 +233203,233203 +327914,327914 +18013,342073 +63049,63049 +394499,271460 +18516,135810 +218380,218380 +17767,17767 +31984,31984 +291955,291955 +1640,1640 +175848,175848 +215116,215116 +8631,8631 +142933,142933 +99674,99674 +165796,165796 +30964,30964 +6827,6827 +5123,5123 +4515,4515 +39400,39400 +5726,5726 +4678,4678 +4024,4024 +32967,32967 +38947,38947 +10057,10057 +65489,65489 +62051,62051 +4080,4080 +321843,321843 +12412,12412 +98502,98502 +9959,9959 +55360,55360 +17741,17741 +24753,24753 +283796,283796 +189421,189421 +29760,463 +32491,32491 +36382,36382 +161503,161503 +2631,2631 +73236,73236 +168996,168996 +160067,160067 +14625,14625 +245284,245284 +18199,18199 +46431,46431 +344767,344767 +397081,397081 +136585,136585 +41540,41540 +103742,103742 +3232,3232 +13024,13024 +376954,376954 +5890,5890 +92310,92310 +218953,218953 +73073,73073 +192244,192244 +4118,4118 +8814,8814 +184771,184771 +8854,8854 +27518,27518 +20315,20315 +149465,134884 +11907,11907 +27401,27401 +26553,26553 +18340,18340 +51886,51886 +34754,34754 +335135,335135 +35340,35340 +129968,129968 +34205,34205 +352189,352189 +156375,463 +346821,42448 +38742,38742 +433109,433109 +104766,104766 +3189,3189 +206588,173018 +221211,221211 +15239,15239 +10321,10321 +1862,1862 +6132,6132 +306671,306671 +192236,192236 +153545,153545 +169435,169435 +179537,179537 +1636,1636 +32053,32053 +12426,463 +6512,1544 +255717,255717 +142149,142149 +994,994 +28262,28262 +17793,17793 +30030,30030 +20251,20251 +20986,20986 +21656,21656 +34681,34681 +15222,15222 +14283,14283 +150402,150402 +10577,10577 +297216,297216 +16834,16834 +7644,7644 +3255,3255 +12100,12100 +41651,41651 +308847,308847 +155590,155590 +91195,91195 +360962,124954 +575,575 +32132,32132 +174471,174471 +23688,23688 +75266,75266 +51444,51444 +30266,30266 +218525,218525 +9249,9249 +122820,122820 +214343,214343 +317290,317290 +365685,365685 +353305,353305 +2873,2873 +146752,146752 +5851,5851 +153611,153611 +183387,92876 +191478,191478 +172248,172248 +168314,168314 +220256,220256 +275065,275065 +4497,4497 +206658,206658 +266119,266119 +298574,298574 +17144,17144 +86521,86521 +2468,2468 +31351,31351 +26521,26521 +11409,11409 +145920,145920 +39061,39061 +135718,135718 +6013,6013 +171397,171397 +162525,162525 +175421,175421 +185221,185221 +21418,21418 +34574,34574 +14969,14969 +99945,99945 +9457,9457 +4742,4742 +242880,242880 +293978,293978 +268176,268176 +153729,153729 +23202,23202 +319141,319141 +12246,12246 +182561,43443 +39363,463 +21548,21548 +11942,11942 +240992,240992 +4546,4546 +187817,187817 +35596,35596 +96777,96777 +15028,15028 +23634,23634 +86833,86833 +244612,341823 +183345,183345 +218197,218197 +296362,296362 +30637,30637 +12655,12655 +12931,12931 +145504,122327 +217136,217136 +9479,9479 +11268,11268 +32179,32179 +25904,25904 +8893,8893 +295119,295119 +146777,146777 +5004,5004 +11321,11321 +18201,18201 +12484,12484 +34206,34206 +183342,183342 +6198,6198 +12906,12906 +130641,130641 +7613,7613 +20464,20464 +306249,323835 +23504,16553 +3988,3988 +337363,337363 +15778,15778 +179720,179720 +139637,139637 +322831,137909 +359526,359526 +66241,66241 +52088,52088 +28024,399784 +23498,23498 +74605,74605 +135279,135279 +181263,181263 +20932,20932 +67979,67979 +42575,42575 +165629,165629 +30063,30063 +158132,158132 +6992,6992 +270129,270129 +5311,5311 +294242,294242 +83391,83391 +68631,68631 +19076,19076 +37338,37338 +5509,297569 +2118,2118 +4988,4988 +15882,15882 +205919,205919 +18670,18670 +254212,254212 +14748,14748 +120895,120895 +127515,127515 +8796,8796 +18017,18017 +37870,37870 +24732,24732 +35749,35749 +171035,171035 +362493,362493 +7350,7350 +6870,6870 +10632,10632 +152745,152745 +15452,15452 +7540,7540 +20227,20227 +63827,63827 +31161,31161 +25625,25625 +42588,42588 +30931,30931 +10646,10646 +34873,34873 +258565,258565 +18737,18737 +291001,291001 +266183,266183 +22222,22222 +29057,29057 +142878,142878 +102326,102326 +14375,14375 +224695,224695 +33180,33180 +255809,255809 +11276,144670 +19164,19164 +175933,175933 +143062,143062 +11322,11322 +31451,31451 +945,945 +346634,346634 +28088,28088 +180051,6300 +158689,158689 +66879,66879 +18674,18674 +40317,40317 +88595,88595 +10276,10276 +29260,29260 +365985,365985 +26825,26825 +28813,28813 +18317,18317 +178255,178255 +26119,26119 +328148,267832 +31212,31212 +380845,380845 +68808,68808 +28285,28285 +391629,391629 +37116,37116 +1392,1392 +13179,13179 +893,893 +30700,30700 +178263,178263 +40327,40327 +13479,590 +186210,186210 +65946,65946 +396819,362446 +239308,239308 +147369,463 +24160,24160 +25121,25121 +9482,9482 +198198,198198 +18454,18454 +351762,351762 +360276,360276 +42399,42399 +37063,37063 +24544,24544 +306747,306747 +29295,29295 +64026,64026 +136861,136861 +99810,99810 +43507,43507 +291604,291604 +154566,154566 +7328,7328 +421330,421330 +30548,30548 +378949,378949 +21657,21657 +31515,31515 +166194,166194 +34642,34642 +168196,168196 +10658,1163 +11880,11880 +29238,29238 +147199,147199 +18656,18656 +35859,35859 +23538,23538 +216209,216209 +404056,404056 +225425,225425 +36195,36195 +391796,391796 +40895,40895 +37676,37676 +4223,4223 +186985,412637 +286532,286403 +21114,21114 +10771,10771 +11064,11064 +39905,39905 +350239,350239 +27149,27149 +113715,113715 +321864,321864 +387306,387306 +11777,11777 +109553,109553 +218275,218275 +75815,75815 +12946,12946 +14224,463 +346635,346635 +155323,155323 +175991,175991 +16275,16275 +12074,228678 +33074,33074 +195952,195952 +140958,140958 +30812,30812 +206031,206031 +16053,16053 +120307,120307 +7197,7197 +26805,26805 +26610,26610 +14066,14067 +152325,152325 +43912,43912 +34495,34495 +249697,249697 +156720,156720 +39839,39839 +212607,3439 +193918,193918 +120790,120790 +165777,165777 +128506,128506 +30824,30824 +4033,4033 +182142,182142 +283774,283774 +15792,15792 +20129,20129 +156659,85256 +20128,20128 +67069,67069 +296809,296809 +8865,8865 +182372,182372 +18159,18159 +165284,165284 +2951,2951 +20894,20894 +95845,95845 +32966,32966 +101602,101602 +10988,10988 +16609,16609 +4900,4900 +309950,309950 +135737,66286 +344281,344281 +86778,86778 +28926,28926 +34929,34929 +5170,5170 +17843,17843 +16147,16147 +6069,6069 +26908,26908 +13173,13173 +21762,21762 +71838,71838 +79800,79800 +424772,424772 +239071,239071 +10749,10749 +14437,14437 +92247,92247 +27630,27630 +94713,94713 +140033,140033 +9164,9164 +109945,109945 +9453,9453 +37078,37078 +24963,24963 +65341,65341 +65510,65510 +19720,19720 +186853,186853 +258874,258874 +25774,402497 +378627,378627 +20322,20322 +40648,40648 +175389,175389 +96995,96995 +337362,337362 +29205,29205 +18851,18851 +198136,198136 +3556,3556 +418386,418386 +16171,16171 +131850,131850 +9257,9257 +9958,9958 +24870,24870 +21152,21152 +12960,12960 +190041,190041 +103151,103151 +184918,184918 +28215,28215 +68747,68747 +270430,270430 +18316,18316 +72260,72260 +221645,221645 +13843,13843 +13754,13754 +32291,32291 +413411,413411 +82337,82337 +25092,25092 +190605,190605 +98012,98012 +320033,320033 +32215,32215 +179636,179636 +3105,3105 +90818,90818 +37473,37473 +194715,194715 +3784,3784 +121475,121475 +350702,350702 +104397,104397 +197562,197562 +129419,129419 +18671,18671 +20485,20485 +17775,17775 +22308,22308 +269465,269465 +36584,36584 +13718,463 +62255,62255 +73296,73296 +301569,301569 +120182,120182 +3474,3506 +1490,1490 +9840,9840 +110772,110772 +33601,33601 +17363,17363 +27126,27126 +11745,11745 +19035,19035 +340204,340204 +23612,23612 +220471,220471 +13911,13911 +26100,26100 +16864,16864 +241013,241013 +39379,39379 +31123,31123 +40069,40069 +112121,112121 +98307,98307 +273077,273077 +28731,28731 +243112,243112 +42612,42612 +29089,29089 +154367,154367 +34949,34949 +12164,12164 +27286,27286 +319635,321181 +33822,33822 +34774,34774 +423435,423435 +68372,68372 +37737,37737 +212280,212280 +431290,431290 +36568,36568 +32038,32038 +9558,9558 +16911,16911 +23603,23603 +219305,219305 +21604,21604 +421296,421296 +234236,234236 +153376,153376 +43075,43075 +272068,272068 +108021,108021 +32120,32120 +19894,19894 +34093,34093 +11960,11960 +42140,42140 +6893,6893 +330951,330951 +167925,167925 +91582,91582 +17825,17825 +17673,17673 +152284,152284 +158372,158372 +13822,13822 +319413,319413 +42068,42068 +14307,14307 +32402,32402 +280967,280967 +17091,17091 +34623,34623 +119934,119934 +36123,36123 +78614,78614 +63250,63250 +111140,111140 +125121,125121 +20097,20097 +138664,138664 +96869,96869 +22679,22679 +164972,164972 +360168,360168 +130294,130294 +368077,368077 +42442,42442 +28488,28488 +41928,41928 +34198,34198 +33375,33375 +139322,139322 +22413,22413 +26698,26698 +108876,108876 +305727,305727 +36118,36118 +31032,31032 +182590,182590 +250325,250325 +95343,95343 +90571,90571 +23278,23278 +27229,27229 +152806,152806 +277694,277694 +29797,29797 +290515,290515 +5529,5529 +60183,60183 +13215,13215 +125133,125133 +20501,20501 +8938,8938 +340833,340833 +43559,43559 +19153,19153 +70035,70035 +383501,383501 +115765,115765 +32040,32040 +15306,15306 +96395,96395 +87438,87438 +5158,5158 +36892,36892 +268551,268551 +14351,14351 +189915,189915 +25604,25604 +293857,293857 +149934,149934 +64499,64499 +221179,221179 +24233,24233 +11952,11952 +29789,29789 +258128,258128 +191190,191190 +21478,21478 +23886,23886 +10189,10189 +27892,27892 +111850,111850 +324810,324810 +37170,37170 +87952,87952 +340827,340827 +30576,30576 +108988,108988 +310135,310135 +124262,124262 +10284,10284 +132863,132863 +24340,24340 +143711,143711 +21594,21594 +41999,41999 +109464,109464 +22288,22288 +140035,140035 +26022,26022 +16211,16211 +32356,32356 +97961,97961 +36010,36010 +43218,43218 +24211,24211 +129551,129551 +409244,409244 +37925,37925 +148994,148994 +27914,27914 +155529,155529 +282361,282361 +235402,235402 +25124,25124 +422596,422596 +28911,28911 +34568,34568 +207565,207565 +219288,219288 +21076,1549 +68320,68320 +159039,159039 +9716,9716 +58927,153585 +11586,11586 +108020,108020 +9313,9313 +403650,403650 +159250,159250 +154280,154280 +171756,171756 +15980,15980 +72749,72749 +165915,165915 +14101,14101 +265104,265104 +125304,125304 +40142,40142 +97124,97124 +177804,177804 +30369,30369 +16493,16493 +33642,33642 +234227,234227 +36102,36102 +26505,26505 +353946,353946 +33966,33966 +226390,226390 +33386,33386 +13662,13662 +171366,222589 +357219,357219 +99511,99511 +97125,97125 +139056,139056 +344062,344062 +25112,25112 +29612,29612 +43493,43493 +139154,139154 +431281,431281 +6430,6430 +37892,37892 +21912,21912 +100669,100669 +35547,35547 +38182,38182 +132696,132696 +61205,61205 +202708,202708 +40464,40464 +282872,282872 +108124,108124 +27084,27084 +159493,159493 +43455,43455 +391760,391760 +27757,27757 +27547,27547 +37454,37454 +63643,63643 +51050,51050 +25629,25629 +13441,13441 +64548,64548 +336714,336714 +34557,34557 +9798,9798 +9760,9760 +135960,135960 +37748,37748 +67371,67371 +23360,23360 +130630,130630 +99048,99048 +364358,364358 +409521,409521 +40983,40983 +66662,66662 +225988,225988 +26785,26785 +268161,268161 +290556,290556 +7280,7280 +41086,41086 +210771,210771 +67482,67482 +14061,14061 +12953,12953 +255573,255573 +140144,140144 +373709,38159 +423791,463 +397461,397461 +10025,10025 +40038,40038 +347339,347339 +185309,185309 +263405,263405 +56549,56549 +282360,282360 +35347,35347 +179953,179953 +326543,238190 +9483,9483 +14249,463 +42558,42558 +16574,16574 +370449,370449 +60171,463 +10775,10775 +207471,207471 +409746,2842 +58059,58059 +37069,37069 +81082,81082 +41320,41320 +25508,25508 +335876,2281 +15914,15914 +31509,31509 +32932,32932 +12606,12606 +22776,22776 +17607,17607 +155247,155247 +4216,4216 +110657,110657 +39005,39005 +20069,20069 +151353,463 +107926,107926 +13950,13950 +181394,181394 +22727,22727 +102329,102329 +126518,126518 +24170,24170 +188984,188984 +96526,96526 +61469,61469 +214604,214604 +370872,370872 +30200,30200 +218730,218730 +33327,33327 +265517,265517 +21664,21664 +33314,33314 +23246,23246 +327646,327646 +170566,170566 +13051,13051 +43070,43070 +200586,200586 +20964,20964 +326233,326233 +15816,15816 +34147,34147 +33501,33501 +148775,148775 +37029,37029 +79849,79849 +24442,24442 +30875,30875 +227262,227262 +11073,11073 +31622,31622 +27493,27493 +121917,121917 +27454,27454 +26084,26084 +124227,124227 +113547,113547 +200507,200507 +39649,39649 +58108,58108 +57678,57678 +81243,81243 +29988,29988 +22295,22295 +23460,23460 +308030,308030 +11237,11237 +24993,24993 +897,897 +5673,5673 +115662,115662 +35900,35900 +130523,130523 +225924,225924 +29701,29701 +6193,6193 +9318,9318 +138716,138716 +113107,113107 +65546,65546 +331412,301485 +13085,13085 +128354,128354 +85130,85130 +376520,376520 +30808,30808 +319156,319156 +162824,162824 +30626,30626 +138196,138196 +222412,222412 +183047,183047 +135611,135611 +15952,15952 +335617,335617 +72003,72003 +327920,327920 +39068,39068 +131583,131583 +237784,237784 +171658,463 +159251,159251 +1601,1601 +5961,5961 +5435,5435 +166473,166473 +36663,36663 +2315,2315 +163970,163970 +103828,103828 +102005,102005 +245634,245634 +5272,5272 +32744,32744 +15216,15216 +146324,146324 +31618,31618 +19376,19376 +15940,15940 +139626,139626 +89311,89311 +3721,3721 +68097,68097 +360898,463 +9732,9732 +22179,22179 +43209,43209 +76600,463 +118155,118155 +63420,463 +11511,6404 +370475,331647 +4993,4993 +1964,2943 +188968,463 +22749,22749 +98472,98472 +5926,5926 +90735,90735 +17103,17103 +13744,13744 +85455,85455 +13937,13937 +179670,179670 +127418,127418 +10075,121090 +28220,28220 +325016,325016 +238907,238907 +7032,7032 +11866,11866 +18601,18601 +125429,125429 +332563,88633 +176077,176077 +25414,25414 +76596,76596 +10341,10341 +28859,28859 +131051,131051 +332395,332395 +8075,8075 +40654,40654 +320157,320157 +183364,183364 +19259,19259 +5594,5594 +29487,29487 +368977,368977 +129420,129420 +173082,173082 +145919,145919 +70690,70690 +23464,23464 +13160,13160 +32328,32328 +192227,192227 +14141,14141 +42576,42576 +420025,420025 +127052,127052 +18730,18730 +3114,3114 +306555,306555 +344892,344892 +6006,8311 +14612,14612 +20063,20063 +64041,64041 +93446,1111 +152935,152935 +164185,164185 +151941,151941 +40445,40445 +104417,104417 +13908,13908 +255428,255428 +19873,463 +8517,8517 +12611,12611 +144346,144346 +4438,4438 +6492,6492 +3665,3665 +6247,6247 +122977,122977 +23549,23549 +21175,21175 +202424,202424 +30769,30769 +90467,90467 +22132,22132 +14935,14935 +32219,32219 +331289,331289 +65100,65100 +186872,186872 +343398,343398 +186750,186750 +327899,327899 +308572,308572 +237585,237585 +26922,140 +183866,183866 +284483,284483 +233565,233565 +270628,270628 +214030,214030 +180296,323099 +9811,9811 +118586,118586 +84572,84572 +353229,316165 +71890,71890 +226206,226206 +320753,320753 +195747,195747 +4104,4104 +7530,7530 +63617,63617 +17711,29636 +353402,353402 +144337,144337 +19555,19555 +5670,5670 +20773,20773 +98644,98644 +160230,160230 +29139,29139 +13648,463 +4071,4071 +405530,405530 +324811,324811 +9459,9459 +71338,71338 +1185,1185 +206062,206062 +20957,20957 +412111,412111 +117166,117166 +263047,263047 +373083,373083 +20472,20472 +27956,27956 +303426,303426 +345992,345992 +12670,12670 +264715,463 +33423,33423 +14436,14436 +32166,32166 +32088,32088 +36765,36765 +86522,86522 +58854,58854 +127187,127187 +29970,29970 +10713,3270 +97850,97850 +25662,25662 +8786,8786 +36718,36718 +30312,30312 +9995,9995 +68562,68562 +286569,286569 +15541,15541 +287406,184078 +107921,107921 +10197,10197 +2945,2945 +42984,42984 +219185,219185 +15502,15502 +20313,20313 +37488,37488 +226962,226962 +5097,5097 +23089,23089 +202563,202563 +16631,16631 +31650,31650 +185376,185376 +295124,137 +5356,5356 +194887,194887 +370779,370779 +173348,173348 +9310,9310 +23587,23587 +168786,168786 +263733,263733 +296993,296993 +7226,7226 +35850,35850 +5119,5119 +6957,6957 +62427,62427 +27758,27758 +22031,22031 +20193,20193 +35921,35921 +270818,270818 +97238,97238 +37758,37758 +158115,158115 +16721,16721 +194948,194948 +121826,121826 +13803,13803 +299843,299843 +330705,330705 +26248,26248 +17769,17769 +280199,280199 +41517,41517 +25918,25918 +136281,136281 +6385,6385 +18636,18636 +13747,13747 +25218,25218 +23862,23862 +141015,141015 +69646,69646 +361361,361361 +131213,131213 +210766,210766 +269003,269003 +37697,37697 +31327,31327 +24855,24855 +31644,31644 +35246,35246 +49298,49298 +21968,21968 +90853,90853 +190627,190627 +27377,27377 +8627,8627 +146748,146748 +9999,9999 +52105,52105 +320010,320010 +29043,29043 +88629,88629 +34920,34920 +297138,297138 +72374,72374 +17013,17013 +217373,217373 +377403,377403 +164891,164891 +37863,37863 +18617,18617 +357191,357191 +119557,119557 +209754,209754 +376750,376750 +285724,285724 +267184,267184 +14363,14363 +35580,35580 +31843,31843 +26038,26038 +9223,9223 +68642,68642 +16168,16168 +60517,60517 +126718,126718 +185948,185948 +20137,20137 +196373,196373 +22996,22996 +2754,2754 +149551,149551 +20404,20404 +43256,43256 +24830,24830 +165630,165630 +12754,12754 +21352,21352 +134565,134565 +26544,26544 +11044,11044 +38497,38497 +24472,24472 +42872,42872 +120987,120987 +32448,32448 +35797,35797 +16521,16521 +314118,314118 +124249,124249 +21507,21507 +204980,204980 +28364,28364 +243142,463 +388331,105134 +89364,89364 +33549,33549 +391740,463 +31879,31879 +121498,121498 +68140,68140 +40530,24028 +23496,23496 +365127,365127 +43321,43321 +35836,35836 +34330,34330 +57464,57464 +308226,308226 +28366,28366 +28370,28370 +10929,10929 +84052,84052 +19130,19130 +5163,5163 +157575,463 +244653,244653 +51887,51887 +34097,34097 +29997,29997 +17337,17337 +280261,280261 +156179,156179 +33645,33645 +18604,18604 +78991,78991 +7602,7602 +120787,120787 +10316,10316 +63727,63727 +10448,10448 +31704,31704 +15168,15168 +17573,17573 +312590,312590 +65833,65833 +34782,34782 +217605,217605 +17771,17771 +35022,35022 +17556,17556 +27469,27469 +297085,297085 +5362,5362 +171195,171195 +245631,245631 +392638,392638 +2309,2309 +15072,15072 +312531,312531 +196412,196412 +16256,16256 +93431,93431 +26754,26754 +9939,9939 +15113,15113 +15686,15686 +29440,29440 +9128,9128 +132446,132446 +15763,15763 +1995,1995 +193041,193041 +23727,23727 +9242,9242 +40284,40284 +22775,22775 +279205,279205 +67867,67867 +418121,418121 +16742,16742 +63457,63457 +28326,28326 +369507,369507 +5469,5469 +9743,9743 +186186,186186 +16935,16935 +294602,294602 +27378,27378 +98375,98375 +22548,22548 +4700,4700 +75790,75790 +7244,7244 +99318,99318 +85529,85529 +110383,110383 +16526,16526 +246270,246270 +41250,41250 +55041,55041 +292797,292797 +157746,157746 +11681,11681 +419963,419963 +69462,69462 +11312,11312 +11799,11799 +118554,118554 +28051,28051 +187103,187103 +18091,18091 +95934,95934 +186675,186675 +325295,325295 +173427,173427 +23359,23359 +375364,375364 +26334,26334 +355086,355086 +5325,5325 +338785,338785 +143798,143798 +209955,209955 +17744,409842 +63797,63797 +26894,26894 +7059,7059 +28751,28751 +191938,191938 +81548,81548 +151272,151272 +28811,28811 +163267,163267 +248711,248711 +11328,11328 +291547,291547 +29519,29519 +2896,2896 +426570,426570 +25791,25791 +39044,39044 +63189,63189 +197497,197497 +141223,141223 +173636,173636 +25161,25161 +376489,376489 +159334,159334 +37640,37640 +418035,418035 +14223,463 +8323,8323 +297618,297618 +192488,192488 +224714,224714 +5500,5500 +86413,86413 +52460,52460 +66244,66244 +413704,413704 +172116,222589 +130441,130441 +19700,19700 +72739,72739 +287959,287959 +18734,18734 +223135,223135 +225528,225528 +20871,20871 +42063,42063 +26985,26985 +142387,142387 +29235,29235 +84430,84430 +34773,34773 +19334,19334 +269265,269265 +96775,96775 +35266,35266 +39373,39373 +17351,17351 +35098,35098 +34700,34700 +364214,364214 +18124,18124 +9562,9562 +177291,177291 +49882,49882 +203985,203985 +66973,66973 +410358,410358 +19598,19598 +123202,123202 +29567,29567 +33034,33034 +22782,22782 +225652,225652 +120981,120981 +14809,14809 +71940,71940 +15117,15117 +246518,246518 +350297,350297 +95030,95030 +38043,38043 +14784,14784 +81830,81830 +60197,60197 +62513,62513 +110844,110844 +154955,154955 +11069,11069 +28137,28137 +191308,191308 +153071,153071 +34108,34108 +3537,3537 +7193,7192 +28778,28778 +54172,54172 +34031,34031 +175582,175582 +112877,112877 +32093,32093 +100184,100184 +10970,10970 +36833,36833 +423746,3514 +24058,24058 +333508,333508 +112615,112615 +39569,39569 +26155,26155 +68092,68092 +24672,24672 +15146,15146 +15835,15835 +232963,232963 +41789,41789 +14271,14271 +392639,392639 +166023,166023 +264807,264807 +39955,39955 +140315,140315 +17079,17079 +122780,122780 +244319,244319 +34670,34670 +156192,156192 +322695,322695 +34644,34644 +400792,400792 +18130,18130 +115613,115613 +25048,25048 +8012,8012 +15543,15543 +20415,20415 +32653,32653 +96439,96439 +200458,200458 +162271,162271 +23310,23310 +28346,28346 +33925,33925 +25002,25002 +14482,14482 +22783,22783 +29657,29657 +11447,11447 +15639,15639 +347001,347001 +13163,13163 +21127,21127 +33336,33336 +39754,39754 +8980,8980 +32872,32872 +130047,130047 +425728,425728 +18119,18119 +22147,22147 +140028,140028 +21623,21623 +126002,126002 +133043,133043 +50919,50919 +7311,7311 +33191,33191 +110267,110267 +28864,28864 +330534,330534 +103715,103715 +25284,25284 +35109,35109 +21603,21603 +113651,113651 +31217,31217 +15715,15715 +26422,26422 +4164,4164 +99445,99445 +34459,34459 +332476,332476 +5506,5506 +67317,67317 +158003,158003 +40345,40345 +387484,387484 +287367,287367 +390356,390356 +112845,112845 +38521,38521 +299870,299870 +22077,22077 +24096,24096 +24600,24600 +23338,23338 +331029,331029 +152443,152443 +22388,22388 +13450,13450 +27500,27500 +36893,36893 +27600,27600 +73263,73263 +99217,99217 +28443,28443 +63310,63310 +380808,380808 +21517,21517 +241759,241759 +18213,18213 +95001,95001 +41524,41524 +22573,22573 +163596,163596 +140344,140344 +164948,164954 +29365,29365 +102811,102811 +362394,362394 +390609,390609 +171293,171293 +13702,13702 +112008,112008 +60365,60365 +14413,14413 +29353,29353 +178404,178404 +36315,3270 +29646,29646 +25975,25975 +113786,40131 +43335,43335 +26270,26270 +31329,31329 +119984,119984 +99968,99968 +376466,376466 +57121,57121 +26587,26587 +99173,99173 +286595,120135 +427280,427280 +122406,122406 +66928,66928 +417244,417244 +231131,231131 +313091,313091 +23577,23577 +28476,28476 +21887,21887 +112738,112738 +57831,57831 +315582,315582 +19533,19533 +185807,185807 +192272,192272 +424964,424964 +25342,25342 +357853,62311 +43317,43317 +119988,119988 +232301,232301 +322464,322464 +135328,135328 +33554,33554 +39468,39468 +39656,39656 +114679,114679 +109058,109058 +25191,25191 +22376,22376 +3803,3803 +42678,318483 +313062,313062 +19461,19461 +128519,128519 +28290,28290 +9925,9925 +31186,31186 +29264,29264 +95097,95097 +39388,39388 +60686,60686 +152276,152276 +65967,65967 +114568,114568 +108458,108458 +173598,173598 +166277,166277 +267920,267920 +381153,381153 +431217,431217 +368756,21681 +62806,62806 +40050,40050 +18339,18339 +120314,120314 +9380,9380 +114633,114633 +22857,22857 +135886,135886 +324420,324420 +288277,288277 +62782,62782 +175487,175487 +31938,31938 +327042,50381 +254740,254740 +114637,114637 +61121,61121 +71566,71566 +329194,329194 +278385,278385 +353339,353339 +132585,132585 +148887,148887 +32706,32706 +90206,90206 +85388,85388 +43445,43445 +188546,188546 +25482,25482 +19868,463 +51570,51570 +250447,250447 +72199,72199 +283462,283462 +120358,120358 +142100,142100 +379296,379296 +114677,114677 +140670,140670 +379931,379931 +202097,202097 +254924,254924 +349603,349500 +70938,70938 +106501,106501 +128907,128907 +172443,172443 +154264,154264 +427556,427556 +79442,79442 +19658,19658 +98045,98045 +374897,374897 +419865,419865 +36875,36875 +25230,122300 +397593,397593 +376940,376940 +151612,151612 +239669,239669 +81343,81343 +33390,33390 +306935,306935 +329731,329731 +380380,380380 +128569,128569 +38549,38549 +38913,38913 +35629,35629 +308198,308198 +18473,18473 +42075,42075 +41119,41119 +39619,39619 +322445,322445 +176399,176399 +222231,222231 +306003,87873 +133865,133865 +41399,41399 +23495,23495 +28707,28707 +192266,192266 +62855,62855 +24918,24918 +84727,339748 +93566,93566 +175590,175590 +21167,21167 +321214,321181 +336026,246797 +11902,11902 +10339,10339 +203218,203218 +113722,113722 +118448,118448 +375388,375388 +52506,52506 +114671,114671 +255726,255726 +22087,22087 +39114,39114 +287749,287749 +36371,36371 +148052,148052 +98921,98921 +377860,377860 +187652,187652 +412955,412955 +191650,191650 +207356,207356 +25483,25483 +128417,128417 +103754,103754 +32782,32782 +93535,93535 +129993,129993 +29196,29196 +137892,137892 +29115,29115 +99534,99534 +119924,119924 +13977,13977 +260649,260649 +16892,16892 +104309,104309 +229434,229434 +22129,22129 +40191,40191 +279711,279711 +34174,34174 +177897,177897 +193290,193290 +125156,125156 +37137,37137 +197628,197628 +19695,19695 +379912,379912 +35874,35874 +114672,114672 +147212,147212 +39203,39203 +21105,21105 +101760,101760 +70374,70374 +114675,114675 +249315,249315 +420703,420703 +294991,294991 +33753,33753 +175036,175036 +101765,101765 +429393,429393 +39933,39933 +23161,23161 +257514,257514 +202319,202319 +114673,114673 +149980,149980 +408281,408281 +66627,66627 +180605,180605 +424974,300905 +18577,18577 +100678,100678 +36220,36220 +163939,163939 +74045,74045 +315728,315728 +179414,179414 +32044,32044 +109726,109726 +381868,381868 +25712,25712 +275088,275088 +85249,85249 +124016,124016 +90783,90783 +115358,115358 +269589,269589 +63025,63025 +39462,39462 +14570,14570 +184493,184493 +115357,115357 +96327,96327 +137630,137630 +118461,118461 +362381,1111 +60003,60003 +290791,290791 +372633,50381 +256519,256519 +120213,120213 +267292,267292 +217137,217137 +119726,119726 +128740,128740 +32169,32169 +336712,336712 +333125,333125 +168016,168016 +162077,162077 +63816,63816 +16637,16637 +183419,183419 +425078,141428 +260195,260195 +211767,211767 +43774,10660 +393533,393533 +89398,89398 +18527,18527 +30441,30441 +27900,27900 +122550,122550 +253276,253276 +166428,166428 +372675,372675 +306860,306860 +19520,19520 +394065,394065 +22919,22919 +29596,29596 +363154,363154 +189255,189255 +139153,139153 +121454,121454 +36786,36786 +122584,122584 +40463,40463 +41282,41282 +413051,413051 +43055,43055 +147886,147886 +56619,56619 +286590,286590 +20378,20378 +31283,31283 +145011,145011 +37102,37102 +35448,35448 +42853,42853 +14739,14739 +135261,135261 +25811,25811 +203085,203085 +39040,39040 +387743,387743 +35006,35006 +281742,281742 +378808,349488 +319679,319679 +22162,22162 +43417,43417 +35741,35741 +22798,22798 +248797,248797 +90376,90376 +22301,22301 +12446,12446 +19663,19663 +247560,247560 +18209,18209 +287853,287853 +284449,284449 +407983,407983 +372380,372380 +255071,255071 +363196,363196 +157456,157456 +117954,117954 +366973,366973 +22540,22540 +66059,66059 +22173,22173 +166552,166552 +113308,113308 +34165,34165 +188830,188830 +40499,40499 +336713,336713 +32840,32840 +85362,85362 +118264,118264 +19801,19801 +209560,209560 +251992,251992 +299657,299657 +254299,254299 +84570,84570 +162852,162852 +37024,37024 +172172,172172 +161623,161623 +138449,138449 +23956,23956 +47380,47380 +141937,141937 +54856,54856 +408354,408355 +111146,111146 +25326,25326 +125537,125537 +306590,306590 +33237,33237 +26585,26585 +39197,39197 +13382,13382 +205251,205251 +422013,422013 +22723,22723 +140501,140501 +392882,392882 +34564,34564 +14845,14845 +33882,33882 +30267,30267 +189258,189258 +26813,26813 +142595,142595 +27039,27039 +28222,28222 +352805,352805 +261712,261712 +247259,247259 +220737,220737 +31674,31674 +354310,354310 +110987,287173 +379183,379183 +18575,18575 +357642,178335 +175014,175014 +110287,110287 +123034,123034 +161136,161136 +43892,43892 +32198,32198 +33466,33466 +139797,139797 +131359,131359 +227600,227600 +11731,11731 +97392,97392 +168688,168688 +312915,312915 +41666,41666 +324667,324667 +380948,380948 +155886,155886 +178882,178882 +319138,319138 +53124,53124 +423319,423319 +22449,22449 +31124,31124 +25057,25057 +21888,21888 +285390,285390 +351770,351770 +232999,232999 +10116,10116 +269051,269051 +194857,194857 +121575,121575 +349377,289951 +102651,102651 +30893,30893 +287185,287185 +117849,117849 +219465,219465 +115612,115612 +205444,205444 +33978,33978 +160027,160027 +123227,123227 +25431,25431 +166427,166427 +208008,208008 +315077,223742 +75959,75959 +50969,50969 +30209,30209 +146040,146040 +15808,15808 +304040,304040 +339694,339694 +223978,223978 +277677,277677 +60569,60569 +297517,297517 +188192,188192 +15041,15041 +209189,209189 +66403,66403 +128523,128523 +132023,132023 +169438,169438 +256818,256818 +416471,416471 +39669,39669 +20720,20720 +5331,5331 +31828,31828 +266357,266357 +33688,33688 +35688,35688 +147976,147976 +32951,35874 +25529,25529 +38887,38887 +153306,153306 +262859,262859 +128521,128521 +36800,36800 +401934,401934 +280548,280548 +37026,37026 +104525,104525 +266772,266772 +363856,363856 +417655,417655 +357812,357812 +107335,107335 +308361,308361 +261224,261224 +31245,31245 +203922,203922 +64986,64986 +33269,33269 +139557,400978 +21923,21923 +38556,38556 +181668,181668 +262724,262724 +310445,310445 +85877,85877 +26876,26876 +357538,357538 +4726,4726 +357952,357952 +152313,232999 +31814,31814 +306404,306404 +25735,25735 +420927,420927 +35175,35175 +38879,38879 +130118,130118 +269750,269750 +55792,55792 +258755,258755 +140875,140875 +27333,27333 +25636,25636 +35296,35296 +324742,324742 +65428,65428 +24482,24482 +37025,37025 +237239,237239 +233326,233326 +112052,112052 +347301,347301 +42011,42011 +28324,28324 +152219,152219 +380609,380609 +29214,29214 +41714,41714 +127206,127206 +57060,57060 +35937,35937 +32235,32235 +247787,247787 +270059,270059 +201303,201303 +160048,160048 +232861,232861 +24206,24206 +401106,401106 +401245,401245 +382238,382238 +353885,353885 +12965,12965 +39868,39868 +341760,341760 +95944,95944 +22444,22444 +287953,287953 +92180,92180 +70308,70308 +40108,40108 +13035,13035 +34420,34420 +97632,97632 +126874,126874 +26689,26689 +151980,151980 +25587,25587 +374050,374050 +40061,40061 +35196,35196 +352927,352927 +97737,97737 +114634,114634 +76208,76208 +22384,22384 +291812,291812 +199365,199365 +331263,331263 +246714,246714 +226737,226737 +20093,20093 +133439,133439 +426301,426301 +37320,37320 +418941,418941 +321981,321981 +410304,410304 +20449,20449 +200220,200220 +21741,21741 +178438,178438 +35309,35309 +400974,400974 +227593,227593 +128564,128564 +56660,56660 +159634,159634 +99654,99654 +33494,33494 +226174,226174 +14840,14840 +15100,15100 +203267,203267 +31870,31870 +327647,327647 +32640,32640 +20368,20368 +40052,40052 +16920,16920 +231649,231649 +391708,391708 +12258,12258 +200224,200224 +101255,101255 +109630,109630 +294051,294051 +153066,175472 +67413,67413 +18389,18389 +35773,35773 +338756,338756 +347200,262547 +113057,113057 +100179,100179 +33860,33860 +31757,31757 +104582,104582 +256015,3181 +30303,30303 +43251,43251 +96510,96510 +195482,195482 +25214,25214 +47420,47420 +142388,142388 +36930,36930 +63518,63518 +226741,226741 +21399,21399 +3165,3165 +26814,26814 +27810,27810 +33883,33883 +151610,4213 +41310,41310 +5715,5715 +33562,33562 +33701,33701 +237588,237588 +7233,7233 +131127,131127 +321501,321501 +9994,9994 +23582,23582 +90111,90111 +23296,23296 +112361,112361 +13749,13749 +14954,14954 +68235,68235 +12757,12757 +7862,7862 +268008,225981 +129944,129944 +17548,17548 +17801,17801 +377836,377836 +264199,264199 +1093,1093 +32450,32450 +264914,264914 +208533,208533 +271624,271624 +424731,424731 +59286,59286 +136856,136856 +22581,110 +236302,324471 +2191,2191 +11089,11089 +5301,5301 +36555,463 +55857,55857 +41327,41327 +10730,10730 +5252,5252 +184752,184752 +25059,25059 +21570,21570 +259375,259375 +285010,285010 +26460,26460 +30679,30679 +14244,463 +6389,6389 +34676,34676 +16349,16349 +34374,34374 +1715,1715 +137358,137358 +30586,30586 +6702,6702 +391777,391777 +32364,32364 +110103,110103 +7306,7306 +257199,257199 +396829,396829 +14717,14717 +17949,17949 +41588,41588 +137152,137152 +253500,253500 +31819,31819 +22835,22835 +191714,191714 +325400,325400 +29908,29908 +411934,42257 +104770,104770 +343687,343687 +165813,165813 +4930,4930 +42887,42887 +11853,11853 +254622,254622 +370128,370128 +22069,22069 +27204,27204 +31461,31461 +117814,117814 +246756,246756 +88521,6830 +131888,131888 +29635,29635 +301429,301429 +110784,110784 +7565,7565 +11663,11663 +23873,23873 +12182,12182 +26111,26111 +430154,430154 +16761,16761 +19840,19840 +28177,28177 +170990,170990 +159227,159227 +10949,10949 +8564,8564 +2147,2147 +202660,202660 +209285,209285 +261431,261431 +131527,131527 +152622,152622 +5655,5655 +86040,86040 +12914,12914 +73193,73193 +27072,27072 +19101,19101 +193877,193877 +5020,5020 +4531,4531 +158499,158499 +22964,22964 +3927,3927 +6126,6126 +128188,128188 +13107,13107 +40661,40661 +59225,59225 +104807,104807 +135900,135900 +27916,27916 +175176,175176 +31884,31884 +31393,31393 +164937,164939 +296309,296309 +14710,14710 +234372,234372 +103812,103812 +6464,6464 +7402,7402 +171545,191884 +19267,19267 +28283,28283 +166309,166309 +292622,380024 +142386,142386 +353660,353660 +231205,231205 +41551,41551 +11823,11823 +7372,7372 +142192,142192 +17636,17636 +14114,14114 +14358,14358 +30778,30778 +219401,219401 +42843,42843 +20342,20342 +8500,8500 +10127,10127 +226464,226464 +69644,69644 +5720,32533 +6763,6763 +286375,286375 +14148,14148 +26421,26421 +23889,23889 +91944,91944 +7442,7442 +40993,40993 +66043,66043 +251185,251185 +315321,315321 +43215,43215 +7265,7265 +298962,298962 +23579,23579 +47694,47694 +30416,30416 +345263,345263 +81323,81323 +2374,2374 +10241,10241 +246235,246235 +62907,62907 +126602,126602 +179669,179669 +102598,102598 +243702,243702 +10978,10978 +172018,172018 +274179,274179 +5887,5887 +107043,107043 +255166,255166 +40181,40181 +10825,10825 +28361,28361 +19701,19701 +128207,128207 +105237,105237 +40476,40476 +33264,33264 +14618,14618 +6015,6015 +20476,20476 +5355,5355 +14457,14457 +95249,95249 +38166,38166 +26294,26294 +328932,328932 +223133,223133 +257595,257595 +12603,12603 +322693,322693 +18025,18025 +245930,245930 +94228,94228 +35854,35854 +8291,8291 +267880,267880 +322840,220988 +109819,109819 +231945,231945 +301367,301367 +292653,292653 +284644,284644 +4056,4056 +10791,10791 +182121,182121 +62875,355563 +379206,379206 +248417,463 +12370,351715 +14730,14730 +339617,339617 +29497,29497 +16676,16676 +56275,285204 +202074,202074 +55438,55438 +35451,35451 +33178,33178 +16669,16669 +17874,17874 +4511,4511 +20176,20176 +21904,21904 +8241,8241 +26666,26666 +13808,13808 +29297,29297 +128877,335636 +370735,370735 +86851,86851 +151895,151895 +39259,39259 +301122,301122 +265027,265027 +22883,22883 +327758,327758 +227727,227727 +144341,144341 +281096,188181 +158015,158015 +137617,137617 +69152,69152 +352847,352847 +171466,171466 +140030,140030 +28313,28528 +25321,25321 +28372,28372 +10185,10185 +30855,30855 +18006,18006 +377690,377690 +31204,31204 +50633,50633 +199459,199459 +145717,145717 +40295,40295 +21208,21208 +307380,307380 +15326,15326 +372914,372914 +16225,16225 +67466,67466 +12579,12579 +179858,179858 +52083,52083 +6108,6108 +104219,104219 +258027,248157 +7961,7961 +159723,159723 +65993,65993 +11004,11004 +28675,28675 +17461,17461 +62001,62001 +176628,176628 +107782,107782 +38351,463 +37354,37354 +311414,311414 +281662,281662 +19974,19974 +179793,179793 +15759,15759 +191015,191015 +76611,76611 +13331,13331 +8496,8496 +2755,2755 +320253,320253 +3599,3599 +14607,14607 +408625,408625 +165843,165843 +35429,35429 +170955,170955 +38989,38989 +35038,35038 +67076,67076 +15464,15464 +58183,58183 +18799,18799 +389489,389489 +9634,9634 +6199,6199 +102549,102549 +23178,23178 +7323,7323 +33146,33146 +27911,27911 +191136,191136 +88051,88051 +121606,121606 +18995,18995 +90031,90031 +174649,174649 +9613,9613 +35739,35739 +331314,331314 +363074,363074 +127759,127759 +41711,41711 +6416,6416 +416539,416539 +37623,37623 +40141,40141 +21459,248702 +31088,31088 +8136,8136 +43177,43177 +86535,86535 +13444,13444 +28818,28818 +24183,24183 +10486,10486 +410021,410021 +20147,20147 +42561,42561 +176655,176655 +30738,30738 +155391,155391 +14753,14753 +14272,14272 +15745,15745 +26177,26177 +125773,125773 +17806,17806 +22311,22311 +32378,32378 +151277,151277 +28584,28584 +319103,319103 +38372,38372 +383011,383011 +175158,175158 +14247,463 +114789,114789 +113510,113510 +22432,22432 +26276,26276 +136461,174297 +40023,40023 +127921,127921 +390621,390621 +151014,151014 +6622,6622 +84002,84002 +125446,125446 +43045,43045 +28889,28889 +235537,235537 +149550,149550 +116109,116109 +183501,183501 +22675,22675 +111683,111683 +60195,60195 +116651,116651 +17666,17666 +7125,7125 +124100,124100 +379412,379412 +243251,243251 +7257,7257 +158568,158568 +14889,14889 +9068,9068 +34956,34956 +16007,16007 +40226,40226 +16948,16948 +21271,21271 +24021,24021 +173560,173560 +13555,13555 +16248,16248 +17660,17660 +364391,364391 +22832,22832 +425446,227605 +14755,14755 +189671,189671 +36841,36841 +4541,4541 +23357,23357 +246077,246077 +17605,17605 +69412,69412 +43058,43058 +52057,52057 +118415,118415 +16681,16681 +66229,66229 +24043,24043 +256127,256127 +26527,26527 +166216,117968 +359204,359203 +9820,9820 +11578,11578 +20323,20323 +23380,23380 +51128,51128 +27163,27163 +134349,134349 +104081,104081 +27402,27402 +27016,27016 +35292,35292 +19173,19173 +123856,123856 +227320,227320 +63363,63363 +20716,20716 +65770,65770 +413924,413924 +142255,142255 +4032,4032 +29585,29585 +29251,29251 +17361,17361 +108384,108384 +43095,43095 +30761,30761 +98961,98961 +38270,38270 +192966,192966 +14527,14527 +13870,13870 +31290,31290 +21574,21574 +4566,4566 +275673,275673 +306837,306837 +284002,284002 +19580,19580 +99599,99599 +17856,17856 +34839,34839 +5807,5807 +231096,231096 +92244,92244 +267628,267628 +22372,22372 +103734,103734 +350429,350429 +29003,29003 +21190,21190 +23755,23755 +4911,4911 +371901,371901 +35349,35349 +73712,73712 +65580,65580 +128875,128875 +194855,194855 +18673,18673 +336715,338461 +65358,65358 +21870,21870 +50036,50036 +324668,198778 +184269,192260 +64633,64633 +212392,212392 +26554,26554 +399748,399748 +32512,32512 +69828,69828 +19895,19895 +40622,40622 +280292,280292 +141538,141538 +175562,175562 +22419,22419 +120896,120896 +93058,93058 +15438,15438 +203236,203236 +272497,272497 +19326,19326 +343523,343523 +28151,28151 +171075,171075 +130730,130730 +32965,32965 +58537,58537 +29209,29209 +157773,9045 +32797,32797 +170142,170142 +76548,463 +15503,15503 +65422,65422 +64027,64027 +23629,23629 +50623,50623 +134911,134911 +178718,178718 +31353,31353 +161107,161107 +21468,21468 +35090,35090 +23398,23398 +27646,27646 +5139,5139 +308390,308390 +25874,25874 +353913,353913 +32168,32168 +21458,21458 +14676,14676 +40104,40104 +73691,73691 +33831,33831 +114189,114189 +41437,41437 +36496,36496 +317752,317752 +29698,29698 +110469,110469 +23294,23294 +18757,18757 +97613,97613 +150026,150026 +28554,28554 +96487,96487 +103216,103216 +15741,15741 +34434,34434 +113645,113645 +139750,139750 +70090,408715 +151507,151507 +420745,420745 +35725,35725 +73615,73615 +155925,155925 +37740,37740 +14857,14857 +198042,198042 +119229,119229 +38685,38685 +29933,29933 +64463,64463 +228046,228046 +137930,137930 +36120,36120 +11162,11162 +4261,4261 +13149,13149 +22281,22281 +150487,150487 +149698,149698 +79782,79782 +380676,380676 +12149,12149 +161839,161839 +25225,25225 +58899,58899 +25397,25397 +34760,34760 +37112,37112 +13481,13481 +316482,316482 +9085,9085 +30049,30049 +16260,16260 +60142,60142 +25648,25648 +29453,29453 +29274,29274 +25577,25577 +19893,19893 +42283,42283 +147072,147072 +36801,36801 +366556,366556 +9893,9893 +35386,35386 +22252,22252 +42146,42146 +151348,151348 +43165,43165 +339271,339271 +370319,370319 +194890,194890 +6850,6850 +33353,33353 +33829,33829 +372333,372333 +134863,134863 +100177,100177 +31979,31979 +35143,195217 +372711,372711 +32545,32545 +172831,172831 +17742,17742 +28139,28139 +24175,24175 +67061,67061 +247399,247399 +329117,329117 +38762,38762 +117696,117696 +26564,26564 +128753,128753 +36318,36318 +32377,32377 +189361,189361 +12549,12549 +103177,103177 +124358,124358 +35431,35431 +18240,18240 +42891,7378 +115121,115121 +191888,191884 +203398,75962 +36870,36870 +264305,264305 +322811,322811 +410337,410337 +85843,85843 +27671,27671 +45606,45606 +339973,339973 +122789,122789 +428678,428678 +275957,275957 +216206,216206 +198262,198262 +123854,123854 +169687,169687 +34182,34182 +91914,91914 +260157,260157 +20640,20640 +164044,164044 +16925,16925 +25485,25485 +130721,130721 +33596,33596 +72304,72304 +95093,95093 +100683,100683 +110438,110438 +14256,14256 +102121,102121 +119733,119733 +410500,410500 +16791,16791 +11152,11152 +31091,31091 +17899,17899 +32886,32886 +217496,217496 +256814,256814 +161011,161011 +227178,227178 +197891,197891 +12245,12245 +18441,18441 +113827,113827 +31518,31518 +19906,19906 +27880,27880 +320323,320323 +86568,86568 +107811,107811 +192225,192225 +183478,183478 +6630,6630 +4649,4649 +9969,9969 +160757,160757 +88004,88004 +56446,56446 +19856,19856 +40573,463 +18102,18102 +1607,321145 +163302,163302 +217302,217302 +19940,19940 +35563,35563 +4745,4745 +35150,35150 +17558,17558 +66852,193255 +17785,17785 +260926,260926 +151222,151222 +158672,158672 +130728,130728 +206851,381168 +7010,7010 +21002,21002 +14040,14040 +32850,32850 +17286,17286 +183494,183494 +7302,7302 +87751,87751 +208683,208683 +22317,22317 +5605,5605 +14839,15054 +21756,21756 +271032,271032 +61625,61625 +35215,35215 +34030,34030 +28699,28699 +181080,181080 +74597,74597 +2982,2982 +23564,23564 +18754,18754 +4999,4999 +65107,65107 +1553,1553 +3673,3673 +217177,60579 +35023,285390 +160001,463 +28835,28835 +28473,28473 +19819,19819 +40589,40589 +226490,263733 +1223,1223 +110655,110655 +268800,268800 +51203,51203 +272942,272942 +1756,1756 +20685,20685 +4180,307719 +3848,3848 +226865,226865 +4893,142363 +23983,23983 +146167,146167 +22993,22993 +30760,30760 +9114,9114 +12132,12132 +242326,242326 +96386,96386 +219219,219219 +26739,26739 +35553,35553 +47008,47008 +128001,128001 +1975,1975 +33231,463 +33620,33620 +198513,198513 +12694,463 +312448,312448 +89931,89931 +10005,10005 +11389,11389 +36519,36519 +17571,17571 +33804,33804 +17009,17009 +22547,22547 +72294,72294 +87911,87911 +14643,14643 +128428,128428 +182049,182049 +7238,7238 +19581,19581 +28067,28067 +218874,218874 +109105,109105 +353675,353675 +12859,12859 +1994,1994 +1935,1935 +375697,375697 +150308,150308 +3150,3150 +273016,273016 +12777,12777 +159961,159961 +103858,103858 +126370,126370 +6271,6271 +13421,122055 +90102,90102 +106356,106356 +176187,176187 +177083,177083 +18021,18021 +147304,147304 +193300,193300 +21051,388 +13663,13663 +170880,170880 +12470,12470 +19293,19293 +107979,296556 +22965,22965 +11725,11725 +317045,317045 +271046,271046 +14071,14071 +9830,9830 +25719,25719 +31641,31641 +15037,15037 +341856,341856 +18844,18844 +51077,378180 +22811,22811 +69477,69477 +197114,197114 +94730,94730 +29508,26673 +210701,210701 +155780,155780 +537,537 +161209,182012 +315299,315299 +6525,6525 +10665,10665 +18204,18204 +29940,29940 +19912,463 +214932,214932 +18111,18111 +11920,11920 +13261,13261 +73046,73046 +19328,19328 +38911,38911 +345111,345111 +22855,22855 +4608,4608 +29250,29250 +206155,206155 +11049,11049 +25505,25505 +12362,12362 +408291,408291 +5545,5545 +41048,41048 +35782,35782 +164305,164305 +58993,120310 +227177,227177 +273408,273408 +1868,1868 +170035,170035 +23810,23810 +272239,272239 +67280,327618 +94425,94425 +92998,92998 +343128,343128 +54254,54254 +24007,24007 +4547,4547 +20258,20258 +45814,45814 +3292,3292 +283794,283794 +279445,279445 +227584,227584 +67488,67488 +204103,204103 +35673,35673 +14584,14584 +39360,39360 +321954,321954 +64505,64505 +38692,38692 +38802,38802 +13515,13515 +228785,228785 +321957,321957 +40523,40523 +349241,349241 +11031,11031 +19338,19338 +365735,365735 +20372,20372 +369801,369801 +36746,36746 +209477,209477 +52732,52732 +365216,365216 +4808,4808 +279718,279718 +17842,17842 +64556,37225 +25769,25769 +24960,24960 +95437,95437 +16068,16068 +72335,72335 +351927,351927 +151710,151710 +12377,12377 +155185,155185 +12180,12180 +55395,55395 +26816,26816 +18597,18597 +3496,3496 +27551,27551 +6761,6761 +227983,227983 +13954,2795 +14955,14955 +351982,351982 +138635,138635 +38363,38363 +170212,170212 +18203,18203 +27782,27782 +29769,22765 +5448,5448 +14752,14752 +6829,6829 +8823,8823 +4439,4439 +21496,21496 +363581,363581 +10580,10580 +36876,36876 +61122,61122 +56405,56405 +12851,12851 +33846,33846 +191926,191926 +33382,33382 +2167,2167 +31045,31045 +181010,181010 +24329,24329 +36364,36364 +26041,26041 +228808,228808 +366190,366190 +135821,135821 +27446,27446 +11247,11247 +325732,433816 +4857,4857 +30603,30603 +190735,190735 +6704,6704 +12526,12526 +279376,279376 +27422,27422 +22441,22441 +208078,208078 +24414,24414 +373848,373848 +154036,154036 +25127,25127 +277307,277307 +24571,24571 +11685,11685 +174695,165041 +92589,92589 +60530,60530 +404899,404899 +170526,170526 +11852,11852 +317517,317517 +18537,18537 +19832,19832 +14490,14490 +95230,95230 +265535,265535 +96394,96394 +28906,28906 +111856,111856 +343016,343016 +131002,131002 +37568,37568 +81727,81727 +167555,167555 +30469,30469 +34128,34128 +10526,10526 +40309,40309 +17415,17415 +209620,209620 +35742,35742 +29488,29488 +16176,16176 +15136,15136 +128592,128592 +340472,340472 +664,664 +38552,38552 +9378,9378 +38395,38395 +26964,26964 +352292,10934 +21289,21289 +27946,27946 +110275,110275 +382052,382052 +105862,105862 +145151,145151 +22879,22879 +130856,130856 +112961,112961 +158211,158211 +40854,40854 +26669,26669 +25801,25801 +279207,279207 +14480,14480 +35449,35449 +279203,279203 +92245,92245 +357272,357272 +90228,90228 +13874,13874 +10477,10477 +123088,123088 +71806,71806 +199351,199351 +265289,265289 +35338,35338 +425003,425003 +23559,23559 +122308,122308 +18642,18642 +237203,122399 +14681,14681 +33376,33376 +67070,67070 +315640,315640 +12393,12393 +42102,42102 +403676,403676 +134671,134671 +197965,197965 +8568,8568 +191001,191001 +62667,62667 +202798,202798 +61603,61603 +9599,9599 +90292,90292 +134256,134256 +124855,124855 +19258,19258 +102619,102619 +31369,31369 +28953,28953 +28490,28490 +38152,38152 +12396,12396 +42281,42281 +355849,355849 +39760,39760 +33041,33041 +425106,425106 +386272,386272 +40312,40312 +42258,42258 +39154,39154 +36613,36613 +12400,12400 +17222,17222 +315798,315798 +22455,22455 +281737,281737 +13973,13973 +58426,58426 +33253,33253 +95631,95631 +401503,401503 +27005,27005 +68967,68967 +366540,366540 +24860,24860 +358345,358345 +32521,32521 +29357,29357 +29979,29979 +114311,114311 +147195,147195 +27883,27883 +19337,19337 +163050,163050 +16304,16304 +25353,25353 +93129,93129 +64304,64304 +12669,12669 +13073,13073 +18396,22774 +29673,29673 +326430,326430 +41422,41422 +342248,342248 +20333,20333 +26659,26659 +34668,34668 +31324,31324 +216512,216512 +15479,15479 +57339,57339 +170557,170557 +18770,18770 +35696,35696 +89017,89017 +190033,190033 +29623,29623 +12727,12727 +3257,3257 +38176,38176 +137915,137915 +38857,38857 +222496,222496 +33626,33626 +399913,399913 +111801,111801 +307542,307542 +15133,15133 +42825,42825 +114520,114520 +2141,2141 +18171,18171 +22562,22562 +28767,28767 +294485,294485 +293777,293777 +28422,28422 +35310,15613 +108007,108007 +11939,11939 +15846,15846 +265608,265608 +239124,239124 +20324,20324 +130681,130681 +19557,19557 +159826,159826 +20972,20972 +30479,30479 +212872,212872 +28539,28539 +401584,401584 +19216,19216 +15851,15851 +29584,29584 +120261,120261 +98311,98311 +63112,63112 +33329,33329 +39132,39132 +33894,33894 +68882,68882 +11553,11553 +36912,36912 +22570,22570 +4950,4950 +267016,267016 +69901,69901 +416997,416997 +352488,352488 +3153,3153 +69153,69153 +19760,19760 +58682,58682 +365713,365713 +41787,41787 +88843,88843 +20268,20268 +32779,32779 +270631,270631 +136386,136386 +40300,40300 +34983,32215 +230090,230090 +10337,10337 +26318,26318 +256573,256573 +5676,5676 +26935,26935 +57603,57603 +43537,43537 +20438,20438 +29032,29032 +25152,25152 +10639,10639 +27352,27352 +24467,24467 +134570,134570 +31645,31645 +23705,23705 +101504,101504 +144350,144350 +31107,31107 +26410,26410 +166969,166969 +29398,29398 +400320,400320 +127535,127535 +42746,42746 +344608,344608 +206329,206329 +242555,242555 +4849,4849 +146162,146162 +266506,266505 +18869,18869 +141578,141578 +189319,189319 +7171,7171 +16077,16077 +12654,12654 +43039,43039 +5009,5009 +10689,10689 +11434,11434 +13283,13283 +34835,34835 +30827,30827 +10257,10257 +25986,25986 +3863,3863 +19349,19349 +315186,315186 +248430,248430 +93578,93578 +7213,7213 +184458,184458 +228047,228047 +88963,88963 +148040,148040 +209366,132620 +281283,281283 +28310,28310 +286256,286256 +175198,175198 +6875,6875 +28373,28373 +25969,144412 +17797,17797 +38427,38427 +28375,28375 +157785,157785 +93974,93974 +5105,5105 +5470,5470 +6273,6273 +9563,9563 +227528,227528 +8926,8926 +26430,26430 +121255,121255 +36417,36417 +5005,5005 +366891,366891 +59053,59053 +127048,127048 +50912,144420 +220440,220440 +35625,35625 +317847,317847 +10726,10726 +32505,32505 +368667,368667 +105192,105192 +16086,16086 +137621,137621 +3750,3750 +31154,31154 +21420,21420 +7818,7818 +131499,131499 +223526,223526 +64597,64597 +277452,277452 +42514,42514 +35509,35509 +45437,45437 +160068,160068 +29660,463 +147112,147112 +84396,84396 +172938,172938 +6230,6230 +10537,10537 +1215,1215 +37310,37310 +39836,39836 +128282,128282 +170779,170779 +382898,266446 +263426,263426 +246499,246499 +28638,28638 +8961,8961 +209631,209631 +325531,325531 +29696,29696 +36777,36777 +1126,2795 +339258,339258 +5841,5841 +16575,16575 +143459,143459 +239047,239047 +20593,20593 +27768,27768 +64549,64549 +21070,21070 +386551,271460 +85478,85478 +29819,29819 +13757,463 +30783,30783 +22737,22737 +187044,187044 +27524,27524 +76556,463 +24504,24504 +82037,82037 +284257,284257 +167827,167827 +4365,4365 +16820,16820 +16644,16644 +4441,4441 +9621,9621 +8514,8514 +172508,172508 +595,595 +110298,110298 +243283,243283 +36506,36506 +34941,34941 +11550,11550 +426242,426242 +232425,232425 +9225,9225 +12167,12167 +110722,110722 +187972,187972 +277090,277090 +269625,269625 +961,961 +7675,7675 +104684,104684 +62072,62072 +25318,25318 +70483,70483 +123573,123573 +277019,277019 +324862,234473 +23914,23914 +12665,12665 +63677,63677 +41138,41138 +183383,183383 +19481,19481 +6986,6986 +419710,419710 +138213,138213 +28021,28021 +34150,34150 +200467,200467 +24817,24817 +8506,8506 +23861,463 +21531,21531 +9754,9754 +21055,127093 +343682,343682 +33651,33651 +102595,102595 +214744,214744 +172643,172643 +192027,192027 +158923,158923 +58760,58760 +54384,54384 +11602,11602 +157943,50381 +17756,17756 +9707,9707 +23853,23853 +10079,10079 +193487,193487 +118687,118687 +358157,358157 +151709,151709 +36347,36347 +1092,1092 +19752,19752 +2419,2419 +35042,127052 +4526,4526 +8875,8875 +39329,39329 +17987,17987 +28613,21412 +32592,32592 +25709,25709 +3458,3458 +33868,33868 +8108,8108 +36249,36249 +224426,224426 +24390,24390 +172347,172347 +218823,218823 +5099,5099 +14994,14994 +29336,29336 +342867,342867 +69643,69643 +16961,16961 +72021,72021 +46936,46936 +49301,49301 +24167,24167 +2330,2330 +11119,11119 +137410,137410 +33487,33487 +91410,91410 +18638,18638 +28101,28101 +38640,38640 +80800,5298 +34359,34359 +153836,153836 +154118,154118 +16127,16127 +35837,35837 +35381,35381 +63548,63548 +354674,354674 +16870,16870 +10847,10847 +94841,94841 +10517,10517 +23253,23253 +361001,361001 +28281,28281 +168868,168868 +36770,36770 +33773,33773 +248467,248467 +16630,63238 +127340,127340 +16198,16198 +42616,42616 +2293,2293 +170073,170073 +134724,134724 +215327,215327 +12394,12394 +9772,9772 +20094,20094 +24665,24665 +14963,14963 +15260,15260 +35838,35838 +16951,16951 +17185,17185 +172530,172530 +16523,16523 +345261,345261 +18956,18956 +15458,15458 +42445,42445 +26499,26499 +25434,25434 +7435,7435 +102810,102810 +39249,15530 +340997,340997 +260553,260553 +18069,18069 +211823,211823 +40611,40611 +17330,17330 +314042,314042 +11101,11101 +22669,22669 +4521,4521 +110020,110020 +22800,22800 +290903,290903 +19342,19342 +181237,400978 +319096,319096 +20141,20141 +11875,11875 +29321,29321 +217560,217560 +30789,30789 +72229,72229 +24132,24132 +22754,22754 +50269,50269 +17056,17056 +62314,62314 +33796,33796 +26357,26357 +6603,6603 +17059,17059 +28360,28360 +68157,68157 +16955,16955 +20218,20218 +415715,263733 +399916,399916 +331591,331591 +74958,74958 +18378,18378 +14177,14177 +322453,322453 +117817,117817 +46532,46532 +72575,72575 +341680,341680 +21349,21349 +29449,29449 +27591,27591 +357698,357698 +303728,303728 +327842,236909 +209627,209627 +12190,12190 +35642,35642 +137830,137830 +25091,25091 +10624,10624 +3287,3287 +323714,323714 +22542,22542 +28814,28814 +379307,379307 +40151,40151 +24115,24115 +137597,137597 +351661,463 +12525,12525 +24446,24446 +22440,22440 +25492,25492 +173841,173841 +17998,17998 +170893,170893 +22300,22300 +28877,28877 +296347,296347 +85098,85098 +28645,28645 +52090,52090 +39882,39882 +172150,222589 +63251,63251 +21740,21740 +25383,25383 +184580,184580 +388999,388999 +40272,40272 +69733,69733 +9712,9712 +6669,6669 +8182,8182 +34465,34465 +356031,356031 +16801,16801 +35028,35028 +25480,25480 +35735,35735 +153517,153517 +399688,399688 +66410,66410 +15400,15400 +112273,112273 +9773,9773 +43298,43298 +142682,142682 +119906,119906 +33179,33179 +35442,35442 +327417,327417 +114288,114288 +176942,176942 +282362,282362 +188377,188377 +24216,24216 +33961,33961 +350613,350613 +167277,167277 +17667,17666 +394752,394752 +198993,198993 +10714,10714 +200891,200891 +15296,15296 +84743,84743 +38935,38935 +294447,294447 +149151,149151 +13991,13991 +35125,35125 +182803,182803 +181333,181333 +27195,27195 +22611,22611 +314256,314256 +212556,212556 +22375,22375 +39008,39008 +27144,27144 +18619,18619 +23858,23858 +403897,403897 +21010,21010 +21045,21045 +362380,362380 +8687,8687 +126669,126669 +37151,37151 +256855,15760 +26695,26695 +314890,314890 +8966,8966 +30247,30247 +19023,19023 +22491,22491 +20261,20261 +13814,13814 +331893,331893 +21154,21154 +264087,264087 +18309,18309 +15801,15801 +172167,222589 +138240,2938 +23366,23366 +174222,174222 +122495,122495 +45122,45122 +70596,70596 +27501,27501 +9009,9009 +39883,39883 +104614,104614 +25761,25761 +62547,62547 +13241,13241 +425730,425730 +187110,187110 +315516,315516 +93613,93613 +140207,140207 +223981,223981 +261322,261322 +30090,30090 +275584,275584 +251151,251151 +166171,166171 +64819,64819 +25404,25404 +422626,422626 +162900,162900 +182393,182393 +30636,30636 +139619,139619 +60633,60633 +427117,427117 +23773,23773 +18005,18005 +349787,349787 +109023,109023 +128774,128774 +36793,36793 +319326,319326 +161096,161096 +95075,95075 +43380,43380 +33307,33307 +60550,60550 +25771,25771 +35723,35723 +10042,10042 +19024,19024 +216738,216738 +138067,138067 +332840,332840 +376938,376938 +156124,156124 +82761,82761 +176353,176353 +101937,101937 +40528,40528 +100053,100053 +104904,104904 +135563,135563 +377064,377064 +368910,390609 +155769,155769 +143831,143831 +28496,28496 +154563,154563 +17653,17653 +160935,160935 +30372,30372 +7100,7100 +147422,147422 +35867,35867 +26835,26835 +27988,27988 +29600,29600 +42594,42594 +146119,146119 +131960,131960 +113194,113194 +43374,43374 +23844,23844 +76884,76884 +40114,40114 +65666,65666 +370932,370932 +25849,25849 +86812,86812 +366972,366973 +369814,369814 +108338,108338 +35483,35483 +18088,18088 +23676,23676 +400760,271460 +40084,40084 +29104,29104 +31008,31008 +287396,287396 +341219,334354 +177370,177370 +22260,22260 +18568,18568 +131737,131737 +23325,23325 +15300,15300 +127108,127108 +169741,169741 +30801,30801 +224550,224550 +59925,59925 +12444,12444 +187462,187462 +160797,160797 +37986,37986 +122917,234473 +24982,24982 +403354,292732 +65318,65318 +24366,24366 +381323,381323 +28233,28233 +141546,141546 +22456,22456 +111143,111143 +320170,320170 +32067,32067 +62507,62507 +85620,85620 +6106,6106 +33260,33260 +315587,315587 +114542,114542 +80444,80444 +29506,29506 +150085,150085 +10720,10720 +339954,339954 +35600,35600 +258163,258163 +377439,377439 +141027,141027 +56784,56784 +4609,4609 +422870,422870 +92026,92026 +115668,115668 +182906,182906 +239635,239635 +35043,35043 +129606,129606 +35511,35511 +342252,342252 +28216,28216 +65011,65011 +16353,16353 +341388,341388 +40216,40216 +31778,31778 +29367,29367 +9543,9543 +3381,3381 +35532,35532 +363151,363151 +15421,15421 +353340,353340 +27345,27345 +28087,28087 +316390,316390 +38245,38245 +37704,37704 +110747,110747 +22010,22010 +198398,198398 +129600,129600 +172628,172628 +279590,279590 +33348,33348 +63596,63596 +64857,64857 +93404,93404 +23789,23789 +33455,33455 +427063,427063 +1242,1242 +298740,298740 +30836,30836 +32495,32495 +22481,22481 +151409,151409 +14992,14992 +206849,19841 +98426,98426 +182533,182533 +177085,177085 +128086,128086 +112850,112850 +171396,171396 +265390,189030 +28235,28235 +15308,15308 +198710,198710 +285156,285156 +159647,159647 +16088,16088 +22722,22722 +11642,11642 +17201,17201 +37765,37765 +218574,218574 +3796,3796 +80935,80935 +2326,2326 +151981,151981 +170408,105134 +283075,257324 +2102,2103 +260829,260829 +155912,155912 +187872,92190 +192092,192092 +175427,175427 +148772,148772 +102755,267990 +24155,74098 +11788,11788 +205787,205787 +242973,242973 +17839,17839 +27155,40808 +25596,25596 +29704,29704 +359143,359143 +59310,59310 +39637,39637 +161181,161181 +311484,311484 +85206,85206 +42006,42006 +1641,1641 +155494,155494 +260790,260790 +156648,156648 +49442,49442 +97669,97669 +197034,166633 +5244,5244 +28352,28352 +97121,97121 +186625,186625 +22034,22034 +174069,174069 +159155,159155 +27644,27644 +130751,130751 +248712,248712 +23736,23736 +27230,27230 +326900,326900 +30177,30177 +18733,18733 +5329,5329 +307277,307277 +372351,372351 +6238,6238 +41152,41152 +7046,7046 +15009,291806 +9734,9734 +5147,5147 +140988,140988 +800,800 +264016,264016 +103844,60057 +364762,364762 +381076,381076 +330720,330720 +205865,205865 +86109,86109 +12992,12992 +37869,37869 +5429,321145 +62946,62946 +75955,75955 +34852,34852 +21465,21465 +7343,7343 +13946,13946 +172171,222589 +165557,165557 +12316,12316 +1232,1232 +35267,35267 +24627,24627 +14758,14758 +10028,10028 +108158,108158 +300118,300118 +2028,2028 +12440,12440 +5245,5245 +15051,15051 +4931,4931 +98650,98650 +89480,89480 +1882,1882 +11460,11460 +1061,1061 +144036,251359 +180645,180645 +275533,275533 +2771,2771 +280451,280451 +19889,19889 +131610,400686 +2643,2643 +144588,144588 +91413,91413 +3822,3822 +184671,184443 +37031,37031 +251403,251403 +6409,6409 +13092,13092 +21106,21106 +27300,27300 +15251,15251 +49443,49443 +31060,31060 +14945,37456 +130040,130040 +25928,25928 +27583,4299 +24965,24965 +129048,129048 +17759,17759 +21701,3270 +245325,245325 +29356,29356 +13236,13236 +262525,262525 +27278,27278 +22700,22700 +63925,63925 +21842,21842 +8439,8439 +51384,51383 +3974,3974 +33153,33153 +234251,234251 +143441,143441 +61381,61381 +26208,26208 +3770,3770 +95005,95005 +26021,26021 +5600,5600 +241137,241137 +199864,199864 +130276,130276 +8869,8869 +18893,18893 +23247,23247 +12193,12193 +167745,167745 +11554,11554 +162147,162147 +236567,236567 +186666,186666 +37395,37395 +30623,30623 +30259,30259 +27478,27478 +65540,65540 +318813,318813 +9778,9778 +12707,12707 +17503,17503 +338601,338601 +267019,267019 +86424,86424 +23313,23313 +24153,24153 +5674,5674 +23370,23370 +187603,187603 +100945,100945 +7776,7776 +241226,241226 +26125,26125 +67315,67315 +14763,14763 +191098,191098 +2445,2445 +25082,25082 +286127,286127 +5249,5249 +12712,12712 +49650,49650 +140775,140775 +36136,36136 +15691,15691 +12542,12542 +29642,29642 +98525,98525 +1834,1834 +12255,12255 +15615,15615 +22430,22430 +111325,111325 +363605,363605 +20032,20032 +19345,19345 +11506,11506 +10015,10015 +32614,32614 +20123,20123 +38804,38804 +8413,8413 +25675,25675 +191995,191995 +14958,14958 +268407,268407 +244854,244854 +28365,28365 +75129,75129 +26982,26982 +3857,3857 +228510,228510 +88975,88975 +40070,40070 +69592,69592 +26027,26027 +18362,18362 +39407,39407 +360675,293586 +38889,38889 +20326,20326 +10315,10315 +22434,22434 +22014,22014 +17595,17595 +56951,56951 +41990,41990 +222523,222523 +4269,4269 +28797,28797 +11218,11218 +27989,27989 +24471,24471 +53149,53149 +119849,119849 +2874,2874 +130052,130052 +23754,23754 +30782,30782 +326907,326907 +25272,25272 +365389,365389 +23297,23297 +9771,9771 +244805,216877 +269633,269633 +36845,36845 +362699,362699 +155755,155755 +22037,22037 +87621,87621 +115609,115609 +16222,16222 +135579,135579 +27915,27915 +135556,135556 +35872,35872 +68089,68089 +135008,135008 +122348,122348 +206107,206107 +59698,59698 +15584,15584 +20735,20735 +17012,17012 +120209,120209 +402511,463 +40441,40441 +95971,95971 +24217,24217 +327598,327598 +247186,247186 +153511,153511 +212733,212733 +286746,286746 +3904,37477 +254210,254210 +18909,18909 +40291,40291 +186095,186095 +18779,18779 +5388,5388 +30974,30974 +9884,9884 +10907,10907 +25624,25624 +30601,30601 +12216,12216 +16690,16690 +14531,14531 +188003,188003 +65335,65335 +169072,169072 +181077,181077 +63670,63670 +16808,16808 +324613,324613 +159861,159861 +29289,29289 +184655,184655 +89483,89483 +15587,15587 +17782,17782 +20334,20334 +239075,239075 +22881,22881 +11767,11767 +96066,96066 +118353,118353 +22058,22058 +37938,37938 +25525,25525 +154508,154508 +233389,233389 +307297,307297 +28916,28916 +238076,238076 +138648,138648 +36984,36984 +85322,85322 +174803,174803 +31779,31779 +56330,56330 +32879,32879 +39958,39958 +36246,36246 +109030,109030 +59661,59661 +296130,296130 +194191,194191 +130491,130491 +265391,265391 +65658,65658 +301026,301026 +10329,10329 +34779,34779 +273121,273121 +22559,22559 +35755,35755 +19745,19745 +283865,283865 +75331,75331 +6298,6298 +17241,17241 +170803,144412 +156912,156912 +73566,73566 +35348,35348 +39962,39962 +35728,35728 +115428,115428 +257813,257813 +42364,42364 +294335,294335 +6459,6459 +280861,280861 +33128,33128 +17588,17588 +29518,29518 +265530,432969 +253394,253394 +24413,24413 +16346,16346 +130802,130802 +29786,29786 +17706,17706 +218117,218117 +14960,14960 +19814,19814 +9011,9011 +110901,110901 +258213,258213 +15199,15199 +35802,35802 +181199,181199 +24162,25581 +24179,24179 +188394,188394 +29120,29120 +15847,15847 +15152,15152 +115574,115574 +42786,42786 +81762,81762 +159168,159168 +93279,93279 +30781,30781 +28341,28341 +322948,322948 +38405,38405 +35713,35713 +7005,7005 +60033,60033 +28208,28208 +9458,9458 +80662,80662 +298024,298024 +32759,32759 +233615,233615 +11772,11772 +22235,22235 +25463,25463 +71805,71805 +121756,121756 +60751,60751 +236923,236923 +218258,218258 +28343,28343 +287398,287398 +24100,24100 +74801,74801 +13358,13358 +32729,32729 +11740,11740 +23690,23690 +360901,463 +112754,112754 +318047,318047 +324618,324618 +20673,20673 +172107,172107 +21865,21865 +270102,270102 +19644,19644 +27993,27993 +72570,72570 +19077,463 +43538,43538 +307230,147151 +1322,1322 +34190,57775 +72716,72716 +15819,15819 +177534,177534 +63048,63048 +326804,326804 +165414,257595 +124589,124589 +13049,13049 +28757,28757 +109252,109252 +23500,23500 +2440,2440 +154727,18803 +13439,13439 +16959,16959 +282578,282578 +99949,99949 +38955,38955 +6840,6840 +86270,86270 +31235,31235 +13488,13488 +153845,153845 +369377,369377 +38878,38878 +14481,14481 +23571,23571 +38464,38464 +161413,258708 +1136,1136 +24721,24721 +6242,6242 +34745,34745 +206082,206082 +243403,243403 +15727,15727 +16809,16809 +346797,346797 +24261,24261 +104636,104636 +36791,36791 +16393,16393 +36754,36754 +32851,32851 +403164,403164 +148534,148534 +28717,28717 +110815,110815 +3846,3846 +29224,29224 +240579,240579 +152763,152763 +378381,378381 +141424,141424 +192353,192353 +40404,40404 +45148,45148 +23796,23796 +386105,386105 +157629,157629 +323155,323155 +68150,68150 +283762,283762 +35262,35262 +320135,320135 +198459,198459 +91126,91126 +345081,345081 +269001,269001 +6563,6563 +8024,8024 +6649,6649 +11549,11549 +9445,9445 +161098,416 +99254,99254 +14868,14868 +410764,410764 +146309,146309 +3443,3443 +3742,3742 +146841,146841 +360504,360504 +184896,184896 +269978,325333 +241836,241836 +57997,57997 +88191,88191 +28116,28116 +182174,182174 +169714,169714 +15828,15828 +22338,22338 +254149,254149 +67341,67341 +93884,93884 +218367,218367 +16440,16440 +617,617 +8491,8491 +135763,135763 +27958,27958 +17938,17938 +102643,102643 +25468,25468 +8335,8335 +89731,89731 +322089,322089 +2054,2054 +11018,11018 +9136,9136 +148584,148584 +3322,3322 +188190,463 +332814,352289 +29230,29230 +5567,5567 +338725,338725 +27585,27585 +172580,172580 +1466,1466 +4075,4075 +13113,13113 +1870,1870 +174361,174361 +255720,255720 +24104,24104 +270510,270510 +7428,7428 +13409,13409 +61369,61369 +286377,100049 +146917,146917 +17814,17814 +11783,11783 +5631,5631 +308227,324340 +243990,243990 +33195,33195 +19357,173646 +14051,14051 +17479,17479 +250439,250439 +21356,21356 +14491,14491 +376746,376746 +32287,32287 +72633,72633 +3315,3315 +158250,158250 +378082,378082 +5025,5025 +40967,40967 +14353,14353 +218164,218164 +390095,390095 +39286,39286 +20208,20208 +155256,155256 +408605,408605 +358613,358613 +14445,14445 +18036,18036 +8152,8152 +169716,169716 +287078,287078 +303539,303539 +24940,24940 +20045,20045 +13227,13227 +335087,335087 +1086,1086 +105409,153830 +17796,17796 +252045,252045 +19790,19790 +11503,11503 +6520,6520 +23805,23805 +28858,28858 +7319,7319 +214999,214999 +40244,463 +351811,351811 +123487,123487 +28975,28975 +117666,117666 +40073,40073 +111182,111182 +13734,13734 +11868,343522 +18268,18268 +17984,17984 +166155,166155 +164364,164364 +28196,28196 +32654,32654 +39458,39458 +232346,232346 +31096,31096 +138068,138068 +23944,23944 +7324,7324 +105056,105056 +323711,323711 +7101,7101 +27277,27277 +11319,11319 +144442,144442 +5695,5695 +184306,184306 +24524,24524 +17815,17815 +27919,27919 +297007,271460 +9430,9430 +28501,28501 +9691,9691 +7333,7333 +302046,302046 +17535,17535 +37350,37350 +177034,177034 +27942,27942 +21732,21732 +25263,25263 +270713,270713 +12215,12215 +40143,40143 +64079,64079 +144704,144704 +193676,193676 +82332,82332 +12959,12959 +37671,37671 +38635,38635 +244218,244218 +30573,30573 +18786,18786 +139725,139725 +101502,101502 +148769,148769 +14756,14756 +42538,42538 +34778,34778 +16132,16132 +13634,13634 +23469,23469 +1485,1485 +9927,9927 +892,892 +111767,111767 +35154,35154 +363401,364338 +17028,17028 +16157,16157 +135486,135486 +15884,15884 +265295,265295 +26354,26354 +143449,143449 +61811,61811 +113634,113634 +325474,325474 +29404,29404 +15585,463 +31037,31037 +1798,1798 +93186,93186 +10617,10617 +108392,108392 +107376,107376 +16798,16798 +11318,11318 +234038,234038 +276327,276327 +113365,113365 +13762,463 +106773,106773 +33444,33444 +49312,49312 +31568,31568 +92977,92977 +26391,26391 +129159,129159 +24517,24517 +7456,7456 +33311,33311 +97661,97661 +2182,2182 +30332,30332 +11003,11003 +334373,334373 +15332,15332 +430954,430954 +154063,154063 +245773,245773 +22285,22285 +188577,188577 +5796,5796 +17831,17831 +12732,12732 +307290,307290 +30612,30612 +357632,357632 +32755,32755 +40093,40093 +24746,24746 +25359,25359 +11647,11647 +37075,37075 +375749,375749 +125766,125766 +24171,24171 +70371,70371 +45538,45538 +237548,237548 +15348,15348 +2642,2642 +51387,51387 +39214,39214 +29125,29125 +14844,14844 +14274,14274 +267014,267014 +178622,178622 +235824,235824 +89292,89292 +21978,21978 +87001,87001 +256604,256604 +20256,20256 +399796,399796 +35928,35928 +118876,118876 +19151,19151 +130776,130776 +35441,35441 +188293,188293 +135582,135582 +152823,152823 +30786,30786 +29778,29778 +89482,89482 +190786,190786 +266359,266359 +12311,12311 +34743,34743 +26329,26329 +15728,15728 +21027,21027 +39465,39465 +37425,37425 +335326,335326 +28228,28228 +15564,15564 +27513,27513 +70715,70715 +266360,266360 +218014,218014 +213887,213887 +26965,26965 +109045,109045 +118257,21990 +145516,145516 +40364,40364 +141859,141859 +165659,165659 +21434,21434 +35871,35871 +41254,41254 +64532,64532 +27362,27362 +155194,27840 +142046,142046 +124669,124669 +255707,255707 +97948,97948 +49422,49422 +739,739 +279721,279721 +123316,123316 +17064,17064 +30757,30757 +150910,150910 +187659,187659 +22709,22709 +17481,17481 +17799,17799 +738,738 +31333,31333 +125142,125142 +40672,40672 +25101,25101 +76101,242615 +103086,103086 +20220,20220 +39025,39025 +55220,55220 +28209,28209 +90032,90032 +96393,96393 +326144,326144 +217579,217579 +97382,97382 +175180,175180 +2117,2117 +377114,377114 +359400,359400 +335683,335683 +228643,228643 +34867,34867 +53160,53160 +410124,410124 +79719,79719 +125515,125515 +293974,293974 +96531,96531 +20987,20987 +146354,146354 +337661,337661 +35938,35938 +253435,253435 +359608,463 +27089,27089 +21863,21863 +32122,32122 +55163,55163 +26925,26925 +29574,463 +22489,22489 +244744,244744 +34876,34876 +18183,18183 +42263,42263 +35752,35752 +169541,169541 +23120,23120 +9631,9631 +60176,60176 +22508,22508 +37745,37745 +102621,102621 +251129,251129 +32294,32294 +184929,184929 +33248,33248 +282013,282013 +154142,154142 +23336,23336 +153568,153568 +140141,140141 +13700,13700 +182899,182899 +61584,61584 +31296,31296 +76351,76351 +23286,23286 +35097,35097 +16764,16764 +25022,25022 +112181,112181 +71997,71997 +114305,114305 +57889,57889 +17869,17869 +399771,399771 +11379,11379 +14305,14305 +237572,434491 +5657,5657 +203019,318409 +9928,9928 +6386,6386 +39389,39389 +2221,2221 +25526,25526 +43231,43231 +11608,11608 +6582,6582 +13164,2392 +174335,174335 +31484,31484 +2726,2726 +21102,21102 +38665,38665 +173162,173162 +40947,40947 +227847,10300 +192311,12627 +148600,148600 +131451,131451 +257734,257734 +40655,40655 +9399,9399 +196953,196953 +259737,10437 +6373,6373 +142253,142253 +166445,166445 +289205,289205 +34993,34993 +186419,186419 +34710,34710 +4790,4790 +40247,40247 +19519,19519 +229789,229789 +260998,204583 +6391,6391 +141726,164939 +279354,279354 +122163,122163 +7050,7050 +184783,184783 +23969,23969 +11652,463 +9751,9751 +153351,153351 +10190,10190 +348983,348983 +24961,233995 +35312,35312 +5558,5558 +146191,146191 +103881,103881 +19647,19647 +2140,2140 +6186,6186 +200188,200188 +9710,9710 +191981,191981 +21346,21346 +24674,24674 +3434,3434 +10811,10811 +9968,9968 +232211,232211 +1524,1524 +7960,338953 +41061,41061 +36905,252382 +312457,312457 +39193,39193 +209588,209588 +128087,128087 +312589,312590 +178246,178246 +16724,16724 +9955,9955 +152822,152822 +305056,305056 +13896,13896 +3689,3689 +28307,28307 +235814,235814 +97063,97063 +4005,4005 +8894,8894 +67430,288871 +5013,5013 +11146,11146 +2066,2066 +13549,13549 +29992,29992 +5910,5910 +108743,108743 +97263,97263 +5987,5987 +4594,4594 +149617,149617 +57240,57240 +197622,197622 +22854,22854 +125876,125876 +33360,33360 +11227,11227 +1389,1389 +28345,28345 +107583,107583 +167417,167417 +184466,184466 +25836,25836 +285527,285527 +25394,25394 +6634,6634 +253633,253633 +30715,30715 +156418,156418 +372922,372922 +18380,3270 +188606,188606 +153219,153219 +75729,75729 +13003,13003 +217425,217425 +21800,21800 +35273,35273 +9534,9534 +26450,26450 +38849,38849 +234301,234301 +337375,337375 +25589,25589 +7852,7852 +20163,20163 +11501,11501 +151916,151916 +189001,2843 +23555,23555 +16128,16128 +31771,31771 +5710,5710 +45847,45847 +7968,7968 +24479,24479 +11304,11304 +22803,22803 +35568,35568 +13673,13673 +35774,35774 +23561,23561 +344699,112963 +177378,159865 +22748,22748 +10615,10615 +11590,11590 +50782,50782 +3445,3445 +37934,37934 +4447,4447 +11221,11221 +25883,25883 +11063,11063 +128941,128941 +290000,290000 +377684,377684 +27681,27681 +86775,86775 +343268,343268 +200270,200270 +173072,173072 +6562,6562 +30019,30019 +34734,156453 +37135,37135 +65060,65060 +14029,14029 +125800,125800 +40650,40650 +7512,7512 +22558,22558 +5395,5395 +30745,30745 +6213,6213 +12647,12647 +31696,31696 +95310,95310 +33781,33781 +36025,36025 +26926,26926 +244613,244613 +17048,17048 +35422,35422 +64144,64144 +14650,14650 +62662,62662 +51494,51494 +29028,29028 +27750,27750 +18637,18637 +19108,19108 +142535,142535 +161985,161985 +27742,27742 +94579,94579 +19925,19925 +6204,6204 +30993,30993 +22860,22860 +110146,110146 +39600,39600 +15286,15286 +142160,142160 +29083,29083 +244798,216877 +40940,40940 +3304,3304 +129137,129137 +27160,30049 +328082,328082 +28367,28367 +240394,240394 +33573,33573 +24174,24174 +14981,14981 +15194,15194 +45974,45974 +41286,41286 +26648,26648 +34142,34142 +66175,66175 +21278,21278 +283432,283432 +14638,14638 +290512,463 +30052,30052 +17425,22432 +283471,283471 +63700,63700 +337103,337103 +25174,25174 +279988,279988 +24798,24798 +21773,21773 +274022,274022 +51964,51964 +26367,26367 +73511,73511 +38688,38688 +35172,35172 +128558,128558 +112464,112464 +25649,25649 +29130,29130 +5378,5378 +30195,30195 +2796,2796 +39204,39204 +49496,49496 +219403,219403 +338722,338722 +113740,113740 +34775,34775 +10444,10444 +119281,119281 +2328,2328 +31875,31875 +33229,33229 +21044,21044 +390097,390095 +35581,35581 +20317,20317 +5861,5861 +47186,47186 +160963,160963 +13189,13189 +346203,346203 +261825,261825 +98000,98000 +22064,22064 +278224,278224 +66231,66231 +107972,107972 +24630,24630 +28927,28927 +14231,14231 +358819,358819 +140948,140948 +65132,65132 +133309,133309 +98042,98042 +129728,129728 +275325,275325 +27419,27419 +145985,145985 +140517,56604 +35495,35495 +69159,69159 +108056,108056 +218825,218825 +11535,11535 +15272,15272 +291215,291215 +37089,37089 +102348,102348 +142314,142314 +163191,163191 +189317,189317 +9937,9937 +19919,19919 +15771,15771 +64114,64114 +373579,373579 +38373,38373 +298964,298964 +34666,34666 +312446,312446 +31177,31177 +35355,35355 +96776,96776 +33303,33303 +19874,463 +13594,13594 +55153,55153 +122377,122377 +34134,34134 +68375,68375 +143846,143846 +46152,46152 +20395,20395 +203689,203689 +176600,176600 +21565,21565 +328222,328222 +27816,27816 +27815,27815 +18915,18915 +13764,13764 +250384,250384 +28902,28902 +7279,7279 +21146,21146 +14651,14651 +374704,374704 +30252,30252 +64700,64700 +425231,425231 +12576,12576 +129488,129488 +149887,149887 +63410,63410 +201331,201331 +18490,18490 +134983,134983 +392176,392176 +266241,266241 +71364,71364 +41735,41735 +32591,32591 +377992,377992 +91635,91635 +20271,20271 +6718,6718 +32128,32128 +63415,463 +255552,255552 +27395,27395 +45539,45539 +175709,175709 +137616,137616 +18984,18984 +76550,463 +132357,132357 +313695,318059 +9250,271460 +65557,65557 +133557,133557 +319900,319900 +280100,280100 +26718,26718 +20327,20327 +42530,42530 +4654,4654 +158688,158688 +33418,33418 +93192,93192 +18040,18040 +5604,5604 +329230,329230 +66341,7378 +34785,107376 +25356,25356 +10583,10583 +28019,28019 +169560,169560 +25328,25328 +226326,226326 +1006,1006 +18064,18064 +191133,463 +13415,13414 +351829,351829 +4142,4142 +8292,8292 +103811,103811 +156303,156303 +193272,276124 +107339,107339 +12289,338364 +174217,174217 +55279,55279 +5561,5561 +289988,289988 +49441,49441 +10306,10306 +35227,35227 +226305,226305 +21439,21439 +26207,26207 +191514,191514 +31144,31144 +28509,33676 +227510,227510 +20473,20473 +16338,16338 +333668,333668 +41890,41890 +262437,262437 +139581,139581 +295716,295716 +2026,2026 +200447,5312 +62995,62995 +1397,1397 +82138,82138 +126779,126779 +12281,12281 +5593,5593 +1977,220988 +3483,3483 +128885,29073 +83453,83453 +930,930 +41103,41103 +17642,17642 +33646,33646 +29148,29148 +9594,9594 +402614,402614 +27592,198128 +13813,13813 +171589,171589 +51616,51616 +52629,52629 +64397,64397 +267006,267006 +6475,170096 +153426,153426 +61522,61522 +69943,69943 +12155,12155 +1978,1978 +35591,35591 +12395,12395 +24932,24932 +157770,157770 +319105,319105 +23201,23201 +31807,271460 +246760,246760 +160183,160183 +39993,39993 +173148,173148 +214165,214165 +183801,183801 +73151,73151 +11515,11515 +94053,94053 +66436,66436 +233131,50381 +109521,109521 +11005,11005 +27281,27281 +12153,12153 +13313,13313 +201953,201953 +25180,25180 +288350,288350 +25816,25816 +92647,92647 +255661,255661 +12871,12871 +10037,10037 +178657,178657 +8994,8994 +6491,6491 +23772,23772 +13389,13389 +14472,14472 +14215,14215 +130404,130404 +224323,224323 +21237,21237 +13061,13061 +10200,10200 +131117,131117 +15649,15649 +163971,163971 +19769,146934 +154365,154365 +31215,31215 +6632,6632 +257336,257336 +37465,37465 +21683,21683 +325094,325094 +14194,14194 +2526,2526 +27832,27832 +27891,27891 +6730,6730 +26522,54604 +18813,18813 +357184,357184 +152888,152888 +84878,84878 +22417,22417 +7393,7393 +12835,12835 +158264,158264 +186960,186960 +346624,346624 +63765,63765 +9788,9788 +129563,129563 +33563,33563 +244443,244443 +27598,27598 +35831,35831 +66195,66195 +236482,236482 +182535,182535 +20822,20822 +242511,242511 +85038,85038 +78574,78574 +14004,14004 +21809,21809 +4676,4676 +35790,35790 +33638,33638 +1462,1462 +420208,420208 +283444,283444 +28416,28416 +267759,432580 +115743,115743 +63314,63314 +166328,198692 +221770,271460 +114109,114109 +31652,31652 +178239,178239 +27922,27922 +15836,15836 +16106,16106 +22500,22500 +33174,33174 +16161,16161 +32127,32127 +7744,7744 +12785,12785 +18680,18680 +15103,15103 +26418,26418 +362337,362337 +198384,198384 +325491,325491 +23225,23225 +193086,193086 +62602,62602 +358349,358349 +5912,5912 +30870,30870 +17383,7802 +18132,18132 +105367,105367 +88527,88527 +257312,257312 +191173,191173 +174928,174928 +27724,27724 +9891,9891 +114566,114566 +13053,13053 +30449,30449 +206855,206855 +1083,1083 +14602,14602 +19824,19824 +42922,42922 +147302,147302 +172707,244811 +21184,21184 +130080,130080 +4339,4339 +29369,29369 +38912,38912 +187064,187064 +39818,39818 +61535,61535 +234346,234346 +68032,68032 +13590,13590 +148358,148358 +377827,377827 +20423,20423 +17930,17930 +112352,112352 +108856,108856 +138239,138239 +1139,1139 +34798,34798 +33308,33308 +186512,186512 +28547,28547 +88524,88524 +103135,103135 +74559,74559 +23217,23217 +41737,41737 +31844,31844 +25324,25324 +22671,22671 +21929,21929 +35020,35020 +180783,180783 +73561,73561 +8629,8629 +32858,32858 +22809,22809 +10032,10032 +391677,391677 +26378,26378 +185945,185945 +209577,209577 +81038,81038 +26559,26559 +135636,135636 +21645,21645 +27827,7643 +28234,28234 +15330,15330 +42080,42080 +260663,260663 +24574,24574 +148305,148305 +158405,158405 +243448,243448 +18826,18826 +114108,114108 +25351,25351 +10358,10358 +22626,22626 +42944,16291 +3387,3387 +25250,25250 +147058,147058 +19860,19860 +27423,27423 +288936,288936 +28714,28714 +18894,18894 +29533,29533 +126967,126967 +163701,163701 +184991,184991 +189874,189874 +14569,14569 +227867,227867 +99215,99215 +18722,18722 +24286,463 +34163,34163 +14107,14107 +41786,41786 +89366,89366 +89289,89289 +93494,93494 +100182,100182 +28006,28006 +56694,56694 +132253,132253 +37617,37617 +164726,164726 +29803,29803 +30114,30114 +185405,185405 +33518,33518 +30872,30872 +65227,65227 +9109,9109 +25262,25262 +35156,35156 +52880,173824 +306276,306276 +246636,246636 +22423,22423 +24161,24161 +17501,17501 +212694,208165 +253353,253353 +133010,133010 +25254,25254 +39822,39822 +59685,59685 +377629,377629 +69752,69752 +59427,59427 +30301,30301 +190678,190678 +42331,42331 +18752,18752 +180470,180470 +168948,168948 +99029,99029 +114961,114961 +9729,9729 +23881,23881 +32295,32295 +64575,64575 +17844,17844 +4652,4652 +19159,19159 +41521,41521 +397072,397072 +165832,165832 +99026,99026 +27835,27835 +64434,64434 +336732,336732 +52517,52517 +14834,14834 +85615,85615 +370194,370194 +115924,115924 +304171,304171 +235638,235638 +24455,24455 +169785,169785 +22102,22102 +332151,332151 +232683,1111 +139780,105053 +35218,35218 +31909,697 +286920,286920 +30785,30785 +213268,213268 +252846,252846 +295485,295485 +150123,150123 +148099,148099 +4486,4486 +22380,22380 +13052,13052 +301115,301115 +13459,13459 +23514,23514 +224995,224995 +19584,19584 +3994,3994 +41557,41557 +95021,95021 +7912,7912 +3740,3740 +224057,224057 +211168,217886 +56229,56229 +16831,16831 +254752,140 +103706,103706 +4119,4119 +189806,189806 +9025,9025 +11495,11495 +20468,20468 +19202,19202 +21771,21771 +5213,5213 +17328,17328 +22672,22672 +236751,236751 +106602,106602 +357408,334354 +10010,10010 +9195,9195 +10544,10544 +255727,359751 +2724,2724 +158771,158771 +190616,190616 +200410,200410 +273278,273278 +108100,108100 +149069,149069 +38510,38510 +12463,12463 +325284,325284 +112134,112134 +8158,8158 +69801,69801 +15785,15785 +55730,55730 +30302,30302 +97287,97287 +176872,176872 +136588,136588 +27858,27858 +111828,111828 +275030,275030 +32833,3844 +24743,24743 +3533,3533 +183888,129735 +33952,33952 +218295,218295 +134601,134601 +12264,12264 +281306,281306 +73108,73108 +21231,21231 +5317,5317 +342924,342924 +6717,6717 +5789,5789 +193425,193425 +12514,12514 +237389,237389 +5624,5624 +264717,463 +90930,90930 +254314,254314 +36236,36236 +942,942 +172736,172736 +11992,11992 +394286,394286 +26595,26595 +10020,10020 +3026,3026 +26348,26348 +297345,297345 +11606,11606 +209226,209226 +137195,137195 +65906,65906 +43026,43026 +95507,95507 +7234,7234 +4897,4897 +365514,365514 +3964,3964 +358219,358219 +200382,200382 +12657,12657 +10774,10774 +184941,184941 +37616,37616 +16906,16906 +27910,27910 +290157,290157 +9481,9481 +12722,12722 +127049,127049 +146844,146844 +124638,124638 +34258,34258 +136711,136711 +6692,6692 +39725,39725 +186188,186188 +24776,24776 +99439,99439 +23245,23245 +26991,26991 +22750,22750 +124125,124125 +12227,12227 +165707,165707 +344340,344340 +31577,31577 +22875,22875 +52586,52586 +15313,15313 +42403,42403 +7300,7300 +134103,134103 +22902,22902 +10092,10092 +17633,17633 +9417,9417 +22215,22215 +11245,11245 +3211,3211 +360625,360625 +11023,11023 +241083,259062 +15172,15172 +369402,369402 +2534,2534 +220126,220126 +6376,6376 +3493,3493 +262189,262189 +5280,5280 +100425,100425 +65317,29111 +95314,95314 +17757,17757 +231579,231579 +57796,57796 +38914,38914 +224873,224873 +40140,40140 +430572,430572 +15665,15665 +21376,21376 +6970,6970 +304863,304863 +12121,12121 +367987,367987 +51580,51580 +24188,24188 +63967,63967 +267664,267664 +8065,8065 +34658,34658 +89508,89508 +15610,15610 +96431,96431 +239454,239454 +7716,7716 +13213,13213 +972,972 +411394,5589 +6348,6348 +221096,221096 +70644,70644 +41954,41954 +40308,40308 +7900,7900 +9100,9100 +92288,92288 +146331,146331 +5542,5542 +38910,38910 +27424,27424 +11867,11867 +180930,180930 +9857,9857 +25800,25800 +40289,40289 +17447,17447 +133102,39241 +261315,261315 +16611,16611 +134602,134602 +9671,9671 +9701,9701 +15514,15514 +29918,29918 +267222,267222 +2931,2931 +20814,20814 +32827,32827 +14257,14257 +46290,46290 +9526,9526 +27868,27868 +160282,160282 +351466,351466 +198693,198693 +31501,31501 +70455,140 +32138,32138 +5112,5112 +86130,86130 +87903,87903 +43142,43142 +21792,21792 +41736,41736 +84723,84723 +10122,10122 +40091,40091 +23712,23712 +28046,28046 +5820,5820 +68483,68483 +327856,327856 +18237,32215 +7227,291832 +152165,152165 +15978,15978 +159557,159557 +381719,381719 +124344,124344 +250709,250709 +155843,155843 +335347,335347 +282708,282708 +294095,294095 +64719,64719 +3372,3372 +35562,35562 +29883,29883 +22566,22566 +26551,26551 +8550,8550 +29661,29661 +11989,11989 +15171,15171 +17016,17016 +19568,19568 +177880,177880 +31375,31375 +174850,174850 +325098,325098 +243643,243643 +178145,178145 +12390,12390 +17858,17858 +121713,121713 +39860,39860 +26384,26384 +22943,22943 +61207,61207 +9850,9850 +19169,166064 +26431,26431 +93053,93053 +152956,152956 +17299,17299 +22436,22436 +34212,34212 +9936,9936 +35588,35588 +9758,9758 +97635,97635 +39246,39246 +158172,158172 +91623,91623 +12443,12443 +4787,4787 +9614,9614 +23390,23390 +35281,35281 +344709,344709 +106681,106681 +245984,245984 +34232,34232 +147376,147376 +103854,103854 +139365,139365 +30919,30919 +262297,262297 +26937,26937 +56787,56787 +41754,41754 +125056,125056 +17919,17919 +29776,29776 +4006,4006 +29558,29558 +130777,130777 +53392,53392 +70195,70195 +65117,65117 +120596,120596 +5326,5326 +68891,68891 +34645,34645 +37440,37440 +69625,69625 +66230,66230 +198272,198272 +95028,95028 +14571,14571 +6192,6192 +31510,31510 +230735,230735 +40232,40232 +3379,3379 +12966,12966 +320094,320094 +414796,414796 +23681,23681 +76356,76356 +20602,20602 +128842,128842 +27586,27586 +404518,404518 +173070,173070 +68088,68088 +77811,77811 +13009,13009 +23293,488 +349489,349489 +124960,124960 +32284,32284 +653,653 +13154,13154 +15563,15563 +38950,463 +230906,230906 +191880,191880 +293749,293749 +313925,590 +93985,14624 +213475,213475 +182284,182284 +44678,44678 +27376,27376 +7069,7069 +27581,27581 +144946,144946 +13879,40394 +3454,3454 +72482,72482 +7231,7231 +16284,16284 +4689,4689 +7836,7836 +2722,2722 +223811,223811 +11698,11698 +153504,153504 +47258,47258 +324925,320795 +8846,97699 +8806,8806 +678,678 +60710,60710 +172356,172356 +20096,20096 +11751,11751 +2768,2768 +10705,10705 +119165,119165 +104358,104358 +4701,4701 +131712,400978 +1456,1456 +169533,169533 +195272,195272 +204319,204319 +161553,118410 +20145,20145 +11956,11956 +10083,10083 +30213,30213 +164017,164017 +37497,37497 +28053,28053 +10982,10982 +69184,69184 +297350,297350 +40376,40376 +110483,463 +147721,147721 +7508,7508 +7361,7361 +305983,305983 +268922,268922 +24487,3084 +21415,21415 +42457,42457 +20382,20382 +69709,69709 +31714,31714 +22321,22321 +12084,12084 +92566,92566 +8007,8007 +25984,1299 +11201,11201 +179557,179557 +297779,297779 +111821,111821 +6629,6629 +149732,149732 +250437,250439 +72023,72023 +87682,87682 +9815,9815 +7436,7436 +10425,10425 +231673,231673 +137746,137746 +117571,117571 +15948,15948 +11520,11520 +43004,43004 +86817,86817 +32366,32366 +295721,315639 +7551,7551 +15241,15241 +5909,5909 +209715,209715 +40399,40399 +345624,345624 +7287,7287 +22706,22706 +61577,61577 +117708,117708 +22912,22912 +376895,376895 +9140,9140 +15281,15281 +4513,4513 +24204,24204 +122661,122661 +23934,23934 +6910,6910 +231558,231558 +37933,37933 +32227,32227 +281491,281491 +6782,6782 +33405,33405 +34094,34094 +161539,8651 +17586,17586 +321841,2281 +239516,239516 +31967,31967 +19487,19487 +21601,21601 +8164,8164 +87340,87340 +18807,18807 +10886,10886 +10866,10866 +13940,13940 +5741,5741 +295759,295759 +6514,6514 +14930,14930 +37905,37905 +225752,225752 +351467,351467 +10060,10060 +33366,33366 +345084,345084 +28411,28411 +20308,20308 +143569,143569 +20547,20547 +31689,31689 +93372,93372 +985,985 +57204,57204 +36526,36526 +23320,23320 +12127,12127 +11775,11775 +11912,11912 +65018,65018 +93626,93626 +114065,114065 +193895,50381 +23309,23309 +202579,202579 +86642,86642 +15526,15526 +38936,38936 +42484,42484 +18763,18763 +9468,9468 +91790,91790 +20729,20729 +11545,11545 +7444,7444 +12341,12341 +19945,19945 +402487,402487 +23837,23837 +10054,10054 +331321,331321 +19758,19758 +416199,416199 +13699,13699 +13733,13733 +38145,38145 +7035,7035 +35602,35602 +28821,28821 +11716,11716 +255771,255771 +177200,177200 +6337,6337 +11905,11905 +27642,27642 +217488,217488 +25834,25834 +329061,329061 +42524,42524 +35001,35001 +21945,21945 +38536,38536 +78142,78142 +29886,29886 +291875,291875 +1473,1722 +73512,73512 +25688,25688 +15869,15869 +104979,104979 +22292,22292 +176541,176541 +17929,17929 +37256,37256 +81759,81759 +21266,21266 +37216,37216 +28984,28984 +169249,169249 +168904,168904 +197179,197179 +16490,16490 +242512,242512 +13190,13190 +12278,12278 +14861,14861 +108032,108032 +23711,23711 +74099,74099 +25305,25305 +90380,90380 +2241,2241 +17422,17422 +31106,31106 +1600,1600 +173660,173660 +2870,2870 +17249,17249 +75575,75575 +40111,40111 +1951,1951 +217678,217678 +128552,128552 +15322,15322 +211913,102544 +42871,42871 +21250,21250 +339634,339634 +26614,343272 +67493,67493 +65742,65742 +51579,51579 +43297,43297 +14646,14646 +242750,242750 +6825,6825 +9528,9528 +10126,10126 +22787,22787 +27927,27927 +13606,13606 +286941,286941 +127071,127071 +254744,254744 +116887,116887 +72173,72173 +25086,25086 +317272,317272 +279206,279206 +207884,166309 +403350,403350 +20052,20052 +22529,22529 +11843,11843 +1441,1441 +308155,308155 +291748,291748 +16725,16725 +146572,146572 +130450,130450 +270228,270228 +10786,10786 +38432,38432 +133809,133809 +134721,134721 +85617,85617 +404840,404840 +22137,22137 +135661,135661 +145889,145889 +31122,31122 +16551,16551 +135845,135845 +5868,5868 +20288,20288 +92675,92675 +6746,6746 +136182,136182 +6616,6616 +103549,103549 +128573,128573 +21177,21177 +31632,31632 +165712,165712 +36670,36670 +138707,138707 +30817,30817 +26413,26413 +42367,42367 +174691,174691 +122188,122188 +198534,198534 +396548,396548 +30799,30799 +10051,10051 +31295,31295 +27728,27728 +169827,169827 +2647,2647 +123880,123880 +336810,336810 +8660,8660 +85619,85619 +17511,17511 +61216,61216 +162646,162646 +25288,25288 +56262,56262 +8566,8566 +6341,6341 +30818,30818 +202969,202969 +13890,13890 +24283,24283 +13671,13671 +14248,463 +29171,29171 +20554,20554 +380390,380390 +107938,107938 +179630,179630 +157945,271460 +14361,14361 +11115,11115 +107976,107976 +174146,174146 +168205,168205 +22887,22887 +42092,42092 +24388,24388 +26317,26317 +132707,132707 +174824,174824 +2644,2644 +32444,32444 +406319,406319 +164164,164164 +16873,16873 +12274,12274 +351515,351515 +217141,217141 +252374,252374 +176559,176559 +233902,233902 +33406,240107 +8536,8536 +35313,35313 +26827,26827 +9738,9738 +236360,433990 +137201,137201 +4735,4735 +4260,4260 +3300,20265 +74310,74310 +26210,26210 +9527,9527 +90258,90258 +35126,35126 +29302,29302 +34533,34533 +7325,7325 +31309,31309 +10732,10732 +7549,7549 +31580,31580 +135655,135655 +27372,27372 +287676,287676 +38691,38691 +21209,6830 +15236,37225 +12958,362372 +25279,25279 +21577,21577 +40433,40433 +297635,297635 +177807,177807 +31100,31100 +376346,376346 +13559,13559 +148440,148440 +16160,3818 +72022,72022 +9549,9549 +8391,8391 +18172,18172 +3701,3701 +11757,11757 +209857,209857 +141594,141594 +161261,161261 +76310,76310 +11408,11408 +6576,6576 +16417,16417 +235809,235809 +10638,10638 +106214,106214 +185774,185774 +27864,27864 +13576,13576 +3813,3813 +69472,69472 +274749,274749 +4018,4018 +35627,35627 +6888,6888 +27239,27239 +4353,4353 +164542,164542 +230631,230631 +20698,20698 +136307,136307 +134218,134218 +8622,8622 +9906,9906 +15224,15224 +6960,6960 +23218,23218 +64560,64560 +13827,13827 +129990,129990 +104283,104283 +215317,215317 +240253,240253 +122873,122873 +311705,311705 +31013,31013 +8528,8528 +207814,207814 +146846,146846 +14764,14764 +13037,13037 +22836,22836 +2789,2789 +31438,31438 +17658,17658 +37005,37005 +122915,122915 +19845,19845 +284211,284211 +13844,13844 +119086,119086 +22197,22197 +20917,20917 +32028,32028 +10510,10510 +12106,12106 +11696,11696 +127545,127545 +35337,35337 +379393,379393 +8010,8010 +136964,136964 +125196,125196 +120598,120598 +42645,42645 +295089,184525 +180129,180129 +91450,91450 +10702,10702 +281984,281984 +102541,102541 +155409,155409 +230559,230559 +153566,153566 +12888,12888 +14926,14926 +34149,34149 +140223,140223 +42334,42334 +279332,279332 +146776,146776 +178609,178609 +10049,10049 +33873,33873 +82993,82993 +129565,129565 +13905,13905 +28735,28735 +36267,21990 +373377,373377 +11610,11610 +235070,235070 +22366,22366 +198598,198598 +252088,252088 +9746,9746 +114043,114043 +110982,110982 +351830,351830 +24552,24552 +288652,288652 +233169,233169 +62816,62816 +118082,118082 +143322,143322 +132081,132081 +33900,33900 +31744,31744 +12575,12575 +381676,381676 +3431,3431 +19128,19128 +300754,300754 +18848,18848 +188596,188596 +241527,241527 +124210,124210 +32223,32223 +5131,5131 +20099,20099 +231143,231143 +22915,22915 +20922,20922 +22842,22842 +21679,21679 +122566,122566 +31602,31602 +19539,19539 +95935,95935 +20387,20387 +4446,4446 +54827,54827 +226740,226740 +327556,327556 +363969,363969 +11120,11120 +328229,328229 +22634,22634 +9954,9954 +337729,337729 +152486,152486 +33177,33177 +5402,5402 +64073,64073 +180240,180240 +26123,26123 +143458,143458 +15375,15375 +32452,32452 +13057,13057 +87733,87733 +303055,303055 +164330,164330 +17049,17049 +20325,20325 +22587,22587 +37467,37467 +102968,102968 +19981,19981 +11792,11792 +2382,2382 +147545,147545 +109250,109250 +3217,3217 +14876,14876 +331320,331320 +144320,144320 +40311,40311 +89395,89395 +150697,150697 +83163,83163 +27272,27272 +131402,131402 +117159,117159 +339223,339223 +13038,13038 +133879,133879 +29299,29299 +30860,463 +76359,76359 +15890,15890 +33615,33615 +132412,132412 +15680,15680 +34988,34988 +22063,22063 +17002,17002 +59167,59167 +40689,40689 +339282,339282 +8858,8858 +275977,275977 +17743,17743 +22056,22056 +153615,153615 +127613,127613 +35319,35319 +86759,86759 +183776,183776 +311966,311966 +212874,158268 +129562,129562 +141299,141299 +209493,209493 +424963,424963 +255974,255974 +27293,27293 +63204,63204 +94141,94141 +292102,292102 +178805,178805 +40985,40985 +211785,211785 +19053,19053 +36112,36112 +33056,33056 +59800,59800 +21621,21621 +10936,10936 +197447,197447 +58019,58019 +14033,14033 +112707,112707 +9026,9026 +13047,13047 +30309,30309 +35283,35283 +11813,11813 +30158,30158 +9748,9748 +29534,29534 +37254,37254 +34364,34364 +198202,198202 +241295,129033 +3380,3380 +102812,102812 +143496,143496 +3489,3489 +245511,245511 +128458,128458 +371410,371410 +166567,166567 +3060,3060 +3762,3762 +7091,7091 +85394,85394 +182238,244906 +219698,219698 +162571,162571 +7769,7769 +15016,15016 +12441,12441 +14211,14211 +19115,19115 +4561,348276 +192729,192729 +12130,12130 +359800,359800 +103735,103735 +25419,25419 +10769,10769 +423240,423240 +37971,37971 +66271,66271 +7321,7321 +278980,278980 +196831,196831 +5110,5110 +148947,148947 +9472,9472 +20252,20252 +242931,242931 +9767,9767 +9935,9935 +12431,12431 +9515,9515 +12683,12683 +11669,11669 +188129,188129 +23423,23423 +130018,130018 +2550,2550 +24424,156570 +34462,34462 +13367,13367 +166509,235863 +11900,11900 +1063,1063 +22790,22790 +135705,135705 +8811,8811 +1856,1856 +33001,33001 +6984,6984 +15284,15284 +33713,33713 +233308,233308 +16119,16119 +7631,7631 +66865,66865 +298483,298483 +20232,20232 +11557,11557 +70653,70653 +412159,412159 +160453,160453 +61148,61148 +4166,4166 +21951,21951 +33649,33649 +145279,145279 +33470,33470 +39247,39247 +85255,85255 +309070,309070 +11612,11612 +42222,42223 +289406,289406 +8035,8035 +6635,6635 +15129,15129 +49021,49021 +11575,11575 +63667,63667 +66263,66263 +5879,5879 +10002,10002 +21470,21470 +155914,155914 +19331,19331 +28356,28356 +107741,107741 +154826,154826 +179968,179968 +35727,35727 +28752,28752 +15747,15747 +16856,16856 +400875,400875 +287468,287468 +286579,286579 +297338,297338 +21686,21686 +14484,14484 +6962,6962 +24896,24896 +94138,94138 +164018,164018 +23806,23806 +25401,25401 +57909,57909 +5918,5918 +34033,34033 +23543,23543 +66160,66160 +250882,250882 +32126,32126 +64118,64118 +13136,13136 +15668,15668 +8810,8810 +21344,21344 +934,934 +268588,268588 +32286,32286 +252148,252148 +7147,7147 +28368,28368 +11980,11980 +22429,22429 +167898,167898 +25497,25497 +239772,239772 +276728,276728 +335462,335636 +64321,64321 +376285,376285 +7957,7957 +39250,39250 +7425,7425 +245607,245607 +3773,3773 +14614,14614 +219289,219289 +35845,35845 +23289,23289 +14121,14121 +51475,14774 +18488,18488 +9598,9598 +21753,21753 +13807,13807 +20607,20607 +35147,35147 +1845,1845 +26358,26358 +9781,9781 +330068,330068 +29818,29818 +4527,4527 +10120,10120 +40339,40339 +2488,2488 +320827,320827 +29112,29112 +88540,88540 +199868,199868 +33465,33465 +25933,25933 +16014,16014 +30967,30967 +89085,89085 +310066,310066 +14288,14288 +31856,31856 +21300,21300 +55898,55898 +13783,13783 +49816,49816 +36653,36653 +38486,38486 +31754,31754 +22322,22322 +24852,24852 +32069,32069 +21064,21064 +169504,169504 +64415,64415 +28410,28410 +62134,62134 +285621,2970 +11114,11114 +31194,31194 +13848,13848 +142071,142071 +11671,11671 +31116,31116 +9588,9588 +37990,37990 +10603,10603 +29770,29770 +156217,156217 +5037,5037 +24535,24535 +13209,13209 +227868,227868 +119553,119553 +317085,317085 +27714,27714 +55958,55958 +39874,39874 +218668,218668 +11281,11281 +10045,10045 +17234,17234 +18390,18390 +242981,242981 +136495,136495 +10869,10869 +12057,355987 +26981,26981 +20051,20051 +58695,58695 +230633,230633 +161102,161102 +128477,128477 +28928,28928 +11883,11883 +146496,181906 +9742,9742 +6723,6723 +28395,28395 +204600,204600 +134918,134918 +34443,34443 +16800,16800 +163685,163685 +1368,1368 +377943,377943 +21586,21586 +10035,10035 +131477,131477 +11994,11994 +168278,168278 +17499,17499 +85992,85992 +24443,24443 +217275,217275 +8795,8795 +283248,283248 +2845,2845 +90409,90409 +9951,9951 +41095,41095 +9357,9357 +2589,2589 +41917,41917 +43139,43139 +66256,66256 +235813,235813 +18504,18504 +136243,136243 +1398,1398 +8624,8624 +198855,198778 +135597,135597 +228505,228505 +23907,40650 +2792,2792 +208772,208772 +76546,76546 +238825,238825 +12640,12640 +7156,7156 +378354,378354 +26605,5195 +142194,142194 +38981,38981 +67987,67987 +33025,33025 +8583,8583 +389734,389734 +29500,29500 +101519,101519 +166259,166259 +19702,19702 +406857,406857 +11891,11891 +33789,33789 +65197,65197 +3501,3501 +159817,159817 +37349,37349 +19425,19425 +146226,146226 +143217,143217 +235943,235943 +275860,275860 +3089,3089 +8588,8588 +3941,3941 +35318,35318 +105308,105308 +5996,5996 +354925,3818 +3647,3647 +173572,173572 +5070,5070 +205768,205768 +298629,298629 +20367,20367 +27842,27842 +108156,108156 +88167,88167 +1435,1435 +21096,21096 +27572,27572 +14280,14280 +355438,355438 +32142,32142 +189488,189488 +72535,72535 +153925,398696 +43103,170931 +10158,10158 +3744,3744 +200792,200792 +16227,16227 +6796,6796 +94333,94333 +13063,13063 +153168,153168 +324681,324681 +9949,9949 +148001,148001 +11609,11609 +4191,14862 +38636,38636 +14515,14515 +8047,8047 +223793,223793 +9923,9923 +288688,288688 +15647,15647 +129567,129567 +140198,140198 +26146,26146 +36407,36407 +234013,234013 +17772,17772 +7542,7542 +295009,295009 +153379,153379 +29796,29796 +133649,133649 +72718,72718 +198549,6830 +264259,264259 +31755,31755 +129638,129638 +353860,353860 +102322,102322 +36898,36898 +14251,463 +21148,21148 +65440,65440 +24891,24891 +21852,21852 +176098,176098 +214902,214902 +15374,15374 +31763,31763 +39696,39696 +12913,12913 +353132,353132 +23554,23554 +11251,11251 +20628,20628 +28357,28357 +40106,40106 +15717,11441 +25243,25243 +22223,22223 +358287,358287 +28339,28339 +6675,6675 +15247,15247 +20184,20184 +28381,28381 +21665,21665 +55711,55711 +30135,30135 +41708,41708 +347421,347421 +29539,29539 +172069,172069 +7997,7997 +14806,14806 +193378,193378 +28069,28069 +21589,21589 +6821,6821 +37389,37389 +171907,171907 +16546,16546 +93611,93611 +87376,87376 +144976,144976 +63499,63499 +29370,29370 +156615,156615 +31589,31589 +11386,11386 +214160,214160 +26379,26379 +15780,15780 +133789,133789 +35603,35603 +3823,3823 +14217,14217 +15065,2577 +341572,341572 +30501,30501 +22447,22447 +26936,26936 +28405,28405 +16060,16060 +349940,349940 +11226,11226 +63762,63762 +375982,375982 +26464,26464 +187246,187246 +158131,158131 +19069,19069 +160498,160498 +19015,19015 +34412,34412 +295012,289801 +41352,41352 +5095,5095 +23221,23221 +14526,14526 +31476,31476 +36834,36834 +13538,13538 +37913,37913 +73625,73625 +49510,49510 +89391,89391 +4083,4083 +32930,32930 +21157,21157 +15841,15841 +85618,85618 +296186,289801 +36662,36662 +38475,38475 +106568,106568 +15797,15797 +13340,13340 +31530,31530 +7004,7004 +35733,35733 +22703,22703 +33639,33639 +4618,4618 +90135,90135 +32211,32211 +295011,289801 +12787,12787 +72177,72177 +28073,28073 +5654,5654 +22091,22091 +65567,65567 +33394,33394 +8934,8934 +33840,33840 +6994,6994 +35626,35626 +91321,91321 +212451,212451 +185525,185525 +51505,51505 +6499,6499 +198212,198212 +46773,46773 +6671,6671 +181396,181396 +5103,5103 +40656,40656 +292650,4628 +61450,61450 +95810,95810 +184723,184723 +103640,103640 +202926,202926 +140153,22392 +5764,5764 +1747,1747 +25620,25620 +162653,162653 +9898,9898 +14116,14116 +8674,8674 +109732,109732 +59039,155581 +2790,2790 +25852,25852 +15273,15273 +98924,98924 +235578,235578 +3631,3631 +32839,32839 +206681,206681 +19532,19532 +147567,147567 +33836,33836 +13938,13938 +165559,411085 +15793,15793 +184899,184899 +131389,131389 +128234,128234 +345641,345641 +185497,185497 +19876,19876 +192971,287078 +167465,167465 +5175,5175 +14334,14334 +235296,144733 +27275,27275 +19986,19986 +41556,41556 +20949,20949 +10629,9610 +6965,6965 +5530,5530 +153810,153810 +38901,38901 +762,762 +721,721 +15708,15708 +230768,230768 +32464,32464 +87871,87871 +16297,16297 +374749,374749 +417487,417487 +3420,3420 +9578,9578 +336498,336498 +27214,27214 +11022,11022 +202248,64220 +5049,5049 +12713,12713 +3261,3261 +191902,191902 +7036,7036 +160650,160650 +24201,24201 +354323,354323 +8185,8185 +245380,245380 +2489,2489 +9895,9895 +1664,1664 +4519,40249 +7348,7348 +210098,210098 +9415,9415 +24444,24444 +19317,19317 +14380,14380 +10429,10429 +11749,11749 +245941,245941 +22956,22956 +32289,32289 +19759,19759 +11677,11677 +9582,9582 +6727,153627 +9922,9922 +5240,5240 +274074,274074 +64200,64200 +9604,9604 +2152,2152 +24103,24103 +8991,8991 +29621,29621 +830,830 +146274,146274 +1538,47694 +70074,70074 +135510,135510 +19327,19327 +37981,37981 +7845,7845 +7740,7740 +321030,321030 +9693,9693 +6590,6590 +9451,9451 +392479,392479 +161751,161751 +21946,21946 +225821,225821 +30903,30903 +4512,4512 +7245,326432 +11741,11741 +29731,29731 +38354,38354 +65717,65717 +100953,100953 +36896,36896 +16048,16048 +64061,64061 +133308,133308 +22633,22633 +7326,7326 +12893,12893 +9337,9337 +13408,13408 +28344,28344 +86031,86031 +339955,339955 +7814,7814 +129525,129525 +29267,29267 +36768,36768 +36954,36954 +21719,21719 +22492,22492 +9696,9696 +29520,29520 +37599,37599 +12645,12645 +177996,177996 +1971,1971 +154639,154639 +20331,20331 +36127,36127 +169248,169248 +5093,5093 +39074,39074 +262442,1111 +236183,236183 +146270,146270 +9632,9632 +40222,40222 +9948,9948 +18721,18721 +197862,197862 +27351,27351 +31739,31739 +5128,5128 +252993,252993 +381878,381878 +26015,26015 +27828,27828 +174332,174332 +9765,9765 +19574,19574 +310879,310879 +31869,31869 +208568,208568 +34789,34789 +326048,326048 +10109,10109 +36769,36769 +243227,243227 +11117,11117 +42767,42767 +26432,26432 +367945,383528 +15120,15120 +391676,391676 +59802,59802 +147057,147057 +301700,301700 +7146,7146 +230812,230812 +345803,345803 +170556,170556 +40337,40337 +124862,124862 +13518,13518 +19049,19049 +9088,9088 +368358,368358 +7463,7463 +9433,9433 +17212,17212 +129851,129851 +10104,10104 +22796,22796 +68883,68883 +27729,27729 +237712,237712 +9227,9227 +9682,9682 +8623,321145 +19820,19820 +9000,9000 +80622,80622 +98332,98332 +33023,74098 +320456,343155 +94002,94002 +9388,9388 +25484,25484 +348664,348664 +27605,27605 +7837,7837 +159452,159452 +146473,146473 +180398,180398 +383483,383483 +185736,185736 +181246,181246 +6183,6183 +11800,11800 +133633,133633 +1122,35354 +27582,27582 +13627,13627 +188227,188227 +5667,5667 +267884,267884 +8455,8455 +29774,29774 +12206,12206 +20018,20018 +344404,344404 +97991,97991 +232445,232445 +121776,121776 +275391,275391 +15127,15127 +32597,32597 +162092,162092 +55820,55820 +235822,235822 +146151,146151 +190859,190859 +188977,188977 +130624,130624 +24956,24956 +25752,25752 +29706,29706 +409329,409329 +14034,14034 +5208,5208 +6426,6426 +130227,130227 +104756,104756 +12865,12865 +3168,3168 +15886,15886 +12225,12225 +119855,144593 +253747,253747 +118315,118315 +8641,8641 +13210,13210 +113242,113242 +261509,261509 +5219,5219 +32232,32232 +7452,7452 +8677,8677 +135581,135581 +63672,63672 +14180,14180 +9538,9538 +147647,271460 +63656,63656 +21689,21689 +253808,253808 +162686,162686 +60576,60576 +85295,85295 +12855,12855 +874,874 +104815,104815 +173647,173647 +17956,17956 +5563,5563 +279719,209383 +115831,115831 +23394,23394 +93551,93551 +11420,11420 +192374,192374 +25015,25015 +221846,69785 +10466,10466 +33046,33046 +247483,330953 +20393,20393 +6136,6136 +329885,329885 +18118,18118 +27420,27420 +40077,40077 +28355,28355 +7312,7312 +141077,141077 +234344,234344 +20416,20416 +153424,153424 +10012,10012 +64043,64043 +245378,350129 +17964,17964 +144204,144204 +22907,22907 +8928,8928 +96787,96787 +172751,172751 +16614,16614 +5908,5908 +16257,16257 +4737,4737 +32130,32130 +352410,352410 +22934,22934 +20185,20185 +128199,128199 +1813,1813 +16036,16036 +43162,463 +133661,258708 +226960,226960 +205872,205872 +17045,17045 +21871,21871 +37639,37639 +24929,24929 +337444,337444 +3511,3511 +4193,4193 +5032,5032 +21834,21834 +10941,10941 +80828,80828 +37453,37453 +61798,61798 +288920,350468 +22741,22741 +31812,31812 +16751,16751 +9672,9672 +101662,101662 +18653,18653 +18740,18740 +30866,30866 +18182,18182 +23237,23237 +37809,37809 +171091,171091 +138567,138567 +301270,301270 +293182,293182 +20049,20049 +28595,28595 +57745,57745 +22505,22505 +20102,20102 +17737,17737 +15263,15263 +5766,5766 +34160,34160 +246857,246857 +28475,430145 +119630,119630 +25747,25747 +192008,192008 +5207,5207 +21983,21983 +14843,14843 +19922,19922 +153531,164364 +21602,21602 +16926,16926 +30477,30477 +285042,177292 +31731,31731 +39857,39857 +191882,190772 +20519,20519 +223008,223008 +245466,245466 +32743,32743 +172148,172148 +20897,20897 +277991,277991 +85616,85616 +22499,22499 +54055,54055 +122137,122137 +289235,289235 +41538,41538 +21959,21959 +13040,13040 +93434,93434 +21714,21714 +23328,23328 +15867,15867 +284216,284216 +246795,246795 +17933,17933 +170873,170873 +33777,33777 +14532,14532 +70516,70516 +16479,16479 +5850,5850 +367512,367512 +12829,12829 +304648,304648 +15038,15038 +276949,276949 +15791,34444 +31293,31293 +194075,194075 +190737,166436 +6534,6534 +319111,319111 +675,675 +183532,183532 +9016,9016 +5282,5282 +284772,284772 +8224,8224 +9717,9717 +28104,28104 +9566,9566 +171547,171547 +2186,2186 +11171,11171 +7477,7477 +154840,154840 +32148,32148 +263802,263802 +140829,140829 +10163,10163 +32516,32516 +25513,25513 +317305,255546 +228760,228760 +186525,186525 +11052,3370 +283000,202852 +11410,11410 +313817,313817 +3525,337542 +34591,34591 +20412,20412 +130649,130649 +306443,306443 +4759,22447 +38642,38642 +138970,138970 +9956,9956 +10036,10036 +28969,28969 +247473,247473 +18000,18000 +33599,23890 +4508,4508 +2071,2071 +42569,42569 +9808,9808 +21807,21807 +154602,154602 +343130,343130 +38653,38653 +351619,351619 +4129,4129 +178878,268665 +131546,131546 +8591,8591 +3303,3303 +3630,3630 +18702,18702 +17507,273919 +749,749 +7962,7962 +13568,13568 +32436,32436 +161870,161870 +15679,15679 +201782,201782 +10504,10504 +224381,224381 +15031,15031 +32871,32871 +23064,23064 +23446,23446 +32013,32013 +8586,8586 +12098,12098 +27921,27921 +39370,39370 +8427,8427 +13524,13524 +15659,15659 +87807,87807 +22396,344766 +10207,10207 +14682,14682 +28057,28057 +14308,14308 +13833,13833 +6461,6461 +85326,85326 +24591,24591 +355739,355739 +242468,373786 +10235,10235 +271033,271033 +2039,2039 +5719,5719 +181754,181754 +25200,25200 +35391,35391 +319079,319079 +307159,206175 +219637,219637 +11383,11383 +24931,24931 +37641,37641 +27683,214 +21147,21147 +32541,32541 +14719,14719 +22503,22503 +13390,13390 +17917,17917 +9291,9291 +34391,34391 +352456,352456 +172713,172713 +13658,13658 +287131,287131 +33379,33379 +8177,8177 +9679,9679 +13214,13214 +24222,24222 +34363,34363 +118057,118057 +57346,57346 +12509,12509 +203,203 +16664,98292 +57811,57811 +21848,21848 +17758,17758 +276635,276635 +13469,13469 +123486,123486 +3079,14319 +122830,122830 +6488,6488 +330210,463 +40814,40814 +324317,324317 +10706,10706 +63731,63731 +22574,146934 +19002,19002 +18094,18094 +5760,5760 +114721,114721 +248205,116823 +298849,298849 +261289,261289 +156865,156865 +25940,25940 +28982,28982 +212801,212801 +36747,36747 +36014,36014 +50692,50692 +93991,93991 +28701,28701 +39734,39734 +23493,23493 +18634,18634 +153552,153552 +8853,8853 +10147,10147 +351534,351534 +33029,33029 +16946,16946 +49525,49525 +25256,25256 +10333,10333 +168431,168354 +99033,99033 +14348,14348 +34791,34791 +13509,13509 +99027,99027 +65077,65077 +8856,8856 +37485,37485 +61954,61954 +96400,96400 +27839,27839 +139050,139050 +38740,38740 +90366,90366 +17712,17712 +139623,139623 +288657,288657 +7911,7911 +123776,123776 +734,734 +172494,172494 +4885,4885 +2106,3661 +12491,12491 +23169,23169 +12826,268279 +195073,261707 +185195,185195 +259971,259971 +251328,251328 +116596,116596 +32992,32992 +14342,33676 +165578,165578 +34927,34927 +232312,232312 +25895,25895 +82216,82216 +214224,463 +11621,178683 +30652,30652 +113312,113312 +5471,5471 +37627,37627 +857,857 +51046,51046 +9783,9783 +11047,11047 +15451,15451 +6434,6434 +17114,52514 +130508,130508 +8477,8477 +64214,64214 +221132,221132 +193530,193530 +2626,2626 +11016,11016 +7237,7237 +95800,95800 +1723,1723 +13106,13106 +311457,311457 +26986,26986 +4981,4981 +21150,21150 +168856,168856 +226862,226862 +157352,157352 +190685,190685 +2333,2333 +12745,12745 +38504,38504 +120108,120108 +23228,23228 +26017,26017 +235759,235759 +284127,284127 +134683,151532 +341767,341767 +34278,34278 +131281,131281 +12290,12290 +21019,21019 +30737,30737 +26817,26817 +39099,39099 +183314,183314 +273023,273023 +25865,25865 +997,886 +14091,25085 +32540,32540 +10292,10292 +199175,199175 +2406,247160 +9435,9435 +12337,12337 +373016,373016 +122824,122824 +367397,367397 +14129,14129 +41300,41300 +102037,102037 +29694,29694 +109651,109651 +10199,10199 +177132,177132 +31379,31379 +4809,4809 +179394,179394 +174345,174345 +35878,35878 +32571,32571 +146624,204583 +113516,113516 +13579,13579 +16899,16899 +19939,19939 +127277,127277 +14793,14793 +198390,198390 +21925,21925 +346632,346632 +46147,112844 +28611,28611 +357180,357180 +16029,16029 +154881,458 +13259,13259 +3722,3722 +4882,24435 +8087,8087 +27029,27029 +16027,304820 +208769,208769 +33290,33290 +28798,28798 +14541,14541 +25235,25235 +264716,433816 +34973,34973 +14962,14962 +175097,175097 +28867,28867 +31171,31171 +346758,346758 +25307,25307 +4156,4156 +22638,22638 +194566,194566 +3811,3811 +16319,16319 +11359,11359 +423169,423169 +9930,9930 +19138,19138 +145111,145111 +30288,40131 +175028,175029 +14693,14693 +22926,22926 +42433,42433 +33513,33513 +10597,10597 +333907,333907 +18643,18643 +3098,3098 +245635,245635 +17424,17424 +265810,390609 +152736,152736 +141593,141593 +269232,269232 +178488,178488 +13139,13139 +9718,9718 +148227,148227 +98917,98917 +328143,328143 +6425,6425 +183823,183823 +30176,30176 +175194,175194 +15838,15838 +3859,3859 +18958,18958 +38880,38880 +3745,270873 +9535,9535 +42893,42893 +13364,13364 +47377,47377 +132077,132077 +87748,87748 +158613,158613 +30138,30138 +106596,106596 +357421,357421 +10951,10951 +315414,315414 +151501,151501 +16750,16750 +262757,262757 +339976,339976 +313457,313457 +201595,201595 +180939,180939 +22098,22098 +24977,24977 +11450,11450 +31725,31725 +295952,295952 +23771,23771 +70331,70331 +267021,267021 +5616,5616 +19755,19755 +302278,302278 +192904,192904 +41640,41640 +6647,6647 +4405,4405 +325841,325841 +293517,293517 +239074,239074 +41995,41995 +212310,250718 +36867,36867 +272132,272132 +38982,38982 +32222,32222 +32860,32860 +12572,12572 +30077,30077 +105152,105152 +15446,15446 +170675,170675 +34590,34590 +11313,11313 +13321,13321 +165470,165470 +5088,5088 +35278,35278 +137244,137244 +358021,358021 +6681,6681 +148973,148973 +3203,3203 +6620,6620 +40236,40236 +243093,261157 +17580,187405 +91664,91664 +3342,3342 +16153,16153 +22992,22992 +6846,6846 +11138,11138 +22802,22802 +12378,12378 +43819,43819 +18254,18254 +131279,131279 +329145,329145 +267119,267119 +11076,11076 +6565,6565 +7077,7077 +10344,10344 +76551,76551 +6469,6469 +1058,1058 +10532,18527 +4798,4798 +13817,13817 +8925,8925 +240842,240842 +145210,145210 +23350,23350 +260988,260988 +38401,38401 +12029,12029 +369802,369802 +268839,268839 +4170,4170 +11325,11325 +10963,10963 +87426,87426 +9807,9807 +129206,129206 +113470,113470 +281266,14010 +4847,4847 +17500,17500 +9700,9700 +343072,343072 +175497,175497 +16434,16434 +19107,19107 +12617,12617 +15660,15660 +299345,299345 +21452,21452 +17200,17200 +126258,126258 +16130,93965 +6557,6557 +111169,111169 +12948,12948 +52618,38635 +28832,28832 +152908,152908 +21693,21693 +268393,268393 +30340,30340 +16520,16520 +15370,15370 +12344,12344 +369131,369131 +10888,10888 +142225,142225 +41322,41322 +96105,96105 +193123,193123 +251619,251619 +255632,255632 +27421,27421 +214895,214895 +135484,135484 +24850,24850 +193544,193544 +34610,34610 +154091,154091 +54173,54173 +10288,10288 +34164,34164 +69735,69735 +36298,36298 +98130,98130 +109072,109072 +23802,23802 +39174,39174 +27431,27431 +33641,33641 +21203,21203 +163468,163468 +12442,12442 +42087,42087 +187952,187952 +153934,153934 +16348,16348 +282432,282432 +26980,26980 +167403,167403 +149009,149009 +12827,12827 +15756,15756 +20988,20988 +159206,159206 +131841,131841 +28633,28633 +406128,406128 +22397,22397 +12204,12204 +13262,13262 +7827,7827 +3193,3193 +9559,9559 +7552,7552 +10834,10834 +200292,200292 +5430,5430 +158025,158025 +89362,89362 +333247,333247 +346868,346868 +15909,15909 +11155,11155 +130470,130470 +84173,84173 +15142,15142 +87013,87013 +14688,14688 +58699,58699 +4023,2025 +189953,189953 +15179,15179 +30029,30029 +6538,6538 +254494,270229 +2391,2391 +4502,4502 +7318,7318 +3314,3314 +160502,160502 +426509,426509 +25173,25173 +35676,35676 +10516,10516 +8560,8560 +34277,34277 +5083,5083 +8733,8733 +130795,130795 +5550,5550 +2404,2404 +28834,28834 +263186,201046 +10762,10762 +23165,23165 +137669,40 +1937,1937 +25260,25260 +60337,60337 +27374,10484 +274712,274712 +30880,30880 +174968,174968 +22582,22582 +9686,9686 +3167,3167 +21540,21540 +17315,17315 +13383,13383 +140218,140218 +159044,159044 +70264,70264 +153188,153188 +41862,41862 +217316,217316 +243413,243413 +33947,33947 +10114,10114 +12223,12223 +19929,19929 +268319,268319 +274165,274165 +11859,11859 +30205,30205 +38787,38787 +70267,70267 +21937,21937 +11658,11658 +21873,21873 +4105,4105 +21917,21917 +219942,219942 +235812,235812 +97260,97260 +99393,99393 +12236,12236 +170558,170558 +7909,7909 +29229,29229 +119872,119872 +40581,40581 +9381,9381 +370270,370270 +3106,3106 +62354,62354 +90468,90468 +8992,8992 +37596,37596 +234117,193831 +64412,64412 +256375,256375 +5273,5273 +37478,37478 +66586,247944 +104783,104783 +4334,16936 +16930,16930 +9236,9236 +5536,5536 +3479,3479 +245107,463 +21450,21450 +4310,4310 +368653,368653 +168534,168534 +34298,34298 +288573,288573 +146171,146171 +55819,55819 +7702,7702 +9275,9275 +34931,34931 +18814,18814 +138222,138222 +12079,12079 +42149,42149 +209378,209378 +347419,347419 +12908,12908 +23122,23122 +127549,127549 +10449,10449 +23354,23354 +9452,9452 +9099,9099 +56152,56152 +55703,55703 +31087,31087 +127491,127491 +62110,62110 +62347,62347 +18112,18112 +28402,28402 +32029,32029 +239073,239073 +169250,169250 +39032,39032 +27292,27292 +232099,372250 +24197,24197 +113468,113468 +27992,27992 +270846,270846 +7150,7150 +73757,73757 +4308,4308 +28483,28483 +144861,144861 +2649,2649 +363134,363134 +152013,152013 +32566,32566 +312944,312944 +97760,97760 +126379,126379 +343849,343849 +30813,30813 +309921,309921 +4335,4335 +268005,268005 +143197,143197 +9269,9269 +118773,118773 +10688,10688 +13034,13034 +19423,19423 +181616,181616 +17163,17163 +28861,28861 +2517,2517 +317061,317061 +19694,19694 +6975,6975 +1893,1893 +12420,12420 +40559,40559 +244101,244101 +24484,24484 +4639,4639 +110525,938 +135865,135865 +149425,149425 +21073,21073 +376754,376754 +13682,463 +142081,142081 +19360,19360 +124758,124758 +158994,158994 +20148,20148 +410171,410171 +67885,67885 +25126,25126 +70268,70267 +32107,32107 +344265,344265 +229084,229084 +32685,32685 +182295,182295 +5889,5889 +235816,235816 +4540,4540 +310883,463 +2002,2002 +242024,242024 +128489,128489 +266287,266287 +14423,14423 +9547,9547 +4280,4280 +2871,2871 +14347,14347 +161289,161289 +296115,296115 +125285,125285 +5421,5421 +2311,1380 +2650,2650 +327897,327897 +126999,34381 +19087,19087 +6950,6950 +14611,14611 +9230,9230 +11165,11165 +34168,34168 +6793,6793 +344814,344814 +9897,9897 +16335,16335 +163656,163656 +261307,261157 +122118,122118 +14267,14267 +19914,19914 +7396,7396 +292788,292788 +17504,17504 +17692,17692 +199798,199798 +7760,7760 +237453,237453 +12452,12452 +5114,5114 +2009,2009 +19522,377439 +9983,9983 +11539,11539 +28363,28363 +11711,11711 +17850,17850 +266193,266193 +102649,102649 +34069,34069 +38267,38267 +17058,17058 +24407,24407 +27228,27228 +360092,360092 +11627,11627 +253933,253933 +16977,16977 +25088,25088 +9875,9875 +33067,33067 +219407,219407 +20010,20010 +424239,424239 +148556,148556 +150065,150065 +40268,40268 +54641,54641 +229684,229684 +153704,153704 +235808,235808 +265982,265982 +16993,16993 +278278,278278 +20767,20767 +7757,7757 +26563,26563 +20760,20760 +31519,31519 +16263,16263 +237439,237439 +30404,30404 +38933,38933 +11271,11271 +32867,32867 +35237,35237 +28347,28347 +219404,219404 +191174,191174 +5091,5091 +19449,19449 +14878,14878 +356838,356838 +15666,15666 +7362,7362 +15695,15695 +20007,20007 +348123,348123 +42029,42029 +26724,26724 +22850,22850 +406296,406296 +59703,59703 +35873,9149 +27211,27211 +24691,24691 +72008,72008 +21616,21616 +28397,28397 +25316,25316 +20234,20234 +41963,41963 +263808,263808 +248206,116823 +46006,46006 +27355,27355 +145660,145660 +71899,71899 +6715,6715 +15806,15806 +14659,14659 +4279,4279 +24248,24248 +343999,343999 +195195,195195 +3371,3371 +76133,76133 +70498,70498 +9278,227003 +10608,62311 +3196,3196 +17205,17205 +230995,230995 +8247,8247 +740,740 +99882,99882 +6588,6588 +67976,67976 +337833,337833 +3291,3291 +118496,118496 +20577,20577 +170973,183186 +23085,23085 +257598,257598 +57773,57773 +22568,146934 +9589,9589 +210181,210181 +266092,266092 +134326,134326 +9826,9826 +266079,266079 +9541,9541 +88546,88546 +6873,230675 +914,914 +11563,11563 +3336,3336 +9251,140 +139401,139401 +345629,345629 +8998,1111 +4543,4543 +273933,273933 +16612,16612 +15463,15463 +4081,4081 +27447,27447 +135835,135835 +3583,463 +37862,37862 +16442,16442 +223094,223094 +11641,11641 +277789,277789 +17480,17480 +196624,196624 +118129,118129 +24379,24379 +72376,72376 +42191,42191 +22360,22360 +40585,40585 +75095,75095 +34947,34947 +86897,86897 +216009,216009 +128112,128112 +8726,8726 +20431,20431 +4810,100753 +246,246 +17931,17931 +205772,205772 +9986,9986 +7926,7926 +15287,15287 +10647,10647 +20118,20118 +14647,14647 +13489,13489 +176264,176264 +1517,1517 +38883,38883 +28499,117968 +108878,108878 +217989,217989 +21005,21005 +95073,304820 +14325,14325 +380655,263733 +111590,111590 +9749,9749 +102197,4861 +64403,64403 +22368,22368 +31845,31845 +13348,13348 +267018,267018 +144066,144066 +3521,3521 +21340,21340 +12602,12602 +11654,11654 +190292,268005 +152018,152018 +3250,3250 +27232,27232 +16703,16703 +159154,159154 +15661,15661 +3399,3399 +28532,28532 +14941,14941 +4923,4923 +107029,107029 +2013,2013 +164235,164235 +152124,152124 +35099,35099 +38319,38319 +132679,132679 +418253,418253 +7465,7465 +153218,153218 +129005,129005 +30173,30173 +28112,28112 +21588,21588 +23638,31856 +33574,33574 +130937,130937 +295440,295440 +128191,128191 +40333,40333 +197538,197585 +2492,17042 +100419,100419 +26549,26549 +16075,16075 +10220,10220 +19273,19273 +25336,25336 +67643,67643 +133299,133299 +15653,15653 +5871,5871 +122136,122136 +10549,10549 +25129,25129 +38460,38460 +19617,19617 +134197,134197 +27920,27920 +6786,6786 +25348,25348 +16337,16337 +154889,154889 +306142,338725 +64064,64064 +12976,12976 +9174,9174 +181251,181251 +10482,10482 +5521,5521 +3933,3933 +155436,155436 +218719,218719 +31157,31157 +103191,103191 +102282,102282 +257851,257851 +2193,463 +36326,36326 +6349,6349 +241193,241193 +42701,42701 +240135,240135 +145853,145853 +81263,81263 +94091,94091 +181492,181492 +7356,7356 +1812,1812 +107435,107435 +18151,18151 +5370,5370 +36724,36724 +5886,5886 +2664,3383 +160273,160273 +126463,126463 +31294,31294 +39986,39986 +15019,15019 +3884,3884 +152641,152641 +140480,140480 +8429,8429 +13045,13045 +169502,169502 +12688,12688 +4598,4598 +31055,31055 +198147,198147 +32460,32460 +4175,146418 +381817,381817 +39978,39978 +20366,20366 +12078,12078 +245088,245088 +11794,11794 +65109,65109 +7885,7878 +35658,35658 +1349,1349 +6871,6871 +14149,14149 +280627,280627 +169558,204429 +18142,18142 +112578,112578 +86349,86349 +35775,35775 +33565,33565 +255545,255546 +38654,38654 +858,216695 +5431,5431 +19162,19162 +148785,148785 +150198,150198 +218839,218839 +260256,260256 +121775,121775 +7747,7747 +148813,148813 +21931,21931 +9290,9290 +287341,287341 +180487,180487 +40809,40809 +9531,9531 +10614,10614 +1930,261955 +37773,37773 +13175,13175 +15406,15406 +168484,168484 +5409,5409 +110104,110104 +15658,15658 +14964,14964 +127608,127608 +29072,29072 +33702,33702 +15525,15525 +8062,8062 +42707,42707 +295907,295907 +7281,7281 +290320,290320 +28529,28529 +34400,34400 +27716,27716 +35101,35101 +52092,52092 +30959,30959 +21651,21651 +22820,22820 +26070,26070 +188490,188490 +35393,35393 +20186,20186 +337178,337178 +6224,6224 +19311,19311 +17865,17865 +85907,85907 +369241,2165 +105050,105050 +19137,19137 +204979,204979 +29730,29730 +138723,138723 +22707,22707 +220442,220442 +230813,230813 +15395,15395 +28138,28138 +75664,75664 +38555,38555 +16583,16583 +260372,260372 +209227,209227 +3453,3453 +30524,30524 +248204,116823 +37255,37255 +6254,6254 +32476,32476 +33614,33614 +41190,179794 +299154,299154 +8933,8933 +5921,5921 +50049,50049 +6953,6953 +7339,7339 +230919,230919 +283544,283544 +29019,29019 +246398,256804 +14673,14673 +16633,16633 +19530,19530 +1200,1200 +9639,9639 +89976,89976 +180746,180746 +10327,10327 +167152,167152 +298703,298703 +64706,64706 +89404,89404 +7210,7210 +286031,286031 +32945,32945 +4560,4560 +154540,154540 +4435,4435 +22057,22057 +58895,58895 +3467,3467 +58678,58678 +240511,240511 +1134,1134 +166239,166239 +9644,9644 +199623,199623 +22418,22418 +9137,9137 +8861,8861 +26578,26578 +231827,231827 +335919,335919 +38991,38991 +169463,169463 +9208,9208 +20157,20157 +8847,8847 +182516,182516 +308263,308263 +245204,245204 +17347,17347 +42542,42542 +26370,297945 +25264,25264 +186074,186074 +1172,1172 +24324,24324 +12904,12904 +24907,24907 +8914,8914 +101332,101332 +18054,18054 +21086,21086 +19842,19842 +674,674 +161130,161130 +4669,4669 +12905,12905 +1839,1839 +35102,35102 +166985,166985 +112750,112750 +151351,151351 +8171,8171 +28647,28647 +9434,9434 +127304,127304 +311462,311462 +206235,206235 +69835,69835 +5693,5693 +34316,34316 +99293,99293 +25061,25061 +38514,38514 +12328,12328 +12347,12347 +17366,17366 +19051,19051 +31579,31579 +19728,19728 +393877,393877 +23565,23565 +28362,28362 +14653,14653 +22498,22498 +172163,222589 +108077,108077 +114005,114005 +67352,67352 +34932,34932 +358052,358052 +14700,14700 +30921,30921 +13460,13460 +19606,19606 +25444,25444 +2292,2292 +239744,239744 +24256,24256 +331015,331015 +21145,21145 +5318,5318 +112538,112538 +18471,18471 +2148,2148 +22107,22107 +14374,14374 +7855,7855 +36866,36866 +9508,9508 +353544,353544 +219510,219510 +152867,152867 +145963,145963 +18735,18735 +32431,32431 +24522,24522 +16654,16654 +25006,463 +6515,6515 +35414,35414 +224122,224122 +226956,226956 +4282,4282 +8088,8088 +39386,39386 +11509,11509 +173700,173700 +2370,2370 +97888,97888 +13982,463 +27641,27641 +255689,255689 +206410,206410 +135077,135077 +2430,2430 +297481,297481 +29366,29366 +19062,19062 +271821,271821 +135329,135329 +28371,28371 +356303,356303 +12912,12912 +235247,235247 +327900,11821 +967,967 +144374,144374 +15617,15617 +214246,214246 +8891,8891 +179672,179672 +40966,40966 +286711,286711 +6956,6956 +254313,254313 +16343,16343 +33061,33061 +20916,20916 +29469,29469 +8400,8400 +11573,1111 +173403,173403 +9998,9998 +42062,42062 +9308,9308 +35710,35710 +27106,27106 +14761,14761 +209138,209138 +31054,31054 +37038,37038 +28030,28030 +54895,54895 +102474,102474 +23268,23268 +22339,22339 +129234,129234 +15736,15760 +21541,21541 +24384,24384 +10365,10365 +7454,7454 +9779,9779 +50253,50253 +18498,18498 +326116,326116 +247926,247926 +9605,9605 +63135,63135 +12485,12485 +40225,40225 +9302,9302 +179932,179932 +33769,33769 +17219,17219 +6051,6051 +23866,23866 +19214,19214 +59052,59052 +69821,69821 +213358,213358 +16779,16779 +1999,1999 +15592,15592 +13144,13144 +12515,12515 +357943,357943 +222977,222977 +6968,6968 +339312,339312 +9403,9403 +34317,463 +32155,32155 +14640,14640 +392109,427703 +138201,138201 +20424,20424 +25953,25953 +16840,16840 +33224,33224 +17131,17131 +34877,34877 +28000,28000 +115958,115958 +32875,32875 +186063,186063 +221088,221088 +3298,3298 +394783,394783 +22987,22987 +27440,27440 +106920,106920 +3842,3842 +344040,344040 +989,989 +315765,315765 +110434,110434 +9926,9926 +38227,38227 +159437,159437 +94958,94958 +212822,212822 +1303,1303 +5084,5084 +15039,15039 +124958,124958 +139755,139755 +9706,9706 +169782,169782 +21787,21787 +32082,32082 +187719,187719 +102965,102965 +34575,34575 +12349,12349 +136286,136286 +164304,164304 +102213,102213 +1201,1201 +3741,3741 +36230,36230 +5621,5621 +4952,159198 +183193,183193 +17719,17719 +171367,171367 +318984,318984 +262157,262157 +14184,14184 +83470,83470 +221150,221150 +35189,35189 +58396,58396 +171447,328859 +28479,28479 +183631,183631 +67486,67486 +43042,43042 +16129,16129 +163338,163338 +219574,219574 +4409,4409 +18804,18804 +24305,24305 +105112,105112 +37923,37923 +219007,219007 +266000,266000 +14159,14159 +5658,5658 +24709,24709 +247016,247016 +297723,297723 +28880,28880 +195205,388993 +9572,9572 +9570,9570 +18198,18198 +346879,129086 +220741,220741 +19497,19497 +87780,87780 +36972,36972 +171605,171605 +41364,41364 +373880,373880 +3907,3907 +24527,430145 +13609,2392 +21788,21788 +9154,9154 +271604,271604 +185183,185183 +33381,33381 +15670,15670 +9465,271460 +13407,13407 +15656,15656 +145563,145563 +47145,47145 +12969,12969 +22856,22856 +1135,1135 +9287,9287 +349941,349941 +357427,357427 +15657,15657 +173762,173762 +20217,20217 +216837,216837 +9359,9359 +22391,22391 +65343,65343 +350626,137 +2832,2832 +3520,3520 +18359,18359 +28820,28820 +28054,28054 +7964,7964 +252501,252501 +89915,89915 +103331,103331 +2572,2572 +213073,213073 +65743,65743 +9630,9630 +169256,169256 +27663,463 +41646,41646 +17576,17576 +28063,28063 +26176,26176 +3850,3850 +23257,32213 +5527,5527 +16367,16367 +10673,10673 +13490,13490 +254178,120022 +343669,343669 +20267,20267 +280147,280147 +31360,31360 +2110,2110 +5121,5121 +3444,3444 +367743,367743 +139975,139975 +11861,11861 +231790,231790 +23586,23586 +3233,3233 +14132,14132 +258247,258247 +7936,7936 +86310,86310 +363464,363464 +233358,233358 +28642,28642 +10656,10656 +374001,374001 +320252,320252 +13011,13011 +23200,23200 +10460,10460 +39213,39213 +203083,203083 +5745,5745 +55597,1188 +87747,87747 +60139,60139 +12744,12744 +18218,18218 +206516,206516 +20560,20560 +225079,225079 +20202,20202 +6652,6652 +23986,23986 +161720,161720 +27712,8906 +3902,3902 +10289,10289 +34655,34655 +81843,112210 +8202,8202 +28566,28566 +180975,180975 +10150,31362 +36979,36979 +262397,262397 +237602,237602 +12038,12038 +357415,357415 +180822,180822 +24406,24406 +16056,16056 +12517,12517 +186192,186192 +32747,32747 +3816,3816 +14464,14464 +233282,233282 +6874,6874 +19428,19428 +8851,8851 +28526,28526 +65581,65581 +25297,25297 +6347,6347 +12507,12507 +135505,135505 +4304,4304 +30239,30239 +15664,15664 +39282,138325 +262838,262838 +299655,299655 +366246,366246 +29961,29961 +18685,18685 +19468,19468 +15671,15671 +23606,23606 +16460,16460 +18825,18825 +35564,35564 +29996,29996 +37634,37634 +11250,11250 +23236,23236 +167433,167433 +12409,12409 +22251,22251 +88248,88248 +9692,9692 +48593,48593 +24447,24447 +324439,324439 +23337,23337 +97279,97279 +252009,252009 +195320,195320 +16240,16240 +108640,108640 +106258,106258 +97735,97735 +43483,43483 +9163,9163 +5532,5532 +167437,167437 +8053,8053 +4381,96777 +166261,166261 +13854,13854 +3029,3029 +124263,124263 +4576,4576 +3650,3650 +2239,2239 +51374,51374 +175481,175481 +190409,190409 +76065,76065 +9153,9153 +62644,62644 +345435,233020 +5742,5742 +374887,374887 +12988,12988 +5361,5361 +5427,14436 +63899,63899 +40480,40480 +255801,255801 +215038,215038 +345161,345161 +377237,377237 +4951,4951 +151220,263733 +31848,31848 +27394,27394 +22801,22801 +9266,9266 +150216,150216 +181343,181343 +30989,463 +260230,260230 +36615,463 +36865,36865 +402593,402593 +32684,32684 +315367,315367 +130285,130285 +29010,29010 +179201,158268 +231018,231018 +29925,29925 +5204,5204 +260331,260331 +6667,6667 +3697,3697 +4577,4577 +28684,28684 +19085,19085 +6838,6838 +327898,463 +3214,248702 +114508,114508 +127508,127508 +28881,28881 +26661,26661 +20838,2865 +238721,238721 +159847,159847 +22189,22189 +16964,16964 +32001,32001 +15853,15853 +15242,15242 +8100,8100 +125013,125013 +186066,186066 +14306,14306 +33905,33905 +30298,30298 +33419,33419 +266569,266569 +140799,140799 +88263,88263 +33517,33517 +22379,22379 +29011,29011 +34611,34611 +32331,32331 +58713,58713 +17969,17969 +20392,20392 +21245,21245 +30413,30413 +1104,1104 +10132,10132 +347423,347423 +15667,15667 +37583,37583 +23401,23401 +14364,14364 +19883,19883 +32156,32156 +13691,13691 +184044,184044 +260815,260815 +360747,360747 +9240,9240 +177502,177502 +171123,171123 +378403,378403 +31137,31137 +72561,72561 +958,958 +400,1924 +5209,5209 +167589,167589 +6831,6831 +261035,214343 +129954,129954 +16462,16462 +181153,181153 +296517,296517 +91448,91448 +30334,320560 +215497,255552 +136092,136092 +119622,119622 +35095,463 +4042,4042 +27877,27877 +3324,3324 +28127,28127 +55455,55455 +232831,232831 +7959,7959 +6726,6726 +23459,23459 +155253,155253 +148011,148011 +15283,15283 +7309,7309 +62205,62205 +10643,10643 +107940,107940 +19527,19527 +135326,135326 +5415,362572 +168742,168742 +37876,37876 +2528,2528 +16187,16187 +32201,32201 +13187,13187 +24635,24635 +155872,155872 +20582,20582 +3187,3187 +19194,19194 +155762,155762 +8106,354330 +20520,20520 +228607,228607 +14560,14560 +27623,27623 +24793,24793 +20866,20866 +5403,5403 +22054,22054 +72957,72957 +19826,19826 +25306,25306 +362142,362142 +15394,15394 +8321,8321 +9530,9530 +368414,368414 +124931,124931 +121144,121144 +10408,10408 +8932,8932 +13857,13857 +32087,32087 +5625,5625 +159891,159891 +2948,2948 +38268,38268 +260875,260875 +42940,42940 +339493,339493 +258798,258798 +323833,323833 +174156,174156 +18888,18888 +167086,167086 +282344,282344 +15310,15310 +5623,5623 +320955,320955 +274434,274434 +286748,276124 +27584,27584 +3398,3398 +28471,28471 +180940,180940 +38959,38959 +279169,279169 +134477,134477 +82762,82762 +129053,129053 +239807,239807 +137404,137404 +89408,89408 +25274,25274 +4908,4908 +254417,254417 +364866,364866 +218639,218639 +21555,21555 +39297,39297 +399757,399757 +150061,150061 +12198,12198 +28910,321145 +32396,32396 +14696,14696 +149323,149323 +172257,172257 +195545,331752 +19381,19381 +11556,11556 +7559,7559 +13326,13326 +189657,189657 +154553,154553 +349192,349192 +6518,6518 +305220,305220 +152724,152724 +31508,31508 +16619,16619 +6217,6217 +34262,34262 +13333,13333 +4219,4219 +122647,122647 +17634,17634 +67364,67364 +121459,121459 +92185,92185 +4132,463 +137652,137652 +4987,4987 +2636,2636 +1788,1788 +30982,30982 +11935,11935 +17525,17525 +9190,9190 +282559,282559 +2074,2074 +370846,370846 +4262,4262 +14805,14805 +37776,37776 +358460,358460 +315643,315643 +17421,17421 +180918,180918 +25337,25337 +15537,15537 +10741,10741 +4901,4901 +4524,4524 +21862,21862 +14804,14804 +17659,17659 +33147,33147 +16131,16131 +733,733 +303890,303890 +33115,33115 +4495,4495 +23527,23527 +23814,23814 +1181,1181 +131249,131249 +27371,27371 +363216,363216 +9038,9038 +92302,92302 +24528,430145 +43027,43027 +4374,4374 +14766,14766 +16236,16236 +153087,153087 +14501,14501 +377,377 +25241,25241 +89222,89222 +296960,296960 +9505,9505 +127439,127439 +600,600 +17135,17135 +36871,36871 +295051,295051 +87280,87280 +155435,155435 +38337,38337 +20884,20884 +161444,161444 +161928,235482 +4383,4383 +22923,22923 +128635,128635 +5666,5666 +211701,25729 +10275,10275 +32677,32677 +8637,8637 +15455,15455 +5302,5302 +7235,7235 +104768,104768 +31066,31066 +268837,292653 +18812,200539 +8055,8055 +314887,2946 +12994,12994 +31793,31793 +2500,2500 +268080,268080 +7515,7515 +76353,76353 +259728,259728 +20316,20316 +5911,5911 +252544,252544 +93823,1986 +13546,13546 +257947,257947 +4905,4905 +258729,258729 +10670,10670 +7619,7619 +7736,7736 +25167,25167 +200694,200694 +1010,1010 +232091,232091 +85083,85083 +333433,333433 +11789,11789 +27872,27872 +25517,25517 +11776,11776 +15669,15669 +25107,25107 +10853,10853 +599,599 +229081,229081 +28226,28226 +17574,17574 +107821,107821 +13853,13853 +26319,26319 +189539,50381 +191310,191310 +330207,330207 +16679,16679 +19413,19413 +103115,103115 +53425,53425 +118162,118162 +12500,12500 +38476,38476 +16262,16262 +312611,316700 +148267,148267 +30820,30820 +5810,5810 +349492,349492 +276122,276122 +78436,78436 +140317,140317 +45482,45482 +325735,325735 +999,999 +257880,257880 +86555,86555 +4460,4460 +2068,288985 +5347,5347 +95589,95589 +14321,14321 +9437,9437 +27693,27693 +168168,168168 +2962,321 +15147,15147 +323810,323810 +23447,23447 +27167,635 +25303,25303 +34825,34825 +26700,26700 +10773,10773 +146926,1986 +14946,14946 +29924,29924 +30732,30732 +26336,26336 +24926,24926 +11596,11596 +19020,19020 +18608,18608 +22941,22941 +8665,8665 +33787,33787 +82579,82579 +356645,356645 +12578,12578 +12373,12373 +93196,93196 +289359,289359 +4589,4589 +19393,19393 +131221,131221 +246037,246037 +17440,17440 +33066,387485 +24112,24112 +142108,142108 +87802,87802 +9726,9726 +19585,19585 +8114,8114 +36650,36650 +11223,11223 +15184,15184 +370675,370675 +201975,201975 +22701,22701 +30155,30155 +39626,39626 +3909,3909 +42459,42459 +3433,3433 +70921,70921 +15837,15837 +201842,201842 +283229,283229 +23812,23812 +10703,10703 +141250,141250 +3476,7943 +86443,86443 +7869,7869 +14982,14982 +209376,209376 +67712,67712 +24928,24928 +8649,8649 +139930,139930 +33845,33845 +240696,240696 +263074,263074 +232944,232944 +266651,266651 +134438,134438 +393192,393192 +28292,28292 +10368,28906 +556,556 +3962,3962 +41087,41087 +131868,131868 +2681,15267 +18063,18063 +10345,10345 +1165,1165 +73254,73254 +9188,9188 +9899,9899 +14346,14346 +9774,9774 +5564,5564 +5759,5759 +4788,4788 +97824,97824 +238010,238010 +17407,17407 +3195,3195 +157170,157170 +9323,9323 +10535,10535 +20579,20579 +13434,13434 +3117,3117 +5102,5102 +34807,34807 +43233,43233 +16141,16141 +19988,19988 +8832,8832 +17554,17554 +10794,10794 +37105,37105 +68946,68946 +297560,297560 +3588,3588 +229683,390609 +17721,17721 +10191,10191 +68373,68373 +7225,7225 +22577,22577 +28197,28197 +136375,136375 +190263,190263 +31317,31317 +12268,12268 +7532,7532 +21976,21976 +132972,132972 +16154,16154 +42568,42568 +316936,316936 +146259,146259 +127068,127068 +296226,429874 +35468,35468 +17253,17253 +70255,70255 +19576,19576 +181471,181471 +276802,276802 +88554,88554 +122868,122868 +34950,34950 +24934,24934 +3080,3080 +20844,20844 +13477,13477 +37891,37891 +40139,40139 +270732,270732 +9929,9929 +113789,113789 +7471,7471 +26154,26154 +1864,1864 +27875,27875 +209284,209284 +154323,154323 +1100,1100 +170190,170190 +20552,20552 +13039,13039 +13443,463 +11887,11887 +22536,304820 +4158,4158 +21776,21776 +88298,88298 +153298,153298 +419262,419262 +10369,10369 +154456,154456 +190332,190332 +31151,31151 +127,24814 +90138,90138 +13902,13902 +5712,5712 +31581,92702 +9224,9224 +16038,16038 +37726,37726 +23966,23966 +2899,2899 +30871,30871 +39796,39796 +9919,9919 +83658,83658 +13328,13328 +310504,310504 +92179,92179 +10627,10627 +16974,16974 +10833,10833 +131120,131120 +375560,375560 +141059,141059 +17986,17986 +2818,271460 +29268,13972 +131892,131892 +62854,62854 +24775,24775 +12624,12624 +3253,3253 +65134,65134 +24754,24754 +186185,186185 +947,947 +5609,5609 +10612,10612 +2912,463 +4736,4736 +237153,237153 +151557,151557 +13169,811 +39898,39898 +1939,1939 +3302,3302 +3622,3622 +193329,269074 +39252,122399 +5108,5108 +10282,10282 +237213,237213 +7134,7134 +26030,26030 +99809,99809 +137026,137026 +288780,288780 +1944,1944 +360,360 +1802,2317 +147242,147242 +94056,94056 +191390,191390 +137014,137014 +109193,109193 +295942,295942 +37098,37098 +349939,349939 +663,663 +19756,19756 +150754,150754 +179276,179276 +19747,19747 +137360,137360 +15662,15662 +346766,346766 +349132,349132 +238727,238727 +15188,15188 +11782,11782 +160546,160546 +16250,16250 +13861,13861 +18008,18008 +162920,162920 +11256,11256 +12508,12508 +181597,181597 +102344,102344 +18045,18045 +64405,64405 +31247,31247 +22206,22206 +3126,3126 +33378,33378 +27983,27983 +24804,24804 +287407,184078 +7304,7304 +35351,35351 +129469,129469 +12819,12819 +14134,14134 +1625,1625 +172480,172480 +67988,67988 +24505,24505 +13126,13126 +8057,8057 +35499,35499 +27552,27552 +10390,10390 +26910,26910 +26778,24743 +39276,39276 +3753,197969 +578,578 +75762,287571 +23308,23308 +33176,33176 +6290,34737 +8312,8312 +187619,217253 +10419,10419 +605,605 +19447,19447 +6368,177807 +25172,25172 +13615,13615 +193273,193273 +6948,6948 +21840,21840 +4224,4224 +219854,219854 +7070,330111 +9737,9737 +167087,167087 +12102,12102 +3334,3334 +51125,51125 +5583,5583 +328354,328354 +71837,71837 +10420,10420 +10485,10485 +217155,217155 +23723,23723 +64375,64375 +187663,187663 +35284,35284 +12684,12684 +182380,329330 +155157,201243 +28623,28623 +10724,10724 +39593,39593 +17766,17766 +10273,10273 +7660,7660 +19104,19104 +13041,13041 +19154,19154 +370916,370916 +13828,13828 +1220,62280 +1542,1542 +120515,120515 +12187,12187 +348133,358662 +139894,139894 +29119,29119 +182834,182834 +19196,19196 +21442,21442 +1221,1221 +25702,25702 +312762,312762 +152617,152617 +25276,25276 +3042,159818 +182062,182062 +179228,179228 +87929,87929 +42368,42368 +39,39 +9554,9554 +17071,17071 +98857,98857 +363050,363050 +25894,25894 +17229,17229 +61820,61820 +14674,14674 +40507,1269 +135492,334482 +19333,19333 +74553,74553 +4073,4073 +116969,116969 +272991,272991 +358900,358900 +6228,6228 +2514,2514 +1056,1056 +248106,248106 +161744,161744 +21466,21466 +11561,11561 +28084,28084 +6964,463 +35750,35750 +11034,11034 +21967,21967 +6494,6494 +428639,385634 +2306,2306 +170068,170068 +225313,298545 +167497,167497 +3418,3418 +7351,7351 +288361,288361 +286952,286952 +213501,213501 +53373,53373 +38844,38844 +9129,9129 +122558,122558 +43821,43821 +14668,14668 +40547,40547 +10751,10751 +29640,29640 +36405,36405 +11858,11858 +16229,16229 +278410,278410 +313804,313804 +10182,10182 +808,808 +147392,147392 +8038,8038 +1980,27020 +114107,114107 +190925,190925 +8444,8444 +8484,8484 +298,298 +196564,196564 +14310,14310 +61135,61135 +36414,36414 +172506,172506 +320444,320444 +9573,9573 +25270,25270 +91655,91655 +15627,15627 +85562,85562 +168659,277084 +14617,14617 +2556,2556 +30898,389090 +1949,1949 +219338,219338 +27093,27093 +8145,8145 +4076,7259 +147423,147423 +10999,10999 +143,143 +156994,156994 +10278,10278 +32895,32895 +9470,9470 +242756,242756 +127500,127500 +3427,28408 +279750,279750 +203661,203661 +229989,229989 +250492,250492 +151311,151311 +21024,21024 +16336,16336 +8838,8838 +23406,23406 +28417,28417 +333188,333188 +269795,269795 +25848,25848 +291134,63268 +23424,23424 +26209,26209 +24290,24290 +311309,311309 +204965,204965 +25469,25469 +172670,172670 +236739,236739 +145621,4213 +156580,156580 +18828,18828 +41030,41030 +356231,356231 +179701,179701 +33906,33906 +19991,151876 +13221,13221 +22232,22232 +11393,11393 +170395,170395 +104368,53279 +39432,39432 +12295,12295 +20771,20771 +23598,23598 +94073,94073 +170384,4185 +58375,58375 +26089,26089 +34974,320897 +253234,253234 +173132,173132 +2513,2513 +320953,320955 +66603,14441 +7713,7713 +4443,4443 +8314,8314 +4634,4634 +14422,14422 +57239,57239 +26729,112177 +20420,20420 +3589,3589 +349495,349495 +179942,179942 +36344,36344 +172976,172976 +2225,2225 +239158,239158 +13194,13194 +10046,10046 +245084,245084 +16238,16238 +177997,177997 +20221,20221 +9964,9964 +17247,17247 +24254,24254 +89106,89106 +9814,9814 +1988,1988 +38842,38842 +43299,43299 +31136,31136 +16205,16205 +142109,142109 +17572,17572 +148913,148913 +299249,299249 +28956,28956 +242991,242991 +23491,23491 +11214,11214 +312288,312288 +4404,4404 +118709,118709 +10599,10599 +72766,223332 +6729,6729 +20311,20311 +3030,3030 +9882,9882 +40396,40396 +285165,285165 +22342,22342 +6949,6949 +2075,2075 +38452,38452 +328,328 +25757,25757 +302361,302361 +5617,5617 +6513,352802 +11673,299798 +166537,166537 +63217,63217 +25206,25206 +15182,15182 +228714,228714 +16218,16218 +181344,181344 +22349,22349 +158060,158060 +15462,15462 +9595,9595 +216797,216797 +10303,10303 +128016,128016 +174927,174927 +386128,386128 +11969,11969 +2429,2429 +1610,1610 +24137,24137 +20526,20526 +57336,57336 +6585,6585 +7397,7397 +12983,12983 +289123,289123 +6935,6935 +18549,18549 +57794,57794 +13726,463 +41952,41952 +6403,6403 +286547,1465 +4633,4633 +174083,370186 +158111,158111 +16111,16111 +207975,207975 +7277,7277 +55757,55757 +366304,366304 +311165,174584 +27242,27242 +382213,382213 +67809,67809 +126234,126234 +47170,47170 +275,275 +20634,20634 +5688,5688 +207311,207311 +298428,298428 +186408,186408 +174468,174468 +31549,31549 +16480,16480 +5496,5496 +25412,25412 +6661,6661 +33497,33497 +17745,17745 +154085,154085 +22289,256146 +404246,404246 +12779,12779 +21768,21768 +4927,463 +112474,112474 +265610,265610 +165632,165632 +361657,361657 +8286,8286 +209551,209551 +5906,5906 +272516,272516 +343524,343524 +66144,66144 +28062,28062 +2752,2752 +5090,5090 +19603,19603 +146778,146778 +29067,29067 +9762,9762 +5705,5705 +26455,26455 +14864,14864 +276184,276184 +25179,25179 +36286,36286 +31512,31512 +158838,158838 +62947,62947 +133423,133423 +120531,120531 +136285,136285 +19016,19016 +18492,18492 +243606,243606 +2463,2463 +356579,356579 +11243,11243 +371787,371787 +17251,17251 +3687,3687 +27870,27870 +1752,1752 +225968,225968 +264714,264714 +3020,3020 +32224,32224 +15354,15354 +178569,178569 +347935,347935 +10009,10009 +11559,11559 +13958,13958 +6589,6589 +29320,29320 +18847,18847 +17579,17579 +2999,2999 +138578,138578 +4326,4326 +3090,3090 +4523,4523 +6839,6839 +142345,142345 +32959,32959 +2378,2378 +6952,6952 +21631,21631 +21605,21605 +269105,269105 +230887,230887 +13186,13186 +9785,9785 +147354,147354 +14081,14081 +3258,3258 +189265,189265 +80256,80256 +61292,61292 +39899,39899 +227019,227019 +27156,27156 +18998,18998 +251546,251546 +9293,9293 +251257,251257 +5633,18223 +1184,1184 +152626,152626 +267030,286745 +32570,32570 +3173,3173 +41547,41547 +149611,149611 +12073,12073 +246801,246801 +6731,6731 +5047,5047 +10129,10129 +1105,1105 +39027,39027 +62633,62633 +8349,8349 +6886,6886 +41542,6888 +9234,9234 +39201,39201 +12433,12433 +110598,110598 +10511,10511 +9579,9579 +24309,24309 +22188,22188 +15663,15663 +248876,248876 +298534,298534 +9761,9761 +12599,12599 +43309,43309 +1186,1186 +9902,9902 +21194,21194 +954,954 +66236,66236 +20183,20183 +28276,28276 +197435,197435 +8636,8636 +16158,28225 +121471,121471 +2012,2012 +207670,207670 +28176,28176 +676,676 +9805,9805 +89926,89926 +27517,27517 +135755,135755 +238086,238086 +157083,157083 +178938,178938 +246704,246704 +297343,297343 +5689,5689 +8513,8513 +1979,1979 +13235,13235 +7919,7919 +10330,10330 +99811,99811 +355988,355988 +39431,39431 +352784,352784 +2059,2059 +12070,12070 +235810,235810 +295391,463 +114184,114184 +227869,227869 +4976,4976 +13993,13993 +223778,223778 +150162,150160 +129841,129841 +10130,10130 +209410,209410 +5512,5512 +20124,20124 +171368,249735 +9115,9115 +72630,272854 +32922,32922 +320538,320538 +320499,92190 +101954,101954 +340485,340485 +6524,6524 +32679,32679 +1534,1534 +4026,4026 +7715,7715 +4912,4912 +7864,7864 +18729,18729 +26934,26934 +7999,7999 +6754,6754 +3268,3268 +30253,30253 +13527,13527 +1914,1914 +9924,9924 +7111,7111 +6486,6486 +204366,204366 +773,773 +6363,6363 +25376,25376 +15864,15864 +5672,5672 +193543,193543 +142537,142537 +27784,27784 +83089,83089 +3817,3817 +289020,334988 +9426,9426 +15298,15298 +31758,31758 +11262,11262 +23416,354330 +27907,27907 +25481,463 +25843,25843 +174065,883 +175219,175219 +261518,261518 +10098,10098 +311344,311344 +4797,4797 +240096,240096 +341916,341916 +113425,113425 +40514,40514 +138195,138195 +175879,175879 +11020,11020 +10432,8484 +169045,169045 +326408,326408 +3680,3680 +4552,4552 +14360,14360 +23482,23482 +6958,6958 +8943,8943 +167231,167231 +301386,301386 +12762,12762 +7610,7610 +30723,30723 +4058,146752 +1659,1659 +175730,175730 +12890,12890 +22024,22024 +129362,129362 +6677,6677 +375,375 +131164,131164 +154009,91523 +24151,24151 +14672,14672 +38678,38678 +40221,40221 +39912,39912 +205226,205226 +336666,336666 +17675,17675 +65887,65887 +118077,118077 +240130,240130 +9348,9348 +26617,26617 +12998,40249 +2348,2348 +14812,14812 +2568,2568 +5794,5794 +1714,1053 +101718,63216 +270142,270142 +13989,13989 +13384,13384 +19621,19621 +353,466 +6693,6693 +107850,107850 +5540,5540 +5793,5793 +7331,7331 +134642,134642 +20624,20624 +4181,4181 +13137,13137 +296291,296291 +87925,87925 +297327,297327 +7258,7258 +3329,3329 +11443,11443 +224175,205072 +30208,30208 +8050,8050 +7188,7188 +15456,15456 +9809,9809 +1564,1564 +10740,10740 +135686,135686 +230976,230976 +72566,72566 +349275,349275 +215154,215154 +13372,13372 +20224,20224 +73288,73288 +246317,246317 +15607,15607 +8437,23491 +35908,35908 +164449,164449 +33169,33169 +39096,372957 +3311,3311 +4325,4325 +11411,11411 +3978,3978 +21846,21846 +5804,5804 +198305,198305 +155438,155438 +3175,3175 +1629,1629 +20139,20139 +151367,151367 +4267,4267 +140664,140664 +408753,408753 +3451,3451 +62478,62478 +5685,5685 +3186,3186 +66251,66251 +25053,25053 +10654,10654 +143514,143514 +13402,114043 +33529,33529 +168005,168005 +24116,24116 +19472,19472 +286309,271460 +32601,32601 +6820,6820 +223776,223776 +66276,66276 +24323,24323 +29562,102599 +3919,3919 +256472,256472 +15442,15442 +187316,187316 +32070,32070 +16215,16215 +29417,29417 +23689,23689 +4412,4412 +166661,166661 +15325,15325 +1191,1191 +6971,6971 +23541,23541 +297,297 +19484,32409 +163170,163170 +26607,26607 +12043,463 +325578,352456 +11714,11714 +351494,351494 +179628,179628 +285878,285878 +19466,19466 +34173,34173 +98938,98938 +10677,10677 +4481,4481 +339466,339466 +26134,26134 +5577,5577 +8871,8871 +76691,76691 +9030,9030 +8447,8447 +22886,22886 +12229,12229 +3883,3883 +1653,1653 +35779,35779 +5474,5474 +109086,109086 +146104,146104 +8507,8507 +12424,12424 +7205,7205 +1655,1655 +17459,17459 +10744,10744 +10356,10356 +24344,24344 +13866,13866 +11001,11001 +139162,139162 +188576,188576 +3160,3160 +8691,8691 +132244,132244 +2408,2408 +206540,206540 +12340,12340 +11784,11784 +3867,3867 +2549,2549 +4528,4528 +35630,35630 +158343,158343 +7573,7573 +38154,38154 +852,852 +9568,9568 +118494,118494 +7094,7094 +8448,8448 +136116,136116 +24306,24306 +5649,5649 +25826,25826 +341797,341797 +13418,13418 +3289,3289 +1084,1084 +78215,78215 +3009,3009 +19477,19477 +22515,22515 +9082,9082 +5458,5458 +107056,107056 +26612,26612 +4596,422751 +42572,42572 +30602,30602 +1846,1846 +19265,19265 +15083,15083 +34072,34072 +22764,22764 +8535,8535 +69175,69175 +115735,115735 +89927,89927 +229954,229954 +2418,2418 +3752,3752 +19099,19099 +318545,318545 +151005,151005 +6232,6232 +148273,148273 +2357,2357 +200783,200783 +33623,33623 +139779,139779 +14435,14435 +11822,11822 +2426,359735 +18562,18562 +68605,68605 +176918,176918 +58010,154498 +207385,50381 +135099,135099 +28301,28301 +256479,319283 +8618,8618 +74129,74129 +281647,281647 +142322,142322 +12601,12601 +353568,353568 +20913,20913 +37691,37691 +1819,1819 +14961,14961 +344514,344514 +264821,264821 +5307,5307 +109002,109002 +4433,4433 +35587,35587 +15077,15077 +3734,3734 +10003,10003 +8996,197641 +324238,324238 +38693,38693 +29293,29293 +10546,10546 +279793,279793 +29969,29969 +267144,267144 +25248,25248 +131982,131982 +13935,13935 +17044,17044 +9160,9160 +206850,206850 +14220,463 +1638,1638 +21529,21529 +14404,14404 +240712,240712 +148517,148517 +271042,271042 +42892,186808 +183868,183868 +99235,99235 +2497,2497 +41009,22392 +108176,108176 +14952,14952 +182865,182865 +153116,153116 +25177,25177 +2548,2548 +32205,159736 +12024,12024 +27186,27186 +26841,26841 +57422,57422 +10270,10270 +182538,182538 +121814,121814 +6339,6339 +4509,4509 +368810,368810 +32369,32369 +13916,13916 +3486,3486 +156930,156930 +2840,2840 +2799,2799 +24009,11821 +74936,74936 +1703,1703 +62162,62162 +39778,39778 +13108,13108 +11638,11638 +24520,24520 +35482,35482 +1464,1464 +27800,900 +4153,4153 +7209,7209 +5661,5661 +145764,145764 +66129,66129 +23670,23670 +21254,21254 +6760,6760 +163563,163563 +7958,7958 +239072,239072 +319046,319046 +13078,13078 +33935,33935 +120933,120933 +4403,4403 +10711,10711 +141833,141833 +30178,30178 +9533,9533 +25739,25739 +19027,19027 +86073,261157 +37695,37695 +188276,188276 +182083,182083 +20836,20836 +256406,256406 +6959,6959 +26768,26768 +112692,112692 +2906,2906 +3205,3205 +23330,23330 +153241,153241 +10322,10322 +22659,22659 +88608,891 +162915,162915 +346202,346202 +2314,2314 +2695,2695 +321628,218421 +25995,25995 +5100,5100 +120579,120579 +15542,15542 +22747,22747 +94684,94684 +325515,325515 +303960,303960 +360724,360724 +290506,290506 +39145,39145 +8638,8638 +158256,174055 +5104,5104 +254686,254686 +6990,6990 +1259,1259 +13239,13239 +14991,14991 +24110,24110 +313070,313070 +19236,19236 +4057,4057 +25238,25238 +18464,18464 +797,797 +20231,20231 +30363,30363 +33848,33848 +12741,12741 +224751,224751 +213601,213601 +359447,359447 +41635,41635 +266587,266587 +3227,3227 +66980,66980 +59962,59962 +4065,4065 +2295,18774 +39552,39552 +12711,12711 +26584,26584 +5809,5809 +9480,9480 +5842,5842 +182604,182604 +3429,3429 +33662,33662 +23671,23671 +15101,15101 +43043,43043 +89620,89620 +26909,26909 +14156,112134 +27981,27981 +11650,11650 +15497,28137 +32794,32794 +4150,4150 +6716,6716 +3629,3629 +126131,126131 +329227,329227 +82449,82449 +82208,82208 +22818,22818 +16726,16726 +12081,12081 +5885,5885 +33786,33786 +8890,8890 +11795,11795 +140830,82343 +1973,1111 +23525,23525 +8210,8210 +5250,5250 +11628,11628 +20525,20525 +13258,13258 +241755,241755 +10965,19565 +23025,23025 +6479,6479 +23607,23607 +100374,100374 +22282,22282 +173387,173387 +41956,41956 +103801,103801 +11604,11604 +186276,186276 +251467,226529 +24603,24603 +7303,7303 +16987,393485 +11938,11938 +4034,4034 +86768,86768 +66499,66499 +25455,25455 +64438,271460 +218564,218564 +8256,8256 +21505,21505 +21124,21124 +23291,23291 +1391,1391 +163279,163279 +57129,57129 +10283,10283 +11941,11941 +16136,16136 +4922,4922 +15848,15848 +5181,5181 +149553,149553 +266031,266031 +1946,1542 +928,928 +24988,24988 +28674,28674 +128549,128549 +165189,165189 +32740,224994 +2925,2925 +193049,423739 +213602,213602 +2656,2656 +67948,67948 +17186,17186 +141339,141339 +63443,63443 +22354,34444 +122598,122598 +9406,9406 +8191,942 +13420,13420 +67630,67630 +4904,4904 +5952,5952 +34189,34189 +14933,14933 +15507,15507 +6194,6194 +299777,299777 +339684,339684 +8619,8619 +10317,10317 +27748,27748 +72672,72672 +347511,347511 +15783,15783 +179876,179876 +4551,4551 +8988,8988 +146821,146821 +298547,298547 +92646,92646 +22525,22525 +17210,17210 +11968,11968 +4597,4597 +14314,14314 +242289,242289 +39192,39192 +23248,23248 +154097,154097 +8654,8654 +4461,4461 +12314,12314 +186295,186295 +240355,240355 +28650,28650 +12637,12637 +91977,8636 +9454,463 +33583,33583 +2177,2177 +27468,27468 +9590,9590 +20989,20989 +95893,95893 +67026,31159 +29625,29625 +10094,10094 +6412,6412 +252989,252989 +40129,40129 +6612,6612 +23970,23970 +24247,24247 +33866,33866 +337023,337023 +11854,11854 +211599,211599 +21249,21249 +30364,30364 +19000,19000 +80836,80836 +27913,27913 +21546,21546 +135648,135648 +25847,25847 +25205,25205 +84514,84514 +22445,22445 +287741,287741 +26616,26616 +190527,190527 +4038,4038 +3103,3103 +26440,26440 +6712,6712 +28860,28860 +3456,3456 +5691,5691 +20380,20380 +11635,11635 +22519,22519 +10922,10922 +28931,28931 +235942,235942 +24141,24141 +2566,2566 +16723,265276 +2738,430 +280149,280149 +29117,29117 +2990,2990 +10090,10090 +26540,26540 +121601,121601 +119533,119533 +32993,32993 +13207,13207 +271039,184752 +10521,10521 +101627,101627 +21566,21566 +5644,5644 +349797,349797 +63898,63898 +287655,287655 +4371,4371 +23315,23315 +22085,22085 +136419,136419 +85286,85286 +160340,160340 +122565,122565 +14386,14386 +293507,293507 +9017,9017 +110697,110697 +58339,58339 +343629,343629 +378106,378106 +13918,5677 +17323,17323 +312943,312943 +11683,11683 +88872,88872 +13478,13478 +1156,1156 +120533,120533 +235534,219185 +12706,12706 +5899,1127 +2788,2788 +13292,6685 +12924,12924 +171411,171411 +100670,100670 +164805,164805 +3297,185050 +327883,327883 +142191,142191 +622,3270 +186212,151091 +144790,144790 +15849,15849 +22090,22090 +5729,5729 +26215,26215 +320956,320955 +38196,38196 +4382,4382 +11732,11732 +263935,263935 +59692,59692 +335993,335993 +24786,24786 +11204,11204 +31923,31923 +33117,33117 +10575,21990 +150542,150542 +61203,61203 +25471,463 +14000,14000 +40886,40886 +18919,18919 +187033,187033 +325413,325413 +6713,6713 +292795,292795 +9475,9475 +375607,375607 +2654,2654 +27353,27353 +12243,12243 +5682,5682 +366302,366302 +63599,63599 +31068,31068 +13128,7538 +195161,195161 +13114,13114 +6052,6052 +354720,354720 +10582,10582 +6012,6012 +255819,255819 +115435,115435 +6398,6398 +7611,7611 +368043,368043 +31315,31315 +170674,170674 +14459,14459 +165294,292733 +33197,33197 +42785,42785 +38418,38418 +12030,12030 +16990,16990 +1854,1854 +228687,228687 +2547,2547 +42686,42686 +3636,3636 +11153,11153 +3428,3428 +14400,14400 +12465,5677 +9947,9947 +169708,169708 +21257,21257 +15494,15494 +6152,6152 +9940,9940 +154008,1500 +66590,17534 +10626,10626 +21331,21331 +187787,187787 +33215,33215 +15380,15380 +5334,5334 +9184,16187 +33239,33239 +30009,33950 +300729,300729 +29263,29263 +38738,229684 +2283,3270 +122499,122499 +42094,42094 +283124,283124 +8454,8454 +95315,95315 +369857,369857 +26804,8993 +88808,88808 +391,391 +37847,37847 +13586,13586 +199247,199247 +38860,38860 +111299,111299 +94142,94142 +2403,2403 +20336,20336 +2280,2280 +43044,43044 +795,795 +2916,463 +89956,89956 +15750,15750 +11336,11336 +13158,13158 +35877,35877 +98371,137360 +2458,2795 +171626,171626 +286329,286329 +33368,33368 +19875,463 +5662,5662 +22859,22859 +158446,158446 +85504,85504 +29419,29419 +24125,24125 +14990,14990 +321516,321516 +367,367 +2823,2823 +146729,146729 +36380,26420 +295924,295924 +10625,10625 +3840,3840 +3849,3849 +3719,3719 +39312,39312 +174337,174337 +321396,321396 +3021,3021 +143676,143676 +11391,11391 +225766,181521 +149328,248702 +184920,184920 +18110,18110 +3830,3830 +6245,6245 +3574,3574 +69909,69909 +2446,2446 +13309,13309 +197068,197068 +2941,2941 +19578,19578 +24645,24645 +4996,4996 +7605,7605 +276129,276129 +2493,2493 +16620,16620 +220546,1111 +134255,134255 +159084,159084 +26023,26023 +7388,7388 +130823,130823 +2783,2783 +213097,213097 +98350,98350 +4627,4627 +8450,8450 +1199,1199 +26093,26093 +38694,38694 +17755,17755 +117784,150160 +16380,16380 +373385,373385 +58253,58253 +12438,12438 +18695,18695 +38577,38577 +22053,22053 +18679,18679 +3524,3524 +202726,202726 +168840,168840 +13165,13165 +610,610 +11530,11530 +238761,238761 +496,496 +5758,186905 +85995,85995 +243316,243316 +11193,11193 +7249,7249 +194032,159566 +1626,1626 +2352,2352 +22032,22032 +20924,20924 +12593,12593 +110511,110511 +8972,8972 +36232,36232 +1096,1096 +3440,3440 +114050,114050 +8659,8659 +32680,32680 +367583,367583 +3017,3017 +25158,25158 +61,61 +75702,75702 +1178,1178 +20182,20182 +111807,111807 +15490,30135 +133687,133687 +255027,255027 +31561,31561 +246345,246345 +13886,13886 +165283,120580 +356,356 +1852,1852 +145401,145401 +3723,3723 +257186,257186 +4477,4477 +1409,1409 +382507,382507 +259463,259463 +2128,2128 +23413,23413 +14275,14275 +37624,37624 +6010,6010 +197909,197909 +294321,294321 +4157,4157 +216906,216906 +5663,5663 +170927,170927 +183831,231345 +207274,207274 +13951,13951 +6364,6364 +3432,3432 +8204,8204 +158947,158947 +116975,116975 +7457,7457 +150866,150866 +154476,154476 +16226,16226 +16052,16052 +25405,25405 +103573,103573 +1488,1488 +120268,120268 +6522,6522 +32828,32828 +5051,5051 +8915,8915 +33799,33799 +14707,197501 +329173,329173 +34433,34433 +10379,10379 +170170,170170 +189203,189203 +6969,6969 +785,785 +104287,104287 +68315,68315 +6182,6182 +134258,134258 +367033,426445 +150018,150018 +141896,141896 +3319,3319 +19398,19398 +25144,25144 +11037,11037 +51512,51512 +103922,103922 +217007,217007 +14989,14989 +1732,1732 +65,65 +135101,135101 +34938,34938 +146299,146299 +16567,16567 +221609,221609 +24653,24653 +34393,34393 +28308,28308 +14539,14539 +235094,235094 +37224,37224 +1656,1656 +318561,318561 +207917,207917 +15020,51383 +235251,28864 +140143,140143 +3640,3640 +232351,232351 +6857,6857 +23870,23870 +2185,2185 +11317,11317 +17159,17159 +302679,302679 +15454,15454 +95705,95705 +25754,28104 +4384,610 +7971,7971 +125643,125643 +10181,10181 +20005,20005 +188930,188930 +71402,71402 +168687,168687 +2322,359735 +183778,183778 +239937,239937 +158918,159143 +325179,316165 +4770,4770 +3652,3652 +4933,4933 +175846,175846 +121751,121751 +94486,94486 +1955,1955 +146409,146409 +3835,3835 +2331,159621 +368733,368733 +236957,236957 +124160,124160 +34933,34933 +1249,1249 +403133,403133 +3944,3944 +205876,205876 +5366,5366 +155208,155208 +15872,15872 +31271,463 +9912,9912 +948,948 +313130,313130 +200610,318409 +4400,4400 +116468,116468 +168141,168141 +10808,10808 +19985,19985 +180459,180459 +88881,217545 +171369,171369 +21652,21652 +136494,136494 +18641,18641 +11417,11417 +93553,93553 +9581,9208 +4456,4456 +38197,38197 +136058,136058 +189520,283865 +28492,28492 +21095,21095 +123991,190772 +42920,271460 +31762,31762 +12494,12494 +5354,5354 +13714,463 +252555,252555 +347756,347756 +282080,282080 +32849,76670 +88957,88957 +6011,6011 +21125,21125 +12077,12077 +342762,322568 +39720,39720 +32687,32687 +55706,55706 +72938,72938 +304339,304339 +10424,10424 +4578,271460 +27340,27340 +32157,32157 +6851,6851 +202375,202375 +17709,17709 +98189,98189 +32702,135677 +40767,40767 +32361,32361 +409,409 +2037,2037 +32678,32678 +18696,18696 +2635,463 +8570,8570 +9607,9607 +4070,4070 +32504,32504 +11167,355414 +32863,32863 +1925,1925 +210179,210179 +33727,33727 +112757,112757 +56246,56246 +2696,2696 +3288,3288 +1867,1867 +147625,147625 +146596,146596 +23721,23721 +152615,152615 +32124,32124 +62861,62861 +5365,5365 +96628,463 +373383,373383 +27282,27282 +348303,23312 +15046,15046 +39636,236694 +10280,10280 +20790,20790 +16057,16057 +297341,242742 +15151,15151 +231087,231087 +223337,223337 +2820,2820 +51039,51039 +10414,10414 +1934,1934 +1497,1497 +13412,13412 +9320,9320 +291844,291844 +2782,2782 +348250,348250 +38795,38795 +414816,414816 +7575,7575 +25232,25232 +7547,7547 +194575,194575 +24901,24901 +18657,18657 +2018,2018 +13350,13350 +3111,3111 +8295,2629 +6703,6703 +24053,24053 +67629,67629 +61474,61474 +11519,11519 +13132,13132 +16245,16245 +356755,356755 +16860,16860 +4536,4536 +1853,1853 +147581,147581 +1648,1648 +133334,133334 +80503,80503 +6114,6114 +98734,98734 +212494,212494 +188601,298545 +145943,145943 +62660,62660 +24265,24265 +1166,11574 +20028,20028 +4064,4064 +140084,140084 +92094,92094 +8964,355987 +2156,2156 +42879,42879 +286126,286126 +12415,12415 +240951,240951 +8097,8097 +22265,22265 +1863,1863 +334,334 +222079,163081 +7746,7746 +370756,370756 +11147,11147 +191077,305997 +8852,8852 +10807,38337 +265297,463 +40350,40350 +33967,33967 +11954,11954 +866,866 +6371,6371 +9603,9603 +249629,249629 +1707,1707 +136554,136554 +2512,2512 +198450,150993 +28472,28472 +11814,11814 +4117,4117 +9061,9061 +14951,128909 +3610,3610 +9705,9705 +2515,2515 +36233,36233 +1503,1503 +1482,1482 +3430,3430 +5675,351392 +5717,5717 +52010,52010 +125059,125059 +37437,37437 +41715,41715 +1011,1011 +92099,92099 +166196,166196 +3194,3194 +137481,414696 +24105,24105 +8942,8942 +3488,3488 +103327,103327 +64131,64131 +139769,139769 +60384,60384 +23243,23243 +270166,270166 +419086,419086 +26400,26400 +26163,26163 +69796,69796 +6436,6436 +5690,5690 +120906,120906 +117910,117910 +113369,113369 +36634,36634 +177212,177212 +179718,179718 +319366,319366 +316927,316927 +4559,4559 +9698,9698 +7556,7556 +272350,272350 +22501,22501 +3068,3068 +372811,372811 +244837,244837 +22839,22839 +29142,29142 +5234,5234 +73228,73228 +3910,3910 +7860,7860 +42277,42277 +267022,267022 +10347,10347 +1255,2771 +13260,13260 +6792,6792 +5468,5468 +22889,116938 +8173,24254 +25950,25950 +8254,8254 +12581,12581 +143450,143450 +27389,272854 +3502,3502 +2957,74098 +6473,6473 +6684,6684 +213787,213787 +46743,46743 +38353,38353 +11862,11862 +2435,2435 +228501,228501 +11577,11577 +272821,272821 +76362,76362 +29408,38418 +9416,9416 +23327,23327 +36228,36228 +105123,105123 +21866,292733 +22931,22931 +57102,57102 +8530,8530 +16003,16003 +13944,13944 +12876,12876 +19456,185453 +17520,463 +20589,20589 +17861,17861 +15855,15855 +99030,99030 +256861,256861 +179266,179266 +9725,463 +3503,3503 +246015,246015 +349129,349129 +27512,27512 +1290,1290 +27296,27296 +7924,7924 +140650,204583 +347604,347604 +2007,2007 +4442,4442 +41334,66044 +140729,140729 +195455,197178 +278285,407018 +221644,221644 +4162,4162 +15863,15863 +6375,6375 +257074,257074 +251642,251642 +19834,19834 +732,733 +50444,50444 +151847,151847 +24473,24473 +322203,320955 +8308,8308 +849,849 +3686,3686 +5166,5166 +15743,15743 +10450,10450 +8337,220988 +18104,18104 +69205,69205 +31257,31257 +11395,11395 +8041,8041 +24260,24260 +4345,4345 +177751,223776 +11950,155912 +164,164 +27302,27302 +7821,7821 +282594,255335 +26204,469 +5420,5420 +34395,34395 +167505,88130 +6800,6800 +3278,3278 +1871,1871 +153205,153205 +2816,2816 +263189,263189 +1603,1603 +14511,14511 +37678,37678 +6981,6981 +276528,276528 +8963,8963 +2764,2764 +1443,1443 +8393,8393 +41017,41017 +22516,12304 +3889,159847 +192409,151191 +39320,39320 +69275,69275 +5299,5299 +12237,12237 +194228,194228 +6493,6493 +8676,114043 +5031,5031 +2144,2144 +3448,3448 +10518,41321 +144579,144579 +2099,590 +113490,113490 +11484,11484 +6868,6868 +12649,12649 +36895,36895 +260942,400854 +121011,121011 +167946,167946 +2206,18893 +2496,2496 +319145,319145 +3447,3447 +420793,420793 +10596,10596 +21941,21941 +7163,7163 +76444,76444 +1514,1514 +27675,27675 +12616,12616 +2793,2793 +3140,3140 +2036,2036 +1225,1225 +7519,40650 +183472,183472 +400859,400859 +11739,11739 +6798,6798 +41189,41189 +158198,158198 +36231,36231 +8621,8621 +23684,23684 +5547,5547 +1613,142363 +267017,267017 +8211,8211 +31364,31364 +46746,46746 +347086,347086 +130736,130736 +6397,6397 +264660,264660 +4373,4373 +328053,328053 +254419,254419 +172007,354256 +20274,20274 +20580,20580 +154901,154901 +50458,50458 +3266,3266 +31,1777 +5040,5040 +15175,15175 +2100,2100 +2593,12304 +304665,39206 +899,10123 +25968,25968 +114519,114519 +13155,13155 +11102,11102 +10912,10912 +19633,19633 +5553,5553 +37849,37849 +119316,119316 +30379,30379 +23631,23631 +14131,14131 +295394,295394 +249414,154634 +359061,359061 +4889,4889 +25188,25188 +21881,21881 +2197,2197 +60697,60697 +72239,72239 +8567,8567 +3352,3352 +6210,6210 +2811,2811 +193500,193500 +21859,217136 +137168,137168 +118340,118340 +15635,15635 +95765,95765 +16530,16530 +1858,1858 +39043,39043 +104527,104527 +151468,151468 +237329,237329 +40974,40974 +25475,271821 +164339,164339 +4696,4696 +26861,26861 +170054,170054 +244216,244216 +101425,101425 +39789,39789 +34377,34377 +148180,463 +10409,10409 +12308,12308 +28989,234819 +88586,88586 +43890,43890 +200760,200760 +169987,121408 +76319,76319 +17457,17457 +295178,295178 +16562,16562 +219670,219670 +23346,23346 +12634,12634 +382194,382194 +12837,23482 +9545,9545 +41184,41184 +137167,410396 +8842,8842 +31298,31298 +10187,10187 +8599,8599 +404455,404455 +313463,313463 +2766,2766 +14535,14535 +3004,271460 +13013,13013 +107733,107733 +1771,6830 +4242,4242 +5203,5203 +189201,189201 +16973,16973 +42259,42259 +10105,263802 +1958,33673 +14736,14736 +7139,7139 +265026,265026 +17578,17578 +171424,137909 +63901,63901 +31794,31794 +17687,15066 +9410,9410 +180654,180654 +21749,21749 +1706,1706 +185,185 +11200,35282 +121414,121414 +8542,8542 +35585,70267 +151887,151887 +75187,75187 +30947,30947 +14146,14146 +39415,39415 +123417,463 +6605,6605 +10852,10852 +88556,88556 +146864,146864 +240224,240224 +46586,463 +279443,312590 +143869,143869 +14133,14133 +9885,40249 +137969,137969 +89423,89423 +29582,29582 +12238,345081 +35524,28288 +128672,128672 +3306,3306 +26106,26106 +286125,286125 +53557,53557 +9514,9514 +27961,105134 +131735,131735 +16498,16498 +17245,17245 +138091,138091 +77596,77596 +7135,7135 +40503,40503 +158232,158232 +70502,70502 +2029,2029 +5423,5423 +18097,18097 +84825,84825 +22490,22490 +12557,12557 +7250,7250 +64611,64611 +12436,12436 +3584,3584 +13657,463 +62,62 +299654,299654 +2308,2308 +3188,3188 +41518,41518 +33020,33020 +2253,590 +14705,14705 +20436,42004 +6220,6220 +95695,32409 +5903,5903 +89071,89071 +34129,34129 +49010,49010 +12623,12623 +199401,199401 +19888,19888 +1437,1437 +186208,186208 +276801,276801 +8081,354330 +228503,228503 +20203,20203 +3841,3841 +125461,125461 +1467,1467 +4834,4834 +35294,35294 +19083,19083 +42132,66044 +18399,18399 +61916,32863 +3028,3028 +1725,1725 +76668,76668 +1436,865 +21362,21362 +141991,263730 +5412,5412 +12929,105134 +14130,14130 +7987,7987 +420517,420517 +304021,318059 +5956,5956 +19378,19378 +12784,52107 +144236,144236 +34902,34902 +152902,152902 +18731,18731 +20306,20306 +315534,315534 +41857,41857 +18618,56687 +13208,13208 +19571,19571 +6474,170096 +12889,40131 +154482,154482 +180920,180920 +1415,1415 +15845,15845 +8813,21990 +927,927 +16985,16985 +26226,26226 +156599,156599 +20040,20040 +332173,332173 +191041,223978 +66213,463 +319350,319350 +329641,329641 +31615,31615 +27668,27668 +7710,7710 +3676,3676 +23049,292732 +32264,32264 +230542,230542 +5472,5472 +60870,60870 +6388,6388 +16461,16461 +15852,15852 +357973,357973 +67627,67627 +15788,15788 +8860,8860 +2033,2033 +119194,119194 +30640,171783 +7693,7693 +5018,5018 +12511,12511 +5566,5566 +180740,180740 +370139,370139 +18574,18574 +2303,2303 +10925,10925 +5259,5259 +302584,463 +203967,203967 +1424,1424 +24857,24857 +67628,67628 +1090,1090 +10355,10355 +155464,155464 +3839,271460 +12763,12763 +1673,1673 +10831,10831 +1989,1989 +360266,360266 +1660,1660 +1938,1938 +53376,53376 +116821,1269 +146253,146253 +331017,331017 +2693,2693 +646,646 +198836,198836 +2490,2490 +9780,9780 +55,55 +23249,23249 +3578,3578 +113200,113200 +128028,463 +353921,260933 +9878,9878 +99992,99992 +3759,3759 +116422,116422 +2115,2115 +366327,366327 +125765,125765 +20281,390609 +17211,17211 +28273,28273 +28905,28905 +2791,2791 +64875,198598 +6598,6598 +12309,12309 +344017,344017 +103405,103405 +244268,376363 +22042,17136 +69544,69544 +629,629 +1216,1216 +172729,172729 +23959,23959 +21528,21528 +6659,6659 +213871,213871 +3538,3538 +5028,5028 +3018,3018 +251208,251208 +3758,3758 +8879,8879 +75991,75991 +5387,5387 +138311,109002 +420523,420517 +242972,242972 +5285,5285 +2297,2297 +174925,174925 +88691,88691 +182252,182252 +17819,17819 +1684,1684 +20694,20694 +231082,231082 +2367,2367 +22019,22019 +40421,40421 +137366,137366 +40851,11821 +1779,1779 +60311,60311 +124648,124648 +21835,21835 +131956,131956 +1333,271460 +1972,1972 +89506,89506 +3715,3715 +1174,1174 +181477,181477 +315131,315131 +30456,30456 +10687,222389 +17568,17568 +5428,5428 +20419,20419 +5211,5211 +4779,463 +2777,2777 +265832,265832 +2166,5377 +204069,204069 +9802,9802 +7400,7400 +331666,331666 +21734,21734 +54559,54559 +32789,32789 +9118,9118 +47082,151091 +251252,345617 +18543,18543 +94891,94891 +2855,14625 +127748,127748 +8058,8058 +250448,313114 +3606,3606 +187801,187801 +39662,39662 +9824,9824 +43340,43340 +134777,134777 +12996,12996 +2929,2929 +10325,10325 +2120,7860 +216742,216742 +67080,67080 +1510,1510 +9090,9090 +356622,356622 +20135,20135 +165600,165600 +6231,6231 +10793,10793 +335090,335090 +5116,5116 +10462,10462 +39372,39372 +416557,416557 +6122,6122 +19717,19717 +23913,23913 +7848,7848 +1001,1001 +69827,164043 +129939,129939 +7473,7473 +4641,28274 +2707,2707 +175090,175090 +216659,216659 +23715,23715 +20801,20801 +110962,110962 +34390,267578 +1865,1865 +2841,2841 +8499,8499 +23435,23435 +259968,259968 +1963,1963 +716,716 +13703,13703 +17026,17026 +4470,4470 +4567,4567 +9852,242615 +5425,5425 +22629,22629 +380728,380728 +8133,14702 +92960,92960 +34583,204583 +10804,10804 +1428,1428 +11737,11737 +7563,7563 +19274,19274 +5750,5750 +132203,132203 +131914,131914 +67932,67932 +420522,420517 +3645,3645 +375553,406093 +28857,28857 +4852,4852 +8916,8916 +329640,329640 +8104,8104 +66198,66198 +259708,259708 +224212,224212 +294969,294969 +32161,32161 +37698,37698 +13672,13672 +3393,3393 +25081,25081 +1190,1190 +31111,31111 +344425,344425 +64608,64608 +146275,146275 +15111,15111 +21195,21195 +4251,4251 +4902,17184 +184108,184108 +12532,12532 +3320,3320 +1546,1546 +8479,8479 +341918,341918 +22209,22209 +2901,2901 +356061,356061 +4812,4812 +11248,11248 +4781,11821 +844,844 +54239,54239 +18736,18736 +8327,8327 +28047,28047 +142303,4098 +194960,194960 +281457,281457 +107829,107829 +19272,19272 +19001,19001 +452,452 +13121,13121 +35652,35652 +118339,118339 +136249,136249 +240133,240133 +27471,27471 +11765,11765 +25623,311848 +1969,1969 +12822,10484 +7462,7462 +1731,1731 +38001,38001 +315058,194998 +5254,5254 +24258,24258 +330806,330806 +265802,265802 +26137,26137 +6614,15634 +225208,225208 +9173,9173 +236639,236639 +340672,340672 +8127,8127 +32340,32340 +2094,2094 +4068,146934 +648,648 +20140,20140 +263437,263437 +21123,21123 +25429,25429 +19915,463 +1718,1718 +17597,39734 +16112,16112 +271349,27162 +17708,17708 +13416,13416 +127798,127798 +37382,37382 +4693,4693 +4355,4355 +1531,1531 +53804,53804 +2421,114189 +3048,3048 +125083,137168 +1556,1556 +136609,136609 +23181,23181 +13792,13792 +28018,28018 +14383,350722 +30306,30306 +183521,183521 +6686,6686 +208583,267021 +103402,103402 +2868,2868 +30255,30255 +264989,342252 +300226,300226 +19368,19368 +24249,24249 +3908,3908 +226878,226878 +24376,24376 +7410,7410 +26205,26205 +2387,17987 +154753,154753 +9079,9079 +58698,58698 +1264,1264 +7927,7927 +122524,122524 +22980,22980 +2223,271460 +3389,3389 +172237,271460 +37000,42223 +4240,4240 +59451,59451 +21980,21980 +3547,3547 +12642,12642 +1826,1826 +150811,150811 +6880,6880 +27837,27837 +39342,39342 +6020,6020 +142615,142615 +25097,223688 +170954,170954 +752,2760 +129368,129368 +9938,9938 +2234,2234 +262381,262381 +57215,284772 +31117,463 +314026,314026 +5775,5775 +2312,2312 +7612,7612 +334824,334824 +89928,89928 +19513,19513 +198059,198059 +8598,8598 +33292,433816 +7327,7327 +2518,2518 +9704,9704 +9091,287030 +214897,214897 +15268,15268 +28100,28100 +30393,4213 +131199,7553 +3484,3484 +7314,262397 +36973,36973 +51008,51008 +9540,9540 +2540,2540 +184159,11725 +5248,5248 +28224,28224 +279769,279769 +130347,130347 +5260,5260 +7826,7826 +151467,151467 +8958,8958 +116593,271460 +24782,24782 +27181,27181 +1439,234372 +2971,2971 +149156,149156 +150690,150690 +31936,31936 +43171,277084 +39564,287571 +46745,46745 +311659,316165 +221641,221641 +23333,23333 +19478,25668 +3007,10205 +175861,175861 +26101,26101 +36745,71099 +157581,157581 +21702,21702 +37175,37175 +182077,182077 +156350,156350 +4925,4925 +305980,305980 +102859,102859 +25789,25789 +6387,6387 +2356,2356 +66459,66459 +308532,308532 +107971,107971 +6420,6420 +368118,368118 +2294,2294 +1749,1749 +19990,19990 +64610,463 +165302,165302 +14708,14708 +3529,3529 +352375,264245 +343274,343274 +27495,27495 +14538,14538 +17008,17008 +38561,345111 +167590,167590 +133063,133063 +9392,15634 +238102,269905 +8009,8009 +201502,201502 +193592,193592 +2887,2887 +15427,15427 +336207,430554 +313850,313850 +10043,10043 +28010,92961 +5784,5784 +285064,63268 +145106,145106 +13306,13306 +4189,4189 +8121,24253 +6532,6532 +36229,36229 +1855,292732 +17062,17062 +139388,139388 +37305,37305 +184922,184922 +5591,242615 +17965,17965 +3482,3482 +191624,191624 +27443,27443 +41068,164043 +1175,1175 +20824,20824 +95710,412059 +305984,63975 +13271,13271 +193488,193488 +15599,114043 +135801,135801 +1362,1362 +113436,113436 +5960,16937 +247493,247493 +15505,255715 +19811,19811 +14191,14191 +11618,11618 +101988,101988 +130240,130240 +27335,34160 +5232,5232 +171090,171090 +4126,4126 +2717,2717 +28231,28231 +218722,261157 +1308,1308 +30485,30485 +16807,16807 +11778,11778 +4229,4229 +8658,8658 +1724,1724 +229902,266031 +145259,145259 +19508,19508 +16232,16232 +411050,411050 +327788,327788 +11753,7378 +8432,8432 +4040,406282 +29099,29099 +11824,11824 +101335,101335 +89550,89550 +1256,1256 +12276,12276 +20647,20647 +320275,320275 +156576,156576 +1148,1148 +287002,287002 +10613,11739 +6764,6764 +2817,2817 +30281,30281 +3820,3820 +7399,7399 +10506,10506 +63379,164043 +15832,463 +40347,40347 +16428,16428 +4376,4376 +3390,3390 +1377,2317 +170274,286403 +143508,143508 +69676,379393 +2578,271460 +5284,5284 +11532,11532 +5029,5029 +242994,242994 +6521,6521 +207848,207848 +262624,262624 +209945,209945 +11863,11863 +287810,336705 +128185,128185 +42968,42968 +160541,160541 +173899,173899 +127533,127533 +11370,11370 +13447,13447 +2431,2431 +22770,22770 +6552,35282 +13373,13373 +155582,155582 +19614,19614 +1837,1837 +7720,7720 +23946,23946 +4062,22188 +1073,1073 +29505,29505 +5959,5959 +281,281 +8063,8063 +202254,202254 +94481,94481 +378010,378010 +173075,192265 +7600,7600 +299556,299556 +13356,13356 +23694,23694 +348934,32674 +258723,258723 +1647,1647 +27826,27826 +2275,7999 +70329,70329 +376574,376574 +7709,198598 +5824,13 +193141,193141 +32670,32670 +144557,144557 +13782,13782 +141035,141035 +31016,42448 +286264,286264 +19560,19560 +369336,369336 +128565,128565 +392494,392494 +24000,24000 +2242,2242 +1959,1959 +240142,116823 +2484,10484 +93522,93522 +141636,141636 +5457,23912 +12691,270846 +10815,463 +15064,15064 +2433,2433 +1326,1326 +1902,1902 +29405,29405 +166658,221918 +103261,184078 +180024,180024 +7584,7584 +350604,350604 +180611,180611 +353799,353799 +16387,16387 +19409,19409 +5253,15728 +46744,46744 +8031,252554 +198447,150998 +313442,313442 +395847,395847 +3736,3736 +27960,27960 +19377,19377 +404427,404427 +12545,12545 +7422,7422 +154343,463 +8633,8633 +27322,27322 +3886,463 +2485,2485 +786,786 +379644,379644 +15804,15804 +3702,3702 +2044,2044 +133425,463 +2740,2740 +196379,255335 +13508,13508 +46747,46747 +136143,264282 +1095,1095 +2573,2573 +101420,101420 +154174,154174 +33198,33198 +137336,137336 +18750,18750 +3549,3549 +6785,6785 +1692,1692 +167715,308263 +295484,295484 +137550,170407 +118955,118955 +65262,318293 +313121,463 +4694,4694 +313822,313822 +162093,162093 +3394,3394 +23388,23388 +12422,12422 +9464,9464 +12063,12063 +6597,6597 +2130,2130 +3696,3696 +2482,2482 +4476,4476 +155693,56933 +1147,1147 +46748,46748 +84730,84730 +308357,308357 +6090,6090 +2086,130603 +3344,3344 +4110,4110 +134815,134815 +310408,310408 +158917,159143 +14076,14076 +13285,13285 +9516,9927 +373107,373107 +698,698 +249816,249816 +172032,172032 +8784,8784 +1217,1219 +1817,1817 +1962,14436 +15278,15278 +8983,349676 +6447,6447 +36783,36783 +260143,260143 +152488,152488 +9921,463 +231954,231954 +5129,5129 +27190,27190 +3122,3122 +9812,9812 +3602,3602 +359194,359194 +6749,6749 +99918,99918 +12746,12746 +206274,206274 +1730,463 +2000,30182 +6284,6284 +13945,13945 +3347,249735 +1170,1170 +203739,203739 +278139,278139 +3845,3845 +211534,211534 +265316,265316 +8486,8486 +218358,218358 +149051,149051 +8039,8039 +329713,223321 +9666,9666 +93688,160757 +3419,3419 +185154,185154 +254617,254617 +214899,372250 +3285,3285 +6898,72660 +28718,28718 +53317,53317 +198961,352781 +4587,422751 +17451,17451 +115793,186074 +5650,463 +7098,7098 +6201,6201 +18901,18901 +3515,3515 +4165,4165 +21239,21239 +32236,32236 +6668,6668 +202771,306555 +152955,152955 +166081,265584 +5122,5122 +321928,344837 +155081,197585 +89340,425683 +289363,463 +2767,2767 +5788,5788 +21389,463 +29653,29653 +10320,10320 +10213,463 +204887,204887 +28257,28257 +26696,26696 +24224,24224 +337503,337503 +18041,18041 +10502,9319 +137348,182604 +6787,10484 +358340,358340 +17106,11821 +2980,2980 +27959,27959 +7822,7822 +24783,24783 +11670,463 +4122,11821 +2878,2878 +13805,13805 +294880,294880 +5367,5367 +3422,3422 +41259,41259 +8569,8569 +4907,4907 +6485,6485 +18044,18044 +32260,32260 +22861,166278 +11415,11415 +10453,10453 +399,399 +3504,3504 +4492,4492 +1446,432 +240624,240624 +6711,6711 +10709,229684 +20422,320795 +339107,339107 +101737,101737 +4041,4041 +23499,23499 +41541,41541 +274056,274056 +2688,2688 +125879,125879 +172307,463 +18686,18686 +9214,9214 +126207,126207 +99079,99079 +212436,212436 +64204,171317 +29613,127052 +7467,13805 +352997,430966 +2910,2910 +316555,316555 +3623,3623 +212027,212027 +120426,120426 +2770,2770 +258302,258302 +17250,17250 +4127,4127 +289843,95527 +10400,10400 +7972,7972 +126444,126444 +18755,267021 +4004,4004 +417,417 +3804,3804 +24067,24067 +4845,4845 +230864,230864 +2979,2979 +231939,231939 +10712,10712 +50849,50849 +1932,261955 +9851,463 +1422,1422 +89962,89962 +5546,5546 +4910,4910 +193295,297481 +31145,31145 +1426,1426 +144110,144110 +189489,189489 +154674,226464 +19370,32863 +1527,1527 +4367,4367 +7308,402339 +6549,6549 +40508,166239 +11416,11416 +152758,56933 +42050,42050 +89953,89953 +3934,3934 +36611,36611 +2004,2004 +7320,354202 +35173,244216 +258855,258855 +8487,8487 +65611,65611 +38558,38558 +2502,2502 +175512,175512 +204543,1111 +2318,463 +6535,6535 +10715,82138 +32032,32032 +182875,182875 +29096,29096 +113819,113819 +5015,5015 +3074,3074 +3052,3052 +1748,15613 +9004,9004 +764,764 +23964,23964 +1511,1511 +8392,8392 +1094,5458 +141019,141019 +4724,13805 +1604,1604 +17003,17003 +7601,7601 +2952,248702 +24985,11725 +2272,8632 +11028,11028 +2456,2456 +2386,463 +24959,24959 +246701,271460 +15393,463 +18905,463 +1258,271460 +226610,316165 +232895,379644 +4035,292653 +1298,1298 +677,292733 +3343,3343 +4077,166429 +4888,225981 +13166,13166 +155250,155250 +6283,387485 +1824,1824 +6546,6546 +8689,8689 +3728,357874 +2956,2956 +5130,390609 +1923,1923 +4792,238250 +12205,12205 +13713,463 +419763,419763 +10816,10816 +11017,463 +1797,463 +5749,463 +3990,227510 +5588,433816 +7262,359751 +5314,5314 +276022,276022 +1751,367987 +7688,463 +2719,429874 +5050,5050 +1931,261955 +2083,463 +4143,463 +4149,4149 +5339,263733 +15549,15549 +2785,463 +6424,6424 +4378,114043 +6932,6932 +3510,3510 +5894,463 +2425,11821 +2136,463 +2407,463 +5895,345111 +10799,463 +205322,231939 +2679,11725 +7682,463 +3737,433816 +3522,414696 +2921,463 +1410,463 +1406,463 +16398,463 +7316,463 +5048,429874 +11901,463 +5432,463 diff --git a/experiments/cluster_ranking/poetry.lock b/experiments/cluster_ranking/poetry.lock new file mode 100644 index 0000000000000000000000000000000000000000..c2ae35fe86744946856c41c904bc7f67342770ad --- /dev/null +++ b/experiments/cluster_ranking/poetry.lock @@ -0,0 +1,3348 @@ +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. + +[[package]] +name = "anyio" +version = "4.7.0" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.9" +files = [ + {file = "anyio-4.7.0-py3-none-any.whl", hash = "sha256:ea60c3723ab42ba6fff7e8ccb0488c898ec538ff4df1f1d5e642c3601d07e352"}, + {file = "anyio-4.7.0.tar.gz", hash = "sha256:2f834749c602966b7d456a7567cafcb309f96482b5081d14ac93ccd457f9dd48"}, +] + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" +typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""} + +[package.extras] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21)"] +trio = ["trio (>=0.26.1)"] + +[[package]] +name = "appnope" +version = "0.1.4" +description = "Disable App Nap on macOS >= 10.9" +optional = false +python-versions = ">=3.6" +files = [ + {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, + {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, +] + +[[package]] +name = "argon2-cffi" +version = "23.1.0" +description = "Argon2 for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"}, + {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"}, +] + +[package.dependencies] +argon2-cffi-bindings = "*" + +[package.extras] +dev = ["argon2-cffi[tests,typing]", "tox (>4)"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-copybutton", "sphinx-notfound-page"] +tests = ["hypothesis", "pytest"] +typing = ["mypy"] + +[[package]] +name = "argon2-cffi-bindings" +version = "21.2.0" +description = "Low-level CFFI bindings for Argon2" +optional = false +python-versions = ">=3.6" +files = [ + {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f"}, + {file = "argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3e385d1c39c520c08b53d63300c3ecc28622f076f4c2b0e6d7e796e9f6502194"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3e3cc67fdb7d82c4718f19b4e7a87123caf8a93fde7e23cf66ac0337d3cb3f"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a22ad9800121b71099d0fb0a65323810a15f2e292f2ba450810a7316e128ee5"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9f8b450ed0547e3d473fdc8612083fd08dd2120d6ac8f73828df9b7d45bb351"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:93f9bf70084f97245ba10ee36575f0c3f1e7d7724d67d8e5b08e61787c320ed7"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3b9ef65804859d335dc6b31582cad2c5166f0c3e7975f324d9ffaa34ee7e6583"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4966ef5848d820776f5f562a7d45fdd70c2f330c961d0d745b784034bd9f48d"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ef543a89dee4db46a1a6e206cd015360e5a75822f76df533845c3cbaf72670"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2937d286e2ad0cc79a7087d3c272832865f779430e0cc2b4f3718d3159b0cb"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5e00316dabdaea0b2dd82d141cc66889ced0cdcbfa599e8b471cf22c620c329a"}, +] + +[package.dependencies] +cffi = ">=1.0.1" + +[package.extras] +dev = ["cogapp", "pre-commit", "pytest", "wheel"] +tests = ["pytest"] + +[[package]] +name = "arrow" +version = "1.3.0" +description = "Better dates & times for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"}, + {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"}, +] + +[package.dependencies] +python-dateutil = ">=2.7.0" +types-python-dateutil = ">=2.8.10" + +[package.extras] +doc = ["doc8", "sphinx (>=7.0.0)", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx_rtd_theme (>=1.3.0)"] +test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytz (==2021.1)", "simplejson (==3.*)"] + +[[package]] +name = "asttokens" +version = "3.0.0" +description = "Annotate AST trees with source code positions" +optional = false +python-versions = ">=3.8" +files = [ + {file = "asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2"}, + {file = "asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7"}, +] + +[package.extras] +astroid = ["astroid (>=2,<4)"] +test = ["astroid (>=2,<4)", "pytest", "pytest-cov", "pytest-xdist"] + +[[package]] +name = "async-lru" +version = "2.0.4" +description = "Simple LRU cache for asyncio" +optional = false +python-versions = ">=3.8" +files = [ + {file = "async-lru-2.0.4.tar.gz", hash = "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627"}, + {file = "async_lru-2.0.4-py3-none-any.whl", hash = "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224"}, +] + +[[package]] +name = "attrs" +version = "24.3.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.8" +files = [ + {file = "attrs-24.3.0-py3-none-any.whl", hash = "sha256:ac96cd038792094f438ad1f6ff80837353805ac950cd2aa0e0625ef19850c308"}, + {file = "attrs-24.3.0.tar.gz", hash = "sha256:8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff"}, +] + +[package.extras] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] + +[[package]] +name = "babel" +version = "2.16.0" +description = "Internationalization utilities" +optional = false +python-versions = ">=3.8" +files = [ + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, +] + +[package.extras] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] +html5lib = ["html5lib"] +lxml = ["lxml"] + +[[package]] +name = "black" +version = "24.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.9" +files = [ + {file = "black-24.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6668650ea4b685440857138e5fe40cde4d652633b1bdffc62933d0db4ed9812"}, + {file = "black-24.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1c536fcf674217e87b8cc3657b81809d3c085d7bf3ef262ead700da345bfa6ea"}, + {file = "black-24.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:649fff99a20bd06c6f727d2a27f401331dc0cc861fb69cde910fe95b01b5928f"}, + {file = "black-24.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe4d6476887de70546212c99ac9bd803d90b42fc4767f058a0baa895013fbb3e"}, + {file = "black-24.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5a2221696a8224e335c28816a9d331a6c2ae15a2ee34ec857dcf3e45dbfa99ad"}, + {file = "black-24.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f9da3333530dbcecc1be13e69c250ed8dfa67f43c4005fb537bb426e19200d50"}, + {file = "black-24.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4007b1393d902b48b36958a216c20c4482f601569d19ed1df294a496eb366392"}, + {file = "black-24.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:394d4ddc64782e51153eadcaaca95144ac4c35e27ef9b0a42e121ae7e57a9175"}, + {file = "black-24.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b5e39e0fae001df40f95bd8cc36b9165c5e2ea88900167bddf258bacef9bbdc3"}, + {file = "black-24.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d37d422772111794b26757c5b55a3eade028aa3fde43121ab7b673d050949d65"}, + {file = "black-24.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:14b3502784f09ce2443830e3133dacf2c0110d45191ed470ecb04d0f5f6fcb0f"}, + {file = "black-24.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:30d2c30dc5139211dda799758559d1b049f7f14c580c409d6ad925b74a4208a8"}, + {file = "black-24.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cbacacb19e922a1d75ef2b6ccaefcd6e93a2c05ede32f06a21386a04cedb981"}, + {file = "black-24.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1f93102e0c5bb3907451063e08b9876dbeac810e7da5a8bfb7aeb5a9ef89066b"}, + {file = "black-24.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ddacb691cdcdf77b96f549cf9591701d8db36b2f19519373d60d31746068dbf2"}, + {file = "black-24.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:680359d932801c76d2e9c9068d05c6b107f2584b2a5b88831c83962eb9984c1b"}, + {file = "black-24.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:17374989640fbca88b6a448129cd1745c5eb8d9547b464f281b251dd00155ccd"}, + {file = "black-24.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:63f626344343083322233f175aaf372d326de8436f5928c042639a4afbbf1d3f"}, + {file = "black-24.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfa1d0cb6200857f1923b602f978386a3a2758a65b52e0950299ea014be6800"}, + {file = "black-24.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cd9c95431d94adc56600710f8813ee27eea544dd118d45896bb734e9d7a0dc7"}, + {file = "black-24.10.0-py3-none-any.whl", hash = "sha256:3bb2b7a1f7b685f85b11fed1ef10f8a9148bceb49853e47a294a3dd963c1dd7d"}, + {file = "black-24.10.0.tar.gz", hash = "sha256:846ea64c97afe3bc677b761787993be4991810ecc7a4a937816dd6bddedc4875"}, +] + +[package.dependencies] +click = ">=8.0.0" +ipython = {version = ">=7.8.0", optional = true, markers = "extra == \"jupyter\""} +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tokenize-rt = {version = ">=3.2.0", optional = true, markers = "extra == \"jupyter\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.10)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "bleach" +version = "6.2.0" +description = "An easy safelist-based HTML-sanitizing tool." +optional = false +python-versions = ">=3.9" +files = [ + {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"}, + {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"}, +] + +[package.dependencies] +webencodings = "*" + +[package.extras] +css = ["tinycss2 (>=1.1.0,<1.5)"] + +[[package]] +name = "certifi" +version = "2024.12.14" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56"}, + {file = "certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db"}, +] + +[[package]] +name = "cffi" +version = "1.17.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.4.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "comm" +version = "0.2.2" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +optional = false +python-versions = ">=3.8" +files = [ + {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"}, + {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"}, +] + +[package.dependencies] +traitlets = ">=4" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "contourpy" +version = "1.3.1" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.10" +files = [ + {file = "contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab"}, + {file = "contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595"}, + {file = "contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697"}, + {file = "contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f"}, + {file = "contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375"}, + {file = "contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d"}, + {file = "contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e"}, + {file = "contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1"}, + {file = "contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82"}, + {file = "contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53"}, + {file = "contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699"}, +] + +[package.dependencies] +numpy = ">=1.23" + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.11.1)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "wurlitzer"] + +[[package]] +name = "cycler" +version = "0.12.1" +description = "Composable style cycles" +optional = false +python-versions = ">=3.8" +files = [ + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, +] + +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + +[[package]] +name = "debugpy" +version = "1.8.11" +description = "An implementation of the Debug Adapter Protocol for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "debugpy-1.8.11-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:2b26fefc4e31ff85593d68b9022e35e8925714a10ab4858fb1b577a8a48cb8cd"}, + {file = "debugpy-1.8.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61bc8b3b265e6949855300e84dc93d02d7a3a637f2aec6d382afd4ceb9120c9f"}, + {file = "debugpy-1.8.11-cp310-cp310-win32.whl", hash = "sha256:c928bbf47f65288574b78518449edaa46c82572d340e2750889bbf8cd92f3737"}, + {file = "debugpy-1.8.11-cp310-cp310-win_amd64.whl", hash = "sha256:8da1db4ca4f22583e834dcabdc7832e56fe16275253ee53ba66627b86e304da1"}, + {file = "debugpy-1.8.11-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:85de8474ad53ad546ff1c7c7c89230db215b9b8a02754d41cb5a76f70d0be296"}, + {file = "debugpy-1.8.11-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ffc382e4afa4aee367bf413f55ed17bd91b191dcaf979890af239dda435f2a1"}, + {file = "debugpy-1.8.11-cp311-cp311-win32.whl", hash = "sha256:40499a9979c55f72f4eb2fc38695419546b62594f8af194b879d2a18439c97a9"}, + {file = "debugpy-1.8.11-cp311-cp311-win_amd64.whl", hash = "sha256:987bce16e86efa86f747d5151c54e91b3c1e36acc03ce1ddb50f9d09d16ded0e"}, + {file = "debugpy-1.8.11-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:84e511a7545d11683d32cdb8f809ef63fc17ea2a00455cc62d0a4dbb4ed1c308"}, + {file = "debugpy-1.8.11-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce291a5aca4985d82875d6779f61375e959208cdf09fcec40001e65fb0a54768"}, + {file = "debugpy-1.8.11-cp312-cp312-win32.whl", hash = "sha256:28e45b3f827d3bf2592f3cf7ae63282e859f3259db44ed2b129093ca0ac7940b"}, + {file = "debugpy-1.8.11-cp312-cp312-win_amd64.whl", hash = "sha256:44b1b8e6253bceada11f714acf4309ffb98bfa9ac55e4fce14f9e5d4484287a1"}, + {file = "debugpy-1.8.11-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:8988f7163e4381b0da7696f37eec7aca19deb02e500245df68a7159739bbd0d3"}, + {file = "debugpy-1.8.11-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c1f6a173d1140e557347419767d2b14ac1c9cd847e0b4c5444c7f3144697e4e"}, + {file = "debugpy-1.8.11-cp313-cp313-win32.whl", hash = "sha256:bb3b15e25891f38da3ca0740271e63ab9db61f41d4d8541745cfc1824252cb28"}, + {file = "debugpy-1.8.11-cp313-cp313-win_amd64.whl", hash = "sha256:d8768edcbeb34da9e11bcb8b5c2e0958d25218df7a6e56adf415ef262cd7b6d1"}, + {file = "debugpy-1.8.11-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:ad7efe588c8f5cf940f40c3de0cd683cc5b76819446abaa50dc0829a30c094db"}, + {file = "debugpy-1.8.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:189058d03a40103a57144752652b3ab08ff02b7595d0ce1f651b9acc3a3a35a0"}, + {file = "debugpy-1.8.11-cp38-cp38-win32.whl", hash = "sha256:32db46ba45849daed7ccf3f2e26f7a386867b077f39b2a974bb5c4c2c3b0a280"}, + {file = "debugpy-1.8.11-cp38-cp38-win_amd64.whl", hash = "sha256:116bf8342062246ca749013df4f6ea106f23bc159305843491f64672a55af2e5"}, + {file = "debugpy-1.8.11-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:654130ca6ad5de73d978057eaf9e582244ff72d4574b3e106fb8d3d2a0d32458"}, + {file = "debugpy-1.8.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23dc34c5e03b0212fa3c49a874df2b8b1b8fda95160bd79c01eb3ab51ea8d851"}, + {file = "debugpy-1.8.11-cp39-cp39-win32.whl", hash = "sha256:52d8a3166c9f2815bfae05f386114b0b2d274456980d41f320299a8d9a5615a7"}, + {file = "debugpy-1.8.11-cp39-cp39-win_amd64.whl", hash = "sha256:52c3cf9ecda273a19cc092961ee34eb9ba8687d67ba34cc7b79a521c1c64c4c0"}, + {file = "debugpy-1.8.11-py2.py3-none-any.whl", hash = "sha256:0e22f846f4211383e6a416d04b4c13ed174d24cc5d43f5fd52e7821d0ebc8920"}, + {file = "debugpy-1.8.11.tar.gz", hash = "sha256:6ad2688b69235c43b020e04fecccdf6a96c8943ca9c2fb340b8adc103c655e57"}, +] + +[[package]] +name = "decorator" +version = "5.1.1" +description = "Decorators for Humans" +optional = false +python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +description = "XML bomb protection for Python stdlib modules" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, + {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, +] + +[[package]] +name = "executing" +version = "2.1.0" +description = "Get the currently executing AST node of a frame, and other information" +optional = false +python-versions = ">=3.8" +files = [ + {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, + {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, +] + +[package.extras] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] + +[[package]] +name = "fastjsonschema" +version = "2.21.1" +description = "Fastest Python implementation of JSON schema" +optional = false +python-versions = "*" +files = [ + {file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"}, + {file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"}, +] + +[package.extras] +devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"] + +[[package]] +name = "fonttools" +version = "4.55.3" +description = "Tools to manipulate font files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fonttools-4.55.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1dcc07934a2165ccdc3a5a608db56fb3c24b609658a5b340aee4ecf3ba679dc0"}, + {file = "fonttools-4.55.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f7d66c15ba875432a2d2fb419523f5d3d347f91f48f57b8b08a2dfc3c39b8a3f"}, + {file = "fonttools-4.55.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e4ae3592e62eba83cd2c4ccd9462dcfa603ff78e09110680a5444c6925d841"}, + {file = "fonttools-4.55.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62d65a3022c35e404d19ca14f291c89cc5890032ff04f6c17af0bd1927299674"}, + {file = "fonttools-4.55.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d342e88764fb201286d185093781bf6628bbe380a913c24adf772d901baa8276"}, + {file = "fonttools-4.55.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:dd68c87a2bfe37c5b33bcda0fba39b65a353876d3b9006fde3adae31f97b3ef5"}, + {file = "fonttools-4.55.3-cp310-cp310-win32.whl", hash = "sha256:1bc7ad24ff98846282eef1cbeac05d013c2154f977a79886bb943015d2b1b261"}, + {file = "fonttools-4.55.3-cp310-cp310-win_amd64.whl", hash = "sha256:b54baf65c52952db65df39fcd4820668d0ef4766c0ccdf32879b77f7c804d5c5"}, + {file = "fonttools-4.55.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8c4491699bad88efe95772543cd49870cf756b019ad56294f6498982408ab03e"}, + {file = "fonttools-4.55.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5323a22eabddf4b24f66d26894f1229261021dacd9d29e89f7872dd8c63f0b8b"}, + {file = "fonttools-4.55.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5480673f599ad410695ca2ddef2dfefe9df779a9a5cda89503881e503c9c7d90"}, + {file = "fonttools-4.55.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da9da6d65cd7aa6b0f806556f4985bcbf603bf0c5c590e61b43aa3e5a0f822d0"}, + {file = "fonttools-4.55.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e894b5bd60d9f473bed7a8f506515549cc194de08064d829464088d23097331b"}, + {file = "fonttools-4.55.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:aee3b57643827e237ff6ec6d28d9ff9766bd8b21e08cd13bff479e13d4b14765"}, + {file = "fonttools-4.55.3-cp311-cp311-win32.whl", hash = "sha256:eb6ca911c4c17eb51853143624d8dc87cdcdf12a711fc38bf5bd21521e79715f"}, + {file = "fonttools-4.55.3-cp311-cp311-win_amd64.whl", hash = "sha256:6314bf82c54c53c71805318fcf6786d986461622dd926d92a465199ff54b1b72"}, + {file = "fonttools-4.55.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f9e736f60f4911061235603a6119e72053073a12c6d7904011df2d8fad2c0e35"}, + {file = "fonttools-4.55.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7a8aa2c5e5b8b3bcb2e4538d929f6589a5c6bdb84fd16e2ed92649fb5454f11c"}, + {file = "fonttools-4.55.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:07f8288aacf0a38d174445fc78377a97fb0b83cfe352a90c9d9c1400571963c7"}, + {file = "fonttools-4.55.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8d5e8916c0970fbc0f6f1bece0063363bb5857a7f170121a4493e31c3db3314"}, + {file = "fonttools-4.55.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ae3b6600565b2d80b7c05acb8e24d2b26ac407b27a3f2e078229721ba5698427"}, + {file = "fonttools-4.55.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:54153c49913f45065c8d9e6d0c101396725c5621c8aee744719300f79771d75a"}, + {file = "fonttools-4.55.3-cp312-cp312-win32.whl", hash = "sha256:827e95fdbbd3e51f8b459af5ea10ecb4e30af50221ca103bea68218e9615de07"}, + {file = "fonttools-4.55.3-cp312-cp312-win_amd64.whl", hash = "sha256:e6e8766eeeb2de759e862004aa11a9ea3d6f6d5ec710551a88b476192b64fd54"}, + {file = "fonttools-4.55.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a430178ad3e650e695167cb53242dae3477b35c95bef6525b074d87493c4bf29"}, + {file = "fonttools-4.55.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:529cef2ce91dc44f8e407cc567fae6e49a1786f2fefefa73a294704c415322a4"}, + {file = "fonttools-4.55.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e75f12c82127486fac2d8bfbf5bf058202f54bf4f158d367e41647b972342ca"}, + {file = "fonttools-4.55.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:859c358ebf41db18fb72342d3080bce67c02b39e86b9fbcf1610cca14984841b"}, + {file = "fonttools-4.55.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:546565028e244a701f73df6d8dd6be489d01617863ec0c6a42fa25bf45d43048"}, + {file = "fonttools-4.55.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:aca318b77f23523309eec4475d1fbbb00a6b133eb766a8bdc401faba91261abe"}, + {file = "fonttools-4.55.3-cp313-cp313-win32.whl", hash = "sha256:8c5ec45428edaa7022f1c949a632a6f298edc7b481312fc7dc258921e9399628"}, + {file = "fonttools-4.55.3-cp313-cp313-win_amd64.whl", hash = "sha256:11e5de1ee0d95af4ae23c1a138b184b7f06e0b6abacabf1d0db41c90b03d834b"}, + {file = "fonttools-4.55.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:caf8230f3e10f8f5d7593eb6d252a37caf58c480b19a17e250a63dad63834cf3"}, + {file = "fonttools-4.55.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b586ab5b15b6097f2fb71cafa3c98edfd0dba1ad8027229e7b1e204a58b0e09d"}, + {file = "fonttools-4.55.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8c2794ded89399cc2169c4d0bf7941247b8d5932b2659e09834adfbb01589aa"}, + {file = "fonttools-4.55.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf4fe7c124aa3f4e4c1940880156e13f2f4d98170d35c749e6b4f119a872551e"}, + {file = "fonttools-4.55.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:86721fbc389ef5cc1e2f477019e5069e8e4421e8d9576e9c26f840dbb04678de"}, + {file = "fonttools-4.55.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:89bdc5d88bdeec1b15af790810e267e8332d92561dce4f0748c2b95c9bdf3926"}, + {file = "fonttools-4.55.3-cp38-cp38-win32.whl", hash = "sha256:bc5dbb4685e51235ef487e4bd501ddfc49be5aede5e40f4cefcccabc6e60fb4b"}, + {file = "fonttools-4.55.3-cp38-cp38-win_amd64.whl", hash = "sha256:cd70de1a52a8ee2d1877b6293af8a2484ac82514f10b1c67c1c5762d38073e56"}, + {file = "fonttools-4.55.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bdcc9f04b36c6c20978d3f060e5323a43f6222accc4e7fcbef3f428e216d96af"}, + {file = "fonttools-4.55.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c3ca99e0d460eff46e033cd3992a969658c3169ffcd533e0a39c63a38beb6831"}, + {file = "fonttools-4.55.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22f38464daa6cdb7b6aebd14ab06609328fe1e9705bb0fcc7d1e69de7109ee02"}, + {file = "fonttools-4.55.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed63959d00b61959b035c7d47f9313c2c1ece090ff63afea702fe86de00dbed4"}, + {file = "fonttools-4.55.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5e8d657cd7326eeaba27de2740e847c6b39dde2f8d7cd7cc56f6aad404ddf0bd"}, + {file = "fonttools-4.55.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:fb594b5a99943042c702c550d5494bdd7577f6ef19b0bc73877c948a63184a32"}, + {file = "fonttools-4.55.3-cp39-cp39-win32.whl", hash = "sha256:dc5294a3d5c84226e3dbba1b6f61d7ad813a8c0238fceea4e09aa04848c3d851"}, + {file = "fonttools-4.55.3-cp39-cp39-win_amd64.whl", hash = "sha256:aedbeb1db64496d098e6be92b2e63b5fac4e53b1b92032dfc6988e1ea9134a4d"}, + {file = "fonttools-4.55.3-py3-none-any.whl", hash = "sha256:f412604ccbeee81b091b420272841e5ec5ef68967a9790e80bffd0e30b8e2977"}, + {file = "fonttools-4.55.3.tar.gz", hash = "sha256:3983313c2a04d6cc1fe9251f8fc647754cf49a61dac6cb1e7249ae67afaafc45"}, +] + +[package.extras] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] +graphite = ["lz4 (>=1.7.4.2)"] +interpolatable = ["munkres", "pycairo", "scipy"] +lxml = ["lxml (>=4.0)"] +pathops = ["skia-pathops (>=0.5.0)"] +plot = ["matplotlib"] +repacker = ["uharfbuzz (>=0.23.0)"] +symfont = ["sympy"] +type1 = ["xattr"] +ufo = ["fs (>=2.2.0,<3)"] +unicode = ["unicodedata2 (>=15.1.0)"] +woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] + +[[package]] +name = "fqdn" +version = "1.5.1" +description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" +optional = false +python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" +files = [ + {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, + {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, +] + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "1.0.7" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"}, + {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"}, +] + +[package.dependencies] +certifi = "*" +h11 = ">=0.13,<0.15" + +[package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<1.0)"] + +[[package]] +name = "httpx" +version = "0.28.1" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"}, + {file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"}, +] + +[package.dependencies] +anyio = "*" +certifi = "*" +httpcore = "==1.*" +idna = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "idna" +version = "3.10" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.6" +files = [ + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, +] + +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + +[[package]] +name = "ipykernel" +version = "6.29.5" +description = "IPython Kernel for Jupyter" +optional = false +python-versions = ">=3.8" +files = [ + {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"}, + {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"}, +] + +[package.dependencies] +appnope = {version = "*", markers = "platform_system == \"Darwin\""} +comm = ">=0.1.1" +debugpy = ">=1.6.5" +ipython = ">=7.23.1" +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +matplotlib-inline = ">=0.1" +nest-asyncio = "*" +packaging = "*" +psutil = "*" +pyzmq = ">=24" +tornado = ">=6.1" +traitlets = ">=5.4.0" + +[package.extras] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "ipython" +version = "8.30.0" +description = "IPython: Productive Interactive Computing" +optional = false +python-versions = ">=3.10" +files = [ + {file = "ipython-8.30.0-py3-none-any.whl", hash = "sha256:85ec56a7e20f6c38fce7727dcca699ae4ffc85985aa7b23635a8008f918ae321"}, + {file = "ipython-8.30.0.tar.gz", hash = "sha256:cb0a405a306d2995a5cbb9901894d240784a9f341394c6ba3f4fe8c6eb89ff6e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +decorator = "*" +jedi = ">=0.16" +matplotlib-inline = "*" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""} +prompt_toolkit = ">=3.0.41,<3.1.0" +pygments = ">=2.4.0" +stack_data = "*" +traitlets = ">=5.13.0" + +[package.extras] +all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] +black = ["black"] +doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing_extensions"] +kernel = ["ipykernel"] +matplotlib = ["matplotlib"] +nbconvert = ["nbconvert"] +nbformat = ["nbformat"] +notebook = ["ipywidgets", "notebook"] +parallel = ["ipyparallel"] +qtconsole = ["qtconsole"] +test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] + +[[package]] +name = "isoduration" +version = "20.11.0" +description = "Operations with ISO 8601 durations" +optional = false +python-versions = ">=3.7" +files = [ + {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, + {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, +] + +[package.dependencies] +arrow = ">=0.15.0" + +[[package]] +name = "jedi" +version = "0.19.2" +description = "An autocompletion tool for Python that can be used for text editors." +optional = false +python-versions = ">=3.6" +files = [ + {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"}, + {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"}, +] + +[package.dependencies] +parso = ">=0.8.4,<0.9.0" + +[package.extras] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"] + +[[package]] +name = "jinja2" +version = "3.1.4" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "joblib" +version = "1.4.2" +description = "Lightweight pipelining with Python functions" +optional = false +python-versions = ">=3.8" +files = [ + {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, + {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, +] + +[[package]] +name = "json5" +version = "0.10.0" +description = "A Python implementation of the JSON5 data format." +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "json5-0.10.0-py3-none-any.whl", hash = "sha256:19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa"}, + {file = "json5-0.10.0.tar.gz", hash = "sha256:e66941c8f0a02026943c52c2eb34ebeb2a6f819a0be05920a6f5243cd30fd559"}, +] + +[package.extras] +dev = ["build (==1.2.2.post1)", "coverage (==7.5.3)", "mypy (==1.13.0)", "pip (==24.3.1)", "pylint (==3.2.3)", "ruff (==0.7.3)", "twine (==5.1.1)", "uv (==0.5.1)"] + +[[package]] +name = "jsonpointer" +version = "3.0.0" +description = "Identify specific nodes in a JSON document (RFC 6901)" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, + {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} +rpds-py = ">=0.7.1" +uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +webcolors = {version = ">=24.6.0", optional = true, markers = "extra == \"format-nongpl\""} + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] + +[[package]] +name = "jsonschema-specifications" +version = "2024.10.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.9" +files = [ + {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"}, + {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + +[[package]] +name = "jupyter-black" +version = "0.4.0" +description = "A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black. Fork of dnanhkhoa/nb_black." +optional = false +python-versions = "*" +files = [ + {file = "jupyter_black-0.4.0-py3-none-any.whl", hash = "sha256:aa4166786ad213e8863e2ea11e94cde4096c3b8d2734b2f64e0c4aab470beecc"}, + {file = "jupyter_black-0.4.0.tar.gz", hash = "sha256:c88e01eff670d933f96bdf0dbc84bb71880b8a2ef38efca08a0fe6cfd6296db4"}, +] + +[package.dependencies] +black = {version = ">=21", extras = ["jupyter"]} + +[package.extras] +dev = ["build (==1)", "twine (==5)"] +test = ["flake8 (==7)", "flake8-docstrings (==1.7)", "jupyterlab (>=4)", "mypy (==1)", "notebook (>=7)", "pep8-naming (==0.14)", "playwright (==1.46)", "pytest (==8)", "tox (==4)"] + +[[package]] +name = "jupyter-client" +version = "8.6.3" +description = "Jupyter protocol implementation and client libraries" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f"}, + {file = "jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419"}, +] + +[package.dependencies] +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +python-dateutil = ">=2.8.2" +pyzmq = ">=23.0" +tornado = ">=6.2" +traitlets = ">=5.3" + +[package.extras] +docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] + +[[package]] +name = "jupyter-core" +version = "5.7.2" +description = "Jupyter core package. A base package on which Jupyter projects rely." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"}, + {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"}, +] + +[package.dependencies] +platformdirs = ">=2.5" +pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = ">=5.3" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] +test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "jupyter-events" +version = "0.10.0" +description = "Jupyter Event System library" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"}, + {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"}, +] + +[package.dependencies] +jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]} +python-json-logger = ">=2.0.4" +pyyaml = ">=5.3" +referencing = "*" +rfc3339-validator = "*" +rfc3986-validator = ">=0.1.1" +traitlets = ">=5.3" + +[package.extras] +cli = ["click", "rich"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] +test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"] + +[[package]] +name = "jupyter-lsp" +version = "2.2.5" +description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter-lsp-2.2.5.tar.gz", hash = "sha256:793147a05ad446f809fd53ef1cd19a9f5256fd0a2d6b7ce943a982cb4f545001"}, + {file = "jupyter_lsp-2.2.5-py3-none-any.whl", hash = "sha256:45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da"}, +] + +[package.dependencies] +jupyter-server = ">=1.1.2" + +[[package]] +name = "jupyter-server" +version = "2.14.2" +description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server-2.14.2-py3-none-any.whl", hash = "sha256:47ff506127c2f7851a17bf4713434208fc490955d0e8632e95014a9a9afbeefd"}, + {file = "jupyter_server-2.14.2.tar.gz", hash = "sha256:66095021aa9638ced276c248b1d81862e4c50f292d575920bbe960de1c56b12b"}, +] + +[package.dependencies] +anyio = ">=3.1.0" +argon2-cffi = ">=21.1" +jinja2 = ">=3.0.3" +jupyter-client = ">=7.4.4" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-events = ">=0.9.0" +jupyter-server-terminals = ">=0.4.4" +nbconvert = ">=6.4.4" +nbformat = ">=5.3.0" +overrides = ">=5.0" +packaging = ">=22.0" +prometheus-client = ">=0.9" +pywinpty = {version = ">=2.0.1", markers = "os_name == \"nt\""} +pyzmq = ">=24" +send2trash = ">=1.8.2" +terminado = ">=0.8.3" +tornado = ">=6.2.0" +traitlets = ">=5.6.0" +websocket-client = ">=1.7" + +[package.extras] +docs = ["ipykernel", "jinja2", "jupyter-client", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi (>=0.8.0)", "sphinxcontrib-spelling", "sphinxemoji", "tornado", "typing-extensions"] +test = ["flaky", "ipykernel", "pre-commit", "pytest (>=7.0,<9)", "pytest-console-scripts", "pytest-jupyter[server] (>=0.7)", "pytest-timeout", "requests"] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.3" +description = "A Jupyter Server Extension Providing Terminals." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"}, + {file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"}, +] + +[package.dependencies] +pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""} +terminado = ">=0.8.3" + +[package.extras] +docs = ["jinja2", "jupyter-server", "mistune (<4.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] +test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout"] + +[[package]] +name = "jupyterlab" +version = "4.3.3" +description = "JupyterLab computational environment" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab-4.3.3-py3-none-any.whl", hash = "sha256:32a8fd30677e734ffcc3916a4758b9dab21b02015b668c60eb36f84357b7d4b1"}, + {file = "jupyterlab-4.3.3.tar.gz", hash = "sha256:76fa39e548fdac94dc1204af5956c556f54c785f70ee26aa47ea08eda4d5bbcd"}, +] + +[package.dependencies] +async-lru = ">=1.0.0" +httpx = ">=0.25.0" +ipykernel = ">=6.5.0" +jinja2 = ">=3.0.3" +jupyter-core = "*" +jupyter-lsp = ">=2.0.0" +jupyter-server = ">=2.4.0,<3" +jupyterlab-server = ">=2.27.1,<3" +notebook-shim = ">=0.2" +packaging = "*" +setuptools = ">=40.8.0" +tornado = ">=6.2.0" +traitlets = "*" + +[package.extras] +dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.6.9)"] +docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.1.0)", "sphinx-copybutton"] +docs-screenshots = ["altair (==5.4.1)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.2.post3)", "matplotlib (==3.9.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.14.1)", "vega-datasets (==0.9.0)"] +test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"] +upgrade-extension = ["copier (>=9,<10)", "jinja2-time (<0.3)", "pydantic (<3.0)", "pyyaml-include (<3.0)", "tomli-w (<2.0)"] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +description = "Pygments theme using JupyterLab CSS variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, + {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, +] + +[[package]] +name = "jupyterlab-server" +version = "2.27.3" +description = "A set of server components for JupyterLab and JupyterLab like applications." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4"}, + {file = "jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4"}, +] + +[package.dependencies] +babel = ">=2.10" +jinja2 = ">=3.0.3" +json5 = ">=0.9.0" +jsonschema = ">=4.18.0" +jupyter-server = ">=1.21,<3" +packaging = ">=21.3" +requests = ">=2.31" + +[package.extras] +docs = ["autodoc-traits", "jinja2 (<3.2.0)", "mistune (<4)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi (>0.8)"] +openapi = ["openapi-core (>=0.18.0,<0.19.0)", "ruamel-yaml"] +test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.8.0)", "pytest (>=7.0,<8)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] + +[[package]] +name = "jupytext" +version = "1.16.5" +description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupytext-1.16.5-py3-none-any.whl", hash = "sha256:0c96841e364b0ac401e7f45ee67ee523d69eb7bee59476b8ee96ba39fc964491"}, + {file = "jupytext-1.16.5.tar.gz", hash = "sha256:2d5f896f11ebee8342f0f5f9c4818a336e12db164bcaec009ea612cd5dc2caa8"}, +] + +[package.dependencies] +markdown-it-py = ">=1.0" +mdit-py-plugins = "*" +nbformat = "*" +packaging = "*" +pyyaml = "*" + +[package.extras] +dev = ["autopep8", "black", "flake8", "gitpython", "ipykernel", "isort", "jupyter-fs (>=1.0)", "jupyter-server (!=2.11)", "nbconvert", "pre-commit", "pytest", "pytest-cov (>=2.6.1)", "pytest-randomly", "pytest-xdist", "sphinx (<8)", "sphinx-gallery (<0.8)"] +docs = ["myst-parser", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme"] +test = ["pytest", "pytest-randomly", "pytest-xdist"] +test-cov = ["ipykernel", "jupyter-server (!=2.11)", "nbconvert", "pytest", "pytest-cov (>=2.6.1)", "pytest-randomly", "pytest-xdist"] +test-external = ["autopep8", "black", "flake8", "gitpython", "ipykernel", "isort", "jupyter-fs (>=1.0)", "jupyter-server (!=2.11)", "nbconvert", "pre-commit", "pytest", "pytest-randomly", "pytest-xdist", "sphinx (<8)", "sphinx-gallery (<0.8)"] +test-functional = ["pytest", "pytest-randomly", "pytest-xdist"] +test-integration = ["ipykernel", "jupyter-server (!=2.11)", "nbconvert", "pytest", "pytest-randomly", "pytest-xdist"] +test-ui = ["calysto-bash"] + +[[package]] +name = "kiwisolver" +version = "1.4.7" +description = "A fast implementation of the Cassowary constraint solver" +optional = false +python-versions = ">=3.8" +files = [ + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5d5abf8f8ec1f4e22882273c423e16cae834c36856cac348cfbfa68e01c40f3a"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:aeb3531b196ef6f11776c21674dba836aeea9d5bd1cf630f869e3d90b16cfade"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7d755065e4e866a8086c9bdada157133ff466476a2ad7861828e17b6026e22c"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08471d4d86cbaec61f86b217dd938a83d85e03785f51121e791a6e6689a3be95"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bbfcb7165ce3d54a3dfbe731e470f65739c4c1f85bb1018ee912bae139e263b"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d34eb8494bea691a1a450141ebb5385e4b69d38bb8403b5146ad279f4b30fa3"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9242795d174daa40105c1d86aba618e8eab7bf96ba8c3ee614da8302a9f95503"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a0f64a48bb81af7450e641e3fe0b0394d7381e342805479178b3d335d60ca7cf"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8e045731a5416357638d1700927529e2b8ab304811671f665b225f8bf8d8f933"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4322872d5772cae7369f8351da1edf255a604ea7087fe295411397d0cfd9655e"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e1631290ee9271dffe3062d2634c3ecac02c83890ada077d225e081aca8aab89"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:edcfc407e4eb17e037bca59be0e85a2031a2ac87e4fed26d3e9df88b4165f92d"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:4d05d81ecb47d11e7f8932bd8b61b720bf0b41199358f3f5e36d38e28f0532c5"}, + {file = "kiwisolver-1.4.7-cp38-cp38-win32.whl", hash = "sha256:b38ac83d5f04b15e515fd86f312479d950d05ce2368d5413d46c088dda7de90a"}, + {file = "kiwisolver-1.4.7-cp38-cp38-win_amd64.whl", hash = "sha256:d83db7cde68459fc803052a55ace60bea2bae361fc3b7a6d5da07e11954e4b09"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bfa1acfa0c54932d5607e19a2c24646fb4c1ae2694437789129cf099789a3b00"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:eee3ea935c3d227d49b4eb85660ff631556841f6e567f0f7bda972df6c2c9935"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f3160309af4396e0ed04db259c3ccbfdc3621b5559b5453075e5de555e1f3a1b"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a17f6a29cf8935e587cc8a4dbfc8368c55edc645283db0ce9801016f83526c2d"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10849fb2c1ecbfae45a693c070e0320a91b35dd4bcf58172c023b994283a124d"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:ac542bf38a8a4be2dc6b15248d36315ccc65f0743f7b1a76688ffb6b5129a5c2"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0"}, + {file = "kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60"}, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +description = "Python port of markdown-it. Markdown parsing, done right!" +optional = false +python-versions = ">=3.8" +files = [ + {file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"}, + {file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"}, +] + +[package.dependencies] +mdurl = ">=0.1,<1.0" + +[package.extras] +benchmarking = ["psutil", "pytest", "pytest-benchmark"] +code-style = ["pre-commit (>=3.0,<4.0)"] +compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"] +linkify = ["linkify-it-py (>=1,<3)"] +plugins = ["mdit-py-plugins"] +profiling = ["gprof2dot"] +rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "markupsafe" +version = "3.0.2" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.9" +files = [ + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, +] + +[[package]] +name = "matplotlib" +version = "3.10.0" +description = "Python plotting package" +optional = false +python-versions = ">=3.10" +files = [ + {file = "matplotlib-3.10.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2c5829a5a1dd5a71f0e31e6e8bb449bc0ee9dbfb05ad28fc0c6b55101b3a4be6"}, + {file = "matplotlib-3.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2a43cbefe22d653ab34bb55d42384ed30f611bcbdea1f8d7f431011a2e1c62e"}, + {file = "matplotlib-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:607b16c8a73943df110f99ee2e940b8a1cbf9714b65307c040d422558397dac5"}, + {file = "matplotlib-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01d2b19f13aeec2e759414d3bfe19ddfb16b13a1250add08d46d5ff6f9be83c6"}, + {file = "matplotlib-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e6c6461e1fc63df30bf6f80f0b93f5b6784299f721bc28530477acd51bfc3d1"}, + {file = "matplotlib-3.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:994c07b9d9fe8d25951e3202a68c17900679274dadfc1248738dcfa1bd40d7f3"}, + {file = "matplotlib-3.10.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:fd44fc75522f58612ec4a33958a7e5552562b7705b42ef1b4f8c0818e304a363"}, + {file = "matplotlib-3.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c58a9622d5dbeb668f407f35f4e6bfac34bb9ecdcc81680c04d0258169747997"}, + {file = "matplotlib-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:845d96568ec873be63f25fa80e9e7fae4be854a66a7e2f0c8ccc99e94a8bd4ef"}, + {file = "matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5439f4c5a3e2e8eab18e2f8c3ef929772fd5641876db71f08127eed95ab64683"}, + {file = "matplotlib-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4673ff67a36152c48ddeaf1135e74ce0d4bce1bbf836ae40ed39c29edf7e2765"}, + {file = "matplotlib-3.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:7e8632baebb058555ac0cde75db885c61f1212e47723d63921879806b40bec6a"}, + {file = "matplotlib-3.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4659665bc7c9b58f8c00317c3c2a299f7f258eeae5a5d56b4c64226fca2f7c59"}, + {file = "matplotlib-3.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d44cb942af1693cced2604c33a9abcef6205601c445f6d0dc531d813af8a2f5a"}, + {file = "matplotlib-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a994f29e968ca002b50982b27168addfd65f0105610b6be7fa515ca4b5307c95"}, + {file = "matplotlib-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b0558bae37f154fffda54d779a592bc97ca8b4701f1c710055b609a3bac44c8"}, + {file = "matplotlib-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:503feb23bd8c8acc75541548a1d709c059b7184cde26314896e10a9f14df5f12"}, + {file = "matplotlib-3.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:c40ba2eb08b3f5de88152c2333c58cee7edcead0a2a0d60fcafa116b17117adc"}, + {file = "matplotlib-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96f2886f5c1e466f21cc41b70c5a0cd47bfa0015eb2d5793c88ebce658600e25"}, + {file = "matplotlib-3.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:12eaf48463b472c3c0f8dbacdbf906e573013df81a0ab82f0616ea4b11281908"}, + {file = "matplotlib-3.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fbbabc82fde51391c4da5006f965e36d86d95f6ee83fb594b279564a4c5d0d2"}, + {file = "matplotlib-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad2e15300530c1a94c63cfa546e3b7864bd18ea2901317bae8bbf06a5ade6dcf"}, + {file = "matplotlib-3.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3547d153d70233a8496859097ef0312212e2689cdf8d7ed764441c77604095ae"}, + {file = "matplotlib-3.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:c55b20591ced744aa04e8c3e4b7543ea4d650b6c3c4b208c08a05b4010e8b442"}, + {file = "matplotlib-3.10.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ade1003376731a971e398cc4ef38bb83ee8caf0aee46ac6daa4b0506db1fd06"}, + {file = "matplotlib-3.10.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:95b710fea129c76d30be72c3b38f330269363fbc6e570a5dd43580487380b5ff"}, + {file = "matplotlib-3.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdbaf909887373c3e094b0318d7ff230b2ad9dcb64da7ade654182872ab2593"}, + {file = "matplotlib-3.10.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d907fddb39f923d011875452ff1eca29a9e7f21722b873e90db32e5d8ddff12e"}, + {file = "matplotlib-3.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3b427392354d10975c1d0f4ee18aa5844640b512d5311ef32efd4dd7db106ede"}, + {file = "matplotlib-3.10.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5fd41b0ec7ee45cd960a8e71aea7c946a28a0b8a4dcee47d2856b2af051f334c"}, + {file = "matplotlib-3.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:81713dd0d103b379de4516b861d964b1d789a144103277769238c732229d7f03"}, + {file = "matplotlib-3.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:359f87baedb1f836ce307f0e850d12bb5f1936f70d035561f90d41d305fdacea"}, + {file = "matplotlib-3.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae80dc3a4add4665cf2faa90138384a7ffe2a4e37c58d83e115b54287c4f06ef"}, + {file = "matplotlib-3.10.0.tar.gz", hash = "sha256:b886d02a581b96704c9d1ffe55709e49b4d2d52709ccebc4be42db856e511278"}, +] + +[package.dependencies] +contourpy = ">=1.0.1" +cycler = ">=0.10" +fonttools = ">=4.22.0" +kiwisolver = ">=1.3.1" +numpy = ">=1.23" +packaging = ">=20.0" +pillow = ">=8" +pyparsing = ">=2.3.1" +python-dateutil = ">=2.7" + +[package.extras] +dev = ["meson-python (>=0.13.1,<0.17.0)", "pybind11 (>=2.13.2,!=2.13.3)", "setuptools (>=64)", "setuptools_scm (>=7)"] + +[[package]] +name = "matplotlib-inline" +version = "0.1.7" +description = "Inline Matplotlib backend for Jupyter" +optional = false +python-versions = ">=3.8" +files = [ + {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"}, + {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"}, +] + +[package.dependencies] +traitlets = "*" + +[[package]] +name = "mdit-py-plugins" +version = "0.4.2" +description = "Collection of plugins for markdown-it-py" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636"}, + {file = "mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5"}, +] + +[package.dependencies] +markdown-it-py = ">=1.0.0,<4.0.0" + +[package.extras] +code-style = ["pre-commit"] +rtd = ["myst-parser", "sphinx-book-theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "mdurl" +version = "0.1.2" +description = "Markdown URL utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, + {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, +] + +[[package]] +name = "mistune" +version = "3.0.2" +description = "A sane and fast Markdown parser with useful plugins and renderers" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, + {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, +] + +[[package]] +name = "mypy" +version = "1.13.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.6.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] +install-types = ["pip"] +mypyc = ["setuptools (>=50)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "nbclient" +version = "0.10.1" +description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "nbclient-0.10.1-py3-none-any.whl", hash = "sha256:949019b9240d66897e442888cfb618f69ef23dc71c01cb5fced8499c2cfc084d"}, + {file = "nbclient-0.10.1.tar.gz", hash = "sha256:3e93e348ab27e712acd46fccd809139e356eb9a31aab641d1a7991a6eb4e6f68"}, +] + +[package.dependencies] +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +nbformat = ">=5.1" +traitlets = ">=5.4" + +[package.extras] +dev = ["pre-commit"] +docs = ["autodoc-traits", "flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "mock", "moto", "myst-parser", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling", "testpath", "xmltodict"] +test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] + +[[package]] +name = "nbconvert" +version = "7.16.4" +description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." +optional = false +python-versions = ">=3.8" +files = [ + {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, + {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, +] + +[package.dependencies] +beautifulsoup4 = "*" +bleach = "!=5.0.0" +defusedxml = "*" +jinja2 = ">=3.0" +jupyter-core = ">=4.7" +jupyterlab-pygments = "*" +markupsafe = ">=2.0" +mistune = ">=2.0.3,<4" +nbclient = ">=0.5.0" +nbformat = ">=5.7" +packaging = "*" +pandocfilters = ">=1.4.1" +pygments = ">=2.4.1" +tinycss2 = "*" +traitlets = ">=5.1" + +[package.extras] +all = ["flaky", "ipykernel", "ipython", "ipywidgets (>=7.5)", "myst-parser", "nbsphinx (>=0.2.12)", "playwright", "pydata-sphinx-theme", "pyqtwebengine (>=5.15)", "pytest (>=7)", "sphinx (==5.0.2)", "sphinxcontrib-spelling", "tornado (>=6.1)"] +docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] +qtpdf = ["pyqtwebengine (>=5.15)"] +qtpng = ["pyqtwebengine (>=5.15)"] +serve = ["tornado (>=6.1)"] +test = ["flaky", "ipykernel", "ipywidgets (>=7.5)", "pytest (>=7)"] +webpdf = ["playwright"] + +[[package]] +name = "nbformat" +version = "5.10.4" +description = "The Jupyter Notebook format" +optional = false +python-versions = ">=3.8" +files = [ + {file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"}, + {file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"}, +] + +[package.dependencies] +fastjsonschema = ">=2.15" +jsonschema = ">=2.6" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +traitlets = ">=5.1" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["pep440", "pre-commit", "pytest", "testpath"] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +description = "Patch asyncio to allow nested event loops" +optional = false +python-versions = ">=3.5" +files = [ + {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, + {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, +] + +[[package]] +name = "networkx" +version = "3.4.2" +description = "Python package for creating and manipulating graphs and networks" +optional = false +python-versions = ">=3.10" +files = [ + {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, + {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, +] + +[package.dependencies] +matplotlib = {version = ">=3.7", optional = true, markers = "extra == \"default\""} +numpy = {version = ">=1.24", optional = true, markers = "extra == \"default\""} +pandas = {version = ">=2.0", optional = true, markers = "extra == \"default\""} +scipy = {version = ">=1.10,<1.11.0 || >1.11.0,<1.11.1 || >1.11.1", optional = true, markers = "extra == \"default\""} + +[package.extras] +default = ["matplotlib (>=3.7)", "numpy (>=1.24)", "pandas (>=2.0)", "scipy (>=1.10,!=1.11.0,!=1.11.1)"] +developer = ["changelist (==0.5)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"] +doc = ["intersphinx-registry", "myst-nb (>=1.1)", "numpydoc (>=1.8.0)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.15)", "sphinx (>=7.3)", "sphinx-gallery (>=0.16)", "texext (>=0.6.7)"] +example = ["cairocffi (>=1.7)", "contextily (>=1.6)", "igraph (>=0.11)", "momepy (>=0.7.2)", "osmnx (>=1.9)", "scikit-learn (>=1.5)", "seaborn (>=0.13)"] +extra = ["lxml (>=4.6)", "pydot (>=3.0.1)", "pygraphviz (>=1.14)", "sympy (>=1.10)"] +test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +description = "A shim layer for notebook traits and config" +optional = false +python-versions = ">=3.7" +files = [ + {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"}, + {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"}, +] + +[package.dependencies] +jupyter-server = ">=1.8,<3" + +[package.extras] +test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"] + +[[package]] +name = "numpy" +version = "2.2.0" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.10" +files = [ + {file = "numpy-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1e25507d85da11ff5066269d0bd25d06e0a0f2e908415534f3e603d2a78e4ffa"}, + {file = "numpy-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a62eb442011776e4036af5c8b1a00b706c5bc02dc15eb5344b0c750428c94219"}, + {file = "numpy-2.2.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:b606b1aaf802e6468c2608c65ff7ece53eae1a6874b3765f69b8ceb20c5fa78e"}, + {file = "numpy-2.2.0-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:36b2b43146f646642b425dd2027730f99bac962618ec2052932157e213a040e9"}, + {file = "numpy-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fe8f3583e0607ad4e43a954e35c1748b553bfe9fdac8635c02058023277d1b3"}, + {file = "numpy-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:122fd2fcfafdefc889c64ad99c228d5a1f9692c3a83f56c292618a59aa60ae83"}, + {file = "numpy-2.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3f2f5cddeaa4424a0a118924b988746db6ffa8565e5829b1841a8a3bd73eb59a"}, + {file = "numpy-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7fe4bb0695fe986a9e4deec3b6857003b4cfe5c5e4aac0b95f6a658c14635e31"}, + {file = "numpy-2.2.0-cp310-cp310-win32.whl", hash = "sha256:b30042fe92dbd79f1ba7f6898fada10bdaad1847c44f2dff9a16147e00a93661"}, + {file = "numpy-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dc1d6d66f8d37843ed281773c7174f03bf7ad826523f73435deb88ba60d2d4"}, + {file = "numpy-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9874bc2ff574c40ab7a5cbb7464bf9b045d617e36754a7bc93f933d52bd9ffc6"}, + {file = "numpy-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0da8495970f6b101ddd0c38ace92edea30e7e12b9a926b57f5fabb1ecc25bb90"}, + {file = "numpy-2.2.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:0557eebc699c1c34cccdd8c3778c9294e8196df27d713706895edc6f57d29608"}, + {file = "numpy-2.2.0-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:3579eaeb5e07f3ded59298ce22b65f877a86ba8e9fe701f5576c99bb17c283da"}, + {file = "numpy-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40deb10198bbaa531509aad0cd2f9fadb26c8b94070831e2208e7df543562b74"}, + {file = "numpy-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2aed8fcf8abc3020d6a9ccb31dbc9e7d7819c56a348cc88fd44be269b37427e"}, + {file = "numpy-2.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a222d764352c773aa5ebde02dd84dba3279c81c6db2e482d62a3fa54e5ece69b"}, + {file = "numpy-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4e58666988605e251d42c2818c7d3d8991555381be26399303053b58a5bbf30d"}, + {file = "numpy-2.2.0-cp311-cp311-win32.whl", hash = "sha256:4723a50e1523e1de4fccd1b9a6dcea750c2102461e9a02b2ac55ffeae09a4410"}, + {file = "numpy-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:16757cf28621e43e252c560d25b15f18a2f11da94fea344bf26c599b9cf54b73"}, + {file = "numpy-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cff210198bb4cae3f3c100444c5eaa573a823f05c253e7188e1362a5555235b3"}, + {file = "numpy-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58b92a5828bd4d9aa0952492b7de803135038de47343b2aa3cc23f3b71a3dc4e"}, + {file = "numpy-2.2.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:ebe5e59545401fbb1b24da76f006ab19734ae71e703cdb4a8b347e84a0cece67"}, + {file = "numpy-2.2.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:e2b8cd48a9942ed3f85b95ca4105c45758438c7ed28fff1e4ce3e57c3b589d8e"}, + {file = "numpy-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57fcc997ffc0bef234b8875a54d4058afa92b0b0c4223fc1f62f24b3b5e86038"}, + {file = "numpy-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ad7d11b309bd132d74397fcf2920933c9d1dc865487128f5c03d580f2c3d03"}, + {file = "numpy-2.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:cb24cca1968b21355cc6f3da1a20cd1cebd8a023e3c5b09b432444617949085a"}, + {file = "numpy-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0798b138c291d792f8ea40fe3768610f3c7dd2574389e37c3f26573757c8f7ef"}, + {file = "numpy-2.2.0-cp312-cp312-win32.whl", hash = "sha256:afe8fb968743d40435c3827632fd36c5fbde633b0423da7692e426529b1759b1"}, + {file = "numpy-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:3a4199f519e57d517ebd48cb76b36c82da0360781c6a0353e64c0cac30ecaad3"}, + {file = "numpy-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f8c8b141ef9699ae777c6278b52c706b653bf15d135d302754f6b2e90eb30367"}, + {file = "numpy-2.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0f0986e917aca18f7a567b812ef7ca9391288e2acb7a4308aa9d265bd724bdae"}, + {file = "numpy-2.2.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:1c92113619f7b272838b8d6702a7f8ebe5edea0df48166c47929611d0b4dea69"}, + {file = "numpy-2.2.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5a145e956b374e72ad1dff82779177d4a3c62bc8248f41b80cb5122e68f22d13"}, + {file = "numpy-2.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18142b497d70a34b01642b9feabb70156311b326fdddd875a9981f34a369b671"}, + {file = "numpy-2.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7d41d1612c1a82b64697e894b75db6758d4f21c3ec069d841e60ebe54b5b571"}, + {file = "numpy-2.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a98f6f20465e7618c83252c02041517bd2f7ea29be5378f09667a8f654a5918d"}, + {file = "numpy-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e09d40edfdb4e260cb1567d8ae770ccf3b8b7e9f0d9b5c2a9992696b30ce2742"}, + {file = "numpy-2.2.0-cp313-cp313-win32.whl", hash = "sha256:3905a5fffcc23e597ee4d9fb3fcd209bd658c352657548db7316e810ca80458e"}, + {file = "numpy-2.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:a184288538e6ad699cbe6b24859206e38ce5fba28f3bcfa51c90d0502c1582b2"}, + {file = "numpy-2.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7832f9e8eb00be32f15fdfb9a981d6955ea9adc8574c521d48710171b6c55e95"}, + {file = "numpy-2.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f0dd071b95bbca244f4cb7f70b77d2ff3aaaba7fa16dc41f58d14854a6204e6c"}, + {file = "numpy-2.2.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:b0b227dcff8cdc3efbce66d4e50891f04d0a387cce282fe1e66199146a6a8fca"}, + {file = "numpy-2.2.0-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:6ab153263a7c5ccaf6dfe7e53447b74f77789f28ecb278c3b5d49db7ece10d6d"}, + {file = "numpy-2.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e500aba968a48e9019e42c0c199b7ec0696a97fa69037bea163b55398e390529"}, + {file = "numpy-2.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:440cfb3db4c5029775803794f8638fbdbf71ec702caf32735f53b008e1eaece3"}, + {file = "numpy-2.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a55dc7a7f0b6198b07ec0cd445fbb98b05234e8b00c5ac4874a63372ba98d4ab"}, + {file = "numpy-2.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4bddbaa30d78c86329b26bd6aaaea06b1e47444da99eddac7bf1e2fab717bd72"}, + {file = "numpy-2.2.0-cp313-cp313t-win32.whl", hash = "sha256:30bf971c12e4365153afb31fc73f441d4da157153f3400b82db32d04de1e4066"}, + {file = "numpy-2.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:d35717333b39d1b6bb8433fa758a55f1081543de527171543a2b710551d40881"}, + {file = "numpy-2.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e12c6c1ce84628c52d6367863773f7c8c8241be554e8b79686e91a43f1733773"}, + {file = "numpy-2.2.0-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:b6207dc8fb3c8cb5668e885cef9ec7f70189bec4e276f0ff70d5aa078d32c88e"}, + {file = "numpy-2.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a50aeff71d0f97b6450d33940c7181b08be1441c6c193e678211bff11aa725e7"}, + {file = "numpy-2.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:df12a1f99b99f569a7c2ae59aa2d31724e8d835fc7f33e14f4792e3071d11221"}, + {file = "numpy-2.2.0.tar.gz", hash = "sha256:140dd80ff8981a583a60980be1a655068f8adebf7a45a06a6858c873fcdcd4a0"}, +] + +[[package]] +name = "overrides" +version = "7.7.0" +description = "A decorator to automatically detect mismatch when overriding a method." +optional = false +python-versions = ">=3.6" +files = [ + {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"}, + {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"}, +] + +[[package]] +name = "packaging" +version = "24.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, + {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, +] + +[[package]] +name = "pandas" +version = "2.2.3" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5"}, + {file = "pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348"}, + {file = "pandas-2.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed"}, + {file = "pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57"}, + {file = "pandas-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42"}, + {file = "pandas-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f"}, + {file = "pandas-2.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645"}, + {file = "pandas-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039"}, + {file = "pandas-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd"}, + {file = "pandas-2.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698"}, + {file = "pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc"}, + {file = "pandas-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3"}, + {file = "pandas-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32"}, + {file = "pandas-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5"}, + {file = "pandas-2.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9"}, + {file = "pandas-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4"}, + {file = "pandas-2.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3"}, + {file = "pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319"}, + {file = "pandas-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8"}, + {file = "pandas-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a"}, + {file = "pandas-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13"}, + {file = "pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015"}, + {file = "pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28"}, + {file = "pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0"}, + {file = "pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24"}, + {file = "pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659"}, + {file = "pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb"}, + {file = "pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d"}, + {file = "pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468"}, + {file = "pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18"}, + {file = "pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2"}, + {file = "pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4"}, + {file = "pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d"}, + {file = "pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a"}, + {file = "pandas-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc6b93f9b966093cb0fd62ff1a7e4c09e6d546ad7c1de191767baffc57628f39"}, + {file = "pandas-2.2.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5dbca4c1acd72e8eeef4753eeca07de9b1db4f398669d5994086f788a5d7cc30"}, + {file = "pandas-2.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8cd6d7cc958a3910f934ea8dbdf17b2364827bb4dafc38ce6eef6bb3d65ff09c"}, + {file = "pandas-2.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99df71520d25fade9db7c1076ac94eb994f4d2673ef2aa2e86ee039b6746d20c"}, + {file = "pandas-2.2.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:31d0ced62d4ea3e231a9f228366919a5ea0b07440d9d4dac345376fd8e1477ea"}, + {file = "pandas-2.2.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7eee9e7cea6adf3e3d24e304ac6b8300646e2a5d1cd3a3c2abed9101b0846761"}, + {file = "pandas-2.2.3-cp39-cp39-win_amd64.whl", hash = "sha256:4850ba03528b6dd51d6c5d273c46f183f39a9baf3f0143e566b89450965b105e"}, + {file = "pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667"}, +] + +[package.dependencies] +numpy = {version = ">=1.26.0", markers = "python_version >= \"3.12\""} +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +description = "Utilities for writing pandoc filters in python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, + {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, +] + +[[package]] +name = "parso" +version = "0.8.4" +description = "A Python Parser" +optional = false +python-versions = ">=3.6" +files = [ + {file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"}, + {file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"}, +] + +[package.extras] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["docopt", "pytest"] + +[[package]] +name = "pathspec" +version = "0.12.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, +] + +[[package]] +name = "patsy" +version = "1.0.1" +description = "A Python package for describing statistical models and for building design matrices." +optional = false +python-versions = ">=3.6" +files = [ + {file = "patsy-1.0.1-py2.py3-none-any.whl", hash = "sha256:751fb38f9e97e62312e921a1954b81e1bb2bcda4f5eeabaf94db251ee791509c"}, + {file = "patsy-1.0.1.tar.gz", hash = "sha256:e786a9391eec818c054e359b737bbce692f051aee4c661f4141cc88fb459c0c4"}, +] + +[package.dependencies] +numpy = ">=1.4" + +[package.extras] +test = ["pytest", "pytest-cov", "scipy"] + +[[package]] +name = "pexpect" +version = "4.9.0" +description = "Pexpect allows easy control of interactive console applications." +optional = false +python-versions = "*" +files = [ + {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}, + {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}, +] + +[package.dependencies] +ptyprocess = ">=0.5" + +[[package]] +name = "pillow" +version = "11.0.0" +description = "Python Imaging Library (Fork)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] + +[[package]] +name = "platformdirs" +version = "4.3.6" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." +optional = false +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, +] + +[package.extras] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] + +[[package]] +name = "polars" +version = "1.17.1" +description = "Blazingly fast DataFrame library" +optional = false +python-versions = ">=3.9" +files = [ + {file = "polars-1.17.1-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:d3a2172f7cf332010f0b034345111e9c86d59b5a5b0fc5aa0509121f40d9e43c"}, + {file = "polars-1.17.1-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:82e98c69197df0d8ddc341a6175008508ceaea88f723f32044027810bcdb43fa"}, + {file = "polars-1.17.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59abdab015ed2ecfa0c63862b960816c35096e1f4df057dde3c44cd973af5029"}, + {file = "polars-1.17.1-cp39-abi3-manylinux_2_24_aarch64.whl", hash = "sha256:6d2f922c403b8900b3ae3c23a27b2cae3a2db40ad790cc4fc368402b92629b11"}, + {file = "polars-1.17.1-cp39-abi3-win_amd64.whl", hash = "sha256:d38156c8259554cbcb17874d91e6dfa9c404335f08a3307496aadfdee46baa31"}, + {file = "polars-1.17.1.tar.gz", hash = "sha256:5a3dac3cb7cbe174d1fa898cba9afbede0c08e8728feeeab515554d762127019"}, +] + +[package.dependencies] +numpy = {version = ">=1.16.0", optional = true, markers = "extra == \"numpy\""} +pandas = {version = "*", optional = true, markers = "extra == \"pandas\""} +pyarrow = {version = ">=7.0.0", optional = true, markers = "extra == \"pyarrow\""} + +[package.extras] +adbc = ["adbc-driver-manager[dbapi]", "adbc-driver-sqlite[dbapi]"] +all = ["polars[async,cloudpickle,database,deltalake,excel,fsspec,graph,iceberg,numpy,pandas,plot,pyarrow,pydantic,style,timezone]"] +async = ["gevent"] +calamine = ["fastexcel (>=0.9)"] +cloudpickle = ["cloudpickle"] +connectorx = ["connectorx (>=0.3.2)"] +database = ["nest-asyncio", "polars[adbc,connectorx,sqlalchemy]"] +deltalake = ["deltalake (>=0.19.0)"] +excel = ["polars[calamine,openpyxl,xlsx2csv,xlsxwriter]"] +fsspec = ["fsspec"] +gpu = ["cudf-polars-cu12"] +graph = ["matplotlib"] +iceberg = ["pyiceberg (>=0.5.0)"] +numpy = ["numpy (>=1.16.0)"] +openpyxl = ["openpyxl (>=3.0.0)"] +pandas = ["pandas", "polars[pyarrow]"] +plot = ["altair (>=5.4.0)"] +pyarrow = ["pyarrow (>=7.0.0)"] +pydantic = ["pydantic"] +sqlalchemy = ["polars[pandas]", "sqlalchemy"] +style = ["great-tables (>=0.8.0)"] +timezone = ["backports-zoneinfo", "tzdata"] +xlsx2csv = ["xlsx2csv (>=0.8.0)"] +xlsxwriter = ["xlsxwriter"] + +[[package]] +name = "prometheus-client" +version = "0.21.1" +description = "Python client for the Prometheus monitoring system." +optional = false +python-versions = ">=3.8" +files = [ + {file = "prometheus_client-0.21.1-py3-none-any.whl", hash = "sha256:594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301"}, + {file = "prometheus_client-0.21.1.tar.gz", hash = "sha256:252505a722ac04b0456be05c05f75f45d760c2911ffc45f2a06bcaed9f3ae3fb"}, +] + +[package.extras] +twisted = ["twisted"] + +[[package]] +name = "prompt-toolkit" +version = "3.0.48" +description = "Library for building powerful interactive command lines in Python" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e"}, + {file = "prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90"}, +] + +[package.dependencies] +wcwidth = "*" + +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, +] + +[package.extras] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +description = "Run a subprocess in a pseudo terminal" +optional = false +python-versions = "*" +files = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +description = "Safely evaluate AST nodes without side effects" +optional = false +python-versions = "*" +files = [ + {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, + {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, +] + +[package.extras] +tests = ["pytest"] + +[[package]] +name = "pyarrow" +version = "18.1.0" +description = "Python library for Apache Arrow" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pyarrow-18.1.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e21488d5cfd3d8b500b3238a6c4b075efabc18f0f6d80b29239737ebd69caa6c"}, + {file = "pyarrow-18.1.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:b516dad76f258a702f7ca0250885fc93d1fa5ac13ad51258e39d402bd9e2e1e4"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f443122c8e31f4c9199cb23dca29ab9427cef990f283f80fe15b8e124bcc49b"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0a03da7f2758645d17b7b4f83c8bffeae5bbb7f974523fe901f36288d2eab71"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ba17845efe3aa358ec266cf9cc2800fa73038211fb27968bfa88acd09261a470"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3c35813c11a059056a22a3bef520461310f2f7eea5c8a11ef9de7062a23f8d56"}, + {file = "pyarrow-18.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9736ba3c85129d72aefa21b4f3bd715bc4190fe4426715abfff90481e7d00812"}, + {file = "pyarrow-18.1.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:eaeabf638408de2772ce3d7793b2668d4bb93807deed1725413b70e3156a7854"}, + {file = "pyarrow-18.1.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:3b2e2239339c538f3464308fd345113f886ad031ef8266c6f004d49769bb074c"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f39a2e0ed32a0970e4e46c262753417a60c43a3246972cfc2d3eb85aedd01b21"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e31e9417ba9c42627574bdbfeada7217ad8a4cbbe45b9d6bdd4b62abbca4c6f6"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:01c034b576ce0eef554f7c3d8c341714954be9b3f5d5bc7117006b85fcf302fe"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:f266a2c0fc31995a06ebd30bcfdb7f615d7278035ec5b1cd71c48d56daaf30b0"}, + {file = "pyarrow-18.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:d4f13eee18433f99adefaeb7e01d83b59f73360c231d4782d9ddfaf1c3fbde0a"}, + {file = "pyarrow-18.1.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:9f3a76670b263dc41d0ae877f09124ab96ce10e4e48f3e3e4257273cee61ad0d"}, + {file = "pyarrow-18.1.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:da31fbca07c435be88a0c321402c4e31a2ba61593ec7473630769de8346b54ee"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:543ad8459bc438efc46d29a759e1079436290bd583141384c6f7a1068ed6f992"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0743e503c55be0fdb5c08e7d44853da27f19dc854531c0570f9f394ec9671d54"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:d4b3d2a34780645bed6414e22dda55a92e0fcd1b8a637fba86800ad737057e33"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:c52f81aa6f6575058d8e2c782bf79d4f9fdc89887f16825ec3a66607a5dd8e30"}, + {file = "pyarrow-18.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:0ad4892617e1a6c7a551cfc827e072a633eaff758fa09f21c4ee548c30bcaf99"}, + {file = "pyarrow-18.1.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:84e314d22231357d473eabec709d0ba285fa706a72377f9cc8e1cb3c8013813b"}, + {file = "pyarrow-18.1.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:f591704ac05dfd0477bb8f8e0bd4b5dc52c1cadf50503858dce3a15db6e46ff2"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acb7564204d3c40babf93a05624fc6a8ec1ab1def295c363afc40b0c9e66c191"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74de649d1d2ccb778f7c3afff6085bd5092aed4c23df9feeb45dd6b16f3811aa"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:f96bd502cb11abb08efea6dab09c003305161cb6c9eafd432e35e76e7fa9b90c"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:36ac22d7782554754a3b50201b607d553a8d71b78cdf03b33c1125be4b52397c"}, + {file = "pyarrow-18.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:25dbacab8c5952df0ca6ca0af28f50d45bd31c1ff6fcf79e2d120b4a65ee7181"}, + {file = "pyarrow-18.1.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6a276190309aba7bc9d5bd2933230458b3521a4317acfefe69a354f2fe59f2bc"}, + {file = "pyarrow-18.1.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:ad514dbfcffe30124ce655d72771ae070f30bf850b48bc4d9d3b25993ee0e386"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aebc13a11ed3032d8dd6e7171eb6e86d40d67a5639d96c35142bd568b9299324"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6cf5c05f3cee251d80e98726b5c7cc9f21bab9e9783673bac58e6dfab57ecc8"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:11b676cd410cf162d3f6a70b43fb9e1e40affbc542a1e9ed3681895f2962d3d9"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b76130d835261b38f14fc41fdfb39ad8d672afb84c447126b84d5472244cfaba"}, + {file = "pyarrow-18.1.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:0b331e477e40f07238adc7ba7469c36b908f07c89b95dd4bd3a0ec84a3d1e21e"}, + {file = "pyarrow-18.1.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:2c4dd0c9010a25ba03e198fe743b1cc03cd33c08190afff371749c52ccbbaf76"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f97b31b4c4e21ff58c6f330235ff893cc81e23da081b1a4b1c982075e0ed4e9"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a4813cb8ecf1809871fd2d64a8eff740a1bd3691bbe55f01a3cf6c5ec869754"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:05a5636ec3eb5cc2a36c6edb534a38ef57b2ab127292a716d00eabb887835f1e"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:73eeed32e724ea3568bb06161cad5fa7751e45bc2228e33dcb10c614044165c7"}, + {file = "pyarrow-18.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:a1880dd6772b685e803011a6b43a230c23b566859a6e0c9a276c1e0faf4f4052"}, + {file = "pyarrow-18.1.0.tar.gz", hash = "sha256:9386d3ca9c145b5539a1cfc75df07757dff870168c959b473a0bccbc3abc8c73"}, +] + +[package.extras] +test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] + +[[package]] +name = "pycparser" +version = "2.22" +description = "C parser in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, + {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, +] + +[[package]] +name = "pygments" +version = "2.18.0" +description = "Pygments is a syntax highlighting package written in Python." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, + {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, +] + +[package.extras] +windows-terminal = ["colorama (>=0.4.6)"] + +[[package]] +name = "pyparsing" +version = "3.2.0" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-json-logger" +version = "3.2.1" +description = "JSON Log Formatter for the Python Logging Package" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python_json_logger-3.2.1-py3-none-any.whl", hash = "sha256:cdc17047eb5374bd311e748b42f99d71223f3b0e186f4206cc5d52aefe85b090"}, + {file = "python_json_logger-3.2.1.tar.gz", hash = "sha256:8eb0554ea17cb75b05d2848bc14fb02fbdbd9d6972120781b974380bfa162008"}, +] + +[package.extras] +dev = ["backports.zoneinfo", "black", "build", "freezegun", "mdx_truly_sane_lists", "mike", "mkdocs", "mkdocs-awesome-pages-plugin", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-material (>=8.5)", "mkdocstrings[python]", "msgspec", "msgspec-python313-pre", "mypy", "orjson", "pylint", "pytest", "tzdata", "validate-pyproject[all]"] + +[[package]] +name = "pytz" +version = "2024.2" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, +] + +[[package]] +name = "pywin32" +version = "308" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, +] + +[[package]] +name = "pywinpty" +version = "2.0.14" +description = "Pseudo terminal support for Windows from Python." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pywinpty-2.0.14-cp310-none-win_amd64.whl", hash = "sha256:0b149c2918c7974f575ba79f5a4aad58bd859a52fa9eb1296cc22aa412aa411f"}, + {file = "pywinpty-2.0.14-cp311-none-win_amd64.whl", hash = "sha256:cf2a43ac7065b3e0dc8510f8c1f13a75fb8fde805efa3b8cff7599a1ef497bc7"}, + {file = "pywinpty-2.0.14-cp312-none-win_amd64.whl", hash = "sha256:55dad362ef3e9408ade68fd173e4f9032b3ce08f68cfe7eacb2c263ea1179737"}, + {file = "pywinpty-2.0.14-cp313-none-win_amd64.whl", hash = "sha256:074fb988a56ec79ca90ed03a896d40707131897cefb8f76f926e3834227f2819"}, + {file = "pywinpty-2.0.14-cp39-none-win_amd64.whl", hash = "sha256:5725fd56f73c0531ec218663bd8c8ff5acc43c78962fab28564871b5fce053fd"}, + {file = "pywinpty-2.0.14.tar.gz", hash = "sha256:18bd9529e4a5daf2d9719aa17788ba6013e594ae94c5a0c27e83df3278b0660e"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, +] + +[[package]] +name = "pyzmq" +version = "26.2.0" +description = "Python bindings for 0MQ" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629"}, + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89289a5ee32ef6c439086184529ae060c741334b8970a6855ec0b6ad3ff28764"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5506f06d7dc6ecf1efacb4a013b1f05071bb24b76350832c96449f4a2d95091c"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ea039387c10202ce304af74def5021e9adc6297067f3441d348d2b633e8166a"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2224fa4a4c2ee872886ed00a571f5e967c85e078e8e8c2530a2fb01b3309b88"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:28ad5233e9c3b52d76196c696e362508959741e1a005fb8fa03b51aea156088f"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1c17211bc037c7d88e85ed8b7d8f7e52db6dc8eca5590d162717c654550f7282"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b8f86dd868d41bea9a5f873ee13bf5551c94cf6bc51baebc6f85075971fe6eea"}, + {file = "pyzmq-26.2.0-cp310-cp310-win32.whl", hash = "sha256:46a446c212e58456b23af260f3d9fb785054f3e3653dbf7279d8f2b5546b21c2"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:49d34ab71db5a9c292a7644ce74190b1dd5a3475612eefb1f8be1d6961441971"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:bfa832bfa540e5b5c27dcf5de5d82ebc431b82c453a43d141afb1e5d2de025fa"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:8f7e66c7113c684c2b3f1c83cdd3376103ee0ce4c49ff80a648643e57fb22218"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3a495b30fc91db2db25120df5847d9833af237546fd59170701acd816ccc01c4"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77eb0968da535cba0470a5165468b2cac7772cfb569977cff92e240f57e31bef"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ace4f71f1900a548f48407fc9be59c6ba9d9aaf658c2eea6cf2779e72f9f317"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92a78853d7280bffb93df0a4a6a2498cba10ee793cc8076ef797ef2f74d107cf"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:689c5d781014956a4a6de61d74ba97b23547e431e9e7d64f27d4922ba96e9d6e"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aca98bc423eb7d153214b2df397c6421ba6373d3397b26c057af3c904452e37"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f3496d76b89d9429a656293744ceca4d2ac2a10ae59b84c1da9b5165f429ad3"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5c2b3bfd4b9689919db068ac6c9911f3fcb231c39f7dd30e3138be94896d18e6"}, + {file = "pyzmq-26.2.0-cp311-cp311-win32.whl", hash = "sha256:eac5174677da084abf378739dbf4ad245661635f1600edd1221f150b165343f4"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a509df7d0a83a4b178d0f937ef14286659225ef4e8812e05580776c70e155d5"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0e6091b157d48cbe37bd67233318dbb53e1e6327d6fc3bb284afd585d141003"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:ded0fc7d90fe93ae0b18059930086c51e640cdd3baebdc783a695c77f123dcd9"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17bf5a931c7f6618023cdacc7081f3f266aecb68ca692adac015c383a134ca52"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55cf66647e49d4621a7e20c8d13511ef1fe1efbbccf670811864452487007e08"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4661c88db4a9e0f958c8abc2b97472e23061f0bc737f6f6179d7a27024e1faa5"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea7f69de383cb47522c9c208aec6dd17697db7875a4674c4af3f8cfdac0bdeae"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7f98f6dfa8b8ccaf39163ce872bddacca38f6a67289116c8937a02e30bbe9711"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e3e0210287329272539eea617830a6a28161fbbd8a3271bf4150ae3e58c5d0e6"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b274e0762c33c7471f1a7471d1a2085b1a35eba5cdc48d2ae319f28b6fc4de3"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:29c6a4635eef69d68a00321e12a7d2559fe2dfccfa8efae3ffb8e91cd0b36a8b"}, + {file = "pyzmq-26.2.0-cp312-cp312-win32.whl", hash = "sha256:989d842dc06dc59feea09e58c74ca3e1678c812a4a8a2a419046d711031f69c7"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a50625acdc7801bc6f74698c5c583a491c61d73c6b7ea4dee3901bb99adb27a"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:4d29ab8592b6ad12ebbf92ac2ed2bedcfd1cec192d8e559e2e099f648570e19b"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9dd8cd1aeb00775f527ec60022004d030ddc51d783d056e3e23e74e623e33726"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:28c812d9757fe8acecc910c9ac9dafd2ce968c00f9e619db09e9f8f54c3a68a3"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d80b1dd99c1942f74ed608ddb38b181b87476c6a966a88a950c7dee118fdf50"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c997098cc65e3208eca09303630e84d42718620e83b733d0fd69543a9cab9cb"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ad1bc8d1b7a18497dda9600b12dc193c577beb391beae5cd2349184db40f187"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bea2acdd8ea4275e1278350ced63da0b166421928276c7c8e3f9729d7402a57b"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:23f4aad749d13698f3f7b64aad34f5fc02d6f20f05999eebc96b89b01262fb18"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a4f96f0d88accc3dbe4a9025f785ba830f968e21e3e2c6321ccdfc9aef755115"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ced65e5a985398827cc9276b93ef6dfabe0273c23de8c7931339d7e141c2818e"}, + {file = "pyzmq-26.2.0-cp313-cp313-win32.whl", hash = "sha256:31507f7b47cc1ead1f6e86927f8ebb196a0bab043f6345ce070f412a59bf87b5"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:70fc7fcf0410d16ebdda9b26cbd8bf8d803d220a7f3522e060a69a9c87bf7bad"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c3789bd5768ab5618ebf09cef6ec2b35fed88709b104351748a63045f0ff9797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:034da5fc55d9f8da09015d368f519478a52675e558c989bfcb5cf6d4e16a7d2a"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:c92d73464b886931308ccc45b2744e5968cbaade0b1d6aeb40d8ab537765f5bc"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:794a4562dcb374f7dbbfb3f51d28fb40123b5a2abadee7b4091f93054909add5"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aee22939bb6075e7afededabad1a56a905da0b3c4e3e0c45e75810ebe3a52672"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ae90ff9dad33a1cfe947d2c40cb9cb5e600d759ac4f0fd22616ce6540f72797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:43a47408ac52647dfabbc66a25b05b6a61700b5165807e3fbd40063fcaf46386"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:25bf2374a2a8433633c65ccb9553350d5e17e60c8eb4de4d92cc6bd60f01d306"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:007137c9ac9ad5ea21e6ad97d3489af654381324d5d3ba614c323f60dab8fae6"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:470d4a4f6d48fb34e92d768b4e8a5cc3780db0d69107abf1cd7ff734b9766eb0"}, + {file = "pyzmq-26.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3b55a4229ce5da9497dd0452b914556ae58e96a4381bb6f59f1305dfd7e53fc8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9cb3a6460cdea8fe8194a76de8895707e61ded10ad0be97188cc8463ffa7e3a8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8ab5cad923cc95c87bffee098a27856c859bd5d0af31bd346035aa816b081fe1"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ed69074a610fad1c2fda66180e7b2edd4d31c53f2d1872bc2d1211563904cd9"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cccba051221b916a4f5e538997c45d7d136a5646442b1231b916d0164067ea27"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:0eaa83fc4c1e271c24eaf8fb083cbccef8fde77ec8cd45f3c35a9a123e6da097"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9edda2df81daa129b25a39b86cb57dfdfe16f7ec15b42b19bfac503360d27a93"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win32.whl", hash = "sha256:ea0eb6af8a17fa272f7b98d7bebfab7836a0d62738e16ba380f440fceca2d951"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4ff9dc6bc1664bb9eec25cd17506ef6672d506115095411e237d571e92a58231"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2eb7735ee73ca1b0d71e0e67c3739c689067f055c764f73aac4cc8ecf958ee3f"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a534f43bc738181aa7cbbaf48e3eca62c76453a40a746ab95d4b27b1111a7d2"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aedd5dd8692635813368e558a05266b995d3d020b23e49581ddd5bbe197a8ab6"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8be4700cd8bb02cc454f630dcdf7cfa99de96788b80c51b60fe2fe1dac480289"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fcc03fa4997c447dce58264e93b5aa2d57714fbe0f06c07b7785ae131512732"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:402b190912935d3db15b03e8f7485812db350d271b284ded2b80d2e5704be780"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8685fa9c25ff00f550c1fec650430c4b71e4e48e8d852f7ddcf2e48308038640"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:76589c020680778f06b7e0b193f4b6dd66d470234a16e1df90329f5e14a171cd"}, + {file = "pyzmq-26.2.0-cp38-cp38-win32.whl", hash = "sha256:8423c1877d72c041f2c263b1ec6e34360448decfb323fa8b94e85883043ef988"}, + {file = "pyzmq-26.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:76589f2cd6b77b5bdea4fca5992dc1c23389d68b18ccc26a53680ba2dc80ff2f"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:b1d464cb8d72bfc1a3adc53305a63a8e0cac6bc8c5a07e8ca190ab8d3faa43c2"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4da04c48873a6abdd71811c5e163bd656ee1b957971db7f35140a2d573f6949c"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d049df610ac811dcffdc147153b414147428567fbbc8be43bb8885f04db39d98"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05590cdbc6b902101d0e65d6a4780af14dc22914cc6ab995d99b85af45362cc9"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c811cfcd6a9bf680236c40c6f617187515269ab2912f3d7e8c0174898e2519db"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6835dd60355593de10350394242b5757fbbd88b25287314316f266e24c61d073"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc6bee759a6bddea5db78d7dcd609397449cb2d2d6587f48f3ca613b19410cfc"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c530e1eecd036ecc83c3407f77bb86feb79916d4a33d11394b8234f3bd35b940"}, + {file = "pyzmq-26.2.0-cp39-cp39-win32.whl", hash = "sha256:367b4f689786fca726ef7a6c5ba606958b145b9340a5e4808132cc65759abd44"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:e6fa2e3e683f34aea77de8112f6483803c96a44fd726d7358b9888ae5bb394ec"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:7445be39143a8aa4faec43b076e06944b8f9d0701b669df4af200531b21e40bb"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:706e794564bec25819d21a41c31d4df2d48e1cc4b061e8d345d7fb4dd3e94072"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b435f2753621cd36e7c1762156815e21c985c72b19135dac43a7f4f31d28dd1"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:160c7e0a5eb178011e72892f99f918c04a131f36056d10d9c1afb223fc952c2d"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4a71d5d6e7b28a47a394c0471b7e77a0661e2d651e7ae91e0cab0a587859ca"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:90412f2db8c02a3864cbfc67db0e3dcdbda336acf1c469526d3e869394fe001c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2ea4ad4e6a12e454de05f2949d4beddb52460f3de7c8b9d5c46fbb7d7222e02c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fc4f7a173a5609631bb0c42c23d12c49df3966f89f496a51d3eb0ec81f4519d6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:878206a45202247781472a2d99df12a176fef806ca175799e1c6ad263510d57c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17c412bad2eb9468e876f556eb4ee910e62d721d2c7a53c7fa31e643d35352e6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:0d987a3ae5a71c6226b203cfd298720e0086c7fe7c74f35fa8edddfbd6597eed"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:39887ac397ff35b7b775db7201095fc6310a35fdbae85bac4523f7eb3b840e20"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fdb5b3e311d4d4b0eb8b3e8b4d1b0a512713ad7e6a68791d0923d1aec433d919"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:226af7dcb51fdb0109f0016449b357e182ea0ceb6b47dfb5999d569e5db161d5"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bed0e799e6120b9c32756203fb9dfe8ca2fb8467fed830c34c877e25638c3fc"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:29c7947c594e105cb9e6c466bace8532dc1ca02d498684128b339799f5248277"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cdeabcff45d1c219636ee2e54d852262e5c2e085d6cb476d938aee8d921356b3"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35cffef589bcdc587d06f9149f8d5e9e8859920a071df5a2671de2213bef592a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18c8dc3b7468d8b4bdf60ce9d7141897da103c7a4690157b32b60acb45e333e6"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7133d0a1677aec369d67dd78520d3fa96dd7f3dcec99d66c1762870e5ea1a50a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6a96179a24b14fa6428cbfc08641c779a53f8fcec43644030328f44034c7f1f4"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4f78c88905461a9203eac9faac157a2a0dbba84a0fd09fd29315db27be40af9f"}, + {file = "pyzmq-26.2.0.tar.gz", hash = "sha256:070672c258581c8e4f640b5159297580a9974b026043bd4ab0470be9ed324f1f"}, +] + +[package.dependencies] +cffi = {version = "*", markers = "implementation_name == \"pypy\""} + +[[package]] +name = "referencing" +version = "0.35.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, + {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.32.3" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.8" +files = [ + {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, + {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +description = "A pure python RFC3339 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, + {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, +] + +[package.dependencies] +six = "*" + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +description = "Pure python rfc3986 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, + {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, +] + +[[package]] +name = "rpds-py" +version = "0.22.3" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967"}, + {file = "rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70eb60b3ae9245ddea20f8a4190bd79c705a22f8028aaf8bbdebe4716c3fab24"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4041711832360a9b75cfb11b25a6a97c8fb49c07b8bd43d0d02b45d0b499a4ff"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64607d4cbf1b7e3c3c8a14948b99345eda0e161b852e122c6bb71aab6d1d798c"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e69b0a0e2537f26d73b4e43ad7bc8c8efb39621639b4434b76a3de50c6966e"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc27863442d388870c1809a87507727b799c8460573cfbb6dc0eeaef5a11b5ec"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e79dd39f1e8c3504be0607e5fc6e86bb60fe3584bec8b782578c3b0fde8d932c"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e0fa2d4ec53dc51cf7d3bb22e0aa0143966119f42a0c3e4998293a3dd2856b09"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fda7cb070f442bf80b642cd56483b5548e43d366fe3f39b98e67cce780cded00"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cff63a0272fcd259dcc3be1657b07c929c466b067ceb1c20060e8d10af56f5bf"}, + {file = "rpds_py-0.22.3-cp310-cp310-win32.whl", hash = "sha256:9bd7228827ec7bb817089e2eb301d907c0d9827a9e558f22f762bb690b131652"}, + {file = "rpds_py-0.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:9beeb01d8c190d7581a4d59522cd3d4b6887040dcfc744af99aa59fef3e041a8"}, + {file = "rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f"}, + {file = "rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a"}, + {file = "rpds_py-0.22.3-cp311-cp311-win32.whl", hash = "sha256:b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64"}, + {file = "rpds_py-0.22.3-cp311-cp311-win_amd64.whl", hash = "sha256:8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c"}, + {file = "rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:27e98004595899949bd7a7b34e91fa7c44d7a97c40fcaf1d874168bb652ec67e"}, + {file = "rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1978d0021e943aae58b9b0b196fb4895a25cc53d3956b8e35e0b7682eefb6d56"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:655ca44a831ecb238d124e0402d98f6212ac527a0ba6c55ca26f616604e60a45"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:feea821ee2a9273771bae61194004ee2fc33f8ec7db08117ef9147d4bbcbca8e"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22bebe05a9ffc70ebfa127efbc429bc26ec9e9b4ee4d15a740033efda515cf3d"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3af6e48651c4e0d2d166dc1b033b7042ea3f871504b6805ba5f4fe31581d8d38"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67ba3c290821343c192f7eae1d8fd5999ca2dc99994114643e2f2d3e6138b15"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02fbb9c288ae08bcb34fb41d516d5eeb0455ac35b5512d03181d755d80810059"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f56a6b404f74ab372da986d240e2e002769a7d7102cc73eb238a4f72eec5284e"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0a0461200769ab3b9ab7e513f6013b7a97fdeee41c29b9db343f3c5a8e2b9e61"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8633e471c6207a039eff6aa116e35f69f3156b3989ea3e2d755f7bc41754a4a7"}, + {file = "rpds_py-0.22.3-cp312-cp312-win32.whl", hash = "sha256:593eba61ba0c3baae5bc9be2f5232430453fb4432048de28399ca7376de9c627"}, + {file = "rpds_py-0.22.3-cp312-cp312-win_amd64.whl", hash = "sha256:d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4"}, + {file = "rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ea7433ce7e4bfc3a85654aeb6747babe3f66eaf9a1d0c1e7a4435bbdf27fea84"}, + {file = "rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6dd9412824c4ce1aca56c47b0991e65bebb7ac3f4edccfd3f156150c96a7bf25"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20070c65396f7373f5df4005862fa162db5d25d56150bddd0b3e8214e8ef45b4"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b09865a9abc0ddff4e50b5ef65467cd94176bf1e0004184eb915cbc10fc05c5"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3453e8d41fe5f17d1f8e9c383a7473cd46a63661628ec58e07777c2fff7196dc"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5d36399a1b96e1a5fdc91e0522544580dbebeb1f77f27b2b0ab25559e103b8b"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009de23c9c9ee54bf11303a966edf4d9087cd43a6003672e6aa7def643d06518"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1aef18820ef3e4587ebe8b3bc9ba6e55892a6d7b93bac6d29d9f631a3b4befbd"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f60bd8423be1d9d833f230fdbccf8f57af322d96bcad6599e5a771b151398eb2"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:62d9cfcf4948683a18a9aff0ab7e1474d407b7bab2ca03116109f8464698ab16"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9253fc214112405f0afa7db88739294295f0e08466987f1d70e29930262b4c8f"}, + {file = "rpds_py-0.22.3-cp313-cp313-win32.whl", hash = "sha256:fb0ba113b4983beac1a2eb16faffd76cb41e176bf58c4afe3e14b9c681f702de"}, + {file = "rpds_py-0.22.3-cp313-cp313-win_amd64.whl", hash = "sha256:c58e2339def52ef6b71b8f36d13c3688ea23fa093353f3a4fee2556e62086ec9"}, + {file = "rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:f82a116a1d03628a8ace4859556fb39fd1424c933341a08ea3ed6de1edb0283b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3dfcbc95bd7992b16f3f7ba05af8a64ca694331bd24f9157b49dadeeb287493b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59259dc58e57b10e7e18ce02c311804c10c5a793e6568f8af4dead03264584d1"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5725dd9cc02068996d4438d397e255dcb1df776b7ceea3b9cb972bdb11260a83"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b37292234e61325e7a5bb9689e55e48c3f5f603af88b1642666277a81f1fbd"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:27b1d3b3915a99208fee9ab092b8184c420f2905b7d7feb4aeb5e4a9c509b8a1"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f612463ac081803f243ff13cccc648578e2279295048f2a8d5eb430af2bae6e3"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f73d3fef726b3243a811121de45193c0ca75f6407fe66f3f4e183c983573e130"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3f21f0495edea7fdbaaa87e633a8689cd285f8f4af5c869f27bc8074638ad69c"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:1e9663daaf7a63ceccbbb8e3808fe90415b0757e2abddbfc2e06c857bf8c5e2b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a76e42402542b1fae59798fab64432b2d015ab9d0c8c47ba7addddbaf7952333"}, + {file = "rpds_py-0.22.3-cp313-cp313t-win32.whl", hash = "sha256:69803198097467ee7282750acb507fba35ca22cc3b85f16cf45fb01cb9097730"}, + {file = "rpds_py-0.22.3-cp313-cp313t-win_amd64.whl", hash = "sha256:f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf"}, + {file = "rpds_py-0.22.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:378753b4a4de2a7b34063d6f95ae81bfa7b15f2c1a04a9518e8644e81807ebea"}, + {file = "rpds_py-0.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3445e07bf2e8ecfeef6ef67ac83de670358abf2996916039b16a218e3d95e97e"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b2513ba235829860b13faa931f3b6846548021846ac808455301c23a101689d"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eaf16ae9ae519a0e237a0f528fd9f0197b9bb70f40263ee57ae53c2b8d48aeb3"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:583f6a1993ca3369e0f80ba99d796d8e6b1a3a2a442dd4e1a79e652116413091"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4617e1915a539a0d9a9567795023de41a87106522ff83fbfaf1f6baf8e85437e"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c150c7a61ed4a4f4955a96626574e9baf1adf772c2fb61ef6a5027e52803543"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fa4331c200c2521512595253f5bb70858b90f750d39b8cbfd67465f8d1b596d"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:214b7a953d73b5e87f0ebece4a32a5bd83c60a3ecc9d4ec8f1dca968a2d91e99"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f47ad3d5f3258bd7058d2d506852217865afefe6153a36eb4b6928758041d831"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f276b245347e6e36526cbd4a266a417796fc531ddf391e43574cf6466c492520"}, + {file = "rpds_py-0.22.3-cp39-cp39-win32.whl", hash = "sha256:bbb232860e3d03d544bc03ac57855cd82ddf19c7a07651a7c0fdb95e9efea8b9"}, + {file = "rpds_py-0.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfbc454a2880389dbb9b5b398e50d439e2e58669160f27b60e5eca11f68ae17c"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d48424e39c2611ee1b84ad0f44fb3b2b53d473e65de061e3f460fc0be5f1939d"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:24e8abb5878e250f2eb0d7859a8e561846f98910326d06c0d51381fed59357bd"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b232061ca880db21fa14defe219840ad9b74b6158adb52ddf0e87bead9e8493"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac0a03221cdb5058ce0167ecc92a8c89e8d0decdc9e99a2ec23380793c4dcb96"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb0c341fa71df5a4595f9501df4ac5abfb5a09580081dffbd1ddd4654e6e9123"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf9db5488121b596dbfc6718c76092fda77b703c1f7533a226a5a9f65248f8ad"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8db6b5b2d4491ad5b6bdc2bc7c017eec108acbf4e6785f42a9eb0ba234f4c9"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d504047aba448d70cf6fa22e06cb09f7cbd761939fdd47604f5e007675c24e"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e61b02c3f7a1e0b75e20c3978f7135fd13cb6cf551bf4a6d29b999a88830a338"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e35ba67d65d49080e8e5a1dd40101fccdd9798adb9b050ff670b7d74fa41c566"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:26fd7cac7dd51011a245f29a2cc6489c4608b5a8ce8d75661bb4a1066c52dfbe"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:177c7c0fce2855833819c98e43c262007f42ce86651ffbb84f37883308cb0e7d"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb47271f60660803ad11f4c61b42242b8c1312a31c98c578f79ef9387bbde21c"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:70fb28128acbfd264eda9bf47015537ba3fe86e40d046eb2963d75024be4d055"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44d61b4b7d0c2c9ac019c314e52d7cbda0ae31078aabd0f22e583af3e0d79723"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f0e260eaf54380380ac3808aa4ebe2d8ca28b9087cf411649f96bad6900c728"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b25bc607423935079e05619d7de556c91fb6adeae9d5f80868dde3468657994b"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb6116dfb8d1925cbdb52595560584db42a7f664617a1f7d7f6e32f138cdf37d"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a63cbdd98acef6570c62b92a1e43266f9e8b21e699c363c0fef13bd530799c11"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b8f60e1b739a74bab7e01fcbe3dddd4657ec685caa04681df9d562ef15b625f"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2e8b55d8517a2fda8d95cb45d62a5a8bbf9dd0ad39c5b25c8833efea07b880ca"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:2de29005e11637e7a2361fa151f780ff8eb2543a0da1413bb951e9f14b699ef3"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:666ecce376999bf619756a24ce15bb14c5bfaf04bf00abc7e663ce17c3f34fe7"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5246b14ca64a8675e0a7161f7af68fe3e910e6b90542b4bfb5439ba752191df6"}, + {file = "rpds_py-0.22.3.tar.gz", hash = "sha256:e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d"}, +] + +[[package]] +name = "ruff" +version = "0.8.3" +description = "An extremely fast Python linter and code formatter, written in Rust." +optional = false +python-versions = ">=3.7" +files = [ + {file = "ruff-0.8.3-py3-none-linux_armv6l.whl", hash = "sha256:8d5d273ffffff0acd3db5bf626d4b131aa5a5ada1276126231c4174543ce20d6"}, + {file = "ruff-0.8.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:e4d66a21de39f15c9757d00c50c8cdd20ac84f55684ca56def7891a025d7e939"}, + {file = "ruff-0.8.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c356e770811858bd20832af696ff6c7e884701115094f427b64b25093d6d932d"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c0a60a825e3e177116c84009d5ebaa90cf40dfab56e1358d1df4e29a9a14b13"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:75fb782f4db39501210ac093c79c3de581d306624575eddd7e4e13747e61ba18"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f26bc76a133ecb09a38b7868737eded6941b70a6d34ef53a4027e83913b6502"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:01b14b2f72a37390c1b13477c1c02d53184f728be2f3ffc3ace5b44e9e87b90d"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53babd6e63e31f4e96ec95ea0d962298f9f0d9cc5990a1bbb023a6baf2503a82"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ae441ce4cf925b7f363d33cd6570c51435972d697e3e58928973994e56e1452"}, + {file = "ruff-0.8.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7c65bc0cadce32255e93c57d57ecc2cca23149edd52714c0c5d6fa11ec328cd"}, + {file = "ruff-0.8.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5be450bb18f23f0edc5a4e5585c17a56ba88920d598f04a06bd9fd76d324cb20"}, + {file = "ruff-0.8.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8faeae3827eaa77f5721f09b9472a18c749139c891dbc17f45e72d8f2ca1f8fc"}, + {file = "ruff-0.8.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:db503486e1cf074b9808403991663e4277f5c664d3fe237ee0d994d1305bb060"}, + {file = "ruff-0.8.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:6567be9fb62fbd7a099209257fef4ad2c3153b60579818b31a23c886ed4147ea"}, + {file = "ruff-0.8.3-py3-none-win32.whl", hash = "sha256:19048f2f878f3ee4583fc6cb23fb636e48c2635e30fb2022b3a1cd293402f964"}, + {file = "ruff-0.8.3-py3-none-win_amd64.whl", hash = "sha256:f7df94f57d7418fa7c3ffb650757e0c2b96cf2501a0b192c18e4fb5571dfada9"}, + {file = "ruff-0.8.3-py3-none-win_arm64.whl", hash = "sha256:fe2756edf68ea79707c8d68b78ca9a58ed9af22e430430491ee03e718b5e4936"}, + {file = "ruff-0.8.3.tar.gz", hash = "sha256:5e7558304353b84279042fc584a4f4cb8a07ae79b2bf3da1a7551d960b5626d3"}, +] + +[[package]] +name = "scikit-learn" +version = "1.6.0" +description = "A set of python modules for machine learning and data mining" +optional = false +python-versions = ">=3.9" +files = [ + {file = "scikit_learn-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:366fb3fa47dce90afed3d6106183f4978d6f24cfd595c2373424171b915ee718"}, + {file = "scikit_learn-1.6.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:59cd96a8d9f8dfd546f5d6e9787e1b989e981388d7803abbc9efdcde61e47460"}, + {file = "scikit_learn-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efa7a579606c73a0b3d210e33ea410ea9e1af7933fe324cb7e6fbafae4ea5948"}, + {file = "scikit_learn-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a46d3ca0f11a540b8eaddaf5e38172d8cd65a86cb3e3632161ec96c0cffb774c"}, + {file = "scikit_learn-1.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:5be4577769c5dde6e1b53de8e6520f9b664ab5861dd57acee47ad119fd7405d6"}, + {file = "scikit_learn-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1f50b4f24cf12a81c3c09958ae3b864d7534934ca66ded3822de4996d25d7285"}, + {file = "scikit_learn-1.6.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:eb9ae21f387826da14b0b9cb1034f5048ddb9182da429c689f5f4a87dc96930b"}, + {file = "scikit_learn-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0baa91eeb8c32632628874a5c91885eaedd23b71504d24227925080da075837a"}, + {file = "scikit_learn-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c716d13ba0a2f8762d96ff78d3e0cde90bc9c9b5c13d6ab6bb9b2d6ca6705fd"}, + {file = "scikit_learn-1.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:9aafd94bafc841b626681e626be27bf1233d5a0f20f0a6fdb4bee1a1963c6643"}, + {file = "scikit_learn-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:04a5ba45c12a5ff81518aa4f1604e826a45d20e53da47b15871526cda4ff5174"}, + {file = "scikit_learn-1.6.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:21fadfc2ad7a1ce8bd1d90f23d17875b84ec765eecbbfc924ff11fb73db582ce"}, + {file = "scikit_learn-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30f34bb5fde90e020653bb84dcb38b6c83f90c70680dbd8c38bd9becbad7a127"}, + {file = "scikit_learn-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1dad624cffe3062276a0881d4e441bc9e3b19d02d17757cd6ae79a9d192a0027"}, + {file = "scikit_learn-1.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:2fce7950a3fad85e0a61dc403df0f9345b53432ac0e47c50da210d22c60b6d85"}, + {file = "scikit_learn-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e5453b2e87ef8accedc5a8a4e6709f887ca01896cd7cc8a174fe39bd4bb00aef"}, + {file = "scikit_learn-1.6.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5fe11794236fb83bead2af26a87ced5d26e3370b8487430818b915dafab1724e"}, + {file = "scikit_learn-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61fe3dcec0d82ae280877a818ab652f4988371e32dd5451e75251bece79668b1"}, + {file = "scikit_learn-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b44e3a51e181933bdf9a4953cc69c6025b40d2b49e238233f149b98849beb4bf"}, + {file = "scikit_learn-1.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:a17860a562bac54384454d40b3f6155200c1c737c9399e6a97962c63fce503ac"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:98717d3c152f6842d36a70f21e1468fb2f1a2f8f2624d9a3f382211798516426"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:34e20bfac8ff0ebe0ff20fb16a4d6df5dc4cc9ce383e00c2ab67a526a3c67b18"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eba06d75815406091419e06dd650b91ebd1c5f836392a0d833ff36447c2b1bfa"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b6916d1cec1ff163c7d281e699d7a6a709da2f2c5ec7b10547e08cc788ddd3ae"}, + {file = "scikit_learn-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:66b1cf721a9f07f518eb545098226796c399c64abdcbf91c2b95d625068363da"}, + {file = "scikit_learn-1.6.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b35b60cf4cd6564b636e4a40516b3c61a4fa7a8b1f7a3ce80c38ebe04750bc3"}, + {file = "scikit_learn-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a73b1c2038c93bc7f4bf21f6c9828d5116c5d2268f7a20cfbbd41d3074d52083"}, + {file = "scikit_learn-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c3fa7d3dd5a0ec2d0baba0d644916fa2ab180ee37850c5d536245df916946bd"}, + {file = "scikit_learn-1.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:df778486a32518cda33818b7e3ce48c78cef1d5f640a6bc9d97c6d2e71449a51"}, + {file = "scikit_learn-1.6.0.tar.gz", hash = "sha256:9d58481f9f7499dff4196927aedd4285a0baec8caa3790efbe205f13de37dd6e"}, +] + +[package.dependencies] +joblib = ">=1.2.0" +numpy = ">=1.19.5" +scipy = ">=1.6.0" +threadpoolctl = ">=3.1.0" + +[package.extras] +benchmark = ["matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "pandas (>=1.1.5)"] +build = ["cython (>=3.0.10)", "meson-python (>=0.16.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"] +docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pydata-sphinx-theme (>=0.15.3)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=7.3.7)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-design (>=0.6.0)", "sphinx-gallery (>=0.17.1)", "sphinx-prompt (>=1.4.0)", "sphinx-remove-toctrees (>=1.0.0.post1)", "sphinxcontrib-sass (>=0.3.4)", "sphinxext-opengraph (>=0.9.1)", "towncrier (>=24.8.0)"] +examples = ["matplotlib (>=3.3.4)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)"] +install = ["joblib (>=1.2.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)", "threadpoolctl (>=3.1.0)"] +maintenance = ["conda-lock (==2.5.6)"] +tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pyarrow (>=12.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.5.1)", "scikit-image (>=0.17.2)"] + +[[package]] +name = "scipy" +version = "1.14.0" +description = "Fundamental algorithms for scientific computing in Python" +optional = false +python-versions = ">=3.10" +files = [ + {file = "scipy-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7e911933d54ead4d557c02402710c2396529540b81dd554fc1ba270eb7308484"}, + {file = "scipy-1.14.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:687af0a35462402dd851726295c1a5ae5f987bd6e9026f52e9505994e2f84ef6"}, + {file = "scipy-1.14.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:07e179dc0205a50721022344fb85074f772eadbda1e1b3eecdc483f8033709b7"}, + {file = "scipy-1.14.0-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a9c9a9b226d9a21e0a208bdb024c3982932e43811b62d202aaf1bb59af264b1"}, + {file = "scipy-1.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076c27284c768b84a45dcf2e914d4000aac537da74236a0d45d82c6fa4b7b3c0"}, + {file = "scipy-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42470ea0195336df319741e230626b6225a740fd9dce9642ca13e98f667047c0"}, + {file = "scipy-1.14.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:176c6f0d0470a32f1b2efaf40c3d37a24876cebf447498a4cefb947a79c21e9d"}, + {file = "scipy-1.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:ad36af9626d27a4326c8e884917b7ec321d8a1841cd6dacc67d2a9e90c2f0359"}, + {file = "scipy-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6d056a8709ccda6cf36cdd2eac597d13bc03dba38360f418560a93050c76a16e"}, + {file = "scipy-1.14.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:f0a50da861a7ec4573b7c716b2ebdcdf142b66b756a0d392c236ae568b3a93fb"}, + {file = "scipy-1.14.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:94c164a9e2498e68308e6e148646e486d979f7fcdb8b4cf34b5441894bdb9caf"}, + {file = "scipy-1.14.0-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a7d46c3e0aea5c064e734c3eac5cf9eb1f8c4ceee756262f2c7327c4c2691c86"}, + {file = "scipy-1.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9eee2989868e274aae26125345584254d97c56194c072ed96cb433f32f692ed8"}, + {file = "scipy-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e3154691b9f7ed73778d746da2df67a19d046a6c8087c8b385bc4cdb2cfca74"}, + {file = "scipy-1.14.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c40003d880f39c11c1edbae8144e3813904b10514cd3d3d00c277ae996488cdb"}, + {file = "scipy-1.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b083c8940028bb7e0b4172acafda6df762da1927b9091f9611b0bcd8676f2bc"}, + {file = "scipy-1.14.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bff2438ea1330e06e53c424893ec0072640dac00f29c6a43a575cbae4c99b2b9"}, + {file = "scipy-1.14.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:bbc0471b5f22c11c389075d091d3885693fd3f5e9a54ce051b46308bc787e5d4"}, + {file = "scipy-1.14.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:64b2ff514a98cf2bb734a9f90d32dc89dc6ad4a4a36a312cd0d6327170339eb0"}, + {file = "scipy-1.14.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:7d3da42fbbbb860211a811782504f38ae7aaec9de8764a9bef6b262de7a2b50f"}, + {file = "scipy-1.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d91db2c41dd6c20646af280355d41dfa1ec7eead235642178bd57635a3f82209"}, + {file = "scipy-1.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a01cc03bcdc777c9da3cfdcc74b5a75caffb48a6c39c8450a9a05f82c4250a14"}, + {file = "scipy-1.14.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:65df4da3c12a2bb9ad52b86b4dcf46813e869afb006e58be0f516bc370165159"}, + {file = "scipy-1.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:4c4161597c75043f7154238ef419c29a64ac4a7c889d588ea77690ac4d0d9b20"}, + {file = "scipy-1.14.0.tar.gz", hash = "sha256:b5923f48cb840380f9854339176ef21763118a7300a88203ccd0bdd26e58527b"}, +] + +[package.dependencies] +numpy = ">=1.23.5,<2.3" + +[package.extras] +dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"] +doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.13.1)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0)", "sphinx-design (>=0.4.0)"] +test = ["Cython", "array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] + +[[package]] +name = "seaborn" +version = "0.13.2" +description = "Statistical data visualization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987"}, + {file = "seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7"}, +] + +[package.dependencies] +matplotlib = ">=3.4,<3.6.1 || >3.6.1" +numpy = ">=1.20,<1.24.0 || >1.24.0" +pandas = ">=1.2" + +[package.extras] +dev = ["flake8", "flit", "mypy", "pandas-stubs", "pre-commit", "pytest", "pytest-cov", "pytest-xdist"] +docs = ["ipykernel", "nbconvert", "numpydoc", "pydata_sphinx_theme (==0.10.0rc2)", "pyyaml", "sphinx (<6.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-issues"] +stats = ["scipy (>=1.7)", "statsmodels (>=0.12)"] + +[[package]] +name = "send2trash" +version = "1.8.3" +description = "Send file to trash natively under Mac OS X, Windows and Linux" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9"}, + {file = "Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf"}, +] + +[package.extras] +nativelib = ["pyobjc-framework-Cocoa", "pywin32"] +objc = ["pyobjc-framework-Cocoa"] +win32 = ["pywin32"] + +[[package]] +name = "setuptools" +version = "75.6.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.9" +files = [ + {file = "setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d"}, + {file = "setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"}, +] + +[package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.7.0)"] +core = ["importlib_metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12,<1.14)", "pytest-mypy"] + +[[package]] +name = "six" +version = "1.17.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, + {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + +[[package]] +name = "soupsieve" +version = "2.6" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.8" +files = [ + {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"}, + {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"}, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +description = "Extract data from python stack frames and tracebacks for informative displays" +optional = false +python-versions = "*" +files = [ + {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, + {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, +] + +[package.dependencies] +asttokens = ">=2.1.0" +executing = ">=1.2.0" +pure-eval = "*" + +[package.extras] +tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] + +[[package]] +name = "statsmodels" +version = "0.14.4" +description = "Statistical computations and models for Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "statsmodels-0.14.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7a62f1fc9086e4b7ee789a6f66b3c0fc82dd8de1edda1522d30901a0aa45e42b"}, + {file = "statsmodels-0.14.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46ac7ddefac0c9b7b607eed1d47d11e26fe92a1bc1f4d9af48aeed4e21e87981"}, + {file = "statsmodels-0.14.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a337b731aa365d09bb0eab6da81446c04fde6c31976b1d8e3d3a911f0f1e07b"}, + {file = "statsmodels-0.14.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:631bb52159117c5da42ba94bd94859276b68cab25dc4cac86475bc24671143bc"}, + {file = "statsmodels-0.14.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3bb2e580d382545a65f298589809af29daeb15f9da2eb252af8f79693e618abc"}, + {file = "statsmodels-0.14.4-cp310-cp310-win_amd64.whl", hash = "sha256:9729642884147ee9db67b5a06a355890663d21f76ed608a56ac2ad98b94d201a"}, + {file = "statsmodels-0.14.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5ed7e118e6e3e02d6723a079b8c97eaadeed943fa1f7f619f7148dfc7862670f"}, + {file = "statsmodels-0.14.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f5f537f7d000de4a1708c63400755152b862cd4926bb81a86568e347c19c364b"}, + {file = "statsmodels-0.14.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa74aaa26eaa5012b0a01deeaa8a777595d0835d3d6c7175f2ac65435a7324d2"}, + {file = "statsmodels-0.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e332c2d9b806083d1797231280602340c5c913f90d4caa0213a6a54679ce9331"}, + {file = "statsmodels-0.14.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d9c8fa28dfd75753d9cf62769ba1fecd7e73a0be187f35cc6f54076f98aa3f3f"}, + {file = "statsmodels-0.14.4-cp311-cp311-win_amd64.whl", hash = "sha256:a6087ecb0714f7c59eb24c22781491e6f1cfffb660b4740e167625ca4f052056"}, + {file = "statsmodels-0.14.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5221dba7424cf4f2561b22e9081de85f5bb871228581124a0d1b572708545199"}, + {file = "statsmodels-0.14.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:17672b30c6b98afe2b095591e32d1d66d4372f2651428e433f16a3667f19eabb"}, + {file = "statsmodels-0.14.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab5e6312213b8cfb9dca93dd46a0f4dccb856541f91d3306227c3d92f7659245"}, + {file = "statsmodels-0.14.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bbb150620b53133d6cd1c5d14c28a4f85701e6c781d9b689b53681effaa655f"}, + {file = "statsmodels-0.14.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb695c2025d122a101c2aca66d2b78813c321b60d3a7c86bb8ec4467bb53b0f9"}, + {file = "statsmodels-0.14.4-cp312-cp312-win_amd64.whl", hash = "sha256:7f7917a51766b4e074da283c507a25048ad29a18e527207883d73535e0dc6184"}, + {file = "statsmodels-0.14.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5a24f5d2c22852d807d2b42daf3a61740820b28d8381daaf59dcb7055bf1a79"}, + {file = "statsmodels-0.14.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df4f7864606fa843d7e7c0e6af288f034a2160dba14e6ccc09020a3cf67cb092"}, + {file = "statsmodels-0.14.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91341cbde9e8bea5fb419a76e09114e221567d03f34ca26e6d67ae2c27d8fe3c"}, + {file = "statsmodels-0.14.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1322286a7bfdde2790bf72d29698a1b76c20b8423a55bdcd0d457969d0041f72"}, + {file = "statsmodels-0.14.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e31b95ac603415887c9f0d344cb523889cf779bc52d68e27e2d23c358958fec7"}, + {file = "statsmodels-0.14.4-cp313-cp313-win_amd64.whl", hash = "sha256:81030108d27aecc7995cac05aa280cf8c6025f6a6119894eef648997936c2dd0"}, + {file = "statsmodels-0.14.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4793b01b7a5f5424f5a1dbcefc614c83c7608aa2b035f087538253007c339d5d"}, + {file = "statsmodels-0.14.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d330da34f59f1653c5193f9fe3a3a258977c880746db7f155fc33713ea858db5"}, + {file = "statsmodels-0.14.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e9ddefba1d4e1107c1f20f601b0581421ea3ad9fd75ce3c2ba6a76b6dc4682c"}, + {file = "statsmodels-0.14.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f43da7957e00190104c5dd0f661bfc6dfc68b87313e3f9c4dbd5e7d222e0aeb"}, + {file = "statsmodels-0.14.4-cp39-cp39-win_amd64.whl", hash = "sha256:8286f69a5e1d0e0b366ffed5691140c83d3efc75da6dbf34a3d06e88abfaaab6"}, + {file = "statsmodels-0.14.4.tar.gz", hash = "sha256:5d69e0f39060dc72c067f9bb6e8033b6dccdb0bae101d76a7ef0bcc94e898b67"}, +] + +[package.dependencies] +numpy = ">=1.22.3,<3" +packaging = ">=21.3" +pandas = ">=1.4,<2.1.0 || >2.1.0" +patsy = ">=0.5.6" +scipy = ">=1.8,<1.9.2 || >1.9.2" + +[package.extras] +build = ["cython (>=3.0.10)"] +develop = ["colorama", "cython (>=3.0.10)", "cython (>=3.0.10,<4)", "flake8", "isort", "joblib", "matplotlib (>=3)", "pytest (>=7.3.0,<8)", "pytest-cov", "pytest-randomly", "pytest-xdist", "pywinpty", "setuptools-scm[toml] (>=8.0,<9.0)"] +docs = ["ipykernel", "jupyter-client", "matplotlib", "nbconvert", "nbformat", "numpydoc", "pandas-datareader", "sphinx"] + +[[package]] +name = "terminado" +version = "0.18.1" +description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." +optional = false +python-versions = ">=3.8" +files = [ + {file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"}, + {file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"}, +] + +[package.dependencies] +ptyprocess = {version = "*", markers = "os_name != \"nt\""} +pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} +tornado = ">=6.1.0" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] +typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] + +[[package]] +name = "threadpoolctl" +version = "3.5.0" +description = "threadpoolctl" +optional = false +python-versions = ">=3.8" +files = [ + {file = "threadpoolctl-3.5.0-py3-none-any.whl", hash = "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467"}, + {file = "threadpoolctl-3.5.0.tar.gz", hash = "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107"}, +] + +[[package]] +name = "tinycss2" +version = "1.4.0" +description = "A tiny CSS parser" +optional = false +python-versions = ">=3.8" +files = [ + {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"}, + {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"}, +] + +[package.dependencies] +webencodings = ">=0.4" + +[package.extras] +doc = ["sphinx", "sphinx_rtd_theme"] +test = ["pytest", "ruff"] + +[[package]] +name = "tokenize-rt" +version = "6.1.0" +description = "A wrapper around the stdlib `tokenize` which roundtrips." +optional = false +python-versions = ">=3.9" +files = [ + {file = "tokenize_rt-6.1.0-py2.py3-none-any.whl", hash = "sha256:d706141cdec4aa5f358945abe36b911b8cbdc844545da99e811250c0cee9b6fc"}, + {file = "tokenize_rt-6.1.0.tar.gz", hash = "sha256:e8ee836616c0877ab7c7b54776d2fefcc3bde714449a206762425ae114b53c86"}, +] + +[[package]] +name = "tornado" +version = "6.4.2" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +optional = false +python-versions = ">=3.8" +files = [ + {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"}, + {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c"}, + {file = "tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482"}, + {file = "tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38"}, + {file = "tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b"}, +] + +[[package]] +name = "tqdm" +version = "4.67.1" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"}, + {file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["nbval", "pytest (>=6)", "pytest-asyncio (>=0.24)", "pytest-cov", "pytest-timeout"] +discord = ["requests"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "traitlets" +version = "5.14.3" +description = "Traitlets Python configuration system" +optional = false +python-versions = ">=3.8" +files = [ + {file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"}, + {file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"}, +] + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.2)", "pytest-mock", "pytest-mypy-testing"] + +[[package]] +name = "types-python-dateutil" +version = "2.9.0.20241206" +description = "Typing stubs for python-dateutil" +optional = false +python-versions = ">=3.8" +files = [ + {file = "types_python_dateutil-2.9.0.20241206-py3-none-any.whl", hash = "sha256:e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53"}, + {file = "types_python_dateutil-2.9.0.20241206.tar.gz", hash = "sha256:18f493414c26ffba692a72369fea7a154c502646301ebfe3d56a04b3767284cb"}, +] + +[[package]] +name = "types-requests" +version = "2.32.0.20241016" +description = "Typing stubs for requests" +optional = false +python-versions = ">=3.8" +files = [ + {file = "types-requests-2.32.0.20241016.tar.gz", hash = "sha256:0d9cad2f27515d0e3e3da7134a1b6f28fb97129d86b867f24d9c726452634d95"}, + {file = "types_requests-2.32.0.20241016-py3-none-any.whl", hash = "sha256:4195d62d6d3e043a4eaaf08ff8a62184584d2e8684e9d2aa178c7915a7da3747"}, +] + +[package.dependencies] +urllib3 = ">=2" + +[[package]] +name = "types-tqdm" +version = "4.67.0.20241119" +description = "Typing stubs for tqdm" +optional = false +python-versions = ">=3.8" +files = [ + {file = "types-tqdm-4.67.0.20241119.tar.gz", hash = "sha256:1769e0e94d5e6d8fa814965f9cf3d9928376dd15dabcbcb784bb8769081092b4"}, + {file = "types_tqdm-4.67.0.20241119-py3-none-any.whl", hash = "sha256:a18d4eb62db0d35c52707ae13d821b5a57970755273ecb56e133ccc0ac7e7c79"}, +] + +[package.dependencies] +types-requests = "*" + +[[package]] +name = "typing-extensions" +version = "4.12.2" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, +] + +[[package]] +name = "tzdata" +version = "2024.2" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, + {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +description = "RFC 6570 URI Template Processor" +optional = false +python-versions = ">=3.7" +files = [ + {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"}, + {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"}, +] + +[package.extras] +dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-modern-annotations", "flake8-noqa", "flake8-pyproject", "flake8-requirements", "flake8-typechecking-import", "flake8-use-fstring", "mypy", "pep8-naming", "types-PyYAML"] + +[[package]] +name = "urllib3" +version = "2.2.3" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "wcwidth" +version = "0.2.13" +description = "Measures the displayed width of unicode strings in a terminal" +optional = false +python-versions = "*" +files = [ + {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, + {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, +] + +[[package]] +name = "webcolors" +version = "24.11.1" +description = "A library for working with the color formats defined by HTML and CSS." +optional = false +python-versions = ">=3.9" +files = [ + {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"}, + {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"}, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +optional = false +python-versions = "*" +files = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] + +[[package]] +name = "websocket-client" +version = "1.8.0" +description = "WebSocket client for Python with low level API options" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"}, + {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"}, +] + +[package.extras] +docs = ["Sphinx (>=6.0)", "myst-parser (>=2.0.0)", "sphinx-rtd-theme (>=1.1.0)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + +[metadata] +lock-version = "2.0" +python-versions = "3.12.*" +content-hash = "2481f73d6beed7214f740d685d79520e204443f87c10ca83d4201c394d9a1a72" diff --git a/experiments/cluster_ranking/poetry.toml b/experiments/cluster_ranking/poetry.toml new file mode 100644 index 0000000000000000000000000000000000000000..ab1033bd37224ee84b5862fb25f094db73809b74 --- /dev/null +++ b/experiments/cluster_ranking/poetry.toml @@ -0,0 +1,2 @@ +[virtualenvs] +in-project = true diff --git a/experiments/cluster_ranking/pyproject.toml b/experiments/cluster_ranking/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..a442c5ea52c354aa7b23e6b9ce8a4e6c29c63da2 --- /dev/null +++ b/experiments/cluster_ranking/pyproject.toml @@ -0,0 +1,36 @@ +[tool.poetry] +name = "cluster-ranking" +version = "0.1.0" +description = "" +authors = ["Markus Shepherd "] + +[tool.poetry.dependencies] +python = "3.12.*" + +matplotlib = "*" +networkx = {extras = ["default"], version = "^3.4.2"} +numpy = "*" +polars = {version = "*", extras = ["numpy", "pandas", "pyarrow"]} +scikit-learn = "*" +scipy = "!= 1.14.1" +seaborn = "*" +statsmodels = "*" +tqdm = "*" + +[tool.poetry.group.dev.dependencies] +jupyter-black = "*" +jupyterlab = "*" +jupytext = "*" +mypy = "*" +ruff = "*" +types-tqdm = "*" + +[tool.ruff] +target-version = "py312" + +[tool.mypy] +python_version = "3.12" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/experiments/cluster_ranking/ranking.csv b/experiments/cluster_ranking/ranking.csv new file mode 100644 index 0000000000000000000000000000000000000000..561805247516cdda0676c4033a8a48cc3c368842 --- /dev/null +++ b/experiments/cluster_ranking/ranking.csv @@ -0,0 +1,22777 @@ +rank,bgg_id,name,year,num_votes,avg_rating,bayes_rating,cluster +1,174430,Gloomhaven,2017,79032,8.57452,8.48732,"174430, 291457, 295770, 390478" +2,224517,Brass: Birmingham,2018,57483,8.50485,8.38892,"28720, 65901, 224517" +3,342942,Ark Nova,2021,40419,8.49958,8.33763, +4,167791,Terraforming Mars,2016,101544,8.36630,8.30263,"167791, 296108, 328871" +5,316554,Dune: Imperium,2020,43431,8.42216,8.27478,"316554, 397598" +6,187645,Star Wars: Rebellion,2016,32070,8.40419,8.20931, +7,162886,Spirit Island,2017,50111,8.31586,8.19194,"162886, 367498" +8,220308,Gaia Project,2017,61431,8.27751,8.17698,"120677, 181289, 220308, 356238, 364186, 383179" +9,193738,Great Western Trail,2016,47661,8.27410,8.14603,"193738, 341169, 364011, 380607, 431305" +10,115746,War of the Ring: Second Edition,2011,30586,8.32740,8.12911,"9609, 60153, 115746, 362944, 367150" +11,12333,Twilight Struggle,2005,48458,8.23376,8.10953,"12333, 300192, 383492, 429152" +12,233078,Twilight Imperium: Fourth Edition,2017,37827,8.26761,8.10854,"24, 12493, 26055, 233078" +13,363622,The Castles of Burgundy: Special Edition,2023,76078,8.18073,8.10184,"25554, 84876, 191977, 213984, 232988, 271320, 363622" +14,167355,Nemesis,2018,31352,8.26627,8.07669,"167355, 310100, 381248" +15,169786,Scythe,2016,83916,8.12723,8.05694,"169786, 226320, 416785" +16,182028,Through the Ages: A New Story of Civilization,2015,42553,8.19349,8.05499,"25613, 182028" +17,173346,7 Wonders Duel,2015,148079,8.05919,8.01994,"68448, 173346, 316377, 346703, 421006" +18,248562,Mage Knight: Ultimate Edition,2018,38317,8.16797,8.01647,"96848, 182340, 248562" +19,205637,Arkham Horror: The Card Game,2016,43637,8.13549,8.00316,"205637, 359609" +20,266192,Wingspan,2019,90095,8.06533,8.00128,"266192, 366161, 410201" +21,124361,Concordia,2013,42500,8.11522,7.98059,"124361, 256916" +22,31260,Agricola,2007,101290,8.02190,7.96574,"31260, 102794, 119890, 200680, 205418, 220520, 255262, 330021, 359999" +23,199792,Everdell,2018,55338,8.05831,7.95593,"199792, 319422, 332398, 375852, 394106, 425005" +24,177736,A Feast for Odin,2016,28183,8.15674,7.95574, +25,237182,Root,2018,49742,8.05669,7.94338,"237182, 425773" +26,161936,Pandemic Legacy: Season 1,2015,153498,7.97368,7.93706,"30549, 150658, 161936, 192153, 198928, 221107, 234671, 260428, 301919, 314040, 329670, 342848, 370913" +27,192135,Too Many Bones,2017,13689,8.34103,7.93132,"192135, 235802, 347811" +28,312484,Lost Ruins of Arnak,2020,42459,8.05894,7.92708, +29,246900,Eclipse: Second Dawn for the Galaxy,2020,37679,8.05572,7.90828,"72125, 246900" +30,164928,Orléans,2014,32469,8.06259,7.89261,"164928, 171905, 287275, 364641, 420068" +31,55690,Kingdom Death: Monster,2015,9603,8.46520,7.89088, +32,3076,Puerto Rico,2002,82076,7.95688,7.88972,"3076, 8217, 108687, 165332, 166669, 318985, 367272, 415843, 428908" +33,183394,Viticulture Essential Edition,2015,54558,7.97369,7.87334,"128621, 156455, 183394" +34,266507,Clank! Legacy: Acquisitions Incorporated,2019,53023,7.97653,7.87328,"201808, 233371, 266507, 365717, 383010" +35,285774,Marvel Champions: The Card Game,2019,23311,8.10505,7.87047, +36,251247,Barrage,2019,17338,8.15213,7.84070, +37,185343,Anachrony,2017,19236,8.09615,7.81816,"185343, 232900, 278292, 329933" +38,170216,Blood Rage,2015,47599,7.90568,7.79448,"23985, 170216" +39,175914,Food Chain Magnate,2015,20272,8.04947,7.78900, +40,295947,Cascadia,2021,36012,7.93525,7.78865, +41,324856,The Crew: Mission Deep Sea,2021,46683,7.90008,7.78707,"284083, 324856, 406299" +42,247763,Underwater Cities,2018,19541,8.05664,7.78669, +43,256960,Pax Pamir: Second Edition,2019,14451,8.14312,7.77928,"155255, 256960" +44,366013,Heat: Pedal to the Metal,2022,20536,8.02870,7.77333, +45,255984,Sleeping Gods,2021,11894,8.21418,7.77329,"255984, 331259, 358320, 361284" +46,28143,Race for the Galaxy,2007,72304,7.84029,7.76793,"28143, 103649, 132531, 205597, 255692, 291752" +47,184267,On Mars,2020,12534,8.18091,7.76420, +48,191189,Aeon's End,2016,24518,7.96415,7.75224,"191189, 218417, 241451, 270633, 299317, 331212, 352179, 386538, 412268, 429130" +49,230802,Azul,2017,94711,7.79751,7.74288,"230802, 256226, 287954, 346965, 363247, 431038" +50,2651,Power Grid,2004,68186,7.81478,7.73903,"2651, 12166, 33434, 39336, 106662, 155873, 203780, 407181, 424395" +51,284378,Kanban EV,2020,13854,8.11145,7.73869,"109276, 284378, 328124" +52,253344,Cthulhu: Death May Die,2019,12184,8.15670,7.73378,"253344, 373600, 433640" +53,521,Crokinole,1876,18089,8.01464,7.73023, +54,205059,Mansions of Madness: Second Edition,2016,44499,7.84257,7.72712,"83330, 205059" +55,244521,The Quacks of Quedlinburg,2018,49656,7.82834,7.72498,"244521, 326869, 349955, 354886, 409496" +56,126163,Tzolk'in: The Mayan Calendar,2012,39332,7.85203,7.72173, +57,164153,Star Wars: Imperial Assault,2014,51629,7.80260,7.70412,"10640, 17226, 104162, 164153" +58,124742,Android: Netrunner,2012,31520,7.86346,7.70229,"1301, 124742, 345976" +59,276025,Maracaibo,2019,16307,8.01279,7.70138, +60,216132,Clans of Caledonia,2017,20553,7.93341,7.68785, +61,266810,Paladins of the West Kingdom,2019,17635,7.97337,7.68726, +62,182874,Grand Austria Hotel,2015,20961,7.92588,7.68538,"182874, 398898" +63,171623,The Voyages of Marco Polo,2015,27756,7.86365,7.68228,"171623, 283948" +64,231733,Obsession,2018,11719,8.11044,7.68111, +65,35677,Le Havre,2008,31678,7.83910,7.68033, +66,264220,Tainted Grail: The Fall of Avalon,2019,12439,8.08222,7.67827,"264220, 360366, 371486" +67,209010,Mechs vs. Minions,2016,17534,7.96291,7.67656, +68,125153,The Gallerist,2015,14659,8.01500,7.67304, +69,251661,Oathsworn: Into the Deepwood,2022,4066,8.90440,7.67210, +70,4098,Age of Steam,2002,25365,7.86949,7.67196,"4098, 17133, 27833, 68228, 142303, 214988" +71,163068,Trickerion: Legends of Illusion,2015,12202,8.06571,7.65778,"163068, 255668" +72,157354,Five Tribes: The Djinns of Naqala,2014,41602,7.76771,7.64857, +73,110327,Lords of Waterdeep,2012,55545,7.72814,7.63930, +74,36218,Dominion,2008,100760,7.66437,7.61593,"36218, 40834, 142131, 142132, 149083, 184207, 209418, 216849, 275626" +75,286749,Hansa Teutonica: Big Box,2020,19400,7.86591,7.61448,"43015, 286749" +76,229853,Teotihuacan: City of Gods,2018,20073,7.85746,7.61446,"229853, 381715" +77,93,El Grande,1995,149645,7.64503,7.61247,"93, 822, 4390, 6779, 7717, 12902, 16216, 30662, 34615, 41010, 45748, 89952, 131014, 137492, 140711, 141007, 141008, 142057, 147170, 147303, 147782, 154094, 160094, 160500, 161729, 163370, 164127, 171908, 180564, 182082, 206940, 230751, 230914, 256065, 301201, 316344, 329954, 358124, 364405" +78,463,Magic: The Gathering,1993,167209,7.64076,7.61163,"41, 45, 171, 188, 315, 320, 415, 463, 484, 789, 931, 943, 1115, 1294, 1406, 1410, 1561, 1602, 1730, 1797, 1917, 2083, 2136, 2193, 2232, 2243, 2318, 2371, 2386, 2393, 2397, 2399, 2407, 2448, 2452, 2532, 2561, 2635, 2780, 2785, 2867, 2883, 2912, 2916, 2919, 2921, 2932, 2933, 2975, 3406, 3583, 3886, 4079, 4082, 4112, 4132, 4143, 4148, 4385, 4386, 4583, 4779, 4853, 4927, 4928, 5136, 5168, 5242, 5251, 5432, 5463, 5467, 5650, 5749, 5811, 5894, 6089, 6121, 6272, 6688, 6819, 6856, 6887, 6964, 7157, 7158, 7159, 7204, 7316, 7338, 7682, 7688, 8122, 9060, 9246, 9385, 9454, 9725, 9851, 9921, 10017, 10213, 10799, 10815, 11017, 11347, 11464, 11481, 11652, 11670, 11691, 11693, 11722, 11901, 11929, 11997, 12043, 12426, 12499, 12694, 13123, 13443, 13464, 13648, 13654, 13656, 13657, 13682, 13713, 13714, 13715, 13716, 13718, 13721, 13726, 13727, 13745, 13755, 13756, 13757, 13759, 13760, 13761, 13762, 13765, 13766, 13777, 13982, 14059, 14170, 14219, 14220, 14221, 14223, 14224, 14225, 14226, 14227, 14237, 14238, 14239, 14240, 14241, 14242, 14243, 14244, 14245, 14246, 14247, 14248, 14249, 14250, 14251, 15393, 15585, 15731, 15832, 15878, 16398, 16717, 17118, 17183, 17333, 17520, 17529, 17864, 17967, 18015, 18272, 18552, 18857, 18905, 19026, 19077, 19253, 19254, 19257, 19262, 19775, 19867, 19868, 19869, 19870, 19871, 19872, 19873, 19874, 19875, 19912, 19913, 19915, 19916, 19917, 20072, 20478, 20810, 21324, 21389, 21488, 21682, 21845, 21861, 22067, 22239, 22240, 22381, 22625, 23861, 24146, 24286, 24525, 24764, 24785, 24944, 25006, 25249, 25314, 25471, 25481, 25988, 26341, 26355, 26854, 26920, 26952, 27587, 27663, 27723, 27901, 27963, 28128, 28302, 28815, 29316, 29554, 29574, 29591, 29660, 29760, 30860, 30989, 31117, 31255, 31271, 31821, 31824, 32363, 33231, 33595, 33690, 33692, 33767, 34244, 34313, 34317, 35095, 35465, 35863, 36250, 36555, 36615, 37589, 37684, 37889, 37922, 38026, 38148, 38149, 38150, 38234, 38322, 38345, 38346, 38347, 38348, 38349, 38350, 38351, 38352, 38358, 38950, 39363, 39614, 39944, 40074, 40244, 40280, 40398, 40432, 40537, 40573, 40946, 41186, 42777, 43017, 43034, 43144, 43162, 43220, 46586, 55222, 55835, 56576, 57201, 59092, 60171, 60707, 63082, 63092, 63415, 63420, 64610, 64843, 66213, 66351, 67240, 68839, 76203, 76548, 76550, 76552, 76556, 76600, 80833, 95372, 96628, 108939, 109296, 110483, 110575, 113066, 117864, 117867, 117869, 122832, 123417, 124286, 128028, 129395, 129622, 130592, 130775, 130841, 133425, 133641, 135270, 137591, 137794, 140673, 140795, 140865, 141291, 142039, 143590, 144388, 145183, 145503, 145842, 145928, 147066, 147369, 147427, 147755, 147757, 147793, 147794, 147883, 148180, 149072, 151353, 152386, 152961, 154252, 154343, 154515, 154537, 154633, 156375, 157432, 157575, 158339, 158340, 158341, 158867, 158882, 159081, 160000, 160001, 160436, 161429, 161591, 163031, 164251, 164840, 168584, 169122, 169611, 169736, 169737, 169738, 169776, 170034, 171658, 171909, 171942, 172307, 172557, 172760, 173264, 173319, 174064, 175222, 175307, 176548, 177210, 179816, 180147, 182915, 183750, 186430, 187329, 188190, 188198, 188561, 188818, 188909, 188968, 189504, 191133, 191998, 194872, 194969, 195274, 196326, 197108, 198328, 198474, 198476, 198477, 198522, 198740, 200430, 200699, 201890, 202937, 203301, 203381, 207905, 209167, 210064, 210390, 210395, 210396, 210397, 210399, 210400, 210401, 210402, 210405, 210406, 210410, 210412, 210465, 212298, 213304, 214224, 215227, 216146, 217547, 218575, 224452, 226316, 229224, 230121, 230408, 231392, 232238, 232822, 235019, 237073, 238506, 240480, 241014, 242290, 242683, 242689, 242690, 242692, 242693, 242694, 243142, 245107, 245136, 248362, 248417, 248927, 249833, 253470, 254433, 255548, 256064, 256727, 257954, 259807, 260754, 260756, 260758, 260759, 260760, 260761, 260762, 260763, 260764, 262374, 263214, 263216, 263219, 264715, 264717, 265210, 265297, 265797, 265960, 272748, 274151, 277050, 277085, 277273, 277403, 277404, 280890, 281318, 281319, 282781, 283160, 287470, 287863, 289231, 289363, 289787, 289788, 289789, 289790, 289792, 289793, 290512, 292831, 293101, 293458, 294648, 295391, 295439, 296297, 296341, 297594, 297821, 300447, 300802, 302584, 303552, 304285, 306630, 310883, 311694, 312887, 313121, 314126, 315898, 316268, 317354, 317608, 317609, 318702, 322844, 324415, 326569, 326905, 326906, 326978, 327612, 327898, 328628, 329385, 330210, 330775, 332581, 333959, 337075, 338732, 339905, 340033, 341751, 342089, 344268, 345085, 345582, 349795, 351661, 351967, 352782, 352837, 353206, 353426, 353470, 356071, 358044, 359135, 359605, 359608, 360898, 360901, 360934, 360943, 361207, 361215, 361898, 362019, 362533, 362914, 363937, 364269, 364752, 366409, 367996, 368128, 369676, 369934, 371042, 371232, 371438, 373490, 373833, 374335, 374342, 375772, 376416, 377176, 378283, 378957, 379666, 382463, 383272, 383273, 383277, 383279, 383280, 384003, 385660, 386494, 386779, 387838, 390576, 391740, 391742, 391824, 391992, 392954, 392955, 397638, 400786, 400877, 400889, 401704, 402511, 403177, 406077, 406459, 406925, 407190, 407290, 411404, 414311, 416130, 420544, 420545, 420546, 420548, 421105, 422060, 422544, 423156, 423326, 423791, 424784, 425793, 428019, 428775, 429844, 433814, 434095, 435067" +79,269385,The Lord of the Rings: Journeys in Middle-Earth,2019,16287,7.90542,7.60700, +80,161533,Lisboa,2017,12578,7.98762,7.60209,"161533, 262477" +81,37111,Battlestar Galactica: The Board Game,2008,41599,7.71634,7.59990,"37111, 111124, 340466" +82,180263,The 7th Continent,2017,23468,7.80006,7.59421,"180263, 283317" +83,121921,Robinson Crusoe: Adventures on the Cursed Island,2012,44875,7.69843,7.59094,"121921, 192455, 334931" +84,159675,Fields of Arle,2014,11083,8.02316,7.58847,"159675, 393531" +85,170042,Raiders of the North Sea,2015,29027,7.75185,7.58607,"75547, 170042, 176371, 249889, 301880, 386366" +86,62219,Dominant Species,2010,22650,7.79756,7.58520,"62219, 96260, 262941" +87,317985,Beyond the Sun,2020,14321,7.91455,7.57957, +88,14996,Ticket to Ride: Europe,2005,143653,7.61075,7.57739,"9209, 14996, 21348, 31627, 34127, 119637, 160069, 202670, 205125, 218208, 225244, 244525, 253284, 258140, 276894, 309113, 329841, 362541, 366488, 371140, 390092" +89,172386,Mombasa,2015,15051,7.88816,7.57078,"172386, 195850, 359438" +90,155821,Inis,2016,20025,7.80415,7.56614,"155821, 321563" +91,236457,Architects of the West Kingdom,2018,29043,7.73023,7.56613, +92,147020,Star Realms,2014,57106,7.64069,7.55758,"147020, 179303, 182631, 198994, 216123, 230253, 298628, 355199, 360676, 378136, 407265, 407812, 422345" +93,279537,The Search for Planet X,2020,12335,7.94131,7.55669,"279537, 358557, 414648" +94,321608,Hegemony: Lead Your Class to Victory,2023,5537,8.41112,7.55499,"321608, 406767" +95,146021,Eldritch Horror,2013,69015,7.62228,7.55364,"34, 15987, 146021, 257499" +96,18602,Caylus,2005,32637,7.69568,7.55073,"18602, 27364, 284818" +97,42,Tigris & Euphrates,1997,30625,7.70122,7.54703,"42, 19419, 244114, 371688" +98,146652,Legendary Encounters: An Alien Deck Building Game,2014,33529,7.68438,7.54377,"129437, 146652, 156689, 174570, 195571, 200171, 210290, 252985, 256874, 285157, 373105, 394960, 426580" +99,225694,Decrypto,2018,22364,7.75394,7.54319, +100,203993,Lorenzo il Magnifico,2016,14509,7.86794,7.54310,"203993, 338476" +101,271055,Dwellings of Eldervale,2020,7507,8.16474,7.53838,"271055, 358661, 429653" +102,205896,Rising Sun,2018,21282,7.75822,7.53738, +103,103885,Star Wars: X-Wing Miniatures Game,2012,28681,7.69948,7.53574,"103885, 139771, 155689, 183562, 240143, 252328, 275972, 386914" +104,373106,Sky Team,2023,7908,8.12933,7.53555, +105,178900,Codenames,2015,104367,7.57157,7.52678,"178900, 198773, 205158, 220774, 220775, 224037, 249821, 272910, 290028, 301628, 366383" +106,77423,The Lord of the Rings: The Card Game,2011,25814,7.70348,7.52273,"77423, 259970, 349067" +107,189932,Tyrants of the Underdark,2016,10734,7.95256,7.51872,"189932, 336847" +108,122515,Keyflower,2012,23963,7.71266,7.51836,"122515, 205507, 252446" +109,268864,Undaunted: Normandy,2019,13862,7.85423,7.51835,"268864, 290359, 354570, 366495, 368320" +110,127023,Kemet,2012,22517,7.72247,7.51594,"127023, 297562, 336849" +111,163412,Patchwork,2014,66417,7.58487,7.51489,"163412, 246639, 264239, 362693" +112,73439,Troyes,2010,23525,7.70689,7.50981, +113,322289,Darwin's Journey,2023,6853,8.17023,7.49776,"322289, 328413" +114,217372,The Quest for El Dorado,2017,25744,7.67191,7.49330,"217372, 271615" +115,233867,Welcome To...,2018,34115,7.62775,7.49299,"233867, 260937, 281075, 339789, 392449" +116,54625,Space Hulk (Third Edition),2009,22566,7.69651,7.49279,"1634, 1758, 2161, 2162, 2163, 3072, 4192, 8630, 11106, 13362, 14403, 27658, 33048, 37165, 37672, 54625, 63091, 74408, 126613, 129974, 130552, 145847, 154307, 160044, 165838, 169823, 180241, 190740, 197572, 203270, 204397, 207653, 215749, 218933, 223619, 224597, 227888, 229427, 229685, 231035, 231036, 234521, 234722, 242892, 256066, 256422, 261594, 264198, 268098, 268159, 268183, 268185, 268248, 268266, 268308, 281782, 283076, 283077, 284126, 285871, 287754, 288570, 293671, 298847, 314243, 316655, 316664, 326624, 329748, 330704, 332075, 337397, 341080, 344697, 350072, 359066, 362477, 362959, 363009, 370671, 373084, 386136, 387535, 393971, 395372, 395373, 395374, 395644, 396015, 401248, 403634, 411400, 420041, 425091, 426095, 429262, 432676" +117,310873,Carnegie,2022,8925,8.00489,7.49044, +118,102680,Trajan,2011,17822,7.74246,7.48547, +119,281259,The Isle of Cats,2019,22008,7.69221,7.48423,"281259, 338460, 431718" +120,291453,SCOUT,2019,14732,7.79414,7.48355, +121,266524,PARKS,2019,25006,7.65790,7.47565, +122,271324,It's a Wonderful World,2019,20460,7.68538,7.46396,"271324, 295260, 327711" +123,263918,Cartographers,2019,30742,7.61030,7.46300,"263918, 315767, 322045" +124,172287,Champions of Midgard,2015,17709,7.71784,7.46224,"172287, 314550" +125,148949,Istanbul,2014,35978,7.58804,7.46223,"148949, 235488, 251219, 379037" +126,364073,Splendor Duel,2022,85061,7.51412,7.46094,"148228, 293296, 364073, 406291" +127,14105,Commands & Colors: Ancients,2006,10651,7.88145,7.45750,"14105, 62222, 122913, 209003, 259066" +128,175155,Forbidden Stars,2015,15512,7.74833,7.45727,"22827, 175155" +129,2511,Sherlock Holmes Consulting Detective: The Thames Murders & Other Cases,1982,25705,7.63001,7.45460,"2511, 6266, 146392, 204305, 223931, 238065, 270213, 296345, 307511" +130,244271,Dice Throne: Season Two – Battle Chest,2018,15727,7.73969,7.45320,"216734, 244271, 266964, 266965, 266966, 266967, 268191, 268201, 291794, 320527, 322561, 322562, 322563, 348406, 360061, 360152, 360153, 366310, 403494, 418801, 431582" +131,220877,Rajas of the Ganges,2017,15316,7.74437,7.45059,"220877, 318553, 389092, 410625" +132,294484,Unmatched: Cobble & Fog,2020,18434,7.69345,7.44949,"3284, 6841, 274637, 274638, 284777, 284778, 294484, 295564, 315060, 325635, 326933, 326934, 326936, 326937, 335764, 354544, 381297, 383467, 383469, 411860, 411861, 415945, 425276, 428308" +133,175640,Vinhos: Deluxe Edition,2016,10572,7.86873,7.44445,"42052, 175640" +134,34635,Stone Age,2008,55358,7.52229,7.44139,"34635, 191004, 234511, 260678" +135,161970,Alchemists,2014,22980,7.63325,7.43864,"161970, 418812" +136,332772,Revive,2022,6685,8.10743,7.43851, +137,262712,Res Arcana,2019,22133,7.63669,7.43501,"262712, 427345" +138,244522,That's Pretty Clever!,2018,26866,7.59845,7.43252,"244522, 269210, 316546, 354892, 366162, 407180" +139,196340,Yokohama,2016,12092,7.79855,7.43030,"196340, 264637, 335736" +140,254640,Just One,2018,27660,7.58893,7.42812,"241611, 254640" +141,239188,Chronicles of Crime,2018,25044,7.60170,7.42444,"239188, 300300, 302098, 302312" +142,188920,This War of Mine: The Board Game,2017,13150,7.76106,7.42362, +143,12,Ra,1999,27623,7.58377,7.42317,"12, 12589, 35503, 59753, 422796" +144,118048,Targi,2012,23710,7.60644,7.41967, +145,82222,Xia: Legends of a Drift System,2014,10079,7.84908,7.41157, +146,240980,Blood on the Clocktower,2022,5314,8.23420,7.40657, +147,176189,Zombicide: Black Plague,2015,39426,7.51784,7.40631,"113924, 137988, 161866, 176189, 224710, 248065, 251723, 264164, 286751, 331224, 338630, 339300, 351817, 355200, 366023, 383496, 401596, 422898" +148,233398,Endeavor: Age of Sail,2018,17247,7.65804,7.40345,"33160, 233398" +149,274364,Watergate,2019,11872,7.77061,7.40119, +150,227935,Wonderland's War,2022,6640,8.06054,7.40035, +151,54043,Jaipur,2009,51531,7.48505,7.39999, +152,249259,War Chest,2018,10046,7.83624,7.39997, +153,304783,Hadrian's Wall,2021,7955,7.94976,7.39907, +154,308765,Praga Caput Regni,2020,8784,7.89437,7.39636, +155,10630,Memoir '44,2004,32059,7.53124,7.39490,"551, 10630, 88827" +156,296151,Viscounts of the West Kingdom,2020,9732,7.84070,7.39219, +157,150376,Dead of Winter: A Crossroads Game,2014,50054,7.47816,7.39101,"150376, 176601, 193037" +158,155426,Castles of Mad King Ludwig,2014,36262,7.51097,7.39069,"155426, 168435, 223278, 258036, 326945, 369635" +159,329082,Radlands,2021,10023,7.82371,7.38897, +160,103343,A Game of Thrones: The Board Game (Second Edition),2011,41595,7.49174,7.38709,"6472, 103343" +161,299659,Clash of Cultures: Monumental Edition,2021,8880,7.87443,7.38481,"40765, 299659" +162,282524,Horrified,2019,17632,7.63071,7.38420,"282524, 343562, 397897, 423434" +163,221194,Dinosaur Island,2017,21497,7.58567,7.38355,"221194, 247236, 317457, 318009" +164,43111,Chaos in the Old World,2009,15756,7.65498,7.37977, +165,144344,Rococo,2013,11839,7.74357,7.37771,"144344, 296100" +166,283355,Dune,2019,17582,7.62280,7.37659,"121, 104363, 283355, 341165, 419572" +167,271896,Star Wars: Outer Rim,2019,12456,7.72234,7.37508, +168,199561,Sagrada,2017,41450,7.47893,7.37461,"199561, 369751" +169,325494,ISS Vanguard,2022,3714,8.53176,7.37018, +170,712,Blood Bowl (Third Edition),1994,11578,7.74115,7.36881,"712, 2287, 2288, 3071, 15985, 212445, 247104, 318472, 320698, 352026, 356631, 359065, 427150" +171,144733,Russian Railroads,2013,27690,7.52332,7.36772,"12287, 83195, 118705, 144733, 148532, 189005, 197760, 235296, 236868, 244702, 329533, 329591" +172,7854,YINSH,2003,13727,7.67800,7.36465,"108, 527, 528, 2346, 7854, 19764, 31999, 217083, 378284" +173,123260,Suburbia,2012,27500,7.51816,7.36197,"123260, 267367, 343588" +174,128882,The Resistance: Avalon,2012,62724,7.42779,7.35940,"41114, 128882, 316287, 317030, 367396" +175,39463,Cosmic Encounter,2008,38162,7.47074,7.35841,"15, 1566, 39463, 40529, 40531, 204837, 298572, 313010" +176,350184,Earth,2023,13117,7.68214,7.35578, +177,232832,Century: Golem Edition,2017,36326,7.47357,7.35572,"209685, 232832, 242574, 270970, 283619, 312318, 382315" +178,227224,The Red Cathedral,2020,12192,7.70251,7.35209, +179,265188,Glen More II: Chronicles,2019,16210,7.61147,7.34842,"66362, 265188" +180,195421,Near and Far,2017,22723,7.53310,7.34573,"172818, 185589, 187926, 195421, 332032, 401175, 423553" +181,188834,Secret Hitler,2016,28735,7.49260,7.34452, +182,371942,The White Castle,2023,7483,7.91222,7.34383, +183,300531,Paleo,2020,12226,7.68948,7.34194, +184,154203,Imperial Settlers,2014,35958,7.44879,7.33131,"73369, 96007, 143105, 154203, 192458, 270836, 270844, 357726, 357813" +185,314491,Meadow,2021,10444,7.73179,7.32803, +186,285967,Ankh: Gods of Egypt,2021,9219,7.77978,7.32350, +187,258779,Planet Unknown,2022,8380,7.82226,7.32099, +188,242302,Space Base,2018,19197,7.53789,7.31928, +189,104006,Village,2011,24893,7.48713,7.31860,"104006, 172381, 365056" +190,24181,Imperial,2006,13346,7.63258,7.31829,"24181, 54138, 410103" +191,93260,Summoner Wars: Master Set,2011,18589,7.54193,7.31651,"58281, 82420, 82421, 93260, 158889, 260837, 332800, 339263" +192,54998,Cyclades,2009,21739,7.50545,7.31306,"54998, 380619" +193,169426,Roll Player,2016,21451,7.50507,7.31038,"169426, 254708" +194,154597,Hive Pocket,2010,47460,7.39712,7.30918,"2655, 154597, 427593" +195,283155,Calico,2020,18844,7.53042,7.30897, +196,20551,Shogun,2006,17562,7.54238,7.30526,"3307, 20551, 109125, 176103, 206236, 226562, 418113" +197,91,Paths of Glory,1999,5393,8.07350,7.30251,"91, 23418, 157653" +198,70149,Ora et Labora,2011,11043,7.67836,7.30195, +199,146886,La Granja,2014,13191,7.61625,7.30126,"146886, 195528, 341945, 368386" +200,31481,Galaxy Trucker,2007,39823,7.40455,7.30027,"31481, 140068, 336794" +201,25021,Sekigahara: The Unification of Japan,2011,6004,7.99175,7.30013, +202,215,Tichu,1991,15609,7.55866,7.29359,"215, 313051" +203,306735,Under Falling Skies,2020,11957,7.63913,7.29319,"273779, 306735" +204,118,Modern Art,1992,23459,7.46742,7.29128,"118, 40381" +205,293014,Nidavellir,2020,13624,7.59159,7.28873,"293014, 432229" +206,171131,Captain Sonar,2016,23218,7.46071,7.28352,"171131, 231819, 259809" +207,269207,The Taverns of Tiefenthal,2019,14343,7.56840,7.28183, +208,760,Battle Line,2000,29195,7.42155,7.28084,"372, 760, 2705, 17119, 38387, 182756, 227175, 295155, 297985, 300930, 322864, 340252, 341393, 341511, 342388, 417997" +209,245638,Coimbra,2018,12104,7.61665,7.27783, +210,298047,Marvel United,2020,11635,7.62880,7.27657,"298047, 336382, 377969, 379908, 418762" +211,223040,Fantasy Realms,2017,17086,7.51637,7.27652,"223040, 347117, 359152, 363289, 428664" +212,146439,BattleLore: Second Edition,2013,16583,7.52199,7.27507,"25417, 67492, 146439" +213,318977,MicroMacro: Crime City,2020,17327,7.51126,7.27495,"318977, 338834, 364766, 398162" +214,139976,Cthulhu Wars,2015,7103,7.84563,7.27060,"139976, 164702, 220827, 326485, 335451" +215,155068,Arcadia Quest,2014,13147,7.57801,7.26782,"155068, 162476, 179803, 181524, 257193" +216,295486,My City,2020,11948,7.60803,7.26689,"295486, 351476, 359394" +217,21050,Combat Commander: Europe,2006,5990,7.94163,7.26277,"21050, 383037" +218,156129,Deception: Murder in Hong Kong,2014,22720,7.43992,7.26112, +219,199478,Flamme Rouge,2016,18160,7.48320,7.25968,"199478, 395256" +220,126042,Nations,2013,15454,7.52210,7.25946,"126042, 157809" +221,158600,Hanamikoji,2013,18644,7.47580,7.25825,"158600, 322339" +222,194655,Santorini,2016,39632,7.35586,7.25378,"9963, 194655, 315631, 386166" +223,224783,Vindication,2018,7412,7.79255,7.24840,"224783, 380707, 429895" +224,308119,Pax Renaissance: 2nd Edition,2021,4254,8.19530,7.24762,"2299, 198953, 308119" +225,234,Hannibal: Rome vs. Carthage,1996,6321,7.88494,7.24728,"234, 227460, 421262, 421264" +226,555,The Princes of Florence,2000,15625,7.49980,7.24254, +227,232405,Western Legends,2018,11355,7.59588,7.24199,"232405, 313924, 420894" +228,176494,Isle of Skye: From Chieftain to King,2015,25859,7.39596,7.24068,"176494, 369258" +229,165722,KLASK,2014,10555,7.61817,7.23827,"165722, 270131" +230,286096,Tapestry,2019,20399,7.43407,7.23758, +231,17392,Here I Stand,2006,5124,8.01772,7.23612,"17392, 41066, 242722" +232,146508,T.I.M.E Stories,2015,27926,7.37539,7.23229, +233,46213,Telestrations,2009,21466,7.41719,7.23116,"46213, 153016, 173761, 216798, 302463" +234,242705,Aeon Trespass: Odyssey,2022,2190,9.05350,7.23061,"242705, 389906" +235,285192,Destinies,2021,8421,7.70215,7.22862, +236,305096,Endless Winter: Paleoamericans,2022,7955,7.72712,7.22648, +237,374173,Star Wars: The Deckbuilding Game,2023,6158,7.87060,7.22457,"374173, 422332" +238,22545,Age of Empires III: The Age of Discovery,2007,11886,7.55499,7.22099,"22545, 173442, 187785" +239,277659,Final Girl,2021,11453,7.56353,7.21758,"134253, 198707, 277659, 343013, 386835, 410768" +240,228341,Pulsar 2849,2017,8972,7.65699,7.21583, +241,3,Samurai,1998,16905,7.44922,7.21517,"3, 35634, 369898" +242,92828,Dixit: Odyssey,2011,75301,7.26559,7.21311,"39856, 92828, 121288, 284007, 307090, 329845, 381308, 415714, 427810" +243,9216,Goa: A New Expedition,2004,11558,7.55171,7.21035, +244,291572,Oath,2021,7141,7.76082,7.20881, +245,256680,Return to Dark Tower,2022,5338,7.94501,7.20724,"30, 256680" +246,302723,Forgotten Waters,2020,6477,7.81496,7.20701,"302723, 383206" +247,204583,Kingdomino,2016,61722,7.26962,7.20587,"1198, 17053, 34583, 128290, 140650, 143967, 146624, 154976, 160441, 168390, 204583, 232043, 260940, 260941, 260998, 260999, 281960, 324784, 340041" +248,19857,Glory to Rome,2005,17443,7.42839,7.20315,"19857, 128063, 175199" +249,300322,Hallertau,2020,5820,7.86707,7.19518, +250,59959,Letters from Whitechapel,2011,19246,7.39733,7.19426,"59959, 190082" +251,27708,1960: The Making of the President,2007,9369,7.61056,7.19357, +252,140620,Lewis & Clark: The Expedition,2013,15807,7.43879,7.19189, +253,146791,Shadows of Brimstone: City of the Ancients,2014,4967,7.97715,7.19155,"146791, 150997, 212346, 273654, 273655, 322984, 322985, 394217, 394218" +254,40692,Small World,2009,78283,7.23951,7.18972,"60, 40692, 97786, 140135, 309630" +255,108745,Seasons,2012,25253,7.34159,7.18745, +256,331106,The Witcher: Old World,2023,5024,7.96149,7.18693,"331106, 373597" +257,223321,Detective: A Modern Crime Board Game,2018,11950,7.50797,7.18308,"223321, 293531, 299255, 329713, 355276" +258,127060,Bora Bora,2013,10483,7.55213,7.18200,"127060, 368975" +259,170771,Sword & Sorcery,2017,5301,7.91388,7.18196,"170771, 262201" +260,163967,Tiny Epic Galaxies,2015,22979,7.35052,7.18170,"163967, 186659, 285826, 317105" +261,206718,Ethnos,2017,14182,7.45455,7.18111,"206718, 380938, 432527" +262,199042,Harry Potter: Hogwarts Battle,2016,20446,7.36964,7.18009,"199042, 254192, 282418, 416284" +263,156546,Monikers,2015,6504,7.77479,7.17922,"156546, 179448, 195709, 217644, 221248, 255249, 283151, 283152, 394852, 404462" +264,323612,Bitoku,2021,5965,7.82443,7.17621, +265,246784,Cryptid,2018,14685,7.43702,7.17406, +266,192291,Sushi Go Party!,2016,69777,7.22852,7.17320,"133473, 192291, 271869, 424972" +267,311193,Anno 1800: The Board Game,2020,7222,7.70753,7.17312, +268,160477,Onitama,2014,22496,7.34393,7.17243, +269,421,1830: Railways & Robber Barons,1986,5645,7.85397,7.17109, +270,318184,Imperium: Classics,2021,7710,7.66248,7.16448,"318182, 318184, 367518" +271,181279,Fury of Dracula (Third/Fourth Edition),2015,23238,7.32816,7.16307,"936, 20963, 181279" +272,337627,Voidfall,2023,3191,8.35603,7.15768,"33759, 337627" +273,187617,Nemo's War (Second Edition),2017,5858,7.81035,7.15761,"39232, 187617, 325941" +274,222509,Lords of Hellas,2018,7904,7.63646,7.15380,"222509, 340865" +275,186751,Mythic Battles: Pantheon,2017,3667,8.18566,7.14858,"125996, 186751, 331398, 415112" +276,284653,Mind MGMT: The Psychic Espionage “Game.”,2021,4989,7.91068,7.14847, +277,38453,Space Alert,2008,16192,7.38306,7.14825, +278,21241,Neuroshima Hex! 3.0,2006,16187,7.38310,7.14821,"21241, 43262, 238393" +279,70323,King of Tokyo,2011,80162,7.19096,7.14366,"70323, 160499, 293141, 336755, 350755, 403240" +280,37046,Ghost Stories,2008,24288,7.29973,7.14362,"37046, 285984" +281,97207,Dungeon Petz,2011,15098,7.39363,7.14266, +282,5,Acquire,1963,20428,7.32620,7.14091, +283,336986,Flamecraft,2022,13408,7.42265,7.14042, +284,236191,London (Second Edition),2017,12519,7.44206,7.13989,"65781, 236191" +285,2653,Survive: Escape from Atlantis!,1982,28321,7.27235,7.13886,"2653, 24037, 177147, 315048, 425428" +286,40354,Maria,2009,5388,7.83953,7.13817,"12891, 40354" +287,150145,Skull King,2013,10392,7.50109,7.13758, +288,181304,Mysterium,2015,49726,7.21325,7.13730,"113997, 181304, 301767, 367206" +289,36553,Time's Up! Title Recall!,2008,12179,7.44667,7.13667,"1353, 36553, 37141, 38713, 46158, 57660, 88126, 174219, 230262, 320582, 376700, 400733, 427179" +290,136888,Bruges,2013,12396,7.43916,7.13492,"136888, 314580" +291,54,Tikal,1999,20463,7.31910,7.13481,"54, 325923, 426869" +292,176734,The Manhattan Project: Energy Empire,2016,6255,7.73587,7.13346,"176734, 429401" +293,351913,Tiletum,2022,4891,7.90186,7.13210, +294,414317,Harmonies,2024,4747,7.92469,7.13175, +295,71,Civilization,1980,8483,7.57451,7.13100,"71, 131240, 143347, 184424, 267304, 338980, 339526" +296,66589,Navegador,2010,9355,7.53201,7.13007, +297,184921,Bunny Kingdom,2017,13093,7.41711,7.12994, +298,172,For Sale,1997,31421,7.24931,7.12967,"172, 318709" +299,77130,Sid Meier's Civilization: The Board Game,2010,15948,7.36516,7.12946, +300,262211,Cloudspire,2019,3626,8.16492,7.12874, +301,172081,Burgle Bros.,2015,12555,7.42763,7.12843,"172081, 286537, 424929" +302,45315,Dungeon Lords,2009,14611,7.38467,7.12769,"45315, 161617" +303,70919,Takenoko,2011,44973,7.21080,7.12733,"70919, 319765" +304,260605,Camel Up (Second Edition),2018,38231,7.22456,7.12642,"153938, 192947, 260605, 378848" +305,239942,Black Rose Wars,2019,4295,7.99982,7.12634,"239942, 342444, 350054, 395907, 430702" +306,163745,Star Wars: Armada,2015,5498,7.80509,7.12380,"163745, 322750, 322751" +307,50,Lost Cities,1999,52153,7.19481,7.12302,"50, 34585, 40832, 41003, 42487, 66085, 99952, 209872, 244795" +308,25292,Merchants & Marauders,2010,14345,7.38223,7.12148, +309,332686,John Company: Second Edition,2022,4157,8.01966,7.12045,"211716, 332686" +310,188866,Awkward Guests: The Walton Case,2016,8495,7.55955,7.11972,"188866, 319078, 378477" +311,356123,Turing Machine,2022,6537,7.69128,7.11971, +312,260180,Project L,2020,9929,7.49533,7.11915,"260180, 319031, 405752" +313,36932,Claustrophobia,2009,8371,7.56446,7.11847,"36932, 257518" +314,48726,Alien Frontiers,2010,15608,7.35702,7.11790,"48726, 174610, 383197" +315,59294,Runewars,2010,8636,7.54822,7.11644,"25, 59294" +316,155987,Abyss,2014,16427,7.34217,7.11533,"155987, 276042" +317,245655,The King's Dilemma,2019,5904,7.74531,7.11450,"245655, 341870" +318,143693,Glass Road,2013,11836,7.42492,7.11095, +319,63888,Innovation,2010,18921,7.30410,7.10806,"63888, 185257, 388367" +320,227789,Heaven & Ale,2017,8679,7.53357,7.10656, +321,140934,Arboretum,2015,20795,7.28374,7.10563, +322,47,Chinatown,1999,11793,7.41956,7.10551,"47, 396618" +323,9217,Saint Petersburg,2004,17776,7.31362,7.10530,"9217, 156943" +324,203420,Exit: The Game – The Abandoned Cabin,2016,11601,7.42351,7.10447, +325,219513,Bärenpark,2017,19195,7.29582,7.10316, +326,13,CATAN,1995,136675,7.13016,7.10310,"13, 189, 1897, 3655, 3972, 4394, 5549, 5824, 6778, 13831, 17419, 20899, 24511, 25234, 27710, 27766, 38749, 38821, 47410, 52825, 67239, 103091, 117985, 123386, 125921, 140743, 144418, 147240, 152959, 161527, 172994, 182880, 184842, 191710, 194097, 229218, 244144, 265030, 269980, 282853, 284815, 298278, 305668, 338697, 358858, 394723, 408727" +327,160010,Conan,2016,6733,7.64888,7.10053,"160010, 222514" +328,322708,Descent: Legends of the Dark,2021,4650,7.89197,7.09882, +329,304420,Bonfire,2020,6593,7.65366,7.09544,"304420, 400922" +330,138161,Firefly: The Game,2013,12278,7.39445,7.09482,"138161, 391288" +331,329839,So Clover!,2021,8024,7.55218,7.09394, +332,19777,Indonesia,2005,4707,7.87169,7.09166, +333,234277,Nusfjord,2017,6559,7.64855,7.08952,"234277, 378979" +334,284189,Foundations of Rome,2022,4058,7.99225,7.08898,"284189, 412865, 422426, 422433" +335,169427,Middara: Unintentional Malum – Act 1,2019,2466,8.57331,7.08791, +336,246192,Gizmos,2018,12910,7.37054,7.08698, +337,297030,Tekhenu: Obelisk of the Sun,2020,5869,7.71067,7.08693, +338,101721,Mage Wars Arena,2012,8607,7.51004,7.08519,"101721, 172503" +339,345584,Mindbug: First Contact,2022,6106,7.67849,7.08114,"345584, 390173, 392513, 419642, 419645" +340,111341,The Great Zimbabwe,2012,4874,7.82613,7.07887, +341,396790,Nucleum,2023,3571,8.09275,7.07520, +342,345972,Cat in the Box: Deluxe Edition,2022,8384,7.50859,7.07519,"324345, 345972, 396587" +343,90137,Blood Bowl: Team Manager – The Card Game,2011,11531,7.38824,7.07346, +344,318084,Furnace,2020,10795,7.40897,7.07286, +345,281655,High Frontier 4 All,2020,6395,7.63901,7.07197,"639, 5525, 29256, 47055, 97915, 98918, 172737, 174333, 221769, 235555, 281655, 318450, 339591" +346,295895,Distilled,2023,4796,7.82742,7.07154, +347,319966,The King Is Dead: Second Edition,2020,10573,7.40993,7.06786,"29937, 172996, 319966" +348,234487,Altiplano,2017,9206,7.45658,7.06454, +349,250458,Gùgōng,2018,9236,7.45266,7.06242,"250458, 319196" +350,144592,Bruxelles 1893,2013,7235,7.55987,7.06188,"144592, 275913, 345155" +351,31594,In the Year of the Dragon,2007,13598,7.32609,7.06124,"31594, 214000" +352,18833,Lord of the Rings: The Confrontation,2005,11750,7.36449,7.05852,"3201, 18833" +353,194594,Dice Forge,2017,22146,7.22002,7.05776, +354,195539,The Godfather: Corleone's Empire,2017,7771,7.52009,7.05769, +355,478,Citadels,2000,66028,7.11142,7.05703,"478, 130060, 205398" +356,295374,Long Shot: The Dice Game,2022,9538,7.43306,7.05659,"40237, 295374, 396332" +357,245934,Carpe Diem,2018,7874,7.51052,7.05497, +358,244711,Newton,2018,7378,7.54079,7.05470,"244711, 351735" +359,356033,Libertalia: Winds of Galecrest,2022,19356,7.23996,7.05468,"125618, 356033" +360,176920,Mission: Red Planet (Second/Third Edition),2015,15105,7.28946,7.05239,"18258, 176920" +361,24480,The Pillars of the Earth,2006,18516,7.24494,7.05163,"24480, 67593, 309109" +362,66188,Fresco,2010,14530,7.29469,7.04880,"66188, 139991, 290829, 292013" +363,284435,Nova Luna,2019,11539,7.35745,7.04799,"200853, 284435, 309105, 353152, 362062" +364,161614,Stockpile,2015,7952,7.49652,7.04758,"161614, 282391" +365,391163,Forest Shuffle,2023,6534,7.59248,7.04650, +366,124708,Mice and Mystics,2012,19966,7.22509,7.04642,"124708, 179820" +367,367220,Sea Salt & Paper,2022,9165,7.43342,7.04464, +368,243,Advanced Squad Leader,1985,3822,7.97603,7.04409,"243, 306919" +369,13122,Antiquity,2004,4505,7.83434,7.04382, +370,128271,Ginkgopolis,2012,8071,7.48065,7.04039, +371,128671,Spartacus: A Game of Blood and Treachery,2012,9099,7.43006,7.03971,"128671, 168512" +372,175095,Dawn of the Zeds (Third Edition),2016,3423,8.07578,7.03878,"99130, 144568, 175095" +373,265736,Tiny Towns,2019,19530,7.21974,7.03807, +374,10547,Betrayal at House on the Hill,2004,51601,7.10618,7.03745,"10547, 228660, 240196, 302809, 358504" +375,233312,Stuffed Fables,2018,9318,7.41497,7.03497,"233312, 256883, 281946" +376,39683,At the Gates of Loyang,2009,11329,7.34728,7.03478, +377,215341,Thunderstone Quest,2018,18571,7.22464,7.03408,"53953, 85897, 116998, 140951, 142961, 152765, 215341" +378,202426,Sidereal Confluence,2017,4977,7.74474,7.03383, +379,215311,Downforce,2017,16443,7.24881,7.03365,"101, 631, 932, 2017, 5389, 7956, 215311" +380,27162,Kingsburg,2007,23527,7.18076,7.03068,"27162, 154509, 199382, 199966, 271349, 425064" +381,246684,Smartphone Inc.,2018,6794,7.54596,7.02737,"246684, 344768" +382,92415,Skull,2011,23689,7.17529,7.02663, +383,311988,Frostpunk: The Board Game,2022,2956,8.21512,7.02502, +384,69789,Ascension: Deckbuilding Game,2010,18245,7.21664,7.02396,"69789, 95064, 108784, 122294, 138233, 144864, 145633, 157026, 158976, 172155, 180616, 185123, 200456, 213788, 215616, 230273, 241203, 245050, 249552, 261321, 261588, 271064, 304531, 308755, 312958, 325810, 341554, 378574, 423691" +385,245654,Railroad Ink: Deep Blue Edition,2018,19089,7.20202,7.01852,"245654, 251678, 306881, 306882, 367513, 379806" +386,258210,Blitzkrieg!: World War Two in 20 Minutes,2019,6229,7.58060,7.01832,"238024, 258210, 347521" +387,247367,"Air, Land & Sea",2019,7998,7.45490,7.01729,"247367, 358981" +388,251658,Sprawlopolis,2018,11537,7.31888,7.01580,"251658, 314088, 352606, 408828" +389,280794,Etherfields,2020,3909,7.90865,7.01476, +390,55670,Macao,2009,8180,7.44066,7.01377,"55670, 314582" +391,284742,Honey Buzz,2020,6366,7.56173,7.01335, +392,350316,Wayfarers of the South Tigris,2022,4460,7.79513,7.01272, +393,100901,Flash Point: Fire Rescue,2011,24623,7.15313,7.01153,"74596, 100901" +394,256952,Zombie Kidz Evolution,2018,6049,7.58454,7.00906,"147009, 256952, 310448" +395,298069,Cubitos,2021,8729,7.40693,7.00833, +396,34219,Biblios,2007,18753,7.19349,7.00799,"34219, 122943, 164506, 300523, 333553" +397,91312,Discworld: Ankh-Morpork,2011,12086,7.28588,6.99965,"91312, 249746" +398,262543,Wavelength,2019,13380,7.25729,6.99887, +399,229220,Santa Maria,2017,7181,7.47875,6.99765,"229220, 422674" +400,370591,Dorfromantik: The Board Game,2022,5389,7.63824,6.99731,"370591, 395364, 424774" +401,158899,Colt Express,2014,33756,7.09934,6.99704,"158899, 192766, 299027, 341504" +402,276182,Dead Reckoning,2022,2959,8.16196,6.99583, +403,156009,Port Royal,2014,20113,7.16643,6.99497,"147999, 156009, 193265, 331265" +404,6249,Alhambra,2003,38720,7.08354,6.99450,"431, 963, 6249, 25491, 45358, 58099, 66190, 140709, 163105, 251830, 313274, 326355, 373915, 433587" +405,315610,Massive Darkness 2: Hellscape,2022,7024,7.48531,6.99450,"197070, 315610" +406,11,Bohnanza,1997,48001,7.06060,6.98904,"11, 980, 20136, 26946, 81100, 128412, 138703, 148000, 168421, 171419, 217261, 256503, 261341, 313649, 351605, 386906" +407,194607,Mystic Vale,2016,12430,7.26533,6.98899,"194607, 308762" +408,303057,Pan Am,2020,6263,7.53672,6.98848, +409,102652,Sentinels of the Multiverse,2011,16860,7.19130,6.98775,"102652, 220609, 335212" +410,1,Die Macher,1986,5800,7.57757,6.98640, +411,292375,The Great Wall,2021,4097,7.82259,6.98594, +412,90419,Airlines Europe,2011,10881,7.29917,6.98446,"43, 94, 90419" +413,157969,Sheriff of Nottingham,2014,39286,7.07116,6.98402,"3705, 22237, 104640, 157969, 298638, 396607" +414,182134,Evolution: Climate,2016,24188,7.12503,6.98354,"71021, 151985, 155703, 182134, 330152, 344992, 381992, 388690" +415,151347,Millennium Blades,2016,5152,7.64755,6.98337, +416,24800,Conflict of Heroes: Awakening the Bear! – Russia 1941-42,2008,4792,7.69712,6.98315,"24800, 132028, 286343" +417,350933,The Guild of Merchant Explorers,2022,4731,7.70464,6.98202, +418,156858,Black Orchestra,2016,6630,7.49766,6.98202,"156858, 432146" +419,357563,Akropolis,2022,6926,7.47420,6.98095, +420,206480,Imperial Struggle,2020,2715,8.23666,6.97956, +421,177478,IKI,2015,5248,7.62666,6.97730,"164878, 177478" +422,79828,A Few Acres of Snow,2011,9454,7.33546,6.97545,"79828, 133632, 197320" +423,96913,Lancaster,2011,7925,7.40390,6.97466,"96913, 170815" +424,63628,The Manhattan Project,2012,10003,7.31399,6.97406, +425,119432,Snowdonia,2012,7176,7.44775,6.97394,"119432, 228959, 255924" +426,121408,Trains,2012,17194,7.17138,6.97367,"1887, 121408, 132372, 135116, 140271, 142121, 157001, 161562, 169814, 169987, 184151, 196305, 196306, 200830, 202755, 205491, 215506, 226170, 247840" +427,197376,Charterstone,2017,14857,7.20194,6.97320, +428,39938,Carson City,2009,9287,7.33890,6.97302,"39938, 177352, 248117" +429,117959,Las Vegas,2012,13527,7.22402,6.97286,"117959, 209886, 269476, 271319" +430,150,PitchCar,1995,12604,7.24079,6.97148,"150, 14254" +431,98778,Hanabi,2010,49427,7.03951,6.97086,"70918, 98778, 272743, 290357" +432,274960,Point Salad,2019,19623,7.14154,6.96886, +433,290236,Canvas,2021,12403,7.24118,6.96813, +434,176396,Quadropolis,2016,13200,7.22226,6.96605, +435,343905,Boonlake,2021,5005,7.63980,6.96472, +436,342070,Thunder Road: Vendetta,2023,4144,7.77718,6.96287,"804, 342070, 355997" +437,127398,Legends of Andor,2012,20386,7.12709,6.96170,"127398, 198287, 295488, 363096" +438,191862,Imhotep,2016,17615,7.15266,6.96130,"191862, 255674" +439,133038,Pathfinder Adventure Card Game: Rise of the Runelords – Base Set,2013,13716,7.20412,6.95878,"133038, 187687, 271060" +440,154809,Nippon,2015,5004,7.62943,6.95752,"154809, 434367" +441,180974,Potion Explosion,2015,19876,7.12551,6.95647, +442,15062,Shadows over Camelot,2005,28438,7.07338,6.95533,"15062, 129904" +443,316412,The LOOP,2020,4283,7.73251,6.95101, +444,264241,Mandala,2019,6163,7.49389,6.95084,"264241, 412563" +445,12942,No Thanks!,2004,27429,7.07219,6.95023, +446,151022,Baseball Highlights: 2045,2015,5650,7.54141,6.94958,"151022, 174458, 186567, 224678, 256876, 329607, 333136, 426945" +447,43570,Friday,2011,21632,7.10409,6.94952, +448,213460,Unlock!: Escape Adventures,2017,10274,7.27227,6.94731,"213460, 216091, 216092, 216094" +449,245961,Fleet: The Dice Game,2018,9525,7.29674,6.94643,"121297, 245961, 328326" +450,5404,Amun-Re,2003,10104,7.27472,6.94485,"5404, 232303, 354568" +451,123123,BattleCON: Devastation of Indines,2013,4693,7.65402,6.94416,"89409, 123123, 162388, 174400, 204728, 298528, 317637" +452,144189,Fire in the Lake,2014,3014,8.04938,6.94412,"144189, 393760" +453,269144,Hadara,2019,7309,7.39857,6.94311, +454,141572,Paperback,2014,13344,7.19196,6.94258,"141572, 223750, 338468, 385643" +455,232414,Oceans,2020,6678,7.43907,6.94123,"232414, 402429" +456,256730,Pipeline,2019,5098,7.59335,6.94122, +457,216600,Fantastic Factories,2019,6787,7.42876,6.93950, +458,304051,Creature Comforts,2022,5762,7.51460,6.93865,"304051, 327890" +459,699,HeroQuest,1989,13813,7.17734,6.93731,"699, 328586, 423561" +460,97842,Last Will,2011,12360,7.20538,6.93716,"97842, 181796, 201856" +461,379078,Expeditions,2023,4676,7.64594,6.93702, +462,171668,The Grizzled,2015,15497,7.15035,6.93652,"171668, 231327, 335541" +463,256999,Project: ELITE,2020,3579,7.85931,6.93464,"171726, 256999" +464,18,RoboRally,1994,26446,7.05908,6.93399,"18, 216201, 381327, 397840, 417203" +465,193042,Junk Art,2016,7685,7.36342,6.93322, +466,220,High Society,1995,13899,7.16475,6.92779, +467,355093,Woodcraft,2022,4642,7.63678,6.92743,"355093, 375408" +468,21790,Thurn and Taxis,2006,20229,7.08836,6.92578,"21790, 151377" +469,221965,The Fox in the Forest,2017,17492,7.11263,6.92474,"221965, 288169" +470,131357,Coup,2012,48771,6.99146,6.92410,"131357, 148943, 158408, 188188, 204803, 233085, 295021, 306656, 382410, 422854, 422855" +471,9674,Ingenious,2004,18641,7.09861,6.92257,"9674, 22484, 32876, 219475, 243530, 270637, 406305" +472,328565,Caper: Europe,2022,5377,7.53253,6.92233,"180256, 232824, 328565" +473,20437,Lords of Vegas,2010,7785,7.34255,6.92138,"20437, 375769" +474,177639,Raptor,2015,10376,7.23374,6.91840, +475,84419,Space Empires 4X,2011,4349,7.66727,6.91613,"84419, 145976" +476,147949,One Night Ultimate Werewolf,2014,30383,7.02203,6.91463,"142503, 147949, 163166, 166136, 176361, 180956, 185288, 185350, 204431, 255293, 280583, 285759, 286927, 339647, 344326, 368948, 420294" +477,162082,Deus,2014,9216,7.26744,6.91361, +478,137408,Amerigo,2013,6291,7.43133,6.91315, +479,62227,"Labyrinth: The War on Terror, 2001 – ?",2010,4993,7.56593,6.91308, +480,117915,Yedo,2012,5311,7.52584,6.91238,"117915, 281466" +481,5782,Coloretto,2003,31145,7.01363,6.90926,"5782, 27588, 34194, 66120, 117942, 232481" +482,226522,Exit: The Game – Dead Man on the Orient Express,2017,5093,7.54541,6.90778, +483,58421,Egizia,2009,6538,7.40347,6.90703,"58421, 267271, 308388" +484,34119,Tales of the Arabian Nights,2009,13341,7.14874,6.90569,"788, 34119, 377704, 432392" +485,333255,Keep the Heroes Out!,2022,2977,7.99479,6.90562, +486,172308,Broom Service,2015,13841,7.13948,6.90527,"34084, 172308, 192735" +487,193949,Star Trek: Ascendancy,2016,3593,7.80514,6.90384,"193949, 419708" +488,875,Roads & Boats,1999,3791,7.75523,6.90208,"875, 276502" +489,28023,Jamaica,2007,20605,7.05882,6.90188, +490,279613,Unlock!: Timeless Adventures,2019,7811,7.31287,6.89955,"228867, 230303, 230304, 230305, 279613, 327913, 331952, 331953, 375442" +491,142379,Escape Plan,2019,5358,7.50013,6.89817, +492,351040,Ready Set Bet,2022,4955,7.54826,6.89761, +493,170561,Valeria: Card Kingdoms,2016,5915,7.43586,6.89272, +494,400314,Apiary,2023,3632,7.77683,6.89245, +495,503,Through the Desert,1998,14491,7.11394,6.89231, +496,123540,Tokaido,2012,29114,7.00199,6.89172,"123540, 155731, 186375, 275215, 363183, 374359" +497,105551,Archipelago,2012,8351,7.27553,6.89123, +498,262215,Blackout: Hong Kong,2018,6023,7.42254,6.89013, +499,128996,1775: Rebellion,2013,4346,7.62645,6.88912, +500,181530,Runebound (Third Edition),2015,14420,7.11081,6.88866,"9829, 21523, 181530" +501,136063,Forbidden Desert,2013,66272,6.93274,6.88455,"65244, 136063, 245271, 380226" +502,133848,Euphoria: Build a Better Dystopia,2013,11027,7.17325,6.88378, +503,265402,In the Hall of the Mountain King,2019,4527,7.58733,6.88274, +504,37904,Formula D,2008,26224,7.00324,6.88170,"173, 6539, 37904, 64897" +505,29603,D-Day at Omaha Beach,2009,2272,8.28304,6.88095,"29603, 67600, 67601, 217201, 355459" +506,432,Take 5,1994,34645,6.97099,6.87916,"153, 432, 1446, 13005, 31503, 40958, 136117, 205885, 246912, 268586, 286533, 305055, 406321, 433339" +507,283393,Aquatica,2019,6547,7.36485,6.87898,"283393, 422041" +508,204472,Sub Terra,2017,6036,7.40557,6.87868,"204472, 215946, 281258" +509,21763,Mr. Jack,2006,26414,6.99883,6.87845,"21763, 55427, 72287, 145645" +510,342810,Marrakesh,2022,2565,8.11695,6.87783, +511,144797,Argent: The Consortium,2015,4377,7.60388,6.87777, +512,91872,Dungeons & Dragons: The Legend of Drizzt Board Game,2011,17112,7.06172,6.87620,"59946, 66356, 91872, 122588, 124965, 124968, 124969, 126008, 172220, 228668, 264196" +513,264055,Draftosaurus,2019,14365,7.09646,6.87556, +514,181521,Warhammer Quest: The Adventure Card Game,2015,7338,7.30357,6.87220,"181521, 225766, 254591, 392133" +515,266830,QE,2019,6431,7.36422,6.87206,"209136, 266830" +516,206941,First Class: All Aboard the Orient Express!,2016,5811,7.41566,6.87130, +517,273330,Bloodborne: The Board Game,2021,3539,7.76425,6.87076, +518,338960,Slay the Spire: The Board Game,2024,1883,8.54835,6.87001, +519,119506,Freedom: The Underground Railroad,2013,4571,7.56092,6.86969, +520,271601,Feed the Kraken,2022,3340,7.81565,6.86968, +521,163968,Elysium,2015,9885,7.18873,6.86921, +522,183251,Karuba,2015,11684,7.13922,6.86895,"183251, 234439, 235465" +523,27173,Vikings,2007,8578,7.23678,6.86871, +524,205359,Star Wars: Destiny,2016,6170,7.38025,6.86858,"205359, 234931" +525,214887,CO₂: Second Chance,2018,6920,7.32245,6.86682,"72225, 214887" +526,353288,Trekking Through History,2022,4161,7.62210,6.86524, +527,491,Web of Power,2000,9681,7.18991,6.86472,"491, 18100, 153625, 270109, 314530" +528,475,Taj Mahal,2000,7899,7.26215,6.86386, +529,107529,Kingdom Builder,2011,25270,6.98817,6.86369,"107529, 139993, 229130, 257180, 303554, 360918, 371095" +530,257501,KeyForge: Call of the Archons,2018,13405,7.09476,6.86062,"257501, 272453, 285775, 301607, 316080, 351113, 388183, 396336, 402863, 413480, 420000, 423035, 433404" +531,307002,Regicide,2020,5610,7.41970,6.86034,"307002, 412963" +532,217780,Gentes,2017,4982,7.48913,6.85960,"217780, 249703, 409322" +533,27746,Colosseum,2007,9069,7.20086,6.85596, +534,11170,Heroscape Master Set: Rise of the Valkyrie,2004,11922,7.11827,6.85592,"11170, 24703, 27976, 54361, 167698, 203204, 368557, 416118" +535,31730,Wabash Cannonball,2007,8360,7.22897,6.85507, +536,271518,Disney Villainous: Wicked to the Core,2019,22567,6.99222,6.85383,"256382, 271518, 284760, 299047, 302336, 331050, 335528, 352764, 358800, 379056, 387836, 391561, 411003, 417130" +537,42776,Gears of War: The Board Game,2011,5167,7.45771,6.85346, +538,98229,Pictomania,2011,5772,7.38928,6.84982,"98229, 252526" +539,244115,Shards of Infinity,2018,5040,7.46762,6.84981,"244115, 378887, 393871" +540,130960,Triumph & Tragedy: European Balance of Power 1936-1945,2015,2413,8.13906,6.84922,"130960, 256872, 300323" +541,15363,Nexus Ops,2005,8945,7.19658,6.84875, +542,17405,1846: The Race for the Midwest,2005,2955,7.90085,6.84831,"17405, 415259" +543,135219,The Battle of Five Armies,2014,3023,7.87542,6.84731,"135219, 263177" +544,113294,Escape: The Curse of the Temple,2012,19734,7.00406,6.84665,"113294, 149809, 157820, 211514, 232894, 310198, 389337" +545,385761,Faraway,2023,4598,7.52209,6.84654, +546,331787,Tiny Epic Dungeons,2021,4735,7.50003,6.84485,"331787, 334889" +547,42215,Tobago,2009,12320,7.09609,6.84437, +548,100423,Elder Sign,2011,26090,6.96306,6.84421,"100423, 315937" +549,218603,Photosynthesis,2017,24044,6.97274,6.84382, +550,159508,AquaSphere,2014,7604,7.25036,6.84295,"159508, 289223" +551,266121,Unlock!: Heroic Adventures,2018,3945,7.62519,6.84104,"266121, 332229, 332230, 341008" +552,30869,Thebes,2007,10714,7.12711,6.83884,"13883, 30869, 114387" +553,270673,Silver & Gold,2019,8320,7.20917,6.83816,"270673, 402215" +554,179172,Unfair,2017,6179,7.33692,6.83757,"179172, 315881" +555,313889,Hoplomachus: Victorum,2023,2395,8.12168,6.83543,"124839, 139131, 143370, 176524, 313889, 338434" +556,218333,Rhino Hero: Super Battle,2017,14717,7.04458,6.83528,"91514, 218333, 321711, 356301" +557,353545,Next Station: London,2022,5164,7.43108,6.83482,"353545, 380165, 403116" +558,143519,Quantum,2013,7713,7.22781,6.83003, +559,348450,Lacrimosa,2022,3567,7.68867,6.82912, +560,163839,Feudum,2018,3992,7.59680,6.82889,"163839, 259586" +561,192836,The Colonists,2016,4273,7.53982,6.82469, +562,24508,Taluva,2006,9055,7.15927,6.82239,"24508, 188076" +563,170624,Crusaders: Thy Will Be Done,2018,4655,7.47729,6.82212, +564,128780,Pax Porfiriana,2012,3844,7.61404,6.82119,"284, 69186, 128780, 429962" +565,209778,Magic Maze,2017,22344,6.95665,6.82034,"209778, 242740, 283135, 396749" +566,269511,Cooper Island,2019,4022,7.57710,6.82002, +567,248490,Atlantis Rising (Second Edition),2019,5552,7.36835,6.81994,"92120, 248490" +568,26990,Container,2007,6412,7.29366,6.81910,"26990, 229892" +569,296237,Warp's Edge,2020,3419,7.70566,6.81705, +570,162007,Steampunk Rally,2015,8004,7.19425,6.81521,"162007, 298229, 331992" +571,237179,Weather Machine,2022,3120,7.78659,6.81462, +572,233247,Civilization: A New Dawn,2017,6941,7.24996,6.81345, +573,328866,My Father's Work,2022,2902,7.85684,6.81308, +574,46,Medici,1995,9299,7.13550,6.81042,"46, 202288, 291511" +575,307305,Bullet♥︎,2021,3736,7.61466,6.80740,"307305, 343844" +576,1513,The Republic of Rome,1990,4280,7.51115,6.80681,"1513, 64222, 148057, 196676, 262564, 263698, 357186, 367382, 425789" +577,296912,Fort,2020,10099,7.10425,6.80595,"249106, 296912" +578,110277,Among the Stars,2012,10436,7.09440,6.80577,"110277, 170318, 200954" +579,65532,Defenders of the Realm,2010,6080,7.29963,6.80464,"65532, 169464, 311731, 391306" +580,111799,Cuba Libre,2013,3482,7.66832,6.80426, +581,245487,Orchard: 9 card solitaire game,2018,4719,7.44153,6.80406,"245487, 329873, 373577" +582,140603,Francis Drake,2013,5263,7.37505,6.80366, +583,95527,Madeira,2013,4603,7.45539,6.80260,"95527, 289843" +584,171499,Cacao,2015,11123,7.07256,6.80245, +585,218479,Cerebria: The Inside World,2018,3078,7.77679,6.80144,"218479, 236781" +586,13004,The Downfall of Pompeii,2004,8447,7.15557,6.80043, +587,3685,Hammer of the Scots,2002,4176,7.51864,6.80034, +588,483,Diplomacy,1959,13475,7.02207,6.79959,"250, 483, 430814" +589,239307,Unlock!: Secret Adventures,2017,4789,7.42556,6.79958,"239307, 245352, 245353, 245354" +590,2453,Blokus,2000,30894,6.89623,6.79922,"2453, 6411, 16395, 24568, 97469, 286310, 342097, 423151" +591,359871,Arcs,2024,2651,7.92966,6.79917, +592,167400,Ashes Reborn: Rise of the Phoenixborn,2015,6184,7.28375,6.79914, +593,290484,Unsettled,2021,2397,8.04720,6.79803, +594,552,Bus,1999,3711,7.60419,6.79759, +595,148575,Marvel Dice Masters: Avengers vs. X-Men,2014,21753,6.93515,6.79755,"91536, 130912, 138649, 147363, 148575, 155702, 158275, 160902, 168998, 173294, 177939, 182770, 183572, 187353, 191579, 202096, 208918, 217471, 219985, 242753, 244196, 246895, 253564, 259571, 270939, 280472, 295574, 298345, 315272, 386766, 418496" +596,39351,Automobile,2009,5805,7.31252,6.79708, +597,2398,Cribbage,1630,11586,7.05491,6.79673,"2364, 2398, 9587, 11646, 11733, 12541, 15889, 18121, 20240, 21698, 21731, 40665, 419170" +598,9625,Struggle of Empires,2004,7379,7.20157,6.79632,"97, 1478, 9625, 17710, 108429" +599,218074,Detective: City of Angels,2019,2784,7.86631,6.79406, +600,20100,Wits & Wagers,2005,19442,6.94759,6.79405,"20100, 47046, 66588, 123239, 187362, 232121, 286428" +601,169255,A Game of Thrones: The Card Game (Second Edition),2015,11512,7.05120,6.79225,"4286, 39953, 129976, 169255" +602,223953,Kitchen Rush,2017,5789,7.30469,6.79047,"223953, 287938" +603,163474,V-Sabotage,2016,2640,7.91442,6.78853,"163474, 260789" +604,135779,A Fake Artist Goes to New York,2011,8630,7.13217,6.78791, +605,170416,Vast: The Crystal Caverns,2016,8016,7.15698,6.78670,"170416, 252399" +606,298383,Golem,2021,3794,7.56809,6.78612, +607,11825,Empire of the Sun: The Pacific War 1941-1945,2005,2020,8.25184,6.78472,"11825, 348849" +608,328479,Living Forest,2021,6221,7.25928,6.78339,"328479, 427260" +609,143515,Coal Baron,2013,6219,7.25905,6.78311,"143515, 149707, 192945" +610,160495,ZhanGuo,2014,3688,7.58373,6.78191,"160495, 381819" +611,71721,Space Hulk: Death Angel – The Card Game,2010,13544,6.99602,6.77830, +612,174785,Mare Nostrum: Empires,2016,7089,7.19175,6.77640,"3931, 174785" +613,219215,Werewords,2017,6810,7.20863,6.77630,"219215, 245422" +614,37380,Roll Through the Ages: The Bronze Age,2008,15981,6.95944,6.77535,"37380, 150926, 167828, 270971" +615,88,Torres,1999,9828,7.07432,6.77505,"88, 790, 4432, 378425" +616,256589,Rallyman: GT,2020,6763,7.20848,6.77395,"60435, 256589, 312959" +617,143741,BANG! The Dice Game,2013,58798,6.82241,6.77249,"3955, 30933, 128666, 128667, 143741, 153967, 160567, 164930, 168752, 177697, 182094, 269564, 319336, 326844, 345203, 422159" +618,329551,Mosaic: A Story of Civilization,2022,3760,7.55239,6.77201, +619,30380,Cuba,2007,8420,7.11960,6.77130,"30380, 216727" +620,334590,For Northwood! A Solo Trick-Taking Game,2021,2618,7.88807,6.76949,"334590, 358078" +621,183840,Oh My Goods!,2015,13007,6.99433,6.76923,"183840, 417268" +622,19600,Antike,2005,7168,7.17737,6.76899,"19600, 104955, 166857" +623,306040,Merv: The Heart of the Silk Road,2020,3949,7.50385,6.76494, +624,249381,The Estates,2018,4596,7.39965,6.76482,"32944, 249381" +625,50750,Belfort,2011,6493,7.21372,6.76449,"50750, 255524" +626,334065,Verdant,2022,4860,7.36444,6.76433, +627,2955,Mexica,2002,6020,7.24762,6.76347, +628,281442,Trismegistus: The Ultimate Formula,2019,3578,7.57671,6.76266,"281442, 324609" +629,326494,The Adventures of Robin Hood,2021,4042,7.48282,6.76238, +630,242639,Treasure Island,2018,6431,7.21362,6.76122, +631,180593,The Bloody Inn,2015,9707,7.05867,6.75939, +632,9823,Advanced Squad Leader: Starter Kit #1,2004,2708,7.83191,6.75924, +633,232219,Dragon Castle,2017,7948,7.12385,6.75857, +634,176165,Dale of Merchants,2015,6764,7.18604,6.75727,"176165, 191597, 251551, 299452" +635,180511,Shakespeare,2015,4455,7.40653,6.75612, +636,241724,Villagers,2019,7587,7.13801,6.75610, +637,283864,Trails of Tucana,2019,4620,7.38221,6.75539,"283864, 428279" +638,195137,Catacombs (Third Edition),2015,6300,7.21489,6.75526,"57390, 194286, 195137, 228553, 241726, 365959, 366019, 366020, 388606, 412063, 418179" +639,231581,AuZtralia,2018,4915,7.34439,6.75526, +640,132018,Churchill,2015,3174,7.66730,6.75511,"132018, 296578" +641,9203,Wings of War: Famous Aces,2004,8903,7.07836,6.75356,"9203, 9910, 15953, 22532, 31552, 36482, 42306, 107148, 109291, 119866, 129165, 131183, 208754, 216710, 360339" +642,227456,Escape the Dark Castle,2017,4502,7.39533,6.75320,"227456, 280748, 374593" +643,213893,Yamataï,2017,6765,7.17955,6.75247, +644,2093,Mahjong,1850,8120,7.10697,6.75145,"2093, 106560, 108018" +645,47185,Warhammer: Invasion,2009,6106,7.22324,6.75073, +646,361545,Twilight Inscription,2022,3896,7.48901,6.74930, +647,146278,Tash-Kalar: Arena of Legends,2013,7197,7.14885,6.74863, +648,291845,Three Sisters,2022,3539,7.56242,6.74857, +649,73171,Earth Reborn,2010,3410,7.59245,6.74812, +650,254386,Raccoon Tycoon,2018,5637,7.25643,6.74639,"254386, 312767, 319375" +651,155624,Specter Ops,2015,6727,7.17374,6.74634,"155624, 235544" +652,354934,Legacy of Yu,2023,2022,8.16777,6.74613, +653,73761,K2,2010,10995,7.00524,6.74420,"73761, 147624, 307621" +654,283863,The Magnificent,2019,3794,7.50058,6.74414, +655,337765,Brian Boru: High King of Ireland,2021,3728,7.51380,6.74403, +656,173064,Leaving Earth,2015,2931,7.72212,6.74347, +657,1465,Wizard,1984,12125,6.97978,6.74325,"1465, 25866, 145478, 191475, 286547, 329131, 373250, 388340, 432042" +658,169654,Deep Sea Adventure,2014,17562,6.90608,6.74283,"169654, 330403, 427866" +659,193558,The Oracle of Delphi,2016,5282,7.28518,6.74253, +660,126792,Myrmes,2012,5650,7.24726,6.74071, +661,22345,Yspahan,2006,10879,7.00287,6.73995,"22345, 269725" +662,347703,First Rat,2022,3391,7.58167,6.73889, +663,69779,Polis: Fight for the Hegemony,2012,3107,7.65561,6.73712,"69779, 303551" +664,29368,Last Night on Earth: The Zombie Game,2007,14829,6.92919,6.73680,"29368, 42939, 122240, 231942" +665,369880,Beer & Bread,2022,3988,7.45216,6.73677, +666,156566,Lords of Xidit,2014,8233,7.07929,6.73364,"3800, 156566" +667,156336,Onirim (Second Edition),2014,15929,6.91207,6.73345,"71836, 156336" +668,38996,Washington's War,2010,3429,7.56186,6.73263,"620, 38996" +669,154825,Arkwright,2014,3183,7.62549,6.73237,"154825, 300664" +670,300877,New York Zoo,2020,8419,7.06988,6.73225, +671,40628,Finca,2009,7971,7.08626,6.73024,"40628, 261720" +672,36235,The Duke,2013,4771,7.32505,6.73023,"36235, 170901, 257601, 331747" +673,87890,Prêt-à-Porter,2010,4943,7.30180,6.72849, +674,125678,DC Deck-Building Game,2012,17900,6.88624,6.72799,"112686, 125678, 127127, 142555, 142852, 152510, 154804, 155463, 160958, 167763, 173200, 194230, 194233, 221366, 221367, 221368, 221369, 246535, 248075, 252576, 274128, 301662, 301665, 338322, 360931, 360932, 378172, 393385, 394064, 422611, 428244" +675,244228,Reef,2018,9846,7.01542,6.72777, +676,123955,Thunderbolt Apache Leader,2012,2380,7.91722,6.72749,"2154, 6927, 18781, 65564, 123955" +677,203416,Exit: The Game – The Pharaoh's Tomb,2016,6761,7.14524,6.72670, +678,270239,Moonrakers,2020,2957,7.68210,6.72582, +679,319910,Pagan: Fate of Roanoke,2022,2185,8.01803,6.72488, +680,72321,The Networks,2016,6775,7.13972,6.72323,"72321, 292489" +681,1035,Squad Leader,1977,3453,7.54012,6.72306, +682,301255,Whistle Mountain,2020,3345,7.56590,6.72270, +683,70512,Luna,2010,5138,7.27164,6.72270, +684,148729,Maquis,2013,3827,7.45969,6.72269, +685,179275,One Deck Dungeon,2016,12581,6.94574,6.72173,"179275, 224821, 425724" +686,55600,Shipyard,2009,4422,7.35852,6.72138,"55600, 393179" +687,200147,Kanagawa,2016,9179,7.02508,6.71879, +688,276498,Paris: La Cité de la Lumière,2019,5039,7.27563,6.71803, +689,201825,Ex Libris,2017,6774,7.13242,6.71774,"201825, 393000" +690,45986,Stronghold,2009,5258,7.25196,6.71772,"45986, 179460, 206593, 333144" +691,365258,World Wonders,2023,3167,7.60436,6.71753, +692,31563,Middle-Earth Quest,2009,4235,7.37792,6.71572, +693,171273,FUSE,2015,11746,6.95431,6.71558,"171273, 216597, 280789, 369993" +694,21882,Blue Moon City,2006,8742,7.03544,6.71487, +695,181687,The Pursuit of Happiness,2015,5887,7.18923,6.71366,"181687, 325293" +696,165401,Wir sind das Volk!,2014,2635,7.77446,6.71276,"165401, 407570" +697,192457,Cry Havoc,2016,7013,7.10841,6.71030, +698,35570,Tinners' Trail,2008,5698,7.20014,6.71020,"35570, 321277, 365770" +699,346501,Mille Fiori,2021,3918,7.42271,6.71019, +700,194879,Not Alone,2016,11085,6.96107,6.70940,"194879, 354521" +701,68425,Eminent Domain,2011,10612,6.97220,6.70932, +702,135382,Shadowrun: Crossfire,2014,6241,7.15515,6.70848,"135382, 182961, 226501, 254123" +703,15364,Vegas Showdown,2005,6435,7.14086,6.70787, +704,51,Ricochet Robots,1999,9560,6.99875,6.70741,"51, 191543" +705,228328,Rurik: Dawn of Kiev,2019,2701,7.73800,6.70709,"228328, 288316" +706,280480,Crystal Palace,2019,3437,7.51704,6.70697, +707,214880,City of the Big Shoulders,2019,2694,7.73948,6.70644, +708,204516,878 Vikings: Invasions of England,2017,3510,7.49890,6.70619, +709,249277,Brazil: Imperial,2021,3118,7.59856,6.70619, +710,238799,Messina 1347,2021,3196,7.57535,6.70536, +711,159473,Quartermaster General,2014,3995,7.39740,6.70285,"159473, 194778, 195227, 208773, 247704, 331979" +712,158435,Dogs of War,2014,3383,7.52245,6.70250, +713,131646,Merchant of Venus (Second Edition),2012,6145,7.15351,6.70221,"230, 131646" +714,218121,Dice Hospital,2018,6562,7.12467,6.70209, +715,206915,Tempel des Schreckens,2016,6982,7.09913,6.70200,"170587, 206915, 231748, 236217, 253786, 369496, 425442" +716,191051,Outlive,2017,4739,7.28706,6.70197,"191051, 407178" +717,244608,Menara,2018,3830,7.42545,6.70169, +718,318560,Witchstone,2021,3271,7.54873,6.70144, +719,299684,Khôra: Rise of an Empire,2021,3927,7.40532,6.70026,"268846, 299684" +720,220517,The Shipwreck Arcana,2017,3863,7.41662,6.70003, +721,150999,Valley of the Kings,2014,6980,7.09620,6.69971,"150999, 175223, 197065, 274466" +722,198830,"Heroes of Land, Air & Sea",2018,3183,7.56887,6.69954, +723,300905,Top Ten,2020,3646,7.45516,6.69751,"300905, 334137, 340749, 410382, 422553, 424974" +724,131260,Qwixx,2012,14577,6.88318,6.69420,"131260, 151835, 208775, 212551, 287691, 345036, 365626" +725,1540,BattleTech,1985,4726,7.27603,6.69349,"1540, 3616, 7470, 8196, 31759, 283768, 296694, 348762, 359618" +726,256788,Detective Club,2018,4161,7.35402,6.69277, +727,252153,Tang Garden,2019,4179,7.35079,6.69252,"252153, 358195" +728,161417,Red7,2014,16270,6.86151,6.69245, +729,163602,XCOM: The Board Game,2015,9168,6.98887,6.68956, +730,43528,World Without End,2009,5110,7.22551,6.68884, +731,11971,Cockroach Poker,2004,16988,6.84911,6.68781,"11971, 129736" +732,103886,Star Wars: The Card Game,2012,5833,7.15660,6.68713, +733,298231,Skyrise,2024,5437,7.19048,6.68691,"25568, 298231" +734,16747,Tumblin' Dice,2004,5013,7.23240,6.68644,"16747, 29140, 62814" +735,234477,Battle for Rokugan,2017,3803,7.40604,6.68640, +736,15512,Incan Gold,2005,21546,6.81341,6.68639,"15512, 46800" +737,230244,Black Angel,2019,4962,7.23782,6.68632, +738,66056,Rivals for Catan,2010,21850,6.81070,6.68554,"278, 22766, 27802, 66056, 203219, 250619, 250661, 394739" +739,238992,Call to Adventure,2019,7152,7.06782,6.68547,"238992, 266993, 351077" +740,256570,Crown of Emara,2018,3874,7.39078,6.68510, +741,207830,5-Minute Dungeon,2017,12454,6.90288,6.68364,"207830, 253618, 332312" +742,233571,Star Wars: Legion,2018,2030,8.02780,6.68324,"233571, 283474" +743,197443,Fugitive,2017,5683,7.16197,6.68213,"197443, 370597" +744,122298,Morels,2012,9349,6.97265,6.68120, +745,12002,Jambo,2004,9598,6.96458,6.68078,"12002, 136056" +746,385529,The Vale of Eternity,2023,3115,7.55376,6.67995, +747,175117,Celestia,2015,13584,6.87967,6.67939,"632, 175117, 429491" +748,277700,Merchants Cove,2021,3490,7.45880,6.67931, +749,266164,Babylonia,2019,2835,7.63848,6.67908, +750,586,Up Front,1983,2288,7.86452,6.67743, +751,291508,Tiny Epic Dinosaurs,2020,4150,7.33077,6.67670,"291508, 315953" +752,203417,Exit: The Game – The Secret Lab,2016,7155,7.05500,6.67589, +753,244331,Blue Lagoon,2018,5183,7.19913,6.67581, +754,214029,SpaceCorp: 2025-2300AD,2018,2734,7.66481,6.67414, +755,253499,A War of Whispers,2019,4251,7.31088,6.67388, +756,149951,Warfighter: The Tactical Special Forces Card Game,2014,2506,7.74957,6.67134,"149951, 196496, 249421, 261624, 261666, 320459, 337512, 337513, 415879, 418093" +757,162286,Super Motherload,2015,4084,7.32986,6.66936, +758,244992,The Mind,2018,32099,6.75192,6.66798,"244992, 287607, 378851" +759,239472,Abomination: The Heir of Frankenstein,2019,3480,7.44146,6.66754, +760,272739,Clinic: Deluxe Edition,2019,3085,7.53857,6.66640,"156840, 272739" +761,79127,Star Trek: Fleet Captains,2011,3358,7.46200,6.66305, +762,6830,Zendo,2001,5699,7.13203,6.66177,"225, 1771, 6830, 9386, 9629, 10996, 13084, 13454, 14634, 15193, 19802, 19803, 20269, 21074, 21209, 21210, 21955, 25423, 30583, 31711, 35003, 39565, 60015, 68063, 88521, 93001, 109017, 109019, 116142, 132452, 133903, 187988, 198548, 198549, 198551, 198574, 214162, 218534, 299309, 300578, 334207, 347606, 419612" +763,30645,Tammany Hall,2007,4349,7.27557,6.66018, +764,264052,Circadians: First Light,2019,3079,7.52846,6.65965, +765,56692,Parade,2007,8020,6.99304,6.65953, +766,216459,The Lost Expedition,2017,7883,6.99830,6.65911,"216459, 240957, 303961" +767,30957,Tribune: Primus Inter Pares,2007,4830,7.21222,6.65879,"30957, 292899" +768,8125,Santiago,2003,5441,7.14841,6.65762, +769,272738,Jaws,2019,6161,7.08968,6.65662, +770,129948,The Palaces of Carrara,2012,5298,7.15964,6.65622,"129948, 348070" +771,228504,Cat Lady,2017,7450,7.01354,6.65570,"228504, 281073, 344839" +772,385610,Kutná Hora: The City of Silver,2023,2484,7.72843,6.65543, +773,134726,Smash Up: Awesome Level 9000,2013,28582,6.74841,6.65518,"122522, 134726, 143185, 151004, 160018, 162559, 168917, 177802, 198487, 216199, 216658, 241225, 247724, 266938, 274590, 306697, 334627, 339244, 358515, 358808, 379164" +774,224,History of the World,1991,5801,7.11379,6.65464,"224, 46007, 235591, 426957" +775,329465,Red Rising,2021,7877,6.99273,6.65460, +776,383607,Barcelona,2023,2359,7.78364,6.65460, +777,160851,Lanterns: The Harvest Festival,2015,12125,6.87201,6.65270,"160851, 274090, 430816" +778,5737,Domaine,2003,6488,7.06238,6.65258,"66, 5737" +779,172047,The Others,2016,4123,7.29386,6.65029, +780,131287,Panamax,2014,4118,7.29462,6.65027, +781,141517,A Study in Emerald,2013,5758,7.11030,6.64970,"141517, 178054, 404509" +782,352697,Resist!,2022,2767,7.60578,6.64839,"352697, 383499" +783,166384,Spyfall,2014,23389,6.76099,6.64778,"166384, 193308, 221371, 256085" +784,338957,Caesar!: Seize Rome in 20 Minutes!,2022,2879,7.56658,6.64731, +785,147151,Concept,2013,21154,6.77070,6.64576,"147151, 247314, 307230, 343307" +786,239464,Palm Island,2018,6271,7.06564,6.64460,"239464, 354335" +787,197405,Tak,2017,2910,7.55104,6.64410, +788,359970,Challengers!,2022,5396,7.13212,6.64334,"359970, 390340" +789,108906,Thunder Alley,2014,4074,7.29023,6.64303,"108906, 163163, 218948" +790,270314,Ohanami,2019,4050,7.29172,6.64153, +791,299169,Spicy,2020,5390,7.12993,6.64143,"299169, 355737" +792,379629,Knarr,2023,3297,7.43916,6.64091, +793,145659,Scoville,2014,5511,7.11684,6.63976,"145659, 418411" +794,119788,Hyperborea,2014,5040,7.16092,6.63942, +795,294612,Unlock!: Epic Adventures,2019,2418,7.72642,6.63941,"294612, 403061, 403062, 403063" +796,35052,Axis & Allies Anniversary Edition,2008,20025,6.77021,6.63900,"98, 3618, 10093, 35052, 41863, 123185, 246960, 397841" +797,25669,Qwirkle,2006,21208,6.76286,6.63897,"25669, 39813, 134824, 171489, 197614" +798,275467,Letter Jam,2019,4960,7.16783,6.63839, +799,26997,1989: Dawn of Freedom,2012,2349,7.75586,6.63816, +800,212402,The Grimm Forest,2018,6075,7.06894,6.63715, +801,314503,Codex Naturalis,2021,4529,7.21584,6.63682, +802,297129,Jekyll vs. Hyde,2021,4323,7.24269,6.63633,"297129, 377793" +803,245643,Luxor,2018,4794,7.18220,6.63572, +804,231218,Black Sonata,2017,3188,7.45624,6.63499, +805,345868,Federation,2022,2070,7.89906,6.63463, +806,41002,Vasco da Gama,2009,4590,7.20453,6.63441, +807,155362,Ca$h 'n Guns: Second Edition,2014,24587,6.74003,6.63367,"19237, 30324, 123619, 155362, 369519" +808,267319,Roam,2019,4053,7.27864,6.63350, +809,201921,Tiny Epic Quest,2017,7851,6.96554,6.63272,"201921, 316183" +810,241590,Smart10,2017,3072,7.47997,6.63083,"241590, 297006, 303994, 340722, 354031, 424150, 429254" +811,12962,Reef Encounter,2004,5239,7.12825,6.63049, +812,137269,Spyrium,2013,6378,7.03213,6.62518, +813,112,Condottiere,1995,10335,6.87450,6.62369, +814,2181,Bridge,1925,3176,7.43979,6.62366, +815,1345,Genoa,2001,6182,7.04229,6.62318, +816,148319,Tragedy Looper,2011,4681,7.17630,6.62293,"148319, 374266" +817,28181,Combat Commander: Pacific,2008,1758,8.09635,6.62291, +818,244654,Wildlands,2018,3998,7.27055,6.62275,"244654, 275034" +819,188547,Maximum Apocalypse,2018,2698,7.58053,6.62158,"188547, 275564, 335446, 390157" +820,196526,Coffee Roaster,2015,3626,7.33406,6.62094, +821,9440,Maharaja: The Game of Palace Building in India,2004,5691,7.07296,6.61928,"9440, 298378" +822,295785,Euthia: Torment of Resurrection,2021,1337,8.54949,6.61894,"248907, 295785" +823,8051,Attika,2003,7074,6.98355,6.61873,"8051, 249410" +824,233262,Tidal Blades: Heroes of the Reef,2020,3003,7.47791,6.61862, +825,154458,Akrotiri,2014,4728,7.16400,6.61836, +826,104710,Wiz-War (Eighth Edition),2012,6456,7.01476,6.61600,"589, 104710, 324937" +827,38159,Ultimate Werewolf: Ultimate Edition,2008,7256,6.96916,6.61476,"27682, 38159, 67148, 144464, 152241, 152242, 162944, 193280, 206715, 255356, 311920, 369190, 369195, 370229, 373709, 401880" +828,202408,Adrenaline,2016,6882,6.98781,6.61430, +829,1041,San Marco,2001,4777,7.15065,6.61313,"1041, 4401" +830,35497,Fauna,2008,6745,6.99380,6.61311,"35497, 84088, 111275, 153507, 168497, 191872, 192297, 236264, 318562, 343959" +831,104020,Vanuatu,2011,3779,7.29104,6.61215,"104020, 193927" +832,228855,Set a Watch,2019,3825,7.28240,6.61186,"228855, 307386, 356587, 367625" +833,194517,Super Fantasy Brawl,2022,2548,7.61767,6.61144,"194517, 369996, 432235" +834,904,Nightmare Productions,2000,5748,7.05703,6.61112,"904, 113511" +835,177590,"13 Days: The Cuban Missile Crisis, 1962",2016,5392,7.08525,6.61026,"177590, 203828, 267317" +836,143884,Machi Koro,2012,39356,6.67510,6.61004,"143884, 175239, 185817, 199799, 205494, 244716, 259081, 340364, 356615, 421611" +837,66505,The Speicherstadt,2010,7006,6.97550,6.61002,"66505, 193739" +838,223770,Startups,2017,4643,7.15622,6.60648,"176458, 223770, 312763" +839,318243,HITSTER,2022,2501,7.62499,6.60541,"318243, 374990, 379066, 397736, 410209, 411047, 417277, 424280, 426035, 427354, 431308" +840,23540,Shikoku 1889,2004,1918,7.93384,6.60493, +841,281549,Beast,2022,2738,7.53389,6.60387, +842,18098,Napoleon's Triumph,2007,1838,7.98589,6.60236, +843,352515,Trio,2021,3836,7.26485,6.60210,"352515, 401168, 417920" +844,1261,Medina,2001,5106,7.09810,6.60079,"1261, 167270" +845,195560,Wasteland Express Delivery Service,2017,3615,7.30139,6.59967, +846,16992,Tsuro,2005,32674,6.67697,6.59935,"16992, 123107, 124172, 266177" +847,232918,Fallout,2017,8020,6.91521,6.59908, +848,195162,Plague Inc.: The Board Game,2017,3361,7.35320,6.59895, +849,230080,Majesty: For the Realm,2017,7064,6.95487,6.59673,"230080, 403754" +850,13642,Louis XIV,2005,5916,7.02243,6.59533,"13642, 217466" +851,300217,Merchants of the Dark Road,2022,3276,7.36448,6.59408, +852,244536,Tiny Epic Zombies,2018,6391,6.98557,6.59158,"244536, 266219" +853,193214,Meeple Circus,2017,5999,7.01126,6.59153, +854,38054,Snow Tails,2008,6738,6.96493,6.59131,"38054, 147707" +855,172931,Outfoxed!,2014,4604,7.13788,6.59117, +856,240,Britannia,1986,4519,7.14806,6.59110,"240, 1713, 280106" +857,22825,Tide of Iron,2007,4009,7.21870,6.59096,"22825, 174402" +858,177678,Signorie,2015,3185,7.37975,6.59017, +859,298065,Santa Monica,2020,4415,7.15828,6.58919, +860,169124,Flick 'em Up!,2015,10695,6.82401,6.58910,"169124, 207016, 232880" +861,102548,Dungeon Fighter,2011,8075,6.89962,6.58863,"102548, 315975, 315976, 321044, 321047, 334349, 357028" +862,210296,DinoGenics,2019,2521,7.58290,6.58766, +863,71671,Yggdrasil,2011,4817,7.10728,6.58682,"71671, 147190, 284333" +864,177524,ICECOOL,2016,12088,6.79386,6.58652,"177524, 244513, 400371" +865,191300,Archaeology: The New Expedition,2016,7303,6.92801,6.58522,"28060, 31105, 191300" +866,61692,Axis & Allies: Europe 1940,2010,5424,7.04348,6.58292,"520, 1262, 55829, 61692" +867,338760,Imperial Steam,2021,2087,7.77881,6.58241, +868,243759,Hellboy: The Board Game,2019,2059,7.79395,6.58187,"243759, 334310" +869,173090,The Game,2015,14163,6.75732,6.58122,"173090, 182453, 209325, 236461, 296512, 345283" +870,202077,Deep Madness,2018,2018,7.81586,6.58061, +871,206931,Encore!,2016,5938,7.00029,6.58053,"206931, 285894, 320677, 377718" +872,53093,Heroes of Normandie,2014,3085,7.38832,6.58043,"29078, 53093, 162351, 228051, 231812, 248188, 319264, 381282" +873,195314,Herbaceous,2017,5825,7.00770,6.58000, +874,156776,"Warhammer 40,000: Conquest",2014,3267,7.34201,6.57967, +875,241266,Little Town,2017,4224,7.16825,6.57899, +876,332290,Stardew Valley: The Board Game,2021,3115,7.37697,6.57838, +877,681,Quarto,1991,8031,6.88607,6.57678,"681, 123163" +878,8203,"Hey, That's My Fish!",2003,21861,6.69026,6.57665, +879,15817,Manila,2005,6140,6.98088,6.57645, +880,203427,Fabled Fruit,2016,6206,6.97603,6.57605, +881,242804,Lowlands,2018,3104,7.37317,6.57458, +882,245476,CuBirds,2018,7354,6.91009,6.57339, +883,271529,Botanik,2021,2477,7.56902,6.57132, +884,823,The Lord of the Rings,2000,15936,6.72635,6.57128, +885,217861,Paper Tales,2017,5352,7.03250,6.57092,"130548, 217861, 365128" +886,287084,Oriflamme,2019,4554,7.10824,6.56750,"287084, 313261, 352981" +887,295607,Canopy,2021,3216,7.33297,6.56737,"295607, 391886" +888,295293,The Thing: The Boardgame,2022,2260,7.65192,6.56494, +889,218509,Empires of the Void II,2018,3222,7.32714,6.56480,"98347, 218509" +890,363307,Evergreen,2022,2748,7.45833,6.56463, +891,300753,Cross Clues,2020,3678,7.23164,6.56419,"300753, 428906" +892,98351,Core Worlds,2011,4334,7.12879,6.56300, +893,230933,Merlin,2017,3909,7.18974,6.56265,"230933, 302189" +894,264982,Coloma,2019,2911,7.40435,6.56244,"161813, 264982, 277448" +895,106217,Hawaii,2011,4613,7.09207,6.56134, +896,174226,Arctic Scavengers: Base Game+HQ+Recon,2015,6178,6.95697,6.56086,"41933, 174226" +897,274124,Northgard: Uncharted Lands,2022,2211,7.66723,6.56064,"274124, 366748" +898,52461,Legacy: The Testament of Duke de Crecy,2013,4424,7.11255,6.55989, +899,26566,Homesteaders,2009,3939,7.17823,6.55840, +900,24068,Shadow Hunters,2005,9217,6.82298,6.55815,"24068, 288098, 337262" +901,85256,Timeline: Inventions,2010,17703,6.69579,6.55794,"85256, 99975, 113401, 128664, 131325, 145189, 156659, 161546, 161547, 170984, 173156, 189341, 195244, 195569, 196072, 203655, 210342, 241761, 255970, 257284, 266129, 268802, 284491, 287456, 291154, 307155, 319794, 323352, 326235, 337617, 361814, 379290, 379554, 380555, 386376, 386378, 409925, 430570" +902,157403,Black Fleet,2014,5649,6.98983,6.55785, +903,305682,Rolling Realms,2021,4087,7.15361,6.55701,"305682, 393892" +904,146312,Ghost Fightin' Treasure Hunters,2013,4343,7.11623,6.55556,"146312, 201037, 422668" +905,1382,Winner's Circle,2001,5776,6.97579,6.55461,"383, 1382" +906,204027,Cottage Garden,2016,8581,6.83754,6.55416, +907,279254,Ecos: First Continent,2019,4308,7.11842,6.55402, +908,200077,Mint Works,2017,6764,6.91306,6.55370, +909,855,Java,2000,4492,7.09459,6.55355,"855, 249411" +910,221,Ikusa,1986,5263,7.01462,6.55306, +911,40793,Dice Town,2009,7850,6.86170,6.55244, +912,554,La Città,2000,5336,7.00633,6.55168,"554, 411440" +913,207243,The City of Kings,2018,2604,7.48194,6.55094, +914,178336,World's Fair 1893,2016,4101,7.14202,6.55090, +915,242684,Reavers of Midgard,2019,3009,7.35378,6.54933, +916,159504,Folklore: The Affliction,2017,2154,7.67035,6.54801, +917,152,Mü & More,1995,5040,7.02639,6.54712,"152, 155, 1107, 2176, 32928, 344176, 429608" +918,293889,Fallout Shelter: The Board Game,2020,3515,7.23231,6.54591, +919,240271,Core Space,2019,1192,8.56732,6.54500,"240271, 324657, 360641" +920,368058,The Wolves,2022,3043,7.33688,6.54483, +921,139898,Brew Crafters,2013,3855,7.16961,6.54456,"139898, 154905" +922,25821,The Werewolves of Miller's Hollow,2001,12908,6.73123,6.54455,"25821, 56885, 168680, 236475, 311912, 343981" +923,192074,Odin's Ravens (Second Edition),2016,7905,6.84819,6.54364,"4396, 192074" +924,164949,"Time of Crisis: The Roman Empire in Turmoil, 235-284 AD",2017,2273,7.60243,6.54346, +925,134352,Two Rooms and a Boom,2013,5590,6.97405,6.54345, +926,311715,Mini Rogue,2020,2974,7.35242,6.54323,"199242, 311715, 417020" +927,299960,Alma Mater,2020,3064,7.32865,6.54323, +928,152470,Fief: France 1429,2015,2914,7.36867,6.54301,"1014, 6909, 107704, 152470, 278304, 379409" +929,171233,The Big Book of Madness,2015,6981,6.88725,6.54270, +930,227515,Riverboat,2017,2747,7.41469,6.54073, +931,325022,Coffee Traders,2021,2027,7.72508,6.54072, +932,171669,Discoveries: The Journals of Lewis & Clark,2015,5030,7.01676,6.53987, +933,217449,NMBR 9,2017,7811,6.84593,6.53906,"217449, 402305" +934,194880,Dream Home,2016,7412,6.86212,6.53881, +935,1159,Evo,2001,6356,6.91340,6.53703,"1159, 107255" +936,113873,"The Hunters: German U-Boats at War, 1939-43",2013,1987,7.74001,6.53659,"113873, 189664, 347879" +937,1608,Ambush!,1983,2495,7.49330,6.53572,"1608, 1666" +938,208024,The Reckoners,2018,2150,7.64624,6.53537, +939,299121,Machina Arcana (Second/Third Edition),2019,1895,7.79538,6.53521,"144743, 299121, 299122" +940,281474,Lands of Galzyr,2022,1566,8.05665,6.53381, +941,153065,Linko,2014,5275,6.98583,6.53376, +942,136991,Loony Quest,2015,7265,6.86199,6.53376,"136991, 152757" +943,324090,Scarface 1920,2023,1682,7.95071,6.53342, +944,26457,Successors: The Battles for Alexander's Empire,2008,2226,7.60072,6.53164,"68, 26457, 325348" +945,306481,Tawantinsuyu: The Inca Empire,2020,2700,7.41295,6.53159, +946,22141,Cleopatra and the Society of Architects,2006,7239,6.85944,6.53092,"22141, 265784" +947,95103,Fortune and Glory: The Cliffhanger Game,2011,4060,7.11442,6.52949, +948,17329,Animal Upon Animal,2005,9372,6.78157,6.52843,"17329, 39210, 84464, 104805, 111081, 111379, 230890, 315670" +949,154086,Gold West,2015,3483,7.20931,6.52828,"154086, 280041" +950,261114,Men at Work,2018,3468,7.21174,6.52797, +951,300327,The Castles of Tuscany,2020,3343,7.23668,6.52760, +952,142326,Eight-Minute Empire: Legends,2013,12432,6.71721,6.52671,"131366, 142326" +953,198454,When I Dream,2016,5753,6.93801,6.52644, +954,35815,A Touch of Evil: The Supernatural Game,2008,4852,7.01373,6.52596,"35815, 308970" +955,163154,Falling Sky: The Gallic Revolt Against Caesar,2016,1867,7.79334,6.52585,"163154, 308967" +956,939,Star Wars: The Queen's Gambit,2000,2292,7.55605,6.52472, +957,161882,Irish Gauge,2014,3406,7.21390,6.52184, +958,206051,Insider,2016,4498,7.04528,6.52144,"206051, 307997" +959,16986,Ubongo,2003,12351,6.71052,6.52001,"16986, 28258, 31479, 34969, 41291, 46396, 118568, 180595, 266421, 314402, 396252, 412858" +960,127518,A Distant Plain,2013,1812,7.81629,6.51902, +961,130176,Tales & Games: The Hare & the Tortoise,2011,4248,7.07190,6.51871, +962,316624,Stationfall,2023,1937,7.73158,6.51857, +963,141423,Dead Men Tell No Tales,2015,4002,7.10500,6.51813, +964,318983,Faiyum,2020,2438,7.48078,6.51778, +965,180680,Automobiles,2016,3491,7.18964,6.51737, +966,248158,Thanos Rising: Avengers Infinity War,2018,4382,7.05211,6.51683,"248158, 280986, 283211, 304728, 308329, 358588" +967,362452,Atiwa,2022,2384,7.49887,6.51589, +968,273477,Obscurio,2019,3957,7.10763,6.51558, +969,97903,Terror in Meeple City,2013,7647,6.82088,6.51477, +970,191231,Via Nebula,2016,4689,7.01231,6.51364, +971,9446,Blue Moon,2004,7667,6.81837,6.51345,"9446, 147154" +972,137297,Rise of Augustus,2013,9757,6.75304,6.51344,"137297, 300936" +973,183571,Deep Space D-6,2015,3649,7.15209,6.51221,"183571, 345055" +974,98527,Gloom of Kilforth: A Fantasy Quest Game,2017,2281,7.53531,6.51193,"98527, 238916, 329121" +975,145639,Coconuts,2013,4653,7.01272,6.51134,"145639, 163929" +976,38823,Conflict of Heroes: Storms of Steel! – Kursk 1943,2009,1806,7.80289,6.51124,"38823, 286344" +977,207336,Honshū,2016,5750,6.91500,6.50986,"207336, 260332" +978,75449,Firenze,2010,3278,7.21810,6.50844, +979,284936,Café,2020,3143,7.24851,6.50840, +980,187377,Vikings Gone Wild,2017,3837,7.11337,6.50760,"187377, 219774, 349177" +981,207691,Railroad Revolution,2016,2857,7.31875,6.50627, +982,271321,CABO (Second Edition),2019,3443,7.17843,6.50505,"73664, 271321" +983,303553,Skulls of Sedlec,2020,2608,7.39328,6.50465,"303553, 422012" +984,254226,Unlock!: Exotic Adventures,2018,3286,7.20869,6.50393,"254226, 258411, 258412, 258413" +985,234669,Legacy of Dragonholt,2017,3302,7.20522,6.50389, +986,281194,Flick of Faith,2019,2746,7.34532,6.50286, +987,105,Colossal Arena,1997,9256,6.75273,6.50281,"105, 718, 1367, 329450" +988,259298,The Ancient World (Second Edition),2019,3377,7.18549,6.50143,"147253, 259298" +989,233961,Claim,2017,5601,6.91315,6.50092,"233961, 249763, 314349, 370325" +990,37628,Haggis,2010,4586,7.00330,6.50020, +991,1822,Wilderness War,2001,1930,7.69411,6.49949, +992,204505,Museum,2019,3207,7.21459,6.49726,"204505, 241853, 301019" +993,254127,Europa Universalis: The Price of Power,2023,1075,8.63649,6.49703,"254127, 370448" +994,68264,No Retreat! The Russian Front,2011,1824,7.75785,6.49698,"38877, 68264" +995,156091,Sons of Anarchy: Men of Mayhem,2014,3447,7.16363,6.49665,"156091, 255332, 351616" +996,180771,Teenage Mutant Ninja Turtles: Shadows of the Past,2016,1989,7.65107,6.49597,"180771, 257145, 263192, 299566" +997,91080,Andean Abyss,2012,2036,7.62309,6.49535, +998,355483,Wandering Towers,2022,2669,7.35530,6.49518, +999,274428,Gaslands: Refuelled,2019,1413,8.11704,6.49411,"184824, 274428" +1000,328908,The Initiative,2021,2157,7.55424,6.49265, +1001,241477,Karak,2017,3138,7.22105,6.49189,"241477, 393530" +1002,219100,UBOOT: The Board Game,2019,2126,7.56785,6.49176, +1003,101785,D-Day Dice,2012,5098,6.93976,6.49123,"61028, 101785, 233208, 247567, 431175" +1004,12995,Dungeon Twister,2004,7274,6.80526,6.49099,"12995, 26138, 42124, 144525, 418957" +1005,9220,Saboteur,2004,35852,6.55360,6.48991,"9220, 143147, 168215, 245214, 294508, 373834, 406322" +1006,351526,Encyclopedia,2022,2468,7.41349,6.48905, +1007,299252,Here to Slay,2020,5970,6.87071,6.48869, +1008,367041,Scholars of the South Tigris,2023,1505,8.00305,6.48827, +1009,472,DungeonQuest,1985,7500,6.79194,6.48804,"472, 5177, 71061, 157958, 310636, 359127, 397614" +1010,205046,Capital Lux,2016,3205,7.19915,6.48802,"205046, 299607, 316343" +1011,347013,Get on Board: New York & London,2022,3831,7.07976,6.48603,"251053, 335678, 347013, 380105" +1012,123570,Strike,2012,5547,6.89558,6.48568,"123570, 246228, 300329" +1013,154246,La Isla,2014,5846,6.87444,6.48555,"154246, 368974" +1014,126100,Mythos Tales,2016,2577,7.36485,6.48402,"126100, 138963" +1015,347137,Chronicles of Avel,2021,2103,7.56178,6.48325, +1016,284108,Pictures,2019,3105,7.21154,6.48199, +1017,2842,TransAmerica,2001,10143,6.70432,6.48118,"2842, 16267, 34508, 171197, 260799, 287552, 409746" +1018,355433,boop.,2022,3143,7.20097,6.48098,"295449, 316352, 355433, 383579, 417696" +1019,256606,Spirits of the Wild,2018,2616,7.34533,6.48062, +1020,327,Loopin' Louie,1992,11027,6.68473,6.47977,"327, 4410, 32048, 173341, 397459" +1021,82168,Escape from the Aliens in Outer Space,2010,5077,6.92119,6.47719, +1022,37836,"Julius Caesar: Caesar, Pompey, and the Roman Civil War",2010,1723,7.78492,6.47695, +1023,332386,Brew,2021,3736,7.07595,6.47434, +1024,152162,Diamonds,2014,5587,6.87591,6.47383, +1025,214484,HEXplore It: The Valley of the Dead King,2017,1661,7.82091,6.47158,"214484, 244769, 285972, 331582, 422861" +1026,229265,Wendake,2017,2270,7.45874,6.47150, +1027,252752,Genotype: A Mendelian Genetics Game,2021,2232,7.47532,6.47139, +1028,196202,Rum & Bones: Second Tide,2017,3061,7.20331,6.47132,"40604, 168788, 196202" +1029,833,For the People,1998,1715,7.77656,6.47079, +1030,44163,Power Grid: Factory Manager,2009,6088,6.83758,6.47003, +1031,10,Elfenland,1998,10216,6.68905,6.47002,"10, 229, 711, 180325" +1032,140933,Blueprints,2013,6963,6.79048,6.46934, +1033,302524,Super-Skill Pinball: 4-Cade,2020,3623,7.08596,6.46900,"302524, 328826, 353311, 367978, 422339" +1034,40209,RAF: The Battle of Britain 1940,2009,1653,7.82121,6.46898,"3202, 40209" +1035,360265,Sabika,2022,1729,7.76157,6.46889, +1036,213266,Circle the Wagons,2017,3803,7.05652,6.46884,"213266, 227266, 245206, 408834, 429911" +1037,50768,Ninjato,2011,3099,7.18802,6.46770,"50768, 264141" +1038,340677,Bad Company,2021,2710,7.29035,6.46712, +1039,145371,Three Kingdoms Redux,2014,1628,7.83587,6.46645, +1040,302388,Back to the Future: Back in Time,2020,2986,7.21262,6.46620, +1041,8989,Hansa,2004,5283,6.88427,6.46354,"8989, 271150" +1042,251412,On Tour,2019,5408,6.87355,6.46285,"251412, 360706" +1043,244049,Forum Trajanum,2018,2970,7.20976,6.46232, +1044,149155,Dead Man's Draw,2015,5770,6.84597,6.46155, +1045,127024,Room 25,2013,7635,6.75200,6.46150,"127024, 212956, 411275" +1046,151007,Pathfinder Adventure Card Game: Skull & Shackles – Base Set,2014,2734,7.27038,6.46021, +1047,340325,Vagrantsong,2022,2073,7.52861,6.46016, +1048,121410,Steam Park,2013,6103,6.82255,6.45978, +1049,163642,Chimera Station,2017,2984,7.20131,6.45954, +1050,221318,Whistle Stop,2017,3682,7.05937,6.45873, +1051,372559,Spots,2022,3390,7.10940,6.45771, +1052,124,Primordial Soup,1997,4768,6.92070,6.45747, +1053,41916,The Magic Labyrinth,2009,6309,6.80678,6.45691,"41916, 279861" +1054,354,Stick 'Em,1993,3750,7.04350,6.45564, +1055,332944,Sobek: 2 Players,2021,4579,6.93697,6.45558,"67185, 234949, 332944" +1056,282954,Paris,2020,2800,7.24266,6.45548, +1057,159109,XenoShyft: Onslaught,2015,4638,6.92998,6.45500,"159109, 189660" +1058,63975,Mountain Goats,2010,6078,6.81656,6.45435,"2671, 5155, 11215, 14273, 20065, 34004, 34166, 60316, 63975, 170832, 218471, 277927, 305984" +1059,13823,Fairy Tale,2004,9007,6.69836,6.45402, +1060,368173,Let's Go! To Japan,2024,1744,7.71571,6.45394,"368173, 428031" +1061,210232,Dungeon Degenerates: Hand of Doom,2017,1355,8.07658,6.45343, +1062,246761,Cahoots,2018,3297,7.12026,6.45328,"246761, 348874" +1063,257614,Tussie Mussie,2019,4625,6.92661,6.45186,"257614, 423586" +1064,240855,Lockup: A Roll Player Tale,2019,2427,7.35606,6.45160, +1065,24417,Factory Fun,2006,4899,6.89895,6.45111,"24417, 183284" +1066,284121,Uprising: Curse of the Last Emperor,2021,1148,8.36002,6.45036, +1067,42452,Rattus,2010,6406,6.78965,6.44820,"42452, 360212" +1068,322622,Floriferous,2021,2143,7.46858,6.44806, +1069,174660,New York 1901,2015,6431,6.78812,6.44806, +1070,164265,Witness,2014,2767,7.23797,6.44781,"164265, 422120, 422121, 422123" +1071,176544,Automania,2015,2542,7.30721,6.44744, +1072,204836,Escape Room: The Game,2016,4988,6.88534,6.44726,"204836, 229315, 260000, 266802, 276760, 291105, 296948, 298596, 311539, 311541, 325704, 327107, 337690, 338370, 341942, 343309, 351224, 352687, 353679, 358425, 376592, 377508, 405450, 405454, 407005, 412892, 430992, 431014, 431017, 431018" +1073,160610,Thunderbirds,2015,2002,7.53696,6.44644, +1074,231484,Carnival of Monsters,2019,2812,7.22188,6.44591, +1075,269595,Copenhagen,2019,4654,6.91154,6.44376,"269595, 282463, 363351, 366011, 409561" +1076,226520,Exit: The Game – The Sinister Mansion,2018,2678,7.25639,6.44359, +1077,182694,Watson & Holmes,2015,2679,7.25489,6.44295,"182694, 346142" +1078,826,Cartagena,2000,9280,6.67733,6.44293,"826, 25823, 224031, 380924" +1079,176229,Tides of Time,2015,10600,6.64770,6.44257,"176229, 195544, 272756" +1080,272533,Kingdom Rush: Rift in Time,2020,2369,7.35874,6.44173,"272533, 328555, 413124" +1081,94246,1812: The Invasion of Canada,2012,2440,7.33123,6.44131, +1082,291859,Riftforce,2021,2629,7.26631,6.44081, +1083,128721,Crisis,2016,2077,7.47503,6.43575, +1084,298102,Roll Camera!: The Filmmaking Board Game,2021,2107,7.45819,6.43478, +1085,171879,Kraftwagen,2015,2727,7.22527,6.43465,"171879, 391124" +1086,63268,Spot it!,2009,20695,6.53883,6.43464,"63268, 117995, 117997, 125048, 143843, 153820, 158850, 162022, 163499, 167774, 285064, 288661, 288662, 288663, 291134, 340354, 377391, 381429, 382419, 390151, 431838" +1087,154386,Medieval Academy,2014,4551,6.90791,6.43432,"154386, 181327, 392448" +1088,218421,Street Masters,2018,1444,7.92590,6.43394,"218421, 321628, 417988, 417993" +1089,116,Guillotine,1998,21641,6.53321,6.43368, +1090,24773,On the Underground,2006,3714,7.01354,6.43365,"24773, 281152, 322076" +1091,123499,City of Iron,2013,2798,7.20331,6.43360,"123499, 195503" +1092,202583,Rise of Tribes,2018,3185,7.10914,6.43323, +1093,219101,Pavlov's House,2018,1463,7.90294,6.43255, +1094,338628,Trails,2021,3509,7.04480,6.43207, +1095,226518,Exit: The Game – The Sunken Treasure,2017,3557,7.03641,6.43199, +1096,309110,Food Chain Island,2020,2702,7.22725,6.43177, +1097,21133,Infinity N3: Core Book,2005,1241,8.16363,6.43172,"21133, 163399, 180672, 203312, 248423, 262158, 283345, 284388, 285853, 312724, 326767, 340239, 346659, 363995, 369435, 431042" +1098,301257,Maglev Metro,2021,2680,7.23355,6.43164, +1099,150312,Welcome to the Dungeon,2013,16639,6.56051,6.43139,"150312, 195043, 227110" +1100,137649,Level 7 [Omega Protocol],2013,2178,7.41693,6.43094, +1101,225167,Human Punishment: Social Deduction 2.0,2018,2300,7.36412,6.43069,"225167, 283137, 400489" +1102,15818,Pickomino,2005,12277,6.60519,6.43038,"15818, 66797, 66798, 245200" +1103,159503,The Captain Is Dead,2014,3434,7.05501,6.43017,"159503, 271751" +1104,180899,Ponzi Scheme,2015,3022,7.13700,6.42835, +1105,272380,SHŌBU,2019,1991,7.50363,6.42820, +1106,173101,Council of 4,2015,3067,7.12593,6.42797, +1107,123607,Puzzle Strike: Third Edition,2012,3786,6.99316,6.42784,"67928, 123607, 123609, 350079" +1108,119591,Rialto,2013,4332,6.92176,6.42774,"119591, 346645" +1109,230085,Agra,2017,2485,7.28869,6.42761, +1110,75165,De Vulgari Eloquentia,2010,2403,7.31721,6.42716,"75165, 275010" +1111,256997,Perseverance: Castaway Chronicles – Episodes 1 & 2,2022,1652,7.72082,6.42675, +1112,229491,Edge of Darkness,2019,2001,7.49173,6.42518,"229491, 286326" +1113,19100,Hacienda,2005,4341,6.91544,6.42428,"19100, 285133" +1114,165872,Liberty or Death: The American Insurrection,2016,1587,7.76594,6.42353, +1115,17396,Manoeuvre,2008,2478,7.28322,6.42351,"17396, 106113, 111890" +1116,302425,Unlock!: Mythic Adventures,2020,1670,7.69899,6.42343, +1117,104347,Santiago de Cuba,2011,4651,6.88141,6.42342, +1118,341530,Super Mega Lucky Box,2021,3226,7.08106,6.42187, +1119,295262,Sniper Elite: The Board Game,2022,1545,7.79729,6.42147, +1120,42910,Peloponnes,2009,3345,7.05686,6.42143,"42910, 181501" +1121,131111,Codex: Card-Time Strategy – Deluxe Set,2016,1616,7.73608,6.42116,"131111, 215436, 215437" +1122,291962,Paper Dungeons: A Dungeon Scrawler Game,2020,2918,7.14808,6.42044, +1123,67254,Warmachine Prime Mk II,2010,1878,7.55052,6.42021,"4741, 19679, 67254, 174048, 199076, 209809, 294592, 294771, 298773, 367844" +1124,25643,Arkadia,2006,4397,6.90271,6.42003, +1125,268620,Similo,2019,5820,6.78361,6.41926,"197551, 268620" +1126,2122,Vampire: The Eternal Struggle,1994,2501,7.26680,6.41908,"2122, 287191, 287192, 287193, 287194, 287195, 324803" +1127,67877,Anomia,2010,6325,6.75417,6.41900,"67877, 142271, 225062, 250834, 376217, 382169" +1128,217085,Unearth,2017,5178,6.82793,6.41867, +1129,298371,Wild Space,2020,2801,7.17392,6.41794, +1130,103,Titan,1980,4010,6.94479,6.41718, +1131,368017,Point City,2023,2626,7.22269,6.41709, +1132,16496,Roma,2005,5871,6.77605,6.41610,"16496, 56931" +1133,273264,Iron Helm,2019,1543,7.78363,6.41528,"249675, 273264, 347900, 412068" +1134,156714,Doomtown: Reloaded,2014,2934,7.13415,6.41486,"1037, 12957, 156714, 342068, 353782" +1135,66837,1862: Railway Mania in the Eastern Counties,2013,1176,8.20920,6.41479, +1136,183006,Qwinto,2015,3671,6.98941,6.41466,"183006, 217470" +1137,233020,Fireball Island: The Curse of Vul-Kar,2018,7789,6.68511,6.41432,"1768, 233020, 345435" +1138,268012,Chronicles of Drunagor: Age of Darkness,2021,1084,8.35824,6.41375, +1139,30381,Hamburgum,2007,3290,7.05426,6.41365, +1140,205716,New Angeles,2016,3293,7.05292,6.41320, +1141,7805,Fearsome Floors,2003,8368,6.66459,6.41293, +1142,342900,Earthborne Rangers,2023,1281,8.05642,6.41276, +1143,300442,Trekking the World,2020,3063,7.09993,6.41262,"300442, 420361" +1144,260300,Dungeon Mayhem,2018,4245,6.90817,6.41238,"260300, 295577, 354342" +1145,205317,DOOM: The Board Game,2016,2136,7.39452,6.41085, +1146,267609,Guards of Atlantis II,2022,1255,8.08485,6.41077,"172965, 267609" +1147,253608,18Chesapeake,2020,1665,7.67245,6.41071, +1148,339958,Gutenberg,2021,2294,7.32644,6.41068, +1149,624,Quoridor,1997,8914,6.64512,6.40970,"624, 7581, 13875, 411617" +1150,157526,Viceroy,2014,5731,6.77575,6.40962, +1151,180040,Villages of Valeria,2017,3525,7.00333,6.40868,"180040, 216725" +1152,2338,Starship Catan,2001,5609,6.78226,6.40859,"2338, 153425, 383481" +1153,223855,Sentient,2017,2666,7.19270,6.40749, +1154,368061,Zoo Vadis,2023,4027,6.92707,6.40733,"122, 368061" +1155,339906,The Hunger,2021,3206,7.06011,6.40729, +1156,8045,Princes of the Renaissance,2003,2337,7.30200,6.40686, +1157,91873,Strasbourg,2011,2769,7.16143,6.40636,"91873, 430614" +1158,24310,The Red Dragon Inn,2007,10226,6.61051,6.40611,"24310, 33451, 46530, 66510, 142402, 173634, 212662, 244258, 249578, 257645, 330097, 362675, 380868, 416692" +1159,1499,World in Flames,1985,1641,7.67834,6.40548,"1477, 1499, 2875, 7739, 8666, 8679, 150446, 238218, 255484, 258379" +1160,43022,Yomi,2011,3578,6.98539,6.40313,"43022, 84838, 163047, 163048, 170482, 193278, 274080, 417406, 417407, 417408, 417409, 417410, 417411, 428351" +1161,253759,Paint the Roses,2022,2456,7.25057,6.40271,"253759, 383300" +1162,382843,Evacuation,2023,1793,7.56394,6.40264, +1163,22877,Fields of Fire,2008,1415,7.87337,6.40234,"22877, 139433, 367527, 392697" +1164,362986,Tribes of the Wind,2022,2136,7.37224,6.40014, +1165,180020,Virus!,2015,6418,6.72333,6.39989,"180020, 432536" +1166,394,Kahuna,1998,10075,6.60577,6.39976,"309, 394, 4330" +1167,191876,Ulm,2016,3401,7.00972,6.39957, +1168,5716,Balloon Cup,2003,6949,6.69745,6.39901,"5716, 141791" +1169,175324,Fog of Love,2017,8021,6.65722,6.39875,"175324, 315366" +1170,387866,Star Wars: Unlimited,2024,1348,7.93534,6.39823, +1171,164338,The Golden Ages,2014,2427,7.25100,6.39773, +1172,238638,Castell,2018,2059,7.40300,6.39750, +1173,143405,Sylvion,2015,3214,7.04134,6.39731, +1174,352574,Fit to Print,2023,2028,7.41631,6.39653, +1175,902,Meuterer,2000,4328,6.87280,6.39550,"72, 902" +1176,151771,La Cosa Nostra,2014,1755,7.57171,6.39513, +1177,142992,Gravwell: Escape from the 9th Dimension,2013,4163,6.89089,6.39497,"142992, 340834" +1178,22038,Warrior Knights,2006,4500,6.85337,6.39472,"1143, 22038" +1179,312267,Star Wars: Unlock!,2020,3092,7.06086,6.39394,"312267, 343383, 343384, 343385" +1180,281526,The Isofarian Guard,2023,861,8.78636,6.39323, +1181,316858,CloudAge,2020,2457,7.23134,6.39297, +1182,219217,Arena: The Contest,2019,986,8.48147,6.39278, +1183,297978,Mariposas,2020,5159,6.79182,6.39267, +1184,257769,Walking in Burano,2018,2916,7.09855,6.39251, +1185,216632,Tournament at Camelot,2017,2654,7.16754,6.39213,"216632, 292974" +1186,310632,Dice Miner,2021,2326,7.27672,6.39204, +1187,15126,Advanced Squad Leader: Starter Kit #2,2005,1300,7.97398,6.39170, +1188,283294,Yukon Airways,2019,2204,7.32465,6.39154, +1189,1568,Space Crusade,1990,3094,7.05223,6.38924, +1190,139030,Mascarade,2013,11163,6.57224,6.38861,"139030, 356907" +1191,438,Scotland Yard,1983,19077,6.49493,6.38760,"438, 534, 28739, 30879, 55763, 94837, 100881, 148740, 171665, 216301, 255744, 261844, 264970, 332664, 369007, 375696, 394126" +1192,368305,Life of the Amazonia,2023,1181,8.12009,6.38719, +1193,191894,Imagine,2015,4397,6.85262,6.38718,"191894, 300908" +1194,261393,Dungeon Universalis,2019,890,8.68620,6.38705,"261393, 371027" +1195,171662,Neanderthal,2015,2753,7.12934,6.38651,"156501, 171662, 266447" +1196,335609,TEN,2021,3013,7.06446,6.38607, +1197,344258,That Time You Killed Me,2021,1930,7.44332,6.38525, +1198,23094,Planet Steam,2008,2920,7.08437,6.38512, +1199,248861,Metro X,2018,2812,7.10973,6.38430,"248861, 346482" +1200,165986,Royals,2014,3336,6.99241,6.38231,"38778, 165986" +1201,27627,Talisman: Revised 4th Edition,2007,21742,6.47574,6.38214,"714, 5336, 27627, 273976, 274690, 308948, 340898, 415550" +1202,199,Manhattan,1994,5875,6.72671,6.38085, +1203,375651,That's Not a Hat,2023,2887,7.08464,6.38083,"375651, 406663" +1204,134453,The Little Prince: Make Me a Planet,2013,3995,6.88932,6.38075,"134453, 351972" +1205,360692,Septima,2023,1927,7.43225,6.37946, +1206,223376,A Song of Ice & Fire: Tabletop Miniatures Game – Stark vs Lannister Starter Set,2018,1179,8.09547,6.37787,"223376, 265039, 273482, 293387, 294756, 339062, 361507, 361509, 374176, 402922, 434385" +1207,310192,Overboss: A Boss Monster Adventure,2021,2172,7.30907,6.37731,"310192, 378737" +1208,4099,Keythedral,2002,3049,7.04106,6.37731, +1209,33604,Say Anything,2008,6354,6.69575,6.37726,"33604, 232122" +1210,167513,Barony,2015,2869,7.08045,6.37606,"167513, 421529" +1211,230889,Aristeia!,2017,1136,8.15135,6.37485,"230889, 329996" +1212,17223,World of Warcraft: The Boardgame,2005,5875,6.71587,6.37306, +1213,1403,Turn the Tide,1997,4934,6.78055,6.37259, +1214,1544,Beyond Balderdash,1993,8938,6.59717,6.37209,"163, 1544, 6512, 15471, 250331, 370771" +1215,106,Mystery Rummy: Jack the Ripper,1998,3552,6.93798,6.37180, +1216,330038,Llamaland,2021,2198,7.28646,6.37166, +1217,2507,Liberté,1998,2753,7.10046,6.37080, +1218,271088,Ishtar: Gardens of Babylon,2019,3273,6.98026,6.36829, +1219,165950,Beasty Bar,2014,4584,6.80521,6.36828,"165950, 181617, 286657, 428579" +1220,245658,Unicorn Fever,2020,3275,6.97753,6.36691,"58110, 245658" +1221,1563,Rise and Decline of the Third Reich,1974,2893,7.05774,6.36668,"283, 1563, 2904, 5034, 7614, 8402, 151952, 302517, 433505" +1222,334986,Daybreak,2023,1690,7.54960,6.36665, +1223,125548,Pixel Tactics,2012,4607,6.79920,6.36572,"125548, 137423, 152899, 169274, 169275, 172969, 212580, 212581, 214747, 269214" +1224,350636,Unlock!: Game Adventures,2021,1270,7.93716,6.36536, +1225,1915,Middle-earth,1995,2033,7.34668,6.36509, +1226,811,Rummikub,1977,19040,6.46939,6.36464,"811, 13169, 183233, 237792" +1227,177354,Frostgrave,2015,1083,8.20452,6.36406,"177354, 232166, 317519, 338124" +1228,12495,Fire & Axe: A Viking Saga,2004,3198,6.98687,6.36380, +1229,215841,Exit: The Game – The Forgotten Island,2017,3755,6.89408,6.36357, +1230,2808,The Russian Campaign,1974,1843,7.44443,6.36356,"2808, 10156, 208974" +1231,257527,Trapwords,2018,3212,6.98375,6.36356, +1232,199383,Calimala,2017,2419,7.18678,6.36341, +1233,187700,GKR: Heavy Hitters,2018,1632,7.58314,6.36313, +1234,197097,Four Against Darkness,2016,1724,7.51739,6.36285,"197097, 268398, 306921, 307191, 308533, 309721" +1235,13884,The Scepter of Zavandor,2004,3418,6.94349,6.36184,"1491, 13884" +1236,22,Magic Realm,1979,2159,7.28146,6.36125, +1237,181810,Kodama: The Tree Spirits,2016,6719,6.65630,6.36077,"168700, 181810, 252402, 277611" +1238,244191,Naga Raja,2019,2637,7.11328,6.36052, +1239,254713,The Artemis Project,2019,2279,7.23149,6.36050, +1240,244918,Exit: The Game – The Mysterious Museum,2018,2635,7.11325,6.36020, +1241,179572,Dice City,2015,5525,6.71688,6.35846,"179572, 227171" +1242,163413,Murano,2014,2380,7.18846,6.35742,"163413, 315252" +1243,195856,Bloodborne: The Card Game,2016,3926,6.86113,6.35737, +1244,206803,Warsaw: City of Ruins,2016,2095,7.30071,6.35703, +1245,230791,Time of Legends: Joan of Arc,2019,1291,7.88769,6.35678, +1246,342562,ROVE: Results-Oriented Versatile Explorer,2021,1617,7.57800,6.35635,"342562, 408836, 408837" +1247,94362,Rune Age,2011,4520,6.79307,6.35614, +1248,293835,Oltréé,2021,1783,7.46173,6.35524, +1249,218530,Tortuga 1667,2017,3730,6.88348,6.35482, +1250,242,Junta,1979,6002,6.68288,6.35447,"242, 192777" +1251,105037,Tournay,2011,3277,6.95399,6.35332, +1252,266083,L.L.A.M.A.,2019,9606,6.55789,6.35304,"266083, 310104, 313473, 325853, 336936, 406320" +1253,2065,Shogi,1587,1915,7.37665,6.35125, +1254,286063,The 7th Citadel,2024,956,8.40409,6.35090, +1255,208895,New York Slice,2017,6119,6.67140,6.35070,"37371, 208895, 319593" +1256,246663,NEOM,2018,2205,7.24000,6.35037, +1257,878,Wyatt Earp,2001,4125,6.82552,6.35012, +1258,232595,Skulk Hollow,2019,2185,7.24576,6.34922,"232595, 292490, 373760" +1259,232361,After the Virus,2017,2090,7.28644,6.34918, +1260,21441,Mykerinos,2006,3993,6.83940,6.34895, +1261,120217,City of Horror,2012,5880,6.68195,6.34891,"16772, 120217, 370047" +1262,142079,Space Cadets: Dice Duel,2013,5759,6.68727,6.34772,"123096, 142079" +1263,288513,Tranquility,2020,3197,6.95768,6.34673,"288513, 334717" +1264,285905,Marvel: Crisis Protocol,2019,1015,8.26983,6.34635,"285905, 400080" +1265,300001,Renature,2020,2597,7.09702,6.34577, +1266,240567,Chocolate Factory,2019,2495,7.12607,6.34490,"240567, 329434" +1267,309430,Tiny Epic Pirates,2021,2708,7.06457,6.34487,"309430, 310203" +1268,272682,Expedition to Newdale,2019,1868,7.38752,6.34457, +1269,323156,Stroganov,2021,2053,7.29331,6.34446,"323156, 388170" +1270,215842,Exit: The Game – The Polar Station,2017,3805,6.85594,6.34417, +1271,255664,The Binding of Isaac: Four Souls,2018,2836,7.03014,6.34380,"255664, 378890" +1272,72991,Asara,2010,2946,7.00191,6.34234,"72991, 428725" +1273,214396,Campy Creatures,2017,2775,7.04216,6.34213, +1274,194626,Happy Salmon,2016,5953,6.66787,6.34171,"194626, 246693, 411347" +1275,138431,Galaxy Defenders,2014,1791,7.42515,6.34142, +1276,20542,Advanced Squad Leader: Starter Kit #3,2007,1131,8.05662,6.34110, +1277,172385,Porta Nigra,2015,2369,7.15916,6.34062, +1278,244995,Illusion,2018,5123,6.71900,6.34053, +1279,254018,Solenia,2018,2837,7.02351,6.34027, +1280,915,Mystery of the Abbey,1995,8716,6.56235,6.34002,"915, 153912" +1281,200511,After the Empire,2021,1706,7.47387,6.33917, +1282,350205,Horseless Carriage,2023,1294,7.83291,6.33837, +1283,212516,Keyper,2017,2162,7.23283,6.33834, +1284,175549,Salem 1692,2015,2600,7.08122,6.33785, +1285,5206,Ogre,1977,3034,6.97463,6.33771,"5205, 5206, 29026, 173270, 259369" +1286,181819,Sorcerer,2019,1608,7.53932,6.33765, +1287,29223,Marrakech,2007,5408,6.69486,6.33759, +1288,30618,Eat Poop You Cat,,1721,7.45949,6.33726, +1289,223740,Bargain Quest,2017,3893,6.83308,6.33707, +1290,166226,The Staufer Dynasty,2014,2403,7.13921,6.33635, +1291,196,Kremlin,1986,3121,6.95396,6.33603,"196, 161782" +1292,194690,Viral,2017,3228,6.93326,6.33591, +1293,492,Aladdin's Dragons,2000,3516,6.88293,6.33506,"294, 492, 53103, 363455" +1294,73,Show Manager,1996,3201,6.93672,6.33499,"73, 2570" +1295,15511,Fjords,2005,4144,6.79876,6.33433,"15511, 322564" +1296,171011,Favor of the Pharaoh,2015,6647,6.62348,6.33404,"21632, 171011" +1297,8098,Jungle Speed,1997,14383,6.46763,6.33389,"8098, 21015, 39103, 56294, 104769, 144468, 149726, 155577, 274651, 313352, 345793, 388327" +1298,369646,Disney Lorcana,2023,2053,7.27085,6.33389,"369646, 421547, 423689" +1299,176083,Hit Z Road,2016,4577,6.75411,6.33385, +1300,322656,burncycle,2022,1204,7.93006,6.33337, +1301,363369,Starship Captains,2022,2290,7.17140,6.33265, +1302,21551,SPQR (Deluxe Edition),2008,1278,7.83550,6.33262,"1444, 21551" +1303,200057,Pioneer Days,2017,2135,7.23216,6.33259, +1304,39684,Merkator,2010,2733,7.03430,6.33203, +1305,264647,Age of Civilization,2019,2708,7.04038,6.33181, +1306,365104,Planted: A Game of Nature & Nurture,2022,2033,7.27545,6.33172, +1307,185538,Tsukuyumi: Full Moon Down,2018,1359,7.74226,6.33126,"185538, 299450" +1308,253214,Escape Tales: The Awakening,2018,2801,7.01477,6.33067, +1309,929,The Great Dalmuti,1995,8547,6.55448,6.33037,"929, 1814" +1310,1231,Bandu,1987,4135,6.79275,6.32982, +1311,2987,Pirate's Cove,2002,8395,6.55750,6.32956, +1312,38863,The Rich and the Good,2008,2387,7.13067,6.32927, +1313,318546,CoraQuest,2021,1207,7.91024,6.32793, +1314,285533,Miyabi,2019,1717,7.43950,6.32761, +1315,367966,Endeavor: Deep Sea,2024,1034,8.17340,6.32744,"367966, 418470" +1316,19999,Aton,2005,3607,6.85609,6.32712, +1317,248125,Monumental,2020,1713,7.44049,6.32692, +1318,481,Carolus Magnus,2000,4001,6.80324,6.32664,"481, 341286" +1319,168,Empire Builder,1982,3024,6.95592,6.32590, +1320,331401,Dog Park,2022,2853,6.99326,6.32567, +1321,331820,Rolling Heights,2023,1556,7.54892,6.32534, +1322,255675,Exit: The Game – The Catacombs of Horror,2018,1908,7.32156,6.32461, +1323,258444,Gingerbread House,2018,2835,6.99444,6.32398, +1324,3228,Pueblo,2002,2969,6.96342,6.32356, +1325,252929,Planet,2018,5633,6.66012,6.32306, +1326,350458,Terracotta Army,2022,1663,7.46070,6.32137, +1327,149776,Fireteam Zero,2015,1629,7.48418,6.32124, +1328,201,The Rose King,1992,3801,6.81916,6.32094, +1329,146910,Wildcatters,2013,1482,7.59684,6.32019, +1330,40270,Call of Cthulhu: The Card Game,2008,3484,6.86266,6.31984,"8817, 40270" +1331,262114,Rival Restaurants,2019,1500,7.57934,6.31933, +1332,336929,Land vs Sea,2021,2322,7.13228,6.31882, +1333,269603,Minecraft: Builders & Biomes,2019,3101,6.92241,6.31565, +1334,94104,Omen: A Reign of War,2011,1909,7.29989,6.31503,"94104, 212370, 232956, 274072, 404711, 404712, 404713" +1335,350736,Voyages,2021,1658,7.44820,6.31470, +1336,29934,Amyitis,2007,3169,6.90720,6.31439, +1337,61487,Unconditional Surrender! World War 2 in Europe,2014,1132,7.97150,6.31358,"61487, 88253, 316238" +1338,220133,Endangered,2020,1636,7.46020,6.31336, +1339,119,Cosmolancer,1994,6297,6.61029,6.31261,"119, 29308" +1340,148951,Tiny Epic Kingdoms,2014,8106,6.54324,6.31213,"148951, 286447, 314758, 314759" +1341,387378,MLEM: Space Agency,2024,2252,7.13990,6.31009, +1342,261901,Tokyo Highway,2018,4217,6.75266,6.30972,"215463, 261901, 404513" +1343,120523,Nothing Personal,2013,2545,7.04143,6.30855,"120523, 287450" +1344,2251,Strat-O-Matic Baseball,1962,1223,7.83273,6.30824, +1345,204,Stephenson's Rocket,1999,3058,6.91679,6.30759,"204, 30365" +1346,267127,Aerion,2019,1852,7.31232,6.30707, +1347,22143,EastFront: The War in Russia 1941-45 – Second Edition,2006,1212,7.84214,6.30672,"77, 78, 79, 22143, 22161" +1348,21550,Blokus Trigon,2006,3267,6.87628,6.30668, +1349,332321,ALIEN: Fate of the Nostromo,2021,2429,7.07237,6.30647, +1350,81640,Florenza,2010,2071,7.20405,6.30613,"81640, 143484, 284825, 311464" +1351,112138,Krosmaster: Arena,2012,4579,6.71224,6.30613,"112138, 151456, 155822, 155827, 170568, 203719, 220630, 228116, 256940" +1352,299,De Bellis Antiquitatis: Quick Play Wargame Rules with Army Lists for Ancient and Medieval Battles,1990,1364,7.66923,6.30605,"299, 5369, 8495, 12715, 28096, 31167, 31583, 97377, 101865, 204793, 248375, 268467, 284578, 313855, 327071, 416792, 429855" +1353,371972,Ierusalem: Anno Domini,2023,1426,7.60709,6.30495, +1354,282414,Pharaon,2019,1684,7.40714,6.30476, +1355,348096,Kites,2022,2820,6.96255,6.30448,"348096, 398684" +1356,129051,Le Havre: The Inland Port,2012,3721,6.80233,6.30394, +1357,285265,Rune Stones,2019,1953,7.25294,6.30368, +1358,330608,Cryo,2021,1956,7.25104,6.30347, +1359,116954,Butterfly Garden,2012,3476,6.83620,6.30318, +1360,344554,Décorum,2022,1748,7.36275,6.30302, +1361,34887,Revolution!,2009,4442,6.71961,6.30274,"34887, 365032" +1362,232,Serenissima,1996,3214,6.87724,6.30178,"232, 135281" +1363,233678,Indian Summer,2017,4090,6.75393,6.30174, +1364,275044,Glow,2021,2717,6.97906,6.29992, +1365,276830,Sanctum,2019,2411,7.06378,6.29916, +1366,143986,CV,2013,6722,6.57219,6.29826,"143986, 229453" +1367,18745,Sun Tzu,2005,2444,7.05155,6.29818, +1368,169794,Haspelknecht: The Story of Early Coal Mining,2015,1990,7.22342,6.29818, +1369,235375,Spirits of the Forest,2018,4148,6.74151,6.29782,"2610, 5795, 235375" +1370,387780,Rats of Wistar,2023,1493,7.52879,6.29714, +1371,148203,Dutch Blitz,1960,4124,6.74118,6.29595,"148203, 178494, 410108" +1372,347305,Inventions: Evolution of Ideas,2024,1088,7.98219,6.29552, +1373,217398,Path of Light and Shadow,2017,1659,7.39982,6.29475, +1374,256885,The Fantasy Trip: Legacy Edition,2019,1113,7.94141,6.29458,"3463, 3464, 256885, 263996" +1375,115,I'm the Boss!,1994,4067,6.74444,6.29405,"115, 125605, 294127, 406080, 414313, 414314, 414315" +1376,312251,Curious Cargo,2020,2391,7.05920,6.29358, +1377,339484,Savannah Park,2021,2260,7.10303,6.29330,"339484, 367047" +1378,38545,Kamisado,2008,2769,6.95411,6.29326,"26151, 38545, 110245, 153498" +1379,38862,Giants,2008,2776,6.95120,6.29258,"38862, 314401" +1380,143175,Kashgar: Merchants of the Silk Road,2013,2326,7.07595,6.29124, +1381,37919,Ascending Empires,2011,2069,7.17265,6.29088,"37919, 367260" +1382,2081,The Civil War 1861-1865,1983,1284,7.71018,6.29032, +1383,594,Sleuth,1971,3021,6.89354,6.29018,"594, 11572" +1384,246200,Piepmatz,2018,2587,6.99259,6.28903, +1385,242653,Mysthea,2019,1408,7.58032,6.28849,"242653, 276090" +1386,274841,Cóatl,2020,2903,6.91442,6.28814,"274841, 343028" +1387,1117,You're Bluffing!,1985,5708,6.60606,6.28772,"1117, 56786, 193062, 406750" +1388,24827,Traders of Osaka,2006,3524,6.80103,6.28631, +1389,619,The Bottle Imp,1995,4042,6.73470,6.28608,"619, 413364" +1390,222407,Lignum (Second Edition),2017,1497,7.49659,6.28577,"174155, 222407" +1391,38718,Normandy '44,2010,1122,7.90074,6.28559, +1392,224483,Exceed Fighting System,2016,1190,7.80824,6.28552,"180543, 185378, 185380, 185381, 224483, 256742, 256778, 256779, 256780, 265752, 265754, 265755, 287325, 287326, 316288, 316289, 316290, 316291, 356900, 356901, 356903, 356904, 356908, 397926" +1393,325698,Juicy Fruits,2021,2427,7.03201,6.28546, +1394,3565,Mordheim: City of the Damned,1999,1727,7.33434,6.28534, +1395,284584,Troyes Dice,2020,2480,7.01515,6.28499, +1396,244916,Drop It,2018,2974,6.89333,6.28468, +1397,494,Ave Caesar,1989,4943,6.65073,6.28459,"459, 494" +1398,210274,Petrichor,2018,2662,6.96438,6.28453,"210274, 334479" +1399,638,Hera and Zeus,2000,4708,6.66773,6.28372,"638, 191963" +1400,174837,Sol: Last Days of a Star,2017,1445,7.53450,6.28359, +1401,125752,Race! Formula 90,2013,1031,8.03587,6.28330,"125752, 349703" +1402,63170,1817,2010,782,8.59233,6.28290,"63170, 219717, 346538" +1403,170604,Renegade,2018,1309,7.66190,6.28266, +1404,38343,Ad Astra,2009,3104,6.86420,6.28260,"38343, 329128" +1405,57925,Havana,2009,3213,6.84326,6.28190, +1406,320718,Hidden Leaders,2022,3380,6.81495,6.28155,"320718, 359527" +1407,39339,Android,2008,3966,6.73515,6.28093, +1408,204184,Risk: Europe,2015,1616,7.39392,6.28020, +1409,1219,Labyrinth,1986,17152,6.38367,6.27892,"437, 1217, 1218, 1219, 8985, 103883, 130600, 130601, 176193, 264968, 274205, 364787, 368941, 416948" +1410,301716,Glasgow,2020,2093,7.13715,6.27880, +1411,6205,Europe Engulfed: WWII European Theatre Block Game,2003,1444,7.52290,6.27879,"6205, 20609" +1412,192860,Oceanos,2016,3497,6.79232,6.27867, +1413,5781,"Edel, Stein & Reich",2003,3200,6.83960,6.27844,"14, 5781, 152567" +1414,368432,The Fox Experiment,2023,1746,7.30305,6.27678, +1415,339214,No Mercy,2021,2795,6.91718,6.27640,"29773, 325382, 339214" +1416,348220,Deep Rock Galactic: The Board Game,2022,947,8.16704,6.27623, +1417,204135,Skyjo,2015,4304,6.69222,6.27620,"204135, 301242, 405756" +1418,253664,Taco Cat Goat Cheese Pizza,2018,6243,6.56264,6.27593,"253664, 313802, 315882, 338678, 341876, 374650, 385414, 392491, 401312, 404829" +1419,280453,Masters of Renaissance: Lorenzo il Magnifico – The Card Game,2019,2098,7.12883,6.27581, +1420,280136,Paranormal Detectives,2019,2549,6.97696,6.27532, +1421,26,Age of Renaissance,1996,2229,7.07752,6.27523, +1422,22192,HeroQuest Advanced Quest,1990,1758,7.29152,6.27482, +1423,99358,Stonewall Jackson's Way II: Battles of Bull Run,2013,949,8.15536,6.27399,"4206, 4211, 4212, 99358, 215565" +1424,349463,"Dungeons, Dice & Danger",2022,2288,7.05327,6.27346, +1425,306709,The Night Cage,2021,2169,7.09554,6.27321, +1426,230267,Dice Settlers,2018,2909,6.88530,6.27262, +1427,300010,Dragomino,2020,2301,7.04703,6.27255, +1428,215840,Exit: The Game – The Forbidden Castle,2017,3396,6.79693,6.27232, +1429,254683,Dodos Riding Dinos,2021,1335,7.60579,6.27194,"254683, 363278, 420975" +1430,218804,Imaginarium,2018,2066,7.13298,6.27153, +1431,193728,Pendragon: The Fall of Roman Britain,2017,1107,7.87795,6.27111, +1432,315695,Veiled Fate,2022,1350,7.58795,6.27082, +1433,102435,Navajo Wars,2013,1077,7.92106,6.27058, +1434,157917,The Lord of the Ice Garden,2014,1319,7.61783,6.27043, +1435,172933,Dragonwood,2015,5118,6.61649,6.26961,"172933, 272993" +1436,1032,B-17: Queen of the Skies,1981,2092,7.11786,6.26943, +1437,227758,Kokoro: Avenue of the Kodama,2017,3511,6.77461,6.26922,"205045, 227758" +1438,193670,Darkest Night: Second Edition,2018,1761,7.27668,6.26915,"128445, 153703, 193670" +1439,302260,Abandon All Artichokes,2020,5381,6.59838,6.26880, +1440,294702,Tenpenny Parks,2022,1497,7.45286,6.26856, +1441,316786,Tabannusi: Builders of Ur,2021,1669,7.33070,6.26851, +1442,4636,Clans,2002,5823,6.57295,6.26851,"4636, 249670" +1443,267813,Adventure Games: The Dungeon,2019,2622,6.94234,6.26729, +1444,361241,Vaalbara,2022,1849,7.22435,6.26720, +1445,278553,Silver,2019,2290,7.03704,6.26571,"278553, 278554, 302926, 318098, 405398, 407716, 412106" +1446,144041,Patchistory,2013,2189,7.07242,6.26561, +1447,361,Hare & Tortoise,1973,5391,6.59249,6.26511,"361, 204599" +1448,312859,Townsfolk Tussle,2022,1263,7.66115,6.26462, +1449,13780,In the Shadow of the Emperor,2004,2973,6.85780,6.26456, +1450,526,Abalone,1987,8068,6.48251,6.26405,"526, 31968, 89951, 266553" +1451,7480,"Sword of Rome: Conquest of Italy, 362-272 BC",2004,1672,7.31731,6.26369, +1452,359402,Ahoy,2022,1720,7.28698,6.26329, +1453,254,Empires in Arms,1983,1320,7.59673,6.26312, +1454,166571,Tramways,2016,1607,7.35853,6.26311, +1455,21920,Leonardo da Vinci,2006,3578,6.75498,6.26304,"21920, 374858" +1456,329716,Eleven: Football Manager Board Game,2022,1631,7.34217,6.26301,"222502, 329716, 372343" +1457,70,Big City,1999,2749,6.90171,6.26215,"70, 261424" +1458,256852,Aliens: Another Glorious Day in the Corps,2020,1522,7.41634,6.26177, +1459,54137,Battle Sheep,2010,5326,6.59134,6.26152, +1460,6351,Gulo Gulo,2003,3111,6.82514,6.26092,"6351, 175088" +1461,297486,Ride the Rails,2020,1984,7.14491,6.26058,"161885, 297486" +1462,183231,Adventure Land,2015,2772,6.89260,6.26008, +1463,163805,Transatlantic,2017,2218,7.04987,6.25973,"163805, 368854" +1464,223215,Flip Ships,2017,2487,6.96419,6.25961,"223215, 342021" +1465,273703,Altar Quest,2020,1272,7.63696,6.25954, +1466,31497,Oregon,2007,3478,6.76103,6.25817, +1467,271754,Spire's End,2019,1300,7.60254,6.25782,"271754, 338069, 410518" +1468,13308,Niagara,2004,8857,6.45423,6.25705, +1469,43868,The Adventurers: The Temple of Chac,2009,4917,6.61022,6.25569, +1470,274450,Last Aurora,2020,1676,7.29464,6.25521,"274450, 429123, 429124" +1471,207572,Holland '44: Operation Market-Garden,2017,863,8.27272,6.25490, +1472,92319,Olympos,2011,2733,6.89187,6.25479, +1473,222542,Otys,2017,2514,6.94594,6.25405, +1474,162009,The U.S. Civil War,2015,847,8.30636,6.25369, +1475,237,Wooden Ships & Iron Men,1974,2128,7.07056,6.25362, +1476,377470,Sail,2023,1526,7.39277,6.25360,"351851, 377470" +1477,27225,Bananagrams,2006,12509,6.39216,6.25325,"27225, 76322, 89575, 164917, 202477, 202478, 284845" +1478,92190,Super Dungeon Explore,2011,3430,6.75931,6.25293,"92190, 156548, 187872, 320499" +1479,251747,Atlantic Chase: The Kriegsmarine Against the Home Fleet 1939-1942,2021,826,8.35438,6.25259, +1480,396989,Evenfall,2023,1169,7.73765,6.25258, +1481,65282,Tanto Cuore,2009,2533,6.93751,6.25235,"65282, 68858, 75448, 115680, 158130, 232981, 373281" +1482,356414,Space Station Phoenix,2022,1520,7.39201,6.25150, +1483,235014,Sorcerer City,2020,1539,7.37565,6.25059, +1484,337787,Summer Camp,2021,1969,7.12841,6.24988, +1485,215471,Photograph,2016,1505,7.39711,6.24903, +1486,269752,Noctiluca,2019,2015,7.10614,6.24885, +1487,338093,Ancient Knowledge,2023,1944,7.13742,6.24884, +1488,8190,The Bridges of Shangri-La,2003,2721,6.88291,6.24842, +1489,131904,Heart of Crown,2011,1243,7.63596,6.24793,"131904, 156372, 413921" +1490,158900,Samurai Spirit,2014,5042,6.58985,6.24775, +1491,255615,GoodCritters,2018,2130,7.05738,6.24766,"186864, 255615" +1492,38765,Ground Floor,2012,2121,7.05807,6.24635,"38765, 255659" +1493,293678,Stellar,2020,1516,7.38003,6.24556, +1494,271519,Ecosystem,2019,2034,7.09060,6.24532,"271519, 359406, 391290" +1495,89910,"Run, Fight, or Die!",2014,2563,6.91426,6.24433,"89910, 257096, 312728" +1496,226634,The Thing: Infection at Outpost 31,2017,1740,7.23028,6.24397,"226634, 403139" +1497,3097,1849: The Game of Sicilian Railways,1998,916,8.11742,6.24394,"3097, 334353" +1498,371947,3 Ring Circus,2023,1649,7.28254,6.24306, +1499,34297,The Climbers,2008,3335,6.75685,6.24295,"34297, 287658" +1500,329500,Unconscious Mind,2024,1035,7.89665,6.24228, +1501,90040,Pergamon,2011,2585,6.90431,6.24209, +1502,146816,Sanssouci,2013,1978,7.10748,6.24207, +1503,129459,Duel of Ages II,2013,2823,6.84842,6.24205,"6050, 129459, 346597" +1504,180852,Tiny Epic Western,2016,4389,6.63176,6.24185,"180852, 316180" +1505,168609,"Artifacts, Inc.",2014,3397,6.74522,6.24161,"168609, 341325" +1506,105134,Risk Legacy,2011,59113,6.26997,6.24105,"181, 1475, 1829, 2557, 4324, 8107, 9294, 10383, 12929, 15045, 22551, 23010, 27961, 37198, 105134, 147523, 147568, 148036, 149296, 150049, 154432, 155704, 159985, 170408, 179719, 183880, 242649, 275280, 291741, 349769, 388331" +1507,300683,Meeple Land,2020,1752,7.21653,6.24095, +1508,259061,Skytear,2020,1052,7.86409,6.24045,"259061, 317191" +1509,303672,Trek 12: Himalaya,2020,2823,6.84542,6.24041,"303672, 344415, 377947" +1510,293207,Eila and Something Shiny,2021,950,8.03603,6.23976, +1511,128442,Relic,2013,3420,6.73839,6.23956, +1512,269968,Exit: The Game – The Haunted Roller Coaster,2019,1901,7.13609,6.23915, +1513,227072,The Chameleon,2017,5430,6.55263,6.23878,"205420, 227072, 306745, 398059" +1514,295905,Cosmic Frog,2020,1646,7.27409,6.23876, +1515,49,Mamma Mia!,1998,6917,6.48486,6.23855,"49, 13530, 41239, 176068" +1516,103185,Walnut Grove,2011,2343,6.96569,6.23855, +1517,342894,Mythic Mischief,2022,1241,7.61095,6.23840,"342894, 347747, 400617" +1518,155695,Age of War,2014,9032,6.42642,6.23794,"28086, 155695, 405749" +1519,180199,"Colonial Twilight: The French-Algerian War, 1954-62",2017,1169,7.69405,6.23792, +1520,202977,Cytosis: A Cell Biology Board Game,2017,2238,6.99786,6.23760, +1521,12692,Gloom,2005,17902,6.33207,6.23709,"12692, 95234, 164110, 172062, 214898, 267506, 316850" +1522,355224,Isle of Trains: All Aboard,2023,2868,6.82959,6.23690,"154906, 355224" +1523,127493,Bolt Action,2012,1135,7.73379,6.23664,"25972, 127493, 135732, 183968, 193699, 215000, 236370, 238805, 267404, 270680, 270906, 304509, 310947, 313829, 319090, 319091, 319092, 319093, 320680, 320681, 347888, 363108" +1524,136280,La Boca,2013,2422,6.93736,6.23619,"136280, 351155" +1525,701,A House Divided: War Between the States 1861-65,1981,2041,7.06786,6.23601,"701, 425575" +1526,58936,Wars of the Roses: Lancaster vs. York,2010,1521,7.34953,6.23493, +1527,241831,Reykholt,2018,3714,6.69116,6.23478, +1528,986,Babel,2000,4160,6.64209,6.23469,"986, 401185" +1529,371433,Terrorscape,2023,900,8.11581,6.23414, +1530,12761,Ys,2004,2610,6.88297,6.23413, +1531,182189,Treasure Hunter,2015,3264,6.75287,6.23407, +1532,220632,Monster Slaughter,2018,1733,7.20901,6.23313, +1533,248949,Skull Tales: Full Sail!,2019,1151,7.70166,6.23287,"166776, 248949" +1534,330592,Phantom Ink,2022,1444,7.40258,6.23247,"330592, 421873" +1535,32125,Felicity: The Cat in the Sack,2007,5059,6.56532,6.23169, +1536,55697,Power Struggle,2009,2314,6.96109,6.23168, +1537,144553,The Builders: Middle Ages,2013,5749,6.52429,6.23098,"144553, 161226" +1538,255708,Trekking the National Parks: Second Edition,2018,2260,6.97661,6.23074,"154428, 255708, 426467" +1539,8129,Sluff Off!,2003,2655,6.86499,6.23039, +1540,267378,Chakra,2019,2682,6.85816,6.23015, +1541,24742,Cold War: CIA vs KGB,2007,5978,6.51148,6.22985,"24742, 160964" +1542,386368,Ezra and Nehemiah,2024,883,8.13618,6.22975, +1543,248005,Ganymede,2018,1861,7.13379,6.22952, +1544,273910,Stars of Akarios,2022,925,8.04660,6.22889, +1545,68820,Enemy Action: Ardennes,2015,723,8.55259,6.22844,"68820, 291155" +1546,352695,Oranienburger Kanal,2023,948,7.99947,6.22800, +1547,258148,Power Rangers: Heroes of the Grid,2019,1040,7.84267,6.22797,"258148, 358094" +1548,206084,Nautilion,2016,1718,7.20463,6.22763, +1549,423,1856: Railroading in Upper Canada from 1856,1995,1343,7.47701,6.22747, +1550,235344,TOKYO METRO,2018,2073,7.03685,6.22741,"203703, 235344, 235360, 236365, 257197, 257198, 266304, 268250, 270146, 290099" +1551,30658,Rise of Empires,2009,2108,7.02106,6.22628, +1552,165948,Mangrovia,2014,1800,7.15699,6.22626, +1553,157413,New Bedford,2016,2044,7.04571,6.22617, +1554,99,Fortress America,1986,3279,6.73664,6.22594,"99, 115293" +1555,320390,Kabuto Sumo,2021,3098,6.76566,6.22547,"320390, 378985, 410680" +1556,398,Wildlife Safari,1994,3590,6.69163,6.22547,"398, 34701, 95345" +1557,284775,Funkoverse Strategy Game,2019,3151,6.75519,6.22467,"284775, 292029, 292030, 292031, 292032, 292033, 292034, 299266, 299268, 299270, 302990, 302991, 303036, 309857, 313292, 319290, 332018, 336632, 337500, 355786, 355787, 369400" +1558,228372,Iberian Gauge,2017,1555,7.29806,6.22401, +1559,42673,Field Commander: Napoleon,2011,1119,7.71585,6.22379,"42673, 393669" +1560,22348,Duplik,2005,2306,6.94778,6.22377, +1561,80771,Dungeon Raiders,2011,2916,6.79097,6.22078,"80771, 257164" +1562,314745,Now or Never,2022,1100,7.72934,6.21982, +1563,220792,The Expanse Board Game,2017,1747,7.16924,6.21937, +1564,323255,Box One,2020,1063,7.77843,6.21873, +1565,325555,Cantaloop: Book 1 – Breaking into Prison,2020,1371,7.42792,6.21869, +1566,205610,A Game of Thrones: Hand of the King,2016,4516,6.58362,6.21725, +1567,6901,Euchre,1848,2734,6.82209,6.21707, +1568,229713,War Room,2019,817,8.23960,6.21652, +1569,294514,5-Minute Mystery,2020,2062,7.01787,6.21641, +1570,262547,Don't Get Got!,2018,2001,7.04011,6.21539,"262547, 268254, 322543, 347200, 359300" +1571,207729,The Edge: Dawnfall,2018,841,8.17621,6.21501, +1572,366994,Bonsai,2023,1639,7.22074,6.21476, +1573,5072,Carrom,,1920,7.07287,6.21447, +1574,25729,World at War: Eisenbach Gap,2007,1060,7.76897,6.21436,"25729, 35035, 209877, 211701, 211702, 211703, 211704, 218671, 218673, 262445" +1575,85325,Kolejka,2011,3851,6.64192,6.21414, +1576,293348,Flesh and Blood,2019,941,7.96381,6.21385,"293348, 348588, 361425, 400486, 431980, 431984, 431988" +1577,43443,Castle Panic,2009,73944,6.23584,6.21358,"1927, 4095, 6607, 12194, 16933, 22948, 25071, 29288, 29678, 30166, 31920, 43443, 86955, 94915, 112869, 112991, 129359, 133437, 144325, 145534, 145535, 146735, 156786, 164031, 166026, 171199, 180816, 181192, 181268, 182561, 184513, 189848, 190530, 190553, 193254, 193286, 193288, 193737, 197414, 198776, 208256, 212610, 213670, 220141, 224134, 229640, 230647, 237991, 239698, 246689, 249824, 256126, 257001, 257700, 258610, 259556, 260205, 260206, 261221, 265047, 267314, 272710, 275273, 278693, 284227, 302244, 303981, 312346, 323002, 325670, 337394, 340042, 356315, 357116, 380110, 401711, 404495, 419687" +1578,281515,Company of Heroes,2021,695,8.58122,6.21339,"281515, 292070, 364356" +1579,355888,Orichalcum,2022,1674,7.19595,6.21318, +1580,28089,Burg Appenzell,2007,2542,6.86028,6.21314, +1581,397385,Pirates of Maracaibo,2023,964,7.91818,6.21271, +1582,5622,Pacific War: The Struggle Against Japan 1941-1945,1985,904,8.03068,6.21252,"5622, 314577" +1583,33154,Wasabi!,2008,5025,6.53872,6.21191,"33154, 392455" +1584,358816,Rear Window,2022,1321,7.45181,6.21072, +1585,174973,Boss Monster 2: The Next Level,2015,18622,6.29855,6.21053,"131835, 174973, 246855, 370231, 386660, 415524" +1586,66849,Safranito,2010,2283,6.92842,6.21051,"66849, 313718, 433927" +1587,352418,Fliptown,2023,1057,7.76100,6.21047, +1588,169318,City of Spies: Estoril 1942,2015,1961,7.04270,6.20885,"169318, 266102, 288378" +1589,370164,Fun Facts,2022,2001,7.02507,6.20841, +1590,111417,The Great Heartland Hauling Co.,2013,2631,6.82930,6.20829, +1591,174078,Holmes: Sherlock & Mycroft,2015,2857,6.77971,6.20804, +1592,157,Eurorails,1990,1845,7.09253,6.20770,"157, 411593" +1593,19622,A Victory Lost: Crisis in Ukraine 1942-1943,2006,1135,7.64233,6.20648,"14821, 19622" +1594,198138,Enchanters,2016,1753,7.13581,6.20634,"198138, 252688, 337796" +1595,175293,Trambahn,2015,2234,6.93524,6.20612, +1596,183685,"Mr. President: The American Presidency, 2001-2020",2023,727,8.44599,6.20596,"183685, 404045" +1597,216428,Seikatsu,2017,2075,6.99056,6.20586, +1598,215312,Stop Thief!,2017,2721,6.80308,6.20522,"1992, 215312" +1599,12750,1860: Railways on the Isle of Wight,2004,967,7.88737,6.20517, +1600,272427,Terramara,2019,1502,7.28810,6.20514, +1601,83667,First Train to Nuremberg,2010,1926,7.04830,6.20450,"39927, 83667" +1602,296167,Boomerang: Australia,2020,2294,6.91276,6.20442,"254213, 296167, 300367, 300369, 382737" +1603,559,Metro,1997,7445,6.42235,6.20417,"559, 58602, 329946, 330621" +1604,319807,Shogun no Katana,2023,992,7.84157,6.20415,"319807, 368000" +1605,157096,Historia,2014,2448,6.86745,6.20403, +1606,120,Hoity Toity,1990,5359,6.50705,6.20401, +1607,28259,Cutthroat Caverns,2007,5270,6.51146,6.20352,"28259, 279348" +1608,376683,In the Footsteps of Darwin,2023,1434,7.33485,6.20337, +1609,38386,A Castle for All Seasons,2008,3116,6.72312,6.20282,"38386, 155246" +1610,335275,Whirling Witchcraft,2021,1658,7.17875,6.20202, +1611,146418,Warhammer: Diskwars,2013,2638,6.81543,6.20177,"397, 769, 4175, 146418" +1612,245931,Neta-Tanka: Deluxe Edition,2019,1734,7.13435,6.20134,"245931, 280812" +1613,373167,20 Strong,2023,1245,7.49971,6.20095, +1614,122842,Exodus: Proxima Centauri,2012,1719,7.14020,6.20036,"122842, 270408" +1615,195372,Krazy Wordz: Nicht 100% jugendfrei,2016,1552,7.24050,6.20003,"195372, 231962" +1616,250881,Dominations: Road to Civilization,2019,1372,7.37611,6.19969, +1617,9441,Ribbit,2004,2842,6.76754,6.19965,"9441, 280979, 415887" +1618,249590,Nevsky: Teutons and Rus in Collision 1240-1242,2019,875,8.04173,6.19898, +1619,134520,Phantom Leader: Deluxe Edition,2013,1000,7.81004,6.19857,"41490, 134520" +1620,256320,Fertility,2018,1755,7.11560,6.19806, +1621,715,Escape from Colditz,1973,3450,6.66457,6.19792, +1622,85005,The Boss,2010,2725,6.78849,6.19779,"85005, 340030" +1623,140,Pit,1903,10302,6.35376,6.19756,"140, 3360, 6644, 9251, 26922, 70455, 119366, 155986, 201147, 254752, 335946, 363727, 391221" +1624,395375,Art Society,2023,1168,7.57443,6.19729, +1625,230383,Memoarrr!,2017,2361,6.87828,6.19714, +1626,1442,Victory in the Pacific,1977,1801,7.08795,6.19621,"1431, 1442, 21369, 31198, 32234" +1627,113289,Snake Oil,2010,3427,6.66458,6.19605,"113289, 156097" +1628,71074,Expedition: Northwest Passage – HMS Terror Edition,2013,2091,6.96360,6.19589, +1629,275802,Carnival Zombie: 2nd Edition,2022,1491,7.27206,6.19571,"140343, 275802, 276001" +1630,84732,Kariba,2010,1985,7.00417,6.19569, +1631,225482,Seas of Strife,2015,1490,7.27268,6.19566, +1632,407297,River Valley Glassworks,2024,1814,7.07921,6.19518,"333055, 407297" +1633,317434,Exit: The Game – Advent Calendar: The Mystery of the Ice Cave,2020,961,7.86255,6.19478, +1634,233868,HATE,2019,1119,7.62626,6.19452, +1635,66587,GOSU,2010,3253,6.68677,6.19437,"66587, 123536, 368119" +1636,103092,Helvetia,2011,2084,6.96257,6.19418, +1637,293959,"Men of Iron Battles Tri-Pack: Men of Iron, Infidel, Blood & Roses",2020,1249,7.47324,6.19312,"11488, 14683, 16020, 62225, 132019, 238919, 293959" +1638,299104,Apex Theropod Deck Building Game: Collected Edition,2020,1255,7.46672,6.19297,"156266, 175707, 299104" +1639,38309,God's Playground,2009,1546,7.22632,6.19271,"38309, 57998, 155025" +1640,1589,Star Fleet Battles,1979,1742,7.10936,6.19243,"1589, 26203, 29663, 37061, 158098" +1641,299963,Picture Perfect,2020,1928,7.02051,6.19225, +1642,247585,Waste Knights: Second Edition,2021,1377,7.35110,6.19194,"174260, 247585" +1643,238656,Tiny Epic Defenders (Second Edition),2018,4481,6.54771,6.19165,"155708, 238656, 316181, 316182" +1644,147537,Malifaux (Second Edition),2013,905,7.95330,6.19128,"52328, 97332, 147537, 187676, 247069, 281657" +1645,268504,Adventure Tactics: Domianne's Tower,2021,998,7.78902,6.19125, +1646,40760,Alea Iacta Est,2009,3381,6.66184,6.19063,"40760, 200924" +1647,238546,The Rise of Queensdale,2018,1279,7.43550,6.19037, +1648,35435,Nefertiti,2008,2005,6.98400,6.19007, +1649,1234,Once Upon a Time: The Storytelling Card Game,1993,9065,6.36474,6.18933, +1650,12477,Bootleggers,2004,3286,6.67304,6.18921, +1651,317311,Switch & Signal,2020,1670,7.14074,6.18901,"160726, 317311" +1652,11057,The Great Battles of Alexander: Deluxe Edition,1995,1032,7.72908,6.18900,"5233, 11057, 176596" +1653,36399,The Napoleonic Wars (Second Edition),2008,1470,7.26988,6.18887,"3409, 36399" +1654,180592,Steam Time,2015,1844,7.05010,6.18864, +1655,230769,Who Goes There?,2018,1378,7.34091,6.18845,"230769, 263178, 318474" +1656,155969,Harbour,2015,5315,6.48670,6.18807, +1657,340,Frank's Zoo,1999,3783,6.60696,6.18765, +1658,330174,Explorers,2021,1660,7.14209,6.18717, +1659,218293,Rise to Nobility,2018,2054,6.95887,6.18715, +1660,276925,Warhammer Age of Sigmar: Warcry Starter Set,2019,788,8.19704,6.18672,"276925, 286861, 322523, 351652, 369146, 398753, 409616, 410392" +1661,91984,Québec,2011,1674,7.13263,6.18655, +1662,146221,Forge War,2015,1649,7.14660,6.18640, +1663,284217,Rush M.D.,2020,1268,7.43507,6.18638, +1664,111105,Agents of SMERSH,2012,1922,7.00970,6.18616,"111105, 315943" +1665,220367,Empyreal: Spells & Steam,2020,1237,7.46554,6.18609, +1666,260407,Soviet Kitchen Unleashed,2018,2179,6.91051,6.18517,"260407, 344254" +1667,257732,Pax Transhumanity,2019,1194,7.50689,6.18448, +1668,279869,Nine Tiles Panic,2019,2337,6.86005,6.18445,"187257, 188018, 202564, 279869, 391084" +1669,730,Breakout: Normandy,1992,1060,7.67280,6.18408, +1670,32412,Palastgeflüster,2007,2627,6.78418,6.18376,"32412, 366997" +1671,127997,Qin,2012,2567,6.79788,6.18359, +1672,212281,Village Attacks,2018,1287,7.40485,6.18216, +1673,300583,Village Green,2020,2095,6.93200,6.18155, +1674,191925,Bandido,2016,6502,6.42248,6.18091,"191925, 299571" +1675,128,Take it Easy!,1983,3477,6.63188,6.18044,"128, 25294, 60126" +1676,193867,1822: The Railways of Great Britain,2016,759,8.24763,6.18023,"193867, 253607, 277538, 360242, 404475" +1677,181345,Dr. Eureka,2015,4140,6.55745,6.17907, +1678,323613,LUNA Capital,2021,1610,7.15054,6.17846, +1679,592,Spades,1938,2569,6.78712,6.17817, +1680,37907,Diamonds Club,2008,1821,7.03690,6.17801, +1681,231696,Bob Ross: Art of Chill Game,2017,2769,6.74251,6.17783, +1682,1662,"Napoléon: The Waterloo Campaign, 1815",1974,1351,7.33388,6.17734, +1683,265256,PUSH,2018,2354,6.84041,6.17699, +1684,302520,Hues and Cues,2020,3904,6.57672,6.17681, +1685,287589,Red Outpost,2019,2139,6.90397,6.17549, +1686,393325,Captain Flip,2024,1931,6.98080,6.17474, +1687,270847,Set & Match,2017,1304,7.36808,6.17464,"270847, 400240" +1688,248918,Court of the Dead: Mourners Call,2019,1076,7.62051,6.17449, +1689,303051,Godzilla: Tokyo Clash,2020,1512,7.20200,6.17388, +1690,322616,Comic Hunters,2020,921,7.86162,6.17385, +1691,145588,Citrus,2013,1698,7.08849,6.17351, +1692,259374,Belratti,2018,1677,7.09994,6.17350, +1693,203430,Fuji Flush,2016,3512,6.61569,6.17339,"195330, 203430" +1694,216070,Hunt for the Ring,2017,1647,7.11615,6.17323, +1695,37387,Steel Driver,2008,1969,6.96170,6.17311, +1696,242529,Medium,2019,2173,6.88757,6.17306, +1697,144529,Theseus: The Dark Orbit,2013,1869,7.00371,6.17303, +1698,187273,The Dresden Files Cooperative Card Game,2017,1887,6.99498,6.17267, +1699,224272,Hellapagos,2017,3412,6.62619,6.17192,"224272, 347802" +1700,226605,Fire Tower,2019,1620,7.12735,6.17137, +1701,251890,Gunkimono,2018,2019,6.93792,6.17113,"30356, 251890" +1702,37358,Founding Fathers,2010,1972,6.95525,6.17069, +1703,252877,Wreck Raiders,2019,1315,7.34697,6.17060,"252877, 278398" +1704,243430,Dealt!,2018,1782,7.03743,6.17005, +1705,8172,Coyote,2003,3101,6.66846,6.17003,"8172, 31545, 317981" +1706,38992,Royal Palace,2008,2243,6.85874,6.16984, +1707,368789,AFU: Armed Forces of Ukraine,2022,543,9.01225,6.16923, +1708,176558,Mafia de Cuba,2015,4450,6.51512,6.16855,"176558, 376791" +1709,798,Ace of Aces: Handy Rotary Series,1980,1693,7.07934,6.16849,"798, 5736, 7103, 7104, 7118" +1710,1270,Star Wars Customizable Card Game,1995,2611,6.75907,6.16848,"1270, 12488" +1711,3720,Subbuteo,1947,1884,6.98670,6.16836,"3720, 119369, 330176" +1712,63759,Seeland,2010,2104,6.90063,6.16812, +1713,62871,Zombie Dice,2010,20220,6.24429,6.16807,"62871, 102940, 125368, 155119, 204175, 224035" +1714,143404,Castellion,2015,2160,6.88025,6.16744, +1715,7858,Ardennes '44: The Battle of the Bulge,2003,843,7.99331,6.16730, +1716,75476,Inca Empire,2010,1805,7.01801,6.16638,"11096, 75476, 310692" +1717,63543,Horus Heresy,2010,1768,7.03569,6.16632, +1718,277597,Fast Sloths,2019,1645,7.09999,6.16602, +1719,169416,Pathfinder Adventure Card Game: Wrath of the Righteous – Base Set,2015,1211,7.43400,6.16578, +1720,330950,Age of Galaxy,2022,1031,7.65506,6.16567, +1721,253684,Spring Meadow,2018,1759,7.03783,6.16532, +1722,903,Hamster Roll,2000,2381,6.80951,6.16512, +1723,198525,Lotus,2016,3049,6.66796,6.16491, +1724,153064,Good Cop Bad Cop,2014,4013,6.54616,6.16430,"153064, 195237, 228483, 287821, 413234" +1725,249,Lifeboats,1993,3747,6.57314,6.16422,"249, 412230" +1726,28,Illuminati,1987,7316,6.37259,6.16341,"28, 859, 316093" +1727,113636,Edo,2012,1759,7.03161,6.16263, +1728,1295,Pente,1977,3140,6.64779,6.16169, +1729,148601,1944: Race to the Rhine,2014,1495,7.18210,6.16146,"148601, 190572, 359443" +1730,216497,District Noir,2016,1858,6.98230,6.16129, +1731,227466,Break the Code,2017,1687,7.06477,6.16097,"26103, 81819, 227466, 251679, 329125, 427039, 427129" +1732,36648,Pyramid of Pengqueen,2008,2186,6.85787,6.16068,"36648, 264429" +1733,180901,Joraku,2015,1519,7.16375,6.16058, +1734,343526,G.I. JOE Deck-Building Game,2021,1033,7.63540,6.16048, +1735,156496,March of the Ants,2015,1572,7.12940,6.16037,"156496, 416079" +1736,360206,Discordia,2022,1181,7.44908,6.15998, +1737,209660,Dungeon Alliance,2018,1141,7.49307,6.15958, +1738,291847,Mantis Falls,2021,1442,7.21379,6.15922, +1739,118174,Compounded,2013,2854,6.69205,6.15922,"118174, 365084" +1740,118695,Riff Raff,2012,1996,6.92058,6.15898, +1741,264476,Rangers of Shadow Deep,2018,643,8.52088,6.15850,"264476, 295604" +1742,84,Rommel in the Desert,1982,1094,7.54399,6.15753, +1743,351538,Bamboo,2023,1400,7.23845,6.15659, +1744,209324,The World of SMOG: Rise of Moloch,2018,981,7.69942,6.15626, +1745,154875,"Silent Victory: U.S. Submarines in the Pacific, 1941-45",2016,834,7.97140,6.15625, +1746,198190,Kepler-3042,2016,1349,7.27730,6.15583, +1747,136955,Hands in the Sea,2016,914,7.80973,6.15546, +1748,75358,SNCF: France & Germany,2010,3119,6.63969,6.15515, +1749,289081,The Grand Carnival,2020,1102,7.52577,6.15489, +1750,59,Giganten,1999,2583,6.73713,6.15350,"59, 93724" +1751,237211,Valhalla,2018,1506,7.15104,6.15214, +1752,66171,Dragonheart,2010,3972,6.53064,6.15199,"66171, 288828" +1753,348554,Autobahn,2022,1583,7.10091,6.15151,"348554, 362800" +1754,322588,Origins: First Builders,2021,1672,7.04984,6.15129, +1755,313262,Shamans,2021,1946,6.92251,6.15092, +1756,204286,Big Trouble in Little China: The Game,2018,995,7.65646,6.14985,"204286, 257089" +1757,442,Um Reifenbreite,1979,2422,6.76878,6.14985, +1758,4001,Space Marine,1989,1448,7.18435,6.14955,"4001, 4091, 4426, 5316, 6516, 10431, 27359, 259134, 287899, 314837, 338745, 350758, 408598" +1759,193322,Master of Orion: The Board Game,2016,1907,6.93472,6.14930, +1760,366752,The Great Split,2022,1655,7.05415,6.14923, +1761,168681,Beyond Baker Street,2016,2272,6.80586,6.14797, +1762,337,Circus Flohcati,1998,3143,6.62231,6.14726,"337, 18791" +1763,29972,El Capitán,2007,2382,6.77367,6.14705,"267, 29972" +1764,105593,Cheating Moth,2011,5436,6.42159,6.14702,"105593, 235944" +1765,19526,Elasund: The First City,2005,3368,6.58992,6.14687, +1766,8730,Flying Colors,2003,1005,7.63107,6.14670,"8730, 36597, 133518, 202989" +1767,252556,Bosk,2019,2127,6.84751,6.14643, +1768,2165,Pokémon Trading Card Game,1996,5412,6.42167,6.14623,"2165, 310953, 364609, 369241, 410240, 424555, 426843" +1769,209671,Zona: The Secret of Chernobyl,2019,1263,7.32622,6.14612, +1770,39217,Fighting Formations: Grossdeutschland Motorized Infantry Division,2011,1019,7.60700,6.14557,"39217, 368552" +1771,393672,Gloomhaven: Buttons & Bugs,2024,1043,7.57306,6.14547,"340909, 393672" +1772,137330,Cube Quest,2013,2233,6.81060,6.14465, +1773,925,Werewolf,1986,4803,6.45349,6.14413, +1774,88408,Nightfall,2011,4201,6.49773,6.14407,"88408, 96152, 113927, 143680, 403547" +1775,283934,Exit: The Game – Theft on the Mississippi,2019,1569,7.09092,6.14404, +1776,3353,WW2: Barbarossa to Berlin,2002,1315,7.27367,6.14398, +1777,187653,Covert,2016,1637,7.05087,6.14374, +1778,223049,Custom Heroes,2017,2265,6.79928,6.14370,"223049, 428635" +1779,22245,Royal Visit,2006,2654,6.70282,6.14351, +1780,257283,Tiny Epic Mechs,2019,2580,6.71858,6.14335,"257283, 313163" +1781,46255,Campaign Manager 2008,2009,3237,6.60124,6.14301,"46255, 200834" +1782,330036,Great Plains,2021,1526,7.11454,6.14282, +1783,34707,The Hanging Gardens,2008,2337,6.77675,6.14253, +1784,209001,Monster Lands,2018,1441,7.17038,6.14225,"209001, 365457" +1785,277458,Kluster,2018,2963,6.64198,6.14209,"277458, 291833, 408383" +1786,36708,Leader 1,2008,1570,7.08255,6.14089,"36708, 41474, 42493, 83040" +1787,258074,Volfyirion,2019,1329,7.25328,6.14088,"258074, 330973" +1788,315727,Last Light,2023,1168,7.40585,6.14063, +1789,342372,The Elder Scrolls V: Skyrim – The Adventure Game,2022,964,7.67350,6.14060, +1790,102237,Drako: Dragon & Dwarves,2011,2781,6.67100,6.14007,"102237, 284982" +1791,196354,Era of Tribes,2019,817,7.94672,6.13992, +1792,199904,Pericles: The Peloponnesian Wars,2017,875,7.82640,6.13977, +1793,335427,Wild: Serengeti,2022,1684,7.01609,6.13975, +1794,330084,Unlock!: Legendary Adventures,2021,1067,7.52262,6.13968, +1795,7,Cathedral,1979,3671,6.54147,6.13957, +1796,137031,Ancient Terrible Things,2014,2405,6.75285,6.13948,"137031, 202450, 223449, 343665" +1797,76150,Revolver,2011,1920,6.90742,6.13931,"69851, 76150, 128733" +1798,308989,Bristol 1350,2021,1942,6.89768,6.13884, +1799,36522,2 de Mayo,2008,2003,6.87400,6.13857, +1800,68182,Isla Dorada,2010,2687,6.68493,6.13758,"1305, 68182" +1801,18460,Lock 'n Load: Band of Heroes,2005,962,7.66604,6.13746,"18460, 28284, 99573, 132766, 150005, 184559, 184563, 193024" +1802,187680,Quests of Valeria,2017,1951,6.89087,6.13732, +1803,206150,1754: Conquest – The French and Indian War,2017,925,7.72567,6.13703, +1804,134157,Guilds of London,2016,2339,6.76487,6.13682, +1805,280032,Fossilis,2020,1651,7.02647,6.13677,"280032, 327242" +1806,358085,Village Rails,2022,1263,7.29914,6.13654, +1807,197831,Dark Souls: The Board Game,2017,4427,6.46782,6.13628,"197831, 369445, 369449, 407535" +1808,292126,Excavation Earth,2021,1416,7.17123,6.13567, +1809,253635,Ragusa,2019,1821,6.94033,6.13541, +1810,166286,Bottom of the 9th,2015,2540,6.71240,6.13537, +1811,65515,Nuns on the Run,2010,4180,6.48465,6.13449, +1812,144826,Zombie 15',2014,2240,6.78758,6.13433, +1813,130,Iron Dragon,1994,1679,7.00458,6.13380, +1814,274093,Quirky Circuits,2019,1490,7.11352,6.13321,"274093, 356133" +1815,2639,Panzer Leader: Game of Tactical Warfare on the Western Front,1974,2544,6.70726,6.13315,"2238, 2639, 162734" +1816,214032,Founders of Gloomhaven,2018,3181,6.59106,6.13243, +1817,143401,Yunnan,2013,1460,7.13061,6.13202, +1818,231038,Dreamscape,2019,1234,7.31318,6.13191, +1819,222219,Kero,2018,1537,7.07909,6.13143, +1820,317504,Mandala Stones,2021,1910,6.89351,6.13119, +1821,223,Expeditions: Around the World,1996,2429,6.73055,6.13115,"156, 223, 7289, 23046, 136558" +1822,352454,Trailblazers,2023,1479,7.11516,6.13100,"352454, 370598" +1823,144239,Impulse,2013,2164,6.80300,6.13069, +1824,153318,Dimension,2014,2048,6.84045,6.13039, +1825,310789,Catapult Feud,2021,1582,7.04901,6.13015,"310789, 422579" +1826,304668,Robot Quest Arena,2023,901,7.74323,6.13008, +1827,15839,Bonaparte at Marengo,2003,1035,7.53403,6.12997,"15839, 359613" +1828,23817,1861: The Railways of the Russian Empire,2006,1022,7.55167,6.12990,"23817, 227143, 292187" +1829,395623,Harvest,2024,1388,7.17659,6.12983,"200058, 395623" +1830,367517,La Famiglia: The Great Mafia War,2023,853,7.83276,6.12974, +1831,276086,Hamlet: The Village Building Game,2022,2019,6.84643,6.12843, +1832,32666,Wealth of Nations,2008,1832,6.91879,6.12802, +1833,23679,"Warriors of God: The Wars of England & France, 1135-1453",2008,1137,7.40215,6.12801,"15086, 23679" +1834,224904,Sunset Over Water,2018,1730,6.96474,6.12773, +1835,31790,"Crusade and Revolution: The Spanish Civil War, 1936-1939",2013,584,8.60605,6.12749, +1836,204574,The Flow of History,2016,2347,6.74237,6.12655, +1837,91620,Pastiche,2011,2138,6.80224,6.12639, +1838,192802,Days of Ire: Budapest 1956,2016,1260,7.27257,6.12617,"192802, 236125" +1839,329226,Circadians: Chaos Order,2022,792,7.94996,6.12617, +1840,98315,The Adventurers: The Pyramid of Horus,2011,2141,6.79927,6.12542, +1841,118063,Android: Infiltration,2012,3789,6.50460,6.12444, +1842,71906,Castaways,2010,1768,6.93881,6.12428, +1843,3570,Chicken Cha Cha Cha,1997,3343,6.55430,6.12383,"3570, 33212, 148530" +1844,266722,Rumble Nation,2017,1095,7.43645,6.12332, +1845,247342,Village Pillage,2019,1186,7.33511,6.12312,"247342, 345792" +1846,141736,Sail to India,2013,2687,6.65796,6.12306, +1847,2381,Scattergories,1988,10743,6.25596,6.12233,"2381, 40115, 64219" +1848,987,Kingmaker,1974,3156,6.57694,6.12218,"987, 371431" +1849,40393,FITS,2009,3502,6.53140,6.12181,"40393, 67910" +1850,21954,Perikles,2006,1917,6.86944,6.12153, +1851,175621,Epic Card Game,2015,5053,6.40508,6.12140,"39998, 175621, 287608, 287611" +1852,27848,Age of Conan: The Strategy Board Game,2009,2703,6.65167,6.12137, +1853,295948,Aqualin,2020,1729,6.95038,6.12137, +1854,207207,Glüx,2016,1505,7.07256,6.12089, +1855,16991,Khet: The Laser Game,2005,3598,6.51886,6.12083,"16991, 91034" +1856,1111,Taboo,1989,13951,6.22288,6.12031,"1111, 1973, 8998, 11573, 93446, 97747, 177799, 204543, 220546, 223222, 232683, 262442, 286408, 297783, 344844, 362381, 404715, 426461" +1857,40990,Word on the Street,2009,2837,6.62409,6.11998,"40990, 63778" +1858,13551,Oltre Mare,2004,2782,6.63399,6.11994, +1859,327056,Unlock! Kids: Detective Stories,2021,895,7.71688,6.11969, +1860,12005,Around the World in 80 Days,2004,3345,6.54684,6.11957, +1861,4209,Monza,2000,2738,6.64014,6.11880,"4209, 99166, 321757" +1862,41429,Band of Brothers: Screaming Eagles,2011,893,7.71469,6.11808,"41429, 129122, 207587, 424552" +1863,294693,Nokosu Dice,2016,1003,7.53883,6.11785, +1864,218920,Valletta,2017,1683,6.96144,6.11647, +1865,25224,Hermagor,2006,1837,6.89044,6.11640, +1866,204493,Sakura Arms,2016,896,7.70222,6.11608,"204493, 304042, 320855, 320858, 320859, 423617, 423621" +1867,36811,The Princes of Machu Picchu,2008,1722,6.93982,6.11541, +1868,86246,Drum Roll,2011,1885,6.86747,6.11494, +1869,634,River Dragons,2000,3696,6.49858,6.11484, +1870,300751,Mini Express,2021,1183,7.31288,6.11455, +1871,206327,The King's Guild,2018,1516,7.04954,6.11450, +1872,164698,Fresh Fish,2014,1802,6.90011,6.11405,"1017, 164698" +1873,17025,Poison,2005,4187,6.45195,6.11379, +1874,324413,Doomlings,2022,1586,7.00635,6.11372,"324413, 361815, 368754" +1875,424,1870: Railroading Across the Trans Mississippi from 1870,1992,1071,7.43491,6.11350, +1876,263895,City of the Great Machine,2023,852,7.77158,6.11270, +1877,377061,Coffee Rush,2023,1402,7.11935,6.11215, +1878,256804,Exploding Kittens: Party Pack,2017,41960,6.14495,6.11134,"172225, 172242, 246398, 256804, 341164, 343282, 356226, 362202, 383201, 395906, 430593" +1879,2569,Pick Picknic,2001,3025,6.57742,6.11127,"841, 2569" +1880,347805,Green Team Wins,2022,1479,7.06405,6.11103, +1881,366683,Raising Robots,2023,865,7.74029,6.11097,"366683, 410226" +1882,285036,Shadow Kingdoms of Valeria,2021,899,7.67674,6.11042,"285036, 340913" +1883,124052,Cinque Terre,2013,1487,7.05608,6.10991, +1884,334011,A Gentle Rain,2021,928,7.62589,6.10988, +1885,36946,Red November,2008,8167,6.28168,6.10952, +1886,466,Inkognito,1988,3898,6.46974,6.10921,"353, 466" +1887,9341,Lost Valley,2004,2352,6.70668,6.10919,"9341, 130605" +1888,160903,Target for Today,2017,882,7.70228,6.10914,"28907, 160903, 300591" +1889,313807,Oros,2023,1164,7.31613,6.10908, +1890,112092,Shadowrift,2012,1308,7.18164,6.10850, +1891,341496,Caesar's Empire,2022,1314,7.17661,6.10845,"289494, 341496" +1892,235922,King of the Dice,2017,1860,6.86092,6.10750,"235922, 352810, 400926" +1893,209696,Star Saga,2017,868,7.72100,6.10723,"142063, 197333, 209696, 350793" +1894,166317,Time of Soccer,2014,941,7.59522,6.10706, +1895,225729,Arkham Noir: Case #1 – The Witch Cult Murders,2017,2059,6.78702,6.10698,"225729, 231573, 231574, 257839" +1896,1194,Speed Circuit,1971,1465,7.06253,6.10690,"1194, 156175" +1897,267058,300: Earth & Water,2018,1062,7.42181,6.10584, +1898,62220,Urban Sprawl,2011,2117,6.76580,6.10575, +1899,382,Heimlich & Co.,1984,3936,6.46017,6.10537, +1900,23107,Drakon (Third Edition),2006,4330,6.42788,6.10537,"23107, 59061, 61269, 171630" +1901,371077,Arborea,2023,966,7.55081,6.10532, +1902,235817,Space Explorers,2017,1673,6.93943,6.10510, +1903,15954,Conquest of Paradise,2007,1659,6.94497,6.10447, +1904,2596,Villa Paletti,2001,4407,6.42019,6.10402,"2596, 3751" +1905,234248,Voodoo Prince,2017,1479,7.04557,6.10381,"234248, 302270" +1906,2603,The Lord of the Rings Trading Card Game,2001,1571,6.98946,6.10342, +1907,41749,American Rails,2009,1080,7.39027,6.10278, +1908,54307,Chronicle,2009,1977,6.80580,6.10264, +1909,317231,Monasterium,2020,1094,7.37306,6.10255, +1910,17240,That's Life!,2005,3850,6.46251,6.10188,"17240, 40491, 167185, 257273" +1911,126996,King's Forge,2014,1691,6.92255,6.10171, +1912,316622,Gods Love Dinosaurs,2020,1567,6.98611,6.10115, +1913,191301,The Walking Dead: All Out War,2016,838,7.75565,6.10107,"191301, 265840, 285783" +1914,362020,Cosmoctopus,2023,1213,7.24342,6.10082, +1915,392023,Mycelia,2023,1086,7.37419,6.09991, +1916,104581,Panic on Wall Street!,2011,1566,6.98349,6.09986, +1917,30539,Get Bit!,2007,8540,6.26140,6.09947,"30539, 35505, 150925, 159517, 219621, 219622" +1918,40769,Valdora,2009,2007,6.78814,6.09931, +1919,31624,League of Six,2007,1982,6.79482,6.09838,"31624, 419260" +1920,324914,Inside Job,2022,1404,7.08152,6.09838, +1921,304985,Dark Ages: Holy Roman Empire,2021,837,7.74752,6.09838,"295535, 304985" +1922,132,Caesar & Cleopatra,1997,4679,6.39191,6.09739, +1923,150293,The Ravens of Thri Sahashri,2013,1442,7.05248,6.09717,"150293, 274445" +1924,189052,Sea of Clouds,2016,2545,6.63812,6.09700, +1925,255507,Orbis,2018,2685,6.60924,6.09664, +1926,296043,Four Gardens,2020,1573,6.97149,6.09659, +1927,211364,Seize the Bean,2021,954,7.53663,6.09585, +1928,322785,Suspects: Claire Harper Takes the Stage,2021,1167,7.27321,6.09570,"322785, 331390, 369552, 375706, 375707, 387202" +1929,114031,Copycat,2012,2275,6.69968,6.09568, +1930,234190,Unstable Unicorns,2017,10126,6.22974,6.09435,"234190, 260785, 260786, 268936, 287952, 311086, 358153, 422805" +1931,173105,The Great War,2015,833,7.74021,6.09434, +1932,369548,After Us,2023,1898,6.81644,6.09423, +1933,67888,Lords of Scotland,2010,2086,6.75121,6.09416, +1934,9027,Oasis,2004,2249,6.70334,6.09404, +1935,15290,R-Eco,2003,2748,6.59250,6.09393,"15290, 31822, 72373, 387144, 387148, 399013" +1936,250442,Crypt,2018,3005,6.54850,6.09316, +1937,15510,Tower of Babel,2005,2496,6.64126,6.09311,"15510, 204323" +1938,262540,Freshwater Fly,2019,1249,7.18601,6.09223, +1939,247417,Solomon Kane,2021,796,7.80840,6.09221, +1940,241987,Dual Powers: Revolution 1917,2018,1032,7.41558,6.09210, +1941,253185,Chai,2019,2056,6.75597,6.09189,"253185, 328636" +1942,770,Loot,1992,6827,6.29185,6.09186, +1943,191972,Dynasties: Heirate & Herrsche,2016,1244,7.18922,6.09181, +1944,233896,Resident Evil 2: The Board Game,2019,1043,7.39942,6.09141, +1945,190400,Aventuria: Adventure Card Game,2016,949,7.52880,6.09136,"190400, 426322" +1946,119391,Il Vecchio,2012,1703,6.89166,6.09105, +1947,205867,Bohnanza: The Duel,2016,1753,6.86747,6.09047, +1948,225818,Mini Rails,2017,1689,6.89593,6.09005, +1949,214293,Mountains of Madness,2017,3363,6.49467,6.08998, +1950,92044,Dungeons & Dragons: Conquest of Nerath Board Game,2011,1640,6.91870,6.08951, +1951,308621,Twisted Fables,2021,784,7.82372,6.08943,"308621, 321720" +1952,322589,Zapotec,2022,1222,7.20144,6.08920, +1953,153623,Limes,2014,2492,6.63379,6.08878,"38657, 153623, 170296" +1954,277699,A Fistful of Meeples,2019,1350,7.09428,6.08857, +1955,228411,Iron Curtain,2017,1377,7.07437,6.08850, +1956,35761,Sylla,2008,2168,6.71297,6.08767, +1957,160081,Dungeon Saga: Dwarf King's Quest,2015,1241,7.17948,6.08747,"93895, 100798, 160081" +1958,38531,Powerboats,2008,2139,6.72062,6.08728,"38531, 222821" +1959,350948,Familiar Tales,2022,808,7.76240,6.08688, +1960,73316,Magnum Sal,2010,1521,6.97682,6.08683, +1961,2961,Confusion: Espionage and Deception in the Cold War,1992,1405,7.05018,6.08678, +1962,12350,Battlestations,2004,1168,7.24499,6.08655,"12350, 196712, 274085" +1963,118536,Police Precinct,2013,1781,6.84575,6.08633,"118536, 276804" +1964,66214,Samarkand: Routes to Riches,2010,1813,6.83175,6.08607,"38637, 66214, 276202" +1965,189453,Victorian Masterminds,2019,1785,6.84327,6.08599, +1966,443,Code 777,1985,2157,6.71261,6.08596,"443, 616, 1268, 320813" +1967,28805,The Lord of the Rings: Strategy Battle Game,2005,1068,7.35145,6.08592,"3563, 20044, 28805, 98261, 134009, 134420, 153327, 259435, 260234, 375439" +1968,285253,Fiesta de los Muertos,2019,1417,7.03961,6.08586,"285253, 350670" +1969,306321,Night of the Ninja,2021,1252,7.16506,6.08578, +1970,11229,Star Wars Miniatures,2004,1665,6.89652,6.08543,"11229, 222194" +1971,381278,Dracula vs Van Helsing,2023,1085,7.32980,6.08534, +1972,231567,Now Boarding,2018,1459,7.00724,6.08396, +1973,218311,Deckscape: Test Time,2017,2767,6.57020,6.08364, +1974,275870,TEAM3 GREEN,2019,1717,6.86706,6.08334,"247694, 275870" +1975,270143,Kōhaku,2020,884,7.60448,6.08304, +1976,234396,Muse,2017,2560,6.60701,6.08230,"234396, 252776, 327313" +1977,282435,1882: Assiniboia,2019,686,8.03829,6.08182, +1978,164812,Roll For It! Deluxe Edition,2014,5406,6.32970,6.08155,"129090, 157838, 164812" +1979,125,Money!,1999,2972,6.53282,6.08149, +1980,508,Blue Max,1983,1273,7.13409,6.08109,"508, 10501, 158982" +1981,159692,Comanchería: The Rise and Fall of the Comanche Empire,2016,707,7.97684,6.08104, +1982,303731,Primal: The Awakening,2024,597,8.32601,6.08101, +1983,41302,First Orchard,2009,2801,6.55932,6.08091,"5770, 41302, 41305, 59309, 209223" +1984,85036,20th Century,2010,1820,6.81692,6.08079, +1985,220588,"Gandhi: The Decolonization of British India, 1917 – 1947",2019,712,7.96182,6.08064, +1986,159581,Maskmen,2014,1636,6.89706,6.07969, +1987,78733,Key Market,2010,1043,7.36017,6.07919,"78733, 275067" +1988,8481,Crusader Rex,2005,1262,7.13709,6.07891, +1989,151247,Greed,2014,2393,6.63609,6.07847, +1990,25277,Richard III: The Wars of the Roses,2009,1005,7.40459,6.07797, +1991,12346,Spooky Stairs,2003,2812,6.55078,6.07724,"12346, 19996, 80296, 298375, 316975" +1992,71882,Conquest of Planet Earth: The Space Alien Game,2010,1732,6.84581,6.07714, +1993,949,Twixt,1962,2577,6.59266,6.07656, +1994,355326,Heroes of Might & Magic III: The Board Game,2024,848,7.64232,6.07585,"355326, 430979" +1995,295944,Exit: The Game – The Enchanted Forest,2020,1429,7.00498,6.07568, +1996,3085,Gang of Four,1990,2480,6.61086,6.07553, +1997,181293,Alien Artifacts,2017,2861,6.53913,6.07528, +1998,340897,Resurgence,2022,808,7.71763,6.07527, +1999,117,Ta Yü,1999,1558,6.92681,6.07519, +2000,123219,OddVille,2012,1999,6.73868,6.07507, +2001,2266,Gobblet,2000,2826,6.54256,6.07401,"2266, 13230" +2002,416851,Castle Combo,2024,996,7.40229,6.07366, +2003,321108,Riverside,2021,1265,7.11929,6.07350, +2004,25261,Tannhäuser,2007,3273,6.47761,6.07345, +2005,217776,Import / Export,2017,1161,7.21055,6.07269,"217776, 245952, 286439" +2006,129731,DreadBall: The Futuristic Sports Game,2012,986,7.41107,6.07226,"129731, 155411, 224141" +2007,204801,Kneipenquiz: Das Original,2016,1012,7.37657,6.07222,"204801, 300033, 344290" +2008,43152,Assyria,2009,1791,6.80910,6.07216,"43152, 432067" +2009,162823,El Gaucho,2014,1838,6.78983,6.07197, +2010,267401,Lawyer Up,2021,1610,6.89114,6.07183,"267401, 361333, 366888" +2011,237860,The Shores of Tripoli,2020,886,7.56048,6.07178, +2012,386937,Lacuna,2023,904,7.52904,6.07128, +2013,250780,Sherlock: Last Call,2018,2191,6.67153,6.07069,"247436, 250779, 250780, 282673" +2014,1334,Entdecker: Exploring New Horizons,2001,4149,6.38776,6.07054,"200, 1334, 14017, 31410, 35293" +2015,19643,World of Warcraft Trading Card Game,2006,2008,6.72596,6.07053,"19643, 241311" +2016,15600,Sardegna,2005,1508,6.94319,6.07050, +2017,403441,Windmill Valley,2024,794,7.72713,6.07029, +2018,253506,Versailles 1919,2020,922,7.49692,6.07023, +2019,181495,Alone,2019,923,7.49336,6.06966, +2020,35488,The Name of the Rose,2008,1708,6.83703,6.06881, +2021,230200,Overbooked,2018,1430,6.98618,6.06873, +2022,217,A la carte,1989,3348,6.46045,6.06865, +2023,418059,SETI: Search for Extraterrestrial Intelligence,2024,623,8.17397,6.06860, +2024,256,Mississippi Queen,1997,4641,6.35082,6.06833,"256, 260927" +2025,226519,Exit: The Game – The House of Riddles,2017,1645,6.86530,6.06833, +2026,4491,Cave Troll,2002,3884,6.40545,6.06806, +2027,9364,Doppelkopf,1895,890,7.54018,6.06799, +2028,10997,Boomtown,2004,2831,6.53052,6.06783,"10997, 297661" +2029,39206,Tac Tac Jack,2008,4283,6.37320,6.06753,"39206, 123228, 304665, 368635" +2030,272409,Tiny Epic Tactics,2019,1846,6.77645,6.06741,"272409, 285998" +2031,239840,Micropolis,2018,1812,6.78942,6.06726, +2032,10550,Big Boggle,1979,1625,6.87239,6.06720, +2033,191612,Skies Above the Reich,2018,623,8.16506,6.06671,"191612, 259394" +2034,36367,Dust Tactics,2010,1152,7.19916,6.06593,"36367, 101786, 160960, 160961, 160962, 161126, 203800, 234116, 236925" +2035,85769,Panzer: The Game of Small Unit Actions and Combined Arms Operations on the Eastern Front 1943-45,2012,777,7.74430,6.06548,"4288, 4289, 4291, 85769, 341306" +2036,168274,Mistfall,2015,2091,6.68851,6.06510,"149374, 168274, 181209, 193953, 349333, 351487" +2037,243358,Space Park,2018,1168,7.18096,6.06503, +2038,1293,Boggle,1972,8488,6.21834,6.06483,"1293, 354127" +2039,257759,The River,2018,2439,6.59861,6.06461, +2040,248900,Ceylon,2018,1431,6.97432,6.06444, +2041,198609,Fate of the Elder Gods,2017,1119,7.22774,6.06435, +2042,313,Big Boss,1994,1390,6.99916,6.06369,"313, 45319, 247785" +2043,128898,New Amsterdam,2012,1343,7.03134,6.06348, +2044,29285,Case Blue,2007,666,8.01415,6.06325,"2994, 6203, 13532, 29285" +2045,296,Medieval Merchant,1998,1766,6.79880,6.06317,"296, 245645" +2046,343362,Oak,2022,1178,7.16285,6.06211, +2047,274037,Solar Storm,2020,1323,7.04148,6.06185,"274037, 314019" +2048,140535,Koryŏ,2013,2402,6.60124,6.06175,"140535, 161943, 218610, 280897" +2049,341974,Power Plants,2022,1090,7.25037,6.06168,"341974, 378877" +2050,265683,Second Chance,2019,2162,6.66050,6.06145, +2051,5620,Vietnam 1965-1975,1984,837,7.60666,6.06087,"5620, 332402" +2052,65907,Mystery Express,2010,2633,6.55174,6.06060, +2053,312786,Poetry for Neanderthals,2020,2212,6.64503,6.06050,"312786, 363550, 394554, 429453" +2054,111148,Würfel Bohnanza,2012,2309,6.61949,6.06001,"111148, 368093" +2055,228602,Valor & Villainy: Minions of Mordak,2020,810,7.65315,6.05957,"228602, 325889" +2056,154182,Helios,2014,1940,6.72409,6.05918, +2057,1621,Mutant Chronicles: Siege of the Citadel,1993,1284,7.06231,6.05865,"1621, 187056" +2058,156138,Happy Pigs,2013,1817,6.76689,6.05821, +2059,361850,Nimalia,2023,1229,7.10394,6.05751, +2060,262208,Dungeon Drop,2020,2036,6.68890,6.05738, +2061,216439,Trash Pandas,2017,2711,6.53120,6.05713, +2062,304847,Hidden Games Crime Scene: The New Haven Case,2019,620,8.12644,6.05638, +2063,31483,Constantinopolis,2010,1592,6.86095,6.05572, +2064,360896,Tiny Epic Vikings,2023,976,7.36913,6.05571,"360896, 363893" +2065,381249,Rebel Princess,2023,876,7.51639,6.05497,"381249, 418556, 420017" +2066,283387,Rocketmen,2021,1778,6.77437,6.05470, +2067,144270,Relic Runners,2013,2408,6.58606,6.05469, +2068,162,The Awful Green Things From Outer Space,1979,2663,6.53454,6.05434, +2069,216403,Element,2017,1219,7.10069,6.05342,"39530, 216403, 280475, 297612" +2070,385680,Path of Civilization,2023,1089,7.22140,6.05204, +2071,303954,Pax Viking,2021,1161,7.14761,6.05161,"303954, 357724" +2072,129050,P.I.,2012,1999,6.68706,6.05110, +2073,41627,Zulus on the Ramparts!: The Battle of Rorke's Drift – Second Edition,2009,969,7.36259,6.05097, +2074,231280,Harvest Dice,2017,2258,6.61332,6.05071, +2075,250396,Terminator Genisys: Rise of the Resistance,2018,640,8.03475,6.05051, +2076,20545,Rory's Story Cubes,2005,4951,6.30647,6.05015,"20545, 89415, 115233, 142556, 142557, 142558, 165521, 165522, 165523, 182541, 182952, 182953, 182954, 182955, 192320, 192321, 192322, 192323, 192324, 192355, 217428, 218913, 226588, 234614, 234615, 234616, 249036, 271225, 271227, 271228, 273005, 273007, 291380, 291381, 291440, 302725, 316585, 327645, 351623" +2077,21791,Masons,2006,2732,6.51461,6.05012,"21791, 266141" +2078,218129,Catch the Moon,2017,1832,6.74271,6.05007, +2079,236239,"Battles of the American Revolution Tri-pack: Guilford, Saratoga, Brandywine",2017,884,7.48474,6.04987,"3412, 3413, 7086, 236239" +2080,229414,Tulip Bubble,2015,1228,7.08169,6.04949, +2081,344277,Corrosion,2021,1322,7.00743,6.04917, +2082,143157,SOS Titanic,2013,1831,6.74047,6.04892, +2083,1116,Oh Hell!,1930,1562,6.85945,6.04887, +2084,20806,Three-Dragon Ante,2005,2454,6.56464,6.04878,"20806, 63196, 138127, 280501" +2085,319793,Happy City,2021,2334,6.59034,6.04837,"250643, 319793, 420987" +2086,251293,Megaland,2018,2202,6.62214,6.04803, +2087,2795,Car Wars,1981,3604,6.39848,6.04783,"1126, 2368, 2458, 2795, 3183, 12676, 13354, 13954, 13956, 291828, 370499, 425496" +2088,3348,Santa Fe Rails,2001,1790,6.75382,6.04783,"308, 3128, 3348" +2089,2247,Zero!: The Rise and Fall of The Imperial Japanese Air Force Dec 1941 - June 1942,2001,1137,7.15927,6.04782,"1372, 2247, 62230" +2090,260757,Lift Off,2018,1218,7.08486,6.04765, +2091,181960,Portal of Heroes,2015,1789,6.75356,6.04754, +2092,193621,Joking Hazard,2016,6118,6.25313,6.04691, +2093,37120,Pack & Stack,2008,3169,6.44465,6.04670, +2094,19841,Pentago,2005,3855,6.37345,6.04645,"19841, 21012, 56690, 206849" +2095,384,TurfMaster,1998,1052,7.24425,6.04631, +2096,200454,Planetarium,2017,1368,6.96710,6.04615, +2097,142296,Funemployed,2013,2109,6.64348,6.04613,"142296, 423152" +2098,237031,D100 Dungeon,2017,746,7.73343,6.04578, +2099,12157,Unanimo,1990,1198,7.09574,6.04545,"12157, 261614" +2100,210040,Illimat,2017,1025,7.27286,6.04541, +2101,288080,Dice Realms,2022,1131,7.15764,6.04535, +2102,13293,Vs System,2004,1482,6.89410,6.04531,"13293, 178892, 189610, 194532, 200672, 225135, 225136, 234554, 238615, 265227, 352817, 386103, 395480, 395484" +2103,287871,Hybris: Disordered Cosmos,2023,519,8.46827,6.04517,"287871, 400814" +2104,240225,Roll to the Top!,2018,2012,6.66956,6.04486,"240225, 370193" +2105,299592,Beez,2020,1814,6.73758,6.04479, +2106,356754,Tamashii: Chronicle of Ascend,2023,599,8.14247,6.04472,"356754, 406487" +2107,29073,Blockers!,2007,2266,6.59832,6.04426,"29073, 128885" +2108,266504,Dig Your Way Out,2019,1071,7.21634,6.04420, +2109,3439,HeroClix,2002,2640,6.51964,6.04416,"3439, 36751, 146977, 182276, 212607, 222190, 222191, 222192, 222193, 319313, 370813, 427159" +2110,32989,Axis Empires: Totaler Krieg!,2011,703,7.82851,6.04387,"4258, 10829, 32989, 32990, 291434" +2111,256707,Trick Shot,2021,647,7.98191,6.04364,"256707, 359612" +2112,172881,Quartz,2015,1465,6.89690,6.04257,"94822, 172881, 254189, 304490, 357989, 357999" +2113,157789,Pandemic: Contagion,2014,3516,6.39843,6.04250, +2114,296626,Sonora,2020,1613,6.81708,6.04198, +2115,1484,Clue: The Great Museum Caper,1991,1663,6.79342,6.04183, +2116,287,Bazaar,1967,2522,6.53742,6.04183,"287, 364, 625, 35265, 376665" +2117,1042,Dragon's Gold,2001,3317,6.41836,6.04166, +2118,15318,Palazzo,2005,2511,6.53784,6.04092, +2119,16366,Funny Friends,2005,2682,6.50598,6.04082, +2120,713,Nuclear War,1965,3634,6.38382,6.04064,"713, 1212, 1213, 2455, 12367, 418247" +2121,343322,Exit: The Game – Advent Calendar: The Hunt for the Golden Book,2021,736,7.73483,6.04057, +2122,244,Circus Maximus,1979,1703,6.77271,6.04053, +2123,2582,Catch Phrase!,1994,3534,6.39334,6.04052,"2582, 32109, 135262, 242186" +2124,234621,Tybor the Builder,2017,1408,6.92604,6.04051, +2125,25727,Lock 'n Load Tactical: Day of Heroes,2008,752,7.69836,6.04046,"6542, 25727, 42731, 184560, 184561, 185057, 193531" +2126,4218,O Zoo le Mio,2002,2210,6.60442,6.04038,"4218, 246543" +2127,2529,Flat Top,1977,944,7.36024,6.04020, +2128,201248,Evolution: The Beginning,2016,2295,6.58314,6.04018, +2129,298635,Alice's Garden,2020,1107,7.16503,6.03992, +2130,154910,Darklight: Memento Mori,2018,558,8.27124,6.03978, +2131,273814,Deliverance,2023,515,8.45626,6.03954, +2132,37400,Sushizock im Gockelwok,2008,2891,6.46849,6.03867,"37400, 207783" +2133,333539,The Siege of Runedar,2021,1240,7.04048,6.03857, +2134,242227,"Nightfighter Ace: Air Defense Over Germany, 1943-44",2018,532,8.37306,6.03842,"242227, 269456, 294112, 324426" +2135,193557,Android: Mainframe,2016,2279,6.58321,6.03832,"133747, 193557" +2136,158572,Waggle Dance,2014,1416,6.91462,6.03807,"158572, 338117, 338351" +2137,232666,Robin Hood and the Merry Men,2018,1807,6.72465,6.03793, +2138,81453,Famiglia,2010,3227,6.42236,6.03787, +2139,83734,Strike of the Eagle,2011,835,7.52334,6.03775,"42396, 83734" +2140,29839,Key Harvest,2007,1834,6.71350,6.03747, +2141,258309,First Contact,2018,1405,6.91693,6.03634,"258309, 308367" +2142,90305,Cargo Noir,2011,3046,6.44234,6.03624, +2143,199793,Dokmus,2016,1260,7.01790,6.03621, +2144,5867,10 Days in Europe,2002,2174,6.60434,6.03581,"5867, 416356" +2145,200934,Coldwater Crown,2017,1047,7.21608,6.03573, +2146,19427,Gemblo,2003,1675,6.77332,6.03564,"19427, 39440, 162012, 368633" +2147,32441,Bezzerwizzer,2007,3537,6.38464,6.03544,"32441, 35137, 133337, 186243, 186569, 225085, 244359, 260751, 260752, 264267, 271527, 271535, 271540, 271643, 273280, 273281, 273282, 297542, 302327, 321602, 340078, 364870, 364871, 381458" +2148,340237,Wonder Book,2021,794,7.59026,6.03524, +2149,199723,"UltraQuest: Gold, Ruhm! und Ehre!",2016,570,8.19678,6.03433, +2150,245045,Deckscape: Heist in Venice,2018,1969,6.65941,6.03391, +2151,286158,D.E.I.: Divide et Impera,2022,881,7.42986,6.03335, +2152,130486,Small City,2015,902,7.39708,6.03328,"130486, 326538" +2153,173805,Lobotomy,2017,881,7.42879,6.03305,"173805, 348877" +2154,2533,Kupferkessel Co.,2001,1722,6.74622,6.03267,"2533, 38195, 144526" +2155,345377,Virtù,2022,867,7.44893,6.03240, +2156,125311,Okiya,2012,2348,6.55461,6.03197,"28738, 125311" +2157,311322,Herd Mentality,2020,1993,6.64711,6.03170,"311322, 396384" +2158,124668,The Dwarves,2012,1467,6.86704,6.03142,"124668, 171978, 302882, 376250" +2159,20134,The End of the Triumvirate,2005,1655,6.77180,6.03128, +2160,344789,Skytear Horde,2023,846,7.47689,6.03047,"344789, 385325, 423649" +2161,257066,Sierra West,2019,1593,6.79847,6.03040, +2162,176530,Xenon Profiteer,2015,1053,7.19229,6.03038, +2163,155451,Guild Ball,2015,711,7.74936,6.02996,"155451, 210271" +2164,8095,Prophecy,2002,1989,6.64441,6.02987, +2165,324853,Exit: The Game – Kidnapped in Fortune City,2021,671,7.85125,6.02982, +2166,270293,Gorinto,2021,1033,7.21267,6.02973, +2167,144415,Nauticus,2013,1389,6.90917,6.02961, +2168,158109,Onward to Venus,2014,1482,6.85310,6.02927, +2169,145203,City of the Living,2013,1913,6.66709,6.02909, +2170,203411,Word Slam,2016,1396,6.90286,6.02890,"203411, 245389, 255678" +2171,163841,18CZ,2017,742,7.67168,6.02853, +2172,8195,Viva Topo!,2002,1526,6.82650,6.02814,"8195, 21562, 59543" +2173,36400,The Guns of Gettysburg,2013,682,7.81442,6.02812, +2174,298060,Truffle Shuffle,2020,1446,6.86952,6.02769, +2175,18866,Shear Panic,2005,3851,6.34375,6.02767, +2176,295945,Exit: The Game – The Cemetery of the Knight,2020,1237,7.01127,6.02753, +2177,275916,Cairn,2019,1094,7.13943,6.02739, +2178,1155,Capitol,2001,2460,6.52164,6.02724,"1155, 12538, 54643" +2179,128554,Völuspá,2012,2076,6.61255,6.02698,"30024, 128554" +2180,274533,Throw Throw Burrito,2019,4192,6.31695,6.02697,"274533, 288010, 340420" +2181,200890,Pixie Queen,2017,1124,7.10820,6.02688, +2182,378758,Imperial Miners,2023,1028,7.20795,6.02650, +2183,356952,Empire's End,2023,1238,7.00754,6.02650, +2184,169147,Letter Tycoon,2015,1703,6.73880,6.02613, +2185,336131,Halls of Hegra,2023,551,8.22751,6.02588, +2186,245659,Vampire: The Masquerade – Vendetta,2020,1016,7.21916,6.02566, +2187,366456,My Shelfie,2022,2245,6.56576,6.02565, +2188,37196,Sorry! Sliders,2008,3988,6.32961,6.02559,"37196, 98529, 249683" +2189,9215,Revolution: The Dutch Revolt 1568-1648,2004,962,7.28558,6.02549, +2190,215613,Tao Long: The Way of the Dragon,2017,1546,6.80903,6.02527, +2191,25951,The Castle of the Devil,2010,2925,6.43891,6.02493,"25951, 168839" +2192,269160,Colors of Paris,2019,1423,6.87585,6.02492, +2193,70519,Cruel Necessity: The English Civil Wars 1640-1653,2013,821,7.49823,6.02451,"70519, 374507" +2194,188164,B-17 Flying Fortress Leader,2017,593,8.06183,6.02389, +2195,1044,Gunslinger,1982,1081,7.14053,6.02347, +2196,361788,First in Flight,2023,811,7.51233,6.02345, +2197,143096,Camp Grizzly,2013,835,7.46765,6.02295, +2198,322524,Bardsung,2022,875,7.39941,6.02234,"322524, 429033" +2199,184346,Go Nuts for Donuts,2017,3125,6.40733,6.02200, +2200,313531,Rustling Leaves,2020,1380,6.89451,6.02198, +2201,214234,Tank Duel: Enemy in the Crosshairs,2019,789,7.54748,6.02183, +2202,317372,Exit: The Game – The Gate Between Worlds,2020,895,7.36672,6.02181, +2203,305761,Whale Riders,2021,1198,7.02476,6.02119, +2204,118247,Lucky Numbers,2012,3583,6.35551,6.02044, +2205,400205,5 Towers,2023,1457,6.84183,6.01944, +2206,267979,Tiwanaku,2022,986,7.23460,6.01941, +2207,32674,Monsterpocalypse,2008,1157,7.05412,6.01912,"32674, 67426, 248641, 348934" +2208,286,Machiavelli,1977,1123,7.08511,6.01901, +2209,267475,Stay Cool,2019,1211,7.00404,6.01777, +2210,94480,Pantheon,2011,1744,6.70205,6.01752, +2211,124827,Space Cadets: Away Missions,2015,914,7.32249,6.01719, +2212,1260,Rook,1906,3003,6.41423,6.01705,"1260, 369086" +2213,353815,Skate Summer,2022,900,7.34174,6.01689, +2214,38506,Witch of Salem,2008,1965,6.62351,6.01681, +2215,233955,Montana,2017,1729,6.70568,6.01653, +2216,342032,Wild Tiled West,2023,739,7.62832,6.01639, +2217,30367,Perry Rhodan: The Cosmic League,2007,1691,6.72075,6.01636, +2218,283212,MonsDRAWsity,2020,1104,7.09509,6.01630,"283212, 350011, 365752, 434436" +2219,192934,Colony,2016,2065,6.59177,6.01569,"169925, 192934" +2220,67180,Tikal II: The Lost Temple,2010,1409,6.85983,6.01564, +2221,4214,Stonewall in the Valley,1995,562,8.13161,6.01554,"1821, 4205, 4214, 367432" +2222,205127,Haven,2018,1229,6.98158,6.01498, +2223,172547,Queen's Architect,2015,1425,6.84824,6.01483, +2224,183308,1844/1854,2016,626,7.90969,6.01435,"4613, 7935, 183308" +2225,118418,Divinare,2012,1680,6.72003,6.01411, +2226,243797,Mezo,2020,1016,7.18077,6.01393, +2227,212765,Songbirds,2016,1406,6.85555,6.01333, +2228,91523,Mondo,2011,2818,6.43334,6.01322,"91523, 118293, 154009" +2229,298586,Demeter,2020,931,7.28484,6.01322,"298586, 330664" +2230,137155,Potato Man,2013,1409,6.85284,6.01299, +2231,79073,Resident Evil Deck Building Game,2010,2088,6.57780,6.01207,"79073, 91773, 127561" +2232,175,What the Heck?,1988,2584,6.46903,6.01198, +2233,313065,Transmissions,2022,917,7.29769,6.01135, +2234,295192,Tinderblox,2020,1559,6.76755,6.01118,"295192, 363347, 422436" +2235,184491,Spaceteam,2015,2043,6.58832,6.01116, +2236,130882,Cardline: Animals,2012,2406,6.50124,6.01116,"130882, 163277, 186799" +2237,139899,VivaJava: The Coffee Game: The Dice Game,2014,2094,6.57322,6.01066, +2238,112373,BraveRats,2011,2696,6.44759,6.01066,"112373, 186073" +2239,270636,My Farm Shop,2020,1229,6.96846,6.01042, +2240,103686,Mundus Novus,2011,1874,6.63822,6.01020, +2241,3605,The Third World War: Battle for Germany,1984,625,7.88843,6.00917,"2579, 2580, 3605, 5511, 316410, 429218" +2242,201186,Summit: The Board Game,2017,1081,7.09478,6.00887, +2243,206757,Glory: A Game of Knights,2021,787,7.49954,6.00864, +2244,246297,Shadows: Amsterdam,2018,2089,6.57031,6.00864, +2245,171479,Commissioned,2016,965,7.22247,6.00804, +2246,155122,"1066, Tears to Many Mothers: The Battle of Hastings",2014,1134,7.04129,6.00797,"155122, 260645, 312748" +2247,84465,Ottoman Sunset: The Great War in the Near East,2010,874,7.34748,6.00764,"84465, 149361" +2248,262341,TTMC: Tu te mets combien?,2016,1077,7.09468,6.00756,"262341, 357086, 374114, 383789, 420227, 422252, 422821" +2249,691,Timbuktu,1993,1831,6.64696,6.00754, +2250,255393,"Stalingrad '42: Southern Russia, June-December, 1942",2019,486,8.41547,6.00735, +2251,255570,Brotherhood & Unity,2020,598,7.96333,6.00712, +2252,129294,Campaign Trail,2019,703,7.66982,6.00681, +2253,511,Silverton,1991,1073,7.09594,6.00667, +2254,18748,Unhappy King Charles!,2008,736,7.59461,6.00665,"18748, 391780" +2255,17161,Tempus,2006,2616,6.45335,6.00661, +2256,2375,Sequence,1982,11105,6.11178,6.00656,"2375, 6381, 22035, 417868" +2257,73070,Olympus,2010,1485,6.79284,6.00632, +2258,133956,Axis & Allies: WWI 1914,2013,944,7.24294,6.00613, +2259,20,Full Metal Planète,1988,779,7.50365,6.00582,"20, 16063" +2260,251433,Yokai Septet,2018,868,7.34510,6.00446,"172012, 187791, 251433" +2261,258308,Fuji,2018,1863,6.62905,6.00444, +2262,6366,Dungeons & Dragons: The Fantasy Adventure Board Game,2003,2046,6.57301,6.00436, +2263,2389,Othello,1883,8708,6.13772,6.00416,"2389, 18968, 150620" +2264,246816,Tales of Glory,2018,982,7.18701,6.00372, +2265,178570,Unusual Suspects,2015,2988,6.39205,6.00341,"178570, 379122" +2266,32484,The Battle for Hill 218,2007,2029,6.57541,6.00326,"32484, 143238, 175177" +2267,531,Merchants of Amsterdam,2000,1658,6.70230,6.00278, +2268,172971,Crossing,2013,1646,6.70731,6.00274,"172971, 367344" +2269,191572,Animals on Board,2016,2222,6.52441,6.00261, +2270,270871,Agemonia,2024,409,8.83716,6.00258, +2271,293264,Monsters on Board,2022,731,7.58831,6.00252, +2272,168054,Grifters,2015,1659,6.70074,6.00230,"168054, 250865" +2273,269199,Dizzle,2019,1443,6.80520,6.00227, +2274,95105,1st & Goal,2011,1948,6.59657,6.00205,"95105, 260218" +2275,39188,Liberty Roads,2009,557,8.08037,6.00188, +2276,361958,Maple Valley,2024,716,7.61797,6.00168,"361958, 409858" +2277,4204,Tunisia,1995,585,7.97984,6.00166,"4204, 193238" +2278,84889,Cave Evil,2011,607,7.90668,6.00136,"84889, 186723" +2279,298281,Exit: The Game + Puzzle – The Sacred Temple,2020,871,7.32898,6.00130, +2280,192312,Mr. Cabbagehead's Garden,2016,1054,7.09828,6.00125, +2281,254513,The Grimm Masquerade,2019,1333,6.86850,6.00118, +2282,27739,Hearts and Minds: Vietnam 1965-1975,2010,682,7.69473,6.00081,"27739, 254588" +2283,231999,Finished!,2017,1582,6.73074,6.00068, +2284,243538,Goblivion,2018,704,7.63643,5.99955,"243538, 375261" +2285,111732,Kings of Air and Steam,2013,1357,6.84752,5.99910, +2286,356768,Bloc by Bloc: Uprising,2022,894,7.28664,5.99902,"190247, 356768, 378080" +2287,362976,Beacon Patrol,2023,999,7.15049,5.99877, +2288,22897,Dreamblade,2006,1011,7.13667,5.99873, +2289,265017,Tortuga 2199,2020,1065,7.07863,5.99862,"265017, 335239" +2290,234948,Prehistory,2018,978,7.17463,5.99860, +2291,307044,Trailblazer: The John Muir Trail,2023,683,7.68156,5.99836,"307044, 372967" +2292,7865,10 Days in Africa,2003,2057,6.55678,5.99814, +2293,178944,BATTALIA: The Creation,2015,910,7.25931,5.99769, +2294,96749,Fading Glory,2012,829,7.38226,5.99761,"34334, 38361, 96749, 181267" +2295,279720,Streets,2021,1716,6.66645,5.99757, +2296,215308,Indulgence,2017,1586,6.72127,5.99757,"2, 2174, 215308" +2297,358690,MANTIS,2022,1570,6.72821,5.99739,"358690, 430592" +2298,367379,Deal with the Devil,2022,1072,7.06664,5.99705, +2299,283649,Deep Blue,2019,1626,6.70212,5.99701, +2300,271530,Ankh'or,2019,1291,6.88348,5.99644, +2301,76417,Poseidon,2010,1192,6.95630,5.99615, +2302,4230,Napoleon's Last Battles,1976,789,7.44596,5.99595,"4230, 30020, 30021, 30022, 30023, 174298" +2303,138704,Northern Pacific,2013,1053,7.08013,5.99523, +2304,232520,Pioneers,2017,1195,6.95102,5.99517,"232520, 367296" +2305,276386,Caesar: Rome vs. Gaul,2020,595,7.91445,5.99507, +2306,4688,Angola,1988,559,8.03631,5.99473, +2307,237145,Daimyo: Rebirth of the Empire,2021,811,7.40151,5.99462, +2308,3870,7 Ages,2004,1068,7.06077,5.99393,"3870, 409668" +2309,257,Kill Doctor Lucky,1996,7749,6.14045,5.99353,"257, 120447, 250963" +2310,99392,Colonial: Europe's Empires Overseas,2011,997,7.13512,5.99344, +2311,153097,Heroes Wanted,2014,1603,6.70254,5.99304, +2312,277670,Among Cultists: A Social Deduction Thriller,2023,718,7.57696,5.99301, +2313,225910,Terrors of London,2019,1069,7.05628,5.99282, +2314,121193,Cover Your Assets,2011,2244,6.49913,5.99267,"121193, 281132, 381984" +2315,19995,Canal Mania,2006,1269,6.88698,5.99222, +2316,237087,DropMix,2017,1636,6.68596,5.99210, +2317,309129,Disney: The Haunted Mansion – Call of the Spirits Game,2020,1111,7.01244,5.99164, +2318,132544,Tesla vs. Edison: War of Currents,2015,1662,6.67363,5.99148, +2319,200847,Secrets,2017,2509,6.44198,5.99077, +2320,270138,Terror Below,2019,1639,6.68124,5.99066, +2321,1323,Cry Havoc,1981,1027,7.09274,5.99066,"1323, 5235, 5571, 5573, 6926, 147919, 164190, 200111, 258653, 337712, 352996, 353139" +2322,168679,Flip City,2014,4509,6.24154,5.99057,"168679, 198029, 207370" +2323,281619,Ghosts of Christmas,2019,1068,7.04783,5.98983, +2324,253398,Lost Cities: Rivals,2018,1630,6.68283,5.98974, +2325,283797,Exit: The Game – The Stormy Flight,2019,1338,6.83395,5.98969, +2326,179182,Dojo Kun,2015,1255,6.88880,5.98935, +2327,34373,Tiki Topple,2008,2357,6.46759,5.98900, +2328,271785,Slide Quest,2019,1860,6.59535,5.98895, +2329,149241,Assault on Doomrock,2014,1113,7.00141,5.98865,"149241, 313859, 330116" +2330,319971,Monster Hunter World: The Board Game,2022,600,7.86671,5.98852,"319971, 361195, 385319" +2331,394334,Sunrise Lane,2023,1372,6.80945,5.98836,"129614, 394334" +2332,85250,The Dwarf King,2011,2053,6.53699,5.98831, +2333,626,War and Peace,1980,1300,6.85333,5.98778,"626, 267402" +2334,402663,Salton Sea,2024,711,7.57035,5.98778, +2335,11168,Flames of War: The World War II Miniatures Game,2002,994,7.11959,5.98772,"11168, 38784, 190700, 254052, 305837, 305879, 305882, 306431, 307885, 310672, 334505, 338951" +2336,181797,Inhabit the Earth,2015,1229,6.90280,5.98760, +2337,23686,Gift Trap,2006,2703,6.40253,5.98696,"23686, 60682" +2338,172552,Karmaka,2016,2104,6.52071,5.98689, +2339,7866,10 Days in the USA,2003,2280,6.47868,5.98648, +2340,111,Rheinländer,1999,1705,6.64396,5.98618, +2341,322195,Kokopelli,2021,976,7.13429,5.98589, +2342,322421,Aqua Garden,2021,805,7.37760,5.98572,"311829, 322421" +2343,1423,Storm over Arnhem,1981,934,7.18532,5.98571, +2344,184459,Ave Roma,2016,982,7.12480,5.98515, +2345,302280,Shifting Stones,2020,2126,6.51075,5.98476, +2346,207991,Quodd Heroes,2019,940,7.17339,5.98447,"207991, 367443" +2347,175973,The Hunters A.D. 2114,2019,497,8.23272,5.98440,"175973, 382894" +2348,189067,Cavern Tavern,2016,1246,6.88026,5.98407, +2349,282922,Windward,2020,1091,7.00661,5.98376,"282922, 368390" +2350,255907,Trogdor!!: The Board Game,2019,1220,6.89821,5.98367, +2351,280132,Robin of Locksley,2019,1166,6.93963,5.98336, +2352,815,Chrononauts,2000,6735,6.14879,5.98327,"815, 9825, 71676, 268276" +2353,219832,Barbarians: The Invasion,2018,807,7.36264,5.98274, +2354,234260,Prey Another Day,2023,1242,6.87770,5.98217, +2355,7806,King Up!,2004,2763,6.38404,5.98180,"7806, 224907, 254191, 426039" +2356,287322,Mystic Market,2019,1021,7.06966,5.98159, +2357,265,Intrigue,1994,2831,6.37286,5.98096, +2358,117960,Saint Malo,2012,2407,6.44076,5.98038, +2359,420,Rail Baron,1977,1821,6.58753,5.97977,"420, 24225" +2360,125977,Cataclysm: A Second World War,2018,714,7.52965,5.97973, +2361,27356,Portobello Market,2007,2685,6.39145,5.97950, +2362,171110,Cosmic Run,2015,955,7.13405,5.97842,"171110, 217423, 240464" +2363,1425,Raid on St. Nazaire,1987,868,7.24893,5.97817, +2364,18485,18MEX,2005,641,7.69776,5.97791, +2365,193560,Escape the Room: Mystery at the Stargazer's Manor,2015,1876,6.56434,5.97736, +2366,139952,Clockwork Wars,2015,710,7.52760,5.97720, +2367,30241,Patrician,2007,1657,6.64095,5.97696,"30241, 392767" +2368,327831,Lost Cities: Roll & Write,2021,1073,7.00198,5.97684, +2369,147930,King & Assassins,2013,1285,6.83212,5.97658, +2370,294230,Remember Our Trip,2019,806,7.34029,5.97651, +2371,226254,The Ruhr: A Story of Coal Trade,2017,1107,6.96832,5.97614,"130390, 226254" +2372,55253,Atlantis,2009,2041,6.51425,5.97612, +2373,125046,Fantastiqa: The Rucksack Edition,2012,1210,6.88173,5.97540, +2374,136000,Rivet Wars: Eastern Front,2014,1094,6.97781,5.97540,"136000, 368761" +2375,297658,[kosmopoli:t],2020,632,7.70926,5.97511, +2376,311900,Votes for Women,2022,624,7.72949,5.97468, +2377,169141,Fallen Land: A Post Apocalyptic Board Game,2017,490,8.20671,5.97422,"169141, 329106" +2378,4174,Lifeboat,2002,3422,6.29377,5.97415,"4174, 151684, 333145" +2379,3837,Rat-a-Tat Cat,1995,4066,6.24300,5.97405,"3837, 212663, 257965, 272078" +2380,90870,Pelican Cove,2011,1565,6.67257,5.97396,"90870, 136284, 187606" +2381,156442,Asking for Trobils,2015,1054,7.01127,5.97396, +2382,805,Buffy the Vampire Slayer: The Game,2000,1741,6.60178,5.97389, +2383,163930,Abracada...What?,2014,1889,6.55237,5.97379, +2384,28829,Field Commander: Rommel,2008,1096,6.97037,5.97359, +2385,281248,Cape May,2021,878,7.21560,5.97297, +2386,284616,Small Samurai Empires,2020,692,7.54911,5.97285, +2387,331571,My Gold Mine,2021,1157,6.91475,5.97256, +2388,367662,Applejack,2022,1353,6.77567,5.97161, +2389,354132,East India Companies,2023,717,7.48769,5.97132, +2390,282439,Lux Aeterna,2019,1013,7.04349,5.97098, +2391,364655,Kinfire Chronicles: Night's Fall,2023,420,8.55583,5.97068, +2392,276997,X-ODUS: Rise of the Corruption,2020,593,7.80064,5.97048, +2393,171890,Best Treehouse Ever,2015,2066,6.49524,5.97022,"171890, 232823" +2394,387514,Stonespine Architects,2024,696,7.52815,5.97009, +2395,8170,Return of the Heroes,2003,2204,6.46166,5.96987,"8170, 13751, 19653" +2396,154003,Pagoda,2014,1632,6.63255,5.96926, +2397,359029,Nekojima,2023,784,7.34770,5.96868,"359029, 406914" +2398,2476,Industrial Waste,2001,1555,6.66360,5.96854, +2399,319579,Crash Octopus,2021,1086,6.96353,5.96846, +2400,358386,Moon,2023,751,7.40598,5.96811, +2401,267814,Adventure Games: Monochrome Inc.,2019,1806,6.56591,5.96806, +2402,16,MarraCash,1996,1140,6.91454,5.96785,"16, 11335" +2403,133528,City of Remnants,2013,1425,6.72514,5.96783,"133528, 256643" +2404,6068,Queen's Necklace,2003,2584,6.38455,5.96735, +2405,39242,Black Friday,2010,1636,6.62577,5.96712,"39242, 388838" +2406,128931,Noblemen,2012,1159,6.89605,5.96685, +2407,174524,Saloon Tycoon,2016,946,7.10498,5.96677, +2408,230191,The Island of El Dorado,2018,1767,6.57434,5.96599,"230191, 279643" +2409,140717,Progress: Evolution of Technology,2014,1984,6.50739,5.96580, +2410,347112,Secret Identity,2022,794,7.31892,5.96576, +2411,3041,Panzergruppe Guderian,1976,766,7.36720,5.96547, +2412,307963,Durian,2020,1152,6.89690,5.96526, +2413,32116,Airships,2007,2751,6.35511,5.96511, +2414,339614,Shinkansen: Zero-Kei,2021,999,7.03849,5.96493, +2415,165004,ONUS! Rome Vs Carthage,2014,522,8.01842,5.96473,"165004, 332070, 359657" +2416,250561,Kick-Ass: The Board Game,2018,813,7.28261,5.96454, +2417,312618,Flourish,2021,1431,6.71308,5.96442, +2418,3967,Battlefleet Gothic,1999,971,7.06761,5.96438, +2419,169,En Garde,1993,2210,6.44887,5.96427,"169, 9735, 434108" +2420,8829,Nobody Is Perfect,1992,1289,6.79453,5.96406,"8829, 21277, 153292, 313934" +2421,35342,Hold the Line,2008,797,7.30663,5.96391,"14860, 35342, 198630, 250291" +2422,368954,Council of Shadows,2022,800,7.30152,5.96389, +2423,108722,Dreadfleet,2011,1060,6.97262,5.96364, +2424,28620,Phoenicia,2007,1929,6.51744,5.96335, +2425,335116,Motor City,2023,830,7.25045,5.96317, +2426,154301,The Battle at Kemble's Cascade,2014,1514,6.66645,5.96221, +2427,1770,Aliens,1989,807,7.28311,5.96213,"1770, 17787, 376857" +2428,224133,The Cousins' War,2017,922,7.11704,5.96175,"224133, 262818" +2429,261009,Inuit: The Snow Folk,2019,1280,6.79351,5.96161,"235902, 261009" +2430,58,Kings & Things,1986,1830,6.54307,5.96142,"58, 2252" +2431,235655,Dragon's Breath,2017,1787,6.55702,5.96140,"235655, 285529" +2432,173096,A Tale of Pirates,2017,981,7.04421,5.96076, +2433,5534,Light Speed,2003,2259,6.43065,5.96046,"5534, 179835, 400498" +2434,297895,Divvy Dice,2020,1320,6.76475,5.96032, +2435,177659,The Manhattan Project 2: Minutes to Midnight,2018,817,7.25925,5.96012, +2436,102104,Star Fluxx,2011,35916,5.98965,5.96010,"258, 8804, 17816, 18333, 29387, 35369, 36345, 73538, 102104, 117838, 122159, 140796, 149130, 156108, 160814, 162378, 178209, 178210, 183896, 211996, 219430, 220193, 235365, 244738, 246530, 246531, 246986, 255013, 268274, 272541, 272542, 280378, 290025, 302421, 314413, 318392, 325409, 328926, 334784, 350764, 356084, 375295, 378278, 404982, 425125" +2437,402676,Cities,2024,711,7.45149,5.95978, +2438,233676,Noria,2017,2081,6.46712,5.95868, +2439,69601,1880: China,2010,522,7.98460,5.95849, +2440,205907,Runewars Miniatures Game,2017,675,7.52491,5.95839, +2441,357,Excape,1998,2090,6.46376,5.95812, +2442,148290,Longhorn,2013,1800,6.54508,5.95806, +2443,228133,Crystal Clans,2018,1110,6.90929,5.95783, +2444,202721,The Last Hundred Yards,2019,504,8.05312,5.95780,"202721, 287783" +2445,160418,Wing Leader: Victories 1940-1942,2015,554,7.86360,5.95772,"160418, 282033" +2446,196257,Castle Itter: The Strangest Battle of WWII,2019,607,7.69716,5.95771, +2447,350689,Wormholes,2022,963,7.05393,5.95766, +2448,201006,Bumúntú,2019,1048,6.96441,5.95747, +2449,216381,Hand of Fate: Ordeals,2018,829,7.22982,5.95731,"216381, 316217" +2450,33643,Whoowasit?,2007,1677,6.58520,5.95682,"15167, 33643, 171537, 260897" +2451,372631,Books of Time,2023,834,7.21963,5.95663, +2452,179245,World Championship Russian Roulette,2017,1144,6.87672,5.95641, +2453,19348,Byzantium,2005,1269,6.78488,5.95599, +2454,21654,Iliad,2006,1893,6.51126,5.95581, +2455,317859,Forests of Pangaia,2023,723,7.40893,5.95553, +2456,118000,Africana,2012,1428,6.69010,5.95503, +2457,245197,Deadwood 1876,2018,1664,6.58575,5.95500, +2458,10081,Axis & Allies: D-Day,2004,2192,6.43314,5.95466, +2459,130877,Blood Bound,2013,1703,6.57022,5.95454, +2460,12234,"DAK2: The Campaign in North Africa, 1940-1942",2004,444,8.31528,5.95441,"5452, 12234" +2461,23451,Space Dealer,2006,2251,6.41953,5.95414,"23451, 137238" +2462,302344,Scooby-Doo: Escape from the Haunted Mansion,2020,894,7.12488,5.95384, +2463,183315,Tetrarchia,2015,653,7.55613,5.95363, +2464,250621,18Lilliput,2018,944,7.06195,5.95358, +2465,17393,Pax Romana,2006,730,7.38613,5.95340, +2466,80006,Mord im Arosa,2010,1823,6.52693,5.95331, +2467,329939,Keystone: North America,2022,819,7.22943,5.95313,"329939, 420539" +2468,237706,Heroes of Tenefyr,2019,822,7.22475,5.95313, +2469,193428,Street Fighter: The Miniatures Game,2021,781,7.29062,5.95291,"193428, 193429, 193430" +2470,147116,The Witcher Adventure Game,2014,2725,6.33606,5.95277, +2471,350185,Draft & Write Records,2024,776,7.29833,5.95267, +2472,138788,Dungeon Roll,2013,8433,6.07625,5.95248, +2473,305462,The Age of Atlantis,2022,748,7.34769,5.95243, +2474,348,Merchants of the Middle Ages,1999,1363,6.71792,5.95235, +2475,17449,Beowulf: The Legend,2005,2422,6.38309,5.95230,"17449, 429766" +2476,172540,Dragoon,2016,1108,6.89261,5.95186, +2477,40425,Maori,2009,1635,6.58916,5.95177, +2478,191055,Kerala: The Way of the Elephant,2016,1171,6.84097,5.95151, +2479,340790,1923 Cotton Club,2021,688,7.46506,5.95144, +2480,287941,Formosa Tea,2019,722,7.39350,5.95137, +2481,324711,Schadenfreude,2021,612,7.65071,5.95095, +2482,107190,Flash Duel: Second Edition,2011,1203,6.81509,5.95076,"65334, 107190, 184145" +2483,68076,Conflict of Heroes: Guadalcanal – The Pacific 1942,2016,497,8.04095,5.95041, +2484,253106,Narcos: The Board Game,2018,913,7.08779,5.95023, +2485,277405,Fuji Koro: Deluxe,2020,917,7.08229,5.95008,"253743, 277405" +2486,266179,Space Gate Odyssey,2019,1052,6.93558,5.94964, +2487,185196,Rising 5: Runes of Asteros,2017,1928,6.48760,5.94963, +2488,32424,1848: Australia,2007,531,7.90040,5.94916, +2489,295681,In Too Deep,2021,720,7.38734,5.94895, +2490,267735,Deckscape: Behind the Curtain,2019,1132,6.86191,5.94832, +2491,21804,Traditional Card Games,,1206,6.80564,5.94825, +2492,28723,Before the Wind,2007,1549,6.61425,5.94763, +2493,35350,Field Commander: Alexander,2009,916,7.07405,5.94739, +2494,261403,Inhuman Conditions,2020,801,7.23546,5.94730, +2495,227212,For Glory,2020,498,8.01892,5.94724, +2496,165967,Great War Commander,2018,427,8.36220,5.94706, +2497,2129,Crossbows and Catapults,1983,1417,6.67460,5.94696,"2129, 30328, 342075, 390612" +2498,174744,Mogul,2015,1389,6.68911,5.94691,"4562, 174744" +2499,369142,Savernake Forest,2023,885,7.11100,5.94669, +2500,229741,Shadows in Kyoto,2017,1177,6.82112,5.94634, +2501,358246,Dead by Daylight: The Board Game,2023,690,7.43635,5.94584,"358246, 369103" +2502,38786,"Red Winter: The Soviet Attack at Tolvajärvi, Finland – 8-12 December 1939",2012,510,7.96211,5.94578,"38786, 319033" +2503,242667,Dark Souls: The Card Game,2018,1249,6.76877,5.94567, +2504,94902,Dungeons & Dragons Starter Set,2008,582,7.71173,5.94559, +2505,201308,Hive Mind,2016,929,7.05170,5.94550,"2667, 201308, 358086" +2506,359764,Shake That City,2023,846,7.15949,5.94530, +2507,302469,Ausonia,2021,597,7.66546,5.94520, +2508,348447,Hens,2023,1017,6.95420,5.94495, +2509,411875,Pixies,2024,1047,6.92482,5.94481, +2510,351594,Amalfi: Renaissance,2023,650,7.52272,5.94466,"298130, 351594" +2511,14808,Marvel Heroes,2006,2504,6.35286,5.94391, +2512,8490,Age of Napoleon,2003,1170,6.81844,5.94368, +2513,173536,2GM Tactics,2015,642,7.53514,5.94308,"173536, 293925" +2514,103660,VivaJava: The Coffee Game,2012,1170,6.81666,5.94308, +2515,313698,Monster Expedition,2020,1136,6.84240,5.94295, +2516,227273,Cosmogenesis,2017,753,7.29981,5.94292, +2517,6866,Mus,1745,507,7.95775,5.94285, +2518,192834,Fight for Olympus,2016,1375,6.68562,5.94278, +2519,182704,SteamRollers,2015,1716,6.53792,5.94274, +2520,383109,Dragonkeepers,2023,868,7.11934,5.94273, +2521,143176,Steam Works,2015,1210,6.78678,5.94273, +2522,24509,Gambit Royale,2006,1998,6.45355,5.94258, +2523,262733,Reichbusters: Projekt Vril,2020,714,7.37236,5.94255, +2524,275974,Margraves of Valeria,2020,644,7.52696,5.94238,"275974, 310779" +2525,66855,The Dark Valley,2013,519,7.90830,5.94232, +2526,37734,Cavum,2008,1407,6.66686,5.94207, +2527,8124,Industria,2003,2185,6.40874,5.94205,"8124, 66076" +2528,117663,Piraten Kapern,2012,2709,6.31838,5.94200, +2529,3421,StreetSoccer,2002,1707,6.53785,5.94138,"3421, 102159" +2530,338376,A Gest of Robin Hood,2024,554,7.77774,5.94109, +2531,322709,Ugly Gryphon Inn,2021,1212,6.78011,5.94092, +2532,203102,Buffy the Vampire Slayer: The Board Game,2016,1218,6.77552,5.94076, +2533,4249,Trias,2002,2086,6.42778,5.94058, +2534,171835,Posthuman,2015,1620,6.56695,5.94017,"171835, 244820" +2535,175360,W1815,2015,722,7.34597,5.94004, +2536,206156,SUPERHOT: The Card Game,2017,1699,6.53724,5.93993,"182260, 206156, 242482" +2537,202982,Scrawl,2016,897,7.07123,5.93991,"202982, 311323" +2538,283642,Cowboy Bebop: Space Serenade,2019,702,7.38428,5.93963, +2539,3577,Terrible Swift Sword: Battle of Gettysburg Game,1976,633,7.54122,5.93952,"3577, 9104, 12139, 13266, 431452" +2540,31291,España 1936,2007,749,7.29308,5.93950, +2541,759,Turning Point: Stalingrad,1989,767,7.26108,5.93944, +2542,256067,Cupcake Empire,2018,934,7.02152,5.93850, +2543,300700,Quetzal,2020,1177,6.79786,5.93848, +2544,205498,Round House,2016,909,7.05056,5.93829, +2545,191177,Space Race: The Card Game,2017,1067,6.88578,5.93827,"191177, 265635" +2546,286160,Godspeed,2020,920,7.03676,5.93815, +2547,283242,The Whatnot Cabinet,2021,813,7.18049,5.93793, +2548,27048,Duel in the Dark,2007,1499,6.61159,5.93783,"27048, 140164" +2549,17484,Silent War,2005,678,7.42731,5.93779,"17484, 322198" +2550,55952,Greed Incorporated,2009,989,6.95855,5.93768, +2551,340288,Kids Chronicles: Quest for the Moon Stones,2021,721,7.33799,5.93768,"340288, 399166" +2552,153737,Ships,2015,1125,6.83453,5.93748, +2553,103132,Rapa Nui,2011,1311,6.70706,5.93741,"103132, 233956" +2554,27463,Galactic Emperor,2008,1491,6.61240,5.93672,"27463, 279581" +2555,353543,Lost Seas,2022,999,6.94495,5.93666,"353543, 360503" +2556,129351,The Cave,2012,1891,6.46923,5.93662, +2557,220988,Criss Cross,2017,3120,6.25934,5.93657,"290, 1977, 2704, 6955, 7229, 7476, 8337, 10973, 11508, 162905, 174251, 187869, 212523, 220988, 285229, 322659, 322832, 322840, 322853" +2558,334829,Fall of the Mountain King,2022,666,7.44731,5.93626,"334829, 371956" +2559,324242,Sheepy Time,2021,933,7.01399,5.93600, +2560,278751,In Front of the Elevators,2019,933,7.01366,5.93591, +2561,191538,Leo,2016,1370,6.66960,5.93580, +2562,353942,Santa's Workshop (Second Edition),2023,665,7.44750,5.93579,"235017, 353942" +2563,119012,The Capitals,2013,1082,6.86482,5.93577, +2564,119781,Legacy: Gears of Time,2012,1002,6.93697,5.93516, +2565,279644,Peloponnesian War,2019,885,7.06936,5.93514,"1678, 279644" +2566,186995,Doctor Who: Time of the Daleks,2017,992,6.94702,5.93514, +2567,245928,Pax Emancipation,2018,644,7.49248,5.93485, +2568,177965,Rush & Bash,2015,1218,6.75835,5.93482, +2569,24762,Medici vs Strozzi,2006,1722,6.51672,5.93457, +2570,331328,Unsurmountable,2021,1143,6.81144,5.93451, +2571,323898,Doom Machine,2021,595,7.61782,5.93425, +2572,177249,The Manhattan Project: Chain Reaction,2016,1942,6.44966,5.93406, +2573,2633,DOG,1997,2358,6.35765,5.93353,"2633, 129615, 165587, 206925, 378248, 423427" +2574,23730,Gheos,2006,1798,6.48953,5.93344, +2575,219708,Professor Evil and The Citadel of Time,2017,1503,6.59856,5.93339, +2576,181761,Plums,2015,1654,6.53629,5.93275,"181761, 383450" +2577,312804,Pendulum,2020,2037,6.42257,5.93264, +2578,206490,An Infamous Traffic,2016,725,7.30914,5.93263, +2579,374502,Stranger Things: Upside Down,2023,723,7.31255,5.93253, +2580,246201,Lincoln,2018,1050,6.88267,5.93250, +2581,210900,Topiary,2017,1306,6.69640,5.93249, +2582,159469,Ortus Regni,2014,619,7.54339,5.93231, +2583,35572,Strozzi,2008,1287,6.70675,5.93216, +2584,181260,Burano,2015,1270,6.71677,5.93203, +2585,69130,Next War: Korea,2012,509,7.88889,5.93183,"3985, 69130, 135796" +2586,208480,Wordsy,2017,1170,6.78272,5.93166,"39635, 208480" +2587,251420,Choose Your Own Adventure: House of Danger,2018,3311,6.23193,5.93138, +2588,296577,Red Flag Over Paris,2021,661,7.43642,5.93129, +2589,692,Wizard Kings,2000,1250,6.72677,5.93114, +2590,206509,Bayonets & Tomahawks,2021,458,8.10155,5.93096, +2591,11945,Linq,2004,1075,6.85542,5.93086, +2592,232524,Welcome to Dino World,2017,1231,6.73714,5.93047, +2593,245357,Starship Samurai,2018,915,7.01499,5.93026, +2594,5406,New England,2003,1858,6.46428,5.93019, +2595,18291,Unpublished Prototype,,1077,6.85140,5.93013, +2596,130792,The Enchanted Tower,2012,1502,6.59069,5.93012,"130792, 298397" +2597,234828,Xi'an,2017,794,7.17824,5.92974, +2598,883,Ivanhoe,2000,2627,6.30628,5.92931,"292, 883, 37376, 174065" +2599,370581,Fractured Sky,2024,679,7.38762,5.92927, +2600,226213,Cursed Court,2017,817,7.14091,5.92917, +2601,322703,Death Valley,2021,1163,6.78028,5.92912,"322703, 402453" +2602,159143,HUE,2015,1997,6.42420,5.92884,"158915, 158916, 158917, 158918, 159143, 161383, 164158, 164159, 264897" +2603,250309,Darwin's Choice,2019,705,7.33193,5.92882, +2604,231197,Raxxon,2017,1240,6.72616,5.92868, +2605,20133,FAB: The Bulge,2008,691,7.35624,5.92787,"20133, 233778, 361315" +2606,166158,Dark Tales,2014,1598,6.54528,5.92777, +2607,207062,Dungeons & Dragons: Rock Paper Wizard,2016,1574,6.55429,5.92761,"207062, 298190, 359827" +2608,140519,Myth,2014,1692,6.51023,5.92746,"140519, 323605" +2609,223779,Pocket Mars,2017,1976,6.42403,5.92633,"172244, 223779" +2610,15369,The Devil's Cauldron: The Battles for Arnhem and Nijmegen,2008,425,8.24018,5.92631, +2611,258104,Tribes: Dawn of Humanity,2018,1359,6.64922,5.92605,"210663, 258104" +2612,193210,Dice Stars,2016,1377,6.63899,5.92575, +2613,341048,Free Ride,2021,828,7.11177,5.92572,"341048, 419192" +2614,235,Blackbeard,1991,2542,6.31197,5.92568,"235, 25685" +2615,118610,Santa Cruz,2012,1357,6.64852,5.92539, +2616,287228,Mal Trago,2019,833,7.10224,5.92508, +2617,44,David & Goliath,1997,1739,6.48820,5.92476, +2618,286431,Electropolis,2019,719,7.28654,5.92453, +2619,96792,The Road to Canterbury,2011,1070,6.83928,5.92438, +2620,349963,Age of Comics: The Golden Years,2023,651,7.42590,5.92389, +2621,700,Battle Masters,1992,2447,6.32319,5.92373,"700, 434430, 434546" +2622,182351,Thief's Market,2016,1849,6.45228,5.92369,"182351, 428589" +2623,30804,Song of Blades and Heroes: Revised Edition,2007,494,7.90211,5.92368,"30804, 38562, 162687, 178150, 181520, 182544" +2624,129556,Tapple,2012,1778,6.47163,5.92292,"129556, 422395" +2625,98085,Seven Dragons,2011,3799,6.17950,5.92279,"814, 98085" +2626,236248,Small Islands,2018,1415,6.61164,5.92264, +2627,18500,Sator Arepo Tenet Opera Rotas,2008,1017,6.88116,5.92260,"18500, 181235" +2628,156373,Chimera,2014,917,6.98460,5.92229,"156373, 224830" +2629,38032,Byzanz,2008,1375,6.63050,5.92220, +2630,256513,Animal Kingdoms,2020,935,6.96346,5.92209,"256513, 309698" +2631,287158,Half Truth,2020,991,6.90447,5.92205,"287158, 425299" +2632,255683,Roll for Adventure,2018,1193,6.73745,5.92182, +2633,18985,Battleground,2005,1012,6.88333,5.92182,"18985, 49038, 49050, 49096, 49391, 49392, 49394, 49396, 49397, 49399, 49400, 94342, 159526, 168924, 278914" +2634,311475,Masters of the Universe: The Board Game – Clash for Eternia,2023,511,7.82491,5.92162, +2635,135649,Tales & Games: The Three Little Pigs,2013,1973,6.41427,5.92148, +2636,19854,Federation Commander: Klingon Border,2005,643,7.43355,5.92148,"19854, 21373" +2637,368676,Leaf,2023,638,7.44473,5.92133, +2638,40770,The Golden City,2009,1501,6.56859,5.92123, +2639,215371,CrossTalk,2017,1003,6.88823,5.92069, +2640,178613,Star Trek: Five-Year Mission,2015,1669,6.50126,5.92032, +2641,2228,War of the Ring,1977,1176,6.74452,5.92022,"2228, 2778, 2779, 144845" +2642,188314,Topoum,2016,747,7.21655,5.91989, +2643,168433,The World of Smog: On Her Majesty's Service,2015,1120,6.78450,5.91982, +2644,357746,Disney Sorcerer's Arena: Epic Alliances Core Set,2022,613,7.49644,5.91915, +2645,177079,Die Legenden von Andor: Chada & Thorn,2015,1400,6.60959,5.91908, +2646,19948,Rum & Pirates,2006,1867,6.43682,5.91906,"19948, 409005" +2647,2516,Man O' War,1993,775,7.16604,5.91897, +2648,205477,Vengeance,2018,830,7.08337,5.91896, +2649,344114,Bag of Chips,2021,1662,6.50043,5.91895,"344114, 408704" +2650,218050,Hotshots,2017,908,6.98275,5.91879, +2651,336195,League of Dungeoneers,2022,359,8.60780,5.91853, +2652,206504,The Blood of an Englishman,2016,1526,6.55104,5.91846, +2653,329,Russian Front,1985,727,7.24602,5.91841, +2654,277080,Titans,2021,601,7.52389,5.91831,"277080, 415692" +2655,172546,Parfum,2015,1732,6.47516,5.91819, +2656,230342,InBetween,2017,1396,6.60912,5.91815, +2657,6541,Articulate!,1992,1606,6.51822,5.91793,"6541, 15866, 296449, 409843" +2658,100679,Ultimate Warriorz,2011,1393,6.60954,5.91775,"51367, 100679" +2659,75091,Norenberc,2010,1112,6.78382,5.91758, +2660,323262,Velonimo,2020,1115,6.78129,5.91751,"323262, 398906" +2661,38548,Fast Flowing Forest Fellers,2008,1651,6.50055,5.91738, +2662,371922,Rauha,2023,837,7.06631,5.91701, +2663,257305,SHASN,2021,664,7.36502,5.91685,"257305, 341139" +2664,433,Shark,1987,1399,6.60376,5.91669, +2665,226631,War of the Worlds: The New Wave,2019,875,7.01432,5.91644,"226631, 319800" +2666,296063,Mortum: Medieval Detective,2021,638,7.42157,5.91632,"296063, 351600" +2667,102148,NOIR: Deductive Mystery Game,2012,1771,6.45857,5.91631,"102148, 225449" +2668,3236,WildLife,2002,1376,6.61420,5.91630, +2669,369270,Astra,2022,1249,6.68514,5.91629, +2670,75223,Utopia Engine,2010,979,6.89638,5.91605,"75223, 193105" +2671,109779,Garden Dice,2012,1321,6.64202,5.91585, +2672,635,Formula Motor Racing,1995,2048,6.38401,5.91574,"635, 27167" +2673,401216,Cascadero,2024,694,7.29704,5.91561,"401216, 401217" +2674,169704,Vault Wars,2015,1137,6.75837,5.91546, +2675,339031,The Goonies: Never Say Die,2021,693,7.29828,5.91543, +2676,180198,Rolling America,2015,2356,6.32197,5.91532,"163377, 180198, 187769" +2677,3263,Ukraine '43: The Soviet Summer Offensive Against Army Group South,2000,491,7.86525,5.91509, +2678,14083,Fire in the Sky: The Great Pacific War 1941-1945,1999,602,7.50398,5.91474, +2679,281658,Hats,2019,1048,6.82702,5.91455, +2680,140125,Fallen,2014,510,7.78946,5.91452,"140125, 173259" +2681,33107,Senji,2008,1557,6.52829,5.91437, +2682,211454,VOLT,2018,1095,6.78703,5.91428,"143981, 211454" +2683,140863,Council of Verona,2013,2437,6.30633,5.91423,"140863, 165469, 281038, 286169" +2684,270538,Foothills,2019,924,6.94825,5.91420, +2685,94389,Urbion,2012,990,6.87897,5.91409,"94389, 426994" +2686,275969,Flotilla,2019,760,7.17036,5.91394, +2687,267370,Cities: Skylines – The Board Game,2019,1500,6.55035,5.91387, +2688,192638,Multiuniversum,2016,1562,6.52500,5.91384,"125833, 192638" +2689,4505,Tarot,1425,1030,6.84013,5.91367,"4505, 202821" +2690,149787,Perdition's Mouth: Abyssal Rift,2016,650,7.38171,5.91366,"149787, 235473" +2691,283792,SpaceShipped,2019,848,7.03705,5.91316,"283792, 401505" +2692,272438,Blockbuster,2019,1507,6.54549,5.91312,"272438, 313834, 356752, 359894" +2693,307561,Steam Up: A Feast of Dim Sum,2023,1137,6.75120,5.91310, +2694,260710,Amul,2019,997,6.86849,5.91298, +2695,1038,Tantrix,1991,2222,6.34169,5.91297,"1038, 21611" +2696,257058,Valparaíso,2018,982,6.88220,5.91271, +2697,353150,FYFE,2022,867,7.01042,5.91261, +2698,244099,Herbaceous Sprouts,2019,886,6.98600,5.91236, +2699,367375,Race to the Raft,2023,620,7.44644,5.91233, +2700,341583,Exit: The Game – The Return to the Abandoned Cabin,2021,544,7.66031,5.91224, +2701,75212,Grand Cru,2010,1115,6.76426,5.91196, +2702,256918,Cerberus,2018,1220,6.69032,5.91176, +2703,348602,Illiterati,2023,683,7.30166,5.91158, +2704,341519,The Light in the Mist,2022,432,8.10904,5.91153, +2705,232979,Richard the Lionheart,2017,944,6.91691,5.91146,"166726, 178177, 232979" +2706,208766,13 Clues,2016,1404,6.58666,5.91114, +2707,275284,Arkeis,2023,533,7.69050,5.91114, +2708,205164,Old School Tactical: Volume 2 – West Front 1944/45,2017,394,8.31779,5.91107,"170669, 205164, 281945, 354402, 400831" +2709,287742,TIME Stories Revolution: The Hadal Project,2020,869,7.00185,5.91096, +2710,40831,The Pillars of the Earth: Builders Duel,2009,1535,6.52819,5.91082, +2711,255360,Bargain Basement Bathysphere,2022,701,7.26174,5.91059, +2712,130899,12 Days,2011,1571,6.51337,5.91054, +2713,335869,A Little Wordy,2021,1123,6.75285,5.91022, +2714,5451,Hanafuda,1701,1029,6.82808,5.90968, +2715,257674,Vampire: The Masquerade – Heritage,2020,788,7.10750,5.90930, +2716,20022,Terra Nova,2006,1807,6.43169,5.90925, +2717,343900,Senjutsu: Battle For Japan,2023,672,7.31248,5.90889, +2718,327971,Hippocrates,2022,1061,6.79776,5.90885, +2719,19301,Mesopotamia: Cradle of Civilization,2005,1646,6.48130,5.90863,"19301, 399759" +2720,305752,Gate,2020,632,7.39969,5.90854, +2721,148261,SeaFall,2016,3662,6.16501,5.90800, +2722,125993,France '40,2013,484,7.85114,5.90775,"125993, 404170" +2723,192547,Go Cuckoo!,2016,1207,6.68587,5.90735, +2724,3986,Battle for Germany,1975,691,7.26605,5.90708,"3986, 310880" +2725,171129,Spinderella,2015,1712,6.45494,5.90680, +2726,313073,Salerno '43,2022,429,8.09287,5.90659,"313073, 425676" +2727,108044,Nefarious,2011,2740,6.24858,5.90642, +2728,152237,Pairs,2014,2333,6.30776,5.90616, +2729,139033,Archon: Glory & Machination,2013,947,6.89549,5.90615, +2730,4616,Arimaa,2002,717,7.21187,5.90592, +2731,827,Attila,2000,1668,6.46698,5.90579, +2732,1265,Mystery Rummy: Jekyll & Hyde,2001,1307,6.62191,5.90576, +2733,241491,Who Did It?,2018,1502,6.52823,5.90548, +2734,369282,Rise,2022,794,7.08197,5.90509, +2735,261145,Murder Mystery Party Case Files: Fire in Adlerstein,2018,571,7.54157,5.90508, +2736,315043,Scape Goat,2020,873,6.97488,5.90492, +2737,141090,Kohle & Kolonie,2013,612,7.43084,5.90485, +2738,238094,Mutabo,2017,597,7.46770,5.90455,"238094, 289183, 305053" +2739,267009,Rome & Roll,2020,975,6.86090,5.90431, +2740,142124,Tsukiji,2017,717,7.20361,5.90396, +2741,8924,Dancing Eggs,2003,2539,6.27088,5.90391,"8924, 151228, 254227" +2742,388329,Waypoints,2023,520,7.69080,5.90301, +2743,3139,Goldland,2002,1291,6.62295,5.90295,"3139, 426476" +2744,177197,Ekö,2015,1050,6.78783,5.90283, +2745,176565,Ninja Camp,2016,1250,6.64499,5.90240,"127526, 176565" +2746,185709,Beasts of Balance,2016,1105,6.74181,5.90219,"185709, 275259" +2747,10174,Bitter Woods Deluxe Edition,2003,595,7.46137,5.90217,"747, 10174, 144607" +2748,32341,Cockroach Salad,2007,3688,6.15363,5.90212,"32341, 38391" +2749,23604,The World Cup Game,2006,776,7.09739,5.90210,"23604, 279322" +2750,124380,Ladies & Gentlemen,2013,1730,6.43817,5.90206, +2751,256839,VektoRace,2018,651,7.32647,5.90200, +2752,317582,Mythwind,2023,576,7.51191,5.90199, +2753,186721,Healthy Heart Hospital,2015,725,7.17984,5.90171,"54914, 186721, 399018" +2754,269618,Crystallo,2018,896,6.93559,5.90162, +2755,242520,"All Bridges Burning: Red Revolt and White Guard in Finland, 1917-1918",2020,561,7.55273,5.90156, +2756,99875,Martian Dice,2011,4216,6.12113,5.90147, +2757,302917,King of 12,2020,1334,6.59552,5.90140, +2758,292564,Back to the Future: Dice Through Time,2020,1228,6.65542,5.90140, +2759,1679,Carrier: The Southwest Pacific Campaign – 1942-1943,1990,522,7.67437,5.90124,"1679, 294609" +2760,180602,Game of Trains,2015,2065,6.34943,5.90123,"177503, 180602" +2761,3408,This Accursed Civil War,2002,501,7.74809,5.90113,"3408, 6930, 158491, 275849" +2762,224316,Unlock!: Escape Adventures – The Elite,2017,952,6.87268,5.90101, +2763,391795,Kinfire Delve: Vainglory's Grotto,2023,464,7.89336,5.90079,"391795, 404538, 406174" +2764,124847,1911 Amundsen vs Scott,2011,1212,6.66345,5.90073, +2765,298562,Minigolf Designer,2020,482,7.81695,5.90045, +2766,41569,The Great Fire of London 1666,2010,1608,6.47481,5.90040, +2767,7843,Caesar: Conquest of Gaul,1998,553,7.56960,5.90020,"5833, 7843, 323529" +2768,399941,River of Gold,2024,631,7.36275,5.90010, +2769,1597,Streetcar,1995,1626,6.46744,5.89999, +2770,76674,String Railway,2009,2103,6.33867,5.89995,"76674, 100473, 391720" +2771,12896,La Bataille des Quatre Bras,1991,428,8.05495,5.89985,"5508, 12895, 12896, 12897" +2772,199493,Escape the Room: Secret of Dr. Gravely's Retreat,2016,913,6.90947,5.89967, +2773,231991,Firefly Adventures: Brigands and Browncoats,2018,822,7.01978,5.89928, +2774,213492,Pyramids,2017,1140,6.70699,5.89920, +2775,199223,Bad Bones,2019,1134,6.71123,5.89919, +2776,229370,Rescue Polar Bears: Data & Temperature,2017,753,7.12135,5.89901,"205544, 229370" +2777,354729,Wonder Woods,2022,1194,6.66912,5.89875,"275973, 354729" +2778,257067,Magnastorm,2018,1079,6.75040,5.89848, +2779,35285,Prussian Rails,2008,933,6.88364,5.89846, +2780,360471,Aquamarine,2022,641,7.33216,5.89840, +2781,2604,Compatibility,1996,1374,6.56721,5.89838,"2604, 130053" +2782,393973,Match of the Century,2023,557,7.54611,5.89796, +2783,20734,Corsair Leader,2005,454,7.91866,5.89774,"20734, 312059, 359442, 406721" +2784,154173,7 Ronin,2013,900,6.91709,5.89771, +2785,311823,Nova Aetas Renaissance,2023,432,8.02035,5.89755,"152172, 311823" +2786,98242,Star Trek Deck Building Game: The Next Generation,2011,1683,6.44205,5.89738,"98242, 111502, 122690" +2787,378200,Triqueta,2023,981,6.83162,5.89733, +2788,137776,Praetor,2014,1410,6.54710,5.89723, +2789,42898,Pocket Battles: Celts vs. Romans,2009,1969,6.36223,5.89706,"42898, 66081, 118385, 154125" +2790,300305,Nanga Parbat,2021,1040,6.77709,5.89685, +2791,22398,10 Days in Asia,2007,1190,6.66609,5.89683, +2792,386502,Amritsar: The Golden Temple,2023,552,7.55496,5.89679, +2793,149896,Alien vs Predator: The Hunt Begins,2015,791,7.05373,5.89674,"149896, 220933, 226009" +2794,71655,Wok Star,2010,1343,6.57573,5.89583,"71655, 253149" +2795,368609,Abducktion,2023,778,7.06680,5.89516,"368609, 405877" +2796,2612,18AL,1999,739,7.12858,5.89514, +2797,142325,Kobayakawa,2013,2180,6.31235,5.89470, +2798,222988,Helionox: Deluxe Edition,2017,768,7.08005,5.89466,"176980, 196104, 222988" +2799,319392,Luna Maris,2022,485,7.77041,5.89442, +2800,253652,Combat! Volume 1,2019,374,8.32632,5.89430,"253652, 428934" +2801,252854,Sabotage,2019,674,7.24224,5.89395, +2802,173047,Nevermore,2015,1201,6.64980,5.89367, +2803,258242,Magnate: The First City,2021,559,7.51725,5.89348, +2804,3661,Imperium: Empires in Conflict – Worlds in the Balance,1977,1067,6.74222,5.89287,"2106, 2388, 3600, 3661, 3965, 4317, 6282, 6919, 7774, 14096, 17728" +2805,317511,Tindaya,2022,645,7.29762,5.89280, +2806,6613,"Downtown: Air War Over Hanoi, 1965-1972",2004,444,7.93223,5.89258, +2807,345266,Tales from the Red Dragon Inn,2023,362,8.39420,5.89258, +2808,4090,2nd Fleet: Modern Naval Combat in the North Atlantic,1986,625,7.34072,5.89240, +2809,221848,Normandy: The Beginning of the End,2018,475,7.79806,5.89240,"26250, 35219, 35220, 63868, 177861, 221848, 224481" +2810,149853,Bullfrogs,2015,1091,6.72090,5.89202, +2811,328211,Vegetable Stock,2019,965,6.82880,5.89192,"328211, 427909" +2812,284587,Bloodstones,2023,548,7.54147,5.89188, +2813,339,Quiddler,1998,3762,6.13179,5.89165,"339, 146994, 179203" +2814,85204,Kings of War,2012,410,8.09067,5.89097,"85204, 198670, 210464, 242806, 244121, 288798, 334720, 339775, 360695, 418760" +2815,266448,Imperium: The Contention,2021,436,7.95920,5.89092, +2816,24070,Afrika: 2nd Edition,2006,628,7.32662,5.89087,"5699, 24070" +2817,270168,Tuki,2019,970,6.82034,5.89085, +2818,135243,Triassic Terror,2013,901,6.89062,5.89060, +2819,25213,30 Seconds,2002,1091,6.71616,5.89050,"25213, 146157, 235113" +2820,32165,Darjeeling,2007,1363,6.55107,5.89038, +2821,304510,Pampero,2024,557,7.50623,5.89021, +2822,127095,Origin,2013,1308,6.57829,5.89017, +2823,340541,Wizards of the Grimoire,2022,577,7.44806,5.88978, +2824,36888,After the Flood,2008,948,6.83777,5.88964, +2825,227545,Spy Club,2018,849,6.94739,5.88939, +2826,165662,Haru Ichiban,2014,1232,6.61791,5.88919, +2827,193668,The Red Dragon Inn: Battle for Greyport,2016,713,7.14774,5.88905, +2828,31056,Micro Mutants: Evolution,2007,1492,6.48998,5.88882,"2316, 31056, 100795" +2829,142830,Chaosmos,2015,879,6.90920,5.88882, +2830,381356,Diced Veggies,2023,720,7.13435,5.88877, +2831,22278,12 Thieves,2006,1688,6.41962,5.88859, +2832,320819,Dinner in Paris,2020,1007,6.77874,5.88859, +2833,197178,DIG,2017,1653,6.43070,5.88852,"192824, 192827, 192829, 192830, 195373, 195455, 195456, 197178, 264719" +2834,265204,Pocket Landship,2019,776,7.04304,5.88841,"224303, 265204, 364287" +2835,295949,Adventure Games: The Grand Hotel Abaddon,2020,615,7.34515,5.88838, +2836,834,Chronology,1996,1454,6.50433,5.88830,"834, 13223, 29810, 31525, 43856, 276758, 276759, 306677, 328056, 359739, 395369, 410437, 410438, 410439" +2837,7929,Dungeons & Dragons Miniatures,2003,1207,6.63033,5.88827,"7929, 37184" +2838,125924,Clubs,2013,1214,6.62597,5.88825,"125924, 333280" +2839,342921,The British Way: Counterinsurgency at the End of Empire,2023,415,8.04518,5.88807, +2840,56707,Colonia,2009,1246,6.60653,5.88807, +2841,352823,Galileo Project,2022,620,7.33070,5.88781, +2842,670,Starship Troopers,1976,1286,6.58255,5.88749, +2843,283095,Cosmic Colonies,2020,833,6.96024,5.88741, +2844,349992,Tiger & Dragon,2021,866,6.91934,5.88740, +2845,265537,Weimar: The Fight for Democracy,2023,373,8.27989,5.88693, +2846,305986,Sequoia,2020,1226,6.61477,5.88687, +2847,325096,Skies Above Britain,2022,311,8.75606,5.88683, +2848,25794,Axis & Allies: War at Sea,2007,779,7.03211,5.88678, +2849,361025,Come Together,2022,572,7.44475,5.88641, +2850,132428,BioShock Infinite: The Siege of Columbia,2013,1171,6.64711,5.88624, +2851,214,Café International,1989,3527,6.13864,5.88611,"214, 1324, 27683" +2852,341935,Art Robbery,2021,917,6.85729,5.88608, +2853,7349,The Korean War: June 1950-May 1951,1986,506,7.64598,5.88605,"7349, 297958" +2854,79131,Star Trek: Expeditions,2011,1580,6.44956,5.88600, +2855,256877,Hail Hydra,2018,1648,6.42583,5.88580, +2856,370789,Nova Roma,2024,453,7.84967,5.88568, +2857,3267,Pizarro & Co.,2002,1455,6.49653,5.88544, +2858,96713,Deadwood,2011,2000,6.32882,5.88489, +2859,38872,Jet Set,2008,1044,6.73518,5.88484, +2860,147,Crude: The Oil Game,1974,1132,6.66855,5.88467, +2861,40444,Livingstone,2009,1606,6.43602,5.88419, +2862,402283,Courtisans,2024,639,7.27051,5.88406, +2863,313963,Cloud City,2020,1453,6.49332,5.88388, +2864,464,Billabong,1992,938,6.82641,5.88344, +2865,65673,Masques,2010,1499,6.47280,5.88316, +2866,108831,Kulami,2011,772,7.02758,5.88304, +2867,1419,Pylos,1993,2143,6.29500,5.88287,"1419, 21047" +2868,249814,Crimson Company,2019,664,7.21212,5.88268,"249814, 336292" +2869,285773,Arkham Horror: Final Hour,2019,1485,6.47637,5.88238, +2870,204817,Henchmania,2016,793,6.99458,5.88235,"204817, 366012" +2871,145308,Marrying Mr. Darcy,2014,1728,6.39071,5.88147, +2872,250664,Godtear,2019,426,7.94704,5.88146, +2873,347883,Dandelions,2022,1004,6.75750,5.88134,"157487, 347883" +2874,216974,King's Road,2017,1380,6.51842,5.88121,"280, 4388, 216974" +2875,178550,Spheres of Influence: Struggle for Global Supremacy,2016,440,7.87949,5.88116, +2876,12140,Stalingrad Pocket: 2nd Edition – The Wehrmacht's Greatest Disaster,1996,655,7.22338,5.88113,"2090, 7142, 12140, 16090, 192846" +2877,276004,On the Origin of Species,2019,952,6.80306,5.88067, +2878,21641,Aquädukt,2005,1693,6.39934,5.88067, +2879,34320,Shanghaien,2008,1384,6.51451,5.88043, +2880,56796,Let's Catch the Lion!,2008,1080,6.69295,5.88041,"56796, 141467, 148641" +2881,376747,Deep Dive,2023,1080,6.69254,5.88028, +2882,214996,"Silver Bayonet: The First Team in Vietnam, 1965 (25th Anniversary Edition)",2016,485,7.68751,5.88002,"7994, 214996" +2883,144734,Arcane Academy,2016,1068,6.70058,5.87994, +2884,271512,5211,2019,1932,6.33309,5.87971,"256620, 271512" +2885,1125,Big Shot,2001,900,6.85116,5.87921, +2886,178896,"Last Blitzkrieg: Wacht am Rhein, The Battle of the Bulge",2016,309,8.70476,5.87857, +2887,277030,1824: Austrian-Hungarian Railway,2019,442,7.85332,5.87841,"20646, 277030" +2888,270956,The Court of Miracles,2019,790,6.98044,5.87766, +2889,244330,Scarabya,2018,1366,6.51509,5.87754, +2890,3141,The Bucket King,2002,2049,6.30239,5.87745,"3141, 159209" +2891,189190,9 Lives,2015,718,7.08818,5.87699, +2892,17804,Dungeons & Dragons Basic Game,2004,892,6.85123,5.87680, +2893,255805,Honga,2018,819,6.93645,5.87637, +2894,358737,Leviathan Wilds,2024,433,7.88044,5.87621, +2895,174614,Apotheca,2016,1170,6.61782,5.87617, +2896,337864,Five Parsecs From Home: Solo Adventure Wargaming,2021,324,8.55247,5.87593,"255233, 257357, 301884, 303441, 313106, 313179, 337864, 338070, 359758, 424053, 431097" +2897,15033,Australia,2005,1430,6.48151,5.87560, +2898,37231,Comuni,2008,1075,6.68050,5.87526, +2899,117914,Milestones,2012,1219,6.58471,5.87503, +2900,908,Tally Ho!,1973,3094,6.15422,5.87479, +2901,179071,The Great Dinosaur Rush,2016,750,7.02719,5.87470, +2902,6795,Battleball,2003,2195,6.26818,5.87455, +2903,176803,Overseers,2015,1161,6.61797,5.87429,"155452, 176803" +2904,307844,Atheneum: Mystic Library,2020,736,7.04674,5.87413, +2905,190639,Zany Penguins,2016,1162,6.61639,5.87398, +2906,199182,Commands & Colors Tricorne: The American Revolution,2017,355,8.30167,5.87366,"199182, 286358" +2907,11949,Shifting Sands: The Campaign for North Africa 1940-1943,2006,588,7.33937,5.87362, +2908,422,1835,1990,739,7.03872,5.87334, +2909,153728,Fields of Despair: France 1914-1918,2017,442,7.82062,5.87315, +2910,234429,Raids,2018,1075,6.67384,5.87314, +2911,182120,Histrio,2016,1282,6.54338,5.87272, +2912,295103,Almoravid: Reconquista and Riposte in Spain 1085-1086,2022,381,8.12696,5.87238, +2913,251442,Liberation,2019,871,6.85764,5.87211, +2914,266445,Sherlock: Propagation,2018,966,6.76022,5.87197,"266444, 266445, 284195, 315044" +2915,344105,Anunnaki: Dawn of the Gods,2023,555,7.41793,5.87195,"344105, 364106" +2916,35614,Where There Is Discord: War in the South Atlantic,2009,428,7.87664,5.87195, +2917,122889,Dominare,2012,915,6.80938,5.87187, +2918,3234,Dschunke,2002,1249,6.55742,5.87143,"3234, 179386" +2919,87821,Kingdom of Solomon,2012,776,6.97549,5.87141,"87821, 244452" +2920,309408,Arcana Rising,2022,854,6.87447,5.87136, +2921,20079,Pacific Typhoon,2008,1230,6.56763,5.87129,"259, 20079, 249773" +2922,226176,Fallout: Wasteland Warfare,2018,439,7.82153,5.87117,"226176, 376373, 421766" +2923,258451,Deckscape: The Mystery of Eldorado,2018,1601,6.40494,5.87075, +2924,93538,Battleship Galaxies,2011,1289,6.53370,5.87056, +2925,323707,MOB: Big Apple,2022,879,6.84273,5.87048,"143994, 323707" +2926,118497,Trick of the Rails,2011,1240,6.55950,5.87041, +2927,253574,Crusader Kings,2019,885,6.83412,5.86992, +2928,374895,Sea Dragons,2023,509,7.54282,5.86927, +2929,204602,Kill The Unicorns,2019,860,6.85848,5.86892, +2930,279306,1987 Channel Tunnel,2019,585,7.32339,5.86887, +2931,30932,Lascaux,2007,1692,6.37131,5.86867,"30932, 66982" +2932,6707,Age of Mythology: The Boardgame,2003,3308,6.12534,5.86843, +2933,360617,Findorff,2022,710,7.06521,5.86837, +2934,236305,Combo Fighter,2019,775,6.96360,5.86806,"216157, 236305, 261982, 261984, 261985, 359131, 370233, 376971, 419888" +2935,217934,Napoléon 1806,2017,431,7.83589,5.86773,"217934, 255902" +2936,175695,Minerva,2015,927,6.78270,5.86770, +2937,282171,Trial by Trolley,2020,3738,6.09440,5.86757,"282171, 299815" +2938,344338,Cuphead: Fast Rolling Dice Game,2021,640,7.19240,5.86756, +2939,8521,Whistling Death,2003,331,8.42339,5.86684,"8521, 85147" +2940,2652,Wise and Otherwise,1997,1067,6.65853,5.86640, +2941,356314,Exit: The Game – Advent Calendar: The Silent Storm,2022,401,7.97408,5.86639, +2942,238164,The Faceless,2018,1036,6.68177,5.86626, +2943,289247,Verdun 1916: Steel Inferno,2020,349,8.28696,5.86624, +2944,157323,MBT (Second Edition),2016,608,7.25544,5.86617,"3710, 157323" +2945,331190,Meeples & Monsters: Kickstarter Edition,2022,818,6.89860,5.86612,"331190, 336851" +2946,380,Polarity,1986,1778,6.34104,5.86608, +2947,139245,Dilluvia Project,2015,641,7.18283,5.86593, +2948,12681,Neuland,2004,1463,6.44287,5.86591, +2949,343927,Union Stockyards,2023,528,7.46389,5.86579, +2950,257063,SiegeStorm: SiegeMode,2019,920,6.78200,5.86552,"242343, 257063" +2951,1430,Caesar: Epic Battle of Alesia,1976,670,7.12390,5.86550, +2952,254619,Porto,2019,650,7.16153,5.86526, +2953,142854,Infection: Humanity's Last Gasp,2013,590,7.29281,5.86515, +2954,9,El Caballero,1998,1457,6.44208,5.86469, +2955,236245,Sen,2017,835,6.87121,5.86443, +2956,265285,Queenz: To Bee or Not to Bee,2019,753,6.97921,5.86403, +2957,256509,The One Hundred Torii,2020,666,7.12481,5.86401, +2958,24920,Storm Over Stalingrad,2006,661,7.13374,5.86387, +2959,353304,First Empires,2022,820,6.88678,5.86368, +2960,178044,Small Star Empires,2016,696,7.06891,5.86365, +2961,325414,Happy Little Dinosaurs,2021,2635,6.18111,5.86317,"324941, 325414" +2962,24565,Magical Athlete,2003,1181,6.57233,5.86310, +2963,34599,Toledo,2008,2149,6.25267,5.86301, +2964,397393,Altered,2024,559,7.36098,5.86300, +2965,256705,Seasons of Rice,2019,873,6.82094,5.86266, +2966,181329,Team Play,2015,755,6.97070,5.86266, +2967,137397,Via Appia,2013,1146,6.59230,5.86254, +2968,338,Bargain Hunter,1998,1022,6.68040,5.86240, +2969,254188,Blank Slate,2018,1018,6.68355,5.86238,"254188, 420090" +2970,246150,Arraial,2018,1109,6.61612,5.86237, +2971,60131,Ugg-Tect,2009,1978,6.28494,5.86235, +2972,545,Kaleidos,1994,987,6.70923,5.86235,"545, 24209" +2973,170,Family Business,1982,4301,6.05666,5.86233, +2974,120605,Neuroshima: Convoy,2012,1107,6.61727,5.86230, +2975,359124,The Animals of Baker Street,2022,460,7.67845,5.86218, +2976,186323,Tavarua,2016,617,7.21594,5.86211, +2977,221155,Donning the Purple,2018,684,7.08292,5.86202, +2978,192927,Last Friday,2016,1553,6.39967,5.86199, +2979,268890,Proving Grounds,2019,1027,6.67461,5.86185, +2980,249673,Rolling Ranch,2019,1010,6.68807,5.86178,"249673, 423080" +2981,217990,Stellar Horizons,2020,388,8.01225,5.86172, +2982,173275,Ghostbusters: The Board Game,2015,1414,6.45104,5.86142,"173275, 195275" +2983,351810,Viking See-Saw,2021,661,7.12239,5.86135, +2984,9028,Tongiaki: Journey into the Unknown,2004,2355,6.21462,5.86101, +2985,193512,Kingdom Defenders,2018,471,7.62861,5.86093, +2986,352238,Turncoats,2021,698,7.05000,5.86006, +2987,379005,The Lord of the Rings Adventure Book Game,2023,621,7.19631,5.85980, +2988,413246,Bomb Busters,2024,492,7.54660,5.85977,"323609, 413246" +2989,29109,Dust,2007,1519,6.40608,5.85975, +2990,205057,Word Domination,2017,733,6.98929,5.85912, +2991,218995,Santo Domingo,2017,1120,6.59863,5.85907,"180355, 218995" +2992,195867,Papà Paolo,2016,786,6.91158,5.85874, +2993,302193,Wonder Woman: Challenge of the Amazons,2020,640,7.15129,5.85864, +2994,334379,Doodle Dash,2021,591,7.25773,5.85849, +2995,15826,Triumph of Chaos,2005,445,7.71673,5.85847,"15826, 190462" +2996,43307,Baltimore & Ohio,2009,646,7.13834,5.85843, +2997,193483,Dwar7s Fall,2016,1388,6.45366,5.85825,"193483, 241334, 283198, 286001, 323104" +2998,389820,Burning Banners,2024,340,8.28786,5.85812, +2999,207910,Subatomic: An Atom Building Game,2018,768,6.93277,5.85787, +3000,5942,Mystery Rummy: Al Capone and the Chicago Underworld,2003,837,6.84260,5.85745, +3001,318183,Prehistories,2020,744,6.96463,5.85718, +3002,19,Wacky Wacky West,1991,1966,6.27598,5.85705, +3003,306680,GOLD,2020,971,6.70510,5.85700, +3004,247160,Dinosaur Tea Party,2018,1681,6.34683,5.85697,"2406, 247160" +3005,184522,Dead Last,2016,2151,6.23928,5.85672, +3006,35248,Batavia,2008,1446,6.42535,5.85655,"4106, 35248" +3007,155173,Subdivision,2014,1443,6.42628,5.85645, +3008,359878,Splito,2022,979,6.69625,5.85642,"359878, 368573" +3009,25674,Khronos,2006,1889,6.29093,5.85609, +3010,33468,Zombie in My Pocket,2007,2239,6.22291,5.85607,"33468, 41372" +3011,306637,Resident Evil 3: The Board Game,2021,383,7.99928,5.85587, +3012,381435,General Orders: World War II,2023,479,7.56952,5.85584, +3013,149119,Spirits of the Rice Paddy,2015,1141,6.57487,5.85571,"149119, 247034" +3014,24304,Unspeakable Words,2007,1988,6.26844,5.85570,"24304, 172207" +3015,10788,Hellenes: Campaigns of the Peloponnesian War,2009,534,7.39021,5.85531, +3016,550,Barbarossa,1988,1698,6.33779,5.85522,"550, 172164" +3017,23,Divine Right,1979,613,7.19180,5.85519, +3018,12171,Le Passe-Trappe,2003,1214,6.52955,5.85500,"12171, 41762" +3019,2079,NATO: The Next War in Europe,1983,717,6.99704,5.85498,"2079, 309081" +3020,78954,Mousquetaires du Roy,2010,873,6.79265,5.85489, +3021,131118,Asgard,2012,913,6.75126,5.85481, +3022,1645,War of 1812,1973,693,7.03487,5.85458, +3023,216856,Demon Worker,2016,725,6.98135,5.85424,"216856, 252135" +3024,402679,Rock Hard: 1977,2024,487,7.53198,5.85420, +3025,377420,Mind Space,2023,597,7.22211,5.85406,"296157, 377420" +3026,42142,Doctor Who: Solitaire Story Game,2009,358,8.13480,5.85397,"42142, 233361, 368221" +3027,40107,"Soviet Dawn: The Russian Civil War, 1918-1921",2009,633,7.14360,5.85390,"40107, 321537" +3028,85,Quebec 1759,1972,750,6.94202,5.85381, +3029,253807,The Few and Cursed,2020,635,7.13908,5.85380, +3030,267661,Crossing the Line: Aachen 1944,2019,369,8.06336,5.85350,"5274, 5275, 267661, 327723, 341189, 429478" +3031,161108,Fleet Commander: 1 – Ignition,2014,442,7.69835,5.85349,"161108, 192663" +3032,33003,The Caucasus Campaign,2009,460,7.62541,5.85337, +3033,1710,The Siege of Jerusalem (Third Edition),1989,619,7.16941,5.85319,"1710, 33521" +3034,253719,Getaway Driver,2019,1194,6.53538,5.85313, +3035,225885,Unbroken,2018,2747,6.14943,5.85300, +3036,269041,Calavera,2019,871,6.78758,5.85291, +3037,150484,Secrets of the Lost Tomb,2015,562,7.30084,5.85279,"150484, 379826" +3038,178302,Welcome to Centerville,2017,762,6.92050,5.85272, +3039,37301,Decktet,2008,530,7.38557,5.85228, +3040,222887,Twin It!,2017,931,6.72510,5.85227, +3041,299702,The Lost Code,2022,652,7.09821,5.85218,"171544, 299702" +3042,186701,Burger Up,2016,907,6.74754,5.85208, +3043,163640,Eminent Domain: Microcosm,2014,1745,6.31720,5.85195, +3044,91534,Struggle for Catan,2011,3020,6.12020,5.85162, +3045,5576,Dungeoneer: Tomb of the Lich Lord,2003,3694,6.07080,5.85138,"5576, 8207, 11159, 11161, 16443, 19187, 22544, 28004" +3046,84469,Fürstenfeld,2010,1251,6.49922,5.85135, +3047,84772,"Sun, Sea & Sand",2010,786,6.88078,5.85091, +3048,38194,Cheaty Mages!,2008,2120,6.23261,5.85085, +3049,1583,"Barbarossa: Army Group Center, 1941",1998,377,7.99711,5.85078,"1583, 6928, 10641, 10642" +3050,206939,Do De Li Do,2016,1246,6.50005,5.85073,"206939, 297892" +3051,28025,Wicked Witches Way,2006,1539,6.37638,5.85071, +3052,367385,Tesseract,2023,483,7.52431,5.85047, +3053,349948,Ceres,2023,454,7.63022,5.85031, +3054,256623,Realm of Sand,2018,902,6.74572,5.85018, +3055,444,Escape from the Hidden Castle,1989,2097,6.23531,5.85014, +3056,1339,Dungeon!,1975,5073,6.00933,5.85012,"1339, 1370, 2301, 135672, 209812" +3057,206175,Braintopia,2016,2103,6.23376,5.84992,"203265, 206175, 237630, 251481, 261355, 282485, 297478, 307159, 400942" +3058,294047,Superclub: The football manager board game,2020,433,7.71362,5.84984,"294047, 415707" +3059,314589,Night Parade of a Hundred Yokai,2021,547,7.32463,5.84974, +3060,368465,Qawale,2022,688,7.02173,5.84959, +3061,278783,Almanac: The Dragon Road,2020,611,7.16885,5.84947,"278783, 278784" +3062,63706,11 nimmt!,2010,1740,6.31268,5.84943, +3063,294175,Cheese Thief,2020,608,7.17440,5.84927, +3064,269146,Yōkai,2019,1020,6.63785,5.84887, +3065,403265,Marabunta,2023,488,7.49614,5.84855, +3066,2290,Good & Bad Ghosts,1980,1681,6.32662,5.84845,"1735, 2290" +3067,314421,The Fuzzies,2021,1211,6.51168,5.84827, +3068,136594,Dragon's Hoard,2014,1334,6.45026,5.84818, +3069,31722,Steam over Holland,2007,550,7.30847,5.84817, +3070,302461,Intrepid,2021,605,7.17403,5.84782, +3071,386405,Come Sail Away!,2023,429,7.71787,5.84778, +3072,274349,Pakal,2020,693,7.00505,5.84769, +3073,296238,Sea of Legends,2021,527,7.36922,5.84762, +3074,17104,Canasta,1939,1468,6.39378,5.84759, +3075,235627,Iquazú,2017,793,6.85813,5.84744, +3076,188720,Escape Room in a Box: The Werewolf Experiment,2016,683,7.02039,5.84732, +3077,316750,The Princess Bride Adventure Book Game,2020,997,6.65014,5.84708, +3078,129320,Castle Dice,2013,1044,6.61392,5.84706, +3079,97357,Sunrise City,2012,1094,6.57869,5.84701, +3080,156180,Eggs and Empires,2014,953,6.68623,5.84680, +3081,284229,Butterfly,2019,913,6.72286,5.84675, +3082,94373,Dien Bien Phu: The Final Gamble,2014,297,8.53956,5.84671, +3083,391834,SpellBook,2023,1234,6.49470,5.84666, +3084,382518,Sankoré: The Pride of Mansa Musa,2024,408,7.80403,5.84627, +3085,302734,Master Word,2020,906,6.72685,5.84597,"302734, 351891" +3086,400995,Perspectives,2023,443,7.64506,5.84558,"400995, 427087" +3087,367351,Planet B,2022,596,7.18259,5.84547, +3088,204575,Way of the Panda,2018,869,6.76207,5.84534, +3089,110,Auf Achse,1987,2021,6.23946,5.84531,"110, 1310, 22581, 293524, 367842" +3090,29410,Municipium,2008,955,6.67808,5.84492,"29410, 429765" +3091,255633,Town Builder: Coevorden,2019,682,7.01053,5.84468, +3092,6931,Katamino,1992,1240,6.48570,5.84461,"6931, 29138, 185793" +3093,339289,Charioteer,2022,535,7.32964,5.84445, +3094,358669,12 Chip Trick,2022,814,6.82052,5.84443, +3095,20080,Aqua Romana,2005,1702,6.31124,5.84442, +3096,18803,Black Stories,2004,5702,5.98304,5.84391,"18803, 20750, 154727, 283119" +3097,160559,Simurgh,2015,1001,6.63634,5.84388, +3098,9408,Dos Rios,2004,1427,6.39874,5.84349, +3099,230251,Mint Delivery,2017,2431,6.16906,5.84330, +3100,3243,Wooly Wars,2002,3100,6.09868,5.84326,"3243, 159908, 192814" +3101,73863,Grimoire,2010,1421,6.40028,5.84318, +3102,122891,Courtier,2012,967,6.66137,5.84304, +3103,218395,Sine Tempore,2018,470,7.52591,5.84291, +3104,304324,Dive,2021,1186,6.50858,5.84247, +3105,322010,Enchanted Plumes,2021,522,7.35426,5.84217, +3106,331059,Last Message,2021,976,6.65082,5.84215, +3107,131891,Lost Legends,2013,1467,6.37937,5.84184, +3108,252693,Batman: The Animated Series – Gotham City Under Siege,2018,636,7.08149,5.84179, +3109,194923,Techno Bowl: Arcade Football Unplugged,2017,299,8.47771,5.84168, +3110,7479,WarCraft: The Board Game,2003,2776,6.12537,5.84155, +3111,25574,Gin Rummy,1909,1587,6.33727,5.84125, +3112,1472,Five Crowns,1996,3591,6.06004,5.84099,"1472, 146997, 179204" +3113,171964,The Order of Vampire Hunters,2018,494,7.43325,5.84098,"171964, 351896" +3114,4471,Fist of Dragonstones,2002,2294,6.18272,5.84041,"4471, 247963" +3115,349523,Resident Evil: The Board Game,2023,294,8.50922,5.84017, +3116,2689,British Rails,1984,708,6.94739,5.83991, +3117,277025,Vampire: The Masquerade – CHAPTERS,2023,492,7.43309,5.83982, +3118,332015,Fast & Furious: Highway Heist,2021,704,6.95265,5.83967, +3119,200785,Legendary Inventors,2016,1644,6.31580,5.83947, +3120,341416,High Score,2021,944,6.66899,5.83946, +3121,393165,Inferno,2024,350,8.07629,5.83940, +3122,405537,DroPolter,2023,685,6.98175,5.83926, +3123,29259,Axis & Allies: Guadalcanal,2007,742,6.89396,5.83926, +3124,105624,Poseidon's Kingdom,2011,817,6.79595,5.83894, +3125,298282,Exit: The Game + Puzzle – The Deserted Lighthouse,2020,744,6.88910,5.83876, +3126,257380,Counterfeiters,2018,785,6.83371,5.83863, +3127,321641,Merchants of Magick: A Set a Watch Tale,2021,489,7.43550,5.83853, +3128,101020,PAX,2011,888,6.71754,5.83842, +3129,124622,In Magnificent Style: Pickett's Charge at Gettysburg,2012,423,7.68357,5.83836, +3130,22287,Buccaneer,2006,1863,6.25730,5.83835,"3349, 22287, 342807" +3131,341573,Exit: The Game – The Lord of the Rings: Shadows over Middle-earth,2022,1194,6.49187,5.83829, +3132,261342,Old West Empresario,2019,606,7.12592,5.83827, +3133,42743,Opera,2009,1044,6.58541,5.83818, +3134,10819,Navia Dratp,2004,599,7.14010,5.83809, +3135,782,"Win, Place & Show",1966,869,6.73553,5.83808, +3136,301084,Polynesia,2020,827,6.78019,5.83784, +3137,201846,Expancity,2018,726,6.90877,5.83724, +3138,198832,Legends Untold: Weeping Caves Novice Set,2019,558,7.23117,5.83720,"198832, 216179, 277980, 324671" +3139,75789,Mai-Star,2010,1425,6.38287,5.83713,"75789, 165586" +3140,161880,The Quiet Year,2013,425,7.66381,5.83664, +3141,31133,Ice Flow,2008,1441,6.37526,5.83653, +3142,257668,1906 San Francisco,2018,569,7.20015,5.83639, +3143,282291,Escape Tales: Low Memory,2019,965,6.64039,5.83635, +3144,211940,Level 10,2016,1157,6.50689,5.83633, +3145,25584,If Wishes Were Fishes!,2007,1201,6.48124,5.83596, +3146,2998,Reds! The Russian Civil War 1918-1921,2001,537,7.27873,5.83588, +3147,268493,Mechanica,2020,861,6.73522,5.83573, +3148,311930,Block and Key,2022,681,6.97284,5.83570, +3149,4370,Fische Fluppen Frikadellen,2002,1038,6.58149,5.83562, +3150,333372,Cellulose: A Plant Cell Biology Game,2022,523,7.31585,5.83560, +3151,212404,In Vino Morte,2016,1113,6.53104,5.83556,"177750, 212097, 212098, 212404, 212971, 224505, 229275, 231854, 235441, 262770, 324775, 371921, 372403, 372466, 372613, 376110, 377398, 379634" +3152,193840,The Dragon & Flagon,2016,1383,6.39482,5.83540, +3153,411567,The Gang,2024,495,7.39745,5.83523, +3154,27172,Ponte del Diavolo,2007,1247,6.45529,5.83520, +3155,160968,Homeland: The Game,2015,1150,6.50743,5.83515, +3156,195242,Tanks: Panther vs Sherman Starter Set,2016,554,7.23016,5.83505,"195242, 304620" +3157,234337,Senators,2017,725,6.90048,5.83490, +3158,56758,BasketBoss,2009,1002,6.60571,5.83484,"56758, 358812" +3159,3553,Close Action: The Age of Fighting Sail Vol. 1,1997,397,7.77926,5.83467,"3553, 54620" +3160,129156,"Celles: The Ardennes, December 23-27, 1944",2012,406,7.73539,5.83455, +3161,231553,Jagged Alliance: The Board Game,2019,334,8.14352,5.83435, +3162,269526,Valley of the Vikings,2019,984,6.61684,5.83395,"269526, 406318" +3163,371535,Chicken!,2023,904,6.68603,5.83393, +3164,173441,Bring Your Own Book,2015,850,6.74010,5.83391, +3165,183959,Latice,2015,905,6.68467,5.83381,"183959, 283542" +3166,179933,Agility,2016,669,6.98426,5.83368, +3167,319135,Nightmare Horror Adventures: Welcome to Crafton Mansion,2021,395,7.78128,5.83352, +3168,256669,Scorpius Freighter,2018,701,6.93043,5.83338, +3169,6581,Korea: The Forgotten War,2003,344,8.06831,5.83330, +3170,139562,Rockwell,2013,624,7.06396,5.83299, +3171,234711,Christmas Tree,2017,578,7.16145,5.83289, +3172,17970,Axis & Allies Miniatures,2005,1140,6.50610,5.83276, +3173,3086,The Omega Virus,1992,1221,6.46142,5.83276,"3086, 343373" +3174,276497,La Viña,2019,726,6.88972,5.83268, +3175,371,Mystery Rummy: Murders in the Rue Morgue,1999,859,6.72480,5.83233, +3176,22457,Axis & Allies: Battle of the Bulge,2006,842,6.74155,5.83200, +3177,388339,Planta Nubo,2023,531,7.27409,5.83196, +3178,17,Button Men,1999,1292,6.42464,5.83195,"17, 3339, 6555, 6750, 14867, 18247, 18248, 182412, 226085, 226312" +3179,12632,Goldbräu,2004,1359,6.39494,5.83178, +3180,376893,Cyberion,2023,345,8.04859,5.83157, +3181,170199,Solarius Mission,2016,581,7.14761,5.83149, +3182,197072,High Treason: The Trial of Louis Riel,2016,566,7.18190,5.83137, +3183,29581,Tomb,2008,1688,6.28409,5.83132,"29581, 43320" +3184,178134,London Dread,2016,1019,6.58077,5.83114, +3185,217099,Seeders from Sereis: Exodus,2017,434,7.58943,5.83086, +3186,10653,Pirates of the Spanish Main,2004,2923,6.09192,5.83083,"10653, 31053" +3187,1498,Paydirt,1970,636,7.03043,5.83076,"1498, 3226" +3188,362205,Sleeping Gods: Primeval Peril,2023,425,7.62584,5.83073,"319223, 362205" +3189,2250,Midway,1964,926,6.65455,5.83071, +3190,154443,Madame Ching,2014,1255,6.43825,5.83059, +3191,1459,Sharp Shooters,1994,1312,6.41176,5.83056, +3192,351998,North Africa '41,2023,331,8.13414,5.83054,"4884, 351998" +3193,154880,Voodoo,2014,1662,6.28922,5.83050,"154880, 236827, 352060" +3194,244320,SOS Dino,2018,738,6.86324,5.83042, +3195,11265,Wellington: The Peninsular War 1812-1814,2005,686,6.94094,5.83029, +3196,333981,Bear Raid,2022,676,6.95731,5.83028, +3197,176334,Guns & Steel,2015,1506,6.33569,5.83008,"176334, 197269, 211323" +3198,307971,Fairy Tale Inn,2021,664,6.97659,5.83003, +3199,1552,Illuminati: New World Order,1994,1375,6.38342,5.82992,"1552, 4671" +3200,321539,A Game of Cat & Mouth,2020,834,6.74118,5.82958, +3201,257582,Periodic: A Game of The Elements,2019,822,6.75295,5.82918, +3202,3312,1776: The Game of the American Revolutionary War,1974,1069,6.53949,5.82917, +3203,158886,Stonewall's Sword: The Battle of Cedar Mountain,2015,337,8.07819,5.82864,"158886, 207230, 285436" +3204,252315,The Everrain,2022,452,7.50514,5.82852, +3205,68247,The Mines of Zavandor,2010,1033,6.56174,5.82840, +3206,188178,Draconis Invasion,2016,577,7.14108,5.82835, +3207,69120,Cadwallon: City of Thieves,2010,1775,6.25500,5.82832, +3208,2748,"Thirty Years War: Europe in Agony, 1618-1648",2001,712,6.89167,5.82823, +3209,3154,Nautilus,2002,1474,6.34189,5.82822, +3210,123885,Pick-a-Dog,2012,2000,6.20675,5.82820,"123885, 145186, 146262, 153225" +3211,686,Dr. Jekyll & Mr. Hyde,1997,732,6.86247,5.82820,"686, 369084" +3212,295957,Holi: Festival of Colors,2020,812,6.76053,5.82819, +3213,22198,Great Wall of China,2006,2195,6.17220,5.82776, +3214,234691,Mystery of the Temples,2017,1044,6.55177,5.82770, +3215,275089,Mental Blocks,2019,765,6.81413,5.82727, +3216,3730,Statis Pro Baseball,1971,539,7.22791,5.82727,"3730, 216347" +3217,280834,For Science!,2021,584,7.11970,5.82721, +3218,146149,Quick Cups,2013,1803,6.24573,5.82716,"146149, 158100" +3219,234469,Origami,2017,949,6.62199,5.82704,"234469, 288431" +3220,72667,Mijnlieff,2010,624,7.03545,5.82692, +3221,317321,Darkest Dungeon: The Board Game,2022,991,6.58606,5.82637, +3222,269420,Ragemore,2020,640,7.00148,5.82610, +3223,124590,Call to Glory,2012,1135,6.48868,5.82604,"6137, 124590, 301399" +3224,293,Bamboleo,1996,1548,6.31176,5.82599, +3225,219512,Tudor,2018,744,6.83609,5.82583, +3226,328575,Ragnarocks,2022,623,7.03221,5.82581, +3227,236709,The Tea Dragon Society Card Game,2018,1308,6.40022,5.82574,"236709, 315138" +3228,143075,Luchador! Mexican Wrestling Dice,2013,1262,6.42115,5.82574, +3229,192120,Meeple War,2016,1057,6.53616,5.82559, +3230,135654,New Dawn,2014,768,6.80324,5.82552, +3231,315234,Embarcadero,2021,526,7.25278,5.82546, +3232,4529,Hellas,2002,2143,6.17566,5.82540, +3233,178147,Gwent: Monsters and Scoia'tael,2015,869,6.68861,5.82524,"178147, 209530" +3234,402024,Conservas,2024,391,7.74395,5.82522, +3235,118402,Maharani,2012,1026,6.55599,5.82509, +3236,367490,Hickory Dickory,2023,577,7.12459,5.82505, +3237,257435,Brick & Mortar,2021,476,7.39916,5.82485, +3238,186279,Finska Mini,2013,464,7.43894,5.82470, +3239,84159,Junta: Viva el Presidente!,2010,1345,6.38153,5.82468, +3240,102898,Sewer Pirats,2012,975,6.59270,5.82464, +3241,29687,Leaping Lemmings,2010,1255,6.42122,5.82459, +3242,345969,Aventura Z: Vol 1 Lovecraft,2021,751,6.82154,5.82457,"345969, 371356" +3243,260316,Art Decko,2019,707,6.88348,5.82455, +3244,147623,Friese's Landlord,2013,2001,6.19859,5.82450,"312, 147623" +3245,256802,Fool!,2018,999,6.57358,5.82443,"1942, 256802" +3246,10660,micropul,2004,815,6.74122,5.82404,"10660, 43774, 404205" +3247,144574,Last Chance for Victory: The Battle of Gettysburg,2014,285,8.44592,5.82394,"12134, 144574" +3248,21892,Augsburg 1520,2006,1285,6.40481,5.82370, +3249,17027,Sitting Ducks Gallery,2005,2282,6.15089,5.82369,"17027, 59161, 176071" +3250,239175,Shiver Me Timbers,2021,362,7.88450,5.82344, +3251,327076,Cartaventura: Lhasa,2021,1155,6.46872,5.82321, +3252,21380,Conquest of the Fallen Lands,2005,791,6.76528,5.82308, +3253,142084,Kings of Israel,2014,532,7.22341,5.82297, +3254,253215,Jetpack Joyride,2019,1069,6.51961,5.82288,"253215, 313791, 313861" +3255,299106,Fractal,2023,403,7.66859,5.82251,"299106, 408724" +3256,200726,Rocky Road à la Mode,2017,895,6.65327,5.82238, +3257,116858,Noah,2012,1484,6.32336,5.82233, +3258,33665,Battle Above the Clouds,2010,312,8.20439,5.82220, +3259,2535,Valley of the Mammoths,1991,1205,6.43847,5.82202, +3260,146784,A Touch of Evil: Dark Gothic,2014,638,6.98543,5.82182,"146784, 180942" +3261,93971,Nile DeLuxor,2011,1107,6.49188,5.82164,"40213, 69900, 93971" +3262,216865,Sherman Leader,2017,513,7.26776,5.82161,"150010, 216865, 328734" +3263,137290,Nosferatu,2013,968,6.58775,5.82153, +3264,141,Andromeda,1999,1326,6.38055,5.82141, +3265,204605,Unicornus Knights,2016,661,6.94183,5.82113, +3266,315221,Vampire: The Masquerade – Rivals Expandable Card Game,2021,509,7.27599,5.82104,"315221, 381335" +3267,1209,Pax Britannica: The Colonial Era 1880 to the Great War,1985,807,6.73854,5.82099, +3268,218376,Direwild,2018,464,7.41608,5.82087, +3269,188390,Enemy Coast Ahead: The Doolittle Raid,2017,339,8.00360,5.82078, +3270,299800,Escape Tales: Children of Wyrmwoods,2020,582,7.09149,5.82064, +3271,283748,Dragonscales,2019,896,6.64597,5.82059,"72132, 283748" +3272,3893,Full Thrust,1992,473,7.38215,5.82026, +3273,191071,Mino Dice,2016,735,6.82410,5.81995, +3274,278120,God of War: The Card Game,2019,991,6.56424,5.81981, +3275,326908,La Morada Maldita,2021,529,7.21421,5.81978, +3276,284429,Paris: New Eden,2019,796,6.74556,5.81954, +3277,230498,Deckscape: The Fate of London,2017,2138,6.16400,5.81939, +3278,255363,ArchRavels,2021,678,6.90418,5.81896, +3279,6281,Eketorp,2003,1421,6.33646,5.81885, +3280,232473,Ratland,2017,631,6.98435,5.81882, +3281,384150,Djinn,2023,475,7.36570,5.81857, +3282,147887,Allegiance: A Realm Divided,2015,342,7.96675,5.81850, +3283,200247,Austerlitz 1805: Rising Eagles,2016,281,8.43224,5.81840, +3284,194789,10 Minute Heist: The Wizard's Tower,2017,1279,6.39249,5.81834, +3285,150146,Rattlebones,2014,1121,6.47318,5.81826, +3286,74390,Rolling Freight,2012,774,6.76643,5.81817, +3287,284842,"So, You've Been Eaten.",2022,849,6.68223,5.81806, +3288,159492,The Game of 49,2014,1403,6.34072,5.81795, +3289,130827,Rumble in the Dungeon,2012,1846,6.21483,5.81776,"99437, 130827, 203104" +3290,236301,Living Planet,2019,579,7.08341,5.81769,"236301, 322394" +3291,568,Rage,1983,2037,6.17722,5.81758,"568, 199938" +3292,12004,Candamir: The First Settlers,2004,1956,6.19156,5.81732, +3293,29294,World of Warcraft: The Adventure Game,2008,2102,6.16550,5.81729, +3294,267652,Dungeonology: The Expedition,2019,844,6.68435,5.81725, +3295,131246,Siberia: The Card Game,2012,782,6.75291,5.81720,"110102, 131246" +3296,335240,Vengeance: Roll & Fight – Episode 1,2022,546,7.15649,5.81704,"335240, 335664" +3297,8147,Maka Bana,2003,852,6.67524,5.81699, +3298,195194,Horizons,2018,759,6.77952,5.81677, +3299,234450,Ruthless,2018,578,7.08098,5.81677, +3300,1036,Speculation,1992,864,6.66232,5.81672, +3301,160669,Town Center (Fourth Edition),2014,990,6.55410,5.81654,"124545, 160669" +3302,327778,ito,2019,554,7.13406,5.81644,"327778, 411982" +3303,324513,Batman: The Dark Knight Returns – The Game,2022,403,7.62768,5.81643, +3304,315059,Dream Crush,2021,564,7.11048,5.81640, +3305,19184,Lectio,2004,722,6.82688,5.81630, +3306,231665,Fast Forward: FORTRESS,2017,1642,6.26018,5.81610, +3307,136440,Canterbury,2013,654,6.92974,5.81581, +3308,37208,Court of the Medici,2009,918,6.60937,5.81580, +3309,403468,AQUA: Biodiversity in the Oceans,2024,480,7.33266,5.81566, +3310,23142,Mag·Blast: Third Edition,2006,2858,6.07037,5.81562,"944, 6209, 23142" +3311,241164,Jurassic Snack,2018,1284,6.38264,5.81562,"4327, 241164, 297666" +3312,23995,No Peace Without Spain!: The War of the Spanish Succession 1702-1713,2011,414,7.57362,5.81553,"23995, 203087, 230040, 340279" +3313,368,Relationship Tightrope,1999,1632,6.26092,5.81528,"368, 83197" +3314,237728,Ravine,2017,1244,6.39986,5.81526, +3315,131449,Captains of Industry,2015,579,7.07084,5.81517, +3316,202942,Sicily II,2016,334,7.99181,5.81516,"1582, 202942" +3317,131682,City of Gears,2012,993,6.54720,5.81513, +3318,266064,Trudvang Legends,2022,622,6.98338,5.81503, +3319,234877,Sebastian Fitzek Safehouse,2017,1122,6.46270,5.81502,"234877, 302212" +3320,202819,Gnomopolis,2018,514,7.22720,5.81473, +3321,95,Igel Ärgern,1990,1162,6.43950,5.81472,"95, 454, 60056" +3322,130680,iKNOW,2012,1435,6.32061,5.81471,"41955, 85429, 93289, 130680, 182135, 182136, 182137, 184987, 284985, 292556, 296698, 386469, 415968" +3323,4154,Yu-Gi-Oh! Trading Card Game,1999,1789,6.22018,5.81457, +3324,383790,Romi Rami,2023,607,7.00858,5.81427, +3325,4556,Patton's Best,1987,791,6.73027,5.81414, +3326,300,Tutankhamen,1993,1775,6.22225,5.81407,"300, 286667" +3327,71973,Crows,2010,1000,6.53834,5.81400,"71973, 234438" +3328,346057,Don't Go In There,2022,872,6.64432,5.81391, +3329,3895,Silent Death,1990,550,7.13027,5.81387,"3895, 27265, 27266" +3330,5684,18EU,2001,423,7.52541,5.81385, +3331,180231,OctoDice,2015,1223,6.40546,5.81372, +3332,183578,Wing Leader: Supremacy 1943-1945,2016,314,8.11764,5.81362, +3333,178591,Lunarchitects,2016,502,7.25473,5.81361, +3334,7804,Dracula,2003,1793,6.21704,5.81359, +3335,233006,Carthago: Merchants & Guilds,2017,886,6.62900,5.81330,"73650, 233006" +3336,1585,"Burma: The Campaign in Northern Burma, 1944",1999,357,7.83690,5.81319, +3337,1447,1841: Railways in Northern Italy,1994,338,7.94893,5.81297, +3338,240905,Death Valley: Battles for the Shenandoah,2019,411,7.56740,5.81264,"5939, 13885, 240905" +3339,289550,Lions of Lydia,2021,668,6.89100,5.81236, +3340,3518,Napoleon in Europe,2001,815,6.69636,5.81233,"3518, 185241" +3341,266140,Unforgiven: The Lincoln Assassination Trial,2021,399,7.61706,5.81218, +3342,293275,Flyin' Goblin,2020,689,6.85666,5.81202, +3343,19650,Il Principe,2005,1224,6.39951,5.81183, +3344,166854,Dark Domains,2019,427,7.49454,5.81153, +3345,32114,Merchants,2007,958,6.56147,5.81147,"609, 32114" +3346,32014,Confucius,2008,726,6.80112,5.81147, +3347,32838,The Battle for Normandy,2009,351,7.85826,5.81144,"32838, 95908, 341336" +3348,8668,Igloo Pop,2003,1643,6.24814,5.81121,"988, 8668" +3349,173504,"The Greatest Day: Sword, Juno, and Gold Beaches",2015,261,8.55637,5.81066,"173504, 368197" +3350,1899,13 Dead End Drive,1993,3327,6.02602,5.81064,"1899, 4953" +3351,96613,Alcatraz: The Scapegoat,2011,1507,6.28592,5.81055, +3352,233973,Huns,2018,822,6.68159,5.81043,"229516, 233973" +3353,253756,Gorus Maximus,2018,1199,6.40683,5.81014,"253756, 305838" +3354,34496,World of Warcraft: Miniatures Game,2008,812,6.69086,5.81005, +3355,341512,In the Ashes,2022,281,8.35505,5.81002, +3356,354273,Old London Bridge,2022,539,7.13618,5.80990, +3357,220780,Fairy Tile,2018,1419,6.31365,5.80989, +3358,353905,Bureau of Investigation: Investigations in Arkham & Elsewhere,2022,504,7.22794,5.80984, +3359,169341,Birds of a Feather,2015,775,6.73167,5.80974,"169341, 358000" +3360,249689,Sovereign Skies,2020,576,7.05015,5.80973, +3361,72809,Barbarossa,2010,739,6.77604,5.80961,"72809, 86167" +3362,40214,Bombay,2009,1872,6.19044,5.80930, +3363,164865,B-Sieged: Sons of the Abyss,2016,1011,6.51467,5.80919, +3364,29602,Okko: Era of the Asagiri,2008,799,6.70120,5.80902, +3365,3452,Emerald,2002,1365,6.33118,5.80899, +3366,364792,Zombicide: Gear Up,2022,549,7.10641,5.80882, +3367,235454,Ligny 1815: Last Eagles,2017,290,8.26414,5.80869,"235454, 254239" +3368,299733,Sanctuary: The Keepers Era,2021,515,7.19065,5.80856,"299733, 333486, 333487" +3369,378356,The A.R.T. Project,2023,535,7.13864,5.80849, +3370,217949,A Column of Fire,2017,994,6.52389,5.80833, +3371,217576,Hellenica: Story of Greece,2019,375,7.70491,5.80832, +3372,359962,Redwood,2023,492,7.25072,5.80776,"359962, 408885" +3373,260410,Horizon Zero Dawn: The Board Game,2020,646,6.90645,5.80770, +3374,377515,Mind Up!,2023,801,6.69349,5.80761, +3375,269489,The Mission: Early Christianity from the Crucifixion to the Crusades,2020,340,7.89361,5.80748, +3376,3632,Foodie Forest,2002,1257,6.37172,5.80747, +3377,341245,Garden Nation,2021,741,6.76355,5.80720, +3378,209641,Warpgate,2019,463,7.33769,5.80719, +3379,159575,Dracula's Feast,2017,676,6.85453,5.80698,"159575, 269847, 301935" +3380,256729,Wacky Races: The Board Game,2019,930,6.56807,5.80688, +3381,219232,Ilôs,2017,791,6.70179,5.80687, +3382,345088,Founders of Teotihuacan,2022,665,6.87123,5.80684, +3383,232830,Shifty Eyed Spies,2017,774,6.72058,5.80665, +3384,167298,Sheep & Thief,2014,869,6.62060,5.80663, +3385,227127,Europe in Turmoil: Prelude to the Great War,2018,326,7.97236,5.80614,"227127, 326019" +3386,191073,Vampire Queen,2016,1448,6.29377,5.80611,"1974, 11104, 37777, 191073" +3387,199780,Looterz,2016,830,6.65616,5.80592,"199780, 258636" +3388,1800,Mythos,1996,852,6.63388,5.80584, +3389,374595,Kelp: Shark vs Octopus,2024,361,7.75867,5.80564, +3390,2981,Breaking Away,1991,462,7.33072,5.80547, +3391,374562,Star Wars: Shatterpoint,2023,306,8.10767,5.80540, +3392,253399,Journal 29: Interactive Book Game,2017,626,6.93057,5.80535,"253399, 344051" +3393,230852,BONK,2017,823,6.66086,5.80526,"167604, 230852" +3394,353411,Wreckland Run,2022,487,7.25051,5.80514, +3395,194232,Rick and Morty: Total Rickall Card Game,2016,2352,6.10376,5.80481, +3396,214296,Tenkatoitsu,2016,290,8.22897,5.80476,"39189, 214296" +3397,18289,Key Largo,2005,889,6.59553,5.80475, +3398,14080,The Mighty Endeavor,2005,451,7.36310,5.80469, +3399,150783,Antidote,2013,1488,6.27633,5.80441, +3400,204675,The Arrival,2016,1199,6.38987,5.80434,"5869, 204675" +3401,313919,Aliens: Bug Hunt,2020,466,7.31069,5.80431, +3402,121041,Pluckin' Pairs,2012,752,6.73768,5.80428, +3403,1830,Nippon Rails,1992,638,6.90438,5.80427, +3404,6719,Liberty: The American Revolution 1775-83,2003,514,7.16934,5.80418, +3405,176146,The Lamps are Going Out: World War I,2016,386,7.62044,5.80396, +3406,10183,Napoleon at Leipzig,1979,375,7.67247,5.80378,"10183, 135840, 231815" +3407,97803,Penny Arcade: The Game – Gamers vs. Evil,2011,1037,6.47893,5.80359,"97803, 115288" +3408,334307,Clash of Decks: Starter Kit,2020,1219,6.37786,5.80351,"308500, 324092, 324211, 324478, 325021, 334307, 367089, 368082, 368083, 369759, 369760, 369763, 369764, 369765, 381436, 381438, 381439, 381440" +3409,85424,La Bataille de la Moscowa (Third Edition),2011,280,8.30267,5.80337,"15274, 85424" +3410,168230,The Supershow,2014,304,8.10530,5.80336, +3411,21754,Nottingham,2006,1552,6.25412,5.80331, +3412,252297,OrcQuest WarPath,2023,273,8.36593,5.80328, +3413,275469,Floor Plan,2020,1087,6.44659,5.80319,"275469, 344614" +3414,242324,Stew,2018,832,6.64250,5.80284, +3415,145601,Deadline,2017,821,6.65347,5.80277, +3416,123160,Battle For Souls,2013,682,6.82586,5.80254, +3417,137095,The Witches,2013,1984,6.15419,5.80249, +3418,368463,Rebuilding Seattle,2023,378,7.64760,5.80237,"368463, 410832" +3419,25420,Ur,2006,1031,6.47734,5.80189, +3420,370621,Hollywood 1947,2023,506,7.17783,5.80183, +3421,5651,The Longest Day,1979,489,7.22407,5.80155, +3422,163056,Musée,2014,686,6.81539,5.80151,"163056, 229965" +3423,294448,Tea for 2,2020,896,6.57644,5.80114, +3424,201509,Dead Man's Doubloons,2018,855,6.61353,5.80112, +3425,4985,Warmaster,2000,481,7.24426,5.80095, +3426,296483,The Great Race,2020,365,7.70274,5.80092,"296483, 337889" +3427,38318,Start Player,2008,1134,6.41267,5.80079,"24996, 38318, 159633" +3428,103339,Reluctant Enemies: Operation Exporter,2014,323,7.94892,5.80079, +3429,206754,Burke's Gambit,2016,726,6.75640,5.80076, +3430,191989,Next War: Poland,2017,293,8.16809,5.80070, +3431,96026,18OE: On the Rails of the Orient Express,2014,304,8.08043,5.80046,"96026, 165740" +3432,118410,Dirty Pig,2012,2058,6.13722,5.80045,"118410, 161553, 217379, 244919, 377591" +3433,63632,Jerusalem,2010,789,6.67841,5.80033, +3434,5419,Magna Grecia,2003,901,6.56900,5.80026, +3435,400602,Civolution,2024,324,7.93737,5.80018, +3436,244946,Brook City,2019,465,7.28928,5.80017, +3437,184700,In the Name of Odin,2016,827,6.63702,5.80006,"184700, 205960" +3438,148205,Penny Press,2015,1097,6.43098,5.80004, +3439,313129,18MS: The Railroads Come to Mississippi,2020,526,7.11466,5.79981,"2583, 183212, 313129" +3440,207753,Arena: For the Gods!,2017,1072,6.44489,5.79979, +3441,53168,Triumvirate,2009,803,6.66083,5.79975, +3442,306482,I C E,2023,465,7.28613,5.79964,"306482, 417219, 430293" +3443,247360,Junk Orbit,2018,639,6.88129,5.79963, +3444,322697,Revolver Noir,2021,474,7.25772,5.79961, +3445,159059,The King's Abbey,2016,642,6.87593,5.79956, +3446,125943,Corporate America,2013,501,7.17802,5.79941, +3447,8946,Da Vinci Code,2002,2150,6.12060,5.79938,"8946, 409869" +3448,263155,One Key,2019,1012,6.48159,5.79932, +3449,36424,"Gulf, Mobile & Ohio",2008,523,7.11839,5.79911,"36424, 202227" +3450,63539,Lupus in Tabula,2001,994,6.49310,5.79906,"63539, 400816" +3451,163920,Gaïa,2014,1778,6.18654,5.79883, +3452,38797,Uruk: Wiege der Zivilisation,2008,815,6.64407,5.79868,"38797, 164027" +3453,309917,Hidden Games Crime Scene: The Midnight Crown,2020,321,7.94423,5.79858, +3454,17394,"The Burning Blue: The Battle of Britain, 1940",2006,364,7.69061,5.79856, +3455,230765,Side Effects,2017,691,6.79445,5.79838,"230765, 420737" +3456,123576,Sheepland,2012,972,6.50618,5.79828, +3457,217609,The Wars of Marcus Aurelius,2018,374,7.63783,5.79825,"217609, 314672" +3458,57163,Gonzaga,2009,867,6.59057,5.79792, +3459,192673,Martians: A Story of Civilization,2016,964,6.51025,5.79775, +3460,254888,High Rise,2020,488,7.20493,5.79770, +3461,165,Black Box,1977,1010,6.47567,5.79710,"165, 31853" +3462,174805,Champions of Hara,2018,493,7.18669,5.79700, +3463,293972,Loot of Lima,2020,611,6.91768,5.79687,"19765, 293972" +3464,281455,Shelfie Stacker,2021,549,7.04114,5.79627, +3465,374541,Numbsters,2023,436,7.36228,5.79603, +3466,37696,The Stars Are Right,2008,1409,6.28035,5.79590, +3467,104994,City Tycoon,2011,1003,6.47637,5.79588, +3468,329484,Pyramido,2023,514,7.12347,5.79583, +3469,99630,Rolling Stock,2011,433,7.37030,5.79558,"99630, 298154" +3470,154634,Yardmaster,2014,2640,6.05375,5.79552,"154634, 158742, 249414" +3471,148271,Metallum,2013,581,6.96854,5.79546, +3472,243696,Race to the New Found Land,2018,654,6.83731,5.79540, +3473,198517,Consumption: Food and Choices,2019,451,7.30556,5.79528,"198517, 424765" +3474,257987,The Towers of Arkhanos,2019,773,6.67632,5.79525, +3475,342062,Artisans of Splendent Vale,2022,329,7.86498,5.79520, +3476,338467,Zuuli,2022,632,6.87175,5.79500,"338467, 423270" +3477,175878,504,2015,1715,6.19168,5.79495, +3478,381117,Doggerland,2023,337,7.81261,5.79479, +3479,274426,Pangea,2019,613,6.90369,5.79470, +3480,255175,Mutants,2019,490,7.18167,5.79463, +3481,247182,Flashpoint: South China Sea,2022,408,7.45964,5.79451, +3482,254088,Gravity Superstar,2018,778,6.66664,5.79423, +3483,254976,Skylands,2018,715,6.74232,5.79395,"159910, 254976" +3484,1717,"Freedom in the Galaxy: The Star Rebellions, 5764 AD",1979,727,6.72540,5.79365, +3485,19363,Havoc: The Hundred Years War,2005,769,6.67450,5.79365, +3486,341166,The Plum Island Horror,2023,346,7.75045,5.79352, +3487,21287,Bison: Thunder on the Prairie,2006,1372,6.28675,5.79342, +3488,206206,Escape from 100 Million B.C.,2017,683,6.78264,5.79301, +3489,37728,Rock the Beat,2008,1450,6.25913,5.79300, +3490,342010,The Golden Ticket Game,2021,668,6.80459,5.79295, +3491,10934,The Game of Things,2002,2638,6.04862,5.79268,"10934, 182090, 209488, 352292, 353741" +3492,65200,Asteroyds,2010,1234,6.33914,5.79245, +3493,374145,Dungeon Pages: Core Set,2023,320,7.90041,5.79242,"374145, 378013, 404540, 404544, 406918, 430010, 433892" +3494,2073,Sixth Fleet: Modern Naval Combat in the Mediterranean,1985,552,7.01347,5.79223, +3495,178940,Push It,2015,508,7.11882,5.79216, +3496,163172,Waterloo 1815: Fallen Eagles,2015,271,8.27860,5.79211,"163172, 373489" +3497,312512,The Transcontinental,2022,485,7.18060,5.79196, +3498,275589,Pocket Detective,2019,761,6.67603,5.79173,"275589, 314395, 322148, 360090" +3499,337961,Transformers Deck-Building Game,2021,544,7.02827,5.79163,"337961, 358561, 379773" +3500,224271,Yogi,2017,965,6.48848,5.79155,"160012, 183404, 224271, 235901, 257841, 425763" +3501,109969,Mutant Meeples,2012,836,6.59582,5.79150, +3502,206299,Eschaton,2016,474,7.20940,5.79138, +3503,539,Dampfross,1979,1218,6.34317,5.79136,"460, 539, 25312, 48159" +3504,221599,Tiny Ninjas: Original,2019,438,7.32526,5.79127, +3505,250467,Red Alert: Space Fleet Warfare,2019,338,7.77607,5.79088, +3506,265430,Elekt,2019,375,7.58000,5.79085, +3507,382229,Disney Animated,2023,426,7.36505,5.79073, +3508,383459,Aurum,2023,510,7.10549,5.79069, +3509,66424,Dungeon Run,2011,1553,6.22123,5.79019, +3510,307170,El Valle Secreto,2021,397,7.47427,5.78988, +3511,46807,Infinite City,2009,1831,6.15455,5.78964, +3512,413260,Botanicus,2024,422,7.37131,5.78939, +3513,265524,Ramen Fury,2019,1671,6.18854,5.78925, +3514,216578,Half-Pint Heroes,2017,777,6.64769,5.78918, +3515,125050,Pay Dirt,2014,740,6.69049,5.78914,"125050, 316177" +3516,403,Elk Fest,1999,1878,6.14423,5.78911, +3517,121764,Plato 3000,2012,724,6.71003,5.78905,"42057, 121764, 199790, 268962" +3518,358284,Rome in a Day,2023,540,7.02301,5.78890, +3519,58798,Cardcassonne,2009,1316,6.29389,5.78839, +3520,91189,Ristorante Italia,2011,659,6.79760,5.78833, +3521,4173,Anzio: The Struggle for Italy – 1943-1945,1969,669,6.78202,5.78822,"4173, 156661" +3522,225163,Reworld,2017,782,6.63828,5.78818, +3523,7742,Confrontation,2000,541,7.01644,5.78808,"7742, 15164, 30991" +3524,257006,Homebrewers,2019,502,7.11162,5.78804, +3525,147431,Cubist,2014,715,6.71722,5.78801, +3526,181523,Snowblind: Race for the Pole,2016,660,6.79459,5.78800,"181523, 397599" +3527,227893,Smile,2017,827,6.59110,5.78794, +3528,186904,The Champion of the Wild,2018,585,6.92243,5.78775,"186904, 295503" +3529,20295,WeyKick,2001,570,6.95153,5.78760,"20295, 26315" +3530,119632,IOTA,2012,1924,6.13212,5.78746, +3531,140457,Ultimate Werewolf: Inquisition,2013,942,6.49130,5.78743, +3532,1720,Dragon Pass,1980,525,7.05019,5.78740,"1720, 7966, 10884, 23605, 360065" +3533,73313,Elements,2010,693,6.74371,5.78732, +3534,13301,Caribbean,2004,1596,6.20158,5.78690,"13301, 165016" +3535,356313,Exit: The Game – The Professor's Last Riddle,2022,335,7.76198,5.78684, +3536,357271,San Francisco,2022,704,6.72626,5.78673, +3537,420077,The Mandalorian: Adventures,2024,386,7.49896,5.78654, +3538,321596,P'achakuna,2021,592,6.90192,5.78630, +3539,141932,The Agents,2013,1542,6.21453,5.78627, +3540,269257,Chartae,2019,950,6.48132,5.78625, +3541,359893,Sounds Fishy,2022,639,6.81926,5.78617, +3542,255455,Captains of the Gulf,2018,595,6.89525,5.78609, +3543,281260,Veilwraith: A Veil Odyssey Game,2021,355,7.64413,5.78596,"281260, 378629, 401639" +3544,347767,Ostia,2022,344,7.70341,5.78594, +3545,541,Das Motorsportspiel,1995,390,7.47691,5.78589, +3546,19947,Ark,2005,1404,6.25496,5.78564, +3547,237251,Biosphere,2017,414,7.37698,5.78560, +3548,329593,Settlement,2021,506,7.08731,5.78555, +3549,270233,Heul doch! Mau Mau,2019,750,6.66347,5.78546,"270233, 366753" +3550,282776,Tumble Town,2021,579,6.92203,5.78531, +3551,232829,The Wizard Always Wins,2017,784,6.62433,5.78520, +3552,15157,Amazonas,2005,1350,6.27240,5.78515, +3553,133285,Tin Goose,2016,554,6.97215,5.78509, +3554,29805,Petits Meurtres & Faits Divers,2007,585,6.90916,5.78507,"29805, 143403" +3555,127784,Suspend,2012,1529,6.21514,5.78506,"127784, 172940" +3556,110524,"Goblins, Inc.",2012,1126,6.36897,5.78503, +3557,35669,Bastogne: Screaming Eagles Under Siege 18-27 Dec '44,2009,415,7.36927,5.78501, +3558,364994,Tidal Blades: Banner Festival,2022,541,6.99966,5.78489, +3559,4050,Fortress Europa,1978,677,6.75544,5.78485,"4050, 327386" +3560,392,Brawl,1999,1184,6.33945,5.78472, +3561,275996,Shaolia: Warring States,2020,465,7.19717,5.78472, +3562,104573,Spectaculum,2012,866,6.54235,5.78450, +3563,329089,A Most Fearful Sacrifice: The Three Days of Gettysburg,2022,224,8.71429,5.78450, +3564,40603,Incursion,2009,373,7.54386,5.78448, +3565,1496,Imperium Romanum II,1985,695,6.72849,5.78443,"1496, 8740, 263301" +3566,265489,Gettysburg,2018,415,7.36382,5.78418,"265489, 273436, 420464" +3567,367280,1998 ISS,2022,419,7.34816,5.78409, +3568,410991,Looot,2024,502,7.08817,5.78384, +3569,173115,Monarch,2015,709,6.70735,5.78384, +3570,408547,Things in Rings,2024,445,7.25459,5.78374, +3571,67181,PIX,2012,779,6.62395,5.78374, +3572,90009,Eselsbrücke,2011,542,6.99083,5.78364,"90009, 386470" +3573,171226,Starfighter,2015,722,6.68949,5.78355, +3574,31954,"A Victory Denied: Crisis at Smolensk, July-September, 1941",2009,436,7.28334,5.78348, +3575,257733,Fine Sand,2018,793,6.60742,5.78331, +3576,13855,"Carthage: The First Punic War – The Ancient World, Vol. II",2005,453,7.22468,5.78309,"6202, 13855, 396053" +3577,1275,221B Baker Street: The Master Detective Game,1975,3314,5.97992,5.78296,"1275, 2119" +3578,651,Zero Down,1998,947,6.47216,5.78294, +3579,310442,Feierabend,2020,489,7.11755,5.78292, +3580,935,Australian Rails,1994,550,6.96937,5.78289, +3581,295565,Deckscape: Escape from Alcatraz,2020,627,6.82327,5.78280, +3582,261525,Untamed: Feral Factions,2019,419,7.33686,5.78236,"261525, 355978" +3583,299371,The Emerald Flame,2021,256,8.32532,5.78222, +3584,911,Empires of the Middle Ages,1980,470,7.16710,5.78217, +3585,230650,Table Battles,2017,527,7.01725,5.78216,"216300, 230650, 305221, 389112" +3586,292811,American Bookshop,2019,495,7.09626,5.78202, +3587,1883,Cataphract,1999,358,7.59883,5.78197,"1883, 9192" +3588,154519,Time Barons,2014,354,7.61827,5.78182, +3589,3548,Assault on Hoth: The Empire Strikes Back,1988,542,6.98121,5.78181, +3590,181254,Attack on Titan: The Last Stand,2017,850,6.54516,5.78142, +3591,3855,Crimson Skies,1998,747,6.65003,5.78131,"3855, 6551" +3592,229632,Unlock!: Escape Adventures – Fifth Avenue,2017,658,6.76732,5.78127, +3593,230089,Okanagan: Valley of the Lakes,2017,787,6.60569,5.78127, +3594,352596,Ancient Realm,2023,429,7.29238,5.78106, +3595,226255,1920 Wall Street,2017,678,6.73659,5.78089, +3596,246567,Big Monster,2018,640,6.79311,5.78084, +3597,80979,Fortuna,2011,931,6.47603,5.78065, +3598,8552,Corsari,2003,1034,6.40664,5.78061, +3599,269967,EXIT: Das Spiel – Die Känguru-Eskapaden,2019,597,6.86395,5.78042, +3600,376472,Noobs in Space,2023,477,7.13637,5.78039, +3601,2876,Mage Knight Dungeons,2002,710,6.69065,5.78022, +3602,229956,"Fort Sumter: The Secession Crisis, 1860-61",2018,918,6.48430,5.78020, +3603,394889,Cabanga!,2023,601,6.85562,5.78019, +3604,41636,Abandon Ship,2008,1144,6.34455,5.77998, +3605,5740,Strat-O-Matic Pro Football,1968,436,7.26047,5.77985, +3606,267333,Goetia: Nine Kings of Solomon,2021,333,7.71815,5.77981, +3607,2077,Hell's Highway: Operation Market Garden,1983,407,7.36572,5.77981, +3608,39534,Paper Safari,2008,725,6.66994,5.77977,"39534, 299573" +3609,147747,Super Fantasy: Ugly Snouts Assault,2013,649,6.77299,5.77951,"147747, 165719" +3610,154510,Shadows of Malice,2014,471,7.14732,5.77932, +3611,311031,Oh! Meow! Bow!,2020,532,6.98915,5.77907, +3612,148291,Trieste,2013,792,6.59121,5.77889, +3613,342343,Birdwatcher,2022,469,7.14903,5.77862, +3614,302413,Steamwatchers,2021,373,7.50005,5.77839, +3615,119337,Aeroplanes: Aviation Ascendant,2012,807,6.57372,5.77827, +3616,287638,Roméo & Juliette,2020,498,7.06705,5.77824, +3617,28396,It's Alive!,2007,1211,6.30819,5.77822,"20920, 28396, 286064" +3618,24878,AT-43 Initiation Set: Operation Damocles,2006,550,6.94480,5.77816, +3619,281094,Plunder: A Pirate's Life,2020,571,6.90173,5.77813, +3620,1452,Mhing,1982,715,6.67442,5.77789, +3621,43578,Monster Chase,2009,1223,6.30198,5.77787, +3622,377716,Couture,2023,566,6.91008,5.77782,"363669, 377716" +3623,4854,7th Fleet: Modern Naval Combat in the Far East,1987,437,7.24431,5.77781,"4854, 305840" +3624,38931,Basilica,2010,777,6.60181,5.77762,"38931, 368079" +3625,25900,Kingdom of Heaven: The Crusader States 1097-1291,2012,347,7.62171,5.77743, +3626,60815,Black Powder: Second Edition,2009,338,7.66854,5.77714,"60815, 204594, 288317, 296321, 320021, 320817, 327249, 401039, 401040, 401124" +3627,310,Wizard's Quest,1979,1510,6.20033,5.77707, +3628,230059,Crossfire,2017,1004,6.41321,5.77693, +3629,306300,Little Factory,2020,970,6.43513,5.77682,"306300, 414996" +3630,1338,Volldampf,2001,606,6.83014,5.77673, +3631,8229,Pearladöra,2003,1203,6.30712,5.77665, +3632,255653,Warhammer Age of Sigmar: Champions Trading Card Game,2018,413,7.32182,5.77664, +3633,912,Pacific Victory: War in the Pacific 1941-45,2000,497,7.06059,5.77663,"912, 251364" +3634,177515,SEAL Team Flix,2018,467,7.14278,5.77658,"177515, 304412" +3635,322282,Momiji,2021,602,6.83583,5.77646,"322282, 418469" +3636,224149,Deadball,2017,249,8.33422,5.77613,"224149, 368203, 383008" +3637,177727,Haleakala,2015,763,6.61088,5.77611, +3638,230050,The Legend of Korra: Pro-Bending Arena,2018,380,7.45082,5.77591,"230050, 427785" +3639,2363,Orient Express,1985,732,6.64535,5.77590, +3640,284446,Wonder Tales,2019,464,7.14675,5.77577,"226118, 284446" +3641,221669,Dawn of Peacemakers,2018,453,7.17930,5.77565,"221669, 386425" +3642,6263,King's Breakfast,2003,1590,6.17546,5.77561, +3643,399806,Karvi,2023,406,7.34095,5.77552, +3644,359502,Casting Shadows,2023,862,6.51269,5.77548,"359502, 365761" +3645,192185,Matryoshka,2016,785,6.58453,5.77536, +3646,234120,Gold Fever,2017,853,6.51996,5.77534, +3647,255037,Silk,2018,1128,6.33837,5.77532, +3648,266460,Yinzi,2019,370,7.49046,5.77513,"266460, 369938" +3649,255594,Ship Shape: It's a Smuggler's Bounty!,2019,606,6.82226,5.77509, +3650,2539,Urland,2001,806,6.56199,5.77498, +3651,300993,¡Extinción!,2020,421,7.28068,5.77483, +3652,352138,Cyberpunk 2077: Gangs of Night City,2023,441,7.21163,5.77470,"352138, 413818" +3653,3137,Anno Domini: Erfindungen,1999,687,6.69592,5.77443, +3654,4553,Attribute,2002,1115,6.34210,5.77440, +3655,248002,TAGS,2018,919,6.46315,5.77439,"13094, 248002" +3656,165595,JamSumo,2014,399,7.36029,5.77432,"165595, 312182, 410249" +3657,181807,Dragon Rampant: Fantasy Wargaming Rules,2015,278,8.05054,5.77432,"134524, 181807, 369011" +3658,400366,Wondrous Creatures,2024,269,8.12651,5.77430, +3659,13507,WINK,1994,781,6.58409,5.77420,"13507, 320383" +3660,404431,Men-Nefer,2024,270,8.11595,5.77410, +3661,272085,Bloom,2019,863,6.50658,5.77405,"258437, 272085" +3662,6663,Lunar Rails,2003,553,6.91713,5.77403, +3663,20782,Siam,2005,778,6.58596,5.77389, +3664,22347,Monstrolicious,1998,942,6.44325,5.77350, +3665,257726,Brikks,2018,1177,6.30927,5.77341, +3666,192343,Bubblee Pop,2016,1567,6.17556,5.77327, +3667,3230,Tyros,2002,952,6.43490,5.77312, +3668,24843,Graenaland,2006,684,6.69391,5.77305, +3669,69552,Panic Station,2011,3077,5.97767,5.77300, +3670,146408,Sentinel Tactics: The Flame of Freedom,2014,809,6.55132,5.77297,"146408, 171968" +3671,344341,SolForge Fusion,2022,374,7.45626,5.77292, +3672,55165,Bisikle,2009,767,6.59323,5.77279,"55165, 72800" +3673,275840,Dungeon Academy,2019,682,6.69529,5.77275, +3674,3613,Air Superiority,1987,504,7.02067,5.77267,"3613, 7251" +3675,374866,Robotrick,2020,368,7.48125,5.77258, +3676,39832,Sumeria,2009,794,6.56397,5.77244, +3677,279198,Tungaru,2020,539,6.93739,5.77225, +3678,113293,Article 27: The UN Security Council Game,2012,945,6.43675,5.77223, +3679,311725,Dice Theme Park,2022,753,6.60612,5.77221, +3680,252997,Mapmaker: The Gerrymandering Game,2019,699,6.66990,5.77206, +3681,160561,Versailles,2014,888,6.47879,5.77206, +3682,293267,Kitara,2020,613,6.79522,5.77193, +3683,275586,Banish the Snakes: A Game of St. Patrick in Ireland,2023,406,7.31608,5.77180, +3684,357659,Nightmare Cathedral,2023,350,7.56234,5.77169, +3685,42929,Martian Rails,2009,440,7.19601,5.77168, +3686,20078,Monmouth,2007,389,7.38092,5.77142,"20078, 43526, 114530, 378481" +3687,274075,The Quest Kids,2021,324,7.70380,5.77141,"274075, 379643" +3688,176262,Fleet Wharfside,2015,575,6.85946,5.77125, +3689,64826,Moongha Invaders: Mad Scientists and Atomic Monsters Attack the Earth!,2010,763,6.59116,5.77121, +3690,196217,18Ireland,2017,370,7.46166,5.77115, +3691,296986,Sherlock: Entre tumbas,2019,550,6.90830,5.77113,"296985, 296986, 296987, 315046" +3692,3487,BattleTech TCG,1996,825,6.52905,5.77108, +3693,262274,"D6: Dungeons, Dudes, Dames, Danger, Dice and Dragons!",2020,362,7.49845,5.77107, +3694,361212,Town 66,2022,672,6.70121,5.77099,"361212, 402310" +3695,256442,Airship City,2018,546,6.91529,5.77087, +3696,247,Gloria Picktoria,1996,1117,6.32963,5.77066, +3697,264806,We're Doomed!,2019,953,6.42539,5.77054, +3698,317299,Loco Momo,2020,976,6.40959,5.77043, +3699,348073,Crescent Moon,2022,452,7.15044,5.77041, +3700,253379,Cosmic Factory,2018,808,6.54209,5.77033,"150930, 253379" +3701,174476,10' to Kill,2015,1493,6.18764,5.77019, +3702,154259,Province,2014,1311,6.24514,5.77002, +3703,371873,Trolls and Princesses,2023,372,7.44429,5.77000, +3704,45134,Arcana,2009,1938,6.09108,5.76986, +3705,49276,"Battle for Moscow: Operation Typhoon, 1941",2009,711,6.64492,5.76975,"6544, 49276, 197297" +3706,292894,The Cost,2020,462,7.11615,5.76967, +3707,367771,Stomp the Plank,2022,513,6.98176,5.76958, +3708,8166,Anno 1503,2003,1407,6.21146,5.76954, +3709,341753,Tholos,2021,360,7.49635,5.76950, +3710,4047,Across 5 Aprils,1992,494,7.02703,5.76934, +3711,102181,In a Grove,2010,1134,6.31702,5.76927, +3712,145012,Sultaniya,2014,851,6.49912,5.76926, +3713,343525,Seas of Havoc,2023,381,7.39923,5.76922, +3714,341919,Magic Mountain,2021,615,6.77896,5.76921,"341919, 394894" +3715,318556,Tucano,2021,896,6.46227,5.76920, +3716,21464,California,2006,1450,6.19683,5.76896,"21464, 403380" +3717,250821,Battlestar Galactica: Starship Battles – Starter Set,2018,300,7.83690,5.76894, +3718,220558,Ancient Civilizations of the Inner Sea,2019,714,6.63779,5.76893,"220558, 289937" +3719,80642,Antics!,2010,545,6.90719,5.76893, +3720,155496,Holdfast: Russia 1941-42,2014,316,7.73030,5.76871,"155496, 211813" +3721,139992,Kaosball: The Fantasy Sport of Total Domination,2014,818,6.52617,5.76863, +3722,27385,Alchemist,2007,1446,6.19609,5.76821, +3723,38984,MOW,2008,1699,6.13229,5.76818, +3724,142267,Bomb Squad,2013,979,6.39989,5.76812, +3725,417197,Rebirth,2024,340,7.58706,5.76810, +3726,227029,Sakura,2018,822,6.51993,5.76796, +3727,280726,Legacies,2022,474,7.07096,5.76778, +3728,213882,Space Escape,2017,529,6.93530,5.76775,"213882, 415197" +3729,162263,Temporum,2014,1078,6.34068,5.76774, +3730,132758,Fool's Gold,2015,544,6.90306,5.76774, +3731,85108,U-Boat Leader,2011,485,7.03981,5.76750,"85108, 126026" +3732,192240,Control,2016,914,6.44252,5.76747, +3733,6817,Schafkopf,1780,353,7.51392,5.76728, +3734,158753,Clash of Rage,2018,401,7.30327,5.76705, +3735,181811,Tatsu,2016,662,6.69725,5.76697, +3736,17651,Under the Lily Banners,2005,328,7.64317,5.76680, +3737,92643,Artus,2011,1096,6.32818,5.76675, +3738,159406,Portal: The Uncooperative Cake Acquisition Game,2015,1502,6.17616,5.76664, +3739,192,Nicht die Bohne!,1999,1100,6.32573,5.76662, +3740,254994,Extraordinary Adventures: Pirates!,2019,756,6.57975,5.76652, +3741,377449,Chomp,2023,623,6.75254,5.76635, +3742,28218,Cash-a-Catch,2007,1053,6.34917,5.76614, +3743,165876,Spike,2014,668,6.68501,5.76610, +3744,270269,Ninja Academy,2019,659,6.69711,5.76600, +3745,65225,Road Kill Rally,2010,1017,6.36911,5.76593, +3746,10947,Master Thieves,2004,779,6.55307,5.76585, +3747,189350,Starving Artists,2017,634,6.73282,5.76578, +3748,236272,Echidna Shuffle,2018,694,6.64821,5.76555, +3749,224894,Michael Strogoff,2017,667,6.68222,5.76516, +3750,294652,By Stealth and Sea,2020,274,7.99695,5.76510, +3751,276779,Micro City (Second Edition),2020,697,6.64151,5.76488,"255586, 276779" +3752,282775,The Warp,2023,270,8.02759,5.76485, +3753,310067,Scooby-Doo! The Board Game,2022,410,7.25349,5.76463, +3754,4210,Stonewall's Last Battle: The Chancellorsville Campaign,1996,333,7.59747,5.76459, +3755,96704,Fealty,2011,701,6.63517,5.76456, +3756,253368,Kingswood,2020,586,6.80594,5.76455,"253368, 313965" +3757,158991,Hannin Wa Odoru,2013,1142,6.29790,5.76421,"158991, 172596, 179111, 400268" +3758,163931,Grog Island,2014,775,6.55045,5.76416, +3759,128698,Vampire Empire,2012,700,6.63463,5.76415, +3760,2281,Pictionary,1985,8772,5.83346,5.76402,"2281, 24118, 262412, 272889, 321841, 335876, 407700" +3761,147194,Linkee!,2012,1000,6.37294,5.76398,"147194, 182633, 265585, 326970, 410671" +3762,3593,Star Wars: Star Warriors,1987,548,6.87491,5.76393, +3763,265381,DANY,2019,632,6.72553,5.76356,"265381, 304239" +3764,248167,Pandoria,2018,649,6.70032,5.76355, +3765,276856,Ruination,2021,375,7.38475,5.76355, +3766,16497,Rat Hot,2005,1141,6.29586,5.76338,"16497, 287678" +3767,139326,UGO!,2013,762,6.55948,5.76308, +3768,24947,The Spoils,2006,540,6.88602,5.76291,"24947, 202493" +3769,17991,TAC,2004,457,7.08975,5.76287, +3770,303006,Harry Potter: House Cup Competition,2020,623,6.73597,5.76282, +3771,346199,A Game of Thrones: B'Twixt,2022,445,7.12469,5.76273, +3772,67919,The Message,2009,513,6.94383,5.76267, +3773,134711,Guilds of Cadwallon,2013,849,6.47563,5.76247, +3774,337324,A.D.E.L.E.,2021,485,7.01067,5.76244, +3775,356999,Gateway Island,2022,341,7.53442,5.76201, +3776,163976,Exoplanets,2015,838,6.48161,5.76157, +3777,138166,Huida de Silver City,2013,520,6.92017,5.76125, +3778,374400,Unlock!: Extraordinary Adventures,2022,330,7.58726,5.76123, +3779,161530,Jäger und Späher,2014,586,6.78944,5.76121, +3780,141067,History Maker Baseball,2013,242,8.24897,5.76101,"141067, 372211" +3781,8993,Fire in the East,1984,392,7.29694,5.76101,"6942, 8993, 26804" +3782,158815,At Any Cost: Metz 1870,2018,263,8.04852,5.76082, +3783,259537,Saint Seiya: Deckbuilding,2018,439,7.12900,5.76045, +3784,255516,Brave Little Belgium,2019,304,7.73507,5.76025,"255516, 293112, 309545, 368227" +3785,9675,La Strada,2004,1423,6.18210,5.76024, +3786,345888,Siege of Valeria,2022,315,7.66548,5.76018, +3787,152053,Lagoon: Land of Druids,2014,1408,6.18627,5.76011, +3788,342207,echoes: The Dancer,2021,743,6.56744,5.76005, +3789,250754,Trade on the Tigris,2018,459,7.06651,5.75997, +3790,286827,Decktective: Bloody-Red Roses,2019,817,6.49356,5.75986, +3791,232079,How to Rob a Bank,2017,1018,6.34863,5.75984, +3792,127312,Enigma,2012,946,6.39332,5.75980, +3793,316090,Vivid Memories,2022,715,6.59795,5.75979, +3794,1545,Flowerpower,2001,732,6.57731,5.75951, +3795,2447,World War II: European Theater of Operations,1985,393,7.28041,5.75917,"2447, 8976, 9135, 41611" +3796,1535,Formula 1,1962,660,6.66487,5.75914, +3797,312675,Pole Position,2024,215,8.53888,5.75909, +3798,169649,Sapiens,2015,1085,6.30975,5.75903, +3799,31506,Ziegen Kriegen,2007,1413,6.18158,5.75891, +3800,217321,Déjà Vu,2017,751,6.55400,5.75886, +3801,376223,The Hunt,2023,445,7.10019,5.75877, +3802,548,Buck Rogers: Battle for the 25th Century Game,1988,846,6.46405,5.75869, +3803,1412,Trendy,2000,1132,6.28565,5.75862,"1412, 31070, 310031" +3804,251441,Antinomy,2019,555,6.83346,5.75860, +3805,299372,Succulent,2020,541,6.86122,5.75859, +3806,286735,Muffin Time,2021,1128,6.28731,5.75856,"286735, 345027" +3807,287780,Squire for Hire,2019,651,6.67458,5.75852,"287780, 299908" +3808,149620,Decision at Elst: An Advanced Squad Leader Starter Kit Historical Module,2014,212,8.57123,5.75850, +3809,279307,1942 USS Yorktown,2019,504,6.94096,5.75838,"95805, 279307" +3810,151446,La Fallera Calavera,2014,426,7.15600,5.75815,"151446, 424247" +3811,854,Doge,2000,791,6.51085,5.75811, +3812,279135,Cat Café,2019,968,6.37275,5.75798,"275857, 279135" +3813,271262,Advanced Squad Leader: Starter Kit #4 – Pacific Theater of Operations,2019,204,8.67353,5.75785, +3814,309752,The Field of the Cloth of Gold,2020,440,7.10907,5.75775, +3815,39328,Baltic Gap: Summer 1944,2009,275,7.91923,5.75768, +3816,227002,Rise of the Necromancers,2018,424,7.15891,5.75757, +3817,207898,Captive,2014,607,6.73577,5.75744, +3818,10814,Dawn Under,2004,1010,6.34538,5.75743, +3819,35188,Legends of the Three Kingdoms,2007,1110,6.29222,5.75737,"35188, 140065, 145344, 159438, 159440, 159443, 159445, 265286, 283492" +3820,279419,Eternal: Chronicles of the Throne,2019,391,7.27568,5.75736, +3821,706,Frederick the Great: The Campaigns of The Soldier King 1756-1759,1975,500,6.94460,5.75734, +3822,14188,Bughouse Chess,1960,373,7.34861,5.75731, +3823,119881,Medioevo Universale,2018,311,7.66499,5.75721, +3824,27680,1936: Guerra Civil,2006,341,7.49584,5.75704, +3825,246862,Galaxy Hunters,2021,330,7.55267,5.75690,"170909, 246862" +3826,249582,The Dark Summer: Normandy 1944,2021,293,7.77758,5.75669, +3827,145888,CapCom Street Fighter Deck-Building Game,2014,658,6.65555,5.75646, +3828,260524,Beyond Humanity: Colonies,2022,284,7.83949,5.75645,"260524, 332778" +3829,130006,Mini Kubb,,392,7.26538,5.75642, +3830,165556,Nyakuza,2014,549,6.83334,5.75632, +3831,1690,Unexploded Cow,2001,1838,6.07791,5.75627, +3832,142889,Enemy Coast Ahead: Operation Chastise – The Dambuster Raid,2014,300,7.72667,5.75625, +3833,756,Black Vienna,1987,483,6.97863,5.75600, +3834,2471,Zombies!!!,2001,16093,5.79268,5.75599,"2471, 10167, 33040, 40416, 125395, 153802, 175778, 227650, 277371" +3835,259069,Punto,2018,762,6.53074,5.75594, +3836,655,Castle,2000,1722,6.09868,5.75589, +3837,154892,Loonacy,2014,1023,6.33246,5.75575,"154892, 181385, 191999, 212759, 225765, 255012, 326265, 356085" +3838,2968,Ka-Ching!,2001,834,6.46296,5.75570,"2968, 41875" +3839,149869,Sherlock 13,2013,1004,6.34320,5.75570, +3840,18401,Wacht Am Rhein,2005,310,7.65806,5.75566,"6253, 18401, 88190, 217197" +3841,233958,Plains Indian Wars,2022,374,7.33155,5.75552, +3842,127920,Kanzume Goddess,2012,618,6.70919,5.75550,"127920, 238181, 238277, 319906" +3843,299172,The Key: Murder at the Oakdale Club,2020,442,7.08473,5.75482, +3844,5445,Rod Hockey,1932,399,7.22719,5.75469,"5445, 156370" +3845,268188,Gartenbau,2022,383,7.28774,5.75456, +3846,306173,Lisbon Tram 28,2021,460,7.02952,5.75429, +3847,136192,Dungeon Dice,2014,613,6.71113,5.75427, +3848,137909,Bugs in the Kitchen,2013,2637,5.97668,5.75426,"137909, 171424, 172310, 322831" +3849,292026,UND1C1,2022,242,8.17663,5.75414, +3850,407318,Cascadia: Rolling Rivers,2024,412,7.17702,5.75413,"407317, 407318" +3851,349793,Age of Rome,2023,451,7.05392,5.75412, +3852,269789,Caravan,2019,690,6.60156,5.75363, +3853,288385,Masters of the Night,2021,502,6.91887,5.75359, +3854,202732,Raise Your Goblets,2016,1671,6.10355,5.75354,"188301, 202732" +3855,244141,Symphony No.9,2018,496,6.93200,5.75342, +3856,6714,Go Away Monster!,1997,858,6.43458,5.75337, +3857,320446,Corduba 27 a.C.,2021,314,7.61466,5.75336,"320446, 388677" +3858,235512,Loot Island,2017,803,6.48105,5.75332, +3859,247106,Space Marine Adventures: Labyrinth of the Necrons,2018,532,6.85121,5.75322,"247106, 425239" +3860,120669,No Retreat!: The North African Front,2013,383,7.27794,5.75316,"96157, 120669" +3861,378983,Tipperary,2023,400,7.21207,5.75300, +3862,3475,Shadowfist,1995,442,7.07210,5.75279,"3475, 192086, 192382" +3863,147451,Field of Glory: The Card Game,2013,684,6.60488,5.75269,"147451, 258207" +3864,145642,The Cards of Cthulhu,2014,560,6.79245,5.75247,"145642, 312570" +3865,32382,Gipsy King,2007,745,6.53383,5.75238, +3866,284306,Star Scrappers: Orbital,2021,812,6.46919,5.75234,"108377, 284306" +3867,72644,Perplexus,2001,483,6.95700,5.75225,"72644, 166583, 180050, 330309" +3868,252212,Tales of Evil,2020,573,6.76701,5.75210,"252212, 324342" +3869,359857,Winter,2022,481,6.96094,5.75207,"194187, 359857" +3870,65568,Jäger und Sammler,2010,851,6.43534,5.75207,"39914, 65568" +3871,257056,Lovelace & Babbage,2019,631,6.67269,5.75188, +3872,338479,The Spill,2022,485,6.94967,5.75184, +3873,415780,Lure,2024,826,6.45451,5.75167,"239826, 415780" +3874,132326,Venetia,2013,483,6.95354,5.75165, +3875,224374,Russia Besieged: Deluxe Edition,2018,271,7.89299,5.75157,"12567, 224374" +3876,233974,Sundae Split,2017,640,6.65823,5.75155, +3877,755,Thunder at Cassino,1987,446,7.05180,5.75142, +3878,41052,Loco Motive,2009,861,6.42417,5.75119, +3879,324639,The Road,2021,249,8.07748,5.75111, +3880,262188,Dinoblivion,2020,372,7.30818,5.75110, +3881,65534,The Ares Project,2011,710,6.56534,5.75073, +3882,6353,Monty's Gamble: Market Garden,2003,385,7.25255,5.75066,"6353, 290872" +3883,267244,The Defence of Procyon III,2021,283,7.79099,5.75035, +3884,1681,Tokyo Express: The Guadalcanal Naval Campaign – 1942,1988,378,7.27646,5.75011, +3885,222145,Lucidity: Six-Sided Nightmares,2018,1026,6.31242,5.75010, +3886,2470,The Extraordinary Adventures of Baron Munchausen,1998,385,7.24857,5.75009, +3887,191387,Star Trek: The Dice Game,2016,322,7.54037,5.74992,"191387, 282863" +3888,137154,Auf Teufel komm raus,2013,568,6.76455,5.74985, +3889,1705,Slapshot,1982,1034,6.30683,5.74972, +3890,220508,Blue Water Navy: The War at Sea,2019,225,8.30978,5.74970,"220508, 304894" +3891,191790,"Empires in America: The French and Indian War, 1754-1763 (Second Edition)",2016,346,7.41434,5.74968,"53624, 191790" +3892,35935,Day & Night,2007,696,6.57670,5.74956, +3893,350637,Regroup! Chicken Army,2023,330,7.49339,5.74948, +3894,245431,Jurassic Park: Danger!,2018,1275,6.20053,5.74937, +3895,318195,Biss 20,2020,484,6.93753,5.74931, +3896,162107,Doodle City,2014,1062,6.29076,5.74928,"162107, 205790, 247643" +3897,237023,Era of Kingdoms,2019,391,7.21986,5.74927, +3898,290618,Wishland,2021,406,7.16291,5.74887, +3899,266188,Seven Bridges,2020,349,7.39373,5.74886, +3900,198985,Day Night Z,2019,321,7.53607,5.74872, +3901,278402,Counter Attack,2019,271,7.86549,5.74868, +3902,334363,"Vijayanagara: The Deccan Empires of Medieval India, 1290-1398",2024,239,8.14774,5.74857, +3903,17835,Monsters Menace America,2005,2557,5.97272,5.74852,"285, 17835" +3904,149910,Six Making,2013,379,7.26077,5.74847,"149910, 206780" +3905,144761,"Going, Going, GONE!",2013,1431,6.14881,5.74839, +3906,201406,OrganATTACK!,2016,1060,6.28861,5.74829, +3907,373828,Galdor's Grip,2022,247,8.06680,5.74826, +3908,282918,Garum,2019,341,7.42766,5.74826, +3909,208428,"No Thank You, Evil!",2016,339,7.43707,5.74819, +3910,105187,MIL (1049),2011,720,6.54319,5.74815, +3911,171492,Vienna,2015,742,6.51897,5.74799, +3912,220700,Cobra Paw,2017,1111,6.26280,5.74796, +3913,213497,"Red Storm: The Air War Over Central Germany, 1987",2019,208,8.49769,5.74794, +3914,816,2038: Tycoons of the Asteroid Belt,1995,421,7.10463,5.74766, +3915,350064,Dreadful Meadows,2023,332,7.46663,5.74743, +3916,292892,The Grand Trunk Journey,2020,308,7.60018,5.74738, +3917,7062,Smarty Party!,2003,678,6.58886,5.74734, +3918,181494,CVlizations,2015,1139,6.24811,5.74729, +3919,231618,Deck Box Dungeons,2018,486,6.92091,5.74727, +3920,214491,Paku Paku,2017,851,6.41694,5.74711, +3921,232980,Dream On!,2017,546,6.79048,5.74699,"232980, 313769, 413079, 428453" +3922,3852,Star Trek Customizable Card Game,1994,1228,6.21078,5.74693,"3852, 40550" +3923,386148,ArcheOlogic,2023,420,7.10236,5.74681, +3924,92644,Schnappt Hubi!,2011,514,6.85411,5.74674,"92644, 187489" +3925,121073,Panic Lab,2012,2138,6.01293,5.74673, +3926,148083,Dogs,2013,505,6.87344,5.74667,"148083, 317298" +3927,3608,Air Force,1976,767,6.48820,5.74658, +3928,169215,Peak Oil,2017,721,6.53549,5.74658,"169215, 232478, 363066" +3929,42328,Pax Baltica: Great Northern War 1700-1721,2009,371,7.27960,5.74656, +3930,259038,Bastille,2018,432,7.06284,5.74651, +3931,256313,Spell Smashers,2018,598,6.69692,5.74641, +3932,194100,Costa Rica,2016,1275,6.19204,5.74634, +3933,65936,"The Blitzkrieg Legend: The Battle for France, 1940",2012,248,8.03710,5.74628, +3934,217475,Twenty One,2017,844,6.41918,5.74622, +3935,153422,Gardens,2014,666,6.59872,5.74615, +3936,379625,Elawa,2023,541,6.79560,5.74613, +3937,213370,Castles of Caladale,2017,1003,6.31214,5.74611, +3938,159868,Sellswords,2014,753,6.49994,5.74608,"159868, 199907" +3939,173092,Träxx,2015,696,6.56071,5.74586, +3940,159632,Strife: Legacy of the Eternals,2014,629,6.64623,5.74558,"159632, 177513" +3941,224079,Sailing Toward Osiris,2018,568,6.74241,5.74548, +3942,172584,Among Nobles,2015,604,6.68213,5.74530, +3943,231639,Harvest Island,2017,471,6.94634,5.74524, +3944,174802,VENOM Assault,2016,304,7.60510,5.74512, +3945,406854,Odin,2024,528,6.81578,5.74507, +3946,327077,Cartaventura: Vinland,2021,1018,6.30035,5.74506, +3947,171136,Pingo Pingo,2015,883,6.38433,5.74480,"5711, 171136" +3948,3125,7th Sea Collectible Card Game,1998,574,6.72814,5.74471, +3949,171672,Why First?,2015,1323,6.17133,5.74469,"131165, 171672" +3950,316795,Legends of Void,2022,280,7.76000,5.74463, +3951,426,The Battle of the Bulge,1981,772,6.47539,5.74458,"426, 16444" +3952,317432,Exit: The Game – The Cursed Labyrinth,2021,599,6.68588,5.74446, +3953,307862,Dollars to Donuts,2021,452,6.99192,5.74444, +3954,146922,Chain of Command,2013,217,8.34286,5.74443, +3955,2150,London's Burning,1995,491,6.89275,5.74442, +3956,253372,Minerals,2019,391,7.18361,5.74401, +3957,142239,Vye: The Card Game of Capture and Control,2013,594,6.69155,5.74400, +3958,40276,Masters of Venice,2009,637,6.62750,5.74398, +3959,27969,"A Most Dangerous Time: Japan in Chaos, 1570-1584",2009,358,7.31550,5.74390, +3960,3208,Dragonland,2002,1059,6.27510,5.74387,"3208, 320202" +3961,355735,Hungry Monkey,2022,579,6.71397,5.74357, +3962,217362,Frogriders,2017,730,6.51294,5.74350, +3963,394887,Surfosaurus MAX,2023,455,6.97733,5.74339, +3964,291874,Dwergar,2020,410,7.11180,5.74324, +3965,368352,Satori,2023,290,7.67682,5.74310, +3966,360843,Stellarion,2022,346,7.36276,5.74296, +3967,27165,Age of Discovery,2007,945,6.33577,5.74288, +3968,229791,Triplock,2017,1033,6.28525,5.74288, +3969,2259,Afrika Korps,1964,1075,6.26397,5.74285, +3970,352135,"Plantagenet: Cousins' War for England, 1459 - 1485",2023,218,8.31078,5.74269, +3971,384213,Fromage,2024,341,7.38430,5.74267,"384213, 430533" +3972,329228,Solar Sphere,2022,385,7.19637,5.74263, +3973,201455,Assault of the Giants,2017,608,6.66300,5.74259, +3974,207951,Tintas,2016,296,7.63168,5.74242, +3975,370757,Zoo Tycoon: The Board Game,2023,418,7.07973,5.74234, +3976,341027,Heroes of Barcadia,2022,317,7.50535,5.74228, +3977,55834,Mosaix,2009,707,6.53103,5.74187,"55834, 409052" +3978,365742,Bacon,2023,446,6.99264,5.74183, +3979,11231,Snorta!,2004,1609,6.08843,5.74179,"11231, 158760" +3980,847,Feudal,1967,1546,6.10245,5.74175, +3981,333516,Exit: The Game + Puzzle – Nightfall Manor,2021,346,7.35289,5.74167, +3982,367525,3000 Scoundrels,2022,859,6.39063,5.74166, +3983,189222,Saltlands,2016,530,6.79330,5.74163, +3984,1376,Serengeti,2001,1234,6.19252,5.74135,"1376, 235468" +3985,5825,Paris Paris,2003,1207,6.20260,5.74135, +3986,329204,Escape from Stalingrad Z,2023,215,8.33070,5.74134,"329204, 386476, 394516" +3987,16000,1825 Unit 2,2000,411,7.09526,5.74124,"937, 15999, 16000, 386631" +3988,377480,Hooky,2023,330,7.42621,5.74107, +3989,61484,Zombie State: Diplomacy of the Dead,2010,794,6.44016,5.74074, +3990,1002,Cosmic Eidex,1998,499,6.85354,5.74072, +3991,42244,Martinique,2009,1112,6.23928,5.74046, +3992,186302,Die Fiesen 7,2015,853,6.39063,5.74043, +3993,181176,Council of Blackthorn,2016,372,7.23035,5.74029, +3994,286788,Gift of Tulips,2022,586,6.68555,5.74016, +3995,279727,Harakiri: Blades of Honor,2024,190,8.65446,5.74005, +3996,360899,Harrow County: The Game of Gothic Conflict,2024,245,7.99959,5.73999, +3997,367820,Dungeons & Dragons: The Yawning Portal,2023,354,7.30333,5.73992, +3998,325829,Let's Summon Demons,2021,501,6.84420,5.73985, +3999,294378,Divinity Original Sin: The Board Game,2023,249,7.96185,5.73985, +4000,241066,Papillon,2020,639,6.60509,5.73971, +4001,150761,Next War: India-Pakistan,2015,239,8.05335,5.73971, +4002,15390,ハーベスト (Harvest),1992,354,7.30144,5.73967, +4003,255456,Beneath the Med: Regia Marina at Sea 1940-1943,2020,259,7.87375,5.73961, +4004,4958,Ardennes,1994,376,7.20898,5.73952,"4958, 377898" +4005,3828,Locomotive Werks,2002,548,6.74773,5.73951, +4006,207208,Armageddon,2016,682,6.54942,5.73946, +4007,275463,Cactus Town,2022,441,6.99108,5.73931, +4008,177875,The Last Spike,2015,596,6.66460,5.73912,"2210, 177875" +4009,144566,Circus Train (Second Edition),2013,430,7.02187,5.73911,"62143, 144566" +4010,99312,Feudality,2011,781,6.44530,5.73910, +4011,362164,Pioneer Rails,2023,383,7.17871,5.73903, +4012,252265,Passtally,2018,704,6.52199,5.73897, +4013,207687,Endangered Orphans of Condyle Cove,2017,990,6.29557,5.73890, +4014,360332,Masters of the Universe: Battleground,2022,199,8.50727,5.73883, +4015,294275,Way of the Samurai,2020,306,7.53859,5.73875,"294275, 330499" +4016,217020,Truck Off: The Food Truck Frenzy,2017,656,6.57805,5.73869,"217020, 283790" +4017,309728,Pessoa,2022,364,7.25131,5.73869, +4018,3597,Strat-O-Matic Hockey,1978,357,7.28071,5.73865, +4019,621,25 Words or Less,1996,657,6.57650,5.73863,"621, 22999" +4020,369899,Big Top,2023,448,6.96496,5.73824,"351604, 369899" +4021,222,Space Beans,1999,1564,6.08923,5.73808, +4022,218580,Divinity Derby,2017,517,6.80025,5.73806, +4023,249750,"Brazen Chariots: Battles for Tobruk, 1941",2019,205,8.41610,5.73800, +4024,114438,"But Wait, There's More!",2011,585,6.67584,5.73787,"114438, 250394" +4025,366790,Dawn of Ulos,2023,385,7.16306,5.73786, +4026,207568,Baptism By Fire: The Battle of Kasserine,2017,232,8.10237,5.73781, +4027,383242,Marvel D.A.G.G.E.R.,2023,386,7.15843,5.73773, +4028,21985,Giro Galoppo,2006,590,6.66636,5.73756, +4029,280811,なつめも (Natsumemo),2019,392,7.13383,5.73731, +4030,42490,Pony Express,2009,760,6.45690,5.73714, +4031,194061,Cult: Choose Your God Wisely,2018,376,7.19170,5.73710, +4032,9617,Russian Rails,2004,444,6.96869,5.73706, +4033,17988,Die Dolmengötter,2005,624,6.61298,5.73697,"17988, 161921" +4034,55601,Sneaks & Snitches,2010,961,6.30566,5.73693, +4035,221230,Farlight,2017,519,6.78999,5.73693, +4036,192858,"Mrs Thatcher's War: The Falklands, 1982",2017,252,7.90531,5.73689, +4037,50381,Cards Against Humanity,2009,29110,5.75560,5.73683,"50381, 154709, 157943, 183145, 188972, 189539, 193316, 193481, 193895, 195685, 200096, 202729, 203352, 207385, 223516, 225834, 233131, 262528, 275158, 288873, 296143, 317367, 327042, 352062, 372633, 375933, 379356" +4038,490,Warangel,2000,273,7.73723,5.73675, +4039,31745,Utopia,2007,934,6.32122,5.73668, +4040,371932,Explorers of Navoria,2024,318,7.45351,5.73667, +4041,385331,Creature Caravan,2024,251,7.91139,5.73663,"385331, 428559" +4042,158544,The Institute for Magical Arts,2015,559,6.71271,5.73655,"158544, 286980" +4043,177096,Freedom!,2020,279,7.69134,5.73644, +4044,231664,Fast Forward: FEAR,2017,1499,6.10025,5.73642, +4045,203740,Age of Thieves,2016,584,6.66992,5.73635, +4046,347157,RabbitZ & Robots,2022,284,7.65560,5.73629, +4047,8515,Hybrid,2003,340,7.33946,5.73629, +4048,257966,Passing Through Petra,2018,583,6.67114,5.73627, +4049,63740,Hotel Samoa,2010,1108,6.22771,5.73612, +4050,1493,1853,1989,514,6.79553,5.73607, +4051,318359,Groundhog Day: The Game,2021,389,7.13567,5.73603, +4052,61458,Kaigan,2009,457,6.92733,5.73601, +4053,244274,The Crusoe Crew,2019,562,6.70440,5.73594, +4054,313841,Lunar Base,2021,392,7.12318,5.73577, +4055,244794,Mercado,2018,671,6.54408,5.73527, +4056,324157,Hidden Games Crime Scene: Green Poison,2020,233,8.06446,5.73526, +4057,213549,Spoils of War,2017,513,6.79281,5.73520, +4058,165186,Hitler's Reich: WW2 in Europe,2018,517,6.78406,5.73510, +4059,301030,The Ming Voyages,2020,426,7.00682,5.73489, +4060,229598,Unlock!: Escape Adventures – Doo-Arann Dungeon,2017,648,6.57062,5.73479,"229598, 368041" +4061,2536,Vabanque,2001,765,6.44251,5.73472, +4062,92666,Hegemonic,2013,572,6.68113,5.73468, +4063,308493,Relics of Rajavihara,2021,370,7.19745,5.73463, +4064,106999,Coney Island,2011,839,6.37921,5.73449, +4065,319263,One Card Dungeon,2021,510,6.79508,5.73448, +4066,293665,Ensemble,2021,480,6.86120,5.73446, +4067,66781,Space Infantry,2011,427,7.00105,5.73445,"66781, 215155" +4068,23890,Der schwarze Pirat,2006,805,6.40476,5.73406,"23890, 33599" +4069,184866,Wings for the Baron (Second Edition),2015,315,7.44762,5.73400,"30531, 184866, 406719" +4070,168537,Pandemonium,2017,326,7.38867,5.73386, +4071,18746,Gustav Adolf the Great: With God and Victorious Arms,2006,266,7.76090,5.73375, +4072,280896,Foodies,2019,754,6.44872,5.73371, +4073,187679,The Horus Heresy: Betrayal at Calth,2015,290,7.59217,5.73365,"187679, 211641, 365430" +4074,1631,Barbarian Prince,1981,580,6.66272,5.73361, +4075,369388,Penguin Airlines,2023,364,7.21296,5.73346, +4076,23950,Viktory II,2006,472,6.87437,5.73345,"17516, 23950" +4077,158816,Longstreet Attacks: The Second Day at Gettysburg,2018,193,8.52280,5.73338, +4078,145393,Gem Rush,2013,539,6.73217,5.73338,"145393, 251350" +4079,7290,Dynasty League Baseball,1985,258,7.81975,5.73335, +4080,256964,Dark Rituals: Malleus Maleficarum,2020,254,7.85141,5.73323, +4081,23953,Outside the Scope of BGG,,620,6.60089,5.73321, +4082,374926,"Stalingrad: Advance to the Volga, 1942",2023,265,7.76313,5.73320, +4083,205079,Checkpoint Charlie,2016,593,6.63932,5.73299, +4084,131568,Codinca,2012,1254,6.16141,5.73293,"131568, 140279" +4085,352567,Jurassic World: The Legacy of Isla Nublar,2022,387,7.12093,5.73287, +4086,180591,Tumult Royale,2015,722,6.47641,5.73275, +4087,356742,KuZOOkA,2022,437,6.96101,5.73269, +4088,248,Blood Royale,1987,665,6.53915,5.73253, +4089,207330,Hellas,2016,488,6.83116,5.73244, +4090,54735,Lemming Mafia,2009,1137,6.20368,5.73233, +4091,353572,Pest,2024,324,7.38470,5.73211, +4092,161681,Lift Off! Get me off this Planet!,2015,480,6.84746,5.73209,"161681, 318852" +4093,294263,EOS: Island of Angels,2023,268,7.72966,5.73208, +4094,415776,Kingdom Legacy: Feudal Kingdom,2024,200,8.40875,5.73207, +4095,7092,Battles for the Ardennes,1978,315,7.43063,5.73196,"7092, 430688, 431293, 431300, 431302" +4096,35400,Nations at War: White Star Rising,2010,326,7.37209,5.73181, +4097,161297,Paradox,2016,437,6.95507,5.73175,"161297, 332614" +4098,74,Apples to Apples,1999,20230,5.75810,5.73168,"74, 4991, 10681, 150539, 150540, 150541, 152421, 193350, 253792, 407232" +4099,331363,Captain's Log,2022,235,8.00511,5.73161, +4100,5297,World War I: 1914-1918,1975,462,6.88680,5.73140,"5297, 319365" +4101,831,Schrille Stille,1999,747,6.44555,5.73129, +4102,29355,Knister,2007,969,6.28102,5.73103, +4103,180761,Dreamwell,2016,704,6.48801,5.73102, +4104,352483,Lanzerath Ridge,2022,245,7.90620,5.73102, +4105,329714,Dreadful Circus,2021,636,6.56794,5.73081,"329714, 392099" +4106,252163,Shardhunters,2019,312,7.43724,5.73080, +4107,380134,Orion Duel,2023,398,7.06780,5.73070, +4108,153999,"...and then, we held hands.",2015,2019,5.99397,5.73056, +4109,1506,Conquistador: The Age of Exploration – 1495-1600,1976,661,6.53422,5.73035, +4110,361214,Order Overload: Cafe,2022,521,6.75000,5.73030,"361214, 378438, 378439, 403014, 433547" +4111,380442,The Last Kingdom Board Game,2023,283,7.60727,5.73027, +4112,17851,Pizza Box Football,2005,1032,6.24489,5.73024, +4113,2640,Babylon 5 Collectible Card Game,1997,534,6.72391,5.73007, +4114,72420,Braggart,2010,941,6.29381,5.73000, +4115,97273,Upon a Salty Ocean,2011,717,6.46950,5.72989, +4116,101929,Sergeants Miniatures Game: Day of Days,2011,283,7.60300,5.72981,"101929, 153916" +4117,336811,Catharsis,2022,171,8.82848,5.72971,"336811, 378096, 387598, 409331, 410274, 430632, 431710" +4118,349812,Ransom Notes,2021,558,6.67932,5.72971,"349812, 406497" +4119,144728,Adventure Time Card Wars: Finn vs. Jake,2014,1556,6.07008,5.72964,"144728, 154560, 158978, 174552, 175121, 194234, 199007, 410004" +4120,94483,Hoot Owl Hoot!,2010,796,6.39508,5.72963, +4121,1576,Gettysburg (125th Anniversary Edition),1988,587,6.63163,5.72955, +4122,256541,Monster Crunch! The Breakfast Battle Game,2018,890,6.32449,5.72954, +4123,3383,Mahé,1974,952,6.28549,5.72947,"2664, 3383, 6900, 422814" +4124,33495,Time's Up! Édition purple,2007,362,7.19125,5.72940, +4125,76436,Bismarck (Second Edition),1978,555,6.68247,5.72932,"2422, 76436" +4126,18723,"Aye, Dark Overlord! The Red Box",2005,3687,5.87263,5.72922,"18723, 154883, 216014, 389407" +4127,20101,Kaivai,2005,439,6.93314,5.72913, +4128,1445,Canasta Caliente,2000,887,6.32494,5.72911, +4129,1206,Venture,1968,758,6.42626,5.72909, +4130,25114,Die Säulen von Venedig,2006,622,6.57867,5.72908, +4131,696,The Big Idea,2000,1134,6.19495,5.72904,"696, 94724" +4132,18243,Parthenon: Rise of the Aegean,2005,877,6.33131,5.72899, +4133,4550,1000 Blank White Cards,1996,543,6.70167,5.72897, +4134,101682,Saints in Armor,2012,245,7.88429,5.72892, +4135,296557,Zen Garden,2020,402,7.04198,5.72884, +4136,299171,The Key: Theft at Cliffrock Villa,2020,372,7.14758,5.72880, +4137,88513,Chicken Caesar,2012,595,6.61545,5.72872, +4138,22497,Straw,2006,1077,6.21835,5.72864, +4139,23685,1805: Sea of Glory,2009,321,7.36981,5.72841, +4140,242149,Vadoran Gardens,2019,509,6.76231,5.72818, +4141,294235,Crime Zoom: His Last Card,2020,579,6.63691,5.72811,"294235, 321305, 321306, 321307, 346339" +4142,175334,The Undercity: An Iron Kingdoms Adventure Board Game,2015,420,6.98081,5.72809,"175334, 192315" +4143,31808,GUBS: A Game of Wit and Luck,2007,1623,6.05221,5.72806, +4144,276633,Rossio,2020,396,7.05572,5.72794, +4145,237828,Anno Domini 1666,2019,185,8.56915,5.72787, +4146,132620,Gobbit,2012,785,6.39712,5.72778,"132620, 209366" +4147,302510,Mining Colony,2021,435,6.93414,5.72754,"302510, 355521" +4148,3414,"Yom Kippur: The Battle for the Sinai, October, 1973",1995,398,7.04611,5.72750, +4149,19358,Western Town,2005,399,7.04263,5.72748, +4150,331647,Mazescape: Labýrinthos,2021,594,6.61014,5.72733,"331647, 370475" +4151,26235,Pick & Pack,2007,729,6.44636,5.72725, +4152,323614,Castle Party,2021,558,6.66650,5.72721, +4153,64956,10 Days in the Americas,2010,585,6.62253,5.72708, +4154,317983,Anansi,2020,520,6.73444,5.72708, +4155,213953,Pyramid Poker,2017,914,6.30018,5.72708, +4156,321,The Mole in the Hole,1995,1487,6.07928,5.72705,"321, 2962, 245131, 325925" +4157,108161,Aquileia,2011,535,6.70580,5.72701, +4158,158237,1914: Glory's End / When Eagles Fight,2014,412,6.99777,5.72697,"4359, 7753, 158237" +4159,277672,303 Squadron,2021,287,7.55072,5.72691, +4160,222862,Archmage,2018,590,6.61342,5.72678, +4161,147614,Crazy Time,2013,464,6.85414,5.72677, +4162,202,Targui,1988,781,6.39650,5.72675, +4163,385999,Forever Home,2023,506,6.76041,5.72674, +4164,4984,Jutland,1967,538,6.69861,5.72668, +4165,76,Air Baron,1996,785,6.39279,5.72668, +4166,158392,Stay Away!,2014,1348,6.11445,5.72663, +4167,343899,Coral,2022,523,6.72539,5.72648, +4168,285895,Islands in the Mist,2019,414,6.98818,5.72644, +4169,197439,The Fog of War,2016,357,7.18919,5.72639, +4170,208808,Cinco Linko,2016,617,6.57248,5.72632,"208808, 266072" +4171,389102,Bier Pioniere,2023,262,7.71883,5.72631, +4172,1350,Das Amulett,2001,884,6.31643,5.72619,"1350, 135557" +4173,369436,HerStory,2022,527,6.71604,5.72615, +4174,104627,Feudalia,2011,395,7.04658,5.72611, +4175,341233,Almadi,2021,518,6.73256,5.72602, +4176,15474,Zombiaki,2003,1225,6.15150,5.72597,"15474, 56128" +4177,206844,Fold-it,2016,950,6.27461,5.72595,"206844, 229244, 259551" +4178,697,Conspiracy,1973,893,6.30930,5.72586,"697, 31909, 267991, 311232" +4179,19989,Robber Knights,2005,1532,6.06585,5.72582,"19989, 253763" +4180,3218,The Arab-Israeli Wars: Tank Battles in the Mideast,1977,748,6.42210,5.72579, +4181,256297,Transformers Trading Card Game,2018,351,7.20945,5.72576, +4182,181161,Brick Party,2015,600,6.59233,5.72547, +4183,20865,Bolide,2005,679,6.49105,5.72538, +4184,155460,The Hobbit: An Unexpected Journey Deck-Building Game,2014,414,6.98068,5.72530, +4185,3318,Heave Ho!,2002,975,6.25689,5.72487, +4186,211734,Master of Respect,2016,414,6.97706,5.72475,"211734, 374481" +4187,257372,The Bears and the Bees,2018,541,6.68303,5.72474, +4188,205308,Jolly & Roger,2016,510,6.74119,5.72473, +4189,268252,Colorful,2019,406,7.00135,5.72469,"240100, 268252" +4190,277410,Veggies,2019,508,6.74474,5.72464,"231126, 277410" +4191,63167,Undermining,2011,793,6.37779,5.72456, +4192,5928,Harpoon (Third Edition),1987,468,6.83109,5.72450,"5928, 11432, 28105, 300724, 314048, 329127" +4193,194523,HMS Dolores,2016,1398,6.09481,5.72445, +4194,3190,Quixo,1995,1018,6.23298,5.72443, +4195,292907,The Deadlies,2020,447,6.88238,5.72439, +4196,218025,The Little Flower Shop,2018,505,6.74791,5.72413,"218025, 342676, 367510" +4197,36314,Where Eagles Dare: The Battle for Hell's Highway,2011,199,8.31897,5.72387, +4198,86156,Reverse Charades,2010,574,6.62328,5.72381,"86156, 102676, 176330, 416693" +4199,360359,Neotopia,2023,352,7.19026,5.72377, +4200,254110,A Thief's Fortune,2018,523,6.71026,5.72368, +4201,220738,Topito,2017,570,6.62839,5.72358, +4202,69234,"Operation Dauntless: The Battles for Fontenay and Rauray, France, June 1944",2016,244,7.83689,5.72354, +4203,232134,Wander: The Cult of Barnacle Bay,2019,242,7.85401,5.72351,"232134, 371643" +4204,332885,Gnome Hollow,2024,408,6.98699,5.72348, +4205,194,Groo: The Game,1997,884,6.30613,5.72334,"194, 386007" +4206,198087,Arquebus: Men of Iron Volume IV – The Battles for Northern Italy 1495-1544,2017,270,7.63111,5.72330, +4207,191877,Touria,2016,554,6.65269,5.72322, +4208,368040,Unlock!: Short Adventures – In Pursuit of Cabrakan,2022,461,6.83921,5.72306,"257707, 368040" +4209,39019,Nothing Gained But Glory,2010,248,7.79778,5.72305, +4210,16804,Eastern Front: A Panzer Grenadier Game,2005,523,6.70653,5.72299,"2881, 16804, 249649" +4211,129820,Salmon Run,2013,655,6.50697,5.72269, +4212,286156,Wayfinders,2019,733,6.42191,5.72230, +4213,146559,Infamy,2013,473,6.80469,5.72200, +4214,256317,Guild Master,2020,325,7.29677,5.72188, +4215,11865,Koi-Koi,,638,6.52398,5.72185, +4216,322039,The Key: Sabotage at Lucky Llama Land,2020,355,7.16332,5.72183, +4217,2678,Voyage of the B.S.M. Pandora,1981,464,6.82468,5.72183,"2376, 2678, 374993" +4218,27532,Vineta,2008,1089,6.19096,5.72158, +4219,83325,Lost Battles: Forty Battles & Campaigns of the Ancient World,2011,246,7.79878,5.72152,"13686, 34403, 54859, 83325" +4220,146130,Coin Age,2013,2013,5.97530,5.72149, +4221,146548,Имаджинариум (Imaginarium),2011,715,6.43570,5.72140,"146548, 300601, 356844, 433124" +4222,55863,The Three Musketeers: The Queen's Pendants,2009,486,6.77171,5.72130, +4223,145014,Cardline: Globetrotter,2013,818,6.34477,5.72114, +4224,100734,My Happy Farm,2011,780,6.37504,5.72111,"100734, 159907" +4225,307656,Seastead,2020,480,6.78329,5.72104, +4226,302,Forum Romanum,1988,509,6.72246,5.72098, +4227,240465,CIV: Carta Impera Victoria,2018,1212,6.14119,5.72085, +4228,231554,Herbalism,2017,622,6.53917,5.72069, +4229,258041,Majolica,2018,441,6.87364,5.72046,"258041, 402366" +4230,247935,Tramways Engineer's Workbook,2018,343,7.20311,5.72046, +4231,399987,A Message From The Stars,2024,313,7.34410,5.72032, +4232,244994,Würfelland,2018,626,6.53163,5.72020, +4233,66126,Mystery Rummy: Escape from Alcatraz,2009,423,6.92102,5.72020, +4234,59429,Dark Darker Darkest,2013,1031,6.21285,5.72019, +4235,137237,Bremerhaven,2013,622,6.53558,5.71993, +4236,248878,FlickFleet,2018,228,7.94482,5.71991,"248878, 360124" +4237,14035,Piranha Pedro,2004,907,6.27912,5.71988, +4238,200551,30 Rails,2016,639,6.51306,5.71975, +4239,379959,The Battle of Versailles,2024,264,7.63943,5.71970, +4240,303676,Oh My Brain,2021,415,6.94081,5.71969, +4241,282006,50 Clues: The Pendulum of the Dead,2019,666,6.48005,5.71956, +4242,222643,The Lady and the Tiger,2017,850,6.31497,5.71944,"222643, 264742, 427246" +4243,299569,Kompromat,2020,360,7.12497,5.71936, +4244,420805,Black Forest,2024,280,7.52636,5.71934, +4245,22359,Steel Wolves: Germany's Submarine Campaign Against British & Allied Shipping – Vol 1 1939-43,2010,256,7.69574,5.71933, +4246,269537,Mystery House: Adventures in a Box,2019,896,6.28396,5.71932, +4247,7571,Winds of Plunder,2007,720,6.42153,5.71921, +4248,84869,Felinia,2010,699,6.44177,5.71901,"84869, 258287" +4249,307832,The Alpha,2020,517,6.69601,5.71897, +4250,197790,Vinyl,2019,356,7.13627,5.71876,"197790, 293594, 327134, 406446, 406447, 406448" +4251,243994,Swordcrafters,2018,584,6.58250,5.71869,"243994, 254138" +4252,25738,The Big Taboo,2006,882,6.29062,5.71868, +4253,274471,Malhya: Lands of Legends,2025,149,9.10268,5.71859, +4254,145975,Hoplite: Warfare in the Persian-Hellenistic Age 4th-5th Century BC,2014,254,7.70335,5.71855, +4255,1668,Modern Naval Battles,1989,599,6.55944,5.71839,"1668, 28828" +4256,870,Empires of the Ancient World,2000,549,6.63536,5.71826, +4257,366318,Exit: The Game – The Disappearance of Sherlock Holmes,2022,342,7.19038,5.71825, +4258,62972,The Barbarossa Campaign,2010,245,7.77286,5.71822,"23343, 62972" +4259,334652,Goblin Vaults,2023,341,7.19437,5.71821, +4260,198414,Dwarven Smithy,2018,320,7.29115,5.71820, +4261,255990,Nemeton,2018,425,6.90209,5.71813, +4262,81250,Stich-Meister,2010,492,6.74053,5.71807, +4263,209511,Atlanta Is Ours,2018,175,8.59086,5.71795, +4264,66193,It Happens..,2010,1117,6.16791,5.71790, +4265,4488,Scarab Lords,2002,1954,5.97479,5.71774,"4488, 10908" +4266,343433,Tír na nÓg,2024,289,7.45573,5.71774, +4267,8920,BuyWord,2004,948,6.24734,5.71767, +4268,322623,Clockworker,2020,368,7.08125,5.71755, +4269,396542,The Same Game,2023,354,7.13511,5.71754, +4270,285232,Gladius,2021,422,6.90663,5.71753, +4271,57073,The Fires of Midway: The Carrier Battles of 1942,2010,309,7.34113,5.71749, +4272,228390,Sunflower Valley,2017,604,6.54810,5.71749,"228390, 251153, 284003" +4273,380837,Botany,2024,411,6.93796,5.71746, +4274,38429,Cornerstone,2008,427,6.89183,5.71739,"38429, 86415" +4275,3495,Harry Potter Trading Card Game,2001,1132,6.16038,5.71739, +4276,11269,"Roads to Leningrad: Battles of Soltsy and Staraya Russa, 1941",2004,280,7.50788,5.71734, +4277,3573,Napoleon at Waterloo,1971,541,6.64394,5.71732,"3573, 393762" +4278,151151,Epic Resort,2014,728,6.40585,5.71730, +4279,213648,South Pacific: Breaking the Bismarck Barrier 1942-1943,2016,237,7.83101,5.71718, +4280,1413,Attack Sub,1991,524,6.67263,5.71706, +4281,359211,The Old Prince 1871,2022,192,8.32479,5.71705, +4282,181236,Bastion,2015,541,6.64214,5.71697, +4283,274405,The Menace Among Us,2019,376,7.04790,5.71694, +4284,387388,Nanatoridori,2023,408,6.94314,5.71689,"359929, 387388, 424816" +4285,5222,Old Town,2000,736,6.39652,5.71685,"5222, 46369, 46410, 206463, 348702" +4286,128174,Dragon Farkle,2015,750,6.38320,5.71670, +4287,376740,Undergrove,2024,405,6.94944,5.71647, +4288,206805,"Agricola, Master of Britain",2016,362,7.09497,5.71635, +4289,366322,Skoventyr,2023,300,7.37790,5.71612, +4290,301616,"Hood Strikes North: The Tennessee Campaign, Fall 1864",2021,170,8.64559,5.71590, +4291,864,Mage Knight,2000,1011,6.20843,5.71587, +4292,101013,Ninja: Legend of the Scorpion Clan,2011,650,6.48195,5.71587, +4293,263938,Paupers' Ladder,2019,244,7.75656,5.71585, +4294,163097,Beyond the Rhine: The Campaign for Northwest Europe,2015,188,8.36250,5.71571, +4295,173804,Gruff,2015,462,6.79229,5.71563,"173804, 196698, 227326, 249677, 303543" +4296,32002,Forged in Steel,2016,328,7.23117,5.71551, +4297,235342,Stalingrad: Inferno on the Volga,2018,277,7.50996,5.71548, +4298,142,Vino,1999,700,6.42552,5.71547, +4299,8790,Activity,1990,2219,5.93929,5.71539,"8790, 27451, 41894, 42644, 56406, 56407, 56410, 56411, 129529, 205081, 341538, 360262, 411008" +4300,34227,Blox,2008,593,6.55313,5.71536, +4301,7453,Hube's Pocket,1995,219,7.98366,5.71535,"7453, 288572, 387483, 422889" +4302,182,Hungry,1995,737,6.38927,5.71532,"182, 322787" +4303,256713,One Deck Galaxy,2022,417,6.90628,5.71530, +4304,244212,Railroad Rivals,2018,685,6.44031,5.71529, +4305,204003,Battle of Britain,2017,453,6.81157,5.71529,"1844, 204003" +4306,347638,"Inferno: Guelphs and Ghibellines Vie for Tuscany, 1259-1261",2023,200,8.19800,5.71526, +4307,1577,Source of the Nile,1978,627,6.50691,5.71519, +4308,2555,Vom Kap bis Kairo,2001,873,6.28358,5.71513, +4309,1149,Dragon Strike,1993,774,6.35599,5.71506, +4310,165748,Psycho Raiders,2014,217,7.99861,5.71484,"165748, 237384" +4311,220784,The Legend of the Cherry Tree that Blossoms Every Ten Years,2018,764,6.36251,5.71459,"176642, 220784" +4312,1782,Ancients,1986,521,6.66449,5.71455,"1480, 1782, 6399, 12211, 36596, 127543, 163867, 307703, 395424" +4313,55705,Callisto: The Game,2009,860,6.28968,5.71445,"55705, 220443" +4314,171356,Argonauts,2015,381,7.01247,5.71440, +4315,229006,Shadow Blades,2017,483,6.73833,5.71439, +4316,8130,Die Fugger,2003,696,6.42495,5.71439, +4317,236650,1985: Under an Iron Sky,2018,147,9.07823,5.71436,"236650, 294594, 349692" +4318,223742,Colourbrain,2017,1034,6.19255,5.71435,"223742, 277017, 315077, 327600, 366132, 376031" +4319,10206,Make 'n' Break,2004,1883,5.97693,5.71435,"10206, 30706, 35556, 42188, 65488, 129952, 153216" +4320,223952,Boast or Nothing,2017,334,7.19398,5.71425, +4321,355772,E.T. The Extra-Terrestrial: Light Years From Home Game,2022,414,6.90767,5.71419, +4322,191438,North American Railways,2016,550,6.61193,5.71407, +4323,3093,Croak!,1999,623,6.50673,5.71407,"3093, 10096, 274605" +4324,441,Filthy Rich,1998,734,6.38680,5.71406, +4325,1799,Warlord: Saga of the Storm,2001,429,6.86485,5.71402, +4326,139508,The Walled City: Londonderry & Borderlands,2014,495,6.71082,5.71392, +4327,246873,"Königsberg: The Soviet Attack on East Prussia, 1945",2018,219,7.96712,5.71391,"86816, 246873" +4328,322476,Fighters of the Pacific,2023,229,7.86842,5.71389, +4329,42997,Blitz! A World in Conflict,2015,256,7.64086,5.71385, +4330,182352,Exodus Fleet,2017,343,7.15155,5.71378, +4331,4920,5th Fleet: Modern Naval Combat in the Indian Ocean,1989,331,7.20347,5.71376, +4332,2891,Starfire,1979,418,6.89270,5.71365,"2888, 2891, 7539, 20432, 114062, 124221, 124586, 427583, 427988" +4333,182626,Mistborn: House War,2017,469,6.76448,5.71365, +4334,114991,The Metagame,2011,596,6.54010,5.71355, +4335,2125,Amazons,1992,338,7.17000,5.71342, +4336,132148,Napoleon against Europe,2013,252,7.66647,5.71336, +4337,294986,Necromolds: Monster Battles,2021,209,8.06805,5.71334, +4338,29903,Chang Cheng,2007,1138,6.14567,5.71330, +4339,22420,Battles of Napoleon: The Eagle and the Lion,2010,315,7.27444,5.71319, +4340,4014,Dawn Patrol: Role Playing Game of WW I Air Combat,1982,403,6.93350,5.71319,"4014, 6638" +4341,5677,A Bridge Too Far: Arnhem,1976,406,6.92369,5.71307,"5677, 9151, 12465, 13915, 13917, 13918, 73241" +4342,387515,Kavango,2024,203,8.13399,5.71305, +4343,42101,All Things Zombie: Better Dead Than Zed!,2009,311,7.29293,5.71300,"10693, 10697, 20586, 26855, 29522, 40474, 41604, 42101, 72086, 92216, 95022, 99817, 103195, 109001, 112836, 113331, 133748, 137273, 144495, 174101, 176743, 178566, 183033, 192733, 205874, 213815, 214824, 222063, 229215, 248960, 249136, 271006, 296729, 297232, 318935, 342761" +4344,346205,Explorers of the Woodlands,2023,470,6.75815,5.71296, +4345,232254,KAPOW!,2019,287,7.42317,5.71280,"232254, 324512, 324558" +4346,135877,Fish Cook,2012,399,6.94273,5.71275, +4347,181440,Hack Trick,2015,719,6.39520,5.71272,"181440, 234860" +4348,4974,"Wellington's Victory: Battle of Waterloo Game – June 18th, 1815",1976,344,7.13895,5.71269,"4974, 181291" +4349,379552,2D6 Dungeon: A Dungeon Crawler,2023,176,8.49973,5.71265, +4350,360951,Catherine: The Cities of the Tsarina,2022,778,6.34300,5.71261, +4351,10662,Victoria Cross: The Battle of Rorke's Drift,2004,339,7.15927,5.71260,"10662, 29199" +4352,227995,"Raiders of the Deep: U-boats of the Great War, 1914-18",2018,178,8.46770,5.71259, +4353,175254,Apocrypha Adventure Card Game: Box One – The World,2017,514,6.66622,5.71251, +4354,292099,S.H.E.O.L.,2022,184,8.37584,5.71244, +4355,132497,Lift it!,2012,1003,6.20094,5.71241, +4356,3119,Haste Worte?,1997,488,6.71611,5.71235,"3119, 217234, 244083, 357253" +4357,269810,Nevada City,2020,369,7.03960,5.71232, +4358,114903,Castellan,2013,1016,6.19401,5.71221, +4359,30216,The Great War in Europe: Deluxe Edition,2007,391,6.96389,5.71217,"10149, 11978, 30216" +4360,247136,"People Power: Insurgency in the Philippines, 1981-1986",2023,238,7.76832,5.71214, +4361,240744,Fire in the Library,2019,569,6.57073,5.71185,"240744, 287872" +4362,313269,Rescuing Robin Hood,2021,323,7.22459,5.71182, +4363,143882,HUND,2013,501,6.68686,5.71177, +4364,342210,echoes: The Cocktail,2021,552,6.59648,5.71172, +4365,94396,It Never Snows,2012,277,7.47404,5.71163, +4366,126,The Really Nasty Horse Racing Game,1989,885,6.26271,5.71148, +4367,217894,Delve,2017,714,6.39457,5.71144, +4368,240529,Microbrew,2017,526,6.63783,5.71127, +4369,254193,Fantastic Beasts: Perilous Pursuit,2018,654,6.45623,5.71122,"200115, 230881, 254193, 344334" +4370,344,Classic Art,1996,557,6.58535,5.71110, +4371,147716,Mars Attacks: The Miniatures Game,2014,336,7.15876,5.71089, +4372,26447,Clash of Monarchs: The Seven Years War in Europe 1756-1763,2008,417,6.87731,5.71086,"26447, 273437" +4373,402669,Sand,2024,456,6.77753,5.71086, +4374,64220,Richard Scarry's Busytown: Eye found it! Game,2009,1031,6.18260,5.71085,"64220, 184383, 190264, 202248, 269530, 299833" +4375,2520,Renegade Legion: Interceptor,1987,422,6.86303,5.71079,"2520, 8957, 9376, 10467" +4376,324759,Aleph Null,2022,370,7.02449,5.71072, +4377,6923,BattleTech: CityTech,1986,427,6.84873,5.71066, +4378,4086,"Napoleon at Bay: The Campaign in France, 1814",1978,324,7.21003,5.71060,"3050, 4086" +4379,260147,Europe Divided,2020,384,6.97555,5.71057, +4380,366251,Mistwind,2024,243,7.70827,5.71045, +4381,368036,Unlock!: Short Adventures – The Flight of the Angel,2022,309,7.28131,5.71042, +4382,380439,Fiction,2023,490,6.70045,5.71032, +4383,8273,Alexandros,2003,1005,6.19284,5.71025, +4384,150016,Shephy,2013,479,6.72276,5.71025,"150016, 169761" +4385,34010,Journey to the Center of the Earth,2008,828,6.29590,5.71022, +4386,359838,Almost Innocent,2023,317,7.23987,5.71021, +4387,342948,"Downfall: Conquest of the Third Reich, 1942-1945",2023,188,8.28861,5.71014, +4388,388036,Ticket To Ride: Berlin,2023,306,7.29420,5.71013, +4389,238889,Tales of the Northlands: The Sagas of Noggin the Nog,2018,273,7.48555,5.71012, +4390,19544,Berserk: Trading Card Game,2003,585,6.53854,5.71009,"19544, 110407, 131332, 150323" +4391,242569,Penny Papers Adventures: The Valley of Wiraqocha,2018,581,6.54423,5.71009, +4392,209951,Thunder in the East,2018,174,8.49483,5.71005, +4393,259121,Less Than 60 Miles,2019,154,8.85584,5.71001,"259121, 320084, 373576, 430205" +4394,89,Blue vs. Gray,1999,471,6.73795,5.70991, +4395,179350,Bretagne,2015,498,6.68163,5.70980, +4396,274432,Rule the Realm,2019,357,7.06476,5.70971, +4397,36887,Waterloo,2009,408,6.89502,5.70966, +4398,315196,Dungeons & Dragons: Adventure Begins,2020,811,6.30484,5.70936, +4399,420087,Flip 7,2024,348,7.09681,5.70932, +4400,286081,Herrlof,2020,506,6.66231,5.70909, +4401,108344,Might & Magic Heroes,2012,629,6.47564,5.70903, +4402,194723,Mask of Anubis,2016,424,6.84626,5.70903,"194723, 220499" +4403,4424,Cranium: Hoopla,2002,1001,6.19073,5.70903, +4404,6481,Ada's Library,2003,728,6.37134,5.70902, +4405,180205,Trans-Siberian Railroad,2015,341,7.12298,5.70902, +4406,46782,Rush n' Crush,2009,857,6.27142,5.70896,"7482, 46782" +4407,245240,Goblin Grapple,2020,207,8.03657,5.70888, +4408,3083,Submarine,1976,565,6.56129,5.70880, +4409,381078,Comet,2023,323,7.19877,5.70865, +4410,329002,CULTivate,2021,394,6.93014,5.70863, +4411,85000,We Must Tell the Emperor,2010,281,7.42082,5.70858, +4412,83629,The Hobbit,2010,2013,5.94710,5.70835, +4413,293309,Kraken Attack!,2020,378,6.97972,5.70833, +4414,232041,Deja Vu: Fragments of Memory,2018,357,7.05336,5.70818, +4415,1708,Stellar Conquest,1975,629,6.47143,5.70813, +4416,436,Canyon,1997,839,6.28018,5.70808,"436, 5628" +4417,353546,Museum Suspects,2022,403,6.89913,5.70808, +4418,163937,World of Yo-Ho,2016,710,6.38389,5.70802, +4419,21779,1914: Twilight in the East,2007,208,8.01394,5.70793, +4420,193486,Neolithic,2016,366,7.01842,5.70793, +4421,329862,Tiny Turbo Cars,2022,555,6.57192,5.70788,"329862, 375989" +4422,28044,Pocket Civ,2005,535,6.60357,5.70776, +4423,408180,Shackleton Base: A Journey to the Moon,2024,220,7.88416,5.70758, +4424,220155,Groves,2018,373,6.99109,5.70754, +4425,303669,Magic Rabbit,2020,338,7.12190,5.70728, +4426,362366,Junk Drawer,2023,272,7.46484,5.70724, +4427,367442,French Quarter,2024,295,7.32724,5.70718, +4428,205185,Einstein: His Amazing Life and Incomparable Science,2017,543,6.58723,5.70716, +4429,2800,The Ironclads: A Tactical Level Game of Naval Combat in the American Civil War 1861-1865,1979,291,7.34928,5.70715,"2800, 6924" +4430,168770,Epic PVP: Fantasy,2015,729,6.36241,5.70710,"168770, 209452" +4431,218161,Pit Crew,2017,681,6.40859,5.70709, +4432,262498,Puzzle Dungeon,2019,228,7.79978,5.70686,"262498, 432683" +4433,13709,Clash of Giants II: 1st Ypres & Galicia 1914,2006,325,7.17508,5.70686, +4434,4564,Blue & Gray: Four American Civil War Battles,1975,472,6.71748,5.70680,"4564, 6360, 13919, 13920, 13921, 73247, 178633" +4435,311465,Roll & Raid,2020,272,7.46051,5.70679, +4436,7263,Nertz,1930,564,6.55205,5.70669, +4437,28452,Valor & Victory,2007,244,7.66066,5.70668, +4438,173018,Grimslingers,2015,1082,6.14724,5.70665,"173018, 206588, 245528" +4439,166107,Matcha,2015,814,6.29217,5.70662, +4440,269418,On the Rocks,2021,365,7.01137,5.70647, +4441,195226,Napoleon Saga: Waterloo,2019,196,8.13549,5.70639, +4442,104377,TSCHAK!,2011,788,6.31056,5.70639, +4443,256478,Flotsam Fight,2018,553,6.56704,5.70633,"241252, 256478" +4444,317940,Mercurial,2023,361,7.02260,5.70604, +4445,344925,Bardwood Grove,2024,275,7.43402,5.70600, +4446,250481,Meltwater: A Game of Tactical Starvation,2018,291,7.33890,5.70599, +4447,153709,Pyramix,2014,665,6.42035,5.70595, +4448,67917,Colonialism,2013,426,6.82098,5.70592,"67917, 270699" +4449,240014,Evil High Priest,2018,357,7.03640,5.70591, +4450,65825,Gettysburg,2010,323,7.17585,5.70583, +4451,24770,Quietville,2006,1005,6.17807,5.70577, +4452,17923,Anno Domini: Flopps,2001,434,6.79843,5.70561, +4453,120269,Red White & Blue Racin': Stock Car Action Game,2012,164,8.59695,5.70556, +4454,228580,Gearworks,2018,489,6.67437,5.70541, +4455,341489,Carrooka,2021,178,8.36708,5.70539, +4456,3061,Samurai: Warfare in the 16th Century Japan,1996,358,7.02877,5.70538, +4457,150014,Pixel Glory,2014,505,6.64354,5.70538,"150014, 218996, 339294" +4458,1197,Blink,1995,2146,5.92613,5.70537,"1197, 247269" +4459,79067,Hex Hex XL,2010,1315,6.06537,5.70527,"10659, 17859, 79067, 355632" +4460,265202,Bag of Dungeon: A Fantasy Adventure Game,2018,373,6.97307,5.70504,"265202, 366797" +4461,1669,Mosby's Raiders: Guerilla Warfare in the Civil War,1985,511,6.63014,5.70495, +4462,286830,Tajuto,2019,533,6.59148,5.70486, +4463,244505,Pikoko,2018,533,6.59024,5.70463, +4464,334100,American Tank Ace: 1944-1945,2022,211,7.94052,5.70452, +4465,3864,Mechwarrior: Dark Age,2002,773,6.31475,5.70449,"3864, 176560" +4466,299838,The Belgian Beers Race,2021,335,7.11210,5.70443,"299838, 369803" +4467,272666,Psychic Pizza Deliverers Go to the Ghost Town,2018,458,6.73330,5.70430, +4468,2802,War in Europe,1976,310,7.22442,5.70428,"2802, 9143, 12900, 13978, 17102" +4469,166988,Wizards of the Wild,2015,457,6.73517,5.70424,"166988, 174926" +4470,10496,Camelot Legends,2004,1235,6.08553,5.70417, +4471,165292,"The Dark Sands: War in North Africa, 1940-42",2018,260,7.51547,5.70415, +4472,63758,Mr. Madison's War: The Incredible War of 1812,2012,280,7.38579,5.70412, +4473,177014,Giga-Robo!,2020,182,8.29121,5.70412, +4474,319592,Micro Dojo,2021,482,6.68052,5.70404, +4475,1536,Lord of the Fries,1998,1757,5.97180,5.70399,"1536, 199729, 258725, 278782, 308041, 308042" +4476,4921,"3rd Fleet: Modern Naval Combat in the North Pacific, Caribbean, and Atlantic Oceans",1990,303,7.25581,5.70385, +4477,341358,DONUTS,2023,627,6.45354,5.70379, +4478,62853,JAB: Realtime Boxing,2011,1062,6.14627,5.70373, +4479,219276,Dungeon Draft,2017,392,6.90238,5.70370, +4480,147241,Oaxaca: Crafts of a Culture,2018,379,6.94316,5.70365, +4481,144567,For the Crown (Second Edition),2012,319,7.17561,5.70357,"97512, 144567, 189882" +4482,378001,Moon River,2023,566,6.53252,5.70343, +4483,197101,Of Dreams & Shadows,2016,320,7.16960,5.70339, +4484,228399,Okko Chronicles: Cycle of Water – Quest into Darkness,2019,186,8.22581,5.70339, +4485,145219,Craftsmen,2013,512,6.61971,5.70338,"145219, 411978" +4486,274861,Venice,2021,625,6.45369,5.70331, +4487,271524,TIME Stories Revolution: A Midsummer Night,2020,460,6.72183,5.70314, +4488,237009,Urbino,2017,202,8.02208,5.70307, +4489,243993,La Stanza,2019,438,6.77249,5.70306, +4490,22303,Celebrities,,309,7.21845,5.70300, +4491,12283,Manifest Destiny,2005,601,6.48113,5.70279, +4492,895,APBA Pro Baseball,1951,328,7.12866,5.70275, +4493,39932,"Chariots of Fire: Warfare in the Bronze Age, 2300-1200 B.C.",2010,260,7.50115,5.70270, +4494,7634,Western Desert,1982,237,7.67489,5.70263,"7634, 7635, 17971" +4495,284291,Bloom Town,2019,639,6.43391,5.70258, +4496,172507,Mmm!,2015,654,6.41678,5.70251, +4497,356873,Lunar Rush,2023,222,7.80532,5.70238, +4498,126239,Twin Tin Bots,2013,866,6.24132,5.70234, +4499,10226,"Thunder at the Crossroads: The Battle of Gettysburg, July 1-3, 1863 (Second Edition)",1993,222,7.80389,5.70226,"10226, 95318" +4500,3040,Star Trek: Starship Tactical Combat Simulator,1983,453,6.73174,5.70218, +4501,102,Klunker,1999,952,6.19203,5.70217,"102, 244234, 427718" +4502,265249,Greenville 1989,2019,418,6.81738,5.70210,"265249, 293237" +4503,350992,Neuroriders,2024,209,7.93014,5.70188, +4504,165346,Mint Tin Pirates,2014,274,7.40128,5.70186, +4505,128921,Rattus Cartus,2012,615,6.45870,5.70179, +4506,90041,Principato,2011,1048,6.14595,5.70179, +4507,917,Rack-O,1956,3244,5.84518,5.70173, +4508,213149,The King's Will,2017,382,6.91984,5.70172, +4509,341931,K3,2021,352,7.02315,5.70165, +4510,142262,Draco Magi,2014,792,6.28898,5.70165, +4511,163641,Eminent Domain: Battlecruisers,2016,774,6.30248,5.70161, +4512,2254,Title Bout,1979,361,6.98864,5.70144,"2254, 250822" +4513,24396,War on Terror: The Boardgame,2006,1208,6.08598,5.70140, +4514,248584,Pantone: The Game,2018,749,6.32157,5.70137,"181042, 248584" +4515,240843,Maiden's Quest,2018,596,6.48059,5.70133, +4516,343566,TRICKTAKERs,2021,264,7.45875,5.70115, +4517,5455,Tobruk: Tank Battles in North Africa 1942,1975,621,6.44827,5.70113,"5455, 208376" +4518,373759,Monolyth,2022,341,7.06139,5.70109, +4519,365698,Rainforest,2022,435,6.76726,5.70106, +4520,203405,Brutal Kingdom,2016,529,6.57712,5.70093, +4521,12055,Streets of Stalingrad (Third Edition),2003,259,7.48980,5.70086,"2236, 12055, 14842, 17476" +4522,387305,Future Inc.,2023,287,7.31523,5.70085, +4523,232974,Paco Ŝako,2017,244,7.59926,5.70081, +4524,220628,Stellium,2017,482,6.66169,5.70078, +4525,3534,Star Trader,1982,302,7.23361,5.70069, +4526,409693,Flatiron,2024,213,7.87406,5.70068, +4527,165628,HINT,2014,487,6.65121,5.70067,"165628, 239435, 287473, 348697, 372426" +4528,271528,Bees: The Secret Kingdom,2019,712,6.35079,5.70066, +4529,1982,Black Spy,1981,754,6.31431,5.70060, +4530,109548,Hemloch,2011,446,6.73796,5.70057,"109548, 145653, 172563, 306144" +4531,192116,Cthulhu: A Deck Building Game,2016,371,6.94763,5.70056,"192116, 237114" +4532,29875,"Barbarossa: Kiev to Rostov, 1941",2008,220,7.80152,5.70039, +4533,91671,Da ist der Wurm drin,2011,674,6.38605,5.70035,"91671, 118699" +4534,294294,Letterpress,2020,411,6.82467,5.70032,"181441, 209926, 294294" +4535,192351,World Monuments,2016,914,6.20557,5.70023, +4536,220778,Sticky Chameleons,2017,775,6.29593,5.70016,"220778, 335131" +4537,310610,Sherlock Far West: La Mina Maldita,2020,366,6.96165,5.70015,"310610, 310611, 310612, 329498" +4538,353945,Infiltraitors,2023,242,7.60785,5.70013, +4539,133405,Island Siege,2013,443,6.74168,5.70004,"133405, 299971" +4540,43264,Pocket Rockets,2009,797,6.27872,5.69996, +4541,184287,Frantic,2015,586,6.48680,5.69990, +4542,330769,Saladin,2022,296,7.25766,5.69989, +4543,114667,The New Science,2013,664,6.39431,5.69989, +4544,276499,Ratzzia,2019,383,6.90264,5.69972, +4545,1379,Ebbe & Flut,2000,590,6.48048,5.69970, +4546,312965,Hogs of War: The Miniatures Game,2021,178,8.28708,5.69965, +4547,354672,Time of Empires,2022,277,7.36079,5.69949, +4548,337389,Snakesss,2021,728,6.33160,5.69949, +4549,217353,Assembly,2016,324,7.11969,5.69948, +4550,34747,Jena 20,2008,368,6.94891,5.69934,"34747, 43332, 147200, 175619" +4551,319604,Ricochet: A la poursuite du Comte courant,2020,244,7.58223,5.69918,"319604, 334583, 353153" +4552,347161,Arracourt,2022,168,8.43304,5.69911, +4553,165877,Spellcaster,2014,557,6.52368,5.69910, +4554,9296,Warzone,1996,314,7.15970,5.69885,"4978, 9296, 13553, 138670, 213926, 363397" +4555,266446,Sherlock: Paradero Desconocido,2018,470,6.67287,5.69852,"266446, 382898" +4556,11582,Schnapsen,1715,362,6.96312,5.69846, +4557,254936,Frontier Wars,2019,249,7.53574,5.69833, +4558,1674,Naval War,1979,825,6.25288,5.69833, +4559,124047,Pirate Dice: Voyage on the Rolling Seas,2012,703,6.34907,5.69832,"89695, 124047" +4560,234776,Tricky Tides,2019,381,6.89878,5.69828, +4561,213661,Food Truck Champion,2017,541,6.54353,5.69824,"213661, 316171" +4562,171261,Hocus,2016,560,6.51324,5.69793, +4563,9354,Privacy,2004,752,6.30497,5.69790,"9354, 38062, 83492, 107604, 181866" +4564,12071,Second Season Pro Football Game,1999,180,8.23230,5.69777,"12071, 414644" +4565,206859,Iberian Rails,2017,363,6.95455,5.69777, +4566,341284,Dungeon Lite: Orcs and Knights,2021,302,7.20795,5.69772, +4567,279900,Afternova,2020,385,6.88087,5.69750, +4568,267568,HexRoller,2019,848,6.23337,5.69713, +4569,230265,Chronicles of Frost,2018,311,7.15916,5.69711,"230265, 351638" +4570,189192,Mi Tierra: New Era,2016,458,6.68935,5.69702,"42704, 189192" +4571,194553,Dairyman,2016,748,6.30446,5.69698, +4572,183420,Kung Fu Zoo,2016,520,6.57066,5.69695,"183420, 306332" +4573,374201,Lata,2023,309,7.16668,5.69688, +4574,92363,Amateurs to Arms!,2012,211,7.84905,5.69686, +4575,145654,Invaders,2013,381,6.88850,5.69682, +4576,283641,Ducks in Tow,2020,332,7.06429,5.69681, +4577,391137,Galactic Cruise,2025,189,8.09869,5.69679, +4578,313093,Four Humours,2022,409,6.80625,5.69672, +4579,339302,Winterhaven Woods,2022,403,6.82270,5.69671,"339302, 403100" +4580,13089,Wie ich die Welt sehe...,2004,395,6.84488,5.69662,"13089, 84989" +4581,88594,Eruption,2011,1144,6.09292,5.69656, +4582,6738,Quicksand,2003,1111,6.10451,5.69651, +4583,102610,Shitenno,2011,444,6.71601,5.69627, +4584,388413,Whale to Look,2023,498,6.60528,5.69625, +4585,237174,"So Long, My World",2018,291,7.25172,5.69622, +4586,343684,Bark Avenue,2023,286,7.27843,5.69617, +4587,364008,Maudit Mot Dit,2022,349,6.99226,5.69610, +4588,748,Trax,1980,579,6.47706,5.69604, +4589,1381,Pokémon Master Trainer,1999,1746,5.95477,5.69592,"1381, 355627, 416814" +4590,7514,Zombie Plague,2001,463,6.67151,5.69583, +4591,257077,A Pleasant Journey to Neko,2018,308,7.16168,5.69573,"257077, 290768" +4592,190333,Fire of Eidolon,2017,308,7.16162,5.69573, +4593,267590,Deep State: New World Order,2019,321,7.10191,5.69568, +4594,27968,"Red Star Rising: The War in Russia, 1941-1944",2007,249,7.50851,5.69568,"15683, 27968, 316611" +4595,319348,Magna Roma,2022,311,7.14536,5.69547, +4596,2944,Halli Galli,1990,3766,5.81503,5.69536,"2944, 15311, 20832, 217320, 312401, 371112, 375700" +4597,340216,Heredity: The Book of Swan,2023,152,8.65987,5.69534, +4598,184170,DiceWar: Light of Dragons,2015,296,7.21736,5.69531,"184170, 202245" +4599,192619,Smiths of Winterforge,2018,418,6.77295,5.69528, +4600,220975,History Maker Golf,2017,157,8.55924,5.69494, +4601,287732,Solar Draft,2019,335,7.03702,5.69491, +4602,4085,Leningrad,1979,492,6.60833,5.69483,"4085, 4252, 9577, 40385, 298529" +4603,5767,Mammoth Hunters,2003,1054,6.12098,5.69475, +4604,198110,Kreus,2016,492,6.60783,5.69475, +4605,172613,Pirates of the 7 Seas,2015,529,6.54298,5.69456, +4606,271264,The Liberation of Rietburg,2019,427,6.74554,5.69455, +4607,192401,Dungeon Time,2017,561,6.49449,5.69454, +4608,5680,Lee vs. Grant: The Wilderness Campaign of 1864,1988,303,7.17518,5.69449, +4609,225610,Smolensk: Barbarossa Derailed,2018,183,8.14426,5.69435, +4610,318353,Soldiers in Postmen's Uniforms,2021,213,7.79869,5.69431, +4611,351876,"I, Napoleon",2024,196,7.98087,5.69428, +4612,5217,Eleusis,1956,419,6.76336,5.69420,"3144, 3983, 5165, 5217, 6414, 20741, 25343, 40219, 105030, 117185, 172161" +4613,161757,New Salem,2015,660,6.37274,5.69415,"161757, 260126" +4614,262939,Far Away,2020,284,7.27045,5.69407, +4615,344405,Cartaventura: Oklahoma,2021,384,6.85915,5.69396, +4616,366129,Gang of Dice,2022,687,6.34509,5.69393, +4617,365455,Colossus,2022,232,7.61858,5.69360,"344295, 365455" +4618,295221,With a Smile & a Gun,2021,249,7.48594,5.69348, +4619,318328,Picnic,2020,354,6.95126,5.69308,"318328, 380163, 392635" +4620,4753,King's Gate,2002,1204,6.06283,5.69302,"2672, 4753" +4621,42111,Fzzzt!,2009,875,6.20180,5.69300, +4622,157088,ESSEN The Game: SPIEL'13,2014,462,6.65634,5.69295, +4623,351038,Yak,2022,562,6.48480,5.69292, +4624,356909,Hand-to-Hand Wombat,2022,766,6.27359,5.69285, +4625,191982,Knit Wit,2016,1259,6.04609,5.69281, +4626,158534,Bring Out Yer Dead,2015,735,6.29766,5.69274, +4627,1894,War Galley: Naval Warfare in the Ancient World,1999,317,7.09501,5.69271, +4628,220203,Purrrlock Holmes: Furriarty's Trail,2017,565,6.47928,5.69267, +4629,17997,Anno Domini: Sex & Crime,1998,454,6.67145,5.69264, +4630,22864,Zeus on the Loose,2006,1186,6.06723,5.69261, +4631,364942,Flashback: Zombie Kidz,2022,262,7.38772,5.69254, +4632,13071,Age of Gods,2004,756,6.27992,5.69251, +4633,269069,Pearls,2019,557,6.48813,5.69219, +4634,323784,Ghost Letters,2020,254,7.43412,5.69184,"323784, 406714" +4635,300036,"Into the Woods: The Battle of Shiloh, April 6-7, 1862",2022,221,7.69382,5.69180,"11139, 300036" +4636,363625,Fateforge: Chronicles of Kaan,2024,159,8.47170,5.69162, +4637,266018,Trinidad,2022,458,6.65638,5.69156,"62030, 266018" +4638,5071,Sjoelen,1870,404,6.78498,5.69151, +4639,319107,Sebastian Fitzek Killercruise,2020,409,6.77114,5.69143,"319107, 376760" +4640,256159,Guardians,2018,298,7.17139,5.69121, +4641,280304,ARTBOX,2019,362,6.90961,5.69120, +4642,101644,Bushido,2011,255,7.42078,5.69119,"101644, 162480, 170201, 280633, 280634" +4643,135193,The Eastern Front: 1914-1917,2012,199,7.90653,5.69112,"7749, 7750, 135193, 172493" +4644,181370,Mint Tin Mini Apocalypse,2015,336,7.00306,5.69110, +4645,288775,Fairy Trails,2020,1045,6.11283,5.69107, +4646,3044,Air Assault on Crete / Invasion of Malta: 1942,1977,556,6.48375,5.69106, +4647,147635,Dungeon Crusade: Book I – Genesis of Evil,2020,197,7.92717,5.69097, +4648,13456,Vampire: Prince of the City,2006,642,6.37695,5.69093, +4649,279,The Very Clever Pipe Game,1996,831,6.22083,5.69090, +4650,225214,Legendary Forests,2017,446,6.67826,5.69090, +4651,4453,Statis Pro Basketball,1972,322,7.05807,5.69085, +4652,379583,Patterns,2023,214,7.74540,5.69062, +4653,172008,Critical Mass: Patriot vs Iron Curtain,2018,425,6.72406,5.69043,"138026, 172008" +4654,23053,Guatemala Café,2006,798,6.24028,5.69027, +4655,6226,Eastern Front Tank Leader,1986,359,6.91198,5.69015,"6226, 6641, 6642, 393038" +4656,33924,Nightfighter: Air Warfare in the Night Skies of World War Two,2011,255,7.40639,5.68976, +4657,153480,Scharfe Schoten,2014,353,6.92927,5.68969, +4658,270,Svea Rike,1996,631,6.38290,5.68964, +4659,262994,Valda,2019,271,7.30380,5.68963, +4660,1783,The Creature That Ate Sheboygan,1979,569,6.45835,5.68962, +4661,10989,ConHex,2002,381,6.83732,5.68957, +4662,280575,Yin Yang,2019,285,7.22200,5.68936, +4663,232318,Kami-sama,2018,427,6.71201,5.68931, +4664,235982,RWBY: Combat Ready,2018,344,6.95864,5.68929, +4665,218126,Whozit?,2017,401,6.77808,5.68927,"218126, 430762" +4666,216640,The Banishing,2017,351,6.93257,5.68919, +4667,357890,An Age Contrived,2024,331,7.00742,5.68916, +4668,4493,Kayanak,1999,585,6.43454,5.68905, +4669,393,Dinosaurs of the Lost World,1987,436,6.68839,5.68891, +4670,279497,The Ratcatcher: The Solo Adventure Game,2020,401,6.77555,5.68890, +4671,17857,18Scan,2005,266,7.32688,5.68888, +4672,136356,Dread Curse,2013,714,6.29881,5.68881, +4673,399011,Barrio,2023,281,7.23851,5.68878, +4674,126750,Sky Tango,2012,721,6.29166,5.68852, +4675,316857,Plantopia: The Card Game,2020,418,6.72883,5.68851, +4676,11081,Familienbande,2004,647,6.35964,5.68830, +4677,342019,60 Second City,2021,498,6.56039,5.68828, +4678,191296,RUMBLESLAM,2016,186,8.02326,5.68827, +4679,182619,M.U.L.E. The Board Game,2015,509,6.54127,5.68823, +4680,137900,Jupiter Rescue,2013,454,6.64418,5.68815, +4681,162865,"I, Spy",2015,285,7.21084,5.68813, +4682,340928,Spruance Leader,2022,146,8.65959,5.68807, +4683,193651,Bohemian Villages,2016,760,6.25885,5.68806, +4684,339924,Hot Lead,2022,352,6.91946,5.68792, +4685,160744,Far Space Foundry,2015,444,6.66416,5.68790, +4686,10527,Gyges,1985,483,6.58529,5.68790,"10527, 241486" +4687,160409,Too Many Cinderellas,2014,638,6.36722,5.68789,"160409, 325381" +4688,4228,1918: Storm in the West,1992,316,7.05934,5.68787,"4228, 240902" +4689,195296,Scuttle!,2016,642,6.36248,5.68778,"195296, 230064, 258474" +4690,22950,Play Nine,2004,632,6.37269,5.68768, +4691,23919,China Rails,2007,313,7.06941,5.68751, +4692,226445,The Big Score,2018,339,6.96312,5.68747, +4693,245994,The Dead Eye,2021,259,7.35711,5.68746, +4694,86177,Genesis: Empires and Kingdoms of the Ancient Middle East,2015,299,7.13348,5.68743, +4695,203759,The Walking Dead: No Sanctuary,2018,441,6.66779,5.68742, +4696,374039,Tiny Epic Crimes,2023,318,7.04671,5.68739,"374039, 406281" +4697,1070,Shadows in the Forest,1985,1234,6.03723,5.68723, +4698,146228,1714: The Case of the Catalans,2014,369,6.85734,5.68718, +4699,155065,Lifeform,2019,282,7.21560,5.68688, +4700,272538,1828,2018,191,7.94366,5.68686, +4701,350198,Terminus,2024,276,7.24836,5.68683, +4702,68603,Popular Front,2010,300,7.12217,5.68669,"68603, 359731" +4703,37461,Kraków 1325 AD,2008,580,6.42913,5.68668, +4704,177499,WWE Superstar Showdown,2015,541,6.48184,5.68652, +4705,3321,Die Pyramiden des Jaguar,2002,1046,6.09758,5.68643,"489, 3321" +4706,11182,Super Scrabble,2004,620,6.37981,5.68638, +4707,97683,Age of Rail: South Africa,2011,229,7.56314,5.68632,"7579, 97683, 270110" +4708,189294,Yeti,2016,703,6.29757,5.68629, +4709,264321,Dead Man's Cabal,2019,420,6.70924,5.68626, +4710,13172,Kung Fu Fighting,2004,1012,6.11066,5.68621,"13172, 156233" +4711,21358,Savage Worlds,2003,181,8.05912,5.68619, +4712,97875,Wiraqocha,2011,511,6.52667,5.68618, +4713,90474,Gold!,2011,565,6.44594,5.68610,"90474, 303635" +4714,1693,Gladiator,1981,498,6.54783,5.68605, +4715,4475,Unexpected Treasures,2002,827,6.20464,5.68595, +4716,111173,Little Devils,2012,996,6.11653,5.68592,"111173, 181955" +4717,82402,Friesematenten,2010,736,6.26854,5.68590,"1898, 82402" +4718,11274,The Devil's Horsemen: The Mongol War Machine,2004,256,7.36012,5.68581, +4719,345887,Dice Kingdoms of Valeria,2022,266,7.29615,5.68570, +4720,110331,Infarkt,2011,553,6.46007,5.68565, +4721,941,Turbo Taxi,2000,1131,6.06401,5.68555, +4722,407343,Ironwood,2024,192,7.91464,5.68553, +4723,43530,Party Alias,2009,893,6.16476,5.68552,"43530, 416065" +4724,36,Federation & Empire,1986,518,6.51158,5.68550,"36, 1594" +4725,283871,Spies & Lies: A Stratego Story,2019,334,6.96650,5.68548, +4726,409572,Intent to Kill,2023,252,7.38208,5.68536, +4727,1549,Password,1962,1025,6.10249,5.68535,"1549, 21076, 129442" +4728,2298,"Kasserine: Rommel's Battle for Tunisia, 1943",2001,275,7.23982,5.68532,"2298, 3523, 309128" +4729,373621,Lone Sherman: A Solitaire Wargame,2022,149,8.55355,5.68527,"373621, 380356, 389811, 415855" +4730,169475,Ghostel,2017,312,7.05478,5.68523, +4731,278685,The Barracks Emperors,2023,251,7.38666,5.68514, +4732,322283,Stargrave: Science Fiction Wargames in the Ravaged Galaxy,2021,171,8.18246,5.68512, +4733,275530,Game of Thrones: Oathbreaker,2019,322,7.00979,5.68493, +4734,292363,Die of the Dead,2021,368,6.84397,5.68490, +4735,189062,Red Flags,2015,932,6.14241,5.68486, +4736,135215,Lords of War: Orcs versus Dwarves,2012,544,6.46785,5.68469,"135215, 144988, 150996" +4737,234900,Frutticola,2021,353,6.89132,5.68465, +4738,2076,Gulf Strike,1983,433,6.66836,5.68465, +4739,284665,Board Royale: The Island,2020,427,6.68119,5.68449, +4740,374200,Celtae,2023,285,7.17755,5.68447, +4741,406652,Compile: Main 1,2024,178,8.07493,5.68446, +4742,132817,Xanadú,2012,543,6.46794,5.68443, +4743,299946,Eiyo,2020,396,6.75773,5.68428, +4744,192656,Nightmarium,2014,591,6.40313,5.68419,"192656, 300120" +4745,216985,Nomads,2017,665,6.32299,5.68416,"183643, 216985" +4746,160432,Ars Alchimia,2014,410,6.71941,5.68403, +4747,207338,Dungeon Rush,2016,730,6.26522,5.68395, +4748,12355,Brigade Fire and Fury: Wargaming the Civil War with Miniatures,1990,208,7.72284,5.68385,"12355, 31025, 301364, 402981" +4749,82,Bobby Lee: The Civil War in Virginia 1861-1865,1993,401,6.74123,5.68382,"82, 83" +4750,178688,Dicetopia,2018,525,6.49126,5.68377, +4751,177877,SiXeS,2016,312,7.04201,5.68371,"177877, 195708" +4752,36325,Down in Flames: Aces High,2008,315,7.02873,5.68367, +4753,1421,Lost Worlds,1983,489,6.54982,5.68362,"1421, 3969, 7113, 24894, 35904, 46313, 107996, 132263, 154227, 316414, 316417, 316418, 316419, 316420, 316421, 316424, 316425, 316426, 316427, 316428, 316430, 316431, 316432, 316433, 316434, 316435, 316436, 316437, 316438, 316439, 316440, 316441, 316443, 316444, 316446, 316447, 316448, 316449, 316451, 316452, 316453, 316454, 316455, 316456, 316457, 316458, 316459, 316460, 316461, 316462, 316463, 316464, 316465, 316466, 316467, 316468, 316469, 316470, 316471, 316472, 316473, 316505, 316506, 316507, 316508, 316509, 316511, 316512, 316513, 316514, 316515, 316516, 316517, 316518, 316524, 325637" +4754,68260,FAB: Sicily,2011,280,7.19536,5.68351, +4755,194196,Kharnage,2016,800,6.21257,5.68349, +4756,48979,Wazabi,2008,1672,5.93635,5.68337, +4757,147021,Hollywood,2013,613,6.37317,5.68332,"147021, 282137" +4758,209664,Skyward,2017,521,6.49496,5.68331, +4759,114912,Starship Merchants,2012,526,6.48663,5.68320, +4760,234842,Chickwood Forest,2017,446,6.63068,5.68319,"166280, 234842" +4761,282007,50 Clues: White Sleep,2019,456,6.60946,5.68312, +4762,266564,Dawn of Mankind,2019,389,6.76756,5.68291, +4763,6431,Air & Armor,1986,193,7.86891,5.68290,"6431, 316401" +4764,28185,The Kaiser's Pirates,2007,556,6.44168,5.68289, +4765,32901,Prawo Dżungli,2007,512,6.50684,5.68288, +4766,23981,Genesis,2006,531,6.47699,5.68281, +4767,369634,Smitten,2022,635,6.34685,5.68280, +4768,9021,Sunken City,2004,886,6.15768,5.68251, +4769,5255,Gorkamorka,1997,443,6.63272,5.68248,"5255, 262554" +4770,386271,Footprints,2023,317,7.01016,5.68245, +4771,227693,Tiny Park,2017,519,6.49283,5.68235,"60245, 227693" +4772,259830,Hedgehog Roll,2019,578,6.41005,5.68234,"259830, 337249" +4773,93541,Urbania,2012,562,6.43063,5.68231, +4774,67178,Water Lily,2010,460,6.59647,5.68230, +4775,406660,Seaside,2024,303,7.06987,5.68226, +4776,202490,Chickapig,2016,600,6.38279,5.68222, +4777,293547,Reload,2022,319,6.99984,5.68221, +4778,257321,Gen7: A Crossroads Game,2018,666,6.31291,5.68212, +4779,1315,Africa,2001,1364,5.99001,5.68208, +4780,13337,Whist,1663,555,6.43885,5.68207, +4781,393887,Kuhfstein,2023,302,7.07085,5.68185, +4782,204886,Suspicion,2016,765,6.22975,5.68174, +4783,387769,Kiri-ai: The Duel,2023,269,7.23855,5.68156,"326198, 326862, 387769" +4784,236931,Battle Hymn Vol. 1: Gettysburg and Pea Ridge,2018,221,7.57653,5.68155,"236931, 267421" +4785,322014,All-Star Draft,2021,304,7.05891,5.68152, +4786,330517,Paradice,2021,330,6.95017,5.68149, +4787,42444,Batt'l Kha'os,2009,738,6.24868,5.68147,"37006, 42444" +4788,1152,The Mystic Wood,1980,520,6.48635,5.68144, +4789,362868,Fire & Stone: Siege of Vienna 1683,2022,249,7.36227,5.68143, +4790,2379,Guesstures,1990,1855,5.90704,5.68143,"2379, 36944" +4791,150013,No Retreat! Italian Front: 1943-45,2015,238,7.43866,5.68131, +4792,39941,Legion of Honor,2014,263,7.27110,5.68126, +4793,175755,The Lord of the Rings: Journey to Mordor,2015,977,6.10883,5.68114, +4794,317526,Masters of The Universe: Fields of Eternia The Board Game,2022,266,7.25170,5.68111, +4795,378387,Inventors of the South Tigris,2024,192,7.85703,5.68111, +4796,383158,Nunatak: Temple of Ice,2023,271,7.22180,5.68101, +4797,210052,Lazer Ryderz,2017,703,6.27481,5.68097, +4798,387201,Emerge,2023,353,6.86355,5.68097, +4799,322,Tonga Bonga,1998,539,6.45523,5.68092, +4800,337853,Angel Fury,2022,191,7.86497,5.68084, +4801,1711,Richthofen's War: The Air War 1916-1918,1972,942,6.12348,5.68078, +4802,21930,Crazy Kick,2006,652,6.32025,5.68075, +4803,235451,GROWL,2019,746,6.23960,5.68073,"235451, 292610, 361457" +4804,2995,Sniper!,1973,441,6.62587,5.68069,"2995, 5940, 6470, 6765, 8037, 39007" +4805,274363,Trial of the Temples,2019,350,6.87160,5.68069, +4806,327371,Psycho Killer,2020,339,6.91011,5.68067, +4807,3818,Alias,1990,1720,5.92279,5.68059,"3818, 16160, 51382, 204138, 229624, 262749, 324680, 328733, 354925, 417981" +4808,34169,Potion-Making: Practice,2005,1008,6.09358,5.68050,"34169, 318657" +4809,118023,Keltis: Das Würfelspiel,2012,573,6.40680,5.68043, +4810,270445,Omerta,2019,301,7.06282,5.68039, +4811,173649,King Chocolate,2015,474,6.55791,5.68033, +4812,192334,Vikings on Board,2016,894,6.14548,5.68029, +4813,139443,Superfight,2013,2868,5.82525,5.68026,"139443, 182199, 198950" +4814,361240,Vivarium,2022,311,7.01704,5.68023, +4815,314393,Wutaki,2021,222,7.55291,5.68022, +4816,246700,Hard City,2020,218,7.58706,5.68021, +4817,297204,Traintopia,2020,424,6.66024,5.68015, +4818,38735,The Swarm,2008,642,6.32726,5.68011, +4819,1233,Facts in Five,1964,880,6.15185,5.68000, +4820,176606,"Rattle, Battle, Grab the Loot",2015,1202,6.02543,5.67999, +4821,165477,Orcs Orcs Orcs,2014,629,6.33990,5.67995, +4822,336552,Mystic Paths,2021,336,6.91534,5.67994, +4823,275557,The Last Bottle of Rum,2021,263,7.25821,5.67994, +4824,9139,Marco Polo Expedition,2004,850,6.16815,5.67991, +4825,57,Schoko & Co.,1987,436,6.63157,5.67988, +4826,13286,Gloria Mundi,2006,1127,6.04795,5.67984, +4827,339532,Battlecrest: Fellwoods Base Game,2022,272,7.20504,5.67984,"339532, 377224, 408838" +4828,134150,Mini Curling Game,2012,520,6.47759,5.67983, +4829,117854,Kosmonauts,2012,438,6.62658,5.67977, +4830,3416,Fallschirmjaeger: The Airborne Assault on Fortress Holland,2001,198,7.77342,5.67971, +4831,121423,Skyline,2012,1488,5.95800,5.67959, +4832,358974,Holotype: Mesozoic North America,2023,242,7.39131,5.67957, +4833,147305,Om Nom Nom,2013,657,6.30982,5.67952, +4834,393307,Tower Up,2024,233,7.45599,5.67944, +4835,345122,Holly Jolly,2021,287,7.12129,5.67939, +4836,380135,Dead Cells: The Rogue-Lite Board Game,2024,161,8.24969,5.67939, +4837,364541,Knight Fall,2022,334,6.91815,5.67936, +4838,35423,Founding Fathers,2007,203,7.71723,5.67934, +4839,33150,Cranium WOW,2007,1053,6.07207,5.67929, +4840,146,Trading Titans,1996,909,6.13425,5.67928, +4841,114261,Malta Besieged: 1940-1942,2011,207,7.67565,5.67916, +4842,35289,The Dutch Golden Age,2008,625,6.34025,5.67913, +4843,286171,Gates of Delirium,2019,305,7.03321,5.67905, +4844,25775,"Elusive Victory: The Air War over the Suez Canal, 1967-1973",2009,185,7.91070,5.67898, +4845,337195,Growing Season,2021,192,7.82797,5.67887, +4846,1644,Tipp-Kick,1921,512,6.48461,5.67884, +4847,233194,Banned Words,2017,310,7.00922,5.67879, +4848,224125,Tesla vs. Edison: Duel,2017,451,6.59306,5.67876, +4849,232045,Shaky Manor,2017,946,6.11434,5.67867, +4850,172896,Don't Turn Your Back,2015,335,6.90882,5.67865, +4851,3992,Advanced Tobruk: Tank Battles in North Africa 1940-43,2002,246,7.35259,5.67853,"3992, 183899" +4852,145599,Journey: Wrath of Demons,2015,374,6.77953,5.67851, +4853,182074,Antarctica,2015,681,6.28308,5.67849, +4854,216234,Pocket Ops,2017,563,6.40978,5.67848, +4855,188225,RONE,2016,248,7.33810,5.67843,"188225, 256122, 291509" +4856,174518,Ylandyss,2015,260,7.26127,5.67841, +4857,375931,Land and Freedom: The Spanish Revolution and Civil War,2023,185,7.90260,5.67838, +4858,68188,Levee En Masse,2010,324,6.94769,5.67829, +4859,378117,The Last Lighthouse,2024,272,7.18967,5.67822, +4860,282227,One Small Step,2020,307,7.01710,5.67819,"282227, 320045" +4861,222531,ELO Darkness,2018,243,7.36967,5.67818, +4862,164237,Neptun,2014,462,6.56750,5.67812, +4863,8059,Ideology: The War of Ideas,2003,910,6.12960,5.67811, +4864,299179,Chancellorsville 1863,2020,190,7.83975,5.67805, +4865,204470,The Stygian Society,2020,280,7.14375,5.67792, +4866,63027,Leviathans,2012,302,7.03609,5.67782,"63027, 368845" +4867,249505,Nyctophobia,2018,1271,6.00053,5.67781,"249505, 252314" +4868,359318,Foxy,2022,270,7.19691,5.67780, +4869,93287,Final Fantasy Trading Card Game,2011,286,7.11190,5.67780, +4870,90568,Democracy under Siege,2011,228,7.47591,5.67773,"90568, 216220" +4871,58624,Storm Over Dien Bien Phu,2014,215,7.58447,5.67772, +4872,5614,Achtung: Spitfire!,1995,229,7.46638,5.67758, +4873,4102,Europa Universalis,1993,360,6.81503,5.67752, +4874,8719,The Next War: Modern Conflict in Europe,1978,231,7.45022,5.67752, +4875,279741,Devil May Cry: The Bloody Palace,2021,200,7.72425,5.67746, +4876,203321,This War Without an Enemy,2020,200,7.72417,5.67745, +4877,410655,Star Wars: Bounty Hunters,2024,396,6.71084,5.67741, +4878,169697,Heldentaufe,2017,260,7.25073,5.67734, +4879,149097,Spurs: A Tale in the Old West,2014,334,6.90198,5.67732, +4880,295490,Dodo,2020,475,6.53838,5.67731, +4881,3586,Sherlock,1999,688,6.27170,5.67729,"3586, 52332" +4882,187289,"Here, Kitty, Kitty!",2016,722,6.24359,5.67726, +4883,228766,A4 Quest,2017,417,6.65775,5.67725,"228766, 246310" +4884,67,Conquest,1974,489,6.51303,5.67718,"67, 20467, 28678" +4885,264,Enemy in Sight,1988,700,6.26094,5.67715, +4886,298701,Decktective: The Gaze of the Ghost,2020,555,6.41337,5.67713, +4887,175961,Three Cheers for Master,2015,756,6.21759,5.67713, +4888,182116,Dingo's Dreams,2016,1130,6.03858,5.67708,"182116, 310602" +4889,233015,Imperius,2018,491,6.50886,5.67705,"220980, 233015" +4890,361598,At the Helm,2022,252,7.29610,5.67689, +4891,27101,Bomber Command: The Night Raids,2012,209,7.62895,5.67686, +4892,260934,Ignite,2021,248,7.32165,5.67683, +4893,244171,Sherlock Holmes: Four Investigations,2014,335,6.89429,5.67681, +4894,2524,StarForce 'Alpha Centauri': Interstellar Conflict in the 25th Century,1974,458,6.56690,5.67674,"2524, 3663, 6215, 146115" +4895,20195,Six,2003,715,6.24692,5.67673,"20195, 21992" +4896,331652,Mazescape: Ariadne,2021,444,6.59488,5.67672, +4897,8069,Clue FX,2003,709,6.25113,5.67659, +4898,225759,Armageddon War: Platoon Level Combat in the End War,2018,176,7.99034,5.67654, +4899,137651,What's He Building in There?,2013,443,6.59558,5.67650, +4900,872,M,2000,627,6.32573,5.67647, +4901,266266,Murder Mystery Party Case Files: Death in Antarctica,2017,269,7.18912,5.67640, +4902,275777,Erune,2021,175,8.00114,5.67636, +4903,216864,Card City XL,2017,890,6.13299,5.67623,"129710, 216864" +4904,199881,Space Cantina,2016,203,7.67818,5.67618,"199881, 429587" +4905,306311,Eternal Palace,2022,495,6.49717,5.67617,"306311, 355129" +4906,297674,Pacific Rails Inc.,2020,415,6.65497,5.67610, +4907,332393,Bridge City Poker,2022,289,7.08076,5.67599, +4908,326175,The Smoky Valley,2022,195,7.75754,5.67596,"326175, 432218" +4909,231223,Visitor in Blackwood Grove,2018,812,6.17571,5.67593, +4910,352201,Skull Canyon: Ski Fest,2022,269,7.18380,5.67585, +4911,209166,Meduris: Der Ruf der Götter,2016,487,6.50878,5.67585, +4912,160853,Stuff and Nonsense,2015,701,6.25449,5.67584,"3133, 160853" +4913,3095,Star Trek: The Adventure Game,1985,323,6.93066,5.67572, +4914,4454,Statis Pro Football,1973,422,6.63590,5.67566, +4915,193725,Blood & Plunder: Rulebook,2016,135,8.67585,5.67558,"193725, 321476, 422650" +4916,368046,La Bête,2022,228,7.45018,5.67542, +4917,223669,Premières Gloires,2017,186,7.85054,5.67539,"9865, 9870, 9918, 16455, 223669" +4918,146725,Golem Arcana,2014,650,6.29765,5.67535, +4919,306676,Tales from the Loop: The Board Game,2022,333,6.88929,5.67525, +4920,222291,Ivion: The Herocrafting Card Game,2018,200,7.69560,5.67517,"222291, 264205, 344117, 344118, 368551, 368605, 368720, 368749, 390572, 400095, 400096" +4921,164874,Airborne Commander,2015,326,6.91460,5.67516, +4922,174852,Pandánte (Second Edition),2015,456,6.56071,5.67507,"140163, 174852" +4923,39088,Hoppladi Hopplada!,2008,638,6.30803,5.67506, +4924,137,Pass the Bomb,1994,2130,5.86454,5.67501,"137, 15383, 63052, 91995, 295124, 331541, 350626" +4925,332233,Death Roads: All Stars,2023,213,7.56967,5.67495, +4926,367476,Inheritors,2022,281,7.11070,5.67490, +4927,165347,Mint Tin Aliens,2014,227,7.45172,5.67485, +4928,367086,Dragons of Etchinstone,2022,172,8.01919,5.67480, +4929,108665,Zpocalypse,2013,744,6.21667,5.67477,"108665, 133176, 179804" +4930,85652,Dystopian Wars: Core Rulebook,2010,253,7.26779,5.67472,"85652, 174045, 196135, 334606, 404884" +4931,228183,Star Scrappers: Cave-in,2018,359,6.79708,5.67468, +4932,214204,ARGH,2017,377,6.74345,5.67467, +4933,176817,Assassinorum: Execution Force,2015,381,6.73189,5.67462, +4934,766,Regatta,1967,611,6.33362,5.67456, +4935,385720,Dustrunner,2023,210,7.59185,5.67454, +4936,194062,Master of the Galaxy,2018,445,6.57904,5.67450, +4937,4862,Outburst!,1986,2215,5.85616,5.67446,"4862, 14525, 21275, 31767, 96420" +4938,336323,Evil Upheaval,2021,136,8.63309,5.67443, +4939,34375,Go Nuts!,2008,633,6.30985,5.67438, +4940,282493,TINYforming Mars,2019,312,6.96342,5.67435, +4941,138104,Warmachine: High Command,2013,779,6.19057,5.67433,"138104, 138105, 160664" +4942,280203,Chicken Chicken,2019,466,6.53720,5.67431,"280203, 405292" +4943,273065,Genius Square,2018,365,6.77594,5.67431, +4944,4244,Highway to the Reich: Operation Market-Garden 17-26 September 1944,1977,264,7.19697,5.67427,"4244, 37912" +4945,41833,Creationary,2009,1915,5.88414,5.67425,"41833, 349084" +4946,4008,Cobra: Game of the Normandy Breakout,1977,367,6.76894,5.67417, +4947,414302,Xylotar,2024,280,7.10857,5.67412,"383087, 414302" +4948,339753,Évora,2022,194,7.74330,5.67403, +4949,298086,The Fog: Escape from Paradise,2024,199,7.69028,5.67394,"298086, 416830" +4950,265785,Rune,2019,416,6.63730,5.67376, +4951,368263,Delta,2023,253,7.25803,5.67376, +4952,233976,Pie Town,2017,604,6.33711,5.67370, +4953,923,Breakaway Rider,1963,808,6.16939,5.67365, +4954,358636,SAS: Rogue Regiment,2024,131,8.73084,5.67362,"358636, 430643" +4955,37296,Yahtzee Free for All,2008,697,6.24802,5.67357, +4956,394127,Yokai Pagoda,2023,202,7.65479,5.67350, +4957,393333,Galileo Galilei,2024,217,7.51723,5.67345, +4958,123045,Uncharted: The Board Game,2012,570,6.37525,5.67342, +4959,161926,Dead Drop,2015,636,6.30232,5.67340, +4960,26983,Dorn,2006,329,6.88891,5.67336, +4961,17162,The Little Orchard,2004,531,6.42553,5.67318, +4962,154600,Desperados of Dice Town,2014,853,6.14134,5.67313, +4963,368517,Dice Manor,2023,336,6.86163,5.67311, +4964,59149,Bunny Bunny Moose Moose,2009,1066,6.04760,5.67307, +4965,217531,Wizards Wanted,2017,409,6.64919,5.67307, +4966,275912,Rise & Fall,2024,188,7.79511,5.67295, +4967,181265,BrilliAnts,2017,348,6.81845,5.67283,"181265, 249897" +4968,207242,Pentaquark,2016,454,6.55035,5.67273,"207242, 246619" +4969,118703,20th Century Limited,2015,341,6.84114,5.67272,"118703, 193291" +4970,11122,Proud Monster: The Barbarossa Campaign,1994,230,7.40478,5.67270,"11122, 99313" +4971,22677,Stalin's War,2010,347,6.82063,5.67268, +4972,147299,Pocket Imperium,2013,767,6.19142,5.67253, +4973,230590,Empires,2017,357,6.78714,5.67250,"170715, 230590" +4974,218179,Princess Jing,2018,618,6.31563,5.67234, +4975,309427,Total Domination,2023,268,7.15567,5.67233,"222951, 309427" +4976,176963,Dadaocheng,2015,362,6.76976,5.67223,"176963, 289802" +4977,126912,Lady Alice,2012,628,6.30460,5.67217, +4978,189869,The Butterfly Garden,2016,446,6.56265,5.67217,"189869, 306074" +4979,34659,The Spanish Civil War 1936-1939,2010,246,7.28577,5.67209, +4980,171278,Victory Roads: From Bagration to the Fall of Berlin 1944-1945,2015,167,8.04790,5.67200, +4981,235362,Santa Cruz 1797,2017,187,7.79358,5.67199, +4982,2872,Terrace,1992,552,6.39053,5.67195,"2872, 15676" +4983,5357,Von Manstein's Backhand Blow,2002,251,7.25168,5.67190, +4984,102144,Perplexus Epic,2010,258,7.20872,5.67189, +4985,204879,Planet Defenders,2016,448,6.55651,5.67182, +4986,234432,Video Game Champion,2023,174,7.94856,5.67174, +4987,257706,Zoo-ography,2021,273,7.12241,5.67169,"257706, 333904, 425756" +4988,3711,Flight Leader,1986,686,6.24850,5.67157,"3711, 8380" +4989,224403,Carthage,2018,230,7.39213,5.67155, +4990,316632,La Marche du Crabe,2020,399,6.66320,5.67153, +4991,72478,Trollhalla,2011,427,6.59802,5.67150, +4992,4356,Monkeys on the Moon,2002,764,6.18900,5.67142, +4993,210152,Bushido,2018,248,7.26585,5.67142, +4994,107635,Kairo,2012,489,6.47983,5.67138,"72083, 107635" +4995,286363,SPELL,2020,210,7.55384,5.67137, +4996,21947,RAN,2007,231,7.38043,5.67116, +4997,148767,Brandon the Brave,2013,541,6.40097,5.67116, +4998,311610,Blazon,2023,333,6.85667,5.67114, +4999,252657,luz,2014,241,7.30905,5.67112,"252657, 420862" +5000,335271,Camel Up: Off Season,2021,319,6.90832,5.67109, +5001,24416,Santy Anno,2006,597,6.33213,5.67108, +5002,95386,Tem-Purr-A,2011,1069,6.04003,5.67101, +5003,395813,Neopets Battledome Trading Card Game,2024,104,9.46154,5.67090, +5004,330,Block Mania,1987,463,6.52219,5.67087, +5005,248928,The White Tribe: Rhodesia's War 1966-1980,2018,164,8.07409,5.67086, +5006,180845,Wibbell++,2017,288,7.03874,5.67079,"180845, 227790, 227819, 230774, 230775, 230778, 233395, 255818, 256590, 267750, 291696, 341758, 341786, 341830, 349947, 363491" +5007,88016,Briefcase,2012,643,6.28347,5.67078, +5008,351991,Worldbreakers: Advent of the Khanate,2023,193,7.71015,5.67064, +5009,323046,"Panzers Last Stand: Battles for Budapest, 1945",2021,121,8.92314,5.67061, +5010,31697,Totensonntag,2007,339,6.83127,5.67057, +5011,12898,La Bataille d'Auerstædt,1977,196,7.67755,5.67053, +5012,373835,Unlock! Kids: Stories from the Past,2022,178,7.88011,5.67050, +5013,40761,Montego Bay,2009,702,6.23007,5.67034, +5014,347311,Delicious,2022,321,6.89413,5.67030, +5015,353745,From the Moon,2024,211,7.53033,5.67015, +5016,191986,Rhodes,2016,425,6.59266,5.66999, +5017,341779,Kim-Joy's Magic Bakery,2021,330,6.85787,5.66994, +5018,248763,Magic: The Gathering – Heroes of Dominaria Board Game,2018,425,6.59224,5.66993, +5019,499,Arbos,1999,499,6.45539,5.66991,"499, 131308, 169368" +5020,62922,None But Heroes,2011,153,8.23137,5.66989, +5021,95613,Mammut,2011,712,6.22031,5.66989, +5022,8316,Over the Reich,1993,183,7.81120,5.66987, +5023,376610,Blueprints of Mad King Ludwig,2024,236,7.32977,5.66982, +5024,393352,Perfect Words,2023,303,6.96225,5.66977, +5025,8138,Kogge,2003,368,6.73327,5.66967, +5026,331635,Kameloot,2021,382,6.69368,5.66959, +5027,256438,Snow Time,2018,512,6.43223,5.66933, +5028,393175,Nocturne,2024,279,7.06878,5.66927, +5029,193551,Mutant Crops,2016,371,6.72147,5.66923, +5030,105023,Fleet Commander: Nimitz – The WWII Pacific Ocean Solitaire Strategy Game,2014,286,7.03385,5.66919, +5031,199309,Pathogenesis,2017,302,6.96103,5.66913,"199309, 263312" +5032,252432,Zoo Break,2019,180,7.83653,5.66912, +5033,287507,Evil Dead 2: The Board Game,2020,290,7.01425,5.66911,"287507, 420468" +5034,158973,Albion's Legacy,2015,427,6.58239,5.66906,"158973, 178098, 201560, 241227, 339004" +5035,427,Grass,1980,1200,5.99396,5.66903, +5036,357203,Longboard,2022,427,6.58180,5.66897, +5037,283289,ClipCut Parks,2019,469,6.50002,5.66896, +5038,293941,Mage Noir,2022,230,7.36217,5.66884, +5039,3279,Magi-Nation Duel,2000,281,7.05209,5.66854, +5040,298512,Soulgivers,2022,158,8.12842,5.66849, +5041,310885,Belaad: The Land of Swords and Quills,2020,193,7.68228,5.66849, +5042,16320,Bonnie and Clyde,2009,661,6.25640,5.66847, +5043,319899,Decktective: Nightmare in the Mirror,2021,307,6.93427,5.66846, +5044,236304,Cerebria: The Card Game,2018,516,6.42148,5.66844, +5045,162315,Mouse Guard: Swords & Strongholds,2015,294,6.98884,5.66830, +5046,1448,Freight Train,1993,544,6.38168,5.66825, +5047,278824,Rollecate,2019,668,6.24921,5.66824,"278824, 346236, 359644" +5048,334646,Dice Hospital: ER – Emergency Roll,2022,438,6.55418,5.66822, +5049,21022,Was'n das?,2005,359,6.74869,5.66816, +5050,181122,Wrath of Dragons,2015,308,6.92714,5.66811, +5051,163027,Loop Inc.,2015,562,6.35772,5.66803, +5052,33088,Chabyrinthe,2007,1017,6.04904,5.66799, +5053,2063,The Great Khan Game,1989,386,6.67172,5.66796, +5054,304666,Wild Life: The Card Game,2021,156,8.15064,5.66790, +5055,69278,Nuklear Winter '68,2012,232,7.33728,5.66790,"52286, 69278" +5056,4522,The Ladybug's Costume Party,2002,470,6.49177,5.66787, +5057,368035,Unlock!: Short Adventures – The Secrets of the Octopus,2022,269,7.10719,5.66785, +5058,669,Plague & Pestilence,1993,706,6.21512,5.66758,"669, 420757" +5059,39939,"The Battle of Fontenoy: 11 May, 1745",2012,130,8.64077,5.66756, +5060,151,Piratenbillard,1989,439,6.54772,5.66751, +5061,177702,Warehouse 51,2015,786,6.15905,5.66749, +5062,4637,Max,1986,496,6.44627,5.66746, +5063,9606,Cluzzle,2004,634,6.27537,5.66716, +5064,219638,Donner Dinner Party,2017,656,6.25485,5.66713, +5065,8126,Maya,2003,613,6.29566,5.66705, +5066,392492,Stupor Mundi,2025,254,7.18386,5.66702, +5067,178754,Z War One: Damnation,2016,187,7.72561,5.66689,"178754, 246568" +5068,103814,Streams,2011,416,6.59154,5.66677,"103814, 279989, 338783, 424149" +5069,282707,Città-Stato,2022,296,6.96380,5.66647, +5070,141653,Disc Duelers,2013,407,6.60973,5.66643, +5071,295931,Granada: Last Stand of the Moors – 1482-1492,2021,158,8.09323,5.66623, +5072,363481,Fancy Feathers,2022,463,6.49435,5.66622, +5073,137141,Batman Miniature Game: Rulebook,2012,187,7.71620,5.66618,"137141, 209254, 237181, 300420, 312020" +5074,362505,One Piece Card Game,2022,196,7.62092,5.66609, +5075,130295,Spellbound,2012,337,6.80240,5.66602, +5076,131261,Risk: StarCraft Collector's Edition,2012,487,6.45215,5.66597, +5077,344759,The Rocketeer: Fate of the Future,2021,265,7.11047,5.66594, +5078,285554,Fire!,2019,485,6.45499,5.66590, +5079,311822,Kinghill,2022,172,7.88953,5.66581, +5080,137406,Templar: The Secret Treasures,2013,494,6.43992,5.66578,"85332, 137406" +5081,105024,Israeli Air Force Leader,2017,161,8.04037,5.66574, +5082,1203,Witch Trial,2001,678,6.22905,5.66561, +5083,152846,The Convicted,2014,328,6.83024,5.66560,"152846, 184648" +5084,67823,Piou Piou,2009,435,6.54288,5.66546, +5085,8325,The Desert Fox: Rommel's Campaign for North Africa April 1941-December 1942,1981,257,7.14992,5.66539,"8325, 8334, 182499" +5086,66437,Souvlaki Wars,2011,493,6.43909,5.66536, +5087,322124,Power Rangers: Deck-Building Game,2021,251,7.18426,5.66528,"322124, 341713" +5088,371981,Yokai Sketch,2023,304,6.91865,5.66519, +5089,385799,Scram!,2023,285,7.00192,5.66515, +5090,288539,The Jaws of Victory: Battle of Korsun-Cherkassy Pocket – January/February 1944,2020,130,8.59538,5.66514, +5091,263223,Next War: Vietnam,2020,137,8.44526,5.66511, +5092,366577,Bestiary of Sigillum: Collector's Edition,2023,234,7.29259,5.66509,"172484, 366577, 430344" +5093,226146,Tower of Madness,2018,506,6.41743,5.66504, +5094,319320,Wok and Roll,2020,282,7.01441,5.66497, +5095,230361,Mars Open: Tabletop Golf,2018,351,6.74866,5.66490, +5096,347757,Borderlands: Mister Torgue's Arena of Badassery,2023,194,7.62552,5.66489, +5097,286145,Walking in Provence,2019,318,6.86090,5.66488, +5098,42651,Airborne in My Pocket,2009,336,6.79654,5.66484,"42651, 127721" +5099,6191,Xe Queo!,1998,491,6.43910,5.66481,"6191, 220541" +5100,34639,The Dungeon of D,2008,254,7.16126,5.66478, +5101,354859,The Fields of Normandy: A Solitaire Wargame,2022,162,8.01049,5.66474, +5102,232924,"Charlemagne, Master of Europe",2017,209,7.48278,5.66472, +5103,154479,Piña Pirata,2014,876,6.09825,5.66466, +5104,176,Give Me the Brain!,1996,2190,5.83787,5.66455,"176, 314671" +5105,231450,Lucky's Misadventures: Episode 42 – Lost in Oddtopia,2018,256,7.14699,5.66452, +5106,171339,Entropy,2015,794,6.14247,5.66451,"171339, 177680, 223151" +5107,419704,Phoenix New Horizon,2024,162,8.00584,5.66443, +5108,366397,Colorado,2023,284,6.99965,5.66439, +5109,88406,Astra Titanus: Starfleets vs. Planetbusters!,2010,255,7.15118,5.66436, +5110,40258,Buffalo Wings,2010,151,8.17464,5.66432, +5111,11396,Dragon Master,2004,610,6.28483,5.66413,"11396, 37362, 188389, 413860" +5112,262520,Chachapoya,2019,242,7.22807,5.66408,"262520, 357912" +5113,35477,Dead of Winter: The Battle of Stones River (Second Edition),2009,236,7.26675,5.66398,"10361, 35477" +5114,13511,Ninja Versus Ninja,2008,992,6.04517,5.66394, +5115,337070,Arkham Noir: Case #3 – Infinite Gulfs of Darkness,2021,248,7.18864,5.66392, +5116,359601,Weirdwood Manor,2024,225,7.34422,5.66390, +5117,8222,Spank the Monkey,2003,1613,5.89805,5.66380,"8222, 147145, 337153" +5118,277131,Age of Dirt: A Game of Uncivilization,2019,287,6.97967,5.66372, +5119,199047,Cobras,2017,327,6.81856,5.66371, +5120,43691,Delve: The Dice Game,2009,480,6.45031,5.66368, +5121,223602,Klondike Rush,2017,523,6.38548,5.66365, +5122,146158,New Haven,2013,474,6.45974,5.66359, +5123,10789,Pitch,1600,334,6.79281,5.66351, +5124,4610,Lord of the Rings: The Duel,2002,1445,5.92440,5.66346, +5125,345967,Lying Pirates: The Race for the Pirate Throne,2023,211,7.44891,5.66333, +5126,103184,The Gnomes of Zavandor,2011,559,6.33642,5.66315, +5127,354866,Dice Conquest,2022,285,6.98326,5.66310,"354866, 427713" +5128,129945,HomeStretch,2012,356,6.71980,5.66308, +5129,344408,Full Throttle!,2021,430,6.53741,5.66300, +5130,275032,Ghost Adventure,2020,323,6.82704,5.66299,"275032, 411844" +5131,194298,Expedition: The Roleplaying Card Game,2016,478,6.44867,5.66284,"194298, 282041" +5132,85800,Octopus' Garden,2011,401,6.59956,5.66283,"85800, 241067" +5133,1463,Girl Genius: The Works,2001,957,6.05519,5.66279,"1463, 1627, 254498, 254500, 254502, 254504, 254505" +5134,319114,Krazy Pix,2020,256,7.12953,5.66278, +5135,357841,Castles by the Sea,2023,272,7.04315,5.66277, +5136,293981,The Adventure Zone: Bureau of Balance Game,2020,203,7.51207,5.66274, +5137,192296,The Pirate Republic,2018,263,7.08992,5.66272,"192296, 347979" +5138,225836,España 20: La Guerra Peninsular,2017,198,7.55843,5.66272,"40803, 170390, 204659, 225836" +5139,193727,Absolute War! The Russian Front 1941-45,2021,227,7.31608,5.66270, +5140,144479,Myths at War,2013,252,7.15107,5.66260,"144479, 147168, 158751, 158752, 167349, 171488, 206968, 244067, 244085, 244086, 244088, 244090" +5141,194078,Operation Mercury: The Invasion of Crete,2017,155,8.08194,5.66256, +5142,179280,Trivial Pursuit: Harry Potter – Volume 1,2014,936,6.06298,5.66250,"179280, 254195" +5143,2665,Russian Civil War 1918-1922,1976,263,7.08679,5.66240,"2665, 92759" +5144,185374,Loot N Run,2016,547,6.34667,5.66229, +5145,38553,Duck Dealer,2008,588,6.29871,5.66224, +5146,1098,Judge Dredd,1982,546,6.34749,5.66220,"1098, 371182" +5147,368956,Minecraft: Portal Dash,2022,269,7.05250,5.66213, +5148,4255,Ney vs. Wellington: The Battle of Quatre Bras,1979,290,6.95166,5.66212, +5149,193213,Millions of Dollars,2016,492,6.42191,5.66206,"193213, 415807" +5150,66125,Le Donjon de Naheulbeuk,2010,388,6.62526,5.66202, +5151,2268,Lost Patrol,2000,433,6.52513,5.66201,"2268, 317313" +5152,950,Four Dragons,2000,425,6.54136,5.66201, +5153,21414,To the Last Man! The Great War in the West,2009,211,7.43273,5.66197,"21414, 97728" +5154,230358,Penny Papers Adventures: The Temple of Apikhabou,2018,547,6.34471,5.66191, +5155,280566,Adventure Mart,2020,376,6.65521,5.66191, +5156,250488,This Guilty Land,2018,206,7.47463,5.66188, +5157,172560,Piratoons,2015,527,6.37037,5.66186, +5158,295072,Downfall of Empires,2022,194,7.58610,5.66183, +5159,178007,Apocalypse Chaos,2015,475,6.44758,5.66180, +5160,39332,Tasso,2004,633,6.25130,5.66177,"39332, 263212, 369256" +5161,356485,AOC: Age of Champagne,2023,234,7.25556,5.66168, +5162,329563,Prime Minister,2023,196,7.56445,5.66167, +5163,292900,Squaring Circleville,2021,262,7.08497,5.66166, +5164,243971,Book It!: The Pro Wrestling Promoter Card Game,2018,215,7.39600,5.66165, +5165,8284,Assault: Tactical Combat in Europe – 1985,1983,301,6.90013,5.66161,"8284, 8285" +5166,172362,Kenjin,2015,474,6.44762,5.66153, +5167,15261,"Trump, Tricks, Game!",2005,461,6.46963,5.66150, +5168,99459,Banjooli Xeet,2013,521,6.37623,5.66144,"99459, 258325" +5169,284639,Gatefall,2020,183,7.69570,5.66138,"284639, 374547" +5170,12830,Cellar des Triplettes,2004,713,6.18344,5.66137, +5171,175495,Titan Race,2015,962,6.04826,5.66135, +5172,64,Joan of Arc,1998,553,6.33438,5.66134,"64, 22666" +5173,185021,Liguria,2015,354,6.71162,5.66120, +5174,159355,Colors of Kasane,2014,370,6.66550,5.66110, +5175,120265,"Supply Lines of the American Revolution: The Northern Theater, 1775-1777",2017,215,7.38898,5.66105,"120265, 248332" +5176,92852,Say Anything Family Edition,2011,376,6.64847,5.66096, +5177,109451,A Fistful of Penguins,2011,1102,5.99783,5.66094, +5178,232139,Autumn For Barbarossa,2017,201,7.50597,5.66078, +5179,212487,AFFLICTION: Salem 1692,2017,242,7.19321,5.66077, +5180,342073,Berried Treasure,2021,543,6.34366,5.66075,"198, 18013, 342073" +5181,289566,Hunted: Kobayashi Tower,2021,299,6.90094,5.66075,"289566, 410292" +5182,223996,"Minuit, Meurtre en Mer",2017,247,7.16190,5.66074,"223996, 316387" +5183,362860,Dice Hunters of Therion,2022,476,6.43958,5.66072, +5184,258389,Futuropia,2018,546,6.33958,5.66069, +5185,26459,PQ-17: Arctic Naval Operations 1941-1943,2009,227,7.29329,5.66066, +5186,245222,Squadro,2018,477,6.43749,5.66064, +5187,320879,Dual Gauge,2020,264,7.06402,5.66061, +5188,156482,Unknown,2016,199,7.52146,5.66054, +5189,147768,Five Cucumbers,2013,1464,5.91341,5.66051, +5190,246742,Château Aventure,2018,244,7.17725,5.66044, +5191,342209,echoes: The Microchip,2021,424,6.53325,5.66043, +5192,178835,Bruti,2015,321,6.81325,5.66042, +5193,20889,Great War at Sea: Jutland,2006,264,7.06212,5.66042,"4915, 20889" +5194,329432,Tarawa 1943,2021,189,7.61720,5.66033, +5195,233502,Katarenga,2017,222,7.32590,5.66029, +5196,316,Chase,1985,326,6.79401,5.66023, +5197,181393,Brass Empire,2016,356,6.69823,5.66020, +5198,1823,1829,1974,275,7.00385,5.66018,"1823, 6937" +5199,110870,Cavemen: The Quest for Fire,2012,550,6.33200,5.66018, +5200,327793,30 Monedas,2021,191,7.59450,5.66016, +5201,259345,Snail Sprint!,2018,315,6.83286,5.66014, +5202,82955,1655: Habemus Papam,2010,467,6.45079,5.66008, +5203,17863,The Western Front: 1914 to 1918,2004,176,7.75795,5.66006,"8717, 17863" +5204,359974,Broken and Beautiful: A Game About Kintsugi,2023,290,6.93314,5.66005, +5205,2638,"Clash of Giants: Campaigns of Tannenberg and the Marne, 1914",2001,305,6.87050,5.66004, +5206,184704,Dragonsgate College,2017,418,6.54297,5.66000, +5207,259857,Jurassic Parts,2020,411,6.55767,5.65995, +5208,9615,Station Master,2004,672,6.20900,5.65995,"9615, 296113" +5209,20082,Pecunia non olet: Geld stinkt nicht,2005,573,6.30386,5.65995,"20082, 209672" +5210,378889,KINGs: TRICKTAKERs,2023,185,7.65405,5.65993, +5211,323365,Outnumbered: Improbable Heroes,2021,309,6.85355,5.65989,"148744, 214603, 323365" +5212,129293,Gauntlet of Fools,2012,1162,5.97725,5.65987, +5213,90,Star Wars: Episode 1 – Clash of the Lightsabers,1999,703,6.18446,5.65987,"90, 30852, 39435, 71304" +5214,118776,Tahiti,2012,554,6.32537,5.65983, +5215,405538,Rafter Five,2023,339,6.74730,5.65981, +5216,301387,AracKhan Wars,2023,129,8.51313,5.65958, +5217,361905,Lofoten,2022,358,6.68736,5.65952, +5218,343847,Dustbiters,2021,207,7.43696,5.65950, +5219,291334,Tanto Monta: The Rise of Ferdinand & Isabella 1470-1516,2024,175,7.76101,5.65943, +5220,325681,Sherlock: Asesinato en el Sind Mail,2020,268,7.03045,5.65930,"325678, 325679, 325681, 359667" +5221,342674,Jiangnan: Life of Gentry,2022,200,7.49657,5.65929, +5222,282008,50 Clues: The Fate of Leopold,2019,432,6.50976,5.65927, +5223,367031,1914: Nach Paris,2022,115,8.85391,5.65926, +5224,324150,Reign of Witches,2020,250,7.12840,5.65922, +5225,174611,Ion: A Compound Building Game,2015,541,6.33736,5.65907, +5226,364679,USPS: The Great American Mail Race,2022,353,6.69735,5.65891, +5227,184919,Greedy Greedy Goblins,2016,601,6.26871,5.65888, +5228,18932,Siena,2005,734,6.15796,5.65882, +5229,265684,Subtext,2019,472,6.43499,5.65882, +5230,4368,In their Quiet Fields II,1995,222,7.30901,5.65881,"4368, 59031" +5231,145501,Fun Farm,2013,579,6.29148,5.65880, +5232,54433,Nanuk,2009,692,6.18801,5.65877, +5233,1309,Die Magier von Pangea,2001,673,6.20236,5.65863, +5234,221372,Rick and Morty: Close Rick-Counters of the Rick Kind Deck-Building Game,2017,520,6.36206,5.65858,"221372, 246534" +5235,244806,Nouvelle-France,2021,168,7.83585,5.65857, +5236,394144,Risk Strike,2023,275,6.98830,5.65853, +5237,368413,Relic Hunters,2022,222,7.30490,5.65845, +5238,228412,Dark Venture,2019,250,7.11992,5.65839, +5239,411255,Solstis,2024,403,6.56467,5.65834, +5240,402111,Kronologic: Paris 1920,2024,219,7.32560,5.65829, +5241,113931,Rock'n Roll Manager,2016,193,7.55011,5.65828, +5242,70532,Tonkin: The First Indochina War (Second Edition),2012,178,7.70899,5.65824,"25289, 70532" +5243,165694,The Cones of Dunshire,,94,9.54043,5.65820, +5244,319421,Mission Catastrophe,2022,210,7.39452,5.65808, +5245,266592,TacTiki,2022,224,7.28544,5.65803, +5246,170225,DRCongo,2015,287,6.92791,5.65800, +5247,5504,Napoleon's Battles,1989,312,6.82564,5.65794,"5504, 40679, 299911" +5248,347505,Nouvelles ContRées,2021,257,7.07409,5.65779, +5249,342479,Orlog: Assassin's Creed Valhalla Dice Game,2021,447,6.47188,5.65776, +5250,228943,Barbaria,2017,340,6.72779,5.65772,"202023, 228943" +5251,113,"Plotters, Inc.",1999,340,6.72735,5.65766, +5252,13403,Three Battles of Manassas,2004,190,7.57118,5.65761,"8888, 13403" +5253,178655,Panzer Battles: 11th Panzer on the Chir River,2016,197,7.50279,5.65758, +5254,193693,Agamemnon,2016,364,6.65556,5.65749, +5255,210908,Rail Pass,2019,378,6.61828,5.65745, +5256,255034,Papua,2018,387,6.59564,5.65740, +5257,16162,Target Arnhem: Across 6 Bridges,2005,422,6.51778,5.65740, +5258,308565,Roll n Cook,2020,216,7.33796,5.65737,"308565, 381853, 420363, 420365" +5259,187590,Pralaya,2015,276,6.97254,5.65736,"187590, 226616, 245876, 283468" +5260,145475,Hobbit Tales from the Green Dragon Inn,2013,406,6.55057,5.65723,"145475, 190015" +5261,6657,Such a Thing?,1989,825,6.09674,5.65720, +5262,109764,Quarantine,2013,916,6.05260,5.65706, +5263,274234,18 Holes,2020,244,7.14139,5.65701, +5264,193485,Dastardly Dirigibles,2016,500,6.38117,5.65697, +5265,8887,Battle for Stalingrad,1980,203,7.43926,5.65685, +5266,178212,Treasure Mountain,2019,193,7.52989,5.65672, +5267,162041,Ninja Taisen,2014,547,6.31762,5.65672, +5268,1302,Cosmic Wimpout,1975,1057,5.99861,5.65668, +5269,161761,King's Gold,2014,599,6.25982,5.65663, +5270,230667,Itchy Feet: The Travel Game,2017,373,6.62511,5.65660, +5271,308368,Digimon Card Game,2020,188,7.57814,5.65660, +5272,250781,Shikoku,2018,386,6.59217,5.65656, +5273,210113,Tank Chess,2016,197,7.48832,5.65644,"210007, 210113, 218166, 266843, 270238, 389294, 389295" +5274,36986,All Things Zombie: The Boardgame,2009,629,6.23011,5.65643,"36986, 177977" +5275,262042,Gardens of Babylon,2019,346,6.69927,5.65642,"262042, 312789" +5276,188181,Avignon: A Clash of Popes,2016,642,6.21826,5.65638,"188181, 209741, 267182, 281096" +5277,324246,Journey to the Center of the Earth,2020,435,6.48460,5.65621, +5278,249275,The Silver River,2020,243,7.13872,5.65617,"249275, 306799" +5279,2168,Hitler's War,1981,580,6.27726,5.65616, +5280,17536,Lobositz: First Battle of the Seven Years War,2005,151,8.04172,5.65616, +5281,623,Swashbuckler: A Game of Swordplay and Derring-do,1980,316,6.79598,5.65614,"623, 1405" +5282,179259,Garbage Day,2016,782,6.11646,5.65607,"179259, 203835" +5283,102897,Farmageddon,2012,810,6.10047,5.65605,"102897, 301942" +5284,286109,Hierarchy,2020,345,6.69841,5.65591, +5285,415981,Seers Catalog,2024,222,7.27561,5.65588,"369509, 415981" +5286,69136,"Bloody April, 1917: Air War Over Arras, France",2012,233,7.19867,5.65584, +5287,256685,Pandemain: Traditional Farmers' Bread,2021,199,7.46112,5.65574, +5288,347146,St Patrick,2021,313,6.80319,5.65570, +5289,63,Samurai: Game of Politics and Warfare in Feudal Japan,1979,452,6.45027,5.65569, +5290,1860,Dragon Dice,1995,1165,5.96389,5.65566,"1860, 320502, 320900" +5291,33732,Tulipmania 1637,2009,732,6.14601,5.65562, +5292,264858,Moonshine Empire,2021,265,7.01000,5.65559, +5293,145493,The King's Armory,2015,296,6.86814,5.65559,"145493, 320814" +5294,42560,The Hell of Stalingrad,2009,268,6.99410,5.65552, +5295,40941,Hide the Kids!,2009,358,6.65718,5.65546, +5296,297531,Watch,2021,261,7.02850,5.65536, +5297,127282,Al Rashid,2012,384,6.58792,5.65526, +5298,150012,No Retreat!: Polish & French Fronts,2018,186,7.57984,5.65519,"129013, 150012" +5299,67453,Caveman Curling,2010,629,6.22394,5.65511, +5300,450,Octi,1999,350,6.67727,5.65509,"450, 24213" +5301,4642,Sports Illustrated Baseball,1972,210,7.35810,5.65504, +5302,295147,Good Puppers,2021,398,6.55349,5.65502,"295147, 432916" +5303,225317,Halloween,2017,311,6.80289,5.65479, +5304,56933,Penguin Party,2008,3171,5.76735,5.65476,"56933, 152758, 155693" +5305,104,Extrablatt,1991,271,6.97181,5.65473, +5306,383452,Lunar,2023,278,6.93781,5.65464,"361777, 383452" +5307,228570,Raging Bulls,2017,436,6.47241,5.65458, +5308,84834,Heights of Courage: The Battle for the Golan Heights,2013,203,7.40828,5.65435, +5309,381790,Deadly Dowagers,2023,286,6.89869,5.65428, +5310,342081,Davy Jones' Locker: The Kraken Wakes,2023,135,8.29000,5.65425, +5311,327266,Dutch Resistance: Orange Shall Overcome!,2023,156,7.93499,5.65424, +5312,366278,The Lord of the Rings: Adventure to Mount Doom,2023,363,6.63431,5.65423, +5313,234578,Waters of Nereus,2019,212,7.33181,5.65418, +5314,198455,Mystic ScROLLS,2017,392,6.56139,5.65417, +5315,340899,Gasha,2021,390,6.56603,5.65416, +5316,160606,Day of Days: The Invasion of Normandy 1944,2015,193,7.49611,5.65411, +5317,379,Express,1990,660,6.19265,5.65409, +5318,112192,Sugar Gliders,2012,393,6.55844,5.65407, +5319,30958,Check Your 6!,2007,166,7.79337,5.65396,"30958, 75644" +5320,356996,The Border,2022,391,6.56223,5.65395, +5321,359315,Sorcery: Contested Realm,2022,126,8.47222,5.65394,"359315, 430526" +5322,393910,The Texas Chainsaw Massacre: Slaughterhouse,2023,142,8.15218,5.65379, +5323,103061,Carnac,2014,276,6.93792,5.65366, +5324,41090,Magnate,2008,221,7.25751,5.65366, +5325,66613,Titania,2010,466,6.41415,5.65363, +5326,214989,Age of Towers,2018,445,6.44941,5.65353, +5327,164655,Don't Tread on Me: The American Revolution Solitaire Board Game,2014,177,7.65424,5.65352, +5328,260201,Manitoba,2018,441,6.45650,5.65351, +5329,279911,Escape Room in a Box: Flashback,2019,241,7.12201,5.65343, +5330,166202,Bomb Squad Academy,2015,545,6.30283,5.65343, +5331,8017,Feurio!,2003,850,6.06972,5.65340,"8017, 13832, 65516" +5332,161578,[redacted],2014,726,6.14045,5.65331, +5333,277,Res Publica,1991,1153,5.96003,5.65331,"277, 177927" +5334,339473,Taverns & Dragons,2023,209,7.34522,5.65329, +5335,262388,Qwantum,2018,508,6.34927,5.65327, +5336,232403,Haunt the House,2018,330,6.72433,5.65323,"232403, 264866" +5337,423517,3 Chapters,2024,232,7.17673,5.65322, +5338,401978,Undaunted 2200: Callisto,2024,166,7.78219,5.65320, +5339,46323,Warlords of Europe,2010,301,6.82574,5.65302, +5340,27117,Animalia,2006,660,6.18780,5.65301, +5341,163081,Galaxy of Trian,2014,521,6.33025,5.65297,"163081, 222079" +5342,173486,Dune: The Dice Game,2015,307,6.80205,5.65293,"173486, 306651" +5343,257160,Thieves Den,2019,333,6.71222,5.65292, +5344,295609,For the Queen,2019,238,7.13382,5.65280, +5345,126021,Dropzone Commander: Core Rulebook,2012,191,7.49817,5.65280,"126021, 174046" +5346,130911,Batman: Gotham City Strategy Game,2013,874,6.05605,5.65279, +5347,277662,Coralia,2019,398,6.53833,5.65279, +5348,213503,The Brigade,2018,360,6.63139,5.65273, +5349,230591,Favelas,2017,505,6.35028,5.65271, +5350,188325,'65: Squad-Level Combat in the Jungles of Vietnam,2016,177,7.64023,5.65252, +5351,238412,Heropath: Dragon Roar,2018,153,7.95168,5.65250, +5352,313008,Apollo: A Game Inspired by NASA Moon Missions,2020,582,6.25649,5.65241, +5353,2224,Circus Imperium,1988,312,6.77901,5.65238, +5354,38430,Timber Tom,2008,394,6.54436,5.65236, +5355,158168,NHL Power Play Team-Building Card Game,2014,317,6.76091,5.65234, +5356,267377,WWII Commander: Battle of the Bulge,2020,163,7.80736,5.65228,"147921, 267377" +5357,368028,RUN,2023,188,7.52023,5.65224, +5358,146579,Quilt Show,2014,482,6.38079,5.65223, +5359,10707,Hacker: Deluxe Edition,2001,730,6.13319,5.65221,"1250, 10707" +5360,30641,Monuments: Wonders of Antiquity,2008,465,6.40730,5.65221, +5361,5393,Wheedle,2002,658,6.18540,5.65212, +5362,18794,SuperGang,1985,231,7.17087,5.65209, +5363,2396,Ur: 1830 BC,2001,297,6.83316,5.65207, +5364,150298,One Zero One,2013,463,6.40970,5.65207, +5365,378475,Traces of War,2023,163,7.80399,5.65206,"123371, 378475" +5366,282246,Camp Pinetop,2020,222,7.23192,5.65204, +5367,1796,Pampas Railroads,2001,244,7.08914,5.65201, +5368,190232,Plan Orange: Pacific War 1932-1935,2015,185,7.54741,5.65201, +5369,254681,Gorilla Marketing,2020,248,7.06452,5.65187, +5370,276169,For What Remains: Streets of Ruin,2020,172,7.68820,5.65184,"276169, 324458, 324459" +5371,286114,Amerika Bomber: Evil Queen of the Skies,2020,159,7.85434,5.65181,"286114, 313776" +5372,279975,An Attrition of Souls,2020,190,7.49474,5.65179, +5373,36739,Black Sheep,2008,1267,5.92786,5.65169,"36739, 433462" +5374,303159,Deep Vents,2020,469,6.39768,5.65167, +5375,2114,"Duck, Duck, Bruce",1997,623,6.21291,5.65159,"2114, 343744" +5376,8798,Winter War: The Russo-Finnish Conflict,1972,233,7.15000,5.65137,"8798, 296562" +5377,220598,Ladder 29,2017,333,6.69880,5.65122, +5378,87907,1865: Sardinia,2011,196,7.43041,5.65118, +5379,210,Don Pepe,1999,562,6.27133,5.65111, +5380,234452,Guess Club,2017,257,7.00700,5.65107, +5381,187777,Endure the Stars,2017,351,6.64387,5.65107,"187777, 291066" +5382,244333,Once Upon a Castle,2018,377,6.57527,5.65105, +5383,258244,Discover: Lands Unknown,2018,2647,5.78261,5.65101, +5384,11437,La Bataille de Lützen,1999,161,7.81460,5.65101, +5385,382035,Cursed!?,2023,141,8.12128,5.65099, +5386,54507,Savannah Tails,2009,557,6.27632,5.65099, +5387,41658,Adios Amigos,2009,694,6.15283,5.65098, +5388,153004,Lemminge: Wer Springt Zuerst?,2014,437,6.44787,5.65097, +5389,2574,Classic Warlord,2012,260,6.99026,5.65095,"2574, 201278, 201279, 201281" +5390,294463,Trench Club,2021,150,7.97231,5.65095,"294463, 294464, 368939, 415815" +5391,318388,Pilgrim,2022,223,7.21194,5.65091, +5392,254017,Lindisfarne,2018,272,6.93019,5.65085, +5393,217553,Go Go Gelato!,2017,544,6.29037,5.65082, +5394,29379,"Ici, c'est la France! The Algerian War of Independence 1954 - 1962",2009,175,7.63829,5.65078, +5395,359,Bucket Brigade,1998,1031,5.98808,5.65076,"359, 25142, 355622" +5396,166859,Web of Spies,2014,205,7.34683,5.65073, +5397,331408,Viking Raiders,2022,201,7.37929,5.65063, +5398,352485,Take a Seat,2022,259,6.99153,5.65056, +5399,363,Cat Blues,1998,871,6.04891,5.65045,"363, 414351" +5400,6752,Attack!,2003,1935,5.82975,5.65042, +5401,1509,Dogfight,1962,492,6.35560,5.65041, +5402,18747,Onward Christian Soldiers: The Crusades,2006,427,6.46226,5.65030,"6240, 18747" +5403,719,Tyranno Ex,1990,445,6.42887,5.65021, +5404,177823,Devil's Run: Route 666,2016,149,7.97550,5.65020,"177823, 210315, 251851, 280334" +5405,245710,Blossoms,2018,908,6.03167,5.65017, +5406,3692,Firepower,1984,562,6.26626,5.65011, +5407,261165,Flip Over Frog,2018,321,6.72799,5.65001,"261165, 386154" +5408,308416,Tapeworm,2020,471,6.38423,5.64993, +5409,232417,Druids,2017,425,6.46348,5.64989, +5410,147370,Robot Turtles,2013,1321,5.91162,5.64988, +5411,298619,15 Days,2020,459,6.40257,5.64979, +5412,258376,The Refuge: Terror from the Deep,2019,358,6.61443,5.64972,"201416, 258376" +5413,347909,Rogue Angels: Legacy of the Burning Suns,2025,101,9.06733,5.64964, +5414,321506,Fröccs,2020,289,6.84394,5.64963, +5415,2464,Swords & Sorcery: Quest and Conquest in the Age of Magic,1978,264,6.95663,5.64958, +5416,261262,Blöde Kuh,2018,423,6.46453,5.64946, +5417,614,Rubik's Race,1982,876,6.04284,5.64940, +5418,396655,Quicksand,2023,316,6.74000,5.64940, +5419,148531,Barrel Dice,2013,491,6.35073,5.64930, +5420,397431,Moorland,2023,235,7.11437,5.64926, +5421,5985,Miscellaneous Game Accessory,,237,7.10186,5.64924, +5422,103651,23,2011,493,6.34741,5.64922, +5423,352,Trumpet,1990,663,6.16832,5.64920,"352, 3293" +5424,172073,MammuZ,2013,534,6.29364,5.64919, +5425,354669,Break the Cube,2022,228,7.15851,5.64918,"320781, 354669" +5426,194019,Guilds,2017,382,6.54964,5.64912, +5427,11634,Mexican Train,1994,2693,5.77681,5.64909, +5428,159141,Code of Nine,2012,493,6.34637,5.64903, +5429,161965,Johari,2014,538,6.28801,5.64903, +5430,121657,Axis & Allies Air Force Miniatures: Angels 20,2012,233,7.12425,5.64901,"121657, 138589" +5431,304333,Zoollywood,2021,205,7.32535,5.64898,"91918, 304333" +5432,618,MLB Showdown,2000,346,6.64220,5.64898,"618, 218489" +5433,27298,Owner's Choice,2006,646,6.18088,5.64896, +5434,202207,Virulence: An Infectious Card Game,2016,332,6.68386,5.64895, +5435,347347,Micro Cosmos,2023,210,7.28388,5.64885, +5436,183797,Timeline: Star Wars,2015,768,6.09591,5.64884, +5437,396251,Invincible: The Hero-Building Game,2024,143,8.04933,5.64881, +5438,22465,On the Dot,2006,660,6.16860,5.64874, +5439,31897,Anno 1701: Das Brettspiel,2007,318,6.72764,5.64873, +5440,234468,Minute Realms,2017,443,6.42298,5.64870, +5441,29351,Durak,,456,6.39993,5.64853, +5442,263360,Shy Monsters,2019,340,6.65601,5.64850, +5443,291855,Ecologies,2019,265,6.94069,5.64845,"291855, 327004, 353526, 376639, 395757, 419746" +5444,160419,Long Live the Queen,2014,457,6.39688,5.64830, +5445,136587,Ninja Dice,2013,1056,5.97215,5.64827, +5446,313000,Sumatra,2020,316,6.73009,5.64820, +5447,386989,Focus,2023,228,7.14734,5.64818, +5448,191895,Toddles-Bobbles,2010,385,6.53587,5.64816,"191895, 218612" +5449,221805,Breaking Bad: The Board Game,2017,310,6.75055,5.64815, +5450,7483,Schatz der Drachen,2003,317,6.72577,5.64809, +5451,89668,BITS,2011,481,6.35830,5.64809,"89668, 114689" +5452,355881,Cubosaurs,2022,622,6.19728,5.64809, +5453,48,Krieg und Frieden,1999,770,6.09165,5.64807,"48, 529" +5454,164354,Kryptos,2014,465,6.38241,5.64803, +5455,247313,Woodlands,2018,357,6.60451,5.64803, +5456,167292,Bellz!,2014,850,6.04946,5.64795, +5457,57141,"Codeword Cromwell: The German Invasion of England, 8 June 1940",2014,143,8.03392,5.64791, +5458,114684,Villages,2011,395,6.51159,5.64789,"114684, 140455" +5459,265575,Materia Prima: The Alchemists Guild,2020,196,7.38801,5.64786, +5460,346742,Fishing Lessons,2022,338,6.65683,5.64784, +5461,12608,Chess960,1996,169,7.66562,5.64783, +5462,307161,Quest for the Lost Pixel,2015,115,8.61304,5.64782, +5463,253679,Festo!,2018,327,6.69052,5.64781, +5464,265260,Revolution of 1828,2019,429,6.44244,5.64778, +5465,153991,Salvation Road,2016,295,6.80312,5.64775, +5466,342016,Tetris,2021,422,6.45538,5.64775, +5467,160784,Fidelitas,2015,666,6.15928,5.64770, +5468,39383,Frontline: D-Day,2010,354,6.61006,5.64769, +5469,289467,Hour of Need,2021,188,7.45931,5.64765,"289467, 293391, 293648, 296759" +5470,38986,18NEB,2010,189,7.44905,5.64760, +5471,35476,Barbarossa: Crimea,2010,152,7.88684,5.64755, +5472,41612,Struggle for the Galactic Empire,2009,280,6.86286,5.64752, +5473,289601,Combo Color,2019,454,6.39687,5.64749,"241034, 247421, 289601, 307221" +5474,951,Football Strategy,1959,447,6.40823,5.64743, +5475,4,Tal der Könige,1992,359,6.59376,5.64730, +5476,146207,Dead Man's Hand,2013,150,7.91227,5.64728,"146207, 418845" +5477,309862,Gudetama: The Tricky Egg Card Game,2020,496,6.33205,5.64725, +5478,258466,The Great City of Rome,2018,466,6.37612,5.64724, +5479,152847,Shinobi WAT-AAH!,2014,508,6.31579,5.64723, +5480,590,Mille Bornes,1954,9020,5.68484,5.64720,"590, 2099, 2253, 4506, 5646, 13479, 72048, 120618, 207686, 290774, 313925, 330581" +5481,148231,Corto,2013,340,6.64559,5.64716, +5482,234221,Arkon,2018,178,7.55309,5.64707, +5483,2613,Intruder,1980,307,6.75169,5.64702,"2613, 137637" +5484,71593,Charon Inc.,2010,533,6.28291,5.64694, +5485,182982,Horse & Musket: Dawn of an Era,2017,139,8.08525,5.64693, +5486,177490,Samara,2015,609,6.20327,5.64689, +5487,17465,Cowboys: The Way of the Gun,2007,575,6.23609,5.64687,"17465, 292333" +5488,273284,Atelier: The Painter's Studio,2019,421,6.45097,5.64677, +5489,349179,Solar 175,2023,178,7.54801,5.64671, +5490,352591,The Royal Limited,2023,232,7.10420,5.64660, +5491,668,Sternenhimmel,1995,368,6.56520,5.64655, +5492,209289,The Treasure of Isla Tortuga,2016,274,6.88029,5.64654, +5493,96,Broadsides & Boarding Parties,1982,600,6.20968,5.64649, +5494,7824,Break the Safe,2003,811,6.06276,5.64638, +5495,12282,"Grand Illusion: Mirage of Glory, 1914",2004,263,6.93011,5.64636, +5496,203191,The Stonebound Saga,2018,218,7.19431,5.64629, +5497,171541,Flying Kiwis,2015,542,6.26887,5.64628, +5498,301002,Dream Runners,2020,256,6.96431,5.64627, +5499,223950,Fantasy Defense,2017,328,6.67457,5.64622,"201877, 223950" +5500,129946,AttrAction,2012,558,6.25058,5.64620,"129946, 155322" +5501,258154,Fluttering Souls,2019,363,6.57499,5.64616, +5502,22479,HorrorClix,2006,415,6.45781,5.64604, +5503,172309,Monster Trick,2015,332,6.65898,5.64582, +5504,144492,Packet Row,2013,753,6.09244,5.64580, +5505,260561,WARIGIN,2018,145,7.96520,5.64579, +5506,99219,Swish,2011,756,6.09051,5.64576,"99219, 138015" +5507,231309,Magic: The Gathering – Explorers of Ixalan,2017,220,7.17380,5.64573, +5508,319754,Peek-a-Mouse,2020,213,7.22393,5.64573, +5509,25008,Italia,2006,321,6.69271,5.64570, +5510,59936,Battle Merchants,2014,330,6.66409,5.64569, +5511,9342,Fifth Avenue,2004,978,5.98877,5.64553, +5512,378476,Mycelia,2024,211,7.23589,5.64547, +5513,194081,Deathwatch: Overkill,2016,241,7.03734,5.64542, +5514,3248,Citadel of Blood,1980,475,6.35147,5.64539,"3248, 3625" +5515,146035,Eggs of Ostrich,2012,293,6.78986,5.64537, +5516,355516,Littoral Commander: Indo-Pacific,2023,111,8.66441,5.64528,"355516, 389099" +5517,19624,Freya's Folly,2005,373,6.54352,5.64525, +5518,315954,Hunt A Killer: Death at the Dive Bar,2020,295,6.78094,5.64524, +5519,351488,Six Second Scribbles,2021,207,7.26353,5.64522,"351488, 401244" +5520,884,Way Out West,2000,690,6.13047,5.64516, +5521,272215,Glory,2019,192,7.38885,5.64513,"272215, 337316" +5522,330665,Bellum Magica,2021,319,6.69463,5.64513, +5523,293474,Wolfenstein: The Board Game,2022,209,7.24655,5.64510, +5524,329546,Kiwi Chow Down,2023,167,7.64880,5.64506, +5525,12899,La Bataille de Preussisch-Eylau,1978,155,7.80151,5.64491, +5526,27965,"The Tide at Sunrise: The Russo-Japanese War, 1904-1905",2010,280,6.83855,5.64489,"15102, 27965" +5527,181290,KUMO Hogosha,2015,353,6.59159,5.64487, +5528,206266,Vikingar: The Conquest of Worlds,2017,294,6.78153,5.64487, +5529,153639,Zeppelin Attack!,2014,324,6.67597,5.64483, +5530,34871,Ventura,2011,514,6.29397,5.64468, +5531,241796,Nut So Fast,2018,307,6.73164,5.64466, +5532,255658,Talisman: Legendary Tales,2018,430,6.42058,5.64464, +5533,139147,Romolo o Remo?,2013,362,6.56586,5.64457, +5534,423648,Naishi,2024,158,7.75521,5.64457, +5535,259393,Lunes,2018,188,7.41784,5.64452,"259393, 399904" +5536,65272,Cyrano,2010,282,6.82589,5.64443,"65272, 357974" +5537,3003,Crash Tackle Rugby Board Game,2001,167,7.63934,5.64442, +5538,220547,Sparkle*Kitty,2017,516,6.28969,5.64435,"220547, 252277" +5539,301441,Drawn to Adventure,2021,305,6.73567,5.64430, +5540,414685,MESOS,2024,199,7.31638,5.64425, +5541,17533,The New Easy to Master Dungeons & Dragons,1991,273,6.86297,5.64423, +5542,241025,Penny Papers Adventures: Skull Island,2018,504,6.30438,5.64423, +5543,6861,Red Badge of Courage,2001,189,7.40434,5.64421,"6861, 17649" +5544,383360,Flock Together,2024,224,7.12545,5.64387, +5545,87,Victory: World War II,1998,437,6.40266,5.64377,"87, 263666" +5546,365357,Railways of the Lost Atlas,2024,134,8.11828,5.64374, +5547,145103,7 Days of Westerplatte,2013,371,6.53747,5.64374, +5548,71668,After Pablo,2010,198,7.31828,5.64373, +5549,340040,Neoville,2021,382,6.51154,5.64371, +5550,218863,TA-KE,2017,290,6.78672,5.64370, +5551,226997,South China Sea: Modern Naval Conflict in the South Pacific,2017,218,7.16422,5.64370,"137498, 226997, 258209" +5552,9804,Gettysburg: Badges of Courage,2004,236,7.04811,5.64368, +5553,129204,Blocks in the East,2012,158,7.74143,5.64368, +5554,328624,Block Ness,2021,344,6.60524,5.64343, +5555,170300,Wombat Rescue,2015,427,6.41792,5.64337, +5556,153497,This Town Ain't Big Enough for the 2-4 of Us,2014,1038,5.96175,5.64330, +5557,20077,"Kutuzov: The War in Russia, 1812",2008,259,6.91954,5.64329, +5558,130134,Burning Suns,2013,219,7.15256,5.64329, +5559,255639,Mesozooic,2018,482,6.32877,5.64324, +5560,309297,SCOPE Stalingrad,2020,261,6.90866,5.64318, +5561,383701,Tricky Time Crisis,2023,201,7.28567,5.64312, +5562,180179,Siggil,2015,613,6.18169,5.64312, +5563,5243,Montage,1973,217,7.16422,5.64309,"4072, 5243" +5564,4839,Berlin '85: The Enemy at the Gates,1980,288,6.78860,5.64302, +5565,337098,Dragonbond: Lords of Vaala,2023,203,7.26670,5.64290,"337098, 350065, 360800" +5566,8066,CrossFire: Rules and Organizations for Company Level WW II Gaming,1996,160,7.70281,5.64288, +5567,853,...und tschüss!,1997,461,6.35753,5.64283,"853, 93138" +5568,1515,Upwords,1982,3552,5.73557,5.64282,"1515, 59602" +5569,7662,Bar-Lev: The Yom-Kippur War of 1973,1974,192,7.35839,5.64279,"7662, 64331, 273009" +5570,322451,RisiKo!,1968,570,6.22029,5.64272,"67022, 245516, 277671, 322451, 361984, 376298" +5571,515,6-Tage Rennen,1986,262,6.89883,5.64267,"515, 159513" +5572,256980,The Color Monster,2018,377,6.51551,5.64265, +5573,347748,Mickey and Friends: Food Fight,2021,286,6.79301,5.64263,"272597, 291100, 347748" +5574,2392,Mastermind,1971,8850,5.67979,5.64262,"2392, 3664, 3874, 6906, 13164, 13609, 16802, 21506, 22989, 91941" +5575,238090,Speakeasy Blues,2018,264,6.88777,5.64251, +5576,29017,Dschungelschatz,2006,347,6.58975,5.64249,"29017, 180598" +5577,415147,Spectacular,2024,206,7.23776,5.64246, +5578,233016,The African Campaign: Designer Signature Edition,2017,247,6.97145,5.64232,"5182, 233016" +5579,296164,Yura Yura Penguin,2019,241,7.00390,5.64226,"296164, 359515" +5580,261898,War For Chicken Island,2020,279,6.81704,5.64210, +5581,301728,Endogenesis: 2nd Edition,2021,335,6.62019,5.64205,"238676, 301728" +5582,476,Mr. President,1967,338,6.61139,5.64203, +5583,891,Cranium,1998,9867,5.67518,5.64199,"891, 64812, 88608, 379178" +5584,1202,The Sorcerer's Cave,1978,396,6.46907,5.64198, +5585,170969,Gigamons,2014,379,6.50592,5.64195, +5586,2342,Mystery Mansion,1984,555,6.23189,5.64194,"2342, 2343" +5587,163175,Yashima: Legend of the Kami Masters,2015,262,6.89141,5.64192,"163175, 176826" +5588,310363,Bomber Boys,2020,161,7.67516,5.64191, +5589,72941,Beda Fomm,2010,220,7.12977,5.64190,"6914, 72941" +5590,103877,Casa Grande,2011,414,6.43241,5.64188, +5591,296605,Adventure of D (Second Edition),2020,255,6.92416,5.64176,"53840, 296605" +5592,89342,Tomorrow,2013,491,6.30776,5.64176, +5593,106753,Ooga Booga,2011,991,5.97173,5.64176, +5594,232509,Feelinks,2015,451,6.36653,5.64171,"232509, 269072, 310990, 318548" +5595,181404,Taverna,2015,587,6.19850,5.64169, +5596,40182,Telepathy,2008,339,6.60567,5.64167,"40182, 129504, 191288, 191374" +5597,4346,"Cedar Mountain: Prelude to Bull Run, August 9, 1862",1981,228,7.07478,5.64165, +5598,205961,Travelin',2017,296,6.74525,5.64162, +5599,328859,Hula-Hoo!,2021,506,6.28694,5.64156,"171447, 328859" +5600,246759,You've Got Crabs,2018,1065,5.94794,5.64148, +5601,4532,Thud,2002,531,6.25589,5.64144, +5602,103469,Risk: Metal Gear Solid,2011,237,7.01810,5.64144, +5603,176435,Thrash'n Roll,2015,334,6.61787,5.64139,"176435, 196667" +5604,230898,¡Adiós Calavera!,2017,263,6.88046,5.64128,"16095, 230898" +5605,322696,An Otter Won,2020,256,6.91406,5.64125, +5606,283924,Merchants of Dunhuang,2020,298,6.73416,5.64119, +5607,7138,"The Killing Ground: Campaign for Normandy, July-August 1944",2002,132,8.10833,5.64118, +5608,62291,Fatal Alliances: The Great War 1914-1918,2016,159,7.68868,5.64113,"7735, 62291" +5609,325011,Citytrip Brugge,2022,153,7.76819,5.64108, +5610,300428,Terminator: Dark Fate – The Card Game,2020,219,7.12694,5.64106, +5611,181325,Completto,2015,349,6.57335,5.64105, +5612,16373,Techno Witches,2005,660,6.13393,5.64103, +5613,202443,Barker's Row,2018,407,6.44016,5.64100, +5614,102881,Trench,2013,154,7.75273,5.64098, +5615,238221,Kampf gegen das Spiessertum,2017,324,6.64435,5.64093,"195842, 238221, 275293, 356131, 371692" +5616,8192,Railroad Dice,2003,610,6.17357,5.64087,"8192, 20074" +5617,562,Silberzwerg,2000,428,6.40001,5.64085, +5618,65313,Napoleon's War: The 100 Days,2010,213,7.16620,5.64085, +5619,146144,A.E.G.I.S.: Combining Robot Strategy Game,2018,166,7.59699,5.64077,"146144, 330005, 354050" +5620,44890,"Picket Duty: Kamikaze Attacks against U.S. Destroyers – Okinawa, 1945",2013,212,7.17222,5.64075, +5621,75333,Target Earth,2010,334,6.61272,5.64073, +5622,388476,Spectral,2024,194,7.31298,5.64064, +5623,332420,Nexum Galaxy,2021,149,7.81783,5.64063, +5624,419195,Fishing,2024,198,7.27879,5.64061, +5625,7239,Medieval,2003,532,6.25021,5.64059,"7239, 227502" +5626,422732,Agent Avenue,2024,162,7.64167,5.64053, +5627,46669,1914: Offensive à outrance,2013,143,7.90629,5.64046, +5628,2611,The HellGame,2003,365,6.52668,5.64026, +5629,426796,Stamp Swap,2024,222,7.09674,5.64018, +5630,264212,Curators,2021,258,6.89273,5.64010, +5631,40935,Zoowaboo,2009,478,6.31606,5.64007, +5632,258748,Crime Hotel,2018,359,6.54006,5.64006,"195163, 258748" +5633,240827,Dragons,2018,430,6.39102,5.63999, +5634,56320,Spearpoint 1943,2010,251,6.92632,5.63997,"56320, 102253" +5635,349131,Splitter,2021,416,6.41572,5.63991, +5636,260298,The Table Is Lava,2018,536,6.24181,5.63987, +5637,38873,Cambria,2008,415,6.41710,5.63983, +5638,380887,Deduckto,2023,198,7.26889,5.63983,"261397, 380887" +5639,384136,Star Trek: Away Missions,2023,172,7.51421,5.63976, +5640,4769,Great War at Sea: The Mediterranean,1996,273,6.82051,5.63974,"4769, 397080" +5641,174182,Force of Will,2014,269,6.83773,5.63970, +5642,292748,Trophies,2019,273,6.81966,5.63965, +5643,331804,Solani,2023,188,7.35162,5.63953, +5644,382578,Dungeon Saga Origins,2024,135,8.02331,5.63951, +5645,279087,Zerywia,2021,162,7.62593,5.63950, +5646,380394,Biotopes,2023,141,7.92064,5.63944, +5647,15722,Belote,1930,342,6.57968,5.63940, +5648,1835,Scrutineyes,1992,357,6.54015,5.63940,"1835, 5456" +5649,195981,BEEEEES!,2017,315,6.66024,5.63940, +5650,370444,Hard to Get,2023,207,7.19275,5.63939, +5651,359205,Aelderman,2023,147,7.82559,5.63932, +5652,314170,2 Minutes to Midnight,2022,156,7.69942,5.63932, +5653,71272,Hornet,2010,662,6.12473,5.63931,"71272, 219502" +5654,143782,Global Mogul,2013,244,6.95553,5.63923,"143782, 366719" +5655,2072,Panzer Command: The Gateway to Stalingrad,1984,201,7.23706,5.63923, +5656,23779,Enemy Chocolatier,2006,328,6.61815,5.63920, +5657,193083,Kribbeln,2016,420,6.40369,5.63919, +5658,5829,Balkan Front,1990,245,6.94959,5.63918,"5829, 7636" +5659,228452,Adamastor,2017,170,7.52767,5.63917, +5660,251726,CONFIDENT?,2018,299,6.71215,5.63909,"251726, 337189" +5661,13597,Big Two,,386,6.47010,5.63906, +5662,90190,The Secret of Monte Cristo,2011,674,6.11490,5.63904, +5663,320992,The Specialists,2021,235,7.00364,5.63902, +5664,412911,Monkey Palace,2024,202,7.22606,5.63898, +5665,38471,Corps Command: Dawn's Early Light,2010,187,7.35294,5.63895,"38471, 157254" +5666,195454,NUT,2017,359,6.53147,5.63891, +5667,173460,Dark Dealings,2016,441,6.36494,5.63882, +5668,170041,Splash!,2014,483,6.30161,5.63878, +5669,22843,War in the Pacific (Second Edition),2006,172,7.49994,5.63877,"9650, 22843" +5670,16805,Road to Berlin: Platoon Level Combat in World War II – A Panzer Grenadier Game,2005,180,7.41707,5.63876, +5671,367361,Spaceship Unity: Season 1.1,2022,195,7.28015,5.63875, +5672,355876,The Guardians of Haversack,2022,199,7.24668,5.63871, +5673,103368,Epigo,2011,292,6.73396,5.63865, +5674,4657,Replay Baseball,1973,130,8.09700,5.63855, +5675,182218,Hoax (Second Edition),2016,1160,5.91406,5.63855,"139, 413, 182218" +5676,741,Trajan,1991,226,7.05268,5.63854,"703, 705, 741, 742, 11278" +5677,98762,Test of Fire: Bull Run 1861,2011,371,6.49980,5.63852, +5678,12947,Napoleon at War: Four Battles,1975,307,6.67915,5.63850,"239, 255, 10301, 12947, 13881, 73252" +5679,256572,The Walking Dead: Here's Negan – The Board Game,2018,155,7.69806,5.63840, +5680,151275,Ophir,2015,286,6.75437,5.63836, +5681,223167,Secret Unknown Stuff: Escape from Dulce,2018,150,7.76441,5.63825, +5682,357475,Hiroba,2022,255,6.88882,5.63824, +5683,214758,N: The Napoleonic Wars,2017,174,7.46983,5.63816, +5684,5478,Crazy Circus,2002,532,6.23714,5.63814, +5685,41934,World at War: The Untold Stories,2010,136,7.98092,5.63812, +5686,52568,Mali Powstańcy: Warszawa 1944,2009,359,6.52554,5.63811, +5687,226089,Alicematic Heroes,2017,275,6.79532,5.63797, +5688,100169,Hero of Weehawken: The Aaron Burr Conspiracy 1805-1807,2011,168,7.53223,5.63796, +5689,2853,Liftoff!,1989,220,7.08409,5.63792,"2853, 416392" +5690,295402,Waterloo Campaign 1815,2019,191,7.30314,5.63788, +5691,3836,Legend of the Burning Sands,1998,328,6.60729,5.63784,"3836, 143701" +5692,200280,Dragon Brew,2017,186,7.34741,5.63784, +5693,230430,Unlock!: Escape Adventures – Temple of Ra,2017,433,6.37204,5.63782, +5694,12131,42,1885,231,7.01385,5.63780, +5695,256838,Nessos,2018,424,6.38742,5.63779,"205589, 256838" +5696,121958,Sky Traders,2012,729,6.07377,5.63778, +5697,283718,Deckscape: The Curse of the Sphinx,2019,782,6.04286,5.63744, +5698,87904,Trivial Pursuit: Master Edition,2009,677,6.10568,5.63742, +5699,828,Wizards,1982,405,6.41957,5.63734, +5700,309207,City Builder: Ancient World,2021,252,6.89444,5.63733, +5701,357071,GOLDblivion,2023,231,7.00812,5.63728, +5702,458,Sherlock Holmes: The Card Game,1991,795,6.03548,5.63725,"458, 34653, 154881, 159087" +5703,332853,Dom Pierre,2022,247,6.91830,5.63718, +5704,206169,Slide Blast,2016,308,6.66406,5.63712,"206169, 417492" +5705,15209,Linja,2003,356,6.52511,5.63705, +5706,122890,Mercante,2012,356,6.52488,5.63702, +5707,365526,Galactic Renaissance,2024,213,7.12066,5.63700, +5708,12747,Scarabeo,1963,454,6.33291,5.63697,"12747, 41633, 375692" +5709,366,Viva Pamplona!,1992,442,6.35174,5.63696, +5710,245444,Holding On: The Troubled Life of Billy Kerr,2018,1106,5.92236,5.63688, +5711,188991,Alienation,2016,191,7.28957,5.63684, +5712,125658,Level 7 [Escape],2012,909,5.98384,5.63677, +5713,421374,Landmarks,2024,216,7.09679,5.63672, +5714,380175,Halloween,2023,150,7.73893,5.63670,"380175, 429456" +5715,209450,Länder toppen!,2016,254,6.87790,5.63667,"209450, 348085, 378604, 414287" +5716,31621,Gangster,2007,605,6.15746,5.63660, +5717,351969,All Time Wrestling,2023,115,8.37565,5.63655,"351969, 380758, 421082" +5718,390094,FTW?!,2023,336,6.57381,5.63652, +5719,30878,Power & Weakness,2007,285,6.74098,5.63646, +5720,3365,Gumshoe,1985,154,7.68019,5.63644, +5721,67199,The Coming Storm: Quadrigame of the Fourth Coalition October 1806 - June 1807,2010,137,7.93255,5.63637, +5722,131581,Soccero (Second Edition),2012,203,7.18601,5.63637,"36637, 131581" +5723,324344,Twinkle Starship,2020,211,7.12725,5.63637, +5724,253396,Miremarsh,2018,223,7.04596,5.63628, +5725,278297,Choose Your Own Adventure: War with the Evil Power Master,2019,796,6.03116,5.63627, +5726,131493,Secret Code 13+4,2012,327,6.59719,5.63622, +5727,361279,Maui,2022,420,6.38389,5.63614, +5728,265031,Ice Team,2019,320,6.61733,5.63612, +5729,308652,Age of Dogfights: WW1,2020,132,8.01439,5.63609,"172883, 173004, 173124, 173163, 174592, 174595, 179519, 179521, 210112, 213634, 308652, 338851" +5730,223726,Destination X,2017,350,6.53273,5.63605, +5731,306577,Clou: Roll & Heist. Again!,2020,138,7.90987,5.63603, +5732,27940,RattleSnake,2007,1309,5.87562,5.63598, +5733,365983,Mada,2022,264,6.82374,5.63594, +5734,65990,Don Quixote,2010,662,6.10912,5.63583, +5735,146818,Cappuccino,2013,562,6.19314,5.63579, +5736,27817,Marne 1918: Friedensturm,2006,134,7.97239,5.63573, +5737,5686,Stargrunt II,1996,162,7.56821,5.63571,"5686, 129285" +5738,298690,Diáspora,2019,332,6.57855,5.63570, +5739,314971,Ramen! Ramen!,2021,233,6.97876,5.63566, +5740,202296,Wizardry to the Power of Three,2016,258,6.84833,5.63563,"202296, 356744" +5741,250725,Thrive,2020,308,6.65142,5.63563, +5742,35438,Moto Grand Prix,2008,460,6.31575,5.63562, +5743,40,Borderlands,1982,765,6.04451,5.63560,"40, 137669, 358263" +5744,157779,Barragoon,2014,203,7.17645,5.63560, +5745,316085,Ukiyo,2020,220,7.05716,5.63558, +5746,18115,Four Lost Battles,2005,163,7.55399,5.63556,"18115, 360322" +5747,261529,The Boldest,2018,482,6.28391,5.63549, +5748,368037,Unlock!: Short Adventures – The Awakening of the Mummy,2022,270,6.79295,5.63548, +5749,194392,Moscow '41,2016,136,7.93309,5.63546, +5750,126000,Letnisko,2013,316,6.62405,5.63543, +5751,10623,Gringo!: The Mexican War 1846-48,2004,196,7.22908,5.63541, +5752,11385,Stratego: Lord of the Rings Trilogy Edition,2004,488,6.27546,5.63540, +5753,394961,Penny Black,2023,218,7.06796,5.63538, +5754,158356,Dark Horse,2014,339,6.55661,5.63538, +5755,8935,Shazamm!,2003,633,6.12850,5.63533, +5756,334975,Napoléon 1815,2022,143,7.81818,5.63532, +5757,59335,Wherewolf,2009,178,7.38820,5.63526,"59335, 194249" +5758,56995,The Twelve Doctors: Doctor Who Card Game,2009,153,7.67451,5.63526, +5759,98443,Dark Horse,2012,298,6.68205,5.63523, +5760,301572,The Great Crisis of Frederick II,2020,152,7.68618,5.63515,"156680, 301572" +5761,330538,All on 1 Card,2021,309,6.64383,5.63512, +5762,353196,Sync or Swim,2022,205,7.15537,5.63510, +5763,345594,Downfall of the Third Reich,2022,146,7.76966,5.63510, +5764,14258,Blood Feud in New York,2004,659,6.10771,5.63503, +5765,236484,Facecards,2017,353,6.51714,5.63499, +5766,41493,Yamslam,2008,488,6.27306,5.63498, +5767,393888,Passt nicht!,2023,268,6.79608,5.63490, +5768,820,Axiom,1988,238,6.94152,5.63482, +5769,129348,FAB: Golan '73,2016,173,7.43245,5.63482, +5770,123844,City Hall,2014,370,6.47484,5.63475, +5771,4318,"Cannes: Stars, Scripts and Screens",2002,490,6.26902,5.63473, +5772,193212,Chariot Race,2016,816,6.01538,5.63467, +5773,2133,Rage,1995,638,6.12146,5.63464,"2133, 2134" +5774,169146,Stone Garden,2014,282,6.73515,5.63455, +5775,99097,Food Fight,2011,746,6.05054,5.63453, +5776,4275,Pea Ridge: The Gettysburg of the West March 7-8 1862,1980,190,7.26737,5.63449, +5777,7844,"Operation Typhoon: The German Assault on Moscow, 1941",1978,180,7.35778,5.63447, +5778,240822,Troika,2017,578,6.17107,5.63446, +5779,188343,Brides & Bribes,2017,239,6.93086,5.63433, +5780,252479,Penny Lane,2019,312,6.62729,5.63430, +5781,130705,Super Big Boggle,2012,210,7.10929,5.63428, +5782,507,Cartel,1973,295,6.68422,5.63427,"507, 3528, 109601" +5783,246588,Crowbar! The Rangers at Pointe Du Hoc,2019,150,7.69833,5.63422, +5784,306182,Bandada,2022,488,6.26867,5.63422, +5785,298624,Imagician,2020,306,6.64582,5.63419,"298624, 352821" +5786,201478,Problem Picnic: Attack of the Ants,2017,272,6.77225,5.63419, +5787,553,Chez Geek,1999,5394,5.69156,5.63418,"553, 4604, 6250, 9962, 22169, 56342, 193337" +5788,2759,Havannah,1980,203,7.15887,5.63417, +5789,85105,Travel Blog,2010,687,6.08447,5.63412, +5790,57759,Filipino Fruit Market,2009,346,6.52820,5.63411, +5791,235839,Master of Wills,2017,138,7.87568,5.63410,"235839, 362715" +5792,370130,GAP,2022,503,6.24885,5.63406, +5793,178153,100 Swords: The Red Dragon's Dungeon,2016,314,6.61874,5.63404,"178153, 190017, 209773, 209774" +5794,364488,Queensland,2022,223,7.02041,5.63402, +5795,19969,Truco,,199,7.18699,5.63397, +5796,230315,The Sanctuary: Endangered Species,2017,301,6.66020,5.63391, +5797,1794,Risk: Édition Napoléon,1999,312,6.62356,5.63386, +5798,158564,Billionaire Banshee,2014,517,6.23088,5.63381,"158564, 223498, 247451" +5799,383064,AI Space Puzzle,2023,180,7.34861,5.63381, +5800,330532,Hashi,2021,279,6.73964,5.63375, +5801,8096,Logistico,2003,540,6.20476,5.63368, +5802,23263,Clue DVD Game,2005,506,6.24287,5.63364, +5803,246532,Rick and Morty: The Pickle Rick Game,2018,264,6.80087,5.63359, +5804,201861,The Shared Dream,2017,276,6.75011,5.63359, +5805,398032,Dungeon Kart,2024,154,7.63413,5.63356,"398032, 426275" +5806,300127,1840: Vienna Tramways,2020,178,7.36438,5.63356, +5807,217335,111 Ants,2017,308,6.63384,5.63356, +5808,210292,Moonstone,,103,8.62330,5.63350,"210292, 291605" +5809,234104,The Valley of Alchemists,2019,208,7.11207,5.63334,"234104, 341451" +5810,329400,Chamber of Wonders,2022,209,7.10475,5.63332, +5811,359945,Guild Academies of Valeria,2023,166,7.48534,5.63328, +5812,274178,"Poland Defiant: The German Invasion, September 1939",2019,147,7.72381,5.63322,"68716, 274178" +5813,133534,Sigismundus Augustus: Dei gratia rex Poloniae,2012,209,7.10325,5.63319, +5814,154895,Wizard's Academy,2016,217,7.04885,5.63317, +5815,3945,Forbidden Bridge,1992,484,6.26787,5.63317, +5816,274566,Deranged,2019,276,6.74590,5.63314, +5817,265912,Selfish: Space Edition,2018,572,6.16977,5.63308,"265912, 288583, 355094, 358260, 376663, 398967" +5818,166372,Artificium,2014,947,5.95715,5.63305, +5819,1449,Kings Cribbage,1997,295,6.67339,5.63304, +5820,241106,Masque of the Red Death,2018,341,6.53229,5.63294, +5821,153905,Warband: Against the Darkness,2015,293,6.67952,5.63293, +5822,276161,MOON,2019,292,6.68306,5.63293,"216421, 276161, 309600" +5823,113971,La Bataille de Dresde,2015,95,8.86000,5.63290,"113971, 431033" +5824,341256,Murano: Light Masters,2021,475,6.27795,5.63284, +5825,204734,Stick Stack,2016,346,6.51829,5.63281,"204734, 332472" +5826,153238,Ivor the Engine,2014,408,6.38365,5.63280, +5827,157912,Rise to Power,2014,456,6.30450,5.63278, +5828,4831,NFL Strategy,1970,241,6.90328,5.63274, +5829,354254,Voices In My Head,2022,405,6.38828,5.63266, +5830,290610,Beat That!,2019,336,6.54336,5.63265, +5831,317411,Florence,2022,224,6.99842,5.63263, +5832,193715,Dungeons of Infinity,2021,140,7.81721,5.63259, +5833,244170,Loup Garou,2015,264,6.79082,5.63256, +5834,112694,Hockey Blast Pro Hockey Game,2010,123,8.11772,5.63251,"112694, 407703" +5835,126242,Hot Rod Creeps,2012,309,6.62123,5.63245, +5836,252362,Red Strike,2023,94,8.88085,5.63237, +5837,328687,Bantam West,2023,129,7.99853,5.63232, +5838,286205,18NewEngland,2019,195,7.19641,5.63223, +5839,334644,Nicodemus,2021,427,6.34649,5.63222, +5840,191128,UNO: With Customizable Wild Cards,2015,489,6.25547,5.63214, +5841,289565,Hunted: Mining Colony 415,2021,239,6.90732,5.63212,"289565, 420240" +5842,1695,The Legend of Robin Hood,1979,442,6.32111,5.63203, +5843,207010,Paramedics: Clear!,2017,265,6.78117,5.63201, +5844,307450,The Number,2020,761,6.03206,5.63198, +5845,22485,Terra Prime,2009,486,6.25833,5.63196, +5846,369154,Dogfight!: Rule The Skies in 20 Minutes!,2023,247,6.86344,5.63187,"309773, 369154" +5847,3177,Battle for Armageddon,1992,320,6.58079,5.63166, +5848,300731,Valknut,2020,171,7.40708,5.63161, +5849,174192,Daxu,2015,387,6.41547,5.63152, +5850,29055,Down in Flames: Locked-On,2018,142,7.76620,5.63141, +5851,276337,Napoleon Returns 1815,2020,164,7.47915,5.63137, +5852,238182,"Good Dog, Bad Zombie",2018,197,7.16942,5.63135,"238182, 419743" +5853,197455,Dice Heist,2016,518,6.21623,5.63134, +5854,313730,Harsh Shadows,2021,210,7.07378,5.63132,"303727, 313730" +5855,219807,Test of Honour: The Samurai Miniatures Game,2017,137,7.84161,5.63127,"219807, 282713" +5856,119804,Empire Express,2012,289,6.67862,5.63122, +5857,210418,Tavern Masters,2017,265,6.77342,5.63121, +5858,35964,duck! duck! Go!,2008,873,5.97777,5.63117, +5859,385833,Freaky Frogs From Outaspace,2023,190,7.22316,5.63113, +5860,358558,My Little Pony: Adventures in Equestria Deck-Building Game,2022,181,7.30166,5.63108, +5861,342046,Phraya,2022,164,7.47387,5.63102, +5862,419199,Reef Project,2024,141,7.77405,5.63099, +5863,108637,Wilderness,2011,348,6.49910,5.63097, +5864,17922,Anno Domini: Deutschland,2002,326,6.55767,5.63096, +5865,264669,Antietam 1862,2019,150,7.64447,5.63093,"264669, 284072" +5866,247980,Walls of York,2018,604,6.13095,5.63092, +5867,5641,Nightmare,1991,1083,5.90974,5.63091,"5641, 384212" +5868,4667,Eagles: Waterloo,1995,294,6.65779,5.63088, +5869,3149,Lost Valley of the Dinosaurs,1985,490,6.24696,5.63087,"3149, 410615" +5870,3242,Clash of the Gladiators,2002,1014,5.92855,5.63086,"3242, 429113" +5871,26148,Affentennis,2006,209,7.07483,5.63083, +5872,38805,Rebel Raiders on the High Seas,2013,207,7.08777,5.63075, +5873,399088,UNO: Show 'Em No Mercy,2023,323,6.56446,5.63074, +5874,17526,Hecatomb,2005,403,6.37883,5.63070, +5875,4226,"Victory at Midway: Turning Point of the Pacific War, June 1942",1992,187,7.24278,5.63068, +5876,170223,Centauri Saga,2016,341,6.51463,5.63067, +5877,204601,Final Act,2016,171,7.39302,5.63064,"204601, 230966" +5878,321756,Hammer Time,2020,293,6.65788,5.63050, +5879,99935,Keep Up The Fire!: The Boxer Rebellion,2011,178,7.32135,5.63047, +5880,287671,Mauwi,2019,362,6.46147,5.63042,"239082, 287671" +5881,279204,The North,2019,223,6.97915,5.63039,"279204, 317418" +5882,330145,War of the Triple Alliance,2021,149,7.64832,5.63035, +5883,330510,Yucatan,2023,302,6.62560,5.63030, +5884,361918,BattleTech: Alpha Strike Box Set,2022,107,8.43502,5.63011, +5885,313002,1944: Battle of the Bulge,2020,153,7.59150,5.63009, +5886,352263,Through Ice & Snow,2024,160,7.50551,5.63008,"352263, 420279" +5887,33077,Breakthrough: Cambrai,2011,224,6.96920,5.63004, +5888,1072,Wat'n dat!?,1996,322,6.56134,5.63000, +5889,121806,Race to the Treasure!,2012,497,6.23327,5.62998, +5890,317365,Adventure Games: The Gloom City File,2021,222,6.97995,5.62992, +5891,174093,Maze Racers,2015,345,6.49858,5.62992, +5892,309625,Forest of Radgost,2022,180,7.29470,5.62991, +5893,311,Time Agent,1992,288,6.66951,5.62981, +5894,228526,Rey Paparajote,2017,159,7.51245,5.62977, +5895,217544,Vanguard of War,2017,183,7.26537,5.62976, +5896,128011,Extra! Extra!,2015,268,6.74646,5.62974, +5897,242325,Tricks and the Phantom,2017,327,6.54475,5.62971, +5898,246696,Monster Match,2018,314,6.58250,5.62970, +5899,31449,Army of Frogs,2007,937,5.94893,5.62968, +5900,3341,Burn Rate,2002,678,6.07080,5.62966, +5901,281514,Escape from the Asylum,2019,525,6.19902,5.62959, +5902,402206,Dioses!,2023,157,7.53323,5.62956, +5903,2542,Gargon,2001,805,6.00081,5.62956, +5904,156007,Mound Builders,2014,200,7.12300,5.62949, +5905,172662,Seven7s,2015,631,6.10266,5.62944,"172662, 309828" +5906,90942,Mixtour,2012,155,7.55523,5.62940, +5907,192906,Heir to the Pharaoh,2016,236,6.89424,5.62940, +5908,158837,27th Passenger: A Hunt on Rails,2014,270,6.73485,5.62939, +5909,184085,Perfect Alibi,2015,361,6.45614,5.62938,"184085, 211146" +5910,150580,Spexxx,2013,433,6.31855,5.62936, +5911,5394,"Kolin: Frederick's First Defeat – June 18, 1757",1994,132,7.88977,5.62935, +5912,300085,Cupcake Academy,2020,260,6.77651,5.62930, +5913,205819,Black Hills,2016,257,6.78984,5.62930, +5914,337929,Disney Gargoyles: Awakening,2021,375,6.42460,5.62929, +5915,285570,Decipher,2020,401,6.37276,5.62925,"38, 274296, 285570" +5916,40234,Einauge sei wachsam!,2009,475,6.25653,5.62918, +5917,28436,Deutschland: Finden Sie Minden,2007,525,6.19653,5.62913,"28436, 41185, 132616, 136086, 154860, 172262, 192562" +5918,175636,Dragon Keepers,2019,322,6.55383,5.62908, +5919,11111,"Red Star/White Eagle: The Russo-Polish War, 1920",1979,141,7.74007,5.62903,"11111, 233018" +5920,129382,Ark & Noah,2012,308,6.59534,5.62902, +5921,247733,KOI,2018,409,6.35628,5.62896, +5922,140612,The Hobbit: An Unexpected Journey,2013,511,6.21087,5.62891,"140612, 151310" +5923,24935,Anima: Shadow of Omega,2006,1438,5.83561,5.62888,"24935, 40483, 63385" +5924,186986,Kung Fu Panda: The Board Game,2020,214,7.01734,5.62881, +5925,188124,Ostroleka 26 maja 1831,2015,90,8.92778,5.62871, +5926,5476,A Gleam of Bayonets: The Battle of Antietam,1983,179,7.28598,5.62861, +5927,325038,The Brambles: A Solo Card Game,2020,158,7.50601,5.62859, +5928,29198,Inn-Fighting,2007,1084,5.90220,5.62858, +5929,198412,Twelve Heroes,2016,245,6.83911,5.62857, +5930,1383,Pool Party,1999,429,6.31974,5.62854, +5931,219122,National Economy,2015,243,6.84850,5.62852,"219122, 229527, 294651" +5932,36903,Squadron Strike!,2008,176,7.31290,5.62851,"17022, 36903, 265910" +5933,155042,Steam Donkey,2014,328,6.53146,5.62840, +5934,14007,"The Siege of Alesia: Gaul, 52 B.C.",2005,202,7.09475,5.62840, +5935,254639,Alakazum!: Witches and Traditions,2018,180,7.27389,5.62840, +5936,173759,Cauldron,2015,228,6.92697,5.62835, +5937,282131,Monster Baby Rescue!,2019,294,6.63537,5.62835, +5938,172162,Da Luigi,2015,308,6.58945,5.62833,"172162, 369162" +5939,165563,Prohis,2014,516,6.20186,5.62830, +5940,7109,Fifth Corps: The Soviet Breakthrough at Fulda,1980,228,6.92618,5.62828,"7109, 294489" +5941,1950,The Mysteries of Peking,1987,1784,5.79408,5.62825,"1950, 17517, 365106, 431241" +5942,240892,8Bit Box,2018,570,6.14720,5.62824, +5943,21436,18FL,2006,212,7.02292,5.62818, +5944,363242,Donnerschlag: Escape from Stalingrad,2022,122,8.05142,5.62816, +5945,302281,Candy Lab,2020,334,6.51279,5.62810, +5946,26162,Claim It!,2006,511,6.20634,5.62809, +5947,303053,Last Defense!,2020,408,6.35196,5.62804, +5948,269917,Bahamas,2019,371,6.42405,5.62802,"269917, 387080" +5949,125315,FlowerFall,2012,871,5.96695,5.62799, +5950,308475,Regency,2021,132,7.86402,5.62795, +5951,6767,Attack Vector: Tactical,2004,177,7.29501,5.62792, +5952,180921,Lutèce,2015,320,6.54963,5.62787, +5953,75828,The Thing,2010,231,6.90463,5.62786, +5954,73365,Papayoo,2010,705,6.04588,5.62778, +5955,248182,Solar City,2020,292,6.63699,5.62775, +5956,5635,Second World War at Sea: Bomb Alley,2002,183,7.23798,5.62774,"5635, 200966" +5957,194964,Mothership: Tabletop Combat,2016,185,7.22000,5.62770, +5958,55833,Tarantel Tango,2009,657,6.07576,5.62763, +5959,9855,Strat-O-Matic Pro Basketball,1973,194,7.14452,5.62757, +5960,176247,Mixtape Massacre,2016,245,6.82845,5.62755,"176247, 300399, 350729" +5961,26458,"Chandragupta: Great Battles of the Mauryan Empire – India, 319-261 BC",2008,142,7.69845,5.62748, +5962,154939,MERCS: Recon – Counter Threat,2015,293,6.63109,5.62748,"154939, 156474" +5963,186475,Tofu Kingdom,2015,506,6.20832,5.62742, +5964,256390,Architectura,2018,767,6.01054,5.62739, +5965,147171,Soccer City,2013,183,7.23293,5.62737, +5966,119729,Jackal: Treasure Island,2011,747,6.02068,5.62737,"42702, 119729, 205039" +5967,232078,Pot de Vin,2017,477,6.24329,5.62736,"186089, 232078" +5968,156457,Gloobz,2014,492,6.22447,5.62736, +5969,369395,Art Gallery,2023,180,7.25944,5.62735, +5970,153815,Ghosts Love Candy,2016,287,6.65084,5.62734,"153815, 349242" +5971,210295,Lightseekers,2017,212,7.01203,5.62726, +5972,170146,Dark Seas,2015,551,6.16002,5.62726, +5973,353848,Age of Wonders: Planetfall,2022,208,7.03822,5.62723, +5974,283867,Offshore,2019,259,6.76019,5.62721, +5975,38275,Robotory,2006,471,6.25017,5.62720, +5976,169530,Resistor_,2015,392,6.37556,5.62718, +5977,181867,3 sind eine zu viel!,2015,339,6.49244,5.62716, +5978,52,Mighty Empires,1990,533,6.17743,5.62715, +5979,383458,Sides,2023,210,7.02340,5.62711, +5980,188530,My Favourite Things,2015,186,7.20323,5.62709, +5981,5480,Drive on Stalingrad: Battle for Southern Russia Game,1977,261,6.75019,5.62707,"5480, 12135" +5982,91666,Crossboule,2008,199,7.10000,5.62707, +5983,5306,Harry's Grand Slam Baseball Game,1962,416,6.33165,5.62706, +5984,1380,Jockey,1973,648,6.07914,5.62701,"573, 1380, 2311, 4431, 22892, 221344, 324559" +5985,376966,Task Force: Carrier Battles in the Pacific,2023,125,7.97040,5.62698,"16328, 376966" +5986,246366,Prowler's Passage,2018,274,6.69578,5.62695, +5987,280162,"From Salerno to Rome: World War II – The Italian Campaign, 1943-1944",2020,112,8.24107,5.62692, +5988,170202,Floating Market,2015,501,6.21114,5.62689, +5989,177248,Saga of the Northmen,2016,184,7.21741,5.62687, +5990,14038,Anachronism,2005,697,6.04657,5.62683, +5991,135508,The Mushroom Eaters,2013,186,7.19925,5.62679, +5992,293556,Gloomy Graves,2020,308,6.57623,5.62677,"260277, 293556" +5993,128425,Asteriated Grail,2010,167,7.37784,5.62677, +5994,2838,Loaded Questions,1997,1287,5.85386,5.62672,"2838, 28508, 51630, 172555, 255816, 255817, 398079" +5995,1519,Kult,1995,236,6.86530,5.62672, +5996,80933,Sandwich,2010,418,6.32591,5.62670,"80933, 117885, 353513" +5997,17557,Super Farmer,1943,1998,5.77298,5.62670,"17557, 33907, 130729" +5998,232661,Ada Lovelace: Consulting Mathematician,2017,232,6.88629,5.62668,"232661, 330196" +5999,26156,Ausgerechnet Uppsala,2006,333,6.50420,5.62668, +6000,332606,Hidden Games Tatort: Ein Drahtseilakt,2021,139,7.72892,5.62667, +6001,75360,Texas & Pacific,2010,213,6.99765,5.62660, +6002,258693,Radetzky: Milano 1848,2018,188,7.17984,5.62659, +6003,124490,Aztlán,2012,473,6.24336,5.62649, +6004,13347,Plunder,2004,578,6.13121,5.62647, +6005,187104,4 Gods,2016,992,5.92048,5.62644, +6006,102681,21 Mutinies: Arrr! Edition,2013,302,6.59212,5.62643,"84922, 102681" +6007,41100,King Philip's War,2010,211,7.00777,5.62636, +6008,228409,Lusitania,2017,248,6.80119,5.62631,"228409, 354378" +6009,169366,Waterloo 200,2015,129,7.88488,5.62630, +6010,39940,Prague: The Empty Triumph,2014,98,8.59796,5.62625, +6011,720,Fast Food Franchise,1992,406,6.34355,5.62625, +6012,229599,Time Arena,2017,281,6.66249,5.62623, +6013,207919,Hounded,2016,298,6.60333,5.62623, +6014,149793,Twin Peaks,2014,143,7.66084,5.62613, +6015,24410,Treasures & Traps,2006,505,6.20216,5.62611, +6016,387763,How Dare You?,2023,208,7.02356,5.62601, +6017,5772,What's It to Ya?,2003,301,6.59169,5.62601,"5772, 257743" +6018,322354,DEFCON 1,2023,150,7.56347,5.62599, +6019,40243,Roads to Stalingrad: Campaign Commander Series,2009,145,7.63021,5.62598, +6020,361923,Curse of the Dark,2022,112,8.22054,5.62597, +6021,303263,Pingyao: First Chinese Banks,2017,172,7.31481,5.62593, +6022,218310,Trickster: Champions of Time,2017,396,6.35944,5.62592, +6023,150364,Dig Down Dwarf,2013,412,6.33037,5.62583,"150364, 203845, 338739" +6024,263351,Abstratus,2018,110,8.26295,5.62576,"263351, 419751" +6025,189351,Virus,2016,355,6.44282,5.62574,"189351, 349792" +6026,253087,Shadowrun: Sprawl Ops,2019,316,6.54359,5.62573,"253087, 363112" +6027,8139,The Lord of the Rings: Combat Hex Tradeable Miniatures Game,2003,324,6.52080,5.62572, +6028,2123,Shadowrun: The Trading Card Game,1997,329,6.50702,5.62570,"2123, 362636" +6029,264925,Nocturion,2019,323,6.52294,5.62564, +6030,116046,18NY,2011,144,7.63772,5.62561, +6031,343990,Not Enough Mana,2022,126,7.92460,5.62558, +6032,206448,Noxford,2016,554,6.14821,5.62553, +6033,212839,Heroes Welcome,2019,199,7.08060,5.62553, +6034,264991,Par Odin,2018,235,6.85618,5.62539, +6035,7218,18VA,2001,188,7.16335,5.62535, +6036,239951,Gretchinz!,2018,535,6.16576,5.62534, +6037,176914,Gateway: Uprising,2017,284,6.64332,5.62533, +6038,142085,Promised Land: 1250-587 BC,2013,226,6.90405,5.62528, +6039,29383,GD '42: Grossdeutschland,2009,135,7.76588,5.62527, +6040,358027,Disney Big Thunder Mountain Railroad,2022,288,6.62844,5.62525, +6041,23928,Glory III,2007,239,6.83410,5.62525, +6042,232201,Planetoid,2019,205,7.03411,5.62521, +6043,274,Guerilla,1994,415,6.32097,5.62518,"274, 14522" +6044,110286,Zong Shi,2012,357,6.43325,5.62507, +6045,310194,Surrealist Dinner Party,2021,257,6.74734,5.62504, +6046,367584,7th Sea: City of Five Sails,2023,99,8.53838,5.62503, +6047,6508,Tom Tube,2003,439,6.28142,5.62493, +6048,254894,Catalyst,2018,291,6.61482,5.62488, +6049,5195,The Farming Game,1979,1005,5.91120,5.62478,"5195, 26605, 93258" +6050,369689,Aces of Valor,2022,118,8.06356,5.62475,"154687, 369689" +6051,422126,Intarsia,2024,202,7.04778,5.62462, +6052,236974,The Battles of Mollwitz 1741 and Chotusitz 1742,2017,96,8.61875,5.62461, +6053,121409,1969,2012,433,6.28818,5.62456, +6054,938,Enchanted Forest,1981,3210,5.71404,5.62454,"938, 110525, 287132, 309407, 374720" +6055,2960,Camden,2002,469,6.23700,5.62452, +6056,141418,LEADERS: The Combined Strategy Game,2013,286,6.62780,5.62440, +6057,10272,Thirty Years War Quad (Second Edition),1995,224,6.90513,5.62437,"8383, 10272, 25820, 144556, 144802, 144803" +6058,29599,Scandaroon,2007,202,7.04437,5.62435, +6059,21709,Jericho,2006,635,6.07600,5.62433, +6060,207487,Freak Shop,2016,313,6.54061,5.62433, +6061,21569,Adigma,2001,157,7.45099,5.62432,"21569, 287216" +6062,273657,El Camarero,2018,167,7.34156,5.62432, +6063,223777,Planet of the Apes,2017,229,6.87649,5.62431, +6064,272599,Deadly Doodles,2019,327,6.50121,5.62431, +6065,324467,Hey Yo,2020,363,6.41409,5.62429,"295175, 324467" +6066,133689,"Fall Blau: Army Group South, June to December 1942",2016,124,7.93638,5.62429,"133689, 231847" +6067,210101,Incorporated,2016,182,7.19951,5.62428, +6068,287591,Storytailors,2020,271,6.68196,5.62426, +6069,23917,Not War But Murder,2007,191,7.12429,5.62421, +6070,346773,The Stifling Dark,2024,150,7.53372,5.62417, +6071,8782,"Narvik: The Campaign in Norway, 1940",1974,203,7.03448,5.62411,"8782, 15990" +6072,265226,Mint Tin Mini Skulduggery,2018,133,7.77669,5.62411, +6073,30483,Antler Island,2007,538,6.15584,5.62403, +6074,338763,Count of the Nine Estates,2021,312,6.54006,5.62391,"247778, 338763" +6075,256487,France 1944: The Allied Crusade in Europe – Designer Signature Edition,2020,269,6.68636,5.62390,"5656, 256487" +6076,566,Wongar,2000,428,6.29118,5.62382, +6077,40235,Bridge Troll,2009,744,6.00759,5.62379, +6078,6117,Nobody but Us Chickens,2003,587,6.11019,5.62378, +6079,342277,Hellbringer,2024,90,8.79489,5.62372, +6080,138614,Relic Expedition,2014,261,6.71720,5.62372, +6081,174893,TROLL,2015,482,6.21578,5.62371,"139627, 174893" +6082,327721,Ambon: Burning Sun & Little Seagulls,2021,120,8.00000,5.62362, +6083,341963,Tides,2021,250,6.76402,5.62359,"341963, 353338" +6084,199269,1572: The Lost Expedition,2016,280,6.64136,5.62354, +6085,249233,Filler,2019,274,6.66357,5.62354, +6086,148975,Dungeon Guilds,2013,600,6.09814,5.62346,"148975, 180785" +6087,1702,Klondike,1993,403,6.33000,5.62344, +6088,356230,Globetrotting,2023,244,6.79020,5.62342, +6089,127981,Dungeon Heroes,2013,374,6.38463,5.62342,"127981, 358224" +6090,139572,Karesansui,2013,357,6.42053,5.62337,"16389, 139572" +6091,284269,Taxi Derby,2020,178,7.22215,5.62337, +6092,4200,"Black Wednesday: The Battle of Krasni Bor, 10-11 Feb 1943",1995,183,7.17814,5.62334, +6093,2860,Piecepack,2001,210,6.97815,5.62334, +6094,131241,Oilfield,2016,236,6.82884,5.62333, +6095,7976,Fantasy Pub,2003,466,6.23382,5.62333,"7976, 366974" +6096,195547,LOAD: League of Ancient Defenders,2016,342,6.45488,5.62329, +6097,355850,UNO Ultimate Marvel,2022,244,6.78885,5.62329,"355850, 381716, 392708, 395953" +6098,637,The Stock Car Championship Racing Card Game,1995,224,6.89274,5.62327, +6099,6700,Command Decision 2nd Edition,1992,198,7.05914,5.62325,"5835, 6699, 6700, 16673, 27480" +6100,392842,Wonder Bowling,2023,200,7.04425,5.62321,"74935, 392842" +6101,208700,Heroes of Normandie: The Tactical Card Game,2019,134,7.74403,5.62320, +6102,175023,Crows Overkill,2014,374,6.38256,5.62313, +6103,31554,Red Dragon Rising: The Coming War With China,2008,182,7.18313,5.62308,"31554, 72200" +6104,354395,Mountains out of Molehills,2022,245,6.78195,5.62308, +6105,422042,Tea Garden,2024,125,7.89440,5.62308, +6106,1145,City of Chaos,1996,225,6.88471,5.62306, +6107,273993,Tonari,2019,332,6.47794,5.62304,"11632, 273993" +6108,343741,The Mirroring of Mary King,2022,190,7.11681,5.62304, +6109,271837,Freeman's Farm 1777,2019,162,7.37438,5.62300, +6110,283584,GrandBois,2019,272,6.66529,5.62291, +6111,162152,Ciúb,2014,573,6.11759,5.62288, +6112,198003,Dark Deeds,2016,161,7.38321,5.62286, +6113,284998,Reigns: The Council,2020,230,6.85510,5.62286, +6114,48863,The BattleTech Compendium,1990,138,7.67637,5.62285,"48863, 91943" +6115,19727,The Great Space Race,2006,329,6.48398,5.62282, +6116,367992,Swindler,2022,337,6.46352,5.62282, +6117,145205,L'Aéropostale,2013,206,6.99806,5.62281, +6118,128204,Ars Victor,2013,170,7.28908,5.62280, +6119,342638,Biotopia,2021,164,7.34959,5.62277, +6120,276296,Finger Guns at High Noon,2019,365,6.39857,5.62276, +6121,271268,Admirals' War: World War II at Sea,2019,109,8.21982,5.62272,"193948, 271268" +6122,275783,Turbulences,2020,125,7.88731,5.62271,"275783, 333667" +6123,836,New England Railways,2000,256,6.72832,5.62270,"378, 836, 11988, 240663" +6124,277902,Goryō,2019,243,6.78724,5.62268, +6125,343387,Deckscape: Dracula's Castle,2021,385,6.35708,5.62259, +6126,173776,Battle for Biternia,2018,127,7.84843,5.62255, +6127,27028,Anima Tactics,2006,169,7.29408,5.62247, +6128,346950,Into the Blue,2021,312,6.52786,5.62246, +6129,188885,Grasse: Mestres Perfumistas,2018,113,8.12228,5.62246, +6130,363503,Unreliable Wizard,2022,259,6.71286,5.62243, +6131,362723,Escape from New York,2024,143,7.59738,5.62243, +6132,242589,NATO Air Commander,2018,139,7.65388,5.62241, +6133,85572,"The Last Success: Quadrigame of the War Against Austria, April - July 1809",2011,140,7.63850,5.62236, +6134,359835,Dungeons & Dragons: Onslaught,2023,150,7.50333,5.62231,"359835, 416089" +6135,265917,Winterborne,2019,209,6.97020,5.62214, +6136,42206,7 Ate 9,2009,645,6.05889,5.62212,"42206, 241036" +6137,183264,Spookies,2015,505,6.17986,5.62210, +6138,352482,"We Are Coming, Nineveh",2023,140,7.63321,5.62206, +6139,68199,Catchup,2010,145,7.56379,5.62205, +6140,182047,Austerity,2015,221,6.89434,5.62190, +6141,220248,Grimdark Future,2017,100,8.43350,5.62188,"191312, 220248" +6142,11705,"Lightning: Midway – June 4th to June 6th, 1942",2004,333,6.46595,5.62185, +6143,1836,Solarquest,1985,931,5.92362,5.62181,"1836, 13361" +6144,189123,Relicblade: Adventure Battle Game,2015,94,8.60947,5.62175,"189123, 203671" +6145,300407,Reincardnated,2022,148,7.51926,5.62174, +6146,352710,Ouch!,2022,617,6.07658,5.62167, +6147,209206,Hypergrid,2017,149,7.50503,5.62165, +6148,160524,Soccer Blast Pro Soccer Game,2014,112,8.12705,5.62164, +6149,14039,Flix Mix,2004,416,6.29585,5.62159, +6150,300095,Jubako,2020,237,6.80441,5.62153, +6151,230275,Who Should We Eat?,2017,368,6.38329,5.62152, +6152,367833,Forges of Ravenshire,2024,134,7.71306,5.62150, +6153,181328,Cornwall,2015,329,6.47322,5.62148, +6154,199357,By Order of the Queen,2017,335,6.45791,5.62147, +6155,156719,Dino Race,2014,528,6.15201,5.62144, +6156,23348,Easter Island,2006,397,6.32702,5.62143, +6157,324320,Planet etuC,2020,227,6.85529,5.62142,"324320, 427635" +6158,353289,Sherlock Aquelarre: El Mercader,2021,192,7.07792,5.62124,"346094, 353289, 353290, 360012" +6159,1525,Dixie: Bull Run,1994,395,6.32853,5.62113, +6160,172844,Charms,2014,178,7.19045,5.62110, +6161,124390,"Goblins Drool, Fairies Rule!",2013,653,6.04887,5.62109, +6162,271460,UNO Flip!,2019,39355,5.62816,5.62106,"1258, 1333, 1961, 2143, 2223, 2578, 2818, 2821, 3004, 3337, 3839, 4578, 5522, 6710, 7803, 9250, 9465, 12162, 16693, 24318, 31807, 38038, 42920, 64438, 64447, 97294, 97990, 116593, 124363, 142794, 147647, 157945, 172009, 172237, 182707, 201822, 220199, 221770, 246701, 261076, 271460, 276495, 286309, 297007, 314832, 314892, 315730, 322965, 331830, 337824, 343122, 349555, 369054, 380156, 380300, 386551, 394499, 400760, 419698, 419968, 423154, 423597, 429348, 435035" +6163,374982,Nebula,2023,120,7.94753,5.62103, +6164,166976,Consentacle,2014,266,6.67026,5.62099, +6165,149794,Clash of Giants: Civil War,2016,186,7.12124,5.62097, +6166,145,Metropolis,1984,379,6.35723,5.62097, +6167,334049,The Dragon Prince: Battlecharged,2021,198,7.03017,5.62096, +6168,423401,Minos: Dawn of the Bronze Age,2024,139,7.62832,5.62096, +6169,36297,No Question of Surrender: The Battle for Bir Hacheim,2012,167,7.29132,5.62093, +6170,197786,Say my Name,2015,149,7.49216,5.62087, +6171,41837,Force on Force: Modern Wargaming Rules,2009,167,7.28938,5.62080,"41837, 106523" +6172,262534,Oak & Iron: Core Box,2019,99,8.43535,5.62079, +6173,157322,Dice Brewing,2014,620,6.07008,5.62076, +6174,339592,Sheep in Disguise,2022,124,7.86718,5.62076,"339592, 362623" +6175,233996,The Primary,2018,122,7.90287,5.62070, +6176,1371,Mustangs,1991,277,6.62563,5.62068, +6177,38980,Mecanisburgo,2008,304,6.53612,5.62065, +6178,15069,Ekonos,2004,274,6.63613,5.62062,"15069, 345520" +6179,374199,Micro Architects,2023,188,7.10046,5.62061,"276780, 374199" +6180,5791,Maelstrom,2001,291,6.57659,5.62060, +6181,167975,Opération Commando: Pegasus Bridge,2014,196,7.03985,5.62059,"99976, 167975, 298030" +6182,156878,tummple!,,332,6.45840,5.62058,"156878, 396006" +6183,343334,Schichtwechsel: Die Förderung liegt in deiner Hand,2021,176,7.20057,5.62055, +6184,184371,Justice League: Hero Dice – Batman,2015,412,6.29549,5.62055,"184371, 184372, 198700, 198701" +6185,2324,Last Frontier: The Vesuvius Incident,1993,201,7.00398,5.62054, +6186,91010,Phantom Fury,2011,154,7.42597,5.62053,"91010, 425936" +6187,356039,Volto,2022,284,6.59936,5.62051,"281559, 356039" +6188,178030,Overlords of Infamy,2017,185,7.12285,5.62049, +6189,103670,Dust Warfare: Core Rulebook,2012,152,7.44868,5.62047,"103670, 216066" +6190,1533,Ghost Chase,2001,446,6.24339,5.62044, +6191,289850,Dwar7s Spring,2020,123,7.87886,5.62042, +6192,2353,Muscat,2001,575,6.10338,5.62039,"2353, 18265" +6193,321140,Ahau: Rulers of Yucatán,2023,206,6.96826,5.62037,"321140, 403499" +6194,350,Hattrick,1995,321,6.48522,5.62035, +6195,135,Kontor,1999,833,5.95345,5.62030, +6196,29456,Infernal Contraption,2007,1257,5.84090,5.62024, +6197,270851,Dungeons of Doria,2023,85,8.88176,5.62018, +6198,325401,Beyond the Rift: A Perdition's Mouth Card Game,2022,147,7.50578,5.62016, +6199,393456,1902 Méliès,2023,183,7.13373,5.62008, +6200,210008,Off the Rails,2018,450,6.23558,5.62007, +6201,5042,Flashpoint: Golan – The Fifth Arab-Israeli War,1991,177,7.18475,5.62006, +6202,221233,Star Cartel,2017,330,6.45926,5.62005, +6203,298164,Volle Weide,2020,382,6.34453,5.61998,"274735, 298164" +6204,281961,Pappy Winchester,2019,264,6.66837,5.61998, +6205,2728,The Generals,1980,244,6.75406,5.61996,"2728, 315883" +6206,43365,Kansas Pacific,2009,281,6.60452,5.61994, +6207,298764,The Great Barrier Reef Card Game,2020,177,7.18277,5.61992, +6208,360956,"Suspects: Claire Harper, Eternal Investigator",2022,157,7.38140,5.61989,"360956, 375704, 379163" +6209,417426,Rogue Dungeon: 2nd Edition,2024,115,8.02443,5.61987,"334715, 417426" +6210,37906,Firestorm Armada,2009,176,7.19006,5.61980,"37906, 174038, 192392, 192393, 192394" +6211,316928,Sons of Faeriell,2022,208,6.94818,5.61978, +6212,299248,The Order of Veiel,2020,124,7.84758,5.61976, +6213,254634,"Pacific Tide: The United States Versus Japan, 1941-45",2019,175,7.19829,5.61975, +6214,102690,Villagers & Villains,2011,279,6.60950,5.61971, +6215,162114,Hamsterbacke,2014,295,6.55563,5.61969, +6216,1313,1826: Railroading in France and Belgium from 1826,2000,155,7.40000,5.61963, +6217,301018,Dragon Parks,2021,304,6.52737,5.61963, +6218,54221,Push Fight,2008,164,7.30177,5.61959, +6219,141428,Pass the Pandas,2014,464,6.21350,5.61948,"141428, 269573, 329151, 425078" +6220,55679,Panzer General: Allied Assault,2010,366,6.37224,5.61944, +6221,5281,Octiles,1984,327,6.46186,5.61942, +6222,710,Snit's Revenge!,1977,493,6.17812,5.61941,"710, 5012, 307783" +6223,249751,Rostov '41: Race to the Don,2020,134,7.67493,5.61940, +6224,376363,Sweet Mess: Pastry Competition,2024,321,6.47745,5.61940,"244268, 376363" +6225,127134,Baobab,2012,530,6.13901,5.61939, +6226,200512,Pups,2016,213,6.91216,5.61937,"200512, 431717" +6227,18057,Anno Domini: Natur,1998,256,6.69492,5.61936, +6228,201920,Pocket Madness,2016,742,5.99031,5.61933, +6229,1157,Save Doctor Lucky,2000,1198,5.84903,5.61930, +6230,74102,Der Pate,2010,442,6.24169,5.61926, +6231,171431,The Maiden in the Forest,2015,375,6.35278,5.61925, +6232,262621,The Soo Line,2018,222,6.85811,5.61923, +6233,351643,Achroma,2021,83,8.93253,5.61922, +6234,390163,Avant Carde,2024,197,7.01416,5.61914, +6235,166418,Darkrock Ventures,2016,231,6.80866,5.61912, +6236,18946,Just Desserts,2015,1460,5.80727,5.61910, +6237,318559,Twinkle,2021,226,6.83332,5.61897, +6238,383758,Waffle Time,2023,247,6.72993,5.61896, +6239,144789,The Sheep Race,2013,274,6.62026,5.61894, +6240,282765,Mint Cooperative,2020,723,5.99820,5.61889, +6241,287673,Baron Voodoo,2019,314,6.49226,5.61888, +6242,171037,Doctor Panic,2016,508,6.15815,5.61878, +6243,359237,Pirate Tales,2023,165,7.27939,5.61878, +6244,347304,Time's Up!: Harry Potter,2021,159,7.34151,5.61874, +6245,304983,Key Enigma: Hack Forward,2021,116,7.97993,5.61874, +6246,33259,Starmada: The Admiralty Edition,2009,140,7.57500,5.61873,"3109, 33259, 38639, 122821, 226873, 329245, 416309" +6247,231027,Bye-Bye Black Sheep,2017,307,6.51000,5.61863, +6248,1254,Crack the Case,1993,596,6.07763,5.61860, +6249,230553,Dragon Ball Super Card Game,2017,152,7.41844,5.61860,"230553, 421087" +6250,5035,"PanzerArmee Afrika: Rommel in the Desert, April 1941 - November 1942",1973,373,6.35185,5.61857, +6251,256939,Zeppelin Raider: Imperial German Naval Airships,2019,134,7.65970,5.61857, +6252,244241,Runika and the Six-sided Spellbooks,2020,179,7.14615,5.61854, +6253,227605,For-Ex,2017,381,6.33586,5.61848,"227605, 425446" +6254,233848,Hako Onna,2016,307,6.50877,5.61848, +6255,150294,COGZ,2015,200,6.98500,5.61848, +6256,295195,Clash of Armies: Medieval,2021,131,7.70458,5.61847, +6257,367201,Taiwan Night Market,2023,189,7.06434,5.61846, +6258,212450,Crossroads of Heroes,2018,182,7.11978,5.61845, +6259,110868,Locke & Key: The Game,2012,440,6.23937,5.61844, +6260,1633,Spies!,1981,337,6.42899,5.61842, +6261,368039,Unlock!: Short Adventures – Secret Recipes of Yore,2022,296,6.54123,5.61841, +6262,370984,Tracks: Siren Bay,2022,209,6.92502,5.61838, +6263,137872,EONS,2013,250,6.71064,5.61838, +6264,46422,Nostra City,2009,403,6.29535,5.61829, +6265,2997,Soldier Kings: The Seven Years War Worldwide,2002,374,6.34781,5.61828,"2997, 7861, 14117, 191528, 356300" +6266,195484,Ominoes,2016,334,6.43505,5.61826, +6267,217176,Crazy Race,2017,215,6.88695,5.61825, +6268,344050,Dubious,2021,256,6.68340,5.61821,"344050, 400790" +6269,366194,A Wayfarer's Tale,2022,135,7.63807,5.61821,"366194, 419291, 420594" +6270,69843,PRESTAGS Master-Pack,1976,275,6.60942,5.61817,"7723, 7948, 8036, 8044, 8509, 8787, 11469, 11498, 11499, 11500, 69843" +6271,8320,Sicily: The Race for Messina,1981,242,6.74434,5.61815, +6272,6916,1941: Operation Barbarossa,1981,258,6.67442,5.61814,"6915, 6916, 6918, 368357" +6273,88871,"Roads to Moscow: Battles of Mozhaysk and Mtsensk, 1941",2013,151,7.42285,5.61813, +6274,388570,Jokkmokk: The Winter Market,2023,172,7.20192,5.61809, +6275,32129,Taktika,2007,195,7.01487,5.61808, +6276,390422,Command of Nature,2024,173,7.19071,5.61795, +6277,177725,They Come Unseen,2015,238,6.76109,5.61794, +6278,118337,Urbanization,2012,495,6.16727,5.61789, +6279,607,Honor of the Samurai,1996,843,5.94041,5.61787, +6280,25695,Chopstick Dexterity MegaChallenge 3000,2006,517,6.14371,5.61786, +6281,232267,"Red Typhoon: The Soviet Winter Counter-Offensive, 1942",2017,136,7.61544,5.61778,"42411, 42412, 232267, 375315" +6282,154394,Sheepshead,1830,128,7.73984,5.61775, +6283,3707,Red Storm Rising,1989,369,6.35364,5.61772, +6284,263222,Shards of the Jaguar,2021,122,7.84344,5.61771, +6285,18606,Birds of Prey: Air Combat in the Jet Age,2008,136,7.61324,5.61765, +6286,319999,Dungeon Decorators,2021,202,6.96117,5.61765, +6287,235533,Beta Colony,2018,266,6.63695,5.61755, +6288,3595,Squint,2002,785,5.96293,5.61754,"3595, 11413" +6289,308028,Drop Drive,2023,147,7.46166,5.61752,"308028, 415724" +6290,23421,1832: The South,2006,123,7.82073,5.61748, +6291,7215,"To the Green Fields Beyond: The Battle of Cambrai, 1917",1978,157,7.34299,5.61744, +6292,363086,The Legends of Andor: The Eternal Frost,2023,138,7.58051,5.61744, +6293,354307,Crown of Ash,2024,130,7.70115,5.61743, +6294,58329,Langfinger,2009,525,6.13328,5.61741,"58329, 366459" +6295,155802,Korrigans,2014,410,6.27788,5.61739, +6296,142334,Sushi Dice,2014,976,5.89485,5.61739, +6297,391497,Tangram City,2023,249,6.70438,5.61734, +6298,343133,Dictopia,2022,152,7.39800,5.61733, +6299,514,True Colors,1989,598,6.06983,5.61731, +6300,180937,Nut Job,2015,240,6.74458,5.61728,"180937, 286196" +6301,139747,Arena Rex,2013,103,8.24272,5.61723, +6302,311702,Piratas! (3ª Edição),2020,179,7.12759,5.61720,"188997, 311702" +6303,13218,Austerlitz 1805: Partie Sud,2004,119,7.88908,5.61720,"13218, 14082, 16457, 153987, 337167" +6304,286790,Studies in Sorcery,2021,175,7.16191,5.61719, +6305,12141,This Terrible Sound,2000,121,7.85124,5.61718, +6306,1965,Mertwig's Maze,1988,276,6.59565,5.61708, +6307,6929,Ranger,1984,174,7.16839,5.61702,"6929, 176948" +6308,229543,Sakura,2017,472,6.18892,5.61702,"229543, 315572" +6309,265399,Godsforge,2019,258,6.66322,5.61701, +6310,166569,House of Borgia,2017,290,6.54741,5.61697, +6311,1726,Alexander the Great,1971,444,6.22432,5.61691, +6312,357991,Dobro,2022,248,6.70403,5.61688,"357991, 422860" +6313,113337,Global War 1939,2011,86,8.75179,5.61687,"113337, 188364, 258347, 377418" +6314,173574,1836Jr,2006,187,7.05856,5.61687, +6315,332943,Archduke,2020,140,7.54250,5.61687, +6316,258295,Ascendancy,2024,100,8.31100,5.61679, +6317,217974,Bemused,2017,259,6.65583,5.61667,"217974, 246508" +6318,287116,Maya,2019,206,6.92312,5.61667, +6319,160908,Plus Ultra: The Court of the Emperor Charles V,2016,178,7.12848,5.61666, +6320,152345,"La Patrie en Danger 1814: The Campaign in France, Part I",2014,109,8.08505,5.61664, +6321,574,Devil Take the Hindmost,1991,328,6.43604,5.61653,"574, 348968" +6322,333373,Tacocat Spelled Backwards,2021,387,6.31069,5.61647, +6323,175763,Behind the Throne,2016,459,6.20172,5.61646, +6324,385408,Star Wars: Rivals – Series 1: Premier Set,2023,174,7.15944,5.61639, +6325,400113,Panda Panda,2023,219,6.84224,5.61638,"391523, 400113, 409787, 426097" +6326,183836,Ferox,2015,130,7.68046,5.61633, +6327,230746,Bronze,2017,225,6.80872,5.61631, +6328,31612,Sultan,2007,567,6.08948,5.61630,"31612, 217581" +6329,318079,Mars Operation,2020,287,6.55050,5.61624,"269729, 318079" +6330,197076,Nemesis: Burma 1944,2018,125,7.76080,5.61621, +6331,345684,The Charge of the 3 Kings: Navas de Tolosa 1212,2021,103,8.21641,5.61611, +6332,164236,Witch Hunt,2016,152,7.37781,5.61608, +6333,121993,We Will Wok You,2012,408,6.27233,5.61607, +6334,180853,Zephyr: Winds of Change,2017,200,6.95475,5.61606, +6335,178099,1500 m,2018,204,6.92828,5.61605, +6336,223312,Little Big Fish,2017,259,6.64950,5.61603, +6337,271693,Wodny szlak,2019,274,6.59292,5.61603, +6338,11436,La Bataille d'Orthez,2000,125,7.75600,5.61596, +6339,5687,Dirtside II,1993,158,7.30759,5.61587,"5687, 27985" +6340,40816,Magestorm,2010,422,6.24896,5.61582, +6341,205774,Steel Arena: Friday Night Robot Fight,2016,245,6.70620,5.61581, +6342,135888,Titanium Wars,2013,495,6.15532,5.61578, +6343,233932,Mountaineers,2019,246,6.70134,5.61577,"203833, 233932, 430096" +6344,326358,Cryptid Cafe,2022,238,6.73779,5.61576,"285313, 326358" +6345,12318,Typo,2004,486,6.16491,5.61571,"12318, 157148" +6346,1520,Monad,1968,453,6.20476,5.61568, +6347,170537,Swords and Bagpipes,2014,320,6.44912,5.61562, +6348,6495,Iron Tide: Panzers in the Ardennes,2003,118,7.87585,5.61562, +6349,363841,Snap Ships Tactics,2023,105,8.15524,5.61560, +6350,1591,Ploy,1970,406,6.27166,5.61549, +6351,4651,Stalingrad,1963,514,6.13356,5.61545, +6352,328862,Looney Tunes Mayhem,2023,204,6.92060,5.61542,"328861, 328862" +6353,94255,Warparty,2013,160,7.27950,5.61542,"94255, 191048" +6354,303418,Unlock!: The Escape Room Game – In Pursuit of the Iron Mask,2020,293,6.52389,5.61539, +6355,344974,Adventure Realms,2021,135,7.58704,5.61539, +6356,1803,Zopp,1997,161,7.26770,5.61533, +6357,180387,Dungeon Solitaire: Tomb of Four Kings,2015,172,7.16192,5.61532,"180387, 189663, 264509" +6358,753,Panzerkrieg: von Manstein & HeeresGruppe Süd,1978,287,6.54216,5.61531,"753, 9991, 316962" +6359,361211,Hygge,2022,269,6.60398,5.61529, +6360,223518,Scott Pilgrim's Precious Little Card Game,2017,503,6.14401,5.61529, +6361,11091,Leuthen: Frederick's Greatest Victory,1997,107,8.10047,5.61528, +6362,207398,Hungarian Rhapsody: The Eastern Front in Hungary,2020,96,8.38438,5.61524, +6363,275785,Die Hard: The Nakatomi Heist Board Game,2019,301,6.49837,5.61524, +6364,285115,Peak Oil: Profiteer,2022,162,7.25566,5.61520, +6365,201557,Odyseja,2019,160,7.27444,5.61509, +6366,228370,TerroriXico,2018,71,9.35211,5.61502, +6367,231624,Exploriana,2019,223,6.80444,5.61499, +6368,373055,Ritual,2022,161,7.26211,5.61496, +6369,336622,Wrong Party,2021,310,6.47000,5.61491, +6370,313471,Knockdown,2022,190,7.00940,5.61486,"313471, 322865, 322989" +6371,165959,Jolly Roger: The Game of Piracy & Mutiny,2015,413,6.25633,5.61485, +6372,34098,Guelphs and Ghibellines,2009,120,7.82167,5.61480, +6373,285071,Ugly Christmas Sweaters,2020,186,7.03838,5.61479, +6374,252883,TOKYO SIDEKICK,2018,153,7.34471,5.61474, +6375,338353,Soda Smugglers,2022,278,6.56684,5.61474,"302695, 338353" +6376,225736,Village of Legends,2017,165,7.21879,5.61473, +6377,316494,The Last Hundred Yards: Volume 3 – The Solomon Islands,2022,100,8.26100,5.61472, +6378,145424,Café Melange,2013,235,6.74043,5.61468, +6379,285047,SilenZe: Zombie City,2019,277,6.56968,5.61468, +6380,25605,Walhalla,2006,349,6.37195,5.61458, +6381,365727,Make the Difference,2022,210,6.87243,5.61451, +6382,396543,Havalandi,2023,236,6.73373,5.61450, +6383,371556,Marvel: Age of Heroes,2023,196,6.96121,5.61443, +6384,231215,Merchants of Muziris,2017,185,7.04052,5.61437,"231215, 404965" +6385,359927,The Breach,2024,96,8.36250,5.61437, +6386,982,Amoeba Wars,1981,529,6.11276,5.61431, +6387,147206,Copper Country,2015,230,6.76065,5.61430, +6388,352818,Twin Palms,2022,314,6.45390,5.61429, +6389,13016,"White Death: Velikiye Luki, The Stalingrad of the North",1979,133,7.59624,5.61427, +6390,232353,Costume Party Detective,2018,259,6.63202,5.61427, +6391,329086,Pebble Rock Delivery Service,2021,209,6.87544,5.61427, +6392,288335,Forgotten Depths,2022,182,7.06236,5.61425, +6393,4358,The Guns of August,1981,668,6.00877,5.61425,"4358, 235926" +6394,4643,Fire and Ice,2002,231,6.75500,5.61424, +6395,304450,Detective Charlie,2021,185,7.03816,5.61420, +6396,42105,Mixmo,2009,363,6.33978,5.61418, +6397,7176,Battle of the Bulge: Platoon Level Combat in World War II – A Panzer Grenadier Game,2002,200,6.93050,5.61413, +6398,20266,"Bitter End: Attack to Budapest, 1945",1983,150,7.36926,5.61413,"12336, 20266" +6399,260788,Knapp Daneben!,2018,270,6.58901,5.61411, +6400,23935,Oshi,2006,510,6.13022,5.61411, +6401,33785,Elsenborn Ridge: Tactical Combat During the Battle of the Bulge – A Panzer Grenadier Game,2008,138,7.52138,5.61410, +6402,12533,Entrapment,1999,113,7.94292,5.61408, +6403,3637,Triplanetary,1973,193,6.97751,5.61407, +6404,220380,Blorg in the Midwest,2018,230,6.75816,5.61407, +6405,397788,Worms: The Board Game,2024,150,7.36819,5.61406, +6406,4168,Blitzkrieg,1965,784,5.94963,5.61405, +6407,205831,Dreams,2016,484,6.15753,5.61403, +6408,145042,Puppet Wars Unstitched,2013,164,7.21799,5.61403,"104012, 145042" +6409,63395,Chocolatl,2010,346,6.37396,5.61399, +6410,67123,Tank on Tank,2010,205,6.89620,5.61395,"67123, 177061" +6411,301317,"Houston, We Have a Dolphin!",2020,213,6.84742,5.61390, +6412,861,Weapons & Warriors: Castle Combat Set,1993,580,6.06688,5.61389,"861, 4695, 30331" +6413,144506,Mysteries?,2013,185,7.03405,5.61389, +6414,215503,Conejos en el Huerto,2016,154,7.31770,5.61375, +6415,220730,The Scarlet Pimpernel,2019,237,6.72055,5.61372, +6416,163310,Supermarché,2014,180,7.07073,5.61369, +6417,223033,Approaching Dawn: The Witching Hour,2017,156,7.29423,5.61365, +6418,258561,Rap Godz,2020,191,6.98552,5.61359, +6419,339296,Hike!,2022,239,6.70980,5.61358, +6420,140314,High Heavens,2015,161,7.24067,5.61356, +6421,113567,Mediterranean Empires,2015,164,7.21079,5.61355, +6422,186767,Shahrazad,2015,490,6.14807,5.61354, +6423,220284,Zombie Dawn,2017,155,7.30323,5.61354, +6424,280984,Ruins: Death Binder,2021,163,7.21998,5.61351, +6425,299178,Small Railroad Empires,2021,249,6.66506,5.61351, +6426,222462,Mint Julep,2017,280,6.54832,5.61347, +6427,198408,Gekido: Bot Battles,2017,361,6.33828,5.61343, +6428,3656,Score Four,1967,704,5.98510,5.61343, +6429,26147,Split Personality,2006,355,6.35000,5.61336,"26147, 73543" +6430,206928,The Architects of the Colosseum,2016,373,6.31360,5.61325, +6431,366756,AEOLOS,2022,172,7.13184,5.61323, +6432,116806,Napoleon Against Russia,2015,103,8.14854,5.61320, +6433,273909,Napoleon's Wheel,2020,101,8.19802,5.61317, +6434,276924,Time Chase,2019,381,6.29801,5.61312, +6435,311330,P for Pizza,2020,335,6.39197,5.61311, +6436,187976,Covil: The Dark Overlords,2017,344,6.37127,5.61307, +6437,148204,Pulp Alley,2012,99,8.24717,5.61305,"148204, 334608" +6438,322168,CastleScape,2023,132,7.58705,5.61296, +6439,7755,Victory in Normandy,1992,168,7.16310,5.61290, +6440,62214,Aspern-Essling 1809,2009,119,7.80042,5.61285, +6441,359082,Golfie,2022,154,7.30305,5.61284,"359082, 419705" +6442,298271,Cutterland,2020,224,6.77471,5.61282, +6443,378293,Daruma,2023,168,7.16161,5.61280, +6444,253696,Fitna: The Global War in the Middle East,2020,143,7.43224,5.61279, +6445,291952,Jeff Davis: The Confederacy at War,2019,119,7.79916,5.61279, +6446,5941,Mermaid Rain,2003,424,6.22618,5.61275, +6447,13728,Naval Battles: World War II on the High Seas,2004,767,5.95185,5.61275, +6448,7719,Arena Maximus,2003,991,5.87511,5.61272, +6449,16185,Modern Battles: Four Contemporary Conflicts,1975,227,6.75815,5.61272,"8747, 8748, 8749, 8751, 16185" +6450,359861,Critical: Foundation – Season 1,2022,146,7.39281,5.61267,"359861, 377506" +6451,236205,The Mansky Caper,2018,181,7.04834,5.61265, +6452,404,Worm Up!,1994,1037,5.86318,5.61263, +6453,205826,Kilt Castle,2016,251,6.64755,5.61261, +6454,263894,Grind House,2020,264,6.59628,5.61258, +6455,13455,A Call to Arms: Babylon 5 Space Combat,2004,192,6.96380,5.61247,"13455, 30795" +6456,287247,Aristocracy,2019,242,6.68455,5.61247, +6457,373190,Maps of Misterra,2023,288,6.51285,5.61242, +6458,422484,King of Tokyo: Duel,2024,161,7.22273,5.61239, +6459,94731,Heroica: Fortaan,2011,1203,5.82783,5.61237,"94731, 94732, 94733, 94734, 116877" +6460,294233,Fafnir,2019,378,6.29782,5.61233, +6461,723,The Uncanny X-Men Alert Adventure Game,1992,474,6.15897,5.61232, +6462,293404,Public Market,2021,191,6.96833,5.61228, +6463,381188,Kauri,2023,128,7.63530,5.61226, +6464,344937,18 India,2023,132,7.57348,5.61223, +6465,300765,Quiz Club,2021,152,7.31536,5.61222, +6466,203885,Mysterious Dungeons,2016,282,6.52950,5.61214,"181194, 203885" +6467,110260,Roll'n Bump,2011,441,6.19847,5.61210, +6468,317312,Kombo Klash!,2021,204,6.87961,5.61209,"254633, 282251, 317312" +6469,1144,The Warlock of Firetop Mountain,1986,738,5.96229,5.61205, +6470,82610,Cranium Scribblish,2009,389,6.27640,5.61203, +6471,6976,St-Lô: Normandy 1944 – The Breakout Begins,1986,233,6.72082,5.61200,"5239, 6976" +6472,134283,1914: Serbien Muss Sterbien,2015,139,7.47050,5.61199, +6473,1163,"Ciao, Ciao...",1997,684,5.98959,5.61197,"1163, 10658" +6474,386273,Tucana Builders,2023,257,6.61616,5.61189, +6475,10964,"April's Harvest: The Battle of Shiloh, April 6 & 7, 1862",1995,174,7.09483,5.61186, +6476,308305,21Moon,2020,128,7.62742,5.61184, +6477,386216,Pacific Ocean,2023,197,6.92095,5.61180, +6478,364393,Star Tycoon,2024,145,7.39034,5.61180, +6479,274028,Handsome,2019,224,6.76290,5.61178, +6480,13254,Second World War at Sea: Midway,2002,145,7.39000,5.61178,"13254, 367827" +6481,179547,Victus: Barcelona 1714,2015,141,7.44028,5.61177, +6482,342492,A game about WEE WHIMSICAL CREATURES and trying to identify them after someone makes noises.,2021,145,7.38966,5.61176,"342492, 363238, 389085" +6483,264314,Crave,2019,190,6.96842,5.61174, +6484,326848,Illumination,2021,145,7.38779,5.61165, +6485,34819,Pengoloo,2007,708,5.97539,5.61164,"13226, 34819, 363357, 378545" +6486,201046,Dice of Crowns,2016,436,6.20223,5.61163,"201046, 230316, 263186" +6487,227422,Whoosh: Bounty Hunters,2017,423,6.21995,5.61156, +6488,179217,Wonky,2015,347,6.35304,5.61154,"179217, 211492" +6489,125493,DrunkQuest,2013,412,6.23580,5.61150, +6490,324278,Inkling,2021,188,6.97945,5.61149, +6491,283634,CoLab,2024,167,7.15129,5.61148, +6492,9132,18C2C: Manifest Destiny,2003,136,7.50074,5.61139,"9132, 162067" +6493,376478,Exit: The Game – The Hunt Through Amsterdam,2023,144,7.39549,5.61137, +6494,298163,Dark Venture: Battle of the Ancients,2022,100,8.17850,5.61129, +6495,5991,Lion of Ethiopia,1990,148,7.34561,5.61127, +6496,17530,Go Stop,1889,253,6.62435,5.61113, +6497,158970,Nautilus Industries,2015,244,6.66160,5.61111, +6498,180193,Expo 1906,2015,219,6.78132,5.61110, +6499,165404,Dragonscroll,2014,296,6.47676,5.61108, +6500,159333,Fendo,2014,115,7.83765,5.61100, +6501,31575,The Eye of Judgment,2007,202,6.87762,5.61092, +6502,343121,Fast Drive Football,2021,86,8.58558,5.61090, +6503,134626,Golden Horn: Von Venedig nach Konstantinopel,2013,326,6.39540,5.61087, +6504,225316,Discovery: The Era of Voyage,2015,268,6.56511,5.61086,"225316, 300938" +6505,158971,Lighthouse Run,2018,277,6.53386,5.61084, +6506,287222,Juices,2019,307,6.44308,5.61077,"287222, 328365" +6507,77011,For Crown & Kingdom,2016,239,6.67942,5.61072, +6508,197707,Lost in R'lyeh,2016,567,6.06114,5.61071, +6509,155495,KUNE v LAKIA: A Chronicle Of A Royal Lapine Divorce Foretold,2015,297,6.47030,5.61068, +6510,41033,"Case Yellow, 1940: The German Blitzkrieg in the West",2011,175,7.06897,5.61063, +6511,174990,Builders of Blankenburg,2016,177,7.05247,5.61063, +6512,304821,Animal Upon Animal: Christmas Edition,2020,173,7.08572,5.61063, +6513,10679,A Fearful Slaughter: The Battle of Shiloh,2004,127,7.61969,5.61061, +6514,15827,"Blitzkrieg Commander: Fast-Play Tabletop Wargame Rules for Combined-Arms Operations, 1936-45",2004,130,7.57231,5.61056,"15827, 224832, 279418, 303507" +6515,204498,Match Madness,2016,422,6.21479,5.61054,"204498, 425230" +6516,229240,Ancestree,2017,440,6.18998,5.61053, +6517,129091,Trainmaker,2012,369,6.30145,5.61052, +6518,4207,"Kharkov: The Soviet Spring Offensive, 1942",1978,252,6.62183,5.61048, +6519,178839,Foodfighters,2015,305,6.44600,5.61047, +6520,260923,Titan,2022,189,6.95788,5.61040, +6521,351292,echoes: The Cursed Ring,2022,220,6.76795,5.61040, +6522,192508,The Goonies: Adventure Card Game,2016,346,6.34633,5.61039, +6523,330602,Inspektor Nase,2021,190,6.95026,5.61036, +6524,329669,Moving Pictures,2021,224,6.74688,5.61036,"329669, 352605, 406217" +6525,294113,Imperial Tide: The Great War 1914-1918,2022,108,7.96713,5.61034, +6526,473,Olé!,1996,264,6.57330,5.61022, +6527,5482,Devil's Den,1980,212,6.80943,5.61021, +6528,179661,KINMO,2015,156,7.23987,5.61021, +6529,751,Minos,1991,321,6.40218,5.61021, +6530,11886,Texas Glory,2008,196,6.90663,5.61016, +6531,32146,Trailer Park Wars,2007,580,6.04821,5.61014, +6532,240759,War of the Buttons,2018,290,6.48569,5.61008, +6533,1358,Field Command,1991,177,7.04333,5.60998, +6534,368340,Dark Tomb,2023,241,6.66238,5.60995,"368340, 400949" +6535,177541,Terrible Monster,2015,280,6.51579,5.60995,"177541, 420104" +6536,1278,Dutch InterCity,1999,185,6.98081,5.60994, +6537,147104,Wooolf!!,2013,256,6.60000,5.60988, +6538,76247,Eaten by Zombies!,2011,1187,5.82331,5.60984,"76247, 115976" +6539,364556,Precognition,2022,274,6.53429,5.60981, +6540,140638,The Walking Dead Board Game: The Best Defense,2013,623,6.01633,5.60979, +6541,207764,Time Bomb,2016,219,6.76584,5.60976, +6542,34829,Ilium,2008,406,6.23321,5.60973, +6543,309913,"Border Reivers: Anglo-Scottish Border Raids, 1513-1603",2023,149,7.30819,5.60971, +6544,148213,Primer: The Gamer's Source for Battles from the Age of Reason,2013,75,8.98221,5.60965, +6545,286925,Detective Stories: Case 3 – Still Lake,2019,133,7.50977,5.60956, +6546,11038,Fiasco,2003,191,6.93225,5.60952, +6547,29411,Castle Knights,2007,283,6.50152,5.60944, +6548,4201,GD '40,1993,169,7.10296,5.60942, +6549,380844,Altar: Realms of the Gods,2024,104,8.03558,5.60938, +6550,364042,Moesteiro,2022,198,6.88230,5.60927, +6551,286770,Rosetta: The Lost Language,2020,173,7.06601,5.60925, +6552,265569,What's Missing?,2020,233,6.69077,5.60924,"265569, 336345" +6553,76207,Blockade Runner,2010,246,6.63329,5.60921, +6554,186945,O.P. Arena,2019,163,7.15460,5.60920, +6555,55781,Warriors of Japan: A Country Aflame 1335-1339,2016,174,7.05672,5.60919,"16927, 55781, 241920, 373776" +6556,3712,Tac Air,1987,360,6.30875,5.60918,"3712, 8387" +6557,1881,Atmosfear: The Harbingers,1995,565,6.05469,5.60913,"1881, 143136" +6558,98975,Boudicca: The Warrior Queen,2012,195,6.89923,5.60906,"5038, 98975" +6559,256998,Robin Wood,2018,249,6.61936,5.60905, +6560,237551,The War of the Worlds: England,2018,173,7.06231,5.60899,"237551, 252320, 252321, 252322" +6561,228944,Hermetica,2018,136,7.45760,5.60899, +6562,310726,"Iron Curtain: Central Europe, 1945-1989",2020,128,7.57188,5.60892, +6563,661,Where's Bob's Hat?,1990,420,6.20708,5.60891, +6564,282297,Aqua Mirabilis,2019,154,7.24000,5.60889, +6565,365608,Roll for Great Old Ones: A Roll & Write Game,2023,157,7.20789,5.60883, +6566,159446,Panthalos,2014,213,6.78732,5.60882, +6567,197705,Defense Grid: The Board Game,2017,140,7.40121,5.60878, +6568,375459,Speakeasy,2025,98,8.16935,5.60878, +6569,142924,Mayday!Mayday!,2013,324,6.38275,5.60872, +6570,401885,Schätz it if you can,2023,148,7.30263,5.60868, +6571,337255,Bug Council of Backyardia,2022,169,7.09201,5.60867, +6572,335467,白と黒でトリテ (Trick-Taking in Black and White),2021,207,6.81932,5.60864,"335467, 424957, 435028" +6573,62226,Iron and Oak,2013,205,6.83088,5.60862, +6574,287693,Anubixx,2019,424,6.19933,5.60858, +6575,129492,Bee Alert,2012,251,6.60619,5.60855, +6576,313543,Something Wild!,2020,395,6.24236,5.60853,"313537, 313538, 313539, 313540, 313541, 313542, 313543, 340772, 345630, 345632, 345633, 345634, 345635, 358039, 358042, 382356, 382357, 385334, 394863, 394864, 407204" +6577,368109,Armadillo,2022,246,6.62624,5.60853, +6578,188465,Otrio,2015,524,6.08621,5.60851,"188465, 285304" +6579,36480,Crown of Roses,2012,281,6.49930,5.60851, +6580,127589,Slavika,2012,644,5.99714,5.60850,"127589, 165046, 252141" +6581,260465,"Across The Narva: The Soviet Assault on Estonia, February 1944",2018,123,7.64228,5.60845,"96238, 260465" +6582,251131,Point Blank: V is for Victory,2022,89,8.41899,5.60844, +6583,324894,Free Radicals,2022,170,7.07972,5.60843, +6584,26884,Escalation!,2007,1050,5.84663,5.60843,"26884, 63808, 309099" +6585,139897,Belle of the Ball,2014,648,5.99431,5.60840, +6586,94365,Sultans of Karaya,2011,356,6.30999,5.60829, +6587,22940,All is lost save Honour: Campaigns of the Italian Wars 1494-1530 – Vol.1,2006,112,7.83839,5.60828,"22940, 343667" +6588,302477,Kittin,2020,437,6.17984,5.60828,"302477, 422690" +6589,169544,Bright Future,2015,241,6.64440,5.60825, +6590,154526,Payoff Pitch Baseball,2013,92,8.32217,5.60824, +6591,158445,Caravelas II,2013,497,6.11024,5.60817,"72131, 158445" +6592,319529,Spukstaben,2020,196,6.88065,5.60812,"319529, 339388" +6593,9150,Dark December,1979,146,7.31644,5.60812,"9150, 11132, 30165, 345054" +6594,310757,1979: Revolution in Iran,2021,137,7.42784,5.60808, +6595,155636,Level 7 [Invasion],2014,231,6.68732,5.60807, +6596,5698,The Emperor Returns,1986,167,7.10090,5.60807, +6597,270443,Misty,2019,411,6.21460,5.60807, +6598,302755,Stop the Train!,2021,222,6.73018,5.60800, +6599,172358,Master Fox,2015,443,6.17034,5.60799, +6600,159160,Battlegroup: Rule Book,2013,103,8.02631,5.60798,"128154, 159160" +6601,318307,Holiday Hijinks #1: The Kringle Caper,2020,155,7.21459,5.60795, +6602,16035,Cranium Whoonu,2005,629,6.00386,5.60795, +6603,268665,Suzume-Jong,2018,214,6.77150,5.60794,"178878, 268665" +6604,342443,What Next?,2021,272,6.52336,5.60794, +6605,158793,Atlantic Wall: D-Day to Falaise,2014,95,8.22789,5.60790, +6606,3411,Drive on Paris,2000,182,6.97527,5.60788, +6607,306494,Rolling Village,2022,202,6.83985,5.60788, +6608,126313,Sovereign Chess,2018,82,8.64268,5.60788, +6609,304987,Sock Monsters,2020,194,6.89029,5.60785,"304987, 338098" +6610,232090,Doodle Rush,2017,288,6.47129,5.60781, +6611,1501,Masterpiece,1970,1868,5.74086,5.60777, +6612,289,Chariot Lords,1999,236,6.66114,5.60777, +6613,28037,Wool Rules,2007,637,5.99800,5.60776, +6614,3572,Invasion: America – Death Throes of the Superpower,1976,229,6.69279,5.60772, +6615,263,Manitou,1997,690,5.96783,5.60772,"263, 19591" +6616,19056,Square on Sale,2005,161,7.15031,5.60767, +6617,76883,Khan,2010,364,6.28995,5.60766, +6618,8939,Der wahre Walter,1989,168,7.08571,5.60765, +6619,181120,Pocket Invaders,2016,255,6.58054,5.60756, +6620,208804,The Captain Is Dead: Lockdown,2017,249,6.60398,5.60756, +6621,99078,Divided Republic,2012,233,6.67216,5.60753, +6622,602,Animal Poker,1988,299,6.43712,5.60753, +6623,18931,Emira,2006,812,5.91300,5.60753, +6624,39345,Karelia '44: The Last Campaign of the Continuation War,2011,156,7.19744,5.60752, +6625,246746,Samsara,2018,160,7.15769,5.60752, +6626,278229,Storm Over Jerusalem: The Roman Siege,2023,102,8.03775,5.60746, +6627,339349,Le Plateau,2021,129,7.52907,5.60746, +6628,348870,Heckmeck am Karteneck,2021,178,6.99978,5.60744, +6629,214125,Legendary Creatures,2018,203,6.82793,5.60741, +6630,173337,Drachenhort,2015,237,6.65241,5.60737,"173337, 347906, 427319" +6631,102835,Lost Temple,2011,997,5.85565,5.60733,"102835, 380132" +6632,1827,Chainsaw Warrior,1987,764,5.93134,5.60732, +6633,79068,Wrong Chemistry,2012,511,6.09149,5.60726, +6634,99808,Pizza Theory,2012,493,6.10905,5.60724, +6635,337784,Number Drop,2021,479,6.12352,5.60721, +6636,2339,HellRail: Third Perdition,2001,830,5.90497,5.60716,"197, 2339, 2698, 4997" +6637,245904,Arcane Bakery Clash,2018,300,6.43093,5.60714, +6638,142432,Continental Express,2014,633,5.99730,5.60708, +6639,1329,Hyle,1979,204,6.81691,5.60700, +6640,419074,Fairy Ring,2024,155,7.19874,5.60696, +6641,20761,Ausgerechnet Buxtehude,2005,332,6.35000,5.60694,"20761, 26932, 43080" +6642,326400,Umbra Via,2021,303,6.42104,5.60693, +6643,79282,Era of Inventions,2010,594,6.02203,5.60690, +6644,8711,Landships! Tactical Weapons Innovations 1914-1918,1992,213,6.76455,5.60689, +6645,75957,Slither,2010,107,7.91131,5.60689, +6646,211808,OrcQuest,2017,221,6.72205,5.60684, +6647,205249,One Card Wonder,2022,223,6.71201,5.60684, +6648,109285,Nations in Arms: Valmy to Waterloo,2012,152,7.22730,5.60678,"25841, 109285" +6649,211453,Ecogon,2015,125,7.57680,5.60675,"211453, 289306" +6650,1375,Guadalcanal,1992,276,6.49855,5.60671,"1373, 1375" +6651,175989,Pillars of Eternity: Lords of the Eastern Reach,2016,317,6.38312,5.60670, +6652,343386,Decktective: The Will without an Heir,2021,195,6.86846,5.60666, +6653,248072,Don't Let It Die,2020,196,6.86097,5.60658, +6654,292917,Mosquito Show,2020,205,6.80553,5.60655, +6655,197285,Merchants & Marauders: Broadsides,2016,315,6.38662,5.60652, +6656,226256,Password Express,2017,219,6.72814,5.60649, +6657,91739,Somme 1918: Bloody Spring,2012,103,7.99126,5.60648, +6658,239845,Stuffed,2018,212,6.76505,5.60648, +6659,5410,La Grande Guerre 14-18,1999,112,7.79935,5.60647, +6660,334216,Thunder Rolls,2022,141,7.34792,5.60645, +6661,37739,Sutter's Mill: California Gold Rush of 1849,2008,473,6.12545,5.60642, +6662,153113,Slaughterball,2016,121,7.63430,5.60637, +6663,285039,Aegean Sea,2023,295,6.43814,5.60637, +6664,38764,Shuuro,2008,129,7.50767,5.60633, +6665,131393,Blocks in the West,2013,99,8.08320,5.60630, +6666,220341,Secrets of the Lost Station,2019,143,7.32106,5.60630, +6667,6251,Arnhem: Defiant Stand,2003,119,7.66686,5.60630,"6251, 12054, 146215, 185753" +6668,240357,Flowar,2023,145,7.29720,5.60629, +6669,284082,Adventure Games: The Volcanic Island,2019,658,5.97889,5.60628, +6670,191285,Less: Like Chess but Less!,2015,213,6.75716,5.60627,"191285, 218609" +6671,233261,Tidal Blades 2: Rise of the Unfolders,2024,87,8.42356,5.60625, +6672,183447,Dice Drivin',2016,339,6.32900,5.60622, +6673,284261,Conquest: The Last Argument of Kings,2019,84,8.52143,5.60616,"284261, 369120, 380345, 386081" +6674,2444,Carrier Strike!,1977,551,6.05015,5.60607,"2444, 6980" +6675,1245,Isis & Osiris,2001,1071,5.83443,5.60604, +6676,24207,Burger Quiz,,293,6.44085,5.60604,"24207, 320283" +6677,220926,Rick and Morty: Anatomy Park – The Game,2017,579,6.02847,5.60603, +6678,338364,Pumafiosi,2022,327,6.35383,5.60601,"12289, 338364" +6679,199908,Spires,2017,199,6.83467,5.60599, +6680,321168,Warfare: Modern Tactical Combat,2023,91,8.29253,5.60598, +6681,218200,Constellations,2017,191,6.88534,5.60593, +6682,144150,Four Tribes,2013,169,7.05118,5.60589,"144150, 248425" +6683,302876,Sound Box,2022,201,6.82096,5.60588, +6684,96345,Black Stories: Funny Death Edition,2011,1135,5.82103,5.60587,"57052, 96345, 283118" +6685,314397,In the Palm of Your Hand,2020,204,6.80288,5.60586, +6686,405923,Moonrollers,2024,130,7.48423,5.60586, +6687,182635,Mr Lister's Quiz Shootout,2015,370,6.26568,5.60584, +6688,358987,Battles of Medieval Britain: A Solitaire Wargame,2022,109,7.84512,5.60581, +6689,246146,Most Wanted,2018,270,6.50936,5.60576, +6690,38364,Days of Steam,2009,727,5.94121,5.60573, +6691,867,Morisi,2000,306,6.40261,5.60571,"226, 867, 37379" +6692,269971,Ubongo: 3-D Family,2019,163,7.10117,5.60567, +6693,5965,"October War: Doctrine and Tactics in the Yom Kippur Conflict, 1973",1977,189,6.89503,5.60564, +6694,343745,Deckula!,2021,143,7.30979,5.60564, +6695,198671,The Lion Guard: Protect the Pride Lands,2016,184,6.92880,5.60555,"198671, 246094" +6696,17030,Anno Domini: Lifestyle,1998,223,6.69628,5.60545, +6697,3679,Ramparts,1993,353,6.29419,5.60540, +6698,284111,Drinks & Daggers,2019,83,8.53373,5.60536, +6699,300296,PARKS Memories: Mountaineer,2021,419,6.18542,5.60536,"300076, 300296, 300298, 356624" +6700,3385,Stratego: Star Wars,2002,499,6.09226,5.60533, +6701,381246,S.T.A.L.K.E.R. The Board Game,2024,100,8.03453,5.60531, +6702,339790,Cocktail,2021,94,8.18936,5.60530, +6703,372649,Defenders of the Wild,2024,139,7.35216,5.60526, +6704,140524,The Daedalus Sentence,2016,238,6.62542,5.60525, +6705,104575,Steam Torpedo: First Contact,2011,467,6.12515,5.60525, +6706,168232,Project Dreamscape,2015,268,6.51081,5.60521, +6707,245224,La Belle Époque,2021,100,8.03200,5.60520, +6708,322169,Picto Rush,2020,188,6.89574,5.60518,"235819, 322169" +6709,1919,D-Day (3rd edition),1977,664,5.97048,5.60516,"1919, 12168" +6710,157521,Victory in Europe,2015,179,6.95951,5.60510, +6711,12248,Alexander the Great: Birth of an Empire,2005,560,6.03776,5.60505, +6712,197408,Phalanxx,2016,204,6.79221,5.60499, +6713,27306,Venedig,2007,359,6.27953,5.60498, +6714,7382,Chickamauga: The Confederacy's Last Hope,1986,191,6.87277,5.60497,"6847, 7254, 7382, 14590" +6715,148443,Talo,2014,211,6.75166,5.60489, +6716,33172,Monastery,2008,366,6.26601,5.60489, +6717,24771,Null & Nichtig,2006,511,6.07832,5.60488, +6718,379699,Dungeons & Dragons: Bedlam in Neverwinter,2023,147,7.25061,5.60487, +6719,119464,Tier auf Tier: Jetzt geht's rund!,2012,265,6.51754,5.60485, +6720,105199,Space Mission,2011,685,5.95777,5.60481,"62809, 105199" +6721,3110,Dragon Rage,1982,187,6.89765,5.60480, +6722,8722,BAOR,1981,199,6.81935,5.60478,"8722, 294490" +6723,178450,Side Quest,2016,376,6.24713,5.60471, +6724,284118,Mechanical Beast,2022,270,6.49897,5.60467, +6725,156420,Geek Out! Pop Culture Party,2014,1200,5.80560,5.60458,"141430, 156420, 214176, 215287, 217035, 279415, 279417, 285028, 340127, 341556" +6726,294813,The Drifter,2019,114,7.71865,5.60448,"294813, 354724, 433225" +6727,254846,Peanut Club,2018,207,6.76870,5.60447, +6728,350469,Nine-minute Kingdom,2022,266,6.51038,5.60446,"350469, 368261, 376480" +6729,245824,Cat Rescue,2018,244,6.59204,5.60446, +6730,320255,Pericle: Gathering Darkness,2023,83,8.50602,5.60440, +6731,869,Bongo!,2000,542,6.04873,5.60440, +6732,254992,Battle of the Bards,2019,181,6.93412,5.60434, +6733,366067,Disc Cover,2022,255,6.54794,5.60431, +6734,203560,Fall of Magic,2015,91,8.24835,5.60430,"203560, 332560" +6735,223327,Someone Has Died,2016,174,6.98648,5.60426, +6736,43249,The BoardGameGeek Game,2009,615,5.99501,5.60419, +6737,909,Saturn,1997,211,6.74289,5.60416, +6738,16435,General Quarters,1975,127,7.49606,5.60416,"16435, 26305" +6739,59576,Weiß Schwarz,2007,161,7.09627,5.60414,"59576, 276803, 327309, 327370, 327373, 327399, 327401" +6740,226454,Miaui,2017,302,6.39953,5.60413, +6741,67436,Harry Potter Hogwarts,2010,615,5.99471,5.60413, +6742,26054,Black Stories 3,2006,561,6.03197,5.60407, +6743,11330,Jass,1796,171,7.00713,5.60401, +6744,247143,Senshi,2018,423,6.17083,5.60395, +6745,381827,Pick a Pen: Gardens,2023,193,6.84637,5.60395, +6746,256728,Raiatea,2018,305,6.39013,5.60395, +6747,212958,Space Freaks,2017,255,6.54416,5.60394, +6748,28289,First to Fight,1991,202,6.79035,5.60389,"7638, 28289" +6749,251660,Plunderbund,2019,202,6.79032,5.60389, +6750,373284,Crack List,2022,245,6.58187,5.60387, +6751,256538,Home Alone Game,2018,295,6.41605,5.60386, +6752,202737,Are You Dumber Than a Box of Rocks?,2016,498,6.08468,5.60381, +6753,349082,Kingscraft,2023,152,7.17928,5.60381, +6754,11202,The First World War,2004,481,6.10158,5.60380, +6755,28944,Harzbahn 1873,2011,159,7.10950,5.60378, +6756,402324,Eternitium,2024,204,6.77696,5.60375, +6757,200170,Myth: Dark Frontier,2017,144,7.26528,5.60372, +6758,170477,Dino Dude Ranch,2016,156,7.13718,5.60370, +6759,361084,Yoxii,2022,213,6.72657,5.60368, +6760,261683,Cloomba,2018,178,6.94719,5.60367, +6761,13520,La Bataille d'Albuera: Espagnol,1987,134,7.38769,5.60363, +6762,11967,The Seven Days of 1809: Napoleon and the Archduke Charles,2004,120,7.59542,5.60361, +6763,371973,Blind Business,2023,285,6.44222,5.60361, +6764,840,Corsairs,2000,532,6.05246,5.60353, +6765,4363,Seven Pines,1998,128,7.46836,5.60348,"4363, 4364, 14559" +6766,260170,Shake Up,2019,187,6.87995,5.60348, +6767,264278,Dice Upon a Time,2020,179,6.93695,5.60347, +6768,287411,The Shivers,2022,194,6.83344,5.60344,"287411, 314385" +6769,378565,Black Hole Buccaneers,2023,210,6.73948,5.60342, +6770,66665,Recicle: Tempos de Crise,2010,142,7.28345,5.60342,"54140, 66665" +6771,176633,İhtilâl,2015,116,7.65897,5.60337, +6772,285204,My Hero Academia Collectible Card Game,2021,277,6.46321,5.60326,"19552, 22476, 22594, 37882, 37883, 37884, 56275, 62234, 160403, 257151, 258301, 285204, 296453" +6773,288276,Tough Calls: Dystopia,2020,130,7.43423,5.60319, +6774,312463,Duck,2020,244,6.57860,5.60318, +6775,3053,Bonaparte in Italy,1979,137,7.34015,5.60316,"3053, 262730" +6776,301480,Binho Classic,2019,96,8.08177,5.60315, +6777,390606,Printing Press,2023,162,7.07171,5.60313, +6778,183150,Morocco,2016,306,6.38053,5.60312, +6779,2132,Guardians,1995,293,6.41485,5.60310, +6780,2607,Totopoly,1938,498,6.08069,5.60310, +6781,8003,Warhammer Ancient Battles,1998,220,6.68409,5.60310, +6782,421203,Cosmic Conquest,2024,68,9.10000,5.60308, +6783,284832,Skytopia: In the Circle of Time,2019,299,6.39810,5.60305, +6784,7451,Jarnac,1977,214,6.71370,5.60304, +6785,331685,Hit the Silk!,2021,195,6.82154,5.60301, +6786,8812,No Better Place to Die: The Battle of Murfreesboro,1994,147,7.21871,5.60296, +6787,1997,Zargo's Lords: Magic Duels for World Power,1979,213,6.71784,5.60295, +6788,234373,Kingdom Run,2018,213,6.71765,5.60293, +6789,10682,Atlas & Zeus,2004,327,6.32890,5.60291, +6790,176589,Cat Box,2015,468,6.11008,5.60290, +6791,245085,Troll & Dragon,2018,308,6.37350,5.60289, +6792,270972,Ringmaster: Welcome to the Big Top,2019,370,6.24411,5.60285, +6793,326112,Das perfekte Wort,2021,148,7.20541,5.60282, +6794,144632,City Council,2013,516,6.06228,5.60278,"144632, 183049" +6795,1508,Broadside,1962,428,6.15674,5.60278, +6796,167650,"Last Battle: Ie Shima, 1945",2015,138,7.32029,5.60275, +6797,21704,Fiji,2006,943,5.85385,5.60268, +6798,65814,Dweebies,2010,783,5.90505,5.60265, +6799,793,Yahtzee Deluxe Poker,1994,567,6.02022,5.60264, +6800,31542,Field of Glory: Ancient and Medieval Wargaming Rules,2008,212,6.71934,5.60263, +6801,332170,Donut Shop,2024,158,7.10070,5.60261, +6802,42131,War of the Ring,2009,133,7.38188,5.60259, +6803,15410,Walk the Dogs,2004,441,6.13899,5.60255, +6804,323206,Uk'otoa,2021,320,6.34161,5.60253, +6805,357298,Guns or Treasure,2023,145,7.23303,5.60249,"357298, 369813" +6806,204055,Warehouse 13: The Board Game,2019,163,7.05276,5.60248, +6807,287258,Secret Night at Davis Manor,2019,132,7.39321,5.60247, +6808,402207,YRO,2024,135,7.35331,5.60246,"339599, 402207" +6809,11093,Zorndorf,1996,120,7.57192,5.60245, +6810,342071,Key to the Kingdom,2022,1608,5.74943,5.60245,"1933, 342071" +6811,119899,Gunrunners,2013,281,6.44329,5.60243,"119899, 326609, 340685" +6812,170472,Prelude to Rebellion: Mobilization & Unrest in Lower Canada 1834-1837,2018,101,7.94178,5.60243, +6813,256526,Zaar,2018,104,7.87404,5.60241, +6814,18824,WWE Raw Deal,2000,193,6.82577,5.60236, +6815,72050,Freebooter's Fate,2010,90,8.22556,5.60235,"72050, 416771" +6816,325191,18Mag: Hungarian Railway History,2021,186,6.87070,5.60228, +6817,1489,Deadwood Studios USA,1999,867,5.87438,5.60227, +6818,205766,Gnomes at Night,2016,264,6.49587,5.60227, +6819,219766,Chariots of Rome,2017,146,7.21801,5.60226, +6820,141419,Koi Pond: A Coy Card Game,2013,210,6.72548,5.60225, +6821,36339,"Sharp Practice: Wargame Rules for Large Skirmishes in the Era of Black Powder, 1700 to 1865",2008,95,8.08421,5.60222, +6822,359011,Mint Knight,2022,119,7.58319,5.60219, +6823,360058,Charcuterie: The Board Game,2024,180,6.91145,5.60216, +6824,302965,Akros,2020,140,7.28471,5.60212, +6825,383551,Tequila,2023,124,7.50137,5.60209, +6826,4292,The Sword and the Flame,1979,125,7.48600,5.60209,"4292, 35823, 298127" +6827,298459,Stwory z Obory,2020,164,7.03768,5.60206, +6828,10164,Fliegen klatschen,2004,612,5.98662,5.60203, +6829,306202,Philosophia: Floating World,2021,166,7.01958,5.60201, +6830,3694,Great Medieval Battles: Four Battles from the Middle Ages,1979,188,6.85266,5.60193,"3694, 5484, 11510, 11855, 17452, 42275" +6831,309000,Blue Skies,2020,402,6.18683,5.60193, +6832,346296,Tic Tac K.O.: Dragons vs Unicorns,2021,280,6.44143,5.60190,"346296, 379186" +6833,340789,Nobel Run,2022,235,6.60206,5.60189, +6834,348872,The Bad Karmas and The Curse of the Zodiac,2023,103,7.88350,5.60188,"348872, 429797" +6835,33911,Bacchus' Banquet,2008,669,5.95309,5.60186, +6836,9092,Avalam,1996,273,6.46239,5.60184, +6837,2608,King Oil,1974,508,6.06420,5.60183, +6838,1806,The Piggyback Brigade,2001,441,6.13433,5.60181, +6839,134637,Channel A,2012,227,6.63626,5.60180, +6840,371133,Wild Gardens,2024,109,7.75596,5.60179, +6841,147030,World of Tanks: Rush,2013,952,5.84824,5.60173,"147030, 197996" +6842,363538,Heading Forward,2022,107,7.79486,5.60173, +6843,128137,Damage Report,2014,298,6.38916,5.60172, +6844,16362,Hula Hippos,2005,478,6.09236,5.60168, +6845,342135,É Top!?: Variedades,2021,130,7.40586,5.60168,"342135, 363208, 363209, 408538, 408540, 431548, 431549, 431551" +6846,234673,1918: Brother Against Brother,2018,127,7.44803,5.60165, +6847,274300,Dragon Market,2019,281,6.43564,5.60160, +6848,341574,Adventure Games: Im Nebelreich,2021,162,7.04753,5.60155, +6849,299105,Black Swan,2020,99,7.96737,5.60153,"299105, 334141" +6850,11438,La Bataille de Corunna-Espagnol,1995,127,7.44567,5.60153, +6851,270270,Impression,2022,134,7.34901,5.60151,"270270, 418471" +6852,234167,Masters of Mutanite,2022,106,7.80991,5.60148, +6853,384175,Indiana Jones: Sands of Adventure,2023,182,6.88758,5.60147, +6854,271,It's Mine!,1998,677,5.94710,5.60144,"271, 29018, 64583" +6855,303830,Mass Transit,2021,274,6.45541,5.60143, +6856,336946,Nut Hunt,2023,127,7.44373,5.60143, +6857,440,Zoff in Buffalo,1998,307,6.36345,5.60142, +6858,37257,The Uncharted Seas: Rules for Fantasy Naval Combat,2008,164,7.02695,5.60135, +6859,254132,Pitchstorm,2018,171,6.96811,5.60132, +6860,286062,Haiclue,2019,454,6.11608,5.60131, +6861,2938,Zatre,1990,361,6.24867,5.60131,"2938, 24826, 138240" +6862,2135,On the Edge,1994,350,6.26874,5.60127, +6863,198611,Mondrian: The Dice Game,2016,327,6.31510,5.60120, +6864,22392,T.E.G.: Plan Táctico y Estratégico de la Guerra,1978,374,6.22535,5.60119,"22061, 22392, 41009, 75877, 140153, 198823, 352995" +6865,280131,Moon Base,2019,189,6.83624,5.60119, +6866,387776,Home Staging,2023,141,7.25592,5.60115, +6867,290367,Caretos,2020,162,7.04136,5.60114, +6868,128938,Pack of Heroes,2014,358,6.25256,5.60110, +6869,386018,Beaver Creek,2023,139,7.27784,5.60104, +6870,299544,Exhibition: 20th Century,2021,171,6.96345,5.60100,"299544, 403215" +6871,371636,Wildtails: A Pirate Legacy,2022,244,6.55566,5.60098, +6872,161620,"Omertà, el poder de la mafia",2015,142,7.23950,5.60087,"120674, 161620" +6873,112381,Abaddon,2012,287,6.41115,5.60082, +6874,206091,The Football Game,2017,177,6.91390,5.60076, +6875,201345,Kerosene,2016,81,8.46914,5.60072, +6876,357956,The Wizard of Oz Adventure Book Game,2022,195,6.79205,5.60071, +6877,24270,Hoyuk,2006,422,6.15113,5.60070, +6878,24082,Voltage,2006,488,6.07665,5.60069, +6879,269766,Soulaween,2019,274,6.44825,5.60067, +6880,129380,Mercurius,2012,354,6.25650,5.60065, +6881,137744,Tessen,2013,252,6.52108,5.60056, +6882,282255,Inflation!,2019,165,7.00545,5.60049, +6883,229319,Human Interface: Be a Better Human,2018,239,6.57017,5.60047,"176850, 229319" +6884,401543,Newsboys,2023,188,6.83296,5.60045, +6885,173452,Art of War: The Card Game,2015,212,6.69340,5.60045,"173452, 264633, 266080, 295406, 295407, 333130, 333132" +6886,156976,Planes,2014,770,5.90129,5.60043, +6887,161138,Dragon Run,2014,452,6.11281,5.60040, +6888,284054,Smoothies,2019,291,6.39621,5.60039, +6889,86458,Nations at War: Desert Heat,2013,118,7.56102,5.60030,"86458, 134804" +6890,152851,Tales & Games: The Grasshopper & the Ant,2015,400,6.17834,5.60024, +6891,340455,King of the Valley,2021,227,6.61841,5.60020, +6892,5351,"Lost Victory: Manstein At Kharkov, Winter 1943",1994,160,7.04469,5.60019, +6893,329084,Space Dragons,2021,231,6.60052,5.60017, +6894,359455,Norman Conquests: Men of Iron Volume V,2023,98,7.95771,5.60016, +6895,312722,Hercules,2022,133,7.33637,5.60011, +6896,329812,Genius Star,2020,131,7.36183,5.60005, +6897,22604,The Halls of Montezuma,2009,249,6.52663,5.60002, +6898,212382,Yangtze,2016,253,6.51193,5.60002, +6899,319402,Silencio,2020,291,6.39282,5.60001,"232446, 288083, 319402, 345946" +6900,87120,Vintage,2011,254,6.50830,5.60001, +6901,371340,Karakum,2023,159,7.05063,5.59999, +6902,108430,Fuentes de Onoro 1811,2011,92,8.10543,5.59993, +6903,134,Cape Horn,1999,574,6.00148,5.59992, +6904,244267,BarBEARian Battlegrounds,2018,312,6.33853,5.59990,"244267, 310479" +6905,176564,Scoundrel Society,2015,256,6.50004,5.59990, +6906,344508,Insecta: The Ladies of Entomology,2022,169,6.96331,5.59989, +6907,231666,Fast Forward: FLEE,2017,1280,5.77984,5.59987, +6908,4287,Onslaught,1987,237,6.57152,5.59983, +6909,238957,18DO: Dortmund,2020,128,7.39883,5.59982, +6910,163354,Cypher,2014,687,5.93475,5.59976, +6911,309058,Dog Tag Trick,2020,158,7.05538,5.59970, +6912,294788,Conqueror: Final Conquest,2020,83,8.36867,5.59963, +6913,298309,Winter Queen,2021,232,6.59025,5.59963, +6914,188825,Airfix Battles: The Introductory Wargame,2016,173,6.92688,5.59954,"188825, 370077" +6915,608,Siesta,1999,325,6.30609,5.59954, +6916,10683,SEEKRIEG 5,2004,100,7.89500,5.59951,"6338, 10683" +6917,394735,Exit: The Game – Advent Calendar: The Missing Hollywood Star,2023,108,7.72441,5.59949, +6918,195353,"Pacific Fury: Guadalcanal, 1942",2015,138,7.26232,5.59948,"16195, 195353" +6919,202582,Trellis,2018,691,5.93147,5.59946, +6920,246316,Forbidden City,2018,326,6.30317,5.59945,"214486, 246316" +6921,21503,S.P.Q.RisiKo!,2005,262,6.47500,5.59944, +6922,289397,Crazy Taco,2021,208,6.70228,5.59944, +6923,137480,Gold am Orinoko,2013,254,6.50247,5.59943, +6924,156843,Balance of Powers,2015,107,7.74299,5.59943, +6925,37885,Last Stand: The Battle for Moscow 1941-42,2008,101,7.87030,5.59943, +6926,169062,Monsters vs. Heroes: Victorian Nightmares,2015,486,6.07052,5.59928,"169062, 207347" +6927,140997,Romans Go Home!,2013,659,5.94671,5.59926, +6928,339598,Divinus,2024,167,6.96960,5.59921,"339598, 416035" +6929,170951,The Foreign King,2015,261,6.47605,5.59921,"70875, 170951" +6930,281982,Karekare,2019,220,6.63850,5.59913, +6931,75782,The Phantom League,2010,295,6.37424,5.59912,"75782, 180617" +6932,673,Star Traders,1987,255,6.49392,5.59893,"673, 193577" +6933,19665,Tara: Ireland's Royal Board Game,2004,364,6.22544,5.59887,"2415, 19665" +6934,8250,Patton's 3rd Army: The Lorraine Campaign,1980,233,6.57747,5.59885, +6935,66080,"The Lost Cause: The American Civil War, 1861-1865",2010,134,7.30037,5.59884, +6936,327392,Gnoming A Round,2020,295,6.37146,5.59881,"121195, 327392" +6937,17395,"Prussia's Glory II: Four Battles of the Seven Years War, 1757-1759",2005,158,7.04120,5.59880, +6938,195533,Haze Islands,2016,160,7.02285,5.59877, +6939,392473,Islet,2023,167,6.96287,5.59876, +6940,191038,West of Africa,2016,338,6.27263,5.59874, +6941,313467,Unsolved Case Files: Harmony Ashcroft,2020,195,6.76667,5.59873, +6942,15235,Legends of the Old West,2004,140,7.22464,5.59868, +6943,99479,Mare Balticum,2011,309,6.33519,5.59866, +6944,131121,Equinox,2012,256,6.48764,5.59866, +6945,205078,Barcelona: The Rose of Fire,2016,306,6.34232,5.59865, +6946,66986,MERCS,2010,119,7.51092,5.59865,"66986, 204597" +6947,5559,Sky Galleons of Mars,1988,189,6.80212,5.59861, +6948,4485,Hotel Life,1989,139,7.23489,5.59860, +6949,122691,Magnum Opus,2014,173,6.91301,5.59858, +6950,288533,Fish 'n' Flip,2019,161,7.01093,5.59857, +6951,282237,"Heist: One Team, One Mission",2019,265,6.45660,5.59857, +6952,379633,Humanity,2023,239,6.54983,5.59856, +6953,354258,Aetherya,2022,180,6.86159,5.59856, +6954,265681,Montmartre,2019,248,6.51510,5.59854, +6955,398947,Battle Card: Series 1,2023,217,6.64530,5.59847,"377068, 398947" +6956,140172,Pelican Bay,2013,349,6.24934,5.59847, +6957,108157,Kalimambo,2011,429,6.12786,5.59845, +6958,35801,Lungarno,2008,426,6.13089,5.59835, +6959,280201,Troia,2019,179,6.86514,5.59830, +6960,10445,Duel Masters Trading Card Game,2004,358,6.23093,5.59820,"10445, 129322" +6961,279014,Teenage Mutant Ninja Turtles: Turtle Power Card Game,2019,330,6.28445,5.59818, +6962,171721,Micro Rome,2023,150,7.10778,5.59816, +6963,148264,"Operation Battleaxe: Wavell vs. Rommel, 1941",2013,138,7.23768,5.59809, +6964,249868,What A Tanker!,2018,102,7.81634,5.59809,"249868, 318368" +6965,414107,Ratjack,2024,199,6.73467,5.59805, +6966,5171,War Without Mercy,1998,163,6.98528,5.59802, +6967,127324,Storm Hollow: A Storyboard Game,2017,87,8.19655,5.59800, +6968,379706,Quartermaster General: East Front,2023,111,7.63468,5.59800,"379706, 426868" +6969,368103,Pick-a-Pepper,2022,231,6.57667,5.59800, +6970,6554,Lawless,2003,507,6.04375,5.59797,"6554, 18588" +6971,172542,Push a Monster,2015,454,6.09535,5.59790, +6972,366470,Space Craft,2022,114,7.57895,5.59790, +6973,38904,Wind River,2008,249,6.50462,5.59788, +6974,12875,Cranium Turbo Edition,2004,473,6.07505,5.59785, +6975,280655,Zoom in Barcelona,2019,165,6.96513,5.59780,"280655, 333441" +6976,402677,Daitoshi,2024,117,7.52561,5.59778, +6977,381591,Pax Penning,2024,107,7.70514,5.59775, +6978,37441,Pala,2012,211,6.66611,5.59772, +6979,33030,The Drive on Metz (Second Edition),2008,297,6.35589,5.59763,"10543, 18472, 33030" +6980,383529,Mori,2023,214,6.64938,5.59758, +6981,225603,Assault Red Horizon 41,2021,74,8.63851,5.59755,"225603, 376753" +6982,118215,Sausage Sizzle!,2012,279,6.40405,5.59755, +6983,32288,Dou Dizhu,,169,6.92899,5.59754, +6984,255392,The Acts,2018,118,7.50435,5.59754, +6985,256701,Fluff,2018,221,6.61551,5.59753, +6986,347517,Die Schlacht um Thors Kliff,2022,78,8.48077,5.59749, +6987,20590,Second World War at Sea: Bismarck,2005,134,7.27425,5.59741, +6988,310371,Kleos,2021,108,7.67778,5.59740,"310371, 421141" +6989,306169,MATCH 5,2021,338,6.26188,5.59737, +6990,324104,Von Manstein's Triumph,2022,82,8.33537,5.59733, +6991,267010,Pátzcuaro,2022,122,7.43719,5.59731, +6992,67361,Rails of New England,2011,265,6.44434,5.59731, +6993,299453,Nakum,2020,100,7.84090,5.59726, +6994,319829,Galenus,2022,158,7.01726,5.59726, +6995,300148,Spy Connection,2021,245,6.51282,5.59724, +6996,379363,Castellans,2024,95,7.95746,5.59720, +6997,379110,SETUP,2023,416,6.13610,5.59719, +6998,417505,Dabba Walla,2024,151,7.08153,5.59717, +6999,272260,Welkin,2019,269,6.43011,5.59713, +7000,245532,18GB: The Railways of Great Britain,2018,112,7.59702,5.59710, +7001,189506,Fallen Angel,2017,149,7.09933,5.59704, +7002,319736,La Familia Hort,2020,142,7.17338,5.59704, +7003,386436,House of Cats,2023,169,6.92130,5.59702, +7004,12622,Hour of Glory: Stronghold Kit,2004,170,6.91276,5.59697,"12622, 138682" +7005,310774,Burn the Witch,2025,86,8.19767,5.59696, +7006,114562,Hokito,2020,204,6.69324,5.59695, +7007,203584,Los Tesoros del Rey Pirata,2017,122,7.42992,5.59694, +7008,9556,Snatch,2001,311,6.31595,5.59694,"9556, 115829" +7009,366484,Birdscaping,2022,115,7.54130,5.59693, +7010,264295,Fabulantica,2018,159,7.00296,5.59691, +7011,4113,Tigers in the Mist: Ardennes Offensive,1999,177,6.85960,5.59689, +7012,3966,The Succession Wars,1987,271,6.42159,5.59689,"3966, 379913" +7013,373701,Pax Hispanica,2024,131,7.30260,5.59687,"25618, 373701" +7014,42713,Arcane Legions,2009,299,6.34398,5.59684, +7015,87200,Dragon Valley,2012,227,6.58084,5.59683, +7016,166109,Meteor,2014,498,6.04536,5.59683, +7017,424975,Wilmot’s Warehouse,2024,110,7.62727,5.59682, +7018,14940,Figure It,1975,234,6.55128,5.59682, +7019,127432,Columba,2012,169,6.91793,5.59679, +7020,297673,Pocket Paragons,2020,144,7.14655,5.59675,"297673, 321240, 321241, 321242, 321244, 375002, 375003, 396706" +7021,346702,The Vandermist Dossier,2022,75,8.57220,5.59674,"284643, 346702, 387596" +7022,1257,Starbase Jeff,1998,400,6.15460,5.59673, +7023,252579,Gorbachev: The Fall of Communism,2018,111,7.60703,5.59673,"252579, 276782" +7024,172158,Oath of the Brotherhood,2015,296,6.35037,5.59671,"166435, 172158" +7025,251037,1347: De Nigrae Pestis Ludo,2018,250,6.48900,5.59670, +7026,233354,Chocolatiers,2019,247,6.49959,5.59668, +7027,158812,Shadow Throne,2014,251,6.48498,5.59666, +7028,369483,Clue: Treachery at Tudor Mansion,2022,277,6.40159,5.59666, +7029,136890,Hold the Line: Frederick's War,2013,108,7.66019,5.59661, +7030,207442,Turbo Drift,2017,241,6.52133,5.59661,"207442, 309952" +7031,406498,Café Baras,2024,122,7.42295,5.59659, +7032,303734,Golems,2020,333,6.26565,5.59658,"277034, 303734" +7033,422374,Lone Wolves,2024,108,7.65787,5.59651,"391560, 422374" +7034,2794,Spinball,2001,167,6.92948,5.59650, +7035,182178,Jester,2015,106,7.69651,5.59650, +7036,144228,FUBA,2013,125,7.37720,5.59649, +7037,3851,Dune CCG,1997,267,6.42959,5.59643, +7038,207202,Castle Dukes,2017,135,7.24402,5.59642, +7039,12188,Garden Competition,2004,190,6.76705,5.59642, +7040,37738,Master Builder,2008,467,6.07258,5.59640, +7041,374134,Chandigarh,2024,131,7.29382,5.59640, +7042,68250,"Objective: Kiev (The Advance of Army Group South: June-August, 1941)",2010,191,6.76034,5.59637, +7043,199646,Mobster Metropolis,2019,107,7.67402,5.59637, +7044,232345,Cahoots,2018,284,6.37912,5.59637, +7045,3567,Roller Coaster Tycoon,2002,495,6.04545,5.59637, +7046,22203,Face to the Mat,2000,86,8.18047,5.59634, +7047,5332,Split (Revised Edition),2001,465,6.07412,5.59632,"186, 5332" +7048,17534,Just4Fun,2005,816,5.86857,5.59631,"17534, 66590, 152796" +7049,67693,Offerings,2010,279,6.39233,5.59628, +7050,250355,All Manor of Evil,2019,230,6.56191,5.59628, +7051,191991,Martial Art,2016,134,7.25299,5.59624, +7052,172206,Bomarzo,2015,241,6.51724,5.59622, +7053,8070,The Great War in the East: Four World War 1 Battles,1978,135,7.23975,5.59619,"8070, 12379, 30025, 30026, 30027, 30028" +7054,13995,La Bataille d'Espagnol-Talavera,1979,140,7.18000,5.59613, +7055,291183,"The StoryMaster's Tales ""Weirding Woods"" Hybrid RPG",2019,107,7.66838,5.59612, +7056,347218,Dickory,2021,122,7.41352,5.59612, +7057,129010,Jungle Ascent,2013,276,6.39940,5.59611, +7058,320030,Gempire: Zarmund's Demands,2024,71,8.71831,5.59610, +7059,5541,Barbarossa: The Russo-German War 1941-45,1969,192,6.75052,5.59609,"5541, 36911, 213422" +7060,151251,Castle Crush!,2013,227,6.57251,5.59609,"151251, 237586" +7061,380677,Biohack,2024,109,7.62936,5.59608,"380677, 414907" +7062,66088,Q•bitz,2009,415,6.13005,5.59607,"66088, 139026, 169056, 217184" +7063,415036,Medical Mysteries: NYC Emergency Room,2024,91,8.03115,5.59606,"415036, 419293, 422883" +7064,497,Vampire,2000,641,5.94131,5.59596,"497, 113503" +7065,136416,Mountain 53,2013,334,6.25868,5.59596, +7066,260694,Catacombs Cubes,2020,207,6.66515,5.59595, +7067,244082,Outback,2018,322,6.28325,5.59594, +7068,91817,City Square Off,2011,233,6.54528,5.59589, +7069,19903,The Battle of Monmouth,2008,99,7.82929,5.59585, +7070,218957,Café Fatal,2017,267,6.42378,5.59583, +7071,1253,Limits,2001,600,5.96408,5.59579, +7072,128475,Murder of Crows,2012,538,6.00643,5.59578, +7073,148471,Vietnam Solitaire: Special Edition,2013,147,7.09830,5.59575,"26306, 148471" +7074,4916,"Great War at Sea: 1904-1905, The Russo-Japanese War",1999,182,6.80934,5.59575,"4916, 141452" +7075,345894,Thrones of Valeria,2022,148,7.08797,5.59574, +7076,236250,Testament,2017,140,7.17324,5.59574, +7077,418581,Bus & Stop,2024,158,6.99253,5.59568, +7078,256568,Adventure Island,2018,575,5.97943,5.59566, +7079,387538,Side Quest: Nemesis,2023,174,6.86379,5.59566, +7080,2211,Proteus,2001,216,6.61698,5.59564, +7081,302933,Kodama Forest,2020,206,6.66655,5.59563, +7082,58782,Bluffer,1993,145,7.11593,5.59557, +7083,799,The Hills Rise Wild!,2000,274,6.40000,5.59555, +7084,3057,Warp 6,2002,194,6.73144,5.59553,"3057, 3078, 338556" +7085,3887,Stock Market Game,1963,351,6.22325,5.59552, +7086,3316,Prussia's Glory: The Battles of Frederick the Great,2002,192,6.74167,5.59541, +7087,357872,Island Alone,2022,153,7.03359,5.59539, +7088,26468,Klaverjassen,1890,157,6.99656,5.59537, +7089,46614,Nonaga,2017,183,6.79721,5.59535, +7090,22377,Spartacus: Crisis in the Roman Republic 80-71 B.C.,2008,189,6.75899,5.59534, +7091,294623,Knight Tales,2022,118,7.45907,5.59534, +7092,4270,The Far Seas,1987,143,7.13322,5.59533, +7093,195232,Red Poppies Campaigns: The Battles for Ypres,2016,100,7.79334,5.59529, +7094,239465,Ski Tour: Biathlon,2020,160,6.96906,5.59529, +7095,300099,Animix,2020,278,6.38558,5.59525, +7096,5157,King's Court,1986,220,6.59391,5.59524, +7097,281676,Galactic Era,2021,120,7.42542,5.59521, +7098,8954,The Battles of Waterloo,1994,223,6.58004,5.59521, +7099,21854,Los Mampfos,2006,402,6.14098,5.59513, +7100,2091,Legions of Steel,1992,147,7.08748,5.59510,"2091, 322408, 421950" +7101,258135,Wild Assent,2021,161,6.95745,5.59509, +7102,220224,Maniacal,2019,119,7.43791,5.59507, +7103,348425,The Book of Rituals,2021,141,7.15035,5.59507, +7104,342508,Snapshot: Wildlife Photographer,2021,126,7.33492,5.59503, +7105,198971,Underlings of Underwing,2017,170,6.88414,5.59500, +7106,746,"The Game of France, 1940: German Blitzkrieg in the West",1971,571,5.97865,5.59497, +7107,257349,Bugs on Rugs,2019,227,6.55947,5.59492, +7108,7831,Risorgimento 1859: the Second Italian War of Independence,2000,153,7.02582,5.59491, +7109,198791,Temp Worker Assassins,2016,187,6.76549,5.59489, +7110,147505,Lords & Ladies,2014,253,6.46008,5.59489, +7111,282527,Dawn of Madness,2024,76,8.47368,5.59485, +7112,37794,Magnifico,2008,300,6.32409,5.59484, +7113,242312,Montélimar: Anvil of Fate,2018,83,8.22892,5.59478, +7114,191057,Halt mal kurz: Das Känguru-Spiel,2016,1124,5.78926,5.59477, +7115,23827,Millionen von Schwalben,2006,135,7.21407,5.59477, +7116,258131,1759 Siege of Quebec,2018,191,6.73911,5.59475,"258131, 337416" +7117,348973,Hidden Games Tatort: Winterkrimi – Eiskaltes Verbrechen,2021,100,7.77980,5.59472, +7118,215213,Cutthroat Kingdoms,2017,225,6.56583,5.59472, +7119,260156,Ocean Crisis,2019,161,6.95161,5.59470,"260156, 286216" +7120,70916,Rockband Manager,2010,567,5.97984,5.59467, +7121,9202,Saga,2004,1290,5.76395,5.59467, +7122,2742,Wings: World War One Plane to Plane Combat 1916-1918,1981,140,7.15429,5.59465, +7123,2543,Pompeji,2001,339,6.23861,5.59464, +7124,359234,Air Mail,2022,168,6.89409,5.59464, +7125,20228,Big Kini,2005,308,6.30329,5.59462, +7126,331699,Zoo King,2022,118,7.44288,5.59455, +7127,82424,Bangkok Klongs,2010,348,6.22112,5.59453, +7128,55131,Murus Gallicus,2009,162,6.94049,5.59452, +7129,10523,Victory & Honor,2004,275,6.38739,5.59452, +7130,13512,Imagem & Ação 2,2002,204,6.66329,5.59452,"13512, 140097" +7131,156853,Pirate Den,2015,274,6.39016,5.59451, +7132,146963,Let Them Eat Shrimp!,2014,228,6.55061,5.59450,"146963, 253666" +7133,282544,Video Vortex,2020,147,7.07553,5.59439, +7134,189056,Tales & Games: The Pied Piper,2016,339,6.23665,5.59439, +7135,192274,Bethel Woods,2016,200,6.68260,5.59435, +7136,261246,Tiny Ninjas: Heroes,2021,154,7.00714,5.59432, +7137,3766,Second Front,1994,124,7.34839,5.59429, +7138,313090,Luzon Rails,2021,150,7.04400,5.59427, +7139,358216,Thorgal: The Board Game,2024,107,7.62617,5.59425,"358216, 386300" +7140,2157,Riddle of the Ring,1982,169,6.87994,5.59420, +7141,156737,The X-Files,2015,332,6.24864,5.59419, +7142,212376,Stroop,2017,316,6.28174,5.59419, +7143,360259,Savage: A Game of Survival,2022,77,8.41486,5.59415, +7144,4009,Breitenfeld,1976,230,6.53826,5.59413, +7145,128537,Gentlemen Thieves,2012,382,6.16236,5.59410, +7146,189427,Iron Bottom Sound III,2015,100,7.76350,5.59405,"8538, 32949, 189427, 343010" +7147,191351,Absolute Victory: World Conflict 1939-1945,2017,106,7.63962,5.59400, +7148,5827,A Winter War,1992,128,7.28750,5.59397, +7149,1901,Star Fleet Battle Force,2001,238,6.50472,5.59397, +7150,331267,Die Firmenfeier: Das letzte Fest des Oliver Borgmann,2021,82,8.23650,5.59394, +7151,179251,Urban Operations,2017,130,7.26077,5.59394, +7152,220452,Fabled: The Spirit Lands,2023,140,7.14166,5.59393, +7153,32907,Eylau 1807,2007,94,7.89894,5.59393,"26372, 27944, 32907, 33541, 422314" +7154,362700,Biomos,2023,366,6.18579,5.59391, +7155,338521,"Um, Actually…",2022,181,6.79006,5.59386, +7156,241760,El Mortal,2018,304,6.30593,5.59384, +7157,400266,Boreal,2024,256,6.43934,5.59383, +7158,257667,Tag City,2018,196,6.69817,5.59383,"228460, 257667" +7159,303003,The Imposter Kings Card Game,2021,88,8.05341,5.59383, +7160,174556,Blücher,2015,82,8.23305,5.59382, +7161,281385,Code 3,2020,102,7.71539,5.59381, +7162,376,DruidenWalzer,1999,793,5.86662,5.59379, +7163,164205,King's Pouch,2014,204,6.65412,5.59377,"155584, 164205" +7164,244817,Farmini,2018,242,6.48749,5.59376, +7165,284294,RatVille,2019,148,7.05507,5.59376, +7166,159375,Prime Climb,2014,334,6.24121,5.59375, +7167,175541,Cuisine a la Card,2015,168,6.88077,5.59373, +7168,385770,Knee Deep in Hexes,2024,75,8.47667,5.59373, +7169,262135,Anomaly,2019,155,6.98855,5.59372, +7170,369,5ive Straight,1958,320,6.26906,5.59369, +7171,46362,High Noon Saloon,2011,358,6.19715,5.59366, +7172,153870,Green Deal,2014,163,6.91891,5.59364, +7173,1709,Trireme: Tactical Game of Ancient Naval Warfare 494 BC-370 AD,1971,250,6.45760,5.59363, +7174,330401,Dokojong,2021,269,6.39646,5.59362, +7175,249768,My First Adventure: Finding the Dragon,2018,102,7.71078,5.59362, +7176,6646,Excalibur,1989,337,6.23430,5.59360, +7177,59008,Canadian Crucible: Brigade Fortress at Norrey,2013,97,7.81907,5.59358, +7178,403258,Pikit,2024,199,6.67739,5.59350, +7179,334278,Black Hole: Kyrum,2021,83,8.19036,5.59344, +7180,251228,Radetzky's March: The Hundred Hours Campaign,2018,91,7.96044,5.59338,"251228, 271638, 400494" +7181,485,Galloping Pigs,1992,1105,5.78819,5.59334, +7182,126426,A.D. 30,2012,194,6.70278,5.59331, +7183,347600,1212 Las Navas de Tolosa,2022,116,7.44871,5.59330, +7184,260239,Dicium,2018,192,6.71406,5.59329, +7185,9476,L'Armeé du Nord: the Belgian Campaign 1815,1993,160,6.93812,5.59328,"9476, 250942" +7186,300521,Rush Out!,2021,217,6.58486,5.59328, +7187,271044,UNDO: Cherry Blossom Festival,2019,647,5.92564,5.59323, +7188,352963,Waterloo Solitaire,2021,135,7.18548,5.59319,"352963, 383357" +7189,58625,Storm Over Normandy,2015,130,7.24654,5.59318, +7190,163432,Tides of Infamy,2015,165,6.89576,5.59317, +7191,349805,Bismarck Solitaire,2021,182,6.77401,5.59317,"349805, 375521, 394158" +7192,103235,Singapore,2011,411,6.11576,5.59312, +7193,5826,"Victory in the West: Plan Yellow, The French Campaign 1940",1993,143,7.09510,5.59311, +7194,245823,Napoleon's Resurgence,2018,78,8.34615,5.59309, +7195,41763,Le Passe-Trappe Grande,2008,152,7.00579,5.59309, +7196,379928,Fall of Lumen,2024,96,7.82969,5.59308, +7197,22509,Four Battles of Army Group South,1979,163,6.90975,5.59304,"9189, 15213, 17682, 17683, 17684, 22509" +7198,11054,Four Battles in North Africa,1976,203,6.65025,5.59304,"9736, 9973, 11054, 20429, 25460, 73243, 73244" +7199,257991,Igen?,2018,311,6.28309,5.59303,"257991, 289720, 373855" +7200,15081,Retro: Tactical WWII Wargame Variant Rules,2001,90,7.97444,5.59292, +7201,22029,"I Ain't Been Shot, Mum",2002,103,7.67379,5.59291,"22029, 122242, 143636" +7202,162591,Heroes,2015,495,6.02580,5.59290, +7203,215521,Diceborn Heroes,2019,243,6.47467,5.59289, +7204,8232,Zauberschwert & Drachenei,2003,438,6.08174,5.59283, +7205,131232,Mafia City,2012,188,6.73165,5.59281, +7206,140779,Guardians' Chronicles,2014,244,6.46992,5.59278,"140779, 208377" +7207,398996,Panda Royale,2024,103,7.67062,5.59278, +7208,362121,Sunshine City,2022,137,7.15419,5.59273, +7209,3466,WarpWar,1977,290,6.33034,5.59273, +7210,4934,Battling Tops,1968,397,6.13116,5.59267,"4934, 61549" +7211,671,Bull Run: The First Major Battle of the American Civil War,1983,246,6.46163,5.59267, +7212,3935,The Art of Siege,1978,148,7.03649,5.59264,"3935, 11846, 12218, 12219, 12230" +7213,238026,Greater East Asia Co-Prosperity Sphere: War in Asia and the Pacific,2017,106,7.60849,5.59263, +7214,155315,New York 1776,2014,144,7.07549,5.59257,"155315, 175689, 227842" +7215,371183,Joyride: Survival of the Fastest,2024,149,7.02567,5.59257,"371183, 399318, 424809" +7216,22606,"Won by the Sword: Great Campaigns of the Thirty Years War, Vol. 1",2014,201,6.65423,5.59251, +7217,33155,Burrows,2010,372,6.16575,5.59245, +7218,1471,Gangsters,1992,307,6.28697,5.59243, +7219,161820,Avec Infini Regret,2014,104,7.64231,5.59242,"161820, 254263" +7220,39331,Legends of Boxing,2000,71,8.59493,5.59241,"39331, 420587" +7221,5485,Atlantic Wall: The Invasion of Europe June 1944,1978,172,6.83169,5.59240, +7222,2256,The Magnificent Race,1975,297,6.30960,5.59235, +7223,247578,Death Note: Confrontation,2018,148,7.03142,5.59233, +7224,39710,Tien Zi Que,2009,361,6.18216,5.59231,"39375, 39710, 334226" +7225,132416,Imperios Milenarios,2012,100,7.72150,5.59230, +7226,137500,Gothic Invasion,2014,142,7.09120,5.59227, +7227,346982,The Warriors: Come Out to Play,2022,166,6.87446,5.59227, +7228,225909,Burning Mountains 1916,2017,102,7.67843,5.59225,"70398, 225909, 385627" +7229,380916,Cloudy Kingdom,2023,126,7.28095,5.59224, +7230,209280,Family Plot,2017,205,6.62980,5.59221,"209280, 294714" +7231,286559,Antiquity Quest,2019,206,6.62428,5.59217, +7232,204733,Really Bad Art,2016,157,6.94599,5.59214, +7233,93185,Tetris Link,2011,572,5.96373,5.59214, +7234,354425,Distant Suns,2022,204,6.63389,5.59213, +7235,238360,El Castillo del Terror,2017,196,6.67635,5.59212, +7236,536,Visionary,1997,255,6.42545,5.59212, +7237,38858,Strada Romana,2009,388,6.13974,5.59211, +7238,309003,The Detective Society: The Disappearance of Claire Makova,2020,97,7.78247,5.59210, +7239,367295,Powerline,2022,234,6.49987,5.59209, +7240,242292,No Motherland Without: North Korea in Crisis and Cold War,2021,114,7.45473,5.59205, +7241,7365,"Wilson's Creek: The West's First Fight, August 10, 1861",1980,213,6.58840,5.59200, +7242,166210,Blend Off!,2016,263,6.39889,5.59200,"166210, 177245, 221245" +7243,138338,Continental Divide,2013,206,6.62180,5.59197, +7244,392611,Sushi Go!: Spin Some for Dim Sum,2023,287,6.33078,5.59192, +7245,60029,A Week In Hell: The Battle of Hue,2010,145,7.05379,5.59189, +7246,256801,Fast Forward: FORTUNE,2018,439,6.07467,5.59188, +7247,97094,Dark Minions,2011,424,6.09142,5.59183, +7248,187121,Far East War 1592,2016,153,6.97606,5.59181, +7249,207203,War Titans: Invaders Must Die!,,58,9.24138,5.59176, +7250,219650,Arydia: The Paths We Dare Tread,2025,81,8.20444,5.59174, +7251,317515,Águeda: City of Umbrellas,2024,168,6.85138,5.59174, +7252,38870,Pensacola,2010,113,7.46434,5.59173, +7253,371544,Friegas Tú,2022,154,6.96560,5.59172, +7254,189829,Zombie Tower 3D,2015,208,6.60877,5.59171, +7255,316620,"Battle for Kursk: The Tigers Are Burning, 1943",2020,137,7.13577,5.59170, +7256,1831,North American Rails,1992,179,6.77318,5.59168, +7257,194194,Pędzące Ślimaki,2016,227,6.52335,5.59168, +7258,289765,Michael,2019,211,6.59371,5.59166, +7259,184730,Circle of Life,2015,195,6.67538,5.59161, +7260,346248,18Korea,2021,88,7.99205,5.59157, +7261,247191,Ya Blew It!,2018,303,6.28832,5.59153, +7262,223481,Take the Gold,2017,199,6.65213,5.59150, +7263,370687,Find the Source,2023,121,7.33554,5.59148, +7264,9833,Au fil de l'épée,2002,112,7.47545,5.59147, +7265,167237,Andromeda,2015,223,6.53762,5.59147, +7266,144223,Blocky Mountains,2014,159,6.91824,5.59145,"144223, 261020" +7267,1271,Volltreffer,1999,170,6.83235,5.59145, +7268,310641,Ostium,2021,140,7.09786,5.59143, +7269,255381,Forgotten Legions: Designer Signature Edition,2018,146,7.03582,5.59142,"8705, 13593, 255381" +7270,357316,Cartaventura: Caravans,2022,163,6.88460,5.59138, +7271,31443,"The Habit of Victory: From Warsaw to Eylau to Friedland, 1806-7",2007,103,7.63786,5.59138, +7272,10559,Why Did the Chicken...?,2004,399,6.11943,5.59134, +7273,122435,Mobile Frame Zero: Rapid Attack,2012,106,7.57830,5.59131,"25045, 122435" +7274,403409,Knight,2024,84,8.09825,5.59129, +7275,108705,Tuareg,2011,237,6.47958,5.59127, +7276,375440,61 Feuilles d'automne,2022,236,6.48331,5.59126, +7277,334827,Starship Interstellar,2024,90,7.92978,5.59124, +7278,41243,Down in Flames: WWII-Guns Blazing,2010,143,7.06242,5.59120, +7279,362587,The Finest Fish,2022,127,7.24724,5.59117, +7280,142265,Prospectus,2016,160,6.90558,5.59117, +7281,362965,Kunterpunkt: Das wuselige Würfelspiel,2022,118,7.37339,5.59117, +7282,83092,303,2010,263,6.39068,5.59115, +7283,207845,Treasure Lair,2016,217,6.55952,5.59110, +7284,402714,Siempre de WN,2024,85,8.06235,5.59106, +7285,176215,Odyssey: Wrath of Poseidon,2015,290,6.31537,5.59106, +7286,8208,Trial of Strength: War on the Eastern Front 1941-45,1985,93,7.84946,5.59105, +7287,402337,Expressions,2024,151,6.98179,5.59104, +7288,23761,Guadalajara,2006,199,6.64628,5.59103, +7289,5060,Caesar in Alexandria,2001,155,6.94484,5.59097, +7290,354806,London Necropolis Railway,2022,128,7.22974,5.59093, +7291,177857,Achaia,2015,241,6.46133,5.59093, +7292,161537,7 Steps,2014,365,6.16497,5.59084, +7293,54372,Erosion,2009,263,6.38750,5.59083,"35768, 54372" +7294,220331,Saipan: The Bloody Rock,2017,85,8.05576,5.59083, +7295,127188,Tweeeet,2012,350,6.18943,5.59082, +7296,177538,The Sands of Time,2018,189,6.69921,5.59081, +7297,265304,A Billion Suns: Interstellar Fleet Battles,2021,93,7.84297,5.59080, +7298,347603,Фототур (Phototour),2022,146,7.02534,5.59079,"347603, 399115" +7299,27823,Battue: Storm of the Horse Lords,2007,631,5.92258,5.59077, +7300,56880,El Paso,2009,313,6.25915,5.59070, +7301,257836,Narabi,2018,487,6.02018,5.59068, +7302,204615,StarFall,2016,318,6.24843,5.59067, +7303,224119,21 Days,2017,205,6.61088,5.59066, +7304,10579,The War for the Union,1992,143,7.05280,5.59064, +7305,192701,Final Touch,2016,494,6.01367,5.59060, +7306,66608,Two by Two,2010,570,5.95720,5.59059, +7307,245629,Atlantica,2018,170,6.81971,5.59058, +7308,360056,Zero to 100,2022,241,6.45737,5.59056,"360056, 392950" +7309,169658,The Guardians: Explore,2016,147,7.01122,5.59053, +7310,297864,Экивоки,2013,261,6.39050,5.59051, +7311,20253,Diaballik,2004,317,6.24910,5.59050,"20253, 187959" +7312,164590,GYÜMI,2014,218,6.54817,5.59050,"164590, 262291" +7313,360328,Touch It,2022,173,6.79688,5.59048, +7314,6540,Fear God & Dread Nought,2001,111,7.47027,5.59045,"6540, 299044, 299436" +7315,265113,ESCAPE Dysturbia: Mörderischer Maskenball,2018,142,7.05967,5.59044, +7316,361637,Decktective: You Can't Cheat Death,2022,137,7.11241,5.59039, +7317,24157,Order of the Stick Adventure Game: The Dungeon of Dorukan,2006,1297,5.75115,5.59039, +7318,325828,Let's Dig for Treasure,2021,304,6.27620,5.59038, +7319,222853,Witches of the Revolution,2017,272,6.35629,5.59032, +7320,386135,Scream: The Game,2023,204,6.61113,5.59028, +7321,278373,Twisty Little Passages,2020,122,7.29689,5.59026, +7322,40370,Islas Canarias,2009,271,6.35812,5.59021, +7323,32171,El Club de los Martes,2007,144,7.03535,5.59021, +7324,266980,Steamopolis,2019,169,6.82155,5.59021, +7325,18975,Hunting Party,2005,356,6.17466,5.59020, +7326,323841,Spook Manor,2022,158,6.90665,5.59017, +7327,343350,Sauria,2022,96,7.75625,5.59015, +7328,85609,Almeida et Bussaco 1810,2010,95,7.77895,5.59014, +7329,145722,Eat Me If You Can!,2012,579,5.94910,5.59011, +7330,148507,IUNU,2013,203,6.61360,5.59007, +7331,368229,Utópolis,2022,75,8.36000,5.59006, +7332,267313,Plażing: parawany w dłoń,2019,143,7.04164,5.58999,"267313, 328767" +7333,58886,Alba Longa,2011,437,6.06488,5.58997, +7334,102631,Tinco,2011,158,6.90344,5.58996, +7335,3706,Batik,1997,621,5.92414,5.58996, +7336,4222,War Between The States 1861-1865,1977,145,7.02000,5.58989,"4222, 11708" +7337,234093,Rob 'n Run,2017,195,6.65313,5.58988, +7338,394193,Kosmogonia 2086: Kronos Epilogue – The Card Game!,2023,79,8.21392,5.58987,"394193, 426469" +7339,374909,Dieson Crusoe,2022,96,7.74792,5.58981, +7340,5142,Fighting Sail: Sea Combat in the Age of Canvas and Shot 1775-1815,1981,174,6.77989,5.58977, +7341,369800,Air Postal,2023,84,8.05417,5.58974, +7342,309142,Port Arthur,2020,108,7.50597,5.58972, +7343,6608,Lord of the Rings Trivia Game,2003,433,6.06762,5.58971, +7344,129225,Nehemiah,2014,180,6.73926,5.58970, +7345,146451,Wrath of Kings,2015,98,7.70112,5.58970,"146451, 191206" +7346,6627,Scream Machine,2003,538,5.97425,5.58969, +7347,256708,Limbo: Eternal War,2019,84,8.05238,5.58968, +7348,8702,1807: The Eagles Turn East,1994,137,7.09964,5.58968, +7349,179385,Rome: City of Marble,2015,229,6.49287,5.58966, +7350,146880,Train Heist,2013,267,6.36428,5.58966, +7351,2541,Cosmic Cows,2001,707,5.88218,5.58965,"2541, 2730" +7352,3170,Horus Heresy (1993),1993,229,6.49273,5.58965, +7353,211693,Thug Life the Game,2019,66,8.71970,5.58956, +7354,315877,WWE Legends Royal Rumble Card Game,2020,251,6.41202,5.58950, +7355,296644,Dawn's Early Light: The War of 1812,2020,89,7.90899,5.58949, +7356,40759,Cartagena: Die Meuterei,2009,240,6.44958,5.58949, +7357,101796,SUTAKKU,2011,339,6.19788,5.58942, +7358,93194,011,2011,446,6.05144,5.58934, +7359,203042,Microworld,2016,287,6.30702,5.58930, +7360,18400,Battle Beyond Space,2012,312,6.24946,5.58929, +7361,199766,Listography: The Game,2016,155,6.91770,5.58926, +7362,96765,CardFight!! Vanguard,2011,197,6.63426,5.58924, +7363,202435,To Take Washington: Jubal Early's Summer 1864 Campaign,2019,75,8.33333,5.58922, +7364,103666,O Vale dos Monstros,2011,170,6.79982,5.58922,"103666, 390316" +7365,4980,Cityscape,2002,332,6.20889,5.58919, +7366,326985,Stargard Solstice,2021,77,8.26104,5.58919, +7367,249888,Grim Doom,2018,120,7.30275,5.58914, +7368,5041,IDF (Israeli Defense Force),1993,150,6.96000,5.58914, +7369,369104,Age of Inventors,2024,117,7.34632,5.58912, +7370,196348,Breakaway Football,2017,67,8.65746,5.58912, +7371,36241,Israeli Independence: The First Arab-Israeli War,2008,263,6.37072,5.58911, +7372,8553,Cannon,2003,154,6.92357,5.58909, +7373,96602,Footy Manager,2011,88,7.92330,5.58905, +7374,43196,Yalu: The Chinese Counteroffensive in Korea: November 1950-May 1951 (Second Edition),2009,137,7.08787,5.58902,"6476, 43196" +7375,342927,Fire & Stone,2022,436,6.05991,5.58900, +7376,1518,Executive Decision,1971,443,6.05237,5.58899, +7377,149863,Link It 4,2013,237,6.45506,5.58898, +7378,301,Campanile,1996,369,6.14515,5.58897, +7379,256956,Exchange,2019,197,6.63068,5.58896, +7380,104498,Pirates of Nassau,2012,155,6.91243,5.58893, +7381,418354,Babylon,2024,117,7.34188,5.58891, +7382,232732,Radiant: Offline Battle Arena,2019,89,7.89326,5.58891, +7383,390406,The Morrison Game Factory,2024,76,8.28684,5.58889, +7384,27490,Bloom,2008,259,6.38031,5.58886, +7385,206943,Exit: The Game – The Secret of the Premiere,2016,209,6.56904,5.58881, +7386,309315,Camping Life,2022,130,7.16390,5.58877, +7387,12764,City and Guilds,2004,197,6.62715,5.58868, +7388,362917,The Other Side of the Hill,2024,73,8.39041,5.58866, +7389,255635,Pitch Out,2020,139,7.06000,5.58866,"255635, 363479, 427800" +7390,271038,Snowman Dice,2019,336,6.19707,5.58862, +7391,32405,Alles Tomate!,2007,494,6.00240,5.58861, +7392,175464,Les Quatre-Bras & Waterloo 1815: The Empire's Final Blows,2015,83,8.05120,5.58861, +7393,249550,MegaMetroCity,2019,64,8.78203,5.58860, +7394,263744,Jonathan Strange & Mr Norrell: A Board Game of English Magic,2019,267,6.35404,5.58860, +7395,63743,The World Cup Card Game 2010,2010,275,6.33164,5.58858,"63743, 248153" +7396,248761,Bat Cup,2018,135,7.10126,5.58853, +7397,18615,Warmaster Ancients,2005,118,7.31864,5.58850, +7398,93819,War of Honor,2011,194,6.64072,5.58849, +7399,200359,Shadowscape,2017,327,6.21267,5.58848, +7400,369862,Pathogen,2022,109,7.46055,5.58846, +7401,274548,6 Castles,2019,174,6.76104,5.58845, +7402,186020,Stawka większa niż życie,2015,89,7.88090,5.58845, +7403,303,Koalition,1992,234,6.46004,5.58842, +7404,39066,"The Supreme Commander: World War II in Europe, 1939-1945",2013,209,6.56397,5.58839, +7405,202494,Encounters: Shadowrun,2016,317,6.23069,5.58828,"164778, 202494, 417429" +7406,88140,Stomple,2010,259,6.37436,5.58826, +7407,1910,Venice Connection,1988,546,5.96108,5.58825, +7408,365037,Cazamanzanas,2022,99,7.64323,5.58820, +7409,343833,Turtle Splash!,2021,130,7.15308,5.58819, +7410,3627,Chaostle,2011,261,6.36762,5.58819, +7411,132229,Rogues to Riches,2012,75,8.30000,5.58817, +7412,4362,"Champion Hill: May 16th, 1863 – The Road to Vicksburg",1996,128,7.17695,5.58816, +7413,24933,Cranium Pop 5,2006,324,6.21563,5.58814, +7414,286939,Clash of the Ardennes,2022,116,7.34060,5.58813,"286939, 413925" +7415,75441,Master of Economy,2010,170,6.78353,5.58810, +7416,82272,Railroad Barons,2010,324,6.21531,5.58810, +7417,391985,Enemy Anemone,2023,175,6.74914,5.58808, +7418,37383,1940: The Fall of France – A Panzer Grenadier Game,2009,99,7.64040,5.58808, +7419,208411,Unreal Estate,2017,450,6.03947,5.58806, +7420,281206,Agatha Christie: Death on the Cards,2019,354,6.16172,5.58804, +7421,193417,Captains of the Golden Age,2016,170,6.78202,5.58799, +7422,126119,Muskets & Tomahawks: Skirmishes in North America during the 18th century,2012,85,7.97588,5.58799,"126119, 306910" +7423,297569,Spicy Dice,2018,360,6.15167,5.58797,"5509, 18305, 18306, 18307, 18308, 26635, 260868, 297569" +7424,346951,Super Kawaii Pets,2022,170,6.78127,5.58794, +7425,182605,Skyliners,2015,484,6.00702,5.58793, +7426,366800,Spark Riders 3000,2024,105,7.51905,5.58790, +7427,232461,Saigon 75,2023,113,7.38186,5.58788, +7428,15435,Starship Troopers Miniatures Game,2005,150,6.93933,5.58788, +7429,181319,Trick'n Trouble: Fangt Doc Crazy!,2014,207,6.56715,5.58788, +7430,19878,Lucca Città,2005,519,5.97836,5.58786,"19878, 150971" +7431,150533,Samurai Gardener,2013,399,6.09570,5.58784, +7432,22938,Justinian: Intrigue at the Emperor's Court,2006,680,5.88579,5.58783, +7433,35599,Witchcraft,2008,267,6.34659,5.58782, +7434,5021,The Struggle of Nations,1982,277,6.31913,5.58782, +7435,102275,Lord of the Rings: The Adventure Deck Game,2011,149,6.94732,5.58781, +7436,322568,The Gardens,2022,285,6.29851,5.58781,"322568, 342762" +7437,128218,Helvetia Cup,2012,204,6.58048,5.58779, +7438,236143,Museum Rush,2018,205,6.57545,5.58777, +7439,100104,Rush Hour Scramble,2011,206,6.57055,5.58776, +7440,353326,The Chase of the Bismarck: Operation Rheinübung 1941,2022,77,8.21623,5.58774, +7441,374573,Reviving Kathmandu,2023,131,7.13206,5.58770, +7442,170415,Dungeon of Fortune,2015,519,5.97746,5.58769, +7443,320960,Roll In One,2021,207,6.56488,5.58769, +7444,334691,Judgement: Eternal Champions,2022,54,9.33333,5.58768,"275561, 334691" +7445,4881,Personal Preference,1987,202,6.58837,5.58763, +7446,226802,Galilean Moons,2020,140,7.03144,5.58763, +7447,231824,Blank,2017,354,6.15859,5.58762, +7448,17397,Savannah,2005,153,6.90850,5.58761, +7449,9288,Who? What? Where?,2003,177,6.72938,5.58761,"9288, 19201" +7450,5400,Changgi,,136,7.07346,5.58760, +7451,99696,Briscola Chiamata,1800,104,7.53010,5.58758, +7452,162384,Imperial Stars II,2014,129,7.15341,5.58757, +7453,254743,Theosis,2018,102,7.56730,5.58754, +7454,127839,"Mage Tower, A Tower Defense Card Game",2013,194,6.62830,5.58753, +7455,291951,The Everdeck,2019,63,8.79206,5.58752, +7456,234105,Hippo,2017,425,6.06254,5.58752, +7457,7502,Leros,1996,139,7.03921,5.58748, +7458,2884,Pathfinder,1974,352,6.16067,5.58747,"2884, 15958" +7459,139042,Días de Radio,2014,140,7.02856,5.58746, +7460,137933,Dicht dran,2013,260,6.36336,5.58745, +7461,372197,Snakes of Wrath,2022,95,7.70947,5.58739, +7462,365647,Mech A Dream,2023,197,6.61071,5.58739, +7463,229782,Roland Wright: The Dice Game,2020,250,6.39367,5.58738, +7464,209290,Vortex,2016,164,6.81628,5.58737, +7465,9346,Daimyo,2005,244,6.41299,5.58733, +7466,183720,Cargolino Valentino,2015,231,6.45926,5.58732, +7467,240901,"A Time for Trumpets: The Battle of the Bulge, December 1944",2020,99,7.62121,5.58729, +7468,377028,Cangaceiros,2023,144,6.98542,5.58728, +7469,26859,Kragmortha,2007,1353,5.73598,5.58724,"26859, 199969" +7470,64675,Schweinebande,2010,465,6.02000,5.58724, +7471,230968,Panic Island!,2017,253,6.38257,5.58723, +7472,194307,Zipang Portable,2016,132,7.11136,5.58722, +7473,67309,Hey Waiter!,2010,309,6.23823,5.58721, +7474,38703,EVE: Conquests,2009,293,6.27372,5.58720, +7475,267246,Blade Rondo,2018,143,6.99350,5.58718,"267246, 267250, 289474, 326440, 326441, 338627, 417912" +7476,378959,Claro,2023,160,6.84375,5.58716, +7477,348325,Caral,2022,174,6.74247,5.58715, +7478,333759,Border States,2022,101,7.57723,5.58713, +7479,371482,Miller Zoo,2022,148,6.94499,5.58712, +7480,796,Shanghai Trader,1986,227,6.47228,5.58711, +7481,317288,First Ascent,2022,110,7.41336,5.58709, +7482,7008,Preference,1802,97,7.65784,5.58708, +7483,26736,Ukraine '44,2006,108,7.44676,5.58707, +7484,315219,Black It Out,2020,76,8.22974,5.58707, +7485,287189,The King of All Bards,2019,134,7.08582,5.58706, +7486,56241,Coral Sea: Campaign Commander Series,2010,124,7.20605,5.58703, +7487,7975,Triumph & Glory: Battles of the Napoleonic Wars 1796-1809,2000,170,6.76765,5.58701, +7488,365453,Look at the Stars,2022,341,6.17554,5.58700, +7489,348503,80 Days,2022,145,6.97103,5.58700, +7490,399826,Gem Getter Pro,2023,71,8.41211,5.58695,"383323, 399826, 415260" +7491,267397,Fired Up,2021,106,7.47862,5.58693,"180666, 267397" +7492,112598,Monster Factory,2012,789,5.84106,5.58692, +7493,21182,1850: The MidWest,2005,110,7.40955,5.58691, +7494,21469,Spectral Rails,2011,273,6.32120,5.58690, +7495,1317,Auf falscher Fährte,2001,185,6.67000,5.58687, +7496,378654,Threads of Fate,2023,73,8.33096,5.58684,"254125, 378654" +7497,329962,Cantaloop: Book 2 – A Hack of a Plan,2021,300,6.25447,5.58683, +7498,140101,Fantasy Frontier,2014,267,6.33682,5.58681, +7499,360700,Forest Sky,2022,154,6.88708,5.58681, +7500,142401,Dwarven Miner,2013,258,6.36289,5.58680,"142401, 283538" +7501,233969,Parley,2017,84,7.96905,5.58675, +7502,199086,Festival of a Thousand Cats,2016,206,6.55816,5.58675, +7503,22847,Connect6,2003,257,6.36520,5.58673, +7504,175510,Soulfall,2015,239,6.42335,5.58668,"175510, 380161" +7505,83196,Pig 10,2010,264,6.34383,5.58665, +7506,170799,Lost Woods,2015,194,6.61686,5.58664, +7507,94331,Legions of Darkness,2011,172,6.74855,5.58664, +7508,162580,Realm of Wonder,2014,506,5.98140,5.58660, +7509,226506,Rambo: The Board Game,2020,176,6.72121,5.58657,"226506, 313875" +7510,156750,Fleets: The Pleiad Conflict,2014,160,6.83456,5.58656, +7511,40561,Curling Table Game,2008,188,6.64840,5.58654, +7512,2060,Probe,1964,854,5.82030,5.58654, +7513,7748,The Italian Front: 1915-1918,2003,90,7.80444,5.58653, +7514,142687,oddball Äeronauts,2014,693,5.87445,5.58650,"142687, 168265" +7515,288424,Blue Banana,2019,197,6.59848,5.58643, +7516,391045,Alpaca,2023,204,6.56368,5.58642, +7517,128568,(Your Name Here) and the Argonauts,2012,133,7.08481,5.58639, +7518,359892,Shoot for the Stars,2022,170,6.75853,5.58638, +7519,47218,Yikerz!,2009,377,6.11475,5.58636, +7520,325477,Otto Game Over,2021,189,6.63979,5.58631, +7521,109,Wettstreit der Baumeister,1994,399,6.08531,5.58631, +7522,356224,Battles of Normandy: A Solitaire Wargame,2022,77,8.17193,5.58631, +7523,206904,Twilight of the Gods: Age of Revelation,2017,140,7.00807,5.58629,"206904, 373542" +7524,197061,Fantahzee: Hordes & Heroes,2016,326,6.19668,5.58627, +7525,367030,Quests Over Coffee,2022,133,7.07962,5.58611,"367030, 427375" +7526,295368,Theurgy,2022,121,7.22769,5.58611, +7527,317,The Mob,1993,228,6.45724,5.58610,"317, 32208" +7528,342636,Sabobatage,2021,219,6.49297,5.58610, +7529,352593,River Wild,2023,264,6.33835,5.58609, +7530,67285,Armorica,2010,223,6.47646,5.58607, +7531,241805,A Victory Awaits: Operation Barbarossa 1941,2022,86,7.89477,5.58607,"151441, 169396, 205458, 241805" +7532,4278,Battle Over Britain,1983,199,6.58367,5.58606, +7533,344194,"The Day Was Ours: First Bull Run (July 21, 1861)",2021,79,8.09865,5.58605, +7534,32149,Word Blur,2007,155,6.86645,5.58604, +7535,268469,Pulp Invasion,2020,241,6.40950,5.58603, +7536,26745,"PanzerBlitz: Hill of Death – The Battle for Hill 112, Normandy 1944",2009,178,6.70057,5.58600, +7537,204143,Hexpanse,2017,212,6.52170,5.58599, +7538,362600,Abrakadabrien: Das magische Kartenspiel,2022,188,6.64096,5.58598, +7539,159566,Unicorn Glitterluck: Cloud Crystals,2014,865,5.81520,5.58596,"159566, 194032" +7540,323317,Mouse Cheese Cat Cucumber,2021,177,6.70621,5.58596, +7541,256391,Queen Bee,2020,81,8.03333,5.58594, +7542,8721,Hof Gap: The Nurnberg Pincer,1980,150,6.90700,5.58590,"8721, 268901" +7543,29278,18Rhl: Rhineland,2007,118,7.26525,5.58590,"24862, 29278, 387299" +7544,161995,Hexemonia,2014,249,6.38120,5.58585, +7545,264566,Card Capture,2018,117,7.27838,5.58584, +7546,4342,"Screaming Eagles in Holland: The 101st Airborne Division's Defense of Hell's Highway, 22-23 September, 1944",2002,109,7.40138,5.58579, +7547,260131,Race For Bastogne,2022,69,8.45362,5.58578, +7548,130997,Flames of War: Open Fire!,2012,101,7.54455,5.58576,"130997, 223123, 260328" +7549,164446,Way of the Fighter: Super,2018,115,7.30496,5.58571,"164446, 229540" +7550,2179,Musketeers,1991,427,6.04864,5.58569, +7551,282774,Bleeding Kansas,2019,93,7.71075,5.58567, +7552,277901,Olvir,2019,95,7.66526,5.58564, +7553,5228,"Glory: The Battles of First & Second Manassas and Chickamauga, 1861-63",1995,195,6.59872,5.58564, +7554,24085,EVE: The Second Genesis,2006,203,6.55862,5.58562, +7555,135577,The Invasion of Russia (1812),2014,117,7.27265,5.58557,"135577, 200959" +7556,3517,Tornado Rex,1991,163,6.79650,5.58557, +7557,313159,The Librarians: Adventure Card Game,2021,89,7.80281,5.58555, +7558,259005,Farben,2018,225,6.46208,5.58550,"259005, 353148" +7559,198608,A Wing and a Prayer: Bombing the Reich,2016,112,7.34643,5.58550,"169158, 198608" +7560,248760,NEXUS: Arena Combat System,2023,67,8.52896,5.58549, +7561,101206,Night Drop: 6 June 44,2012,104,7.48125,5.58547,"101206, 251026" +7562,257306,High Score,2018,169,6.75183,5.58545, +7563,170825,Bad Medicine,2015,221,6.47729,5.58544, +7564,372891,Genpei,2023,105,7.46248,5.58544, +7565,81850,Trigger!,2010,328,6.18622,5.58543,"81850, 118697, 207239" +7566,72799,Battle for Stalingrad,2014,164,6.78598,5.58536, +7567,373877,Lakshadweep,2023,72,8.31963,5.58534, +7568,141735,Patronize,2013,389,6.09108,5.58529, +7569,14054,Akaba,2004,268,6.31940,5.58529, +7570,232216,Dice Age: The Hunt,2017,156,6.84609,5.58527, +7571,303648,Disney Hocus Pocus: The Game,2020,566,5.93261,5.58523, +7572,59223,Diego Drachenzahn,2009,375,6.10937,5.58521, +7573,175626,Street Kings,2016,157,6.83637,5.58516, +7574,72448,Trivial Pursuit: Bet You Know It,2010,688,5.87065,5.58515, +7575,2494,Hispania,1994,164,6.78274,5.58514, +7576,332804,Cantaloop: Book 3 – Against All Odds,2023,92,7.71848,5.58508, +7577,269403,LOTS: A Competitive Tower Building Game,2020,137,7.01736,5.58506, +7578,320061,Death in the Trenches: The Great War 1914-1918 (Second Edition),2022,110,7.36873,5.58506,"15391, 320061" +7579,5294,Fury in the West,1977,176,6.69972,5.58505, +7580,10668,Panzer Grenadier: Desert Rats,2004,141,6.97603,5.58502, +7581,109922,Combat Infantry: WestFront 1944-45,2017,124,7.16629,5.58500,"109922, 273492" +7582,168662,"The Siege of Orgun: Afghanistan, 1983",2015,103,7.48835,5.58499, +7583,32,Buffalo Chess,1975,391,6.08615,5.58495, +7584,301614,ドキッと!アイス (Dokitto! Ice),2020,154,6.85727,5.58494, +7585,158883,Norsaga,2015,248,6.37460,5.58490, +7586,372433,Quickity Pickity,2022,193,6.59946,5.58489, +7587,4052,Star Wars: Trading Card Game,2002,525,5.95780,5.58487,"4052, 333218, 333219, 333220" +7588,2443,MotorChamp,2000,174,6.70960,5.58484, +7589,3163,Doom of the Eldar,1993,218,6.48257,5.58484, +7590,302310,Nanaki,2020,141,6.97270,5.58483, +7591,285203,Alien 51: El ascensor,2019,138,7.00181,5.58477, +7592,215482,Road Hog: Rule the Road,2017,247,6.37634,5.58476,"180230, 215482" +7593,121615,Shadows Over the Empire,2013,593,5.91438,5.58474, +7594,187808,Front Toward Enemy,2019,96,7.62083,5.58473, +7595,300081,Hideous Abomination,2021,131,7.07679,5.58473, +7596,825,Screaming Eagles,1987,616,5.90192,5.58471,"825, 6982" +7597,6504,Ace of Aces: Wingleader,1988,190,6.61289,5.58469,"6504, 155664" +7598,35865,"Treasure, Ready, Go!",2008,142,6.95993,5.58466, +7599,180471,Hoard,2014,252,6.35946,5.58464, +7600,164448,Ninja All-Stars,2015,380,6.09834,5.58463, +7601,261831,Avocado Smash!,2018,413,6.05726,5.58462,"261831, 343518" +7602,182638,Harald,2015,293,6.25075,5.58461, +7603,189030,De Slimste Mens ter Wereld: Het Bordspel,2015,222,6.46347,5.58458,"189030, 265390" +7604,288284,Flash 8,2019,155,6.84323,5.58457, +7605,63928,"Operation Jubilee: Dieppe, August 1942",2010,116,7.26509,5.58451, +7606,208670,Labyrinth: Paths of Destiny (Third Edition),2016,376,6.10279,5.58448,"98197, 175274, 208670, 340741" +7607,29656,Athens & Sparta,2007,207,6.52565,5.58446, +7608,145609,Stinker,2015,157,6.82516,5.58444, +7609,282438,Throne of Allegoria,2019,169,6.73698,5.58444, +7610,139032,Upon a Fable,2013,290,6.25569,5.58439, +7611,736,San Francisco,2000,328,6.17780,5.58438, +7612,16538,The Battle of Five Armies,2005,130,7.08115,5.58435, +7613,240584,Blend Coffee Lab.,2017,187,6.62484,5.58435, +7614,231152,1972: The Lost Phantom,2017,137,7.00365,5.58430, +7615,346623,Suspect Game,2021,69,8.40145,5.58427, +7616,132799,Student Bodies,2014,249,6.36477,5.58425, +7617,401325,The Witcher: Path Of Destiny,2025,96,7.60729,5.58419,"401325, 405135" +7618,372880,Cubed: Next Level Dominoes,2023,144,6.93261,5.58418, +7619,264452,High Risk,2019,441,6.02427,5.58414, +7620,158888,Race to Berlin,2015,112,7.31607,5.58409, +7621,156061,Imperialism: Road to Domination,2014,251,6.35677,5.58408, +7622,168582,Dragon Racer,2015,217,6.47765,5.58406, +7623,72285,Totemo,2010,191,6.59921,5.58405, +7624,149639,Noble Treachery: The Last Alliance,2014,168,6.73775,5.58402, +7625,300882,Star Clicker,2021,143,6.93930,5.58402, +7626,2903,The Hunt for Red October,1988,440,6.02444,5.58401, +7627,364277,Stonks,2023,149,6.88459,5.58401, +7628,180809,Victoriana,2019,118,7.22593,5.58399, +7629,361259,Zodiac Duel,2022,91,7.71264,5.58397, +7630,94375,The Great Game: Rival Empires in Central Asia 1837-1886,2018,130,7.07385,5.58396, +7631,369384,Blockits,2022,89,7.76011,5.58396, +7632,216694,Das Vermächtnis des Maharaja,2017,179,6.66587,5.58395, +7633,136245,Ka-Boom,2013,374,6.10172,5.58395, +7634,218314,3 Secrets,2017,496,5.97432,5.58394,"218314, 269756" +7635,5751,"Operation Mercury: The German Airborne Assault on Crete, 1941",1992,120,7.19667,5.58390, +7636,314461,The Deadly Woods: The Battle of the Bulge,2021,104,7.44279,5.58381, +7637,174584,Orcs Must Die! The Board Game: Order Edition,2016,237,6.39932,5.58379,"174584, 174646, 311165" +7638,150485,Cat Tower,2015,1090,5.76109,5.58378,"150485, 160591, 160617, 192467" +7639,308529,Puns of Anarchy,2020,209,6.50841,5.58377, +7640,336373,La Isla Perdida,2021,147,6.89833,5.58377,"307172, 336373" +7641,211450,Take That,2016,285,6.26175,5.58376, +7642,281664,No Return,2019,172,6.70703,5.58375, +7643,16177,König Salomons Schatzkammer,2005,193,6.58472,5.58375, +7644,42361,Pocket Dungeon,2009,113,7.29071,5.58362, +7645,39045,Heroes of the World,2008,248,6.36141,5.58362, +7646,43845,18Ardennes,2010,99,7.53131,5.58359, +7647,3765,Babylon 5 Wars,1997,199,6.55241,5.58358, +7648,298370,Duffers,2020,138,6.98062,5.58358, +7649,247316,Pikto,2018,143,6.93147,5.58356,"234512, 247316" +7650,35395,Salem,2016,252,6.34816,5.58353, +7651,292506,Bresk!,2020,212,6.49215,5.58351, +7652,346643,Genshin Tarot: The Fan Made Genshin Impact Board Game,2022,68,8.41618,5.58350, +7653,130499,Stones of Fate,2015,213,6.48756,5.58348, +7654,18529,The Penguin Book of Card Games,1979,73,8.21918,5.58341, +7655,240906,The Battles of Rhode Island & Newport,2020,86,7.81977,5.58338, +7656,1757,Yacht Race,1960,126,7.10952,5.58336, +7657,2192,Rivets,1977,232,6.41207,5.58335, +7658,16105,Champions of the Galaxy,1986,75,8.14667,5.58334,"16105, 341011" +7659,360480,Irish Freedom,2022,93,7.65054,5.58334,"147372, 360480" +7660,243435,Verflucht!,2018,442,6.01810,5.58331, +7661,51195,Adaptoid,2009,148,6.88176,5.58331, +7662,363633,Shu's Tactics,2023,99,7.52429,5.58330, +7663,307715,High Noon,2021,96,7.58438,5.58328, +7664,97939,Lyssan,2012,165,6.74752,5.58328, +7665,137140,Wunderland,2013,391,6.07453,5.58327,"137140, 299928" +7666,2173,4 Player Chess,1881,485,5.97928,5.58326, +7667,111069,Karnag,2012,198,6.55328,5.58326, +7668,99132,2019: The ARCTIC,2011,160,6.78335,5.58324, +7669,163771,The Siblings Trouble,2016,122,7.15648,5.58321,"163771, 390577" +7670,259837,Crescent City Cargo,2021,127,7.09449,5.58320, +7671,316113,Buy the Vote!,2020,126,7.10624,5.58319, +7672,158548,Isaribi,2014,275,6.28083,5.58317, +7673,226006,Ursa Miner,2017,110,7.32727,5.58317, +7674,197409,The Heroes of Kaskaria,2016,198,6.55210,5.58317, +7675,144958,Iwo: Bloodbath in the Bonins 19 Feb – 17 Mar 1945,2013,139,6.96331,5.58316, +7676,40638,Risk: Halo Wars Collector's Edition,2009,281,6.26584,5.58316, +7677,203624,Mea Culpa,2016,326,6.17132,5.58312, +7678,414855,2 Pommes 3 Pains,2024,146,6.89623,5.58311, +7679,378833,Happy Campers,2023,123,7.14106,5.58307, +7680,2699,Fire Team,1987,134,7.01269,5.58305, +7681,297001,Overstocked,2022,153,6.83510,5.58304, +7682,231045,Speed Colors,2017,256,6.33130,5.58304,"231045, 311710, 326038" +7683,267013,Kung Fur Fight!,2018,94,7.62011,5.58301, +7684,2641,"Barbarian, Kingdom & Empire",1983,128,7.07812,5.58296, +7685,83068,1955: The War of Espionage,2010,394,6.06865,5.58296, +7686,386508,NEON,2023,139,6.95899,5.58292, +7687,7114,SOPAC: Naval Action in the South Pacific 1942–1943,1999,132,7.03182,5.58291, +7688,363695,Ecosfera,2024,119,7.18992,5.58290,"363695, 416900" +7689,181464,D6 Shooter,2016,190,6.58895,5.58287, +7690,14042,Team Work Original,2004,370,6.09930,5.58284,"14042, 20532, 21357, 24738, 24739, 24740, 32416, 32665, 33968, 165472" +7691,206686,Fanhunter: Urban Warfare,2017,114,7.25833,5.58280,"206686, 313936" +7692,1784,Dark Cults,1983,145,6.90000,5.58280, +7693,365653,Eter,2022,149,6.86376,5.58274, +7694,368846,Dice Cards,2023,95,7.59126,5.58272, +7695,328478,Dungeons & Dragons: Dungeon Scrawlers – Heroes of Undermountain,2021,219,6.45397,5.58271,"328478, 381926" +7696,223538,Fast Food Fear!,2017,400,6.05966,5.58271, +7697,4241,Soldiers: Tactical Combat in 1914-15,1972,115,7.24130,5.58269, +7698,83157,"Engine, Engine No. 9",2010,241,6.37407,5.58268, +7699,291431,Share it!,2019,193,6.57045,5.58265,"291431, 348532" +7700,358805,Infernal Wagon,2022,208,6.49904,5.58263, +7701,180204,1857,2015,131,7.03740,5.58262, +7702,120316,Nine Worlds,2016,215,6.46837,5.58256, +7703,264638,5x5 City,2018,138,6.96258,5.58256, +7704,273955,Damnation: The Gothic Game,2023,155,6.81123,5.58256,"2016, 273955" +7705,252,The Battle of Borodino: Napoleon in Russia 1812,1972,169,6.70929,5.58255, +7706,264685,Grimdark Future: Firefight,2018,64,8.55625,5.58250,"192138, 264685" +7707,379297,Good Face Bad Face,2023,159,6.77934,5.58249, +7708,144382,Canalis,2013,279,6.26455,5.58249, +7709,56641,NUTS! Second Edition: Europe 1944,2009,101,7.46545,5.58244,"20587, 56641, 178496, 241384" +7710,368899,Magic Keys,2022,122,7.14078,5.58242, +7711,377645,Tic Dice Town,2022,158,6.78568,5.58242, +7712,137626,The Road to Cheren,2013,103,7.42816,5.58241, +7713,300727,The Coldest Night,2020,284,6.25180,5.58241, +7714,21703,Mana,1988,158,6.78500,5.58237, +7715,209095,UNO: Super Mario,2016,365,6.10290,5.58236, +7716,169986,Night of Man,2015,97,7.54072,5.58235, +7717,298166,Hungry Hamsters,2020,198,6.54162,5.58234, +7718,286804,Napoleon's Eagles: Storm in the East – The Battles of Borodino and Leipzig,2020,98,7.52041,5.58234,"17608, 286804, 322381" +7719,17654,18GL,2005,112,7.27679,5.58227, +7720,17382,History of the Roman Empire,2008,232,6.39978,5.58222, +7721,1558,Rogue Trooper,1987,377,6.08528,5.58222, +7722,171133,Cryptic Explorers,2022,76,8.07763,5.58221, +7723,177619,Terminator Genisys: The Miniatures Game – The War Against The Machine,2015,104,7.40577,5.58221, +7724,387276,Reforest: Plants of the Pacific Northwest Coast,2023,82,7.89451,5.58220, +7725,99655,Swinging Jivecat Voodoo Lounge,2016,245,6.35594,5.58218, +7726,5278,Bloody Kasserine,1992,191,6.57461,5.58217,"4020, 5278" +7727,71886,Na Grunwald: Rycerze króla Jagiełły,2010,185,6.60676,5.58217, +7728,193327,The Golden Sails,2016,176,6.65892,5.58215, +7729,193164,Macroscope,2016,493,5.96655,5.58215, +7730,39862,Flapjacks & Sasquatches,2008,364,6.10266,5.58214, +7731,3269,Clue: The Card Game,2002,734,5.84009,5.58209, +7732,10672,"Easy Come, Easy Go",2004,488,5.97012,5.58209, +7733,262275,Dust in the Wings,2019,335,6.14733,5.58209, +7734,195508,Into The Echoside,2016,90,7.68556,5.58207, +7735,7950,Chronopia,1997,108,7.33481,5.58206,"7950, 8049, 359898" +7736,2885,C.V.: A Game of the Battle of Midway,1979,111,7.28739,5.58206, +7737,18961,Paranoia Mandatory Bonus Fun! Card Game,2005,468,5.98622,5.58201, +7738,183963,Invaders from Dimension X!,2015,116,7.21250,5.58199, +7739,549,Aerodrome,1994,93,7.61559,5.58199, +7740,223514,Coin & Crown,2018,191,6.57212,5.58198, +7741,367575,In The Heart Of Darkness,2023,123,7.11927,5.58197, +7742,320559,Emboscados,2020,96,7.55149,5.58196, +7743,277469,The Phantom: The Card Game,2021,142,6.91288,5.58193, +7744,367194,The Night,2022,81,7.91481,5.58192, +7745,174431,Wipers Salient,2015,119,7.16933,5.58189, +7746,266771,Too Many Poops,2018,312,6.18719,5.58187, +7747,24491,Supernova,2008,395,6.05985,5.58185, +7748,255396,Vamp on the Batwalk,2021,120,7.15500,5.58184, +7749,2249,The Sinking of the Titanic,1975,291,6.23038,5.58182, +7750,3576,Operation Olympic: The Invasion of Japan 1 November 1945,1974,192,6.56432,5.58178,"3576, 120509" +7751,10986,"Borodino: Battle of the Moskova, 1812",2004,170,6.69118,5.58176, +7752,221977,Badass Riders,2017,197,6.53898,5.58175, +7753,310968,Bite and Write: The Treaty of Rodentia,2020,80,7.93875,5.58174,"310968, 316760" +7754,2978,Stratego 4,1995,441,6.00929,5.58174, +7755,160950,The Badger Deck,2014,62,8.62177,5.58171,"160950, 180559" +7756,368519,Starry Night Sky,2023,115,7.22025,5.58169, +7757,332782,Cantaloop: Prequel,2020,119,7.16513,5.58168, +7758,154902,Diner,2014,398,6.05510,5.58168, +7759,280430,Crimes in History: H. H. Holmes' Murder Castle,2021,138,6.94696,5.58168,"280430, 329098" +7760,322560,Maeshowe: an Orkney Saga,2021,183,6.61120,5.58167,"205688, 322560" +7761,148282,Black Hat,2015,300,6.20940,5.58164,"148282, 351855" +7762,25182,24/7: The Game,2006,305,6.19908,5.58164, +7763,225977,Sheep 'n' Sheep,2017,156,6.78865,5.58163, +7764,98122,Monster Trap,2011,380,6.07684,5.58158,"98122, 136420" +7765,1694,Little Round Top: The South's Best Chance at Gettysburg,1979,222,6.42928,5.58158, +7766,158791,Dodekka,2014,279,6.25588,5.58156, +7767,221408,Warriors of Jogu: Feint,2017,118,7.17585,5.58155, +7768,130999,Diavolo,2012,489,5.96618,5.58154, +7769,234292,13 Ghosts,2017,340,6.13472,5.58153,"234292, 238884, 292843" +7770,2627,Poisson d'Avril,1983,133,6.99535,5.58152, +7771,12266,Barren Victory,1991,104,7.38942,5.58151,"12266, 28041" +7772,218007,Napoleon's Quagmire,2017,80,7.93125,5.58149,"218007, 288474" +7773,276431,20 Second Showdown,2019,183,6.60852,5.58148, +7774,3084,Buccaneer,1938,487,5.96739,5.58147,"3084, 5396, 24487" +7775,254415,Legends of Novus,2019,123,7.10894,5.58145, +7776,285125,Ni no Kuni II: The Board Game,2019,201,6.51617,5.58145, +7777,237745,Rifles in the Ardennes,2017,133,6.99406,5.58145,"237745, 275512" +7778,1416,Meridian,2001,449,5.99984,5.58144, +7779,34284,Graffiti,2007,228,6.40539,5.58144, +7780,254532,Chiseled,2020,155,6.79306,5.58141, +7781,372831,Potions of Azerland,2024,68,8.34191,5.58138, +7782,28574,Magiczny Miecz,1993,266,6.28684,5.58135, +7783,329648,Primordial Secrets,2023,67,8.38134,5.58133, +7784,318638,Union Station,2022,164,6.72500,5.58131, +7785,42112,Mob Ties: The Board Game,2011,176,6.64688,5.58130, +7786,380784,Solar Titans,2023,81,7.89568,5.58127, +7787,35453,Strafexpedition 1916,2011,80,7.92250,5.58120, +7788,142205,Ronin: Skirmish Wargames in the Age of the Samurai,2013,99,7.47172,5.58114,"142205, 181804" +7789,130393,Broadhorns: Early Trade on the Mississippi,2018,157,6.77299,5.58112, +7790,192286,SOL,2016,308,6.18854,5.58110, +7791,25242,Relikt,2006,463,5.98514,5.58110, +7792,195231,Merchants of Araby,2017,230,6.39443,5.58109, +7793,252542,The Romans,2019,126,7.06524,5.58107, +7794,280107,Kami,2019,308,6.18786,5.58102, +7795,386198,Queen by Midnight,2023,185,6.59095,5.58100,"386198, 425827" +7796,164147,Rayguns and Rocketships,2017,172,6.66615,5.58092, +7797,88922,Clue: Card Game,2010,731,5.83618,5.58090, +7798,251519,Efemeris,2018,142,6.89493,5.58089, +7799,316322,Endangered Orphans: House of Rath,2022,114,7.21711,5.58086, +7800,6352,Lord of the Rings,2003,563,5.91187,5.58080, +7801,13077,Wizard's Garden,2004,140,6.91164,5.58077, +7802,249095,Blooms,2018,197,6.52614,5.58074, +7803,3237,Against the Reich,1986,145,6.86483,5.58072, +7804,361314,Ninja Master,2022,173,6.65699,5.58072, +7805,260635,Until Daylight,2019,190,6.56053,5.58070,"260635, 364018" +7806,245382,The Way of the Bear,2018,241,6.35315,5.58070, +7807,5082,Rush Hour,1981,285,6.23382,5.58069, +7808,19646,Cowabunga,2005,599,5.89139,5.58068, +7809,26906,South Mountain,2008,90,7.64778,5.58065, +7810,185845,Dropfleet Commander,2016,104,7.36942,5.58065, +7811,11166,Brandywine & Germantown,2000,87,7.71839,5.58063, +7812,129951,Teomachia,2012,362,6.09434,5.58062,"129951, 172597, 172599" +7813,209222,Drachenturm,2016,210,6.46611,5.58061, +7814,366166,Reign of Dragoness,2022,171,6.66773,5.58059, +7815,405460,CATsle Builders,2023,91,7.62308,5.58057,"405460, 411363" +7816,351540,Walkie Talkie,2022,506,5.94773,5.58054, +7817,14186,Bao,,173,6.65445,5.58054, +7818,365627,Twisty Tracks,2023,205,6.48659,5.58052,"234451, 365627" +7819,319902,Don't Look Back,2020,58,8.78103,5.58047,"319902, 342974" +7820,303733,Space Lunch,2020,321,6.15847,5.58044, +7821,34276,Cassino '44: Gateway to Rome,2009,87,7.71264,5.58042, +7822,370166,echoes: Die Violine,2022,137,6.93438,5.58041, +7823,232106,Legends of Sleepy Hollow,2022,138,6.92428,5.58040, +7824,339222,WolfWalkers: My Story,2021,126,7.05159,5.58036, +7825,201446,Shifting Realms,2018,140,6.90429,5.58035, +7826,152952,Hawken: Real-Time Card Game,2014,283,6.23517,5.58034,"152952, 173372, 184861" +7827,158876,British vs Pirates: Volume 1,2017,115,7.19174,5.58033,"158876, 241658" +7828,29382,Rock of the Marne,2008,172,6.65756,5.58032, +7829,111172,Crooks,2012,346,6.11575,5.58031, +7830,37615,Looting London,2008,643,5.86835,5.58029, +7831,359763,That Old Wallpaper,2022,257,6.30093,5.58029, +7832,147884,Ore: The Mining Game,2013,115,7.18957,5.58023, +7833,27938,Tortuga,2007,330,6.14091,5.58021,"20113, 27938" +7834,7823,1837: Rail Building in the Austro-Hungarian Empire,1994,102,7.39412,5.58021, +7835,3646,Luftwaffe: The Game of Aerial Combat Over Germany 1943-45,1970,1003,5.76467,5.58021,"3646, 19269, 31067" +7836,315254,Which Side?,2021,59,8.71424,5.58016,"315254, 404429" +7837,133835,Dark Empire: Revolution,2013,196,6.52321,5.58013, +7838,40004,Contract Rummy,1930,217,6.43124,5.58007, +7839,274563,Ghostbusters: Blackout,2019,109,7.27418,5.58005, +7840,236108,Intelle,2017,92,7.58700,5.58004, +7841,345408,Chai Garam,2021,95,7.52357,5.58004, +7842,201551,Fantasy Battles: The 9th Age,2016,79,7.91709,5.58004, +7843,201054,What's Up,2016,943,5.77572,5.58001, +7844,236178,Mini DiverCity,2018,218,6.42604,5.57996,"209255, 236178" +7845,338896,Quest Calendar: The Gates of Terralon,2021,102,7.38775,5.57994, +7846,268,Cheops,1998,288,6.22003,5.57992, +7847,118553,Ubongo Trigo,2012,229,6.38480,5.57990, +7848,217098,Trôl,2017,180,6.60344,5.57987, +7849,228371,Iberian Railways,2017,162,6.71700,5.57986, +7850,83919,Scattergories Categories,2010,327,6.14313,5.57985, +7851,273336,Wizard Kittens,2020,291,6.21278,5.57984,"273336, 382370" +7852,371842,QUARZ,2025,54,8.99056,5.57984, +7853,195180,Universal Rule,2017,156,6.76000,5.57981,"195180, 263053, 309832" +7854,202026,Hundreds of Horses,2015,95,7.51772,5.57981,"202026, 304353" +7855,30771,18West,2007,109,7.26835,5.57979, +7856,25409,Salamanca,2006,332,6.13399,5.57977, +7857,4425,Waterloo: Napoleon's Last Battle,2002,444,5.99399,5.57973, +7858,97155,Lords of Baseball,2024,82,7.82272,5.57973, +7859,88464,Repello,2010,227,6.38978,5.57971, +7860,328642,Feralis: Obscure Land,2023,73,8.09863,5.57971, +7861,142364,Palmyra,2013,305,6.18251,5.57970, +7862,6045,I Am Spartacus!,1992,212,6.44693,5.57970,"4217, 6045, 316170" +7863,317430,Corrupt Bargain: The 1824 Presidential Election,2022,93,7.55645,5.57969, +7864,191932,Exposed,2016,257,6.29490,5.57968, +7865,139629,Mythe,2012,619,5.87663,5.57968, +7866,107861,Warriors & Traders,2011,347,6.10937,5.57968, +7867,10904,New Rules for Classic Games,1992,99,7.43620,5.57968,"10904, 69697" +7868,390903,Villagers of the Oak Dell,2023,93,7.55539,5.57965, +7869,7970,Arctic Storm: The Russo-Finnish Winter War 1939-40,1992,160,6.72750,5.57962, +7870,27380,Origo,2007,419,6.01792,5.57961, +7871,26118,Pirates on the High Seas,2006,161,6.71988,5.57959, +7872,186793,Barnyard Roundup,2016,176,6.62176,5.57952, +7873,400203,Snails,2024,70,8.19914,5.57949, +7874,70324,Duel of the Giants: Eastern Front,2010,240,6.34296,5.57944, +7875,23757,NHL Ice Breaker: The Card Hockey Board Game,2006,311,6.16861,5.57943, +7876,303621,Tiny Acrobats,2021,194,6.52328,5.57938, +7877,35179,Globalissimo,2008,183,6.58000,5.57938, +7878,246355,Dead & Breakfast,2018,120,7.10508,5.57937, +7879,6569,Cronberg,2003,468,5.97049,5.57935, +7880,401795,Battle of Gods,2023,91,7.59066,5.57934, +7881,14452,Marengo,1995,141,6.87695,5.57932, +7882,180345,Zena 1814,2015,155,6.75944,5.57930, +7883,86445,"A Victory Complete: The Battle of Tannenberg, 1914",2011,111,7.22658,5.57927,"86445, 376286" +7884,269970,Quiztopia,2019,151,6.79007,5.57926, +7885,119407,Dixit Jinx,2012,1227,5.72816,5.57922, +7886,328289,Roll 'em Fold 'em,2021,244,6.32814,5.57922, +7887,371118,VIP RIP,2022,149,6.80564,5.57922, +7888,25537,Trötofant,2005,147,6.82231,5.57922, +7889,161719,Rise of Cthulhu,2015,211,6.44494,5.57919, +7890,55911,Albion,2009,387,6.05110,5.57917, +7891,159470,Jungle Rumble,2013,213,6.43601,5.57912, +7892,233266,Agents of Mayhem: Pride of Babylon,2019,116,7.15241,5.57912, +7893,404041,FLOWERS,2024,325,6.14062,5.57911, +7894,149169,Heavy Steam,2015,155,6.75624,5.57910, +7895,5045,Rommel's War,1985,117,7.13761,5.57905,"5045, 42641" +7896,183360,Legends of Draxia,2015,137,6.90905,5.57899, +7897,396091,Heroes for Sale,2023,126,7.02460,5.57896, +7898,244076,Cosmos,2021,84,7.74740,5.57896, +7899,421310,Beyond the Horizon,2024,121,7.08430,5.57896, +7900,260264,Glyph Chess,2020,89,7.62472,5.57893, +7901,230860,Faza,2020,99,7.41768,5.57891, +7902,196105,Speechless,2016,168,6.66202,5.57888, +7903,151683,Ars Universalis,2015,124,7.04608,5.57887, +7904,324957,The Snallygaster Situation: Kids on Bikes Board Game,2021,147,6.81651,5.57887, +7905,170756,Fast & Furious: Full Throttle,2015,138,6.89667,5.57884, +7906,270677,Knaster,2019,236,6.34918,5.57881, +7907,186974,Khe Sanh '68,2015,156,6.74391,5.57879, +7908,285627,Trapper Keeper Game,2019,215,6.42414,5.57879, +7909,24321,Panzer Grenadier: Airborne – Introductory Edition,2006,257,6.28543,5.57873,"6529, 24321" +7910,228378,End of the Trail,2018,168,6.65970,5.57873, +7911,1722,Caesar's Legions,1975,359,6.08454,5.57872,"1473, 1722, 18066" +7912,285110,Valiant Wars,2021,94,7.50957,5.57868,"285110, 415949" +7913,17274,Attacktix Battle Figure Game: Star Wars,2005,300,6.18367,5.57868, +7914,35472,Triovision,2008,244,6.32238,5.57867, +7915,264797,Kushi Express,2019,231,6.36409,5.57865, +7916,176816,The Little Prince: Rising to the Stars,2015,386,6.04862,5.57864, +7917,164760,Goblin's Breakfast,2015,146,6.82116,5.57864, +7918,285193,Brief Border Wars,2020,101,7.37475,5.57864, +7919,340858,Platformer,2023,122,7.06475,5.57860, +7920,72204,Alien Uprising,2014,324,6.13812,5.57859, +7921,3369,John Carter: Warlord of Mars,1979,175,6.61451,5.57859, +7922,29638,Hop Hop Hooray!,2007,185,6.55843,5.57858, +7923,285535,5er Finden,2019,227,6.37690,5.57856, +7924,285893,HILO,2019,292,6.19901,5.57854, +7925,212401,Leningrad '41,2017,73,8.06027,5.57854, +7926,298352,The Shining,2020,413,6.01719,5.57853, +7927,23387,Conan Collectible Card Game,2006,118,7.11356,5.57852,"23387, 145674" +7928,246129,Helsinki 1918: German Intervention in the Finnish Civil War,2018,84,7.73415,5.57850, +7929,19918,No Stress Chess,2004,256,6.28574,5.57849, +7930,319680,Rest In Peace,2021,354,6.08989,5.57848, +7931,4848,Blue & Gray II: Four Civil War Battles,1975,174,6.61868,5.57846,"4848, 25476, 25477, 25478, 25479" +7932,39169,"Warhammer 40,000: Codex",1994,134,6.92910,5.57846, +7933,232420,Gier,2017,370,6.06759,5.57846, +7934,378135,Terra Pyramides,2023,125,7.02608,5.57844, +7935,29952,Quinamid,2007,146,6.81774,5.57844, +7936,1205,Luxor,2001,314,6.15446,5.57841, +7937,381083,WitchDraft,2023,152,6.76809,5.57839, +7938,146387,This Is Not a Test: Post-Apocalyptic Skirmish Rules,2013,66,8.31818,5.57839,"146387, 265700" +7939,1187,The Fellowship of the Ring,1983,304,6.17316,5.57838, +7940,43245,Caesar's Gallic War,2009,125,7.02408,5.57834,"43245, 391818" +7941,1543,Dragon Quest,1992,268,6.25243,5.57832, +7942,290378,Escape from Hades,2019,87,7.65402,5.57829, +7943,2213,Revolt on Antares,1981,220,6.39891,5.57827, +7944,23055,Dragons of Kir,2005,187,6.54358,5.57825,"16875, 23055" +7945,333252,Reflets d'acide,2021,68,8.23235,5.57824, +7946,387248,Unrest,2023,180,6.58056,5.57821, +7947,166298,Peptide: A Protein Building Game,2014,238,6.33622,5.57821, +7948,17924,Anno Domini: Frauen,1999,143,6.83916,5.57817, +7949,241478,Kiwara,2018,193,6.51247,5.57817,"14781, 241478" +7950,255512,The Ghosts Betwixt,2021,91,7.55912,5.57815, +7951,276281,Kingdom's Candy: Monsters,2019,167,6.65756,5.57814, +7952,290380,Westphalia,2019,131,6.95382,5.57812, +7953,22472,Prussia's Defiant Stand,2007,160,6.70437,5.57812, +7954,35662,Caesar XL: The Roman Civil War 50 - 44 BC,2008,120,7.07958,5.57811, +7955,155258,Guess the Mess!,2014,157,6.72535,5.57808, +7956,22826,Mutant Chronicles Collectible Miniatures Game,2008,343,6.10312,5.57807, +7957,4746,Dungeons & Dragons Computer Labyrinth Game,1980,372,6.06210,5.57806, +7958,30179,Inside,2007,203,6.46502,5.57805, +7959,1780,Knights of Camelot,1980,183,6.56175,5.57804, +7960,178166,No Time For Heroes,2016,151,6.77017,5.57804, +7961,216357,Kiwetin,2017,283,6.21407,5.57803, +7962,361639,Deckscape: In Wonderland,2022,235,6.34397,5.57803, +7963,138317,Trains and Stations,2013,909,5.77601,5.57802, +7964,83283,Volo,2010,96,7.45208,5.57799, +7965,392192,Unlock!: Short Adventures – The Birmingham Murder,2023,96,7.45188,5.57798, +7966,229496,Pencils & Powers,2017,105,7.29105,5.57798, +7967,406329,Metrorunner,2024,114,7.15526,5.57795, +7968,3724,1809: Napoleon's Danube Campaign,1984,194,6.50474,5.57794, +7969,336357,Cyberpunk Red: Combat Zone,2023,56,8.78750,5.57792,"336357, 418067" +7970,10376,"Ring of Fire: The Fourth Battle for Kharkov, August 1943",1994,94,7.48989,5.57791, +7971,232119,Gravity Warfare,2018,242,6.32046,5.57790, +7972,38837,The Pocket at Falaise,2009,110,7.21091,5.57787, +7973,334599,Violet and the Grumpy Nisse,2022,97,7.42887,5.57784,"309838, 334599" +7974,175209,Darkness Comes Rattling,2015,192,6.51276,5.57782, +7975,5718,Cranium Cariboo,1998,362,6.07367,5.57781, +7976,299933,Dice Flick,2021,262,6.26290,5.57781, +7977,187587,Emporion,2016,127,6.99110,5.57781, +7978,225000,Pirate 21,2017,257,6.27608,5.57780, +7979,372243,SCOPE U-boot,2023,102,7.33618,5.57775, +7980,2844,Throneworld,1997,176,6.59631,5.57772, +7981,266538,Aftershock: San Francisco & Venice,2019,187,6.53579,5.57767, +7982,371330,Luthier,2025,83,7.73576,5.57765, +7983,9803,Operation Michael,2002,131,6.94466,5.57763, +7984,39406,Talat,2008,251,6.29054,5.57758, +7985,9149,Zitternix,2000,462,5.96485,5.57756,"9149, 35873" +7986,9108,Masquerade,2003,409,6.01477,5.57752, +7987,18085,Anno Domini: Kirche & Staat,1998,148,6.78581,5.57752, +7988,383175,Aldebaran Duel,2023,110,7.20309,5.57752, +7989,1879,Arena: Morituri te salutant,1997,95,7.45947,5.57750, +7990,39095,Klickado,2008,342,6.10015,5.57749,"39095, 107649" +7991,281516,Gelato Mio,2019,72,8.05974,5.57748, +7992,22378,Red Storm over the Reich: The Last Days of the Third Reich,2007,110,7.20149,5.57744, +7993,296666,Barbarians at the Gates: The Decline and Fall of the Western Roman Empire 337 - 476,2022,87,7.62989,5.57741, +7994,249404,Itchy Monkey,2018,176,6.59165,5.57738, +7995,29386,"Maori Wars: The New Zealand Land Wars, 1845-1872",2018,99,7.38040,5.57738, +7996,203462,Tales & Games: Aladdin & the Magic Lamp,2016,235,6.33693,5.57738, +7997,148764,Feuerdrachen,2013,271,6.23600,5.57738, +7998,378524,Monsters of Loch Lomond,2023,95,7.45579,5.57736, +7999,218519,Warstones,2017,130,6.94949,5.57733, +8000,7576,Thingamajig,2003,221,6.38439,5.57732, +8001,186435,Zimby Mojo,2016,176,6.59068,5.57732, +8002,294237,Goat 'n' Goat,2019,140,6.85114,5.57731, +8003,7420,Star Wars Miniatures Battles,1991,153,6.74281,5.57730, +8004,13729,Flandern 1302,2004,543,5.90569,5.57730, +8005,344401,"Warhammer 40,000: Fireteam",2021,77,7.89221,5.57727, +8006,370649,Combi-Nations,2022,131,6.93779,5.57726, +8007,17895,For Whom the Bell Tolls,1995,123,7.02602,5.57725, +8008,127438,Star Wars: Angriff der Klonkrieger,2012,240,6.31963,5.57724, +8009,177815,Burger Boss,2015,203,6.45488,5.57723, +8010,4121,Road to the Rhine,1979,121,7.04959,5.57723, +8011,289916,T-Rex's Holiday,2019,149,6.77282,5.57723,"289916, 326051" +8012,89767,Off the Dead: Chapitre 1 – Morts à Venice Beach,2011,161,6.68261,5.57715, +8013,313951,Kurrüf,2017,82,7.74756,5.57715,"271390, 313951" +8014,154472,Stalingrad: Verdun on the Volga,2016,77,7.88442,5.57702, +8015,219509,Captain Silver,2017,237,6.32663,5.57702, +8016,204680,Burrows and Badgers: A Skirmish Game of Anthropomorphic Animals,2016,62,8.44113,5.57698, +8017,120305,Farmerama,2012,316,6.13870,5.57695, +8018,50719,RisiKo! Prestige,1998,227,6.35872,5.57693, +8019,151450,Bull Moose,2015,96,7.42521,5.57692, +8020,244948,Brains Family: Burgen & Drachen,2018,256,6.26982,5.57690, +8021,251722,Triad,2018,110,7.18949,5.57690, +8022,174231,Badlands: Outpost of Humanity,2017,177,6.57886,5.57688, +8023,3662,BattleFleet Mars: Space Combat in the 21st Century,1977,189,6.51524,5.57688,"3662, 217200" +8024,540,Sisimizi,1996,253,6.27767,5.57686, +8025,20772,King of Chicago,2005,188,6.51926,5.57681, +8026,19464,Soccer Tactics World,2006,353,6.07836,5.57676, +8027,159515,Operation F.A.U.S.T.,2015,347,6.08689,5.57674, +8028,23878,Star Wars: Stolen Plans Card Game,2006,189,6.51328,5.57673, +8029,154498,Till Dawn,2014,301,6.16472,5.57672,"58010, 154498" +8030,270350,Fickle,2019,135,6.88763,5.57672,"270350, 431478" +8031,10244,Berlin: Red Victory,2006,78,7.84536,5.57671, +8032,286147,Super Farmer: The Card Game,2019,93,7.47849,5.57667, +8033,349258,Live Mission Game: The Heist – Crime Does Pay,2021,106,7.24418,5.57663,"349258, 376487" +8034,5607,Battle of the Bulge,1991,259,6.25907,5.57662, +8035,27736,Dead of Night,2007,128,6.95742,5.57662, +8036,180867,Kitty Paw,2015,750,5.81226,5.57661, +8037,297234,Taskmaster: The Board Game,2018,112,7.15402,5.57659, +8038,353684,Remolacha,2022,78,7.84026,5.57654, +8039,148759,Time Masters,2014,273,6.22326,5.57654, +8040,86169,King's Valley,2006,123,7.01179,5.57653,"86169, 86170, 173149, 173325, 187527, 223162, 342568, 364012, 365196, 400770" +8041,346467,Hunt A Killer: Nancy Drew – Mystery at Magnolia Gardens,2021,112,7.15268,5.57653, +8042,593,Favoriten,1989,220,6.37868,5.57650,"593, 207063" +8043,387472,Strike: Counter Strike – 4th Armored Division vs Panzer Lehr along the Saar,2023,61,8.46885,5.57648, +8044,209714,Splatter SHOOT,2016,113,7.13749,5.57647, +8045,245704,Anchors Aweigh!,2018,199,6.46276,5.57646, +8046,216,Atlanteon,1992,758,5.80912,5.57645, +8047,284987,Lumeria: War of the Gods,2021,113,7.13711,5.57645,"284987, 381063, 381065" +8048,286656,Mooncake Master,2019,159,6.68560,5.57645,"286656, 400265" +8049,403000,Traitors Aboard,2023,140,6.83574,5.57643, +8050,1356,Hexen Rennen,2001,248,6.28730,5.57643, +8051,208340,Congo: Adventures in the Heart of Africa,2016,60,8.51333,5.57639, +8052,357778,Journey Adventure Quest,2022,63,8.37302,5.57638, +8053,3667,Star Fleet Battle Manual,1977,123,7.00813,5.57634,"3667, 8046, 31873" +8054,724,Chill: Black Morn Manor,1985,434,5.98212,5.57634, +8055,256381,Fado: Duetos e Desgarradas,2018,112,7.14856,5.57634, +8056,114504,Carnevale: Vicious Fighting Along the Canals of Venice,2011,76,7.89276,5.57632,"114504, 346138" +8057,22947,Exxit,2006,141,6.82489,5.57632, +8058,145086,Shinobi Clans,2013,284,6.19613,5.57631, +8059,218576,Fantastic Park,2017,232,6.33476,5.57628, +8060,131017,La Bérézina 1812,2012,71,8.05352,5.57625, +8061,191070,Dream Islands,2016,223,6.36477,5.57623, +8062,276205,Philosophia: Dare to be Wise,2020,139,6.84092,5.57621, +8063,206450,TOP Kitchen,2017,194,6.48196,5.57618, +8064,220987,Bloody Monday,2017,77,7.85818,5.57617, +8065,168549,Night Clan,2014,227,6.34960,5.57612,"168549, 170577, 294726, 369553" +8066,193981,Downfall,2019,230,6.33854,5.57603, +8067,148309,Gazala: The Cauldron,2013,105,7.24571,5.57600, +8068,358790,Farm Club,2022,328,6.11049,5.57600, +8069,274429,The Queen of Hansa,2019,126,6.96702,5.57598, +8070,316407,Allegra,2020,219,6.37602,5.57596,"316407, 418731" +8071,115105,Kittens in a Blender,2011,2304,5.65199,5.57595,"115105, 336497" +8072,349943,Museum: Deluxe Edition,2022,68,8.15221,5.57594, +8073,126025,Rise of the Zombies!,2013,203,6.43884,5.57594, +8074,4395,Bean Trader,2002,765,5.80488,5.57593, +8075,172600,Dungeon Busters,2014,603,5.86628,5.57591, +8076,13924,1829 Mainline,2005,154,6.71266,5.57589, +8077,19537,Sun of York: The War of the Roses 1453-1485,2005,201,6.44657,5.57587,"19537, 235980" +8078,371055,Buffet Boss,2023,128,6.94297,5.57586, +8079,209567,Upstream,2017,258,6.25398,5.57585, +8080,41849,1866: The Struggle for Supremacy in Germany,2016,132,6.90076,5.57582, +8081,5014,Hands Up,2002,475,5.94389,5.57580, +8082,1572,Situation 4,1968,190,6.49595,5.57579,"1572, 1637" +8083,313723,Samoa,2020,174,6.58038,5.57578, +8084,1575,Gettysburg,1977,374,6.04261,5.57570, +8085,127275,Fairy Land,2012,190,6.49474,5.57570, +8086,2472,Grave Robbers from Outer Space,2001,1529,5.68989,5.57569,"2472, 3947, 6583, 6584, 13493, 23654, 30261, 66641, 178826, 401188, 413550" +8087,126789,Risk: Halo Legendary Edition,2012,245,6.28837,5.57569, +8088,182385,Rome: Rise to Power,2015,236,6.31554,5.57569, +8089,300509,Kiitos,2020,97,7.37526,5.57567, +8090,76810,Last Call: The Bartender Game,2010,309,6.14045,5.57566, +8091,704,Montgolfière,1992,610,5.86171,5.57565, +8092,10186,JENA!,1996,122,7.00574,5.57563, +8092,4202,GD '41,1996,122,7.00574,5.57563, +8094,213421,Monster Kit,2016,147,6.76218,5.57561, +8095,12414,La Batalla de los Arapiles,1995,69,8.10290,5.57560, +8096,67878,Dungeon Crawler,2010,158,6.67911,5.57558, +8097,144709,Sukimono,2012,164,6.63872,5.57558, +8098,269466,Sinners,2019,84,7.65087,5.57557, +8099,302269,Godtear: The Borderlands Starter Set,2019,86,7.60256,5.57557, +8100,223096,Raid on Taihoku,2017,178,6.55449,5.57554,"223096, 266652, 287663" +8101,37982,God Dice,2008,236,6.31341,5.57549, +8102,403221,Ticket To Ride: Paris,2024,142,6.80132,5.57546, +8103,215918,Oh Captain!,2017,394,6.01721,5.57545, +8104,9237,Perryville,1992,108,7.18704,5.57545, +8105,379153,Pacifica,2023,167,6.61749,5.57544, +8106,177844,Sector 6,2017,430,5.97967,5.57537, +8107,23915,Solitaire Caesar,2006,155,6.69697,5.57536, +8108,125318,Swords of Sovereignty: Bouvines 1214 – Worringen 1288,2012,75,7.89333,5.57536, +8109,360033,An Empty Throne,2022,109,7.17018,5.57536, +8110,27574,Island Fortress,2013,245,6.28473,5.57534, +8111,363487,Sherlock: Das Familiengeheimnis,2022,111,7.14018,5.57530,"363486, 363487, 363489, 406126" +8112,6860,"River of Death: Battle of Chickamauga, September 19-20, 1863",1999,93,7.44301,5.57530, +8113,168882,Race to the North Pole,2015,351,6.07016,5.57530, +8114,311004,RagnaRok Star,2021,95,7.40358,5.57529, +8115,993,An den Ufern des Nils,1994,222,6.35766,5.57529, +8116,13503,Dicke Dämonen,2004,162,6.64679,5.57525, +8117,107638,Master Merchant,2011,343,6.08127,5.57524, +8118,361540,Quest Calendar: The Voidspark Chronicles,2022,94,7.42128,5.57523, +8119,238012,Semper Fidelis: Bitwa o Lwów 1918-1919,2017,84,7.64048,5.57521, +8120,231920,Holdfast: Tunisia 1942-43,2018,67,8.16269,5.57515, +8121,315326,ぬくみ温泉繁盛記 (Nukumi Onsen Hanjouki),2020,99,7.32626,5.57515, +8122,108783,Dr. Shark,2011,330,6.10030,5.57513, +8123,143487,In Her Majesty's Name: Steampunk Skirmish Wargaming Rules,2013,96,7.38021,5.57512,"113334, 143487, 194808" +8124,226592,Blackwood,2017,200,6.44150,5.57512, +8125,15238,International Cricket,1985,60,8.46250,5.57510,"15238, 123448" +8126,198775,Yesss!,2016,158,6.67155,5.57510, +8127,194986,Deep Future,2016,78,7.79594,5.57509, +8128,88079,Dux Bellorum: Arthurian Wargaming Rules AD367-793,2012,75,7.88453,5.57509,"19271, 88079" +8129,193193,Watchmen of Destiny,2016,260,6.24115,5.57507, +8130,41006,Ordo,2009,101,7.28941,5.57506, +8131,4449,The Battle of Monmouth,1982,146,6.76096,5.57506, +8132,266756,Devil Boats: PT Boats in the Solomons,2021,113,7.10708,5.57505, +8133,399374,For One: Kniffel,2023,90,7.49856,5.57505, +8134,318551,Fiesta Mexicana,2020,156,6.68462,5.57504, +8135,244169,Tears of a Goddess,2015,196,6.45770,5.57500, +8136,344620,Pocket Master Builder,2022,175,6.56343,5.57499, +8137,174975,"Take The ""A"" Chord",2015,215,6.37952,5.57499, +8138,25196,Rummikub Six Player,1992,155,6.69024,5.57494, +8139,100172,Seven Sisters,2012,156,6.68292,5.57493, +8140,23829,Dixie: Shiloh,1994,185,6.50886,5.57490, +8141,109801,Sticky Stickz,2011,265,6.22691,5.57490,"109801, 206170" +8142,402744,Toil & Troublez,2023,120,7.01430,5.57488,"363892, 402744" +8143,311894,Cartaventuras,2021,98,7.33575,5.57481, +8144,23828,Dixie: Gettysburg,1994,189,6.48778,5.57480, +8145,2920,Highway to the Kremlin: Napoleon's March on Moscow,2001,85,7.60412,5.57478, +8146,340465,Holiday Hijinks #3: The Pumpkin Problem,2021,86,7.58023,5.57477, +8147,371091,Mycelium: A Mushling Game,2023,143,6.78042,5.57474, +8148,211,Times to Remember,1992,242,6.28702,5.57473, +8149,34152,Grind,2009,237,6.30203,5.57472, +8150,278305,Battlelands,2019,213,6.38380,5.57471, +8151,99081,Bears!,2011,933,5.75940,5.57470, +8152,123408,Serpent's Tongue,2013,220,6.35777,5.57468, +8153,26472,Dragon Parade,2007,687,5.82541,5.57467, +8154,18212,Dungeons & Dragons Adventure Game,1999,190,6.48085,5.57464, +8155,5992,Operation Grenade: The Battle for the Rhineland 23 Feb. - 5 Mar. '45,1981,190,6.48053,5.57462, +8156,358626,Sonic Super Teams,2022,170,6.58688,5.57460, +8157,229742,Zoo Ball,2017,238,6.29739,5.57458, +8158,357873,The Old King's Crown,2024,85,7.59788,5.57456, +8159,387263,Virtual Revolution,2023,115,7.06983,5.57454, +8160,226322,That's a Question!,2017,1411,5.69634,5.57452, +8161,192288,Kido Butai: Japan's Carriers at Midway,2016,108,7.16574,5.57450, +8162,7922,The 6 Days of Glory,1997,151,6.71258,5.57450, +8163,302840,Carcata,2020,217,6.36611,5.57447, +8164,262198,Sea Evil,2018,78,7.77563,5.57443, +8165,244586,Sellswords & Spellslingers,2018,66,8.17576,5.57443, +8166,5383,MechWar '77: Tactical Armored Combat in the 1970's,1975,227,6.33040,5.57439,"5383, 8424" +8167,271002,Myraclia,2020,103,7.24000,5.57437, +8168,251349,Miskatonic University: The Restricted Collection,2019,328,6.09735,5.57436, +8169,235767,Sorcerer & Stones,2017,226,6.33327,5.57435, +8170,251632,Bee Lives: We Will Only Know Summer,2019,155,6.68068,5.57434, +8171,365594,Trickdraw,2022,133,6.86343,5.57432, +8172,199418,Skeptics,,74,7.89054,5.57430, +8173,4331,Quads,1996,289,6.16737,5.57430, +8174,285992,Pac-Man: The Board Game,2019,367,6.04124,5.57429, +8175,317643,Kyoto,2020,224,6.33931,5.57429, +8176,344841,All Is Bomb,2021,75,7.85867,5.57427, +8177,236332,Animator vs Animation,2018,50,9.00000,5.57425, +8178,263085,Darksiders: The Forbidden Land,2020,71,7.98643,5.57424, +8179,338164,Nanolith,2024,62,8.33548,5.57422, +8180,231476,Robotech: Attack on the SDF-1,2018,75,7.85640,5.57420, +8181,29375,"Redvers' Reverse: The Battle of Colenso, 1899",2016,93,7.41462,5.57420,"29375, 272233" +8182,255042,Medieval Realms,2019,129,6.90101,5.57420, +8183,54201,The d6 Shooters,2009,182,6.51456,5.57419, +8184,136229,War Stories: Liberty Road,2014,118,7.02458,5.57419,"89880, 136229" +8185,224288,Daring Dustbunnies,2019,75,7.85587,5.57418, +8186,201812,Mageling,2019,102,7.25150,5.57417, +8187,32143,Kazaam,2008,233,6.30837,5.57416, +8188,313349,Indus 2500 BCE,2020,106,7.18764,5.57414, +8189,337269,Terra Futura,2021,220,6.35145,5.57413, +8190,348972,Hidden Games Tatort: Königsmord,2021,84,7.60952,5.57412, +8191,265771,Dance Card!,2021,87,7.53793,5.57407, +8192,370418,Animals Gathering,2023,123,6.96309,5.57406, +8193,358663,Pocket Book Adventures,2023,71,7.97887,5.57402, +8194,843,Circus Minimus,2000,221,6.34579,5.57395, +8195,36623,Second World War at Sea: Coral Sea,2010,95,7.36937,5.57394, +8196,231367,Dunkirk: France 1940,2018,88,7.51136,5.57391, +8197,154098,1914: Germany at War,2015,68,8.08088,5.57390, +8198,124356,Richelieu,2012,156,6.66633,5.57388, +8199,7637,The Fall of France,1981,131,6.87443,5.57386, +8200,235841,Telma,2017,116,7.04224,5.57384, +8201,169436,Speedy Words,2014,308,6.12685,5.57384,"169436, 331910, 381893, 382465" +8202,351869,Adventure Games: Expedition Azcana,2022,91,7.44505,5.57382, +8203,382826,Chrono Fall: At the End of Space and Time,2024,65,8.19308,5.57381, +8204,173648,Booty,2015,146,6.73986,5.57380, +8205,383525,Berserkers,2023,63,8.27460,5.57376, +8206,31553,COBRA: The Normandy Campaign,2008,123,6.95691,5.57375, +8207,154857,Emergence Event,2015,189,6.47381,5.57374, +8208,418238,Ker Nethalas: Into the Midnight Throne,2024,60,8.40833,5.57373, +8209,99120,The Walking Dead: The Board Game,2011,1185,5.71722,5.57372,"99120, 156927" +8210,28705,Pizza Box Baseball,2008,268,6.20817,5.57371, +8211,2078,"Aegean Strike: Land, Air, and Sea Combat in the Eastern Mediterranean",1986,196,6.44118,5.57371, +8212,284751,Armata Strigoi,2019,178,6.52888,5.57370,"284751, 401395" +8213,38707,Bushido: Der Weg des Kriegers,2008,278,6.18507,5.57368, +8214,148557,"Par le feu, le fer et la Foi",2014,88,7.50398,5.57364,"148557, 242354, 358614" +8215,326054,冷たい彼女が目覚める前に (Embalming Girl),2020,123,6.95447,5.57363, +8216,331228,Wicked & Wise,2022,137,6.81325,5.57362, +8217,333405,Claim Kingdoms: Das grosse Duell um den Thron!,2021,215,6.36326,5.57360,"260238, 312456, 333405" +8218,415513,Life in Reterra,2024,172,6.56053,5.57359, +8219,126274,Enclave: Zakon Krańca Świata,2013,239,6.28347,5.57355, +8220,360879,Amygdala,2023,152,6.68920,5.57352, +8221,230424,Crisis at Steamfall,2019,215,6.36185,5.57348, +8222,197588,Xibalba,2016,182,6.50462,5.57347, +8223,31623,Hannibal Barkas,2007,101,7.24950,5.57339, +8224,88559,Bullfrog Goldfield,2011,153,6.67974,5.57338, +8225,96310,Napoleon's War II: The Gates of Moscow,2011,92,7.41304,5.57337, +8226,330584,Eldfall Chronicles,2023,44,9.41818,5.57334,"330584, 381996" +8227,283795,Würfel-WG,2019,239,6.28061,5.57328, +8228,379761,Natera: New Beginning,2025,64,8.21406,5.57327, +8229,221198,Dicey Peaks,2017,261,6.22081,5.57327, +8230,7989,Spooks,2003,416,5.97938,5.57324,"7989, 171211" +8231,286295,Quantik,2019,380,6.01774,5.57322, +8232,352003,Lipogram,2021,104,7.19663,5.57319, +8233,239808,No Escape,2018,163,6.60899,5.57319, +8234,283935,Lost Cities: Auf Schatzsuche,2019,235,6.29157,5.57318,"126255, 283935" +8235,363531,Plutocracy,2022,131,6.86135,5.57316, +8236,197071,Gambler × Gamble!,2016,146,6.72884,5.57315, +8237,269623,Unicorn Glitterluck: Cloud Stacking,2019,218,6.34674,5.57311, +8238,162292,The Draugr,2014,246,6.25799,5.57304, +8239,330478,Power Failure,2021,159,6.63239,5.57302,"260980, 330478" +8240,44614,Who Would Win,2009,317,6.10435,5.57302, +8241,40667,Ring-O Flamingo,2009,263,6.21322,5.57299, +8242,114800,Rune Wars,2012,99,7.27374,5.57299, +8243,247950,Campaigns of 1777,2019,82,7.62600,5.57298, +8244,188614,Simon's Cat Card Game,2016,417,5.97653,5.57296, +8245,325545,Drone Home,2020,139,6.78345,5.57294,"321603, 325545" +8246,378040,1%: A Game of Strategic Chance,2022,111,7.08829,5.57292,"378040, 421041" +8247,328237,18SJ: Railways in the Frozen North,2021,101,7.23772,5.57289, +8248,185456,Lee's Invincibles: Gettysburg Campaign of 1863,2016,103,7.20534,5.57289,"185383, 185456, 185457, 219926" +8249,278401,Clash of Spears: Rules for Skirmish Battles in Ancient Times,2020,47,9.15021,5.57289, +8250,16197,Rivoli 1797,1997,66,8.11970,5.57287, +8251,302268,Godtear: Eternal Glade Starter Set,2019,87,7.50368,5.57282, +8252,345863,Hunters of the Lost Creatures,2023,124,6.92742,5.57282, +8253,233590,Triora: City of Witches,2019,83,7.59639,5.57281, +8254,314125,Factory 42,2021,162,6.60951,5.57280, +8255,342200,Confusing Lands,2024,99,7.26869,5.57278, +8256,358133,Black Hole Rainbows,2022,104,7.18713,5.57278, +8257,57803,Forlorn: Hope,2010,143,6.74685,5.57278, +8258,243636,Immortal 8,2018,100,7.25160,5.57278, +8259,322522,Rainbow Pirates,2020,187,6.47053,5.57278, +8260,280994,Shovel Knight: Dungeon Duels,2021,124,6.92581,5.57273, +8261,66896,American Carrom,1892,177,6.52045,5.57272, +8262,212807,Backpacks & Blisters (Second Edition),2017,212,6.36392,5.57271,"3100, 212807" +8263,335492,7 Moons: Heroes of Dragon Reach,2021,91,7.41593,5.57271, +8264,414546,The Cats of Mont Saint Michel,2024,59,8.41525,5.57270, +8265,302571,Codex: L'Ultime secret de Léonard de Vinci,2020,69,8.00261,5.57268, +8266,1251,New World,1990,366,6.03033,5.57262, +8267,216482,High Tide,2016,421,5.97040,5.57260, +8268,238700,Lanzeloth,2017,126,6.90159,5.57259, +8269,1772,Asteroid,1980,167,6.57521,5.57259, +8270,224416,The Legend of Zelda: Clockwork Realm,2018,58,8.45862,5.57256, +8271,228101,Pajarracos,2018,226,6.31316,5.57256,"228101, 355205" +8272,229235,Guardian's Call,2019,253,6.23403,5.57255, +8273,186990,Suez '56: Anglo-French Intervention in Egypt,2015,120,6.96667,5.57252, +8274,357963,Fire In The Hole,2022,117,7.00235,5.57252, +8275,2629,Ramses II,1997,1000,5.73981,5.57252,"2629, 8295, 236485, 274792" +8276,418826,Dark Blood,2025,46,9.20870,5.57251, +8277,6558,The Secret Door,1991,318,6.09835,5.57249, +8278,19505,Catchphrase,1974,240,6.26896,5.57246, +8279,3034,Cluedo: Super Sleuth,1995,305,6.12049,5.57246, +8280,164627,Brewin' USA,2015,171,6.54940,5.57242,"164627, 243996" +8281,204592,The Mysterious Forest,2016,571,5.86490,5.57240, +8282,146943,Warlock,2013,189,6.45582,5.57238, +8283,356954,Table Golf Association,2022,112,7.06248,5.57235, +8284,348463,ECO: Coral Reef,2022,84,7.55873,5.57233, +8285,305,Der Fliegende Holländer,1992,353,6.04490,5.57232, +8286,154677,Ave Cesar,2013,146,6.71438,5.57229, +8287,85245,Magician's Kitchen,2010,274,6.18066,5.57226, +8288,5831,Britain Stands Alone,1994,154,6.65455,5.57225,"5831, 38831" +8289,207899,Knights Club: The Bands of Bravery,2012,162,6.60062,5.57222,"207899, 269749, 282018, 316616" +8290,12736,The Battle for Dresden 1813,1995,100,7.23800,5.57221, +8291,209423,Zagor: Odissea Americana,2016,81,7.62840,5.57220, +8292,128098,Clash of Wills: Shiloh 1862,2012,161,6.60652,5.57219, +8293,4510,Johnny Reb III: Regimental Grand Tactical American Civil War Miniatures Rules,1996,98,7.27143,5.57219, +8294,263763,Stworze International Edition,2018,465,5.93025,5.57218,"231966, 263763, 339616" +8295,364579,Joomo,2022,145,6.72039,5.57217, +8296,6559,Glory II: Across the Rappahannock,2002,165,6.58121,5.57217, +8297,302914,Dream Cruise,2021,140,6.76125,5.57217, +8298,54300,Bravery in the Sand,2009,95,7.32421,5.57215, +8299,363614,Switchbacks,2022,207,6.37621,5.57215, +8300,182050,Germania Magna: Border in Flames,2016,229,6.29891,5.57215, +8301,382828,Blob Party,2023,127,6.88209,5.57212, +8302,260168,Volleyball High,2019,113,7.04425,5.57211, +8303,23400,Napoleon at the Crossroads,2006,91,7.40000,5.57211, +8304,233033,Snowbirds,2017,110,7.08364,5.57208, +8305,299151,Deck of Wonders,2022,192,6.43802,5.57207, +8306,173514,Meeple Quest,2021,45,9.26667,5.57207, +8307,271270,12 Patrols,2019,191,6.44215,5.57204, +8308,86128,Barons,2011,486,5.91392,5.57203, +8309,189160,Top That!,2016,298,6.12933,5.57200, +8310,297702,Fury at Midway,2020,102,7.19955,5.57197,"281418, 297702" +8311,207883,OutLawed!,2017,161,6.60298,5.57196, +8312,158122,Migration,2014,120,6.95475,5.57193,"143663, 158122" +8313,6197,The Sun of Austerlitz,2003,96,7.30000,5.57192, +8314,307033,Space Marine Adventures: Rise of the Orks,2020,109,7.09312,5.57188, +8315,72298,Le Lion et l'Epée,2010,86,7.49953,5.57187, +8316,15049,Ulti,,70,7.94000,5.57186, +8317,3015,Claim,1983,202,6.39248,5.57186,"3015, 12061, 28772" +8318,37875,Iwo Jima: Rage Against the Marines,2008,118,6.97627,5.57184,"19391, 37875" +8319,333481,GigaWatt,2022,100,7.22790,5.57179, +8320,342805,Hacktivity,2024,63,8.19921,5.57176, +8321,148144,Dreaming Spires,2014,214,6.34523,5.57176, +8322,193818,Basketball Age,2016,89,7.43146,5.57175,"118964, 193818" +8323,13976,Feudo,2004,325,6.08092,5.57174, +8324,17537,"The Battle of Corinth: Standoff at the Tennessee, October 3-4, 1862",1981,72,7.87000,5.57173, +8325,7718,The Penguin Ultimatum,2003,268,6.18881,5.57170, +8326,369301,Día de Playa,2022,84,7.54048,5.57169, +8327,244814,Embark,2018,125,6.89466,5.57169, +8328,9112,Omaha: The Bloody Beach,1991,106,7.13160,5.57168, +8329,299594,Megapulse,2025,54,8.63333,5.57167, +8330,287217,Pirates Under Fire,2019,119,6.96092,5.57167, +8331,228234,HATSUDEN,2017,211,6.35504,5.57166, +8332,2553,Bali,1954,183,6.47486,5.57165, +8333,22863,Luck of the Draw,2006,168,6.55462,5.57159, +8334,197946,Wreck and Ruin,2019,71,7.89742,5.57159, +8335,19081,Skyline of the World,2005,201,6.39303,5.57158, +8336,380183,Mezen,2023,137,6.77664,5.57157, +8337,308566,Nova Lux,2021,100,7.22243,5.57157,"308566, 317720, 348280" +8338,166436,In Flanders Field,2014,264,6.19689,5.57157,"166436, 190737" +8339,329548,Rise of The Gnomes,2021,69,7.96377,5.57156, +8340,144955,Murder in Greenrock Village: Theatre,2009,132,6.82197,5.57155, +8341,347755,Making Manhattan,2021,109,7.08578,5.57155, +8342,30057,Burger Joint,2009,595,5.84887,5.57154, +8343,2201,Redemption,1995,310,6.10382,5.57153, +8344,449,The Great Balloon Race,1991,282,6.15656,5.57152, +8345,26961,Moai,2007,259,6.20835,5.57150, +8346,93537,Giza: The Great Pyramid,2012,219,6.32466,5.57150, +8347,34444,Misterio,1984,672,5.81689,5.57149,"10293, 15791, 22354, 34444, 35170, 160733" +8348,172166,Lumis: Der Pfad des Feuers,2015,200,6.39600,5.57149,"172166, 392825" +8349,7164,"Warhammer 40,000 Collectible Card Game",2001,325,6.07880,5.57148,"7164, 8863, 255256" +8350,364276,Adrift: A Puzzletale,2022,71,7.89296,5.57145, +8351,1269,Skip-Bo,1967,8804,5.59015,5.57144,"1269, 40507, 116821, 286312, 324189, 375159" +8352,6814,"8th Army: Operation Crusader – The Winter Battles for Tobruk, 1941",1984,133,6.81000,5.57141, +8353,6617,Rapidough,1994,274,6.17245,5.57139, +8354,55158,Luna Llena: Full Moon,2009,223,6.30973,5.57138, +8355,230514,Tadmor,2017,107,7.10982,5.57136, +8356,322739,Platypus,2021,215,6.33685,5.57135, +8357,177542,Shuffle Heroes,2015,190,6.43747,5.57134, +8358,233960,Ali Baba,2017,270,6.18037,5.57129, +8359,192924,StoryLine: Fairy Tales,2016,275,6.16909,5.57127,"192924, 205263" +8360,359175,It's a Bomb!,2022,103,7.16710,5.57126, +8361,93540,Five Points: Gangs of New York,2013,250,6.22872,5.57125, +8362,168792,Secret Weapons of the Third Reich,2015,132,6.81644,5.57125, +8363,38923,"The God Kings: Warfare at the Dawn of Civilization, 1500 – 1260BC",2012,134,6.79776,5.57125, +8364,1555,Dungeon Dice,1977,445,5.94034,5.57121, +8365,416086,AI: 100% Human,2024,86,7.48093,5.57120, +8366,22684,Race the Wind,2007,206,6.36801,5.57116, +8367,265947,"Battle of Issy, 1815",2018,103,7.16456,5.57115, +8368,261316,Waroong Wars (Second Edition),2018,118,6.96186,5.57114,"185987, 261316" +8369,310301,Kapadokya,2021,107,7.10467,5.57113, +8370,172866,Dragon Punch,2014,366,6.01929,5.57111, +8371,377185,Безмолвный свидетель (Silent Witness),2022,88,7.43443,5.57108, +8372,136146,Hell's Gate,2013,126,6.87222,5.57107,"128849, 136146" +8373,223454,Corona de Hierro,2017,94,7.31479,5.57106, +8374,2478,Quirks,1980,324,6.07670,5.57102, +8375,256626,Deus lo Vult,2020,107,7.10187,5.57101, +8376,276654,7 Souls,2020,150,6.66233,5.57097, +8377,250539,The Potion,2018,439,5.94380,5.57096,"235696, 250539" +8378,235511,Team UP!,2018,207,6.36159,5.57095, +8379,375616,Sirens,2024,108,7.08565,5.57092, +8380,369341,Galaxy Postman,2024,66,8.04939,5.57091, +8381,367521,Dice Colony,2022,81,7.59012,5.57090, +8382,4146,"Arcola: The Battle for Italy, 1796",1979,227,6.29119,5.57088, +8383,301011,Starlink,2020,222,6.30734,5.57088, +8384,342542,Less Is More,2021,141,6.72965,5.57083, +8385,230785,Dream Catchers,2019,165,6.56106,5.57083, +8386,124000,Inception,2011,151,6.65287,5.57083, +8387,184663,Covalence: A Molecule Building Game,2016,255,6.21137,5.57081, +8388,8944,Triple Yahtzee,1972,438,5.94373,5.57081, +8389,177921,Death Wish,2017,169,6.53663,5.57076, +8390,4914,"Great War at Sea: 1898, The Spanish American War",2000,140,6.73664,5.57076,"4914, 133243" +8391,224319,Flanx,2017,248,6.22883,5.57075, +8392,341275,Kuiperium,2024,54,8.59259,5.57074, +8393,287174,The Hobbit: An Unexpected Party,2020,119,6.94160,5.57072, +8394,238136,Elementum,2018,305,6.10558,5.57072,"238136, 270635" +8395,3246,Albion: Land of Faerie,1981,145,6.69552,5.57070, +8396,251832,Space Cats Fight Fascism,2018,88,7.42386,5.57070, +8397,341315,Olé Guacamole,2021,204,6.36998,5.57069, +8398,1160,Boom Town,1990,167,6.54701,5.57068, +8399,19212,Island Of D 2: The Shadow of Dawn,2005,158,6.60253,5.57068, +8400,40455,Skirmish Wars: Advance Tactics,2009,82,7.55812,5.57065,"40455, 184507" +8401,135530,Gettysburg 150,2013,99,7.21677,5.57065, +8402,388554,"Valley of Tears: The Yom Kippur War, 1973",2023,60,8.28667,5.57064, +8403,291008,Fou Fou Fou!,2019,176,6.49591,5.57060,"291008, 336592" +8404,225274,Deep Space D-6: Armada,2021,225,6.29436,5.57059, +8405,772,Ausbrecher AG,1985,313,6.09083,5.57059,"772, 3368" +8406,225976,Emperor's Choice,2017,116,6.97414,5.57058, +8407,307996,6x6 TALES,2020,77,7.68442,5.57056, +8408,169926,To the Strongest!,2014,68,7.96324,5.57053,"169926, 253271" +8409,216630,Traveller Customizable Card Game: Two Player Starter Set,2017,106,7.10519,5.57052,"216630, 255400" +8410,214123,Moa,2018,208,6.35259,5.57052, +8411,142197,The Phantom Society,2013,783,5.77826,5.57052, +8412,224675,"Frutti di Mare: Veni, Vidi, Antipasti!",2017,203,6.37143,5.57048, +8413,1590,Stocks & Bonds,1964,750,5.78722,5.57047,"1590, 3731" +8414,407805,Caution Signs,2024,92,7.33696,5.57045, +8415,220368,Sword Art Online Board Game: Sword of Fellows,2017,260,6.19535,5.57043, +8416,205877,Bolt Action: Band of Brothers,2016,61,8.23361,5.57042, +8417,142451,Cornish Smuggler,2013,545,5.86846,5.57042, +8418,246728,Gunfights & Gamblin',2018,66,8.03030,5.57038,"246728, 412439" +8419,313835,Deep Shelf,2023,71,7.85634,5.57036, +8420,285208,World of Draghan: Sneaky Ol' Dragons,2019,81,7.57407,5.57036, +8421,12459,Fortress Berlin,2004,163,6.56595,5.57035, +8422,281198,The Elder Scrolls: Call to Arms,2019,115,6.98118,5.57033, +8423,174959,The First Jihad: The Rise of Islam 632-750,2020,88,7.41364,5.57032, +8424,771,Kings and Castles,2000,151,6.64437,5.57031, +8425,351648,Dragons Down,2024,53,8.62918,5.57028, +8426,275800,Save the Meeples,2019,200,6.38087,5.57028, +8427,5296,Waterloo,1962,465,5.91882,5.57026, +8428,20000,Anno Domini: Gesundheit und Ernährung,2005,140,6.72786,5.57026,"20000, 205345, 205348" +8429,180906,Portal of Morth,2015,148,6.66486,5.57023, +8430,334267,ヒーフー!! (Hii Fuu!!),2021,104,7.12740,5.57021, +8431,364733,Grimm World,2024,50,8.80800,5.57018,"317402, 364733" +8432,343067,Tatort Meer Fall 1: Die Vogelinsel,2021,69,7.91594,5.57017, +8433,183780,Heart of Darkness: An Adventure Game of African Exploration,2021,99,7.20505,5.57016, +8434,17204,Control Nut!,2005,224,6.29131,5.57004, +8435,271275,"North Africa: Afrika Korps vs Desert Rats, 1940-42",2021,75,7.72400,5.57003, +8436,209863,The Fall Of The Third Reich,2016,73,7.78219,5.57001, +8437,144665,TSWW: Barbarossa,2020,57,8.40175,5.56997,"78468, 102773, 144665, 144666, 144677, 145065, 159631, 198655, 198656, 228614, 303862, 303864, 303866, 303867, 303869" +8438,4975,Pick Two!,1991,200,6.37675,5.56995, +8439,1912,World Cup Tournament Football,1993,206,6.35304,5.56993, +8440,313064,Glory Days Boxing,2019,48,8.92917,5.56990, +8441,191191,Retreat to Darkmoor,2016,198,6.38419,5.56989, +8442,426767,L'Ordre de Veiel: Deckbuilding Tactique,2024,48,8.92660,5.56985, +8443,334632,Citytrip Antwerpen,2022,73,7.77589,5.56981, +8444,241829,Movie Empire,2020,152,6.62911,5.56980, +8445,193,Fill or Bust,1981,713,5.79558,5.56979, +8446,351765,Der Abenteuer Club,2022,126,6.84741,5.56979,"351765, 385950" +8447,172235,Schrödinger's Cats,2015,872,5.75423,5.56974, +8448,360121,Mission Control: Critical Orbit,2023,95,7.26237,5.56971, +8449,470,Road to the White House,1992,272,6.16074,5.56969, +8450,56886,By Fire and Sword,2009,64,8.08063,5.56966, +8451,169513,Dorasure,2014,197,6.38533,5.56966, +8452,149746,My Little Pony: Collectible Card Game,2013,300,6.10513,5.56964, +8453,920,Ultimate Outburst,1999,298,6.10860,5.56963, +8454,66116,Snapshot,2010,279,6.14523,5.56962, +8455,56835,Train of Thought,2011,429,5.94387,5.56960, +8456,30966,Tempête sur l'Échiquier,1989,135,6.75852,5.56958,"30966, 107551" +8457,256704,The Stuff of Legend,2023,123,6.87434,5.56957, +8458,11429,The Rising Sun: Command at Sea Volume I,1994,91,7.33297,5.56956, +8459,337973,Earth Under Siege: Flashpoint,2024,51,8.71569,5.56956, +8460,246812,Brothers,2018,243,6.22912,5.56949, +8461,285183,Secret Operation,2019,226,6.27854,5.56947,"236479, 285183" +8462,422019,Duck & Cover,2024,332,6.05202,5.56945, +8463,147790,Buccaneer Bones,2013,664,5.81061,5.56942, +8464,322197,Brothers at War: 1862,2022,60,8.23833,5.56942, +8465,415792,Neko Syndicate,2024,80,7.57054,5.56940, +8466,310578,Paleontologists,2020,126,6.83968,5.56939,"310578, 326943, 375563" +8467,5769,"Edelweiss: The Struggle in the Caucasus, 1942",1989,86,7.43023,5.56938, +8468,354328,Overbooking,2022,146,6.66548,5.56937, +8469,145470,Don Capollo,2013,113,6.98545,5.56937, +8470,312259,Rollway Station,2020,89,7.36674,5.56935,"312259, 344679" +8471,183441,A Game of Gnomes,2015,182,6.44815,5.56934, +8472,34001,Burgen Land,2008,297,6.10761,5.56931, +8473,240926,Pocket Pharma,2018,226,6.27668,5.56930,"224010, 240926" +8474,15047,Trivial Pursuit: DVD – Star Wars Saga Edition,2005,437,5.93502,5.56929, +8475,2265,Ultimate Stratego,1997,400,5.96875,5.56927, +8476,308386,LANTERN,2019,138,6.72667,5.56924, +8477,356381,Fish Tank,2022,107,7.06168,5.56923, +8478,307182,Shadow Network,2023,81,7.54074,5.56923, +8479,275213,7 Summits,2021,180,6.45616,5.56921, +8480,7623,BrikWars,1995,62,8.14355,5.56919,"7623, 18059" +8481,369257,Stereo Mind,2022,115,6.95696,5.56918,"369257, 398707" +8482,7089,Afrika Korps: The Desert War – Platoon Level Combat in World War II: A Panzer Grenadier Game,2002,193,6.39585,5.56917, +8483,35706,Carpe Astra,2008,450,5.92372,5.56916, +8484,223767,Galactic Warlords: Battle for Dominion,2018,105,7.08857,5.56916, +8485,130908,Desperados,2012,175,6.48057,5.56914, +8486,14701,The Price of Freedom: The American Civil War 1861-1865,2008,204,6.35049,5.56910, +8487,91050,Venture Forth,2012,279,6.14039,5.56910, +8488,1943,This Game is Bonkers!,1978,652,5.81351,5.56908, +8489,231960,Sunny Day,2017,176,6.47455,5.56908,"203788, 231960" +8490,351581,Danger in the Deep,2021,79,7.58608,5.56908, +8491,2538,Viceroys,1986,184,6.43505,5.56907, +8492,249336,Worldwide Football,2018,69,7.87812,5.56907, +8493,23977,Hell Dorado: Core Rulebook,2006,78,7.61154,5.56906, +8494,391162,Sacred Valley,2023,70,7.84357,5.56902, +8495,157449,Invasion 1066: The Battle of Hastings,2014,98,7.19337,5.56901,"12979, 157449" +8496,129280,Skyway Robbery,2015,160,6.56388,5.56900, +8497,324641,Cult of the Deep,2022,123,6.86301,5.56900, +8498,5702,Second World War at Sea: Eastern Fleet,2001,98,7.19286,5.56899, +8499,372852,Chesney,2023,49,8.81633,5.56898, +8500,17925,Anno Domini: Im Namen des Gesetzes,2003,133,6.76523,5.56897, +8501,18103,Tien Len,,124,6.85202,5.56897, +8502,208321,Holdfast: Atlantic 1939-45,2016,109,7.02844,5.56896, +8503,169102,Slaughterville,2015,161,6.55627,5.56891,"169102, 199593, 218043, 339991" +8504,415938,Inori,2024,171,6.49830,5.56890, +8505,193912,End of the Line,2016,124,6.85056,5.56890,"193912, 424165" +8506,388668,Flame & Fang,2024,72,7.77500,5.56886, +8507,299604,Aldabas: Doors of Cartagena,2022,145,6.66423,5.56885, +8508,158492,Quatre Batailles en Espagne,2015,73,7.74402,5.56884, +8509,5548,VII Legio,1982,99,7.17222,5.56881, +8510,378279,Your Best Life,2023,83,7.48129,5.56881, +8511,202513,BattleGoats,2016,108,7.03852,5.56881,"202513, 279932" +8512,278042,Crusader Kingdoms: The War for the Holy Land,2020,113,6.97292,5.56878, +8513,369992,Warcrow Adventures,2024,49,8.80612,5.56877, +8514,374455,Zone Wars,2023,58,8.30218,5.56873, +8515,193122,Stir Fry Eighteen,2015,317,6.06883,5.56873, +8516,383791,Savage Bowl: Trick Taking Game,2023,76,7.65461,5.56872, +8517,371687,A Simple Life,2022,74,7.71081,5.56872, +8518,169375,How to Serve Man,2016,193,6.38958,5.56868, +8519,205080,Dragons & Chickens,2016,248,6.20708,5.56864, +8520,3531,The Return of the Stainless Steel Rat,1981,141,6.69149,5.56863, +8521,223201,Attack of the Jelly Monster,2018,378,5.98740,5.56862, +8522,191361,Splendor: AsmOPlay Kit,2015,72,7.76667,5.56861, +8523,340473,"Thunder At Dawn: The Battle of Wilson's Creek (August 10, 1861)",2021,59,8.25085,5.56860, +8524,183949,Aloha Pioha,2016,201,6.35592,5.56860, +8525,9177,Armchair Cricket,1981,170,6.49912,5.56858, +8526,147144,Whacky Wit,2013,155,6.58903,5.56857, +8527,35812,Wild Vikings,2008,273,6.14790,5.56856,"35812, 59224" +8528,266940,Widget Ridge,2019,101,7.13347,5.56852, +8529,91668,Avanti,2011,225,6.27090,5.56851, +8530,506,The Big Cheese,1998,509,5.87896,5.56850, +8531,370858,Heraldica,2022,52,8.60577,5.56847, +8532,225084,Winged Victory: Among the Clouds Above,2017,64,8.03594,5.56846, +8533,408770,In the Footsteps of Marie Curie,2024,113,6.96571,5.56845, +8534,403160,Арідник (Aridnyk),2023,51,8.66392,5.56844, +8535,400756,Wizards Cup,2023,98,7.17908,5.56843, +8536,331946,Faux Diamonds,2021,93,7.26559,5.56842, +8537,29030,Chicago Poker,2007,596,5.83321,5.56841, +8538,177843,Mix It,2015,264,6.16601,5.56839,"177843, 192212" +8539,178515,Little Circuses,2016,196,6.37332,5.56839, +8540,257307,Orbital,2018,110,7.00252,5.56839, +8541,418628,Villa Panda,2024,58,8.28793,5.56838, +8542,6974,Barbu,1930,142,6.67913,5.56838, +8543,21769,Talavera & Vimeiro,2007,102,7.11471,5.56837,"10910, 21769" +8544,145390,End of Empire: 1744-1782,2014,114,6.95175,5.56837,"11136, 145390" +8545,334187,Bequest,2021,114,6.95105,5.56833, +8546,344427,"Run, Ghost, Run!",2021,167,6.51222,5.56833, +8547,8071,Tannenberg and the Opening Battles in the East 1914,1978,186,6.41559,5.56832, +8548,284430,Dirty Fridge,2019,62,8.10806,5.56826, +8549,23931,Gene Pool,2006,194,6.37964,5.56824, +8550,9640,"Bloody Roads South: The Battle of the Wilderness May 5-7, 1864 – The South's Last Chance",1992,84,7.44167,5.56822, +8551,311397,Judge Dredd: I am the Law – Starter Set,2019,61,8.14754,5.56821,"259015, 265672, 296710, 311397, 374784, 412931, 413116" +8552,246938,Wonderland,2018,311,6.07412,5.56821, +8553,286215,Geometric Art,2019,124,6.83669,5.56819, +8554,368309,DANTE: Inferno,2025,75,7.66533,5.56818, +8555,207117,Abandon Planet,2017,335,6.03763,5.56818, +8556,276551,Mysthea: The Fall,2020,67,7.91539,5.56817, +8557,298535,Deluxe Advanced Squad Leader,2019,48,8.84375,5.56816, +8558,127333,Schnipp & Weg,2012,76,7.63684,5.56816, +8559,224108,Magus: Aura Mortis,2017,85,7.41765,5.56815,"176487, 224108" +8560,31075,Ming Dynasty,2007,553,5.85241,5.56814, +8561,172006,Shadowstar Corsairs,2016,107,7.03551,5.56807, +8562,330617,Heroes of the Shire,2024,56,8.37143,5.56806, +8563,244502,Barbarian Vince,2012,113,6.95685,5.56803, +8564,317910,異世界ギルドマスターズ (Isekai Guild Masters),2019,74,7.68851,5.56802, +8565,320862,Save Patient Zero,2021,148,6.62824,5.56802, +8566,406684,Sonic Roll,2024,61,8.14016,5.56802, +8567,7537,Subulata,2003,165,6.51879,5.56801, +8568,301032,The March of Progress,2020,163,6.53043,5.56801, +8569,2344,Titicaca,2001,218,6.28739,5.56799, +8570,131616,Nautilus,2012,287,6.11432,5.56797, +8571,231683,Dracula's America: Shadows of the West,2017,62,8.09677,5.56797, +8572,337726,Holiday Hijinks #2: The Independence Incident,2021,77,7.60260,5.56792, +8573,239877,Wakening Lair,2018,129,6.78217,5.56790,"239877, 336501" +8574,165022,€uro Crisis,2015,108,7.01815,5.56790, +8575,292509,The Shadow Planet: The Board Game,2022,129,6.78140,5.56786, +8576,200351,Pinball Showdown,2017,137,6.71054,5.56786, +8577,262273,Big Dig,2019,267,6.15390,5.56783, +8578,38944,Via Romana,2008,204,6.33466,5.56782, +8579,41624,Osmanli Harbi: The Ottoman Fronts – 1914 to 1918,2009,73,7.71027,5.56780, +8580,13933,Im Auftrag des Königs,2004,290,6.10700,5.56779, +8581,4959,"Crusader: The 8th Army's Winter Victory, Nov-Dec 1941",1997,158,6.55728,5.56777, +8582,6946,"Wolfpack: Submarine Warfare in the North Atlantic, 1942-44",1974,204,6.33407,5.56777, +8583,376469,Battles of Napoleon: Volume I – EYLAU 1807,2024,64,8.00781,5.56770, +8584,393306,A.I.Pokalypse,2024,73,7.70685,5.56770, +8585,135019,Elephant Rally,2014,214,6.29708,5.56767, +8586,387015,Spring Cleaning,2024,110,6.98636,5.56765, +8587,151645,Jane Austen's Matchmaker,2014,199,6.35176,5.56764,"151645, 225979" +8588,16196,Sword and Sail,2004,138,6.69812,5.56763, +8589,149286,Hanau 1813,2013,62,8.08226,5.56759, +8590,4918,Great War at Sea: U.S. Navy Plan Orange,1998,123,6.83496,5.56758, +8591,3403,Rise and Fall,1989,152,6.59309,5.56757, +8592,255029,Verona Twist,2018,286,6.11231,5.56754, +8593,84913,Caminos,2010,136,6.71287,5.56753,"84913, 286904" +8594,23311,Carrousel,2006,235,6.23027,5.56752, +8595,191065,Castle Flutterstone,2016,207,6.31937,5.56747,"191065, 235945" +8596,86406,Star Borders: Humanity,2010,106,7.03538,5.56745,"86406, 146006" +8597,290611,Where am I? Alice in a Mad Tea party,2019,153,6.58425,5.56744, +8598,361503,RuneScape Kingdoms: Shadow of Elvarg,2024,75,7.64133,5.56743, +8599,198005,Revanche,2018,52,8.55769,5.56741, +8600,368330,Reality Shift: Deluxe,2022,140,6.67782,5.56739,"302057, 368330" +8601,278971,Why I Otter,2019,214,6.29383,5.56739, +8602,122236,Conflict of Alliances: Warring States,2011,69,7.81884,5.56735, +8603,368168,Cheese Master,2023,159,6.54399,5.56732, +8604,261490,Ringo,2018,91,7.27352,5.56731,"167496, 261490" +8605,15957,Final Fantasy VIII: Triple Triad,1999,78,7.55769,5.56730, +8606,185262,Edge of Humanity,2017,239,6.21634,5.56725, +8607,77361,Photo Party,2010,139,6.68312,5.56724, +8608,153481,Cherry Picking,2014,170,6.47959,5.56724, +8609,10168,Citadel: The Battle of Dien Bien Phu,1977,69,7.81449,5.56722, +8610,289939,Goblin Teeth,2020,109,6.98968,5.56721, +8611,194577,Tara Wolf in Valley of the Kings,2016,231,6.23835,5.56721, +8612,274230,Corsairs of Valeria,2020,177,6.44305,5.56720,"202468, 274230" +8613,124548,The Doom That Came to Atlantic City,2013,362,5.99530,5.56718, +8614,379300,Block Party,2023,130,6.75900,5.56717, +8615,262310,Tasty Humans,2020,134,6.72334,5.56716, +8616,13314,"Beyond Normandy: The British Advance, 1944 – A Panzer Grenadier Game",2004,122,6.83648,5.56713, +8617,381726,The Lucky Seven,2023,74,7.65946,5.56712, +8618,8727,"U.S.N.: The Game of War in the Pacific, 1941-43",1971,155,6.56581,5.56711,"8727, 11707" +8619,176936,Halo: Fleet Battles – The Fall of Reach,2015,75,7.63067,5.56709,"176936, 192625, 192626, 194748, 197617" +8620,311686,Escape the Room: The Cursed Dollhouse,2020,231,6.23653,5.56704, +8621,339545,League of the Lexicon,2022,85,7.38647,5.56704, +8622,268134,Oathmark: Battles of the Lost Age,2020,55,8.37727,5.56700, +8623,195742,The Godfather: A New Don,2016,165,6.50374,5.56700, +8624,292914,Fika,2022,467,5.89794,5.56700, +8625,260037,Composition,2020,49,8.72082,5.56699, +8626,182510,Ravage: Dungeons of Plunder,2018,92,7.24674,5.56699,"182510, 294785" +8627,110643,Le Retour de l'Empereur,2011,67,7.87313,5.56698, +8628,361895,Trick and Trade,2022,105,7.03810,5.56696, +8629,239262,Platoon Commander Deluxe: The Battle of Kursk,2018,74,7.65405,5.56695, +8630,292491,Crayne: Fractured Empire,2021,59,8.18390,5.56693, +8631,308862,Napoleon Invades Spain,2021,60,8.14011,5.56693, +8632,558,Der weiße Lotus,2000,246,6.19451,5.56693, +8633,251685,Tinian: The Forgotten Battle,2019,62,8.05645,5.56691, +8634,299159,Vidrado,2020,56,8.32202,5.56688, +8635,248567,Star Trek: Galactic Enterprises,2018,559,5.84287,5.56688,"2972, 248567" +8636,421199,Link City,2024,93,7.22538,5.56686, +8637,104736,Et Toque!,2011,113,6.93133,5.56684, +8638,367522,Dulce,2022,232,6.23134,5.56683, +8639,9360,The Royal Navy,1984,85,7.38000,5.56681, +8640,155633,Zombies Keep Out,2014,206,6.31495,5.56681, +8641,247188,Big Money,2018,287,6.10372,5.56680, +8642,293579,Totemic,2020,157,6.54809,5.56679, +8643,361861,Scribbly Gum,2023,86,7.35814,5.56678,"361861, 420940" +8644,349042,A Battle Through History,2022,113,6.92984,5.56677, +8645,396090,Exoworld Survival,2023,70,7.76714,5.56677, +8646,3340,Hard Vacuum,2000,85,7.37882,5.56677, +8647,16186,Modern Battles II: Four Contemporary Conflicts,1977,143,6.64371,5.56676,"7795, 10610, 10611, 11055, 16186" +8648,2212,eBay Electronic Talking Auction Game,2001,402,5.94985,5.56676, +8649,184117,ManaSurge,2016,183,6.40792,5.56673, +8650,257962,Karate Tomate,2018,227,6.24485,5.56673, +8651,188908,Jewels,2016,150,6.59291,5.56673, +8652,316704,El Rey Planeta,2024,49,8.70743,5.56671, +8653,6548,Heartthrob,1988,102,7.07500,5.56669, +8654,283216,Chicken Heist,2020,118,6.87034,5.56669, +8655,332,Vernissage,1993,209,6.30249,5.56667, +8656,4436,Cityfight: Modern Combat in the Urban Environment,1979,124,6.80685,5.56667, +8657,147474,8 Masters' Revenge,2013,256,6.16703,5.56663, +8658,9961,"Year of the Rat: Vietnam, 1972",1972,121,6.83678,5.56662, +8659,345056,Priorities,2020,139,6.67216,5.56662, +8660,5241,"Sinai: The Arab-Israeli Wars – '56, '67 and '73",1973,244,6.19619,5.56660, +8661,1189,The King's War: The First English Civil War 1642-1646,1989,103,7.05738,5.56657, +8662,234700,My Story,2017,162,6.51426,5.56655, +8663,330964,Hijacked,2023,139,6.67086,5.56654, +8664,133940,"Circle of Fire: The Siege of Cholm, 1942",2014,80,7.48500,5.56653, +8665,387219,Trash Talk,2023,116,6.88922,5.56651, +8666,10520,Tyrus,2004,398,5.95188,5.56649, +8667,145549,Islands of the Damned: Wake Island and Peleliu,2015,86,7.35000,5.56649,"145549, 347087, 347088" +8668,765,Space Walk,1999,398,5.95186,5.56649, +8669,356825,Paso del Brahmán,2022,62,8.03982,5.56648, +8670,331808,The Girl Who Made The Stars,2023,116,6.88699,5.56641, +8671,311828,Sherwood Bandits,2021,144,6.63009,5.56640, +8672,204466,Dark Is the Night,2017,407,5.94274,5.56640, +8673,75674,Julian: Triumph Before the Storm,2010,80,7.48000,5.56637, +8674,8350,Napoleon at Eylau,1977,149,6.59362,5.56635, +8675,93400,Paperclip Railways,2011,168,6.47738,5.56635, +8676,1579,Wrasslin',1990,398,5.95078,5.56633, +8677,329588,Chili Mafia,2022,96,7.16014,5.56633, +8678,33159,Middle Kingdom,2008,398,5.95075,5.56633, +8679,346143,The Game of Life: Super Mario Edition,2021,166,6.48795,5.56632, +8680,18867,Canoe,2003,75,7.60600,5.56632, +8681,162367,Co-Mix,2014,345,6.00972,5.56631, +8682,295788,Plakks,2019,104,7.03718,5.56631,"295788, 392153" +8683,9300,Clay-O-Rama,1987,144,6.62847,5.56631, +8684,60228,Race for Berlin: The Final Struggle,2010,103,7.05049,5.56627, +8685,367485,D100 Space,2022,55,8.34545,5.56626, +8686,371263,Lost in the Shuffle,2023,40,9.38750,5.56626, +8687,142551,Titans Tactics,2013,144,6.62743,5.56624, +8688,5333,Invasion: Norway,1995,109,6.96789,5.56623, +8689,487,Power,1981,292,6.08921,5.56620, +8690,259704,Wizard Thieves,2019,56,8.29321,5.56620, +8691,9782,Battle of the Bands: Encore Edition,2004,320,6.04337,5.56619,"829, 9782, 159577, 205669" +8692,76728,Freeze,2010,102,7.06176,5.56613, +8693,353765,Awimbawé,2022,148,6.59662,5.56612, +8694,276923,ArtSee,2019,189,6.37259,5.56608, +8695,23615,Kulikovo 1380: The Golden Horde,2006,104,7.03173,5.56608, +8696,251213,The Coin Tribes' Revolt: Boudica's Rebellion Against Rome,2018,96,7.15260,5.56603, +8697,180977,Magecraft,2016,133,6.71083,5.56601, +8698,177062,Tank on Tank: East Front,2015,105,7.01505,5.56596, +8699,292971,Ettin,2020,115,6.88870,5.56594, +8700,394325,Fruitoplay,2023,97,7.13351,5.56592, +8701,1150,Lionheart,1997,978,5.72137,5.56591, +8702,206591,Green Box of Games,2016,82,7.41985,5.56590, +8703,386168,Portals,2023,135,6.69193,5.56590, +8704,339741,50 Clues: Dead or Alive,2021,136,6.68346,5.56589, +8705,81542,Quest: A Time of Heroes,2010,300,6.07217,5.56585, +8706,371794,モンスターイーター ~ダンジョン飯 ボードゲーム~ (Monster Eater),2022,147,6.59898,5.56584,"3920, 252580, 371794" +8707,8815,Academia,1989,118,6.85271,5.56583, +8708,391995,Unlock!: Short Adventures – Red Mask,2023,75,7.58942,5.56579, +8709,250878,Rebel Nox,2018,192,6.35625,5.56579, +8710,33018,Deathride: Mars-la-Tour 1870,2008,99,7.09869,5.56579,"15220, 33018" +8711,227162,Fireworks,2017,272,6.12360,5.56578, +8712,20847,Take Stock,2006,547,5.84311,5.56577, +8713,55756,Anno Domini: Europa,2009,129,6.74109,5.56573, +8714,404233,Forks: 2nd Edition,2024,193,6.35124,5.56572,"271288, 404233" +8715,258665,Get Packing,2018,347,6.00225,5.56567, +8716,348072,Kinoko,2022,164,6.48892,5.56564, +8717,18296,Silk Road,2006,490,5.87465,5.56564, +8718,18058,Anno Domini: Spiel des Jahres,2004,203,6.31118,5.56561, +8719,356296,Damask,2022,112,6.91563,5.56555, +8720,206,Jalape-NO!,1998,260,6.14665,5.56550, +8721,314009,Pirate Legends,2020,116,6.86727,5.56546, +8722,185244,Autumn,2015,156,6.53322,5.56545, +8723,181331,Qwingo,2015,247,6.17656,5.56544, +8724,9792,Oriente,2004,694,5.78282,5.56541, +8725,336791,Masters of Crime: Vendetta,2021,69,7.75198,5.56540, +8726,461,Freibeuter,1998,200,6.31975,5.56540, +8727,245456,Attack of the 50 Foot Colossi!,2018,77,7.52468,5.56540, +8728,25768,Long Live the King,2006,142,6.62782,5.56540, +8729,9663,Napoleon on the Danube: The Battle of Deutsch-Wagram,1992,82,7.40488,5.56539, +8730,300757,Connecting Flights,2022,176,6.42237,5.56539, +8731,297570,2Can,2020,151,6.56397,5.56537, +8732,165984,Anno Domini: Wissenschaft & Forschung,2014,122,6.80123,5.56536, +8733,249748,Omicron Protocol,2022,54,8.35741,5.56536, +8734,170430,12 Days of Christmas,2015,356,5.98878,5.56535, +8735,290468,Mint Condition Comics,2019,92,7.20359,5.56534, +8736,342703,Balada,2021,140,6.64177,5.56533, +8737,26919,The War Game: World War II,2005,100,7.07200,5.56532, +8738,222424,Planecrafters,2019,136,6.67316,5.56531, +8739,363699,Finding Atlantis,2022,125,6.77040,5.56530, +8740,3262,The Powerpuff Girls: Villains at Large Game,2000,175,6.42589,5.56529, +8741,125936,Swing States 2012,2012,108,6.95833,5.56522, +8742,170437,The Curse of the Black Dice,2015,263,6.13698,5.56519, +8743,205419,Vikings: Raid & Conquer,2016,94,7.16415,5.56516, +8744,29860,Bataan!,2010,73,7.62312,5.56513, +8745,3562,Theophrastus,2001,438,5.90811,5.56512, +8746,393488,"Oh No, Volcano!",2023,171,6.44327,5.56510, +8747,394691,The Six of VIII,2024,76,7.54079,5.56509, +8748,231125,Kaiju Siege,2017,84,7.35202,5.56507, +8749,325882,Bharata 600 BC,2020,68,7.77118,5.56503, +8750,370378,DOUC Kids,2022,66,7.83788,5.56503,"365122, 370378" +8751,193584,The Last Garden,2017,110,6.92864,5.56502, +8752,2857,Jungle Jam,2000,246,6.17467,5.56502, +8753,7033,Kadesh: Mobile Warfare in the Ancient Middle East,1991,156,6.52628,5.56501,"7033, 26795" +8754,374336,Trick Raiders,2022,99,7.07879,5.56497, +8755,181956,Römisch Pokern,2015,258,6.14554,5.56494, +8756,228,Lunch Money,1996,2818,5.61808,5.56493,"228, 9787" +8757,373435,Prophecy,2022,124,6.77235,5.56491,"220733, 373435" +8758,364266,Complices,2022,131,6.70763,5.56489, +8759,3977,Strong Stuff!,2002,184,6.37803,5.56486, +8760,289957,Lost Lights,2024,108,6.95008,5.56485,"239029, 289957" +8761,290541,Zaberias,2016,62,7.97742,5.56484, +8762,7090,Scottish Corridor: Lion Rampant,2003,75,7.55884,5.56483,"7090, 143624, 143625" +8763,314252,"Warhammer 40,000: Indomitus",2020,57,8.18772,5.56481, +8764,278413,Charty Party,2019,340,6.00449,5.56481,"278413, 312529" +8765,402126,Pocket Cats,2024,212,6.26991,5.56480, +8766,334712,Floating Floors,2023,118,6.83158,5.56480, +8767,299074,Space Battle Lunchtime Card Game,2020,160,6.49863,5.56477,"161148, 299074" +8768,295571,Deckscape Crew vs Crew: The Pirates' Island,2021,273,6.11190,5.56475, +8769,200729,Game of Blame,2016,198,6.31914,5.56475,"200729, 253677, 296349, 390574" +8770,160234,1750: Britain vs. France,2017,131,6.70458,5.56473, +8771,342251,Iro,2022,78,7.47859,5.56471, +8772,124838,Maurice: War in an Age of Gentlemen and Philosophers – 1690-1790,2012,56,8.23036,5.56471, +8773,72269,Toscana,2010,204,6.29632,5.56470, +8774,240094,Maki Stack,2018,333,6.01290,5.56470, +8775,389,Die Mauer,1997,300,6.06217,5.56470, +8776,13182,Korsun Pocket: Little Stalingrad on the Dnepr,1979,80,7.43000,5.56469,"13182, 33901" +8777,156945,The Front Nine,2014,109,6.93358,5.56468, +8778,218028,BIOTIX,2017,238,6.19145,5.56467, +8779,187488,Dark Mages,2016,158,6.50872,5.56466, +8780,7064,Senjutsu: Dynamic Samurai Combat,2003,151,6.55232,5.56465, +8781,102107,Race to Adventure: The Spirit of the Century Exploration Game,2013,307,6.04982,5.56458, +8782,406591,The Walking Dead: Surrounded,2024,75,7.55067,5.56457, +8783,34450,Bluff,1973,162,6.48395,5.56457, +8784,85633,World War II: Barbarossa 1941,2010,125,6.75560,5.56454,"85633, 127156, 144352, 158621, 176864" +8785,353401,Moonlight Castle,2021,87,7.27464,5.56450, +8786,5178,Marrakesh,2002,417,5.92128,5.56450,"1211, 5178" +8787,375195,Roll & Meow: The Cat Burglars,2023,61,8.00328,5.56449, +8788,113853,"Richard Scarry's Busytown: Busy, Busy Airport Game",2011,233,6.20292,5.56449, +8789,7501,Hunters from the Sky,1994,129,6.71744,5.56448, +8790,174243,Bridges to Nowhere,2018,174,6.41879,5.56444,"174243, 356418" +8791,145553,Asgard's Chosen,2013,245,6.17082,5.56441, +8792,2350,Eureka,1988,446,5.89743,5.56439, +8793,49261,Kraby,2009,238,6.18841,5.56438, +8794,38578,Age of Muskets Volume I: Tomb for an Empire,2008,90,7.21278,5.56432, +8795,401258,Candy Hunters,2024,71,7.65352,5.56430, +8796,144290,Intrigue City,2013,129,6.71395,5.56429, +8797,346255,Sushi Boat,2023,135,6.66257,5.56428, +8798,378567,Dale un piñatazo,2023,62,7.95495,5.56426, +8799,142645,Havok & Hijinks,2014,133,6.67850,5.56424, +8800,124991,Legend: History of 1000 Miglia,2012,74,7.56642,5.56423, +8801,224794,Carreau,2018,96,7.10740,5.56422, +8802,210660,Castellum: Maastricht,2018,131,6.69466,5.56420, +8803,19009,Star Fleet Battles Cadet Training Manual,1992,85,7.30588,5.56418,"19009, 129173" +8804,359232,1888-N,2022,75,7.53777,5.56417, +8805,221677,Mission to Planet Hexx!,2017,101,7.02970,5.56417, +8806,148007,A Spoiled Victory: Dunkirk 1940,2014,81,7.39136,5.56416,"148007, 171868" +8807,2216,Vampyre,1981,212,6.26212,5.56415, +8808,2248,Leverage,1977,215,6.25232,5.56414, +8809,290982,Roll Estate,2019,96,7.10521,5.56413, +8810,316625,Cafe Chaos,2021,239,6.18314,5.56413,"141437, 316625" +8811,345046,Holiday Hijinks #4: The Cupid Crisis,2022,70,7.67714,5.56412, +8812,246147,Darkness,2018,88,7.24466,5.56411, +8813,16792,Second World War at Sea: Strike South,2005,88,7.24318,5.56406,"16792, 397225" +8814,82948,Konexi,2010,236,6.19017,5.56406, +8815,221661,Patriots & Redcoats,2018,141,6.61170,5.56404, +8816,297897,Die Wikinger Saga,2020,107,6.94430,5.56402, +8817,15271,Contrario,2001,315,6.03258,5.56399, +8818,276416,Tattoo Stories,2019,117,6.82556,5.56399, +8819,328535,Mandragora,2021,147,6.56748,5.56395, +8820,382958,Les Toits de Paris,2023,82,7.36000,5.56385, +8821,910,Kunst Stücke,1995,179,6.38659,5.56384, +8822,20731,Capes & Cowls: The Superhero Board Game,2006,68,7.72941,5.56384, +8823,38402,Sidibaba,2008,506,5.85478,5.56382, +8824,378951,Pyramidice,2023,100,7.03590,5.56382, +8825,369869,The Two Heirs,2022,115,6.84370,5.56381, +8826,5697,Reiner Knizia's Amazing Flea Circus,2003,631,5.79700,5.56379, +8827,31586,Obcy,1988,158,6.49494,5.56378, +8828,140236,Convert,2014,124,6.74997,5.56376, +8829,245371,Vejen,2019,157,6.50032,5.56374, +8830,220258,Envyra,2018,110,6.90000,5.56372, +8831,319095,Abstract Academy,2022,130,6.69423,5.56371, +8832,330208,Alpujarras,2023,87,7.25287,5.56371,"330208, 340684" +8833,369410,ChronoCops: Einstein's Relativity Crisis,2022,91,7.17802,5.56368, +8834,411872,Bower,2024,99,7.04695,5.56366, +8835,209282,Picassimo,2016,182,6.37044,5.56365, +8836,362692,Handy Brawl,2022,50,8.50000,5.56365, +8837,118025,Waka Waka,2012,336,6.00045,5.56363, +8838,299939,Doodle Dungeon,2020,240,6.17515,5.56362, +8839,18590,RPGQuest,2005,51,8.44118,5.56362, +8840,131387,MOD X,2012,112,6.87393,5.56362, +8841,389780,Finis Terrae,2023,71,7.63043,5.56361, +8842,284981,Zona Alfa: Salvage and Survival in the Exclusion Zone,2020,66,7.78636,5.56360, +8843,268543,Jumble Jam,2020,123,6.75621,5.56359, +8844,238935,Stool Pigeon,2017,78,7.44359,5.56357, +8845,128999,Gran Circo,2012,81,7.37346,5.56355, +8846,87141,ScrumBrawl,2011,155,6.50897,5.56353, +8847,143416,Gothic Doctor,2015,123,6.75447,5.56350, +8848,255020,Rising for the Throne,2018,217,6.23811,5.56346, +8849,349918,OT Fantasy Draft,2022,87,7.24598,5.56346, +8850,141825,Dirigible Disaster,2013,101,7.01267,5.56345, +8851,187420,Quissama,2015,88,7.22615,5.56343, +8852,393975,Evil Corp.,2023,110,6.89336,5.56342, +8853,244203,Red Panda,2018,158,6.48911,5.56341, +8854,4668,Lost Treasure,1982,228,6.20488,5.56340, +8855,63951,Lasalle,2009,86,7.26395,5.56340,"63951, 353728" +8856,416281,Bosa,2024,64,7.84844,5.56340, +8857,167580,Montmirail & Vauchamps 1814,2014,57,8.12807,5.56337, +8858,91430,None of a Kind,2011,315,6.02743,5.56337,"91430, 217365" +8859,75890,Spartacus Imperator,2011,70,7.65143,5.56336, +8860,39786,Heavy Gear Blitz! Locked & Loaded,2008,62,7.91935,5.56332,"26129, 39786, 175696, 339249" +8861,8843,June 6,1999,125,6.73160,5.56331, +8862,42688,Hibernia,2009,240,6.17163,5.56329, +8863,149621,Suspense: the Card Game,2013,222,6.22091,5.56329,"149621, 202025" +8864,1312,Nur Peanuts!,2001,263,6.11825,5.56327, +8865,257378,East Indiaman,2018,112,6.86607,5.56325, +8866,411115,Squirrels: The Card Game,2024,50,8.48133,5.56325, +8867,13981,World in War: Combined Arms 1939-1945,2004,153,6.51667,5.56324, +8868,368230,Brigands,2023,88,7.22038,5.56322, +8869,234846,Schüttel's,2017,207,6.26754,5.56320, +8870,7771,En Garde!,1975,121,6.76777,5.56319, +8871,233364,Cultistorm,2019,131,6.67557,5.56317,"233364, 351828" +8872,356796,1944: D-Day to the Rhine,2022,71,7.61338,5.56310, +8873,1890,Plateau,1986,90,7.18000,5.56308, +8874,20623,Alien City,2002,97,7.06289,5.56307, +8875,342246,Feuding Foodies,2021,48,8.59375,5.56306, +8876,270227,"Oh, Fox!",2019,157,6.48949,5.56305, +8877,183452,Quickpick: Island of Monster Masks,2015,145,6.56552,5.56302, +8878,340773,Elixir Mixer,2021,130,6.68054,5.56298, +8879,215455,ReCURRRing,2016,123,6.74390,5.56297, +8880,38400,War for Edaðh,2008,178,6.37893,5.56296, +8881,404179,"Manila: The Savage Streets, 1945",2024,60,7.98333,5.56295, +8882,4659,Moods,2000,453,5.88349,5.56295, +8883,144499,Pasha,2013,251,6.14131,5.56293, +8884,224986,Mascotas,2017,244,6.15789,5.56293, +8885,402526,Seeker Chronicles,2024,40,9.19000,5.56289, +8886,3275,Imperator,2002,75,7.49733,5.56289, +8887,366782,Wildstyle,2022,99,7.02828,5.56289, +8888,206437,Drinking Quest: Journey into Draught,2016,217,6.23138,5.56289,"182225, 206437, 256944, 256945, 263317, 288874, 313964, 333031, 395764" +8889,398368,Global War: World War II Worldwide 1939-1945,2023,54,8.24907,5.56288, +8890,329529,Magellan: Elcano,2021,231,6.19069,5.56287,"14233, 329529, 337118" +8891,70097,Arriala: Canal de Garonne,2010,193,6.31420,5.56286, +8892,109635,Washington's Crossing,2012,72,7.57639,5.56285, +8893,1738,Castle of Magic,1991,241,6.16433,5.56284, +8894,2936,Dice Run,2002,419,5.90878,5.56284, +8895,122313,The Doge Ship,2012,284,6.07317,5.56283, +8896,2457,Torpedo Run!,1986,254,6.13335,5.56282, +8897,158535,Spells of Doom,2014,116,6.81207,5.56282, +8898,3581,"Lion of the North: The Dawn of Modern Warfare, 1631-1632",1993,166,6.43554,5.56280, +8899,801,Crimean War Battles,1978,112,6.85625,5.56280,"801, 14394, 25435, 25436, 25437" +8900,72460,Into the Bastards!: First tank battle,2011,79,7.39557,5.56277, +8901,181694,Cha dango,2015,145,6.56121,5.56276,"181694, 197544, 261251" +8902,20414,RPGQuest: Greek Mythology,2005,45,8.77778,5.56272, +8903,356080,The Elder Scrolls: Betrayal of the Second Era,2025,54,8.24148,5.56271, +8904,10323,Saga,2003,146,6.55336,5.56270, +8905,17705,Faces,2003,310,6.02923,5.56270, +8906,194028,Rabbit Rally,2016,206,6.26432,5.56266, +8907,191135,Vivarium,2017,115,6.81913,5.56264, +8908,170298,One-hour Wargames,2014,56,8.14286,5.56264, +8909,18887,Advanced Tobruk System Basic Game II: Streets of Stalingrad,2005,97,7.05206,5.56263, +8910,7828,Eagles of the Empire: Preussisch-Eylau,1999,133,6.64887,5.56263, +8911,279056,Pompiers!,2019,98,7.03673,5.56263, +8912,326983,Nuevos Mundos,2020,116,6.80796,5.56262, +8913,130357,Go First Dice,2012,53,8.28792,5.56262, +8914,41004,Bulge 20: The Ardennes Offensive,2009,83,7.30120,5.56256, +8915,304434,Victim: The Cursed Forest,2020,112,6.85089,5.56255, +8916,175627,Mangaka: The Fast & Furious Game of Drawing Comics,2016,122,6.74508,5.56254,"175627, 242409" +8917,24264,Button Soccer,1911,85,7.25926,5.56252,"24264, 140512" +8918,346677,Oneironauts,2022,86,7.23922,5.56251, +8919,397912,Mischief & Malice TCG,2024,37,9.45946,5.56251, +8920,344402,Warhammer Age of Sigmar: Bladeborn,2021,61,7.92623,5.56251, +8921,283466,Tanuki Market,2019,109,6.88532,5.56251, +8922,17995,Anno Domini: Sport,2000,135,6.63037,5.56250, +8923,192023,"Demyansk Shield: the Frozen Fortress, February-May 1942",2017,71,7.59296,5.56250, +8924,183626,Internal Affairs,2015,168,6.42054,5.56249,"183626, 262634" +8925,414,Around the World in 80 Days,1986,338,5.98885,5.56247, +8926,170922,Boomtown Bandits,2015,193,6.30907,5.56247, +8927,2546,Elixir,1987,323,6.00844,5.56245, +8928,143657,Eternal Dynasty,2015,103,6.96068,5.56243, +8929,401,Gold Connection,1992,164,6.44024,5.56241, +8930,171234,Skulldug!,2015,164,6.43985,5.56238, +8931,193248,Get Off My Land!,2017,202,6.27473,5.56238, +8932,346621,Nirvana,2021,121,6.75153,5.56238,"325507, 346621" +8933,118559,Syracuse: 415-413 avant J.-C.,2012,71,7.58873,5.56237, +8934,180211,Apollo XIII,2015,208,6.25404,5.56237, +8935,171351,Random Encounters,2015,108,6.89444,5.56237, +8936,12325,Perpetual Commotion,2003,186,6.33573,5.56236, +8937,343,Twins,1996,245,6.14946,5.56235, +8938,245950,Orc-lympics,2018,205,6.26366,5.56233,"245950, 371946" +8939,267243,The Conquistadors: The Spanish Conquest of the Americas 1518-1548,2020,97,7.04433,5.56232, +8940,263236,Philosophy,2023,85,7.25265,5.56229, +8941,226860,Battle Kittens,2017,354,5.96810,5.56228,"226860, 268471" +8942,185276,Keep,2015,211,6.24313,5.56228, +8943,217012,Alchemical Crystal Quest (Second Edition),2017,145,6.55260,5.56225,"170131, 217012" +8944,257957,X-Code,2018,210,6.24600,5.56225, +8945,5516,Symbioz,1995,106,6.91651,5.56223, +8946,15173,Die Insel,2005,131,6.65802,5.56223, +8947,171708,Holdfast: Korea 1950-51,2015,113,6.83186,5.56220, +8948,27,Supremacy: The Game of the Superpowers,1984,1383,5.66586,5.56217, +8949,200886,Manaforge,2017,99,7.01061,5.56216, +8950,181382,Niña & Pinta,2016,146,6.54404,5.56215, +8951,356785,Tomorrow,2023,70,7.61000,5.56214, +8952,254759,Corruptia,2018,108,6.88889,5.56212,"254759, 363613" +8953,137958,Wild West Exodus,2013,65,7.76615,5.56211,"137958, 174116, 174326, 174341, 174342, 236934" +8954,22924,Card Football: Premiere Edition,2006,173,6.39004,5.56209,"22924, 35183" +8955,146197,Legends of the American Frontier,2016,185,6.33622,5.56208, +8956,170344,Atak Zombie,2014,273,6.08667,5.56208, +8957,257415,Dreams of Tomorrow,2019,187,6.32791,5.56208, +8958,323903,Insert Coin to play,2021,125,6.70752,5.56207, +8959,295478,Cindr,2020,196,6.29253,5.56207, +8960,13542,De Ontembare Stad,2004,326,6.00113,5.56205, +8961,377945,Endurance,2023,59,7.98797,5.56205, +8962,410097,ザ・カカポ バディ&パーティ (The Kakapo: Buddy & Party),2023,64,7.79688,5.56200, +8963,391048,Time Division,2023,116,6.79483,5.56199, +8964,393492,Avatar: The Last Airbender – Crossroads of Destiny,2023,66,7.72879,5.56199, +8965,10300,Group of Soviet Forces Germany,2003,233,6.17571,5.56199,"7941, 10300, 227847" +8966,177142,Tornio '44,2015,68,7.66471,5.56198, +8967,187347,No Honor Among Thieves,2018,88,7.18636,5.56197, +8967,10581,Summer Storm: The Battle of Gettysburg,1998,88,7.18636,5.56197, +8969,285171,Orb Hunters,2019,134,6.62851,5.56196, +8970,220249,Age of Fantasy,2017,50,8.42000,5.56195,"192139, 220249" +8971,415108,Crisps,,109,6.87294,5.56195, +8972,397227,Deductio,2023,89,7.16685,5.56192, +8973,328643,Paleovet,2023,91,7.13132,5.56191, +8974,171742,"Lion of Judah: The War for Ethiopia, 1935-1941",2017,71,7.57324,5.56191, +8975,24078,Lightning: North Africa on to Tobruk!,2006,148,6.52676,5.56190, +8976,642,Oodles,1992,275,6.08113,5.56190, +8977,171124,Hero's Journey Home,2015,87,7.20305,5.56190, +8978,243752,Dam It!,2018,150,6.51333,5.56187, +8979,369353,Wanderlust: Discover the World,2024,76,7.43947,5.56186, +8980,355801,Mediterráneo,2022,70,7.59943,5.56183, +8981,3000,1806: Rossbach Avenged,1998,95,7.06305,5.56182, +8982,394094,Snow Planner,2025,72,7.54250,5.56182, +8983,129029,Brawling Barons,2012,219,6.21297,5.56182, +8984,346463,Hunt A Killer: Body on the Boardwalk,2021,102,6.95931,5.56179, +8985,242879,Ladrillazo,2017,135,6.61758,5.56179, +8986,36366,Inside Pitch Baseball,2008,57,8.06211,5.56178, +8987,192891,Daimyo's Fall,2018,93,7.09409,5.56178, +8988,15180,Go West!,2005,765,5.74803,5.56177, +8989,292684,Mindburners,2020,110,6.85705,5.56177, +8990,415836,Slide,2024,286,6.05954,5.56172, +8991,380975,Cat-a-comb,2024,80,7.34050,5.56169,"380975, 381021, 381023, 381025, 418031" +8992,278989,Kung Fu,2019,100,6.98456,5.56168, +8993,359291,Midhalla,,54,8.19444,5.56163, +8994,215066,Gang Rush Breakout,2017,240,6.15365,5.56160, +8995,1716,Knights of the Air,1987,243,6.14609,5.56157, +8996,225166,Rogue State,2017,71,7.56197,5.56157, +8997,27613,Code Cracker,2007,428,5.89339,5.56157,"27613, 39080" +8998,197377,Waterloo 1815: Napoleon's Last Battle,2016,55,8.14364,5.56156, +8999,87632,Escape of the Dead Minigame,2010,228,6.18443,5.56156, +9000,140986,Viagem no Tempo,2013,90,7.13944,5.56156, +9001,167283,Circular Reasoning: The Well of Power,2015,153,6.48961,5.56155, +9002,154006,Time's Up! Family 2,2012,88,7.17500,5.56155, +9003,68876,Boots on the Ground,2010,179,6.35450,5.56153, +9004,236861,Full Moon Jacket,2020,62,7.85081,5.56153, +9005,178361,Waka Tanka,2016,243,6.14547,5.56151, +9006,89403,Big Five,2010,230,6.17848,5.56151, +9007,164259,Black & White,2014,131,6.64427,5.56149, +9008,182409,Midway Solitaire,2017,85,7.22996,5.56148, +9009,266968,Struggle for Europe 1939 - 1945,2019,89,7.15468,5.56147, +9010,5058,Operation Crusader,1978,79,7.35633,5.56147,"5058, 322199" +9011,2300,Invasion Sicily,1998,93,7.08602,5.56146, +9012,239930,Tour Operator,2018,156,6.47024,5.56146, +9013,9539,Beat the 8 Ball,1975,153,6.48797,5.56145, +9014,335322,Space Weirdos: A Skirmish Heartbreaker,2021,48,8.51458,5.56145,"335322, 374330" +9015,7255,Soldiers: Man-to-Man Combat in World War II,1987,110,6.85000,5.56145, +9016,166858,Villainous Vikings (Second Edition),2014,138,6.58841,5.56144,"143250, 166858" +9017,129858,La Venise du Nord,2012,166,6.41476,5.56141, +9018,8757,Nordkapp,1983,111,6.83739,5.56140, +9019,366575,Deities,2022,107,6.88505,5.56140, +9020,15110,Partners,1998,364,5.95034,5.56138,"15110, 246822, 356559" +9021,369082,The Texas Chainsaw Massacre Board Game,2023,116,6.78164,5.56136, +9022,236713,Sea of Plunder,2020,71,7.55493,5.56136, +9023,288933,Zestrea,2019,140,6.57214,5.56135, +9024,335017,The Silver Bayonet: A Wargame of Napoleonic Gothic Horror,2021,53,8.23113,5.56134, +9025,16957,The von Reisswitz Kriegsspiel: The Prussian Army Wargame,1824,49,8.44898,5.56134,"16957, 362025" +9026,193422,C.O.G.,2017,152,6.49207,5.56133, +9027,100089,Inspector Moss: House Arrest,2011,84,7.24524,5.56132, +9028,244269,Wizardz Bluff,2018,58,8.00000,5.56132, +9029,410251,Tossit,2023,50,8.39000,5.56131, +9030,2240,Mad Magazine Card Game,1979,458,5.87009,5.56131, +9031,2262,Mythology: A Game of Adventure in the Age of Heros,1980,132,6.63258,5.56130, +9032,235252,GoTown,2017,335,5.98328,5.56128, +9033,128114,Hooyah: Navy Seals Card Game,2012,219,6.20671,5.56128, +9034,257834,Ramen,2018,159,6.44981,5.56125, +9035,310846,Urgency,2020,42,8.92500,5.56124, +9036,96061,"Jours de Gloire Campagne IV: Allemagne 1813, de Lützen à Leipzig",2011,78,7.37244,5.56124, +9037,4235,Fulda Gap: The First Battle of the Next War,1977,176,6.36392,5.56124, +9038,183405,Ember: The Magical Card Game,2016,129,6.65581,5.56121,"183405, 243499" +9039,162383,"Festung Europa: The Campaign for Western Europe, 1943-1945",2016,104,6.91827,5.56118, +9040,236216,Soul of the Empire,2018,79,7.34747,5.56117, +9041,418281,Rivales: Capítulo 1 – Justicia,2024,41,9.00244,5.56116,"418281, 431121" +9042,4236,"Dreadnought: Surface Combat in the Battleship Era, 1906-45",1975,203,6.25611,5.56116, +9043,349779,SPARTA!: Struggle for Greece,2024,54,8.17315,5.56114, +9044,25462,German Whist,1894,167,6.40569,5.56114, +9045,161706,Wayward Board Game,2014,51,8.32647,5.56114, +9046,395181,Farms Race,2024,75,7.44133,5.56113,"395181, 428556" +9047,343696,Dune: Betrayal,2021,226,6.18503,5.56112, +9048,212378,Dragon Pets,2016,156,6.46468,5.56111, +9049,355467,Envelopes of Cash,2023,144,6.53994,5.56110, +9050,10676,Star Frontiers: Knight Hawks,1983,163,6.42577,5.56110, +9051,15269,The Headlines Game,1989,104,6.91587,5.56108, +9052,168653,Wilderness Empires,2015,96,7.02875,5.56108,"137708, 168653" +9053,299180,Not That Movie!,2022,112,6.81839,5.56105, +9054,159405,The Shadow Over Westminster,2015,138,6.58116,5.56103, +9055,305865,Dice Command,2021,71,7.54366,5.56102, +9056,320881,Aurelian: Restorer of the World,2020,76,7.41316,5.56102, +9057,177160,Frontier Stations,2015,129,6.65186,5.56100, +9058,280999,The Devil's to Pay! The First Day at Gettysburg,2019,65,7.72462,5.56097, +9059,180644,3 Kings,2015,121,6.72314,5.56096, +9060,295,Europa 1945-2030,1998,342,5.97208,5.56095, +9061,163319,"Gallipoli, 1915: Churchill's Greatest Gamble",2018,69,7.59855,5.56095, +9062,316767,Tacticum,2020,71,7.54085,5.56094,"54056, 316767, 354664" +9063,418858,Resafa,2024,75,7.43511,5.56093, +9064,126404,Area 1851,2015,171,6.38287,5.56093,"126404, 267140" +9065,7447,Replay Basketball,2003,50,8.37040,5.56090, +9066,218503,Wartime: The Battle of Valyance Vale,2017,103,6.92466,5.56089, +9067,6021,"Hastings, 1066",1987,124,6.69355,5.56089, +9068,176678,Fruit Passion,2015,113,6.80354,5.56087, +9069,276832,Fantasy Ranch,2019,101,6.95069,5.56085, +9070,2366,Quinto,1964,246,6.13130,5.56084, +9071,332621,Herdeiros do Khan,2021,59,7.93932,5.56083, +9072,374024,The Green Fivura,2022,77,7.38312,5.56083, +9073,98739,Byzantio,2013,202,6.25535,5.56082, +9074,37931,Jenga: Donkey Kong Collector's Edition,2008,373,5.93684,5.56080, +9075,247984,Moorea,2018,229,6.17328,5.56080, +9076,9673,Black Elephant,2004,69,7.59348,5.56080, +9077,2199,Thinking Man's Golf,1966,237,6.15232,5.56078, +9078,335872,Sunny Day Sardines,2022,150,6.49513,5.56076, +9079,367757,Battles of the English Civil War: A Solitaire Wargame,2022,50,8.36237,5.56073, +9080,106978,World at War: America Conquered,2013,73,7.47869,5.56070, +9081,17450,Argo,2016,346,5.96532,5.56069, +9082,244153,Your Town,2016,191,6.29331,5.56066, +9083,14036,Jok-R-ummy,1986,285,6.05145,5.56064,"14036, 226043" +9084,16030,Volley & Bayonet,1994,62,7.81645,5.56063,"16030, 38565, 373130" +9085,193697,The Men Who Would Be Kings: Colonial Wargaming Rules,2016,65,7.71231,5.56063, +9086,203716,Ta-Da!,2016,245,6.13144,5.56063, +9087,5183,Austerlitz,1993,143,6.53846,5.56062, +9088,358912,Raas: A Dance of Love,2025,49,8.41429,5.56062, +9089,19902,Shiloh: April Glory,2010,89,7.13127,5.56060, +9090,240835,Bug,2017,151,6.48616,5.56059, +9091,345918,Karak Goblin,2021,174,6.36379,5.56059, +9092,393404,Turbo Kidz,2023,91,7.09634,5.56058, +9093,318996,Welcome to Sysifus Corp,2021,62,7.81452,5.56058, +9094,68186,Toe-to-Toe Nu'klr Combat with the Rooskies,2010,152,6.47993,5.56058, +9095,233144,Manipulate,2018,67,7.64627,5.56058, +9096,42415,Dungeon Crawl,,49,8.41224,5.56057, +9097,349750,Molly House,2025,60,7.88933,5.56057, +9098,130922,Blocks in Afrika,2014,53,8.19686,5.56057, +9099,20907,Nature of the Beast: City vs. Suburb,2005,163,6.41755,5.56056,"20906, 20907, 34207" +9100,271759,Moon-Bots,2019,155,6.46174,5.56055, +9101,4017,Charlemagne: Dark Ages in Europe,1998,143,6.53706,5.56054,"1033, 4017, 8518, 18613, 88083" +9102,261160,The Fulda Gap: The Battle for the Center,2020,79,7.32785,5.56053, +9103,154499,Hot Tin Roof,2014,277,6.06451,5.56052, +9104,261838,Borders of Kanta,2019,70,7.55413,5.56050, +9105,350108,Abuela Co.,2021,58,7.96552,5.56047, +9106,85567,Passing Shot,2010,120,6.72267,5.56046, +9107,24803,Speed,1995,166,6.40035,5.56044, +9108,242742,Keys to the Castle,2017,311,6.00864,5.56043,"242742, 297341, 339310, 344631" +9109,369347,Héroes y Dados,2022,60,7.88333,5.56042, +9110,178958,The Lords of Rock,2016,188,6.30151,5.56040,"178958, 207713" +9111,416,A to Z,1992,323,5.99158,5.56038,"416, 27542, 39623, 42202, 161098" +9112,21463,John Silver,2006,294,6.03401,5.56037, +9113,285166,Bear Down!,2019,134,6.59955,5.56037, +9114,1319,Magic Hill,2001,352,5.95592,5.56036, +9115,9356,Pacific Fleet,1983,61,7.84230,5.56034, +9116,13224,The Conquerors: Alexander the Great,2006,210,6.22314,5.56034, +9117,377738,Café del Gatto,2023,180,6.33333,5.56032, +9118,67084,The War: Europe 1939-1945,2012,83,7.23614,5.56030,"67084, 270144" +9119,420311,Blood,2025,40,9.03750,5.56030, +9120,138728,Domus Domini,2015,144,6.52604,5.56029, +9121,178349,Empires at Sea: Deluxe Edition,2016,125,6.67280,5.56028, +9122,322158,Axon Protocol,2023,72,7.49167,5.56028, +9123,347970,Sinoda,2024,41,8.95159,5.56028, +9124,243704,Humboldt's Great Voyage,2019,237,6.14684,5.56026, +9125,394081,Rubber Paper Scissors,2023,92,7.07120,5.56026, +9126,3152,Star Wars: Starfighter Battle Book,1989,135,6.58963,5.56024, +9127,345618,DerrocAr: The Week of Five Presidents,2024,64,7.73125,5.56023, +9128,87893,Take It or Leave It,2010,267,6.08034,5.56020, +9129,15911,San Ta Si,2005,209,6.22453,5.56019, +9130,234510,The Deception of Antiques: 12 Chinese Zodiac Bronze Heads,2017,64,7.72969,5.56019, +9131,344400,Space Marine Adventures: Doomsday Countdown,2021,84,7.21310,5.56019, +9132,411543,My Shelfie: The Dice Game,2024,208,6.22770,5.56019,"255697, 411543" +9133,121429,Ascari: African Battles of the Italian Army 1890-1895,2012,78,7.33974,5.56017,"121429, 167177" +9134,362598,Atlas Lost: Rise of the New Sovereigns,2024,88,7.13750,5.56017, +9135,21829,Sherwood,2005,187,6.30241,5.56017, +9136,401493,FateFlip: Washed Ashore,2024,70,7.54286,5.56017, +9137,313439,Tribunal 1920,2022,117,6.74530,5.56011, +9138,165657,Melee,2014,735,5.74876,5.56011, +9139,69318,Perpetual-Motion Machine,2010,287,6.04320,5.56010,"69318, 135327" +9140,350610,Ryozen,2023,83,7.23020,5.56009, +9141,328536,Fish & Katz,2020,189,6.29332,5.56008, +9142,1869,Jägersro,1945,204,6.23922,5.56006,"1869, 396781" +9143,159877,Hat-Trick,2014,104,6.89221,5.56006, +9144,5503,TimeTripper,1980,211,6.21659,5.56005, +9145,262806,FILLIT,2018,100,6.94490,5.56003, +9146,47125,El Erudito,2008,132,6.60856,5.56000, +9147,2082,Shell Shock!,1990,173,6.35983,5.55998, +9148,258761,Twisty,2018,91,7.08022,5.55997, +9149,181377,The Opulent,2016,95,7.01611,5.55997, +9150,153510,Xalapa,2014,125,6.66532,5.55990, +9151,3507,By Golly!,2001,317,5.99568,5.55989, +9152,679,Minion Hunter,1992,205,6.23356,5.55987, +9153,105265,Battle of LITS,2011,317,5.99533,5.55984, +9154,179322,Healing Blade: Defenders of Soma,2016,77,7.35234,5.55983, +9155,9616,Horus,2008,469,5.85401,5.55981, +9156,5768,"Matanikau: Battles on the Matanikau River, Guadalcanal, 1942",1993,120,6.70958,5.55981, +9157,210428,Ligny & Wavre 1815: The Empire's Last Victories,2016,51,8.26471,5.55980, +9158,189925,Ludi Gladiatorii,2015,146,6.50464,5.55980, +9159,237088,Triangoli,2017,77,7.35130,5.55980, +9160,24028,Rukshuk,2006,374,5.92861,5.55980,"24028, 27603, 40530" +9161,255680,Ambar,2018,128,6.63727,5.55979, +9162,16450,Epées de France,2002,65,7.68154,5.55979,"16450, 23857, 43480, 249304" +9163,369558,Space Station Zero,2022,60,7.85833,5.55979, +9164,228142,Tales & Games: Jack & the Beanstalk,2017,147,6.49762,5.55976, +9165,108012,Collapsible D: The Final Minutes of the Titanic,2012,126,6.65357,5.55975, +9166,320018,Call of Madness,2022,117,6.73761,5.55974, +9167,1081,Die Schlacht der Dinosaurier,1993,174,6.35172,5.55974, +9168,73960,Red Poppies: WWI Tactics,2010,76,7.37237,5.55972, +9169,368715,Black Dragon's Guild,2023,58,7.93448,5.55971, +9170,277184,Across the United States,2019,106,6.85896,5.55970, +9171,7177,Guadalcanal: Semper Fi Series,2003,127,6.64409,5.55970, +9172,29262,La Bataille de Deutsch-Wagram,1981,45,8.62000,5.55970,"29262, 184590, 259499" +9173,260727,Zurmat: Small Scale Counterinsurgency,2022,57,7.97544,5.55969, +9174,302417,Mia London and the Case of the 625 Scoundrels,2020,163,6.40429,5.55968, +9175,334012,The Battle of Armageddon: Deluxe Edition,2021,79,7.30203,5.55967,"10243, 128433, 334012" +9176,371138,Laniakea,2022,72,7.47083,5.55965, +9177,355788,Chemical Overload,2024,87,7.14080,5.55963, +9178,142333,Mob Town,2013,130,6.61766,5.55963, +9179,357975,Stephens,2024,84,7.19702,5.55962, +9180,310267,Mother of Frankenstein,2023,80,7.27875,5.55962, +9181,22733,Uglydoll Card Game,2006,324,5.98395,5.55960, +9182,161966,Armymals,2014,148,6.48845,5.55959, +9183,230967,Verrix,2022,68,7.58088,5.55958, +9184,15386,Eye to Eye,2004,166,6.38747,5.55958, +9185,2285,Dark Future,1988,310,6.00287,5.55957, +9186,18963,En Garde!,2005,537,5.81538,5.55955,"18963, 269203" +9187,337638,Life of a Chameleon,2021,76,7.36711,5.55955, +9188,1618,French Foreign Legion,1982,78,7.32051,5.55954, +9189,5277,Overlord,1973,95,7.00516,5.55953, +9190,401177,Passo,2023,75,7.39013,5.55952, +9191,2105,Sopwith,1978,122,6.68443,5.55949, +9192,2080,Central America,1987,269,6.06952,5.55948, +9193,335130,Give Us Victories,2022,49,8.35878,5.55946, +9194,18652,For Honor and Glory: War of 1812 Land and Naval Battles,2005,77,7.34026,5.55944, +9195,413948,Festival,2024,148,6.48547,5.55941, +9196,148639,Founders of the Empire,2013,188,6.28840,5.55941, +9197,257313,Aliens: Hadley's Hope,2018,116,6.74069,5.55940,"156860, 257313" +9198,339742,50 Clues: The Secret of the Mark,2021,117,6.73034,5.55939, +9199,170431,King's Kilt,2015,277,6.05388,5.55938, +9200,39994,Cranium Party Playoff,2008,254,6.09863,5.55938, +9201,1188,Chaos Marauders,1987,1369,5.65935,5.55935,"1188, 55597" +9202,36598,Impetus,2008,75,7.38467,5.55935,"36598, 300982" +9203,181959,Gipfelkraxler,2015,250,6.10676,5.55933, +9204,8690,Buzzword,2003,720,5.74930,5.55930,"8690, 35314, 430540" +9205,104555,The Blue Lion,2011,361,5.93820,5.55930, +9206,129417,Scotland Yard,1990,151,6.46506,5.55929, +9207,2025,Frag,2001,2122,5.62373,5.55928,"2025, 4023, 18587" +9208,24698,Dameo,2000,67,7.60000,5.55927, +9209,244026,La Guerra di Gradisca 1615-1617,2017,62,7.76452,5.55927, +9210,3794,Legend of Zagor,1993,234,6.14355,5.55927, +9211,283208,Runaljod: The Sound of the Runes,2019,83,7.20618,5.55926, +9212,264748,Age of Fantasy: Skirmish,2018,52,8.18750,5.55925,"192140, 264748" +9213,365369,Hostage Rescue Squad: A Solitaire Game,2022,53,8.13733,5.55923, +9214,116981,Star Wars: Battle of Hoth,2012,296,6.02075,5.55922, +9215,7955,"Seelöwe: The German Invasion of Britain, 1940",1974,171,6.35789,5.55921, +9216,401223,Haunted Lands,2024,93,7.02688,5.55917, +9217,231876,Race for the Chinese Zodiac,2019,155,6.43925,5.55914,"231876, 284576" +9218,223360,¡Cobardes!,2017,266,6.07186,5.55912, +9219,354842,Drones VS Goélands,2022,156,6.43327,5.55912, +9220,232827,Rick and Morty: 100 Días,2017,161,6.40607,5.55911,"232827, 258069" +9221,34905,Backseat Drawing,2008,219,6.18151,5.55909, +9222,3901,Sturm Nach Osten,1980,128,6.62391,5.55909,"3901, 7963, 307358" +9223,333776,Cards Christians Like,2020,104,6.86942,5.55908, +9224,338006,DUOS,2022,97,6.96392,5.55907, +9225,364425,Stadt Land Vollpfosten: Das Kartenspiel – Classic Edition,2019,294,6.02251,5.55907,"250463, 364425, 382962, 382963, 382968, 383100, 383128, 383129, 383131, 383132, 383133, 401283" +9226,154,Union vs. Central,1999,111,6.78649,5.55906, +9227,307728,KOMBIO,2019,59,7.86780,5.55905, +9228,272223,Invictus: A Team Deck Building Game,2021,49,8.33878,5.55905, +9229,280282,Wakanda Forever,2019,183,6.30295,5.55902, +9230,351666,Vidrasso,2021,102,6.89314,5.55899, +9231,228425,Kaiju Crush,2017,179,6.31914,5.55899, +9232,172033,Crab Stack,2015,205,6.22268,5.55898, +9233,333775,Meridians,2021,116,6.73164,5.55897, +9234,423632,Asian Tigers: A Story of Prosperity,2024,90,7.07000,5.55895, +9235,356312,EXIT: Das Spiel + Puzzle – Das Gold der Piraten,2022,68,7.55882,5.55895, +9236,399378,For One: Galaktix,2023,77,7.32468,5.55894, +9237,150831,Cuba: The Splendid Little War,2013,87,7.12126,5.55892, +9238,314,Highlanders,1993,222,6.17113,5.55892, +9239,370391,12 Rivers,2022,111,6.78297,5.55890, +9240,19145,Disposable Heroes and Coffin For Seven Brothers: Infantry and Vehicle Small Unit Skirmish Wargaming in WWII,2004,67,7.58657,5.55889,"19145, 225054" +9241,162738,Light Rail,2014,215,6.19070,5.55889, +9242,329293,Loading,2021,145,6.49549,5.55887, +9243,291348,Amulet,2023,113,6.76018,5.55885, +9244,348065,Nicaea,2021,131,6.59466,5.55882, +9245,7639,Their Finest Hour,1976,121,6.68017,5.55882, +9246,191067,Zock 'n' Roll,2016,205,6.22068,5.55882, +9247,3270,Lamarckian Poker,1999,553,5.80414,5.55881,"622, 1528, 2283, 2284, 3270, 5636, 5873, 8706, 10713, 12907, 16324, 18380, 18662, 18663, 18910, 19263, 19835, 20717, 21363, 21701, 22302, 22876, 24788, 25066, 26377, 36315, 122823, 122825, 122826, 128337, 141567, 163124" +9248,323871,1961,2022,49,8.32653,5.55879,"323871, 398974" +9249,23375,HeroCard: Rise of the Shogun,2006,175,6.33371,5.55879, +9250,21149,War of the Suns: The War of Resistance 1937-1945,2013,84,7.17321,5.55879, +9251,157002,The Confederate Rebellion,2014,87,7.11724,5.55878,"31601, 157002" +9252,263168,Paradox University,2019,82,7.21220,5.55877, +9253,181031,Sweet Spot,2017,98,6.94209,5.55877, +9254,2758,Bridgette,1970,138,6.54065,5.55874, +9255,282721,Story Time Chess,2019,81,7.23148,5.55874, +9256,6380,WarCry,2003,157,6.42140,5.55871, +9257,220478,BARPIG,2017,154,6.43792,5.55870,"202275, 220478, 260711" +9258,260704,TonTon,2018,159,6.41013,5.55869,"244999, 260704" +9259,104553,Moeraki: Kemu,2011,80,7.25063,5.55868, +9260,292487,10 Gallon Tank,2020,131,6.59183,5.55867, +9261,3231,Die Sieben Weisen,2002,318,5.98412,5.55865, +9262,4120,King's Court,1983,73,7.41166,5.55864, +9263,233962,Cangaço,2019,78,7.29231,5.55862, +9264,200371,NecronomiCards,2016,136,6.55294,5.55862, +9265,295694,Catchy!,2019,103,6.87136,5.55862, +9266,112118,RED,2011,99,6.92434,5.55861, +9267,74233,Fictionaire,2010,245,6.11014,5.55858, +9268,27609,Numbers League: Adventures in Addiplication,2007,249,6.10124,5.55858, +9269,27608,Hit or Miss,2006,202,6.22742,5.55857, +9270,9077,La Grande Armée: The Campaigns of Napoleon in Central Europe,1972,116,6.72328,5.55857, +9271,261,Olympia 2000 (v. Chr.),1994,275,6.04971,5.55855, +9272,7849,Introduction to Advanced Dungeons & Dragons,1995,94,6.99532,5.55855, +9273,160125,Gods' Gambit,2014,188,6.27660,5.55852, +9274,73472,Pirates vs. Dinosaurs,2013,265,6.06793,5.55852, +9275,292901,Tharos,2021,139,6.52928,5.55850, +9276,274152,IT: Evil Below,2019,119,6.69232,5.55849, +9277,347889,Catch Sketch,2022,63,7.69984,5.55848, +9278,305498,Tomorrow Dies Today,2020,45,8.55556,5.55847, +9279,285234,Slip Strike,2020,122,6.66393,5.55847, +9280,2879,Encore,1989,450,5.85804,5.55844, +9281,400508,Word Traveler,2024,169,6.35609,5.55844, +9282,12699,"The Army of the Heartland: The Army of Tennessee's Campaigns, 1861-1863",1996,84,7.16250,5.55841, +9283,4323,VOC! Founding the Dutch East Indies Company,2002,294,6.01667,5.55841, +9284,190577,Get Adler! Deduction Card Game,2016,108,6.80556,5.55839, +9285,377651,Moody Bear Kingdom,2023,41,8.84268,5.55837, +9286,163255,Reconquista,2014,71,7.45493,5.55837, +9287,2562,Samurai & Katana,1999,300,6.00713,5.55836, +9288,44558,Beer & Pretzels,2009,270,6.05667,5.55833, +9289,255255,Somnium: Rise of Laputa,2019,121,6.67025,5.55832, +9290,358607,Bonaparte in the Quadrilateral,2022,51,8.19608,5.55832, +9291,4815,The Campaign for North Africa: The Desert War 1940-43,1979,191,6.26236,5.55830,"4815, 217198" +9292,256480,Disastles,2018,102,6.87637,5.55828, +9293,32226,Liebe & Intrige,2007,270,6.05611,5.55827, +9294,374130,TENTRICKS,2024,83,7.17614,5.55821, +9295,255165,SHIBUYA,2017,140,6.51714,5.55820, +9296,262899,La Petite Mort,2018,190,6.26474,5.55819, +9297,171542,Gum Gum Machine,2015,433,5.86815,5.55818, +9298,2335,Rome & Carthage,1954,164,6.37652,5.55818, +9299,9867,Poitiers 1356 et Formigny 1450,1999,74,7.37162,5.55817, +9300,273519,With It Or On It,2019,63,7.68810,5.55817, +9301,285970,Of Knights and Ninjas,2020,64,7.65469,5.55817, +9302,5618,Sports Action Canadian Pro Football,1974,40,8.91250,5.55816, +9303,209849,King Frog,2016,122,6.65738,5.55814, +9304,300944,Gates of Mara,2020,93,7.00000,5.55813, +9305,9297,"Oh, Pharaoh!",2004,452,5.85463,5.55810, +9306,9504,Corteo,1979,88,7.08086,5.55809, +9307,257395,Dungeon Derby,2018,118,6.69364,5.55809, +9308,273636,1836,2019,69,7.50000,5.55809, +9309,357674,Gimme That!,2022,155,6.42254,5.55808, +9310,1986,Spy Alley,1992,1282,5.66258,5.55808,"1986, 93823, 146926" +9311,392193,Unlock!: Short Adventures – Schrödinger's Cat,2023,111,6.76505,5.55808, +9312,177976,Cunning Folk,2015,183,6.28995,5.55806, +9313,8317,The Sands of War,1991,121,6.66446,5.55804, +9314,192668,Flag Dash,2016,254,6.08502,5.55803, +9315,135812,Knot Dice,2016,128,6.60367,5.55802, +9316,5086,Electronic Mall Madness,1989,528,5.81148,5.55801,"5086, 15162, 70372" +9317,351956,Crop Circles,2022,84,7.15119,5.55801, +9318,324670,Rocky Mountain Man,2020,63,7.68222,5.55801, +9319,163798,Nuevo Mundo,2014,76,7.31832,5.55800, +9320,385975,Converge: Catalysts of Change,2023,73,7.39041,5.55799,"385975, 393199, 393200" +9321,227026,Debatable,2017,141,6.50651,5.55798, +9322,260644,Imagineers,2019,154,6.42637,5.55797, +9323,330635,Dungeon Date,2022,64,7.64687,5.55796, +9324,27665,Korsoun 1944,2007,85,7.13059,5.55795,"13994, 27665, 38301, 126419, 187002" +9325,165812,Nightmare Forest: Dead Run,2016,156,6.41474,5.55794,"165812, 196634" +9326,67421,ASG Golf,2009,55,7.98727,5.55792, +9327,44338,Ninja Burger: Secret Ninja Death Touch Edition,2009,176,6.31676,5.55790, +9328,68387,Trenchzone,2010,71,7.43803,5.55787, +9329,232242,Wanted 7,2017,143,6.49133,5.55787, +9330,268952,Crazy Tower,2020,181,6.29520,5.55785, +9331,202884,Temporal Odyssey,2018,145,6.47817,5.55785,"202884, 344764" +9332,338902,Passengers,2023,117,6.69829,5.55784, +9333,388753,Five Peaks,2023,96,6.94740,5.55783, +9334,364343,Strands,2022,136,6.53860,5.55782, +9335,200282,Jack's Friends,2017,85,7.12694,5.55782,"200282, 343837" +9336,381587,Lore,2024,81,7.20370,5.55779,"381587, 428889" +9337,5264,"Kanev: Parachutes Across the Dnepr, September 23-26, 1943",1981,140,6.51000,5.55779, +9338,74678,West Riding Revisited,2010,104,6.83942,5.55778,"806, 74678" +9339,20122,Bunte Runde,2005,240,6.11312,5.55778, +9340,177099,Great Scott!,2016,118,6.68706,5.55777, +9341,394940,Tiny Woodys,2023,81,7.20247,5.55775, +9342,248366,Brutality,2019,94,6.97426,5.55772, +9343,220878,Feuville,2017,186,6.27351,5.55772, +9344,153002,Koboldbande,2014,162,6.37938,5.55770,"153002, 193153" +9345,3181,Farkle,1996,3000,5.60205,5.55769,"3181, 244679, 256015, 343520" +9346,131060,Ready to Rock!,2012,174,6.32230,5.55768,"131060, 334945" +9347,166276,Hellweg westfalicus,2014,148,6.45642,5.55766, +9348,195518,Crazy Karts,2016,594,5.78158,5.55766, +9349,237106,Doom Realm,2017,97,6.92887,5.55766, +9350,5637,APBA Pro Football,1958,160,6.38875,5.55765, +9351,360113,Barbarian Kingdoms,2024,57,7.89035,5.55764, +9352,248737,Pacific Rim: Extinction,2018,79,7.24051,5.55763, +9353,360552,Beaches for the Brave: A Solitaire Wargame,2022,60,7.77333,5.55763, +9354,402106,Power Vacuum,2024,134,6.54970,5.55763, +9355,585,Kardinal,2000,134,6.54925,5.55760, +9356,357485,18Svea,2022,63,7.66667,5.55760, +9356,378395,Cereal Killer,2023,63,7.66667,5.55760, +9358,312880,Lock 'n Load Tactical: Heroes of the Bitter Harvest,2023,46,8.44565,5.55759, +9359,376477,Exit: The Game – The Magical Academy,2023,119,6.67395,5.55759, +9360,166650,Gingerdead House,2015,259,6.07048,5.55759, +9361,306072,Merchants of Qultah,2021,59,7.80814,5.55756, +9362,6039,Antietam: Burnished Rows of Steel,1993,115,6.71217,5.55756, +9363,382241,Chroma Mix,2024,71,7.42746,5.55755, +9364,153723,Dr. McNinja's Legendary Showdown,2014,199,6.22462,5.55755,"153723, 173673, 211202, 244338" +9365,306257,18 Los Angeles,2020,129,6.58651,5.55754, +9366,16144,Fruit Spy,2005,606,5.77650,5.55753, +9367,357992,Disney Return of the Headless Horseman Game,2022,84,7.13722,5.55752, +9368,155023,War of Kings,2014,71,7.42606,5.55751, +9369,43136,Chunky Fighters,2009,201,6.21741,5.55750, +9370,250808,Hero: Tales of the Tomes,2018,68,7.50809,5.55750,"250808, 409849" +9371,1891,Portal,1997,278,6.03453,5.55749,"1891, 327953" +9372,8328,Paratroop,1979,230,6.13387,5.55747, +9373,252484,Meeple Party,2019,123,6.63528,5.55747, +9374,315289,IQ Files: Escape Room – Liberation,2021,74,7.34878,5.55746, +9375,89918,Mount Drago,2011,389,5.89823,5.55746, +9376,331573,Pusheen Purrfect Pick,2021,187,6.26597,5.55744, +9377,344640,Alphabet Runner Games,2022,35,9.34286,5.55743, +9378,17538,"Jackson at the Crossroads: Cross Keys & Port Republic, June 8-9, 1862",1981,65,7.59538,5.55743, +9379,182593,Deterrence 2X62,2015,121,6.65207,5.55742,"67112, 182593" +9380,12269,Manassas,1980,43,8.63721,5.55741,"12269, 322235" +9381,134964,Moonbase Alpha,2012,100,6.88150,5.55740, +9382,243697,Cooks & Crooks,2019,112,6.73911,5.55738, +9383,143323,Stak Bots,2013,184,6.27663,5.55737,"143323, 155745, 210626, 258299" +9384,157451,Mein erster Spieleschatz,2010,144,6.47637,5.55737, +9385,102151,Colorado Midland,2011,132,6.55985,5.55736, +9386,312243,Make Make,2020,74,7.34526,5.55735, +9387,125675,Doctor Who: The Card Game,2012,958,5.69544,5.55735,"125675, 189919, 350028" +9388,170195,Oh My Gods!,2016,78,7.25335,5.55735, +9389,403280,Yuan: l'Art de la Guerre – Chine,2023,46,8.43268,5.55734,"403280, 403282" +9390,5258,Star Trek: The Next Generation – Interactive VCR Board Game – A Klingon Challenge,1993,582,5.78448,5.55731, +9391,266936,Slyville,2019,120,6.65883,5.55730, +9392,19074,Ostia: The Harbor of Rome,2005,520,5.81141,5.55729, +9393,7590,Seastrike,1974,80,7.20875,5.55727, +9394,332886,Backyard Chickens,2022,87,7.07471,5.55723, +9395,964,Kapitän Wackelpudding,1994,207,6.19497,5.55723, +9396,259710,Arcane Alley,2019,102,6.85137,5.55722, +9397,104340,Meltdown 2020,2011,202,6.21064,5.55722, +9398,371333,Hissy Fit,2024,76,7.29276,5.55718, +9399,348581,Beetle to the Bubble,2022,84,7.12738,5.55718, +9400,145915,Battleborn Legacy,2017,59,7.79271,5.55718, +9401,174517,Versailles,2015,93,6.97527,5.55717, +9402,403683,"Algae, Inc.",2024,50,8.19400,5.55715, +9403,301083,"An Impossible War: The First Carlist War in the North, 1834-1838",,38,9.02632,5.55715, +9404,307534,Большая Бродилка (Big Adventure),2019,142,6.48546,5.55714,"307534, 414777" +9405,959,Luftschiff,1996,79,7.22532,5.55713, +9406,90050,Eleminis,2010,342,5.94234,5.55711,"90050, 157061" +9407,132251,Ghooost!,2013,1141,5.67254,5.55710, +9408,408381,War Story: Occupied France,2024,51,8.13922,5.55709, +9409,237638,Isles of Terror,2020,109,6.76495,5.55707, +9410,101118,"Borodino: Napoleon in Russia, 1812",2012,81,7.18198,5.55706, +9411,386199,Coney,2024,120,6.65362,5.55704, +9412,34139,Death Wears White,2001,65,7.58146,5.55704, +9413,10248,Panther Line: Army Group North 1944,2004,59,7.78681,5.55703, +9414,341362,Reapers,2021,86,7.08663,5.55703, +9415,344629,Pepinillo,2021,93,6.97079,5.55700, +9416,381349,Planet Trade,2023,36,9.20833,5.55698, +9417,4357,"Aspern-Essling: Napoleon on the Danube, 1809",1999,112,6.73036,5.55697, +9418,73312,4 Seasons,2010,232,6.12328,5.55696, +9419,218556,No Game Over,2016,194,6.23407,5.55695, +9420,209688,Papertown,2021,92,6.98478,5.55695, +9421,358019,Ghosts of the Jungle: A Solitaire Wargame,2022,61,7.71014,5.55694, +9422,25037,Eagles of the Empire: Spanish Eagles,2008,91,7.00000,5.55693, +9423,260904,Crimopolis,2019,79,7.21899,5.55692, +9424,4375,Krone & Schwert,2002,294,6.00348,5.55692, +9425,474,Cold War,1984,233,6.12039,5.55691, +9426,6046,Gettysburg: Lee's Greatest Gamble,1992,131,6.55878,5.55690, +9427,281020,Treasures of Cibola,2019,140,6.49429,5.55689, +9428,123604,"Leuthen: Frederick's Greatest Victory 5 December, 1757",2012,86,7.08256,5.55688, +9429,6732,Aces High,1980,171,6.32380,5.55685,"6732, 8310, 8315, 8409" +9430,148745,We Were Brothers,2015,68,7.48529,5.55685, +9431,33427,S'quarrels: A Game of Absolute Nuts,2007,350,5.93146,5.55684, +9432,18481,Racetrack,1973,171,6.32339,5.55682, +9433,3377,20 Questions,1988,828,5.71513,5.55682,"3377, 22373, 425409" +9434,114784,Rhein: River Trade,2016,167,6.34162,5.55682, +9435,3771,Palabra,1990,185,6.26513,5.55681, +9436,2922,Chairs,1999,1064,5.67996,5.55680,"2922, 292908, 429774, 429776" +9437,393842,Quest Calendar: Leaf Riders of Wrenwood,2023,59,7.77718,5.55679, +9438,215614,Khan of Khans,2016,345,5.93649,5.55679,"174057, 215614" +9439,36788,Anno Domini: Wort Schrift Buch,2007,104,6.81635,5.55679, +9440,2427,Skirmish,1975,194,6.23196,5.55678, +9441,11695,Defiant Russia,2004,222,6.14662,5.55677, +9442,10916,Spearhead,1995,98,6.89184,5.55672,"10916, 13410" +9443,123370,Nox,2012,673,5.75113,5.55672, +9444,237798,The Wilson Wolfe Affair,2017,62,7.66647,5.55670, +9445,215058,Sonhando com Alice,2016,71,7.39887,5.55670, +9446,5958,"NATO, Nukes & Nazis",1990,101,6.85149,5.55669,"5958, 209640, 214357" +9447,12627,Cthulhu 500,2004,583,5.78094,5.55668,"12627, 192311" +9448,240776,Ruins of Mars,2021,160,6.37362,5.55666, +9449,270265,Trepanation,2023,86,7.07616,5.55665, +9450,171620,Thieves!,2015,333,5.94891,5.55663, +9451,4031,Jungle,,358,5.92148,5.55662, +9452,242191,Tierra y Libertad: The Mexican Revolution Game (Second Edition),2018,91,6.99176,5.55661,"58764, 242191" +9453,316312,Buru,2024,101,6.84950,5.55661, +9454,4421,Ad Acta,2002,223,6.14215,5.55661, +9455,263051,Big Easy Busking,2020,122,6.62676,5.55660, +9456,192201,Wiener Walzer,2016,121,6.63517,5.55658, +9457,301085,Rebis,2020,252,6.07447,5.55658, +9458,268221,Custer's Last Stand,2019,64,7.59563,5.55657, +9459,146762,Rampaging Jotunn,2016,62,7.66129,5.55657, +9460,207486,Infinities: Defiance of Fate,2020,101,6.84822,5.55655, +9461,346553,Heuschrecken Poker,2021,127,6.58346,5.55654, +9462,342113,Magical Friends and How to Summon Them,2023,74,7.31892,5.55654, +9463,12501,The Franco-Prussian War,1992,114,6.69912,5.55647, +9464,102219,Connect 4 Launchers,2010,182,6.27203,5.55646, +9465,5834,Campaign to Stalingrad: Southern Russia 1942,1992,89,7.01910,5.55643, +9466,4961,Sunda to Sahul,2002,314,5.97091,5.55642, +9467,111119,Perplexus Rookie,2011,95,6.92632,5.55642, +9468,2043,Shogun,1976,593,5.77586,5.55641, +9469,20821,"Tara, Seat of Kings",2006,179,6.28335,5.55641, +9470,59960,Dakota,2010,423,5.86395,5.55640, +9471,361860,Busy Beaks,2023,90,7.00111,5.55637, +9472,295483,Kradia: Wild Hunt Festival,2019,95,6.92421,5.55633,"272802, 295483, 313952" +9473,409581,Rivages,2024,84,7.10333,5.55633, +9474,324884,Monster 12,2021,144,6.45812,5.55630, +9475,235494,Dino Dunk,2018,80,7.17938,5.55629, +9476,18297,Experiment,2006,260,6.05558,5.55628, +9477,364346,Kaiserkrieg! The Great War 1914-1918,2022,57,7.83246,5.55624, +9478,367819,Campaign: Fall Blau,2023,49,8.20204,5.55620, +9479,10022,La Révolution française: La patrie en danger 1791-1795,1995,78,7.21795,5.55619, +9480,7475,Hand and Foot,1982,447,5.84610,5.55618, +9481,356245,Mansplaining,2022,106,6.77830,5.55616, +9482,2087,Magic Dance,1988,595,5.77387,5.55616, +9483,331028,Stonewall Uprising,2022,78,7.21667,5.55615, +9484,354975,Between Light & Shadow: Chapter 1 – Dawn,2023,55,7.91091,5.55614, +9485,125022,Stratopolis,2012,114,6.69175,5.55612, +9486,11188,Superstar Pro Wrestling Game,1984,70,7.40557,5.55612, +9487,270913,Betwixt and Between,2021,78,7.21551,5.55611, +9488,7840,The Defense of Rorke's Drift,1991,111,6.72207,5.55610, +9489,302887,Bronze Age,2022,87,7.04310,5.55608, +9490,2902,Twilight Imperium: Armada,2001,118,6.65136,5.55603, +9491,36661,One More Barrel,2008,155,6.38968,5.55602, +9492,183361,Shogunate,2016,180,6.27384,5.55601, +9493,415142,Traces of Hubris,2024,50,8.14000,5.55601,"70362, 147708, 415142" +9494,214910,Tiki,2018,336,5.94051,5.55601, +9495,202204,Munchkin Collectible Card Game,2018,219,6.14589,5.55600,"202204, 240016, 240025, 240026, 258171" +9496,159011,Thornwatch,2018,174,6.29828,5.55599, +9497,359238,Zwergendorf,2022,126,6.58093,5.55598, +9498,147681,Black Stories: Shit Happens Edition,2013,175,6.29371,5.55597, +9499,230266,Scare It!,2018,360,5.91431,5.55593, +9500,359157,Nestlings,2024,86,7.05535,5.55590, +9501,226237,RPGQuest: A Jornada do Herói,2017,48,8.24167,5.55589,"226237, 259709" +9502,389135,Battles of Napoleonic Europe: A Solitaire Wargame,2023,41,8.70000,5.55588, +9503,230528,Cowboy Bebop: Boardgame Boogie,2019,132,6.53197,5.55586, +9504,1586,The Hobbit Adventure Boardgame,1994,351,5.92293,5.55585, +9505,70096,Woolfy,2009,139,6.48266,5.55585, +9506,295480,TIME Stories Revolution: Cavendish,2023,91,6.97114,5.55583, +9507,395636,Paella Park,2023,48,8.23896,5.55583, +9508,96728,The Beautiful Game,2006,78,7.20679,5.55582,"32428, 77199, 96728" +9509,103830,Morelli,2013,76,7.24934,5.55580, +9510,349369,Tabriz,2024,75,7.27187,5.55579, +9511,337755,Disney: Mickey and the Beanstalk,2021,133,6.52340,5.55579, +9512,343852,SPECTRE: The Board Game,2022,166,6.33100,5.55579, +9513,283850,Orconomics (Second Edition),2022,135,6.50853,5.55576,"238342, 238343, 283850" +9514,3162,Invasion of the Air-eaters,1979,154,6.39091,5.55575,"3162, 4320" +9515,179627,Tunhell,2015,152,6.40184,5.55575, +9516,157528,The Dauphin and the Sword,2014,61,7.66393,5.55575,"31651, 157528" +9517,136240,Ignis,2013,223,6.13206,5.55572, +9518,70499,The Island,2010,66,7.50303,5.55572, +9519,370566,Triggs,2022,145,6.44207,5.55571, +9520,246263,Fallen Angels,2018,112,6.70312,5.55571, +9521,277930,Freezing Death: Finnish Winter War,2019,70,7.39143,5.55571, +9522,202652,DragonStone Mine!,2016,109,6.73453,5.55570, +9523,156101,Dark Age Z,2015,84,7.08524,5.55570, +9524,202265,Chicago & NorthWestern,2016,91,6.96736,5.55569, +9525,158861,Athlas: Duel for Divinity,2014,158,6.36861,5.55568,"1224, 158861" +9526,414283,Arkendom Conquista Starter Set,2023,37,9.02703,5.55568, +9527,16466,Across the Pacific,2010,55,7.89091,5.55568, +9528,382801,Grass is Greener,2023,67,7.47164,5.55565, +9529,1387,Alaska,1979,422,5.85960,5.55561, +9530,5997,Pleasant Hill: The Red River Campaign,1986,111,6.71054,5.55558, +9531,75418,Regimental Fire and Fury,2010,56,7.84464,5.55557, +9531,193700,Horizon Wars: Science-Fiction Combined-Arms Wargaming,2016,56,7.84464,5.55557, +9533,196392,Turin Market,2016,231,6.11048,5.55557, +9534,2521,Nexus,2001,219,6.14064,5.55555, +9535,263736,Warhammer Age of Sigmar: The Rise & Fall of Anvalor,2019,152,6.39836,5.55554, +9536,148494,"1,2,3! Now you see me...",2013,267,6.03513,5.55551, +9537,15153,The Flowers of the Forest,1995,58,7.76293,5.55550, +9538,3843,Tomb Raider Collectible Card Game,1999,214,6.15371,5.55550, +9539,1620,Decline and Fall of the Roman Empire,1972,120,6.62208,5.55548, +9540,35910,Cannonball Colony,2008,86,7.04302,5.55546, +9541,65582,Regatta,2010,261,6.04552,5.55545, +9542,228509,TravelBattle,2017,73,7.30753,5.55545, +9543,395309,GloBUM!,2024,65,7.52308,5.55544, +9544,72848,Kill the Overlord,2012,403,5.87274,5.55543, +9545,312626,The Vote: Suffrage and Suppression in America,2020,77,7.21558,5.55542, +9546,245384,Spring Rally,2018,155,6.38013,5.55541, +9547,378731,Fictions: Memoirs of a Gangster,2023,81,7.13313,5.55540, +9548,306643,Warsaken,2021,40,8.75000,5.55539, +9549,256911,Reconquista,2018,90,6.97467,5.55537, +9550,358833,Bolets,2022,68,7.43382,5.55537, +9551,248909,Wurst Case Scenario,2018,164,6.33354,5.55533, +9552,217338,Mistkäfer,2017,168,6.31458,5.55530, +9553,145794,The Longest Trench,2022,66,7.48788,5.55529, +9554,415921,Backstories: Alone Under the Ice,2024,68,7.43088,5.55529,"415921, 425610" +9555,260922,Deblockle,2018,137,6.48599,5.55527, +9556,1237,Autoscooter,1999,212,6.15672,5.55527, +9557,249299,F28: War Always Changes,2018,37,9.00000,5.55525, +9558,227505,Portals and Prophets,2018,68,7.42876,5.55523, +9559,130242,Spice Merchant,2012,167,6.31802,5.55522, +9560,301262,Dicycle Race,2020,155,6.37690,5.55521, +9561,18579,The Nightmare Before Christmas TCG,2005,115,6.66261,5.55521, +9562,40251,Risk: Balance of Power,2008,480,5.82050,5.55520, +9563,363089,Regine,2022,169,6.30864,5.55520, +9564,10534,Napoleon's Art of War: Eylau & Dresden,1979,210,6.16143,5.55519, +9565,23658,Fiery Dragons,2006,256,6.05247,5.55519, +9566,260269,Eco-Links,2018,114,6.67189,5.55519, +9567,235760,Tribe,2017,169,6.30799,5.55515,"235760, 268255" +9568,7240,Vanished Planet,2003,486,5.81686,5.55514, +9569,99698,Micro Space Empire,2011,190,6.22421,5.55511,"99698, 177411, 392701" +9570,421912,Valkyries,2024,60,7.67383,5.55511, +9571,6037,Cortes: Conquest of the Aztec Empire,1993,138,6.47601,5.55509, +9572,367024,Temple Raider,2022,75,7.24867,5.55506, +9573,335864,Gussy Gorillas,2023,165,6.32455,5.55504, +9574,354628,Death of an Army: Ypres 1914,2022,46,8.31522,5.55504,"161511, 354628" +9575,161290,Space Movers 2201,2015,139,6.46835,5.55503, +9576,369114,Outrun the Bear,2023,97,6.86369,5.55503, +9577,340910,We're Sinking!,2024,57,7.78105,5.55500, +9578,407720,Post Office,2023,89,6.98034,5.55499,"407720, 420950" +9579,340440,DemLoc,2023,39,8.80769,5.55499, +9580,323367,Outsmarted!,2020,267,6.03007,5.55499, +9581,148381,Ikonikus,2013,324,5.94635,5.55497, +9582,91425,Map It! World Edition,2011,202,6.18272,5.55497,"91425, 180664" +9583,402373,Unlock!: Supernatural Adventures,2023,105,6.76162,5.55493, +9584,68931,Flee The Scene,2015,118,6.62831,5.55491, +9585,290636,Sanctorvm: The Board Game,2021,39,8.80256,5.55491, +9586,128252,Danube 20: The Battles of Aspern-Essling & Wagram 1809,2012,68,7.41618,5.55487, +9587,6112,Battle Dome,1994,144,6.43372,5.55486, +9588,194102,DeathBot Derby,2017,84,7.06119,5.55485, +9589,257669,Streaming,2018,128,6.54320,5.55484, +9590,194976,Ni-Ju,2016,75,7.24080,5.55482, +9591,224013,Mini Park,2017,226,6.11421,5.55481, +9592,1161,Perquackey,1956,250,6.06046,5.55480, +9593,297318,¡Desplumados!,2019,82,7.09561,5.55477, +9594,349593,Santander '37,2021,68,7.41176,5.55474,"246751, 349593, 424941" +9595,1920,The Business Game,1965,359,5.90641,5.55473, +9596,43801,"Afrikakorps: Decision in the Desert, 1941-42",2010,70,7.35814,5.55473, +9597,270223,The Ghosts of Castle Turnwall,2019,131,6.51832,5.55472, +9598,258070,Alice,2018,128,6.54060,5.55471, +9599,259962,Stress Botics,2024,54,7.89074,5.55469, +9600,206798,Chaparral,2016,60,7.65667,5.55467, +9601,172382,Death Over The Kingdom,2017,98,6.84153,5.55467, +9602,361387,Weavlings in the Wilds,2022,51,8.02745,5.55467, +9603,287711,The Path of the Adventurers,2021,66,7.46515,5.55466, +9604,1208,1851: Kentucky & Tennessee,1998,117,6.63214,5.55465,"1208, 407694" +9605,219783,MourneQuest,2019,120,6.60517,5.55465, +9606,282216,Wolves of Mercia,2019,102,6.78990,5.55462, +9607,7487,Flutter,1950,110,6.70000,5.55462, +9608,242630,O Palácio do Marquês,2018,53,7.93111,5.55460, +9609,24051,Fowl Play!,2006,208,6.15998,5.55459, +9610,434,Yucata',1996,567,5.77665,5.55458, +9611,54457,The Arduous Beginning: The Attack of Army Group Center June - August 1941,2009,85,7.03576,5.55458, +9612,337117,RATS: High Tea at Sea,2021,96,6.86604,5.55458, +9613,5700,"Air Bridge to Victory: Operation Market-Garden, 1944",1990,166,6.31295,5.55457, +9614,402208,Ku-Ka-König,2023,101,6.80099,5.55457, +9615,337998,Llamasters: The Party Game,2021,49,8.12245,5.55455, +9616,279886,Iron Forest,2024,45,8.35044,5.55454, +9617,133671,A Fool's Fortune,2012,256,6.04559,5.55450, +9618,254157,Last Days: Zombie Apocalypse,2018,57,7.75965,5.55449, +9619,209716,Edgar & Lucien,2017,98,6.83673,5.55447, +9620,40949,Nur die Ziege zählt,2009,235,6.08915,5.55447, +9621,217554,Dr. Microbe,2017,325,5.94101,5.55446, +9622,363718,Kyudo,2022,130,6.52077,5.55446,"337609, 363718" +9623,256569,Castle Rampage,2018,285,5.99518,5.55445, +9624,288,Rossyïa 1917,1995,73,7.27493,5.55445, +9625,4343,Semper Fi!,1997,95,6.87632,5.55444, +9626,85899,Sphactérie 425 av. J.-C.,2010,58,7.71897,5.55442,"85899, 261450" +9627,1635,Demonlord,1981,106,6.73847,5.55441, +9628,255702,Cool Runnings,2018,144,6.42569,5.55439,"124152, 255702" +9629,204577,Sponsio,2016,149,6.39638,5.55439, +9630,1924,Maloney's Inheritance,1988,372,5.89156,5.55438,"400, 512, 1924" +9631,344332,Total War: ROME – The Board Game,2024,47,8.22298,5.55437, +9632,21411,Island War: Four Pacific Battles,1975,134,6.49030,5.55437,"8743, 8744, 8745, 8746, 21411" +9633,322815,Perfumery,2020,71,7.31901,5.55432, +9634,4366,"Remember the Maine! The Spanish-American War, 1898",1986,102,6.78265,5.55431,"4366, 405571" +9635,357671,Dracula: Walpurgis Night,2022,85,7.02824,5.55431, +9636,2229,Spiel,1980,238,6.08067,5.55431,"2229, 17272" +9637,283805,To the Death!,2019,66,7.45152,5.55428, +9638,38918,Hooop!,2006,292,5.98301,5.55427, +9639,253575,The Gig,2023,75,7.22320,5.55426, +9640,20233,Marquis,2005,174,6.27345,5.55425, +9641,4234,Hougoumont: Rock of Waterloo,1991,121,6.58843,5.55425, +9642,344127,SCRAP,2023,46,8.27391,5.55423, +9643,17994,Anno Domini: VIP,2004,94,6.88511,5.55423, +9644,284785,Sherlock Junior: Suriguri,2019,117,6.62333,5.55423,"284785, 401941, 401943, 407562" +9645,386775,Iskra,2023,45,8.33333,5.55421, +9646,272598,Furry Foodies,2019,88,6.97523,5.55421, +9647,291445,Virtue Signal: the Game of Social Justice,2020,95,6.86947,5.55417, +9648,231972,POWERUP,2018,80,7.11567,5.55415, +9649,240175,VITA MORS,2017,105,6.74381,5.55415, +9650,390314,1812: Napoleon's Fateful March,2024,40,8.67500,5.55412, +9651,404349,Guilty: Houston 2015,2024,56,7.78268,5.55410, +9652,3641,Grand Imperialism,1978,88,6.97159,5.55408,"3641, 14544" +9653,298171,Thread Count,2020,163,6.31933,5.55407, +9654,14451,Nomic,1982,84,7.03810,5.55404, +9655,140594,Word Whimsy,2013,99,6.81192,5.55399, +9656,149927,LED: Lógica – Estrategia – Deducción,2013,68,7.38529,5.55398, +9657,122701,Monolith: The Strategy Game,2013,195,6.19256,5.55398, +9658,298173,Honey Moon,2020,145,6.41241,5.55396, +9659,317722,Mythalix,2021,94,6.87784,5.55395, +9660,224662,Sushi War: All You Can Hit!,2017,123,6.56569,5.55395, +9661,173269,Aquarium,2015,68,7.38382,5.55394, +9662,2947,Broker,1961,448,5.83165,5.55394, +9663,27970,Star Wars PocketModel TCG,2007,494,5.80577,5.55393, +9664,251538,Star Wars: Han Solo Card Game,2018,487,5.80935,5.55392,"251538, 349490, 359368" +9665,204755,Isle of Monsters,2017,211,6.14336,5.55392, +9666,126443,The Lord of the Rings: The Battle for Middle-Earth,2012,476,5.81511,5.55390, +9667,20528,Palace,,342,5.91740,5.55389, +9668,198541,Paper 'Mech,2016,59,7.66017,5.55387, +9669,341402,Zefiria,2022,160,6.33028,5.55385, +9670,343483,ThreeTale,2022,48,8.14167,5.55385, +9671,195158,Project Z: The Zombie Miniatures Game,2016,63,7.52381,5.55380, +9672,193831,ColorFox,2016,198,6.18035,5.55378,"193831, 234117" +9673,266769,Jinja,2021,67,7.40522,5.55377, +9674,407627,Cheez-Tricks,2024,104,6.74615,5.55376, +9675,237229,Roar: King of the Pride,2018,185,6.22382,5.55374, +9676,5830,Bloody 110,1989,80,7.10250,5.55371, +9677,162391,Archaeologia,2014,109,6.68991,5.55369, +9678,239682,Noises at Night,2018,138,6.45109,5.55369, +9679,225645,Gyrating Hamsters,2017,141,6.43191,5.55368, +9680,322809,Diabolik: Heists and Investigations,2020,71,7.29718,5.55366, +9681,94493,Zaibatsu,2010,79,7.12025,5.55365,"94493, 231474" +9682,13936,Dark Age: Core Rules,2002,59,7.65085,5.55364,"13936, 122751, 172696, 229988" +9683,5479,"Drive on Washington: The Battle of Monocacy Junction, July 9, 1864",1980,82,7.06220,5.55363, +9684,10525,Football Champions,2001,87,6.97529,5.55362, +9685,358051,Teeter Tower,2022,108,6.69880,5.55362, +9686,31336,Corunea,2008,117,6.61026,5.55359, +9687,292339,La Casa de Papel Escape Game,2019,147,6.39442,5.55358,"292339, 344870" +9688,164589,Roar-a-Saurus,2014,367,5.89031,5.55357, +9689,253319,Southern Pacific,2018,86,6.99012,5.55356, +9690,324885,Das NEINhorn,2021,232,6.08603,5.55355, +9691,180650,Goths Save The Queen,2016,237,6.07468,5.55354, +9692,362830,Roulette-Taking Game,2022,73,7.24521,5.55353, +9693,184802,Ironclad,2018,100,6.78827,5.55353, +9694,5575,PeaceBowl,2003,140,6.43538,5.55352, +9695,34238,Risk: Black Ops,2008,95,6.85263,5.55350, +9695,42783,What Price Glory?,2013,95,6.85263,5.55350,"42783, 57314, 137834" +9697,65565,Flicochet,2010,92,6.89457,5.55349, +9698,72808,Saustall,2010,174,6.26213,5.55345, +9699,296419,Sherlock Holmes: Baker Street Irregulars,2020,133,6.48045,5.55345, +9700,405772,Blooming Field,2024,32,9.40625,5.55345, +9701,147889,Dig Mars,2013,227,6.09621,5.55341, +9702,195515,The Chosin Few,2016,107,6.70477,5.55341, +9703,26747,Space Junkyard,2009,246,6.05410,5.55340, +9704,15548,Trivial Pursuit: DVD – The Lord Of The Rings Trilogy Edition,2004,281,5.99164,5.55339, +9705,356885,Library Labyrinth,2023,63,7.50810,5.55338, +9706,7310,One False Step for Mankind,2003,152,6.36349,5.55338, +9707,120033,Kampen om Norge,2012,67,7.39104,5.55337, +9708,139807,Rifugio,2017,146,6.39655,5.55337, +9709,38187,Phase 10 Twist,2007,231,6.08628,5.55337, +9710,313178,Backwoods,2021,74,7.21689,5.55336, +9711,277475,The Blessed Dark,2019,100,6.78395,5.55335, +9712,182801,Stinky Business,2015,148,6.38476,5.55334, +9713,233048,Zoomaka,2018,102,6.75971,5.55334, +9714,38462,Palago,2008,126,6.52944,5.55332, +9715,345542,Stellar Expedition,2023,64,7.47484,5.55331, +9716,192984,Revenge of the Dictators,2016,252,6.04127,5.55331, +9717,388683,The Perfect Wave,2023,91,6.90440,5.55330, +9718,115370,Cuttle,,53,7.87264,5.55329, +9719,273699,Weird Alchemy,2019,122,6.56066,5.55328,"273699, 283843" +9720,70222,7TV,2010,52,7.91673,5.55328,"70222, 263171, 282596, 390350" +9721,286154,TIME Stories Revolution: Damien 1958 NT,2019,165,6.29794,5.55327, +9722,6041,Budapest '45,1994,127,6.52047,5.55325, +9723,148375,Regnum Angelica,2014,122,6.55992,5.55324, +9724,1335,Gnadenlos!,2001,347,5.90686,5.55320, +9725,158268,Karma,2014,388,5.86945,5.55319,"158268, 179201, 212874" +9726,413403,Minecraft Explorers,2024,77,7.14675,5.55319, +9727,366458,Short Zoot Suit,2023,68,7.35735,5.55318,"366458, 423048, 423674, 423675, 428537, 428538" +9728,158267,Double Feature,2015,520,5.78904,5.55317,"17209, 158267" +9729,368307,World Exchangers,2022,101,6.76733,5.55316, +9730,104655,Lemonade Stand,2012,411,5.85127,5.55312, +9731,21685,Rok 1920,1995,56,7.74107,5.55312,"21685, 325347" +9732,340598,ITALY '43-'45: La Resa Dei Conti,2021,60,7.59467,5.55310, +9733,248376,Buurn,2022,72,7.25417,5.55309, +9734,272636,Dragon's Cave,2019,148,6.37986,5.55305, +9735,25993,"Drive on Moscow: Operation Typhoon, 1941",2007,86,6.97558,5.55303, +9736,295254,The Toledo War,2019,114,6.62588,5.55302, +9737,203710,Cake Duel,2018,112,6.64500,5.55302, +9738,835,Election,1972,99,6.78788,5.55300, +9739,27719,Trapper,2007,210,6.13476,5.55296, +9740,11706,Lightning: D-Day,2004,291,5.97282,5.55296, +9741,385645,Typewriter,2024,65,7.43248,5.55296, +9742,8707,"Jacob Marley, Esq.",2004,148,6.37838,5.55296,"8707, 241732" +9743,119265,Hospital Rush,2014,311,5.94556,5.55293, +9744,193121,Legends,2016,138,6.43748,5.55292, +9745,4125,"The Punic Wars: Rome vs Carthage, 264-146 B.C.",1975,198,6.16894,5.55288, +9746,3313,Traverse,1987,292,5.97055,5.55287, +9747,145766,Gamedec,2013,128,6.50547,5.55286, +9748,42727,Iconica,2008,79,7.09620,5.55285, +9749,218465,Contrast,2017,195,6.17811,5.55285, +9750,319746,8th Air Force,2020,45,8.26044,5.55282, +9751,247294,I Am the Fourth Wall,2019,104,6.72429,5.55282, +9752,354201,Tuned,2023,187,6.20431,5.55281, +9753,227794,A Place in the Sun,2018,66,7.39818,5.55280, +9754,4011,Jerusalem! Tactical Game of the 1948 War,1975,80,7.07500,5.55279, +9755,331947,Storm Weavers,2022,130,6.48923,5.55277, +9756,238407,Winner Winner Chicken Dinner,2020,109,6.66962,5.55277, +9757,391892,What the Rule?!,2023,80,7.07403,5.55276, +9758,359348,Crack It,2022,59,7.61548,5.55276, +9759,365702,Saboteur: The Dark Cave,2022,140,6.42183,5.55275, +9760,40843,Krysis,2009,286,5.97816,5.55274, +9761,279776,A Sheer Butchery: Solferino 1859,2019,73,7.21918,5.55274,"9988, 279776" +9762,257316,Weapon Wars,2019,85,6.98353,5.55272, +9763,2412,Wordthief,1994,245,6.04910,5.55272, +9764,330881,The Flood,2023,95,6.83230,5.55270, +9765,322626,Àiyé,2023,58,7.64853,5.55270, +9766,235653,Robotech: Force of Arms,2018,92,6.87391,5.55269, +9767,269077,The Game of Wolf,2019,105,6.71033,5.55269, +9768,190266,Sans Alliés,2016,101,6.75604,5.55269, +9769,322624,Fellowships of Fate,2020,83,7.01699,5.55269, +9770,5900,Aliens Predator,1997,224,6.09513,5.55268,"5900, 14471" +9771,266019,Animalcatraz,2023,38,8.75000,5.55267, +9772,206087,Garden Gnomes: Violent Vendetta,2016,53,7.84509,5.55267, +9773,361840,Gardeners,2023,154,6.34156,5.55267, +9774,393343,Smug Owls,2023,80,7.07125,5.55266, +9775,179723,Dino Twist,2015,169,6.27126,5.55265, +9776,273769,"Napoleon Retreats: Campaign in France, Part II",2019,53,7.84340,5.55263, +9777,32995,Saigo no Kane,2008,135,6.45185,5.55263, +9778,296514,Robots,2020,194,6.17835,5.55262, +9779,184800,Deus Ex Machina,2016,103,6.73117,5.55262, +9780,57349,Vampires of the Night,2009,197,6.16853,5.55260, +9781,234972,Polis,2017,133,6.46451,5.55258, +9782,342090,History of the Ancient Seas I: HELLAS,2024,50,7.97800,5.55257,"342090, 342091, 342271, 371857" +9783,11428,Supermarina I: Command at Sea Volume II,1996,60,7.57333,5.55256, +9784,143360,Hill of Doves: The First Anglo-Boer War,2013,57,7.67895,5.55254, +9785,344339,The Goonies: Escape With One-Eyed Willy's Rich Stuff – A Coded Chronicles Game,2021,101,6.75198,5.55252, +9786,754,Domain,1982,196,6.17039,5.55250, +9787,4427,Super Cluedo Challenge,1986,325,5.92492,5.55247,"4427, 7712" +9788,289784,Bank Heist,2020,84,6.99345,5.55247, +9789,20774,The Battle of the Little Bighorn,2005,65,7.41462,5.55247, +9790,296044,Fruit Picking,2020,479,5.80503,5.55245,"173240, 296044" +9791,342717,Time Capsules,2022,101,6.75026,5.55245, +9792,248673,Dobbers: Quest for the Key,2019,115,6.60443,5.55244, +9793,230731,Forest of Fate,2017,184,6.20949,5.55241, +9794,13359,Leapfrog,2004,186,6.20241,5.55241, +9795,371031,Mycelium: Descubriendo el reino fungi,2022,41,8.50000,5.55239, +9796,3633,Sid Meier's Civilization: The Boardgame,2002,2847,5.59479,5.55236, +9797,378367,Really Loud Librarians,2023,219,6.10390,5.55236, +9798,344933,Cartaventura: Tintagel,2021,175,6.24254,5.55236, +9799,6270,Objective Moscow: The Death of Soviet Communism,1978,114,6.61184,5.55236, +9800,90274,Dawn: Rise of the Occulites,2014,73,7.20616,5.55234, +9801,331902,Ephios,2022,86,6.95616,5.55234, +9802,25190,Pink Godzilla Dev Kit,2006,124,6.52581,5.55233, +9803,9200,Heroes Incorporated,2004,245,6.04490,5.55232, +9804,509,The Reef,2000,795,5.70410,5.55231, +9805,73361,Partizan!,2011,60,7.56333,5.55231, +9806,17125,Ars Mysteriorum,2005,152,6.34603,5.55230, +9807,272502,"Counter-Attack: The Battle of Arras, 1940",2019,110,6.64909,5.55230,"57834, 272502" +9808,208663,Godforsaken Scavengers,2017,185,6.20432,5.55229, +9809,173291,Spit It Out!,2015,272,5.99559,5.55227, +9810,161762,Wakanda,2014,341,5.90588,5.55227, +9811,274909,Token Terrors: Battlegrounds,2020,62,7.49677,5.55226, +9812,2918,The Last Crusade,1995,109,6.65688,5.55220, +9813,193240,Pasaraya: Supermarket Manager,2018,81,7.03852,5.55219,"193240, 421115" +9814,3147,Mandarin,1991,144,6.38822,5.55219, +9815,287680,Ark: Awakening,2022,79,7.07506,5.55215, +9816,340498,Hansel & Gretel,2021,77,7.11429,5.55214, +9817,191432,Town of Salem: The Card Game,2017,147,6.37031,5.55214, +9818,11465,48th Panzer Korps: Battles on the River Chir,1991,88,6.91875,5.55213, +9819,176960,Wok on Fire,2015,196,6.16556,5.55212, +9820,161682,Le Temps des As,2014,60,7.55500,5.55210,"161682, 203757" +9821,12253,ATS Stalingrad: Dzerhezinsky Tractor Works 1942,2004,67,7.34552,5.55209, +9822,130907,Jungle Brunch,2012,202,6.14678,5.55208,"130907, 189685" +9823,248385,IT Startup,2018,123,6.52846,5.55206,"248385, 357915" +9824,1352,Bali,2001,254,6.02480,5.55205, +9825,230745,1-48TACTIC,2018,44,8.28091,5.55205,"43471, 180849, 230745" +9826,217619,Sherlook,2017,263,6.00843,5.55203, +9827,254427,Incubation,2019,196,6.16418,5.55201, +9828,213790,Castle Von Loghan,2022,60,7.55167,5.55201,"213790, 358382" +9829,8754,"The Moscow Campaign: Strike and Counterstrike Russia, 1941",1972,97,6.78866,5.55200,"6944, 8754" +9830,243940,The Great Heathen Army,2018,57,7.65614,5.55199, +9831,289018,On a Scale of One to T-Rex,2019,526,5.77998,5.55199, +9832,171950,Hands,2015,163,6.28755,5.55198, +9833,1337,Akiba,1994,162,6.29202,5.55197, +9834,361552,Dragonlance: Warriors of Krynn,2023,112,6.62232,5.55197, +9835,26686,"Battle for Galicia, 1914",2006,57,7.65439,5.55195, +9836,245060,Outfoxed!,2017,85,6.96118,5.55193, +9837,326998,Judean Hammer,2021,70,7.26286,5.55192, +9838,64777,Dominion,2004,65,7.39385,5.55190, +9839,301009,Piece of Pie,2020,119,6.55773,5.55189, +9840,32150,Ambush Alley! A Game of Modern Urban Combat,2007,53,7.80943,5.55187, +9841,3070,Red Parachutes: Soviet Airborne Assault Across the Dnepr,1995,89,6.89607,5.55186, +9842,3568,Stage II,1985,138,6.41775,5.55180, +9843,121015,Tea Time,2012,433,5.82778,5.55180, +9844,179581,Havenfall,2017,59,7.57627,5.55178, +9845,57937,The Doomsday Project: Episode 1 – The Battle for Germany,2021,60,7.54167,5.55176,"57937, 338198, 353456" +9846,165633,Slap .45,2015,209,6.12293,5.55175,"165633, 170511" +9847,406852,Bauer,2024,74,7.16486,5.55175, +9848,390169,Tanxi,2024,49,7.98776,5.55174, +9849,24693,They Shall Not Pass: The Battle of Verdun 1916,2007,111,6.62658,5.55172, +9850,231878,Polite Society: The Jane Austen Board Game,2018,99,6.75646,5.55170, +9851,7278,Against All Odds,2003,64,7.41484,5.55169,"7278, 184979" +9852,4962,1914,1968,304,5.94372,5.55167,"4962, 342218" +9853,225908,Light Hunters: Battalion of Darkness,2017,133,6.44764,5.55166,"225908, 290853" +9854,10262,The Chaco War,1991,115,6.58783,5.55166, +9855,218491,Gorizia 1916: La sesta battaglia dell'Isonzo,2016,57,7.64211,5.55165, +9856,2121,The Sword and the Stars,1981,153,6.33007,5.55163, +9857,264948,LANDER,,64,7.41094,5.55159, +9858,136910,Roll & Play,2012,111,6.62297,5.55156,"136910, 161193" +9859,167404,Warsaw Rising Up 1945-1980,2016,104,6.69500,5.55155, +9860,26233,Manimals,2006,154,6.32370,5.55155,"26233, 32414, 32598, 39195, 41897, 67912, 185073, 185074, 209750, 238211" +9861,309319,Apogee,2021,105,6.68381,5.55154, +9862,2194,Chitin: I,1977,216,6.10185,5.55153, +9863,39278,Medina de Rioseco 1808,2008,52,7.83654,5.55151, +9864,23284,Wayfinder,2006,116,6.57543,5.55149, +9865,294810,Thalara: The Last Artifacts,2021,50,7.92700,5.55149,"294810, 411340, 411341" +9866,221122,Churrascaria: A Cutthroat Game of Gluttony,2018,76,7.11395,5.55148, +9867,254394,Banned Books,2018,151,6.33788,5.55148, +9868,1408,Gammarauders,1987,440,5.82130,5.55147, +9869,206938,Kullerhexe,2016,113,6.60177,5.55145, +9870,412927,Quando,2024,91,6.85551,5.55144, +9871,247952,Constantinople,2019,57,7.63333,5.55144, +9872,320097,ECK: A solo trick-taking card game,2020,102,6.71471,5.55144, +9873,345626,"Dr. Seuss: Grinch, Grow Your Heart!",2021,93,6.82667,5.55141, +9874,95756,Pick 'N' Choose,2010,171,6.24497,5.55141, +9875,1243,Split Second,1992,185,6.19243,5.55141, +9876,38886,Boot Hill,1975,115,6.58261,5.55141, +9877,191095,Scoundrel,2011,88,6.89886,5.55140, +9878,113656,111: Alarm dla Warszawy,2013,143,6.38042,5.55139, +9879,26620,Tannenberg 1914,1990,73,7.17534,5.55139, +9880,3590,Campaign Trail: The Game of Presidential Elections,1983,113,6.60027,5.55138, +9881,108832,Chocoly,2011,191,6.17178,5.55137,"85948, 108832" +9882,107703,"Growling Tigers: The Battle for Changde, 1943",2011,78,7.07051,5.55137,"68230, 107703" +9883,418542,Rome: Fate of an Empire,2024,43,8.30698,5.55137, +9884,192345,Monkey Business,2016,192,6.16851,5.55137, +9885,171775,Dexikon,2015,169,6.25237,5.55136, +9886,151070,Gladiatoris,,32,9.25156,5.55133, +9887,9117,"Embrace an Angry Wind: The Battles of Spring Hill & Franklin, 29-30 November 1864",1992,90,6.86667,5.55132, +9888,308126,The Coding,2020,53,7.78472,5.55131, +9889,68816,Storming the Reich: D-Day to the Ruhr,2010,71,7.21813,5.55130, +9890,375209,Space Alone,2023,48,8.01667,5.55130, +9891,356842,La Garde Avance!,2022,52,7.82692,5.55130, +9892,276107,Genesia,2020,141,6.39026,5.55128, +9893,278359,Runes & Regulations,2019,248,6.02817,5.55127, +9894,293836,Hagakure,2020,169,6.25099,5.55126, +9895,161923,Switching Tracks,2015,125,6.49728,5.55126, +9896,182581,Super Hazard Quest,2017,120,6.53633,5.55124, +9897,314063,D-Day Quad Deluxe,2020,74,7.14851,5.55124,"284177, 284178, 284179, 284180, 314063" +9898,322050,Lost Empires: War for the New Sun,2022,63,7.42698,5.55123, +9899,26697,Shenandoah: Jackson's Valley Campaign,2011,82,6.99180,5.55121, +9900,285536,Cloaked Cats,2019,119,6.54351,5.55119, +9901,177053,Road to Infamy,2016,83,6.97373,5.55118, +9902,2775,The Battle of Five Armies,1984,119,6.54286,5.55116, +9903,23657,Ahoy Treasures!,2006,114,6.58614,5.55115, +9904,242616,Layers,2018,138,6.40609,5.55115,"242616, 371487" +9905,403250,Little Tavern,2024,150,6.33767,5.55114, +9906,41149,Linkage,2009,161,6.28385,5.55114, +9907,122831,Expedite,2012,79,7.04430,5.55114, +9908,258160,Profiteers,2018,127,6.47992,5.55113, +9909,182259,Creepy Falls,2017,131,6.45153,5.55113, +9910,66851,Schlag den Raab: Das Spiel,2010,227,6.07004,5.55107, +9911,327396,Two Rooms,2020,108,6.64167,5.55106, +9912,4254,"Iwo Jima: Valor of Arms, 19 Feb. – 25 March 1945",1983,104,6.68356,5.55106, +9913,17075,Giza,2005,363,5.87548,5.55105, +9914,306687,Get Out of Colditz: The Card Game,2020,85,6.93600,5.55103, +9915,266844,Kiev '41,2019,43,8.28837,5.55103, +9916,225303,Gamer Over! A Game Fair Murder Mystery,2017,62,7.44839,5.55100, +9917,20610,Rapid Fire! (Second Edition): Fast Play World War Two Wargames Rules,2005,66,7.33333,5.55099,"20610, 98452, 338857" +9918,270685,Capone: The Business of Prohibition,2020,106,6.65931,5.55093, +9919,400817,Epochs: Course of Cultures,2025,53,7.76604,5.55089, +9920,368944,RONE: Invasion,2024,44,8.21841,5.55088, +9921,356629,Legacy's Allure: Season 1,2022,36,8.81111,5.55088, +9922,263421,Enigma: Beyond Code,2020,123,6.50501,5.55088, +9923,323068,Chef Umami,2020,75,7.11564,5.55087, +9924,6797,Voice of the Mummy,1971,52,7.80769,5.55087, +9925,17623,Inferno,2005,243,6.03356,5.55085, +9926,7609,Hue,1973,98,6.74776,5.55085, +9927,231801,Party & Co: Extreme 3.0,2005,400,5.84406,5.55084,"29020, 231801, 320468" +9928,169795,Haithabu,2015,205,6.12298,5.55084, +9929,124706,Guts of Glory,2012,181,6.19878,5.55084, +9930,337391,Nice Buns,2021,171,6.23649,5.55083, +9931,266003,Dawnshade: The Watchers Prophecy,2022,85,6.93000,5.55082, +9932,366463,WordCraft,2022,84,6.94539,5.55078, +9933,175496,Cauldron Quest,2015,177,6.21260,5.55078, +9934,41311,Black Stories 4,2008,268,5.98787,5.55078, +9935,283073,Zoo Run,2019,100,6.72200,5.55077, +9936,303812,Animals in Espionage,2022,68,7.27310,5.55077, +9937,372571,Tycoon: India 1981,2023,47,8.04255,5.55077, +9938,3022,Clue VCR Mystery Game,1985,317,5.92019,5.55077, +9939,2200,Falsche FuFFziger,1994,128,6.46562,5.55076, +9940,329932,Bone to Pick,2022,66,7.32394,5.55073, +9941,1300,Im Zeichen des Kreuzes,2001,304,5.93566,5.55073, +9942,10269,"The Balkan Wars: Prelude to Disaster, 1912-1913",1993,109,6.62385,5.55071, +9942,5488,TaskForce: Naval Tactics and Operations in the 1980's,1981,109,6.62385,5.55071, +9944,296570,Hannut: France 1940,2021,46,8.09348,5.55071, +9945,5279,Sagunto: The Battle for Valencia,1993,60,7.50000,5.55070, +9946,320069,Tavern Tales: Legends of Dungeon Drop,2021,100,6.71997,5.55069, +9947,281099,El Ilustrado,2019,60,7.49917,5.55068, +9948,56604,Veto! Szlachecka Gra Karciana 2 edycja (2ed),2007,104,6.67452,5.55067,"33436, 56604, 140517, 168408" +9949,5065,Fubi,2001,107,6.64299,5.55067, +9950,6813,Operation Market Garden: Descent Into Hell,1985,99,6.73121,5.55067, +9951,1773,Dawn of the Dead,1978,243,6.03160,5.55066, +9952,152115,Pent-Up,2014,65,7.34862,5.55066, +9953,176070,Magic Realm Light 30,2015,60,7.49833,5.55066, +9954,125634,Inception: Solo card game,2012,66,7.32121,5.55066, +9955,11514,"Musket & Pike: Tactical Combat, 1550-1680",1973,93,6.80645,5.55063, +9956,8033,Search & Destroy: Tactical Combat Vietnam – 1965-1966,1975,100,6.71850,5.55063,"7026, 8033" +9957,5988,Wings Over France,1992,64,7.37500,5.55062, +9958,343056,Dungeons Of Draggmar,2022,119,6.53154,5.55060, +9959,199882,Risk: Star Trek 50th Anniversary Edition,2016,100,6.71780,5.55060, +9960,194777,"Rabbit Island: Explore, Build, Conquer",2019,79,7.02785,5.55059, +9961,399059,Long Range Recon Patrol: A Solitaire Wargame,2023,36,8.79206,5.55059, +9962,260592,Processing: A Game of Serving Humanity,2019,83,6.95647,5.55058, +9963,18724,Forged in Fire: The 1862 Peninsula Campaign,2006,84,6.93905,5.55056, +9964,234274,Wing It: The Game of Extreme Storytelling,2017,96,6.76465,5.55053,"234274, 284289" +9965,409553,The First Tsar: Ivan the Terrible,2023,86,6.90558,5.55052, +9966,326264,Ovation,2024,53,7.74849,5.55050, +9967,1663,Clue: Dungeons & Dragons,2001,337,5.89617,5.55050, +9968,8258,"Solomons Campaign: Air, Land, and Sea Warfare, Pacific 1942",1973,77,7.06234,5.55047,"8258, 38286" +9969,108341,Dynamite Nurse,2011,158,6.28724,5.55046,"6313, 6314, 108341" +9970,190,Dolce Vita,1999,202,6.12673,5.55046, +9971,342006,Cartouche,2023,65,7.34125,5.55046, +9972,138729,Hull Breach: Loyalty & Vigilance,2014,86,6.90372,5.55045,"102698, 138729, 138730, 159501, 393879" +9973,336374,Sandwich Wars,2021,60,7.49000,5.55045, +9974,378292,Château,2023,76,7.08158,5.55045, +9975,336403,414 BC: Siege of Syracuse,2022,77,7.06169,5.55044, +9976,5668,Mini Mastermind,1972,581,5.75069,5.55044, +9977,360175,Venn,2022,248,6.01951,5.55043, +9978,251083,Pirate Tricks,2019,83,6.95193,5.55043, +9979,11542,Eclipse,1999,181,6.19309,5.55043, +9980,352486,The Lord of the Rings: The Fellowship of the Ring – Battle in Balin's Tomb,2021,69,7.23623,5.55043, +9981,216224,Carcosa,2017,216,6.08889,5.55042, +9982,381247,Dragon Eclipse,2024,50,7.87600,5.55041, +9983,3063,March Madness,1991,147,6.34136,5.55040, +9984,217404,Pungi,2017,168,6.24238,5.55040, +9985,365121,M.O.R.P.H.O.,2023,70,7.21000,5.55036, +9986,128794,"Toulon, 1793",2014,72,7.16389,5.55036, +9987,18881,Schildi Schildkröte,2004,123,6.49415,5.55033,"18881, 30474" +9988,8833,Firefight: Modern U.S. and Soviet Small Unit Tactics,1976,235,6.04430,5.55032, +9989,1551,Sub Search,1973,365,5.86822,5.55030, +9990,8737,Peter the Great,1983,115,6.55930,5.55030, +9991,188021,Doughnut Drive-Thru,2015,271,5.97837,5.55029, +9992,379582,Neodreams,2024,73,7.13863,5.55026, +9993,39663,Song of Drums and Shakos,2008,58,7.54914,5.55026, +9994,226643,Christmas Lights: A Card Game,2018,256,6.00312,5.55026, +9995,396995,Whale Street,2023,85,6.91353,5.55023, +9996,108737,Air Show,2011,115,6.55783,5.55023, +9997,6038,Shogun Triumphant,1993,116,6.54914,5.55023, +9998,194992,Goblins en la mina,2016,75,7.09467,5.55021, +9999,371135,WaldMeister,2022,51,7.82135,5.55021, +10000,71035,Guerrilla Checkers,2010,58,7.54655,5.55019, +10001,158093,Frankenstein's Bodies,2014,160,6.27359,5.55018, +10002,89319,Gardens of Mars,2011,63,7.38730,5.55017,"89319, 202177, 253793, 415371" +10002,254938,Yohei,2020,63,7.38730,5.55017, +10004,12453,Atmosfear: The DVD Board Game,2003,1108,5.65458,5.55016,"12453, 337017" +10005,206074,The Solo System,2016,56,7.61607,5.55015, +10006,4500,Like Lions They Fought,1994,116,6.54741,5.55015, +10007,180938,Ice and the Sky,2015,234,6.04423,5.55012, +10008,262122,Quix!,2018,75,7.09135,5.55011, +10009,5143,GolfProfi,2002,99,6.71768,5.55011, +10010,81826,Disaster on Everest,2010,102,6.68333,5.55011, +10011,2334,Square Mile,1962,120,6.51292,5.55009, +10012,374,Colorado County,1998,185,6.17459,5.55008, +10013,277903,7: The Sins,2019,128,6.45245,5.55007,"277903, 411398" +10014,12252,Clash Along the Psel: The Battle of Kursk 1943,2004,49,7.90714,5.55007,"12252, 146212" +10015,260307,Kaboom Universe,2019,121,6.50455,5.55007, +10016,477,The Broadway Game,1981,129,6.44535,5.55007, +10017,8508,Dork Tower,2003,359,5.87173,5.55006, +10018,274127,MonstroCity,2019,78,7.03041,5.55006, +10019,69105,Toledo 1085,2010,267,5.98248,5.55005, +10020,279328,Wish You Were Here,2018,43,8.23467,5.55004,"279328, 297372, 297373, 297375" +10021,270869,Captain's Gambit: Kings of Infinite Space,2020,42,8.29762,5.55003, +10022,370436,Hidden Games Tatort: Ein perfekter Plan,2022,46,8.05870,5.55003, +10023,236803,Nickelodeon Splat Attack!,2018,98,6.72755,5.55003, +10024,81698,Total Rumble,2010,98,6.72731,5.55002, +10025,226081,Greener,2017,83,6.93976,5.55000,"226080, 226081, 226586, 227145" +10026,77034,Cat & Chocolate,2010,416,5.82728,5.55000,"77034, 143780, 151215, 350280" +10027,205072,Disney Eye Found It!: Hidden Picture Card Game,2015,198,6.13253,5.55000,"205072, 224175" +10028,166640,Prime Time,2015,328,5.90155,5.54999, +10029,162677,1893: Cologne,2014,80,6.99125,5.54998,"162677, 212735" +10030,15000,Word Basket,2002,213,6.09127,5.54998, +10031,40411,Flames of War: Open Fire,2009,68,7.24485,5.54996, +10032,175230,Crete 1941: Operation Mercury,2016,61,7.43852,5.54994, +10033,166888,Costa Ruana,2014,177,6.20068,5.54993, +10034,272,Downtown,1996,147,6.33333,5.54992, +10035,172465,Tabletop Pathologic,2016,146,6.33856,5.54991, +10036,40800,Miss Poutine,2009,200,6.12559,5.54991, +10037,214879,Tomb Trader,2017,110,6.59655,5.54991, +10038,6862,Laska,1911,174,6.21144,5.54990,"5077, 6862, 357210" +10039,122599,Winter Tales,2012,638,5.73031,5.54990, +10040,6978,Neutron,1978,206,6.10855,5.54989, +10041,227563,Rolling Empires,2017,80,6.98768,5.54986, +10042,132456,18Ruhr,2012,54,7.67963,5.54986, +10043,1970,Oh-Wah-Ree,1962,299,5.93448,5.54985, +10044,2559,Blockade,1975,147,6.33197,5.54984, +10045,391752,Steam Power,2024,99,6.71111,5.54984, +10046,325433,Amass,2022,67,7.26567,5.54984, +10047,207828,Nightlancer,2021,64,7.34578,5.54983, +10048,15156,Coloretto Amazonas,2005,559,5.75544,5.54983, +10049,129307,"Congo Merc: The Congo, 1964",2012,151,6.31093,5.54982, +10050,1066,Zargos,1990,148,6.32635,5.54982, +10051,38204,How to Host a Dungeon,2008,73,7.12329,5.54979,"38204, 299195" +10052,166300,Twistocity,2016,37,8.65405,5.54979, +10053,11241,"The Cossacks Are Coming!: The Tannenberg Campaign, 1914",1982,81,6.96778,5.54979,"11241, 11993" +10054,342550,Amazonas,2022,72,7.14444,5.54977, +10055,171779,GemPacked Cards,2015,119,6.51429,5.54976, +10056,177482,HOPE,2018,221,6.06910,5.54975, +10057,7503,"A Frozen Hell: The Battle of Tolvajärvi, Russo-Finnish War, 1939",2000,96,6.74479,5.54973, +10058,349194,Redcliff Bay Mysteries,2021,81,6.96605,5.54973, +10059,382549,Biome,2024,54,7.67407,5.54973, +10060,43393,Cubiko,2009,127,6.45291,5.54972, +10061,271756,Dice Academy,2019,187,6.16310,5.54972, +10062,197067,Downsize,2016,155,6.28968,5.54972, +10063,157406,LACORSA Grand Prix Game,2018,98,6.71990,5.54971, +10064,351527,Republic of Virtue,2021,69,7.21159,5.54971, +10065,26474,"Cold War Commander: Fast-Play Tabletop Wargame Rules for Combined-Arms Operations, 1946+",2006,63,7.36984,5.54971,"26474, 404338" +10066,311192,Farts & Fairies,2020,49,7.88980,5.54971, +10067,297510,"Kingdoms Forlorn: Dragons, Devils and Kings",2024,43,8.21473,5.54968, +10068,26047,Sid Meier's Civilization: The Card Game,2006,272,5.97096,5.54967, +10069,47484,Strange Aeons,2009,44,8.15386,5.54967, +10070,5146,CrossCribb,1996,132,6.41758,5.54966, +10071,113301,Clocks,2012,162,6.25673,5.54966, +10072,367056,Witchcraft: Moonlight Magic,2022,106,6.63019,5.54965, +10073,206068,Xenofera,2017,70,7.18571,5.54965,"206068, 289017" +10074,16085,Legends of Wrestling,2002,45,8.09333,5.54962,"16085, 286398, 378703" +10075,169675,L'osti d'jeu,2014,337,5.88908,5.54960,"169675, 266997, 325398, 422875" +10076,32820,Strut!,2007,110,6.58955,5.54959, +10077,9858,The Russo-Japanese War: Dawn of the Rising Sun,2004,53,7.70755,5.54958, +10078,165492,The Majority: Complete Edition,2015,108,6.60852,5.54958,"143666, 144429, 165492" +10079,419202,Barbascura X: Evolversi Male,2024,89,6.83446,5.54957, +10080,239847,HeroTec,2018,98,6.71622,5.54956,"239847, 253387" +10081,375322,Tiny Mini Golf,2023,54,7.66667,5.54956, +10082,315021,Strawberry Sunset,2020,182,6.17747,5.54954, +10083,215526,RobotLab: The Card Game,2017,218,6.07376,5.54954,"215526, 276622" +10084,226789,Guam: Return to Glory,2017,49,7.88163,5.54954, +10085,30505,Apples to Apples: British Isles Edition,2007,116,6.53448,5.54953, +10086,25453,Balance Duels,2005,196,6.13240,5.54952, +10087,311927,Long Live the King: A Game of Secrecy and Subterfuge,2020,62,7.39194,5.54952, +10088,176588,A Glorious Chance: The Naval Struggle for Lake Ontario in the War of 1812,2023,36,8.72222,5.54951, +10089,1593,Down with the King,1981,464,5.79563,5.54951, +10090,99770,Arcanum,2011,287,5.94732,5.54950, +10091,10346,Inchon: MacArthur's Gambit,1991,90,6.81778,5.54948, +10092,388539,Quibbles,2023,229,6.04782,5.54947, +10093,285127,24h,2019,94,6.76323,5.54946, +10094,308354,Open Ocean,2020,118,6.51636,5.54946, +10095,287038,Traffic Jam,2019,104,6.64577,5.54943, +10096,256640,H.D.P.: Hasta Donde Puedas,2016,247,6.01099,5.54942,"256640, 351980" +10097,333460,NoteQuest,2019,52,7.74038,5.54939, +10098,191901,Clonk!,2016,119,6.50672,5.54939, +10099,4141,Spy Web,1997,181,6.17878,5.54939, +10100,195450,Navíos de Línea: Trafalgar 1805,2016,45,8.08000,5.54937,"195450, 340691" +10101,9439,FBI,2004,509,5.77303,5.54935, +10102,25687,Fragile,2006,150,6.30824,5.54935, +10103,148209,Slash: Romance without boundaries,2013,130,6.42458,5.54933,"148209, 191586, 191587, 191588, 191589" +10104,239938,Kintsugi,2018,119,6.50546,5.54932, +10105,378556,Oh My. Orchids!,2023,86,6.87209,5.54931, +10106,377063,Drums of War: Enclave,2023,56,7.58036,5.54931, +10107,11581,King,,79,6.98886,5.54930, +10108,298678,Vulcanus,2019,79,6.98861,5.54929, +10109,248830,Guardians of Xobos,2018,65,7.29846,5.54929, +10110,335,Breakthru,1965,375,5.85246,5.54929, +10111,383733,Orbito,2022,120,6.49650,5.54927, +10112,239907,Seat Wars,2018,65,7.29785,5.54927, +10113,321699,Camisa 12,2021,46,8.01957,5.54926, +10114,11694,Great War at Sea: Cruiser Warfare,2004,103,6.65243,5.54926, +10115,298261,Mekhane,2020,87,6.85460,5.54923, +10116,174688,Radiant,2018,79,6.98620,5.54921, +10117,285250,Pencilvillage,2019,63,7.35079,5.54920,"261328, 285250" +10118,21366,RPGQuest: The Knights Templar,2005,41,8.31707,5.54920, +10119,286021,Free Market: NYC,2020,68,7.21757,5.54918, +10120,118177,Connections,2012,135,6.38953,5.54918, +10121,39426,"Kursk, South Flank: A Panzer Grenadier Game",2012,50,7.81800,5.54918, +10122,402503,Primal Hex: The Eternal Clash,2024,37,8.61486,5.54917, +10123,17041,La Bataille d'Austerlitz,1980,41,8.31463,5.54915, +10124,173074,Tales & Games: Little Red Riding Hood,2015,425,5.81587,5.54914, +10125,10234,¡Arriba España!,1997,121,6.48587,5.54914, +10126,1434,Dealer's Choice,1972,312,5.91234,5.54913, +10127,365307,Minecraft: Heroes of the Village,2022,207,6.09652,5.54912, +10128,91653,Zicke Zacke,2011,131,6.41374,5.54910, +10129,319889,Artefacts,2025,36,8.69444,5.54909, +10130,173666,Renaissance Wars,2015,132,6.40689,5.54909, +10131,1297,Trivial Pursuit: Star Wars Classic Trilogy Collector's Edition,1997,1594,5.62009,5.54907, +10132,413461,This Game Is KILLER,2024,127,6.43985,5.54904, +10133,4977,VOR: The Maelstrom,1999,85,6.88000,5.54904, +10134,204201,Windup War,2017,112,6.55893,5.54903, +10135,400211,Cuvée,2023,57,7.53333,5.54903, +10136,296667,Vintage,2020,142,6.34519,5.54901, +10137,414927,Parks & Potions,2025,30,9.31667,5.54900, +10138,194400,Kacper Ryx i Król Żebraków,2016,77,7.01688,5.54900, +10139,257967,Speed Cups⁶,2018,125,6.45304,5.54899, +10140,199913,Honeycombs,2016,184,6.16299,5.54898, +10141,351874,コルドロン15~魔女の大釜~ (Cauldron 15 ~Witch's Cauldron~),2021,76,7.03553,5.54898, +10142,229708,Super Goal!,2017,149,6.30718,5.54897, +10143,11030,Sherco's Grand Slam Baseball Game,1968,70,7.16286,5.54897, +10144,204504,Outlaws: Last Man Standing,2018,271,5.96583,5.54897, +10145,361335,Bunny Hops,2021,134,6.39179,5.54896,"361335, 409974" +10146,415054,Piña Coladice,2024,93,6.76297,5.54894, +10147,1721,Business Strategy,1973,188,6.14947,5.54894,"1721, 7006, 60221" +10148,67339,Command at Sea: 4th Edition – War at Sea 1926-1955,2008,45,8.05778,5.54894, +10149,173784,Five Seals of Magic,2014,258,5.98651,5.54894, +10150,283591,Kingless,2020,58,7.49483,5.54893, +10151,366316,Exit: The Game – Kids: Jungle of Riddles,2022,143,6.33811,5.54892, +10152,278484,Partán,2016,44,8.11364,5.54892, +10153,10065,Pokémon Master Trainer II,2001,103,6.64356,5.54888, +10154,20441,Battleground World War II,1997,67,7.23134,5.54887, +10155,257204,Zura,2018,106,6.61226,5.54886, +10156,577,Parts Unknown,1999,239,6.02029,5.54885, +10157,273164,Potemkin Empire,2019,143,6.33671,5.54884, +10158,136606,Sergeants Miniatures Game: Red Devils,2013,49,7.84796,5.54884, +10159,368554,Tatari,2022,150,6.29979,5.54883,"167850, 368554" +10160,152471,Manifest,2014,118,6.50339,5.54883, +10161,22111,Double or Nothing,2006,608,5.73406,5.54882,"22111, 36790" +10162,148356,Altar of Freedom: Grand Tactical Battles in the American Civil War,2013,39,8.43590,5.54881, +10163,244966,Futboard,2018,70,7.15714,5.54881, +10164,248154,Gunfighter,2018,76,7.02921,5.54877, +10165,347794,Season Ticket Baseball,2021,35,8.76286,5.54877, +10166,354632,Goblin Uprising,2023,31,9.17742,5.54876, +10167,378568,Nautilus Island,2023,107,6.60000,5.54876, +10168,161726,Sword & Spear: Wargames Rules for Ancient and Medieval Battles,2014,52,7.71154,5.54875,"161726, 234713" +10169,63011,Patrol: Lost!,2009,82,6.91951,5.54873, +10170,256380,Douro 1872,2018,100,6.67250,5.54872, +10171,3749,Sumo!,2000,410,5.82280,5.54872, +10172,111999,Pharaoh Code,2011,275,5.95732,5.54871, +10173,240921,"Ariete: The Battle of Bir el Gubi, Libya November 1941",2020,46,7.98913,5.54867, +10174,388345,Pocket Samurai,2024,34,8.85000,5.54866, +10175,396335,BOG,2024,60,7.41917,5.54865, +10176,64080,Rowboat,2009,200,6.10970,5.54864, +10177,176306,Conspiracy!,2016,76,7.02500,5.54864, +10178,219666,Ciudad de Cartón,2017,37,8.58108,5.54864, +10179,227582,Cthulhu: Rise of the Cults,2017,122,6.46801,5.54862, +10180,358815,Kitsune,2022,71,7.12817,5.54862, +10181,26999,China: The Middle Kingdom,2008,89,6.80843,5.54861, +10182,394340,SCOPE Panzer,2023,49,7.83673,5.54860, +10183,193696,Rogue Stars: Skirmish Wargaming in a Science Fiction Underworld,2016,76,7.02368,5.54860, +10184,157815,Heat,2015,239,6.01753,5.54859, +10185,286891,The Last Station,2019,44,8.09545,5.54858, +10186,14387,Duel for Kharkov,1985,69,7.17246,5.54857, +10187,271045,Farm Rescue,2019,66,7.24621,5.54857, +10188,189154,The Ninth World: A Skillbuilding Game for Numenera,2018,153,6.28085,5.54857, +10189,50764,Black Cross / Blue Sky,2010,76,7.02237,5.54856, +10190,271036,Pigasus,2019,145,6.32097,5.54855, +10191,92188,Dragon Face,2011,95,6.72737,5.54855, +10192,233783,Dwarf,2017,115,6.52217,5.54854, +10193,393429,Critter Kitchen,2024,48,7.88090,5.54853, +10194,420242,VIVO,2024,63,7.32540,5.54853, +10195,267071,Core Worlds: Empires,2021,71,7.12460,5.54851, +10196,253512,Blabel,2021,129,6.41592,5.54851, +10197,31378,Second World War at Sea: Arctic Convoy,2008,65,7.26923,5.54849, +10198,360377,Master Dater,2022,138,6.35865,5.54847,"360377, 361088" +10199,402125,Umbrella,2024,122,6.46475,5.54846, +10200,281257,Aeolis,2020,46,7.97826,5.54845, +10201,60035,Ants!,2009,238,6.01798,5.54844, +10202,234314,Dôjima,2018,64,7.29424,5.54844, +10203,249882,Sevilla 1503,2019,65,7.26723,5.54843, +10204,38266,Kriegbot,2008,68,7.19118,5.54843, +10205,194229,Mad Science Foundation,2016,138,6.35761,5.54841, +10206,2773,Knights of the Dinner Table: HACK!,2001,270,5.96196,5.54841, +10207,23258,Expedition Altiplano,2006,205,6.09280,5.54838, +10208,247107,Catchup & Mousetard: Fast Food Battle!,2019,81,6.92577,5.54837, +10209,3807,Smokejumpers,1996,101,6.65297,5.54836, +10210,1578,RoadKill,1993,306,5.91291,5.54836, +10211,142903,Foragers,2016,140,6.34479,5.54834, +10212,324930,I am a banana,2020,121,6.46981,5.54833, +10213,167,Dicke Kartoffeln,1989,168,6.21190,5.54833, +10214,38680,Boochie,2008,102,6.64118,5.54832, +10215,260282,Pet Evil,2020,53,7.65094,5.54831, +10216,36659,Free Trader,2008,179,6.17067,5.54829, +10217,320101,Brutality Skirmish Wargame,2020,34,8.82353,5.54827,"320101, 434827" +10218,190915,BetaBotz,2017,97,6.69588,5.54826, +10219,990,90 Grad,2000,86,6.84256,5.54825, +10220,317119,Spring and Autumn: Story of China,2023,51,7.73039,5.54824, +10221,383451,890 Anno Domini,2023,73,7.07260,5.54824, +10222,244584,Kartel,2018,176,6.18040,5.54823, +10223,312738,"Storm Over Madrid 1936: ""Miracle of November""",2020,72,7.09306,5.54822, +10224,272767,Batman: The Animated Series – Rogues Gallery,2019,107,6.58766,5.54821, +10225,203408,Cosmocracy,2016,95,6.71821,5.54818, +10226,195253,Naruto Shippuden: The Board Game,2016,131,6.39666,5.54818, +10227,203029,Sports Dice: Baseball,2016,97,6.69378,5.54817, +10228,11973,Können Schweine fliegen?,2004,120,6.47417,5.54817, +10229,138973,Camelot: The Build,2013,181,6.16205,5.54817, +10230,321713,Quest Calendar: The Dragon Staff of Maladoria,2020,58,7.46379,5.54816, +10231,166341,7 & 7,2016,68,7.18143,5.54815, +10232,10245,Bloody Omaha: D-Day 1944,2009,51,7.72549,5.54814,"10245, 125756" +10233,349601,Das Bankett: Teil 1 – Der Raub des Diamanten von Ramanpur,2021,46,7.96196,5.54813, +10234,5923,Hell Hath No Fury,1985,90,6.78167,5.54813, +10235,204281,Baby Clues,2016,113,6.53035,5.54812,"173123, 204281" +10236,28567,"I Don't Know, What Do You Want to Play?",2007,88,6.80909,5.54810, +10237,289427,Stampede,2020,85,6.85353,5.54810, +10238,360224,Perfect Shot,2022,138,6.35213,5.54810, +10239,238531,Lockwood's Asylum,2018,53,7.64151,5.54810, +10240,10472,The East is Red: The Sino Soviet War,1974,176,6.17841,5.54809,"10472, 142996" +10241,91438,Right Fierce & Terrible: Sluys 1340,2011,64,7.28125,5.54809, +10242,154742,Video Game High School,2014,160,6.24117,5.54807, +10243,31547,Kleine Helden,2007,194,6.11959,5.54806, +10244,702,Wabbit Wampage,1985,237,6.01561,5.54804, +10245,9619,Ex Libris,1991,103,6.62379,5.54803, +10246,71569,Kuni Tori!,2010,73,7.06507,5.54801,"71569, 96870, 96954" +10247,388473,Gettysburg 1863,2024,35,8.71143,5.54800, +10248,23329,Skybridge,2006,316,5.89838,5.54800, +10249,243964,Showtime,2018,235,6.01904,5.54799, +10250,276839,Persona 5 Print & Play Board Game,2019,43,8.12233,5.54799, +10251,175327,Wrathborne Champions,2019,72,7.08534,5.54798, +10252,342716,Sly Wolf and the Missing Note,2021,65,7.25077,5.54798, +10253,26386,RPGQuest: Oriental Adventures,2006,38,8.46053,5.54798, +10254,1516,USAC Auto Racing,1979,235,6.01877,5.54796, +10255,4960,Gazala,1998,102,6.63235,5.54795, +10256,361969,The Seven Days Battles,2023,46,7.95217,5.54794, +10257,295081,The Tree Lined Avenue,2019,100,6.65300,5.54791, +10258,146937,Walking on the Moon,2016,89,6.78955,5.54790, +10259,327643,Cakes!,2021,139,6.34262,5.54789, +10260,29376,"The Battle of Adobe Walls, November 25, 1864",2009,70,7.12571,5.54788, +10261,273433,Tentacle Town,2021,131,6.39075,5.54787, +10262,288558,Chu Han,2024,86,6.83081,5.54783, +10263,357667,Mondrian: Color in Motion,2022,61,7.35627,5.54782, +10264,22664,Phase 10 Masters Edition,2001,509,5.76453,5.54782, +10265,352923,DECK 52: Space Wrecked,2021,68,7.16985,5.54781, +10266,295020,"Detective Stories: Demo ""Gattardo""",2019,104,6.60817,5.54781, +10267,380821,Expedition to 5X,2023,79,6.94367,5.54780,"301220, 380821" +10268,325434,Arkosa,2021,47,7.89404,5.54780, +10269,189830,Pantareï,2014,78,6.96128,5.54779, +10270,538,Manager,1979,134,6.37052,5.54779, +10271,315291,Everything Lost,2020,41,8.23659,5.54779, +10272,314376,ORP Orzeł,2020,82,6.89207,5.54779, +10273,6770,Yom Kippur,1983,79,6.94304,5.54778, +10274,94949,A Blood-Red Banner: The Alamo,2011,94,6.72021,5.54778, +10275,118537,Fortress Sevastopol,2017,44,8.05227,5.54777, +10276,188051,Deadfall,2016,125,6.42920,5.54776, +10277,8626,Assyrian Wars,2005,115,6.50565,5.54775, +10278,12604,Box of Golf: A Classic Golf Board Game,2003,152,6.27203,5.54773, +10279,129310,"Belisarius's War: The Roman Reconquest of Africa, AD 533-534",2012,98,6.67092,5.54772, +10280,419997,Happy Home,2024,89,6.78427,5.54771, +10281,2602,Solitaire for Two,2001,95,6.70611,5.54771, +10282,194387,DREIst!,2016,175,6.17651,5.54770, +10283,290500,Flip & Fish,2019,33,8.88182,5.54770, +10284,19161,ElfBall,2007,70,7.11929,5.54769, +10285,297139,Potato Pirates: Enter the Spudnet,2020,90,6.77000,5.54769, +10286,4802,Holy Roman Empire,1984,156,6.25276,5.54768,"4802, 173931" +10287,6187,Avalon,2003,350,5.86180,5.54766, +10288,1804,Inklings,1993,138,6.34384,5.54763, +10289,185344,Dragon Keeper: The Dungeon,2016,287,5.93042,5.54763, +10290,109143,Trick or Treat,2011,85,6.84000,5.54762, +10291,4293,The Great Redoubt: A Game of the Battle of Borodino – 1812,1979,83,6.87108,5.54762, +10292,32469,Make You Gunfighters,2007,179,6.16123,5.54761, +10293,124044,Tooth & Nail: Factions,2012,182,6.15110,5.54761, +10294,243581,Mephisto: The Card Game,2018,78,6.95564,5.54761, +10295,264326,K'uh Nah,2019,104,6.60308,5.54759, +10296,277629,Pact,2019,120,6.46234,5.54759, +10297,183,Stonehenge,1994,148,6.28919,5.54758,"183, 95491" +10298,150138,10 Negritos,2014,172,6.18564,5.54758, +10299,4816,Xactika,2002,516,5.76010,5.54755, +10300,6374,Napoleon at the Berezina,2003,91,6.75275,5.54754, +10301,73363,When Lions Sailed,2011,70,7.11429,5.54754, +10302,88950,Palenque,2011,210,6.06972,5.54754, +10303,193436,Double Ditto,2015,122,6.44631,5.54753, +10304,16149,Up And Down,2005,166,6.20789,5.54752, +10305,359299,Ten Plagues,2022,48,7.83125,5.54752, +10306,53723,Der HeidelBÄR,2009,120,6.46083,5.54751,"53723, 136819, 137596" +10307,355847,Streetcar Suburb,2022,51,7.69608,5.54750, +10308,148730,Copa,2013,97,6.67704,5.54750, +10309,1699,Star Smuggler,1982,117,6.48376,5.54749, +10310,173462,Dreary Hamlet,2016,69,7.13497,5.54748, +10311,217424,Tenno,2017,224,6.03645,5.54748, +10312,35425,Mutants and Death Ray Guns,2008,59,7.40339,5.54747, +10313,1404,Strand-Cup,2000,197,6.10330,5.54747, +10314,388720,Ptolemy,2023,74,7.02703,5.54746, +10315,186947,The Grimwood,2016,189,6.12671,5.54746, +10316,245598,Chessplus: Combine & Conquer,2019,63,7.28520,5.54746, +10317,367732,New Kingdom: Gardeners,2024,46,7.92670,5.54744, +10318,355071,Mars Escape,2023,33,8.86364,5.54744, +10319,294219,Somnia,2019,66,7.20530,5.54743, +10320,9044,All Quiet on the Western Front,1997,65,7.23077,5.54743, +10321,341510,Rainbow,2021,327,5.88202,5.54743, +10322,19048,The Nacho Incident,2005,252,5.98154,5.54742, +10323,369411,ChronoCops: Da Vinci's Universal Dilemma,2022,57,7.46667,5.54742, +10324,313016,The WitchBorn: Enter Perdition,2020,41,8.21528,5.54742,"178600, 313016" +10325,373544,Tether,2024,57,7.46579,5.54740, +10326,302022,BIRDIE!: The Disc Golf Board Game,2020,116,6.49006,5.54740,"302022, 374785" +10327,134596,Duple,2012,114,6.50658,5.54740, +10328,5953,Karambolage,1995,226,6.03119,5.54740,"5953, 166927" +10329,319288,Five Nights at Freddy's: Survive 'Til 6AM,2020,147,6.29116,5.54740, +10330,40830,Genial Spezial,2009,216,6.05347,5.54739, +10331,395581,Light in the Dark,2024,136,6.35074,5.54736,"332306, 395581" +10332,164279,Twilight Sparkle's Secret Shipfic Folder,2014,60,7.36833,5.54736, +10333,192762,Gauner raus!,2016,99,6.65071,5.54735, +10334,208995,Kaiju Incorporated,2017,105,6.58762,5.54735, +10335,190758,Psychomachia,2015,57,7.46351,5.54735, +10336,197321,Cult Following,2016,101,6.62838,5.54733, +10337,11388,Armati 2nd Edition: Rules and Lists for Ancient and Medieval Wargaming,2004,61,7.33607,5.54730,"10266, 11388" +10338,204621,Shoot-Out Hockey,2005,40,8.27500,5.54730, +10339,225932,Imperial Storm,2017,38,8.41842,5.54730, +10340,11179,Semper Victor,2004,51,7.68627,5.54729, +10341,189890,Scrimish,2015,316,5.89250,5.54729, +10342,419125,Sparks,2024,68,7.15074,5.54727, +10343,172998,Mighty,1975,86,6.81512,5.54727, +10344,22297,"Winged Horse: Campaigns in Vietnam, 1965-66",2006,67,7.17463,5.54727, +10345,237800,The Long Road,2018,81,6.89321,5.54726, +10346,36415,90°,2008,53,7.60377,5.54725, +10347,16432,Vinegar Joe's War: CBI,2005,92,6.73098,5.54721,"16432, 38829" +10348,317865,"Warhammer 40,000: Recruit Edition",2020,51,7.68235,5.54721,"317716, 317865, 317866" +10349,297374,"Return to the Rock: Corregidor, 1945",2020,52,7.64038,5.54719, +10350,225526,Big Bang 13.7,2018,84,6.84286,5.54718, +10351,277066,Bienvenue à bord,2019,74,7.01784,5.54718, +10352,391625,The Brain,2023,71,7.07958,5.54717, +10353,370438,Hidden Games Tatort: Reif für die Insel,2022,42,8.13571,5.54713, +10354,687,Cabale,1999,186,6.13118,5.54710,"687, 2473" +10355,33196,Genji,2008,415,5.80882,5.54709, +10356,367679,"Grand Havoc: Perryville, October 8, 1862",2023,40,8.26250,5.54709, +10357,39067,"June '44: The Struggle for Normandy, 1944",2008,64,7.24375,5.54707, +10358,216895,Das Duell um die Geld,2016,85,6.82376,5.54704, +10359,1907,International Movie Maker,1968,105,6.58054,5.54704, +10360,174013,The End Is Nigh,2017,140,6.32214,5.54704, +10361,31926,TAIJI,2007,128,6.39453,5.54703,"31926, 207996" +10362,267359,Linkto Food,2018,154,6.25144,5.54703, +10363,267945,Mr. Face,2018,207,6.07055,5.54698, +10364,158891,Krynea Battlefield,2014,72,7.05153,5.54696, +10365,337261,Forbidden Psalm,2021,47,7.85106,5.54695,"337261, 378526, 423084, 432176, 434842" +10366,312911,Elements of the Gods,2021,62,7.29355,5.54694, +10367,285792,Jigūan: The Eastern Mechanist,2019,118,6.46441,5.54693, +10368,67972,Workshop of the World,2010,124,6.41992,5.54693, +10369,398771,Die Patin,2023,61,7.32131,5.54692, +10370,2088,Coup,1975,153,6.25425,5.54691, +10371,405646,Rite,2024,38,8.39474,5.54691, +10372,21915,Le Vol de l'Aigle,2005,49,7.75510,5.54691, +10373,331056,Mozzaroller,2021,89,6.76180,5.54687, +10374,2226,Greyhounds,1985,140,6.31907,5.54687, +10375,228550,Blueshift,2018,66,7.18462,5.54686, +10376,37491,Modern Land Battles: Target Acquired,2015,74,7.00743,5.54685, +10377,42617,Dune Express,2009,227,6.02282,5.54684, +10378,208887,Avec Infini Regret II,2016,52,7.62404,5.54682, +10379,273825,Civitas Nihilium,2020,43,8.05814,5.54681, +10380,143745,2WW: The War in Europe,2012,119,6.45420,5.54681,"10590, 143745, 255235" +10381,209344,Rewordable,2017,115,6.48574,5.54681, +10382,393457,Urbify,2023,103,6.59505,5.54680,"147892, 393457" +10383,424679,Atlantis Exodus,2024,49,7.75000,5.54680, +10384,64896,Formula D,1996,68,7.13382,5.54678, +10385,150797,CLEVER,2014,81,6.87901,5.54678, +10386,362984,Blacksmiths of Steinnheimr,2023,46,7.89261,5.54678, +10387,349201,Sammu-ramat,2024,45,7.94444,5.54677, +10388,581,Tile Chess,1999,262,5.95851,5.54677, +10389,10310,Warfare in the Age of Reason,1998,55,7.50727,5.54674,"10310, 305165" +10390,238329,Dan and Phil's Truth Bombs,2017,149,6.27007,5.54672,"238329, 337390" +10391,382966,The Glade,2023,130,6.37577,5.54672, +10392,51429,L'Art de la Guerre,2008,48,7.79167,5.54671, +10393,164775,Monstrous,2016,335,5.86822,5.54669, +10394,126771,Moo's Code,2010,82,6.85976,5.54668, +10395,244166,Sherlock Holmes & Moriarty: Associates,2015,86,6.79829,5.54666, +10396,33875,Alkemy,2008,59,7.37051,5.54665,"33875, 180029" +10397,315671,Animal Upon Animal: Unicorns,2020,86,6.79767,5.54664, +10398,351226,Fullmetal Alchemist: Brotherhood – The Promised Day,2022,54,7.53889,5.54664, +10399,130229,Out of Gears,2012,172,6.17209,5.54664, +10400,358620,Forge,2023,52,7.61538,5.54663, +10401,397602,Molehill Meadows,2024,50,7.69800,5.54663, +10402,17235,Mago Magino,2004,190,6.11263,5.54662, +10403,308455,All Rise,2021,41,8.16878,5.54661, +10404,329024,Cursed Empire: Heroes of Thargos,2021,43,8.04651,5.54660,"329024, 370891" +10405,237079,FootClub,2017,47,7.83319,5.54659,"237079, 261603" +10406,25628,Tranquility Base,2006,121,6.43471,5.54659,"1878, 25628" +10407,129309,"Caesar's War: The Conquest of Gaul, 58-52 BC",2012,119,6.44958,5.54658, +10408,43023,Polizei-Alarm!,2009,118,6.45720,5.54658, +10409,77076,Loch Ness,2010,272,5.94154,5.54657, +10410,41123,Pirate Versus Pirate,2010,271,5.94279,5.54655, +10411,254135,Fortune City,2018,111,6.51374,5.54654, +10412,417599,Harmony,2024,53,7.57170,5.54653, +10413,5752,Black Sea Black Death,1982,60,7.33500,5.54652, +10414,318322,Hidden Strike: American Revolution,2021,76,6.95789,5.54650, +10415,211128,Coma Ward,2018,300,5.90379,5.54647, +10416,225800,"Patton's Vanguard: The Battle of Arracourt, 1944",2017,67,7.14627,5.54647, +10417,97093,Cherokee,2011,274,5.93763,5.54646, +10418,196220,Battle Gnomes,2016,40,8.22500,5.54645, +10419,86919,Birth of a Legend: Lee and the Seven Days,2011,82,6.85244,5.54643, +10420,370869,Queen of 12,2023,96,6.66191,5.54642,"370869, 424313" +10421,8362,Strategy I: Strategic Warfare 350BC to 1984,1971,106,6.55613,5.54640, +10422,8307,Killer,1981,162,6.20679,5.54638, +10423,416059,Gardlings,2024,61,7.30000,5.54637, +10424,127096,Metal Adventures,2015,197,6.08924,5.54636, +10425,415092,Prey,2024,89,6.74755,5.54634,"388723, 415092" +10426,134631,Crazy Lab,2013,225,6.02147,5.54634, +10427,6009,Soldiers of the Queen: Battles at Isandhlwana and Omdurman,1984,108,6.53611,5.54634, +10428,13779,Suleiman the Magnificent,2004,87,6.77471,5.54633, +10429,207290,Mission Impractical,2016,95,6.67105,5.54632, +10430,399104,Cards vs Gravity,2023,132,6.35558,5.54631,"128388, 399104, 434423" +10431,258512,Communist Cats,2018,123,6.41463,5.54630, +10432,3594,Star Wars: Battle for Endor,1989,174,6.16006,5.54630, +10433,341055,"Iron, Blood, Snow & Mud",2023,49,7.72449,5.54627,"309776, 341055" +10434,10246,Darkest December: Battle of the Bulge 1944,2004,54,7.52222,5.54626,"10246, 170627" +10435,8544,Battle for China,1999,76,6.95000,5.54625,"8544, 38827" +10436,346995,Kings & Creatures,2021,89,6.74494,5.54625, +10437,232210,The Pirate's Flag,2018,83,6.83145,5.54624, +10438,161765,Railroads,2014,37,8.42892,5.54624, +10439,5023,Conquerors,1977,92,6.70543,5.54623, +10440,217447,Tembo,2017,197,6.08756,5.54623, +10441,23550,WordSpot,2006,207,6.06135,5.54623,"23550, 31642" +10442,101463,Paletto,2011,83,6.83072,5.54622,"78704, 101463" +10443,368024,The League of the Scarlet Pimpernel,2022,30,9.10000,5.54622, +10444,2736,The Lonely Mountain,1984,103,6.58058,5.54619, +10445,11756,Objective: Schmidt,1990,63,7.23730,5.54619, +10446,29848,Battle for Baghdad,2009,84,6.81429,5.54618, +10447,81691,Lino,2010,89,6.74303,5.54618, +10448,250285,CATastrophe: A Game of 9 Lives,2022,71,7.04634,5.54617, +10449,35457,Burnside Takes Command,2003,37,8.42432,5.54616, +10450,382700,Paragons: Age of Champions,2023,30,9.09333,5.54613, +10451,271774,Sherlock Express,2019,258,5.95855,5.54613, +10452,3670,Battlewagon,1981,128,6.37695,5.54610, +10453,146152,Flash 10,2013,151,6.25021,5.54609,"146152, 147979" +10454,209283,Lumina,2016,97,6.64206,5.54609, +10455,135194,The Grand Campaign,2013,37,8.41892,5.54608, +10456,331155,Sriracha,2021,54,7.51447,5.54608, +10457,367421,Featherlight,2022,107,6.53879,5.54605, +10458,74311,The Hardest Days,2011,52,7.58846,5.54604, +10459,369870,Cartaventura: Hollywood,2022,60,7.31533,5.54602, +10460,14685,Angus: Batalhas Medievais,2004,85,6.79471,5.54601, +10461,254632,Hyperspace,2025,97,6.64021,5.54601, +10462,200549,Royal Defense,2016,48,7.75625,5.54599, +10463,365073,Donkey Valley,2022,78,6.90577,5.54598, +10464,369024,Valley Hoopers: The Series,2023,42,8.07127,5.54598, +10465,306906,A Rusty Throne,2019,62,7.25645,5.54597, +10466,334695,Inspector Mouse: The Great Escape,2021,83,6.82353,5.54597, +10467,282278,Drachensachen,2019,95,6.66211,5.54597, +10468,85563,Skippity,2010,132,6.34917,5.54596, +10469,391165,Chants for the Old Ones,2024,54,7.50926,5.54596, +10470,16271,No Trumpets No Drums: The Vietnam War 1965-1975,1982,99,6.61667,5.54595, +10471,169246,Ambyria: Shroud of the Shadow Demon,2016,90,6.72367,5.54595, +10472,362513,Airport Rush,2022,44,7.95455,5.54594, +10473,289438,STRIKE!: The Game of Worker Rebellion,2020,55,7.47273,5.54594, +10474,22600,1831,1996,51,7.62353,5.54593, +10475,284640,Star Breach,2018,38,8.33421,5.54593, +10476,745,War of Resistance,1998,71,7.03803,5.54593, +10477,238025,Blitzkrieg to Moscow 2,2016,56,7.43750,5.54592,"16327, 238025, 368201" +10478,108080,Shadows Upon Lassadar,2011,103,6.57427,5.54592, +10479,129038,Wolsung Steampunk Skirmish Game,2011,40,8.19375,5.54591, +10480,155203,Nobody is Perfect: 20th Anniversary Edition,2012,83,6.82169,5.54590, +10481,293046,World War Zed: USA,2019,56,7.43661,5.54590, +10482,92140,Four Roads to Moscow,2011,92,6.69674,5.54590,"92140, 148473" +10483,18266,SeaSim,2004,223,6.02067,5.54590,"5338, 18266" +10484,5777,Electronic Detective,1979,121,6.42041,5.54587, +10485,338095,Taĉmento,2023,65,7.17385,5.54587, +10486,18056,Anno Domini: Kunst,2001,98,6.62551,5.54587, +10487,187032,Lettow-Vorbeck: East Africa 1914-18,2015,72,7.01528,5.54586, +10488,153757,Nika,2014,115,6.46583,5.54586, +10489,129735,Boom Boom Balloon,2012,330,5.86644,5.54586,"129735, 183888" +10490,354242,Yuncos: El lado oscuro de la luz,2022,58,7.36977,5.54586,"353880, 354242" +10491,21991,Karo,2005,101,6.59307,5.54585, +10492,94615,The Last King of Scotland: The Uganda-Tanzania War 1978-1979,2011,95,6.65895,5.54584, +10493,142829,Flick Wars,2019,84,6.80417,5.54582,"142829, 292990" +10494,339743,50 Clues: Keepers of Evil,2021,107,6.53364,5.54582, +10495,385546,Dungeons & Dragons: Trials of Tempus,2023,49,7.70254,5.54581, +10496,128927,Shinobi: War of Clans,2012,226,6.01305,5.54578, +10497,131457,Septikon: Uranium Wars,2012,131,6.35183,5.54578, +10498,8,Lords of Creation,1993,211,6.04611,5.54577, +10499,34696,Drachen Wurf,2008,312,5.88413,5.54577, +10500,143073,Tute,,79,6.88101,5.54573, +10501,144460,Cycling Party,2014,93,6.68000,5.54573, +10502,30246,San Quentin Kings,2007,80,6.86403,5.54572, +10503,270140,Go Gecko Go!,2019,117,6.44701,5.54571, +10504,4176,Armies of Arcana,1997,47,7.78936,5.54571, +10505,182064,Nantucket,2016,255,5.95922,5.54571, +10506,358995,Kaikoro,2022,78,6.89744,5.54571, +10507,340980,ImmunoWars: The Most Infectious Boardgame,2022,58,7.36333,5.54570, +10508,373657,Doom Pilgrim,2022,37,8.39459,5.54570,"373657, 413968, 432915" +10509,129751,KIPP X,2012,93,6.67903,5.54569, +10510,103752,Schachen,2011,68,7.09559,5.54569, +10511,12067,Little Wars,1913,67,7.11866,5.54569,"12067, 143184, 146332" +10512,156458,RoboRama,2014,136,6.32056,5.54568, +10513,141249,Battle Scenes,2013,82,6.83055,5.54567, +10514,2215,They've Invaded Pleasantville,1981,192,6.09417,5.54565, +10515,370749,"Wendy, Grow Up",2021,37,8.39189,5.54565, +10516,174252,Vampire Radar,2014,106,6.53915,5.54565, +10517,1321,Catch the Match,1995,195,6.08564,5.54565,"1321, 95807" +10518,265118,Legend Raiders,2022,186,6.11156,5.54563, +10519,168250,Battle for Sularia,2016,85,6.78400,5.54563,"168250, 249810" +10520,417323,Panda Spin,2025,75,6.94907,5.54563, +10521,127989,LOT,2012,65,7.16462,5.54562, +10522,20829,Keesdrow,2005,130,6.35500,5.54561, +10523,341914,Froggies,2021,100,6.59780,5.54561,"341914, 406593" +10524,258137,Robin Hood,2019,80,6.86075,5.54561, +10525,355039,Uluk,2022,71,7.02742,5.54561, +10526,22126,Bag the Hun,2003,53,7.53019,5.54560,"22126, 26764, 425875" +10527,355704,Parikrama,2022,40,8.17500,5.54559, +10528,306348,French and Indian War 1757-1759,2020,49,7.69184,5.54559, +10529,29126,HeroCard Orc Wars,2007,151,6.24205,5.54559, +10530,5001,Telepaths,1992,145,6.27069,5.54558, +10531,62709,Funglish,2009,441,5.78391,5.54557, +10532,324158,Professor Charlie's world tour,2020,95,6.65158,5.54555, +10533,13676,The Perfect 10,2003,249,5.96747,5.54554, +10534,291563,50 Clues: The Home Temple,2019,188,6.10431,5.54554, +10535,220672,Shop 'N Time,2017,201,6.06814,5.54554, +10536,205346,Beer Empire,2016,193,6.08972,5.54553,"145068, 205346" +10537,194388,Blacksmith Brothers,2016,72,7.00417,5.54553, +10538,333143,Warsaw 1920: Lenin's Failed Conquest of Europe,2020,44,7.93182,5.54552, +10539,16142,Geisterwäldchen,2005,200,6.07050,5.54552, +10540,42255,"The Kaiser's War: World War I, 1918-19",2010,62,7.23871,5.54551, +10541,4016,"""Scratch One Flat Top!""",1995,55,7.45400,5.54550, +10542,5990,Blood & Iron,1993,129,6.35891,5.54549, +10543,4196,Fantasy Forest,1982,134,6.32851,5.54549, +10544,241488,Where's Mr. Wolf?,2018,129,6.35881,5.54548, +10545,379306,Medieval: Jan Žižka,2023,70,7.04429,5.54548, +10546,89807,Bradley's D-Day,2011,104,6.55385,5.54546,"7562, 89807, 310892" +10547,337760,Disney: Mad Tea Party,2021,100,6.59417,5.54546, +10548,28219,Konarmiya Year of the Red Tide,2007,88,6.73693,5.54545,"10232, 28219, 99045, 232792, 247732" +10549,9161,Highlander: The Card Game,1996,156,6.21756,5.54545, +10550,138966,Ici Londres,2013,153,6.23072,5.54545, +10551,359754,Dreamers,2022,54,7.48704,5.54545, +10552,355,Das letzte Paradies,1993,228,6.00478,5.54540, +10553,643,Deadlands: Doomtown Range Wars,2000,146,6.26267,5.54540, +10554,256962,TANKS: The Modern Age – M1 vs T-64 Starter Set,2018,48,7.72708,5.54540, +10555,184477,C-Cross,2015,52,7.55885,5.54539, +10556,21935,Chu Shogi,1300,41,8.09756,5.54536, +10557,298143,Nutty Noodles,2020,90,6.70800,5.54536, +10558,16325,Strike Them a Blow: 1864 North Anna River,2006,55,7.44727,5.54535, +10559,179548,Sweet Nose,2016,109,6.50419,5.54531, +10560,63161,Eric Solomon's Corporation,2009,77,6.90260,5.54531, +10561,5481,Vive l'Empereur,2003,78,6.88462,5.54529,"5481, 66547" +10562,1420,Monopoly Express,1991,954,5.65471,5.54526, +10563,316915,Deathtouched,2025,38,8.29211,5.54525, +10564,120547,War & Peace,2012,89,6.71798,5.54525, +10565,424577,Flower Fields,2024,60,7.28400,5.54523, +10566,398388,Oxono,2024,186,6.10597,5.54521, +10567,116860,The Cook-off,2013,150,6.24053,5.54521, +10568,37345,Circus Maximus,2008,214,6.03252,5.54521, +10569,312682,Silver Coin: Age of Monster Hunters,2023,38,8.28947,5.54521, +10570,220707,Pile-Up Rush,2017,108,6.51065,5.54520, +10571,204576,The Perfumer,2016,146,6.25918,5.54519, +10572,286690,Shinjuku,2024,55,7.44000,5.54518, +10573,420891,Shut The Books,2024,49,7.67143,5.54517, +10574,245446,Nimble,2018,320,5.87055,5.54514, +10575,329521,Chiefdom,2023,57,7.37018,5.54510, +10576,2205,The Lost World Jurassic Park Game,1996,227,6.00300,5.54506, +10577,8736,Kasserine Pass,1972,81,6.82840,5.54506, +10578,6509,The Oilman Game,1994,115,6.44872,5.54505, +10579,7752,Over There,2000,53,7.50566,5.54505, +10580,352725,Space Aztecs,2022,86,6.75279,5.54503, +10581,417542,Cyberpunk 2077: The Board Game,2025,68,7.07206,5.54501, +10582,156062,Ucho Króla,2014,186,6.10323,5.54501, +10583,340292,Molt soroll per un rei,2021,44,7.90455,5.54501, +10584,411865,Magic Number Eleven,2024,54,7.46667,5.54498, +10585,357172,Ynaros Fallin',2024,62,7.21839,5.54498, +10586,71099,Ingenious Challenges,2010,1397,5.61917,5.54495,"36745, 39699, 71099, 117987" +10587,235697,27,2017,90,6.69700,5.54495, +10588,296363,Aztec,2020,142,6.27498,5.54494, +10589,165090,CLUE: Firefly Edition,2014,119,6.41597,5.54493, +10590,238327,Anna's Roundtable: The Fan Made Fire Emblem Board Game,2021,54,7.46296,5.54490, +10591,380325,The MOG: Mogadishu 1993,2023,42,8.00952,5.54487, +10592,4087,1812: The Campaign of Napoleon in Russia,1972,76,6.90658,5.54486, +10593,348939,The Acts of the Evangelists,2022,64,7.16094,5.54484, +10594,70767,Smash Monster Rampage!,2010,121,6.39959,5.54484, +10595,284949,Orchard Ocean,2019,80,6.83750,5.54483, +10596,358053,Click! The Great Wall,2022,83,6.79036,5.54482, +10597,6993,Spinner Dominoes,1983,113,6.45961,5.54481, +10598,256443,Sideshow Swap,2019,77,6.88701,5.54480, +10599,9086,"Eylau: Napoleon's Winter Battle, 1807",1980,82,6.80488,5.54479, +10600,394053,Sea Wolves Solitaire: Battle of the Atlantic 1939-1942,2023,38,8.26316,5.54478, +10601,197528,King Of The Hill: The Dwarf Throne,2016,93,6.65516,5.54477, +10602,179929,JurassAttack!,2015,162,6.18216,5.54476, +10603,338690,We Can Play: Women Who Changed the World,2022,58,7.32414,5.54474, +10604,20379,Statis Pro Baseball Great Teams,1989,52,7.52885,5.54473, +10605,162141,Swedish Parliament 2014,2014,71,6.99718,5.54471,"61165, 162141, 362824" +10606,341192,Oh Really?,2019,102,6.55559,5.54470,"341192, 359085" +10607,255712,Cave Paintings,2018,103,6.54563,5.54469, +10608,329017,Fortune & Famine,2021,46,7.78565,5.54469, +10609,102346,Guns of the Askari,2012,59,7.29153,5.54468, +10610,208023,Justice League: Dawn of Heroes,2017,121,6.39625,5.54467, +10611,292394,DIE in the Dungeon!,2020,99,6.58525,5.54466, +10612,122327,Pirates of the Spanish Main: Shuffling the Deck,2012,277,5.91650,5.54465,"122327, 135719, 145504, 147498" +10613,330995,Dogs Alone,2021,73,6.95501,5.54463, +10614,365534,Spy Guy,2022,73,6.95446,5.54462,"365534, 397100, 432946, 432947" +10615,192346,Edenia,2016,170,6.14994,5.54461, +10616,24122,Greentown,2006,145,6.25414,5.54460, +10617,17073,Watten,,68,7.05735,5.54459, +10618,163983,Squirrel or Die,2014,151,6.22583,5.54459,"163983, 400145" +10619,239189,Chronicle X,2021,170,6.14950,5.54458, +10620,401784,Koinobori,2024,51,7.56029,5.54456, +10621,22186,Shako: Rules and Army Lists for Napoleonic Wargaming,1995,61,7.22951,5.54456,"22186, 39632" +10622,255272,Libraria,2018,109,6.48740,5.54455, +10623,80044,Fury in the East,2010,68,7.05588,5.54455,"14818, 80044" +10624,268805,The Necronomicon Gamebook: Dagon,2018,39,8.17949,5.54455,"268805, 316055, 406892" +10625,57368,The King Commands,2010,278,5.91414,5.54454, +10626,321850,Цветрис,2021,71,6.99141,5.54453, +10627,252165,Role Quest,2018,40,8.11250,5.54453, +10628,282081,The Zorro Dice Game,2020,210,6.03357,5.54452, +10629,9238,"War in the Ice: The Battle for the Seventh Continent, 1991-92",1978,120,6.40033,5.54452, +10630,247394,EXO: Mankind Reborn,2019,167,6.15944,5.54452, +10631,381834,Piñata Blast,2023,70,7.01143,5.54451, +10632,768,Keytown,2000,112,6.46116,5.54451, +10633,350081,Rainforest City,2021,61,7.22705,5.54449, +10634,1940,Sindbad,1990,166,6.16265,5.54448, +10635,385245,Faeries & Magical Creatures,2023,101,6.56040,5.54448, +10636,2986,Web and Starship,1984,121,6.39231,5.54447, +10637,296027,Hokusai,2022,43,7.93023,5.54447, +10638,385292,One Page War,2023,66,7.09879,5.54447, +10639,32466,Kogworks,2007,201,6.05483,5.54447, +10640,11964,Bloody Ridge,2005,95,6.62421,5.54447, +10641,197911,Onami,2016,85,6.75118,5.54446, +10642,294712,Prelude to Revolution: Russia's Descent into Anarchy 1905 - 1917,2023,38,8.24342,5.54446, +10643,162191,Look!,2012,168,6.15489,5.54446, +10644,285789,Polyhedral Park Planner,2019,72,6.96875,5.54446, +10645,345194,Aerodome: Rising Horizons,2023,33,8.65152,5.54445, +10646,294231,Gangster's Dilemma,2020,96,6.61229,5.54444, +10647,37741,Secrets of the Third Reich,2008,34,8.55882,5.54443, +10648,132407,Stone & Relic,2013,123,6.37764,5.54443, +10649,265369,Vigilante,2022,44,7.87273,5.54441,"265369, 361046" +10649,307803,The Lost Valley: The Siege of Diên Biên Phù,2020,44,7.87273,5.54441, +10651,37592,Epées et Hallebardes 1315-1476,2008,47,7.72340,5.54440, +10652,142988,Hunters of Arcfall,2014,194,6.07216,5.54439, +10653,292507,Ramen Ink,2020,135,6.30230,5.54436, +10654,182410,First Crusade 1097–1099,2016,54,7.43889,5.54435, +10655,257766,¡Arre Unicornio!,2018,212,6.02689,5.54435, +10656,13647,Warlord,2004,68,7.04779,5.54432, +10657,27363,Danger 13,2007,223,6.00265,5.54431,"27363, 427464" +10658,234378,Unfinished Case of Holmes,2017,175,6.12829,5.54430, +10659,219,Volle Hütte,1997,175,6.12829,5.54430, +10660,174991,JunKing,2015,165,6.16364,5.54430, +10661,111866,Rise!,2012,191,6.07932,5.54430, +10662,359398,Hunch!,2022,86,6.73174,5.54427,"289786, 359398" +10663,398774,Reif für die Insel,2023,65,7.11538,5.54427, +10664,282700,LOOP: Life of Ordinary People,2021,81,6.80494,5.54427, +10665,302753,Swatch: The Abstract Game of Art,2022,78,6.85336,5.54426, +10666,93472,Ubongo: Das Kartenspiel,2011,226,5.99596,5.54425, +10667,41054,You Robot,2009,255,5.94451,5.54425, +10668,245700,Party Bugs,2018,140,6.27307,5.54423, +10669,313536,Pop-Tarts Game,2020,223,6.00173,5.54423, +10670,276019,Goons,2021,52,7.50577,5.54422, +10671,321215,The Three Little Wolves,2020,118,6.40847,5.54421, +10672,192623,Emergence: A Game of Teamwork and Deception,2016,189,6.08333,5.54417, +10673,3219,Demonworld,1999,76,6.88491,5.54417, +10674,232800,Lancelot,2017,182,6.10385,5.54416, +10675,420385,The Yellow House,2024,130,6.32769,5.54416, +10676,99042,The American Revolution: Decision in North America,2011,68,7.04191,5.54415, +10677,155754,An Army at Dawn: Tunisia 1942-1943 – A Panzer Grenadier Game,2015,38,8.22368,5.54414, +10678,27945,Storm Over Taierzhuang,2007,97,6.59381,5.54414, +10679,2965,Kendo,1976,222,6.00275,5.54414,"2965, 7626" +10680,367246,The Blob that Ate the City,2022,65,7.10923,5.54410, +10681,688,Manchu: The Taiping Rebellion – 1852-1868,1988,113,6.44425,5.54409,"688, 258115" +10682,289055,KAITŌ,2019,78,6.84808,5.54409, +10683,30684,Johnny Reb,1983,77,6.86494,5.54409, +10684,255928,Burger Battle,2018,61,7.21058,5.54407,"255928, 417743" +10685,178397,Samhain,2017,240,5.96761,5.54407, +10686,381639,Score Cards,2023,63,7.15757,5.54407, +10687,416817,Concilium Urbis,2024,44,7.85341,5.54405, +10688,1744,Monster Mash,1987,287,5.89809,5.54405, +10689,361771,The Race to Bastogne: A Solitaire Wargame,2022,39,8.14919,5.54404, +10690,288251,Lost Kingdoms: Pangea in Pieces,2021,75,6.89867,5.54404, +10691,11110,A Famous Victory,1994,101,6.54950,5.54402,"11110, 14814" +10692,143023,Alea Iacta Est,2013,58,7.29483,5.54402, +10693,188347,Karty Dżentelmenów,2015,391,5.80372,5.54402,"188347, 216360, 309708, 309709, 335858, 335859, 387597" +10694,74136,Death Ride Kursk: Gross Deutschland,2010,38,8.21579,5.54401,"74136, 154353, 263282, 331152" +10695,185302,Xtronaut: The Game of Solar System Exploration,2016,170,6.14118,5.54401,"185302, 301061" +10696,218824,Game of Quotes: Verrückte Zitate,2017,428,5.78119,5.54401,"218824, 269982" +10697,204314,D6 Dungeon,2019,127,6.34331,5.54401, +10698,284617,King Thief Minister,2019,62,7.18065,5.54399,"284617, 380905" +10699,9866,Normandie 1944,1999,70,6.99357,5.54399,"9866, 143034" +10700,157135,Destination: Neptune,2014,155,6.19839,5.54397, +10701,179794,Me Want Cookies!,2015,326,5.85504,5.54396,"41190, 179794" +10702,382694,Historical Mystery: Death at the Ball,2023,59,7.26271,5.54396,"382694, 401242" +10703,284821,Bossin' Space,2020,76,6.87763,5.54394, +10704,138616,Shift: The Single Card CCG,2013,149,6.22416,5.54394, +10705,5491,Time is Money,2003,155,6.19774,5.54393, +10706,228724,Dead Throne,2019,69,7.01246,5.54393,"228724, 286082" +10707,199611,Shiftago,2016,50,7.57040,5.54392, +10708,2706,Attack of the Mutants!,1981,124,6.36089,5.54392, +10709,291415,Ostkrieg: WWII Eastern Front,2020,69,7.01159,5.54390, +10710,288254,Simplicity,2021,259,5.93477,5.54389, +10711,339619,Reign in Hell: Demonic Skirmish Combat,2021,42,7.95238,5.54385, +10712,55315,Maus au Chocolat,2009,243,5.96008,5.54385, +10713,417352,Treasure Goblins,2024,31,8.80645,5.54384, +10714,332086,Xenos Rampant,2022,45,7.79111,5.54384, +10715,424442,Beatz'n'Catz,2024,51,7.52667,5.54384, +10716,3936,The Siege of Constantinople: The End of the Middles Ages 1453 A.D.,1978,214,6.01636,5.54384, +10717,321499,Get to da Checkpoint,2021,68,7.03074,5.54383, +10718,31021,Shuffleboard Game,,70,6.98800,5.54382, +10719,16972,"Alexandria, 1801",1996,55,7.38182,5.54382, +10720,131321,The Valkyrie Incident,2013,101,6.54455,5.54382, +10721,4964,Close Assault: A Man-to-Man Game of Squad Tactics and Command – Europe 1939-1945,1983,60,7.22833,5.54381, +10722,311527,Radioactive Bees,2020,42,7.95000,5.54381, +10723,2138,Crisis: Sinai 1973,1995,107,6.48785,5.54379, +10724,284326,Italian-Ottoman War 1911-1912,2020,50,7.56400,5.54379,"218684, 284326" +10725,9391,Challenger II: Ultra Modern Wargame Rules for Battle Group Level Games 1950 to 1995,1988,69,7.00725,5.54377,"9391, 9401, 15812, 17098, 21083, 26365, 126900, 282079, 308343, 427381" +10726,182274,NXS,2015,82,6.77500,5.54377, +10727,270513,Dekalko,2019,120,6.38475,5.54375, +10728,42748,1812: The Cradle of Steam Railways,2011,66,7.07273,5.54375, +10729,97655,Space Maze,2011,302,5.87781,5.54374, +10730,31803,Wadi,2007,163,6.16258,5.54373, +10731,38830,Destruction of Army Group Center (Second Edition),2009,205,6.03561,5.54371,"8755, 38830" +10732,260348,Gobi,2018,114,6.42763,5.54368, +10733,230081,Pizza Master,2017,63,7.14308,5.54368,"230081, 355922" +10734,180202,Southern Rails,2015,145,6.23855,5.54368, +10735,112102,Pantolino,2011,227,5.98744,5.54367,"112102, 297789" +10736,23818,1847: Pfalz,1990,66,7.06970,5.54366, +10737,150605,Candy Chaser,2013,342,5.83808,5.54365, +10738,230130,Forsaken Forest,2018,89,6.67478,5.54364, +10739,161886,1879: US Pacific Northwest,2014,95,6.60326,5.54364, +10740,151448,Danmaku!!,2016,68,7.02368,5.54363, +10741,11699,Red Steel: Clash Of Armor At Kishinev,1996,85,6.72765,5.54363, +10742,121715,HIRÞ: The Viking Game of Royal Conflict,2003,83,6.75602,5.54362, +10743,334513,Detective Stories: History Edition – Kaifeng 982,2021,66,7.06818,5.54362, +10744,320280,Lapsus,2021,49,7.59592,5.54359, +10745,243231,Henhouse Havoc,2018,72,6.94028,5.54359, +10746,1101,Flying Carpet,1987,376,5.81093,5.54358, +10747,292130,Dolina królików,2019,72,6.93958,5.54357, +10748,140995,Colonial Space Wars: New Horizons,2013,47,7.68085,5.54355,"125145, 140995, 210016" +10749,306650,Prosperitea,2022,111,6.44847,5.54354, +10750,373063,GRUNN: Pioniers in de Provincie,2022,57,7.30526,5.54353, +10751,327062,Popcorn Dice,2021,174,6.12052,5.54352, +10752,313935,The Mariana Trench,2021,144,6.24062,5.54352, +10753,290733,Never Bring a Knife,2020,57,7.30439,5.54351, +10754,39704,Emu Ranchers,2008,105,6.49905,5.54349, +10755,370235,Left Right Dilemma,2022,226,5.98739,5.54349, +10756,8436,MechWar 2,1979,103,6.51748,5.54349,"6896, 8436, 17237" +10757,340193,Turf War,2022,63,7.13571,5.54348, +10758,269205,Overload,2019,121,6.37243,5.54348, +10759,325237,Fake That!,2020,95,6.59895,5.54347, +10760,175516,MoonQuake Escape,2016,125,6.34560,5.54347, +10761,279556,La Der des Ders,2019,64,7.10938,5.54345,"279556, 430902" +10762,1530,Dark Age: Feudal Lords,1996,119,6.38496,5.54341, +10763,193161,Tubyrinth,2016,150,6.21080,5.54340, +10764,5818,Waving Hands,1977,53,7.43208,5.54339, +10765,169555,Emergents: Genesis – The Deckbuilding Game,2015,99,6.55444,5.54339, +10766,329410,Extravaganza,2023,58,7.26897,5.54339, +10766,208337,Forestaurant,2016,58,7.26897,5.54339, +10768,5590,Hallo Dachs!,1996,215,6.00884,5.54338,"5590, 118051" +10769,368088,Storm of Steel: Ju-87 Stuka – Eastern Front,2023,38,8.17632,5.54337, +10770,312633,French Toast,2021,83,6.74880,5.54337, +10771,67251,Terminator Salvation,2010,61,7.18279,5.54335, +10772,393869,Maatatahay,2023,63,7.13016,5.54334, +10773,290722,Danger Park,2021,136,6.27833,5.54333, +10774,11283,1895 Namibia,2004,76,6.85855,5.54333,"11283, 362110" +10775,293728,Inner Compass,2020,120,6.37627,5.54333, +10776,264318,Monsieur Carrousel,2019,90,6.65333,5.54331, +10777,355473,3 Second Try,2021,104,6.50288,5.54326, +10778,140682,Czas Honoru: Operacja Most III,2013,132,6.29909,5.54325, +10779,1859,Doomtrooper,1994,521,5.73459,5.54322,"1859, 144893" +10780,239452,Judge Dredd: Block War,2018,74,6.89054,5.54322, +10781,363870,Survival of the Fattest,2024,47,7.66383,5.54321, +10782,176992,Bloody Big Battles!,2014,31,8.75806,5.54320, +10783,226619,Medievalia,2017,66,7.05303,5.54320, +10784,117992,Shrimp,2012,293,5.88324,5.54319, +10785,2963,Stockmarket,1987,78,6.82031,5.54318, +10786,193131,Os Reinos de Drunagor,2016,52,7.45865,5.54318, +10787,373291,12 Hours at Maleme,2022,43,7.85907,5.54317, +10788,5483,"Kursk: History's Greatest Tank Battle, July 1943",1980,100,6.53900,5.54317, +10789,207,Twitch,1998,183,6.08689,5.54314, +10790,312535,Pigeon Pigeon,2020,104,6.49990,5.54314, +10791,117707,Wanzen tanzen,2012,157,6.17643,5.54310, +10792,122961,"Mayan Sun, Aztec Destiny: 500 BC – AD 2012 – Beyond∞",2012,48,7.61458,5.54310, +10793,17482,Amirauté,1979,66,7.04924,5.54309, +10794,17054,Pegs and Jokers,1975,151,6.20132,5.54309, +10795,126550,Władca Areny,2012,91,6.63516,5.54308, +10796,302258,Dice United,2020,33,8.55455,5.54308, +10797,291549,Go Slow!,2020,78,6.81697,5.54307, +10798,403123,Puerto Banana,2024,91,6.63451,5.54306, +10799,225235,First Snow,2017,81,6.76889,5.54304, +10800,402109,PASS,2023,106,6.47972,5.54304, +10801,565,Port Royal,2000,149,6.20906,5.54302, +10802,220675,Symphony,2018,90,6.64556,5.54302, +10803,267414,Blume,2021,132,6.29432,5.54299, +10804,177995,"Graveyards, Ghosts & Haunted Houses",2015,137,6.26686,5.54299,"163565, 177995" +10805,275817,Yum Yum Island,2019,132,6.29356,5.54295, +10806,1792,Star Viking,1981,103,6.50485,5.54295, +10807,149618,Rock'n Rodeo: Der Festivalmanager,2014,93,6.60806,5.54294, +10808,262141,Dungeon Brawler,2019,99,6.54343,5.54294, +10809,151016,Provincia Romana,2014,208,6.01872,5.54290, +10810,155314,Strike A Pose,2014,113,6.41844,5.54289, +10811,262262,The Stars Align,2018,68,6.99779,5.54289, +10812,375373,ILAN: Discovering Antarctic Life,2022,37,8.21622,5.54288, +10813,3051,How to Host a Murder: The Last Train from Paris,1985,84,6.72024,5.54287, +10814,378916,Gold Nugget,2024,41,7.95488,5.54287, +10815,414082,Woof Days,2024,44,7.78864,5.54284, +10816,230916,Chop! Chop!,2017,84,6.71905,5.54283, +10817,349134,Save: South Vietnam!,2022,40,8.01250,5.54282, +10818,295159,"Seas of Thunder: Global Naval Warfare, 1939-45",2023,87,6.67816,5.54282, +10819,6653,Strange Synergy,2003,413,5.78194,5.54281, +10820,399376,For One: Number Up,2023,53,7.40604,5.54281, +10821,4917,Great War at Sea: U.S. Navy Plan Black,1999,83,6.73253,5.54281, +10822,387,Corruption,2000,352,5.82333,5.54281, +10823,84783,Coerceo,2011,88,6.66455,5.54279, +10824,318714,Deadlines,2020,80,6.77625,5.54278, +10825,96440,Farrapos,2011,43,7.83721,5.54277, +10826,246723,Krom: Evolution,2018,85,6.70329,5.54276, +10827,302892,Frozen Frontier,2024,51,7.47647,5.54275, +10828,690,Singapore,1984,112,6.42312,5.54274, +10829,184525,Obama Llama,2015,433,5.77043,5.54274,"184525, 266071, 266073, 295089" +10830,3251,Barbarian Kings,1980,197,6.04315,5.54274, +10831,41019,Sherwood Forest,2009,400,5.78915,5.54273, +10832,2307,Greyhawk Adventures: Wars,1991,241,5.95166,5.54272, +10833,312372,Pandoria Merchants,2020,116,6.39227,5.54272, +10834,54541,Warzoo,2015,99,6.53808,5.54272, +10835,234946,Liberatores: The Conspiracy to Liberate Rome,2017,149,6.20403,5.54272, +10836,22182,Stonne Heights,2007,44,7.78182,5.54271, +10837,7640,The Fall of Tobruk,1975,55,7.33364,5.54270, +10838,2153,Grav Armor,1982,89,6.64944,5.54270, +10839,94746,Coffee,2011,68,6.99118,5.54270, +10840,30102,The Aztec Market,2009,62,7.13129,5.54270, +10841,351809,Stick Collection,2021,121,6.35661,5.54269,"325564, 350061, 351809" +10842,311990,Macaron,2021,84,6.71488,5.54268, +10843,33156,Magnet,2008,146,6.21704,5.54268, +10844,147563,Stories!,2013,113,6.41381,5.54267, +10845,218666,Lock 'n Load Tactical: Starter Kit,2017,44,7.77955,5.54267, +10846,243780,Before There Were Stars...,2018,129,6.30558,5.54266, +10847,235328,STEM: Epic Heroes,2017,191,6.05791,5.54266, +10848,292464,Grimm: A Card Game,2019,55,7.33145,5.54265, +10849,292667,League of Infamy,2020,44,7.77841,5.54265, +10850,86542,Taiga,2010,125,6.32960,5.54264, +10851,275188,Cat Sudoku,2019,148,6.20716,5.54264, +10852,37731,Manille,,61,7.15410,5.54261,"37731, 346121" +10853,30287,Ghost for $ale,2007,259,5.92212,5.54261, +10854,4919,Great War at Sea: U.S. Navy Plan Red,2002,89,6.64663,5.54260, +10855,301710,Varia,2021,30,8.81667,5.54258,"301710, 357661, 402460, 423325, 428515" +10856,340428,"The Battle of White Plains: Twilight of the New York Campaign October 28th–31st, 1776",2023,43,7.82674,5.54258, +10857,131416,C.O.A.L.: Combat-Oriented Armored League,2013,86,6.68430,5.54257, +10858,282530,Crash Test Bunnies,2019,115,6.39617,5.54256, +10859,211533,Veggie Garden,2017,635,5.69712,5.54255, +10860,28389,Mini Shogi,1970,53,7.39434,5.54255, +10861,29377,Decisive Victory 1918: Volume One – Soissons,2021,39,8.05897,5.54254, +10862,208093,Laga Jakarta,2016,55,7.32636,5.54253, +10863,195477,Madness At Midnight,2017,86,6.68329,5.54253,"161075, 195477" +10864,5475,After the Holocaust: The Nuclear Devastation of America – Recovery and Reunification,1977,178,6.09354,5.54252, +10865,327295,18CO: Rock & Stock,2020,66,7.02833,5.54251, +10866,80484,APBA Golf Game,2010,40,7.99375,5.54250, +10867,294252,Hogs Of War: The Card Game,2020,58,7.23276,5.54250, +10868,85243,Loch Ness,2010,408,5.78272,5.54249, +10869,394332,Western Legends: Showdown,2023,94,6.58500,5.54248, +10870,340225,Vol de nuit,2021,59,7.20339,5.54248, +10871,6826,The Campaigns of Robert E. Lee,1988,96,6.56323,5.54248, +10872,298376,MEOW,2020,164,6.13951,5.54245, +10873,344039,Sneaky Bastard,2021,114,6.40132,5.54244, +10874,143255,Goblins vs Zombies,2013,125,6.32560,5.54244, +10875,3932,Interplay,1980,114,6.40088,5.54242, +10876,189628,Tesseract,2015,130,6.29516,5.54242, +10877,2277,Lose Your Shirt,1976,93,6.59462,5.54242, +10878,351716,Mega Man Adventures,2022,70,6.93871,5.54237, +10879,301576,Breakdancing Meeples,2020,71,6.91901,5.54237, +10880,2180,Flagship: Prometheus Unchained,2002,190,6.05673,5.54237,"2180, 31074" +10881,18246,Island Of D,2005,125,6.32400,5.54236, +10882,37683,Hogwarts: House Cup Challenge,2008,177,6.09435,5.54235, +10883,57037,Kingpin,2009,173,6.10694,5.54234, +10884,1760,Fury of the Clansmen,1994,107,6.45514,5.54234, +10885,255291,Bilder,2018,91,6.61550,5.54233, +10886,250406,Hero Master: An Epic Game of Epic Fails,2020,93,6.59194,5.54232, +10887,104780,Hoppe Reiter,2011,177,6.09379,5.54231, +10888,204541,Demon Espionage,2016,45,7.71111,5.54231, +10889,183305,Science Ninjas: Valence,2015,97,6.54845,5.54231,"183305, 242551" +10890,233951,Vilar de Mouros,2017,37,8.17946,5.54230, +10891,147400,Kyoto Protocol,2015,99,6.52747,5.54228,"147400, 399751" +10892,665,Quackshot,1995,87,6.66322,5.54228, +10893,341005,One Earth,2022,47,7.61702,5.54227, +10894,6744,Feudal Lord,1983,51,7.45392,5.54226, +10895,223455,Terra-017,2017,74,6.85946,5.54225, +10896,244428,Highlander: The Board Game,2018,148,6.20070,5.54225, +10897,606,Pico 2,1997,333,5.83486,5.54224,"606, 2051" +10898,227813,Doctor Who: Exterminate! The Miniatures Game,2017,61,7.13934,5.54223, +10899,328732,DELVE: A Solo Game of Digging Too Deep,2020,48,7.57187,5.54223,"328732, 329844, 379837" +10900,25299,New York Central,2006,93,6.58978,5.54223, +10901,267832,Blanc-Manger Coco 2: Le déluge,2017,689,5.68362,5.54223,"193328, 200727, 216706, 216707, 267185, 267832, 268411, 269610, 269612, 328148, 331948, 353473, 353474, 353475, 411221, 422104" +10902,420214,Arctic,2024,148,6.20047,5.54223, +10903,36789,Anno Domini: Showbizz,2008,85,6.68824,5.54223, +10904,7253,A Raging Storm,1997,78,6.79103,5.54223, +10905,250333,Build A Cure,2018,52,7.41462,5.54221, +10906,10140,The Scrambled States of America: Deluxe Edition,2002,307,5.85934,5.54221, +10907,394897,Horror on the Orient Express: The Board Game,2025,46,7.65870,5.54221, +10908,257960,Götterdämmerung,2018,93,6.58833,5.54218, +10909,282332,Waterloo: Napoleon's Last Battle,2019,50,7.48800,5.54218, +10910,403601,Winter Court,2024,66,7.01591,5.54217, +10911,4178,Kaliko,1968,98,6.53459,5.54216, +10912,163040,Det dårlige selskab,2014,144,6.21736,5.54215, +10913,130042,In Country: Vietnam 1965-1975,2013,61,7.13607,5.54215, +10914,124248,Tóncc,2012,40,7.97250,5.54214, +10915,129311,Khyber Rifles: Britannia in Afghanistan,2012,83,6.71325,5.54214, +10916,378646,"Winter's Victory: The Battle of Preussisch-Eylau, 7-8 February 1807",2024,31,8.67742,5.54213, +10916,396381,Etherium,2024,31,8.67742,5.54213, +10918,11889,End of the Iron Dream,1985,67,6.99254,5.54213, +10919,12040,Omega Chess,1992,48,7.56646,5.54212, +10920,163601,Drizzit: il gioco di carte,2014,110,6.42528,5.54211, +10921,176631,Stratos,2014,78,6.78718,5.54210,"176631, 220697" +10922,232437,Schollen Rollen,2017,201,6.02488,5.54207, +10923,381748,Lands of the Mesozoic,2024,55,7.30618,5.54206, +10924,192203,Millions: The Last Soldier,2015,100,6.51228,5.54206, +10925,365103,Voll auf die 18,2022,108,6.44028,5.54205, +10926,330560,Bunte Blätter,2021,116,6.37819,5.54205, +10927,99969,Great War Salvo!: Solitaire Tactical World War I Naval Game,2011,74,6.85270,5.54204,"30080, 30081, 33369, 39894, 43558, 99969, 133975, 192579, 282868, 282869, 282870, 297432, 297434, 299790, 315163" +10928,19651,Angkor,2005,215,5.99312,5.54204, +10929,68187,Gettysburg: The Wheatfield,2011,54,7.33796,5.54204,"68187, 425799" +10930,243297,Centrix,2018,53,7.37170,5.54204, +10931,9041,Dark Eden,1997,77,6.80130,5.54203, +10932,282494,Ten Suns,2020,74,6.85216,5.54203, +10933,226354,Słowny Ninja,2017,111,6.41532,5.54202, +10934,72340,A Bridge Too Far: Operation Market Garden,2010,66,7.01061,5.54202, +10935,314542,Escape Room in a Box: The Walking Dead,2020,52,7.40577,5.54201, +10936,227527,Take The Galaxy,2018,68,6.96713,5.54201, +10937,172885,Blindes Huhn (Second Edition),2015,159,6.15126,5.54199,"28817, 172885" +10938,288274,Tori-Tori: Endangered Species,2021,54,7.33537,5.54198, +10939,23378,Cold War Battles: Budapest '56 & Angola '87,2006,77,6.79961,5.54198, +10940,229241,Capital City,2017,153,6.17484,5.54198, +10941,218,High-Bid,1963,286,5.88052,5.54197, +10942,647,Mystick Domination,2000,112,6.40625,5.54196,"647, 3772" +10943,231181,Badass Force: Édition VHS,2023,56,7.27028,5.54196,"231181, 378371" +10944,197635,The War of Jenkins' Ear,2017,60,7.15500,5.54196, +10945,299857,Atlantic Wolves,2020,77,6.79883,5.54195,"12202, 299857" +10946,227254,Hafid's Grand Bazaar,2017,84,6.69345,5.54193, +10947,286534,The Quick and the Undead,2020,86,6.66663,5.54193, +10948,375923,Tanuki,2024,62,7.10161,5.54192, +10949,42881,Trenches of Valor: Raids Across No Man's Land 1918,2009,110,6.42091,5.54192, +10950,16793,Second World War at Sea: Leyte Gulf,2005,60,7.15333,5.54191, +10951,23848,Hameln,2006,323,5.84112,5.54190, +10952,88246,Punic Island: Campaign Commander Volume III,2011,60,7.15250,5.54189, +10953,178,Mole Hill,1997,220,5.98091,5.54187, +10954,386860,Dino Tricks,,39,8.01833,5.54187, +10955,245401,The Veil,2018,48,7.55313,5.54185, +10956,181244,Amphipolis,2015,155,6.16441,5.54183, +10957,114871,For The Win,2012,505,5.73271,5.54180, +10958,235513,¡MÍA!,2018,94,6.56745,5.54179, +10959,18817,General de Brigade: Wargaming the Age of Napoleon at Brigade Level,1998,50,7.47000,5.54179,"18817, 23082, 30566, 35827, 39397" +10960,136089,Just in Time,2013,90,6.61267,5.54178, +10961,277109,Sencha,2019,107,6.44245,5.54178, +10962,107917,A Call to Arms: Star Fleet,2011,63,7.07079,5.54176, +10963,140613,Gear & Piston,2013,550,5.71688,5.54175, +10964,348708,Dinosaur Exhibit,2022,59,7.17424,5.54175, +10965,300023,Die verlassene Bibliothek,2020,188,6.05404,5.54175, +10966,258049,District 9: The Boardgame,2021,72,6.87917,5.54174, +10967,50862,Caligula,2009,241,5.94120,5.54173, +10968,400566,Blades & Rose,2023,52,7.39308,5.54173, +10969,164686,Epic Monster Tea Party,2014,66,7.00000,5.54172, +10970,381993,Llamagedón: 2da edición,2022,62,7.09398,5.54172,"244004, 381993" +10971,127028,Tricks and Treats,2012,188,6.05349,5.54171, +10972,8758,Red Sun Rising: The Russo-Japanese War 1904-05,1977,68,6.95588,5.54169, +10973,13645,O'Connor's Offensive,1985,83,6.70000,5.54168, +10974,286549,Caty Mini,2019,95,6.55368,5.54168, +10975,298607,Crime Story: Vienna,2020,84,6.68611,5.54167, +10976,160434,Robin,2014,322,5.84001,5.54165, +10977,11730,Diam,2003,158,6.14930,5.54162, +10978,376587,Sapporo 1876,2022,55,7.28727,5.54162,"376587, 406888" +10979,1781,The Warlord Game,1977,67,6.97313,5.54158, +10980,8537,Destroyer Captain,1979,48,7.53958,5.54157, +10981,171500,El Dorado Canyon,2015,30,8.73600,5.54154, +10982,10102,"Ignorant Armies: The Iran-Iraq War, 1980-88",2003,84,6.68214,5.54153, +10983,251253,Heroes & Treasure,2018,41,7.87805,5.54153, +10984,64735,Splut!,2009,86,6.65523,5.54152, +10985,10470,March to Victory: West Front 1914-1916,1997,60,7.13750,5.54151, +10986,365593,Old Town Road,2021,47,7.57872,5.54151, +10987,36599,Level Up,2008,629,5.69371,5.54150,"36599, 212873, 217015, 234371, 382926" +10988,242328,Kontour,2018,121,6.33264,5.54150, +10989,194301,Riftwalker: A Storm Hollow Card Game,2016,105,6.45267,5.54148, +10990,17821,Connection Games,2005,32,8.53125,5.54147, +10991,358016,Not So Neighborly,2022,78,6.76795,5.54147, +10992,27624,Pictionary: 15th Anniversary,2000,161,6.13540,5.54145, +10993,262626,Gnomes at Midnight,2019,53,7.34566,5.54145, +10994,230548,El Ministerio del Tiempo,2017,67,6.96866,5.54145, +10995,152174,Pressure Cooker,2014,148,6.18750,5.54145, +10996,525,Pisa,1999,129,6.28256,5.54144, +10997,236884,Forest of the Impaled: Vlad Dracula's Final Stand,2018,41,7.87317,5.54144, +10998,327509,Dinn,2020,34,8.35294,5.54144, +10999,131933,KerFlip!,2012,113,6.38717,5.54143, +11000,292707,Fjordar,2026,35,8.27143,5.54142, +11001,213491,The Legend of the Wendigo,2017,253,5.91887,5.54140, +11002,324190,The Pyramid of Khufu,2020,39,7.98974,5.54139, +11003,1815,Spanish Main,1984,101,6.48663,5.54139, +11004,376029,Panchayat,2023,37,8.12162,5.54139, +11005,274557,Linkto Travel,2018,154,6.16131,5.54139, +11006,282229,Turris,2021,60,7.13250,5.54139, +11007,287110,NICE TRY: The Challenge Party Game,2019,61,7.10631,5.54138, +11008,11293,Algeria: The War of Independence 1954-1962,2000,74,6.83108,5.54137, +11009,9093,1777: The Year of the Hangman,2002,84,6.67738,5.54137, +11010,323,Anno 1452,1999,193,6.03575,5.54136, +11011,292350,Hey Robot,2019,51,7.41176,5.54135, +11012,35654,Savage Worlds Showdown: Miniatures Rules for All Genres,2004,39,7.98718,5.54135, +11013,309250,Empyrean Hero: The Card Game,2021,49,7.48776,5.54134, +11014,249658,Burger Party,2018,201,6.01584,5.54134,"60158, 249658" +11015,177641,Tinker Tailor,2015,104,6.45817,5.54134, +11016,217538,Docteur Pilule,2016,77,6.77951,5.54133, +11017,88006,Patton's First Victory: Tunisia,2011,68,6.94338,5.54133, +11018,118688,Sleepers,2012,43,7.75814,5.54132, +11019,131788,Game Over,2012,218,5.97858,5.54132, +11020,284646,Camouflage,2023,41,7.86585,5.54132, +11021,73655,Expedition Sumatra,2010,148,6.18514,5.54131, +11022,182214,Gremlins Inc,2015,120,6.33505,5.54129, +11023,312541,Recipe for Disaster,2020,33,8.42727,5.54129, +11024,15275,Prelude to Disaster: The Soviet Spring Offensive,1992,65,7.00615,5.54128, +11025,379158,Noobs über Bord,2023,76,6.79408,5.54128, +11026,383172,Nightshift,2025,104,6.45673,5.54127, +11027,9685,Bounce It-In Game,1984,136,6.24125,5.54127, +11028,158589,18Africa,2014,62,7.07661,5.54127, +11029,93563,Whitewater,2012,253,5.91735,5.54125, +11030,209090,Dragon Dodge,2017,51,7.40667,5.54124, +11031,352293,Panorama,2021,120,6.33392,5.54124, +11032,151936,Paul Koenig's The Bulge: 6th Panzer Army,2013,63,7.05079,5.54123,"151936, 352453" +11033,7779,Heart of Oak: Naval Miniatures Rules for the Age of Fighting Sail,1978,51,7.40588,5.54123, +11034,4276,Across the Potomac,1994,112,6.39018,5.54122, +11035,399277,Obscurians,2024,42,7.80476,5.54121, +11036,252197,One Week Ultimate Werewolf,2018,386,5.78739,5.54120, +11037,180421,Flapjack Flipout,2020,54,7.30093,5.54119, +11038,371449,The Key: Escape from Strongwall Prison,2022,51,7.40392,5.54118, +11039,4294,The Thin Red Line: A Game of the Battle of Waterloo,1979,85,6.65882,5.54118, +11040,406454,En Route,2024,42,7.80238,5.54117,"406454, 418683" +11041,245025,Paradise Lost,2020,88,6.62034,5.54117, +11042,351651,Retrograde,2023,84,6.67143,5.54116, +11043,340879,44 BCE,2024,31,8.60323,5.54115, +11044,57139,Infection Express,2009,148,6.18243,5.54114,"57139, 269279" +11045,2812,Platoon,1986,253,5.91609,5.54112, +11046,36616,Qyshinsu: Mystery of the Way,2008,84,6.67024,5.54112, +11047,339686,IQ Files: Escape Room – Amnesia,2021,65,7.00000,5.54111, +11048,304679,Ctrl,2020,443,5.75516,5.54111, +11049,192637,Blood on the Ohio: Washington's Indian War 1789-1794,2018,48,7.51667,5.54111, +11050,7377,Tri-Ba-Lance,1995,107,6.42710,5.54110, +11051,340118,Movie Mind,2021,94,6.54947,5.54109, +11052,276922,Dark Ages: II Edition – Britannia & France,2019,42,7.79762,5.54109,"225083, 276922" +11053,151224,Veletas,2013,110,6.40255,5.54108, +11054,204802,El Soneto,2016,84,6.66893,5.54107, +11055,3860,Wordsearch,1988,79,6.74019,5.54107, +11056,322499,Red Dust Rebellion,2024,44,7.69318,5.54105, +11057,252323,The Incredibles: Save the Day Game,2018,85,6.65482,5.54104, +11058,281310,Waters Edge,2019,55,7.26145,5.54102,"281310, 391943" +11059,209644,The Pacific War: From Pearl Harbor to the Philippines,2016,56,7.23036,5.54101,"160423, 164747, 209644" +11060,244909,Bermuda Pirates,2019,133,6.25218,5.54100, +11061,241068,Cysmic,2025,30,8.69333,5.54100, +11062,257722,Taiwan Formosa,2018,83,6.68012,5.54099, +11063,645,Bosworth,1998,377,5.79175,5.54098, +11064,132601,Bellum Gallicum II,2012,65,6.99538,5.54098,"27347, 132601" +11065,184928,やさしい魔物と酒場の英雄 (Friendly Monsters and Tavern Heroes),2015,46,7.59565,5.54097, +11066,5822,"Brute Force: The War in the West, 1940-1945",2003,78,6.75256,5.54097, +11067,12451,Pro Action Football,1994,139,6.22079,5.54096, +11068,193792,Arcole 1796,2016,49,7.46939,5.54096, +11069,209225,Vikingjarl,2020,62,7.06452,5.54095, +11070,181476,Nuts about Mutts,2015,138,6.22538,5.54095, +11071,282390,Tattoo Brawl,2019,65,6.99398,5.54094, +11072,210414,Magic: The Gathering – Duel Decks: Nissa vs. Ob Nixilis,2016,59,7.14153,5.54094, +11073,206464,The Grunwald Swords,2016,58,7.16897,5.54093, +11074,1146,Shadowlord!,1983,433,5.75892,5.54092, +11075,238510,Farkle,,194,6.02742,5.54092, +11076,402205,Sixto,2023,109,6.40679,5.54091, +11077,189166,Bill & Ted's Excellent Boardgame,2016,205,6.00122,5.54091, +11078,235865,Skogen,2017,99,6.49394,5.54090,"235865, 328033" +11079,319969,KUR-NU-GI,2022,53,7.32057,5.54089, +11080,67891,Hungarian Nightmare,2011,61,7.08689,5.54088, +11081,272522,Fuzzy Mage Fight,2019,97,6.51285,5.54087, +11082,8354,Velikye Luki,2000,50,7.42600,5.54086, +11083,387817,Recreo Arcano,2023,43,7.73256,5.54085, +11083,355208,Q-less,2018,43,7.73256,5.54085, +11085,292189,Scott Pilgrim Miniatures The World,2021,56,7.22341,5.54085, +11086,301541,Latte Throwdown,2020,71,6.86761,5.54084, +11087,132532,"Here, Fishy, Fishy!",2012,265,5.89623,5.54083, +11088,201307,Menu Masters,2016,188,6.04140,5.54080, +11089,312744,Titanic,2020,178,6.06939,5.54079, +11090,412997,Isle of Night,2024,92,6.56334,5.54078, +11091,154645,Start Frei,2014,67,6.94478,5.54078, +11092,144412,Power Play: Schemes & Skulduggery,2014,134,6.24269,5.54077,"25969, 31494, 98978, 111685, 120655, 144412, 144875, 149949, 152428, 170803, 170804, 190289, 190290" +11093,16369,Das Kleine Gespenst,2005,190,6.03579,5.54077, +11094,136813,Midgard: The Card Game,2013,61,7.08262,5.54077, +11095,221982,Animagicians,2017,56,7.21964,5.54076, +11096,416552,Stalk Exchange,2024,77,6.76169,5.54075, +11097,235249,Alchemistry,2017,69,6.90290,5.54074, +11098,1991,Ace of Aces: Jet Eagles,1990,122,6.31113,5.54074, +11099,229406,Colorku,2003,67,6.94328,5.54074, +11100,342547,Mystery Games: Der verfluchte Geburtstag,2021,70,6.88314,5.54074, +11101,391086,Everything Ever,2023,138,6.22150,5.54073, +11102,27042,Veritas,2013,88,6.60830,5.54073, +11103,375573,Manhattan Project: War Machine,2024,83,6.67229,5.54071, +11104,69316,IRONDIE,2010,116,6.35034,5.54071, +11105,235695,Frontier: The Card Game,2017,39,7.94872,5.54071, +11106,144416,Manno Monster,2013,118,6.33644,5.54070, +11107,18699,EinStein würfelt nicht!,2004,86,6.63244,5.54070, +11108,358050,Sleeping Queens 2: The Rescue,2022,131,6.25725,5.54069, +11109,10889,Akron,2002,57,7.18737,5.54069, +11110,40962,Mirror Mansion,2009,217,5.97323,5.54069, +11111,200957,NecronomiCORP,2016,88,6.60682,5.54067, +11112,65061,Sa Battalla,2010,44,7.67273,5.54067, +11113,263133,V-Virus,2018,41,7.82829,5.54066, +11114,336031,Space Kraken,2023,42,7.77381,5.54066, +11115,243599,Black Hole Council,2018,114,6.36289,5.54064, +11116,237927,Alakazoo,2018,65,6.98246,5.54063, +11117,8671,Terra,2003,525,5.71914,5.54063, +11118,415090,Rainbow,2024,98,6.49640,5.54061,"73574, 415090" +11119,127883,Colonies,2012,64,7.00391,5.54060, +11120,191032,Invasion 1066: Stamford Bridge,2016,49,7.45184,5.54060,"12978, 191032" +11121,38355,Scene It? Star Trek,2009,254,5.90929,5.54060, +11122,125854,Mars Needs Mechanics,2013,394,5.77822,5.54059, +11123,177566,Parkies,2015,56,7.21250,5.54059, +11124,27884,Halo ActionClix,2007,155,6.14452,5.54058, +11125,400835,echoes: Draculas Erbe,2023,66,6.95833,5.54056, +11126,425,Thunder's Edge,1999,153,6.15212,5.54056, +11127,4842,Monster Derby,1994,147,6.17698,5.54056, +11128,41585,FlipOut,2009,197,6.01538,5.54055, +11129,163908,This House Is Haunted,2014,48,7.48875,5.54054, +11130,173374,Neuschwabenland,2015,46,7.57326,5.54053, +11131,25617,Korona,,145,6.18517,5.54052, +11132,145675,SecuenzooS,2013,85,6.64012,5.54052, +11133,10995,Reinforce the Right!,1996,70,6.87571,5.54052, +11134,4328,Tony & Tino,2002,270,5.88667,5.54052, +11135,177209,"Pizza, Spaghetti e Mandolino",2015,58,7.15103,5.54049, +11136,267036,Core Connection: Rise of Atlantis,2020,84,6.65238,5.54049, +11137,33225,Clue: The Twilight Zone – Tower of Terror,2007,103,6.44689,5.54047, +11138,1288,Jitters,1986,166,6.10241,5.54044, +11139,82702,Funfair,2010,285,5.86764,5.54043, +11140,728,The Sun Never Sets: Three Campaigns of the British Empire,1997,56,7.20536,5.54042, +11141,2510,Playboss,1969,129,6.26318,5.54042, +11142,5418,Victory by Any Means: Campaign Guide,2004,44,7.65909,5.54041,"5418, 180547" +11143,66643,Uncle Chestnut's Table Gype,2010,185,6.04427,5.54041, +11144,255640,Vikings: Scourge of the North,2018,109,6.39495,5.54038, +11145,18311,Battlefront: WWII,2002,56,7.20357,5.54038, +11146,7203,Ophidian 2350 CCG,2003,105,6.42714,5.54036,"7203, 191619, 202574, 202585, 372963" +11147,9908,Les Pyramides 1798,1998,64,6.99469,5.54035, +11148,238636,Escape Team,2017,49,7.43878,5.54033, +11148,415845,Grimcoven,2025,49,7.43878,5.54033, +11148,333256,1914: Fureur à l'Est,2021,49,7.43878,5.54033, +11151,7336,Trivial Pursuit: The Lord of the Rings Movie Trilogy Collector's Edition,2003,890,5.64484,5.54032, +11152,35305,Kahmaté,2008,117,6.33513,5.54031, +11153,235470,Os Incríveis Parques de Miss Liz,2018,55,7.23091,5.54031, +11154,249817,The Bark Side,2018,84,6.64702,5.54030,"198699, 249817" +11155,3241,Jack The Ripper,1983,68,6.90735,5.54030, +11156,143509,Bluff in Zoo,2013,193,6.02181,5.54029,"143509, 177437" +11157,82863,Gruntz 15mm Sci-Fi,2010,39,7.92308,5.54028, +11158,364385,Alarún,2022,57,7.17018,5.54027, +11158,36604,Basic Impetus,2006,57,7.17018,5.54027,"36604, 40973, 229712" +11160,5993,The Tigers Are Burning,1988,107,6.40841,5.54027, +11161,16674,Advanced Tobruk System Basic Game 1a: Screaming Eagles,2005,67,6.92612,5.54025, +11162,205439,Flink,2016,41,7.80488,5.54025, +11163,3404,The Legend of Landlock,1995,447,5.74793,5.54024,"3404, 128214" +11164,145578,CLUE: The Big Bang Theory,2013,323,5.82766,5.54024, +11165,336753,Fossil Canyon,2022,50,7.39680,5.54024, +11166,198886,Warage: Extended Edition,2017,104,6.43269,5.54024,"150659, 198886" +11167,170043,7: The Defense of Lwów,2015,81,6.68568,5.54022, +11168,279931,Animalchemists,2019,69,6.88478,5.54022, +11169,197865,Ravingspire,2016,158,6.12738,5.54022, +11170,184917,Dicey Goblins,2016,248,5.91427,5.54021, +11171,231644,Matterhorn,2017,155,6.13871,5.54021, +11172,191292,Mafia the Party Game,2014,67,6.92408,5.54019, +11173,5186,King Arthur and the Knights of the Round Table,1986,149,6.16242,5.54019, +11174,2047,Up the Creek,1975,478,5.73407,5.54018,"2047, 2048" +11175,190115,King of New Tokyo,2015,43,7.69535,5.54017, +11176,292364,Here be Dragons: Into the Unknown,2020,58,7.13793,5.54017, +11177,392452,Heroes of the Sanctum: The Strategy Card Game,2024,34,8.26471,5.54016, +11178,41032,Galaxy's Edge,2009,179,6.05754,5.54015, +11179,319600,Die Seher von Santiiba,2020,69,6.88203,5.54014, +11180,296498,10 Dice,2020,101,6.45663,5.54013, +11181,325830,Don't Talk to Strangers,2021,141,6.19641,5.54012, +11182,238915,Dragoon: Heads Will Roll,2018,80,6.69625,5.54010,"238915, 334266" +11183,118561,Sequence,,85,6.62824,5.54010, +11184,172325,Epoch: Early Inventors,2018,115,6.34429,5.54009, +11185,2734,Hossa!,2000,88,6.59091,5.54009,"2734, 224610, 228075" +11186,136279,Qwords,2013,117,6.33017,5.54007, +11187,156722,Reglamentacja: Gra na Kartki,2014,109,6.38807,5.54007, +11188,137173,Cairo Corridor,2013,67,6.91940,5.54006, +11189,39020,Professor Pünschge,2008,157,6.12841,5.54004, +11190,305772,Immune,2021,64,6.98281,5.54003, +11191,3054,Sideshow: The Campaign for German East Africa 1914-1918,1990,126,6.27262,5.54002, +11192,5276,Verdun: The Game of Attrition,1972,70,6.85857,5.54001,"5276, 19297" +11193,235467,"Boom, Bang, Gold",2017,175,6.06743,5.54001, +11194,186961,Pulp City: Supreme Edition,2015,35,8.17600,5.54000,"35684, 186961" +11195,417155,Kyoto no Neko,2024,84,6.63790,5.53998, +11196,251198,Lost Ones,2022,117,6.32821,5.53998, +11197,179560,Wo ist bitte Umtata?,2015,116,6.33494,5.53998, +11198,133,Frischfleisch,1999,156,6.13096,5.53997, +11199,8079,MLB SportsClix,2004,143,6.18462,5.53996, +11200,8140,Global Powers,2003,88,6.58750,5.53996, +11201,307929,"Risk: Warhammer 40,000",2020,58,7.12931,5.53996, +11202,373793,Mary Shelley's Dream,2022,33,8.33333,5.53996, +11203,6405,Four Battles of the Ancient World,1992,142,6.18908,5.53996, +11204,165044,EverZone: Strategic Battles in the Universe,2014,85,6.62424,5.53995,"165044, 212685" +11205,19329,Race Day,2005,179,6.05463,5.53994, +11206,5223,Champs de Bataille II: La bataille de Kadesh,1997,62,7.02581,5.53994,"5223, 9863, 354675" +11207,7228,Victory at Waterloo,1982,66,6.93485,5.53991, +11208,19904,4th Street Pro Football,2000,45,7.58444,5.53988, +11209,319921,Elf: Journey from the North Pole,2020,155,6.13342,5.53988, +11210,372439,Dinosaur Gauge,2022,53,7.27547,5.53988, +11211,245223,1883: Building Railroads in Northern Italy,2019,64,6.97656,5.53986, +11212,241,Age of Exploration,1994,192,6.01875,5.53986, +11213,257924,Globe Twister,2018,132,6.23636,5.53986,"257924, 350566, 350567" +11214,366267,The Real Truth,2022,77,6.73377,5.53985, +11215,286210,"Campaigns of Montrose: A Year of Living Dangerously, 1644-1645",2019,47,7.49574,5.53985, +11215,13212,Deluxe G.E.V.,2001,47,7.49574,5.53985, +11217,1246,Insecta,1992,139,6.20108,5.53984,"1246, 256515, 431000" +11218,218453,Pablo,2017,107,6.39860,5.53983, +11219,12263,Spycraft: Collectible Card Game,2004,178,6.05589,5.53982, +11220,8101,Team Yankee,1987,150,6.15200,5.53981, +11221,244305,Coral Islands,2019,170,6.07994,5.53981, +11222,421208,Wrath of Fire Mountain,2024,60,7.07000,5.53980, +11223,180674,Cover Me,2017,108,6.38981,5.53980, +11224,247135,The Villagers,2018,48,7.45208,5.53979, +11225,256334,Dungeon WC,2019,119,6.31109,5.53979, +11226,218459,Think 'n Sync: The Great Minds Think Alike Game,2017,155,6.13135,5.53975,"66277, 218459" +11227,402668,Donde las papas queman,2022,59,7.09266,5.53972,"402668, 432248" +11228,118732,Titans of Industry,2013,99,6.46515,5.53972, +11229,309341,5x15,2020,62,7.01694,5.53970, +11230,196122,Fish Frenzy,2016,170,6.07800,5.53967, +11231,313454,Dungeons & Drinks,2020,105,6.41057,5.53964, +11232,353957,Fujiyama,2021,57,7.14386,5.53964, +11233,128352,Chaos & Alchemy,2012,186,6.03118,5.53963, +11234,130400,TF22: LOAD!,2012,77,6.72623,5.53961,"130400, 146747" +11235,361469,Bretwalda,2025,62,7.01323,5.53961, +11236,349767,Aban!,2022,48,7.44250,5.53960, +11237,346800,Forsaken,2025,42,7.71429,5.53959, +11238,300725,Ripple Rush,2020,135,6.21578,5.53957, +11239,192496,Clash of the Cards,2016,93,6.52108,5.53957, +11240,271522,L'Auberge des pirates,2018,92,6.53174,5.53957, +11241,2127,Overpower,1995,499,5.72246,5.53956, +11242,2095,Waldmeister,1994,127,6.25787,5.53955, +11243,9916,Arnhem 1944,1997,83,6.63735,5.53950, +11244,1697,Hundred Days Battles,1979,217,5.95931,5.53949, +11245,322204,Word Capture,2021,104,6.41538,5.53949,"322204, 351486" +11246,10890,Behind,2003,61,7.03279,5.53949, +11247,3471,Le Mans,1961,96,6.48824,5.53948,"3471, 10700" +11248,63823,Salerno: The 1943 Allied Invasion of Italy,2015,69,6.85942,5.53948, +11249,147920,Das Labyrinth des Pharao,2013,87,6.58621,5.53948, +11250,425934,Dragon Ball: Deckbuilding Game,2023,31,8.47677,5.53947, +11251,7243,8th Army,1982,62,7.00806,5.53947, +11252,2666,A Mighty Fortress,1977,123,6.27967,5.53947, +11253,283848,Control V,2019,65,6.94000,5.53946, +11254,6721,Victory in Vietnam,1999,50,7.36000,5.53946, +11255,376485,Clue: Robbery at the Museum,2022,63,6.98413,5.53945, +11256,155406,Football Stars: Jogo de Cartas Ilustradas,2013,43,7.65581,5.53945, +11257,216740,Czas Zaorać Socjalizm,2016,76,6.73684,5.53945, +11258,311020,Marvel Battleworld,2020,137,6.20365,5.53945,"311020, 311022, 311167, 359937, 359938" +11259,120580,Battleship: Card Game,2011,621,5.68593,5.53944,"120580, 165283" +11260,125061,Super Tooth,2014,167,6.08413,5.53943, +11261,148424,30 Carats,2013,185,6.03105,5.53943, +11262,9473,Adam & Eva,2004,189,6.02063,5.53943, +11263,104063,Let's Take a Hike,2011,247,5.90762,5.53943, +11264,363039,13 Words,2022,205,5.98302,5.53942, +11265,262479,Pucket,2011,119,6.30336,5.53941, +11266,4084,The Alamo,1981,141,6.18411,5.53941, +11267,364049,Encounters: Shattered Wastes,2023,44,7.60500,5.53940, +11268,76352,Bid Euchre,,54,7.22222,5.53939, +11269,160592,Oklahoma Boomers,2014,95,6.49589,5.53939,"58519, 160592" +11270,181889,Midnight Legion: Operation Deep Sleep,2016,51,7.32098,5.53939,"181889, 222338, 260630" +11271,68947,Arvuutin,2010,85,6.60824,5.53938,"68947, 129694" +11272,38836,"""Tarleton's Quarter!""",2010,68,6.87500,5.53937,"38836, 250707" +11273,3472,Plagio,1999,90,6.54844,5.53937, +11274,258457,Anno Domini: Kuriositäten,2018,81,6.66012,5.53935, +11275,223322,Clash of Steel: A Tactical Card Game of Medieval Duels,2017,120,6.29583,5.53935, +11276,343699,TrollFest,2022,44,7.60227,5.53935, +11277,155257,Captain's Sea,2021,47,7.47021,5.53934, +11278,354768,The Dark Quarter,2025,50,7.35307,5.53931, +11279,18422,Citadel,2002,64,6.95625,5.53931, +11280,157973,Born to Serve,2019,48,7.42806,5.53930, +11281,285902,Riot Quest: Single-Player Starter Set,2019,45,7.55333,5.53929,"285902, 313893, 358082" +11282,66809,Flying Lead,2010,49,7.38776,5.53926, +11283,39290,Jacynth,2008,86,6.59244,5.53926, +11284,10564,Mississippi Fortress,1990,85,6.60471,5.53926, +11285,324517,Zodiac War,2022,57,7.12807,5.53926, +11286,57691,800 Heroes: Defense of Sihang Warehouse,2009,69,6.85072,5.53923, +11287,35665,Eye Know,2007,185,6.02838,5.53923,"35665, 191720" +11288,267986,We Need to Talk,2019,77,6.71429,5.53922, +11289,7838,Emmerlaüs Duel of Mages,1996,140,6.18543,5.53922, +11290,2809,Star Force Terra #1: Contact!,1991,122,6.28033,5.53920, +11291,16456,Canope 1801,2001,49,7.38265,5.53916, +11292,317613,Divočina,2020,56,7.15179,5.53915, +11293,5929,Clash of Empires: The Battle for France 1914,1986,69,6.84783,5.53914, +11294,42257,Battle Spirits: Trading Card Game,2009,88,6.56523,5.53914,"42257, 411934" +11295,364622,Mine Your Business,2023,52,7.27500,5.53913, +11296,88316,Autokrator,2012,137,6.19781,5.53912, +11297,298539,Dungeon Ball,2021,59,7.06836,5.53911, +11298,428,Galopp Royal,1995,245,5.90735,5.53911, +11299,213301,Murder at Blood Mansion,2017,73,6.77493,5.53911, +11300,24923,Margo,2006,45,7.54333,5.53910,"24923, 95778" +11301,304949,アナフラ騎士SHOCK! (Knights With Poison),2020,57,7.12105,5.53909, +11302,103039,Beyond Waterloo,2012,51,7.30706,5.53909, +11303,331126,Scrap Racer,2021,115,6.32313,5.53909, +11304,865,Landslide,1971,502,5.71869,5.53908,"865, 1436" +11305,890,Real Action Stockcar Championship,1998,63,6.96984,5.53908, +11306,313876,The Landing: Gallipoli 1915,2020,57,7.12018,5.53907,"296009, 310766, 313876" +11307,120814,Off Your Rocker,2012,161,6.09876,5.53906, +11308,157395,Aetherium,2014,37,7.97405,5.53906, +11309,202723,The Bogey,2016,83,6.62410,5.53904, +11310,211852,ROBOT RISE!,2018,51,7.30392,5.53902, +11311,253318,London & Northwestern,2018,69,6.84348,5.53902, +11312,8522,Ninja Burger,2003,1311,5.60765,5.53901, +11313,8352,Turning the Tables,1998,61,7.01410,5.53901, +11314,143674,Give Me Five,2013,97,6.46660,5.53901, +11315,183716,Capitán Flint,2015,75,6.73813,5.53899, +11316,74312,"The Rhineland War, 1936-37",2011,48,7.41250,5.53898, +11317,394507,Wave,2023,88,6.56080,5.53898, +11318,20595,The Campaigns of King David: The Biblical Struggle for the Near East,2007,96,6.47552,5.53898, +11319,164059,Saga: The Crescent and The Cross,2014,36,8.03611,5.53897, +11320,295587,フォグサイト (FOGSITE),2019,71,6.80507,5.53897, +11321,399375,For One: Schwarze Rosen,2023,67,6.88010,5.53895, +11322,31605,Drive on Kursk: July 1943,2008,73,6.76986,5.53895, +11323,407233,Tenby,2024,30,8.53333,5.53894, +11324,3035,The Last Days of the Grande Armee: The Four Days of Waterloo,1998,94,6.49436,5.53893, +11325,27071,Sardines,2008,149,6.14168,5.53893, +11326,148074,Masquerade,2013,118,6.30000,5.53893, +11327,7538,Fish Eat Fish,2003,775,5.65480,5.53893,"7538, 13128" +11328,280729,Les Guerres du Roi Soleil 1667-1713,2019,44,7.57955,5.53892,"280729, 408386" +11329,298477,Tellstones: King's Gambit,2020,527,5.70922,5.53891, +11330,273092,Crumbs,2020,94,6.49362,5.53890, +11331,6885,Rebels & Redcoats: Volume I,1995,88,6.55852,5.53890,"6885, 17644, 19304, 291588" +11332,10946,The American Civil War,1974,163,6.08926,5.53889,"10946, 285213" +11333,139728,MCS,2013,64,6.94047,5.53889, +11334,9794,Rummoli,1940,291,5.84704,5.53888, +11335,326269,Die Händler vom Taubertal,2020,47,7.44681,5.53887, +11336,401779,Port Royal: The Dice Game,2023,99,6.44460,5.53887, +11337,340348,Hot & Cold,2021,64,6.93984,5.53887, +11338,7934,Imperial Governor & Strategos,1979,68,6.85735,5.53887, +11339,309208,Doudou,2020,62,6.98484,5.53886, +11340,127648,Black Stories: Sex and Crime Edition,2012,237,5.91709,5.53886, +11341,803,Dragonhunt,1982,272,5.86842,5.53886, +11342,381105,They Live: The Card Game – Save The City/Enslave The City,2023,48,7.40625,5.53886, +11343,126076,Sheepdogs of Pendleton Hill,2012,173,6.05671,5.53884, +11344,134834,Voldétour,2012,57,7.11053,5.53884, +11345,266529,Metal Gear Solid: The Board Game,2024,37,7.95946,5.53883, +11346,235427,Tanto Cuore: Doki Doki Beach Volleyball,2018,113,6.33097,5.53881, +11347,155414,Angola: Cold War Struggle in Africa,2014,46,7.48478,5.53881, +11348,8703,"The Ardennes Offensive: The Battle of the Bulge, December 1944",1973,94,6.49096,5.53880, +11349,336495,The Murder at Cthulhu Manor,2019,54,7.19593,5.53879, +11350,350760,Unlock!: The Ghost Stone,2021,110,6.35227,5.53879, +11351,213631,"To Unlimited, and Beyond",2014,104,6.39904,5.53878, +11352,10267,Africa Orientale,1989,108,6.36713,5.53878, +11353,2480,Tribes,1998,92,6.51109,5.53878, +11354,12065,Wig Out!,2004,209,5.96665,5.53877, +11355,173003,Brix,2016,184,6.02467,5.53876, +11356,340123,Derby,2021,52,7.25808,5.53876, +11357,2296,Bermuda Triangle,1975,897,5.63839,5.53875, +11358,29380,"Saipan & Tinian: Island War Series, Volume I",2010,40,7.77250,5.53873, +11359,260733,The Final Flicktier,2019,65,6.91308,5.53873, +11360,5382,Oil War: American Intervention in the Persian Gulf,1975,233,5.92210,5.53872,"5382, 116735" +11361,381826,Pick a Pen: Reefs,2023,103,6.40583,5.53872, +11362,8056,"Operation Shoestring: The Guadalcanal Campaign, 1942",1990,118,6.29534,5.53870, +11363,282055,Ambrosia,2019,78,6.68269,5.53868, +11364,359587,Shapers of Gaia,2022,57,7.10388,5.53868, +11365,1598,Olympica,1978,119,6.28824,5.53867, +11366,249730,Fast Shot,2018,88,6.55227,5.53867, +11367,4172,Veracruz: U.S. Invasion of Mexico 1847,1977,173,6.05405,5.53865, +11368,245750,Sonic the Hedgehog: Battle Racers,2018,76,6.71184,5.53865, +11369,27948,Beppo der Bock,2007,289,5.84716,5.53865, +11370,13269,"Lee Moves North: The Confederate Summer Offensive, 1862 & 1863",1972,59,7.04915,5.53863, +11371,358079,Dying Light: The Board Game,2025,36,8.01389,5.53863, +11372,103975,Ortus,2013,106,6.37925,5.53863, +11373,254399,Love Battle! High School,2019,101,6.42079,5.53862, +11374,36612,Great War at Sea: Pacific Crossroads,2010,57,7.10158,5.53862, +11375,191916,Cubeo,2016,78,6.68077,5.53862, +11376,214535,Commando 4 en action: Dieppe 1942,2017,69,6.82971,5.53862,"124199, 214535, 306230" +11377,12181,Football Fever,1982,44,7.56318,5.53862, +11378,188758,Gladiatores: Blood for Roses,2020,58,7.07414,5.53861, +11379,224979,Tournament of Towers,2018,68,6.84779,5.53859, +11380,137912,Top 5 Rummy,2013,72,6.77500,5.53859, +11381,51250,Gauss,2009,63,6.95159,5.53859, +11382,367642,Copperdale,2022,60,7.02167,5.53858, +11383,274784,Cosmic Cow Collectors,2024,68,6.84706,5.53857, +11384,17239,Gutshot,2005,41,7.70780,5.53856, +11385,364022,Holiday Hijinks #6: The Groundhog Gambit,2022,41,7.70732,5.53855, +11386,38437,Curli Kuller,2008,89,6.53764,5.53855, +11387,130304,Dux Britanniarum: Wargame Rules for Dark Age Warfare in the Age of Arthur,2012,42,7.65476,5.53853, +11388,271645,Skora,2020,103,6.40136,5.53853, +11389,142980,Nanahoshi,2013,114,6.31798,5.53852, +11390,293875,UNDO: Forbidden Knowledge,2019,223,5.93695,5.53852, +11391,138016,WordARound,2012,188,6.01106,5.53851, +11392,148050,Days of Battle: Golan Heights,2013,57,7.09649,5.53850, +11393,5303,APBA Pro Hockey,1993,78,6.67692,5.53849, +11394,388225,Bah! Humbug! and the 12 Games of Christmas,2024,32,8.31250,5.53848,"353147, 388225" +11395,335943,Equatorial Clash,2022,33,8.22727,5.53847, +11396,20445,Quest for the DragonLords (Second Edition),2006,419,5.75005,5.53844,"4221, 20445" +11397,311191,Influentia,2020,106,6.37453,5.53842, +11398,275086,Above,2019,84,6.59350,5.53842, +11399,233070,Aikamatka: Suomi,2017,87,6.55690,5.53841,"233070, 287546, 357983" +11400,287895,Grund,2019,81,6.63210,5.53840, +11401,94371,"The Battle of Blenheim, 1704",2018,68,6.84118,5.53840, +11402,204764,Space Vermin from Beyond!,2016,45,7.50667,5.53840, +11403,39089,Tiku,1993,92,6.50109,5.53839,"36639, 39089, 420915" +11404,186265,Minecraft Card Game?,2015,1206,5.61183,5.53839, +11405,331463,Tome: The Light Edition,2021,65,6.90043,5.53838, +11406,162443,Lair,2019,39,7.80769,5.53837, +11407,220461,Bla5t,2016,45,7.50459,5.53836, +11408,32031,The Art of War,2007,55,7.14709,5.53836, +11409,378142,Tall Tales,2023,83,6.60361,5.53833, +11410,220276,Guildes,2017,155,6.10875,5.53833, +11411,4784,Test Match,1977,148,6.13561,5.53832, +11412,216282,Critters Below,2017,113,6.32035,5.53831, +11413,14881,Rebel Sabers: Civil War Cavalry Battles,1986,56,7.11607,5.53830, +11414,10230,Santa Maria Infante: On the Road to Rome 1944,2004,43,7.59302,5.53830,"10230, 146216" +11415,176013,¡Abordaje!,2015,164,6.07698,5.53830, +11416,4265,Iliad: The Siege of Troy,1978,49,7.34082,5.53829, +11417,11287,Quantum,1984,43,7.59186,5.53828, +11418,3513,Electronic Stratego,1982,111,6.33378,5.53828, +11419,204895,Table Air Combat: Flight Operations Manual,2016,43,7.59070,5.53826,"199027, 199028, 199029, 199129, 199501, 199502, 199503, 199504, 199505, 199535, 199612, 199696, 199697, 199702, 199795, 199796, 199797, 199833, 199847, 199848, 199850, 199851, 199889, 199894, 199898, 202713, 203627, 204894, 204895, 213584, 223503, 223622, 223625, 231719, 262202, 268029, 286726, 286728, 286730, 286734, 286763, 286775, 286777, 286778, 286779, 288240, 288243, 300250, 300251, 304503, 311770, 312037, 312038" +11420,400911,The Nightmare Before Christmas: Take Over the Holidays!,2023,85,6.57621,5.53825, +11421,382054,Woodland Wizards,2023,133,6.20150,5.53824, +11422,213371,"Teutons!: Assaults on the West, 1870-1940",2016,39,7.80000,5.53824,"144829, 144956, 213371" +11422,424995,Night Sky Explorers,2024,39,7.80000,5.53824, +11424,186695,The Terrifying Girl Disorder,2015,118,6.28568,5.53823, +11425,40823,MedWar Sicily,2009,104,6.38615,5.53823,"21957, 40823" +11426,377032,Horticulture,2023,61,6.98361,5.53822, +11427,349408,Lielow,2021,98,6.43776,5.53822, +11428,368031,Storm Chasers: The Game,2022,93,6.48602,5.53821, +11429,33071,Master Labyrinth,2007,319,5.81442,5.53820, +11430,178939,Dalek Dice,2016,216,5.94612,5.53820, +11431,352228,HacKClad,2021,47,7.41277,5.53819, +11432,382609,Deckscape: Tokyo Blackout,2023,112,6.32455,5.53818, +11433,7058,Nicaragua!,1988,101,6.40990,5.53817, +11434,403150,World Order,2025,57,7.08281,5.53817, +11435,175845,Arcade,2015,41,7.68537,5.53816, +11436,150143,Guerra en el Pacífico,2013,57,7.08246,5.53816, +11437,109070,Eden: Survive the Apocalypse,2009,39,7.79487,5.53815, +11438,289351,Gorgasali Battle Royale,2020,37,7.91622,5.53814, +11439,1698,X-Men: Under Siege,1994,261,5.87526,5.53814, +11440,217884,Shadowrun: Zero Day,2017,74,6.72703,5.53814, +11441,3826,Unlur,2002,44,7.53750,5.53814, +11442,22758,Great War at Sea: U.S. Navy Plan Gold,2006,60,7.00417,5.53813, +11443,118452,Die Tore der Welt: Das Kartenspiel,2012,164,6.07439,5.53813, +11444,191687,Jungle Party,2016,108,6.35236,5.53812, +11445,22406,Twilight of the Ottomans: World War I in the Middle East,2007,62,6.95645,5.53812, +11446,8986,Junkyard Races,2003,150,6.12433,5.53812, +11447,188196,Ravenous River,2016,208,5.96082,5.53811, +11448,32327,Waterloo 1815,1996,55,7.13636,5.53811, +11449,11002,Farfalia,2004,179,6.02911,5.53810, +11450,140973,Sherlock Holmes Detective Story Game,2013,55,7.13545,5.53809, +11451,3138,Cairo,2002,273,5.85989,5.53808, +11452,26132,Midgard: Das Brettspiel,2007,81,6.62235,5.53807, +11453,16415,Monstertorte,1996,121,6.26388,5.53807, +11454,67631,Scrabble Flash,2010,391,5.76267,5.53807, +11455,230570,Stellar Leap,2018,102,6.39902,5.53807, +11456,6735,Star Explorer,1982,58,7.05190,5.53806, +11457,345925,The Hand of Destiny,2022,83,6.59578,5.53806,"345925, 373790" +11458,90272,Euronimoes,2011,45,7.48889,5.53806, +11459,228713,Black Souls,2018,110,6.33597,5.53805, +11460,2061,A Line in the Sand,1991,219,5.93881,5.53805, +11461,149705,Croquet: A Cardboard Game,2013,33,8.19697,5.53804, +11462,161109,Speakeasy,2014,123,6.25138,5.53804, +11463,248226,Grackles,2018,136,6.18315,5.53803, +11464,392372,Side Quest: 7th Sea,2023,89,6.52360,5.53803, +11465,281121,Fistful of Lead: Core Rulebook,2019,34,8.11765,5.53802,"252978, 265477, 281121, 316493, 341143, 378802" +11466,377873,New Eden,2023,82,6.60732,5.53801, +11467,245090,Black Jacky,2018,167,6.06287,5.53800, +11468,8160,Illuminati: Crime Lords,2004,257,5.87899,5.53799, +11469,342258,Noah Planet,2020,48,7.36278,5.53797,"202906, 342258" +11470,22756,Optimus Princeps: Les Guerres Daciques,2006,40,7.72750,5.53797, +11471,256831,Life Siphon,2019,155,6.10290,5.53796, +11472,220843,Overworld,2019,96,6.45010,5.53796, +11473,324403,Re;ACT - The Arts of War,2024,32,8.27344,5.53795, +11474,358026,Disney: A Goofy Movie Game,2022,113,6.31257,5.53795, +11475,256769,Forwarder of Xanadu,2018,54,7.15870,5.53794, +11476,373787,A Herceg Nyer!,2022,42,7.62143,5.53793, +11477,374868,Welcome to Reckoning,2023,50,7.28800,5.53793, +11478,83907,Assist,2011,74,6.72027,5.53793, +11479,105864,On the Cards,2011,90,6.51000,5.53793, +11480,97432,The Phoenix Syndicate,2019,61,6.97213,5.53793, +11481,27789,Rotterdam,2007,254,5.88228,5.53792, +11482,231477,Robotech: Ace Pilot,2018,99,6.42121,5.53791, +11483,322565,Silicon Valley,2023,65,6.88308,5.53790, +11484,341700,Raccoon Robbers,2022,155,6.10197,5.53790, +11485,13980,"Into a Bear Trap: The Battle for Grozny, January 1995",2004,93,6.47796,5.53790, +11486,3359,Anagrams,1875,72,6.75139,5.53788, +11487,381536,Elemental Duel,2023,34,8.10735,5.53787, +11488,162777,Doppelgänger,2018,89,6.51933,5.53787, +11489,158243,Dragon Slayer,2014,1778,5.58699,5.53787, +11490,318838,Quests & Cannons: The Risen Islands,2022,36,7.96389,5.53786, +11491,357928,Key Enigma: Kalinasu Adventure,2022,44,7.52273,5.53786, +11492,336212,Pletrix,2021,65,6.88146,5.53786, +11493,417491,Odalin: Dungeons of Doom,2025,31,8.35484,5.53786, +11494,337378,USS Laffey: The Ship That Would Not Die,2021,39,7.77692,5.53786, +11495,153179,Freeblades,2012,37,7.89730,5.53784, +11496,2171,Bladder,2000,90,6.50778,5.53784, +11497,344685,Go Goa,2021,238,5.90462,5.53784, +11498,114386,18PA,2011,50,7.28300,5.53783, +11499,22227,"No Prisoners: The Campaigns of Lawrence of Arabia, 1915-1918",2006,62,6.94516,5.53783, +11500,236801,Wayward,2019,78,6.65637,5.53782, +11501,293878,UNDO: Treasure Fever,2019,200,5.97386,5.53781, +11502,107372,Les Rois Francs,2011,69,6.80145,5.53780, +11503,149129,La Bataille de Vauchamps,2014,48,7.35417,5.53780, +11504,23733,Great War at Sea / Second World War at Sea: Cone of Fire,2008,52,7.21442,5.53779, +11505,369571,CGT: Card Game Traders,2023,35,8.02857,5.53779, +11506,18776,The Mediterranean,2005,62,6.94355,5.53778, +11507,360877,Highlight Maker Hoops,2022,34,8.09882,5.53775, +11508,3309,Air Cav,1985,212,5.94838,5.53774,"3309, 8313" +11509,378402,Hermit,2023,47,7.38936,5.53773, +11510,411545,Sunrise Sunset,2024,49,7.31367,5.53772, +11511,17691,Djambi,1968,85,6.56141,5.53772, +11512,429186,Герои (Heroes),2024,43,7.56047,5.53771, +11513,153056,The War for Turkish Liberation,2018,54,7.14815,5.53770, +11514,178335,Biergarten,2016,184,6.01031,5.53770,"178335, 357642" +11515,3691,Harvest of Death: The Second Day at Gettysburg,1989,94,6.46277,5.53770, +11516,419384,Suna Valo,2024,41,7.65854,5.53770, +11517,3157,All-Star Baseball,1941,178,6.02612,5.53769,"3157, 291548" +11518,1651,Vertigo,1990,99,6.41586,5.53769, +11519,153839,Burgenland,2014,165,6.06454,5.53768, +11520,24230,Glik,2006,128,6.21680,5.53768, +11521,332181,IQ Files: Escape Room – Sins,2021,69,6.79725,5.53768, +11522,3603,The Normandy Campaign,1983,94,6.46191,5.53766, +11523,151369,Illegal,2014,154,6.10177,5.53766, +11524,378873,Houblon,2023,30,8.43333,5.53766, +11525,219988,In Tenebris Lux,2017,62,6.93871,5.53766, +11526,365982,Toko Island,2022,51,7.24020,5.53764, +11527,244164,Hocus & Pocus: L'épreuve des Fabulins,2016,50,7.27400,5.53764, +11528,5271,Stack,1988,204,5.96286,5.53761, +11529,167552,Build Up,2014,53,7.17434,5.53761, +11530,308870,Plotalot,2020,65,6.87215,5.53760, +11531,162888,Phoenix Covenant,2017,44,7.50909,5.53760, +11532,103783,Frigiti,2011,60,6.98333,5.53760, +11533,181574,The Princess Bride: I Hate to Kill You,2016,148,6.12365,5.53760, +11534,38772,Mage Knight Conquest,2002,75,6.69400,5.53760, +11535,8435,Carrier Battles: The Struggle for Guadalcanal,1985,34,8.08824,5.53759,"8435, 361564" +11536,363204,FLOE,2025,53,7.17358,5.53759, +11537,245483,Affinity,2018,85,6.55765,5.53759, +11538,267989,Tempus Imperium,2018,76,6.67842,5.53759,"267989, 272544, 273476, 276955, 281333, 297718, 298079, 298454, 298481, 298482, 307435, 307727, 309042, 309043, 403523" +11539,256486,Polyssimo Challenge,2018,64,6.89219,5.53758, +11540,311209,Wild Cards,2020,108,6.34028,5.53758, +11541,326243,BUILDZI,2020,110,6.32558,5.53758, +11542,348216,Star Fighters: Rapid Fire,2023,85,6.55694,5.53756, +11543,368265,Oh my park!,2022,52,7.20385,5.53756, +11544,145496,Privateer,2016,116,6.28448,5.53756, +11545,161600,Panzer Vor!,2014,56,7.08393,5.53754, +11546,6017,Blitzkrieg '41,1989,80,6.62000,5.53754, +11547,327549,Sweetlandia,2021,105,6.36225,5.53754, +11548,4290,Pickett's Charge: A Game of the Battle of Gettysburg,1980,55,7.11182,5.53754, +11549,222741,DIG,2017,139,6.16043,5.53753,"222741, 251469" +11550,3973,Footmania,1993,79,6.63291,5.53751, +11551,382217,Colour Square,2023,87,6.53218,5.53751, +11552,336597,Fairy Lights,2022,80,6.61875,5.53750, +11553,260955,Dog Sector,2018,46,7.41739,5.53749, +11554,286761,The World Game,2018,76,6.67500,5.53748,"286761, 322480" +11555,215469,The Pyramid's Deadline,2016,352,5.78294,5.53746, +11556,371159,"A Greater Victory: South Mountain, September 14, 1862",2022,30,8.41667,5.53744, +11557,173389,Rush Hour Shift,2015,199,5.97149,5.53744, +11558,319992,Perthro,2021,41,7.64390,5.53744, +11559,7708,Hisss,2001,1392,5.59944,5.53742, +11560,178572,Waterloo: Quelle Affaire!,2015,45,7.45556,5.53742, +11560,286135,"Khartoum: Sudan, 1883 to 1885",2019,45,7.45556,5.53742, +11562,132803,Braccio da Montone,2012,37,7.87027,5.53742, +11563,8742,1815: The Waterloo Campaign,1975,107,6.34393,5.53741, +11564,273352,Chain Mail: Adventures of Earthshine,2019,59,7.00000,5.53741, +11565,141734,String Safari,2013,184,6.00630,5.53740, +11566,39536,Cat & Fish,2008,81,6.60247,5.53740, +11567,277408,Austerlitz 1805,2019,36,7.93333,5.53739, +11568,154274,Samsara,2014,54,7.13426,5.53738, +11569,312594,The Forest Watch,2021,108,6.33565,5.53737, +11570,11284,1862,2000,48,7.33333,5.53737,"11284, 382673" +11571,7978,Mason-Dixon: The Second American Civil War,1995,75,6.68667,5.53737, +11572,129314,Eagle Day: The Battle of Britain,2012,76,6.67105,5.53735, +11573,131047,Onager,2012,36,7.93056,5.53735, +11574,27626,Pictionary: 20th Anniversary,2005,135,6.17548,5.53735, +11575,209734,Conflicting Legends,2016,200,5.96803,5.53734,"209734, 281245" +11576,40773,"Bürger, Baumeister & Co.",2009,202,5.96361,5.53733, +11577,357258,Déole,2022,52,7.19231,5.53731, +11578,7993,Pole Position,1989,129,6.20442,5.53731, +11579,20120,Comrade Koba,2005,150,6.11100,5.53730, +11580,274688,Board Game Cafe Frenzy,2019,134,6.17948,5.53730, +11581,351603,Bat Flip,2022,43,7.53837,5.53730, +11582,55842,Namibia,2010,124,6.23105,5.53729, +11583,158895,Periorbis,2017,91,6.48242,5.53728, +11584,227163,Cooking Rumble,2018,59,6.99490,5.53728, +11585,429,Magalon,1998,257,5.87187,5.53728, +11586,264242,Bloxx!,2018,117,6.27222,5.53728, +11587,134279,Mafia Casino,2012,100,6.39662,5.53725, +11588,287260,Sovereign: Fall of Wormwood,2024,37,7.85946,5.53725, +11589,94116,Schlag den Raab: Das 2. Spiel,2011,107,6.34019,5.53724, +11590,18687,"Las Navas de Tolosa, 1212",2005,48,7.32708,5.53724, +11591,366910,Hellton Palace,2022,110,6.31818,5.53724, +11592,119782,Paikō,2012,45,7.44578,5.53723, +11593,146034,Donburiko,2013,119,6.25882,5.53723, +11594,236881,Holmes and Moriarty,2018,60,6.96833,5.53722, +11595,139236,California Gold,2015,99,6.40444,5.53722, +11596,368464,SiliconVania,2023,47,7.36383,5.53722, +11597,358625,Riverbed Hunt,2024,30,8.39833,5.53721, +11598,26945,The Battle of Rosebud Creek,2007,48,7.32500,5.53720, +11599,305270,Chronicles of Waral,2020,54,7.12630,5.53720, +11600,326727,Card Rails,2021,97,6.42134,5.53718, +11601,361089,Marching Order,2021,34,8.05882,5.53717, +11602,18310,Dragon Noir 2: L'Epreuve,1993,48,7.32292,5.53716, +11603,164808,El Switcher,2012,82,6.58244,5.53716, +11604,252475,Madoshi,2021,51,7.21765,5.53715, +11605,203299,"Belmont: Grant's Baptism of Command, November 7th, 1861",2017,38,7.79211,5.53715, +11606,357465,Dice Cup,2022,76,6.66461,5.53715, +11607,13584,Clan War,1998,84,6.55714,5.53714, +11608,269440,Botanists,2019,107,6.33785,5.53714, +11609,382676,Mytikas,2023,48,7.32188,5.53714, +11610,4494,Phase Line Smash,1992,97,6.42021,5.53713, +11611,253048,Legends of Signum: Battle for Vallor,2018,62,6.91871,5.53713,"253048, 286331, 310781, 399765" +11612,327471,Nagashino 1575 & Shizugatake 1583,2022,39,7.73333,5.53713, +11613,7558,Battlegame Book 2: Knights at War,1975,64,6.87500,5.53712, +11614,176478,No Man's Land: Trench Warfare 1914-1918,2015,43,7.52791,5.53711, +11615,331549,MiniQuest Adventures,2021,178,6.01781,5.53709, +11616,264227,Ghostbusters x Men in Black: Ecto-terrestrial Invasion,2021,69,6.77680,5.53708, +11617,353719,Crabs in a Bucket,2023,53,7.15094,5.53708, +11618,184247,Expedition Zetta,2018,113,6.29392,5.53707, +11619,18205,Grand Armee: Great Battles of the Napoleonic Wars Miniature Wargame Rules System,2002,40,7.67500,5.53707, +11620,198984,Oligarchy: A Dystopian card game,2017,43,7.52558,5.53707, +11621,208323,Holdfast: Pacific 1941-45,2017,79,6.61899,5.53705, +11622,4332,Dibs,2002,48,7.31771,5.53705, +11623,283755,Doublehead Kids,2019,46,7.39492,5.53705, +11624,255955,The Damsel's Tale,2020,68,6.79363,5.53704,"251855, 255950, 255955, 255957" +11625,207602,Goodwill,2017,63,6.89317,5.53704, +11626,10756,Dancing Dice,2004,540,5.69524,5.53703, +11627,186501,Super PACS: The Game of Politics About the Game of Politics,2016,59,6.98475,5.53703, +11628,379242,Basketball Highlights: Crunch Time,2023,51,7.21176,5.53703, +11629,2049,Target,1997,159,6.07394,5.53701, +11630,138484,Robots on the Line,2015,102,6.37392,5.53701, +11631,179606,"Mafia, cosa di capo",2015,115,6.27922,5.53700, +11632,23642,Storm of Steel,2007,77,6.64545,5.53700, +11633,93733,Volle Scholle,2011,139,6.15101,5.53700, +11634,206802,Spaghetti,2016,241,5.89110,5.53699, +11635,5864,The Flight of the Goeben: World War I Naval Operations in the Mediterranean,1970,45,7.43333,5.53699, +11636,365235,Noggin,2022,103,6.36548,5.53699, +11637,18704,Piquet: Master Rules for Wargaming,1995,59,6.98305,5.53699,"18704, 323699" +11638,5052,"Austerlitz: The Battle of Three Emperors, 2 December 1805",1972,93,6.45430,5.53698, +11639,396649,At the Office,2023,92,6.46413,5.53698, +11640,20952,UNO Junior,1992,521,5.70069,5.53697, +11641,8351,"Clash of Titans: The Tank Battle for Kursk, 1943",1998,61,6.93443,5.53695, +11642,388404,And That's How I Died,2023,38,7.78026,5.53695, +11643,6503,Harpoon: Captain's Edition,1990,130,6.19238,5.53694, +11644,85826,Kursk: Burning Tigers – A Panzer Grenadier Game,2014,38,7.77895,5.53693, +11645,12369,APBA Professional Golf,1962,57,7.03140,5.53693, +11646,273937,Mopsen,2019,125,6.21840,5.53693, +11647,337460,Utopia,2023,44,7.47273,5.53692, +11648,330022,Daimyo Senso,2021,36,7.90278,5.53692, +11649,85165,Chess 2: The Sequel,2010,53,7.14340,5.53691, +11650,1177,Die Ritter von der Haselnuss,1996,221,5.92217,5.53691, +11651,319792,Fly-A-Way,2021,67,6.80746,5.53690, +11652,126340,Baldrick's Tomb,2012,133,6.17692,5.53690, +11653,12129,Giant Monster Rampage,2002,43,7.51628,5.53690,"12128, 12129, 64778, 307397" +11654,95364,Cubulus,2011,156,6.08237,5.53689, +11655,402360,Fluffy Valley,2023,52,7.17333,5.53689, +11656,392403,Everstone: Discovering Ignis,2024,37,7.83649,5.53688, +11657,125416,The Scheldt Campaign,2012,43,7.51512,5.53688, +11658,266381,ZU Tiles: Hime – Starter Set 1,2020,50,7.23800,5.53687,"266381, 347299, 387935, 387936" +11659,217270,Kamasutra,2017,83,6.56145,5.53687, +11660,1687,Red Empire,1990,223,5.91816,5.53686, +11661,23954,Pictionary: Party Edition,1989,104,6.35442,5.53686, +11662,107012,The Sun Never Sets volume II,2012,40,7.66250,5.53686, +11663,321863,NeuroRace,2021,62,6.90806,5.53685, +11664,192634,Revolution Road,2017,46,7.38478,5.53685, +11665,180295,Smoke & Mirrors,2015,110,6.30955,5.53685, +11666,2554,Auf Fotosafari in Ombagassa,1985,68,6.78676,5.53685,"2554, 22523" +11667,38328,The Looney Bin,2008,122,6.23279,5.53681, +11668,139390,Perplexus Twist,2013,71,6.73239,5.53680, +11669,198537,Buck: Legacy (2nd Edition),2014,44,7.46591,5.53680,"164563, 198537" +11670,89912,Jasper and Zot,2011,181,6.00564,5.53679, +11671,104376,Bonbons,2011,199,5.96307,5.53677, +11672,222798,Pencil Park,2017,73,6.69877,5.53677, +11673,109215,Gunship: First Strike!,2013,247,5.88008,5.53676, +11674,340374,Trickerion: Legends of Illusion – Kickstarter Exclusive Legend Box,2015,37,7.82846,5.53676, +11675,222750,Hunt the Ravager,2021,46,7.37935,5.53674, +11676,170118,Combat Leader: East Front '41,2014,34,8.02941,5.53674,"170118, 255197" +11677,143131,Constructo,2014,64,6.86094,5.53674, +11678,73253,Chalons: The Fate of Europe,2010,71,6.73028,5.53674, +11679,280856,Crossroll Hong Kong,2019,48,7.30210,5.53673, +11680,323598,Hitodama,2024,39,7.70949,5.53673, +11681,130008,La Loire,2012,140,6.14179,5.53672, +11682,341178,Bubble Stories,2021,82,6.56976,5.53672,"341178, 366070, 416945" +11683,184664,Sandwich Masters,2016,105,6.34324,5.53671, +11684,341934,Just Wild,2021,97,6.40959,5.53670, +11685,258440,[Come on] Let's Quiz Again,2018,50,7.23000,5.53670, +11686,140861,Operation: Maccabee,2010,57,7.02193,5.53670, +11687,81297,Régents,2011,87,6.50977,5.53670, +11688,318036,Gun and Gun,2019,48,7.30000,5.53669,"318036, 396657" +11689,8355,Drive to the Baltic!,2000,44,7.45909,5.53667, +11690,99310,WayWord,2011,55,7.07455,5.53667, +11691,113937,Phantom,2012,110,6.30545,5.53666, +11692,226502,Gladiator Gauntlet,2017,62,6.90032,5.53665, +11693,90730,Dungeon in a Tin,2011,88,6.49716,5.53664, +11694,176916,Soccer 17,2015,67,6.79796,5.53663, +11695,407454,Bite and Treaty,2024,30,8.35333,5.53663, +11696,408308,Flashback: Lucy,2024,39,7.70256,5.53662, +11697,381624,Bonaparte Overruns Piedmont,2023,31,8.26129,5.53662, +11698,4215,One-Page Bulge,1980,135,6.16222,5.53661, +11699,92876,Jurassik,2011,219,5.92215,5.53660,"92876, 183387, 312794" +11700,268899,Foreign Legion Paratroopers: Rapid Response Force,2020,43,7.50000,5.53660, +11701,24999,Ardeny 1944,1992,125,6.21200,5.53660, +11702,218769,Взлет разрешен!,2016,179,6.00796,5.53658,"218769, 382880" +11703,383053,9upper 瞎掰王,2021,69,6.75942,5.53658, +11704,424203,Minecart Town,2024,56,7.04286,5.53657,"387275, 424203" +11705,235991,Cruise of the Graf Spee,2019,41,7.59390,5.53657, +11706,74987,Got It!,2010,70,6.74143,5.53656, +11707,397228,Piazza,2023,70,6.74124,5.53656, +11708,92838,Pitch'n Dunk,2011,39,7.69872,5.53655, +11709,285870,GWAR vs. Time!,2020,41,7.59268,5.53655, +11710,112532,Feed the ducks,2011,61,6.91803,5.53653,"112532, 286350" +11711,376496,Off-Plan,2023,34,8.01471,5.53653, +11712,246818,Lass die Kirche im Dorf!,2016,47,7.32766,5.53649, +11713,260709,Yozu,2019,78,6.61573,5.53649, +11714,197783,Get Rich Quick,2016,98,6.39541,5.53649, +11715,363252,The Great British Baking Show Game,2022,194,5.97036,5.53649, +11716,170447,Kard és Korona,2014,58,6.98759,5.53649,"170447, 375447" +11717,343129,Corvette Command,2021,34,8.01176,5.53648, +11718,224478,Dome Crushers,2017,160,6.06238,5.53648, +11719,27813,Saikoro,2007,77,6.62922,5.53648, +11720,264656,Vivaldi,2019,95,6.42211,5.53647, +11721,400752,Piles!,2023,62,6.89334,5.53647, +11722,148592,"Bigfootses, The Card Game",2014,73,6.68863,5.53646, +11723,31971,Burgoo,2014,645,5.66684,5.53646, +11724,5200,Helltank,1981,95,6.42158,5.53645,"5197, 5200" +11725,200593,Quest Stories,2016,73,6.68799,5.53644, +11726,224992,ボブジテン (Bob Jiten),2017,87,6.50230,5.53643,"224992, 278284, 280060, 280061, 280062" +11727,29,Terrain Vague,1993,72,6.70347,5.53643, +11728,217890,Doggy Bag,2017,188,5.98335,5.53642, +11729,25014,Grand Fleet,2010,53,7.12170,5.53642, +11730,39976,Volta,2003,64,6.84922,5.53642,"39976, 355487" +11731,121995,Blurble,2013,160,6.06144,5.53642, +11732,25937,Galactic Destiny,2007,150,6.09633,5.53641, +11733,79413,Wer war's?: Mitbringspiel,2009,134,6.16306,5.53640,"79413, 197711" +11734,368296,Time Collectors,2023,70,6.73571,5.53639, +11735,11930,Renju,,105,6.33590,5.53639, +11736,34255,Deukalion,2008,219,5.91968,5.53639, +11737,31454,Stratego Fortress,2007,91,6.45879,5.53639, +11738,341160,Reinforcements,2022,44,7.44318,5.53637, +11738,28879,The Quest for Shangri-La,2006,44,7.44318,5.53637, +11740,212687,Cauldron Master,2017,93,6.43839,5.53637, +11741,272240,Rakieta imprezowa,2019,64,6.84687,5.53636, +11742,38499,22 Pommes,2009,180,6.00228,5.53636, +11743,161849,Land 6,2014,184,5.99209,5.53635, +11744,282437,Katana: Samurai Action Card Game,2019,37,7.80270,5.53635, +11745,335953,Blackbrim: 1876,2020,47,7.32021,5.53635, +11746,207796,Ahead in the Clouds,2017,168,6.03536,5.53634,"207796, 323087" +11747,98046,Sake & Samurai,2011,196,5.96403,5.53634, +11748,297735,Disciple Detective,2020,49,7.24694,5.53634, +11749,313241,Micons,2020,47,7.31915,5.53632, +11750,533,Labyrinth: The Card Game,2000,1600,5.58868,5.53632,"533, 323495" +11751,322067,Cedar Mountain 1862,2020,48,7.28125,5.53631, +11752,199497,Squirmish,2016,76,6.63816,5.53630, +11753,129308,Border War: Angola Raiders,2012,102,6.35686,5.53628, +11754,4877,How to Host a Murder: The Watersdown Affair,1985,97,6.39897,5.53628, +11755,335873,Deadeye Dinah,2022,70,6.73143,5.53627, +11756,107463,Help Me!,2011,164,6.04634,5.53626, +11757,28609,The Game of Life: Twists & Turns,2007,600,5.67567,5.53626, +11758,211962,Forest of Tataraba,2016,76,6.63684,5.53626, +11759,263175,Torpedo Dice,2021,73,6.68178,5.53625, +11760,9259,Combined Arms: Command Decision Series Game,1988,52,7.14423,5.53625, +11761,299803,Patios,2021,93,6.43505,5.53624, +11762,247790,Starlight Stage,2018,69,6.74739,5.53623,"167574, 247790" +11763,940,Karawane,1990,171,6.02485,5.53622, +11764,368650,Safari Splash!,2022,47,7.31348,5.53621, +11765,11764,The Last Victory: Von Manstein's Backhand Blow,1987,47,7.31277,5.53620, +11766,28565,Save the Treasure of Fairy Tales,2006,104,6.33870,5.53618, +11767,24314,SuperSystem (Second Edition),2006,44,7.43295,5.53618,"20241, 24314, 62708, 169192" +11768,3615,"Agincourt: The Triumph of Archery over Armor, 1415",1978,101,6.36238,5.53617, +11769,160560,Leagues of Adventure: Rocket Race,2014,90,6.46319,5.53617, +11770,284600,Alice in Wordland,2019,131,6.17301,5.53617, +11771,238834,Tolomeo,2017,59,6.95000,5.53616, +11772,267375,Red Poppies Campaigns: Volume 3 – Assault Artillery: La Malmaison,2020,30,8.31667,5.53616, +11773,364020,Holiday Hijinks #5: The Birthday Burglary,2022,51,7.17157,5.53616, +11774,20043,Warumono 2,2005,105,6.33048,5.53616,"8155, 20043" +11775,374212,Nuts a GoGo!,2021,104,6.33798,5.53615, +11776,186996,Pub Battles: Brandywine,2015,35,7.91857,5.53615, +11777,291429,Cthulhu: Age of Madness,2023,31,8.22581,5.53615, +11778,128662,Northwest Passage Adventure,2012,133,6.16301,5.53614, +11779,85857,Guns of August,2011,80,6.57812,5.53614, +11780,31770,Joker Marbles,1970,75,6.64720,5.53612, +11781,282224,Cinephile,2019,85,6.51647,5.53612, +11782,42897,Infantry Attacks: August 1914,2010,55,7.05091,5.53612, +11783,321684,Volterra,2020,65,6.81785,5.53612, +11784,19399,Socken zocken,2004,317,5.79893,5.53612,"19399, 40774, 237698, 425434" +11785,359044,Masai,2022,33,8.06061,5.53611, +11786,177698,Karnivore Koala,2015,245,5.87610,5.53611, +11787,180599,Sly Dice,2015,83,6.53916,5.53609, +11788,6487,Fantasy Warriors,1990,93,6.43118,5.53609,"6487, 141033" +11789,347568,MON: Emblems of Sengoku,2021,90,6.46056,5.53607, +11790,422780,Mistborn: The Deckbuilding Game,2024,36,7.84722,5.53607, +11791,239883,Bear Went Over the Mountain,2017,54,7.07593,5.53605, +11792,1263,Knights,2000,1016,5.61787,5.53604, +11793,385990,Riverwood Town,2023,45,7.38333,5.53604, +11794,164022,On to Paris 1870-1871: The Franco-Prussian War,2016,52,7.13462,5.53604,"164022, 286075" +11795,155700,Happy Birthday!,2014,581,5.67904,5.53602,"88402, 155700" +11796,338075,Cupid: Tricks & Tactics,2021,45,7.38222,5.53602, +11797,16323,Panzer Korps,1982,49,7.23136,5.53601, +11798,2743,Starfall,1979,107,6.31215,5.53600, +11799,283713,Final Fantasy XIV: Gold Saucer Cactpot Party,2019,68,6.75588,5.53596, +11800,6768,Battlestar Galactica,1984,63,6.85238,5.53595, +11801,248224,Remnants,2018,130,6.17385,5.53595, +11802,378531,Counter Warfare: The Surprisingly Strategic Party Royale,2023,44,7.42045,5.53595, +11802,19909,AK47 Republic,1997,44,7.42045,5.53595, +11804,137789,Office 21,2013,168,6.02946,5.53594, +11805,246315,Okavango,2018,146,6.10370,5.53593, +11806,377894,Napoleon's Conquests,2023,45,7.37778,5.53593, +11806,275738,Knitting: The Card Game,2019,45,7.37778,5.53593, +11808,160517,The Possession,2014,125,6.19896,5.53593, +11809,167238,Zombie Terror,2016,80,6.57188,5.53593, +11809,149970,Outer Earth,2013,80,6.57188,5.53593, +11811,40005,Karawane,2008,90,6.45667,5.53592, +11812,93594,Keezbord,2007,237,5.88550,5.53592, +11813,95662,A Fistful of TOWs 3: Miniature Wargame Rules – Modern Mechanized Warfare 1915-2015,2011,32,8.12500,5.53592, +11813,389860,Dino Gardens,2023,32,8.12500,5.53592, +11815,299690,Forest Guardians,2020,67,6.77239,5.53591,"299690, 350104" +11816,359009,Cookie Run: Kingdom The Board Game,2023,77,6.61169,5.53591, +11817,10268,Soldier's Companion,1989,47,7.29787,5.53590, +11818,220137,Scurvy Dice,2017,56,7.01411,5.53589, +11819,6,Mare Mediterraneum,1989,86,6.49826,5.53588, +11820,196256,TRIUMPH: A card-arranging strategy game,2016,55,7.04000,5.53586,"196256, 347775" +11821,212883,Tzulan Quest,2016,108,6.30185,5.53586, +11822,256233,Mountains,2018,149,6.09103,5.53586, +11823,5172,Blitzkrieg General,1999,109,6.29450,5.53585, +11824,223590,Battles on the Ice: Defeats of the Livonian Order at Peipus and Karuse,2017,45,7.37333,5.53585, +11825,224152,Hemloch: Dark Promenade,2017,52,7.12596,5.53584, +11826,351300,Pathways,2023,61,6.89131,5.53584, +11827,237217,Speedy Pickers,2017,79,6.58228,5.53584, +11828,15212,Berlin '45: The Nightmare Ends,1992,86,6.49709,5.53584, +11829,983,Tangoes,1980,456,5.71711,5.53583,"983, 21916" +11830,8283,Blood & Thunder: Tactical Combat on the Eastern Front 1941-1945,1993,85,6.50824,5.53583, +11831,427278,Roaring 20s,2024,88,6.47500,5.53583, +11832,313636,LEGACY: Quest for a Family Treasure,2021,38,7.71053,5.53582, +11833,380106,Adventure Party: The Role-Playing Party Game,2024,44,7.41364,5.53582,"380106, 382685" +11834,17430,"The Old Contemptibles at Mons, 1914",2005,63,6.84698,5.53581, +11835,92465,Sporz Original Outbreak,2011,55,7.03764,5.53581, +11836,235899,Catham City,2017,168,6.02734,5.53580, +11837,42660,1886,2009,51,7.15490,5.53580, +11838,369560,Aurignac,2022,59,6.93475,5.53578, +11839,16169,Gettysburg: High Tide of the Confederacy,1982,44,7.41136,5.53578, +11840,336831,PinPoint,2022,72,6.68194,5.53577, +11841,327402,DreamQuest,2021,75,6.63533,5.53575,"256376, 327402" +11842,18127,Castle Merchants,2005,370,5.75863,5.53575, +11843,379350,ADAPTOID 24,2023,52,7.12115,5.53574, +11844,134559,Tower,2014,239,5.88059,5.53573, +11845,262814,Stogite,2014,50,7.18400,5.53573, +11846,37260,Flying Circus: Aerial Combat in WWI,2008,80,6.56562,5.53572, +11847,20081,Dschamál,2005,157,6.06034,5.53571, +11848,323882,Unfold: Dark Story,2020,141,6.11986,5.53571, +11849,75529,Bhazum,2010,91,6.44066,5.53570,"75529, 133750, 154545, 154551, 154582, 154583" +11850,284650,Trois Batailles en Allemagne,2020,35,7.88857,5.53570, +11851,51197,Hippos & Crocodiles,2009,111,6.27748,5.53569,"51197, 112293" +11852,7112,NATO Division Commander,1980,86,6.49302,5.53569, +11853,315267,Tuppfehler,2020,63,6.84238,5.53569, +11854,3459,Major Battles and Campaigns of General George S. Patton,1973,93,6.42052,5.53567, +11855,365978,CO-OPS,2022,34,7.95588,5.53567, +11856,301015,Meeple Towers,2020,58,6.95431,5.53567, +11857,85004,Interstellar Mayhem,2010,89,6.46011,5.53567, +11858,41198,Trafalgar: Naval Warfare in the Age of Sail (1795-1815),2009,68,6.74559,5.53567, +11859,168077,Dragon Ball Z TCG (2014 edition),2014,156,6.06282,5.53565,"27408, 168077" +11860,233149,Pulp Detective,2018,644,5.66331,5.53564, +11861,28843,300: The Board Game,2007,192,5.96380,5.53564, +11862,23845,Roller Rumble,1999,35,7.88286,5.53561, +11863,155412,Red Tide West: The Cold War & World War III in Europe,2014,67,6.76119,5.53560,"155412, 247949" +11864,325611,Runes of Zun,2020,71,6.69202,5.53559, +11865,349739,First Punic War 264 to 241 BC,2022,37,7.75405,5.53558, +11865,336893,The Market: A Pocket Game,2021,37,7.75405,5.53558, +11867,353636,"Skyhawk: Rolling Thunder, 1966",2022,40,7.58750,5.53558, +11868,22511,Stargate Trading Card Game,2007,71,6.69155,5.53558, +11869,182681,Mini Cywilizacja,2015,125,6.19200,5.53557, +11870,321727,La Bataille de Hanau,2021,39,7.63846,5.53555,"19171, 321727" +11871,357740,Gonza Index,2023,69,6.72391,5.53555, +11872,157529,The Truce or the Sword,2014,35,7.87714,5.53553, +11873,184440,Sticks and Stones: Platoon-level Combat in World War IV,2015,59,6.92373,5.53551,"184440, 187431, 202302, 208087, 218512" +11873,17784,Galaxis,1980,59,6.92373,5.53551,"2810, 17784" +11875,337891,Raise,2021,77,6.59870,5.53549, +11876,8410,Star Wars: Silent Death Starfighter Combat Game,2001,49,7.20612,5.53549, +11877,226115,"Bloody Dawns: The Iran-Iraq War, 1980-1988",2017,38,7.68947,5.53548, +11878,375659,Fibonachos,2023,79,6.57089,5.53546, +11879,315624,World Changers,2021,161,6.04351,5.53546, +11880,303548,Cónclave,2020,80,6.55775,5.53545, +11881,228603,Dragon Island,2017,142,6.11127,5.53545, +11882,229957,Small Detectives,2017,95,6.39614,5.53545, +11883,352798,What's On The Menu?,2023,35,7.87143,5.53544, +11884,281921,SYNDICATE: An Interplanetary Conquest Board Game,2021,78,6.58333,5.53543, +11885,277615,Vampire: The Masquerade – Blood Feud,2021,50,7.17000,5.53543, +11885,348032,Reap,2022,50,7.17000,5.53543, +11887,238972,Cogs and Commissars,2018,136,6.13631,5.53543, +11888,2721,Wembley,1952,131,6.15924,5.53543, +11889,92046,Princes of the Dragon Throne,2014,90,6.44333,5.53542, +11890,232358,Killing Code: Venice Vendetta,2017,97,6.37773,5.53542,"89610, 232358" +11891,301946,Bivouac,2021,54,7.04805,5.53541, +11892,127433,Dahschur: Die Rote Pyramide,2012,66,6.77273,5.53540, +11893,87428,Wagram 1809,2012,52,7.10577,5.53540, +11894,42207,Super Circles,2009,174,6.00460,5.53539, +11895,247029,Sojourn,2019,111,6.27090,5.53539, +11896,13240,Panzer Miniatures Rules: A Tactical Game of Armored Combat,2004,33,8.00909,5.53539, +11897,26621,Kircholm 1605,1994,67,6.75373,5.53539, +11898,101872,"Win, Don't Lose",2011,34,7.93571,5.53538, +11899,391549,Pillars of Heracles,2025,34,7.93529,5.53537,"391549, 411725" +11900,295833,呪術トリック (Cursed Tricks),2019,67,6.75299,5.53537, +11901,8326,The Fall of Rome,1973,186,5.97392,5.53536, +11902,401009,West Story: A Town Building Game,2025,39,7.62692,5.53536, +11903,124034,"Position Magnifique: The Battle of Mars-la-Tour, 1870",2013,42,7.47619,5.53534, +11904,148586,Chicago Stock Exchange,2013,164,6.03232,5.53533, +11905,5755,Guadalcanal,1966,176,5.99841,5.53533,"5755, 346762" +11906,417629,Boxtop Pinball: Haunted House,2024,54,7.04444,5.53533, +11907,124918,Raid the Pantry,2012,53,7.07264,5.53532, +11908,43096,WYPS,2009,40,7.57200,5.53532, +11909,195476,Master Thief,2017,101,6.34158,5.53530, +11910,56943,Seidenstraße,2009,89,6.45022,5.53530, +11911,302911,Mein Königreich für ein Pferd,2021,120,6.21386,5.53530, +11912,8093,Bulls-Eye Ball,2003,74,6.63514,5.53528, +11913,351622,Key Enigma: Calling Card,2021,46,7.30435,5.53528, +11914,221398,Eternal Kings,2019,32,8.07812,5.53527, +11915,380839,1930: The Golden Age of Airlines,2023,59,6.91424,5.53527, +11916,265712,Niepodległa,2018,52,7.09923,5.53526, +11917,4208,"The Kaiser's Battle: The German Offensive, March 1918",1980,173,6.00532,5.53525, +11918,20130,Liebrary,2005,126,6.18056,5.53525, +11919,273085,شب مافیا (Mafia's Night),2017,34,7.92647,5.53524, +11920,2405,Bezique,1860,97,6.37330,5.53524, +11921,267732,Who's She?,2019,49,7.19388,5.53523,"267732, 431960" +11922,287198,Ka Pai,2019,177,5.99424,5.53522, +11923,197633,"Agricola: Roman Campaign in Britain, AD 82-84",2017,62,6.84516,5.53521, +11924,8109,The Battle of Lobositz,1978,85,6.49059,5.53520, +11925,158316,Villainy,2014,150,6.07655,5.53520, +11926,281752,Exploit Zero: Cyberpunk Espionage and Mayhem,2019,37,7.72973,5.53520, +11926,247954,Sepoy Mutiny: The Great Indian Rebellion (1857-58),2019,37,7.72973,5.53520, +11928,10783,The Official Dealer McDope Dealing Game,1971,50,7.15900,5.53520, +11929,97433,Les victoires du Maréchal de Saxe: Fontenoy 1745 – Lauffeld 1747,2011,52,7.09615,5.53519, +11930,118953,Olympicards,2012,152,6.06908,5.53518, +11931,265461,Take a Guess!,2016,50,7.15800,5.53517,"265461, 357268, 410811" +11932,187383,Bigfoot vs. Yeti,2018,53,7.06604,5.53517, +11933,376583,Crumbs!: The Sandwich Filler Game,2024,38,7.67000,5.53517, +11934,35452,Lincoln's War,2013,109,6.27936,5.53516, +11935,8834,"Dynamo: Dunkirk, 1940",1986,68,6.72721,5.53514, +11936,155877,Jugula,2014,41,7.51220,5.53514, +11937,22399,MixUp,2006,120,6.21058,5.53514, +11938,244162,Mystery,2016,68,6.72676,5.53513, +11939,3825,Breakthrough,2001,88,6.45568,5.53512,"3825, 64051" +11940,172837,Dead Man's Chest,2015,235,5.87981,5.53512, +11941,13928,Chinagold,2004,281,5.82338,5.53511, +11942,192016,Castlecards,2016,121,6.20449,5.53511,"192016, 212688" +11943,253766,Atlantis: Island of Gods,2018,125,6.18304,5.53511, +11944,127436,Der Hobbit: Eine unerwartete Reise – Das Spiel zum Film,2012,277,5.82750,5.53511, +11945,8243,Rolit,1997,688,5.65281,5.53511,"8243, 42826, 62533" +11946,331819,Rad Zone,2021,32,8.06563,5.53510,"331819, 359231" +11947,284074,Pixel Demon's Realm,2019,34,7.91647,5.53510, +11948,1013,Energie Poker,1980,73,6.64384,5.53509, +11949,388718,Express Route,2023,45,7.33333,5.53508, +11950,386761,Balloon Pop,2023,142,6.10493,5.53508, +11951,325079,BitterSweet,2022,36,7.78194,5.53507, +11952,14355,Lonato,2002,68,6.72426,5.53506, +11953,261265,Monster-Bande,2018,61,6.86066,5.53505, +11954,107181,Scene It? Harry Potter: The Complete Cinematic Journey,2011,86,6.47488,5.53504, +11955,380189,Le Grand Voyage,2023,55,7.00455,5.53504, +11956,37444,The Big Time!,2011,54,7.03167,5.53503, +11957,26004,Bitter Woods Deluxe Edition Expansion Kit,2004,40,7.55500,5.53503, +11958,258184,The Battle for Ramadi,2018,52,7.08846,5.53502, +11959,34843,Wizard's Gambit,2008,195,5.94923,5.53501, +11960,7694,Krypto,1963,98,6.35918,5.53501, +11961,195179,Shiba Inu House,2016,260,5.84565,5.53501, +11962,249312,War for Indagar,2018,34,7.91029,5.53501, +11963,1289,All The King's Men,1970,448,5.71527,5.53501, +11964,288068,Steven Universe: Beach-A-Palooza Card Battling Game,2020,69,6.70435,5.53498, +11965,404845,Grachtenpand,2024,45,7.32778,5.53497, +11966,315978,Bitwa Warszawska,2020,38,7.65789,5.53497, +11967,69232,Show Business,2010,84,6.49524,5.53497, +11968,59650,Hatalom Kártyái Kártyajáték,1995,46,7.28804,5.53496, +11969,25760,Zoff im Hühnerhof,2006,92,6.41141,5.53496, +11970,139607,Runicards,2013,75,6.61007,5.53495, +11971,2235,Ido,1998,261,5.84387,5.53495, +11972,333693,Monopoly: The Lord of The Rings Edition,2021,74,6.62432,5.53495, +11973,390651,Vive L'Empereur!,2023,37,7.71351,5.53494, +11974,301099,Lupos,2020,83,6.50602,5.53494, +11975,55250,El Bazar,2007,65,6.77462,5.53493,"55250, 120216" +11976,365601,Gummiland,2022,55,7.00000,5.53493, +11977,218683,Alesia: Last Stand of the Gauls,2018,41,7.50000,5.53493, +11978,143048,"Goeben, 1914",2014,64,6.79375,5.53493, +11979,422045,Witchdom,2024,44,7.36591,5.53492, +11980,161913,Camelot: The Court,2014,90,6.43000,5.53492, +11981,282475,Gangsta!,2019,125,6.17934,5.53492, +11982,379395,Broad Lines,2023,81,6.52932,5.53492, +11983,420120,Snatch it!,2024,56,6.97321,5.53492, +11984,6346,NBA Showdown,2001,55,6.99909,5.53491, +11985,1396,Ben Hur,1987,82,6.51646,5.53489, +11986,2483,Viking Gods,1982,141,6.10567,5.53489, +11987,318083,Misión Rescate,2020,100,6.33947,5.53488, +11988,169743,Moons,2017,307,5.79694,5.53488, +11989,278218,VIAE: Roads of Rome,2019,42,7.45000,5.53487, +11990,303544,Bill & Ted's Riff in Time,2020,61,6.85328,5.53486, +11991,168082,Intendentes,2014,43,7.40465,5.53485, +11992,244163,Sherlock Holmes: The Challenge Of Irene Adler,2016,62,6.83139,5.53485, +11993,294773,La Résistance,2020,55,6.99636,5.53485, +11994,197944,Crabs!,2016,123,6.18829,5.53484, +11995,408842,Mysticana: A Foundation Deck,2024,44,7.36136,5.53484,"408842, 421049, 421051, 421053" +11996,302465,Obsidia,2020,47,7.24468,5.53484, +11997,203421,Ankh,2016,120,6.20450,5.53484, +11998,350759,Vault: A Solitaire Dice Game,2021,188,5.96223,5.53483, +11999,62343,Cornucopia,2010,269,5.83349,5.53483, +12000,322144,Trivial Pursuit: Horror Ultimate Edition,2020,53,7.05057,5.53483, +12001,3700,Monster Island,2002,48,7.20833,5.53482, +12002,504,Die Verbotene Stadt,1992,160,6.03688,5.53482, +12003,386270,Unboxed,2023,89,6.43719,5.53482, +12004,35306,Battlefields of Olympus,2008,139,6.11259,5.53481, +12005,235927,Dino World,2017,135,6.12970,5.53481, +12006,328302,Avec Infini Regret III: Moncontour 1569,2021,35,7.82857,5.53480, +12007,3998,Fortune,1976,162,6.03025,5.53479, +12008,80934,Cité,2010,132,6.14280,5.53479, +12009,78093,Crosshairs,2010,39,7.59231,5.53479, +12010,3024,Realm,1973,60,6.87217,5.53479, +12011,20675,King's Blood,2003,314,5.79010,5.53476, +12012,347479,Creature Feature,2022,65,6.76799,5.53475, +12013,3064,CribbGolf,1988,111,6.25676,5.53474, +12014,310300,Fruits,2020,34,7.89176,5.53474, +12015,8643,Brawling Battleships,2003,99,6.34394,5.53473, +12016,7625,Tomorrow the World,1989,112,6.25000,5.53473,"7625, 217679" +12017,274525,Soul Raiders,2024,33,7.96182,5.53472, +12018,20543,Pirates!,2005,221,5.89706,5.53471, +12019,153368,"La Bataille de Paris: 1814, le crépuscule de l'aigle",2013,41,7.48780,5.53471, +12020,163481,Takamatsu,2014,126,6.17024,5.53471, +12021,352890,Minotaur,2023,70,6.67857,5.53471, +12022,141089,Jazz: The Singing Card Game,2013,109,6.26927,5.53471, +12023,352311,Ham's Sandwich Shop,2022,63,6.80540,5.53470, +12024,283849,The Only Word: the Party Word Game,2019,85,6.47647,5.53470,"283849, 297797, 308858" +12025,183401,Sleepy Castle,2015,71,6.66197,5.53470, +12026,142417,Fuentes de Oñoro 20,2013,37,7.69730,5.53469, +12027,8356,Iron Dream,2001,57,6.93789,5.53467, +12028,341502,Tesauro,2021,37,7.69595,5.53467, +12029,174696,Hexx & Hopp,2015,125,6.17440,5.53467, +12029,5694,Highly Suspect,2002,125,6.17440,5.53467, +12031,367710,Barbaric: After the Apocalypse,2023,33,7.95697,5.53465,"367710, 433658, 433659" +12032,99308,Hike,2011,194,5.94661,5.53465, +12033,12126,18NL,1999,51,7.10098,5.53463, +12034,341289,Magistrar: Duel of the Mages,2021,67,6.72687,5.53463, +12035,11452,Suez '73,1981,56,6.96071,5.53462, +12036,329883,World Auto Racing,2022,33,7.95455,5.53462, +12037,184712,Green: The Golf Card Game,2015,62,6.82263,5.53462, +12038,258164,Zombie World,2019,43,7.39116,5.53461, +12039,80869,MUNERA: Familia Gladiatoria,2010,154,6.05292,5.53460, +12040,375712,Christmas Tree,2022,72,6.64306,5.53460, +12041,317118,Golazo,2020,47,7.23191,5.53458, +12042,347865,Peak,2021,43,7.38977,5.53458, +12043,200396,Long Range Desert Group: Special Operations Against Rommel 1941-1942,2015,102,6.31667,5.53458, +12044,138869,Empires of Zidal,2013,87,6.45138,5.53458, +12045,172414,Ball's Bluff,2015,51,7.09804,5.53457, +12046,14553,Times,1992,80,6.53125,5.53457, +12047,234299,Łotry,2017,67,6.72388,5.53454, +12048,131894,Vietnam Battles: Snoopy's Nose & Iron Triangle,2013,50,7.12800,5.53454, +12049,173755,Aquaducts,2015,65,6.76000,5.53453, +12050,1252,Pyramidis,1988,173,5.99486,5.53452, +12051,9854,Jours de gloire Campagne III: Les Campagnes de France 1792/1814,2003,47,7.22872,5.53452, +12052,398890,To the Moon: Bestest Memories,2023,34,7.87647,5.53452,"308528, 398890" +12053,165041,Cargotrain,2014,154,6.05156,5.53452,"165041, 174695, 262562, 370778" +12054,337754,Disney It's a Small World Game,2021,140,6.10312,5.53451, +12055,367469,Ghosts Love Candy Too Roll and Fright,2022,50,7.12600,5.53450, +12056,68227,Fabula,2010,360,5.75553,5.53449, +12057,359003,Los Dorem & Las runas Mágicas,2022,43,7.38488,5.53449, +12058,166633,Bounce-Off,2013,756,5.63966,5.53447,"166633, 197034, 214276, 420762, 425490" +12059,181795,The Cloud Dungeon,2015,40,7.52250,5.53447, +12060,9197,The Seven Years War,1993,72,6.63889,5.53447, +12060,240002,Endless Pass: A Viking Saga,2018,72,6.63889,5.53447, +12062,11957,InterSpace,2004,44,7.34091,5.53446, +12063,75382,Karnaxis,2010,91,6.40769,5.53445, +12064,195149,DETHRONED: The Real-Time Combat Card Game,2016,36,7.74167,5.53445, +12065,4970,Decision in France,1994,61,6.83607,5.53442, +12066,1071,Aztec,1995,73,6.62192,5.53441, +12067,5893,Haunted Mansion Game,1972,76,6.57895,5.53441,"5893, 6361" +12068,65590,Bumbesi,2010,182,5.97049,5.53441, +12069,260015,Gem Hens,2019,83,6.49048,5.53440, +12070,293274,Alexandre contre la Perse,2019,40,7.51750,5.53439, +12071,4413,Star Trek III,1985,120,6.19542,5.53439, +12072,10561,Warsaw Pact,1976,58,6.90172,5.53438, +12073,327797,Monopoly Bid,2020,347,5.76290,5.53438, +12074,9860,Jours de gloire Campagne: Le Danube,2001,55,6.97473,5.53434, +12075,2988,Sticks & Stones,1978,161,6.02627,5.53433, +12076,365308,Subway Squeeze,2022,56,6.94821,5.53432, +12077,241492,Cubeez,2018,150,6.06213,5.53432, +12078,380923,Rotten Tomatoes: The Card Game,2023,71,6.64930,5.53432, +12079,175824,Labyrinx,2017,42,7.41905,5.53432, +12080,9846,Jours de gloire Campagne II: La Pologne,2002,44,7.33295,5.53431, +12081,181005,Les taxis de la Marne,2015,98,6.34184,5.53431, +12082,154931,Pepper & Carrot: The Potion Contest,2018,81,6.51111,5.53430, +12083,153811,Wu Wei: Journey of the Changing Path,2018,49,7.14898,5.53430, +12084,1628,Elric,1977,293,5.80430,5.53430, +12085,340831,Bedeville Carnival: Collector's Box Edition,2022,98,6.34092,5.53427, +12086,402635,Surf's Up!,2024,47,7.21547,5.53425, +12087,2833,Wanted!,1999,382,5.74107,5.53425, +12088,257440,Dungeon Duel,2018,44,7.32955,5.53424, +12089,14324,Aeronef: Victorian Science Fiction Flyer Combat Rules,1999,47,7.21489,5.53424,"14324, 35678, 205613, 276209" +12090,5502,Yu-Gi-Oh! Dungeon Dice Monsters,2002,145,6.07897,5.53424, +12091,324522,Happy Dim Sum,2021,54,6.99685,5.53424, +12092,177477,Tavern Fame,2015,72,6.63111,5.53424, +12093,293236,Durchbruch: The Austro-German attack at Caporetto October 1917,2019,30,8.16667,5.53424, +12094,349575,HiFi,2024,33,7.92727,5.53423, +12095,202617,18CLE,2016,48,7.17917,5.53423, +12096,142219,All Quiet on the Martian Front,2014,51,7.08235,5.53423,"142219, 407210" +12097,18876,Gazala 1942,2005,117,6.20897,5.53422, +12098,410378,Temple Code,2024,56,6.94375,5.53422, +12099,340949,Super Truffle Pigs,2021,61,6.82787,5.53421, +12100,246571,Pichenotte Hockey,2017,41,7.45854,5.53420, +12101,172088,Fliip Football,2015,52,7.05096,5.53419, +12102,12718,Shipwreck,1999,33,7.92424,5.53419, +12103,6088,Rommel: The Last Glory in Kasserine,1981,77,6.55844,5.53419, +12104,117558,Escape: Fighting for Freedom,2013,38,7.60789,5.53416,"117558, 274908, 275033" +12105,422737,Floral,2024,50,7.11000,5.53416, +12106,92177,Articulate! Your Life,2010,119,6.19622,5.53415, +12107,153103,Mensch ärgere Dich nicht: Das Kartenspiel,2014,147,6.07007,5.53415, +12108,248196,Pumpkin Patch: Bad Seeds,2019,100,6.32150,5.53413, +12109,203195,Keep Cool,2016,65,6.74538,5.53413, +12110,68083,Gold Mine,2010,257,5.84043,5.53413, +12111,685,Marrakesh,1978,66,6.72667,5.53412, +12112,64142,"Lilliburlero: The Battle of the Boyne, July 1690",2013,44,7.32273,5.53412, +12113,359177,Farm & Furious,2022,49,7.14014,5.53411, +12114,22721,Combo King,2006,232,5.87328,5.53411, +12115,278322,Pinnacle,2019,74,6.59730,5.53411, +12116,28553,Fictionary,,54,6.99074,5.53410, +12117,4124,Austro-Prussian War,1994,71,6.64183,5.53409, +12118,154982,Venezia 2099,2014,190,5.94800,5.53409, +12119,377563,Battles in the East 1: Sandomierz Offensive and Bagration Stopped,2023,34,7.84706,5.53409, +12120,169720,War of Tanks: France 1940 – The Breakthrough at Dinant,2015,40,7.50000,5.53409, +12121,186624,Pacal's Rocket,2015,96,6.35313,5.53409, +12122,10307,The Rules With No Name,,36,7.71667,5.53406, +12123,121322,Knights of Ten,2012,56,6.93643,5.53404, +12124,3806,UNO: Star Trek,1999,227,5.87996,5.53404, +12125,392694,SPY x FAMILY: Mission for Peanuts,2023,59,6.86492,5.53404, +12126,31800,Les deux Bretagne: La guerre de succession 1341-1364,2007,37,7.65595,5.53403, +12127,17433,Rezolution: A Dark Tomorrow,2005,44,7.31818,5.53403, +12128,4780,Der Herr der Ringe: Die Zwei Türme – das Kartenspiel,2002,242,5.85839,5.53403,"4780, 237831" +12129,362216,For the Quest,2023,30,8.15000,5.53402, +12130,231032,Perfect Hotel,2017,198,5.93030,5.53401, +12131,228601,The Gate of R'lyeh,2018,56,6.93482,5.53401, +12132,285273,Raft & Scupper,2019,35,7.77514,5.53400,"153423, 285273" +12133,5728,Grand siècle,1993,46,7.23913,5.53400, +12134,1547,Janus,1975,89,6.41517,5.53400, +12135,217977,Colour Chess + Lure,2017,39,7.54487,5.53400, +12136,469,In Teufels Küche,1993,348,5.75934,5.53400,"469, 1132, 26204" +12137,256792,The Oregon Trail Game: Journey to Willamette Valley,2018,333,5.76943,5.53399, +12138,153479,Leg los!,2014,74,6.59338,5.53398, +12139,11113,Rommel in North Africa: The War in the Desert 1941-42,1986,62,6.79839,5.53398, +12140,277931,King of Indecision,2019,38,7.59605,5.53397, +12140,19676,Escrete,1982,38,7.59605,5.53397, +12142,357404,"Bonnie and Clyde, Love and Death",2022,34,7.83824,5.53396,"357404, 407298" +12143,226457,Magnificent Flying Machines,2018,118,6.19788,5.53396, +12144,347302,Glory Islands,2022,66,6.72089,5.53396, +12145,296204,KnifeTank: The Shüffling,2020,35,7.77143,5.53395, +12146,22808,Vroeger of Later,2006,72,6.62153,5.53395, +12147,332495,Key Enigma: The Butterfly Curse,2020,45,7.27407,5.53395, +12148,277035,Monster Mansion,2020,65,6.73846,5.53394, +12149,18330,Dragon Noir 1: L'Exil,1990,55,6.95727,5.53394, +12150,12936,Mentalis,1977,38,7.59342,5.53393, +12151,64431,Buraco,,103,6.29355,5.53392,"64431, 318164" +12152,160396,Arcadia,2015,296,5.79821,5.53391, +12153,349161,Captains' War,2022,86,6.44349,5.53391, +12154,368057,"Desert Victory: North Africa, 1940-1942",2022,56,6.93036,5.53390, +12155,308720,Super Dice Heroes,2020,49,7.12959,5.53390,"308720, 376985" +12156,2680,Stock Ticker,1937,429,5.71612,5.53389, +12157,2189,Pfusch,1992,128,6.14461,5.53389, +12158,246685,Witless Wizards,2018,102,6.30021,5.53388, +12159,258206,Bears&Bees,2018,113,6.22525,5.53387, +12160,260335,Astro Drive,2018,179,5.97028,5.53386, +12161,26539,Rome At War III: Queen of the Celts,2007,63,6.77381,5.53386, +12162,420040,UMATAKA,2024,35,7.76571,5.53386, +12162,412062,Unicorn Overlord: Official Card Game,2024,35,7.76571,5.53386, +12164,166019,Mafia: Vendetta,2012,174,5.98276,5.53386, +12165,262447,MeowMeow Mia,2018,65,6.73538,5.53386, +12166,391565,Champions!,2023,240,5.85917,5.53385, +12167,2749,The American Civil War,2001,416,5.72151,5.53384, +12168,29447,Guerra a Muerte,2008,75,6.57467,5.53384, +12169,124759,Famous 500: The World's Smallest Car Racing Game,2012,86,6.44140,5.53383, +12170,280730,Monster! Monster!,2019,44,7.30682,5.53382, +12171,314032,Levitation: Masters of Magic,2021,55,6.95218,5.53382, +12172,161543,Length x Wit,2014,45,7.26689,5.53381, +12173,374487,Only One Collection,2022,60,6.83333,5.53380, +12174,312904,Conan the Cimmerian: The Tower of the Elephant,2021,65,6.73282,5.53379, +12175,368852,Varmints!,2023,36,7.69861,5.53378, +12176,371539,Masters of Crime: Shadows,2022,32,7.96875,5.53378, +12177,224815,Deca Slayer,2017,82,6.48317,5.53375,"133965, 224815" +12178,15712,Egyptian Ratscrew,1975,456,5.70447,5.53375, +12179,349675,La guerre d'indépendance de Bretagne (1487-1491),2022,32,7.96563,5.53374, +12180,20031,Ahoy,2005,173,5.98353,5.53373,"20031, 176570" +12181,4967,Rome at War II: Fading Legions,2002,114,6.21623,5.53373, +12182,182487,Little Drop of Poison,2015,214,5.89720,5.53372, +12183,13667,WarGods of Ægyptus,2002,46,7.22391,5.53370, +12184,413254,Floodlands,2024,32,7.96250,5.53369, +12185,419334,Trial of The Gods,2024,38,7.57895,5.53369, +12186,12160,APBA American Saddle Racing,1970,55,6.94655,5.53369, +12187,956,Azteca,1998,151,6.04806,5.53367, +12188,3925,Elefant Hunt,1984,114,6.21491,5.53367, +12189,338747,It's Obvious,2021,109,6.24606,5.53366,"338747, 360225" +12190,7650,Battlefield: Europe,1990,100,6.31000,5.53365, +12191,7980,Mississippi Banzai,1990,63,6.76587,5.53365, +12192,145492,Der Schatz von Castellina,2013,113,6.22053,5.53365,"145492, 338425" +12193,1474,Ohio,1998,134,6.11276,5.53364, +12194,362992,Rankster,2022,61,6.80574,5.53364, +12195,18600,Ball Park Baseball,1971,42,7.38095,5.53363, +12196,130043,Fail Safe: Strategic Nuclear Warfare in the Cold War,2013,51,7.05490,5.53363, +12197,389513,Holly Oak,2023,66,6.70909,5.53363, +12198,269892,Xingu,2018,34,7.81471,5.53362, +12199,231457,Bitskrieg,2017,58,6.87069,5.53362, +12200,26840,Von 0 auf 100,2005,67,6.69104,5.53362, +12201,217431,Darien Apocalypse,2018,78,6.52756,5.53361, +12202,17591,Mohawk,1983,47,7.18298,5.53361,"17591, 415307" +12203,249692,Rare Roses,2019,80,6.50250,5.53360, +12204,247860,Fleecing Olympus,2018,64,6.74448,5.53360, +12205,21286,Parlay,2006,166,6.00030,5.53359, +12206,184566,Liber Militum: Tercios,2015,31,8.03226,5.53358, +12207,160601,Justice League Strategy Game,2014,82,6.47805,5.53357, +12208,29281,Party & Co: Original,2007,189,5.94332,5.53357, +12209,265105,Red Dragon,2019,60,6.82417,5.53357, +12210,288430,Penguinramids,2019,48,7.14583,5.53355, +12211,212969,Summoner's Isle,2019,108,6.25000,5.53354, +12212,161773,Little Cooperation,2012,160,6.01704,5.53354, +12213,209113,House of Normandy,2016,40,7.46750,5.53354, +12214,220885,Battle Ravens,2019,70,6.63857,5.53353, +12215,4764,Casino Yahtzee,1986,135,6.10615,5.53351, +12216,10447,Ostatnia Wojna Cesarzy: Front Wschodni 1914,1997,36,7.68056,5.53351, +12217,286422,Flip,2019,39,7.51538,5.53351,"286422, 288271" +12218,60280,Dresden 20,2009,44,7.28977,5.53350, +12219,356198,Space Lion: Divide and Conquer,2024,34,7.80588,5.53349, +12220,83228,Fairy Tale in My Pocket,2009,52,7.01923,5.53349, +12221,29146,Okey,,92,6.37305,5.53348, +12222,326088,Lucia,2022,50,7.07810,5.53348, +12223,680,Dune,1984,365,5.74507,5.53348, +12224,11029,Time Travel Baseball,1979,38,7.56579,5.53348, +12225,383479,Exit: The Game – Prison Break,2023,68,6.66912,5.53348, +12226,299028,Dream Catcher,2020,143,6.07343,5.53347, +12227,346625,City Chase,2021,81,6.48655,5.53347, +12228,349250,Kilim,2021,52,7.01731,5.53345, +12229,26114,Secrets of the Sea,2006,135,6.10488,5.53344, +12230,33605,Monkey Dash,2009,68,6.66765,5.53343, +12231,4349,Jutland: Duel of the Dreadnoughts,1991,80,6.49750,5.53343, +12232,13375,Submarine,2004,423,5.71572,5.53343, +12233,13651,Maori: Warriors of the Long White Cloud – Clan Warfare in New Zealand,2022,70,6.63500,5.53343,"8001, 13651" +12234,163482,15 Dias: The Spanish Golden Age,2014,119,6.18126,5.53342, +12235,214213,Light & Dark,2017,102,6.28922,5.53342, +12236,114484,Ayu,2011,32,7.94219,5.53341, +12237,271820,Forgotten Pacific Battles,2020,47,7.17340,5.53341, +12238,229408,Death Show TV,2017,72,6.60389,5.53341, +12239,351572,Pastiche: The Birth of a Masterpiece,2016,43,7.32558,5.53341, +12240,123406,Ace Detective,2013,196,5.92653,5.53340, +12241,7181,Myths and Legends,2003,102,6.28881,5.53340,"7181, 303933" +12242,303650,Disney Jungle Cruise Adventure Game,2020,529,5.67886,5.53337, +12243,322202,Usurper: A Game of Dark Factions,2021,40,7.45750,5.53336, +12244,373782,War & Write II,2023,49,7.10408,5.53336,"313470, 313739, 313777, 373782" +12245,14410,"Oh No, There Goes Tokyo!",2002,69,6.64826,5.53335, +12246,10822,The Seven Years World War,2004,60,6.81417,5.53332, +12247,300866,DOODLES: Il gioco degli scarabocchi,2019,51,7.04020,5.53332, +12248,329148,Hunted: Wode Ridge,2023,53,6.98302,5.53331, +12249,114139,1761: From Canal to Rail,2011,50,7.07000,5.53331, +12250,264089,Rebels and Patriots: Wargaming Rules for North America,2019,35,7.72857,5.53331, +12251,404983,Monopoly Knockout,2023,48,7.13361,5.53330, +12252,160470,Ice Cream Combo,2014,90,6.38667,5.53329, +12253,40446,Indian Chief,2004,66,6.69697,5.53329, +12254,17352,Subbuteo Cricket,1949,63,6.75238,5.53329, +12255,75587,1858: The Railways of Iberia,2011,57,6.88070,5.53329, +12256,128855,Pyramidion,2012,164,6.00147,5.53329, +12257,85340,Adlung Land,2010,228,5.87000,5.53328, +12258,325121,Trusis,2009,47,7.16660,5.53328, +12259,264157,Star Trek: Conflick in the Neutral Zone,2019,95,6.34105,5.53327, +12260,42498,Ambagibus,2009,71,6.61408,5.53327, +12261,368045,Too Many Cooks,2022,68,6.66174,5.53327, +12262,290140,Soviet Fallout: The Nagorno-Karabakh War – 1992-1994,2021,32,7.93125,5.53327, +12263,10716,Kemps,,145,6.06238,5.53326, +12264,121076,Home Sweet Home,2011,123,6.15691,5.53325, +12265,5364,Makruk,,60,6.81167,5.53325, +12266,193620,Neo-Morphosis: Infestation,2023,54,6.95370,5.53325, +12267,227561,Red Poppies Campaigns: Volume 2 – Last Laurels At Limanowa,2018,36,7.66389,5.53325, +12268,237415,Espinas,2017,73,6.58356,5.53324, +12269,633,Elixir,1997,1205,5.59682,5.53322, +12270,12478,Battlegame Book 4: World War II,1975,53,6.97925,5.53322, +12271,131379,Saipan 1944: A Panzer Grenadier Game,2012,41,7.40244,5.53322, +12272,336549,Potion Panic: Concoction Crafting for the Chaotically Inclined,2021,51,7.03529,5.53321, +12273,244073,Heróis de San Villano,2019,48,7.12917,5.53321, +12274,340569,Blood Orders,2022,42,7.35714,5.53321, +12274,283354,Operation Ichi-Go: Japan's Massive 1944 Offensive Across China,2020,42,7.35714,5.53321, +12276,253835,Air Flix,2021,36,7.66111,5.53321,"253835, 358637" +12277,16829,"La Bataille de l'Ebre, 1938",2005,47,7.16300,5.53321, +12278,39798,Deadlands: The Battle for Slaughter Gulch,2009,318,5.77409,5.53321, +12279,25344,18TN,2006,119,6.17689,5.53321, +12280,56022,Dice of the Living Dead,2009,123,6.15593,5.53320,"56022, 308773" +12281,226330,Trash Lords,2017,39,7.49692,5.53320, +12282,283353,Tee oder Kaffee,2019,88,6.40341,5.53320,"283353, 321599" +12283,2230,Ayanu,1987,52,7.00577,5.53320, +12284,385316,Unlock! Mythic Adventures: Professor Noside's Animal-o-matic,2023,31,8.00323,5.53319, +12285,220861,Riga,2017,141,6.07612,5.53319, +12286,223790,Neon Knights: 2086,2018,62,6.76774,5.53318, +12287,275518,Histórias de Pescador,2019,39,7.49551,5.53318,"275518, 334289" +12288,276264,Dominate Grail War: Fate/Stay night on Board Game,2019,57,6.87544,5.53317, +12289,42195,Labyrinth: The Duel,2009,177,5.96537,5.53316, +12290,10551,Pyramidos,2003,83,6.45482,5.53316, +12291,112995,Leipzig 20,2011,35,7.71857,5.53316, +12292,218045,Mike Force,2018,43,7.31163,5.53315, +12292,293890,Carnavalesco,2022,43,7.31163,5.53315, +12292,378204,Alveola: The City of Bees,2023,43,7.31163,5.53315, +12295,256021,Until the Bitter End,2018,31,8.00000,5.53315,"256021, 284849, 321092, 418009" +12296,226264,Ponkotsu Factory (ぽんこつファクトリー),2014,71,6.60986,5.53314, +12297,301366,Caves of Rwenzori,2021,50,7.06200,5.53314, +12298,270512,Gone Fishing,2019,53,6.97503,5.53313, +12299,172278,Ether Wars,2017,94,6.34606,5.53313, +12300,256957,Monkey Temple,2018,97,6.32091,5.53313,"256957, 269209" +12301,314017,UNDO: Peak of No Return,2020,95,6.33737,5.53312, +12302,183511,Destiny Aurora: Renegades,2017,48,7.12458,5.53312, +12303,109657,Ocean Limbo,2011,134,6.10299,5.53310, +12304,156023,El Cinéfilo,2013,99,6.30404,5.53309, +12305,345,Prairie Railroads,1999,57,6.87193,5.53308, +12306,33624,Trivial Pursuit: Deluxe,2007,199,5.91640,5.53307, +12307,348732,Hexaquest: The Strategic Trivia Game,2021,46,7.19130,5.53307, +12308,308385,Nytelyfe Solitaire,2020,63,6.74365,5.53306,"308385, 424171, 424172, 424174, 424175" +12309,236533,Magos y Tabernas,2017,53,6.97170,5.53305, +12310,370210,Diatoms,2025,32,7.91563,5.53305, +12311,118950,Mafia,2012,124,6.14758,5.53303, +12312,175634,Get The Cheese!,2015,235,5.85726,5.53303, +12313,231575,Hero's Crossing,2017,66,6.68727,5.53302, +12314,279928,Shadow Rivals,2019,54,6.94333,5.53301, +12315,392173,Dumb Ways to Die,2023,150,6.04058,5.53301,"392173, 423085" +12316,297663,Monster's Coffee,2020,81,6.47284,5.53300, +12317,302316,A Sky of Stars,2019,85,6.42856,5.53300, +12318,11629,Guillotine,1983,65,6.70385,5.53299, +12319,348955,Rock Paper Scissors: Deluxe Edition,2021,73,6.57534,5.53299,"348955, 398223" +12320,117986,Card Goblins,2012,55,6.91636,5.53298, +12321,249650,Korea: Fire and Ice,2018,52,6.99615,5.53298, +12322,13926,Froschkönig,2003,86,6.41756,5.53298, +12323,322556,Meenakshi Temple,2023,45,7.22333,5.53297, +12324,424751,Cat and the Tower,2024,37,7.58865,5.53297, +12325,241828,Cortés et la conquête du Mexique 1519-1521,2018,41,7.38780,5.53297,"241828, 253680" +12326,6086,Okinawa: The Bloodiest Battle of the Pacific Ocean,1979,108,6.23704,5.53296, +12327,238305,"Caldiero, 1796 (Second Edition)",2017,52,6.99519,5.53296,"34977, 238305, 325336, 421701" +12327,3612,Pro Football Fantasm,1990,52,6.99519,5.53296, +12329,176466,Fan & Mallet (団扇と小槌),2015,49,7.08469,5.53296, +12330,238041,CLUE: The Legend of Zelda,2017,78,6.50769,5.53296, +12331,152228,Second World War at Sea: Horn of Africa,2013,30,8.06667,5.53295, +12332,8134,History of War,2003,132,6.10871,5.53295,"8134, 20409, 21370, 180951" +12333,7992,Battle Cry of Freedom,2003,61,6.77869,5.53294, +12334,248421,Sonic the Hedgehog: Crash Course,2018,140,6.07571,5.53294, +12335,32346,Super Tock 4,2006,213,5.88967,5.53294, +12336,209190,Coin Quest,2016,148,6.04628,5.53294, +12337,288179,Carbon City Zero,2020,64,6.72000,5.53293,"288179, 318661, 392504" +12338,42216,Death Note Investigation Card Game,2009,89,6.38652,5.53293, +12339,35311,Sixis,2008,109,6.22963,5.53292, +12340,157053,Pocket Odyssey,2014,45,7.22000,5.53291,"157053, 190520" +12341,146746,Longstreet,2013,33,7.83333,5.53291, +12342,226426,Valerian: The Alpha Missions,2017,91,6.36703,5.53291, +12343,298618,Hatairo,2020,55,6.91273,5.53290,"280780, 298618" +12344,264221,Mini Miners,2019,52,6.99231,5.53290, +12345,407173,LOOP,2023,37,7.58378,5.53290, +12346,135650,Meltscape,2012,34,7.76471,5.53289, +12347,372881,Railway Boom,2022,45,7.21889,5.53289, +12348,351098,HE.R.O,2023,33,7.83182,5.53289, +12349,4256,Mäuse-Rallye,2001,65,6.70000,5.53289, +12350,199222,Les Maréchaux IV: Joseph 1809,2016,41,7.38293,5.53288, +12351,127650,Naval War of 1812,2012,63,6.73651,5.53287, +12352,2146,Warlock,1980,279,5.80466,5.53287, +12353,402670,Tartapies,2023,37,7.58108,5.53285, +12354,116737,Six Day War: 1967,2012,53,6.96226,5.53284, +12355,257633,Nexus Infernum,2019,73,6.57050,5.53284, +12356,24483,Wackee SIX,2004,107,6.24065,5.53283, +12357,146333,La Bataille de Leipzig 1813,2013,31,7.97581,5.53283,"123275, 131129, 135321, 140680, 146333" +12358,96188,Nuts!,2011,814,5.62580,5.53281, +12359,165888,Wongamania,2014,118,6.17415,5.53281,"165888, 184266, 284598" +12360,319602,Piggy Forest,2020,38,7.52368,5.53280, +12361,8329,"Pegasus Bridge: The Beginning of D-Day – June 6, 1944",1988,145,6.05448,5.53279, +12362,186514,Winter Thunder: The Battle of the Bulge,2015,57,6.85965,5.53279,"11448, 186514" +12363,36550,Bashni,1875,35,7.69286,5.53277, +12364,11373,Autumn of Glory,1995,61,6.77213,5.53277, +12365,125608,The Current Number of the Beast,2012,156,6.01737,5.53277, +12366,377123,Hidden Ark,2023,49,7.07551,5.53277, +12367,196612,Professor Treasure's Secret Sky Castle,2018,82,6.45427,5.53276, +12368,342257,Unsolved Case Files: Jamie Banks,2019,66,6.67758,5.53275, +12369,122809,Board of Dreams,2012,35,7.69143,5.53275, +12370,324895,Defcon,2023,60,6.79167,5.53274, +12371,227793,Simulator Soccer,2017,30,8.05000,5.53274, +12372,2436,"Murder, She Wrote",1985,107,6.23841,5.53273, +12373,388082,Demon Ship,2023,32,7.89062,5.53271,"388082, 403654" +12374,23241,Gravediggers,2005,387,5.72765,5.53270, +12375,153213,Livestock Uprising,2014,82,6.45244,5.53269, +12376,38755,College Basketball Dynasty,2008,54,6.92907,5.53269, +12377,110336,Jumpy Jack,2000,45,7.20778,5.53268, +12378,185813,Murderer's Row,2015,62,6.74839,5.53267, +12379,207378,Animal Mind,2016,90,6.37000,5.53267, +12380,383139,Decktective: Secrets in the Sand,2023,51,7.00980,5.53266, +12380,43169,Supernova: A New Exodus,2015,51,7.00980,5.53266, +12382,244910,Brainwaves: The Astute Goose,2018,77,6.51087,5.53265, +12383,159003,Raid & Trade,2015,279,5.80258,5.53265, +12384,423307,Zero to Hero,2024,64,6.70937,5.53265, +12385,8161,Fall of Berlin,1998,52,6.98077,5.53264, +12386,370911,"Quack-Quack, Corrupt Ducks",2022,49,7.06939,5.53264, +12387,6578,Electronic Dream Phone,1991,163,5.99448,5.53263,"6578, 101861" +12388,159685,Deal: American Dream,2015,91,6.35989,5.53263, +12389,337863,Cold Case: A Story to Die for,2021,83,6.43946,5.53263, +12390,158968,Maha Yodha,2014,115,6.18625,5.53259, +12391,233933,Kitty Cataclysm,2019,64,6.70703,5.53258, +12392,99777,Lupin the 3rd,2011,174,5.96451,5.53258, +12393,2605,Tri-Tactics,1925,77,6.50844,5.53257, +12394,67038,Charly,2010,282,5.79894,5.53256, +12395,271090,Doctor Esker's Notebook,2018,58,6.82759,5.53256, +12396,304766,Gears of War: The Card Game,2023,46,7.16522,5.53256, +12397,55031,Grand Slam,2014,114,6.19123,5.53255, +12398,347587,Wild Realms,2023,49,7.06449,5.53254, +12399,245753,Genesis: Battle of Champions – Tactical Collectible Card Game,2017,32,7.87812,5.53254, +12400,90002,Meatgrinder: Battle for Xuân Lộc 1975,2011,66,6.66970,5.53254,"9407, 27032, 90002" +12401,188759,Invasion Afghanistan: The Soviet-Afghan War 1979-1989,2016,40,7.40875,5.53253, +12402,347527,Turning Tides,2022,54,6.92222,5.53253, +12403,387561,Uchronicle,2023,51,7.00392,5.53253, +12404,254546,Lost Galaxy: The Intergalactic Card Game,2018,119,6.16303,5.53253, +12405,251434,Blenheim 1704 AD,2019,35,7.67571,5.53252, +12406,27926,Metropolis,1974,31,7.95161,5.53251, +12407,199690,Squirrel Rush,2016,111,6.20811,5.53251, +12408,414798,Dino Days,2024,39,7.45513,5.53251, +12409,25994,Sea Lords on the Mekong Delta,2007,53,6.94717,5.53250, +12410,151892,Sign of the Pagan,2013,47,7.12766,5.53250, +12411,386143,Star Trek: Cryptic – A Puzzles and Pathways Adventure,2023,45,7.19778,5.53249, +12412,21072,Santoska,2005,87,6.39318,5.53246, +12413,178051,SCAPE,2015,242,5.84175,5.53245, +12414,142691,World Series of Yahtzee,2012,127,6.12155,5.53243, +12415,172543,Chef Alfredo,2015,167,5.98044,5.53243, +12416,72242,Bridgetown Races,2010,132,6.09917,5.53243, +12417,133842,Four,2012,37,7.55405,5.53243, +12418,376155,Breizh 1341,2022,31,7.94516,5.53242, +12419,252712,Carrossel,2019,140,6.06650,5.53241, +12420,206202,Magic Potion,2016,43,7.27093,5.53241, +12421,388074,Baruka,2023,36,7.60833,5.53240, +12422,5447,Wealth of Nations,1975,332,5.75739,5.53238, +12423,34943,Double Shutter,2007,196,5.91340,5.53237,"34942, 34943" +12424,85468,Anno Domini: Fussball,2010,63,6.71746,5.53237, +12425,211810,Sweets Stack,2016,74,6.54122,5.53236, +12426,257138,Time Vault Soccer: Football card game,2018,32,7.86531,5.53236,"38404, 257138" +12427,324698,Alien Petshop,2022,42,7.30952,5.53236, +12428,167787,Die die DIE,2017,59,6.79746,5.53236, +12429,381881,Picky Eaters,2024,64,6.69844,5.53235, +12430,4656,The Classified Encyclopedia of Chess Variants,1994,31,7.93871,5.53234,"4656, 153759" +12431,98931,Pirates of the Caribbean: Master of the Seas Strategy Game,2011,62,6.73548,5.53234, +12432,312726,Bubble King,2020,122,6.14368,5.53233, +12433,192283,Emojito!,2016,182,5.94212,5.53233,"192283, 335957" +12434,175864,Stratego Conquest,2015,91,6.35165,5.53232, +12435,180943,Sabordage,2016,150,6.02938,5.53232, +12436,291550,Foto Fish,2020,87,6.38908,5.53231, +12437,362710,Mushroom Cats!,2022,46,7.15217,5.53230, +12438,25233,Tchin Tchin,2006,191,5.92225,5.53229, +12439,184462,Alchemidus,2015,99,6.28439,5.53228, +12440,279884,Longboat,2019,89,6.36876,5.53227, +12441,9095,Diplomacy: Classical Variant,1998,36,7.60000,5.53227, +12442,200500,Thin Ice: Survival has never been so much fun,2016,76,6.51171,5.53227, +12443,248496,Medvěd WRR: Karetní hra,2018,64,6.69531,5.53227, +12444,203027,Unterseeboot: U-Boat Solitaire,2016,49,7.05102,5.53226, +12445,33984,Code Omega,2008,138,6.07147,5.53226, +12446,31412,Dungeon Plungin',2007,50,7.02000,5.53225, +12447,358807,Glitch Squad,2023,66,6.65926,5.53225, +12448,271447,3 Laws of Robotics,2019,118,6.16246,5.53224, +12449,224060,Pigment,2017,126,6.12230,5.53223, +12450,187673,Hérois & Monstros,2015,59,6.79153,5.53221,"158988, 187673" +12451,238355,Incoming Transmission,2019,53,6.93396,5.53221, +12452,148528,Finger weg!,2013,75,6.52267,5.53220, +12453,298631,Don Carlo,2020,72,6.56389,5.53220, +12454,417741,Fall,2024,35,7.65429,5.53220, +12455,3658,Cube Farm,2002,248,5.83145,5.53217, +12456,166767,Imperial Harvest,2015,71,6.57746,5.53217,"143928, 166767" +12457,627,Royal Tank Corps,2000,70,6.59214,5.53217, +12458,290860,Sodalis,2022,32,7.85062,5.53216, +12459,244327,Rolling Bandits,2018,122,6.14016,5.53216, +12460,142277,Der Millionen Coup,2013,63,6.70952,5.53215, +12461,15678,Hoyle's Games,1742,77,6.49545,5.53215, +12462,19418,Kings Progress,2005,88,6.37500,5.53215, +12463,39070,Rappakalja Extreme,2008,113,6.18850,5.53215, +12464,60464,Black Stories 5,2009,140,6.06171,5.53214, +12465,335994,Trending Kittens,2020,43,7.25581,5.53213, +12466,32465,Didi Dotter,2007,110,6.20591,5.53213, +12467,273349,Draw Your Own Conclusions,2019,58,6.80948,5.53212, +12468,235361,Albedo,2017,73,6.54696,5.53212, +12469,111802,8-Bit Invaders,2011,60,6.76667,5.53211, +12470,166991,Addictive Alchemy,2016,42,7.29476,5.53209, +12471,319097,Gunshi: The Art of Strategy,2021,36,7.58806,5.53209,"291382, 319097" +12472,394306,Le Roy des Ribauds,2024,134,6.08425,5.53208, +12473,206666,Beneath Nexus,2016,72,6.55972,5.53208, +12474,8461,First Team: Vietnam,1986,80,6.45687,5.53207, +12475,17855,Castle Keep,2005,812,5.62315,5.53206, +12476,8179,Yellowstone Park,2003,229,5.85502,5.53206, +12477,383725,Cryptic Nature,2024,41,7.33537,5.53205, +12478,2409,Duell,1975,279,5.79704,5.53205, +12479,329613,Paper App Dungeon,2024,166,5.97741,5.53205, +12480,4683,Prochorovka: Armor at Kursk,1979,79,6.46772,5.53204, +12481,571,Papua,1992,115,6.17478,5.53204,"571, 4713" +12482,145381,The Outcast Heroes,2013,125,6.12320,5.53203, +12483,8724,Torgau,1974,46,7.13826,5.53203, +12484,243927,Boom & Zoom (Second Edition),2018,68,6.61765,5.53200,"126807, 243927" +12485,329771,Patria Libre,2023,37,7.52703,5.53200, +12486,298411,Deckchairs on the Titanic,2022,81,6.44321,5.53200, +12487,101930,Carnival,2011,522,5.67339,5.53200, +12488,7184,Weapons & Warriors: Pirate Battle,1996,112,6.19098,5.53200, +12489,244528,The Mysterious Magical Lake,2018,70,6.58571,5.53198, +12490,24475,Balam,2006,61,6.74098,5.53197, +12491,275100,The Aquicorn Cove Board Game,2019,170,5.96559,5.53196, +12492,235867,Unicorn Glitterluck: A Party for Rosalie,2017,122,6.13590,5.53194, +12493,379160,Adventure Games: Die drei ??? – Das Geheimnis der Statue,2023,57,6.82456,5.53194, +12494,321118,Battle of Shanghai 1937,2021,42,7.28571,5.53193, +12495,244080,Fenix,2019,57,6.82402,5.53193, +12496,8042,Heavy Gear Tactical,1998,74,6.52703,5.53192, +12497,351937,Carla Caramel,2022,76,6.50066,5.53192, +12498,3210,Hekla,2001,74,6.52635,5.53190, +12499,254923,That's Not Lemonade,2018,208,5.88567,5.53190,"187916, 254923" +12500,380455,War of the 3 Sanchos 1065-67,2024,53,6.91981,5.53189, +12501,170555,Who Knows Where?,2014,84,6.40741,5.53188, +12502,284926,"278th Squadron ""The Same 4 Cats"": SM79 Damned Hunchback",2018,30,7.98333,5.53188,"174731, 284926" +12503,4874,How to Host a Murder: The Chicago Caper,1985,79,6.46272,5.53188, +12504,26211,Fruit Fair,2008,139,6.06091,5.53188, +12505,323493,S.Y.N.C. Discovery,2021,43,7.24186,5.53188, +12506,7938,The Battle of Prague,1980,94,6.31383,5.53186, +12507,250525,Paleolithic,2018,50,7.00100,5.53184, +12508,376641,Klondice,2022,57,6.82035,5.53184, +12509,361065,Firefly: Misbehavin',2022,131,6.09237,5.53183, +12510,235254,Finn Billiards,2017,51,6.97157,5.53183,"219602, 235254" +12511,182406,Sealion: The Proposed German Invasion of England,2017,42,7.27976,5.53182, +12512,210097,Nisyros,2016,63,6.69683,5.53182, +12513,144,Elfenwizards,1995,110,6.19900,5.53181, +12514,249039,5 Minute Chase,2018,321,5.76042,5.53181, +12515,9084,Grunwald 1410,1992,138,6.06341,5.53180, +12516,15231,Minden Playing Card Cricket,1979,39,7.41282,5.53180, +12517,17448,Rocketmen: Axis of Evil,2005,178,5.94382,5.53179, +12518,253320,1834,2018,47,7.09221,5.53179, +12519,138945,Furor Barbarus,2013,51,6.96961,5.53179, +12520,767,Keywood,1995,59,6.77458,5.53179, +12521,412527,Dűlőre jutunk,2024,32,7.82188,5.53177, +12522,385797,Ninja Sloths,2023,63,6.69492,5.53177,"385797, 396003" +12523,155020,Animals Frightening Night!,2013,122,6.13238,5.53176, +12524,286983,Squire: The Collector of the Glorious Rarities,2019,86,6.38372,5.53176, +12525,200999,Colosseum,2016,44,7.19659,5.53176,"200999, 248781" +12526,349488,PotionSlingers,2021,33,7.75152,5.53176,"349488, 378808" +12527,245644,Kobold,2018,49,7.02653,5.53175, +12528,236466,Norway 1940,2018,36,7.56611,5.53175, +12529,6085,East & West: The Third Mondial War,1981,94,6.31064,5.53174, +12530,362418,Grove,2022,50,6.99600,5.53174, +12531,340744,Kezao,2020,91,6.33626,5.53174, +12532,38929,Taurus,2008,32,7.81875,5.53173, +12533,223946,War of Supremacy,2019,49,7.02490,5.53172, +12534,288605,Labyrinthos,2020,40,7.36050,5.53171, +12535,7834,3 Stones,2000,101,6.25594,5.53171, +12536,417719,Virus!: Roll & Write,2024,37,7.50838,5.53171, +12537,16608,Jewels in the Attic,1992,43,7.23256,5.53170, +12538,7607,Attakube,2001,67,6.62313,5.53170, +12539,381,X Pasch,1996,107,6.21495,5.53169, +12540,209850,Reef Route,2016,141,6.05014,5.53169, +12541,18531,The Complete Book of Wargames,1980,76,6.49342,5.53169,"14235, 18531" +12542,411402,Whispering Woods,2024,32,7.81562,5.53168, +12543,322759,Безумная кухня,2020,52,6.93654,5.53167, +12544,217210,Banana Wars: US Intervention in the Caribbean 1897-1933,2020,38,7.45395,5.53167, +12545,364643,Jakub Wędrowycz: Dziki Samogon,2022,90,6.34319,5.53166,"364643, 422559" +12546,41247,Mia,600,217,5.86820,5.53166, +12547,206061,Snooker Solitaire,2016,42,7.27024,5.53165, +12548,2824,Sixteen Thirty Something,1995,114,6.17193,5.53164, +12549,342684,The Ghost in the Attic,2021,32,7.81250,5.53164, +12550,229405,Ambition,2017,34,7.67794,5.53163, +12551,41757,Opus-Dei: Existence After Religion,2008,150,6.01811,5.53163, +12552,3937,Games of Art,1975,78,6.46705,5.53163,"3937, 30503, 30691, 30765, 147863, 234137" +12553,225740,Skull Port,2017,49,7.02041,5.53162, +12554,276023,Shadows of Macao,2019,98,6.27592,5.53162, +12555,8110,The Battle of Raphia,1977,105,6.22619,5.53162, +12556,129313,Custer's Final Campaign: 7th Cavalry at Little Bighorn,2012,82,6.42073,5.53161, +12557,137968,Schmovie,2013,133,6.07977,5.53161, +12558,125400,Nieuport 1600,2012,51,6.96078,5.53160, +12559,179918,The Producer: 1940-1944,2015,152,6.01099,5.53159, +12560,361140,Heroes & Wizards,2022,46,7.11565,5.53159, +12561,194810,Marvel Universe Miniature Game: The Avengers Starter Set,2016,36,7.55556,5.53159,"194810, 194812, 194813, 203634, 207417, 213856" +12562,130556,Shark Attacks!,2012,133,6.07932,5.53158, +12563,368467,Doomensions: Pop-Up Mystery Manor,2023,46,7.11522,5.53158, +12564,192344,Booo!,2017,95,6.29839,5.53158, +12565,342409,蒼天之死 (Death of Heaven),2021,37,7.50000,5.53157, +12566,129971,Master Plan,2012,130,6.09154,5.53156, +12567,5935,Drive on Frankfurt,1987,57,6.80842,5.53155, +12568,39324,Pass the Popcorn! Game,2008,322,5.75756,5.53155, +12569,3560,Ice War,1978,143,6.04028,5.53154, +12570,363696,Micro Bots: Duel,2023,44,7.18477,5.53153,"305533, 363696" +12571,298608,Crime Story: Berlin,2020,78,6.46410,5.53153, +12572,3161,Port Stanley: Battle for the Falklands,1984,86,6.37733,5.53153, +12573,3317,Royal Hearts,2001,75,6.50133,5.53153, +12574,134419,The Golden Wilderness,2013,56,6.83036,5.53153, +12575,170608,People-Person!,2014,34,7.67059,5.53153, +12576,270113,Deckscape: Demo,2017,88,6.35795,5.53153, +12577,2362,Tower of the Wizard King,1993,176,5.94472,5.53153, +12578,277018,Kanban Menu,2019,54,6.87796,5.53152, +12579,201026,Warlords,2016,41,7.30488,5.53152, +12580,263809,Zombie Bus,2018,86,6.37674,5.53151, +12581,275715,Paras,2019,42,7.26190,5.53151, +12582,25069,Med andra ord,2001,169,5.96142,5.53150,"25069, 345971, 372224" +12583,173336,Million Club,2016,153,6.00614,5.53148, +12584,194438,SixStix,2015,82,6.41707,5.53148, +12585,32086,1939-45 Harc Európáért,1986,44,7.18182,5.53148, +12586,315045,"Mediterranean Empires: The Struggle for the Middle Sea, 1281-1350 AD",2021,38,7.44211,5.53147, +12587,235992,Battle of Changsha: Sept. 1941 - Jan. 1942,2019,32,7.80000,5.53147, +12588,332925,Kingdoms Rise & Fall: Dorian,2023,36,7.54722,5.53146, +12589,7967,Mutiny!,2003,527,5.66915,5.53146, +12590,31846,Liberia: Descent Into Hell – The Liberian Civil War 1989-1996,2008,44,7.17955,5.53144, +12591,355346,Tolling of the Bell,2022,32,7.79688,5.53143, +12591,353131,Grand Archive Trading Card Game: Dawn of Ashes Prelude,2022,32,7.79688,5.53143, +12593,22673,Seismic,2006,275,5.79503,5.53143, +12594,283217,Kenny G: Keepin' It Saxy Game,2019,221,5.85932,5.53141, +12595,417224,Onstage,2024,33,7.72727,5.53141, +12596,174618,Schäferstündchen,2015,94,6.30213,5.53141, +12597,294955,Moonshell,2021,50,6.98000,5.53140, +12598,377303,Kbernestich,2022,31,7.86774,5.53140, +12599,249362,SSO,2018,68,6.59647,5.53140, +12600,400166,RIP,2023,51,6.95098,5.53139, +12601,19766,City of Heroes CCG,2005,101,6.24792,5.53137, +12602,561,Flußpiraten,1990,113,6.17167,5.53137, +12603,8651,Pi mal Daumen,1999,77,6.47100,5.53136,"8651, 161539" +12604,403122,Along History,2023,40,7.34000,5.53136, +12605,404846,Bable,2024,41,7.29512,5.53135, +12606,124881,Swordfish,2012,197,5.89843,5.53135, +12607,184688,TREXO,2015,77,6.47013,5.53134, +12608,294710,Outrun,2021,46,7.10217,5.53132, +12609,148939,A Night in Deepwail Manor,2013,51,6.94804,5.53132, +12610,23908,Metromania,2006,306,5.76742,5.53132, +12611,7378,Sprouts,1967,240,5.83228,5.53131,"7378, 7450, 11753, 18096, 38511, 42891, 66341, 351039" +12612,267415,Operation Serval: Expeditionary Warfare in Central Africa,2019,31,7.86129,5.53131, +12613,40766,Vera Discordia,2010,39,7.38333,5.53131, +12614,5464,Calypso,1987,54,6.86852,5.53130,"5464, 122680" +12615,373744,Escape Room: The Game – Puzzle Adventures: Mission Mayday,2022,41,7.29195,5.53129, +12616,21447,Brother against Brother,1997,42,7.25000,5.53129, +12617,257644,"Battle of Quebec, 1759 Game",2018,33,7.71818,5.53128, +12618,260322,Potions Class,2018,123,6.11780,5.53127, +12619,31516,Phenomena,2007,69,6.57681,5.53127, +12620,203715,The Shooting Party,2016,76,6.48026,5.53127, +12621,209542,Diesel Demolition Derby,2017,152,6.00560,5.53126, +12622,244039,40,2018,68,6.59118,5.53124, +12623,377858,Salty,2022,40,7.33250,5.53123, +12624,215806,IKAN,2017,47,7.06383,5.53123, +12625,118330,Roll to the South Pole,2012,145,6.02793,5.53122,"113936, 118330" +12626,386061,Audition,2023,51,6.94314,5.53122, +12627,246911,Streets Of Steel: Kickin' Asphalt,2020,72,6.53125,5.53121,"246911, 329429" +12628,10529,Crusoe's Planet,2001,32,7.78125,5.53121, +12628,97595,Operation Squad: World War Two,2011,32,7.78125,5.53121, +12630,229909,Dungeon of Darkness,2017,42,7.24524,5.53121, +12631,367241,Una Vittoria Impossibile: Le Barricate di Parma del 1922,2022,38,7.42500,5.53120, +12632,312968,Pitch&Plakks,2021,118,6.14093,5.53119,"312968, 331433" +12633,9932,Champs de bataille: Soissons 486 et Poitiers 732,1996,57,6.79298,5.53118, +12634,20117,Chaos Arena,1992,68,6.58824,5.53116, +12635,117555,CLACK!,2012,370,5.72538,5.53115,"117555, 271448, 325842, 345118" +12636,284192,Fairy Season,2019,69,6.57254,5.53115, +12637,20053,Red Vengeance,2005,109,6.19037,5.53115, +12638,318613,Marvel Battlegrounds,2020,32,7.77656,5.53115, +12639,197893,Crazy Mistigri,2016,189,5.91113,5.53113, +12640,77200,All Time Championship Soccer,2010,38,7.42105,5.53113, +12641,123635,PLAGUE: The Card Game,2012,121,6.12446,5.53112,"123635, 145275" +12642,64570,1843,2011,44,7.16250,5.53112, +12643,6118,Discovery,2002,182,5.92527,5.53110, +12644,644,Shipwrecked,2000,430,5.69786,5.53109,"644, 232635" +12645,11477,The First Arab-Israeli War,1997,64,6.65156,5.53109, +12646,141920,Supremacy 2020,2015,35,7.57943,5.53108,"141920, 355848" +12647,123923,Super Hero Squad Card Game,2012,59,6.74576,5.53107, +12648,367543,Cat Magic the Game,2022,34,7.63824,5.53106, +12649,42591,Summer Lightning: The Invasion of Poland 1939,2011,60,6.72500,5.53105, +12650,147352,Cuboro Tricky Ways,2013,79,6.43776,5.53105, +12651,193103,Ameritocracy,2016,33,7.70000,5.53103, +12652,17208,Battlegroup,2005,72,6.52500,5.53102, +12653,237715,Castle Climbing Frog,2017,68,6.58338,5.53102, +12654,12455,Attila: Scourge O'God,1997,53,6.88113,5.53102, +12655,107173,Stalag 17,2011,216,5.86227,5.53102, +12656,190828,I Love Portugal,2016,48,7.02096,5.53100, +12657,401310,Make10,2023,64,6.64844,5.53100,"335729, 401310" +12657,230146,Obelisk,2017,64,6.64844,5.53100, +12659,281477,Lawrence of Arabia: The Arab Revolt 1917-18,2019,75,6.48453,5.53100, +12660,217229,Ubongo! Junior 3-D,2017,64,6.64828,5.53100, +12661,112210,Metro 2033,2011,400,5.70975,5.53100,"81843, 112210" +12662,287946,Kingdom of Middag,2019,55,6.83091,5.53099, +12663,8909,Lu Zhan Jun Qi,,148,6.01399,5.53099, +12664,343980,Shadowgate: The Living Castle,2022,41,7.27317,5.53097, +12665,17779,Kaiser,1965,45,7.11778,5.53096, +12666,9913,"Alésia, 52 Av. J.-C.: César contre Vercingétorix",1998,54,6.85278,5.53094,"9913, 23063" +12667,39515,Limit,2009,52,6.90308,5.53093, +12668,296559,Munich War: World War II in Europe 1938,2020,31,7.83226,5.53093, +12668,375384,NAWALLI,2022,31,7.83226,5.53093, +12670,7991,Napoleon and the Archduke Charles: The Battle of Eckmuhl,1987,99,6.25152,5.53093, +12671,186755,Cadaver,2016,132,6.07126,5.53092, +12672,116736,Somali Pirates,2012,48,7.01667,5.53092, +12673,167190,Of Dungeons Deep! (Second Edition),2015,92,6.30607,5.53091,"153220, 167190" +12674,8531,PDQ: The Pretty Darn Quick Word Game,2003,87,6.35057,5.53091, +12675,15721,N-Tropy,2004,242,5.82550,5.53090, +12676,218923,Pitch Deck,2017,70,6.54929,5.53090, +12677,708,Holy War: Afghanistan,1991,104,6.21635,5.53090, +12678,5725,The Journeys of Paul,1990,162,5.97078,5.53089, +12679,257604,Macbeth,2018,66,6.61013,5.53088, +12680,329175,4Mation,2021,74,6.49324,5.53087, +12681,612,Kippit,1999,166,5.95982,5.53087, +12682,5778,Chancellorsville (Second Edition),1974,179,5.92849,5.53086,"5778, 13614" +12683,37391,Scotland Yard,1982,71,6.53310,5.53085, +12684,230792,Roswell 51,2017,126,6.09548,5.53084,"125832, 230792, 282058" +12685,14709,Gangs of Mega-City One,2005,44,7.14773,5.53084, +12686,200632,QANGO,2016,322,5.75167,5.53083, +12687,11135,Balkans 1941,1996,65,6.62462,5.53082, +12688,311751,I Am Death Now?,2020,91,6.31209,5.53082, +12689,8322,"Chad: The Toyota Wars, 1979-1988",1991,118,6.13305,5.53081, +12690,40238,Order Up,2009,136,6.05331,5.53080, +12691,8577,Home Before the Leaves Fall: The Marne Campaign 1914,1997,63,6.65873,5.53080, +12692,208801,Phobos Rising! Insurgency on Mars,2016,91,6.31154,5.53080, +12693,375567,All In: A Flip&Write Showdown,2023,71,6.53099,5.53078, +12694,205506,Huh?,2016,117,6.13769,5.53078,"205506, 334582" +12695,26486,"Maida and Castel Nuovo, 1806",2006,33,7.68182,5.53077, +12696,245609,"Banish All Their Fears: Bayonet & Musket Battles, Volume 1",2024,50,6.94973,5.53076, +12697,209014,Front Line No Komrades,2016,148,6.01014,5.53076, +12698,240322,Annapurna,2021,70,6.54429,5.53076, +12699,151357,SEVEN,2013,40,7.30425,5.53075,"151357, 247312, 258562" +12700,237569,MasterSweets,2018,62,6.67468,5.53075,"237569, 263153" +12701,22094,A Book of Sandhurst Wargames,1982,71,6.52958,5.53074,"2861, 2939, 2966, 2976, 22094" +12702,280821,Dwarven Beerfest,2020,36,7.50000,5.53073, +12703,130725,Jackal & High,2012,167,5.95522,5.53073, +12704,305723,Pyrga,2014,80,6.41662,5.53072, +12705,379075,El Camino Español,2023,34,7.61412,5.53071, +12706,232501,Stacked,2020,47,7.03768,5.53070, +12707,412381,Sandbag,2024,90,6.31728,5.53069, +12708,24704,Stratego: Marvel Heroes,2007,90,6.31700,5.53068, +12709,223286,Bullets and Teeth,2017,99,6.24547,5.53068, +12710,17996,Anno Domini: Seefahrer & Flieger,1999,47,7.03617,5.53067, +12711,13837,Kirovograd,1983,54,6.84074,5.53067, +12712,12111,Grand National,2001,41,7.25610,5.53067, +12713,43110,Anno Domini: America,2009,48,7.00417,5.53066, +12714,345069,Karigar-e-Taj,2023,42,7.21429,5.53065, +12715,2710,Quivive,1998,311,5.75800,5.53065,"2710, 18902" +12716,280192,Alleswisser,2016,50,6.94413,5.53064, +12717,226736,Good Little Martian,2017,73,6.49863,5.53063, +12718,318484,Airships: North Pole Quest,2021,44,7.13636,5.53063, +12719,376612,Kongkang: The Wild Party,2022,52,6.88923,5.53063,"260707, 376612" +12720,179912,Gladiator: Quest for the Rudis,2016,59,6.72780,5.53062, +12721,290756,Sirvam o Rei,2019,42,7.21190,5.53061, +12722,153745,Dungeon Scroll,2016,91,6.30604,5.53059, +12723,425235,Point of View: Lost Places,2024,42,7.21012,5.53058, +12724,3727,Carla Cat,1955,666,5.63646,5.53057, +12725,322229,"War for America: The American Revolution, 1775-1782",2022,52,6.88654,5.53057, +12726,25516,A Fatal Attraction: The Gallipoli Campaign,2007,69,6.55217,5.53056, +12727,155943,Stac,2015,53,6.86038,5.53055, +12728,372824,Aventureros y el Medallón de Ra,2022,40,7.29250,5.53055, +12729,292962,The Suits: Season 3,2019,80,6.41125,5.53054,"287345, 292961, 292962, 322808, 329458" +12730,10264,"The First Afghan War, 1839-42",1996,62,6.66694,5.53054, +12731,381072,Gerónimooo!!!,2023,45,7.09600,5.53054, +12732,130764,Mr. Card Game,2014,172,5.93995,5.53053, +12733,1047,MeM,1968,39,7.33590,5.53052, +12734,8415,En Pointe Toujours II: Normandie 1944,2000,36,7.48611,5.53052, +12734,217794,Otto the Octopus,2016,36,7.48611,5.53052, +12736,222401,Campus Café,2018,66,6.59697,5.53051, +12737,27830,Gemlok,2007,181,5.91933,5.53051, +12738,194874,Fishy Tactics,2016,80,6.41000,5.53050, +12739,9339,Alexander at Tyre,1993,50,6.93700,5.53049, +12740,265682,Dunaïa,2021,82,6.38780,5.53048, +12741,148047,Boom: Runaway,2014,84,6.36726,5.53047, +12742,27127,Montebello,2006,40,7.28750,5.53047, +12743,4266,Troy,1977,55,6.80818,5.53046,"1789, 4266" +12744,383983,Bone Wars,2024,34,7.59706,5.53046, +12745,338549,Cold Case: A Pinch of Murder,2021,57,6.76316,5.53046, +12746,192605,Iliad: Heroes of Troy,2016,96,6.26198,5.53044, +12747,380681,Apex Legends: The Board Game,2024,32,7.72500,5.53044, +12748,279649,Balk,2019,63,6.64508,5.53044, +12749,10394,Avalanche: The Salerno Landings,1976,43,7.16279,5.53043, +12750,133620,Yay!,2012,106,6.19245,5.53042, +12751,298705,Animal Rescue,2020,93,6.28495,5.53042, +12752,8913,"The Russo-Turkish War, 1877-78",1992,103,6.21165,5.53042, +12753,313100,"Bye, Felicia!",2020,83,6.37578,5.53042, +12754,204496,Villannex (2nd Edition + expansions),2016,174,5.93362,5.53041,"162654, 204496" +12755,3666,Raider!: A Tactical Game of Commerce Raiding in WWII,1981,51,6.90588,5.53041, +12756,314336,The Quest Kids: Matching Adventure,2021,43,7.16078,5.53039, +12757,140693,Fox & Chicken,2013,69,6.54638,5.53039, +12758,360740,Jenga Maker,2022,64,6.62500,5.53037, +12759,979,The Powerpuff Girls: Saving the World Before Bedtime,2000,214,5.85765,5.53036, +12760,11648,Warmaster,1993,68,6.56029,5.53036, +12761,120886,Quicksilver,2013,139,6.03418,5.53036, +12762,67542,Essentia,2010,32,7.71875,5.53036,"67542, 152098" +12763,305855,Napoleon's Imperium,2021,42,7.19762,5.53036, +12764,97521,Disaster on K2,2011,56,6.78036,5.53035, +12765,5494,Talkin' Tango,2000,83,6.37349,5.53034, +12766,158887,"Fields of Battle Volume 1, The Great Northern War",2014,37,7.42162,5.53034,"158887, 222227" +12767,133524,Caro,2012,100,6.23000,5.53033, +12768,42789,Restaurant Row,2009,68,6.55882,5.53032, +12769,342987,Antarctica,2021,83,6.37289,5.53032, +12770,3240,Victory at Sea,1992,42,7.19524,5.53031, +12771,14088,Starfight,2004,49,6.95714,5.53031, +12772,133713,Vem aí a Troika,2012,158,5.97277,5.53031, +12773,6940,The Battle of the Alma,1978,83,6.37229,5.53030, +12774,397747,Speculaas,2024,31,7.78387,5.53029, +12775,4336,Cromwell's Victory: The Battle of Marston Moor,1985,89,6.31517,5.53028, +12776,341230,Duelists,2022,42,7.19286,5.53027, +12777,369549,All Roads,2022,85,6.35176,5.53027, +12778,330307,NOCAUT!,2021,39,7.32051,5.53027, +12779,11084,Jumbo & Co,2004,187,5.90355,5.53026, +12780,66517,Zaic,2010,50,6.92600,5.53025, +12781,38975,Mutton,2009,75,6.46067,5.53025, +12782,419720,Australis,2024,39,7.31949,5.53025, +12783,215389,Head of Mousehold,2017,63,6.63698,5.53023, +12784,371836,OCEAN: Great Barrier Reef,2022,39,7.31795,5.53022, +12785,31302,Advanced Dungeons & Dragons Battlesystem (Second Edition),1989,317,5.75016,5.53022,"11187, 31302" +12786,65521,Chaos,2010,179,5.91961,5.53022, +12787,709,Dragons of Glory,1986,86,6.34058,5.53021, +12788,1130,Halali,1997,113,6.14690,5.53021, +12789,355730,Spectrum,2022,38,7.36316,5.53019, +12790,11412,Wallamoppi,2005,227,5.83700,5.53019, +12791,88147,Adaman,2010,115,6.13565,5.53018, +12792,312613,Oversiege,2020,66,6.58515,5.53018, +12793,404455,The Dick Sits,2024,169,5.94201,5.53017, +12794,20054,"Red God of War: The Soviet Operation Mars, 1942",2005,76,6.44539,5.53015, +12795,6417,Dredd: The Card Game,1999,48,6.97917,5.53015, +12796,160545,Crazier Eights,2014,88,6.32045,5.53015,"160545, 209853, 236869, 258538, 269172, 302397, 309137" +12797,146014,Dreadball: KickOff,2013,49,6.94898,5.53014, +12798,7641,Three of a Crime,1991,195,5.88667,5.53014, +12799,374026,OPEN,2022,81,6.38827,5.53013, +12800,287586,Top Secret,2019,98,6.23857,5.53010, +12801,263323,What's The Point?: The Cactus Card Game,2020,35,7.51371,5.53010, +12802,427084,Superstore 3000,2024,54,6.81574,5.53010, +12803,166931,Ghost Blaster,2014,124,6.08992,5.53009, +12804,311711,Atelier,2020,46,7.03913,5.53009, +12805,213834,Four Elements,2017,61,6.66721,5.53007,"213834, 287135" +12806,171579,Dwarves Inc.,2015,55,6.79091,5.53006, +12807,8304,So Long Sucker,1964,92,6.28326,5.53004, +12808,186489,Elementos,2015,82,6.37500,5.53004, +12809,331795,Robotech: Reconstruction,2023,35,7.50857,5.53002, +12810,22233,Fischmarkt,2006,96,6.25104,5.53001, +12811,341193,Joystick Heroes,2022,38,7.35132,5.53000, +12812,2751,Lawrence of Arabia: The British Offensive – September-October 1918,1983,103,6.20194,5.53000, +12813,41835,Minotaurus,2009,1023,5.59765,5.53000, +12814,391761,Give Me The Treasure,2023,50,6.91400,5.53000, +12815,381629,Holiday Hijinks #7: The Turkey Trial,2023,35,7.50714,5.53000, +12816,5173,Avalanche: The Invasion of Italy,1994,87,6.32529,5.52999, +12817,194966,Among Thieves,2017,44,7.10227,5.52999, +12818,247526,The Snitch,2018,73,6.47740,5.52998, +12819,373062,Pocket Farm,2022,43,7.13837,5.52998,"309431, 373062" +12820,8652,The Haunted Clock Tower,1994,179,5.91631,5.52998,"8652, 193150" +12821,6007,Fortress Stalingrad,1988,85,6.34353,5.52998, +12822,16874,Vince Lombardi's Game,1970,37,7.39892,5.52998,"16874, 28321" +12823,228373,1868,2017,51,6.88529,5.52996, +12824,88925,Records of Three Kingdoms 190-280,2011,43,7.13721,5.52996, +12825,378496,Gnaughty Gnomes,2024,40,7.25750,5.52996, +12826,17132,1800: Colorado,2002,115,6.13070,5.52995, +12827,707,When Tigers Fight,1994,101,6.21386,5.52994, +12828,5994,Tsushima,1989,91,6.28901,5.52994,"5994, 271130" +12829,6049,Czechoslovakia 1938,1993,85,6.34235,5.52994, +12830,238108,Animo: Living Deck Bible Verse Card Game,2017,39,7.30051,5.52993, +12831,204461,Major General: Duel of Time,2017,112,6.14643,5.52993, +12832,197638,"Enduring Freedom: US Operations in Afghanistan, 2001-2002",2017,32,7.68750,5.52993, +12833,42627,MidEvil Deluxe,2009,578,5.64934,5.52992,"15738, 42627" +12834,211457,Sucesos Argentinos,2016,59,6.69951,5.52991,"211457, 319713, 319715, 319716, 347403" +12835,369679,Spanta,2023,34,7.55882,5.52990, +12836,256609,Nunami,2020,51,6.88235,5.52990, +12837,2164,Square Off,1972,104,6.19269,5.52988,"2164, 190484" +12838,312593,Rokumon,2020,40,7.25250,5.52987, +12839,38679,Tenka,2008,84,6.34976,5.52986,"38679, 164072" +12840,306579,"Scream, Aim, Fire!",2021,38,7.34211,5.52985, +12841,356304,Eyelet,2022,51,6.87980,5.52985, +12842,231587,Hockey on Cards,2017,37,7.39054,5.52984, +12843,22910,Naruto Collectible Card Game,2006,123,6.08943,5.52984,"22910, 153195" +12844,242818,Dice Wars: Heroes of Polyhedra,2018,83,6.35904,5.52984, +12845,4935,Test of Arms,1988,100,6.21800,5.52983, +12846,126941,Seven Swords,2013,79,6.40030,5.52981, +12847,300088,"Knock, Knock! Dungeon!",2020,102,6.20392,5.52981, +12848,362484,Mimic Octopus,2022,59,6.69492,5.52980,"362484, 365843, 365844" +12849,253074,Exodus: Paris Nouveau,2018,133,6.04662,5.52980, +12850,42370,Vittoria 20,2009,34,7.55147,5.52980, +12851,308231,CHAINsomnia,2018,60,6.67500,5.52979, +12852,193301,Sail Away,2016,146,6.00041,5.52979, +12853,248956,Fry Thief,2019,56,6.75607,5.52977, +12854,341426,If It Fits,2021,182,5.90698,5.52976, +12855,334537,Altay: Dawn of Civilization,2024,42,7.16429,5.52976, +12856,319295,National Lampoon's Christmas Vacation: Twinkling Lights Game,2020,113,6.13717,5.52975, +12857,245058,The Neverland Rescue,2019,66,6.56970,5.52975, +12858,411015,Sosig,2023,61,6.65410,5.52973, +12859,34185,Cartagena: Die Goldinsel,2008,157,5.96656,5.52973, +12860,293691,Rick and Morty: The Morty Zone Dice Game,2019,63,6.61813,5.52973, +12861,182172,Allies: Realm of Wonder,2015,92,6.27457,5.52971, +12862,244922,Geisterfalle,2018,53,6.82264,5.52971, +12863,123223,Pike & Shotte,2012,43,7.12326,5.52970, +12864,371071,Tails on Fire,2022,119,6.10530,5.52969, +12865,7169,Heroes of the Soviet Union: The Defense of Mother Russia 1942-43,2001,88,6.30795,5.52969, +12866,282910,Cosmic Run: Express,2019,53,6.82170,5.52968, +12867,272803,Monopoly Gamer: Overwatch Collector's Edition,2019,62,6.63387,5.52968, +12868,13800,"Cambrai, 1917: The First Blitzkrieg",1974,42,7.15952,5.52967, +12869,34245,Wizards of Mickey CCG,2008,66,6.56667,5.52967,"34245, 330746" +12870,85124,The Battle of Stalingrad,2012,43,7.12093,5.52966,"9040, 85124" +12871,81588,OMEGA,2010,43,7.12023,5.52965,"81588, 201368" +12872,163099,V-Wars,2015,111,6.14550,5.52963, +12873,140857,Renaissance Man,2013,324,5.74059,5.52963, +12874,147735,Liberation 1944: The British Campaign in North West Europe – A Panzer Grenadier Game,2013,33,7.60000,5.52962, +12875,224039,Farsight,2017,57,6.72807,5.52961, +12876,175704,Racing Hedgehogs,2013,69,6.51957,5.52961, +12877,255696,Jungle Race,2018,176,5.91761,5.52960,"67144, 255696" +12878,160762,Oni,2014,112,6.13929,5.52960,"160762, 258844" +12879,152848,Knockout,2014,52,6.84192,5.52958, +12880,93639,Time's Up!: Best Of,2010,32,7.66181,5.52958, +12881,8720,North German Plain,1988,103,6.19175,5.52957,"8720, 294491" +12882,397139,Pawlitics: Candidogs vs. Politicats,2023,34,7.53529,5.52956, +12883,282300,Pitt's War,2019,52,6.84038,5.52955, +12884,173302,News@11,2015,93,6.26237,5.52954,"173302, 256607, 274217" +12885,14299,Tunisie 1943,1995,47,6.97872,5.52953, +12886,34890,"Assault on Sevastopol: Von Manstein in the Crimea, 1942",2008,66,6.56136,5.52952,"4674, 34890" +12887,256170,Schönbrunn,2018,42,7.15048,5.52951, +12888,198825,Incantris,2017,64,6.59312,5.52951, +12889,322183,Sherlock Fantasy: Felices para siempre,2020,46,7.00870,5.52950, +12890,10880,Calciomania,1985,63,6.60952,5.52950, +12891,150429,Carrier Battlegroup: Solitaire,2014,52,6.83750,5.52949, +12892,267133,Carnavalo,2018,61,6.64426,5.52948, +12893,8441,En Pointe Toujours III: Koursk 1943,2003,34,7.52941,5.52948, +12894,387198,Yatai,2024,33,7.58970,5.52947, +12895,254322,Marvel Strike Teams,2018,87,6.31091,5.52947, +12896,398772,Stich für Stich,2023,96,6.23750,5.52947, +12897,36478,Gridstones,2008,76,6.42368,5.52946, +12898,4778,Sinaí,,90,6.28444,5.52946, +12899,38881,Paul Koenig's D-Day: Utah and Omaha – The American Beaches,2008,46,7.00652,5.52945, +12900,3617,Operation Pegasus,1980,70,6.50000,5.52945, +12901,190073,The Contender: The Game of Presidential Debate,2015,118,6.10508,5.52945, +12902,23614,Imperial Sunset: The Battle of Leyte Gulf 1944,2006,57,6.72105,5.52944, +12903,5878,Loteria,1887,249,5.80212,5.52943,"5878, 297781" +12904,229703,Adellos,2018,43,7.10837,5.52943, +12905,311708,Oracle,2020,66,6.55803,5.52943, +12906,319766,X-Scape: Das Atelier des Magiers,2020,43,7.10814,5.52943, +12907,55999,Les Nettoyeurs,2009,38,7.31579,5.52943, +12908,5701,Dark Blades,1986,62,6.62419,5.52942, +12909,291400,Trench War,2021,32,7.65000,5.52942, +12910,394699,Spellbloom,2024,39,7.26923,5.52941, +12911,7943,BattleTech: Battletroops,1989,232,5.82186,5.52941,"3476, 7943" +12912,7829,Eagles of the Empire: Friedland,1995,60,6.66000,5.52941, +12913,2757,Marine: 2002 – A Game of the First Lunar War,1979,95,6.24335,5.52940,"2757, 40682" +12914,21798,HysteriCoach,2006,311,5.74748,5.52940, +12915,218615,Tropico,2017,80,6.37704,5.52940,"180927, 218615" +12916,253862,Little Monster That Came For Lunch And Stayed For Tea,2018,109,6.15138,5.52939, +12917,15432,Pour Dieu et pour le Roy,2005,41,7.18293,5.52939, +12918,300400,Crossed Words,2020,105,6.17467,5.52937, +12919,63906,Collusion,,39,7.26667,5.52937, +12920,335204,"""I Would Kill Hitler""",2021,43,7.10465,5.52936,"335204, 360950, 401011, 401013, 426949, 426950" +12921,276669,Sensor Ghosts,2020,51,6.85725,5.52936, +12922,272692,Medieval Pong,2019,81,6.36543,5.52936, +12923,27852,Taifa,1998,56,6.73839,5.52935,"27852, 254130" +12924,144587,Atacama,2013,162,5.94728,5.52935, +12925,38828,"The Finnish Front, 1941-42",2009,55,6.76000,5.52934, +12926,310076,Roundforest,2020,90,6.28111,5.52933, +12927,191178,Wolfed,2016,63,6.60323,5.52933, +12928,25749,Gangster,2006,133,6.03797,5.52933, +12929,271043,UNDO: Blood in the Gutter,2019,502,5.66408,5.52932, +12930,369959,Happy Bee,2023,73,6.45594,5.52932, +12931,130004,Think Again!,2012,211,5.84987,5.52932,"130004, 167139, 266877" +12932,265634,DOCE,2018,50,6.88200,5.52932, +12933,7703,Principles of War: 19th Century,1995,30,7.78333,5.52931, +12933,340496,Ranking!,2021,30,7.78333,5.52931, +12935,140468,You Suck,2013,144,5.99882,5.52931, +12936,4015,MacArthur's Return: Leyte 1944,1994,65,6.56923,5.52930, +12937,35376,Bandits,2008,205,5.85902,5.52930, +12938,323552,Sheep & Garden,2020,57,6.71491,5.52930,"323552, 386341" +12938,416054,Despistas,2024,57,6.71491,5.52930, +12940,34195,Kawaguchi's Gamble: Edson's Ridge – The Battle for Guadalcanal,2015,64,6.58516,5.52929, +12941,255134,Desert Rats 1940-42,2018,35,7.46000,5.52929, +12942,256151,Veracruz 1631,2018,94,6.24812,5.52929, +12943,345031,Westward Rails,2021,66,6.55303,5.52929, +12944,11640,Klabberjass,1930,50,6.88000,5.52928, +12945,8353,"Triumphant Return: The Soviet Liberation of Kiev, November 1943",1998,44,7.06409,5.52928, +12946,253948,Jaliz,2018,31,7.70645,5.52926, +12947,24020,Blitzwar,2006,36,7.40278,5.52924, +12947,30264,Ultimus Romanorum: La Chute de Rome,2007,36,7.40278,5.52924, +12949,1873,Babylon 5 Component Game System: Core Sets,1997,210,5.85038,5.52924, +12950,201917,Mech Command RTS,2018,57,6.71228,5.52923, +12951,75809,Pocket Pro Golf,2010,64,6.58281,5.52923, +12952,252530,JetLag,2018,100,6.20340,5.52923, +12953,281663,Smile Life,2018,94,6.24635,5.52922, +12954,204578,Cattack! No.1,2016,55,6.75455,5.52922, +12955,310290,Okko: Legendary Journey,2022,33,7.57121,5.52921, +12956,369010,Flutter,2024,42,7.13333,5.52921, +12957,32821,Battle Leader Tactics,2007,49,6.90408,5.52920, +12958,10261,Blitzkrieg 1940,1997,68,6.51985,5.52920, +12959,13341,"Empyrean, Inc.",2004,101,6.19604,5.52920, +12960,371178,TOKAN,2022,36,7.40000,5.52920, +12961,123587,Triominos Challenge,2016,184,5.89516,5.52919, +12962,209653,Gameception,2017,56,6.73161,5.52919, +12963,230955,El Aprendiz de Merlín,2018,52,6.82359,5.52918,"230955, 264171" +12964,88931,"Verbàlia, el joc",2010,112,6.13008,5.52918, +12965,416780,Adulthood,2024,44,7.05838,5.52917, +12966,40602,Rabbit Hunt,2009,121,6.08512,5.52916, +12967,224793,Gascony's Legacy,2021,51,6.84804,5.52916, +12968,3485,Anno Domini,1995,168,5.92952,5.52916, +12969,136238,ROFL!,2013,106,6.16368,5.52916, +12970,271550,"Custoza, Fields of Doom",2019,30,7.77000,5.52914, +12971,294216,Musical Chairs,2020,65,6.56308,5.52913, +12972,133535,Foosball tabletop soccer,,77,6.40179,5.52913, +12973,249102,Devil Dogs: Belleau Wood 1918,2019,45,7.02222,5.52913, +12974,5843,Royalty,1959,66,6.54697,5.52912, +12975,45020,Agricola Express,2009,117,6.10316,5.52912, +12976,6890,The Last Blitzkrieg,1994,53,6.79623,5.52911, +12977,164428,Ultimate Scheme,2016,48,6.92813,5.52911, +12978,82572,Dive! Diver! Die!,2010,112,6.12857,5.52911, +12979,173121,Pirato Poker,2014,64,6.57812,5.52910,"173121, 228419" +12980,24280,Mimic,2006,102,6.18725,5.52910, +12981,375365,Once Upon a Line,2024,65,6.56154,5.52909, +12982,25569,Spicy Farkel,2006,106,6.16217,5.52909, +12983,7758,La Pétanque,1987,44,7.05409,5.52909, +12984,280922,III: Tres,2019,31,7.69355,5.52909, +12985,277565,Ashes to Ashes,2021,53,6.79459,5.52908, +12986,1816,Mississippi,1987,167,5.93058,5.52907, +12987,252901,Rats to Riches,2019,57,6.70526,5.52906, +12987,32639,Politico,2007,57,6.70526,5.52906,"32639, 43011, 133749" +12989,321754,Dragondraft,2020,73,6.44740,5.52906, +12990,128658,Heptalion,2012,37,7.34054,5.52906, +12991,244939,Greedy Dragons,2018,64,6.57625,5.52905, +12992,272711,Monsters vs. Heroes: Volume 2 – Cthulhu Mythos,2019,71,6.47300,5.52905, +12993,310693,Final Nine: A Disc Golf Card Game,2020,34,7.50003,5.52905, +12994,382960,Line-it,2023,280,5.76829,5.52904, +12995,7067,Schloss Schlotterstein,2003,163,5.93990,5.52903, +12996,258752,Bitcoin Hackers,2018,107,6.15486,5.52903, +12997,22901,Schnapp,1993,53,6.79245,5.52903, +12998,178442,Alkemia,2017,37,7.33784,5.52901, +12999,148330,Burning Rome: Rome's Nightmare,2018,68,6.51297,5.52901, +13000,6400,Boccerball,1993,45,7.01556,5.52900, +13001,415063,Royale: Party at Louis',2024,35,7.44000,5.52899, +13002,191681,Lagoonies,2016,125,6.06405,5.52899, +13003,248439,How Do You Doodle?,2018,83,6.33434,5.52898, +13004,15211,Poland '39: The Nightmare Begins,1992,80,6.36437,5.52897, +13005,231983,Debrecen 1944: Storms in the East 2 – Hungary,2017,30,7.75667,5.52897, +13006,293006,Yutakâ,2018,36,7.38472,5.52896, +13007,259715,Contract,2018,38,7.28684,5.52896, +13008,182736,Swords & Sails,2019,47,6.95021,5.52896, +13009,385417,Walking in Burano: Roll & Write,2023,45,7.01333,5.52896, +13010,257080,Fast Food!,2018,66,6.54091,5.52895, +13011,231316,Fly Down,2017,44,7.04659,5.52895, +13012,333185,Arquimedes,2021,70,6.48286,5.52895, +13013,344454,Business Walrus: A Party Game,2021,73,6.44356,5.52894, +13014,251405,Creatures and Cupcakes,2019,114,6.11447,5.52894, +13015,6920,The Omega War,1983,54,6.76481,5.52893, +13016,1244,Meander,2001,146,5.98596,5.52893, +13017,2394,Dominoes,1500,7559,5.53774,5.52892, +13018,282066,Adventures in Austerion,2019,45,7.01111,5.52891, +13018,185246,AGES,2016,45,7.01111,5.52891, +13020,197928,Dreamwars,2017,98,6.20918,5.52890, +13021,307336,Dragon Dungeon: A roll and write adventure,2020,36,7.38056,5.52890, +13022,3954,Baseball Strategy,1960,237,5.81013,5.52889, +13023,323236,Penalties: Animal Cup,2020,65,6.55415,5.52889, +13024,247199,Fanhunter: Assault,2018,127,6.05350,5.52888, +13025,295951,Spot On,2020,55,6.74000,5.52888,"161770, 295951" +13026,35122,"Yetisburg: Titanic Battles in History, Vol. 1",2008,286,5.76178,5.52888, +13027,256536,Bob Ross: Happy Little Accidents,2018,238,5.80848,5.52885, +13028,38825,Chosin: X Corps Escapes the Trap,2009,46,6.97500,5.52884, +13029,187164,The Martian Investigations,2015,38,7.27895,5.52883, +13030,140626,Target: Iran,2014,52,6.80769,5.52883, +13031,239982,The Enigma Box,2018,80,6.36000,5.52883, +13032,220848,Pentaurus: Duel,2017,50,6.85867,5.52882, +13033,196328,Constantinople,2016,85,6.31107,5.52882, +13034,371057,Monopolis,2022,32,7.60625,5.52882, +13034,346927,GENSMAK!,2021,32,7.60625,5.52882,"346927, 374000" +13036,329559,Quad City Killers,2021,32,7.60562,5.52881, +13037,390297,Capt'n Pepe: Treasure Ahoy!,2023,33,7.54242,5.52881, +13038,351180,Super Snipers,2024,36,7.37361,5.52879, +13039,382016,Sea of Thieves: Voyage of Legends,2023,88,6.28348,5.52879, +13040,108459,Strat-O-Matic Baseball Express,2011,46,6.97196,5.52878, +13041,324883,Sky Towers,2024,39,7.23077,5.52877, +13042,63339,Tix,2009,43,7.07209,5.52877,"63339, 158231, 172470, 263182" +13043,160494,"War in the Wind: The Battle of Attu Island, 1943",2016,50,6.85580,5.52876, +13044,244609,Flick Fleck,2018,69,6.48986,5.52875, +13045,285102,Dans les Cordes,2019,42,7.10714,5.52874, +13046,1916,Shuttles,1973,308,5.74395,5.52874, +13047,164369,7 Kingdoms,2014,61,6.61475,5.52872, +13048,28017,Bleff,,60,6.63282,5.52872, +13049,210065,SLAPZI,2015,191,5.87535,5.52870, +13050,69543,Lemonade Stall,2010,35,7.42000,5.52870, +13051,7082,Battles of the Ancient World Volume III,2000,67,6.51642,5.52869, +13052,262566,Dubbe,2018,80,6.35562,5.52868, +13053,346989,Strand unter,2021,48,6.90625,5.52866, +13054,285892,Boss Quest,2019,178,5.90006,5.52866, +13055,230246,Photofinish: The Final Rush,2017,43,7.06512,5.52864, +13056,40819,Cheese Chasers,2008,141,5.99716,5.52864,"40819, 352797" +13057,39708,Roliça et Vimeiro 1808,2008,34,7.47059,5.52862, +13058,379553,Ticket Gagnant,2023,118,6.08814,5.52862, +13059,403209,Belladone Bluff,2023,65,6.54431,5.52862, +13060,144417,Der Hobbit: Smaugs Einöde,2013,75,6.40880,5.52862, +13061,169652,Turbo Rally Card Racing: Thunder Track,2014,61,6.61066,5.52861,"148668, 169652" +13062,115128,Amigos and Insurrectos: The Philippine Insurrection 1899-1902,2016,35,7.41429,5.52861, +13063,42901,Attandarra,2009,70,6.47143,5.52861, +13064,35017,Chaos Isle: Zombi Deck,2008,128,6.04414,5.52861,"35017, 120323" +13065,269504,Two Robots,2019,43,7.06279,5.52860, +13066,384173,Indiana Jones: Cryptic – A Puzzles and Pathways Adventure,2023,53,6.77311,5.52859, +13067,88870,Taiwan Strait Crisis 1950,2011,33,7.52727,5.52859, +13068,108155,Fox's Party,2011,109,6.13367,5.52859, +13069,66964,The Last of the Independents,2010,93,6.23763,5.52859, +13070,224656,Quest for the Antidote,2017,121,6.07355,5.52859, +13071,21572,ChickenFoot,1986,179,5.89693,5.52858, +13072,289796,Schnell Boats: Scourge of the English Channel,2021,35,7.41143,5.52857, +13073,291048,"Lord of the Chords: The Geekiest, Punniest Music Theory Card Game",2019,128,6.04336,5.52857, +13074,3099,Gettysburg,1958,349,5.71736,5.52856, +13075,17379,WWII Micro Armour: The Game,2001,39,7.21795,5.52856,"17379, 26717, 299192, 299193" +13076,1691,Whodunit,1972,191,5.87351,5.52856, +13077,151972,Village in a Box,2013,117,6.09145,5.52855, +13078,412086,Etherstone,2024,33,7.52424,5.52855, +13079,274049,Nope!,2019,219,5.82924,5.52855, +13080,23957,Stand at Mortain,2006,158,5.94525,5.52854, +13081,383412,Nightmare Millionaire,2023,55,6.72545,5.52854, +13082,16617,"The Wilderness Campaign: Lee vs. Grant, 1864",1972,48,6.90000,5.52854, +13083,93879,Grave Business,2011,143,5.98874,5.52853, +13084,385756,Angels and Devils,2023,45,6.99000,5.52851, +13085,280742,Godzilla Total War,2019,64,6.55547,5.52849, +13086,241731,Rick and Morty: The Ricks Must Be Crazy Multiverse Game,2018,143,5.98811,5.52849, +13087,262290,The Hunger Games: Mockingjay – The Board Game,2019,42,7.09333,5.52849, +13088,290561,La Caza de la Calabaza,2019,53,6.76843,5.52849,"290561, 339676, 359121, 361693" +13089,56685,Insula,2009,110,6.12564,5.52848, +13090,123399,Dragon Quest: Slime Race,,47,6.92596,5.52847, +13091,396914,Stellar Drift: Pull & Write,2024,35,7.40476,5.52847, +13092,10971,Board and Table Games from Many Civilizations,1960,37,7.30297,5.52846, +13093,232300,Wallet,2017,168,5.91924,5.52846, +13094,373667,House of Fado,2025,30,7.71667,5.52846, +13095,347827,Race Pace,2021,41,7.12927,5.52845, +13096,97582,Kwizniac,2009,62,6.58694,5.52845, +13097,187704,A birodalom bajnoka,2015,45,6.98667,5.52845, +13098,222885,WOO,2017,127,6.04512,5.52845, +13099,153486,Age of Assassins,2013,56,6.70000,5.52844,"153486, 391130" +13100,199394,Marooned! A solo game of survival,2015,58,6.65948,5.52844, +13101,275087,Auf der Walz,2019,72,6.43889,5.52842, +13102,297530,CardWeaver,2020,48,6.89389,5.52841, +13103,388721,Aethermon: Collect,2023,50,6.83900,5.52841, +13104,123162,Democracy: Majority Rules,2013,103,6.16456,5.52840, +13105,199530,Commissioner Victor: The lost painting case,2016,114,6.10307,5.52840,"199530, 225099, 227088" +13106,285707,DUBITO,2019,51,6.81294,5.52840, +13107,261161,The Little Land: The Battle of Novorossiysk,2019,39,7.20769,5.52839, +13108,150220,Kampen om Fredriksten,2013,41,7.12561,5.52839, +13109,359895,Chicken vs Hotdog,2022,117,6.08792,5.52838, +13110,276,"La Guerre de l'Empereur: The Emperor's War, 1805-1815",1997,72,6.43750,5.52838, +13111,122399,Bloqs,2012,169,5.91568,5.52837,"39252, 122399, 237203" +13112,300090,Rose Ceremony,2020,107,6.13995,5.52837, +13113,82976,Key West,2010,104,6.15740,5.52836, +13114,284585,World of Draghan: Once Upon a Dragon,2019,66,6.51939,5.52835,"207420, 284585" +13115,1875,Isolation,1972,251,5.78884,5.52834, +13116,7071,Gaslight,2000,38,7.24868,5.52834,"7071, 28709, 277974, 300073" +13117,237311,The Smog Riders: Dimensions of Madness,2017,54,6.73889,5.52834, +13118,335631,最後の巫女 (The Last Kannagi),2020,33,7.50909,5.52834, +13119,223947,Enemies of Rome,2017,74,6.41149,5.52833, +13120,315276,Lucha Wars,2022,55,6.71636,5.52833, +13121,322585,Hi Mi Ki,2023,41,7.12195,5.52832, +13122,10589,"Bittereinder: The Second Anglo-Boer War, 1899-1902",2000,77,6.37662,5.52832, +13123,7506,"Operation Konrad: The SS Drive to the Danube, January 1945",1983,49,6.86122,5.52831,"7506, 12118" +13124,630,Double Quick,1999,42,7.08333,5.52831,"630, 387303" +13125,132261,Cosmic Empires,2012,60,6.61667,5.52831, +13126,220930,Optimates et Populares,2017,50,6.83400,5.52830, +13127,2214,Saga,1980,166,5.92145,5.52829, +13128,358924,UNO: 50th Anniversary Premium,2020,44,7.01136,5.52829, +13129,182194,AYA,2015,316,5.73472,5.52828, +13130,132773,Ovni,2013,49,6.85949,5.52828, +13131,3970,BattleTech Science Fiction Combat Book Game: SHD-2H Shadow Hawk,1987,95,6.21474,5.52827,"3970, 316354, 316355, 316356, 316357, 316358" +13132,401182,The Sixth Realm,2025,35,7.38971,5.52824, +13133,186980,Holdfast: North Africa 1941-42,2016,69,6.47246,5.52824, +13134,25253,Battlefield Evolution: Ultra-Modern Tabletop Combat,2007,55,6.71273,5.52824, +13135,165627,Rincala,2014,48,6.88542,5.52824, +13136,427624,I AM DONE,2024,72,6.43299,5.52824, +13137,14765,Tuppi,1900,38,7.24211,5.52823, +13138,21293,Celtica,2006,808,5.60883,5.52823, +13139,200314,Jack the Ripper,2016,44,7.00807,5.52823, +13140,313085,Sleep Tight,2021,74,6.40811,5.52823, +13141,261370,Sarah's Vision,2019,100,6.17927,5.52822, +13142,163186,Ray Master,2016,91,6.24352,5.52822, +13143,141829,7-Card Slugfest,2013,235,5.80521,5.52822, +13144,201668,Cosmic Balance,2016,43,7.04186,5.52822, +13145,33857,Prince of Chaos: Battle for Tae Orn,2008,63,6.56127,5.52821, +13146,3984,Tahiti,1995,68,6.48529,5.52821, +13147,237212,The Hearmees,2017,61,6.59508,5.52821, +13148,1570,Sirocco,1985,204,5.84701,5.52819, +13149,358604,"Wars of Religion, France 1562-1598",2022,38,7.23947,5.52819, +13150,284107,Zodiac Clash,2019,88,6.26712,5.52819, +13151,37394,Kayak Chaos,2008,92,6.23489,5.52819, +13152,380550,Tavern Tussle,2023,43,7.03953,5.52817, +13153,283161,Chocobo Party Up!,2019,107,6.13551,5.52817, +13154,228420,Schneeble,2017,44,7.00432,5.52816, +13155,140469,KiCKeT!,2013,38,7.23684,5.52815,"140469, 158758" +13156,34376,Captain Clueless: Lost in the Caribbean,2008,122,6.06036,5.52815, +13157,129668,Paul Koenig's Market Garden: Nijmegen Bridge,2012,47,6.90957,5.52815, +13158,17697,Lineage II: The Boardgame,2005,85,6.29118,5.52812, +13159,86006,Hinkel & Stein,2010,62,6.57403,5.52811, +13160,20300,Chickamauga River of Death,1983,34,7.43529,5.52811, +13161,420876,Spotlight,2024,49,6.85102,5.52810, +13162,55896,Koplopers & Dwarsliggers,2009,92,6.23261,5.52810, +13163,8723,Crimea: The Dawn of Modern Warfare,1975,43,7.03488,5.52809, +13164,4021,"Road to Richmond: The Peninsular Campaign, May-July, 1862",1977,129,6.03023,5.52808, +13165,241964,Home on Lagrange,2018,62,6.57258,5.52807, +13166,282581,Empire,2022,125,6.04600,5.52807,"282581, 350431, 350527, 351814" +13167,9915,Denain 1712,1998,50,6.82200,5.52805, +13168,287682,Pax Expanse,2019,33,7.48788,5.52804, +13169,2843,Absacker,1998,506,5.65585,5.52804,"2843, 188334, 189001, 205873" +13170,2410,Kanaloa,2001,76,6.37895,5.52803, +13171,397931,Deep Regrets,2024,40,7.14450,5.52803, +13172,114,Ransom,1994,80,6.33625,5.52803, +13173,235071,Re-Chord,2018,82,6.31642,5.52803, +13174,376486,Clue: Sabotage on the High Seas,2022,61,6.58770,5.52802, +13175,76994,"Target: Leningrad – The Advance of Army Group North: June-August, 1941",2010,50,6.82060,5.52802, +13176,413087,Kabuki Tricks,2024,32,7.54750,5.52801, +13177,328484,Abszolút megvadult betűk,2020,32,7.54688,5.52801, +13178,7566,The War of the Worlds,1980,54,6.72407,5.52800, +13179,378423,Super Slopes,2023,58,6.64138,5.52799, +13180,22477,Deluxe Camping,2006,135,6.00630,5.52799, +13181,223674,Zombie Tsunami,2017,318,5.73103,5.52799, +13182,37612,Apples to Apples to Go,2007,427,5.67916,5.52798, +13183,372504,Unbeetable,2022,63,6.55238,5.52798, +13184,269607,Sidekick Saga,2019,35,7.37143,5.52797, +13185,366900,Stampfarm,2023,41,7.10163,5.52797, +13186,1411,"Fugger, Welser, Medici",1994,73,6.41164,5.52796, +13187,6848,Dinosaur Chess,1993,36,7.31944,5.52796, +13188,9146,Wordigo,2003,87,6.26925,5.52796, +13189,205478,Covenant,2016,74,6.39946,5.52796, +13190,140235,Bolt Action: Assault on Normandy,2012,33,7.48182,5.52795, +13191,8818,Gopher It!,1999,173,5.90058,5.52795, +13192,400570,Odd Shop,2023,55,6.70000,5.52794, +13193,17582,Mein Panzer,1998,30,7.67667,5.52794,"17582, 316054" +13194,10236,Byzantium,1996,65,6.51923,5.52793, +13195,309852,The Treasure of Montecristo Island,2021,32,7.54063,5.52792, +13196,16719,Manhattan,1986,74,6.39824,5.52792, +13197,394451,Diluvium,2024,43,7.02558,5.52792, +13198,244172,Sherlock Holmes: The Beginning,2013,43,7.02512,5.52791, +13199,368282,On to Moscow Solitaire,2022,33,7.47879,5.52791, +13200,85076,"The Battle of Tours, 732 A.D.",2012,51,6.79020,5.52791, +13201,9438,First Blood: The Guadalcanal Campaign,1991,78,6.35321,5.52791, +13202,4472,Arnhem Bridge,1982,76,6.37471,5.52790, +13203,318074,Clue: Scooby-Doo 50th Anniversary Edition,2019,41,7.09756,5.52790, +13204,314893,Fox Matters,2020,172,5.90203,5.52790,"277434, 314893" +13205,2271,Creeper,1995,64,6.53281,5.52788, +13206,223573,Supervillain: This Galaxy Is Mine!,2018,97,6.19072,5.52787,"153788, 223573" +13207,9489,War to Axis: Warfare in Normandy,2004,42,7.05833,5.52787, +13208,279527,Orbital Conflict,2019,44,6.98864,5.52786, +13209,71956,Antwerpen,2010,98,6.18367,5.52786, +13210,242317,Postcard Dungeons,2018,90,6.24178,5.52785, +13211,144253,Amerika,2015,36,7.31250,5.52785, +13212,265019,MAMEY,2018,63,6.54762,5.52785, +13213,3561,Ram Speed: Naval Warfare in the Bronze Age,1980,112,6.10134,5.52784, +13214,84864,Insidious Sevens,2010,89,6.24944,5.52784, +13215,156836,De Mol,2014,169,5.90781,5.52784, +13216,271027,Agents: Sword and Shield,2018,45,6.95378,5.52782, +13217,11050,Bastogne or Bust (Second Edition),1995,39,7.17308,5.52782,"11050, 55154, 224392" +13218,352516,Couch Skeletons,2020,59,6.61525,5.52781, +13219,4479,Ratrace,1967,261,5.77358,5.52781, +13220,343898,Espresso Doppio,2021,107,6.12729,5.52781, +13221,307733,My First Adventure: Journey to Ochre Land,2020,32,7.53125,5.52779, +13221,182408,Commandos: Europe,2017,32,7.53125,5.52779, +13221,339696,Balkans 1944,2022,32,7.53125,5.52779, +13224,20839,MOCKBA: La battaglia di Mosca 1941,1984,50,6.81000,5.52779,"16166, 20839" +13225,13498,Epic of the Peloponnesian War,2006,113,6.09513,5.52779, +13226,123511,Guns of Galicia,2012,53,6.73698,5.52778, +13227,7784,Mustangs and Messerschmitts,1977,33,7.46970,5.52778,"7784, 306741" +13228,209322,Sabbat Magica,2016,38,7.21316,5.52776, +13229,18536,Nok-Hockey,1942,57,6.65088,5.52775, +13230,106174,Di Renjie,2012,139,5.98806,5.52774, +13231,3532,Damocles Mission,1983,93,6.21559,5.52773, +13232,329710,"Loot, Shoot, Whisky",2021,95,6.20084,5.52772, +13233,350713,The Forgotten Road,2022,49,6.83265,5.52772, +13234,20848,"Stratego: The Chronicles of Narnia – The Lion, The Witch, and The Wardrobe",2005,161,5.92478,5.52771, +13235,210411,Magic: The Gathering – Duel Decks: Jace vs. Vraska,2014,51,6.78118,5.52771, +13236,84776,Summy,2010,66,6.49621,5.52771, +13237,103843,Fandooble,2011,117,6.07393,5.52770, +13238,111387,Star Trek HeroClix: Tactics,2012,114,6.08816,5.52770, +13239,351208,Nomad,2023,30,7.65667,5.52769, +13240,395846,Mojo,2023,254,5.77906,5.52768, +13241,4875,How to Host a Murder: The Class of '54,1987,53,6.73208,5.52767, +13242,174491,Steam Court,2016,42,7.04667,5.52766, +13243,224011,Gold Armada,2017,142,5.97692,5.52766, +13244,2781,My Word!,2001,479,5.66081,5.52765,"2781, 3999" +13245,126069,Oh My Lair!,2012,66,6.49394,5.52765, +13246,333348,Dirge: The Rust Wars,2021,50,6.80280,5.52764, +13247,14762,Yankees & Rebels,2004,31,7.58226,5.52761, +13248,368906,Spaceship Unity: Episode 0,2022,37,7.24865,5.52760, +13249,11766,SS Amerika,1990,66,6.49242,5.52760, +13250,13290,Byzantium Reborn,2004,48,6.85417,5.52760, +13251,381711,Pizzachef,2023,30,7.65000,5.52760, +13252,344872,À la Food Cart,2021,76,6.36526,5.52760, +13253,13742,Void 1.1,2003,49,6.82653,5.52759,"13742, 139297" +13254,183340,Der Schatz der 13 Inseln,2015,70,6.43681,5.52759, +13255,178285,Dicenstein,2017,88,6.25064,5.52758, +13256,310196,The Original Sherlock Holmes and His Baker Street Irregulars,2021,50,6.79990,5.52758, +13257,275978,Reputation,2022,52,6.75000,5.52756,"275978, 279783" +13258,275061,Rulebenders,2021,185,5.87114,5.52755, +13259,254230,Thieves,2018,87,6.25815,5.52755, +13260,259501,Xerxes,2019,78,6.34231,5.52755, +13261,4199,Mesopotamia: Birth of Civilisation,2002,49,6.82449,5.52755, +13262,254424,Hall of the Dwarven King,2018,53,6.72642,5.52754, +13263,121663,SłowoStwory,2012,122,6.04836,5.52754,"121663, 141577" +13264,251399,Doxie Dash,2018,64,6.52031,5.52754, +13265,346603,Hungry Little Demons,2021,35,7.34286,5.52754, +13266,228889,Helios Expanse,2019,50,6.79800,5.52754, +13267,4352,Fightball,2002,219,5.81758,5.52754, +13268,418177,Vampire Nights,2024,36,7.29167,5.52753, +13269,90004,Kniffel Extreme,2011,100,6.16250,5.52753, +13270,362942,Seasons of Arcadia,2022,30,7.64333,5.52752, +13271,421281,1980 Sixtina,2024,40,7.11408,5.52751, +13272,1623,Space Station Zemo,1998,56,6.66071,5.52751, +13273,340816,101: le match,2021,209,5.83104,5.52750, +13274,27339,3 Man Chess,2004,61,6.56721,5.52749, +13275,3892,Star Blazers Fleet Battle System,1997,40,7.11250,5.52748, +13276,127993,Manalath,2018,31,7.57097,5.52746, +13277,414274,Cat Days,2024,35,7.33714,5.52746, +13278,224153,Cartouche Dynasties,2017,37,7.23919,5.52746, +13279,4379,Bug-Eyed Monsters,1983,90,6.23111,5.52745, +13280,247576,Poetry Slam,2018,78,6.33936,5.52745, +13281,2003,Spectrangle,1989,298,5.73994,5.52745, +13282,352882,Bossa,2021,47,6.87447,5.52745, +13283,2531,Valley Of The Four Winds,1980,119,6.05941,5.52744, +13284,276121,Nobjects,2019,82,6.29921,5.52743, +13285,395647,Iluliaq,2023,39,7.14889,5.52741, +13286,136085,Die verzauberten Rumpelriesen,2013,63,6.53095,5.52741, +13287,331903,Project EOS Rise,2021,32,7.50312,5.52741, +13288,1304,Credo!: the Game of Dueling Dogmas,1993,242,5.78864,5.52741,"1304, 175508" +13289,104775,Gary Gouda,2011,84,6.27976,5.52740, +13290,392464,Curling: Gra planszowa,2023,30,7.63400,5.52740, +13291,248082,Albuera 1811,2018,33,7.44242,5.52740, +13292,274442,hexaGONE,2019,57,6.63596,5.52739, +13293,17143,Ironclads and Ether Flyers,1990,30,7.63333,5.52739, +13294,234657,TRUT,1600,65,6.49923,5.52738, +13295,277481,Little Battle,2019,72,6.40463,5.52738, +13296,23999,Tie One On,2006,50,6.79000,5.52737, +13297,262164,Mob Sitters,2019,38,7.18816,5.52736, +13298,216351,Race to the Sea 1914,2017,38,7.18754,5.52735, +13299,8358,East Front Battles I: Blitzkrieg in the South,1993,48,6.84167,5.52735, +13300,172875,Drillit! A Fuga da Montanha de Cristal,2016,65,6.49785,5.52735, +13301,45569,Fear and Faith,2009,33,7.43636,5.52731, +13302,11435,Lee Takes Command,1993,66,6.48182,5.52731, +13303,292082,KuniUmi,2020,37,7.22973,5.52731, +13304,6803,Pacru,2004,59,6.59492,5.52731, +13305,275634,Dungeon Royale,2019,95,6.19032,5.52730, +13306,8803,The American Revolution 1775-1783,1972,85,6.26824,5.52730, +13307,313306,Dawn on Titan,2022,45,6.92667,5.52730, +13308,1314,Warhamster Rally,2001,236,5.79411,5.52730, +13309,200646,Bubble Tea,2016,180,5.87711,5.52730, +13310,361600,Roman Disaster at Teutoburg,2022,38,7.18421,5.52729, +13311,68340,Tell Tale,2010,196,5.84842,5.52729, +13312,323034,Dice Splice,2021,39,7.14103,5.52728, +13313,331416,LOTS: Filled In,2022,34,7.37794,5.52728, +13314,298359,Bury Me in the Rift,2019,40,7.10000,5.52727, +13315,54707,Fantom Staré Prahy,,93,6.20355,5.52726, +13316,168544,De Stijl,2014,206,5.83257,5.52726, +13317,2895,Nanofictionary,2002,292,5.74264,5.52726, +13318,12142,"The Battle of Austerlitz, December 2, 1805",1980,85,6.26706,5.52726, +13319,66888,Dizios,2009,136,5.98956,5.52726, +13320,86165,Neos,2009,77,6.34351,5.52725, +13321,209383,Savage Planet: The Fate of Fantos,2018,123,6.03821,5.52725,"209383, 279719" +13322,26786,Number Rumba!,1991,46,6.89348,5.52724, +13323,12280,Geistesblitz,1991,91,6.21758,5.52723, +13324,130723,Banana Matcho,2012,145,5.96041,5.52723, +13325,229910,Gangs of Britannia,2018,46,6.89227,5.52722, +13326,402200,Unlock! Kids: Legendary Stories,2023,30,7.62000,5.52722, +13327,351818,Broken Planet,2022,31,7.55161,5.52721, +13328,259829,Loser,2018,112,6.08750,5.52720, +13329,159911,Euphoria,2013,34,7.37250,5.52720, +13330,357822,Tales are Real: Animalis vs. Schatten,2022,32,7.48750,5.52719,"357822, 377314" +13331,328970,Top Pop,2023,45,6.92060,5.52718, +13332,200691,Grease Monkey Garage,2017,52,6.73269,5.52717, +13333,223436,Ukrainian Crisis & The Little War,2017,43,6.98488,5.52717,"157573, 223436" +13334,428224,1 A.M. Jailbreak,2024,67,6.46269,5.52717, +13335,218842,Yukon Salon,2021,82,6.29146,5.52717, +13336,402527,Luminis,2023,31,7.54839,5.52716, +13336,344128,GoCaine,2021,31,7.54839,5.52716, +13338,33969,A Splendid Little War: The 1898 Santiago Campaign,2009,39,7.13333,5.52716, +13339,305862,Legacy of Thracks: The Awakening,2023,32,7.48438,5.52715, +13340,6036,Tet '68,1992,75,6.36200,5.52714, +13341,2402,Ghoulash,2001,99,6.15960,5.52714, +13342,12505,Clash of the Eagles: Borodino & Friedland,1999,59,6.58814,5.52714, +13343,367243,Noli,2022,85,6.26353,5.52713, +13344,363091,Mazescape XP: Cryo-C,2022,57,6.62509,5.52713, +13345,51199,Epic Solitaire Notebook Adventures,2009,35,7.31429,5.52712, +13346,66695,Sumoku,2010,139,5.97698,5.52711, +13347,36513,Tien Gow (Sky Nine),1120,36,7.26389,5.52710, +13348,416850,Piggy Piggy,2024,45,6.91630,5.52710, +13349,164975,Bloody Sands Dice,2014,33,7.42121,5.52710, +13350,569,Maestro,1989,205,5.83195,5.52709,"569, 31505" +13351,1832,Spree!,1997,303,5.73333,5.52709, +13352,186191,實話實說 (Straight Talk),2013,46,6.88478,5.52707, +13352,56208,The Lash of the Turk,2011,46,6.88478,5.52707, +13354,364760,Bunker,2020,153,5.93525,5.52707, +13355,22644,La Guerra Civil Española (1936),1981,113,6.07965,5.52707,"22644, 43243" +13356,385317,Unlock! Mythic Adventures: Around the world in 80 minutes,2023,36,7.26111,5.52706, +13357,17807,Inquisitor,2001,151,5.94040,5.52706, +13358,166915,No Middle Ground: The Golan Heights 1973,2016,37,7.21216,5.52703,"11036, 166915" +13359,28454,The New Yorker: Cartoon Caption Game,2006,95,6.18316,5.52702, +13360,257599,Invasions: Volume 1 – 350-650 AD,2020,77,6.33649,5.52702, +13361,106969,BASKETmind,2012,40,7.08500,5.52702, +13362,39872,Guess Who? Extra,2008,324,5.71921,5.52700, +13363,251825,Patriot,2023,35,7.30560,5.52699, +13364,218176,Milkman,2024,37,7.20946,5.52699, +13365,191132,Cafundó,2015,39,7.12308,5.52698, +13366,383249,Disrupt,2023,43,6.97442,5.52698, +13367,220674,Mercatores,2017,85,6.25906,5.52698, +13368,6742,Dungeons & Dragons Chainmail,2001,122,6.03689,5.52697, +13369,225727,Dedalo's,2022,93,6.19581,5.52696, +13370,112844,Swintus 2.0,2011,554,5.63924,5.52696,"46147, 112844, 183960" +13371,182978,Landed,2017,53,6.70000,5.52695, +13372,321755,Critter Cruise,2020,62,6.52968,5.52695, +13373,44125,Ogre Castle,2009,55,6.65727,5.52695, +13374,260931,Go Go Eskimo,2018,87,6.24138,5.52694, +13375,298460,Necronomicon,2020,55,6.65695,5.52694,"174768, 298460" +13376,9790,Triumph & Fall of the Desert Fox,1998,69,6.42754,5.52694,"7622, 9784, 9790, 18099" +13377,25973,Kannibohne,2006,60,6.56250,5.52694, +13378,122271,Defenders of the Realm: Battlefields,2012,164,5.90551,5.52692, +13379,290822,Peaky Blinders: Under New Management,2019,146,5.95218,5.52692, +13380,356749,Bangkok,2022,60,6.56167,5.52691, +13381,3405,Tin Soldiers,2002,205,5.82976,5.52691, +13382,10634,Napoleon and the Archduke Charles: The Battle of Abensberg,1987,101,6.14158,5.52691, +13383,307041,The House on the Borderland,2020,35,7.30000,5.52690, +13384,563,Doolittle & Waite,1986,86,6.24837,5.52690, +13385,445,Die Osterinsel,1994,234,5.79205,5.52690, +13386,2600,Gods,2001,181,5.86967,5.52690, +13387,388435,Yamma,2024,31,7.52742,5.52688, +13388,294487,"Objective Munich: 7 Days to the Rhine, Volume 2",2020,98,6.15969,5.52688,"6003, 294487" +13389,280143,Volcanic Isle,2019,87,6.23966,5.52688, +13390,391154,Baron von Zom's Dice Of The Undead,2023,52,6.71923,5.52688, +13391,36333,Dirge: Carnage in Crimson,2008,43,6.96860,5.52687,"36333, 133563" +13392,35047,Black Death v1.01,2008,166,5.90030,5.52687,"166, 35047" +13393,17615,1792: La Patrie en Danger,1991,38,7.15789,5.52687, +13394,219661,Crop Rotation,2016,53,6.69623,5.52687,"219661, 250472" +13395,8990,Bantu,1955,58,6.59483,5.52685, +13396,31797,Classic BattleTech RPG,1999,40,7.07444,5.52684, +13397,6720,Warplan Dropshot,2002,41,7.03659,5.52683, +13398,199800,Hatflings!,2016,58,6.59397,5.52683, +13399,257994,Trappist One,2018,69,6.42377,5.52683, +13400,255642,Rogers' Rangers: America's First Commandos,2018,66,6.46424,5.52682, +13401,34948,All Queens Chess,2008,137,5.97835,5.52682, +13402,8728,Ultra Marines,1991,73,6.37397,5.52681, +13403,425873,Koala Rescue Club,2024,51,6.73922,5.52680, +13404,255962,No Swap No Pay,2019,81,6.29012,5.52680, +13405,182869,Hong,2016,90,6.21368,5.52680,"137751, 182869" +13406,18061,Chennault's First Fight,2005,55,6.65076,5.52680, +13407,270077,Charmed and Dangerous: The Sisters Grimm – Base Set,2019,78,6.31923,5.52679, +13408,175224,Rumpelstiltskin,2015,264,5.76091,5.52679, +13409,18580,Skallywaggs,2005,239,5.78536,5.52679, +13410,275214,Among Thieves,2019,139,5.97129,5.52678, +13411,269238,Lunation,2019,38,7.15263,5.52678, +13412,12479,Battlegame Book 5: Fighting Ships,1976,53,6.69245,5.52678, +13413,223330,Star Maps,2017,80,6.29902,5.52678, +13414,305211,Scriptoria,,51,6.73804,5.52678, +13415,2474,Götterdämmerung,2001,65,6.47692,5.52677, +13416,258818,Connect 4: Shots,2018,112,6.07815,5.52677, +13417,188292,Ten,2015,73,6.37260,5.52677,"130677, 186436, 188292" +13418,140702,Cat Hiding,2013,87,6.23632,5.52676,"140702, 158638" +13419,244691,UNO: Minecraft,2017,198,5.83829,5.52674, +13420,183400,Silly Shenanigans,2015,63,6.50587,5.52674, +13421,84470,Field of Glory Renaissance,2010,40,7.06875,5.52674, +13422,162614,Santa's Bag,2014,134,5.98701,5.52674, +13423,99044,The Battle of Lepanto,2011,61,6.53770,5.52673, +13424,660,Riffifi,2000,108,6.09769,5.52673, +13425,15399,Kharkov 1943: le coup de maître de Von Manstein,1992,36,7.23889,5.52672, +13426,235904,Pandorum,2018,72,6.38236,5.52671, +13427,271162,My First Adventure: Discovering Atlantis,2019,31,7.51355,5.52670, +13428,335857,6th Sense,2021,76,6.33708,5.52670, +13429,14514,Metric Mile,1986,35,7.28571,5.52669, +13430,20302,Punch!,2005,80,6.29625,5.52669, +13431,4296,Battles & Leaders: A Game of Tactical Level Combat in the American Civil War 1861-1865,1981,54,6.66667,5.52669, +13432,263089,Zoocracy,2019,69,6.41812,5.52666, +13433,256700,Wonderland Xiii,2018,68,6.43083,5.52665, +13434,315560,Izayoi,2020,38,7.14453,5.52665, +13435,293708,Panic in the Air,2019,55,6.64436,5.52665, +13436,20966,Queen of the Cupcakes,2005,251,5.77155,5.52665, +13437,8923,Orion,1971,54,6.66481,5.52664, +13437,7939,Vector,1970,54,6.66481,5.52664, +13439,265120,Copernico,2018,39,7.10256,5.52664, +13440,354727,Pengo Jump,2022,64,6.48695,5.52664, +13441,66507,Queen's Ransom,2010,274,5.75095,5.52664, +13442,293833,Fish 'n' Chips,2021,63,6.50159,5.52663, +13443,207335,Mandrago,2016,41,7.02439,5.52662, +13444,406378,Birdie,2024,35,7.28108,5.52662, +13445,190047,Into the Black: Boarding Party,2019,57,6.60351,5.52661, +13446,26692,Eynsteyn,1997,35,7.28000,5.52660, +13447,247951,"Moscow: The Advance of Army Group Center, Autumn 1941",2019,37,7.18514,5.52660, +13448,160608,Dungeon Bazar,2014,278,5.74730,5.52660, +13449,1043,Pitstop,2001,81,6.28395,5.52659, +13450,130202,Cock & Bull,2009,72,6.37861,5.52659, +13451,188527,Stramash,2011,44,6.92045,5.52659, +13452,1833,The Willow Game,1988,253,5.76897,5.52658, +13453,1470,Venezia,2001,231,5.79177,5.52656, +13454,234101,Samurai Vassal,2018,77,6.32208,5.52655, +13455,298147,Einer geht noch!,2020,53,6.68208,5.52655, +13456,233094,MS Batory,2017,149,5.93725,5.52653, +13457,7870,Columns,2004,51,6.72608,5.52652, +13458,370879,Portents,2022,39,7.09487,5.52652, +13459,5828,Aachen,1983,60,6.54583,5.52651, +13460,394269,Crisis: 1914,2024,33,7.37970,5.52651, +13461,378375,Rivality,2023,51,6.72549,5.52651, +13462,204141,Cat Town,2016,127,6.00787,5.52650, +13463,2814,Rapid Recall,1993,95,6.17000,5.52650, +13464,1588,Bauernschlau,1991,182,5.86236,5.52650, +13465,6448,Murder Mystery Party: A Taste for Wine and Murder,1997,56,6.61786,5.52649, +13466,9971,Seasons: The Calendar Rummy Game,2004,92,6.19076,5.52649, +13467,395493,Zombie Chickens,2023,33,7.37788,5.52649, +13468,197020,Andoria Battlefields,2019,46,6.85435,5.52648, +13469,328286,Mission ISS,2021,65,6.46615,5.52648, +13470,6456,Lodz 1914: First Blitzkrieg,1998,84,6.25357,5.52648,"6456, 8252" +13471,325676,Badland Wolves,2021,57,6.59795,5.52648, +13472,323834,Harry Potter: Catch the Snitch,2023,73,6.36301,5.52647, +13473,367601,That Sound Game,2022,62,6.51097,5.52646, +13474,353604,Unlock! Kids: Cocow Island,2021,59,6.56102,5.52646, +13475,11525,Successors,1993,97,6.15567,5.52646, +13476,12049,Wintergewitter,2007,52,6.70000,5.52645,"12049, 366904" +13477,200696,1631: Un Empire en Flammes,2016,37,7.17568,5.52645, +13478,270237,Red Peak,2019,102,6.12451,5.52644, +13479,169550,Looting Atlantis,2016,60,6.54314,5.52644, +13480,19908,Clue: Limited Gift Edition,1997,57,6.59649,5.52644, +13481,2401,Globetrotters,1984,232,5.78934,5.52644, +13482,69,Bollox,1999,50,6.74600,5.52643, +13483,187199,MiG Alley: Air War Over Korea 1951,2015,58,6.57759,5.52643, +13484,111142,Zombie Town,2011,96,6.16146,5.52643, +13485,366466,Murder Party Pocket: The Curtain Falls,2023,47,6.82340,5.52643, +13486,283746,Godzilla Card Game,2019,85,6.24353,5.52642,"277124, 277126, 283746" +13487,37743,Consensus,2008,82,6.26963,5.52642, +13488,290565,Hasty Baker,2019,59,6.55932,5.52642, +13489,8245,Bloody Buna,1979,42,6.97738,5.52642, +13490,307532,Coast to Coast,2020,33,7.37258,5.52641, +13491,137811,Galactic Strike Force,2014,489,5.65096,5.52640, +13492,281144,In this way I become a DICTATOR,2018,38,7.12895,5.52640,"281144, 306141, 374849" +13493,76681,The Kingdoms of Crusaders,2007,133,5.98414,5.52639, +13494,369918,Archie's War: The Battle for Guadalcanal,2023,54,6.65370,5.52639,"369918, 373705" +13495,9636,Winter Storm: Decision at Stalingrad,1980,32,7.42813,5.52638, +13496,3229,"The Game of Medici: Arms, Loves and Betrayals in XVth Century Europe",1982,52,6.69615,5.52637, +13497,4794,Soldier King,1982,125,6.01280,5.52636, +13498,217298,Anansi and the Box of Stories,2017,89,6.20944,5.52635, +13499,10221,Over the Top! Four Battles from World War One,1997,61,6.52295,5.52635, +13500,388394,The Choice,2023,69,6.40725,5.52635, +13501,94338,Paradisio,2010,117,6.04564,5.52634,"94338, 321692" +13502,250348,Stock hold'em,2018,62,6.50613,5.52633, +13503,425560,Strange World Above the Clouds,2024,33,7.36667,5.52633, +13504,150923,Pirates! Card Game,2014,73,6.35822,5.52633, +13505,198456,Motion Pictures: Movies Out of Cardboard,2016,71,6.38155,5.52632, +13506,221938,Careta,2017,43,6.93837,5.52632, +13507,257073,Trollfjord,2018,176,5.87127,5.52632, +13508,5875,Last Battle Twilight: 2000,1989,76,6.32500,5.52631, +13509,155440,Pleasant Dreams,2015,153,5.92294,5.52631, +13510,37983,Monkey Lab,2009,289,5.73626,5.52630, +13511,395627,The Arkham Asylum Files: Panic in Gotham City,2023,32,7.42188,5.52630, +13512,323118,Crack the Code,2021,90,6.20022,5.52629, +13513,396,Der dreizehnte Holzwurm,1998,118,6.04025,5.52629, +13514,5107,Pyramid: Home Game,1974,128,6.00001,5.52629,"5107, 286876" +13515,324602,Firebase Vietnam,2020,72,6.36806,5.52627, +13516,299253,Last One Alive,2022,72,6.36778,5.52627, +13517,8421,En Pointe Toujours!,1997,35,7.25714,5.52626, +13517,36674,Albion 20,2008,35,7.25714,5.52626, +13519,55828,"Mees, kes teadis ussisõnu",2009,104,6.10865,5.52626, +13520,3127,Age of Empires: Expandable Card Game,2000,127,6.00315,5.52626, +13521,421299,Golden Cup,2024,52,6.69038,5.52624, +13522,33581,Mwahahaha!,2008,460,5.65783,5.52624, +13523,403528,Vampire Village,2023,55,6.62618,5.52623, +13524,213578,Yōkai Quest,2017,73,6.35479,5.52622,"213578, 335581" +13525,37997,Zombie Cinema,2008,39,7.07692,5.52622,"37997, 40436" +13525,18690,Urban War,2005,39,7.07692,5.52622, +13527,6907,Mai '68 Le jeu,1980,41,7.00122,5.52622, +13528,282483,Escape from Iron Gate,2019,144,5.94618,5.52622, +13529,2713,James Clavell's Noble House,1981,68,6.41544,5.52621, +13530,342545,Stichtag,2021,59,6.55085,5.52621, +13531,97248,Judge Dredd Miniatures Game,2011,40,7.03750,5.52621, +13532,346743,Mabula,2021,30,7.54100,5.52620, +13533,153120,Transylvania: Curses & Traitors,2015,180,5.86200,5.52620, +13534,69638,Goblin Market,2010,49,6.75918,5.52619, +13535,11983,Fab Fib,2004,186,5.85097,5.52619, +13536,286544,Dali The Fox,2020,90,6.19735,5.52619, +13537,181670,Wolf & Hound,2016,77,6.31039,5.52618,"181198, 181670" +13538,178266,Fate Of Akalon: Tribes,2016,43,6.93000,5.52617, +13539,228882,Lagerstätten,2017,97,6.14845,5.52617, +13540,5924,Napoleon and the Archduke Charles: The Battle of Aspern-Essling,1986,76,6.32039,5.52617, +13541,16191,War II,1981,458,5.65795,5.52617,"16191, 33112, 363296" +13542,252684,Supertall,2018,150,5.92853,5.52616, +13543,344958,Alakablast,2022,84,6.24464,5.52616, +13544,238968,The Awful Orphanage,2019,109,6.07982,5.52616, +13545,7003,The Battle of Britain,1968,59,6.54898,5.52616, +13546,259945,NFL Showdown,2018,97,6.14794,5.52615, +13547,37724,Paul Koenig's D-Day: Juno – The Canadian Beach,2008,65,6.45385,5.52614, +13548,341009,Armonia,2021,204,5.82172,5.52614, +13549,5727,Europe at War,1985,69,6.40000,5.52614, +13550,427887,Castle Builder,2024,43,6.92791,5.52613, +13551,241323,Letter GO!,2018,48,6.78104,5.52611, +13552,20627,Warplan: Dropshot II/III,2005,30,7.53333,5.52610, +13553,174049,Sandcastles,2015,111,6.06847,5.52610, +13554,235628,CONEX,2017,229,5.78898,5.52610, +13555,331317,Coalitions,2024,31,7.46796,5.52610,"331317, 341714, 345106" +13556,90142,Tricky Bid,2011,98,6.14031,5.52609, +13557,115325,Les Maréchaux: Junot 1808 – Soult 1809,2011,35,7.24571,5.52609, +13558,166977,Gangster Dice,2015,36,7.19722,5.52608, +13559,287104,下町メイド物語: The Story of Faltisia,2019,40,7.03000,5.52608,"287104, 405889" +13560,159502,Island Dice,2015,56,6.59902,5.52605, +13561,168429,Foldable Table Curling,2013,47,6.80426,5.52604, +13562,345622,Chip 'n' Dale: Christmas Treasures,2021,81,6.26753,5.52604,"345622, 413856" +13563,277334,Patuscada,2018,40,7.02750,5.52604, +13564,124290,Open Sesame,2012,212,5.80929,5.52603, +13565,137328,Monster Café,2013,101,6.12026,5.52602, +13566,109077,Iron Sky: The Board Game,2012,120,6.02617,5.52602, +13567,64955,Hexenflug,2010,124,6.00968,5.52600, +13568,154890,Click & Crack,2013,101,6.11980,5.52600, +13569,127572,Battleship Live,2010,56,6.59673,5.52599, +13570,344438,Run Run Run!,2021,89,6.19966,5.52599,"344438, 418311" +13571,184780,Dark Assembly,2015,49,6.74898,5.52598, +13572,25302,Austerlitz 1805: Le choc des cavaleries,1995,36,7.19028,5.52597, +13573,282389,Robinson Crusoe: Escape from Despair Island,2020,44,6.88750,5.52597, +13574,267907,18ZOO,2018,43,6.91884,5.52596, +13575,153939,Tortuga,2014,372,5.68694,5.52596, +13576,164284,Nord,2015,76,6.31382,5.52596, +13577,24024,Attacktix Battle Figure Game: Transformers,2006,59,6.54068,5.52595, +13578,198898,Area 51: Top Secret,2016,64,6.46113,5.52595, +13579,392117,Duo Regna,2023,37,7.14324,5.52594, +13580,337238,Gemini Gauntlet,2021,38,7.10000,5.52593, +13581,411013,Sherlock Solitaire,2024,46,6.82609,5.52593, +13582,341433,Potato Pirates 3: Battlechips,2022,48,6.77188,5.52593, +13583,400297,Sfynx,2024,36,7.18611,5.52591, +13584,7799,"Bloodiest Day: The Battle of Antietam September 17, 1862",1995,44,6.88409,5.52591, +13585,24845,Tomahawk,2006,134,5.97127,5.52587, +13586,368837,Quickshot,2022,125,6.00325,5.52587,"368837, 426844" +13587,111097,Villains and Vigilantes Card Game,2011,48,6.76875,5.52586, +13588,276880,Frenemy Pastry Party,2019,118,6.03136,5.52586, +13589,18343,Wargame Design,1977,33,7.33333,5.52586, +13590,4107,Hang in There!,2000,122,6.01475,5.52586, +13591,257205,Hasp,2018,53,6.65094,5.52585, +13592,139137,Firefly: Out to the Black,2013,351,5.69573,5.52585, +13593,13771,Hellfire Pass,1985,63,6.47222,5.52585, +13594,5955,Patton Goes to War,1987,69,6.38986,5.52584, +13595,11160,Think: Memo Crime,1997,108,6.07778,5.52584, +13596,58565,Panic Tower!,2009,176,5.86449,5.52584, +13597,10014,Norway 1940: The Kriegsmarine Strikes,1981,52,6.67115,5.52582,"10014, 246001" +13598,3330,Peloton,1991,37,7.13514,5.52581, +13598,337904,Springvikarierna,2021,37,7.13514,5.52581, +13600,2762,Alpha Playing Cards,1997,42,6.94286,5.52580,"2762, 92678" +13601,353086,Paperbag Dungeon,2022,43,6.90930,5.52579,"353086, 368740" +13602,259064,Das Maß aller Dinge,2018,59,6.53390,5.52578, +13603,281979,New York Pizza Delivery,2022,36,7.17778,5.52578, +13604,136215,Red Menace,2013,48,6.76458,5.52578, +13605,9113,"In Flanders Fields: The Second Battle of Ypres, 1915",1999,52,6.66923,5.52578, +13606,201144,Merrill's Marauders: Commandos in Burma 1943-1944,2016,74,6.32905,5.52577, +13607,5858,Clue II: Murder in Disguise VCR Mystery Game,1987,96,6.14479,5.52576, +13608,155195,Tower of Doubt,2012,48,6.76354,5.52576, +13609,216367,Taiwan Monsters Brawl,2016,60,6.51583,5.52575, +13610,37351,Trivial Pursuit: Genus Edición III (Spain),2005,80,6.26825,5.52575, +13611,414176,Ultimatch,2024,72,6.35069,5.52575, +13612,5199,The Lords of Underearth,1981,82,6.25000,5.52575, +13613,95503,Donkey: It's a Kick!,2011,50,6.71320,5.52574, +13614,380178,OASIS New Hope,2023,150,5.92131,5.52572, +13615,320136,Naruto: Ninja Arena,2021,100,6.11893,5.52572,"320136, 338573" +13616,117549,Bullenparty,2012,130,5.98200,5.52571, +13617,13979,The Big Push: The Battle of the Somme,2005,66,6.42424,5.52571, +13618,127229,1830 Cardgame,2012,74,6.32703,5.52571, +13619,86003,Aether Captains,2010,78,6.28590,5.52570, +13620,331308,Althing,2021,40,7.00750,5.52569, +13621,394430,Arschmallows,2023,80,6.26625,5.52568, +13622,301638,Out Of This World,2020,57,6.56507,5.52568, +13623,180850,Queen of the Hill,2017,45,6.84222,5.52568,"180850, 193660" +13624,32688,Scene It? Movie Second Edition,2007,269,5.74582,5.52567, +13625,163062,Mare Nostrum: War in the Mediterranean,2015,50,6.71000,5.52567, +13626,2263,Crusades II,1994,68,6.39632,5.52567, +13627,319767,Questeros,2021,31,7.43548,5.52567, +13628,128219,Shafausa,2012,158,5.90025,5.52566, +13629,359176,Hâpy Families,2022,40,7.00500,5.52565, +13630,4049,Hammer's Slammers,1984,109,6.06835,5.52564, +13631,30834,Six Gun Sound: Blaze of Glory!,2007,33,7.31818,5.52564,"10738, 30834, 297314, 327617" +13632,244913,Brainwaves: The Brilliant Boar,2018,56,6.58137,5.52563, +13633,231,Geronimo,1995,254,5.75832,5.52562, +13634,348326,Cábula,2021,36,7.16667,5.52561, +13635,4574,Slang Teasers,1983,52,6.66154,5.52561, +13636,201510,Gadgeteers,2017,72,6.34597,5.52561, +13637,147251,Lembitu,2015,75,6.31307,5.52560, +13638,179487,My Favorite Carrera RS Trick Taking Game,2014,38,7.07895,5.52559, +13639,10557,The Black Prince,1992,64,6.44766,5.52558, +13640,20617,Battles of the Ancient World Volume II,1995,68,6.39338,5.52558, +13641,230240,Cuckooo!,2017,75,6.31200,5.52557, +13642,364354,魔女の一撃宅配便 (Witch's Shot Delivery Service),2022,36,7.16389,5.52557, +13643,175592,The Village Crone,2015,426,5.66397,5.52556, +13644,368905,Waking Shards,2022,37,7.11892,5.52556, +13645,2836,Dragonlance Mage Stones,1990,127,5.98976,5.52556, +13646,39219,Turandot,2009,143,5.93776,5.52555, +13647,98352,O Último Grande Campeão,2011,87,6.20305,5.52555, +13648,166335,Journey of the Emperor,2021,42,6.92874,5.52555, +13649,369995,Runar,2023,31,7.42581,5.52554, +13650,267179,Port Gdańsk,2018,39,7.03590,5.52554, +13651,5220,Star Trek Game,1979,86,6.21047,5.52554, +13652,154281,Legends and Lies,2014,43,6.89512,5.52553, +13653,224590,Code Triage,2018,42,6.92738,5.52552, +13654,85467,Anno Domini: Im Osten,2010,37,7.11622,5.52551, +13655,96342,Black Stories: Holiday Edition,2011,109,6.06541,5.52551, +13656,379156,Wömmeln,2023,68,6.39088,5.52551, +13657,3036,Kung Fu 2100,1980,90,6.17889,5.52549, +13658,349329,Bazaars of Ubar,2023,47,6.77660,5.52549, +13659,392197,GrumbleStone,2025,106,6.08019,5.52549, +13660,219348,Trivial Pursuit: Star Wars – The Black Series Edition,2016,101,6.10760,5.52549, +13661,6672,Seven Seas to Victory,1992,38,7.07237,5.52548, +13662,305564,Anchorman: The Game – Improper Teleprompter,2020,85,6.21702,5.52548, +13663,298017,Treelings,2020,174,5.86317,5.52547, +13664,6053,Little Big Horn,1981,86,6.20872,5.52547, +13665,231559,Quirk!,2017,49,6.72449,5.52547,"231559, 245539, 266526" +13666,20834,Husarengolf,1997,38,7.07105,5.52546, +13667,7337,Shining Path: The Struggle for Peru,1997,42,6.92381,5.52546, +13668,296736,Schnapp die Möpse,2018,53,6.63321,5.52545,"296736, 318740" +13669,334247,Squirrel Away,2021,33,7.30424,5.52545, +13670,252962,Sports Dice: Football,2018,57,6.55526,5.52545,"203030, 252962" +13671,1987,Emperor of China,1972,118,6.02288,5.52545, +13672,355829,Way Too Many Cats!,2024,50,6.69900,5.52544, +13673,12146,Gonnect,2000,41,6.95610,5.52543, +13674,404268,Elin River Cruise,2023,30,7.48000,5.52542, +13675,345455,Snake: The Board Game,2022,35,7.20000,5.52541, +13676,76920,Orient Bazaar,2010,67,6.40000,5.52540, +13677,18841,Joffre,,30,7.47833,5.52540, +13678,209642,Sherlock Holmes and Moriarty's Web,2016,95,6.14211,5.52540, +13679,28102,Sakkara,2007,160,5.89156,5.52540, +13680,109612,Mondriaan 2020,2011,86,6.20640,5.52539,"109612, 123490" +13681,378945,Dealer's Dilemma,2023,37,7.10811,5.52539, +13681,326030,Pathfinder Arena,2024,37,7.10811,5.52539, +13683,276459,Kensington,2019,57,6.55263,5.52538, +13684,164566,McJohny's,2014,86,6.20622,5.52538, +13685,253991,French and Indian War,2018,38,7.06579,5.52538, +13686,282421,Unlock!: Escape Adventures – Noël en Juillet,2018,56,6.57024,5.52537, +13687,15267,Des chiffres et des lettres,1983,255,5.75482,5.52537,"2681, 15267, 237081, 276719" +13688,37755,Scallywags,2008,145,5.92886,5.52536, +13689,47130,Shootin' Ladders: Frag Fest,2009,173,5.86353,5.52536, +13690,3067,James Clavell's Shogun Card Game,1983,77,6.28442,5.52534, +13691,393405,Lucky First Incense,2023,35,7.19486,5.52533, +13692,228045,Neerwinden 1793,2017,37,7.10405,5.52532, +13693,22329,Fatal Frame: The Card Game,2005,39,7.02308,5.52532, +13694,18835,Credit Mobilier,2005,160,5.89031,5.52532, +13695,33962,Match of the Season,2008,123,6.00000,5.52531, +13696,84671,Kissenschlacht,2010,141,5.93936,5.52531, +13697,246510,Wissembourg & Spicheren 1870,2018,37,7.10270,5.52530, +13698,116948,Cartoona,2012,283,5.73148,5.52529, +13699,314881,Nutty Squirrels of the Oakwood Forest,2021,47,6.76667,5.52529, +13700,239159,Totem: The Feel Good Game,2015,40,6.98250,5.52527, +13701,339251,I'm Right You're Wrong,2021,49,6.71429,5.52526,"339251, 357014" +13702,251854,Strange Vending Machine,2018,99,6.11364,5.52525, +13703,5162,Chinese Chess,1981,101,6.10198,5.52525, +13704,23707,Venus Needs Men,2006,103,6.09078,5.52525, +13705,175921,Gates of Vienna: 1683,2015,38,7.05789,5.52525, +13706,99131,The Alamo Remembered,2011,66,6.40758,5.52524, +13707,237171,Last One Standing: The Battle Royale Board Game,2018,116,6.02704,5.52523,"237171, 277716, 284496" +13708,338797,Beccato,2020,58,6.52824,5.52522, +13709,7830,Eagles of the Empire: Borodino,1994,61,6.47869,5.52521, +13710,208217,Morpheus,2016,69,6.36812,5.52521, +13711,7354,"Bomber: A Game of Daylight Bombing of Europe, 1943-1944",1982,50,6.68800,5.52520, +13711,283482,Zookeepers,2022,50,6.68800,5.52520, +13713,63829,Irondale,2010,166,5.87530,5.52519, +13714,6625,Seapower & the State,1982,43,6.87674,5.52519,"6625, 7020" +13715,381825,Pick a Pen: Crypts,2023,79,6.26076,5.52519, +13716,197069,Traitor Mechanic: The Traitor Mechanic Game,2016,90,6.17078,5.52519, +13717,150197,Les Guerres de Bourgogne 1474-1477,2014,36,7.13889,5.52518, +13717,261244,SATANIMALS,2019,36,7.13889,5.52518, +13719,12562,Sunrise of Victory: The 1942 Campaign in Russia,1990,52,6.64231,5.52518, +13720,103807,Dojo,2011,69,6.36681,5.52517, +13721,158487,Dragon Tides,2015,86,6.20000,5.52516, +13722,277892,The Great Escape,2019,58,6.52540,5.52515, +13723,60574,Mausgeflippt,2009,130,5.97131,5.52514, +13724,76487,Tricked-Out Hero,2014,82,6.23244,5.52514, +13725,345284,Cranky Chinchillas,2022,32,7.33750,5.52514, +13726,380051,Investigation Express,2023,40,6.97500,5.52514, +13727,171475,Clearing Coffins,2015,162,5.88309,5.52514, +13728,27649,Dragon Quest Dungeon R,2006,33,7.28182,5.52513,"6159, 6160, 27649" +13728,312504,Escape from Station 52,2020,33,7.28182,5.52513,"312504, 430522" +13730,24994,"Island of Death: Invasion of Malta, 1942",2008,47,6.75851,5.52513, +13731,52827,ZoxSo,2009,53,6.61868,5.52513, +13732,178028,Sort it Out!,2009,256,5.75152,5.52512,"34342, 40199, 178028, 304861" +13733,24658,Avanti mare!,2000,205,5.80780,5.52512, +13734,15060,"Schutztruppe: East African Guerilla Warfare, 1914-1918",1975,30,7.45667,5.52512, +13735,181808,Honours of War: Wargames Rules for the Seven Years' War,2015,35,7.18000,5.52511, +13736,218044,Opaque War: Ukraine 2014,2018,47,6.75745,5.52511, +13737,367655,ARKA V,2022,39,7.01000,5.52510, +13738,214970,ORE-SOME,2017,110,6.05144,5.52510, +13739,9668,MooT,1998,30,7.45500,5.52510, +13740,37392,Fleets 2025: East China Sea,2008,44,6.84091,5.52510, +13740,33664,"Red Dragon, Blue Dragon: The Huaihai, 1948-1949",2016,44,6.84091,5.52510, +13742,144993,Clusterfight!,2014,46,6.78370,5.52510, +13743,6611,Battlelines: The Stalingrad Campaign,2003,64,6.42969,5.52510, +13744,286885,Mokuru: Card Game,2019,76,6.28684,5.52510, +13745,13363,CAV: Combat Assault Vehicle,2001,42,6.90333,5.52509, +13746,307722,5x5 Zoo,2020,37,7.08919,5.52509, +13747,175221,Orphan Black: The Card Game,2015,97,6.12165,5.52509, +13748,143387,Amoeba,2010,30,7.45333,5.52508, +13749,361311,Matches,2024,39,7.00769,5.52507, +13750,64769,"Desert War: Egypt, 1940",2010,55,6.57636,5.52507, +13751,409509,Luminos,2024,47,6.75426,5.52504, +13752,407581,Gummi Trick,2023,49,6.70408,5.52504, +13753,385765,skitter,2022,30,7.45000,5.52503, +13754,277679,Election Night!,2019,40,6.96875,5.52503, +13755,328553,1821 Η ΜΑΧΗ,2020,31,7.38710,5.52502, +13755,237648,Knights Of Glory,2019,31,7.38710,5.52502, +13757,290861,Magical Unicorn Quest,2019,33,7.27340,5.52501, +13758,154243,Menu Mash-Up,2013,37,7.08378,5.52500, +13759,19372,Dragon Lairds,2007,95,6.13179,5.52499, +13760,260,Starship Troopers: Prepare For Battle!,1997,211,5.79810,5.52498, +13761,424980,Parks: Roll & Hike,2024,35,7.17143,5.52498, +13762,83647,FUBAR,2010,31,7.38387,5.52498, +13763,784,Discretion,1978,57,6.53509,5.52496, +13764,8571,Austerlitz 1805: Napoleon's Greatest Victory,2000,108,6.05787,5.52495, +13765,198824,Guédelon: Le Jeu,2016,38,7.03947,5.52495, +13766,146188,Mauna Kea,2013,229,5.77607,5.52493, +13767,158586,"Rampage: The Allied Drive on Germany, August - September, 1944",2015,84,6.20952,5.52493, +13768,291221,Project Universe,2019,38,7.03816,5.52493,"291221, 397832" +13769,2031,Starship Command,1991,41,6.92634,5.52491, +13770,134069,Alexander's Campaign,2017,46,6.77370,5.52490, +13771,1082,Invers,1991,117,6.01581,5.52490, +13772,150424,Ghost Division: The 7th Panzer Division's Drive to the Sea,2014,43,6.86047,5.52490, +13773,9801,Ostrakon,2004,190,5.82711,5.52489, +13774,183402,Space Planets,2015,109,6.05164,5.52489, +13775,171258,Cabaret,2015,46,6.77283,5.52489, +13776,3182,Vanished!,1990,239,5.76506,5.52488, +13777,14010,Nonsense Classic,1993,129,5.96984,5.52488,"14010, 281266, 281267, 281396" +13778,1401,Crash!,1992,69,6.35652,5.52488,"1401, 102259" +13779,71889,Third and Long: The Football Card Game,2010,55,6.56818,5.52488, +13780,287219,Hurlyburly,2019,82,6.22439,5.52487, +13781,95679,Oz,2011,72,6.32083,5.52484, +13782,227018,7 pecados,2017,138,5.94000,5.52484, +13783,251731,Lemonade Shake Up,2018,37,7.07297,5.52483, +13784,3249,Rescue from the Hive,1981,170,5.86176,5.52483, +13785,288087,Berridos,2019,41,6.92146,5.52482, +13786,250706,Die Atombombe: The Reich's Bid to Build the Bomb,2019,42,6.88810,5.52482, +13787,392703,Alpenglow,2024,34,7.20882,5.52482, +13788,9835,Paris vaut bien une Messe! Les Guerres de Religion 1562-1598,2003,51,6.64706,5.52481, +13789,81043,Rally Round the King,2010,43,6.85581,5.52481,"25050, 33507, 81043, 142747, 214465" +13790,385632,Dice and Slice,2023,39,6.99231,5.52481, +13791,984,Name Burst,1992,76,6.27763,5.52480, +13792,69815,Arnhem '44: The Operation Market Garden Boardgame,2010,36,7.11389,5.52480, +13793,158059,God Hates Charades,2014,72,6.31921,5.52480, +13794,329560,Skate: The Card Game,2021,34,7.20441,5.52476, +13795,66825,Kraken-Alarm,2010,151,5.90272,5.52474, +13796,18701,Ludus Gladiatorius,2005,86,6.18837,5.52474,"18701, 30111" +13797,148138,Mat Goceng,2013,56,6.54375,5.52474, +13798,220234,Time Breaker,2019,61,6.46002,5.52473, +13799,84609,ROLLICK! The Hysterical Game of Clues and Collaboration,2010,62,6.44486,5.52473, +13800,38924,Amerigo,2008,161,5.87904,5.52473, +13801,16332,The Battle of Tanga 1914,2015,56,6.54286,5.52472, +13802,233206,Werebeasts,2018,183,5.83623,5.52471,"233206, 316069" +13803,396042,Quirky Quarks,2023,77,6.26495,5.52471, +13804,373829,Gin Crafters,2023,41,6.91463,5.52470, +13805,2310,Cash,1990,185,5.83270,5.52470, +13806,342283,Unsolved Case Files: Avery & Zoey Gardner,2021,34,7.20000,5.52469, +13807,116231,Wordz,2011,52,6.61981,5.52469, +13808,203238,Tricky Dungeon,2017,60,6.47333,5.52467, +13809,397074,Fool's Blade,2024,53,6.59811,5.52466, +13810,143195,Spell Saga,2019,35,7.15000,5.52466,"143195, 325671" +13811,209578,"Little Bird, Big Hunger",2016,109,6.04642,5.52465, +13812,262443,Shadow Blocks,2018,52,6.61827,5.52465, +13813,7557,Battlegame Book 1: The Wild West,1975,51,6.63922,5.52464, +13814,5692,Flintloque,1995,47,6.73404,5.52464,"5692, 75989, 76092" +13815,757,Lunatix Loop,2000,70,6.33643,5.52463, +13816,9063,Brettfußball,1984,68,6.36029,5.52463, +13817,7931,Remember Gordon! The Battle of Omdurman,1982,44,6.81591,5.52463, +13818,296247,Short List,2019,38,7.01974,5.52463, +13819,348878,Oz,2021,36,7.10278,5.52463, +13820,170337,Dwarfest,2014,101,6.08713,5.52463, +13821,57409,Shashki,1680,51,6.63824,5.52462, +13822,5453,Granada: The Fall of Moslem Spain,2003,89,6.16236,5.52461, +13823,344419,Write the Future,2022,51,6.63725,5.52460, +13824,324175,Wizards & Relics,2021,41,6.90854,5.52460,"324175, 368539" +13825,250284,MONSTArgh!,2018,52,6.61577,5.52460, +13826,287346,Kai-Zen,2019,39,6.97949,5.52460, +13827,130223,Auf die Nüsse!,2012,110,6.04027,5.52459, +13828,6771,Sceptre 1027 A.D.,1986,52,6.61538,5.52459, +13829,304240,Connec'Team,2020,52,6.61500,5.52458, +13830,264729,Ricochet Poker,2018,43,6.84302,5.52458, +13831,358910,Biathlon Crystal Globe,2022,33,7.24242,5.52457, +13832,171548,Bermuda,2015,151,5.89974,5.52456, +13833,420091,DaDaDa,2024,47,6.72979,5.52456, +13834,368541,Disney Tim Burton's The Nightmare Before Christmas: Merry Madness,2022,39,6.97692,5.52455, +13835,170203,Twigs,2015,32,7.29375,5.52454,"170203, 258563" +13835,148349,Thrash-Car,2014,32,7.29375,5.52454,"148349, 166095" +13837,249364,¡TACO FIGHT!,2019,58,6.50046,5.52454, +13838,7578,Word-Whiz,1996,57,6.51754,5.52454, +13839,261140,Flipology,2019,41,6.90488,5.52453, +13840,35492,Wiedeń 1683,1992,78,6.25000,5.52453, +13841,92591,Das große Kullern,2011,58,6.50000,5.52453, +13841,402475,Super Meow,2023,58,6.50000,5.52453, +13843,191043,The Cohort,2016,103,6.07350,5.52451, +13844,313750,Personal Space,2020,35,7.14000,5.52451, +13845,200114,Tapple 10,2016,60,6.46683,5.52451, +13846,114863,Ragami,2012,147,5.90911,5.52451, +13847,1390,Auf Kurs,1987,121,5.99174,5.52451, +13848,370964,Let's Call the Exorcist,2022,48,6.70208,5.52450, +13849,16471,Great Medieval Battles Bannockburn and Angorra,1999,44,6.80909,5.52450, +13850,91831,Got 'Em!,2012,102,6.07843,5.52449, +13851,406708,Alpina,2024,57,6.51561,5.52449, +13852,286658,Ausser Rand & Band,2019,54,6.57037,5.52448, +13853,365605,Hextremadura,2023,38,7.01053,5.52448, +13854,209976,Código Enigma,2016,41,6.90173,5.52448, +13855,325710,My Own Toy Shop,2021,45,6.77889,5.52447, +13856,272234,Los Muertos No Hablan,2017,82,6.21276,5.52447, +13857,370962,Cryptozoology for Beginners,2022,58,6.49741,5.52446, +13858,109827,Paul Koenig's Market Garden: Arnhem Bridge,2011,55,6.55000,5.52445, +13859,37477,Osaki ni Shitsurei Shima-su!!,2008,195,5.81364,5.52445,"3904, 4580, 37477" +13860,182101,Dark Matter,2015,71,6.31831,5.52443, +13861,70597,Trollland,2010,112,6.02768,5.52443, +13862,54501,Die Insel der steinernen Wächter,2009,52,6.60769,5.52442, +13863,195535,The Architect,,44,6.80455,5.52442, +13863,26890,Wormhole,2008,44,6.80455,5.52442, +13865,89478,Imaginiff: 10th Anniversary Edition,2008,1726,5.55704,5.52441,"2750, 89478" +13866,107027,"Operation Anaconda: Battle in Afghanistan, March 2002",2012,41,6.89756,5.52441, +13867,96564,Engage,2011,38,7.00526,5.52439, +13868,183528,Captain Black,2015,79,6.23671,5.52439, +13869,228310,Captain Dice (キャプテンダイス),2016,59,6.47797,5.52439, +13870,229131,Terra Shifter,2017,56,6.52857,5.52438, +13871,5346,Skittle-Bowl,1783,95,6.11632,5.52438, +13872,100447,Sherlock,2011,89,6.15618,5.52438, +13873,407214,Syncro,2023,40,6.93000,5.52437, +13874,223823,ONMYOJI: Spirit War,2017,32,7.28125,5.52437, +13875,363012,Sheep Hop!,2022,45,6.77333,5.52436, +13876,18342,The Best of Board Wargaming,1980,33,7.22727,5.52436, +13877,3130,1899,1994,56,6.52768,5.52436, +13878,6008,Ruweisat Ridge: The First Battle of El Alamein,1985,81,6.21790,5.52435, +13879,251622,Moneybags,2018,309,5.70605,5.52434, +13880,357257,The Umbrella Academy: The Board Game,2024,35,7.12857,5.52434, +13880,226596,FocusX,2017,35,7.12857,5.52434,"226596, 248134" +13882,1402,Neolithibum,1991,183,5.83115,5.52434, +13883,401110,Dying Message,2023,31,7.33541,5.52434, +13884,202581,Ascendants of Aetheros,2016,83,6.20060,5.52433, +13885,257680,The Catholic Card Game,2018,44,6.80000,5.52433, +13886,41496,Chickyboom,2008,201,5.80358,5.52433, +13887,46991,À la charge: Normands et Byzantins,2009,36,7.08333,5.52433, +13888,60342,Kleine Magier,2009,121,5.98799,5.52432, +13889,172550,Harry Hopper,2015,62,6.42903,5.52432, +13890,2720,Shooting Stars: A Tactical Game of Fighter Combat in Space,1980,58,6.49138,5.52432, +13891,201458,Band Manager: The Boardgame,2016,41,6.89220,5.52431, +13892,11674,"The Lost Battalion: The Meuse-Argonne Offensive, 1918",2003,48,6.69271,5.52431, +13893,193136,Make 'n' Break: Architect,2016,38,7.00000,5.52431,"193136, 209690" +13894,233501,Yummy World: Party at Picnic Palace,2017,71,6.31408,5.52431, +13895,173629,Wallachia 20,2015,30,7.39333,5.52431, +13896,12520,"Bélisaire, la gloire de Byzance",1995,45,6.77000,5.52430, +13897,188784,Four Roads to Paris,2015,40,6.92500,5.52429,"188784, 335735, 347159, 347162, 347163" +13898,2096,Caprice,1999,145,5.91068,5.52429, +13899,233994,Sunken Sailor,2017,192,5.81608,5.52429, +13900,5492,Zar,1981,49,6.66735,5.52428, +13901,288664,Straszydła,2019,41,6.89024,5.52428, +13902,37370,Seii Taishogun,2008,37,7.03784,5.52428, +13903,422463,War of 1812: Solitaire Travel Game,2024,33,7.22121,5.52428, +13904,69587,Get Nuts,2011,226,5.77199,5.52427, +13905,39279,Somosierra 1808,2008,42,6.85714,5.52427, +13906,95449,Fame Us,2011,154,5.88760,5.52426, +13907,374019,Fruition,2022,44,6.79545,5.52425, +13908,380915,Lunaris 45,2023,42,6.85595,5.52425, +13909,35635,Get to the Chopper!!!,2006,53,6.57925,5.52424, +13910,130763,Storage Wars: The Game,2012,148,5.90203,5.52424, +13911,197073,Bureaunauts,2017,41,6.88780,5.52424, +13912,88113,Isaac,2011,119,5.99395,5.52423, +13913,234834,Apocalypse au Zoo de Carson City,2017,270,5.73119,5.52422, +13914,256967,Shuffle Grand Prix,2019,119,5.99370,5.52422, +13915,161063,Stipulations,2014,68,6.34574,5.52422, +13916,326090,"Empire at Sunrise: The Great War in Asia, 1914",2021,39,6.95641,5.52421, +13917,7754,Smithereens: The End of World War II in Europe,1993,60,6.45500,5.52421, +13918,328500,Dawn,2023,45,6.76489,5.52420, +13919,63433,Tantrix Gobble,2009,57,6.50368,5.52420, +13920,4048,"War of the States: Gettysburg, 1863",2002,90,6.14444,5.52420, +13921,245695,Salamamba,2018,41,6.88537,5.52419, +13922,266937,Cradle of Civilization,2021,31,7.32419,5.52419, +13923,260212,The Forgotten City,2018,111,6.02689,5.52419, +13924,231302,The Cat Game,2017,350,5.68358,5.52418, +13925,175150,Casting,2015,94,6.11766,5.52418, +13926,316048,Fortress of Terror,2022,30,7.38333,5.52418,"316048, 383365, 414162" +13926,7588,Principles of War: Napoleonic – Wars Between 1792 and 1815,1996,30,7.38333,5.52418, +13928,3265,NUTS! The Battle of the Bulge Card Game,1998,113,6.01770,5.52418, +13929,90855,Scavengers,2011,95,6.11116,5.52417, +13930,17464,Blood of Noble Men: The Alamo,2006,60,6.45333,5.52417, +13931,7657,Astron,1954,50,6.63900,5.52416, +13932,286138,Dim Sum Jam,2019,61,6.43770,5.52416, +13933,97494,Nordwind 1945,2011,45,6.76222,5.52415, +13934,203002,Zampa La Granja,2017,64,6.39453,5.52415, +13935,194640,Under My Bed,2016,106,6.04953,5.52414, +13936,350945,Class War: The Jacobin Board Game,2022,44,6.78977,5.52414, +13937,317087,Dogs Bond,2021,40,6.91625,5.52414, +13938,69761,Panzer General: Russian Assault,2010,105,6.05429,5.52413, +13939,104353,Savage Streets,2011,69,6.33043,5.52412, +13940,8363,Turning Point: The Battle of Stalingrad,1972,65,6.38000,5.52412, +13941,39034,North Pole,2011,70,6.31857,5.52411, +13942,10914,Hannibal: Rome and Carthage in The Second Punic War 219-202 B.C.,1983,41,6.88049,5.52411, +13943,97329,El mundo de Águila Roja,2011,49,6.65898,5.52411, +13944,18880,Daddy Cool,2004,139,5.92374,5.52408, +13945,12319,Quandary,1970,65,6.37846,5.52407, +13946,7182,TimeLine,2003,223,5.77309,5.52407, +13947,322250,Hack & Slash,2021,69,6.32870,5.52407,"322250, 431049" +13948,258783,Into the Black Forest,2019,84,6.18500,5.52407, +13949,26582,Xēko Mission: Madagascar,2005,63,6.40476,5.52405,"26582, 207956, 207957, 208082" +13950,358387,HONK!,2022,34,7.15588,5.52405, +13951,90162,Carrom Shuffle Board Game,,32,7.25781,5.52405, +13951,308856,Ulaya Chronicles: Raptor Claw Island,2021,32,7.25781,5.52405,"227229, 308856" +13953,10584,Texas Revolution,1981,43,6.81395,5.52404, +13954,410,D'raf,1997,103,6.06233,5.52404, +13955,13436,Hopp hopp Häschen,2004,275,5.72560,5.52403, +13956,312951,Alien Puppies,2020,45,6.75556,5.52402, +13957,11129,"Krim: von Manstein's Battles for Sevastopol, 1941-1942",1990,66,6.36364,5.52402, +13958,254613,"ROLL for Your Life, Candyman!",2018,109,6.03239,5.52402, +13959,337932,Taco Bell Party Pack Card Game,2021,211,5.78664,5.52402, +13960,294232,Stolen Paintings,2020,76,6.25303,5.52402, +13961,27618,Classic Statis Pro Baseball,1987,46,6.72826,5.52401, +13961,358030,Disney Happiest Day Game,2022,46,6.72826,5.52401, +13963,125549,Infinity Dungeon: Peril Without End,2012,90,6.13944,5.52401, +13964,327839,Fisheries of Gloucester,2023,51,6.60980,5.52401,"327839, 342675" +13965,243220,Sainome Colosseum R,2017,40,6.90750,5.52399,"187718, 243220" +13966,25593,Der Prestel Kunstmarkt,2006,57,6.49474,5.52399, +13967,279477,Madrino,2019,54,6.54815,5.52398, +13968,350730,Space Rocket,2021,51,6.60784,5.52396, +13969,330668,Koi Garden,2021,81,6.20617,5.52396, +13970,92186,Aether Captains: Pirates and Traders,2011,35,7.10143,5.52393, +13971,275085,Maiko,2019,47,6.69787,5.52392, +13972,43168,Scrappers,2009,198,5.80253,5.52391, +13973,192909,Sneaky Cards,2015,132,5.94182,5.52391,"192909, 246763" +13974,374368,Disney: Mickey's Christmas Carol,2022,56,6.50893,5.52391, +13975,300146,UNDO: 600 Seconds,2020,93,6.11697,5.52391, +13976,375975,Bound,2023,38,6.97500,5.52390, +13977,186404,Vault,2015,36,7.05556,5.52390, +13978,21342,The Great Chili Cookoff,2006,184,5.82353,5.52390, +13979,66197,Spiel mit Lukas: Dribbel-Fieber,2010,66,6.35909,5.52390, +13980,35934,Tile Rummy,1983,40,6.90125,5.52388, +13981,277003,Exiled Legends,2019,98,6.08592,5.52388, +13982,101723,Hungarian Tarokk,1870,57,6.49018,5.52388, +13983,323103,A las Chapas,2020,47,6.69574,5.52388,"323103, 399865, 399899" +13984,51067,Monopoly: The Nightmare Before Christmas,2009,135,5.93185,5.52388, +13985,19432,Hexagonal Chess,1936,39,6.93590,5.52387, +13985,18256,Quartile,2005,39,6.93590,5.52387, +13987,148190,Warring Kingdom,2014,31,7.30000,5.52387, +13988,86754,I Signori dei Draghi,2010,48,6.67083,5.52387, +13989,42256,Cold War Battles 2: Pentomic Wurzburg & Kabul '79,2010,54,6.54333,5.52386, +13990,29691,Look Away!,2007,40,6.90000,5.52386, +13991,57865,X610Z,2009,100,6.07430,5.52386,"57865, 103806" +13992,223597,Dance of the Fireflies,2017,112,6.01527,5.52386, +13993,231872,Heirs of the Wizard King,2018,61,6.42557,5.52385, +13994,149814,Guild Stack,2013,37,7.00946,5.52383, +13995,411403,Danger Danger,2024,35,7.09384,5.52382, +13996,649,Thieves of Bagdad,1999,124,5.96694,5.52382, +13997,345637,Dr. Seuss: Merry Grinchmas! Game,2021,49,6.64490,5.52381, +13998,288969,Puzzle-Memo,2019,62,6.40968,5.52381,"288969, 349106" +13999,394134,Without Fail,2023,51,6.60059,5.52381, +14000,260568,Seven Prophecies,2017,33,7.18788,5.52381, +14001,257411,This Game Goes to Eleven,2018,124,5.96653,5.52380, +14002,64161,Field Hospital,2010,30,7.35333,5.52379, +14003,98475,7 Islands,2011,44,6.77068,5.52378, +14004,229369,Bobbidi Boom,2017,69,6.31884,5.52378, +14005,17146,Rommel at Bay,1984,48,6.66667,5.52378, +14006,235616,Valhal,2020,75,6.25520,5.52378,"235616, 287285" +14007,397376,"You Can't Say ""Umm""",2023,46,6.71609,5.52378, +14008,339754,Wombat Kombat,,32,7.23750,5.52377, +14009,318189,Nile Artifacts,2021,59,6.45322,5.52377, +14010,175468,Foe Hunters,2016,62,6.40790,5.52376, +14011,232360,Voyagers' Venture,2017,33,7.18485,5.52376,"208105, 232360" +14012,3815,"World War II: European Theater of Operations, 1939-45",1973,134,5.93284,5.52376, +14013,192731,Skiwampus,2016,60,6.43733,5.52376, +14014,10785,D-Day: The Great Crusade,2004,50,6.62000,5.52376, +14015,270501,Kawaii,2019,169,5.84806,5.52376, +14016,215065,75 Gnom' Street,2016,215,5.77857,5.52375, +14017,218590,Pit Formula,2017,44,6.76886,5.52375, +14018,420766,Trick & Snipers,2024,47,6.68936,5.52375, +14019,208073,XYbrid,2017,52,6.57692,5.52374, +14020,12963,Succession: Intrigue in the Royal Court,2004,285,5.71580,5.52373, +14021,198668,Top Hats And Treachery,2017,60,6.43600,5.52373, +14022,9194,Personality,1995,94,6.10585,5.52372, +14023,1775,Password Plus,1978,34,7.13235,5.52371, +14023,23724,Dragon Chess,2005,34,7.13235,5.52371, +14025,394338,Chocolates,2024,30,7.34667,5.52371, +14025,394151,Three Wishes,2023,30,7.34667,5.52371,"288604, 394151" +14027,111855,Lumacorsa,2011,82,6.19061,5.52371, +14028,39084,CrossWise,2008,131,5.94115,5.52371, +14029,162038,Private Die,2016,58,6.46638,5.52370, +14030,1299,Trivial Pursuit: Genus IV,1996,1287,5.56615,5.52369,"1299, 25984, 40853, 94941, 416132, 418805" +14031,132598,Black Swan,2012,74,6.26216,5.52369, +14032,40619,Tonga Island,2009,91,6.12418,5.52369, +14033,144959,Meuse Argonne: The Final Offensive,2013,38,6.96132,5.52368, +14034,3008,Wicketz,1989,61,6.41885,5.52367, +14035,112557,Guild,2011,49,6.63776,5.52367,"112557, 224161" +14036,130017,"War of the Pacific, Chile vs. Perú and Bolivia, 1879-1883",2013,40,6.88750,5.52365, +14037,195489,Slush Fund 2,2016,104,6.04817,5.52365,"34218, 195489" +14038,299630,Honey,2021,50,6.61460,5.52365, +14039,183976,Dice Bazaar,2016,80,6.20500,5.52363, +14040,373,Wrott & Swindlers,1995,53,6.55189,5.52362, +14041,170980,Elven Castle,2013,51,6.59216,5.52362, +14042,10038,Fateful Lightning,1994,45,6.73444,5.52362, +14043,9018,Trafalgar,1973,43,6.79070,5.52362, +14044,9853,Champs de Bataille IV: Asie,2003,44,6.76136,5.52361, +14045,25999,Hus,,76,6.24013,5.52361, +14046,361208,My Hero Academia: Plus Ultra! Board Game,2022,87,6.14943,5.52360, +14047,12352,Kineti-Go Magnetic Shuffleboard,2004,47,6.68191,5.52360, +14048,6402,Forward to Richmond!,1980,71,6.29014,5.52359, +14049,361862,Pass the Party Food,2023,42,6.81905,5.52359, +14050,61902,Disney Apples to Apples,2009,295,5.70801,5.52359, +14051,260046,Dragon's Path,2018,32,7.22344,5.52358, +14052,51401,Pentalath,2009,47,6.68085,5.52358, +14053,275349,Folded Wishes,2020,75,6.24867,5.52357, +14054,72622,Rattenkrieg: Assault on the Tracktor Factory,2010,123,5.96545,5.52356, +14055,338099,NEUE HELDEN ... braucht das Land,2021,47,6.67979,5.52356, +14056,118539,Medieval Conspiracy,2015,56,6.49375,5.52355, +14057,355271,Die Zukunft von Camelot,2022,37,6.99189,5.52355, +14058,35254,Monopoly: Indiana Jones,2008,112,6.00848,5.52354, +14059,2139,The X-Files Collectible Card Game,1996,392,5.66207,5.52354, +14060,24025,Attacktix Battle Figure Game: Marvel,2006,83,6.17711,5.52352, +14061,173093,WarQuest,2016,86,6.15407,5.52351, +14062,287839,8 Bit Attack,2019,111,6.01204,5.52351, +14063,377162,Cartaventura Odyssey: The Treasure of Libertalia,2022,33,7.16667,5.52351, +14064,1896,The American Dream Game,1979,64,6.37070,5.52350, +14065,179973,GobbleStones,2015,139,5.91354,5.52350, +14066,365634,The Godfather: Last Family Standing,2022,38,6.95000,5.52350, +14067,301637,Crazy Fishing,2020,73,6.26555,5.52348, +14068,47414,City of Guilds,2009,59,6.44153,5.52348,"47414, 106782" +14069,26141,Tavern,2006,75,6.24533,5.52347, +14070,294723,Dragon Ball Super: Universe Survival,2019,83,6.17574,5.52347, +14071,40911,Ardeny 1944-45,2005,37,6.98649,5.52347,"40911, 366235" +14071,392064,Trekking,2024,37,6.98649,5.52347, +14073,283609,Rubik's Cage,2019,58,6.45621,5.52345, +14074,152985,Omertà: Clan ohne Plan,2013,35,7.06857,5.52344, +14075,15407,TATATA!,2005,131,5.93626,5.52344, +14076,264984,Peter's Two Sheep Dogs,2018,44,6.75227,5.52344, +14077,388,Finale,1998,337,5.68386,5.52344,"388, 21051" +14078,11763,Campaign for Guadalcanal: Long Lance & Henderson Field,1994,41,6.84146,5.52343, +14079,29286,Stratego: America's Civil War Collector's Edition,2007,54,6.52407,5.52342, +14080,166260,Demonslayer: Siege of Mt. Kunlun,2014,72,6.27385,5.52342, +14081,6146,S.F.3.D. Original,1984,33,7.16061,5.52342, +14081,419639,Krakel Orakel,2024,33,7.16061,5.52342, +14083,136954,Road Rally USA,2013,121,5.96988,5.52342, +14084,40102,Verdun: A Generation Lost,2009,42,6.80952,5.52342, +14085,1701,Toscana,2001,389,5.66224,5.52341, +14086,359961,Pentaquest,2022,69,6.30580,5.52340, +14087,118515,Piranhas,2012,159,5.86289,5.52340, +14088,18011,Chaturanga,550,119,5.97689,5.52339,"18011, 388516" +14089,170867,Battle of Durak,2014,72,6.27292,5.52339, +14090,236508,Towers of the Sun,2023,32,7.20969,5.52339, +14091,378616,Pass Pass,2023,54,6.52259,5.52339, +14092,286434,UBike Tour: Taiwan,2019,59,6.43763,5.52338, +14093,165946,Green Beret: Vietnam,2015,35,7.06429,5.52338, +14094,22244,Toppo,2006,204,5.78775,5.52338, +14095,21061,Go/Stop,2005,106,6.03208,5.52338,"21061, 402068" +14096,400858,Hipparchus,2023,60,6.42189,5.52337, +14097,55841,Schwarzes Gold,2009,59,6.43644,5.52335, +14098,3238,Rally: Risk and Evaluation on All Roads in the Worlds,1980,49,6.62265,5.52335, +14099,27373,Guillotine,1987,62,6.39194,5.52335, +14100,32337,About Time,2007,107,6.02664,5.52335, +14101,154811,MERCS: Conflict,2014,101,6.05644,5.52334, +14102,4300,The Barbarians: Games of the Fall of Rome and the Mongol Invasion of Europe,1981,93,6.10215,5.52334, +14103,129969,Schlag den Raab: Das Quiz,2012,42,6.80476,5.52333, +14104,332325,Rambazamba,2021,54,6.51963,5.52332, +14105,39134,"Future War Commander: Fast Play Tabletop Wargame Rules for Combined-Arms Operations, The Future",2008,30,7.31667,5.52332, +14106,196031,The Pioneers Program,2017,99,6.06667,5.52332, +14107,402673,Misión Chungungo,2024,31,7.25806,5.52331, +14108,4316,"Belter: Mining the Asteroids, 2076",1979,88,6.13409,5.52330, +14109,283820,King Me!,2019,125,5.95320,5.52330, +14110,96703,Aether Captains: Clockwork Cabal,2011,83,6.17048,5.52329, +14111,133421,Bankraub,2013,68,6.31324,5.52329, +14112,281647,Stellaris: Infinite Legacy,2025,136,5.91810,5.52328, +14113,172509,Asterix & Obelix: Das große Abenteuer,2016,87,6.14023,5.52327, +14114,111026,"Opération Husky, Sicile 1943",2011,36,7.01389,5.52326, +14115,150599,Takara Island,2011,239,5.74775,5.52326, +14116,175265,Piñata Party,2015,88,6.13295,5.52326, +14117,316700,TIC TOC,2020,45,6.71486,5.52325,"303970, 312611, 312612, 316700" +14118,31764,Tobynstein,2007,78,6.21064,5.52324, +14119,173752,The Cookie,2014,103,6.04359,5.52323,"173752, 205789" +14120,37097,Quincunx,2008,40,6.86250,5.52322, +14121,301442,Froggit,2020,53,6.53396,5.52322, +14122,11433,Operation Spark: the Relief of Leningrad 1943,1997,41,6.82927,5.52321, +14123,91512,Bella Blümchen,2011,125,5.95144,5.52321, +14124,5930,Campaigns of Marlborough,1987,57,6.46228,5.52320, +14125,174943,Ninja Arena,2016,42,6.79762,5.52320, +14126,24127,Pokémon Trading Figure Game,2006,81,6.18395,5.52320, +14127,11185,Grant Moves South,1983,30,7.30703,5.52320, +14128,2606,Dover Patrol,1919,73,6.25616,5.52320, +14129,191049,Smugglers,2016,300,5.70149,5.52319, +14130,344551,The West: Ascendant,2021,33,7.14394,5.52319, +14131,35813,The Garlic Vampires,2008,49,6.61429,5.52318, +14131,5933,Red Sky Morning,1991,49,6.61429,5.52318, +14133,140939,Actionworks,2013,41,6.82683,5.52317, +14134,38868,Zanziar,2008,78,6.20833,5.52317, +14135,56195,Galaktico,2009,50,6.59200,5.52317, +14136,209748,Find Your Seats,2017,74,6.24527,5.52316, +14137,184797,Dark Frontier,2015,46,6.68478,5.52316, +14138,293739,EL: The Chicago Transit Adventure,2019,55,6.49455,5.52316, +14139,22266,Zig-Zag,2006,341,5.67972,5.52315, +14140,25991,Manila '45: Stalingrad of the Pacific,2007,56,6.47643,5.52314, +14141,351903,Giftbringer,2021,58,6.44328,5.52314, +14142,2597,Jurassic Park III: Island Survival Game,2001,174,5.82959,5.52312, +14143,1045,Malawi,1986,65,6.34323,5.52311, +14144,187814,Great Northern War: Charles XII Versus Peter the Great,2016,35,7.04571,5.52310, +14145,142981,"The Greek Civil War, 1947-49",2014,48,6.63333,5.52310, +14146,37718,"The Games of War: A Treasury of Rules for Battles with Toy Soldiers, Ships and Planes",2007,31,7.24194,5.52310, +14147,8911,On to Moscow,1994,66,6.33030,5.52310, +14148,92777,Ragnarök: Aesir and Jötunn,2011,45,6.70667,5.52309, +14149,465,Zankapfel,1993,71,6.27324,5.52309, +14150,343542,Imigrantes,2021,34,7.08882,5.52308, +14151,178154,One Hit Kill,2015,133,5.92331,5.52308, +14152,11531,Snake Pit,2002,89,6.12112,5.52307,"11531, 432149" +14153,310385,Tanuki Matsuri,2020,38,6.92368,5.52307, +14154,3921,Street Illegal,2002,450,5.64127,5.52306, +14155,329019,Angola 1987-1988,2021,35,7.04286,5.52306, +14156,286247,Hedgehog Hop,2019,56,6.47282,5.52306, +14157,414661,Dirt and Glory,2024,44,6.73183,5.52306, +14158,149459,Assaultous,2013,40,6.85250,5.52305, +14159,375378,Le grand méchant Monstre,2023,36,7.00000,5.52305, +14160,34118,Ultimate,2008,45,6.70444,5.52305, +14161,406754,echoes: Das Orakel,2024,32,7.18438,5.52305, +14161,298193,Fox on the Run,2020,32,7.18438,5.52305, +14163,209320,Druids,2016,36,6.99972,5.52305, +14164,10968,Crash Canyon,1989,73,6.25123,5.52304, +14165,365190,Top Ten Quiz,2022,37,6.95946,5.52304, +14166,30951,Nanu?,1989,122,5.95861,5.52304, +14167,408320,NOW!,2024,64,6.35332,5.52304, +14168,96266,Aether Captains: Triad,2011,55,6.48909,5.52303,"96266, 145277" +14169,238210,Lost in the Woods,2018,64,6.35313,5.52303, +14170,186722,True Messiah,2018,34,7.08529,5.52303, +14171,31975,Retsami,2006,69,6.29275,5.52302, +14172,1053,Orbit,1993,213,5.77235,5.52302,"1000, 1021, 1053, 1714" +14173,39029,Castle Builders,2008,159,5.85697,5.52302, +14174,290619,"Built for War: Design, Build, and Destroy World War II Tanks",2021,50,6.58400,5.52300, +14175,34311,"First Battle of Britain: The Air War Over England, 1917-18",2009,46,6.67609,5.52299, +14176,203673,Complicated Board Game the Card Game,2017,56,6.46964,5.52298,"203673, 287736" +14177,409503,Feeling Lucky?,2024,40,6.84825,5.52298, +14178,8533,Quintillions,1980,35,7.03714,5.52297,"8533, 307522" +14179,24927,Scrabble Scramble,2005,157,5.86046,5.52297, +14180,5044,Tunisia 43,2000,36,6.99444,5.52296, +14181,297253,Owl About,2019,41,6.81463,5.52296, +14182,257445,Super Camelot,2019,65,6.33769,5.52296, +14183,116402,"Sheep, Dogs and Wolves",2012,37,6.95405,5.52295, +14184,6024,"Warsaw Rising: Revolt of the Polish Underground, 1944",1986,81,6.17654,5.52295, +14185,32429,Mouse Match,2007,82,6.16829,5.52294, +14186,172312,Tausch Rausch,2015,107,6.01738,5.52293, +14187,5305,Hockey Bones,1974,48,6.62500,5.52293, +14188,180006,Fram R'lyeh,2015,96,6.07375,5.52292, +14189,341401,Hunt A Killer: Murder at the Motel,2021,117,5.97479,5.52292, +14190,353632,Animalia: Preventing Extinction,2022,67,6.31194,5.52292, +14191,296892,Sacred Rites,2020,50,6.58000,5.52291, +14192,178517,Black Ops: Tactical Espionage Wargaming,2015,46,6.67174,5.52291, +14193,5964,American Civil War 1861-1865,1983,77,6.20909,5.52290, +14194,171663,Attila,2015,212,5.77204,5.52290, +14195,178984,Civicus Dice Game,2015,52,6.53846,5.52289, +14196,342801,Ghosted,2021,79,6.19131,5.52289, +14197,234216,Niwa,2017,46,6.67065,5.52289, +14198,34419,Kheops,2008,144,5.88944,5.52288, +14199,3838,Firestorm,2001,61,6.38820,5.52288, +14200,338750,Secret Squad,2021,49,6.60000,5.52288,"257246, 338750" +14201,403639,Floats McGoats,2023,37,6.94865,5.52287, +14202,164600,Monkeys Need Love Too,2015,46,6.66957,5.52287, +14203,358127,Sayū,2022,33,7.12121,5.52287, +14204,5335,The Horse Soldiers: Forrest at Bay,1988,86,6.13605,5.52286, +14205,125609,Pixel Lincoln: The Deckbuilding Game,2013,315,5.69022,5.52285,"46245, 125609" +14206,423698,Tree Society,2024,66,6.32121,5.52284, +14207,360032,Double Donkey,2022,67,6.30896,5.52283, +14208,42336,Ultimate Tic-Tac-Toe,2008,153,5.86699,5.52283, +14209,88045,From Overlord to Berlin,2010,38,6.90789,5.52282, +14210,272697,Newfoundland Jam,2018,60,6.40000,5.52282, +14210,213500,1672: The Lost Crew,2016,60,6.40000,5.52282, +14212,2395,Thoughtwave,1974,78,6.19744,5.52281, +14213,17939,18US,2005,39,6.87179,5.52281, +14213,380610,Cat Horror Festival,2023,39,6.87179,5.52281, +14215,360214,Metz,2023,61,6.38525,5.52281, +14216,3499,3-D Chess,1851,132,5.92121,5.52280, +14217,320829,Epic Seven Arise: The Boardgame,2023,62,6.37097,5.52280, +14218,284948,"Dawn of Empire: The Spanish American Naval War in the Atlantic, 1898",2020,54,6.49630,5.52279, +14219,171862,Vikings: The Board Game,2016,69,6.28465,5.52279, +14220,264843,El Maestro,2019,120,5.96069,5.52278, +14221,298728,March on the Drina,2019,33,7.11515,5.52278, +14222,139456,Historical Conquest: The Card Game,2013,34,7.06765,5.52277, +14223,268762,Kibble Scuffle,2019,72,6.25222,5.52277, +14224,208134,Danger the Game,2018,65,6.33077,5.52277,"208134, 428684" +14225,251826,"Lebensraum: The War For Europe, 1941-1945",2018,52,6.53269,5.52277,"7014, 7023, 251826" +14226,266268,Das Versteck des Goldgräbers,2019,37,6.94189,5.52276, +14227,268427,The Mysterious Library,2018,35,7.02286,5.52276, +14228,29676,Monopoly: Tropical Tycoon DVD Game,2007,237,5.74427,5.52276, +14229,194231,Poker Assault,2016,88,6.11909,5.52275, +14230,73091,Momentum,2010,45,6.68889,5.52275, +14231,102792,Zero,2011,240,5.74118,5.52273, +14232,54073,Fish Stix,2009,98,6.05765,5.52273, +14233,5459,No Dice,1987,43,6.74186,5.52273, +14234,224680,Dungeon Digger,2017,58,6.42621,5.52272, +14235,3604,Mamba,2001,73,6.24041,5.52271, +14236,2567,Who Stole Ed's Pants?,2001,289,5.70394,5.52271, +14237,7129,Force Eagle's War,1990,50,6.57020,5.52270, +14238,296331,Monkey Around: The Wiggle & Giggle Game,2017,48,6.61354,5.52270, +14239,253742,Serial Killer,2018,36,6.97704,5.52270,"253742, 355921" +14240,33140,Hyper Slide,2007,77,6.20260,5.52269, +14241,283157,Dungeon Doors,,42,6.76905,5.52269, +14242,342940,Plant-Based Riot,2022,31,7.21129,5.52269, +14243,274527,antyszczepionkowcy.biz,2019,73,6.23973,5.52269, +14244,244506,Last Stand,2018,63,6.35333,5.52269, +14245,21849,UNO H2O Splash,2005,131,5.92214,5.52268, +14246,3325,Chartbuster,1970,41,6.79878,5.52268, +14247,16439,Loot,1993,79,6.18494,5.52268, +14248,16110,Il Cucco,,154,5.86234,5.52268, +14249,1649,Colonisator: The Twelve Planets' War,1979,88,6.11705,5.52267, +14250,278688,The Keeyp,2019,40,6.83000,5.52267, +14251,1364,Pillage & Plunder,2000,70,6.26964,5.52267, +14252,7567,Proteus,1983,43,6.73837,5.52266,"7567, 145881" +14253,10308,The Campaigns of Frederick the Great,1993,72,6.24861,5.52266, +14254,168834,Rocca Rails,2014,59,6.40847,5.52266, +14255,3402,Modigliani,1993,38,6.89795,5.52266, +14256,360567,Gettysburg Solitaire,2022,34,7.05882,5.52264, +14257,165797,Der unendliche Fluss,2014,158,5.85316,5.52264, +14258,121987,Crimebox Investigation,2012,88,6.11602,5.52264, +14259,2217,Columbus,1991,176,5.81932,5.52264, +14260,367667,Lord of Bones,2022,72,6.24778,5.52263, +14261,328958,Drags 2 Riches,2023,35,7.01429,5.52263, +14261,24805,Tori Shogi,1799,35,7.01429,5.52263, +14263,314043,Balance Elemental,2020,52,6.52639,5.52263, +14264,7047,The Mother Lode of Sticky Gulch,2003,77,6.20000,5.52261, +14265,10878,Visual Game,1991,138,5.90045,5.52260, +14266,5298,Curses!,2001,658,5.60183,5.52260,"5298, 80800, 85902, 177131" +14267,152824,Enigmàrius,2013,61,6.37727,5.52260, +14268,300011,Save The Dragon,2020,64,6.33719,5.52260, +14269,305911,Sherlock Holmes: The Shadow of Jack the Ripper,2018,33,7.10182,5.52259, +14270,393315,Spheres of Life: Mythical Forest,2023,31,7.20323,5.52259, +14271,9152,The Damned Die Hard: Philippines '41,1999,51,6.54412,5.52258, +14272,150623,Flippin' Fruit,2014,45,6.68000,5.52258, +14273,152767,Conquest of Speros,2015,234,5.74506,5.52257, +14274,20090,Double Agent,2005,223,5.75600,5.52257, +14275,9509,Iglu Iglu,2004,131,5.91985,5.52256, +14276,11446,La Ruta del Tesoro,1980,157,5.85396,5.52256, +14277,20953,Piratissimo,2005,196,5.78801,5.52255, +14278,7536,Battlegame Book 3: Galactic War,1975,52,6.52308,5.52255, +14279,89386,Quiz: Iisen Ikima Show !,2008,67,6.29851,5.52254, +14280,328793,Uranus!,2021,34,7.05147,5.52254, +14281,183839,Flip a Bird,2015,103,6.02718,5.52253, +14282,906,Abilene,1983,153,5.86209,5.52252, +14283,8693,"1918: Operation Michel, Germany's Last Chance in the West",1972,60,6.38833,5.52252, +14284,362,Elefantenparade,1988,211,5.76872,5.52252, +14285,5343,Hang on Harvey!,1969,58,6.41776,5.52251, +14286,155245,In Security,2014,91,6.09286,5.52250, +14287,268251,Praise,2019,40,6.82000,5.52250,"198481, 268251" +14288,333953,Shiki,2020,49,6.58163,5.52250, +14289,91737,The Picrocholine Wars,2011,38,6.88816,5.52250, +14290,129603,Παλέρμο: Το Μεγάλο Ξεκαθάρισμα (Palermo: The Big Cleanup),2013,41,6.78780,5.52249, +14291,365597,Chaotic Studio,2022,50,6.56000,5.52249, +14292,6938,"Global War: The War Against Germany and Japan, 1939-45",1975,129,5.92457,5.52249, +14293,217344,Die Gärten von Versailles,2017,86,6.12558,5.52248, +14294,118342,Skittykitts,2012,85,6.13259,5.52248, +14295,28121,Fluxx en Español,2006,131,5.91835,5.52248, +14296,154934,Pentominoes,1953,74,6.22297,5.52247,"6547, 12183, 43411, 154934" +14297,296353,Color It!,2020,83,6.14699,5.52247, +14298,176523,Zombie Sheep,2015,35,7.00326,5.52247, +14299,374458,Zero Hero,2023,57,6.43123,5.52246, +14300,127129,Batman: Arkham City Escape,2013,269,5.71494,5.52245, +14301,282505,Peruke,2015,46,6.64783,5.52244, +14302,174895,"North Cape: Convoy Battles in the Arctic, 1942-45",2015,33,7.09091,5.52244, +14303,344877,Hellboy: The Dice Game,2023,113,5.98044,5.52244,"344877, 396550, 396551" +14304,187515,Zooscape,2015,317,5.68568,5.52243, +14305,146245,Kings of Artifice,2013,82,6.15341,5.52243, +14306,232348,Rise of the Exiled,2018,34,7.04412,5.52243, +14307,170423,Comment j'ai adopté un gnou,2014,88,6.11023,5.52242,"170423, 209862" +14308,39745,An Loc: 1972 – The North Vietnamese Push Towards Saigon,2008,39,6.84872,5.52242, +14309,158416,Kircholm 1605,2014,35,7.00000,5.52242, +14310,1210,Cults Across America,1998,397,5.65267,5.52242, +14311,6979,Match of the Penguins,2003,293,5.69887,5.52241, +14312,1028,Kraut & Rüben,1998,121,5.94959,5.52241, +14313,334782,Bayou Bash,2021,39,6.84615,5.52238, +14314,1712,Showbiz,1984,93,6.07742,5.52238, +14315,35256,Caledea: The Epic Strategy Game,2008,140,5.89064,5.52235, +14316,176557,My Fair Princess,2015,49,6.57449,5.52235, +14317,19416,Celtic Quest,2005,83,6.14337,5.52235, +14318,256621,Trainsilvania,2019,82,6.15085,5.52234,"256621, 378958" +14319,237834,Rattaneer,2017,50,6.55260,5.52233,"237834, 287817" +14320,415910,Architects of Amytis,2024,33,7.08333,5.52233, +14321,172598,H.I.D.E.: Hidden Identity Dice Espionage,2015,196,5.78512,5.52233, +14322,168485,Blocks,2014,36,6.95306,5.52233,"86275, 168485" +14323,557,Laguna,2000,152,5.86116,5.52233, +14324,158604,Aristo-Maze,2014,59,6.39492,5.52232, +14325,1003,Das Regeln Wir Schon!,1994,60,6.38000,5.52231, +14326,18084,Anno Domini: Schweiz,1998,56,6.44107,5.52230, +14327,5437,Raid on Iran,1980,101,6.03168,5.52230, +14328,1331,Showdown Yahtzee,1991,201,5.77811,5.52229, +14329,2503,Godsfire,1976,116,5.96552,5.52229, +14330,391214,OTLO Stones,2023,49,6.57143,5.52229,"391214, 400571" +14331,5589,Full House,1979,180,5.80776,5.52228,"5589, 411394" +14332,12795,Big League Hockey Manager,2005,90,6.09300,5.52227, +14333,152229,Line or Colour,2014,33,7.07879,5.52227, +14334,5135,Malarky,1996,460,5.63389,5.52226, +14335,73536,The Chinese Civil War of 1930,2010,34,7.03235,5.52226, +14336,391161,Medang,2023,31,7.17806,5.52225, +14337,7106,Tabu: The Game of Aztecs,1980,107,6.00187,5.52225, +14338,227318,Deadly Premonition: The Board Game,2017,82,6.14780,5.52224, +14339,33812,Island Trader,2008,68,6.27647,5.52223, +14340,240415,Desktop HEBOCON Battle Kit,2017,46,6.63696,5.52223, +14341,5055,The Great War 1914-1918,1976,52,6.50769,5.52221, +14342,191201,Siege of Sunfall,2016,36,6.94528,5.52221, +14343,321228,1812 Argentina,2020,51,6.52667,5.52221, +14344,99062,Famous Divisions: Grossdeutschland Panzer,2011,44,6.68636,5.52221, +14345,5862,Frigate: Sea War in the Age of Sail,1974,117,5.95983,5.52220, +14346,224635,Dragoborne: Rise to Supremacy,2017,36,6.94444,5.52220, +14347,1235,Yellowstone,1985,237,5.73819,5.52219, +14348,3993,Necromancer,1982,98,6.04439,5.52218, +14349,61319,Uppsala: Città d'Italia,2009,47,6.61064,5.52218, +14350,7367,More Backpacks and Blisters,1994,61,6.36066,5.52217, +14351,6939,The Battle of Guilford Courthouse,1978,68,6.27382,5.52216, +14352,86538,Black Stories 6,2010,92,6.07772,5.52216, +14353,142963,Cache Me If You Can!: The Geocaching Board Game,2013,58,6.40328,5.52215,"142963, 248027, 326032" +14354,352602,Squabblin Goblins,2022,65,6.30838,5.52215,"180688, 352602" +14355,1140,Ballonrennen,1977,127,5.92441,5.52215, +14356,364797,Watch Out! That's a Dracula!,2022,67,6.28433,5.52214, +14357,14523,Sergeants: On the Eastern Front,2004,81,6.15247,5.52213, +14358,10573,Poison Pot,2003,61,6.35902,5.52213, +14359,369434,None Shall Pass!,2022,129,5.91783,5.52213, +14360,38866,Im Wald da sind die Räuber,2008,111,5.98199,5.52213, +14361,41428,Consensus Movie Edition,2009,40,6.79813,5.52213, +14362,4437,Gaudí,2002,94,6.06489,5.52212, +14363,47158,Elemental Clash: The Basic Set,2009,58,6.40172,5.52212,"47158, 135220" +14364,4892,Dragon Strike,2002,199,5.77845,5.52211, +14365,5733,Star Wars Lightsaber Dueling,1988,105,6.00762,5.52210, +14366,19735,Terakh: A Creative Strategy Game,2005,136,5.89688,5.52210, +14367,389674,Bansan,2023,34,7.02013,5.52208, +14368,7368,North Wind Rain,2003,49,6.56122,5.52207, +14369,351492,Pocket Aquarium,2021,31,7.16452,5.52207, +14370,3571,Spitfire: Tactical Aerial Combat in Europe 1939-42,1973,115,5.96435,5.52205,"3571, 7031" +14371,11011,Ancient Conquest,1975,50,6.53900,5.52204, +14372,231331,Tilting at Windmills,2017,64,6.31641,5.52204, +14373,200257,We Come in Peace,2016,82,6.14201,5.52204, +14374,183508,Monopoly: Fallout Collector's Edition,2015,156,5.84786,5.52203, +14375,370127,Mana Mana,2022,35,6.97429,5.52203, +14376,37103,Spangles,1982,58,6.39807,5.52203, +14377,219208,Poison,2017,50,6.53800,5.52202, +14378,275642,Fortune Fame & Glory,2019,32,7.10938,5.52202, +14379,164091,Reis de Portugal,2014,67,6.28000,5.52202, +14380,79312,Zombie Survival: The Board Game,2010,329,5.67635,5.52201, +14381,178157,Fighting Sail: Fleet Actions 1775–1815,2015,33,7.06061,5.52201, +14382,143703,NanoBot Battle Arena,2014,74,6.20811,5.52201, +14383,255478,Ninja Squad,2018,88,6.09886,5.52201, +14384,169768,Space Opera,2017,75,6.19876,5.52200, +14385,12189,The Patrons of Venice,2004,43,6.70233,5.52200, +14386,170439,Kastles: Medieval Mayhem,2014,41,6.75976,5.52200, +14387,310833,Stalingrad Solitaire,2021,57,6.41228,5.52200,"9286, 310833" +14388,4789,Trivial Pursuit: Genus III,1991,417,5.64367,5.52200, +14389,353548,Films,2022,65,6.30231,5.52199, +14390,24083,Desert Bazaar,2006,201,5.77402,5.52196,"24083, 154180" +14391,260329,Jurassic World: The Boardgame,2018,165,5.82899,5.52196, +14392,354897,Escape from the Museum,2021,62,6.33871,5.52195, +14393,249166,Zoned Out,2020,86,6.11070,5.52195, +14394,279789,Saco de Ossos,2019,31,7.15484,5.52194, +14395,5226,Rocroi 1643,1996,42,6.72619,5.52193, +14396,295458,Vin mystère,2019,33,7.05421,5.52192, +14397,112445,Disaster Looms!,2012,198,5.77727,5.52192, +14398,261329,Schatten der Macht,2019,34,7.00882,5.52192, +14399,61477,My Kind of Town,2010,73,6.21438,5.52191, +14400,30370,E.T.I.: Estimated Time to Invasion,2008,182,5.79945,5.52190, +14401,29415,HeroCard Nightmare,2007,112,5.97286,5.52190, +14402,257045,Murder on the Cosmic Express,2019,93,6.06495,5.52189, +14403,2341,Confrontation,1974,42,6.72381,5.52188, +14404,377983,Builders of Babel,2023,30,7.20400,5.52188, +14405,251697,Splurt!,2018,84,6.12262,5.52188, +14406,206594,Witch Slapped!,2017,48,6.57292,5.52187, +14407,73589,Ruthenia,2010,32,7.09802,5.52186, +14408,21479,Knight Moves,2005,56,6.42232,5.52186, +14409,123689,"Fornovo 1495: Dawn of the Italian Wars, 1495-1525",2016,40,6.78250,5.52186, +14410,411881,Gold'n Crash,2024,47,6.59468,5.52186, +14411,11060,Normandy: The Invasion of Europe 1944,1971,114,5.96404,5.52185, +14412,354211,Ka-Blab!,2021,59,6.37593,5.52184, +14413,229172,Anime Saga,2017,39,6.81333,5.52183, +14414,363093,Mazescape Kids: Hipnos,2022,43,6.69302,5.52183, +14415,344441,Monki,2021,60,6.36117,5.52183, +14416,27687,Star System,2007,101,6.02030,5.52183, +14417,397352,Diferencio,2023,30,7.20000,5.52182, +14418,370835,Benevolent,2022,44,6.66591,5.52182, +14419,26033,Maratón Clásico,1985,86,6.10708,5.52182,"26033, 239172, 325165" +14420,311190,La Guerre de 1870: La chute de Napoléon III (juillet-août 1870),2020,31,7.14516,5.52182,"306065, 311190" +14421,14012,Boing!,1996,54,6.45370,5.52181, +14422,344447,ナナイロアジサイ (Ajisai),2021,36,6.91944,5.52181, +14423,418062,Railroad Tiles,2025,34,7.00147,5.52181,"418062, 429717" +14424,23521,Ringgz,2005,229,5.74148,5.52181, +14425,277400,Gosh Darn Bubbles!,2019,32,7.09375,5.52181, +14425,423835,PANDA,2024,32,7.09375,5.52181, +14427,286789,Maji,2019,33,7.04545,5.52180, +14428,202223,Zoop,2016,91,6.07429,5.52180, +14429,231368,Arboria,2017,70,6.24000,5.52179, +14430,362797,Mini Escapes: The Mystery of the Lost Cult,2022,71,6.22958,5.52178, +14431,323538,Hunt A Killer: Curtain Call,2020,35,6.95714,5.52178, +14432,35618,G.I. Joe Commando Attack,1985,68,6.26029,5.52177, +14433,305825,Bismarck: The Last Battle,2023,36,6.91667,5.52177, +14434,358796,The Book of Dragons,2022,69,6.24940,5.52176, +14435,80474,Busstop: The Boardgame,2010,63,6.31825,5.52175, +14435,244725,Show & Tile,2018,63,6.31825,5.52175, +14437,42882,"World War IV: One World, One King",2009,38,6.84211,5.52175, +14437,386403,Call of Duty: The Board Game,2025,38,6.84211,5.52175, +14439,128419,Dice of Arkham,2012,62,6.33065,5.52174,"128419, 148580" +14440,4012,"Army Group Center: June 22-28, 1941",1993,44,6.66136,5.52174, +14441,25313,An Evening With Bram Stoker's Dracula,1992,42,6.71482,5.52172, +14442,101668,Time's Up! Green Edition,2011,41,6.74390,5.52172, +14443,186142,Mythomakya,2015,78,6.16385,5.52171, +14444,14715,Dueling Nobles,2004,47,6.58723,5.52171, +14445,143840,Salem Church: East of Chancellorsville,2013,43,6.68605,5.52170, +14446,102150,Rising Sun Railroads,2011,46,6.60870,5.52168, +14447,378630,Capitán Bacon,2022,44,6.65795,5.52167, +14448,386728,TrisTristisTigris,2023,35,6.95000,5.52167, +14449,28253,C.S.A. America's Civil War 1861-1865,2008,42,6.71190,5.52167, +14450,342439,Rule the Waves,2021,31,7.13419,5.52167,"342439, 396929" +14451,68504,Outrider,2010,45,6.63200,5.52166, +14452,227468,Ancient Artifacts,2017,93,6.05878,5.52165, +14453,325811,Hair of the Dog,2023,44,6.65682,5.52165, +14454,1378,Odysseus,2001,234,5.73504,5.52165, +14455,12267,Dwarves and Dice,1999,92,6.06413,5.52164, +14456,282826,Hondschoote 1793,2019,32,7.08125,5.52164, +14457,2599,Valkenburg Castle,1980,105,5.99667,5.52162, +14458,234166,Gobblin' Goblins,2018,43,6.68144,5.52162, +14459,308238,目撃者たちの夜 (Witness Night),2019,57,6.39649,5.52162, +14460,362865,14 Frantic Minutes,2023,30,7.18289,5.52161, +14461,19246,Catherine the Great,2005,68,6.25441,5.52160, +14462,278004,All'avventura,2019,31,7.12903,5.52160, +14463,19671,Battlestar Galactica Collectible Card Game,2006,163,5.82730,5.52160, +14464,38826,San Juan Hill: The Santiago Campaign 1898,2009,50,6.51800,5.52160, +14465,285223,Colorful Treasure,2019,38,6.83158,5.52158, +14466,457,Jumbo Grand Prix,1998,140,5.87714,5.52158, +14467,192059,Fano330-R-Morris,2016,34,6.98529,5.52157, +14468,206446,Gämsh Alpin,2016,41,6.73537,5.52157, +14469,229297,Before the Earth Explodes,2018,83,6.12096,5.52157, +14470,157673,Pints of Blood,2014,158,5.83620,5.52155, +14471,217430,Bellum,2017,46,6.60217,5.52155, +14472,367799,Operation Cuckoo,2022,51,6.49621,5.52155, +14473,419086,The Fall of Kingdoms,2024,37,6.86486,5.52155, +14474,296354,In a Flash Firefighters,2020,79,6.15063,5.52154, +14475,227265,Kleiner Fuchs Tierarzt,2017,94,6.05021,5.52154, +14476,293605,Trekking the National Parks: Trivia,2019,46,6.60159,5.52154, +14477,304937,They Live: Assault on Cable 54,2022,56,6.40869,5.52154, +14478,183474,Tressette,,57,6.39298,5.52153,"3396, 183474" +14479,179020,Jemmapes 1792,2015,39,6.79487,5.52153, +14479,165640,Crop Cycle,2016,39,6.79487,5.52153, +14481,283259,Mint Condition,2019,105,5.99438,5.52152, +14482,31604,"Civil War in the Far West: The New Mexico Campaign, 1862",2008,49,6.53469,5.52152, +14483,151410,Cross Hares: Testing Ground,2014,156,5.83974,5.52152, +14484,430,Asterix: Das Kartenspiel,1990,372,5.65484,5.52150,"430, 2738" +14485,3081,Rubik's Flip,1981,141,5.87326,5.52150, +14486,916,Pete the Pirate,2000,112,5.96429,5.52150, +14487,169927,精霊回路ドライヴ (Seirei Kairo Drive),2014,31,7.12097,5.52149,"169927, 262213, 378534" +14488,5966,Sequence Dice,1999,314,5.67940,5.52149, +14489,63710,Silk Road Maker,2009,41,6.73049,5.52149, +14490,287088,Block Happy,2020,65,6.28385,5.52148, +14491,136415,Alles Käse!,2013,241,5.72696,5.52147, +14492,288654,Tipsy,2019,50,6.51160,5.52146, +14493,69785,Good Help,2010,93,6.05362,5.52145,"69785, 221846" +14494,172932,Flashlights & Fireflies,2015,144,5.86508,5.52145, +14495,222913,Qwarks,2017,45,6.62089,5.52145, +14496,5194,Fire When Ready,1982,55,6.42091,5.52145, +14497,348458,Boombeados,2021,30,7.17000,5.52144, +14498,3716,Tractics,1971,49,6.53061,5.52144, +14499,222584,Clustered,2017,50,6.51040,5.52144, +14500,346082,Der Taubertal-Express,2021,31,7.11613,5.52143, +14501,20050,Tekeli-li,2005,106,5.98774,5.52143, +14502,146094,Plunder,2013,149,5.85302,5.52142, +14503,169918,Magia Cum Laude,2017,40,6.75625,5.52141, +14504,19186,The French & Indian War: Struggle for the New World,2005,38,6.82105,5.52141, +14505,17136,DaVinci's Challenge,2004,778,5.58488,5.52141,"17136, 22042, 23030" +14506,349173,Perekupai,2020,34,6.97353,5.52140, +14507,267746,Novice Novice TRPG The Horror,2017,37,6.85541,5.52140,"267744, 267746, 267749, 379981, 379982" +14508,333386,Floresta Encantada,2021,35,6.93143,5.52139,"13904, 333386" +14509,75668,Whist 22,,80,6.13813,5.52139, +14510,84230,Pirates 2 ed.: Governor's Daughter,2010,85,6.10176,5.52139, +14511,271727,The Lost Worlds of Josh Kirby,2020,37,6.85459,5.52138, +14512,215110,Kingdom of Aer: Kingmaker,2018,45,6.61756,5.52138, +14513,8428,Shenandoah: A Civil War Game of the Valley Campaigns – 1862 and 1864,1975,32,7.06250,5.52138, +14514,313945,Гравити Фолз: Спасти Пухлю (Gravity Falls: Saving Waddles),2020,79,6.14561,5.52138, +14515,2645,Prize Property,1974,138,5.87862,5.52137, +14516,160868,Last Starfleet,2015,52,6.46923,5.52137,"160868, 172200" +14517,184351,Honey Wars,2015,73,6.19655,5.52137, +14518,22176,"Lest Darkness Fall: Rome in Crisis, AD 235 – 285",2006,56,6.40143,5.52136, +14519,209566,Snippets,2016,34,6.97059,5.52136, +14520,1650,The Lord of the Rings Adventure Game,1978,77,6.16104,5.52135, +14521,298413,1872: The Lost Crows,2019,40,6.75250,5.52135, +14522,400058,It's a Balloon!?,2023,78,6.15256,5.52134, +14523,34744,Clue Express,2008,152,5.84507,5.52133, +14524,33801,UNO: The Simpsons – Special Edition Card Game,2003,156,5.83670,5.52133, +14525,6042,Samurai Sunset,1990,47,6.56809,5.52133, +14526,176651,Cantankerous Cats,2014,127,5.90851,5.52132, +14527,228742,Bushido Breaker,2017,39,6.78205,5.52131, +14528,368853,Hunt A Killer: Dead Below Deck,2022,51,6.48529,5.52131, +14529,955,Super Giant Monster Showdown,1999,94,6.04432,5.52131, +14530,120264,Turista Mundial,,119,5.93428,5.52130, +14531,69632,Murder in Greenrock Village: Hotel,2009,69,6.23333,5.52130, +14532,178595,Trickster: Fantasy,2015,41,6.71951,5.52130,"178595, 179593, 183153, 183154" +14533,169470,Lemuria,2014,73,6.19384,5.52128, +14534,2092,Elfengold,1991,109,5.97156,5.52128, +14535,20678,Rapa Nui,2005,32,7.05469,5.52127, +14536,160614,Soqquadro,2014,123,5.92011,5.52127, +14537,183677,Rookie Heroes,2017,64,6.28766,5.52126, +14538,339052,Polders: Flip & Write,2021,65,6.27573,5.52126, +14539,173770,Swamped,2016,169,5.81142,5.52126, +14540,379241,Tanis,2023,37,6.84595,5.52125, +14541,339165,The Red Burnoose: Algeria 1857,2022,47,6.56383,5.52124, +14542,43693,Delve the Card Game,2009,83,6.11157,5.52124, +14543,269145,Mū,2019,117,5.93974,5.52123, +14544,198044,Sign,2017,70,6.22071,5.52123, +14545,2668,Picture Picture,1992,149,5.84980,5.52122, +14546,349491,Crime Scene: Brooklyn 2002,2021,84,6.10365,5.52121, +14547,280202,Social Train,2019,61,6.32295,5.52120, +14548,9849,Ardennes 1944,2003,33,7.00303,5.52120, +14549,16272,Little Round Top,1982,39,6.77436,5.52119, +14550,145206,The Other Hat Trick,2013,51,6.47941,5.52119, +14551,26794,LOGacta Chart Soccer,1976,30,7.15000,5.52118, +14552,9907,Kharkov 1943,1999,41,6.71220,5.52117, +14553,174529,Waterloo: Enemy Mistakes,2015,41,6.71203,5.52117, +14554,369277,The Necrohamster,2023,54,6.42444,5.52115, +14555,9111,War of 1812,2001,39,6.77179,5.52114, +14556,156406,The Chronicles of Dragon Wing,2011,40,6.74000,5.52114, +14557,9048,Cinq-O,2003,301,5.68302,5.52112, +14558,265293,Space Worm,2020,58,6.36121,5.52112, +14559,323616,Une Patate à Vélo: Le Jeu,2020,38,6.80316,5.52112, +14560,254385,Qui ose gagne!: Cyrénaïque 1942,2018,42,6.68095,5.52112, +14561,9759,Outta Control,1992,44,6.62818,5.52112, +14562,387105,Axe-A-Lot-L,2024,38,6.80263,5.52111, +14563,18785,Miscellaneous Game Magazine,,36,6.87361,5.52111, +14564,200871,Hanna Honeybee,2016,115,5.94436,5.52110, +14565,367617,99 Ninja,2024,30,7.14333,5.52110, +14566,189678,Berserk: Heroes,2015,61,6.31885,5.52110, +14567,271554,Bounce Battle,2013,45,6.60222,5.52109, +14568,130286,Volcano Island Countdown,2012,93,6.04398,5.52108, +14569,231207,Dragon's Interest,2018,32,7.04063,5.52108, +14570,265219,Chicken Time Warp,2019,42,6.67857,5.52107, +14571,55686,Double Series,1996,46,6.57783,5.52107, +14572,170381,Mars Attacks: Ten-Minute Takedown,2015,331,5.66789,5.52107, +14573,6810,Star Wars: The Interactive Video Board Game,1996,204,5.75912,5.52105, +14574,205496,PaiMiahhh,2016,60,6.33017,5.52105, +14575,386831,Pigs on Trampolines,2023,51,6.47255,5.52104, +14576,141997,Chronos Conquest,2014,116,5.93922,5.52103,"101660, 141997" +14577,176634,Arcanya: Magic Academy,2015,52,6.45385,5.52103, +14578,364689,Gods of Rome,2023,39,6.76462,5.52102, +14579,146290,Malacca,2013,104,5.98702,5.52101, +14580,12577,Stupiduel,2004,83,6.10482,5.52101, +14581,10906,Beggars and Thieves,1984,65,6.26646,5.52101, +14582,7230,Battle for Normandy,1982,62,6.30242,5.52100, +14583,7065,Pusher,1993,89,6.06530,5.52100, +14584,8902,Das Quiz des 20. Jahrhunderts,1998,46,6.57391,5.52100, +14585,144413,Shindig Machine,2013,32,7.03438,5.52099, +14586,162578,Collapse,2015,71,6.20282,5.52099, +14587,346442,Regnum,2021,80,6.12600,5.52098, +14588,178038,Think It Up!,2015,212,5.74925,5.52098,"178038, 237975, 242221, 269614, 282135, 430550, 430599, 433745" +14589,340646,"Tea, Scones, and Arsenic",2021,98,6.01466,5.52097, +14590,253899,New Eden Project,2018,30,7.13333,5.52097, +14591,236199,Steven Universe y las Gemas de Cristal,2017,52,6.45115,5.52097, +14592,314961,Bitwa Warszawska,2020,36,6.86389,5.52096, +14593,288346,Bar Barians,2019,34,6.94265,5.52095, +14594,296102,Würfel Poker,2015,46,6.57174,5.52095, +14595,65554,Sounds Like a Plan,2010,97,6.01907,5.52095, +14596,17735,Jailbreak,1982,112,5.95226,5.52094,"17735, 41704" +14597,290551,Movie Clichés: Complete Edition,2020,34,6.94118,5.52093,"290549, 290550, 290551" +14598,184460,Back to the Future: An Adventure Through Time,2016,252,5.71250,5.52093, +14599,2826,Jackpot Yahtzee,1980,96,6.02358,5.52092, +14600,272853,Federation Stellar Force,2019,31,7.07742,5.52092,"272853, 289470, 289585, 289759, 290031, 290773" +14601,362106,Keepers,2022,55,6.39818,5.52092,"362106, 382124" +14602,118336,Paul Koenig's Market-Garden: Eindhoven Bridge,2012,36,6.86111,5.52092, +14602,372577,The Year of the 5 Emperors,2022,36,6.86111,5.52092, +14604,7977,Balkan Hell,1995,60,6.32500,5.52091, +14605,322705,Hórreos,2021,85,6.08824,5.52090, +14606,69687,Anzio/Cassino,2010,66,6.25152,5.52090, +14607,513,WarChest,1999,33,6.98182,5.52090, +14607,303120,Mount Tai,2019,33,6.98182,5.52090, +14609,4983,Der Herr der Ringe: Die Zwei Türme,2002,134,5.88060,5.52089, +14610,3158,The Home Stretch,1970,36,6.85972,5.52089, +14611,70262,Long Live The Revolution!,2010,216,5.74398,5.52089,"70262, 180238" +14612,176400,The King's Men,2016,39,6.75641,5.52089, +14613,97751,Hit the Throttle!,2010,87,6.07471,5.52089, +14614,157625,Huzzah! Four Battles of the American Civil War Vol. 1,2014,30,7.12667,5.52088,"26487, 157625, 246469" +14615,370226,Zing-a-Zam,2023,40,6.72500,5.52088, +14616,1460,Earthquake,1998,215,5.74481,5.52087, +14617,11937,Red Army: The Destruction of Army Group Center,1982,72,6.18958,5.52087, +14618,330539,Cutthroat Cove: Pieces of Eight,2022,42,6.66714,5.52087, +14619,1632,Shapeshifters,1991,81,6.11519,5.52087, +14620,70912,UNO MOD,2010,106,5.97491,5.52086, +14621,132784,El Memorioso,2010,42,6.66667,5.52086, +14622,156443,AVGhost: Paranormal Investigation,2021,163,5.81607,5.52086, +14623,218943,WordSpiel,2017,95,6.02737,5.52086, +14624,10893,Allegiance: War of Factions,2004,33,6.97879,5.52086, +14625,176433,Zombies vs Cheerleaders,2015,131,5.88809,5.52085, +14626,2718,War! Age of Imperialism,2001,835,5.57847,5.52085, +14627,35508,Chainmail,2009,84,6.09354,5.52085, +14628,198629,Revolution & Empire,,68,6.22794,5.52084,"8700, 24336, 198629, 288017" +14629,12018,1st Alamein: July 1942,1997,35,6.89429,5.52084, +14630,130685,Construction Zone,2012,136,5.87426,5.52084, +14631,227316,Lost in Time,2017,62,6.29597,5.52083, +14632,99791,Road to Enlightenment,2012,214,5.74533,5.52083, +14633,198142,TMNT HeroClix: Mouser Mayhem Starter Set,2016,50,6.48160,5.52082,"198142, 275805, 356339" +14634,290745,Rise of the Amazons,2020,37,6.81892,5.52082, +14635,243080,PlingPong,2017,52,6.44423,5.52082, +14636,166710,Dragon's Ransom,2015,98,6.01071,5.52081, +14637,392008,Kings of Chicago,2023,43,6.63721,5.52081, +14638,187000,Block Out!,2015,87,6.07241,5.52080, +14639,266744,Rick and Morty: Look Who's Purging Now Card Game,2019,95,6.02576,5.52080, +14640,334282,Lepanto 1571: A Sea Turned Red by Blood,2021,31,7.06774,5.52079, +14641,39382,18EZ,2009,88,6.06559,5.52078, +14642,255080,Robot Royale,2018,32,7.01875,5.52078, +14643,8960,Roma,1986,37,6.81622,5.52078, +14644,278142,Outpost 18,2019,64,6.26955,5.52077, +14645,172159,King's Champion,2017,64,6.26953,5.52077, +14646,336402,1565: Siege of Malta,2022,58,6.34655,5.52076, +14647,98780,Aether Captains: The Search,2011,54,6.40741,5.52076, +14648,1985,Overturn,1987,93,6.03548,5.52075, +14649,150582,The Herald,2013,31,7.06452,5.52075, +14650,124992,Komodo,2012,46,6.56087,5.52074, +14651,139471,Civility,2014,75,6.15867,5.52074, +14652,375215,Dreamworld: An Unconscious Mind Card Game,2024,42,6.65952,5.52073, +14653,183459,Halfling Feast,2015,100,5.99900,5.52073, +14654,7095,Call My Bluff,1965,33,6.96970,5.52073, +14655,17267,Laserburn: Sci-Fi Combat Rules,1980,34,6.92647,5.52072, +14656,165737,Flip 9,2014,92,6.04022,5.52072, +14657,42685,Connect 4x4,2009,156,5.82699,5.52071, +14658,72251,Top Speed,2011,35,6.88571,5.52071,"72251, 351146" +14659,11357,Brewhouse Bash,1998,69,6.21304,5.52071, +14660,170583,Capture: A Medieval Wargame,2016,46,6.55870,5.52070, +14661,327498,The Little Flower Shop Dice Game,2021,77,6.14078,5.52070, +14662,159455,Galactic Sabacc,2002,83,6.09582,5.52069, +14663,175735,Rocca Town,2015,45,6.58111,5.52069, +14664,296358,Hedgehog Haberdash,2020,70,6.20210,5.52068, +14665,104858,Rock Science,2011,64,6.26562,5.52067,"104858, 150273, 159246, 159842" +14666,4878,How to Host a Murder: Grapes of Frath,1985,51,6.45510,5.52066, +14667,5198,Stalin's Tanks: Armor Battles on the Russian Front,1980,70,6.20143,5.52066, +14668,8405,Hamburger Hill,1990,63,6.27683,5.52065, +14669,252096,Zogar's Revenge,2017,37,6.80811,5.52065, +14670,282027,Lucky Luau,2020,36,6.84361,5.52065, +14671,7815,Secrets of the Deep,1991,96,6.01667,5.52064, +14672,144874,Trailer Park Boys Board Game,2013,48,6.51250,5.52064,"144874, 232118" +14673,394893,Z3BRA,2023,78,6.13077,5.52063, +14674,411396,Quiet House,2024,32,7.00781,5.52063, +14675,17081,Tracer 2,2004,93,6.03226,5.52063,"16253, 17081" +14676,3245,Cerberus: The Proxima Centauri Campaign,1979,75,6.15467,5.52061, +14677,3276,Skittles,1801,119,5.92017,5.52061, +14678,373778,Burger ASAP!,2022,54,6.40099,5.52061,"373778, 422599" +14679,175235,"Fallujah, 2004: City Fighting in Iraq",2016,33,6.96061,5.52060, +14680,401225,Accuse!,2023,38,6.77105,5.52060, +14681,151640,Iron & Ale,2014,106,5.96887,5.52060, +14682,13960,Pirates & Plunder,2004,43,6.62558,5.52060, +14683,12672,It Came to Pass,2001,100,5.99560,5.52059, +14684,246409,Fences,2018,55,6.38424,5.52059, +14685,423802,Mini Dinosaur,2024,34,6.91765,5.52059, +14686,282699,SPQR: Warband Combat in the Ancient World,2019,39,6.73846,5.52059,"282699, 311853, 338545" +14687,1753,Im Märchenwald,2000,146,5.84589,5.52059, +14688,3108,Goblin,1982,47,6.53085,5.52058, +14689,262234,Venture,2019,35,6.87714,5.52058, +14690,288019,Mirror Garden,2019,66,6.23985,5.52058,"288019, 369043" +14691,322717,Idle Hands,2020,55,6.38364,5.52058, +14692,175086,"San, Ni, Ichi",2016,58,6.33897,5.52058, +14693,234886,Wer weiß das!?,2017,36,6.83889,5.52057, +14694,339930,"Run, Cowboy, Run!",2020,41,6.67724,5.52056, +14695,166521,Throne of the World,2014,33,6.95758,5.52056, +14696,66611,Metropoli,2010,69,6.20783,5.52056, +14697,284323,Cro-Magnon: First Steps of Civilization,2019,61,6.29770,5.52055, +14698,19732,Berserker Halflings from the Dungeon of Dragons,2005,183,5.77950,5.52054, +14699,123,Green Thumb Cards,1996,30,7.10000,5.52054, +14699,370694,Beards and Booty,2023,30,7.10000,5.52054, +14701,341425,Kobito,2021,45,6.57333,5.52054, +14702,104239,bezzerwizzer kompakt,2010,65,6.24923,5.52053, +14703,260562,Overtime,2019,31,7.04839,5.52053, +14704,251535,Invocación Fronteras,2017,32,7.00000,5.52052,"195012, 251535" +14705,36737,Army Ants,2008,59,6.32288,5.52052, +14706,186421,Guju Guju,2015,33,6.95455,5.52051, +14707,22299,Marlborough: War of the Spanish Succession,2006,48,6.50625,5.52051, +14708,230488,Hexcalibur,2017,49,6.48612,5.52051, +14709,176884,Reign: The Card Game,2015,34,6.91176,5.52051, +14710,9010,Dvorak,2000,35,6.87143,5.52050, +14711,316042,Vinyl: Jukebox,2022,30,7.09567,5.52049, +14712,357984,Ted Lasso Party Game,2022,95,6.01791,5.52049, +14713,4623,"The Fast Carriers: Air-Sea Operations, 1941-77",1975,91,6.03956,5.52048, +14714,6615,Napoleon at Austerlitz,1981,77,6.13377,5.52047, +14715,3247,Planet Busters,1982,126,5.89524,5.52047, +14716,126213,When Zombies Attack!,2012,58,6.33448,5.52047, +14717,8408,Siege at Peking,1982,80,6.11063,5.52047, +14718,287168,Can You Roll Doubles,2019,46,6.54674,5.52047, +14719,1580,Legends of Robin Hood,1991,186,5.77419,5.52046, +14720,37633,Lightning: Poland,2008,91,6.03901,5.52046, +14721,17765,Blam!,2005,57,6.34825,5.52045, +14722,189218,曼荼羅 (Mandara),2015,35,6.86857,5.52045, +14723,410718,Moby Trick,2024,53,6.40943,5.52043, +14724,316525,Kanaloa,2020,58,6.33276,5.52042, +14725,256398,Game to Pick a Game: Orc Council,2018,68,6.21324,5.52042,"256398, 256399" +14726,3620,TrainSport: Austria,1996,74,6.15703,5.52042,"3620, 3829" +14727,21879,Mastergoal,1992,37,6.79351,5.52042, +14728,36332,Field Command: Singapore 1942,2009,39,6.72821,5.52042, +14729,32885,Sequence: States & Capitals,2006,132,5.87712,5.52041, +14730,26869,Little Thunder Witch,2006,65,6.24462,5.52041, +14731,288606,Coraline: Beware the Other Mother,2020,70,6.19286,5.52041, +14732,26446,LovePigs (Porcellini),2007,58,6.33190,5.52040, +14733,302255,Pizza,2021,64,6.25573,5.52040, +14734,209033,"Por favor, não corte minha cabeça!",2016,63,6.26730,5.52040, +14735,26604,Forceball,2006,93,6.02634,5.52040, +14736,158495,Da Yu: The Flood Conqueror,2014,44,6.58977,5.52040, +14737,186442,Pictopia: Star Wars Edition,2015,123,5.90285,5.52039, +14738,66537,Kakuzu,2010,67,6.22239,5.52039, +14739,13316,Operation Overlord: Normandy 1944,2003,33,6.94545,5.52039,"13316, 307580" +14740,69582,Buzz It!,2010,362,5.65029,5.52039, +14741,181083,European Union: The Board Game,2015,38,6.75789,5.52039, +14742,277064,Trivial Pursuit: 40th Anniversary Ruby Edition,2018,35,6.86286,5.52037, +14743,4010,Bodyguard Overlord,1994,40,6.69500,5.52037, +14744,94123,The Forgotten Planet,2011,120,5.91175,5.52036, +14745,124598,Maya,2012,57,6.34386,5.52035, +14746,332155,Dinodocus,2021,40,6.69375,5.52035, +14747,12920,Tension: The Crazy Naming Game,1992,209,5.74485,5.52034,"12920, 362826" +14748,181906,Bam!: Extrahart,2015,318,5.66789,5.52034,"146496, 181906, 235838, 270505" +14749,192226,Showdown,2016,55,6.37315,5.52033, +14750,256502,Whales Destroying The World,2019,99,5.99394,5.52033, +14751,286269,"Heroes of Telemark: Commando Raids in Norway, 1942-43",2019,50,6.45800,5.52032, +14752,9565,James Bond 007 Assault! Game,1986,63,6.26429,5.52032, +14753,353941,Loot N' Loaded,2021,36,6.82222,5.52032, +14754,292354,13 Monsters,2020,56,6.35714,5.52031, +14755,39245,Neu,1988,106,5.96226,5.52031, +14756,11399,Black Gold (Texas Tea),1990,51,6.43824,5.52029, +14757,143050,Battle over Britain,2013,35,6.85714,5.52028,"143050, 244149, 255191, 425654" +14758,182228,Hordes of Grimoor,2015,95,6.01274,5.52028,"182228, 311680" +14759,3674,Fast Attack Boats: A Game of the Arab-Israeli Naval War 1973,1980,67,6.21836,5.52028, +14760,11127,"Kursk: Operation Zitadelle, 4 July 1943",1971,76,6.13553,5.52027, +14761,27343,Mundialito (Gold Cup),2006,37,6.78378,5.52027,"27343, 65113" +14762,330543,Lasting Tales,2022,57,6.34035,5.52026, +14763,2970,Squatter,1962,293,5.67980,5.52026,"2970, 285621" +14764,10998,Word Jam,2004,149,5.83396,5.52026, +14765,284684,Evidence,2019,103,5.97398,5.52026, +14766,310800,Runir,2020,43,6.60698,5.52026, +14767,413075,魔界札 (Makaifuda),2023,34,6.89412,5.52025, +14768,243191,Animale Tattica,2017,45,6.55778,5.52024, +14769,325834,Candy Crush DUEL,2020,91,6.03311,5.52023,"325834, 345475" +14770,23212,Cockpit,1991,39,6.71618,5.52022, +14771,295758,Couperation,2018,38,6.74737,5.52022, +14772,68201,Topology,2010,43,6.60465,5.52021, +14773,250051,The Seals of Cthulhu,2019,64,6.24828,5.52020, +14774,4971,Viva España: A Game of the Spanish Civil War – 1936-1939,1977,46,6.53261,5.52019,"4971, 16298" +14775,323873,Rise of the Metro,2020,47,6.51064,5.52018,"323873, 433114" +14776,122346,MEGAcquire,2012,35,6.85000,5.52018,"122346, 319425" +14777,254029,Grand Dog Park,2018,62,6.27065,5.52017, +14778,192268,Cool am Pool,2016,57,6.33619,5.52016, +14779,2369,Fiasko,1997,99,5.98990,5.52016, +14780,303540,Dunhuang: Pearl on the Silk Road,2018,40,6.68250,5.52016, +14781,4503,Grand Prix: F1,2002,45,6.55333,5.52015, +14782,287672,13 Couronnes,2019,37,6.77568,5.52014, +14783,153107,Masters of the Gridiron,2014,42,6.62619,5.52014, +14784,33208,What?,2007,95,6.00895,5.52013, +14785,20851,WrestAngel,2006,52,6.41250,5.52012, +14786,235830,Operation Archéo,2017,30,7.06667,5.52011, +14787,295295,Berrymandering,2021,61,6.28033,5.52010, +14788,398044,The Cathedral of Orléans,2023,89,6.04101,5.52010, +14789,387564,Klink,2024,58,6.31897,5.52009, +14790,182799,Take a Train,2015,100,5.98330,5.52008, +14791,157452,Cultists of Cthulhu,2016,86,6.05860,5.52008, +14792,370230,Monster Inn,2022,99,5.98788,5.52008, +14793,365211,Cosmos: Empires,2022,119,5.90924,5.52008, +14794,2159,Kimbo,1960,62,6.26694,5.52007, +14795,388659,Agree to Disagree,2024,36,6.80556,5.52006, +14796,234920,Darwinning!,2018,111,5.93694,5.52006, +14797,138470,Erie Railroad,2013,69,6.19058,5.52006, +14798,105602,Dabble,2011,93,6.01743,5.52005, +14799,297894,Roller Ghoster,2020,63,6.25397,5.52004, +14800,22336,"Kreuzverhör: Krimi-Kartenspiel für zwei ""Ermittler""",2006,73,6.15342,5.52004, +14801,289801,Dice & Ink: A Roll & Write Anthology,2020,36,6.80419,5.52004,"289801, 295010, 295011, 295012, 296186, 296187, 296188, 296193, 296196, 296198, 296201" +14802,358375,Zoople,2022,54,6.37593,5.52004, +14803,153478,Putz die Wutz,2014,44,6.57023,5.52003, +14804,173669,Backstab Card Game,2015,39,6.70462,5.52003, +14805,259112,Rest In Peace: The Asylum,2018,40,6.67500,5.52003, +14806,294320,CLUE: Dungeons & Dragons,2019,55,6.36000,5.52003, +14807,12662,To the Wolf's Lair!,1983,36,6.80278,5.52002, +14808,10084,Stuff Yer Face,1982,57,6.33000,5.52001, +14809,2149,Renfield,1999,183,5.77219,5.52001, +14810,1719,Dark Emperor,1985,195,5.75667,5.52001, +14811,5859,Minuteman: The Second American Revolution,1976,49,6.46122,5.51999, +14812,300007,Showdown Tactics,2020,60,6.28833,5.51998, +14813,29106,Letter Roll,2009,81,6.08889,5.51998, +14814,1012,Die Magier,1985,167,5.79581,5.51997, +14815,207310,Infected,2017,352,5.65082,5.51997, +14816,264854,Stonehenge and the Sun,2019,37,6.76486,5.51997, +14817,270135,Purzelbaum,2019,32,6.95937,5.51997, +14818,6897,The '45: The Jacobite Rebellion of 1745,1995,69,6.18696,5.51995, +14819,286706,Word Bank,2019,49,6.45918,5.51995, +14820,5519,Air Charter,1970,92,6.02011,5.51995, +14821,261112,Predator: Partida de Caza,2018,58,6.31293,5.51994, +14821,10836,Moguli,2003,58,6.31293,5.51994, +14823,33803,Octego,2007,67,6.20613,5.51993, +14824,108679,Mow Money,2016,187,5.76578,5.51993, +14825,26124,Draco Mundis,2006,180,5.77528,5.51993, +14826,89898,Faux•Cabulary,2011,207,5.74179,5.51991, +14827,271297,Nemo Rising: Robur the Conqueror,2019,44,6.56364,5.51991, +14828,695,Fibonacci,1992,65,6.22615,5.51990, +14829,218235,Ticket to Mars,2017,140,5.84779,5.51990, +14830,218685,"Last Stand at Isandlwana, 22 January 1879",2018,40,6.66750,5.51990, +14831,34305,Legends of the High Seas,2008,36,6.79444,5.51989, +14832,2011,Top Banana,1999,82,6.07927,5.51988, +14833,202329,KOZO,2016,35,6.82933,5.51987,"180030, 202329" +14834,219564,Final War,2016,34,6.86765,5.51987, +14835,18647,Colpevole!,1992,57,6.32368,5.51986, +14836,191529,Chefs,,38,6.72553,5.51986, +14837,204892,You Gotta Be Kitten Me!,2016,192,5.75833,5.51985,"204892, 254578" +14838,13299,1918: Imperial Germany's Last Chance,2004,56,6.33750,5.51985, +14839,1341,Crib Wars,1997,104,5.96010,5.51985, +14840,3059,Rebound,1971,383,5.63930,5.51983, +14841,1793,VI Against Rome,1994,48,6.47292,5.51983, +14842,294519,Klimato,2020,36,6.79056,5.51983, +14843,130670,Acre: The Third Crusade Opens,2012,41,6.63415,5.51981, +14844,6125,Austerlitz: The Battle of the 3 Emperors,1981,62,6.25661,5.51980, +14845,10776,Sword & Shield,1994,49,6.45204,5.51980, +14846,130015,Norway 1940,2013,37,6.75405,5.51980, +14847,107464,Kabuki,2011,284,5.68053,5.51979, +14848,34381,Käseklau!,2008,86,6.05058,5.51979,"34381, 126999" +14849,1866,Brainstorm,1990,215,5.73209,5.51979, +14850,132322,Snug as a Bug in a Rug,2012,79,6.09747,5.51978, +14851,233284,Bergnein,2017,44,6.55682,5.51978, +14852,246346,Cat'astrophes,2018,101,5.97155,5.51978, +14853,228686,Glory Recalled: Hong Kong 1941,2018,34,6.86176,5.51978, +14854,22407,1066: End of the Dark Ages,2006,70,6.17143,5.51977, +14855,129315,Cactus Air Force: Air War Over the Solomons,2012,81,6.08272,5.51977, +14856,302889,Cacti,2020,33,6.90152,5.51977, +14857,13996,L'Aigle Foudroyé,2001,36,6.78611,5.51976, +14858,359173,À la manière d'Arcimboldo,2022,48,6.46875,5.51975, +14859,248443,Galactic Scoundrels,2019,38,6.71842,5.51975, +14860,319959,The Boys: This Is Going to Hurt,2022,49,6.44898,5.51974, +14861,2716,Suzerain,1993,118,5.90559,5.51974, +14862,8311,Combat,1981,105,5.95333,5.51974,"6006, 7130, 8311" +14863,374071,Wanted Wombat,2022,62,6.25403,5.51974, +14864,366585,Anno Domini: BLACK,2022,37,6.75000,5.51973, +14865,222705,iKNOW: Hit List,2016,45,6.53111,5.51973, +14866,11149,It from the Pit,1992,73,6.14315,5.51973, +14867,35207,Likewise!,2008,172,5.78430,5.51973, +14868,479,Bambuti,1999,132,5.86439,5.51972, +14869,14698,Keep Cool,2004,56,6.33214,5.51972, +14870,120801,Nizam,2012,62,6.25323,5.51971, +14870,286831,Panic Diner,2019,62,6.25323,5.51971, +14872,376479,Exit: The Game – Kids: Riddles in Monsterville,2023,53,6.37736,5.51971, +14873,237995,Overdrive,2018,33,6.89697,5.51970, +14874,35961,Beim Jupiter: Göttliche Sticheleien,2008,74,6.13378,5.51970, +14875,406861,TowerBrix,2024,61,6.26426,5.51969, +14876,40179,Zbuduj swój Kaczogród,1997,30,7.03333,5.51969, +14877,69233,Schloss Schlotterstein: Das Kartenspiel,2010,60,6.27650,5.51968,"69233, 433521" +14878,360177,Future Me Problems,2022,68,6.18735,5.51968,"119372, 360177" +14879,14545,Caverns of Doom,1980,31,6.98387,5.51968,"14545, 14546" +14880,187550,Irresponsibility: The Mr Toast Card Game,2015,138,5.84855,5.51967, +14881,392154,Clue Escape: The Midnight Hotel,2023,44,6.55114,5.51967, +14882,25944,Julchen und die Monster,2006,105,5.95190,5.51967, +14883,356124,A Crowning Glory: Austerlitz 1805,2022,32,6.93750,5.51967, +14884,29107,Hop! Hop! Hop!,2007,89,6.02921,5.51966, +14885,208419,Titan Dice,2018,90,6.02344,5.51966, +14886,242552,Rallye-Trucks,2018,41,6.62553,5.51966, +14887,31180,Hohenfriedeberg,2007,35,6.81429,5.51964, +14887,355800,Harry Potter: Honeydukes,2022,35,6.81429,5.51964, +14889,35040,Elemental Rift,2008,71,6.15775,5.51964, +14890,27007,For Bloody Honor: The Russian Civil War,2006,52,6.39038,5.51963, +14891,38299,Borkowo 1806,2008,37,6.74324,5.51963, +14892,245134,Dackel Drauf!,2018,76,6.11487,5.51961,"245134, 380137" +14893,2917,Age of Chivalry,1992,65,6.21538,5.51961, +14894,284690,Son of Doctor Esker's Notebook,2019,30,7.02667,5.51960, +14895,246757,Long Cow,2018,127,5.87559,5.51960, +14896,349071,Route East,2022,56,6.32679,5.51960, +14897,351097,Townies,2022,41,6.62195,5.51959, +14898,18966,Marvin Marvel's Marvelous Marble Machine,2005,62,6.24839,5.51959, +14899,154904,Easy Breezy Travel Agency,2014,241,5.70705,5.51959, +14900,260334,Winston,2018,205,5.73996,5.51958,"37604, 260334" +14901,137606,Ask Anything,2013,37,6.74054,5.51958, +14902,15159,Coloretto,1993,43,6.56977,5.51958, +14902,240844,Fungeon Party,2018,43,6.56977,5.51958, +14904,243694,Cryptocurrency,2018,75,6.12133,5.51957, +14905,147465,Scribe's Arena,,45,6.52222,5.51956, +14906,251137,Vietnam: Rumor of War,2019,44,6.54432,5.51955, +14907,62979,Alchemicus,2009,78,6.09744,5.51954, +14908,40352,Wir spielen Einkaufen,2008,63,6.23492,5.51954, +14909,364406,Mini Crimes: The Drowned King,2022,35,6.80714,5.51954, +14910,6044,Attila: The Huns Invasion,1981,70,6.16333,5.51954, +14911,127646,Black Stories: Mittelalter Edition,2012,150,5.81996,5.51953, +14912,11601,Botts and Balls,2004,42,6.59167,5.51952, +14913,167764,Life & Legend,2016,37,6.73649,5.51952, +14914,24079,Katoiz,2004,45,6.52000,5.51952,"24079, 152082" +14915,162295,Zik,2014,56,6.32339,5.51952,"162295, 334580" +14916,298609,Crime Story: Munich,2020,39,6.67308,5.51950, +14917,3979,Wabanti,1974,93,6.00323,5.51950, +14918,9909,Crète 1941: Opération Merkur,1998,37,6.73514,5.51950, +14919,368896,Harry Potter: Mischief in Diagon Alley,2022,30,7.01667,5.51947, +14920,4677,Lee Invades the North,1988,48,6.45521,5.51947, +14921,113700,Dash! A whimsical race through Singapore,2012,55,6.33600,5.51947, +14922,123915,Anyways,2012,33,6.88030,5.51947, +14923,271942,Bathroom Rush,2018,44,6.53977,5.51946, +14924,38334,Logan Stones,2008,189,5.75697,5.51946, +14925,159384,Medieval Battle,2014,37,6.73243,5.51946, +14926,181928,Last Front: The Strategy Card Game,2016,58,6.29310,5.51945, +14927,423850,13 Beavers,2024,47,6.47404,5.51945, +14928,342949,Factoria,2019,33,6.87818,5.51944, +14929,225481,Lowdown,2016,108,5.93454,5.51943,"225481, 286308" +14930,47408,Acqua Dolce,2009,118,5.89915,5.51942, +14931,205101,A Dog's Life,2017,812,5.57461,5.51942,"2940, 205101" +14932,68943,Aether,2010,138,5.84406,5.51942, +14933,251987,Rainbow Knights,2018,137,5.84637,5.51942, +14934,198881,The Princess and the Goblin,2016,74,6.12448,5.51941, +14935,100275,C. C. Higgins Rail Pass,2014,59,6.27797,5.51940, +14936,212042,Gnomes and Associates,2017,39,6.66667,5.51940, +14937,37,Dragon Masters,1991,154,5.80974,5.51938, +14938,30945,La Bataille d'Orël Octobre 1919,2007,41,6.60976,5.51938, +14939,122168,Brethren of the Coast,2016,55,6.33152,5.51936, +14940,174988,4 en Letras,2014,115,5.90765,5.51936, +14941,108079,Bibliogamo,2011,52,6.37788,5.51935, +14942,163688,Six Sons of the Sultan,2014,79,6.08430,5.51935, +14943,42499,1000,,58,6.28879,5.51935, +14944,162680,War of the Worlds,2014,41,6.60732,5.51934, +14945,224596,9 Card Siege,2017,47,6.46809,5.51933, +14946,12569,Fletcher Pratt's Naval War Game,1943,33,6.86970,5.51932,"12569, 137659" +14947,279996,Sumo Gnomes,2019,75,6.11333,5.51931, +14948,162974,Chroma Cubes,2014,40,6.63275,5.51931, +14949,143070,Even Steven's Odd,2013,57,6.30062,5.51931, +14950,183649,Escape the Nightmare,2016,76,6.10526,5.51931, +14951,6022,13: The Colonies in Revolt,1985,97,5.97835,5.51930, +14952,247714,Kids of London,2017,46,6.48696,5.51930, +14953,7307,Cranium: Hullabaloo,2003,260,5.69042,5.51929, +14954,103328,LIXO?,2011,87,6.03069,5.51929, +14955,23570,Napoleon,1800,48,6.44583,5.51928, +14956,1029,Lieber bairisch sterben,1988,43,6.55349,5.51928,"1029, 292903" +14957,6124,Waterloo: The Last Great Battle,1981,54,6.34259,5.51927, +14958,216330,Irány a Kincses Sziget!,2016,48,6.44521,5.51927, +14959,271037,SizeUp,2018,55,6.32727,5.51927, +14960,285703,Salt & Sail,2021,38,6.68807,5.51925, +14961,204407,Toire o Yogoshita nowa Dareda?,2016,46,6.48478,5.51925, +14962,13103,Triolet,1996,72,6.13611,5.51925, +14963,210817,The Plot Thickens: Sci-Fi Edition,2023,31,6.95161,5.51925,"210816, 210817, 210818, 421550" +14964,355636,Sailorman Dice,2022,41,6.60220,5.51925, +14965,12059,"The Ottomans: Rise of the Turkish Empire, 1453-1571",2004,58,6.28466,5.51924, +14966,267418,Gridopolis,2018,32,6.90625,5.51924, +14966,168383,"Panzers East Solitaire: Army Group Center, June-August 1941",2015,32,6.90625,5.51924, +14968,25104,Absolut överens,2004,85,6.04118,5.51923, +14969,36698,The Crusades,1992,52,6.37212,5.51923, +14970,186510,RallyRas,2015,61,6.24623,5.51922, +14971,4873,"How to Host a Murder: The Good, The Bad & The Guilty",1996,34,6.82353,5.51922, +14972,364485,Mini Crimes: Like Cat and Mouse,2022,41,6.60073,5.51922, +14973,243568,My Very First Games: To Market!,2017,37,6.71757,5.51922, +14974,5870,Syzygy,1997,61,6.24590,5.51922, +14975,211485,Wizards' Towers,2017,35,6.78571,5.51922, +14976,2207,Land Grab,1974,75,6.11000,5.51921, +14977,69347,Barca,2007,38,6.68505,5.51921, +14978,57310,Hau La,2009,73,6.12603,5.51920, +14979,30596,Grand Chess,1987,31,6.94806,5.51920, +14980,247324,Atlandice,2018,364,5.64088,5.51920, +14981,260588,"Tanks, but no thanks!",2018,31,6.94710,5.51919, +14982,414944,Park Life: People,2024,54,6.33889,5.51919,"414944, 421149, 430634, 430641" +14983,149332,Trivial Pursuit: World of Warcraft,2013,110,5.92136,5.51918, +14984,238908,Evil Corp,2021,41,6.59756,5.51917, +14985,177002,Buy The Rights,2016,46,6.48022,5.51916, +14986,19554,Plext,2005,63,6.22063,5.51916, +14987,282525,Catlantis,2019,146,5.82158,5.51914, +14988,130671,Arsuf: Lionheart vs. Saladin,2012,30,6.99000,5.51913, +14989,26947,Italian Checkers,1400,72,6.13196,5.51913, +14990,399912,Monstervania,2024,38,6.68026,5.51913, +14991,212388,Animouv,2017,46,6.47826,5.51913, +14991,321680,Papua,2020,46,6.47826,5.51913, +14993,286666,Reef Rescue,2022,35,6.77937,5.51912, +14994,298165,Magnum Opus: The Great Work,2020,32,6.89687,5.51911, +14995,2354,Scan,1987,74,6.11486,5.51911, +14996,933,New Orleans Big Band,1990,145,5.82310,5.51911, +14997,166648,Imagidice!,2000,64,6.20781,5.51911, +14998,184490,Mein Schatz,2015,62,6.22984,5.51910, +14999,6995,Castle Danger,2002,44,6.52045,5.51910, +15000,51624,Know It or Blow It,2009,68,6.16691,5.51910, +15001,356997,Exacto,2022,43,6.54333,5.51909, +15002,203266,Cortex Challenge GEO,2016,90,6.00822,5.51908, +15003,41354,Sueca,,43,6.54263,5.51908, +15004,300094,Droll,2020,85,6.03655,5.51907, +15005,19634,Crossword Pyramids,2004,54,6.33333,5.51906, +15006,383981,The Queen's New Capital,2024,40,6.61750,5.51905, +15007,9843,Barbarossa 1941,2002,44,6.51705,5.51904, +15008,86882,Medieval Mastery,2011,175,5.76990,5.51903, +15009,100278,Tripolo,2011,59,6.26271,5.51902, +15009,364451,The Magical World of Disney Trivia,2022,59,6.26271,5.51902, +15011,10210,Word Squares,,38,6.67368,5.51902,"10210, 16850, 97999" +15011,2319,Trade,1974,38,6.67368,5.51902, +15013,390607,Great Kingdom,2023,33,6.84848,5.51902, +15014,20881,You Must Be an Idiot!,2005,222,5.71664,5.51902, +15015,13767,Scene It? 007,2004,155,5.80194,5.51901, +15016,327485,A Royal Will,2021,35,6.77143,5.51900, +15017,367367,Little Secret,2022,85,6.03471,5.51900,"367367, 432609" +15018,267988,Paper Pinball: Laser Sisters,2018,43,6.53837,5.51900,"267988, 271332, 271334, 283808, 283809, 295925, 295926, 301215, 302085" +15019,347997,Pazzaparola,2021,41,6.58780,5.51900, +15020,208707,Aquatika,2016,39,6.64231,5.51899, +15021,248157,Deadpool vs The World,2018,134,5.84585,5.51899,"248157, 258027" +15022,127947,Eagles & Missiles,2012,37,6.70270,5.51899, +15023,103236,Fusion,2011,111,5.91351,5.51898, +15024,4537,Baston,1985,48,6.43125,5.51898, +15025,221059,Little Action,,66,6.18242,5.51898, +15026,125547,Grimoire Shuffle,2012,66,6.18182,5.51897, +15027,411369,Chronicles of Light: Darkness Falls – Disney Edition,2024,40,6.61250,5.51896, +15028,255641,"Red Eagles Air War over the Kuban Peninsula, 1943",2018,30,6.97667,5.51896, +15029,183453,Carcassonne: Demo-Spiel,2015,38,6.66974,5.51896, +15030,382405,Listillo,2023,35,6.76743,5.51894, +15031,64877,Flashpoint,,43,6.53488,5.51894, +15032,145304,Cthulhu's Vault,2015,171,5.77425,5.51893, +15033,202994,Amasser Dragons,2016,34,6.80294,5.51893, +15034,257814,Cats,2018,78,6.07849,5.51892, +15035,276280,Spring on a String,2019,67,6.17015,5.51891, +15036,217095,Magyar népmesék: A társasjáték,2015,55,6.31200,5.51891, +15037,188753,ElemenZ,2017,58,6.27098,5.51891, +15038,196342,Word Porters,2016,60,6.24583,5.51891, +15039,272655,Darwinauts,2022,85,6.03200,5.51891, +15040,379977,echoes: Mord auf Ex,2023,87,6.02012,5.51890, +15041,253819,Monopoly: Deadpool,2017,48,6.42694,5.51889, +15042,4650,Across the Board,1975,41,6.58196,5.51889, +15043,116978,CITY Alarm,2012,150,5.80933,5.51889, +15044,254231,Oziland,2018,31,6.92419,5.51889, +15045,374369,National Lampoon's Christmas Vacation,2022,51,6.37294,5.51888, +15046,145897,Choose One!,2013,96,5.97240,5.51887, +15047,96672,TieBreaker,2011,129,5.85628,5.51887, +15048,229678,Good Little Tricks,2017,31,6.92258,5.51886, +15049,330311,Motu,2023,32,6.87812,5.51886, +15050,235455,Somnicum,2017,48,6.42500,5.51886, +15051,25246,Esagek,2006,48,6.42458,5.51885, +15052,165095,Pirate Loot: Base Set,2015,72,6.12251,5.51884, +15053,303306,Pirate's Mark,2020,32,6.87656,5.51883, +15054,3370,Connections,1991,245,5.69616,5.51883,"3370, 11052" +15055,241733,Chrono-Mots,2017,43,6.52894,5.51883, +15056,332317,Blaze,2021,205,5.73068,5.51883, +15057,146204,Ruckus: The Goblin Army Game,2014,97,5.96649,5.51882, +15058,124856,Anno Domini: Penne e Pennelli,2011,48,6.42312,5.51882,"124856, 176739" +15059,8731,Salvo II,1992,50,6.38680,5.51881, +15060,338023,Prise De Fer,2021,32,6.87500,5.51881, +15061,48867,Bourré,2010,73,6.11329,5.51881, +15062,260033,Concerto,2018,45,6.48311,5.51881, +15063,145649,Nowheresville: Bandit Paradise,2013,73,6.11301,5.51880,"41043, 145649" +15064,20630,Corintho,2005,66,6.17576,5.51880, +15065,5927,Duel in the Desert: Rommel's Campaign in North Africa,1986,59,6.25339,5.51879, +15066,342730,Detecteam Family: One Egg Too Many,2021,62,6.21774,5.51879,"342730, 342736, 352181, 353667" +15067,306029,Dark Force Incursion,2020,39,6.62949,5.51878, +15068,142638,Incredible Expeditions: Quest for Atlantis,2015,156,5.79644,5.51878, +15069,264410,Dinos Not Assembled,2021,44,6.50250,5.51876, +15070,370129,Piazza Rabazza,2022,59,6.25220,5.51876, +15071,121031,Franco-Prussian War 40: August 1870 - March 1871,2012,34,6.79118,5.51875, +15072,149520,"Hindenburg's War: Decision in the Trenches, 1918",2014,30,6.96000,5.51874, +15072,137431,Of Gods And Mortals: Mythological Wargame Rules,2013,30,6.96000,5.51874, +15074,117908,The Big Fat Tomato Game,2012,131,5.84870,5.51874, +15075,280148,Gizeh!,2019,66,6.17364,5.51874, +15076,300008,Fish Club,2020,55,6.30455,5.51874, +15077,6566,VisualEyes,2003,344,5.64436,5.51873, +15078,8103,.hack//ENEMY,2003,90,5.99889,5.51873, +15079,94140,"Mirror, Mirror",2011,85,6.02706,5.51873, +15080,7141,Crossbows and Cannon II,1993,56,6.29018,5.51873, +15081,264672,ジャンキー (Junkie),2018,49,6.40000,5.51872, +15082,54986,duck! duck! SAFARI!,2009,92,5.98804,5.51872, +15083,10802,Somethin' Fishy,2004,237,5.70089,5.51872, +15084,3812,"Breakout & Pursuit: The Battle for France, 1944",1972,71,6.12676,5.51871, +15085,7526,Welfen und Staufer,1990,45,6.47778,5.51871, +15086,180915,Storytelling,2015,42,6.54619,5.51871, +15087,1877,Pig Pile,2001,412,5.62345,5.51871, +15088,328268,Photoshoot,2020,40,6.59750,5.51871, +15089,367704,Sink N' Sand,2022,75,6.09387,5.51870, +15090,144486,Them's Fightin' Words!,2013,33,6.82576,5.51870, +15091,331011,Tranglar,2021,35,6.75029,5.51869, +15092,5877,Phantasy Realm,2002,33,6.82424,5.51868, +15093,158236,Tortilla de Patatas: The Game,2014,166,5.77819,5.51868, +15094,265099,Escoba,,46,6.45474,5.51867, +15095,144383,Dungeon Dwellers,2014,61,6.22426,5.51866, +15096,295605,Trip 1907: Forbidden Mine,2020,97,5.96227,5.51865,"295605, 325235, 325388" +15097,33850,Operation Cartwheel,2008,34,6.78382,5.51865, +15098,27291,AtmosFear: Khufu – The Mummy,2006,137,5.83255,5.51864, +15099,7464,Battleship: Card Game,2002,190,5.74495,5.51864, +15100,26363,Nomads of Arabia: The Wandering Herds Game,2006,87,6.01276,5.51864, +15101,21188,Liar!,2005,44,6.49545,5.51863, +15102,428062,Camargue,2024,33,6.82104,5.51863, +15103,89972,15,2011,116,5.88914,5.51863, +15104,138799,LOKA: A Game of Elemental Strategy,2013,93,5.98065,5.51863, +15105,194505,Tallinn,2016,127,5.85685,5.51862, +15106,201520,"Curse You, Robin Hood!",2016,36,6.71111,5.51861, +15107,15830,Scene It? Disney,2004,546,5.59721,5.51861,"15830, 40395" +15108,398763,Another Christmas Romance Movie,2023,34,6.78000,5.51859, +15109,5120,Doubles Wild,2001,77,6.07545,5.51859, +15110,184656,The Court of Xiang Chi,2015,35,6.74286,5.51858, +15111,214232,Peaks of the Caucasus,2018,30,6.94667,5.51857, +15112,272683,Guardians of Legends,2019,84,6.02857,5.51857, +15113,325415,Lawklivya: Vengeance,2021,41,6.56341,5.51857, +15114,360213,Lemur Tails,2022,61,6.22049,5.51856, +15115,153319,Query,2014,30,6.94500,5.51855, +15116,346228,Fragments,2021,33,6.81515,5.51855,"346228, 370642" +15117,318080,Wolkenbruch,2020,34,6.77647,5.51854, +15118,486,Barnyard Buddies,1996,241,5.69599,5.51854, +15119,168900,D. Afonso Henriques,2014,63,6.19722,5.51854, +15120,131346,New York Kings,2012,53,6.32509,5.51853, +15121,382304,Tea Time Crime,2023,46,6.44783,5.51853, +15122,182400,Poor Choices,2016,42,6.53571,5.51852, +15123,6507,Major Campaigns of General Douglas MacArthur,1974,69,6.13768,5.51852, +15124,501,Dschungelrennen,1989,64,6.18594,5.51852,"501, 9254" +15125,8394,Ludoviel,2003,94,5.97287,5.51851, +15126,210015,Pests!,2017,32,6.85313,5.51851, +15127,37770,Palio,2008,43,6.51163,5.51851,"37770, 344037" +15127,15430,Marignan 1515,1995,43,6.51163,5.51851, +15129,8089,X-Machina,2003,95,5.96800,5.51851, +15130,307250,Thru the Appalachian,2020,44,6.48864,5.51850, +15131,218988,Debtzilla,2018,55,6.29455,5.51850, +15132,92776,Guards! Guards! A Discworld Boardgame,2011,452,5.61292,5.51850, +15133,244911,Brainwaves: The Wise Whale,2018,53,6.32358,5.51850, +15134,200888,Med Sirocco,2017,45,6.46667,5.51850, +15135,134618,Zen Garden,2013,240,5.69625,5.51849, +15136,9564,William the Conqueror: 1066,1976,33,6.81061,5.51848, +15137,140859,Maccabees,2009,34,6.77206,5.51848, +15138,165471,Col-Or-Form,2014,53,6.32264,5.51848, +15139,227599,Brew Dice,2017,75,6.08668,5.51847, +15140,291,Courtisans of Versailles,1988,176,5.76032,5.51845, +15141,334239,Catch Don Falconi,2022,37,6.66892,5.51845, +15142,2040,Trippples,1972,173,5.76445,5.51845, +15143,330111,"Monstrosity, The Card Game",2021,59,6.23966,5.51845,"7070, 330111" +15144,130014,Hinge of Fate,2013,36,6.70000,5.51844, +15145,8132,Winter Fury: The Battle of Tolvajärvi 1939,2001,74,6.09324,5.51844, +15146,8180,Floriado,2003,69,6.13478,5.51844, +15147,18732,Marvel Super Heroes Game,1992,40,6.58125,5.51843, +15148,7060,NORAD,1973,43,6.50698,5.51843,"7060, 293786" +15149,34104,Matanga!,2009,38,6.63684,5.51842,"34104, 198478" +15150,255227,Kamakura Collection,2018,49,6.38571,5.51842, +15151,236480,NOVA,2017,46,6.44145,5.51841, +15152,6040,Desert Storm: The Mother of All Battles,1991,100,5.94300,5.51841, +15153,98960,Rogue Agent,2013,263,5.67978,5.51840, +15154,32682,Scene It? Disney Second Edition,2007,169,5.76953,5.51840, +15155,130674,Loos: The Big Push,2012,47,6.42128,5.51840, +15156,133637,Temple Run: Danger Chase,2012,316,5.65265,5.51839, +15157,242900,Brutus,2017,34,6.76588,5.51839, +15158,6766,Top Gun: The Game of Modern Fighter Combat,1986,103,5.93010,5.51838, +15159,20732,La conquista del Oeste,1982,49,6.38367,5.51838, +15160,281919,Mice To Meet You,2019,56,6.27542,5.51838, +15161,327405,Patatrap Quest,2020,57,6.26140,5.51836, +15162,179864,Into the Pocket!,2015,30,6.93000,5.51836, +15162,132461,Blekoteco,2012,30,6.93000,5.51836, +15164,311332,Sugar Heist,2020,42,6.52619,5.51835,"311332, 363130" +15165,243075,Trailhead,2017,32,6.84097,5.51835, +15166,1820,Z-G,2001,37,6.66216,5.51835, +15166,6832,The Siege of Minas Tirith,1975,37,6.66216,5.51835, +15168,10265,Molotov's War,1995,73,6.09795,5.51834, +15169,360455,Artisans,2023,30,6.92833,5.51834, +15170,312759,Hot Words,2020,44,6.47955,5.51833, +15171,193854,Gnomi,2017,58,6.24741,5.51833, +15172,313165,Petris,2021,39,6.60256,5.51833, +15173,367178,Space Expatriate,2022,37,6.66108,5.51833, +15174,154778,AssassinCon,2016,239,5.69519,5.51832, +15175,20111,The Golf Game: Par Excellence,1985,35,6.72571,5.51832, +15176,198086,Rushi,2016,41,6.54878,5.51832, +15177,256250,The Waylanders,2018,67,6.14876,5.51831, +15178,5779,D-Day,1991,188,5.74282,5.51830, +15179,137780,Thématik,2013,76,6.07368,5.51830, +15180,11925,Quizzle,1978,39,6.60057,5.51830, +15181,243612,Brain Connect,2018,61,6.20992,5.51829, +15182,5704,Capt'n Clever,2003,337,5.64347,5.51829, +15183,12583,Kursk 1943,1993,32,6.83594,5.51828, +15184,70451,Zheng Fen,,35,6.72286,5.51828, +15185,14468,Blood & Iron: Bismarck's Wars for Empire,1993,46,6.43478,5.51828, +15186,26976,Kingdom Hearts TCG,2006,61,6.20820,5.51824, +15187,203215,Robit Riddle: Storybook Adventures,2018,62,6.19694,5.51824, +15188,5321,The Battle of the Little Big Horn,1962,91,5.98022,5.51823, +15189,42470,Aljubarrota,2009,64,6.17500,5.51822, +15190,10326,Woods & Water,1995,61,6.20721,5.51822, +15191,10898,Tricky Fingers,1982,74,6.08615,5.51822, +15192,413469,Ada's Dream,2025,30,6.91833,5.51821, +15193,91442,Zwerg Riese,2011,38,6.62316,5.51820, +15194,382064,Cartaventura: Versailles,2023,36,6.68333,5.51818, +15195,2131,Wildstorms,1995,61,6.20574,5.51818, +15196,146999,Katapult,2012,37,6.65162,5.51818, +15197,195271,Karen and the Pirate Island,2016,31,6.87097,5.51818, +15198,113252,"Battle of Lobositz, October 1, 1756",2011,32,6.82812,5.51817, +15199,376737,Jardinero,2022,38,6.62105,5.51817, +15200,259897,Ghostbusters: The Card Game,2018,138,5.82181,5.51817,"230065, 259897" +15201,21457,Cover Up,2006,81,6.03543,5.51816, +15202,8067,Royalists & Roundheads III,1993,61,6.20492,5.51816, +15203,99880,Drop Site,2011,84,6.01667,5.51815, +15204,32333,Die Wiege der Renaissance,2007,131,5.83779,5.51815, +15205,19351,"Dark Millennium: The Warhammer 40,000 Collectible Card Game",2005,101,5.93267,5.51815, +15206,23643,Nine Navies War,2007,61,6.20410,5.51814, +15207,18122,The Battle of Roark's Drift,1978,32,6.82500,5.51813, +15208,12811,Strat-O-Matic College Football,1976,38,6.61842,5.51813, +15209,75292,Paying the Peiper,2010,69,6.12356,5.51811,"75292, 93867, 101628, 101629" +15210,155415,Warpath: Indian Territory in the American Civil War,2015,30,6.91000,5.51810, +15211,18843,Sombras Sobre Isla Negra,2005,58,6.23793,5.51810, +15212,262079,Two Stacks,2018,43,6.48837,5.51809,"257651, 262079" +15213,9062,Borodino '41,1995,60,6.21333,5.51808, +15214,276641,Super Punch Fighter,2019,74,6.08149,5.51807, +15215,17313,Auf Zack!!,2003,67,6.14030,5.51807, +15216,29400,Prairie Aflame!,2007,34,6.74412,5.51807, +15217,231611,You've got problems,2017,54,6.28981,5.51807, +15218,175418,Aura,2017,52,6.31923,5.51806, +15219,9181,TacForce,1980,41,6.53415,5.51806,"9181, 310298" +15220,218905,L'Arbre,2017,69,6.12174,5.51806, +15221,14102,Toss Up!,2004,323,5.64700,5.51805, +15222,46925,Kámen – Zbraně – Papír,2007,78,6.05192,5.51805, +15223,40804,Huntik: Secrets and Seekers Trading Card Game,2009,55,6.27455,5.51804, +15224,243437,The Cat,2018,94,5.96064,5.51804, +15225,367027,Marvel: Damage Control,2023,81,6.03148,5.51803, +15226,657,Münchhausen,1996,131,5.83550,5.51803, +15227,7522,Wave of Terror,1997,87,5.99586,5.51802, +15228,175867,[microfilms],2015,134,5.82811,5.51801, +15229,259638,10 Latidos,2018,52,6.31705,5.51801, +15230,1952,Long Short,1982,50,6.34900,5.51801, +15231,293495,StoneFire,2020,46,6.42065,5.51800,"168031, 173322, 173323, 186517, 293495" +15232,41878,Coast-to-Coast Rails,2009,41,6.53049,5.51800, +15233,361218,ギャラクシーねこのばし (Galaxy Cat Extension),2022,62,6.18710,5.51798, +15234,200527,MOOGH,2016,45,6.43978,5.51798,"200527, 361232" +15235,18870,Wykersham,1980,41,6.52927,5.51797, +15236,275998,GladiGala,2019,30,6.90000,5.51797, +15237,231315,Wanted: Rich or Dead,2017,88,5.98898,5.51797, +15238,162660,Secret Moon,2014,297,5.65750,5.51796, +15239,190104,Activity Family Classic,2014,81,6.02940,5.51796, +15240,182793,Double Play: Group Sex,2017,32,6.81250,5.51796,"182790, 182791, 182792, 182793, 182794, 233563, 233945, 234824" +15241,340122,Come on! Bite me!,2015,71,6.10141,5.51796, +15242,414639,Qu4to,2024,60,6.20833,5.51796, +15243,313551,Anxiety Attack!,2020,49,6.36327,5.51796, +15244,84991,Bizzarie,2010,33,6.77273,5.51795, +15245,21036,Stratego: Star Wars Saga Edition,2005,73,6.08493,5.51794, +15246,277692,Prisma Arena,2020,46,6.41739,5.51794, +15247,17157,Forbidden,2004,78,6.04808,5.51793, +15248,6842,Battles of the Ancient World: Marathon and Granicus,2003,56,6.25625,5.51792, +15249,6365,The Totally Insane Card Game,1993,65,6.15385,5.51792, +15250,9204,Cherkassy Pocket: Encirclement at Korsun,2001,45,6.43556,5.51790, +15251,425056,CONIC,2024,40,6.55000,5.51790,"7778, 425056" +15252,79216,Plateau X,2010,107,5.90364,5.51789, +15253,116739,Decision: Iraq,2013,41,6.52439,5.51789, +15254,130668,Breitenfeld: Enter the Lion of the North,2012,37,6.63297,5.51789, +15255,47475,Ex illis,2009,43,6.47674,5.51787, +15256,286236,Poisons,2020,71,6.09859,5.51787, +15257,283700,Crazy Theory,2019,47,6.39504,5.51787, +15258,238932,Capio,2017,35,6.69571,5.51787, +15259,153980,Fate of the Norns: Gulveig,2014,38,6.60263,5.51787, +15260,346911,I Guess This Is It,2022,33,6.76667,5.51786, +15261,386,Pirateer,1978,1321,5.54906,5.51786, +15262,145027,Pentos,2013,191,5.73356,5.51786, +15263,260266,Sailblazer,2018,32,6.80469,5.51785, +15264,174128,Zambezi: The Expedition Game,2015,77,6.05260,5.51785, +15265,120781,Wild Fun West,2012,137,5.81825,5.51784, +15266,101539,First Bull Run: 150th Anniversary Edition,2012,31,6.84516,5.51784, +15266,419294,Battle Royale,2024,31,6.84516,5.51784, +15268,295646,Spyfest,2020,82,6.01939,5.51783, +15269,352578,Touchdown Heroes,2021,33,6.76364,5.51782, +15270,224999,Witching Hour,2017,93,5.95982,5.51782, +15271,285623,Firefly Dance,2019,39,6.57179,5.51782, +15272,10304,Julius Caesar: Game of the Gallic Wars,1985,90,5.97444,5.51782, +15273,188793,Game of Thrones: The Trivia Game,2016,144,5.80312,5.51781, +15274,38287,Beep! Beep!,2008,288,5.66046,5.51781, +15275,650,Fairy Meat,2000,90,5.97411,5.51780, +15276,101685,Dead Fellas,2011,95,5.95000,5.51780, +15277,40185,Paul Koenig's D-Day: Sword and Gold – The British Beaches,2009,31,6.84194,5.51779, +15278,135598,Pub Trivia,2012,88,5.98409,5.51779, +15279,306464,Embryo Machine Boardgame,2018,32,6.80000,5.51779, +15280,135213,Stack-A-Biddi,2012,90,5.97361,5.51778, +15281,315913,Age Of Hunting Deluxe Edition,2020,31,6.84032,5.51777,"271827, 315913" +15282,144378,Help Wanted,2013,51,6.32157,5.51777, +15283,165889,Safe Breaker,2014,102,5.91961,5.51777, +15284,163119,Pocket Dungeon Quest,2015,181,5.74420,5.51777, +15285,162727,Victory through Industry,2014,60,6.20083,5.51777, +15286,21666,Mad Scientist University,2005,176,5.75057,5.51776, +15287,41047,Admin Test Item,2005,30,6.88333,5.51776, +15288,2763,Touché,1977,237,5.69050,5.51775, +15289,11056,Fantasy Rules! Fast Play Rules for Miniature Wargames in the Worlds of Fantasy,1996,32,6.79688,5.51774, +15290,7241,Fight for the Sky,1982,61,6.18852,5.51774, +15291,179813,Manhattan TraffIQ,2015,77,6.04909,5.51774, +15292,3575,The Plot to Assassinate Hitler,1976,231,5.69481,5.51773, +15293,66969,Zagłada Atlantydy,2011,126,5.84230,5.51773,"66969, 147931" +15294,76481,Persian Incursion,2010,51,6.31961,5.51773, +15295,211882,Beyond the Gates of Antares: The Dice Game,2016,71,6.09366,5.51773,"195478, 211882" +15296,131144,The Perfect Heist,2013,88,5.98239,5.51773, +15297,84453,Nexos,2010,85,5.99847,5.51771, +15298,385315,Unlock! Mythic Adventures: In den Fängen des Hades,2023,36,6.65278,5.51771, +15299,132085,These Brave Fellows,2013,32,6.79375,5.51770, +15300,263097,Yeti in the House,2018,52,6.30288,5.51770, +15301,137332,That's It!,2013,117,5.86641,5.51769, +15302,200988,Splish Splash Catapult,2016,34,6.71765,5.51769, +15303,291957,Canal King Brugge,2019,68,6.11765,5.51769, +15304,126708,BCT Command: Kandahar,2013,30,6.87667,5.51767, +15305,268776,Doxa: The Card Game,2020,47,6.38511,5.51767, +15306,25772,Astoria,2006,118,5.86314,5.51767, +15307,399094,Lecker Lava,2023,53,6.28679,5.51767, +15308,10471,"The Franco-Prussian War: August 1 to September 2, 1870",1972,76,6.05395,5.51767, +15309,308381,Royale,2020,31,6.83161,5.51766, +15310,4894,Three For All!,1990,55,6.25818,5.51766, +15311,26292,Bzura 1939,1992,81,6.02037,5.51765,"26292, 30592, 32898, 40915, 150441, 371149, 371151" +15312,343507,Однажды в Чикаго (Once upon a time in Chicago),2021,39,6.56154,5.51765,"343507, 389125, 411902" +15313,38865,Paleo,2008,30,6.87467,5.51765, +15314,50560,Sherwood Showdown,2009,51,6.31569,5.51764, +15315,188783,Apocalypse in the East: The Rise of the First Caliphate 646-656 A.D.,2018,34,6.71471,5.51764, +15316,6891,24 Game,1988,128,5.83547,5.51764, +15317,376573,To Glory!,2023,56,6.24393,5.51763, +15318,209649,Aurimentic,2016,121,5.85372,5.51763, +15319,40198,Oktoberfest,2017,72,6.08229,5.51762, +15320,3657,Redemption: City of Bondage,1996,125,5.84280,5.51762, +15321,103937,If I'm Going Down...,2012,115,5.87087,5.51761, +15322,357118,Best Candy on the Block: Rewrapped,2022,42,6.48452,5.51760,"262930, 357118" +15323,359755,Braveheart Solitaire,2022,34,6.71176,5.51760, +15323,14975,I Will Fight No More... Forever,1979,34,6.71176,5.51760, +15325,210425,Rise Up: The Game of People and Power,2017,32,6.78625,5.51760, +15326,119193,Crazy Creatures of Dr. Gloom,2012,489,5.60059,5.51759, +15327,150827,Monster City Planners,2013,54,6.26852,5.51758, +15327,20643,Friesen-Törn,2005,54,6.26852,5.51758, +15329,210966,Quadrum,2017,55,6.25455,5.51757, +15330,16741,System 7 Napoleonics,1978,41,6.50610,5.51757, +15331,19877,Beetlez,2005,204,5.71618,5.51756, +15332,94916,Zed Deck,2011,51,6.31176,5.51756, +15333,319294,Frosty the Snowman: Follow the Leader,2020,43,6.45930,5.51755, +15334,29736,Little Italy,2007,254,5.67697,5.51755, +15335,22614,Petróleo,1984,52,6.29615,5.51755, +15336,23404,Les morts aux trousses,2006,58,6.21552,5.51755, +15337,7847,Blood on the Snow: The Battle of Suomussalmi,1995,94,5.94819,5.51755, +15338,2304,Knock Out,1994,98,5.93061,5.51755, +15339,21634,Cincinnati,2006,107,5.89579,5.51755, +15340,146247,Showdown: Icons,2013,59,6.20339,5.51754, +15341,73230,Showdown: The Coming Indo-Pakistani War,2010,45,6.41667,5.51754, +15342,6054,Norge: the first battle between the Germans and the Allies,1981,59,6.20322,5.51754, +15343,28238,Kitty Bitty,2007,271,5.66679,5.51753, +15344,2889,Golem,1995,32,6.78147,5.51753, +15345,14077,Nin-Gonost,2004,32,6.78125,5.51753, +15346,139374,DTC,2012,72,6.07917,5.51753,"139374, 306237" +15347,73242,Saipan: Conquest of the Marianas,2010,62,6.16935,5.51752, +15348,16268,Miss Monster,2005,51,6.30980,5.51752, +15349,9869,De Bull Run à Appomatox,2001,34,6.70588,5.51752, +15350,219312,MINDJOB,2016,73,6.07096,5.51751, +15351,255608,The Cleaner,2018,35,6.67143,5.51751, +15352,160871,Scotland Rising,2014,46,6.39524,5.51750, +15353,7683,Ronda Magica,1988,42,6.47857,5.51750, +15354,153724,Pie Factory,2014,317,5.64479,5.51749, +15355,190523,CATS: a sad but necessary cycle of violent predatory behavior,2016,38,6.57895,5.51749,"176345, 190523" +15356,104558,Burdigala,2011,99,5.92485,5.51748, +15357,261491,Takla,2018,41,6.50000,5.51746, +15358,160353,LUGU,2014,47,6.37447,5.51746, +15359,11512,Leipzig: The Battle of Nations – Napoleon vs. Europe,1969,53,6.27736,5.51746, +15360,361909,Fableland,2022,55,6.24964,5.51746, +15361,334314,Alien on Board,2021,31,6.81613,5.51745, +15362,40440,Sector 41,2009,120,5.85292,5.51745, +15363,20710,Tiger of Malaya,2006,37,6.60541,5.51745, +15364,3102,Banque Fatale,1997,95,5.94105,5.51745, +15365,84017,Football Leader,2010,35,6.66714,5.51744, +15365,333523,KamiMaï,2021,35,6.66714,5.51744,"251691, 333523" +15367,325815,The Final Light-Year,2021,38,6.57632,5.51744, +15368,12458,Atmosfear: The Card Game,1995,30,6.85833,5.51744, +15369,76442,Those Pesky Humans!,2009,156,5.77530,5.51744, +15370,24013,"Bitter Victory: The Invasion of Sicily, 1943",2006,91,5.95934,5.51743, +15371,12629,Marching Through Georgia,1990,63,6.15556,5.51743, +15372,20954,Alpen Express,2005,46,6.39130,5.51743, +15373,120870,El Melómano,2009,48,6.35417,5.51741,"120870, 376594, 376595" +15374,255695,Venture Angels,2018,63,6.15476,5.51741, +15375,163242,CHEW: Cases of the FDA,2015,116,5.86351,5.51740, +15376,333,Waterworks,1972,2123,5.53630,5.51740, +15377,328251,Binomial,2020,44,6.42955,5.51740, +15378,31557,The Egyptian Campaign,2008,55,6.24709,5.51740, +15379,8102,Typhon sur le Pacifique,2001,47,6.37021,5.51738, +15380,236577,Five Ravens,2017,39,6.54487,5.51737,"236577, 333540" +15381,192237,Specific,2016,87,5.97797,5.51737, +15382,11125,The Marne: Home Before the Leaves Fall,1972,48,6.35208,5.51737, +15383,35546,Aronda,2008,126,5.83532,5.51737, +15384,12743,The Battle of Helm's Deep,1974,39,6.54444,5.51736, +15385,258751,Whiskey Business!,2018,41,6.49390,5.51736, +15386,324855,Raffi Raffzahn,2021,30,6.85167,5.51735, +15387,29879,Blood & Sand,2012,52,6.28673,5.51734,"27821, 29879" +15388,2384,Safe Return Doubtful,1996,63,6.15238,5.51734, +15389,151416,Creative Clash,2014,88,5.97159,5.51733, +15390,21437,Agora Barcelona,2005,43,6.44651,5.51732, +15391,134884,ZnajZnak,2012,64,6.14141,5.51731,"134884, 149465, 156784, 159893, 159894, 159895, 159896, 159897, 159898, 159899, 159900, 159901, 159902, 159904, 183065, 255488" +15392,32253,Caveman,2007,261,5.67031,5.51731, +15393,86849,Total Soccer,2008,39,6.54103,5.51731, +15394,369749,Zensū,2021,34,6.69118,5.51730, +15395,38747,Accused! Getting Away With Murder?,2008,58,6.20517,5.51730, +15396,22145,1842: Schleswig Holstein,1992,32,6.76406,5.51730, +15397,159858,Speakeasy,2015,35,6.65714,5.51729, +15398,402711,BLOT,2024,41,6.49024,5.51729, +15399,7386,Wake Island,1981,36,6.62500,5.51729, +15400,285105,Court of the Dead: Dark Harvest,2020,44,6.42341,5.51728, +15401,270327,"PENNY DREADFUN: Duchy, Demony, Dickensy",2018,41,6.48878,5.51727,"270327, 312322" +15402,166215,Tricks & Deserts,2014,39,6.53846,5.51726, +15403,378709,Ploc,2023,45,6.40222,5.51726,"68970, 378709" +15403,380889,Butts on Things,2023,45,6.40222,5.51726, +15405,285112,Animal Circus,2019,44,6.42227,5.51726, +15406,3005,Chess for Three,1992,98,5.92347,5.51726, +15407,7140,Sink the Bismarck!,1992,47,6.36383,5.51725, +15407,5723,Shattered States,1990,47,6.36383,5.51725, +15409,282410,Escape Pods,2019,53,6.26792,5.51725, +15410,336206,Aggretsuko: Work/Rage Balance,2021,85,5.98529,5.51725, +15411,17754,Horror House,1986,48,6.34583,5.51724,"17754, 123882" +15412,8979,Oodles of Doodles,2003,61,6.16918,5.51724, +15413,283942,Garden Guerrilla,2019,37,6.59189,5.51724, +15414,30438,Tous au dodo,2006,49,6.32857,5.51723, +15415,5185,Field Marshal,1976,80,6.01389,5.51722, +15416,333955,Atenea,2020,38,6.56263,5.51722, +15417,93679,Aether Captains: Capek Golems,2011,48,6.34479,5.51722, +15418,3725,Qwitch,2002,288,5.65514,5.51722,"3725, 168165" +15419,1079,Tokami,1998,40,6.51000,5.51722, +15420,5724,The Great Patriotic War: Nazi Germany vs. the Soviet Union,1988,133,5.81579,5.51721, +15421,6774,High Ground,1990,52,6.28077,5.51721, +15422,1227,Stonewall,1996,76,6.03947,5.51721, +15423,355984,Pathfinder: Level 20,2022,47,6.36170,5.51721, +15424,369155,Perfect Numbers,2022,33,6.71818,5.51718, +15425,105305,Coraxis & Co.,2012,54,6.25074,5.51717, +15426,92499,Djam,2011,163,5.76000,5.51716, +15427,4245,Asteroid Zero-Four,1979,55,6.23636,5.51715, +15428,28596,GridIron Master,2007,47,6.35851,5.51714, +15429,26560,Asalto al Banco de Inglaterra,1982,56,6.22321,5.51714, +15430,41148,Fuzzy Tiger,2009,65,6.12538,5.51714, +15431,41587,Эрудит (Polymath),1970,70,6.08186,5.51714, +15432,310957,SlingPuck,2020,77,6.03039,5.51713, +15433,446,Avalanche,1965,263,5.66730,5.51712, +15434,38763,11 de Setembre. Setge 1714,2008,48,6.33958,5.51711, +15435,1110,Kathai,2000,172,5.74651,5.51711, +15436,31401,Knjaz'ja,2005,67,6.10597,5.51710, +15437,288964,Kipp4,2019,34,6.67647,5.51709, +15438,299574,No Mercy for Monsters,2020,40,6.50250,5.51709, +15439,3423,Equations,1963,35,6.64286,5.51708, +15440,176887,Perspective,2016,117,5.85376,5.51708, +15441,90375,Mieses Karma,2011,110,5.87509,5.51707, +15442,6478,Dictionary Dabble,1986,43,6.43256,5.51707, +15443,8981,Anagram: The Ingenious Game of Juggling Words,1991,49,6.32041,5.51706, +15443,20036,Spinnentwist,2005,49,6.32041,5.51706, +15445,208543,"Dwarves: Dig, Delve, Die",2017,85,5.98000,5.51706, +15446,20514,"Dagger Thrusts: Patton & Montgomery, September 1944",2005,61,6.16213,5.51706, +15447,329578,QUIZscape,2021,50,6.30400,5.51706, +15448,85021,PARSEC,2010,42,6.45388,5.51706,"85021, 128716" +15449,6988,Nile,1967,80,6.00875,5.51705, +15450,282287,Rescue Animals,2019,83,5.99096,5.51705, +15451,2400,The Brotherhood,1972,57,6.20702,5.51705, +15452,331551,Gorynich,2021,36,6.60903,5.51704, +15453,11482,Case Green,1992,92,5.94402,5.51703, +15454,106631,Space Bastards,2011,189,5.72487,5.51703, +15455,199030,Baaaaa!,2015,38,6.55000,5.51702, +15456,16018,A Greek Tragedy: The Italian Invasion of Greece 1940-1941,2001,61,6.15984,5.51700, +15457,215259,The Sock Game,2016,72,6.06157,5.51700, +15458,142043,Stack & Attack,2013,46,6.36902,5.51699, +15459,36431,Time Line,2002,40,6.49625,5.51698, +15460,178053,Schatz-Rabatz,2015,92,5.94271,5.51698, +15461,157586,Linkage: A DNA Card Game,2014,141,5.79468,5.51697, +15462,363991,Yum Cha,2022,50,6.30000,5.51697, +15463,300996,Zombie Life,2020,43,6.42744,5.51697, +15464,210044,Monopoly: Rick and Morty,2016,101,5.90455,5.51697, +15465,366357,One Two Many Rabbits,2023,39,6.52051,5.51697, +15465,73238,Crusader: Battle for Tobruk,2010,39,6.52051,5.51697, +15467,413299,Lumicora,2024,40,6.49500,5.51696, +15468,4060,Undead,1981,97,5.92010,5.51695, +15469,33870,Quest Master,2002,48,6.33125,5.51694, +15470,334543,Rolling Dice,2021,69,6.08333,5.51694, +15471,85472,The Art of Science,2010,84,5.98214,5.51694, +15472,8548,Gounki,1997,31,6.77742,5.51694, +15473,129625,Irezumi,2012,44,6.40455,5.51693, +15474,175313,AARRR!,2014,41,6.46829,5.51691, +15475,103016,Expedition Sumatra: Dadu Dadu,2011,59,6.17797,5.51691,"103016, 136912" +15476,284501,White Elephant,2021,30,6.81667,5.51690, +15477,3801,When Darkness Comes,2002,562,5.58628,5.51690, +15478,212668,Drawing Dead,2017,54,6.23889,5.51690, +15479,10605,Stratego Tournament,2001,60,6.16667,5.51690, +15480,341427,Télos,2021,66,6.10758,5.51690, +15481,12506,"La Bataille du Matz, 9-12 juin 1918",1999,37,6.57027,5.51690, +15482,31556,The Russo-Swedish War,2008,51,6.28039,5.51688, +15483,154495,Royals,2013,30,6.81467,5.51688, +15484,166246,Sifaka,2014,58,6.18793,5.51687, +15485,104798,Evening in the Stable,2011,61,6.15492,5.51687, +15486,318185,Hot Potato!,2021,48,6.32750,5.51687, +15487,157364,Feed the Shoggoth!,2015,35,6.62857,5.51687, +15488,345625,Jingle All the Way: It's Turbo Time!,2021,56,6.21167,5.51687, +15489,2864,Automania: The Game of the Motor Giants,1991,85,5.97412,5.51685, +15490,233872,Le Tour de France,2017,50,6.29400,5.51684,"173782, 233872" +15491,277308,Tortuga Gourmet,2019,40,6.48750,5.51683, +15492,284299,Box Monster,2021,44,6.39886,5.51682, +15493,379800,Myriades,2023,42,6.44048,5.51682, +15494,364901,Менестрели (Minstrels),2022,48,6.32500,5.51682, +15495,36413,Pressure Point,2010,75,6.03400,5.51682, +15496,16830,Over the Top! Lemberg 1914 & Verdun 1916,1999,55,6.22182,5.51681, +15497,260563,Artline: Hermitage,2019,94,5.92911,5.51680, +15498,2137,Quest for the Grail,1995,63,6.13175,5.51679, +15499,209053,Wicked Apples,2016,55,6.22073,5.51678, +15500,191216,Gob'z'Heroes,2016,41,6.46098,5.51678, +15501,10154,Treasure of the Pharaohs,1974,47,6.34043,5.51678, +15502,160773,First to Fight,2014,84,5.97738,5.51677, +15503,8756,Eastern Front Solitaire,1986,90,5.94667,5.51677, +15504,1120,Silver Mine,1992,79,6.00619,5.51676, +15505,137841,Tic Stac Toe,2013,53,6.24579,5.51675, +15506,7366,Flix,1994,60,6.16065,5.51675, +15507,1609,Creature Features,1975,34,6.65294,5.51675,"1609, 5792" +15508,406257,SUMO,2023,47,6.33830,5.51674, +15509,2160,Robots!,1980,65,6.11077,5.51674, +15510,133992,Sorcerers of the Magic Kingdom,2012,54,6.23148,5.51673, +15511,18683,Salta,1899,39,6.50513,5.51671, +15512,63497,Pochspiel,1441,57,6.19298,5.51671, +15513,109786,Serica: Plains of Dust,2011,34,6.65000,5.51670, +15514,382368,Mint Imperium,2023,40,6.48000,5.51670, +15515,94456,Color Stix,2011,44,6.39205,5.51670, +15516,178096,Rommel at Gazala (Second Edition),2015,30,6.80000,5.51669,"24311, 178096" +15517,11562,Crimean War,1998,54,6.22963,5.51669, +15518,38390,Exalted: Legacy of the Unconquered Sun,2008,138,5.79565,5.51669, +15519,288182,The Smog Riders: Showdown,2019,31,6.75806,5.51668, +15519,416060,Kabaal,2024,31,6.75806,5.51668, +15519,8434,Extinction: The Game Of Ecology,1970,31,6.75806,5.51668, +15519,67626,Nay-Jay!,2010,31,6.75806,5.51668,"67626, 153891" +15523,208800,Ceres: Operation Stolen Base,2016,61,6.14754,5.51668, +15524,262407,Fantasy Pug Quest,2019,32,6.71875,5.51668, +15525,611,Ironman Football,1995,47,6.33511,5.51668, +15526,8457,Condottieri: The Battle of Castagnaro,1986,56,6.20357,5.51668, +15527,124387,Rule the Roost,2012,62,6.13710,5.51668, +15528,41712,Desafino,1988,40,6.47800,5.51667, +15529,209562,Pipe Work Duo,2016,45,6.37111,5.51667,"192207, 209562" +15530,31453,"Holy Roman Empire: Wars of the Reformation, 1524-38",2007,42,6.43071,5.51664, +15531,231538,Goatfish,2017,39,6.50103,5.51664, +15532,5515,Grand Master,1986,55,6.21455,5.51664, +15533,285885,Formula,2019,52,6.25481,5.51664, +15534,17918,The Transformation Game,1987,43,6.40930,5.51664, +15535,380005,Nigoichi,2022,37,6.55405,5.51664, +15536,20192,Meikyu Kingdom Card Game: Make You Conquest,2005,77,6.01506,5.51664,"20192, 159970" +15537,209538,Alexandria,2017,301,5.64412,5.51663, +15538,4979,Blood Berets,1993,146,5.77945,5.51663, +15539,5743,Win Place Show,1978,38,6.52632,5.51663, +15540,87926,Yago Pool,2008,39,6.50026,5.51663, +15541,182960,Termity,2015,90,5.94244,5.51661, +15542,28522,Finger Ball,2007,65,6.10615,5.51661, +15543,290437,Underground Panic,2019,41,6.45122,5.51661, +15544,129031,Relic Knights: Darkspace Calamity,2014,67,6.08806,5.51660,"129031, 222732" +15545,312619,Words of a Feather,2024,35,6.61051,5.51660, +15546,11124,Operation Sea Lion,1997,50,6.28200,5.51659, +15547,313956,The Pet Cemetery,2020,38,6.52368,5.51659, +15548,6460,The Testimony of Jacob Hollow,2003,249,5.67022,5.51658, +15549,1680,Elements,1997,88,5.95114,5.51658, +15550,217378,BABEL,2016,35,6.60857,5.51657, +15551,183344,Ugah Ugah!,2015,58,6.17547,5.51657, +15552,244460,Invisible,2018,48,6.31250,5.51656, +15553,6698,Shadowrun Duels,2003,157,5.75987,5.51656, +15554,5881,Tet Offensive,1991,70,6.06214,5.51656, +15555,320562,Drakkar Tum Tum,2020,46,6.34674,5.51655, +15556,208736,Lawless Empire,2016,37,6.54865,5.51655, +15557,265298,Aquanauts,2023,58,6.17483,5.51655, +15558,17269,The Battle of the Alma,1994,33,6.67273,5.51654, +15559,11131,Hell Before Night: The Battle of Shiloh,1997,53,6.23585,5.51653, +15560,9133,When Dragons Fight,2001,42,6.42381,5.51652, +15561,302207,Black Stories: Epic Fails Edition,2020,36,6.57500,5.51652, +15562,12169,Henry V,1993,47,6.32660,5.51651, +15563,23920,Border Reivers,2006,44,6.38182,5.51651, +15564,227150,Zone Runners,2017,35,6.60429,5.51650, +15565,19772,Abtei der wandernden Bücher,1993,91,5.93462,5.51649,"19772, 100758" +15566,189902,Space Pioneers,2016,40,6.46750,5.51649, +15567,164670,Mr House,2014,107,5.87196,5.51649, +15568,132188,Spin Monkeys,2012,193,5.71354,5.51649, +15569,148280,8-Bit Mafia/Werewolf,2014,41,6.44390,5.51648,"148280, 211853" +15570,358666,Judge Domino,2021,84,5.96905,5.51648, +15571,871,Fire,1996,81,5.98580,5.51648, +15572,173253,Black Stories: Dark Tales Edition,2015,101,5.89282,5.51648, +15573,157995,Noueni,2013,45,6.36111,5.51648, +15574,7921,Round-Up,1991,43,6.40000,5.51647, +15575,34652,Crisis 2020,2007,68,6.07500,5.51646,"6153, 34652" +15576,197935,Parsec: Age of Colonies,2016,37,6.54216,5.51645, +15577,225991,Tiny Polka Dot,2016,34,6.63235,5.51645, +15577,286175,Wagram 1809: Napoleon's Last Triumph,2019,34,6.63235,5.51645, +15579,82577,i9n,2010,59,6.15932,5.51644, +15580,203958,This That & Everything,2016,35,6.60000,5.51644,"203958, 243356, 284290, 315189, 326572, 329350, 336057" +15581,182556,Shinobi,2015,131,5.80583,5.51643, +15582,341136,What's That Sound?,2021,73,6.03562,5.51643, +15583,243698,Djinn,2018,54,6.21759,5.51641, +15583,205667,Les Misérables: Eve of Rebellion,2016,54,6.21759,5.51641, +15585,136712,"Linus, der kleine Magier",2013,51,6.25882,5.51641,"136712, 299947" +15586,8279,Death Angel,1998,40,6.46250,5.51641, +15587,362844,敗者の権利 (Losers' Rights),2022,34,6.62941,5.51640, +15588,32245,Fortuna,1984,126,5.81667,5.51640, +15589,11126,Moscow 1941: The Enemy at the Gates,1987,64,6.10734,5.51640, +15590,299251,Skyline Express Roll & Write,2020,42,6.41667,5.51639, +15591,413034,Treetopia,2024,36,6.56667,5.51639, +15592,151801,Oddly Obvious!,2013,46,6.33810,5.51639, +15593,145274,Quest: Awakening of Melior,2017,44,6.37500,5.51638, +15594,6921,Bloodtree Rebellion: Guerilla Warfare on the Planet Somber,1979,75,6.02000,5.51637, +15595,365840,Festival,2022,63,6.11587,5.51637, +15596,9398,War Games Rules 3000 BC to 1485 AD,1980,51,6.25686,5.51637,"9398, 230816, 230818, 230900" +15597,4518,Sauerbaum,1986,82,5.97683,5.51637, +15598,323290,The Initials Game,2020,33,6.66030,5.51636, +15599,95745,Petróleo S.A.,2010,40,6.46000,5.51636, +15600,230063,Love Formula,2018,65,6.09692,5.51636, +15601,319307,Truth or Drink: The Card Game,2019,49,6.28571,5.51634,"319307, 349085, 352734, 357582" +15602,169320,Robots Love Ice Cream: The Card Game,2017,34,6.62500,5.51634, +15602,37307,Fladderadatsch,2008,34,6.62500,5.51634, +15604,1346,Crazy Race,2001,151,5.76589,5.51634, +15605,350718,Float: From the Deep,2022,32,6.69375,5.51633, +15606,346630,Gay Sauna: The Board Game,2023,98,5.90077,5.51633, +15607,36412,Goblin Slayer,2008,57,6.17719,5.51633, +15608,277323,Pavlov's Dogs,2020,42,6.41286,5.51632, +15609,118627,Kalifiko,2012,58,6.16552,5.51632, +15610,220597,INTERACTION: No more boredom!,2017,52,6.24038,5.51632, +15611,354219,Sensō: Battle For Japan,2022,46,6.33478,5.51632, +15612,337393,Three Wise Words,2021,40,6.45750,5.51632, +15613,176502,Awesome Kingdom: The Tower of Hateskull,2015,206,5.69903,5.51632,"176502, 194534" +15614,112840,Mine Shift,2011,127,5.81236,5.51630, +15615,5860,Descent on Crete: May 1941,1978,68,6.06912,5.51630, +15616,4273,Temple of the Beastmen,1989,87,5.94828,5.51629, +15617,31274,Budowa zamku,2000,243,5.67094,5.51629, +15618,140244,Chains to Champions,2013,32,6.69031,5.51629, +15619,192500,Brynk,2016,52,6.23846,5.51628, +15620,253568,Kings' Struggle,2018,111,5.85450,5.51628, +15621,25168,Magellan,1966,66,6.08485,5.51627, +15622,3155,Lumberjack,2002,165,5.74364,5.51626, +15623,21052,Tactica: Medieval Rulebook,1992,31,6.72581,5.51625,"12034, 21052" +15624,10171,RisiKo! Master,2002,93,5.91935,5.51625, +15625,125436,Word Winder,2012,63,6.11111,5.51625, +15626,68606,12 Realms,2010,664,5.57268,5.51624, +15627,288454,Gridcannon,2019,33,6.65152,5.51624, +15628,257081,My Hero Academia: The Card Game,2018,80,5.98438,5.51624,"257081, 329779" +15629,359171,Cosmic Race,2022,37,6.52838,5.51623, +15630,34009,Loopit,2007,71,6.04296,5.51621, +15631,4295,"Murfreesboro: A Game of the Battle of Stones River December 31, 1862",1979,38,6.50000,5.51621, +15632,236184,The Reaper,2017,32,6.68438,5.51620, +15633,256214,Trivial Pursuit: Friends,2018,153,5.76046,5.51620, +15634,24042,La Caída del Imperio Romano,1985,45,6.34667,5.51620, +15635,365473,Nacho Stack!,2022,32,6.68396,5.51620, +15636,367619,Wheels vs Doors,2022,89,5.93596,5.51620, +15637,20708,Alamein: History's Turning Point 1942,2006,40,6.45000,5.51619, +15638,266259,Caffeine Hit,2018,65,6.09077,5.51619, +15639,31887,AmuseAmaze,2007,124,5.81734,5.51619, +15640,201028,Farmers Finances,2016,47,6.31064,5.51619, +15641,28444,Chaotic,2007,83,5.96566,5.51617, +15642,242548,Bitte nicht füttern!,2018,32,6.68125,5.51616, +15643,39527,Block Buster,2008,46,6.32609,5.51615, +15644,58003,Kenta,2009,41,6.42439,5.51614, +15645,284862,Beasty Borders,2019,55,6.19273,5.51613, +15646,406323,Snack Rabbits,2024,39,6.47026,5.51613, +15647,105280,Können Schweine fliegen? Mitbring-Spiel,2007,49,6.27551,5.51613, +15648,20204,Drunter und Drüber,1973,43,6.38140,5.51613, +15649,63682,Yengo,2009,32,6.67812,5.51612,"63682, 261492" +15650,269175,Wooly Whammoth,2019,76,6.00526,5.51612, +15651,378256,Tell Me More,2023,33,6.64242,5.51611, +15652,8848,Star Cruiser,1987,52,6.23077,5.51611, +15653,73240,Aachen: First to Fall,2010,59,6.14576,5.51610, +15654,369127,The Grand Kiwiz,2022,47,6.30638,5.51610, +15655,25992,War of the Triple Alliance: Paraguay – 1865-1870,2007,66,6.07879,5.51610, +15656,7491,Princess,1986,94,5.91117,5.51610, +15657,2098,Heresy,1995,113,5.84469,5.51610, +15658,158818,Politiko (2nd Ed),2013,37,6.51892,5.51609,"158818, 371168" +15659,119109,"Go Goblin, Go!",2012,134,5.79276,5.51607, +15660,1993,Troke,1956,65,6.08615,5.51606, +15661,179600,Fantasy Fantasy Baseball,2017,81,5.97346,5.51606, +15662,159865,Tark Mees Taskus,2014,106,5.86557,5.51606,"159865, 177378, 179457, 205475, 232001, 256510, 261159" +15663,177868,Game Election,2015,48,6.28750,5.51605, +15664,279268,DAZZLING DICELINE,2019,34,6.60500,5.51605, +15665,3358,Affenraffen,2002,92,5.91848,5.51605, +15666,224920,Prince's Gambit,2018,31,6.70968,5.51604, +15666,388361,PEAS,2023,31,6.70968,5.51604, +15666,382774,Nilo,2023,31,6.70968,5.51604, +15669,287463,Lex Saxonum,2019,38,6.48947,5.51604,"165652, 287463" +15670,351868,The Icarus Club,2021,32,6.67188,5.51603, +15671,52040,"Storm Over Kunlun Pass, 1939",2010,33,6.63636,5.51603, +15672,21987,Doktor Schlüsselbart,2006,66,6.07576,5.51601, +15673,25448,Khan Tsin,2006,38,6.48816,5.51601, +15674,4675,"Knights of Justice: The Siege of Malta, 1565",1986,79,5.98354,5.51601, +15675,342232,UNO: Mario Kart,2020,42,6.39524,5.51601, +15675,300125,Upkeep,2020,42,6.39524,5.51601, +15677,323385,Hoy se sale,2020,36,6.54167,5.51601, +15678,158163,Invazions,2014,38,6.48684,5.51599, +15678,3827,Creature Castle,1975,38,6.48684,5.51599, +15678,21269,Finger Football,2005,38,6.48684,5.51599, +15681,276100,So ein Mist,2019,42,6.39405,5.51599, +15682,14196,Ocean Trader,1988,39,6.46154,5.51599, +15682,174218,You're Fired!,2016,39,6.46154,5.51599, +15684,179,Nuba,1995,63,6.10127,5.51598, +15685,192235,Difference Junior,2016,309,5.63531,5.51598,"54395, 192235" +15686,7040,Asia Crossroads: The Great Game,2003,53,6.21132,5.51598, +15687,27227,Contrario 2,2006,47,6.30000,5.51597, +15688,202516,Blank Marry Kill,2017,59,6.14045,5.51597, +15689,314935,Crypt of Chaos,2020,35,6.56857,5.51597, +15690,1733,Iago,1984,37,6.51081,5.51596,"1733, 12516" +15691,141087,Agora,2013,192,5.70755,5.51595, +15692,408658,Booty Dice,2023,30,6.74200,5.51594, +15693,143841,Saalfeld: Prelude to Jena – 10 October 1806,2013,49,6.26633,5.51594, +15694,166532,Cubo,2014,324,5.62940,5.51594, +15695,338920,Hamsters vs. Hippos,2021,47,6.29787,5.51593, +15696,38466,Reflection,2008,79,5.98103,5.51593, +15697,8516,Boer War: The Struggle for South Africa – 1899-1902,2001,35,6.56571,5.51593, +15698,173408,Legends of Empires,2016,61,6.11803,5.51592, +15699,139842,Quinto Império,2013,48,6.28104,5.51592, +15700,300017,Rabbit Rummage,2020,37,6.50811,5.51591, +15700,147852,Mission: Combat!,2013,37,6.50811,5.51591, +15702,194088,Fast Flip,2016,147,5.76564,5.51591,"194088, 307823" +15703,1167,Flower Power,1998,53,6.20849,5.51591, +15704,22464,Margin for Error,2006,50,6.25000,5.51591, +15705,11085,Packen Wir's!,1992,51,6.23529,5.51590, +15706,5167,Rubik's Illusion,1989,77,5.99227,5.51590, +15707,351537,Hero Hockey,2021,33,6.62727,5.51590, +15708,24820,High Voltage,2006,65,6.07938,5.51588, +15709,175328,Cast & Capture,2015,30,6.73667,5.51588, +15710,2989,Instinct,1998,143,5.77175,5.51586, +15711,25924,Trivial Pursuit: Genus Edicion II (Spain),1999,90,5.92233,5.51586, +15712,55492,MegaCorps,2009,273,5.64982,5.51585, +15713,271017,Nerd Words: Science!,2019,31,6.69548,5.51585, +15714,100015,Zoom Zoom Ka-Boom!!,2011,37,6.50405,5.51585, +15715,4593,Blooming Gardens,2002,94,5.90479,5.51585, +15716,121043,Pass-Ackwords,2012,50,6.24700,5.51585, +15717,22405,"They Died With Their Boots On, Volume 2: Mad Anthony & Pershing",2007,35,6.55943,5.51583, +15718,195214,Monster Lab Card Game,2017,37,6.50297,5.51583, +15719,169574,Zombie Run!,2014,69,6.04510,5.51583, +15720,408545,Fairy,2024,93,5.90849,5.51583,"390659, 408545" +15721,205542,Dark Castle,2016,52,6.21801,5.51583, +15722,302135,Butine!,2020,31,6.69355,5.51583, +15723,10403,Ascension,1982,32,6.65625,5.51582, +15723,63671,Gangsta,2010,32,6.65625,5.51582, +15723,140593,War by Television: Kosovo 1999,2014,32,6.65625,5.51582, +15726,327725,Everest 1924,2020,46,6.30870,5.51581, +15726,8159,Regista,2002,46,6.30870,5.51581, +15728,220721,Star Plus,2017,50,6.24500,5.51581, +15729,15163,Disney Magic Kingdom Game,2004,177,5.72177,5.51580, +15730,146765,Granny Wars: A Game of Tit for Tat,2013,57,6.15526,5.51580, +15731,32187,Chaos in the Kids' Room,2006,59,6.13356,5.51580, +15732,191879,Rival Kings,2016,92,5.91196,5.51580, +15733,274635,Dual Clash Poker,2019,58,6.14397,5.51579, +15734,324461,Murder Mystery Party Case Files: Underwood Cellars,2020,57,6.15439,5.51578, +15735,348502,Space Race,2021,38,6.47368,5.51578, +15736,86025,Captain Jack's Gold,2010,71,6.02817,5.51577, +15737,5350,Hegemon,2002,34,6.58529,5.51576, +15738,35163,Swashbuckled!,2008,59,6.13169,5.51575, +15739,32969,Innsmouth Escape,2008,249,5.66169,5.51575, +15740,378922,Till the Last Gasp,2023,39,6.44744,5.51575, +15741,155484,Cheesonomics,2014,65,6.07462,5.51575, +15742,819,Quacksalbe,1998,43,6.36047,5.51575, +15743,19127,Chinese Poker,,69,6.04203,5.51574, +15744,9121,Indochina War,2001,31,6.68710,5.51574, +15745,164619,Idiom Addict,2013,39,6.44641,5.51573, +15746,1277,Fish & Chips,1978,33,6.61515,5.51573, +15747,82397,Genesis,2010,309,5.63314,5.51573, +15748,64430,Niche,2009,40,6.42250,5.51572, +15749,118325,RoboTroc,2012,72,6.01944,5.51572, +15750,237130,The Witches of Cernégula,2017,34,6.58235,5.51572, +15751,783,Letter Head,2000,84,5.94729,5.51572, +15752,144961,Vimy Ridge: Arras Diversion,2013,36,6.52222,5.51571, +15753,313104,Antematter,2022,69,6.04077,5.51571, +15754,181615,Nitro Glyxerol,2015,113,5.83628,5.51570, +15755,305407,Waffle Hassle,2020,31,6.68387,5.51570, +15756,19630,Bone Wars: The Game of Ruthless Paleontology,2005,79,5.97405,5.51570, +15757,6130,Wohrom: Swords and Magic Against Evil Forces,1981,33,6.61242,5.51569, +15758,4740,"Run Silent, Run Deep",1993,39,6.44359,5.51569, +15759,6268,Maze,1982,33,6.61212,5.51569, +15760,1004,Der Feuersalamander,1987,109,5.84725,5.51567, +15761,168728,The Hen Commandments,2015,100,5.87700,5.51566, +15762,8426,Man to Man,1985,45,6.31778,5.51565, +15763,233673,Exploration,2020,93,5.90376,5.51565, +15764,159573,Taxi Wildlife,2014,62,6.09726,5.51563, +15765,122867,Four Taverns,2012,139,5.77494,5.51563, +15766,322448,Bremen,2016,39,6.43974,5.51562, +15767,8043,Gear Krieg Wargame,2000,31,6.67742,5.51561, +15768,1953,Mystic War,1992,124,5.80605,5.51561, +15769,214849,Build or BOOM,2016,51,6.22157,5.51561, +15770,315625,The Science and Seance Society,2020,35,6.54429,5.51561, +15771,180910,Chronicler,2015,96,5.89062,5.51561, +15772,9345,Drops & Co.,2004,53,6.19453,5.51560, +15773,168446,Doggy GO!,2014,174,5.72239,5.51560,"168446, 214903" +15774,127093,Stormy Seas,,50,6.23500,5.51559,"21055, 127093" +15775,254646,The Curse of Misfortune Lane,2018,35,6.54286,5.51559, +15776,11689,Noble Armada,1998,37,6.48649,5.51557,"11689, 93650, 230036" +15777,3643,Spellmaker,1978,63,6.08571,5.51557, +15778,787,Palermo,1992,83,5.94819,5.51557, +15779,290734,Eiswürfeln,2019,58,6.13464,5.51557, +15780,276500,Idus Martii,2019,35,6.54143,5.51557, +15781,323910,Monopoly Arcade: Pac-Man,2020,40,6.41300,5.51556, +15782,217268,Wyścig Odkrywców,2017,40,6.41250,5.51555, +15783,38949,Córdoba,2008,196,5.69857,5.51555,"38949, 424515" +15784,239523,Misantropia Express,2017,47,6.27872,5.51555, +15785,20828,Decipher,1972,44,6.33045,5.51554, +15786,310476,Bots Up,2021,43,6.34907,5.51554, +15787,1076,Captain Future,1980,49,6.24694,5.51554, +15788,283363,What Came First?,2019,93,5.90086,5.51553, +15789,223892,Jeopardy! Card Game,2017,54,6.17870,5.51552, +15790,181390,Buttons,2015,443,5.59636,5.51552, +15791,380452,Inside the Box,2023,32,6.63438,5.51552, +15792,209836,Wild West Shepherds,2016,33,6.60000,5.51551, +15793,94476,New World Colony,2011,47,6.27660,5.51551, +15794,260444,Achievement Hunter HEIST,2018,35,6.53714,5.51550, +15795,63014,Mapominoes: Asia & Australasia,2008,299,5.63505,5.51550,"33024, 63014, 63015, 113067, 117815" +15796,159041,Vikings on the Volga,2014,36,6.50833,5.51549, +15797,51590,Destination: Normandy,2009,33,6.59848,5.51549, +15798,31558,"First Blood: Second Marne, 15 July 1918",2008,63,6.08270,5.51549, +15799,2001,Trivial Pursuit: Family Edition,1993,1021,5.55049,5.51549,"2001, 159064, 425855" +15800,168654,Stier zoekt Bier,2014,99,5.87616,5.51548, +15801,11888,Bataille de la Marne 1914,1982,53,6.18868,5.51547, +15802,336291,Hollywood Racers,2022,34,6.56471,5.51546, +15802,336792,UNDO: Long Live the King,2021,34,6.56471,5.51546, +15804,35054,Meepile,2008,60,6.11000,5.51546, +15805,94633,Conquest Tactics,2011,40,6.40725,5.51546, +15806,144957,Battle of the Scheldt: The Devil's Moat,2013,41,6.38537,5.51546, +15807,35763,Climb!,2008,181,5.71232,5.51545, +15808,428058,Up or Down?,2024,40,6.40625,5.51545, +15809,239841,L'été des Boxers,2017,37,6.47838,5.51545, +15810,27751,Organic Soup,2010,50,6.22800,5.51544, +15811,164829,Flea Marketeers,2014,47,6.27340,5.51544, +15812,382800,Mycology,2024,42,6.36302,5.51543, +15813,1077,Baubylon,1981,39,6.42821,5.51543, +15814,136029,Le Tricheur,2012,87,5.92452,5.51543, +15815,416952,ONDA,2024,47,6.27234,5.51542, +15816,351149,Rainbow 7,2022,38,6.45132,5.51542, +15817,73245,Arnhem: The Farthest Bridge,2010,77,5.97727,5.51542, +15818,331273,Earth Rising: 20 Years to Transform Our World,2022,50,6.22600,5.51540, +15819,9389,Wargames Rules 1685-1845,1971,31,6.66129,5.51540, +15820,5902,Man-Eater!,1976,44,6.32250,5.51539, +15821,2145,Domination,1986,32,6.62500,5.51539, +15821,393974,Void Halls,2023,32,6.62500,5.51539, +15823,368224,"Ave, Leo!",2022,33,6.59091,5.51539,"368224, 400631" +15824,375448,Crazy Pilot,2023,50,6.22456,5.51537, +15825,164201,Okoshki,2014,45,6.30333,5.51537, +15826,41844,African Park,2009,91,5.90495,5.51537, +15827,200825,Glyph,2018,49,6.23878,5.51537, +15828,1307,Haunted Castle,1999,159,5.73818,5.51536, +15829,337636,Autonomía Zapatista,2021,31,6.65806,5.51536, +15830,10508,Leinen los!,1997,77,5.97532,5.51535, +15831,166183,Palaces,2018,61,6.09590,5.51535, +15832,346937,Dragon Inferno,2021,35,6.52714,5.51535, +15833,26117,Rechen-Kapitän,2006,32,6.62188,5.51535,"26117, 352130" +15834,8471,Trenchfoot,1981,101,5.86584,5.51535, +15835,14585,Scene It? Turner Classic Movies,2004,85,5.93176,5.51534, +15836,197433,Miskatonic School for Boys,2016,59,6.11525,5.51534, +15837,3159,Zahltag,2002,134,5.77948,5.51534, +15838,333021,Piratz,2021,41,6.37821,5.51534, +15839,16632,GOPS,,90,5.90833,5.51533, +15840,168226,Black Stories: Funny Death Edition 2,2014,47,6.26745,5.51532, +15841,304155,Tipping Point,2020,36,6.49722,5.51532, +15842,112462,Schlock Mercenary: Capital Offensive,2012,92,5.89946,5.51532, +15843,202692,The Game,1987,30,6.69333,5.51532, +15844,172035,Thumbs Up!,2015,135,5.77704,5.51532, +15845,362457,Ferret Out,2023,51,6.20771,5.51531, +15846,167463,Kuhlorado,2014,68,6.03456,5.51531, +15847,198060,Lex in Lemniscate,2016,54,6.16913,5.51531, +15848,37099,Bharg,2008,65,6.05846,5.51530, +15849,2709,The Beastlord,1979,112,5.83036,5.51530, +15850,202896,Package!?,2017,73,5.99863,5.51530, +15851,237388,Horticulture Master,2018,57,6.13421,5.51529, +15852,11534,Risorgimento: Italy's Wars of Liberation 1848-1866,1997,42,6.35476,5.51528, +15853,177076,ゴリティア (Goritaire),2014,32,6.61697,5.51528, +15854,233805,Mars Ravelo's Darna at ang Nawawalang Bato,2017,36,6.49444,5.51528, +15855,145586,sQuizz,2013,56,6.14464,5.51528, +15856,191364,Twilight Squabble,2016,341,5.61862,5.51528, +15857,4957,Timberland,1989,44,6.31591,5.51527, +15858,251534,Bariesus,2014,31,6.65161,5.51527, +15859,25665,Red Russia,2008,54,6.16759,5.51527, +15860,40609,Az Ezüst-tó kincse,1986,78,5.96667,5.51526, +15861,194593,Painter Detective,2015,33,6.58182,5.51526, +15862,342410,Aquarena,2021,44,6.31480,5.51525, +15863,8364,Assault on Leningrad,1980,42,6.35238,5.51524, +15864,4455,"The Great Invasion: The Gettysburg Campaign June 24 – July 3, 1863",1985,36,6.49167,5.51524, +15865,291236,Bad Brood,2019,269,5.64590,5.51524,"291236, 429771" +15866,83378,King Maker,,35,6.51943,5.51524, +15867,2756,Alien Contact: Extraterrestrial Empires in Conflict,1983,50,6.21800,5.51523, +15868,227070,Scrooge: The Board Game,2017,31,6.64839,5.51523, +15869,5096,Sly,1975,42,6.35143,5.51522, +15870,16727,Play on Wordz,1984,96,5.88084,5.51522, +15871,364571,Ocean Pods,2023,54,6.16483,5.51521, +15872,153388,Faulpelz,2014,87,5.91839,5.51521, +15873,130734,Central Market,2012,92,5.89630,5.51520, +15874,29639,Mein erstes Mitmach-Spiel,2006,30,6.68333,5.51519, +15874,278204,Card Game: The Card Game,2020,30,6.68333,5.51519, +15874,148450,Endless Nightmare,2013,30,6.68333,5.51519, +15877,3928,Beyond Competition,1977,31,6.64516,5.51519, +15878,179304,Fisticuffs!,2015,45,6.29333,5.51518, +15879,65243,Invasion Pearl Harbor,2010,33,6.57576,5.51517, +15880,235293,Apocalypse Z: The Board Game,2017,40,6.38967,5.51516, +15881,209275,Night-Night Kisses,,34,6.54392,5.51516, +15882,34692,Dino Detektive,2008,48,6.24375,5.51516, +15883,9496,Burma,1976,35,6.51429,5.51516, +15883,10753,Ações Exame,1988,35,6.51429,5.51516,"10753, 228296" +15885,267301,Liqueur the Game,2018,32,6.60781,5.51516, +15886,879,Tacara,2000,39,6.41154,5.51515, +15887,147616,Virgin Seas,2016,45,6.29200,5.51515, +15888,99286,Raiding Parties: Golden Age of Piracy,2012,49,6.22857,5.51515, +15889,232874,Die rote Kralle,2018,83,5.93619,5.51515, +15890,152761,Aztack,2014,114,5.82143,5.51514, +15891,7097,Go: The International Travel Game,1961,164,5.72803,5.51514, +15892,8965,1 Stein + Co.,2003,86,5.92093,5.51513, +15893,344273,The Muddles,2020,40,6.38750,5.51513, +15894,13017,Animal Olympics,1989,74,5.98649,5.51512, +15895,341546,Amelia's Secret,2021,143,5.75874,5.51510, +15896,3527,Iliad: The Most Renowned War Legend,1979,77,5.96753,5.51510, +15897,286848,Lab Rats,2019,44,6.30682,5.51510, +15898,223149,Village of Horror,2017,32,6.60313,5.51509, +15899,8331,Revolt in the East: Warsaw Pact Rebellion in the 1970's,1976,145,5.75517,5.51509, +15900,36554,Enuk,2008,147,5.75190,5.51509, +15901,374209,Five Nights at Freddy's: Night of Frights! Game,2022,39,6.40769,5.51509, +15902,24186,Treasure Fleet,2006,66,6.04242,5.51509, +15903,21730,Delta,1975,33,6.56970,5.51509, +15904,165464,Warships,1981,33,6.56939,5.51508, +15905,124954,Color Addict,2009,321,5.62346,5.51508,"124954, 268767, 331793, 331794, 360962" +15906,240167,Hintegers,2018,32,6.60156,5.51507, +15907,346446,Riiing!,2021,31,6.63645,5.51507, +15908,5224,Vitoria 1813,1997,39,6.40641,5.51507, +15909,158967,Kaleido,2013,56,6.13571,5.51507, +15910,6129,Jena,1981,51,6.19627,5.51506, +15911,218318,Gangs of Commorragh,2017,34,6.53676,5.51506, +15912,350714,The Last Stronghold,2022,32,6.60000,5.51505, +15913,376555,Featherweight Fiesta,2023,49,6.22347,5.51505, +15914,237553,30 to Mars,2017,33,6.56667,5.51504, +15915,290131,Cleocatra,2020,66,6.04076,5.51504, +15916,403257,Apropos: Of Movies,2023,34,6.53527,5.51504,"403257, 434872" +15917,2725,Star Wars: Escape From The Death Star,1990,168,5.72151,5.51504, +15918,143085,7 Dice Wonders,2013,55,6.14473,5.51501, +15919,161528,The Great Debate,2015,35,6.50429,5.51501,"161528, 226054" +15920,12870,Film Frenzy,2003,36,6.47639,5.51500, +15921,530,Entenrallye,1988,86,5.91744,5.51500, +15922,11456,Zilch,1972,102,5.85412,5.51500, +15923,141337,Gold Nuggets,2013,96,5.87526,5.51499, +15924,1348,Web of Gold,1987,186,5.70091,5.51499, +15925,148581,District-Z,2014,116,5.81293,5.51498, +15926,18083,Anno Domini: Münzen,2002,50,6.20600,5.51498, +15927,232224,Gutterhead,2017,43,6.31814,5.51497, +15928,61470,Phase 10 Master,2008,723,5.56274,5.51497, +15929,224123,Animania,2017,32,6.59375,5.51497, +15930,2609,Das Störrische Muli,1999,66,6.03788,5.51496,"2609, 5907, 367558" +15931,363970,Ahotnik,2025,33,6.56061,5.51496, +15932,3500,Schmuggler an Bord,1992,64,6.05391,5.51495, +15933,246740,Meteors,2018,34,6.52941,5.51495, +15933,26424,1870,1978,34,6.52941,5.51495, +15935,192722,"Cow, Tiger, Santa Claus",2016,38,6.42211,5.51494, +15936,288648,Canosa,2020,138,5.76469,5.51494, +15937,287033,Gray Eminence,2020,41,6.35488,5.51493, +15938,146728,Badass Zombie Killers,2013,38,6.42105,5.51493, +15939,203884,CINECITTA 1937,2015,39,6.39744,5.51492, +15940,400209,Castles of Aragon,2023,33,6.55758,5.51492,"396739, 400209, 401240, 402196, 405269, 406143, 411051, 414856, 424220, 424222, 424232, 424339, 424352, 426231" +15941,300091,Villageo,2020,32,6.59000,5.51491, +15942,191081,Schnapp den Sack,2016,89,5.90138,5.51491, +15943,5193,The Fury of the Norsemen,1980,81,5.93951,5.51491, +15944,519,Mush,1994,118,5.80636,5.51491, +15945,314350,Fearsome Wilderness,2020,41,6.35366,5.51491, +15946,164202,Divorce! The Game,2015,45,6.27889,5.51490, +15947,311308,ESCAPE Dysturbia: Gefahr in den Docks,2020,42,6.33333,5.51490, +15948,169855,Fujian Trader,2016,33,6.55606,5.51489, +15949,386490,Uncharted Stars,2023,37,6.44324,5.51489, +15950,4570,Wordsters,1991,71,5.99859,5.51489, +15951,40964,Unikato,2009,72,5.99167,5.51488, +15952,165417,Puerto Diablo,2015,52,6.17500,5.51488, +15953,218632,Grumpf,2017,131,5.77687,5.51488, +15954,169465,Shinobi: El Juego del Asesino,,46,6.26087,5.51488, +15955,155836,Hollywood Game Night Party Game,2014,73,5.98493,5.51488, +15956,180,Pool Position,1999,141,5.75816,5.51487, +15957,8382,Light Division,1989,47,6.24468,5.51487, +15958,163963,League of Hackers,2014,48,6.22917,5.51486, +15959,13378,Mukden: Climax of the Russo-Japanese War,1996,61,6.07675,5.51486, +15960,3543,Spider-Man,2002,59,6.09576,5.51486, +15961,93997,1000 and One Treasures,2010,57,6.11579,5.51485, +15962,117582,"Tobruk, Operation Crusader, Nov-Dec 1941",2013,31,6.61935,5.51484, +15963,249047,The Abandons,2019,139,5.76101,5.51483,"195509, 249047" +15964,398331,Pond,2024,91,5.89077,5.51483, +15965,30164,Mechwarrior Solaris VII,2007,40,6.37000,5.51483, +15966,73233,Golan: The Last Syrian Offensive,2010,47,6.24255,5.51483, +15967,278267,Draconium,2019,32,6.58312,5.51482, +15968,11116,Yarmuk,1997,49,6.21224,5.51481, +15969,180570,Undercover,2016,84,5.92143,5.51481, +15970,5380,Lancelot,1985,78,5.95256,5.51480, +15971,22202,Bowl-O-Rama,2002,31,6.61613,5.51480, +15972,30286,Territories,2007,48,6.22604,5.51480, +15973,362150,Blasting Billy,2022,39,6.38974,5.51479, +15974,26080,Im Bann der Pyramide,2006,134,5.76940,5.51479, +15975,165884,The Festivals,2017,33,6.54848,5.51479, +15976,12062,Pro Draft,1974,55,6.13455,5.51478, +15977,141980,Alarm!,2013,90,5.89344,5.51477, +15978,85123,Joan of Arc's Victory 1429 AD,2012,49,6.21020,5.51477, +15979,22427,Miscellaneous Game Book,,45,6.27178,5.51477, +15980,92015,11,2011,30,6.65000,5.51476, +15981,10718,The Garden Game,1980,64,6.04688,5.51476, +15982,277061,Dino Duel,2019,44,6.28864,5.51476, +15983,9211,Screwball Scramble,1979,393,5.60129,5.51474, +15984,46957,Square Shooters,2010,217,5.67143,5.51474, +15985,171126,Clue: Supernatural,2014,68,6.01471,5.51474, +15986,193029,Tiffin,2016,114,5.81294,5.51474, +15987,3535,Nightmare House,1983,69,6.00725,5.51473, +15988,172558,Crashland,2015,36,6.45833,5.51473, +15989,163687,The Seeker in the Forest of Wyr,2014,39,6.38564,5.51472, +15990,179930,Avalanche at Yeti Mountain,2016,201,5.68368,5.51472, +15991,302267,Hi Lo Flip,2020,72,5.98620,5.51472, +15992,129326,Lebanon '82: Operation Peace for Galilee,2012,35,6.48371,5.51470, +15993,93402,Kart sur Glace,2011,50,6.19300,5.51470, +15994,2733,Stimmvieh,1998,64,6.04453,5.51470,"2733, 168450" +15995,4434,The Poll Game,2000,47,6.23617,5.51470, +15996,60579,Poo: The Card Game,2009,1945,5.53213,5.51470,"60579, 217177" +15997,286632,Blood of the Northmen,2021,160,5.72654,5.51469, +15998,40006,Herkules Ameise,2008,35,6.48286,5.51469, +15999,356554,Flip Freighters,2022,110,5.82255,5.51468, +16000,257064,Farao,2018,30,6.64333,5.51468, +16001,305872,"Coalition: The Napoleonic Wars, 1805-1815",2021,51,6.17843,5.51467, +16002,92661,O Jogo da Enciclopédia,2000,40,6.36000,5.51466, +16003,231196,Laurel Crown,2017,64,6.04297,5.51466, +16004,140725,Doomworks,2013,30,6.64167,5.51466, +16005,5897,Lie Detector,1960,116,5.80612,5.51466, +16006,1700,Outpost Gamma,1981,68,6.01176,5.51465, +16007,34310,Hannibal's War,2008,48,6.21875,5.51465, +16008,10818,Bailén 1808,1997,31,6.60484,5.51465, +16009,213260,Zoar,2018,56,6.11786,5.51464, +16010,156453,Tutti Frutti,2014,135,5.76471,5.51463,"34734, 156453" +16011,257961,Tales & Games: Lost in the Woods,2018,52,6.16346,5.51463, +16012,42279,Run Wild,2009,66,6.02576,5.51462, +16013,84778,Tricky Safari,2010,50,6.18900,5.51462, +16014,11177,Cardmaster: Adventure Design Deck,1993,54,6.13889,5.51461, +16015,4851,Civil War Game 1863,1961,75,5.96400,5.51461, +16016,4285,Chattanooga,1997,40,6.35625,5.51459, +16017,319968,Monster Busters,2020,37,6.42414,5.51459,"163275, 319968" +16018,80942,Ranking,2010,222,5.66613,5.51458, +16019,4013,"A Bold Stroke: The Soviet Liberation of Kiev, 1943",1996,32,6.56562,5.51458, +16020,226757,Vault Assault,2017,62,6.05669,5.51457, +16021,33958,Rapscallion,2008,75,5.96267,5.51457, +16022,299191,Migration: Mars,2020,133,5.76722,5.51457, +16023,34221,Atoll,2008,150,5.73853,5.51456, +16024,32047,The Circle,2007,162,5.72191,5.51456, +16025,123828,Battleship Movie Edition,2012,74,5.96838,5.51456, +16026,242546,Ungeziffer,2018,37,6.42108,5.51454, +16027,15214,The McDonald's Game,1975,49,6.19898,5.51454, +16028,244531,Flicky Spaceships,2018,33,6.53030,5.51453, +16028,396826,Ninjas Unleashed,2023,33,6.53030,5.51453,"396826, 419866" +16028,12385,Bladestorm,1990,33,6.53030,5.51453,"12385, 211086" +16031,129295,Quartex,2012,99,5.85300,5.51453, +16032,143520,Monster Mansion,2013,105,5.83361,5.51452, +16033,154244,The South Shall Rise Again,2014,48,6.21250,5.51452, +16034,17958,Aargh!,2005,80,5.93329,5.51452, +16035,294529,Entropia: The Game,2019,49,6.19796,5.51452, +16036,4036,Anzio Beachhead,1969,105,5.83333,5.51451, +16037,12776,Dragonchess,1985,38,6.39500,5.51450, +16038,325628,Страдающее средневековье (Medieval Suffering),2020,238,5.65508,5.51450, +16039,67037,Schatz der Kobolde,2010,41,6.33049,5.51450, +16040,10348,Second Front Now!,1997,38,6.39474,5.51450, +16040,41529,Creepers,2009,38,6.39474,5.51450, +16042,187806,TimeBomb II,2015,59,6.08136,5.51450,"187806, 296302" +16043,102145,Defeat Into Victory: The Final Campaigns in Burma,2012,37,6.41819,5.51449, +16044,266842,The Walking Dead: Something to Fear,2019,66,6.02101,5.51449, +16045,11421,Uisge,1983,48,6.21042,5.51448, +16046,136566,BodgerMania,2013,83,5.91687,5.51448, +16047,232097,Big Bazar,2017,35,6.46857,5.51448, +16048,202589,Chromosome,2016,126,5.77937,5.51447, +16049,67368,"Guards Tank: Prochorovka, 1943",2010,33,6.52424,5.51445, +16050,684,Monopoly: The Card Game,2000,684,5.56316,5.51445,"684, 13608" +16051,173184,"RIBBIT: The Jump, Move, and Block Game",2015,33,6.52378,5.51444, +16052,208807,Rainbow Rage,2016,127,5.77646,5.51443, +16053,34113,AiaGaia,2007,61,6.05984,5.51442,"34113, 165651, 196742" +16054,304736,End Of Line,2020,34,6.49235,5.51441, +16055,87876,The Card Game of Oz,2014,73,5.96986,5.51441, +16056,11289,Operation Whirlwind: Budapest – November 1956,2002,32,6.55312,5.51441, +16057,239165,Eastern Front Battle Card Game,2017,36,6.43750,5.51441, +16058,360264,Psychobabble,2022,43,6.28721,5.51441, +16059,510,Eschnapur,2000,220,5.66541,5.51440, +16060,139177,Terrene Odyssey,2015,43,6.28674,5.51440, +16061,11027,Reich: The Iron Dream of German Unification,1979,38,6.38816,5.51439, +16062,260749,Super Secret Stealthy Spies,2018,31,6.58387,5.51437, +16063,33782,Bonanza,1964,45,6.25111,5.51437, +16064,965,Ben Hurt,1996,286,5.63024,5.51437, +16065,200836,Da Yunhe: Der Grosse Kaiserkanal,2016,60,6.06667,5.51437, +16066,6740,Alaric the Goth: Fall of the Western Roman Empire,1980,34,6.48897,5.51436,"6740, 21690" +16067,43041,Black Stories: Movie Edition,2009,181,5.69740,5.51436, +16068,116194,Déclic!? Family,2011,48,6.20417,5.51435, +16069,142158,Plucky Pilots,2013,63,6.03984,5.51435, +16070,338882,It's 5pm,2021,50,6.17620,5.51435, +16071,290557,Trivial Pursuit: Netflix's Stranger Things – Back to The 80s Edition,2019,34,6.48765,5.51435, +16072,125895,Foundation,2012,31,6.58161,5.51434, +16073,6759,Dispatcher,1958,61,6.05656,5.51434, +16074,2041,They're at the Post,1975,30,6.61667,5.51434, +16075,383508,Qubo,2023,31,6.58065,5.51433, +16076,131812,[_BLÄNK],2012,38,6.38421,5.51433, +16077,7995,Quits,1990,85,5.90294,5.51432, +16078,40567,Chinese Dominoes,1120,33,6.51515,5.51432, +16079,2209,Klondike,1975,40,6.34000,5.51432, +16080,75937,Apagos,2010,33,6.51505,5.51432, +16081,14474,The Final Frontier,1997,42,6.30000,5.51431, +16082,26353,Scum,2005,95,5.86158,5.51430, +16083,226358,Altitude,2017,46,6.23043,5.51428, +16084,17836,Warhammer English Civil War,2002,39,6.35897,5.51428, +16085,257725,Bingolino,2018,66,6.01329,5.51428, +16086,149885,Te Kuiti,2015,89,5.88427,5.51428, +16087,86433,Morphology,2009,84,5.90625,5.51427,"86433, 129030" +16088,42352,Morgan's a' Comin'!,2009,78,5.93628,5.51427, +16089,23081,HeroCard Cyberspace,2006,41,6.31707,5.51427, +16090,39124,Huang Dih: O Grande Imperador,2006,34,6.48235,5.51427, +16091,5786,Star Trek: The Enterprise 4 Encounter,1985,66,6.01288,5.51427, +16092,218165,La Macarena,2016,63,6.03651,5.51426, +16093,118326,Vignobles,2017,42,6.29762,5.51426, +16094,267419,Apollo: The Game of Our First Voyages to the Moon,2019,32,6.54229,5.51426, +16095,4554,Phalanx,1964,64,6.02813,5.51426, +16096,254025,Operators,2018,57,6.09123,5.51426, +16097,245385,Papering Duel,2018,51,6.15882,5.51425, +16098,31935,Scrabble Express,2007,163,5.71583,5.51424, +16099,126471,Nowhere to Go,2012,165,5.71333,5.51424,"7811, 126471" +16100,192017,Trivial Pursuit: The Big Bang Theory Edition,2014,74,5.95811,5.51424, +16101,7986,Crazy Rally,2003,46,6.22826,5.51424, +16102,3354,Tide of Fortune,1993,47,6.21277,5.51423, +16103,3916,How to Host a Murder: Roman Ruins,1996,40,6.33500,5.51423, +16104,245611,1918: Death on the Rails,2018,33,6.50909,5.51423, +16105,11466,Peppino the Clown,1999,40,6.33472,5.51423, +16106,14013,In Extremis,2004,35,6.45143,5.51422, +16107,666,Stump,1968,36,6.42500,5.51421, +16108,402220,Disney The Muppet Christmas Carol: Spirit of Giving Game,2023,30,6.60667,5.51421, +16109,2372,Goal!,1960,231,5.65606,5.51421, +16110,6912,Cinch,,52,6.14423,5.51420, +16111,246203,Magic Mandala,2018,110,5.81200,5.51420, +16112,10386,SiegeStones,2004,99,5.84505,5.51420, +16113,365842,Yahtzee: Frenzy – Dice & Card Game,2022,31,6.57075,5.51420, +16114,272325,Sprint!,2019,95,5.85895,5.51420, +16115,285128,Unlock!: Une Aventure – Ralph Azham: Le Foie de l'Axolotl,2019,61,6.05082,5.51419, +16116,147418,Ajo y Agua,2013,61,6.05066,5.51419, +16117,3091,The Great Game of Britain,1973,190,5.68642,5.51419, +16118,175742,Alien Wars,2015,160,5.71858,5.51418, +16119,39545,"Reconquista! The Struggle for Iberia, 850-1250 AD",2013,42,6.29286,5.51418, +16120,4516,Ragnarok: The Twilight of the Gods,1981,131,5.76374,5.51417, +16121,2380,Gridiron Fantasy Football,1995,58,6.07759,5.51417, +16122,1504,Bakschisch,1995,136,5.75441,5.51416, +16123,401741,Venns with Benefits: The Hilarious Venn Diagram Game,2023,33,6.50379,5.51416,"377501, 401741" +16124,376866,Squillo Society: Non si può più dire niente,2022,39,6.35128,5.51415,"376866, 423360" +16125,275711,Holmes' Horror Hotel,2019,32,6.53437,5.51415, +16126,8128,Atta Ants,2003,386,5.59869,5.51415, +16127,64520,Gongor Whist,2008,40,6.33000,5.51415, +16128,330593,Go for Gold,2021,79,5.92722,5.51415, +16129,13388,The Moscow Option: Guderian's Gambit,1996,41,6.30976,5.51414, +16130,69721,Scrabble Trickster,2010,101,5.83683,5.51413, +16131,108711,The Mystery of the Templars,2013,161,5.71652,5.51413, +16132,3077,The Game of Real Life,1998,121,5.78339,5.51412, +16133,246814,Trool Park,2018,102,5.83284,5.51409, +16134,171889,Sawanna,2015,63,6.03016,5.51409, +16135,207987,No Regerts: The Game of Art and Poor Life Choices,2016,42,6.28810,5.51409, +16136,150691,Rok 1863,2013,35,6.44286,5.51409, +16137,260726,Mosquitozzz,2018,36,6.41667,5.51409, +16138,286199,CATtitude!,2020,30,6.59667,5.51408, +16139,34291,Tridom,,67,5.99851,5.51407, +16140,348964,Suspicious,2021,34,6.46853,5.51407, +16141,1019,Le Gang des Traction-Avant,1984,39,6.34615,5.51407, +16142,1054,Pacific Northwest Rails,1998,40,6.32500,5.51406, +16143,120444,Project Pandora: Grim Cargo,2012,48,6.18958,5.51406, +16144,7063,Double Star,1979,53,6.12566,5.51405, +16145,23695,Robot Face Race,1984,124,5.77546,5.51405, +16146,253705,Plucky Penguins,2018,52,6.13739,5.51405, +16147,262370,Spiky Dastards,2018,137,5.75049,5.51404, +16148,88960,Godzilla: Stomp!,2011,191,5.68363,5.51404, +16149,3540,Tic Tac Chec,1995,87,5.88621,5.51404, +16150,781,Tabloid Teasers,1991,84,5.89940,5.51403, +16151,297206,0-100 Vit,2017,45,6.23333,5.51403,"297206, 396073" +16152,381741,REM Racers,2024,47,6.20213,5.51402, +16153,17676,Gundam War,2005,34,6.46471,5.51401,"17676, 144924, 228143, 434146" +16154,337155,Knights of the Round Cheese,2021,35,6.43714,5.51401, +16155,284895,Magic School,2019,36,6.41139,5.51400, +16156,189603,Flower Fairy,2014,39,6.34229,5.51400, +16157,7088,Warangel Card Game,2001,50,6.16000,5.51400, +16158,8385,Starship Duel I,1984,43,6.26512,5.51400,"4679, 8385" +16159,317610,ANLUDIM,2020,55,6.10091,5.51399, +16160,217671,Mag-O-Mag,2017,89,5.87640,5.51398, +16161,274277,Jurassic World Miniature Game,2022,69,5.98116,5.51397, +16162,83199,Mille Grazie,2010,136,5.75096,5.51397, +16163,172559,Targets,2015,159,5.71667,5.51397, +16164,1983,Frontier-6,1980,38,6.36184,5.51397, +16165,401409,Mind Map,2024,49,6.17143,5.51397, +16166,311676,Top of the Pops: The Game,2020,44,6.24545,5.51395, +16167,400239,Sssnake: Flip&Write,2023,30,6.58667,5.51395, +16168,88011,AstroNuts,2012,59,6.05932,5.51395, +16169,187834,Come to Fishing Village!,2015,70,5.97357,5.51395, +16170,13547,Brain Warp,1996,39,6.33846,5.51394, +16171,43802,1940: What If Germany Went East?,2010,40,6.31750,5.51393, +16172,500,MARK,1997,62,6.03226,5.51393, +16173,271762,Oh My Gold!,2019,102,5.82892,5.51393, +16174,14137,Party Animals,2004,161,5.71348,5.51393, +16175,5054,War in the Falklands,1982,77,5.93117,5.51393, +16176,232162,Kitten Casualty,2018,31,6.54839,5.51390, +16177,247009,Bitten,2018,32,6.51562,5.51390, +16177,292643,Count Up,2019,32,6.51562,5.51390, +16179,5669,Salvo!,1992,50,6.15500,5.51390, +16180,30010,Ninja Sen So,2007,36,6.40278,5.51387, +16181,371415,Food Truck,2023,73,5.95205,5.51387, +16182,80908,4 Monkeys,2010,152,5.72430,5.51387, +16183,195623,Politricks: Dirty Card Game,2016,48,6.18021,5.51387, +16184,810,Amoeba,1975,45,6.22444,5.51386, +16185,291232,Majolica Painting,2019,38,6.35526,5.51386, +16186,243757,Gangster City,2018,82,5.90366,5.51386, +16187,8267,Bunker Hill,1995,87,5.88115,5.51385, +16188,5002,Pro Golf,1981,168,5.70393,5.51384, +16189,274206,ESCAPE Dysturbia: Falsches Spiel im Casino,2019,77,5.92857,5.51384,"274206, 311078" +16190,180133,Rubbish Auction,2015,59,6.05508,5.51384, +16191,197632,"Armies of the White Sun: Second Sino-Japanese War, 1937-43",2017,34,6.45294,5.51384, +16192,40801,Docker,2008,136,5.74853,5.51384, +16193,207167,Monopoly: Ultimate Banking,2016,341,5.60743,5.51384, +16194,93493,Perigon,2011,40,6.31125,5.51383, +16195,9350,Das große Fressen,2004,37,6.37568,5.51382, +16196,110570,Black Stories 7,2011,73,5.95059,5.51382, +16197,313166,Rocódromo,2021,30,6.57644,5.51382, +16198,4855,Crazy Race,1994,75,5.93867,5.51381, +16199,280694,Color Field,2024,50,6.15058,5.51380, +16200,23777,Pieces of Eight,2006,143,5.73643,5.51380, +16201,6748,Scum: The Food Chain Game,1996,296,5.62122,5.51379, +16202,2676,Demo Derby: Saturday Night at the Track,1982,51,6.13627,5.51376, +16203,127994,Heroes of Metro City,2013,259,5.63629,5.51376, +16204,201305,Running with the Bulls,2016,211,5.66410,5.51375, +16205,114228,Little Circuit,2010,89,5.87011,5.51375, +16206,14151,Quickword: The Ultimate Word Game,1991,57,6.07018,5.51375, +16207,287692,Kippelino,2019,44,6.23455,5.51375, +16208,6879,Super Rack-O,1983,76,5.93092,5.51374, +16209,16383,Bauwerk,2004,30,6.57000,5.51374, +16210,39787,Bindle Rails,2008,56,6.07946,5.51373, +16211,282,Vikingatid,1997,72,5.95333,5.51372, +16212,298311,Windmill: Cozy Stories,2020,49,6.15959,5.51372,"298311, 366127" +16213,256875,Sonic the Hedgehog: Dice Rush,2019,49,6.15939,5.51372, +16214,3634,Iberos: Overlords of the Ancient Peninsula,2002,49,6.15816,5.51369, +16215,162070,Populi Turolii,2014,40,6.30317,5.51369, +16216,26293,Kreta 1941,1990,93,5.85323,5.51369, +16217,168457,HexAgony,2014,66,5.99167,5.51368, +16218,237501,Klattschen,,63,6.01439,5.51367,"237501, 386504" +16219,36510,The Game of Life Express,2007,51,6.13176,5.51367, +16220,199825,Danger! Danger! Dinosaur,2016,35,6.41429,5.51366, +16221,264011,Operation Master,2018,37,6.36541,5.51366, +16222,37686,Où étiez-vous?,2008,149,5.72517,5.51366, +16223,19540,Simpei,2005,76,5.92829,5.51366, +16224,104285,Bluff,1963,36,6.38889,5.51366, +16225,388459,Apropos: Of Board Games,2023,33,6.46818,5.51366,"388459, 434871" +16226,10780,The Powerpuff Girls: Mojo Jojo Attacks Townsville Game,2000,44,6.22955,5.51365, +16227,307379,Trike,2020,130,5.75577,5.51365, +16228,18788,Take Your Daughter to the Slaughter,1998,92,5.85576,5.51364, +16229,1007,Die Hanse,1993,176,5.69233,5.51363, +16230,415078,Brink,2025,33,6.46667,5.51363, +16231,163478,Lunte,2014,114,5.78947,5.51363, +16232,35548,Jumbulaya,2007,56,6.07500,5.51363, +16233,3075,Hamlet!,2002,64,6.00469,5.51362, +16234,205776,Gentleman's Deal,2016,79,5.91139,5.51362, +16234,355132,Doctor Who: Don't Blink,2022,79,5.91139,5.51362, +16236,315584,Reign,2020,94,5.84787,5.51362, +16237,10533,Central Command: Superpower Confrontation in the Straits of Hormuz,1984,58,6.05517,5.51362, +16238,370095,FORK,2024,88,5.87045,5.51361,"370095, 433057" +16239,5438,English Civil War,1975,45,6.21111,5.51361, +16240,205495,1001,2016,60,6.03667,5.51360, +16241,10256,30 Years War,1995,69,5.96812,5.51360, +16242,58707,Truth Be Told,2009,112,5.79345,5.51359, +16243,203760,Estado de Sitio,2018,34,6.43510,5.51358, +16244,145209,404: Law Not Found,2013,119,5.77672,5.51357, +16245,1468,Anybody's Guess,1990,113,5.79055,5.51357, +16246,140960,Raccoon Rumpus,2013,81,5.89988,5.51356, +16247,272443,Night Class,2019,36,6.38250,5.51356,"272443, 309970, 309971" +16248,1622,Strata 5,1984,131,5.75229,5.51356, +16249,42900,Thricewise,2009,32,6.49063,5.51355, +16250,342,Hong Kong,1999,84,5.88571,5.51355, +16251,1571,Sanctuary: Thieves World,1982,295,5.61949,5.51355, +16252,37401,Scrabble: Chocolate Edition,2007,58,6.05172,5.51353, +16252,113324,Dungeon Delver,2011,58,6.05172,5.51353, +16254,173800,Adorable Pandaring,2015,241,5.64300,5.51353, +16255,230619,Link: un juego de mesa en 8-bits,2017,42,6.25566,5.51351, +16256,7267,"Warlords: China in Disarray, 1916-1950",1986,101,5.82178,5.51350, +16257,5059,Gazala: The Clash of Armor,1983,46,6.19022,5.51349, +16258,365714,Burger Balance,2021,42,6.25429,5.51349, +16259,12788,Treasure Island,2003,66,5.98485,5.51349, +16260,7256,Digit,1987,198,5.67056,5.51348, +16261,231019,Competition Kitchen,2017,53,6.10000,5.51348, +16262,333116,Zombie Princess and the Enchanted Maze,2021,31,6.51613,5.51347, +16263,335431,Pirate Box,2021,39,6.31026,5.51347, +16264,237719,Meine ersten Spiele: Wir räumen auf,2017,47,6.17447,5.51347, +16265,234859,The Labours of Hercules,2017,33,6.45455,5.51346, +16266,91759,Pamplona: Viva San Fermín!,2011,185,5.68122,5.51345, +16267,365920,The Shakespeare Game,2022,35,6.40000,5.51345, +16268,158774,Psychological Warfare,2014,70,5.95671,5.51345, +16269,21635,Number Chase,2006,65,5.99077,5.51345, +16270,99227,Rallytaire,2011,39,6.30897,5.51345, +16271,2260,Blood and Iron,1992,54,6.08796,5.51345, +16272,127505,Buffalo,2012,73,5.93836,5.51345, +16272,259342,Luxantis,2018,73,5.93836,5.51345, +16274,85338,Antigua,2010,134,5.74493,5.51345, +16275,309100,Check Out!,2020,30,6.54733,5.51345, +16276,109239,Imago,2011,37,6.35135,5.51344, +16277,286261,Chrono Corsairs,2020,64,5.99766,5.51343, +16278,365876,Atlantic Robot League,2022,38,6.32895,5.51343, +16278,1688,Star Commander,1983,38,6.32895,5.51343, +16280,124372,Le Petit Poucet,2012,79,5.90570,5.51343, +16281,14441,Kinder Bunnies: Their First Adventure,2005,6365,5.51830,5.51343,"3699, 14441, 33876, 66603, 95607, 137827, 141523, 242193, 242194, 242196, 242197, 242199, 242200, 242201, 242202, 282074, 334341, 431334" +16282,172118,Cave Pilot 55,2017,39,6.30769,5.51343, +16282,62626,Gelini Nightlife,2009,39,6.30769,5.51343,"62626, 296112" +16284,11094,Holiday,1981,32,6.48125,5.51343, +16285,203410,Ascended,2016,41,6.26829,5.51342, +16286,12856,Shove Ha'penny,1840,56,6.06607,5.51342, +16287,120770,Day of the Dead,2012,34,6.42353,5.51341, +16288,22062,Le Mur de Pise,2004,48,6.15792,5.51341, +16289,2487,Why,1958,151,5.71821,5.51341,"2487, 4903" +16290,167579,Hawaiki,2014,36,6.37222,5.51340, +16291,148434,Gormenghast: The Board Game,2013,96,5.83542,5.51340, +16292,216907,The Dutch East Indies,2017,126,5.75868,5.51340, +16293,140600,Scalawag!,2014,74,5.93095,5.51339, +16294,4139,Rommel's Panzers,1980,83,5.88554,5.51339, +16295,113428,Cazadores de Fosiles,2011,40,6.28500,5.51338, +16296,11790,Leapin' Lily Pads,2000,93,5.84516,5.51338, +16297,19623,Handy,2005,123,5.76423,5.51338, +16298,64657,Sticht oder Nicht,2010,64,5.99531,5.51337, +16299,315677,Waddle,2021,31,6.50806,5.51337, +16300,7383,Red Star Falling,1981,35,6.39429,5.51337, +16301,25758,Trüffel-Schnüffel,2006,66,5.98030,5.51336, +16302,11339,Korea '95,1993,33,6.44697,5.51336, +16303,217863,Unauthorized,2017,52,6.10577,5.51335, +16304,18780,El Día Más Largo,1982,67,5.97299,5.51335, +16305,40961,Topas,2009,140,5.73321,5.51334, +16306,191906,Family Flutter-By,2016,143,5.72855,5.51334, +16307,173127,Pocket Sports Test Cricket,2015,37,6.34457,5.51333,"43710, 173127" +16308,287677,QUIZ IT,2019,42,6.24539,5.51333, +16309,12679,Scottish Highland Whisky Race,2004,63,6.00095,5.51332, +16310,165190,Boom Bokken,2014,53,6.09226,5.51330, +16311,218637,Dr. Beaker,2017,134,5.74224,5.51330, +16312,99881,Triominos Gold,2008,55,6.07091,5.51330, +16313,10820,Master,1982,63,6.00000,5.51329, +16314,279747,Flying Sushi Kitchen,2018,31,6.50194,5.51329, +16315,28050,Pixel,2007,57,6.05088,5.51328, +16316,242222,Sussed?: All Sorts,2011,42,6.24286,5.51328, +16317,104351,Raphia,2011,81,5.89136,5.51328, +16318,34222,Quint-X,2007,31,6.50097,5.51327, +16319,12644,Echelon,1989,30,6.53333,5.51327, +16320,302089,Штука,2017,38,6.31842,5.51326, +16321,142517,Grabolo,2012,121,5.76612,5.51326, +16322,22990,Les Aigles,1990,31,6.50000,5.51326, +16323,3468,Panzer Pranks,1980,48,6.15000,5.51325, +16324,1616,Remember the Alamo!,1982,72,5.93764,5.51325, +16325,33086,Biafra!,2007,43,6.22326,5.51324, +16326,56412,Honfoglaló Családi Társasjáték,,119,5.76975,5.51323,"56244, 56412, 56438, 59527" +16327,342054,Karmaggän,2021,51,6.11176,5.51323, +16328,524,Desperados,1980,361,5.59776,5.51323, +16329,312899,Carteros,2020,50,6.12347,5.51323, +16330,150033,Sheepzzz,2013,69,5.95507,5.51322, +16331,271052,Hilal Hattı,2018,32,6.46563,5.51321,"84866, 271052" +16332,8741,Indo-Pakistani Wars,1995,56,6.05714,5.51320, +16333,5757,Bakerstreet,2003,298,5.61537,5.51320, +16334,9277,Leuthen 1757,2000,35,6.38286,5.51320, +16335,275554,Instant Propose (たった今考えたプロポーズの言葉を君に捧ぐよ。),2017,58,6.03793,5.51319, +16336,76542,UEFA Champions League: Officially Licensed Board Game,2010,35,6.38266,5.51319, +16337,281523,Monopoly: Marvel Avengers,2019,46,6.17391,5.51318, +16338,361892,Grim Reaper Preschool,2022,32,6.46250,5.51317, +16339,340396,Durian Dash,2021,52,6.09712,5.51316, +16340,196234,Clash d'Ardèche,2017,43,6.21860,5.51315, +16341,10188,Sale of the Century Quizzard,1986,64,5.98661,5.51314,"1774, 10188" +16342,310993,Interceptor,2020,37,6.33135,5.51312, +16343,41788,Striking the Anvil: Operation Anvil Dragoon,2009,37,6.33108,5.51312, +16344,205156,Amis Cube,2016,42,6.23333,5.51311, +16344,22674,Mława 1939,1999,42,6.23333,5.51311,"22674, 35473, 40916" +16346,124760,Famous First Downs: The World's Smallest Football Game,2012,43,6.21628,5.51311, +16347,8892,IGOR: The Mad Scientist's Lament,2004,176,5.68489,5.51311, +16348,856,"New York, New York",1989,116,5.77336,5.51309, +16349,154681,Flizz & Miez,2014,99,5.81803,5.51309, +16350,4625,Millennium: The Era of Invasion,1981,47,6.15532,5.51309, +16351,413435,Oh My Pigeons!,2024,55,6.06182,5.51308, +16352,346996,Kipp mir Saures,2021,48,6.14167,5.51308, +16353,38824,Marlborough's Battles: Ramillies and Malplaquet,2009,41,6.24878,5.51308, +16354,23285,AirWar: Pacific!,2006,49,6.12857,5.51307, +16355,16914,Shrieks & Creaks,1988,53,6.08208,5.51307, +16356,1274,Cue Me!,1989,65,5.97692,5.51307,"1274, 27838" +16357,9379,Escalado,1929,63,5.99127,5.51306, +16358,25795,Hexago Continuo,2006,44,6.19758,5.51306, +16359,207351,Nimbee,2017,110,5.78682,5.51305, +16360,156118,The Red Dragon's Lair,2014,45,6.18222,5.51305,"156118, 171864, 192817, 203213" +16361,547,Flohzirkus,1997,30,6.51667,5.51305, +16362,18584,BauSquitMiao,2005,38,6.30526,5.51305, +16363,412,Yukon Company,1999,47,6.15319,5.51304, +16364,32025,Einfach Genial Knobelspass,2007,63,5.99048,5.51304, +16365,190330,In Your Head,2016,40,6.26450,5.51303, +16366,131895,Holyland: Full Spectrum Warfare in the Middle East,2013,35,6.37181,5.51303, +16367,9862,Dien Bien Phu 1954,2000,34,6.39706,5.51303, +16368,3557,Steppe,1985,35,6.37143,5.51302, +16368,107420,La Course farfelue des souris des champs,2011,35,6.37143,5.51302, +16370,30952,The Witcher: The Adventure Card Game,2007,288,5.61719,5.51301, +16371,43927,Trivial Pursuit: Team,2009,162,5.69821,5.51301, +16372,340029,Dreamember,2021,39,6.28205,5.51300, +16373,57458,Darwinci,2009,124,5.75484,5.51300, +16374,139660,Tasnia,2013,84,5.86988,5.51300, +16375,244150,Arbra Kadabra,2018,41,6.24390,5.51299, +16376,61383,VerTIPPT nochmal!,2009,57,6.03860,5.51299, +16377,11527,Friedland,1992,60,6.01217,5.51298, +16378,93555,Miss Lupun…und das Geheimnis der Zahlen,2011,74,5.91757,5.51298, +16379,2169,Arcadia: The Wyld Hunt,1996,159,5.70119,5.51297, +16380,176898,Icarus,2015,183,5.67650,5.51297,"41783, 176898" +16381,371436,Cortex: Harry Potter,2022,45,6.17794,5.51297, +16382,6342,Switchboard,1966,76,5.90658,5.51297, +16383,848,Tip Tap,1999,115,5.77309,5.51297, +16384,29118,Exalted: War for the Throne,2007,117,5.76863,5.51297, +16385,316843,Gremlins: Holiday Havoc,2020,46,6.16304,5.51296, +16386,220333,Metal Dawn,2018,38,6.29930,5.51295,"193796, 220333" +16387,217827,Battle Yahtzee: Deadpool,2016,48,6.13542,5.51295, +16388,309352,Shadow of the Obelisk,2020,31,6.47581,5.51294, +16389,1557,Space Empires,1981,35,6.36571,5.51294, +16390,1385,Aber Hallo!,2000,51,6.09804,5.51294, +16391,328557,Wilson & Shep,2021,86,5.85977,5.51293,"34383, 328557" +16392,14128,Jupiter,1993,45,6.17556,5.51293, +16393,3065,Monopoly: Stock Exchange,2001,200,5.66199,5.51292, +16394,340067,King Fridge,2021,38,6.29737,5.51292, +16395,227425,Treachery in a Pocket,2017,100,5.81100,5.51292, +16396,188204,De 7 geitjes,2015,87,5.85540,5.51292, +16397,113456,POWER,2012,40,6.25750,5.51291, +16398,149324,Escape from Sunset Island: Zombie Apocalypse Simulator,2013,95,5.82632,5.51291, +16399,175263,4 the Birds,2016,109,5.78596,5.51290, +16400,285712,Tan-tan Caravan,2019,73,5.92055,5.51290, +16401,17577,Granny Apples,2005,139,5.72695,5.51290, +16402,180908,Alan's Adventureland,2016,113,5.77611,5.51289, +16403,2584,Code Name: Sector,1977,88,5.85068,5.51289, +16404,220124,5ive: King's Court,2017,49,6.11950,5.51289, +16405,171494,Kniffel Master,2015,44,6.18818,5.51288, +16406,251593,From Batavia,2018,42,6.22024,5.51288, +16407,254145,Seals,2018,77,5.89870,5.51288, +16408,9861,France 1940,2001,44,6.18750,5.51287, +16409,25004,Valley of the Pharaohs,2006,144,5.71891,5.51286, +16410,161881,Fin Finaud questionne tout,2013,38,6.29342,5.51286, +16411,82223,Feast & Famine,2010,71,5.93028,5.51285, +16412,5460,The Deck of Dice,1997,44,6.18636,5.51285, +16413,131496,Attack the Darkness,2013,45,6.17111,5.51284, +16414,338455,Werewolf: The Apocalypse – RETALIATION,2024,30,6.50000,5.51284, +16414,413397,Sideboards,2024,30,6.50000,5.51284, +16416,1727,Summit,1961,125,5.74960,5.51283, +16417,208661,Legends of Labyrinth,2016,109,5.78434,5.51283, +16418,164645,"Mine, All Mine!",2014,67,5.95448,5.51283, +16419,15088,Storm over Port Arthur,2003,32,6.43750,5.51283, +16419,104121,"Sedan: The Decisive Battle for France, May 1940",2012,32,6.43750,5.51283, +16421,9957,"La Campagne de Gettysburg, 1863",1996,33,6.40909,5.51282, +16422,1672,Open Fire: Solitaire Tank Combat in WWII,1988,158,5.70000,5.51282, +16423,27781,Jetsetters,2007,35,6.35714,5.51281, +16424,26067,Kropki,,44,6.18409,5.51280, +16425,316972,Monster Soup,2020,60,6.00500,5.51280, +16426,422437,Tales of Tails,2024,37,6.31081,5.51280, +16427,9597,Vier zu mir!,1996,61,5.99672,5.51280, +16428,140386,Assassin's Creed: Arena,2014,172,5.68442,5.51280, +16429,124757,Famous Fastballs: The World's Smallest Baseball Game,2012,54,6.05926,5.51279, +16430,423683,Caracas,2024,39,6.26923,5.51279, +16430,301785,Math Rush: Addition & Subtraction,2020,39,6.26923,5.51279, +16430,261738,Blankout,2018,39,6.26923,5.51279, +16430,316044,1472: The Lost Samurai,2020,39,6.26923,5.51279, +16430,254147,Assault on the Castle,2018,39,6.26923,5.51279, +16435,112811,Search for Gnomes,2012,36,6.33194,5.51278, +16436,254618,"Four pints, please",2018,40,6.25000,5.51278, +16436,351646,MONSTRYS,2021,40,6.25000,5.51278,"351646, 426009" +16438,261449,Sugar Blast,2020,103,5.79903,5.51278, +16439,35167,Quadrago,2007,33,6.40606,5.51278, +16440,23596,WaveLength,2004,42,6.21429,5.51277, +16441,7981,Paradux,,39,6.26795,5.51277, +16442,251060,Saint Poker,2018,65,5.96569,5.51276, +16443,35481,The Suitcase Detectives,2008,53,6.06792,5.51276, +16444,155994,Movie Plotz,2014,46,6.15217,5.51275,"155994, 208890, 303434, 318644" +16445,298541,It Was This Big,2020,47,6.13830,5.51275, +16446,3552,Infinity,1974,56,6.03750,5.51274, +16447,170676,Nosocomio,2015,39,6.26615,5.51274, +16448,21141,Eastern Front 2,2005,37,6.30676,5.51274, +16449,198778,SYNOD,2016,101,5.80330,5.51272,"198778, 198855, 324668" +16450,216631,Tower of London,2017,76,5.89886,5.51272, +16451,16970,Fanhunter Batallitas,1997,36,6.32778,5.51272, +16452,11320,Samurai,1975,53,6.06604,5.51271, +16453,41107,Onexeno,2008,74,5.90878,5.51271,"41107, 181038" +16454,26244,Candy,2005,51,6.08725,5.51270, +16455,180210,tak•tak,2015,36,6.32639,5.51270, +16456,223763,Atari's Centipede,2017,164,5.69128,5.51270, +16457,19793,Robber Barons,2005,42,6.20952,5.51269, +16458,11404,LetterFlip,2004,86,5.85290,5.51268, +16459,5016,Marston Moor,1978,31,6.45645,5.51268, +16460,39492,Mangala,,37,6.30270,5.51267, +16461,305841,Tiny Farms,2020,179,5.67592,5.51267, +16462,8761,The Russo-Japanese War,1975,47,6.13404,5.51266,"8759, 8760, 8761" +16463,287342,Red Doors and the Murderer's Key,2019,55,6.04364,5.51266, +16464,286659,Voll verasselt,2019,72,5.91806,5.51265, +16465,63779,Shake 'n Take,2011,80,5.87750,5.51265, +16466,412856,Digsaw,2024,35,6.34571,5.51264, +16467,9233,Royalists & Roundheads,1991,79,5.88165,5.51264, +16468,286834,Nichtlustig: Superlemming,2019,90,5.83633,5.51263, +16469,316973,Space Taxi,2020,32,6.42266,5.51262, +16470,39451,Schätzen Sie mal! Mord & Totschlag,2008,32,6.42188,5.51261, +16471,94363,Vizia,2011,48,6.11875,5.51261, +16472,156721,Stamp Graffiti,2014,30,6.48167,5.51260, +16473,42273,"Frederick's War: War of the Austrian Succession, 1741-48",2010,34,6.36765,5.51260, +16474,180916,Saving Time,2019,37,6.29792,5.51260, +16475,65242,"Shiloh: Bloody April, 1862",2010,36,6.31944,5.51259,"65242, 330479" +16476,792,Megiddo,1985,53,6.06038,5.51259, +16477,416266,Mass Effect: The Board Game – Priority: Hagalaz,2024,213,5.64883,5.51258, +16478,250523,The Golfing Dead,2017,30,6.47867,5.51256, +16479,259727,Owly Tribe,2019,42,6.20238,5.51256, +16480,188952,Maigo-Neko,2015,86,5.84942,5.51256, +16481,1512,Hexagony,1977,199,5.65809,5.51255,"1512, 167723" +16482,7418,The Winning Ticket,1977,67,5.94478,5.51255, +16483,4606,Sucking Vacuum,2004,458,5.57577,5.51255, +16484,19796,Cranium: The Family Fun Game,2005,371,5.59059,5.51255, +16485,210937,Dia de los Muertos,2016,98,5.80779,5.51254, +16486,73251,Leipzig: Napoleon Encircled,2010,47,6.12766,5.51253, +16487,341308,Monopoly: Builder,2021,120,5.75343,5.51253, +16488,302238,Crazy Farmers and the Clôtures Électriques,2020,233,5.63657,5.51253, +16489,378926,Theme Park Mania,2024,48,6.11458,5.51253, +16490,11552,French Foreign Legion,2000,49,6.10204,5.51252, +16491,193134,Memory: The Board Game,2016,37,6.29189,5.51250, +16492,8589,Viele Dinge,2003,45,6.15333,5.51250, +16493,18023,Postcard from the Revolution,2004,69,5.93043,5.51250, +16494,146161,Arche Noah,2013,70,5.92429,5.51250, +16495,182540,Robots & Rockets,2015,46,6.13913,5.51250, +16496,10962,Smugglers of the Galaxy,2004,168,5.68393,5.51249, +16497,2806,U-Boat,1959,84,5.85536,5.51249, +16498,14379,Harry Potter and the Sorcerer's Stone Mystery at Hogwarts Game,2000,621,5.55886,5.51248, +16499,227196,Marauders of the Great Wastelands,2018,38,6.26974,5.51247, +16500,4646,Bommerz over da Sulphur River,1998,115,5.76261,5.51247, +16501,287410,Red Light Green Light: A Press Your Luck Racing Game,2019,59,6.00000,5.51247, +16501,135794,Méchanlou,,59,6.00000,5.51247, +16503,4177,ShowBiz Shuffle,2002,76,5.89079,5.51246, +16504,118501,Regimen: the Lions of Bukit Chandu,2013,36,6.31111,5.51246, +16505,156962,Shazam,2014,45,6.15111,5.51246, +16506,148430,Downtown,2013,38,6.26842,5.51245, +16507,132729,Requiem: Vampire Knight,2016,32,6.41000,5.51245, +16508,14024,Piracy,2004,59,5.99915,5.51245, +16509,283699,Towers of Am'harb,2019,55,6.03455,5.51245, +16510,151334,Overlords: The Card Game,2013,39,6.24872,5.51245, +16511,297386,Shot in the Dark: The Ultimate Unorthodox Quiz Game,2019,64,5.96094,5.51244, +16512,253420,AlderQuest,2021,34,6.35647,5.51244, +16513,272595,Dance of Muses,2019,34,6.35588,5.51243, +16514,94571,Oh Gnome You Don't!,2011,155,5.69742,5.51243, +16515,84442,Afluentes,2011,31,6.43713,5.51243, +16516,312289,Your Friend Is Sad,2021,69,5.92754,5.51242, +16517,4163,Quest for the Faysylwood,1993,45,6.14889,5.51242, +16518,17909,PS,1988,37,6.28649,5.51242,"17909, 337025" +16519,9871,Les Croisades,1997,30,6.46667,5.51241, +16519,242374,"Pickett's Charge: The Last Attack at Gettysburg July 3, 1863",2017,30,6.46667,5.51241,"36818, 242374" +16521,299568,Tatamokatsu,2020,79,5.87468,5.51241, +16522,13310,Adventure Gaming,1981,31,6.43548,5.51240, +16523,3989,Remote Possibilities,2002,45,6.14778,5.51239, +16524,154388,Charków 1942-1943,2013,34,6.35294,5.51239,"35754, 154388" +16525,8246,Race to the Meuse,1983,72,5.90931,5.51239, +16526,39104,Händler auf dem Forum Romanum,2008,37,6.28378,5.51237, +16526,8201,In 80 Karten um die Welt,2003,37,6.28378,5.51237, +16528,601,Take Two,1996,62,5.97258,5.51237, +16529,194820,Mission to Mars 2049,2016,155,5.69645,5.51237, +16530,277181,"""Shobai"" All Right",2019,38,6.26316,5.51237, +16531,1599,StarGate: The Final Space Battle for Galactic Freedom,1979,87,5.84023,5.51237, +16532,252361,Confederate Rails: Railroading in the American Civil War 1861-1865,2018,44,6.16023,5.51236,"7954, 252361" +16533,248695,Samurai Jack: Back to the Past,2018,82,5.85976,5.51235, +16534,146597,Discount Salmon,2013,188,5.66388,5.51235, +16535,252465,To War!,2018,30,6.46156,5.51234, +16536,24485,Take Your Best Shot,2006,79,5.87278,5.51234, +16537,20533,Daihinmin,,68,5.93088,5.51234,"20533, 420866" +16538,5585,UNO: Harry Potter,2000,455,5.57477,5.51232, +16539,16499,Architekton,2005,1074,5.53875,5.51231, +16540,8168,Campus,1985,42,6.18810,5.51230, +16541,191893,Gigi Gnomo,2016,47,6.11574,5.51230, +16542,127258,Blades of Legend,2012,52,6.05769,5.51229, +16543,50356,The Bugman's Game,2009,57,6.00982,5.51229, +16544,261168,Wannabe Football,2018,62,5.96935,5.51228, +16545,88549,Bible Taboo,2010,38,6.25789,5.51228, +16546,215004,The Great Dragon Race,2016,55,6.02727,5.51228, +16547,159536,Hungry as a Bear,2014,156,5.69385,5.51228, +16548,165585,TrakkX,2014,39,6.23846,5.51228, +16549,12212,Card Sharks,2002,31,6.42581,5.51228, +16550,4123,Gambler,1975,324,5.59963,5.51227, +16551,68251,Loot and Scoot,2010,78,5.87500,5.51227, +16552,64656,Wampum,2010,118,5.75178,5.51225, +16553,140179,De Poorters van Nieuwstad,2013,166,5.68247,5.51225, +16554,367197,Connected Clues,2022,53,6.04528,5.51225, +16555,136177,Super Race,2009,62,5.96774,5.51224, +16556,9033,The Marcher Lords: The Norman Conquest of Wales,2003,36,6.29602,5.51223, +16557,80719,Monopoly: Franklin Mint Collector's Edition,1991,44,6.15341,5.51223, +16558,412952,Tüfteln,2024,32,6.39375,5.51223, +16559,143588,Codename: Oracle,2014,45,6.13889,5.51222, +16560,186979,Ghost Hunter: Witches,2015,32,6.39313,5.51222,"165485, 184953, 186979, 190529, 242485, 245486" +16561,213444,Tokyo Ghoul: Bloody Masquerade,2018,42,6.18333,5.51222, +16562,194536,Back to the Future: OUTATIME,2016,149,5.70139,5.51222, +16563,488,Stake Your Claim,1985,105,5.78057,5.51221,"488, 23293" +16564,185104,Monopoly: Game of Thrones Collector's Edition,2015,558,5.56263,5.51220, +16565,312533,Pizza Rush,2019,38,6.25263,5.51220, +16566,130598,10 Tage durch Deutschland,2012,34,6.33971,5.51220, +16567,162288,Nightlight,2014,70,5.91386,5.51219, +16568,24784,Piraci: Córka Gubernatora,2006,98,5.79898,5.51218, +16569,90092,Bezzerwizzer Entertainment,2010,33,6.36364,5.51218, +16570,419045,Tokkuri Taking,2024,34,6.33824,5.51218, +16570,180824,Hanafuda: Sakura + Sutda,2015,34,6.33824,5.51218, +16572,285040,Open-face Chinese Poker,2005,51,6.06275,5.51217, +16573,372413,Meat Master,2021,35,6.31429,5.51217,"372413, 372857" +16574,242523,Dolly Crush,2017,66,5.93737,5.51217, +16575,266525,Yoz,2019,68,5.92480,5.51216, +16576,2383,Blue Line Hockey,1968,127,5.73307,5.51216, +16577,268408,Robin Hood: Hero of the People,2019,39,6.23077,5.51215, +16578,193250,Nightmare Castle,2015,32,6.38750,5.51214, +16579,4190,The Battle of Seattle,2000,33,6.36061,5.51214, +16580,148115,Dubious Alliance Fantasy Card Trading Game,2013,35,6.31200,5.51214, +16581,363273,Copan: Dying City,,50,6.07200,5.51214, +16582,157291,Alpaca Pakapaka,2013,79,5.86646,5.51213, +16583,189434,Lab Wars,2016,109,5.76881,5.51213, +16584,380229,Moose Master,2019,45,6.13333,5.51212, +16585,347702,Las Vegan,2022,192,5.65771,5.51212, +16586,170994,Suez 1916: The Ottomans Strike,2014,34,6.33382,5.51211, +16587,164652,Imperia,2014,30,6.44333,5.51211, +16588,225828,Hot Seat,,133,5.72216,5.51211, +16589,245086,Sau Mau Mau,2018,31,6.41290,5.51211, +16590,192349,Risky Adventure,2016,342,5.59374,5.51210, +16591,41860,Kangaroo,2009,176,5.67074,5.51210,"41860, 96719" +16592,7947,Lucky Catch,1997,47,6.10596,5.51210, +16593,137156,Zombie House Blitz,2014,41,6.19268,5.51210,"114404, 137156" +16594,19361,Casablanca,1983,42,6.17619,5.51209, +16595,262390,Li-La-Laut,2018,30,6.44167,5.51209, +16596,362503,Bug Off!,2022,31,6.41129,5.51208, +16597,187205,Randomise,2015,73,5.89370,5.51208, +16598,268921,The Goblin King is Angry,,37,6.26486,5.51207, +16599,272578,Scrabble: Harry Potter,2019,45,6.13081,5.51207, +16600,206753,Blank White Dice,2016,71,5.90423,5.51207, +16601,156224,Foretold: Rise of a God,2014,92,5.81467,5.51207, +16602,9844,Batailles pour le Canada,2002,39,6.22590,5.51207, +16603,145793,Dungeon Attack!,2013,32,6.38203,5.51207, +16604,223223,Midnight Outburst,2016,35,6.30714,5.51206, +16605,265728,Boom,2010,33,6.35515,5.51206,"265728, 378783" +16606,311918,Lost Explorers,2021,392,5.58301,5.51206, +16607,791,Löwendynastie,1998,88,5.82784,5.51205, +16608,20499,Gangster II: Le Pro,2004,178,5.66816,5.51205, +16609,13871,Operation Kremlin,2002,35,6.30571,5.51204, +16610,16355,The Difference Between Women & Men,2005,170,5.67541,5.51204,"16355, 158595" +16611,130388,Hungry Hungry Hipsters,2012,44,6.14318,5.51204, +16612,19414,H2Olland,2005,61,5.96721,5.51204, +16613,7808,Solar Trader,1990,56,6.00750,5.51203, +16614,13495,High Finance,1968,67,5.92612,5.51203, +16615,32016,Gumball Rally,2007,228,5.63368,5.51202, +16616,145872,Vici,2014,37,6.26108,5.51201, +16617,109044,Spline+,2011,41,6.18780,5.51201,"93164, 109044" +16618,14396,AstroNavis Merchant Advanced,2004,33,6.35152,5.51201,"10389, 14396" +16619,84247,Âge de Bronze,2010,34,6.32588,5.51200, +16620,17285,Alfredo's Food Fight,2005,91,5.81593,5.51199, +16621,165926,Calçotada Wars,2014,46,6.11304,5.51199, +16622,371838,BANANINE,2022,31,6.40323,5.51198, +16623,3946,Pyramid,1978,73,5.89041,5.51198,"3946, 11212, 11405, 140477" +16624,88633,Raon,2010,36,6.27917,5.51197,"88633, 332561, 332563, 358011, 369046" +16625,231415,İttihat,2017,32,6.37500,5.51197, +16625,12686,Welt der Abenteuer,2004,32,6.37500,5.51197, +16627,20888,Assault on Narvik,2005,34,6.32353,5.51196, +16628,192730,Baba Yaga,2016,60,5.97167,5.51196, +16629,36993,COLORS,2008,44,6.13864,5.51195, +16629,224454,Numeracy Legends and The Rainbow Unicorn,2017,44,6.13864,5.51195,"224454, 224749, 224750" +16631,118128,Schwarm!,2011,36,6.27778,5.51195, +16632,148117,All Hands on Deck!,2016,46,6.11087,5.51194, +16633,388427,Get It!,2023,39,6.21795,5.51194, +16634,201973,Trivial Pursuit: Star Trek 50th Anniversary Edition,2016,40,6.20000,5.51193, +16635,40001,Mars,2009,68,5.91544,5.51190, +16636,203997,Locos Crononautas,2016,81,5.85062,5.51189, +16637,3914,Splat!,1990,199,5.64975,5.51189, +16638,84454,Wer war's?: Löst das Rätsel von Schräghausen!,2010,49,6.07143,5.51189, +16639,33414,Ghost Hunters,2007,41,6.18049,5.51188, +16640,109643,World Conquerors,2012,161,5.68215,5.51188, +16641,218993,Candy Match,2017,75,5.87733,5.51188, +16642,319329,B Movies,2021,62,5.95371,5.51188, +16643,23334,Doodle Dice,2006,539,5.56270,5.51187, +16644,40083,Cluedo: Chocolate Edition,2007,94,5.80312,5.51187, +16645,349,Halunken & Spelunken,1997,295,5.60466,5.51187, +16646,2111,Nix für Ungut!,1996,37,6.25135,5.51186, +16647,47462,Killer Bunnies and the Quest for the Magic Carrot: Remix,2009,234,5.62878,5.51186, +16648,282587,(May Cause) Side Effects,2019,38,6.23158,5.51186, +16649,234873,Big Cityz,2017,34,6.31618,5.51185, +16650,4909,Fun City Game,1987,143,5.70308,5.51185, +16651,5783,Imajica,1997,30,6.42333,5.51185, +16652,11292,Blood & Steel,1999,68,5.91397,5.51185, +16653,1133,Organized Crime,1974,115,5.74957,5.51185, +16654,396426,Purrfect Match,2023,40,6.19500,5.51185, +16655,259346,Das verfluchte Piratengold,2018,43,6.14698,5.51184, +16656,313696,KAWA: A Game About Flow,2020,33,6.33939,5.51184, +16657,147136,Elemental Blast,2013,64,5.93828,5.51183, +16658,164010,Moriarty's Machinations,2014,44,6.13205,5.51183, +16659,391255,Open Season,2024,95,5.79895,5.51182, +16660,18129,Sports Illustrated Handicap Golf Game,1971,70,5.90143,5.51182,"3682, 18129" +16661,286263,La Muse,2019,38,6.22895,5.51181, +16662,4392,Dragonstar Rising,1987,35,6.29029,5.51181, +16663,75783,Draco,2010,41,6.17610,5.51181, +16664,330555,5 Minuten Puzzle,2021,82,5.84390,5.51181, +16665,168436,Pièces montées,2014,49,6.06735,5.51180, +16666,117975,Impact City Roller Derby,2012,66,5.92424,5.51180, +16667,182162,Dejarik,2014,40,6.19200,5.51179, +16668,138206,How Many?,2013,52,6.03462,5.51179, +16669,269487,Clue: Rick and Morty – Back In Blackout,2017,69,5.90580,5.51179, +16670,37732,Boss Kito,2008,179,5.66358,5.51178, +16671,202674,Ore City,2015,39,6.20846,5.51178, +16672,65087,Beyblade,1999,99,5.78620,5.51178,"65087, 331409" +16673,370136,DREBO,2022,41,6.17439,5.51178, +16674,236202,Das Rotkäppchen Duell,2017,30,6.41667,5.51177, +16675,240956,Witch & Bitch,2017,31,6.38710,5.51176, +16676,21001,Alibi saknas: Herrgårdsmordet,2005,32,6.35938,5.51176, +16677,32946,Fluffy Bunny Tea Party,2011,34,6.30882,5.51175, +16678,109932,Miskatonic School for Girls,2012,888,5.54226,5.51175, +16679,43486,The Trial of Socrates,2009,31,6.38548,5.51174, +16680,29489,Tai Chi Chuan,2007,61,5.95574,5.51174, +16681,13623,Who's in the Bag,1992,53,6.02264,5.51174, +16682,281680,Beam me up,2019,84,5.83397,5.51173, +16683,275703,Phone Bomb,2019,50,6.05300,5.51173, +16684,38263,Sushi Bar,2005,38,6.22368,5.51173, +16685,22305,Sudoku: Duell der Meister,2006,64,5.93438,5.51173, +16686,93678,Spring Fever,2011,103,5.77427,5.51172, +16687,182168,F**k. The Game,2015,137,5.70876,5.51170, +16688,277100,Black Stories Junior: Red Stories,2018,60,5.96150,5.51170, +16689,157014,ESSEN,2014,85,5.82918,5.51170, +16690,20112,Composio,2002,46,6.09783,5.51169, +16691,6408,Hannibal: The Italian Campaign,1983,30,6.41000,5.51168, +16691,367602,Worder,2022,30,6.41000,5.51168, +16693,141107,Anno Domini: Avvenimenti bizzarri,2013,49,6.06122,5.51167, +16694,262160,Mr. Cabbagehead is Away and Neddance Saves the Day,2018,50,6.05000,5.51167,"192043, 262160" +16695,14236,Stretch Run,2004,95,5.79484,5.51166, +16696,116738,Drive on Pyongyang,2013,35,6.28000,5.51166, +16697,19978,Maunz Maunz,2004,56,5.99179,5.51166, +16698,40171,Peeper,2004,53,6.01887,5.51165, +16699,126703,Monopoly: World of Warcraft Collector's Edition,2012,244,5.62172,5.51164, +16700,31335,Jantaris,2007,116,5.74318,5.51164, +16701,12964,Space Station Assault,2004,155,5.68484,5.51164, +16702,270133,Sumo Slam!,2019,77,5.85974,5.51162, +16703,67034,VeloCity,2010,138,5.70580,5.51162, +16704,3174,Titan Strike! Battle for the Moon of Saturn,1979,87,5.81954,5.51161, +16705,66533,Turning Point,2009,40,6.18125,5.51161,"19524, 66533" +16706,118567,Gladiatori,2012,79,5.85063,5.51161, +16707,7973,My Haunted Castle,1989,115,5.74435,5.51160, +16708,298442,Novgorod,2020,38,6.21579,5.51160, +16709,217680,Mexican Standoff,2017,64,5.92969,5.51160,"217680, 306363" +16710,225940,Quartino,2017,32,6.34687,5.51159, +16711,172517,Zmiennicy,2014,58,5.97241,5.51159, +16712,10797,"Hoorah! Six Bridges: The Battle of Pittsburgh, 1 October 1863",1996,34,6.29765,5.51159, +16713,56197,Bezzerwizzer +,2009,106,5.76368,5.51158, +16714,218236,Metal Mania,2017,146,5.69459,5.51158, +16715,234977,Capo della Mafia,2017,59,5.96441,5.51158, +16716,38050,TPOC: The Politics of Cannibals,2008,86,5.82221,5.51158, +16717,19046,Ruckus,2005,232,5.62664,5.51157,"19046, 307821" +16718,331343,Cyberdoom Tower,2021,109,5.75645,5.51157, +16719,6660,Cubus,1987,110,5.75409,5.51156, +16720,288062,Kakerlaken Sushi,2019,46,6.09130,5.51156, +16721,38524,Kimaloé,2008,44,6.11750,5.51156, +16722,192352,Super-Vampire,2016,173,5.66565,5.51156, +16723,40615,Ki az úr a tengeren?,1985,56,5.98750,5.51155,"40230, 40615" +16724,158851,Play Me: Alice in Wonderdice,2014,271,5.60982,5.51154, +16725,38331,Fiese Kühe,2008,32,6.34375,5.51154, +16726,247948,Newton,2017,34,6.29412,5.51153, +16727,10463,Quick Chess,1991,35,6.27114,5.51153, +16728,94596,Geistermühle,2011,75,5.86583,5.51152, +16729,40092,Hobiti,2006,47,6.07660,5.51151,"40092, 300573" +16730,135107,Paradise Fallen: The Card Game,2013,160,5.67750,5.51151, +16731,23619,"La fleur au fusil, août 1914",2006,30,6.39667,5.51151, +16732,3305,Anticipation,1987,166,5.67145,5.51151, +16733,220406,Oh Sh*t!,2017,40,6.17500,5.51151,"220406, 288333" +16733,251136,GiriGiri Curry,2017,40,6.17500,5.51151, +16735,62344,Tomb Raider: Underworld,2009,36,6.24806,5.51149, +16736,78647,Lexigo,2010,64,5.92578,5.51149, +16737,342177,Word Heist,2022,43,6.12791,5.51149, +16738,368116,"Flip, Switch and Roll",2022,36,6.24722,5.51148, +16739,394890,The Academy,2023,46,6.08696,5.51148, +16739,201048,Monkey Butt,2016,46,6.08696,5.51148, +16741,204671,Dear Leader,2016,48,6.06250,5.51147, +16742,129224,HERO versus GUARDIAN: A Game of Dungeon Craft,2013,83,5.83012,5.51147, +16743,41021,Tangram Master,2001,93,5.79581,5.51146, +16744,197788,Final Boss: The card game,2016,66,5.91212,5.51146, +16745,3112,And They're Off!,1993,49,6.05102,5.51146, +16746,110864,Speedway Champion,2011,41,6.15610,5.51146, +16747,957,PanzerZug,1998,46,6.08587,5.51145, +16748,163576,Monopoly: The Legend of Zelda,2014,451,5.57002,5.51145, +16749,4281,Freeloader,2002,210,5.63724,5.51145, +16750,4259,The Trojan War: The Game of Gods & Heroes,1981,48,6.06167,5.51145, +16751,126168,Oh no... INVASION!!!,2012,104,5.76538,5.51145, +16752,402261,Graffiti,2023,30,6.39167,5.51145, +16753,254814,UNO: The Legend of Zelda,2017,52,6.01923,5.51145, +16754,104633,Castelli,2011,237,5.62283,5.51144, +16755,2819,Trivial Pursuit: Genus 5,2000,682,5.55012,5.51144, +16756,802,Taipei: China Invades,2000,37,6.22432,5.51143, +16757,2195,Globbo!,1983,112,5.74688,5.51143, +16758,218418,Stadium,2017,30,6.39000,5.51143, +16759,352126,Dollars Wanted,2022,40,6.17000,5.51142, +16760,217959,Scrabble: Harry Potter Edition,2016,69,5.89275,5.51141, +16761,19039,Fullmetal Alchemist: Trading Card Game,2005,34,6.28529,5.51141, +16762,202303,Western Front,2016,44,6.10932,5.51140, +16763,409031,Kathmandu,2024,35,6.26286,5.51140, +16764,138748,Flash!,2013,189,5.65053,5.51140, +16765,64426,Zug,2009,45,6.09556,5.51140, +16766,231674,Who's the Dude?,2017,263,5.61133,5.51139,"231674, 316408" +16767,3374,Scrabble Crossword Cubes Game,1964,80,5.83962,5.51138, +16768,166556,Aqua Brunch,2014,68,5.89706,5.51137, +16769,166475,Fish'n'Stones,2014,33,6.30606,5.51137, +16770,190162,Putin Strikes: The Coming War for Eastern Europe,2016,43,6.12093,5.51136,"190162, 202829" +16771,4303,The Fall of South Vietnam: A Game of Combat in South Vietnam – 1973-1975,1981,49,6.04592,5.51136, +16772,2634,Quo Vadis,1978,36,6.23889,5.51135, +16773,271443,Ménestrels,2020,30,6.38333,5.51134, +16774,167892,Gang Up!,2015,127,5.71728,5.51134, +16775,233869,My Dungeon Boss: Never Lie,2017,31,6.35484,5.51134, +16776,374640,Escape Room: The Game – Card Game: The Golden Solution,2022,33,6.30303,5.51133, +16777,33359,Weilong,2007,117,5.73462,5.51133, +16778,114143,Activity: Alles ist möglich,2009,34,6.27941,5.51132, +16779,12372,Shakespeare: The Bard Game,2004,185,5.65243,5.51132, +16780,266353,Oh Fruck!,2018,35,6.25714,5.51132, +16781,338985,La 24 Ore di Paperopoli,2021,44,6.10455,5.51132, +16782,3129,1876: Trinidad,1996,54,5.99444,5.51131, +16783,13357,Like Minds,2004,133,5.70744,5.51131, +16784,41065,Longships,2009,46,6.07826,5.51131, +16785,67499,Schlafmütze,2003,62,5.93194,5.51131, +16786,87288,Cinco,2010,206,5.63782,5.51130, +16787,41699,Tintenblut,2009,30,6.37997,5.51130, +16788,105004,Sarena,2011,62,5.93161,5.51130, +16789,38425,Spy Gear: Spy Trackdown,2008,31,6.35161,5.51129, +16789,401976,森活日記 Woodtopia,2023,31,6.35161,5.51129, +16791,324,Ponte Vecchio,1996,89,5.80393,5.51129, +16792,93575,Double Double Dominoes,2012,46,6.07739,5.51129, +16793,334781,Keepers of the Questar,2021,34,6.27647,5.51128, +16794,265571,Monopoly: Game of Thrones,2018,218,5.63061,5.51128, +16795,412360,Onix,2024,36,6.23330,5.51127, +16796,257955,3x8,2018,113,5.74124,5.51127, +16797,18288,Psychologizer,,37,6.21324,5.51126, +16798,6983,Jungle,1981,43,6.11512,5.51126, +16799,28109,Malaya: V-Mail Postcard Game #1,2007,48,6.05208,5.51125, +16800,10378,Graphos,1982,40,6.16000,5.51125,"3963, 10378" +16801,15484,Middle East Battles: El Arish '67,2004,32,6.32094,5.51123, +16802,3049,Blood on the Tigris,1995,77,5.84740,5.51122, +16803,183197,Serengeti: A Race For Life,2017,59,5.94983,5.51122, +16804,248722,Daring Contest,2018,56,5.97321,5.51122,"248722, 340917" +16805,258334,Staka,2018,33,6.29515,5.51121, +16806,276005,Peach Snaps,2019,37,6.20946,5.51120, +16807,8903,Zama: Hannibal versus Scipio,1992,104,5.75962,5.51120,"8903, 217138" +16808,41329,Fire Bulls,2009,52,6.00769,5.51119, +16809,72751,Fleeting Foxes,2010,61,5.93443,5.51119, +16810,304667,Catapult Castle,2022,54,5.98926,5.51119, +16811,8830,Nach dem Regen,1995,44,6.09773,5.51119,"6852, 8830" +16812,5986,Ra: Strategy Among Hexagons,1981,30,6.37133,5.51119, +16813,67695,Nab-It!,2010,161,5.67143,5.51118, +16814,2907,James Clavell's Tai-Pan,1981,64,5.91406,5.51118, +16815,255732,WonderZoo,2018,42,6.12500,5.51118, +16816,9845,Verdun 1916,2002,47,6.05957,5.51117, +16817,1884,Fireside Football,1996,65,5.90769,5.51117, +16818,148,Die Glücksritter,1999,137,5.69927,5.51117, +16819,2581,Kismet,1963,270,5.60661,5.51117, +16820,25204,UNO: Cars,2006,129,5.71093,5.51117, +16821,2863,The Great Downhill Ski Game,1970,39,6.17179,5.51117, +16822,252373,Azimuth: Ride The Winds,2018,52,6.00654,5.51117, +16823,303276,Tortuga,2020,50,6.02620,5.51116, +16824,305700,Gluons,2023,31,6.34058,5.51115, +16825,138204,Planet Run,2013,36,6.22500,5.51114, +16826,23402,Die unendliche Geschichte,1987,64,5.91250,5.51114, +16827,12496,Over the Top! Mons & The Marne,1997,43,6.10814,5.51113, +16828,22753,Thing-a-ma-Bots,2006,57,5.96140,5.51113, +16829,233854,Leviathan,2018,42,6.12210,5.51112, +16830,43268,Bla Bla Bla,2009,32,6.31250,5.51112, +16831,66245,Party Alias (Travel),2010,50,6.02400,5.51112, +16832,882,Derby,2000,46,6.06848,5.51111, +16833,253683,Doomsday Bots,2019,33,6.28788,5.51111, +16834,103745,Plethora,2012,60,5.93833,5.51111, +16835,284417,Mister Rogers' Neighborhood Game,2019,42,6.12127,5.51111, +16836,167412,Hopp und Hui!,2014,62,5.92419,5.51110, +16837,89833,APBA Soccer,2011,35,6.24286,5.51110, +16837,36352,Stalingrad 1942-43,2004,35,6.24286,5.51110, +16839,302279,Hit List,2020,47,6.05596,5.51110, +16840,69602,Phase 10: Das Brettspiel,2010,325,5.58987,5.51110, +16841,238912,Dragon Ball Z: Perfect Cell,2018,108,5.74815,5.51110, +16842,185769,Remember When ...,2017,72,5.86667,5.51110, +16843,207809,Sultans of Wind,2016,36,6.22222,5.51110, +16844,3677,Ultimatum: A Game of Nuclear Confrontation,1979,127,5.71260,5.51109, +16845,276817,Tetris Speed,2019,106,5.75236,5.51109, +16846,159525,Apocalypse Universe: Galactic Arena,2014,57,5.95965,5.51108, +16847,150530,Moteneba.,2013,39,6.16667,5.51108, +16848,28388,Some Poles Apart: The Battle of the Westerplatte,2007,90,5.79500,5.51108, +16849,13818,Jurassic Jumble,2004,36,6.22083,5.51108, +16850,70488,GloBall,2010,100,5.76633,5.51107, +16851,209487,StickUp,2016,39,6.16538,5.51106, +16852,11726,Knucklebones,-3000,44,6.09091,5.51106, +16853,44715,Pega o Pinguim!,2009,35,6.23943,5.51105, +16854,42066,Hotel Amsterdam,2009,89,5.79719,5.51104, +16855,19442,Tally-Ho,1998,40,6.14750,5.51104, +16856,4621,Cloak & Dagger,1984,47,6.05241,5.51103, +16857,313858,Magnefix,2020,42,6.11667,5.51103, +16858,3958,Songburst: 70's & 80's Edition,1992,138,5.69514,5.51102, +16859,217322,Caramba,2017,84,5.81349,5.51101, +16860,148211,"Sexy, el juego del arte del flirteo",2014,42,6.11595,5.51101, +16861,8336,Top Speed,2003,94,5.78128,5.51101, +16862,165999,Peng!,2014,47,6.05149,5.51101, +16863,165447,UFO Farmer,2014,82,5.82075,5.51101, +16864,147590,Habe fertig,2013,78,5.83654,5.51101, +16865,2428,Battle-Cry,1961,370,5.57957,5.51100, +16866,13295,Sorry! Card Revenge,2004,115,5.73130,5.51098, +16867,4772,Simon de Montfort,1979,38,6.17763,5.51098, +16867,17298,Branches and Twigs and Thorns,2002,38,6.17763,5.51098, +16869,201012,Chernobyl,2015,67,5.88833,5.51096, +16870,234769,Game Off,2017,51,6.00654,5.51096, +16871,129086,Startropolis,2019,94,5.77979,5.51095,"129086, 346879" +16872,7102,City of Sorcerers,1982,43,6.09837,5.51095, +16873,218349,Fortresses & Clans,2017,41,6.12683,5.51095, +16874,218460,Giant UNO,2015,83,5.81508,5.51094, +16875,306032,Cookie Addict,2020,77,5.83870,5.51094, +16876,229537,Mind the Gap,2017,103,5.75583,5.51093, +16877,328294,Plapparagei,2021,38,6.17447,5.51093, +16878,149035,Old World New World,2013,45,6.07111,5.51093, +16878,130669,Pavia: Climax of the Italian Wars,2012,45,6.07111,5.51093, +16880,283838,The Root Beer Float Challenge,2019,30,6.35067,5.51092, +16881,368308,World Splitters,2022,33,6.27424,5.51092, +16882,311658,Magic Money,2020,47,6.04681,5.51092, +16883,25013,Fagin's Gang,2007,126,5.71071,5.51091, +16884,144184,Road to the Palace,2012,30,6.35000,5.51091, +16885,289370,Monuments,2022,95,5.77579,5.51091, +16886,76085,Unauthorized Production,,74,5.85069,5.51090, +16887,3585,Sorcerer: The Game of Magical Conflict,1975,234,5.61833,5.51090, +16888,290511,From Idiot to President,2019,37,6.19027,5.51090, +16889,285599,3 Things,2019,45,6.06889,5.51089, +16890,344177,Bananya: The Card Game,2023,83,5.81325,5.51088, +16891,30896,Fackel+Keule,2007,38,6.17105,5.51088, +16891,5819,Star Reporter,1937,38,6.17105,5.51088, +16893,209737,The Fairy Game,2016,57,5.95088,5.51087, +16894,42360,Space Pirates,2009,154,5.67370,5.51087, +16895,27678,Quest for the Auburn Pelt: A PageQuest Game,1997,40,6.13750,5.51087, +16896,289316,Saline,2020,31,6.31935,5.51086, +16897,18765,Shabadabada,2002,179,5.65084,5.51086,"18765, 431400" +16898,8330,Rapid Deployment Force (RDF),1983,41,6.12195,5.51086, +16899,318544,Jumpkins,2020,32,6.29375,5.51086, +16900,103755,Exposaurus,2011,37,6.18784,5.51086, +16901,727,Chinese Civil War: 1946-1949,1979,56,5.95804,5.51086, +16902,505,Goldener Drache,1992,114,5.73026,5.51084, +16903,25470,Summertime,2006,151,5.67649,5.51084, +16904,47994,Five-up,1959,42,6.10595,5.51084, +16905,186141,Tong,2015,66,5.88939,5.51083, +16906,3558,Quizzard,1987,78,5.83077,5.51082, +16907,60210,Korruptivity,2009,42,6.10476,5.51081,"60210, 234590" +16908,370963,Living Well Is the Best Revenge,2022,43,6.09070,5.51081, +16909,389429,Nutty Business,2023,54,5.97222,5.51080, +16910,418181,MARETTA,2024,42,6.10370,5.51080, +16911,163077,Dien Bien Phu,2015,38,6.16579,5.51079, +16912,41326,Curious George: Discovery Beach Game,2008,58,5.93966,5.51078,"41326, 76701" +16913,9409,Meister Scheibenkleister,2004,40,6.13250,5.51078,"9409, 104800" +16914,88296,BOLSA: the board game,2011,32,6.28750,5.51077, +16915,105866,Seven!,2011,39,6.14744,5.51076, +16916,239621,Human Era,2019,109,5.73853,5.51076, +16917,335155,Magic Market,2021,35,6.22000,5.51076, +16918,7679,Busine$$ GO,1996,32,6.28625,5.51076, +16919,209893,"Go, Go Little Penguin",2016,60,5.92400,5.51075, +16920,15335,Zur Kasse bitte!,2004,30,6.33667,5.51074, +16921,194974,DAWAK,2016,49,6.01633,5.51074, +16922,3924,Smart Mouth,2001,176,5.65148,5.51074, +16923,1173,Millionenspiel,1982,116,5.72414,5.51073, +16924,245376,Yu-ca-tan,2018,99,5.76061,5.51072, +16925,14934,Mr. Lincoln's War: Army of the Potomac,1983,35,6.21714,5.51072,"14934, 17892" +16926,236114,Hida-furukawa,2017,47,6.03638,5.51071, +16927,232510,Timberman,2017,39,6.14359,5.51070, +16928,353455,Pass the Pasta,2021,30,6.33333,5.51070, +16928,94485,Lost Puppies,2011,30,6.33333,5.51070, +16930,8008,The Construction Game,1993,87,5.79425,5.51069, +16931,6221,Caper,1970,31,6.30645,5.51069, +16932,39802,Mountain of Inferno,2009,186,5.64323,5.51069, +16933,19781,Save the Whales,1978,34,6.23529,5.51068, +16934,251688,Glover,2018,36,6.19444,5.51067, +16935,362874,Barrakuda,2022,55,5.95818,5.51067, +16936,2839,Fair Play,1997,79,5.82215,5.51067, +16937,127434,Taschkent,2012,38,6.15789,5.51066, +16938,208316,3UP 3DOWN,2016,89,5.78678,5.51065, +16939,91440,Expedition Dino,2011,86,5.79640,5.51065, +16940,7270,GOLO,1999,260,5.60517,5.51065, +16941,348442,Escape Quest: Search for the Lost Treasure,2018,31,6.30323,5.51065, +16942,180339,Roadkill Rivals,2015,41,6.10976,5.51065, +16942,369623,StegegetS Moomin,2023,41,6.10976,5.51065, +16944,21040,Waterloo: The Fate of France,2007,60,5.92000,5.51065, +16945,231273,TerrorEyes,2017,58,5.93408,5.51065, +16946,166071,Combate de San Lorenzo,2014,42,6.09524,5.51064, +16947,11476,The Atlanta Campaign: Bald Hill and Ezra Church,1993,71,5.85634,5.51064,"11476, 332667" +16948,310271,Matchi,2020,40,6.12425,5.51064, +16949,4247,Boarding Party,1982,62,5.90645,5.51064, +16950,140940,In the City: Origins,2013,73,5.84658,5.51063, +16951,172642,Dynamite: The Game,2015,39,6.13872,5.51062, +16952,9248,Taxi!,,48,6.02083,5.51062, +16953,10757,Marco Polo: Dragonda,1982,49,6.01020,5.51061, +16954,16826,Barbarossa Solitaire,2002,32,6.27500,5.51060, +16955,156077,A Fistful of Dinero,2015,72,5.85000,5.51059, +16956,8406,Operation Solace,1990,49,6.00918,5.51059, +16957,103638,The Bridge to Treasure Cave,2011,135,5.69156,5.51059, +16958,131444,Like Dice,2012,46,6.04130,5.51058, +16959,4393,Elevator Eddie,1999,65,5.88615,5.51058, +16960,8220,Civil War,1961,70,5.85929,5.51058, +16961,286738,Contra: The Board Game,2022,85,5.79765,5.51058, +16962,179320,High Command Rapid Engagement,2015,50,5.99840,5.51057, +16963,169393,The Lord of the P.I.G.S.,2014,79,5.81895,5.51056, +16964,29258,El Último Puente,1984,37,6.16892,5.51056, +16965,5348,"Khe Sanh, 1968",2002,38,6.15132,5.51056, +16966,179552,True Stories,2015,40,6.11875,5.51055,"179552, 200707" +16967,125326,Sedition Wars: Battle for Alabaster,2013,320,5.58650,5.51054, +16968,67609,Way of the Dragon,2010,196,5.63454,5.51054, +16969,4620,The Prestel New York Architecture Game,2002,66,5.87879,5.51054, +16970,347616,Manda Huevos!,2021,51,5.98627,5.51052, +16971,173292,Cup-A-Cup,2015,55,5.95164,5.51052, +16972,355247,Echt Spitze,2022,61,5.90820,5.51052, +16973,309030,The Second Most Perfect Moment,2020,176,5.64830,5.51051,"251445, 309030" +16974,29433,Buen Viaje,,40,6.11625,5.51050, +16975,200407,Rummy 17,2016,50,5.99500,5.51050, +16976,5854,Azuma,1992,68,5.86656,5.51050, +16977,329409,Squid Inc.,2022,48,6.01458,5.51049, +16978,19534,Blitzkrieg 1940: Hannut et Stonne,2005,45,6.04778,5.51048, +16979,76447,Five Fingered Severance,2011,168,5.65433,5.51048, +16980,124264,Zombies at Your Heels,2012,32,6.26562,5.51048, +16980,372973,UNO Party!,2022,32,6.26562,5.51048, +16982,23270,Paddle Pool,1970,47,6.02447,5.51047, +16982,115944,another damn Civilization game,2011,47,6.02447,5.51047, +16984,1529,Ramses,1988,30,6.31500,5.51046, +16985,235821,Űrcsempészek,2016,36,6.18056,5.51046, +16986,156113,Grim End Manor,2014,46,6.03478,5.51046, +16987,97339,Compañeros,2011,57,5.93333,5.51045, +16988,1171,Ricochet,1996,108,5.73361,5.51045, +16989,255173,Pirates: The City of Skulls,2013,49,6.00184,5.51044,"255171, 255173" +16990,3435,Zwergen Ziehen,1997,110,5.72918,5.51043, +16991,93044,Tohuwabohu,2011,72,5.84463,5.51043, +16992,160420,Catalogue,2014,39,6.12692,5.51042, +16993,109936,Fliegende Teppiche,2011,68,5.86397,5.51042, +16994,155113,Ark of Animals,2014,64,5.88594,5.51042, +16995,67066,Zingo! 1-2-3,2009,45,6.04444,5.51042, +16996,10258,Strike North,1996,46,6.03261,5.51041, +16997,180157,Magical Treehouse,2015,85,5.79294,5.51041, +16998,4237,"El Alamein: Battles in North Africa, 1942",1973,47,6.02128,5.51041, +16998,116849,Rimtik,2011,47,6.02128,5.51041, +17000,205884,Schwupps,2016,75,5.83053,5.51041, +17001,173057,Go Fish Yourself,2015,58,5.92414,5.51040,"173057, 173130, 173131" +17002,26918,"Flintlock: Black Powder, Cold Steel - Volume I: Carolina Rebels",2008,63,5.89127,5.51040,"18290, 26918" +17003,166333,Primiera,2014,39,6.12564,5.51040, +17004,3046,"Red Sun/Red Star: The Nomonhan Campaign, 1939",1993,78,5.81795,5.51040, +17005,62637,Viewpoint,2009,67,5.86806,5.51039, +17006,361186,Exhaust,2022,38,6.14088,5.51039, +17007,85999,Black Stories Stadt-Land-Tod,2010,37,6.15676,5.51037,"85999, 330506" +17008,178683,Uglydoll: Babo's Cookies,2015,47,6.01915,5.51037,"11621, 178683" +17009,7081,Portable Adventures: Lair of the Rat-King,2003,97,5.75689,5.51037, +17010,392836,The Lunar Dial,2023,38,6.13947,5.51036, +17011,337958,Crimes & Capers: High School Hijinks,2021,44,6.05341,5.51036, +17012,7606,Realm Lord,2003,30,6.30667,5.51036, +17013,63067,Zombie Ninja Pirates,2010,81,5.80494,5.51034, +17014,256915,Dice & Dragons,2018,111,5.72523,5.51034, +17015,3198,Hecht im Karpfenteich,1990,44,6.05227,5.51034, +17015,13091,Megaman NT Warrior Trading Card Game,2004,44,6.05227,5.51034, +17017,1936,Paparazzo,1994,83,5.79759,5.51034, +17018,149322,"Cthulhu!!!: Hastur La Vista, Baby!",2014,111,5.72511,5.51033, +17019,159021,AlakaSLAM,2014,31,6.27903,5.51033, +17020,260901,Kakerlacula,2018,95,5.76105,5.51033, +17021,353209,Ультиматум Синдиката,2021,30,6.30410,5.51032, +17022,1581,London Cabbie Game,1971,84,5.79375,5.51032, +17023,120000,Shadow Era,2012,88,5.78068,5.51031, +17024,220198,BOLD,2016,100,5.74820,5.51031, +17025,294348,Top Gun Strategy Game,2020,230,5.61367,5.51031, +17026,111841,Top Promoter,2011,49,5.99510,5.51030, +17027,69823,The Demise of Dr. Frankenstein,2010,34,6.20882,5.51030, +17028,293586,Dungeon Party,2021,166,5.65331,5.51029,"293586, 360675" +17029,372612,Fisherman,2022,31,6.27581,5.51029, +17030,2198,Ergo,1977,73,5.83507,5.51028, +17031,88301,Biljard,2010,43,6.06163,5.51028, +17032,145929,Hop la bille,2013,30,6.30000,5.51027, +17032,51818,Sneaking Mission: Solo,2009,30,6.30000,5.51027, +17032,173878,We Have Goats!,2015,30,6.30000,5.51027, +17035,277424,Narwhal Free for All,2019,55,5.94091,5.51027, +17036,323377,Mind the Gap,2020,174,5.64636,5.51027, +17037,191110,Sugi,2016,158,5.66013,5.51026, +17038,36381,Taxi,2007,58,5.91843,5.51026, +17039,184012,NasconDino,2014,34,6.20621,5.51026, +17040,168220,"Deal, Gentlemen Collectionneurs",2014,41,6.08732,5.51026, +17041,8470,"Pearl Harbor: The War Against Japan, 1941-1945",1977,87,5.78218,5.51026, +17042,245503,Abra Kazam!,2018,117,5.71239,5.51025, +17043,250905,カゲロウ (Mayfly),2016,35,6.18571,5.51025, +17043,164187,The Battle of Bushy Run,2014,35,6.18571,5.51025, +17043,43295,Distrito 21,1987,35,6.18571,5.51025, +17046,189816,Taco Takeover,2015,55,5.94000,5.51025, +17047,194184,Silly Street,2016,41,6.08659,5.51024, +17048,138167,Я твоя понимай,2012,37,6.14865,5.51024, +17049,107834,Montana,2012,38,6.13158,5.51024, +17050,191473,Speed Dice,2014,78,5.81282,5.51023, +17051,54745,Scene It? The Simpsons Deluxe Edition,2009,181,5.64055,5.51023, +17052,3554,Rich Uncle,1946,90,5.77222,5.51022, +17053,4298,Beachhead: A Game of Island Invasions in the South Pacific 1942-1944,1980,52,5.96346,5.51022, +17054,69292,Guardians of Graxia,2010,107,5.73037,5.51021, +17055,35901,Verfühlt nochmal!,2003,44,6.04545,5.51021, +17056,20645,Tenakee,2005,177,5.64316,5.51020, +17057,234754,Attack of the Kaiju,2017,36,6.16389,5.51020, +17058,37142,There Must Be a Victory,2009,46,6.02174,5.51020, +17059,22048,Trivial Pursuit: DVD – Disney Edition,2005,98,5.75025,5.51020, +17060,124647,Top This! A Pizza Flicking Game,2014,161,5.65627,5.51020, +17061,5957,"Tito and his Partisan Army: Yugoslavia, 1941-45",1980,174,5.64517,5.51018, +17062,35610,3·4 = Klatsch!,2008,41,6.08228,5.51017, +17063,1960,Last Word,1985,122,5.70239,5.51017, +17064,270957,Palm Trees,2019,48,5.99854,5.51016, +17065,12291,Animal Party,2004,257,5.60136,5.51016, +17066,13786,Monogamy,2001,71,5.84028,5.51016, +17067,31138,Amazing Space Venture,2007,80,5.80312,5.51016, +17068,257076,Vollpfosten,2018,51,5.96961,5.51016, +17069,240423,Marvel Contest of Champions: Battlerealm,2018,91,5.76757,5.51015, +17070,148049,Heroes of the Three Kingdoms,2013,38,6.12632,5.51015, +17071,246754,Zoinx!,2018,112,5.71920,5.51015, +17072,302676,Clumsy Thief: Junior,,75,5.82209,5.51014,"148660, 302676" +17073,285526,Hans im Glück,2019,30,6.29000,5.51014, +17074,43403,Lost Dice,2009,33,6.21818,5.51013,"43403, 158894" +17075,20642,CubiCup,2004,48,5.99688,5.51013, +17076,393525,Doctor Rat,2023,37,6.14054,5.51011, +17077,218854,Invisible Ink,2017,73,5.82960,5.51011, +17078,52626,Family Alias,1998,67,5.85821,5.51011, +17079,34096,Hotel,2008,78,5.80897,5.51011, +17080,886,Der Garten des Sonnenkönigs,1996,163,5.65307,5.51010,"886, 997" +17081,347107,18 Holes: Course Architect,2022,33,6.21515,5.51009, +17082,5134,Peg Poker,1993,45,6.02711,5.51009, +17083,137179,Deck of Thieves,2013,83,5.79036,5.51008, +17084,104809,Kleiner Obstgarten,2011,74,5.82432,5.51008, +17085,202776,Imps: Devilish Duels,2017,37,6.13784,5.51007, +17086,229955,Nutz!,2017,41,6.07626,5.51006, +17087,154878,Little Dungeon: Turtle Rock,2014,89,5.77079,5.51006, +17088,70325,The major four of Heizei,2010,30,6.28333,5.51006, +17089,90016,Tricky,2011,67,5.85597,5.51005, +17090,334748,5 More Minutes,2021,33,6.21212,5.51004, +17091,9343,Stapelei,2001,34,6.19118,5.51004, +17092,344659,The Game of Saying 'Huh?!',2017,35,6.17143,5.51004,"344659, 407557" +17093,14377,Windschatten,2004,45,6.02422,5.51003, +17094,333672,Foosketball,2021,33,6.21061,5.51002, +17095,94484,Stone Soup,2011,97,5.74835,5.51002, +17096,130520,Kumbu: Dubbelzijdig Kaartspel,2012,39,6.10256,5.51002, +17097,118001,Kleine Fotosafari,2012,100,5.74100,5.51001, +17098,153432,Blöder Sack,2014,71,5.83521,5.51001, +17099,4092,wordXchange,2000,88,5.77228,5.51001, +17100,35466,With Sword and Shield,2008,42,6.05952,5.51001, +17101,3417,Tribulation,1974,97,5.74794,5.51001, +17102,65796,Big Pirate,,43,6.04651,5.51000, +17103,209661,Supernatural Socks,2018,36,6.15056,5.51000, +17104,386475,Tricky Badger,2023,57,5.91404,5.50998, +17105,29291,Tako Judo,2007,47,6.00000,5.50998, +17106,176115,Bad Detectives,2015,32,6.22969,5.50998, +17107,36538,Dracula: El Vampiro del Castillo,1986,49,5.97959,5.50998, +17108,254695,Inoka,2018,165,5.64939,5.50997, +17109,392809,Happy Fox,2023,30,6.27667,5.50997, +17110,265948,Risk: Rick and Morty,2018,31,6.25161,5.50997, +17111,339475,Jinx,2021,43,6.04419,5.50996, +17112,185028,Giraffometer,2015,125,5.69360,5.50995, +17113,164300,Pixel Guardians,2015,33,6.20545,5.50995, +17114,137047,Pets,2012,60,5.89167,5.50993, +17115,4445,Delphi,2002,113,5.71239,5.50992, +17116,5322,LEGO Soccer,2000,83,5.78554,5.50992, +17117,8365,Napoleon at Lutzen,1984,57,5.91123,5.50992, +17118,227981,Black Stories Investigation,2017,38,6.11184,5.50992, +17119,343228,Crystallized,2021,79,5.79937,5.50991, +17120,267565,Brain Fart,2018,51,5.95784,5.50990,"206063, 267565" +17121,171543,Pronto,2015,73,5.82260,5.50990, +17122,191923,Roadkill,2017,68,5.84559,5.50990, +17123,3885,Gold Digger,1998,87,5.77184,5.50988, +17124,35371,El Juego de la Liga,2003,52,5.94808,5.50988, +17125,159410,Alpha Bandits,2014,33,6.20000,5.50987, +17126,8446,Campaigns in the Valley,1988,55,5.92364,5.50987, +17127,10214,The Hundred Years War,1995,58,5.90172,5.50985, +17128,21219,Red Hot Silly Dragon,2005,119,5.70084,5.50985, +17129,17037,100 Strategic Games for Pen and Paper,2002,30,6.26667,5.50984, +17129,224663,Tié,2017,30,6.26667,5.50984, +17131,233080,Book of Dragons,2018,87,5.77080,5.50984, +17132,40651,Too Many Monkeys,2009,244,5.60287,5.50984, +17133,247979,Opráski sčeskí historje,2017,31,6.24194,5.50984, +17134,38330,Quäsenbö,2008,32,6.21875,5.50983, +17135,1087,Matschig,1998,139,5.67302,5.50983, +17136,136032,A Thunder Upon the Land: The Battles of Narva and Poltava,2013,43,6.03721,5.50983, +17137,8324,The China War: Sino-Soviet Conflict in the 1980s,1979,190,5.62916,5.50983, +17138,587,Sumera,1999,30,6.26500,5.50982,"587, 279972" +17139,2942,Admirals,1972,208,5.61870,5.50982, +17140,10095,Pogo,1998,36,6.13889,5.50982, +17141,194496,Risk: Captain America – Civil War Edition,2016,98,5.74082,5.50981, +17142,21716,La Guerre de Troie,2006,40,6.07500,5.50980, +17143,240825,Planetopia,2019,41,6.06098,5.50980, +17144,156430,Agents Secrets,2014,37,6.12027,5.50979, +17145,27730,Eollis: Pirates des Vents,2007,63,5.86825,5.50979, +17145,131200,Quarantine Z,2013,63,5.86825,5.50979, +17147,9560,Indus,2004,342,5.57576,5.50978, +17148,165552,Shark Mania,2014,149,5.66121,5.50978, +17149,187200,Germantown: Washington Strikes,2015,35,6.15429,5.50978, +17150,153830,Tic Talk,2012,131,5.68176,5.50977,"105409, 153830, 284472" +17151,256982,Soundiculous,2018,50,5.96000,5.50976, +17152,11195,Karottenklau,2004,135,5.67644,5.50976, +17153,122069,The Land of Enin,2012,51,5.95098,5.50975, +17154,68743,Jin Li,2010,31,6.23548,5.50975, +17154,338692,"AdvanceQuest: Among I, The Fungi",2021,31,6.23548,5.50975, +17156,8835,Stars and Bars,1984,38,6.10132,5.50975, +17157,9512,"Chancellorsville: Pinnacle of Victory, April 30 - May 5, 1863",1992,49,5.96837,5.50974, +17158,199689,Tavern's Tales,2016,76,5.80526,5.50974, +17159,385415,Glom,2023,32,6.21141,5.50973, +17160,266778,We Rate Dogs: The Card Game,2019,46,5.99783,5.50973, +17161,179956,The Arabian Pots,2014,86,5.77070,5.50973, +17162,2669,Frog Juice,1995,598,5.54721,5.50972, +17163,300932,Last-Second Quest,2020,31,6.23226,5.50971, +17164,146707,Space Junk,2014,111,5.71137,5.50970, +17165,34065,Scrabble Me,2008,43,6.03023,5.50970, +17166,376656,The Traitors,2022,38,6.09868,5.50970, +17167,167951,Franky Reloaded,2014,65,5.85385,5.50970,"167951, 286781" +17168,234874,Fieber,2017,47,5.98511,5.50969, +17169,192275,Olympians War,2016,64,5.85852,5.50968, +17170,1750,Knots,1991,39,6.08205,5.50968, +17171,203818,Akua,2016,56,5.90804,5.50967, +17172,121295,Coven,2015,113,5.70708,5.50967, +17173,144865,Sushi Draft,2012,260,5.59542,5.50967, +17174,159570,SOS: Sheep in Trouble,2014,49,5.96429,5.50966, +17175,367761,Uptown,2022,36,6.12833,5.50966, +17176,32784,Russian Bank,,47,5.98340,5.50965, +17177,329505,La Maldición: Héroes de Lorthar,2020,45,6.00444,5.50965, +17178,313603,Trailz,2019,60,5.88067,5.50965, +17179,1091,Explosiv,1999,69,5.83203,5.50964, +17180,219374,Chicken out!,2017,45,6.00299,5.50962, +17181,104234,Sour Apples to Apples,2011,266,5.59307,5.50962, +17182,151530,Golf 'n' Roll,2014,42,6.03810,5.50962, +17183,9610,Travspelet med V65,1982,115,5.70261,5.50962,"3582, 9610, 10629, 282533" +17184,308663,7 Gods,2020,32,6.20312,5.50962, +17185,145765,Cucco 21,2012,64,5.85625,5.50962, +17186,3335,Ganoven Jagd,1983,44,6.01364,5.50961, +17187,235531,On Fire!!!,2017,34,6.16176,5.50961, +17187,245502,Banquet Royal,2018,34,6.16176,5.50961, +17189,7145,"Catz, Ratz and Batz",2003,56,5.90536,5.50961, +17190,113995,Jask,2010,37,6.10811,5.50960, +17190,6806,Nautic Miles,1977,37,6.10811,5.50960, +17192,167718,Escola de Dragões,2014,38,6.09211,5.50960, +17193,268377,11:59,2019,36,6.12389,5.50959, +17194,320043,Off Topic,2019,64,5.85500,5.50958, +17195,343313,Namaste,2021,31,6.22258,5.50958, +17195,4114,Ipswich,1983,31,6.22258,5.50958, +17197,265715,METAL,2019,43,6.02326,5.50958, +17198,4969,Manhunt,1972,55,5.91109,5.50957, +17199,4579,Pirates des Caraïbes,1997,65,5.84923,5.50957, +17200,7048,Big Top,2003,108,5.71389,5.50957, +17201,150422,"Bloody Ridge: Guadalcanal, 12-14 September 1942",2014,41,6.04756,5.50956, +17202,292810,Deckscape: The Art of Escape,2019,36,6.12222,5.50956, +17203,23613,La vallée de la mort,2006,74,5.80743,5.50956,"10974, 23613, 406158" +17204,1065,Vigo,1994,51,5.94118,5.50954, +17205,247488,King of Con,2018,37,6.10405,5.50954, +17206,185331,Fruit Salad,2015,157,5.64962,5.50953, +17207,74203,Dungeon Venture,2010,64,5.85313,5.50953, +17208,10215,The Fire Next Time,1998,33,6.17576,5.50953, +17209,183887,"Lisbon, The Gate to the World",2015,31,6.21871,5.50953, +17210,209667,Golden Snitch: Snitch Snatcher – The Quidditch Game,,84,5.77115,5.50953, +17211,419754,Keyframes,2024,41,6.04504,5.50952, +17212,33964,Shokoba,2007,135,5.67200,5.50951, +17213,228740,Kitten Klash,2018,130,5.67823,5.50951, +17214,6954,InterUrban,2003,63,5.85714,5.50949,"6954, 32263" +17215,169713,Monopoly: The Big Bang Theory,2014,64,5.85156,5.50949, +17216,126159,Mausgetrixt,2012,44,6.00682,5.50949, +17217,255341,"Hawaii, 1795: Kamehameha's War of Unification",2019,36,6.11667,5.50948, +17218,11899,Le Docte Rat,1988,107,5.71374,5.50947, +17219,291389,Lemmings,2019,32,6.19031,5.50945, +17220,7680,The Match Game,1963,39,6.06795,5.50944, +17221,166510,Magi Kitchen,2014,34,6.15000,5.50944, +17222,23656,Chuck-It Chicken!,2006,400,5.56388,5.50944,"23656, 30248" +17223,8361,Crimean Shield,1994,33,6.16818,5.50942, +17224,15483,Middle East Battles: Suez '56,2004,42,6.02667,5.50942, +17225,379821,Penny Dreadfuls of Victorian London,2023,30,6.23333,5.50941, +17226,9201,Spy,2004,650,5.54282,5.50941, +17227,320540,EXIT Adventskalender: Das geheimnisvolle Schloss,2019,31,6.20968,5.50941, +17227,342504,Amnesia,2021,31,6.20968,5.50941, +17229,28299,Bendomino Jr.,2007,132,5.67386,5.50941,"28298, 28299" +17230,3425,Skunk,1953,69,5.82377,5.50940, +17231,761,The Great Brain Robbery,2000,572,5.54729,5.50940, +17232,323742,Marshals,2021,40,6.05125,5.50940, +17233,8962,The Jewish War,2000,47,5.97021,5.50939, +17234,2974,Scoop,1953,138,5.66623,5.50938, +17235,277083,Black Stories Junior: Rainbow Stories,2019,38,6.07895,5.50938, +17236,172168,Tschakka Lakka: Die rasante Würfeljagd nach dem Tempelschatz,2015,70,5.81857,5.50938, +17236,1682,The Challenge,1990,70,5.81857,5.50938, +17238,358621,The Worst-Case Scenario Card Game,2021,102,5.72157,5.50938, +17239,4271,Artifact,1980,61,5.86393,5.50938, +17240,3376,The Company War,1983,40,6.05000,5.50937, +17241,273,Africa 1880,1997,145,5.65828,5.50936, +17242,11680,Agora,1996,33,6.16364,5.50936, +17243,215796,Spank the Yeti,2016,61,5.86311,5.50935, +17244,185393,El Macanudo,2015,47,5.96809,5.50935, +17244,202566,Fly High,2016,47,5.96809,5.50935, +17246,240134,I Spy Dig In,2017,48,5.95833,5.50934, +17246,299636,Jewel Heist,2020,48,5.95833,5.50934, +17248,24794,Line Up!,2002,45,5.98778,5.50933, +17249,4246,Checkpoint Omega,1983,30,6.22667,5.50933, +17250,5118,Deduction,1976,37,6.09089,5.50933, +17251,5707,Cuckoo Zoo,2002,184,5.62603,5.50931, +17252,12823,Harry Potter: Adventures Through Hogwarts Electronic 3-D Game,2001,36,6.10556,5.50931, +17253,6805,Air Empire,1961,37,6.08919,5.50930, +17254,270552,Turtle Mania,2022,32,6.17969,5.50930, +17255,346101,The Queen's Gambit: The Board Game,2021,119,5.68956,5.50930, +17256,133104,"Wilk, Koza i Kapusta",2012,38,6.07368,5.50930, +17257,197780,Smiley Games,2016,33,6.15909,5.50930, +17258,49435,Penny Arcade: The Card Game,2009,241,5.59826,5.50929, +17259,114231,Okavango,2011,30,6.22333,5.50929, +17260,269624,Barnyard Bunch,2019,66,5.83364,5.50928, +17261,120924,Hug Me,2010,43,6.00682,5.50927, +17262,172980,Double Mission: Beyond the Object,2015,33,6.15758,5.50927, +17263,148215,Sárkánytojás,2013,82,5.76988,5.50926,"148215, 257596" +17264,6119,Laser Attack,1978,79,5.77975,5.50926, +17265,22344,Fatal Rendez Vous,2006,53,5.91226,5.50926, +17266,3156,The Warriors of Batak,1982,48,5.95417,5.50926, +17267,158747,Knee Jerk,2015,66,5.83258,5.50925, +17268,7920,Snowstorm,1994,40,6.04250,5.50925, +17269,292494,Nessie's True Identity,2019,30,6.22000,5.50924, +17270,3669,Moon Base Clavius,1982,44,5.99364,5.50924,"3669, 165474" +17271,6005,Korea: The Mobile War,1987,69,5.81812,5.50924, +17272,1996,Face Off,1974,53,5.91132,5.50924, +17273,180389,Insektenhotel,2015,49,5.94408,5.50924, +17274,1138,Army of Darkness,1993,102,5.71804,5.50923, +17275,269258,Ratto Zakko,2019,33,6.15455,5.50923, +17276,236903,Snollygoster,2018,44,5.99318,5.50923, +17277,118294,Distraction,2012,55,5.89624,5.50923, +17278,61996,Deluges,2010,56,5.88929,5.50923, +17279,66457,House of Spirits,2010,47,5.96170,5.50922, +17280,180565,Die geheimnisvolle Drachenhöhle,2015,39,6.05385,5.50921, +17281,295687,"Trust Me, I'm a Doctor",2020,99,5.72364,5.50920, +17282,146227,DubbelYatzy,2013,31,6.19355,5.50920, +17282,24267,Hatu Matu: Chief of Easter Island,2006,31,6.19355,5.50920, +17284,4680,"Baton Rouge: Street Fighting in the Louisiana Capital, August 5, 1862",1990,80,5.77438,5.50920, +17285,285524,Lucky Langhals,2019,35,6.11486,5.50919, +17286,303074,Vowl,2020,33,6.15152,5.50919, +17287,389043,Picky Pixie,2023,44,5.99091,5.50919, +17288,6023,"Thunder at Luetzen: Opening Battles for Germany, 1813",1985,66,5.83030,5.50919, +17289,19725,Scene It? Harry Potter Deluxe,2005,48,5.95062,5.50919, +17290,367568,L'Imposteur,2021,35,6.11429,5.50918, +17290,308589,Chicken War,2020,35,6.11429,5.50918, +17292,207719,Hop le j'ton,2016,36,6.09722,5.50918, +17293,198634,Möbi,2015,69,5.81594,5.50918,"198634, 281208" +17294,259525,Mystical Seeds,2018,59,5.86780,5.50917, +17295,1861,Dragonfire,1992,81,5.77037,5.50917, +17296,131000,Lovci pokladů,1987,41,6.02439,5.50916, +17297,323601,Potato Inferno!,2021,40,6.03725,5.50916, +17298,289986,Formz,2020,32,6.16844,5.50915, +17299,39587,Machi,2008,51,5.92255,5.50914, +17300,4239,Korea: The Mobile War 1950-51,1971,68,5.81912,5.50914, +17301,386767,Sherlock in Time,2023,36,6.09444,5.50913, +17302,860,Scotland the Brave,1998,58,5.87241,5.50913, +17303,25627,SeaRovers,2006,48,5.94792,5.50913, +17303,13031,ABC Monday Night Football,1972,48,5.94792,5.50913, +17305,38141,Bitwy II wojny światowej,1997,49,5.93878,5.50913, +17306,9418,"Eastwall: Battles for the Dnepr, September 1943 - February 1944",1997,39,6.04872,5.50912, +17307,1365,Olix,1994,44,5.98636,5.50910, +17308,27853,Aunt Millie's Millions,2007,79,5.77468,5.50910, +17309,11972,Monte Rolla,2003,58,5.87069,5.50909, +17310,154682,Gib Gas!,2014,70,5.80857,5.50909, +17311,29228,Caballeros del Aire: El Barón Rojo,1986,32,6.16406,5.50909, +17312,15509,Scene It? Movie Deluxe,2005,207,5.61031,5.50908, +17313,11407,Matching Madness,1985,67,5.82149,5.50907, +17314,343290,Artisans of the Taj Mahal,2020,30,6.20667,5.50907, +17315,117823,FitzIt,2012,157,5.64236,5.50907, +17316,136523,Full Moon,2013,58,5.86983,5.50907, +17317,7143,Crossbows and Cannon,1992,62,5.84597,5.50906, +17318,12956,futuRisiKo!,1992,290,5.58107,5.50905, +17319,201399,Multicity,2016,37,6.07324,5.50905, +17320,1336,Eden,2001,197,5.61497,5.50905, +17321,378626,PuzzLegend: Sherlock Holmes,2023,53,5.90277,5.50905, +17322,142584,"Moby Dick, or, The Card Game",2013,204,5.61132,5.50904, +17323,287304,15 Men,2019,71,5.80282,5.50904, +17324,42227,rioMino,1997,77,5.77935,5.50902,"2935, 42227" +17325,255651,Pocket Dragon,2018,88,5.74545,5.50902, +17326,166248,Release!,2014,68,5.81471,5.50901, +17327,37059,Charioteer,2008,35,6.10286,5.50901, +17328,378271,The Uzzle,2021,59,5.86068,5.50899,"378271, 409745" +17329,142859,The Offensive Band Name Generator,2014,34,6.11912,5.50899, +17330,25433,Phutball,1982,30,6.20000,5.50899, +17331,259360,Erbsenzählen,2018,37,6.06916,5.50898, +17332,23304,"""Oh My God! There's An Axe In My Head."" The Game of International Diplomacy ",2014,91,5.73670,5.50898, +17333,121787,RYŪ,2015,274,5.58453,5.50897, +17334,4843,Give Me Liberty,1992,56,5.87857,5.50897, +17335,361064,Starfinder: Pirates of Skydock,2022,34,6.11765,5.50897, +17336,5221,Quantum,1975,35,6.10000,5.50897, +17337,123514,Tweegles,2012,72,5.79583,5.50895, +17338,179433,Creature College,2016,50,5.92200,5.50895, +17339,66551,Odin's Table,2010,111,5.69486,5.50895, +17340,1945,Ultimatum,1985,75,5.78400,5.50894, +17341,33625,Indicios,1990,53,5.89811,5.50894, +17342,269148,Pig Hole,,42,6.00000,5.50894, +17343,93134,Einfach tierisch,2011,46,5.95700,5.50894, +17344,7051,"Kampfpanzer: Armored Combat, 1937-40",1973,110,5.69627,5.50893, +17345,8193,Chainmail,1971,101,5.71287,5.50893, +17346,106935,Ichigorilla,2009,46,5.95652,5.50893, +17347,124761,Famous Fairways: The World's Smallest Golf Game,2012,47,5.94681,5.50892, +17348,232385,Rat Trap,2017,49,5.92857,5.50891, +17349,300082,Rip Off,2020,41,6.00976,5.50890, +17350,14163,Foto-Electric Football,1941,46,5.95500,5.50890, +17351,12539,Amnesia,1990,54,5.88889,5.50890, +17352,33723,LeCardo,1998,77,5.77532,5.50889, +17353,31858,Geominos,2007,33,6.13030,5.50889, +17354,4799,Dicemaster: Cities of Doom,1996,123,5.67558,5.50889, +17355,8753,Grand Army of the Republic,1988,52,5.90288,5.50888, +17356,183346,My Very First Games: Little Garden,2015,58,5.86207,5.50888, +17357,347912,Reflecto,2022,56,5.87446,5.50888, +17358,355249,Jurassic World: Rückkehr zur Isla Nublar,2022,37,6.06216,5.50887, +17359,286661,Chope!,2019,42,5.99619,5.50887, +17360,5231,Orcwars,1988,61,5.84426,5.50887, +17361,8788,Grenadier: Tactical Warfare 1680-1850,1972,63,5.83333,5.50886, +17362,32410,Papillons,2007,131,5.66489,5.50886,"32410, 198991" +17363,90968,Knock Your Blocks Off,2011,86,5.74651,5.50886, +17364,63788,Freecell,,198,5.61200,5.50885, +17365,166443,Sing it!,2014,54,5.88704,5.50885, +17366,262444,Call of Nature,2003,32,6.14687,5.50885, +17367,378625,PuzzLegend: Robinson,2023,44,5.97273,5.50885, +17368,331653,Moctezuma,2021,65,5.82269,5.50884, +17369,56759,Tricky Trek,2009,98,5.71684,5.50884, +17370,32855,Hands Up!,2007,36,6.07500,5.50884, +17371,260233,Peppers of the Caribbean,2018,73,5.78785,5.50883, +17372,2264,Isaac Asimov's Super Quiz,1982,83,5.75422,5.50883, +17373,114405,Astronauts: The Ultimate Space Game,2011,85,5.74824,5.50882, +17374,104029,Node,2011,41,6.00488,5.50882, +17375,87927,Rock 'n Roll,2010,30,6.18570,5.50880, +17376,25925,落水邸物語 (Origin of Falling Water),2005,91,5.73187,5.50880, +17377,6466,Pirates' Gold,1990,80,5.76250,5.50880, +17378,235699,Würfelblitz,2017,38,6.04211,5.50879, +17379,13371,"Ia Drang, Vietnam 1965",1999,34,6.10441,5.50878, +17380,411542,Harry Potter Miniatures Adventure Game: Wizarding Duels Starter Box,2023,232,5.59603,5.50878,"246744, 411542" +17381,279902,Le Roi Sommeil,2019,52,5.89808,5.50878, +17382,178498,Yokai Battle,2016,35,6.08714,5.50878, +17383,362233,Fast West,2022,30,6.18333,5.50877, +17384,153232,The Nations Assemble,2013,31,6.16129,5.50877,"153122, 153128, 153232, 153234" +17385,186461,Hunt: The Unknown Quarry,2015,43,5.97907,5.50877, +17386,209447,BaRRacuda,2016,89,5.73596,5.50877,"209447, 428080" +17387,346747,Pier 18,2021,189,5.61570,5.50876, +17388,24373,Bumper Car Arena,2006,31,6.15968,5.50875, +17389,143842,Molino Del Rey: Gateway to Mexico City,2013,32,6.13906,5.50874, +17390,178229,Adventure Time: Adventures in the Land of Ooo,2015,38,6.03947,5.50874, +17391,231040,Nitro,2017,60,5.84444,5.50873, +17392,102097,Zombies en La Moneda: Juego de Cartas,2011,30,6.18000,5.50873, +17393,153372,Fäkalini: Klempner & Zauberer,2014,53,5.88868,5.50873, +17394,10175,The Wonderful World of Disney Trivia 2: The Sequel,2000,53,5.88860,5.50873, +17395,328270,Royal Secrets,2021,31,6.15806,5.50873, +17396,346430,Seefahrt ins Ungewisse,2021,43,5.97674,5.50872, +17397,178933,Compact Bowling,2015,56,5.86786,5.50872, +17397,176859,MasterIslands,2015,56,5.86786,5.50872, +17399,6706,Xerxes,1973,45,5.95556,5.50872, +17400,13115,Taki,1985,216,5.60176,5.50871, +17401,12519,Fontenoy 1745,1996,47,5.93617,5.50871, +17402,9070,Blood Race,1999,36,6.06667,5.50871, +17403,113517,Quadefy,2011,61,5.83779,5.50870, +17404,266382,Walking Doggos,2018,95,5.72000,5.50870,"266382, 340813" +17405,4963,Enemy Agent,1975,31,6.15484,5.50868, +17406,15334,Sag's mit Symbolen,2005,44,5.96364,5.50868, +17407,12296,Senator,2004,525,5.54681,5.50868, +17408,274053,Vintage Racers,2019,57,5.85965,5.50867, +17409,210935,10 Dwarves,2016,34,6.09706,5.50867, +17409,355274,Die Villa der Vampire,2022,34,6.09706,5.50867, +17411,16474,"Geißlein, versteck dich!",2003,46,5.94348,5.50867, +17412,3062,Pyramis,1991,35,6.08000,5.50867, +17413,2637,Rome At War I: Hannibal at Bay,2000,122,5.67254,5.50867, +17414,104814,Magic ABC Duel,2011,42,5.98466,5.50867, +17415,17158,Dancing Dragons,2005,82,5.75244,5.50867, +17416,265527,Portolano,2019,31,6.15323,5.50866, +17417,131474,Nacht der magischen Schatten,2012,32,6.13281,5.50866, +17418,5876,Grav-Ball,1982,52,5.89269,5.50866, +17419,8725,Red Star/White Star: Tactical Combat in Europe in the 1970's,1972,108,5.69352,5.50866, +17420,5174,Lingua,1969,51,5.89961,5.50864, +17421,6687,Lords Of The Middle Sea,1978,36,6.06250,5.50864, +17422,361049,Nowa Gwinea,2022,30,6.17267,5.50864, +17423,93039,The Racing Horse Game,,32,6.13062,5.50863, +17424,15139,Rapidcroco,2004,163,5.63067,5.50862,"15139, 65467" +17425,24189,Pustekuchen,2003,82,5.75110,5.50862, +17426,205596,Darwin's Dice,2016,32,6.12969,5.50862, +17427,163144,Scheffeln,2014,85,5.74235,5.50861, +17428,8816,Frenzy,2003,220,5.59886,5.50861, +17429,166764,Würfel Kung Fu,2014,48,5.92222,5.50861, +17430,94683,Coronation,2010,53,5.88302,5.50860, +17431,77454,Trivial Pursuit: Tim Burton's The Nightmare Before Christmas Quick Play Collector's Edition,2010,51,5.89755,5.50860, +17432,130837,SpidMonsters,,33,6.10909,5.50859, +17433,183874,Balloon Challenge,2015,36,6.05833,5.50858, +17434,316049,"Ready, Set, Sloth!",2020,61,5.83279,5.50857, +17435,362888,Boo-ty Call,2023,30,6.16667,5.50856, +17435,330582,SenbaZuru,2021,30,6.16667,5.50856, +17437,21677,Scene It? Music,2005,121,5.67165,5.50856,"21677, 38946" +17438,259972,Roll & Wall,2018,72,5.78264,5.50855, +17439,33288,T.E.G. II,1982,60,5.83733,5.50855, +17440,65575,Hide and Eeek!,2010,54,5.87370,5.50855, +17441,357079,Yosemite,2022,47,5.92766,5.50854, +17442,406706,HIT,2024,30,6.16500,5.50854, +17443,147015,Monopoly: Go,,37,6.04054,5.50853, +17444,240108,Pocket Sub,2018,160,5.63131,5.50852, +17445,3681,Zulu Attack,1982,31,6.14194,5.50851, +17446,202975,Galatune,2016,37,6.03892,5.50851,"202975, 257643" +17447,12600,G.I. Joe TCG,2004,80,5.75375,5.50851, +17448,312206,Böse Kuh,2020,33,6.10303,5.50851, +17449,3001,The Godfather Game,1971,71,5.78451,5.50850, +17450,19417,Third World Debt,2005,46,5.93370,5.50848, +17451,21412,Take Your Pick,2005,53,5.87736,5.50848,"21412, 28613" +17452,19040,ChiZo RISING,2005,172,5.62209,5.50847, +17453,6526,Dragon Lords,1993,33,6.10000,5.50846, +17454,2038,Skirrid,1977,150,5.63840,5.50845, +17455,18891,Raceway 57,2005,132,5.65610,5.50845, +17456,216629,Slap It!,2019,52,5.88269,5.50844, +17457,1291,Input,1984,148,5.63986,5.50843, +17458,40417,Der Palast von Eschnapur,2009,162,5.62840,5.50843, +17459,204410,Kamozza (貨モッツァ),2012,32,6.11562,5.50842, +17460,341548,Kardashev Scale,2022,51,5.88922,5.50842, +17461,179227,3 Seeds: Reap Where You Sow,2016,61,5.82623,5.50840, +17462,242547,"Tschu-tschu, kleine Eisenbahn",2018,40,5.99300,5.50840,"19277, 242547" +17463,322009,Allegory,2021,38,6.01842,5.50840, +17464,208360,Venture Party,2017,44,5.94886,5.50840, +17465,143839,Chantilly: Jackson's Missed Opportunity,2013,45,5.93889,5.50840, +17466,208888,Il Trono di Mortadella,2016,37,6.03135,5.50839, +17467,9175,The 24 Card Game,,30,6.15333,5.50839, +17468,109005,Jagdfieber,2011,91,5.72088,5.50838, +17469,3569,Robin Hood,1990,92,5.71848,5.50838, +17470,10855,Le Paresseux,1990,45,5.93778,5.50838, +17471,8253,Moscow Burning: The Next Russian Civil War,1996,57,5.84737,5.50838, +17472,40657,Funny Business,2009,32,6.11208,5.50837, +17473,121324,Operation Cerberus: The Channel Dash,2011,46,5.92826,5.50837, +17474,40943,bOOLeO,2009,50,5.89400,5.50836,"40943, 62126" +17475,217838,Babylon Tower Builders,2017,34,6.07500,5.50835, +17476,291869,Rapid City,2019,30,6.15000,5.50834, +17477,282506,Woods of Tarnaris: Path to Luslaria,2019,31,6.12903,5.50834, +17478,6917,The High Crusade,1983,33,6.09091,5.50833, +17478,168535,Mops Royal,2014,33,6.09091,5.50833, +17480,227221,Click Click Boom,2017,39,6.00128,5.50833, +17481,175739,Pictopia: Disney Edition,2014,302,5.57199,5.50833, +17482,36690,Bump in the Night,2008,203,5.60296,5.50833, +17483,184443,BEARanoia,2015,71,5.77887,5.50833,"184443, 184671" +17484,4611,Haithabu,1975,37,6.02733,5.50832, +17485,85474,Verona,2010,60,5.82833,5.50832, +17486,69356,Kalua,2012,225,5.59364,5.50832, +17487,254103,Smiles & Daggers,2018,32,6.10812,5.50832, +17488,33157,Aviation Tycoon,2017,46,5.92500,5.50831, +17489,151078,Kung Fu,2013,83,5.73916,5.50831, +17490,194094,Verti-Go,2015,35,6.05571,5.50831, +17491,17166,Clout Fantasy,2005,403,5.55578,5.50830, +17492,40388,Dictator. Control,2005,44,5.94318,5.50830, +17493,261827,Jalan-Jalan,2018,32,6.10625,5.50829, +17494,355940,7Seas,2022,46,5.92391,5.50829, +17495,6406,Hannibal: The Second Punic War,1991,113,5.67743,5.50829, +17496,135431,Geek Battle: The Game Of Extreme Geekdom,2012,204,5.60196,5.50828, +17497,2014,Thrill,1996,48,5.90625,5.50828, +17498,350468,Hội Phố (Second Edition),2021,140,5.64457,5.50827,"288920, 350468" +17499,165584,Crowns,2014,52,5.87500,5.50827, +17500,18117,Schoko-Hexe,1990,174,5.61782,5.50826, +17501,147457,The Great Persuader,2013,56,5.84821,5.50825, +17502,175868,Metro 2033: Breakthrough,2015,70,5.78000,5.50825, +17503,13535,Boy Scouts,1912,36,6.03611,5.50824, +17504,29080,Twelve Men's Morris,,73,5.76849,5.50824, +17505,13830,Metallurgie,2004,103,5.69262,5.50823, +17506,31358,Cranium Triple Triumph,2007,62,5.81452,5.50823, +17507,355035,Zinga,2022,76,5.75789,5.50823, +17508,286714,Division: Throne Room,2020,41,5.97073,5.50822, +17509,235940,Chill & Chili,2017,55,5.85273,5.50821, +17510,204429,More Bloody Nights,2016,269,5.57860,5.50821,"169558, 204429" +17511,32280,Hættuspil,1998,69,5.78261,5.50821, +17512,25223,¿Resiste Stalingrado?,1984,45,5.92889,5.50821, +17513,30838,Les 7 Blasons,2007,39,5.99359,5.50821, +17514,35354,Dry Gulch Junction,2008,111,5.67865,5.50820,"1122, 35354" +17515,2958,Let's Buy Hollywood,1991,51,5.87908,5.50820, +17516,5554,Vampire,2003,137,5.64602,5.50819, +17517,4450,The Road to Vicksburg: The Battle of Champion Hill,1985,67,5.78955,5.50817, +17518,168055,Roots: A Game of Inventing Words,2015,43,5.94651,5.50817, +17519,235248,TopSpin,2018,33,6.07879,5.50816, +17520,144631,Futterneid,2013,124,5.65988,5.50816, +17521,2563,Hot Dog,1996,109,5.68073,5.50815, +17522,3457,Tabula,1990,97,5.70206,5.50815, +17523,427865,Souvenirs from Venice,2024,36,6.03056,5.50815, +17524,112233,FrankenDie,2012,61,5.81639,5.50815, +17525,378599,7 Rounds,2023,87,5.72414,5.50815, +17526,7080,Portable Adventures: 8th Grade,2003,78,5.74882,5.50814, +17527,377163,Magic 8 Ball: Magical Encounters Board Game,2022,38,6.00193,5.50813, +17528,451,Beutelschneider,1997,54,5.85556,5.50813,"451, 262383" +17529,17962,Cranium Bumparena,2005,132,5.65023,5.50813, +17530,360832,Death By Coconuts,2022,30,6.13333,5.50813, +17531,182796,Bardagi: The Claim for Gold,2016,61,5.81557,5.50813, +17532,355034,Valhalla Lemmings,2021,32,6.09375,5.50812, +17533,263992,Dodgy Dogs,2018,33,6.07576,5.50812, +17534,344251,Lucky Jack,2021,34,6.05882,5.50812, +17535,253803,Tiny Footprint,2018,36,6.02778,5.50811, +17536,13912,"The Sedan Campaign, 1870",2004,61,5.81443,5.50810, +17537,5216,Space Master: Star Strike,1988,39,5.98718,5.50810, +17538,11253,Okinawa: The Bloodiest Battle In The Pacific,1986,52,5.86731,5.50810, +17539,9263,The Forgotten War: Korea,1996,42,5.95238,5.50809, +17540,129988,Over/Under,2008,131,5.65050,5.50809, +17541,333515,Cards Against Disney,2018,93,5.70860,5.50808, +17542,137354,Trifecta,2013,45,5.92237,5.50808,"137354, 380941" +17543,376934,Reiner Knizia's Caesar,2023,32,6.09063,5.50808, +17544,32683,Scene It? Harry Potter Second Edition,2007,146,5.63562,5.50807, +17545,174404,Robot X,2015,66,5.79015,5.50807, +17546,42980,Myth: Pantheons,2010,246,5.58374,5.50807, +17547,22257,Joakim von Ankas fantastiska affärer,1989,48,5.89583,5.50807, +17548,17195,Gettysburg: Three Days in July,1995,38,5.99737,5.50806, +17548,293291,Superfly,2020,38,5.99737,5.50806, +17550,215919,Oh! Sushi Game,2016,32,6.08906,5.50806, +17551,4360,Attack in the Ardennes: The Battle of the Bulge,1982,72,5.76597,5.50805, +17552,24998,Tiki Mountain!,2007,226,5.59013,5.50804, +17553,178487,Bountytown,2015,31,6.10645,5.50804, +17554,495,Time Pirates,2000,269,5.57699,5.50804, +17555,202517,Wordstacker,2017,37,6.00919,5.50804, +17556,2753,Demon's Run,1981,53,5.85785,5.50804, +17557,10033,Monopoly: Las Vegas,2000,58,5.82759,5.50803, +17558,109718,Hunting Party,2011,88,5.71852,5.50803, +17559,117822,Ka'lide,2011,30,6.12500,5.50802, +17559,5880,Invasion: Sicily – Alexander vs Kesselring,1974,30,6.12500,5.50802, +17561,3494,Gran Gol,1998,32,6.08594,5.50802, +17562,5678,Thieves Guild,2003,46,5.90978,5.50801, +17563,1355,Willy Waschbär,2001,42,5.94762,5.50800, +17564,1560,Hero: A Game of Adventure in the Catacombs,1980,62,5.80565,5.50800, +17565,3793,Pig Pong,1986,102,5.68863,5.50799, +17566,173005,Gondola,2017,110,5.67545,5.50799, +17567,5797,America's Cup,2003,42,5.94643,5.50798, +17568,176286,A.D.A.P.T.,2016,135,5.64436,5.50798, +17569,153516,Zombeasts,2014,84,5.72683,5.50797, +17570,1689,War of the Networks,1979,30,6.12067,5.50797, +17571,320534,Monopoly: Star Wars The Mandalorian,2020,79,5.74000,5.50795, +17572,211212,Bearly Working,2017,34,6.04706,5.50795, +17573,1686,Spy vs Spy,1986,155,5.62613,5.50794, +17574,312630,Supercharged,2021,36,6.01667,5.50794,"15529, 312630" +17575,416832,Khiva,2024,51,5.86647,5.50793, +17576,130682,Air King,2012,167,5.61737,5.50792, +17577,28306,Inversé,2006,75,5.75160,5.50792, +17578,1031,TV Wars,1987,287,5.57146,5.50791, +17579,113332,Bookmaker,2012,48,5.88781,5.50791, +17580,1343,Mad Monks and Relics,1995,36,6.01417,5.50790, +17581,25920,Do You Worship Cthulhu?,2006,151,5.62857,5.50790, +17582,11414,Politics as Usual,2005,69,5.77174,5.50789, +17583,394751,3 Minute Crazy Café,2023,59,5.81638,5.50789, +17584,18908,Cactus Throne: The Mexican War of 1862-1867,2005,65,5.78692,5.50786, +17585,368412,Fake Art Inc.,2022,46,5.90217,5.50786, +17586,183777,"Wilson's Creek: Opening Round in the West, 10 August 1861",2015,39,5.97179,5.50784, +17587,22815,Situação Limite,2000,35,6.02417,5.50783, +17588,131006,Evil Intent,2014,104,5.68125,5.50782, +17589,270137,Rück's raus!,2019,35,6.02286,5.50781, +17590,119639,Heap,2012,131,5.64542,5.50781, +17591,162120,Schraube Locker,2014,63,5.79365,5.50781, +17592,36225,Playbook Football,2008,31,6.08871,5.50781, +17593,6087,Sicily '43: The Beginning of the End,1981,65,5.78462,5.50780, +17594,179561,Black Stories: Das Verhör,2015,40,5.95750,5.50780, +17595,16760,Richthofen,2002,41,5.94634,5.50779, +17595,42453,Triviathon,2008,41,5.94634,5.50779, +17597,131182,Swintus Junior,2012,70,5.76429,5.50778, +17598,53,Brauerei,1996,38,5.98026,5.50778, +17599,136563,Stack Up!,2013,76,5.74395,5.50778, +17600,283623,Knights of the Hound Table,2019,34,6.03529,5.50778, +17601,315066,Dirty Money: The Money Laundering Game,2021,35,6.02011,5.50777, +17602,232879,Hindenburg's Hour: The Tannenberg Campaign 1914,2017,38,5.97895,5.50776, +17603,3516,Option,1982,96,5.69427,5.50776, +17604,113311,Ghost Pirates,2012,52,5.85192,5.50776, +17605,257958,Storiez,2018,37,5.99081,5.50775, +17606,2151,Stomp!,1978,81,5.72840,5.50775, +17607,36649,Aquarium,2011,241,5.58178,5.50774, +17608,3805,Domino Dice,2000,55,5.83218,5.50774, +17609,234473,Coral Reef,2017,72,5.75556,5.50774,"122917, 208698, 234473, 324862, 377330" +17610,131126,Pescado,2012,36,6.00278,5.50773, +17611,5411,Die Schatzinsel,2002,37,5.98919,5.50772, +17612,4000,Scan,1970,102,5.68235,5.50772, +17613,34713,Desert Duel: First Alamein,2008,38,5.97632,5.50772, +17614,359499,Pescado Novo,2023,59,5.80932,5.50771, +17615,37694,Street Paintball,2008,74,5.74797,5.50771, +17616,23323,Multinational,,30,6.10000,5.50770,"23323, 186344" +17616,30865,Step by Step,1991,30,6.10000,5.50770, +17618,13829,Garten-Zwerge e.V.,2004,82,5.72439,5.50770, +17619,1354,Zaubercocktail,2001,155,5.62226,5.50770, +17620,244079,文絵のために (For Fumie),2017,45,5.90222,5.50770, +17621,73759,Kemomimi Panic,2010,36,6.00083,5.50770, +17622,130048,Activity: Gold Edition,1999,34,6.02941,5.50769, +17623,202945,Zona Mágica,2016,35,6.01429,5.50769, +17624,307772,Gelatinous,2020,73,5.75052,5.50768, +17625,194819,Make a Mess: Holy Cat Edition,2017,37,5.98649,5.50768,"194819, 418827" +17626,57183,Jurassic Wars,2009,39,5.96154,5.50767, +17627,1954,Kalahen,1989,81,5.72593,5.50766, +17628,369563,Four Corners,2023,42,5.92857,5.50766, +17629,42311,My First BrainBox,2008,43,5.91860,5.50766, +17630,3760,Trinity: Battleground,1997,45,5.90000,5.50765, +17631,17830,Miskatonic Madness,2005,46,5.89130,5.50765, +17632,127823,Terrible Swift Swordfish,2012,36,5.99722,5.50764,"67214, 127823" +17633,260292,Boom Party,2018,31,6.07613,5.50764, +17634,6047,Port Arthur: The Russo-Japanese War,1992,116,5.65948,5.50764, +17635,151089,Swintus 3D,2013,38,5.97105,5.50763, +17636,113513,Pathagon,2011,59,5.80593,5.50763, +17637,345966,"Heaven, Here I Come!",2021,42,5.92667,5.50763, +17638,3512,Doorways to Adventure,1986,53,5.83962,5.50763, +17639,2495,Boggle Bowl,1987,85,5.71435,5.50762, +17640,27939,Schneller als Kurz,2006,43,5.91628,5.50762, +17641,374018,ピンコンビトリオ (Pin Combi Trio),2022,42,5.92500,5.50760, +17642,11351,Demyansk Pocket,1991,32,6.05469,5.50759, +17643,32365,Bailen,1981,39,5.95641,5.50759, +17644,10765,Geist,2004,66,5.77273,5.50759, +17645,9791,¿Pasáran? The Spanish Civil War,2004,65,5.77615,5.50757, +17646,309816,Desert Pack,2020,32,6.05312,5.50757, +17647,235482,Utter Nonsense: Naughty Edition,2017,407,5.55045,5.50757,"161928, 235471, 235482" +17648,26956,Cranium Super Showdown,2006,48,5.87083,5.50756, +17649,129290,YOU are the Maniac!,2012,112,5.66295,5.50755, +17650,191205,The Ants Go Marching,2016,37,5.97784,5.50754, +17651,27949,Sortie,2007,53,5.83585,5.50754, +17652,22991,Mona Lisa Mysteries,2006,77,5.73312,5.50753, +17653,37332,Pietjesbak,,32,6.05000,5.50753, +17654,1192,Nanuuk!,1998,92,5.69620,5.50752, +17655,113402,Pom Pom,2011,34,6.01794,5.50752, +17656,262389,Alle gegen Rudi,2018,33,6.03333,5.50752, +17657,8366,Wellington Vs Massena,1985,56,5.81732,5.50752, +17658,59226,Beugró,2009,42,5.91905,5.50749,"59226, 429415" +17659,209411,Venecitas,2016,31,6.06452,5.50749, +17659,96410,Idol Project,2011,31,6.06452,5.50749, +17661,6184,Fury on Champlain,1994,32,6.04688,5.50748, +17661,23891,Die Kullerbande,2006,32,6.04688,5.50748, +17663,137931,Nada!,2013,337,5.55861,5.50747, +17664,225480,Turnspell,2016,36,5.98611,5.50747, +17665,154721,Boxes,2014,34,6.01418,5.50747, +17666,184900,Ophiuchus: The Thirteenth Constellation,2015,30,6.08167,5.50747, +17667,129287,War: Batalhas Mitológicas,2012,77,5.73117,5.50747, +17668,285699,Mine Deeper,2019,44,5.89886,5.50747, +17669,230885,"Guardians of the Galaxy, Vol. 2: Gear Up and Rock Out! An Awesome Mix Card Game",2017,38,5.96053,5.50746, +17670,4268,Razzle,1981,161,5.61429,5.50746, +17671,153484,Hedbanz Act Up!,2013,51,5.84466,5.50746, +17672,352625,Tiger Stripes: The Card Game,2021,39,5.94797,5.50745,"89977, 352625" +17673,224328,Showdown! The Samurai Card Game,2017,43,5.90698,5.50745,"172816, 224328" +17674,86587,Monster auf der Flucht,2010,79,5.72468,5.50744, +17675,4555,Das Blaue Amulett,1986,108,5.66620,5.50743, +17676,9681,Nosey Neighbor Card Game,1981,151,5.62093,5.50743, +17677,37680,The Heavens of Olympus,2011,143,5.62727,5.50743, +17678,19531,Charoodles,2005,30,6.07822,5.50742, +17679,7917,Granny's House,1985,39,5.94615,5.50742, +17680,2731,Upthrust,1987,33,6.02576,5.50742, +17681,18875,Alsace 1945,2005,98,5.68163,5.50740, +17682,297734,Ganesha,2020,141,5.62838,5.50740, +17683,293653,10 Nights,2020,57,5.80667,5.50739, +17684,110160,Old Men of the Forest,2011,264,5.57197,5.50739, +17685,106929,Top-A-Top,2011,91,5.69451,5.50738,"106929, 129649, 140627" +17686,1665,Airport,1972,38,5.95526,5.50738, +17687,3039,Swordquest,1979,40,5.93250,5.50737,"3039, 146467" +17688,309886,Worldwide Tennis,2020,105,5.66921,5.50737, +17689,14953,Backpacker,2004,300,5.56400,5.50737, +17690,15196,Flunkern,2005,112,5.65893,5.50736, +17691,381635,Sahwari,2023,70,5.74971,5.50735, +17692,132406,Shadow of the Sun,2013,41,5.92073,5.50735, +17693,119525,Antartik,2012,49,5.85306,5.50734, +17694,220701,Word-a-Melon,2017,45,5.88326,5.50733, +17695,197451,Rail Raiders Infinite,2017,392,5.55046,5.50733, +17696,28296,Gruble,1989,43,5.90000,5.50732,"28296, 30130" +17697,29317,War: Império Romano,2007,127,5.64022,5.50732, +17698,252404,Unnamed Farm Organisms,2018,31,6.05161,5.50731, +17699,180257,Molecular: The Strategic Chemistry Tile Game,2015,46,5.87391,5.50731, +17700,314115,Clue: The Golden Girls,2017,34,6.00294,5.50731, +17701,80028,The Game of LIFE: The Haunted Mansion – The Disney Theme Park Edition,2010,122,5.64533,5.50730, +17702,11547,Carambouille,2004,56,5.80714,5.50728, +17703,332779,Tolerance,2023,43,5.89767,5.50728, +17704,21717,Tempête sur l'Europe 1939-1945,2006,30,6.06667,5.50727, +17705,106821,Koniggratz: Blood & Iron Triumphant,2012,31,6.04839,5.50727, +17706,357868,4 aus Acht,2022,33,6.01515,5.50727, +17706,328784,Threepia,2021,33,6.01515,5.50727, +17708,131163,Ghost Hunt,2011,47,5.86383,5.50726, +17709,147039,Larceny,2013,34,6.00000,5.50726, +17710,9110,Superpowers at War,1985,35,5.98571,5.50726, +17711,231620,Food Chain,2017,81,5.71395,5.50726, +17712,3239,Nessie Hunt,1986,58,5.79517,5.50724, +17713,42309,BrainBox: Animals,2008,43,5.89535,5.50723, +17714,210019,The Xuanwu Gate Incident,2016,30,6.06333,5.50723, +17715,241489,Happy Bunny,2018,52,5.82788,5.50723, +17716,131304,Circus Grandioso,2012,65,5.76369,5.50723, +17717,393166,Asli,2023,72,5.73838,5.50722,"358196, 393166" +17718,190803,Apples to Apples: 15th Appleversary Edition,2015,31,6.04409,5.50721, +17719,356115,Dreams for Rebel Girls,2020,78,5.72051,5.50721, +17720,141102,DuCo,2013,120,5.64583,5.50721, +17721,162071,Vaults,2015,142,5.62430,5.50721, +17722,241205,Monopoly: Star Wars 40th Anniversary Special Edition,2017,38,5.94474,5.50721, +17723,59308,Volldampf voraus!,2009,34,5.99529,5.50719, +17724,352811,Stuff You Should Know,2021,31,6.04194,5.50719, +17725,156358,The Black Rose,2014,74,5.73108,5.50718, +17726,10845,Napoleon,1975,33,6.00909,5.50718, +17727,6127,High Stakes,1974,30,6.05833,5.50717, +17728,60369,Inquizitor,2010,38,5.94211,5.50716,"60369, 213169" +17729,172510,Asterix & Obelix: Mission Zaubertrank!,2017,59,5.78695,5.50716, +17730,307,Candidate,1991,187,5.59532,5.50715, +17731,5210,Scarab,2002,32,6.02187,5.50714, +17732,168895,Corrupted Kingdoms,2016,129,5.63464,5.50713, +17733,8262,Mücke mit Tücke,2003,31,6.03742,5.50713, +17734,6610,Spinergy,2000,108,5.65926,5.50712, +17735,8527,Superstition,1977,30,6.05467,5.50712, +17736,29741,Banqi,1970,40,5.91750,5.50712, +17737,12222,Ancients: Thapsos & Alexandria,1994,41,5.90732,5.50711, +17738,242550,Wobble King,2018,85,5.70000,5.50711, +17739,4232,SS Panzer: Bloodbath at Kursk,1996,73,5.73151,5.50710, +17740,65333,Das Magische Labyrinth Kartenspiel,2010,69,5.74449,5.50710, +17741,208406,Dig a Dino,2017,30,6.05267,5.50710, +17742,268275,Yes! Ginseng,2018,33,6.00303,5.50709, +17743,290066,The Queen's Collection,2019,32,6.01812,5.50709, +17744,8899,Rimini,1988,36,5.96111,5.50709, +17745,359132,Pan's Island,2022,137,5.62635,5.50708, +17746,5922,Birth of a Nation,1982,45,5.87000,5.50708, +17747,169462,The Princess Bride: As You Wish,2015,61,5.77459,5.50707, +17748,4022,Diceball!,1991,64,5.76187,5.50707, +17749,139690,ApocalypZe Card Game,2014,56,5.79821,5.50707, +17750,613,Overboard,1977,85,5.69882,5.50707, +17751,197571,Pie Rats of the Carob Bean Farm,2016,41,5.90439,5.50706, +17752,271040,Tricky Druids,2019,116,5.64741,5.50706, +17753,270638,Game of HAM: Adult Set,2019,31,6.03226,5.50706,"270638, 376165, 376166, 376167, 376169, 425248" +17754,269907,Mission Calaveras,2019,32,6.01562,5.50705, +17755,166972,Bubble Bath Bunny,2014,89,5.68989,5.50705, +17756,37988,Trivial Pursuit: 25th Anniversary Edition,2008,346,5.55406,5.50705, +17757,5619,The Fastest Gun,1973,73,5.72982,5.50705, +17758,316623,A Fistful of Daisies,2020,34,5.98529,5.50705, +17758,144135,Sparta vs. Athens,2014,34,5.98529,5.50705, +17760,873,Offline,2000,36,5.95833,5.50704, +17761,142653,IncrediBrawl,2014,113,5.65068,5.50704, +17762,11585,Sum Swamp,2002,124,5.63790,5.50703, +17763,5934,"Wahoo! The Battle of Washington July 8, 1863",1991,42,5.89286,5.50702, +17764,139963,FrogFlip,2013,44,5.87500,5.50702, +17765,425798,Moonlight Market,2024,30,6.04667,5.50702, +17766,37500,Monopoly: My Disney Villains,2008,32,6.01250,5.50701,"37500, 332576" +17767,210350,Contária,2016,49,5.83673,5.50700, +17768,319709,Land of Clans,2020,35,5.96857,5.50700, +17769,23373,HeroCard Galaxy,2006,66,5.75152,5.50700, +17770,165711,Pizzeria Italia,2014,54,5.80556,5.50699, +17771,813,Goosebumps: Terror in the Graveyard Game,1995,211,5.58338,5.50699, +17772,18945,"Downfall: If the U.S. Invaded Japan, 1945",2005,48,5.84271,5.50699, +17773,344269,America's Main Street,2022,36,5.95373,5.50697, +17774,6747,Batman: Poker gegen Joker,1989,34,5.97941,5.50696, +17775,1956,Game of Dracula,1977,79,5.71013,5.50696, +17776,121122,The Lost Dutchman,2013,87,5.69138,5.50696, +17777,40653,Walter Wick Can You See What I See?,2009,37,5.94054,5.50695, +17778,7178,Schützenfest,1975,38,5.92895,5.50695, +17779,234052,Doomseeker,2018,107,5.65664,5.50694, +17780,12521,Moscou 1941: Aux Portes du Kremlin,1995,35,5.96429,5.50694, +17780,27950,Paukenschlag,2008,35,5.96429,5.50694, +17782,107402,Keren: East Africa 1941,2012,30,6.04000,5.50693, +17783,41532,Million Dollar Password,2008,75,5.72013,5.50693, +17784,18805,Pacifist,1984,32,6.00659,5.50693, +17785,22205,Trapture,2006,45,5.86222,5.50693, +17786,251785,"Run Animals, Run!",2017,61,5.76885,5.50693, +17787,148918,Scriba,2011,78,5.71154,5.50692,"63581, 148918" +17788,250870,Formosa Flowers,2018,59,5.77712,5.50691, +17789,170586,Sedma,,35,5.96143,5.50690, +17790,255595,SpyMaster,2019,36,5.94861,5.50689, +17791,27876,The Dragon's Wrath,1995,40,5.90442,5.50689, +17792,17635,Mob City,2005,32,6.00312,5.50688, +17793,335324,All of Us,2020,35,5.96000,5.50688, +17794,204681,Sovereign Of The Seas,2017,52,5.81154,5.50687, +17795,192032,Aljubarrota: The Royal Battle,2015,55,5.79491,5.50687, +17796,11873,AMC Reel Clues,2002,57,5.78470,5.50687, +17797,239116,Passaportas,2017,67,5.74279,5.50685, +17798,150978,Gatenkaas,2014,65,5.75000,5.50685, +17799,11924,Struggle,1982,36,5.94583,5.50685, +17800,289970,Shady Pets,2019,30,6.03333,5.50685, +17800,184311,Fliegenschmaus,2015,30,6.03333,5.50685, +17802,10966,Battle Rider,1994,32,6.00000,5.50684, +17802,11773,Discovering Europe,,32,6.00000,5.50684, +17804,3338,Nimm's Leich!,1997,47,5.84255,5.50684, +17805,364430,Pear Shaped,2022,31,6.01581,5.50684, +17806,113544,Monopoly: Klingon Edition,2011,34,5.97059,5.50684, +17806,3096,Ascension at Firepeak,2001,34,5.97059,5.50684, +17808,30936,Oust,2007,81,5.70123,5.50683, +17809,4607,Omnigon,1988,45,5.85667,5.50682, +17810,223971,Hànzì,2017,90,5.68172,5.50682, +17811,207965,GrowerZ,2016,39,5.91026,5.50682, +17812,126728,Dice's Zoo,2012,127,5.63055,5.50681, +17813,180489,Los Aprendices,2015,130,5.62769,5.50681, +17814,18983,La Segunda Guerra Mundial,1982,94,5.67394,5.50681, +17815,17181,Stad - Land - Rivier,1985,72,5.72500,5.50681,"17181, 294315, 296623, 296625, 358997" +17816,32324,Szczury Pustyni,1996,44,5.86364,5.50681, +17817,214759,Kolej na kolej,2016,31,6.01290,5.50680, +17818,40629,Bakong,2009,567,5.53438,5.50678, +17819,136246,Feuer & Flamme,2013,49,5.82551,5.50677, +17820,24002,Pirate King,2006,274,5.56363,5.50676, +17821,182634,Qwordie,2015,49,5.82449,5.50675, +17822,11494,The Battles of Bull Run: Manassas – June 1861 and August 1862,1973,35,5.95143,5.50675, +17823,9876,Don't Tip The Waiter,1990,36,5.93889,5.50674, +17824,149078,Light Line,2013,68,5.73529,5.50674, +17825,10842,Insel der Schmuggler,2004,41,5.88537,5.50673, +17826,163957,Alien Entity,2014,42,5.87619,5.50673, +17827,70376,Super Comics,2010,96,5.66823,5.50672, +17828,193628,J'Accuse!,2016,110,5.64764,5.50672, +17829,243708,Quicktionary,2017,68,5.73438,5.50671, +17830,327299,Monopoly for Sore Losers,2020,41,5.88415,5.50671, +17831,5265,Commando,1979,82,5.69512,5.50670, +17832,10354,All-Pro Football,1967,39,5.90256,5.50669, +17833,36373,The Truckers,2008,49,5.82143,5.50669, +17834,165828,Truths Too Terrible,2015,36,5.93500,5.50668, +17835,10651,Deflection,1981,43,5.86512,5.50668, +17836,131450,DrachenSchatten,2012,97,5.66557,5.50668, +17837,235399,Conspiracy Theory,2017,36,5.93444,5.50668, +17838,154327,City,2014,39,5.90128,5.50667, +17839,230872,Bautzen 1945,2017,33,5.97273,5.50667, +17840,157696,What the Fake?!,2014,74,5.71446,5.50667, +17841,235807,Reanimator,2018,37,5.92216,5.50666, +17842,400567,Energy Apex,2023,36,5.93333,5.50666, +17843,90972,Mermaid Beach,2011,64,5.74656,5.50666, +17844,116970,Kokoriko,2012,68,5.73235,5.50665, +17845,123930,Pint Craft,2012,48,5.82583,5.50664, +17846,156557,Zombie Island,2014,71,5.72225,5.50664, +17847,278260,Śladami Phileasa Fogga,2019,30,6.01667,5.50663, +17848,89396,MiniMatch,2009,31,6.00000,5.50663, +17849,89611,Digger,2010,79,5.70013,5.50663, +17850,352599,Exploring Galapagos,2022,33,5.96970,5.50662, +17851,14902,Friedland,1992,34,5.95588,5.50662, +17851,9076,Say When!,1998,34,5.95588,5.50662, +17853,5905,Energi,1978,36,5.93056,5.50662, +17854,217230,The Walking Pet,2017,112,5.64286,5.50661, +17855,9847,Plutôt mort que Perse !,2003,37,5.91892,5.50661, +17855,73360,Soft Underbelly: The War in Southern Italy 1943,2010,37,5.91892,5.50661, +17857,2854,Exploration,1967,127,5.62669,5.50661, +17858,197641,Pictionary (2013 edition),2013,376,5.54713,5.50661,"8996, 197641" +17859,232243,Boom Blast Stix,2017,39,5.89692,5.50660, +17860,243343,Dino Battle,2018,45,5.84444,5.50659, +17861,177080,Lord of the Dead,2015,85,5.68518,5.50658, +17862,232412,Ogre Cheerleaders,2018,37,5.91676,5.50658, +17863,15372,Guesstimation,2009,76,5.70605,5.50657, +17864,167080,Globetrotter,2014,30,6.01167,5.50657, +17865,247730,Poc!,2018,51,5.80366,5.50657, +17866,12818,Cubilete,,39,5.89487,5.50656, +17867,19392,Fruit Bandits,2005,118,5.63475,5.50656, +17868,455,Am Fuß des Kilimandscharo,1995,103,5.65340,5.50656, +17869,731,Escape from New York,1981,112,5.64113,5.50653, +17870,5837,Steam Tunnel,2003,158,5.60190,5.50653, +17871,192245,Shadow Master,2016,40,5.88250,5.50652, +17872,288876,HECK: A Tiny Card Game,2019,33,5.96202,5.50652, +17873,7248,Zenix,2000,78,5.69897,5.50651, +17874,81561,Monkey See Monkey Do,2010,75,5.70667,5.50651, +17875,13440,Horrific,2004,37,5.91216,5.50651, +17876,32154,Down Under,2007,267,5.56270,5.50650,"1238, 32154, 34352" +17877,7344,Challenge Golf at Pebble Beach,1973,62,5.74839,5.50650, +17878,209713,Flitting Bad Wolf,2016,32,5.97500,5.50650, +17879,232444,Tief im Riff,2017,35,5.93429,5.50649,"13015, 232444" +17880,13972,Party & Co,1993,807,5.52504,5.50649,"13972, 29268, 269471, 307447" +17881,4568,Racko Plus,2001,84,5.68468,5.50649, +17882,178937,El Capitan,2015,73,5.71151,5.50649, +17883,117862,Step by Step,2012,98,5.65918,5.50649, +17884,389198,What the Cup!?,2023,65,5.73646,5.50648, +17885,367952,Magajaja Dinosaurs,2022,33,5.95939,5.50648, +17886,1453,Pain Doctors: The Game of Recreational Surgery,1996,48,5.81771,5.50648, +17887,198269,En tu casa o donde sea,2016,34,5.94559,5.50647, +17888,114215,Trivial Pursuit: Classic Rock Edition,2011,32,5.97225,5.50646, +17889,247485,Kumppani,2018,33,5.95758,5.50645, +17890,17521,Golf,,486,5.53708,5.50645, +17891,357179,Cards Against Muggles,2018,50,5.80400,5.50645, +17892,285048,Pirate Map,2019,39,5.88701,5.50643, +17893,2337,Droids,1991,87,5.67701,5.50643, +17894,10291,Ready! Set! Spaghetti!,1989,145,5.60876,5.50643, +17895,35661,Pick a Paint,2008,53,5.78585,5.50642, +17896,50995,The Toast of the Town,2009,39,5.88590,5.50642, +17897,162223,Mood X,2014,86,5.67849,5.50642, +17898,292225,Faktoria,2019,32,5.96875,5.50641, +17899,7131,Napoleon's First Battles,1993,79,5.69367,5.50641, +17900,6404,Seven Days Battles,1993,80,5.69125,5.50641,"6404, 11511" +17901,4585,Seaside Frolics,1986,35,5.92857,5.50641, +17902,340284,The Plan,2021,37,5.90541,5.50640, +17903,264189,Frazetta: Card & Dice Battle Game,2018,42,5.85714,5.50639, +17904,2172,Stealth Chess,1997,47,5.81915,5.50637, +17905,192801,Among Us,2018,69,5.71942,5.50637, +17906,153077,Kakerlakentanz,2014,89,5.67146,5.50637, +17907,312582,AURUXXX: The Golden 12,2020,33,5.95152,5.50637, +17908,203170,Unlocked: The Mansion of Mana,2016,36,5.91389,5.50636, +17909,73250,Chickamauga: River of Death,2010,37,5.90270,5.50636, +17910,28510,Scene It? Friends Deluxe Edition,2006,234,5.56902,5.50636,"21705, 28510" +17911,23831,Ruck Zuck,1985,35,5.92514,5.50635, +17912,225569,Geek Out! Masters,2017,197,5.58071,5.50635, +17913,877,Troia,2000,159,5.59843,5.50635, +17914,90125,Acuity,2010,44,5.83864,5.50634, +17915,173344,Booze Barons,2016,86,5.67616,5.50633, +17916,78247,Campos,2010,96,5.65844,5.50633, +17917,239705,Monster Diner,2017,38,5.89053,5.50633, +17918,28246,Zanzibar,2007,157,5.59930,5.50633, +17919,204142,Cheers,2016,42,5.85381,5.50633, +17920,349091,KÖ-ØP,2022,33,5.94848,5.50633, +17921,314546,Gelato,2020,34,5.93529,5.50632, +17922,320505,Mattock,2020,84,5.67976,5.50632, +17923,239940,Fishing for Words,2017,54,5.77593,5.50631, +17924,13863,Junta,1975,39,5.87949,5.50631, +17925,36687,Revenge of the B-Movie,2008,41,5.86098,5.50630,"36687, 43151" +17926,12737,Goofy Golf Machine,1994,42,5.85238,5.50630, +17927,300138,Poo Poo Pets,2021,66,5.72652,5.50630, +17928,1729,Wide World,1956,92,5.66402,5.50629, +17929,167468,Kuh Vadis,2014,63,5.73651,5.50629, +17930,173637,Monopoly: 80th Anniversary Edition,2015,182,5.58597,5.50629, +17931,418917,"Run, Mule, Run",2023,143,5.60769,5.50629,"462, 13575, 418917" +17932,24069,Jogo dos Conquistadores,2006,50,5.79620,5.50628, +17933,278633,L'Agent Jean!: Le Jeu,2019,36,5.90833,5.50627, +17934,286535,#mylife,2019,77,5.69416,5.50627, +17935,346015,Fabula Rasa: Crime,2021,31,5.97258,5.50627,"346015, 407559" +17936,255597,Everyone Loves A Parade,2019,47,5.81383,5.50627, +17937,73367,Yamy,2010,41,5.85854,5.50626, +17938,229165,The Open Road,2018,42,5.85000,5.50626, +17938,27061,Mosquito,2009,42,5.85000,5.50626, +17940,136283,Memento,2013,44,5.83409,5.50625, +17941,6902,Tetris,1989,95,5.65779,5.50624, +17942,25461,Pai Gow,,50,5.79400,5.50624, +17943,8032,4 CYTE (Foresight),1962,35,5.91714,5.50623, +17944,178930,WALLS: Race Through a Changing Maze,2016,36,5.90556,5.50623, +17945,152621,Black Stories: Medizin Edition,2014,52,5.78250,5.50623, +17946,180208,Witkacy,2015,127,5.61929,5.50622, +17947,5019,Buggo,2000,55,5.76727,5.50622, +17948,905,Vagabondo,1979,39,5.87436,5.50622, +17949,221643,Strawberry Ninja,2017,292,5.55538,5.50622, +17950,152245,Cards vs Dice: Strategically Lucky,2013,72,5.70556,5.50622,"152245, 227334" +17951,19971,Tuppen,,73,5.70274,5.50622, +17952,124224,Making Profit: The Boardgame,2012,54,5.77148,5.50621, +17953,29517,Konkurencja,2007,45,5.82444,5.50621, +17954,90592,Trafffic,2010,30,5.98333,5.50621, +17955,8919,Trek,1960,31,5.96774,5.50620, +17956,1451,Dimenticato,1998,33,5.93939,5.50620, +17957,297555,翡翠の商人 (Jade Merchant),2019,34,5.92647,5.50619, +17958,378623,PuzzLegend: Merlin,2023,35,5.91429,5.50619, +17959,3746,Star Trek Trivia Game,2000,52,5.78077,5.50619, +17960,191203,Commander Chess,2010,36,5.90278,5.50619, +17961,10353,Playoff One-On-One Hockey Challenge,1995,37,5.89189,5.50619, +17962,265583,Dino Dump,2018,65,5.72533,5.50618, +17963,231042,Sakura Hunt,2017,60,5.74333,5.50617,"231042, 421500" +17964,140100,Hero Brigade,2014,69,5.71217,5.50616,"140100, 156441" +17965,148260,Leonardo,2013,31,5.96452,5.50616, +17966,192233,Karibou Camp,2016,48,5.80208,5.50616, +17967,38897,Illusio,2008,249,5.56314,5.50615, +17968,100470,Killer Party,2010,51,5.78431,5.50615, +17969,3209,Pennant Race,1983,100,5.64800,5.50615, +17970,256853,The Pretender,2018,52,5.77885,5.50615, +17971,192696,Orphans & Ashes,2016,56,5.75911,5.50614, +17972,137331,Terzetto,2013,58,5.75012,5.50613,"26043, 137331" +17973,19498,Kille,1741,41,5.85122,5.50613, +17974,148522,Dice Crawl,2014,58,5.75000,5.50613, +17975,362966,Die Schriftrolle der Geheimnisse: Schatten über Lysharia,2022,43,5.83488,5.50613, +17976,2545,Contigo,1974,77,5.68961,5.50612, +17977,11915,Tabaijana: Flucht von der Feuerinsel,1990,31,5.96129,5.50612, +17978,193695,Let Them Eat Cake,2016,163,5.59252,5.50611, +17979,323911,Monopoly: Super Mario Celebration!,2020,72,5.70139,5.50610, +17980,226948,Débrouille-toi!,2017,33,5.93182,5.50609, +17981,1142,Sabotage,1985,75,5.69333,5.50609, +17982,249825,GrimmoiR,2018,77,5.68831,5.50608, +17983,213544,Wordoku: Fun Spelled Out,2016,36,5.89583,5.50608, +17984,542,Animocrazy,2000,1196,5.51781,5.50608, +17985,223762,Atari's Missile Command,2018,78,5.68556,5.50607, +17986,7982,DeltaVee,1981,84,5.67262,5.50606, +17987,148179,Oss,2013,97,5.65021,5.50606, +17988,6824,Gold und Rum,2003,185,5.58162,5.50606, +17989,130041,"Soldiers: Decision in the Trenches, 1918",2013,39,5.86410,5.50605, +17990,164838,Flip Hue,2015,48,5.79688,5.50605, +17991,287474,The Isle of Pan,2019,90,5.66111,5.50605, +17992,184337,Risk: Marvel Cinematic Universe,2015,57,5.75088,5.50605, +17993,128910,Pyramid Raiders,2012,41,5.84634,5.50605, +17994,22123,Enkounter,2006,58,5.74655,5.50605, +17995,153807,Room Party: The Game!,2014,42,5.83810,5.50605, +17996,876,Tennis Masters,2000,94,5.65426,5.50604, +17997,7185,Weapons & Warriors: Power Catapult Set,1994,51,5.77902,5.50604, +17998,6567,007 James Bond: Goldfinger,1985,32,5.94062,5.50603, +17999,221298,NewSpeak,2021,58,5.74569,5.50603,"221298, 329509" +18000,151015,Shape Up,2013,39,5.86154,5.50601, +18000,8360,Lost Battles: Operational Combat in Russia,1971,39,5.86154,5.50601, +18002,113360,32 Dice,2011,41,5.84415,5.50601, +18003,15527,Jorden runt på 80 dagar,1986,61,5.73279,5.50600, +18004,76541,NBA All Star: Officially Licensed Board Game,2010,34,5.91215,5.50599, +18005,2657,Auweier,2001,40,5.85104,5.50598, +18006,12429,Struggle for Stalingrad,1985,35,5.90000,5.50598, +18007,5039,"The Battle for North Africa: War in the Desert, 1940-42",1996,127,5.61457,5.50598, +18008,171430,Do Not Forsake Me (Oh My Darling),2015,37,5.87838,5.50597, +18009,252892,Here Comes the Dog,2018,175,5.58470,5.50597, +18010,360696,Split,2022,72,5.69722,5.50597, +18011,114284,Monopoly: Futurama Collector's Edition,2011,39,5.85897,5.50597, +18012,14253,Desperados,2004,56,5.75179,5.50597, +18013,2586,Trivial Pursuit: Game Show,1993,34,5.91059,5.50596, +18014,30000,Stratego: Transformers,2007,43,5.82558,5.50596, +18015,22595,Axis of Evil: A Strategic Wargame,2006,45,5.81111,5.50595, +18016,21613,Diabolo,2006,512,5.53277,5.50595,"21613, 191913" +18017,11402,Antietam Campaign,1995,35,5.89714,5.50594, +18018,245203,Stumblewood,2018,87,5.66322,5.50593, +18019,6913,The Battle of Agincourt,1978,54,5.75926,5.50593, +18020,13010,Interpol,1978,65,5.71615,5.50592, +18021,186954,Odd World,2015,57,5.74561,5.50592, +18022,2349,Inspector Higgins,1988,59,5.73729,5.50592, +18023,282347,Wormlord,2019,61,5.72951,5.50591, +18024,6573,Husch Husch kleine Hexe,1994,94,5.65085,5.50591, +18025,136153,The Union Forever!,2012,30,5.96000,5.50591, +18026,192717,Pickpockets,2016,65,5.71538,5.50590, +18027,6350,Zomax,1988,49,5.78367,5.50590, +18028,203202,Hi Fisch!,2016,33,5.91818,5.50590, +18029,190083,Dungeon Heroes Manager,2016,33,5.91667,5.50588, +18030,324963,Pac-Man: The Card Game,2020,85,5.66529,5.50587, +18031,69973,Ticked Off,2011,101,5.63976,5.50586, +18032,183883,Port of Piraeus,2015,57,5.74298,5.50586, +18033,147975,Trix,2013,47,5.79255,5.50584,"147975, 181342" +18034,18840,Wissens-Spektrum,1984,57,5.74211,5.50584, +18035,8388,Napoleon's Later Battles I,1992,49,5.78061,5.50584, +18036,8221,The 90's Game,2003,44,5.81136,5.50583, +18037,82343,Fishfry,2010,144,5.59910,5.50582,"82343, 132701, 140830" +18038,4097,Raise the Roof,1982,55,5.75000,5.50582, +18039,8419,Operation Apocalypse,1996,47,5.79149,5.50582, +18040,10809,Immer oben auf!,2004,31,5.93871,5.50582, +18041,374516,Disney Stitch: Merry Mischief! Card Game,2022,32,5.92500,5.50581, +18042,85126,Poltava's Dread Day: The Great Northern War 1700-1722 AD,2012,34,5.90000,5.50581, +18043,165208,Aruba: Battle Race,2014,52,5.76346,5.50581, +18044,25677,Formidable Foes,2006,469,5.53433,5.50580, +18045,2856,BrewMaster: The Craft Beer Game,2001,164,5.58720,5.50579, +18046,290462,Banana Bandido,2019,57,5.73984,5.50578, +18047,3355,Junk Yard,2002,30,5.95000,5.50578, +18047,198135,Barrage Battle,2016,30,5.95000,5.50578, +18049,334055,Graal,2021,31,5.93548,5.50577, +18050,144310,Artifact,2013,130,5.60823,5.50577, +18051,277154,Bamboozled,2019,76,5.68099,5.50577, +18052,304231,Boso przez świat: Gra Planszowa,2020,32,5.92188,5.50577, +18053,211175,Undermine,2017,118,5.61855,5.50577, +18054,259724,EXIT Kids: Code Breaker,2018,55,5.74727,5.50576, +18055,159507,Urban Panic,2014,142,5.59930,5.50576, +18056,8233,Lords & Wizards,1977,38,5.85526,5.50576, +18057,10196,Farlander,2002,242,5.56054,5.50575, +18058,22259,Kroko Loko,2004,67,5.70299,5.50573, +18059,21622,Monopoly: Simpsons Treehouse of Horror,2005,61,5.72213,5.50572, +18060,36603,Huuue!,2008,65,5.70846,5.50571, +18061,91394,Ring-A-Ding-Ding,2011,137,5.60190,5.50571, +18062,17926,Babel,2002,49,5.77427,5.50570, +18063,4171,Sailor Moon CCG,2000,61,5.72131,5.50570, +18064,223687,Brace for Impact!,2017,30,5.94400,5.50570, +18065,131282,Professor Pugnacious,2013,83,5.66391,5.50569, +18066,30741,"Surf's Up, Dude!",2008,230,5.56278,5.50569, +18067,2927,Slasher: The Final Cut,1994,66,5.70455,5.50569, +18068,29226,El Zorro del Desierto: Norte de Africa 1941-1942,1987,40,5.83375,5.50569, +18069,13414,Star Probe,1974,33,5.90303,5.50568,"13414, 13415" +18070,315733,"Trust Me, I'm a Superhero",2021,36,5.86944,5.50568, +18071,69703,Phase,2016,72,5.68750,5.50568, +18072,992,Alcazar,1978,41,5.82439,5.50566, +18073,329579,Rock the Bock,2021,60,5.72333,5.50566, +18074,17903,"Fuzzi, Heinz und Schlendrian",1983,43,5.80930,5.50566,"17903, 315673" +18075,119500,Wanna Bet?,2012,210,5.56781,5.50566,"119500, 353814" +18076,218981,Bearicades,2017,31,5.92581,5.50565, +18077,281417,Hoarders,2019,466,5.53348,5.50563,"140607, 281417" +18078,2674,Coppertwaddle,2000,112,5.62143,5.50562, +18079,189735,Monsters Party: Voodoo Madness,2016,38,5.84632,5.50561, +18080,116609,LEGO: Life of George,2011,31,5.92258,5.50560, +18081,16500,Highland Clans,2005,390,5.53872,5.50560, +18082,11829,Word Nerd,1979,91,5.64725,5.50559,"11829, 19475" +18083,2203,Suppenkasper,1987,115,5.61739,5.50557, +18084,223734,Crazy Corral,2017,30,5.93333,5.50556, +18085,147915,Mobscenity,2013,33,5.89394,5.50556, +18086,181466,Asterix & Obelix Mau Mau,2015,34,5.88235,5.50555, +18087,156461,Animotion,2014,72,5.68333,5.50555, +18088,340282,Sniper Kill Confirmed,2023,36,5.86111,5.50555, +18089,19028,Secret Tijuana Deathmatch,2005,190,5.57289,5.50555, +18090,340829,Arcana of Love: Sensual Deck,2018,38,5.84211,5.50554,"87104, 158473, 340829, 340830, 340832" +18091,31057,Easy School,2007,121,5.61107,5.50554, +18092,7541,Killer Angels,1984,42,5.80952,5.50553, +18093,293522,UNO Express,2018,52,5.75096,5.50553, +18094,2558,Comeback,1996,44,5.79545,5.50553, +18095,148814,Boom Boom,2013,45,5.78889,5.50553, +18095,18907,War in the Aegean,2005,45,5.78889,5.50553, +18097,6109,Mafia,1981,46,5.78261,5.50553, +18098,169984,Stowaway 52,2015,115,5.61617,5.50552, +18099,232950,Dare to Dream,2018,76,5.67285,5.50551, +18100,279967,SPACE INVADERS: THE BOARD GAME,2021,64,5.70391,5.50550, +18101,221208,MBL Pocket Pro Tour,2017,59,5.72034,5.50549, +18102,392150,Unfold: Through the Wall,2023,40,5.82150,5.50548, +18103,4272,Punk sucht Lady,1993,69,5.68841,5.50547, +18104,824,Hijara,1995,48,5.76827,5.50547, +18105,8188,Die wilden Fußballkerle,2003,36,5.85556,5.50546, +18106,21343,Graverobbers,2006,82,5.65915,5.50546, +18107,201047,Youtopia: The World of Imagination,2015,39,5.82821,5.50546, +18108,392097,800 Pound Gorilla,2023,42,5.80429,5.50544, +18109,794,Foil,1968,186,5.57285,5.50544, +18110,180340,Sirenen in Sicht,2015,42,5.80357,5.50543, +18111,482,Sky Runner,1999,445,5.53349,5.50542, +18112,243707,Fat Fish,2018,85,5.65235,5.50541, +18113,9420,Hear 'N Seek,2004,34,5.87265,5.50541, +18114,2697,Spice Navigator,1999,62,5.70645,5.50540, +18115,31527,Formuła 1,2007,63,5.70317,5.50540, +18116,321114,Instacrime: Casino,2020,128,5.60271,5.50540,"307369, 321114" +18117,3918,Raiders of the Lost Ark Game,1981,46,5.77609,5.50540, +18118,194079,ROX,2014,118,5.61065,5.50538, +18119,32004,Chaos,2007,71,5.68028,5.50538, +18120,296420,Bids,2018,74,5.67297,5.50538, +18121,130352,Aloha: The Spirit of Hawaii,2012,30,5.91667,5.50535, +18121,330568,UNO: Star Wars,2019,30,5.91667,5.50535, +18123,123085,MafiaDollar,2012,31,5.90323,5.50535, +18124,3023,VCR 221B Baker Street,1987,32,5.89062,5.50534, +18125,273448,Cthulhu: The Great Old One – Deluxe Edition,2019,34,5.86765,5.50534,"142398, 273448" +18126,91197,Baby Boom,2010,53,5.73774,5.50534, +18127,153380,Tangrams Competitive Party Game,1930,37,5.83811,5.50534, +18128,9013,Battle of the Five Armies,1975,36,5.84722,5.50534, +18128,15877,Abbeville 1940,1996,36,5.84722,5.50534, +18130,93463,Picnic Blitz,2010,52,5.74135,5.50532, +18131,236556,Artifact Stack,2017,36,5.84611,5.50532, +18132,24387,Dilbert: The Board Game,2006,196,5.56786,5.50531, +18133,57767,Unter Geiern,2009,39,5.81949,5.50531, +18134,239770,Kiek: 20 years of Splotter,2017,48,5.76042,5.50531,"1754, 239770" +18134,326582,Fairy Prank,2020,48,5.76042,5.50531, +18136,7329,Neopets: Adventures in Neopia,2003,91,5.63984,5.50531, +18137,160406,Khrysos Hunters,2014,49,5.75510,5.50531, +18138,18128,Solferino: 24 Juin 1859,1978,32,5.88750,5.50530, +18139,161887,Amber Route,2014,108,5.61852,5.50530, +18140,371555,The 12 Dice of Christmas,2022,41,5.80349,5.50530,"281264, 371555" +18141,27674,Nacho Loco,2007,213,5.56263,5.50529, +18142,332421,Greece Lightning,2021,37,5.83514,5.50529, +18143,43489,Politix,2009,94,5.63511,5.50529, +18144,220642,This Belongs in a Museum,2017,58,5.71552,5.50529, +18145,177572,猿道 (Monkey Road),2015,41,5.80268,5.50529, +18146,341759,The Vampires,2021,65,5.69287,5.50529, +18147,141284,Pyramide du Pharaon,2010,43,5.78837,5.50528, +18148,6449,"Murder à la carte: Pasta, Passion & Pistols",1995,39,5.81667,5.50526, +18149,4147,Spellbinder,1980,34,5.86176,5.50525, +18150,9156,Fette Fünfzehn,2003,35,5.85143,5.50525, +18151,65556,Sumo Ham Slam,2010,247,5.55424,5.50525, +18152,290755,Square Meal,2020,52,5.73788,5.50524, +18153,269913,Cassiopeia,2019,81,5.65457,5.50524, +18154,202742,OrgasMe!: Sex turned into a card game,2016,63,5.69714,5.50524, +18155,3492,Dragon Storm,1996,41,5.80000,5.50524, +18156,351900,Jonathan Eaton's Houses of Treasure: Itzamna's Eye,2021,44,5.77955,5.50523, +18157,398770,Maldivia,2023,36,5.84028,5.50523, +18158,225653,Castellers!,2017,88,5.64215,5.50522, +18159,104813,Number Dinosaur,2011,50,5.74600,5.50522, +18160,60872,Rio Grande,2009,60,5.70583,5.50522, +18161,149071,Color Clash,2013,35,5.84857,5.50521, +18162,312693,Poo Pocalypse,2020,56,5.71946,5.50520, +18163,5043,The Forever War,1983,58,5.71207,5.50520, +18164,3668,Tribbles Customizable Card Game,2000,183,5.57077,5.50520, +18165,25255,El Duelo de las Águilas,1984,40,5.80500,5.50520, +18166,420443,TREOS,2024,60,5.70500,5.50520, +18167,207911,Trivial Pursuit: 2000s,2016,311,5.54367,5.50519, +18168,358752,Tetra Tower,2014,58,5.71149,5.50519, +18169,152359,Machiavelli,1940,126,5.60000,5.50518, +18170,604,Verrat!,1999,55,5.72182,5.50517, +18171,7493,Caves & Claws,1998,128,5.59824,5.50516, +18172,12317,Brouhaha,2004,127,5.59882,5.50516, +18173,146384,The Amberden Affair,2013,69,5.67754,5.50516, +18174,8319,Sixth Fleet: US/Soviet Naval Operations in the Mediterranean in the 1970's,1975,147,5.58605,5.50516, +18175,160550,GodZ,2014,99,5.62525,5.50515, +18176,153509,Out of Mine!,2014,146,5.58658,5.50515, +18177,32751,Ghosts,2007,164,5.57756,5.50515, +18178,11121,"Operation Shock Troop: The Israeli Counterstroke Against Syria, 1973",1994,46,5.76304,5.50514, +18179,93577,Rocket Jockey,2012,170,5.57482,5.50514, +18180,188985,Presidente,2014,30,5.90000,5.50514, +18181,296940,Do You Know Me?,2019,61,5.69918,5.50513, +18182,276343,Blind Spot,2019,33,5.86364,5.50513, +18183,4948,Play It By Ear,1991,50,5.74160,5.50513, +18184,5201,Trailblazer,1981,55,5.72000,5.50512, +18185,145911,Desktopia,2013,37,5.82432,5.50512, +18186,309098,National Parks Get Wild,2020,38,5.81579,5.50512, +18187,6367,Make 7,1994,48,5.75104,5.50512, +18188,2320,Worldbeater,1975,40,5.80000,5.50511, +18189,9488,Mancala 4,,41,5.79268,5.50511, +18190,287580,Space Bowl,2019,50,5.74089,5.50511, +18191,1550,Chebache,1997,45,5.76667,5.50510, +18192,181045,Texto!,2015,30,5.89667,5.50509,"181045, 351996" +18193,9989,Mare Polare,2004,40,5.79875,5.50509, +18194,10008,Rifle & Saber: Tactical Combat 1850-1900,1973,50,5.74000,5.50509, +18194,15112,Subbuteo Rugby,1970,50,5.74000,5.50509, +18196,7189,Pitch Six,2003,100,5.62250,5.50509, +18197,160658,Postcard Cthulhu,2014,42,5.78452,5.50509, +18198,4473,Pompeii: The Last Days,1989,74,5.66351,5.50508, +18199,77148,Globalization,2010,85,5.64294,5.50508, +18200,12584,Cloak & Dagger,1988,37,5.82162,5.50508,"12584, 19347" +18201,34014,Ruin,2008,116,5.60603,5.50508, +18202,61475,Trivial Pursuit: The Beatles Collector's Edition,2009,65,5.68489,5.50507, +18203,40938,Race for the Summit,2009,43,5.77674,5.50506, +18204,181089,Raben schubsen,2015,48,5.74792,5.50505, +18205,133431,Kalesia: the card game,2012,34,5.84706,5.50504, +18206,10631,Age of Heroes,2003,35,5.83617,5.50502, +18207,8332,Red Beach One: Tarawa,1991,102,5.61863,5.50502, +18208,14469,Banda,1973,35,5.83571,5.50502, +18209,9094,"MacArthur: The Road to Bataan, Dec 1941 - Jan 1942",1985,55,5.71545,5.50502, +18210,133886,Keep Running!,2014,36,5.82639,5.50502, +18211,3465,Black Hole,1978,109,5.61101,5.50501, +18212,30660,Millennium 3D Chess,2001,40,5.79375,5.50501,"13026, 30660" +18213,222879,UNIMO,2017,33,5.85455,5.50500, +18214,99707,Artefakt,2011,78,5.65256,5.50499, +18214,15624,Gangster,1985,78,5.65256,5.50499, +18216,131448,Höchste Eisenbahn,2012,47,5.74979,5.50499, +18217,236459,Wulong,2017,89,5.63416,5.50498, +18218,264654,Possession: A Daemonic Card Game,2019,61,5.69344,5.50498, +18219,9474,Flying Pirates,1990,42,5.77857,5.50498, +18220,14720,Jihad!: The Rise of Islam 632-732,1981,43,5.77209,5.50498, +18221,88900,Yaniv,,120,5.60062,5.50498, +18222,41573,Schweinebammel,2008,177,5.56977,5.50497, +18223,6705,Batman: Gotham City Mystery,2003,79,5.65013,5.50497, +18224,26516,Boxers or Briefs?,2005,241,5.55250,5.50497, +18225,16342,Het Grote DE Koffiespel,1985,30,5.88667,5.50496, +18226,137153,Vaca Loca,2013,31,5.87419,5.50496, +18227,7651,Europe at War,1993,56,5.70893,5.50495, +18228,10915,Simply Suspects,2003,160,5.57625,5.50495, +18229,32330,Arnhem 1944,1996,39,5.79744,5.50495, +18230,224937,Status Report!,2018,40,5.79000,5.50494, +18230,211787,Black Stories: Science-Fiction Edition,2016,40,5.79000,5.50494, +18232,1450,Jagd der Vampire,1991,182,5.56758,5.50494, +18233,16273,Race For Tunis,1986,42,5.77619,5.50494, +18234,268582,Smash City,2019,55,5.71109,5.50492, +18235,5798,United Nations: A Game of World Domination in Our Time,1982,53,5.71887,5.50492, +18236,10052,Bongo Kongo,1989,34,5.83824,5.50491, +18237,26349,Wojny Napoleonskie,1989,56,5.70714,5.50491, +18237,3814,Desert War: Tactical Warfare in North Africa,1973,56,5.70714,5.50491, +18239,292796,Chickapiglets,2019,36,5.81944,5.50491, +18240,138064,Line Dice,2013,37,5.81081,5.50491, +18241,14354,2ème D.B. 'I' Normandie,1983,38,5.80263,5.50490, +18242,32471,Mafia,2007,383,5.53444,5.50490, +18243,170609,Treatment: A Psychiatry Card Game,2016,41,5.78049,5.50490, +18244,141544,Cluedo: Die drei ???,2013,42,5.77381,5.50490, +18244,268880,The Boy Who Cried Wolf,2018,42,5.77381,5.50490, +18246,1537,C&O/B&O,1969,76,5.65329,5.50489, +18247,103714,The Lord of the Rings: Nazgul,2012,244,5.55104,5.50488, +18248,29985,"Land Without End: The Barbarossa Campaign, 1941",2007,32,5.85625,5.50487, +18249,11473,Twilight's Last Gleaming,1997,39,5.79231,5.50486, +18250,226356,Gimme Gimme Guinea Pigs,2017,60,5.69167,5.50486, +18251,16184,Gracias,2005,219,5.55576,5.50483, +18252,8930,Buffy the Vampire Slayer CCG,2001,139,5.58505,5.50483, +18253,14662,NE-spelet,1999,73,5.65753,5.50483, +18254,117891,Das Ligretto Fußballspiel,2012,53,5.71509,5.50483, +18255,192635,Life Is Life,2016,77,5.64935,5.50482, +18256,244704,Rock the Bock,2018,37,5.80541,5.50482, +18257,10885,Royalists & Roundheads II,1992,59,5.69322,5.50482, +18258,173338,Pollen,2015,40,5.78250,5.50482, +18259,2373,Vendetta,1991,64,5.67812,5.50481, +18260,6689,Alien,1979,77,5.64883,5.50481, +18261,250718,Pick Your Poison: NSFW Edition,2016,209,5.55783,5.50480,"212310, 250718" +18262,65592,Dragon's Ordeal,2009,94,5.62234,5.50479, +18263,272364,Bears in Barrels,2019,67,5.66910,5.50477, +18264,12568,Obsession,1977,61,5.68525,5.50477, +18265,221263,Space Invaders Dice!,2017,141,5.58284,5.50477, +18266,7604,Final Fantasy IX Tetra Master Card Game,2001,44,5.75455,5.50476,"7604, 389419" +18267,262622,Absolutely Aces,2018,58,5.69397,5.50476, +18268,351677,Jonathan Eaton's Houses of Treasure: Ascalons Fury,2021,52,5.71538,5.50475, +18269,5664,3 Or More,1980,31,5.85806,5.50475, +18270,62395,Pokémon TCG: Rumble,2009,35,5.81714,5.50474, +18270,27857,Blindside,2011,35,5.81714,5.50474, +18272,248899,Tex: Fino all'ultima pallottola,2018,63,5.67825,5.50474, +18273,12943,Go Mental,2003,37,5.80000,5.50474, +18274,73232,DMZ: The Next Korean War,2010,48,5.73229,5.50474, +18275,279751,Meow! The Cult of Cat,2019,30,5.86867,5.50473, +18276,10805,A Dark and Bloody Ground,2004,52,5.71442,5.50473, +18277,316594,Break In: Area 51,2020,80,5.64062,5.50471, +18278,156746,Kombat Kittens,2014,31,5.85484,5.50471, +18278,27899,Chain Reaction,,31,5.85484,5.50471, +18278,148322,Aufbruch ins Abenteuer,2013,31,5.85484,5.50471, +18281,69904,Quack in the Box,2010,33,5.83333,5.50470, +18281,16368,Wie Waldi,2005,33,5.83333,5.50470, +18283,113780,Titty Grab,2010,55,5.70182,5.50470, +18284,74309,"The South Seas Campaign, 1942-43",2011,35,5.81429,5.50470, +18285,13392,"Perfidious Albion: Napoleon's (Hypothetical) Invasion of England, 1814",1997,36,5.80556,5.50470, +18286,125148,Lap Dance,2014,384,5.53288,5.50469, +18287,156015,Turbulence,2013,55,5.70145,5.50469, +18288,143200,Jungle Speed: Silver,2013,72,5.65486,5.50469, +18289,9776,The Incredible Hulk Smash,1998,54,5.70489,5.50469, +18290,14746,Twilight's Last Gleaming 2,2004,41,5.76829,5.50469, +18291,223329,Blood Royals,2017,41,5.76805,5.50468, +18292,296556,Hit Manga,2013,46,5.73913,5.50468,"107979, 296556, 338969" +18293,296576,There's Been A Murder,2019,200,5.55853,5.50467, +18294,51495,Wheel Of Fortune Deluxe,1986,36,5.80361,5.50467, +18295,300012,12 Gangsters,2020,41,5.76585,5.50464, +18296,253861,Black Skull Island,2018,139,5.58165,5.50464, +18297,37423,Het Groot Van Dale Spel der Nederlandse Taal,1995,35,5.81029,5.50464, +18298,183881,Goblin Dice,2015,100,5.61150,5.50463, +18299,7762,Transfer,1983,51,5.71373,5.50462, +18300,379295,Szeszélyes vizeken,2022,31,5.84839,5.50462, +18301,352682,Impera,2021,32,5.83750,5.50462, +18302,289129,Temple Antics,2019,31,5.84677,5.50460, +18303,5465,Space Fleet,1991,150,5.57513,5.50459, +18304,342211,Color Code,2021,47,5.72967,5.50459, +18305,2776,Heavy Gear Fighter,1995,42,5.75643,5.50459, +18306,39087,The Chronicles of Narnia: Prince Caspian – The Shield of Courage Card Game,2008,40,5.76875,5.50458, +18307,208837,Duelo: Kung-fu,2016,30,5.85667,5.50458, +18308,52011,Scene It? Marvel,2007,98,5.61224,5.50457,"25967, 33903, 52011" +18309,11600,Table Soccer,1965,56,5.69286,5.50457, +18310,4025,Lankhmar,1976,48,5.72417,5.50457, +18311,192181,Balancing Dolphin,,46,5.73370,5.50457,"18163, 192181, 192182, 192183, 192184" +18312,141725,Justice League: Axis of Villains Strategy Game,2013,249,5.54687,5.50457, +18313,24884,Funny Fishing,2006,62,5.67419,5.50456, +18314,4864,Scene It?: The DVD Movie Game,2002,1573,5.51123,5.50455,"4864, 26291, 314549, 391933" +18315,92879,Clumsy Witch,2011,50,5.71440,5.50455, +18316,12675,The Simpsons Group Photo,2003,36,5.79574,5.50454, +18317,2385,Sold! The Antique Dealer Game,1997,58,5.68520,5.50454, +18318,4664,Challenge Bridge,1973,30,5.85333,5.50454, +18319,35396,Shanghai Rummy,1987,35,5.80286,5.50453, +18320,132143,Hubbly Bubbly Brew,2012,36,5.79444,5.50452, +18320,154723,Drago-Tuku,2013,36,5.79444,5.50452, +18322,234465,Potato Pirates,2017,211,5.55398,5.50452, +18323,219359,Solaris,2017,103,5.60583,5.50452, +18324,228141,Fuchs du hast das Huhn gestohlen,2017,37,5.78649,5.50452, +18325,25001,Fleet 1715,2006,62,5.67258,5.50452,"25001, 260337" +18326,88704,Oudordodo,,40,5.76500,5.50452, +18327,148442,nullern,2013,55,5.69364,5.50451, +18328,17792,ZigZag,2005,35,5.80143,5.50451, +18329,11235,Golf the Perfect Game,1995,58,5.68362,5.50450, +18330,20833,Code Sudoku,2005,50,5.71200,5.50450, +18331,93041,Guilty Gods,2011,40,5.76375,5.50450, +18332,9087,KRASH!,2001,31,5.83871,5.50449, +18332,5610,Dragons of Underearth,1981,31,5.83871,5.50449, +18334,347,Fishy,1991,68,5.65662,5.50448, +18335,258438,Black Stories: Sebastian Fitzek Edition,2018,35,5.80000,5.50448, +18336,9569,The Last Starfighter Combat Game,1984,38,5.77632,5.50448, +18336,2097,Middle Sea: Empires of the Feudal Age,1979,38,5.77632,5.50448, +18338,38647,Taxifolie,2005,41,5.75610,5.50447, +18339,368267,American Psycho: A Killer Game,2022,43,5.74419,5.50447, +18340,1320,The Dog's Meow,2001,35,5.79886,5.50447, +18341,7802,Tank Commander: The Eastern Front,1997,44,5.73864,5.50447,"7802, 17383" +18342,341222,ULTIA,2021,33,5.81667,5.50447, +18343,8456,Fight on the Beaches,1985,47,5.72362,5.50447, +18344,13072,Airways,1972,47,5.72340,5.50446, +18345,1325,Wild Pirates,1989,148,5.57399,5.50446, +18346,116972,Mini-Taurus,2012,72,5.64722,5.50446, +18347,147673,Squashed,2013,50,5.71000,5.50446, +18348,18885,Syllabus,2005,53,5.69811,5.50445, +18349,8997,Scattergories Junior,1989,98,5.60918,5.50445, +18350,76684,Launch Pad,2010,190,5.55842,5.50445, +18351,319,Top It,1997,60,5.67500,5.50444, +18352,167466,Zum Kuhkuck,2014,51,5.70490,5.50443, +18353,69819,Mercury/Market Garden,2012,65,5.66154,5.50443, +18354,1981,Schwarzmarkt,1996,96,5.61042,5.50441, +18355,1351,Legend of Heroes,1987,54,5.69259,5.50441, +18356,16539,Word Wheel,1974,32,5.82188,5.50440, +18357,373383,Pook,2023,124,5.58629,5.50440, +18358,198035,Dumstrut,2015,68,5.65368,5.50440, +18359,141042,Kenya,2013,50,5.70720,5.50440, +18360,121813,StelCon: Infinity,2013,38,5.77105,5.50439, +18361,9284,Treasure Falls,2004,176,5.56193,5.50439, +18362,70922,Vicious Fishes,2010,55,5.68818,5.50438, +18363,36237,Timestreams: Deck 1 – Stone Age vs. Future Tech,2009,61,5.66967,5.50437, +18364,219410,Wild Shots,2017,50,5.70600,5.50437, +18365,328569,Mint Bid,2021,106,5.59906,5.50435, +18366,341915,HELP!,2021,63,5.66349,5.50435, +18367,1611,Bullwinkle and Rocky Role Playing Party Game,1988,77,5.63455,5.50435, +18368,175924,Trash War,2015,45,5.72667,5.50434, +18369,6665,Legend of Camelot,1987,50,5.70400,5.50433, +18370,86033,Mobbing: Reine Chefsache,2010,52,5.69615,5.50432, +18371,3357,Wie Hund und Katz!,2002,122,5.58607,5.50432, +18372,85389,Vampire Werewolf Fairies,2011,54,5.68889,5.50432, +18373,2527,Attack Force,1982,62,5.66502,5.50432, +18374,348154,Micro Medusa,2021,46,5.72065,5.50431, +18375,257324,The Lord of the Rings: Quest to Mount Doom,2018,60,5.67000,5.50431,"257324, 283075" +18376,197075,Devils & Black Sheep,2016,35,5.78743,5.50430, +18377,8459,Schwarzarbeit,2003,82,5.62500,5.50429, +18378,139038,Visual Panic,2013,30,5.83333,5.50428, +18379,27651,UNO: Batman Special Edition,2005,31,5.82258,5.50428, +18380,322087,Monopoly: Disney Villains,,38,5.76316,5.50426, +18380,43775,Monopoly: Onyx Edition,2007,38,5.76316,5.50426, +18382,11394,Shopping List,1995,157,5.56688,5.50426, +18383,24779,UNO House Rules,1998,87,5.61724,5.50426, +18384,19036,Villainy: The Supervillainous Card Game,2005,42,5.73810,5.50426, +18385,6701,Battlecards: World Conflict – Pacific Theatre: Starter Set,2003,67,5.65075,5.50425, +18386,4297,Dallas: A Game of the Ewing Family,1980,94,5.60851,5.50425, +18387,15614,Fantasi,1989,47,5.71277,5.50425, +18388,274034,UNO: Jurassic World,2017,34,5.79196,5.50424, +18389,308598,Cityline,2020,42,5.73714,5.50424, +18390,4968,Big Foot,1977,79,5.62781,5.50423, +18391,19512,Tintin et le Piège du Totem Dhor,1993,57,5.67544,5.50423, +18392,136265,Aliens vs. Zombies,2013,36,5.77500,5.50423, +18393,211047,Steal This Game,2016,127,5.58094,5.50422, +18394,192728,Ranglin' Rabbits,2016,39,5.75385,5.50422, +18395,237704,Grande y Peludo,2017,40,5.74750,5.50422, +18396,123211,Jack Bananas,2012,31,5.81774,5.50421, +18397,8345,Piratenschatz,1992,34,5.79000,5.50421,"8345, 9101" +18398,12467,Mastermind44,1972,32,5.80781,5.50421, +18399,1306,Krakatoa,1983,155,5.56677,5.50420, +18400,212288,Rainbow 35,2016,66,5.65091,5.50420, +18401,5762,Golden Trivia Game: Star Trek Edition,1985,30,5.82667,5.50419, +18402,251444,Penny Rails,2019,80,5.62500,5.50419, +18403,1785,King's Bounty,1991,70,5.64214,5.50419, +18404,111327,Black Stories: Christmas Edition,2011,100,5.60056,5.50418, +18405,141828,Show Me The Kwan,2013,39,5.75128,5.50418,"141828, 400132" +18406,194033,Magic Feathers,2016,45,5.71822,5.50418, +18407,226511,Arrogance,2015,30,5.82500,5.50417, +18408,270632,Bon Appetit!,2019,91,5.60989,5.50417, +18409,15559,Quak,1994,56,5.67589,5.50417, +18410,5030,No Respect: Rodney Dangerfield's Game,1985,46,5.71304,5.50417, +18411,67477,Sequence Num6ers,2008,44,5.72209,5.50416, +18412,236905,Castles of Caleira,2018,200,5.55200,5.50415, +18413,18564,Children of Fire,2005,57,5.67193,5.50415, +18414,41298,Knusperhexe,2009,32,5.80281,5.50414, +18415,154728,Kosmiczna misja,2013,38,5.75526,5.50414, +18416,57775,Jukem Football,2009,52,5.68692,5.50412,"34190, 57775, 206328" +18417,4093,Exit,1983,73,5.63411,5.50411, +18418,1857,Time War: A Game of Time Travel and Conflict,1979,66,5.64773,5.50411, +18419,260268,DIG IT UP,2018,67,5.64552,5.50411, +18420,423729,Let's Hit Each Other with Fake Swords,2024,30,5.81944,5.50410, +18421,274906,Scram,2019,96,5.60260,5.50410, +18422,23292,Gold Thief,2006,111,5.58919,5.50409, +18423,2690,James Clavell's Shogun,1983,64,5.65156,5.50409, +18424,232250,Pictopia: Harry Potter Edition,2017,66,5.64697,5.50409, +18425,36238,Timestreams: Deck 2 – Medieval vs. Modern Day,2009,50,5.69200,5.50407, +18426,396650,Llamas & Alpacas,2023,30,5.81667,5.50407, +18427,118258,Zebra-Schwein,2012,32,5.79688,5.50406, +18427,330954,Pilfering Pandas,2022,32,5.79688,5.50406, +18427,10349,Treasures and Trapdoors,1990,32,5.79688,5.50406, +18430,11496,"Bastogne ...and the Battle of the Ardennes December, 1944",1969,33,5.78788,5.50406, +18431,193271,Stadt-Land-anders,2016,37,5.75676,5.50405, +18432,283521,Are You A Robot?,2019,168,5.55970,5.50405, +18433,33904,The Game of Life: Pirates of the Caribbean – At World's End,2007,41,5.73171,5.50405, +18434,154298,Alchemy!,2015,118,5.58311,5.50404,"154298, 356356" +18435,298018,Memorinth,2020,89,5.60865,5.50404, +18436,12544,Dungeons & Dragons Adventure Game: Diablo II Edition,2000,135,5.57281,5.50403, +18437,242553,Einhorn Glitzerglück: Funkel-Bingo,2018,63,5.65143,5.50403, +18438,368898,Rhett & Link's We're Still Good Game,2022,31,5.80323,5.50402, +18439,101766,Slate,2011,42,5.72476,5.50402, +18440,4299,Battle: The Game of Strategy,1979,83,5.61566,5.50402,"4299, 27583, 38732, 147858" +18441,234062,Highlander: The Duel,2018,60,5.65833,5.50401, +18442,5026,Don't Wake the Dragon!,1986,72,5.63194,5.50399, +18443,7851,Counting Zzzzs,2003,80,5.61900,5.50399, +18444,319292,A Christmas Story: A MAJOR Card Game,2020,57,5.66491,5.50398, +18445,203401,Luther: Das Spiel,2016,63,5.64921,5.50397, +18446,88088,Cranium: Disney Family Edition,2010,64,5.64687,5.50396, +18447,58861,Pajaggle Boards,2009,34,5.77206,5.50395, +18448,130185,Speedy Recall,2012,35,5.76429,5.50395, +18449,9868,Tobrouk 1941-1942,2000,31,5.79677,5.50394, +18450,56843,Fish! Fish!! Fish!,2009,54,5.67130,5.50392, +18451,348190,Jammerlappen,2021,45,5.70457,5.50391, +18452,279646,Your Worst Nightmare,2017,121,5.57851,5.50391, +18453,423590,Coral Sea Solitaire: Deluxe Edition,2024,45,5.70333,5.50389,"43799, 423590" +18454,205604,Tricksters,2016,61,5.65082,5.50389, +18455,21435,Shoot The Moon,2004,42,5.71667,5.50387, +18456,11112,Rommel at Gazala,1995,45,5.70222,5.50387, +18457,8593,Wreckage,2003,625,5.51807,5.50385, +18458,145587,Alley Thieves,2014,30,5.80000,5.50385, +18458,16148,Auf heißer Spur,2005,30,5.80000,5.50385, +18460,10952,Bells of War: Conquest Series,1997,31,5.79032,5.50385, +18460,7985,Wolfsspuren,2003,31,5.79032,5.50385, +18462,368294,Wastelandia: A Co-op & Solo Boss Battler,2024,33,5.77273,5.50385, +18463,175923,Hoagie,2015,34,5.76471,5.50384, +18463,6453,Doktor Igel,2001,34,5.76471,5.50384, +18465,1661,Balance of Power,1979,36,5.75000,5.50384, +18466,20057,Phantom Rummy,2005,37,5.74324,5.50384, +18467,415508,Betrayal: Deck of Lost Souls,2024,45,5.70000,5.50383, +18468,7208,Guadalcanal,1983,32,5.77813,5.50381, +18469,257964,Lifestyle,2018,77,5.61779,5.50380, +18470,2630,Die Bombe,1998,35,5.75429,5.50380, +18471,184473,Mystery! Motive for Murder,2015,119,5.57731,5.50379, +18472,87829,Quest: Edição Família,2008,47,5.68983,5.50379, +18473,1947,Robin Hood,1991,70,5.62857,5.50379, +18474,27388,Hop to It!,2007,45,5.69778,5.50378, +18475,91513,Princess Magic Fairy,2011,77,5.61710,5.50378, +18476,194688,Island Hopper,2017,84,5.60741,5.50377, +18477,184843,Cultists & Cthulhu,2016,52,5.67041,5.50376,"184843, 410254" +18478,200184,Monopoly: Super Mario Bros,2016,41,5.71463,5.50375, +18479,3384,Kerrunch,1991,43,5.70465,5.50375, +18480,145400,Strajk! Skok do wolności,2013,45,5.69556,5.50374, +18481,123495,Dreaming Dragon,2012,50,5.67600,5.50373, +18482,3294,Dumm gelaufen!,1998,385,5.52610,5.50373, +18483,8502,Big League Baseball,1967,54,5.66296,5.50373, +18483,141569,CrossWays,2013,54,5.66296,5.50373, +18485,122711,"""La Garde recule!""",2011,41,5.71341,5.50373, +18486,236893,Fish & Ships,2017,32,5.77187,5.50372, +18487,17849,Xochintlan,1996,48,5.68229,5.50372, +18488,31216,Whack a Catgirl,2007,162,5.55661,5.50371, +18489,4814,Rubout,1989,66,5.63333,5.50371, +18490,2911,Point-Blank,1979,95,5.59368,5.50371, +18491,238883,The Great Tour: European Cities,2017,69,5.62754,5.50370, +18492,351857,Allie Gator,2022,73,5.62055,5.50370, +18493,83117,Kings of Mithril,2010,115,5.57783,5.50370, +18494,25229,Rommel y Montgomery,1982,53,5.66415,5.50369, +18495,3378,The Inventors,1974,377,5.52623,5.50369, +18496,2101,Orbit War,1983,40,5.71500,5.50366, +18497,5308,Sahara,2002,121,5.57347,5.50366, +18498,25271,Das Jagdspiel,1954,44,5.69545,5.50366, +18499,128072,Vege Tables,2012,81,5.60752,5.50365, +18500,190950,Inverted Dice,2015,41,5.70854,5.50364, +18501,5236,Yin Yang,1997,39,5.71897,5.50364, +18502,253095,TOPPEN,2013,32,5.76562,5.50363, +18503,27667,RisiKo! Pocket,2012,62,5.63871,5.50363, +18504,348498,Steal the Bacon,2021,38,5.72368,5.50363, +18505,328188,House of Plants,2019,42,5.70238,5.50362, +18506,10392,Campaigns of Napoleon,1980,44,5.69318,5.50362, +18506,7443,Electronic Scattergories Platinum Edition,2001,44,5.69318,5.50362, +18508,2991,Mandala,1983,46,5.68478,5.50361, +18509,63814,Bethump'd with Words: Voyager Edition,2001,63,5.63571,5.50361,"6869, 63814, 65401" +18510,11974,"Kipp, Kipp, Ahoi!",2004,61,5.63934,5.50359, +18511,31380,Modern Society,2009,154,5.55727,5.50358, +18512,6235,The Perilous Parlor Game,2002,238,5.53828,5.50358, +18513,98203,Redakai,2011,114,5.57596,5.50358, +18514,227837,Atlas: Enchanted Lands,2017,99,5.58687,5.50357, +18515,10666,R.OC,2003,34,5.74559,5.50357, +18516,137910,Triple³,2013,50,5.66800,5.50356, +18517,329230,Bluffaneer,2021,185,5.54798,5.50356, +18518,129465,Black Stories 8,2012,53,5.65849,5.50356, +18519,1207,Big Deal,2001,130,5.56669,5.50356, +18520,6680,Murphy's Magic Island,1992,30,5.77667,5.50355, +18521,2442,Tiles,1995,32,5.75938,5.50355, +18522,154010,MindMaze: Verzwickte Rätsel – Kriminalfälle,2014,33,5.75152,5.50355, +18523,181245,OMG,2015,109,5.57853,5.50354, +18524,20601,La Legion: El juego de la Guerra de Africa,1984,38,5.71842,5.50354, +18525,1247,Gangland!,1996,102,5.58333,5.50353, +18526,30600,Monopoly: London Nostalgia Wooden Box,2003,35,5.73543,5.50352, +18527,2943,Lepanto,,515,5.51924,5.50351,"1964, 2943" +18528,140961,Leelawadee,2013,45,5.68333,5.50351, +18529,10192,5000,1963,32,5.75628,5.50351, +18530,345940,Monopoly: Target Edition,2021,33,5.74848,5.50350, +18531,9126,The Game of Pilgrim's Progress,1994,32,5.75469,5.50348, +18532,223858,Kittys,2017,36,5.72667,5.50348, +18533,270958,Sovereign's Chain,2019,49,5.66735,5.50348, +18534,62374,Lorrein,2011,38,5.71447,5.50348, +18535,111721,The Gang,2011,33,5.74545,5.50346, +18536,349494,Crime Scene: London 1892,2021,80,5.60325,5.50346, +18537,7918,Eagle Eye Agency,1982,34,5.73824,5.50346, +18538,2858,Mathable,1987,92,5.59022,5.50346, +18539,3626,Demons: The Game of Evil Spirits,1979,132,5.56379,5.50345, +18540,8178,Constellation,2003,41,5.69756,5.50345, +18541,14119,Der Prestel Schlossgarten,2004,81,5.60123,5.50343, +18542,189833,Monopoly: Cthulhu,2016,54,5.65000,5.50343, +18543,171087,Jenga Quake,2013,96,5.58583,5.50343, +18544,38702,Sink the Bismarck,2008,56,5.64464,5.50343, +18545,10274,Starship Captain,1982,30,5.76667,5.50342, +18546,244951,Round the World,2018,65,5.62489,5.50342, +18547,191928,Music IQ,2016,32,5.75000,5.50342, +18548,5156,Crime Solvers,1986,47,5.67128,5.50342, +18549,7186,Weapons & Warriors: Cavalry Attack Set,1994,33,5.74212,5.50341, +18550,254341,I Would Fight The Dragon...,2018,116,5.57130,5.50341, +18551,6809,007 James Bond: The Man with the Golden Gun,1985,38,5.71053,5.50341, +18552,8945,Stadium Checkers,1952,171,5.54935,5.50341,"8945, 23653" +18553,241297,Not Parent Approved,2015,43,5.68605,5.50340, +18554,199026,Neko-in,2015,46,5.67391,5.50340, +18555,147396,Dr. Hrubec,2013,53,5.65094,5.50339, +18556,226013,Geisteruhr,2017,40,5.69875,5.50339, +18557,3894,Brilliant Lances,1993,56,5.64286,5.50339, +18558,18563,Scavenger Hunt,2005,72,5.61181,5.50338, +18559,1226,Babuschka,1982,64,5.62500,5.50337, +18560,18913,Tabu Body Talk,2001,66,5.62121,5.50337, +18561,282341,House Flippers,2019,105,5.57735,5.50337, +18562,8510,Twilight of the Habsburgs,2000,40,5.69750,5.50337, +18563,9646,Where in the World?,1986,60,5.63250,5.50336, +18564,286829,Uxmal,2019,113,5.57168,5.50335, +18565,349409,Snack Time,2022,56,5.64107,5.50334, +18566,172410,Flea Market,2015,117,5.56923,5.50334, +18567,24180,Las siete y media,,35,5.72314,5.50334, +18568,67884,AZ Kviz,2007,36,5.71667,5.50333,"67884, 424012" +18569,177289,Leaps and Ledges,2014,37,5.71081,5.50333, +18570,14424,Emperor's First Battles,1995,54,5.64537,5.50333, +18571,6355,Cirondo,1991,88,5.59045,5.50332, +18572,157675,Wash Dash,2014,50,5.65662,5.50332, +18573,148940,Kings Under Mountains,2013,112,5.57143,5.50331, +18574,171221,Kniffel Kids,2009,58,5.63483,5.50331, +18575,18262,Hide & Seek Safari,2005,56,5.63929,5.50330, +18576,11051,Number Quest,1997,30,5.75667,5.50330, +18577,341936,Dice Trip: Deutschland,2021,36,5.71389,5.50329, +18578,67041,Monstermania,2010,38,5.70263,5.50328, +18579,166156,Hoshi Battle,2014,40,5.69250,5.50328, +18580,31069,Medievalia,2007,170,5.54765,5.50327, +18581,216695,Blindes Huhn extrem,2017,146,5.55493,5.50327,"858, 216695" +18582,154585,Groovy Pips,2014,52,5.64808,5.50326, +18583,36985,Logger,2008,117,5.56752,5.50326, +18584,93271,Convocados,2011,41,5.68661,5.50326, +18585,166371,El Luchador Fantastico Grande,2015,41,5.68602,5.50325, +18586,286703,Kameleo,2019,33,5.73030,5.50325, +18587,209220,Lady Richmond: Ein erzocktes Erbe,2016,87,5.58911,5.50324, +18588,22469,Avatar: The Last Airbender Trading Card Game,2006,63,5.62143,5.50323, +18589,179574,Scuba,2016,125,5.56280,5.50323, +18590,1619,The Roaring 20's,1981,48,5.65833,5.50323, +18591,249289,Zogen,2018,150,5.55284,5.50323, +18592,209362,Exlibrium,2015,31,5.74258,5.50322,"209362, 235938" +18593,145632,NFL Game Day,2013,78,5.59817,5.50321,"145632, 312879" +18594,3207,Respond!,2000,30,5.75000,5.50321, +18594,112963,Karuta,1600,30,5.75000,5.50321,"112963, 344699, 347829, 347830" +18596,296250,Unlocking Insanity: Dice Vermiis Mysteriis,2020,35,5.71429,5.50320, +18597,3351,Wer ist der Täter?,1989,40,5.68750,5.50320, +18598,66218,Who Wants To Be A Millionaire? (2nd Edition),2008,41,5.68293,5.50319, +18598,9272,Jade König,1986,41,5.68293,5.50319, +18600,27460,Power Yahtzee,2007,46,5.66304,5.50319, +18601,3514,Game of Knowledge,1984,79,5.59620,5.50319,"3514, 423746" +18602,326851,Borneo,2008,194,5.54098,5.50318,"32164, 326851" +18603,4586,Bärenspiel,1983,54,5.63889,5.50318, +18604,9571,Baha,1989,55,5.63636,5.50318, +18605,15121,Exago,2004,233,5.53455,5.50317, +18606,9022,Im Reich des weißen Bären,1991,60,5.62500,5.50317, +18607,7334,Knockout,1991,118,5.56508,5.50317, +18608,5011,Monsters of the Midway,1982,34,5.71765,5.50316, +18609,2937,Diceland,2002,216,5.53686,5.50316, +18610,8519,How to Host a Mystery: Star Trek – The Next Generation,1992,70,5.60714,5.50316, +18611,10203,ASAP,1987,81,5.59259,5.50314, +18612,7232,Initial D,2003,50,5.64800,5.50314, +18613,54743,Scene It? 80s,2009,57,5.62982,5.50313, +18614,3896,Struggle For The Throne: Star Trek III,1984,31,5.73548,5.50312, +18615,67977,Politico: The Fall of Caesar,2010,32,5.72813,5.50312, +18616,118713,Peek-a-Boo!,2012,33,5.72121,5.50312, +18617,63897,Shave a Sheep,2010,357,5.52325,5.50312, +18618,27541,Extreme Activity,2007,37,5.69676,5.50311, +18619,19044,Holidays,2005,45,5.66222,5.50310, +18620,169459,The Princess Bride: A Battle of Wits,2015,187,5.54139,5.50310, +18621,16314,Party Scrabble,2004,55,5.63313,5.50310, +18622,27336,PowerShot Soccer,2006,49,5.64898,5.50310, +18623,137016,Fish Fish,2013,68,5.60809,5.50310, +18624,14897,Space Blast,2004,53,5.63774,5.50309, +18625,197693,Cheeky Monkeys,2016,30,5.74000,5.50308, +18626,77548,Arkham Express,2010,53,5.63679,5.50307, +18627,90919,PRRRT...,2011,109,5.56798,5.50307, +18628,311497,MetaZoo: Cryptid Nation,2021,46,5.65652,5.50306, +18629,30175,Stratego: Pirates of the Caribbean at Worlds End,2007,31,5.72903,5.50304, +18630,265276,The Crystal Maze,2018,105,5.56971,5.50304,"16723, 265276, 308345" +18631,17699,Polarity,2002,34,5.70882,5.50303, +18632,428457,Refuge,2024,39,5.68205,5.50303, +18633,201971,Super Hack Override,2016,41,5.67317,5.50302, +18634,254585,Bad Doctor,2018,60,5.61917,5.50302, +18635,146388,Ender's Game: Battle School,2013,82,5.58799,5.50302, +18636,119472,Konito?,2012,144,5.55139,5.50302,"119472, 234201, 234202" +18637,116124,Lokus,2012,81,5.58889,5.50302, +18638,320766,3 Little Pigs,,30,5.73478,5.50301, +18639,39180,Wordquest,2009,188,5.53989,5.50301,"39180, 119534, 181074, 284857" +18640,94346,Galapa Go,2011,96,5.57500,5.50300, +18641,260505,Stack Spell,2018,30,5.73333,5.50300, +18641,195255,Don't Drink and Draw,2010,30,5.73333,5.50300, +18643,62811,Two Bridges,2008,32,5.71875,5.50299, +18644,318632,For the Girls,2019,33,5.71212,5.50299, +18645,29491,Dipole,2007,50,5.64100,5.50299, +18646,3649,Power Play,1981,34,5.70588,5.50299, +18647,327297,Monopoly: Super Electronic Banking,2020,37,5.68919,5.50299, +18648,138746,Teenage Mutant Ninja Turtles: Clash Alley Strategy Boardgame,2013,42,5.66667,5.50298, +18649,319291,Elf: Snowball Showdown,2020,47,5.64894,5.50297, +18650,72560,Cranium Junior,2009,51,5.63725,5.50297, +18651,274174,4-Bidden Words,2018,32,5.71687,5.50297, +18652,76416,NCIS: The Board Game,2010,58,5.62069,5.50296, +18653,337832,Hotel Lovecraft,2020,30,5.73000,5.50295, +18654,23196,Battaglia Navale,1969,32,5.71563,5.50295, +18655,3598,Tracks to Telluride,1994,43,5.66116,5.50295, +18656,26157,Top oder Flop,2006,35,5.69714,5.50295, +18657,5295,Tactics (25th Anniversary Edition),1983,909,5.51041,5.50294,"1574, 5295, 31766" +18658,169755,Woof Meow Biscuits,2014,93,5.57588,5.50294,"169755, 250678" +18659,14021,Geister & Gespenster,2004,40,5.67250,5.50294, +18660,2499,Equate,1996,128,5.55586,5.50294, +18661,376707,Cannonades,2023,44,5.65682,5.50294, +18662,193031,Coal Country,2017,46,5.65000,5.50293, +18663,105550,Rolling Bones,2011,59,5.61695,5.50292, +18664,307830,Circus,2019,46,5.64891,5.50291, +18665,6876,Lee vs. Meade: The Battle of Gettysburg,1974,30,5.72667,5.50291, +18666,147472,Shooting Star,2013,34,5.70000,5.50291, +18667,90460,OlymPeak,2011,36,5.68889,5.50290, +18668,212902,Do Eat!,2016,42,5.66190,5.50290, +18669,8497,Torches & Pitchforks,2003,232,5.53168,5.50290, +18670,22799,Legie,2005,101,5.56881,5.50289, +18671,2067,Double,1996,35,5.69286,5.50288, +18672,33959,Het Huis Anubis,2007,95,5.57284,5.50288, +18673,776,Remmi Demmi,1999,56,5.62143,5.50288, +18674,3107,Mömmen,2001,48,5.64062,5.50287, +18674,111543,Teneriffa,2011,48,5.64062,5.50287, +18676,191512,Kuhno,2016,49,5.63776,5.50287, +18677,19030,Frankenstein,2005,51,5.63235,5.50286,"19030, 397343" +18678,5709,Touché,1979,418,5.51864,5.50286, +18679,14567,Pro Foto-Football,1977,41,5.66366,5.50286, +18680,4738,Dead Stop!,1979,41,5.66341,5.50285, +18681,187127,Monopoly: Back to the Future,2015,44,5.65227,5.50285, +18682,33779,Go 500 Racing Dice Game,2005,48,5.63958,5.50285, +18683,129609,Foreclosed!,2012,101,5.56782,5.50284, +18684,206083,Ragers: Champions of the Arena,2016,51,5.63137,5.50284, +18685,150615,Fanhunter: Las Montañas de la Locura – Electric Boogaloo,2013,52,5.62846,5.50283, +18686,1522,Get Out,1998,250,5.52896,5.50283, +18687,11441,"The Last Panzer Victory: The Battle of Debrecen – Hungary, 1944",1983,45,5.64778,5.50283,"11441, 15717, 307167" +18688,21294,NoNo,2006,72,5.59306,5.50282, +18689,180292,Stingy,2015,110,5.56182,5.50281, +18690,183479,Happy Party,2015,32,5.70548,5.50281, +18691,22080,Brain Trainer,1975,146,5.54719,5.50281, +18692,24706,Where is Moldova?,2005,80,5.58375,5.50281,"24706, 281078" +18693,4628,Ice Cube,1972,43,5.65256,5.50279,"4628, 292650" +18694,5304,Basketball Strategy,1974,166,5.54157,5.50279, +18695,33421,Collateral Damage,2007,47,5.63960,5.50279, +18696,271735,Mars Horizon: Blast Off!,2019,30,5.71667,5.50278, +18696,184627,Stick to Colours,2015,30,5.71667,5.50278, +18698,9719,Desert Victory,1991,31,5.70968,5.50278,"9719, 9720" +18698,14606,Yu Yu Hakusho CCG,2004,31,5.70968,5.50278, +18700,108554,Super Showdown,2012,131,5.55174,5.50278, +18701,8644,Masquerade,1986,33,5.69697,5.50278, +18702,17420,"Rette sich, wer kann!",1983,34,5.69118,5.50278, +18703,345161,Ship Ahoy,2021,35,5.68571,5.50278, +18704,10742,Foxy,1977,47,5.63896,5.50277,"10742, 236009" +18705,120254,The Presidential,2012,36,5.68056,5.50277, +18705,17738,Ostfriesenlauf,2005,36,5.68056,5.50277, +18707,243101,Monopoly: Stranger Things,2017,67,5.59821,5.50277, +18708,7868,Quadtria,2000,41,5.65854,5.50277, +18709,340377,EVL,2021,57,5.61439,5.50276, +18710,111830,DiceAFARI,2012,96,5.56875,5.50275, +18711,153496,Azteka,2014,53,5.62226,5.50275, +18712,221633,Mascletà,2017,34,5.68794,5.50273, +18713,17700,Cluedo Card Game,1990,130,5.55115,5.50273, +18714,3951,Octrix,1970,40,5.66000,5.50273, +18715,20769,Finale,2005,41,5.65610,5.50273, +18716,21986,Ramba Samba,2006,32,5.69844,5.50272, +18717,114316,Ace of Spies,2012,92,5.57065,5.50271, +18718,3639,Strange New Worlds,1978,52,5.62269,5.50270, +18719,172064,Rally Up!,2015,111,5.55856,5.50269, +18720,8503,Arkansas Bluff,1975,37,5.67027,5.50269, +18721,23485,"Dice 10,000",,44,5.64318,5.50268, +18722,2537,Draco & Co,2001,413,5.51763,5.50268,"775, 2537" +18723,170996,Gaza 1917: Gateway to Jerusalem,2014,30,5.70833,5.50267, +18724,2616,Janus,1993,85,5.57471,5.50265, +18725,168199,Black Stories 10,2014,40,5.65533,5.50265, +18726,2104,Speculate,1972,75,5.58400,5.50265, +18727,313833,MTV: The Throwback Music Party Game,2020,61,5.60219,5.50263, +18728,168204,"Sesam, puzzle dich!",2012,97,5.56495,5.50262, +18729,173463,Awkward Moment at Work,2015,31,5.69677,5.50261,"127506, 173463" +18730,65889,Seven Card Samurai,2010,179,5.53609,5.50260, +18731,144565,Where's my Cupcake?,2012,31,5.69581,5.50260, +18732,161869,Castle Blast,2013,46,5.63239,5.50259, +18733,15654,Blizzard of '77 Travel Game,1977,53,5.61509,5.50258, +18734,160488,Faras,2014,64,5.59531,5.50257, +18735,120174,The Game of LIFE: zAPPed Edition,2012,31,5.69355,5.50257, +18736,170295,Foodtown Throwdown,2015,32,5.68750,5.50257, +18736,165743,In Love and War,2014,32,5.68750,5.50257, +18738,6936,Robotanks,1992,36,5.66667,5.50256, +18739,41834,Lunar Command,2009,95,5.56474,5.50256, +18740,257904,Monopoly: Dragon Ball Z,2017,39,5.65385,5.50256, +18741,119792,Edition Wars,2012,32,5.68688,5.50256, +18742,2765,Too Many Cooks,2001,40,5.65000,5.50256, +18743,9083,Grunwald 1410,1999,41,5.64634,5.50256, +18744,31421,Skräll,2007,46,5.63043,5.50255, +18745,328144,Clue Junior: The Case of the Broken Toy,2018,61,5.59836,5.50253, +18746,23374,HeroCard Champion of New Olympia,2006,62,5.59677,5.50253, +18747,252990,Gift Party,2018,51,5.61686,5.50253, +18748,208170,Stellar Armada,2017,68,5.58824,5.50253, +18749,214427,Hex Casters,2016,49,5.62143,5.50253, +18750,305460,Dungeon Breakout,2021,54,5.61037,5.50252, +18751,282515,Stalingrad Besieged,2019,33,5.67879,5.50252, +18751,160537,Code Monkey Island,2014,33,5.67879,5.50252, +18751,303524,Escape from Flat Earth,2020,33,5.67879,5.50252, +18754,197066,Time Management: The Time Management Game,2016,121,5.55041,5.50251, +18755,5998,The Italian Campaign: Sicily,1991,102,5.55931,5.50251, +18756,4861,Cookie Fu,2003,83,5.57229,5.50251,"4861, 102197" +18757,88005,Aguila Roja,2010,47,5.62468,5.50249, +18758,3045,Pentantastar,1983,36,5.66167,5.50248, +18759,17021,Dinosaur Dice,2004,37,5.65730,5.50248, +18760,3037,Escape from Altassar,1982,34,5.67059,5.50248, +18761,66416,The Crow and the Pitcher,2010,71,5.58292,5.50248, +18762,346658,Bear Stare Down: The Card Game,2021,47,5.62397,5.50248, +18763,5433,The Crocodile Hunter Game,1994,74,5.57946,5.50247, +18764,234623,Penguin Brawl: Heroes of Pentarctica,2018,43,5.63488,5.50247, +18765,180066,Espada Negra: Juego de Mesa – Edición Dormenia,2014,34,5.66912,5.50246,"180066, 223396" +18766,8526,Claymania,1993,37,5.65541,5.50245, +18767,4329,Drake & Drake,2002,247,5.52536,5.50245, +18768,1913,Transsib,1996,38,5.65132,5.50245, +18769,124393,Cavemen Playing With Fire,2012,63,5.59206,5.50245, +18770,326804,Rorschach,2021,163,5.53703,5.50244, +18771,7296,Goth: The Game of Horror Trivia,2002,69,5.58406,5.50244, +18772,8475,Tempus Draconis,2003,90,5.56500,5.50244, +18773,2746,Asteroid Pirates: A Game of Ship to Ship Combat in the Asteroid Belts,1981,32,5.67812,5.50244, +18774,348517,Mes Amis Sont...,2021,39,5.64615,5.50243,"348517, 409975" +18775,975,The Keep,1983,34,5.66647,5.50242, +18776,157294,Cat 10,2013,41,5.63780,5.50241, +18777,134615,Zogar's Gaze,2013,152,5.53882,5.50240,"134615, 187459" +18778,13513,Skåål,2004,153,5.53856,5.50240, +18779,287575,Daedalus' Maze,2019,33,5.66970,5.50239, +18780,56889,Kajko i Kokosz: Wielki Wyścig,2009,57,5.59912,5.50239, +18781,200290,Draw What?!,2015,38,5.64737,5.50239, +18782,17693,Piranha,2004,57,5.59825,5.50237, +18783,92243,Monopoly: The Muppets Collector's Edition,2010,30,5.68333,5.50235, +18784,1316,Plem Plem,1996,31,5.67742,5.50235, +18784,14167,War Law,1993,31,5.67742,5.50235, +18784,2030,"Twinkle, Twinkle, Little Star",1999,31,5.67742,5.50235, +18787,1027,Konzern,1997,32,5.67188,5.50235, +18788,75445,Grunwald: Walka 600-lecia,2010,33,5.66667,5.50235, +18789,312698,Escape from the Mall,2020,34,5.66176,5.50235, +18790,5679,Mario Party-e,2003,38,5.64474,5.50235, +18791,5863,Canadian Civil War: La Guerre de la Sécession du Canada,1977,40,5.63750,5.50234, +18791,314746,Trivial Pursuit: Domówka,2019,40,5.63750,5.50234, +18793,652,X-Net,1999,43,5.62791,5.50234, +18794,181376,G.Nome,2015,51,5.60784,5.50233, +18795,368126,Arabella,2023,54,5.60185,5.50233, +18796,73563,UNO: Toy Story 3,2010,35,5.65429,5.50231, +18797,34296,Cobra,2007,37,5.64568,5.50230, +18798,1654,Double Crossing,1988,111,5.55000,5.50230, +18799,30582,Good Question!,2007,83,5.56578,5.50228, +18800,373636,Takenokolor,2024,251,5.52319,5.50228, +18801,1984,Material World,1995,76,5.57105,5.50227, +18802,58192,Nelly,2009,57,5.59386,5.50226, +18803,341465,Kingsbridge: The Game,2021,76,5.57092,5.50226, +18804,5000,Tuf-abet,1969,38,5.63947,5.50226, +18805,26052,Canossa,2006,39,5.63590,5.50226, +18806,135851,Connect the Thoughts,2013,41,5.62927,5.50226,"135851, 190552" +18807,39447,Silent But Deadly Night,2008,86,5.56279,5.50226, +18808,151947,Trivial Pursuit: Doctor Who,2013,88,5.56136,5.50225, +18809,166390,Moscow to Paris,2014,32,5.66406,5.50224, +18810,259966,Tomb Raider Legends: The Board Game,2019,36,5.64583,5.50224, +18811,27546,Champions of Faith,2006,38,5.63816,5.50224, +18812,65559,Take the Cake,2010,88,5.56080,5.50223, +18813,7711,Hats Off,1968,47,5.61170,5.50223, +18814,33569,Wildcraft!,2006,145,5.53766,5.50223, +18815,126464,Array,2012,54,5.59722,5.50222, +18816,169831,Playa Pirata,2014,33,5.65758,5.50222, +18817,157593,Krash Karts,2014,34,5.65294,5.50222,"136305, 157593" +18818,6678,Cube Checkers,1997,43,5.62119,5.50222, +18819,1318,Blackrock Castle,2001,45,5.61556,5.50221, +18820,5539,Swoggle,1986,33,5.65606,5.50220, +18821,2897,In Pursuit,2001,176,5.53102,5.50220, +18822,336,Jumpin,1964,229,5.52428,5.50219, +18823,187201,First Saratoga: Burgoyne's Gambit,2015,31,5.66452,5.50218, +18824,302314,Cthulhu Kitchen,2019,32,5.65938,5.50218, +18825,3450,The Dickens Game,1983,34,5.65000,5.50218, +18826,24325,Toppling the Reich: The Battles for the Westwall,2006,41,5.62439,5.50217, +18827,402150,Head Trip,2023,31,5.66290,5.50216, +18828,187186,Movies Trivia Game,2013,55,5.59236,5.50215, +18829,19114,Captain Treasure Boots,2005,123,5.54228,5.50214, +18830,340166,Timeland: A Taluva adventure,2021,31,5.66129,5.50214, +18831,365685,Llamageddon,2022,32,5.65625,5.50214, +18832,140840,Personally Incorrect,2013,183,5.52907,5.50214, +18833,81825,Moto GP,2009,33,5.65145,5.50214, +18834,153501,Mit Mist und Tücke,2014,36,5.63889,5.50213, +18835,405016,Trivial Pursuit: Marvel Studios The Infinity Saga – Ultimate Edition,2023,46,5.60913,5.50213,"184442, 213711, 405016" +18836,302452,Beard Wizards,2019,38,5.63158,5.50213, +18837,3047,Rails Through the Rockies,1981,43,5.61628,5.50213, +18838,351515,Capybara 'n' Capybara,2021,93,5.55484,5.50213, +18839,2190,Star Trek: The Card Game,1996,199,5.52662,5.50211, +18840,25567,Mozaika,2006,108,5.54722,5.50211, +18841,7421,Rhumb Line,2003,51,5.59706,5.50210, +18842,1790,Rollout: The Game of the Risk-Takers,1987,79,5.56329,5.50210, +18843,12226,Minestrone,2003,32,5.65313,5.50210, +18844,80972,Meteor Strike,2010,56,5.58750,5.50207, +18845,13475,Schätzbold,2004,35,5.63857,5.50207, +18846,35674,Arktia,2008,135,5.53741,5.50207, +18847,3350,Schaska,1973,32,5.65000,5.50205, +18848,185375,Stormweavers,2016,36,5.63333,5.50205, +18849,300527,Dexterity Jane,2021,39,5.62282,5.50204, +18850,124395,Chipleader,2012,50,5.59600,5.50204, +18851,158053,Henchling,2016,36,5.63194,5.50203, +18852,9159,Emil und die Detektive,2003,31,5.65161,5.50201, +18853,21276,Grand Tribunal,2006,95,5.55053,5.50200, +18854,26996,Die Codeknacker,2006,31,5.64839,5.50197, +18855,535,Power Barons,1986,206,5.52361,5.50194, +18856,1908,G.O.O.T.M.U.,1992,122,5.53852,5.50194, +18857,137325,Skunk Bingo,2013,30,5.65000,5.50193, +18857,233106,In or Out,2017,30,5.65000,5.50193, +18859,275281,Polar Panic,2018,32,5.64062,5.50192, +18859,218640,Dice Stack,2017,32,5.64062,5.50192, +18861,287681,Slow Race!,2019,33,5.63636,5.50192, +18862,123491,Si j'étais Président...,2012,34,5.63235,5.50192, +18863,13070,Revolución,1999,35,5.62857,5.50192, +18864,40072,Domo Caption This! Game,2008,36,5.62500,5.50192, +18865,302302,SINS: Ooze of Gluttony – Battle Pack,2019,37,5.62162,5.50192,"294727, 302301, 302302, 302303, 302304, 302306, 320476, 329215, 329497, 356207" +18866,34958,Six,2008,116,5.54009,5.50192, +18867,17348,InuYasha TCG,2004,38,5.61842,5.50192, +18868,31820,Festival,2007,39,5.61538,5.50192, +18869,124378,Die kleinen Drachenritter,2012,94,5.54894,5.50192, +18870,240698,Apokalypsis,2017,43,5.60465,5.50192, +18871,38340,Scene It? Seinfeld,2008,197,5.52431,5.50191, +18872,6383,Life Style,1989,223,5.52164,5.50191, +18873,365,Tricks,1995,62,5.57274,5.50190, +18874,8084,Polygon,1998,31,5.64355,5.50190, +18875,20138,Rotundo,2005,115,5.54000,5.50190, +18876,304,Evergreen,1999,373,5.51364,5.50190, +18877,19379,Banzai!,2005,64,5.57031,5.50190, +18878,107680,Broomsticks and Backflips,2011,69,5.56522,5.50189, +18879,1267,Polar Dare!,1991,128,5.53594,5.50189, +18880,131478,"Auf die Weide, fertig, los!",2012,31,5.64194,5.50188, +18881,11071,Austin Poker,2004,33,5.63333,5.50188, +18881,14343,Zeepkistenrace,2004,33,5.63333,5.50188, +18883,242076,Mythic Arcana,2018,41,5.60732,5.50187, +18884,224664,La Famiglia,2017,117,5.53821,5.50184, +18885,6543,WorldKiller: The Game of Planetary Assault,1980,81,5.55432,5.50184, +18886,5067,Lifetime,1996,45,5.59556,5.50183, +18887,93275,Conquian,1897,48,5.58958,5.50183, +18888,132785,Monopoly: CityVille,2012,54,5.57963,5.50182, +18889,15520,Kids On Stage,1988,55,5.57818,5.50182, +18890,246797,Vertellis: Relationship Edition,2017,45,5.59444,5.50181,"242992, 246797, 336026" +18891,1008,Die Schlangen von Delhi,1994,75,5.55733,5.50181, +18892,175855,Epic Roll,2015,110,5.53955,5.50180,"175855, 209700" +18893,362858,Crime Scene: Lazio 1356,2022,32,5.63125,5.50180, +18894,183665,Squish'Em!: Fantasy,2015,60,5.57067,5.50179, +18895,5266,Scorpion,1983,38,5.61053,5.50179, +18896,5349,Kesselschlacht: Ukraine Spring 1944,1992,55,5.57636,5.50178, +18897,15431,Trivial Pursuit: Globetrotter,2002,119,5.53613,5.50177, +18898,24168,Pirates: Quest for Davy Jones' Gold,2006,183,5.52388,5.50176, +18899,2361,U.F.O.s,1992,47,5.58745,5.50175, +18900,1400,Columbus,1991,66,5.56273,5.50174, +18901,166048,Hitman Holiday,2015,31,5.63135,5.50174, +18902,3844,Pez,2000,69,5.55942,5.50173,"3844, 32833" +18903,125585,W Zakładzie: Lubelski Lipiec '80,2012,46,5.58804,5.50172, +18904,179629,Panda Head,2015,87,5.54713,5.50171, +18905,54604,High School Drama: Varsity Edition,2010,205,5.52098,5.50171,"26522, 54604" +18906,353518,Bluey Scavenger Hunt Game,2018,31,5.62903,5.50171, +18906,25871,Central Pacific,2006,31,5.62903,5.50171, +18908,76567,Maailmatrivia,2010,32,5.62500,5.50171, +18909,1162,Burp,1995,116,5.53560,5.50170, +18910,9901,Electric Jeopardy Game,1987,40,5.60000,5.50170, +18911,9816,LEGO Time Cruisers Game,1997,41,5.59756,5.50170, +18912,66047,Fast Lane,2010,53,5.57472,5.50168,"28607, 66047" +18913,6553,Pussy Cat,2003,90,5.54444,5.50167, +18914,99038,Monkeyland,2011,59,5.56644,5.50166, +18915,43413,Liar Liar,2009,32,5.62049,5.50165, +18916,70128,Gemischtes Doppel 2,2009,147,5.52721,5.50163,"42636, 70128, 105181, 305685" +18917,15880,The Hollywood! Card Game,2005,349,5.51235,5.50162, +18918,24245,Laser Battle,2006,158,5.52532,5.50162, +18919,23576,CooCoo the Rocking Clown!,2005,133,5.52970,5.50162, +18920,34091,Trivial Pursuit: Genus (2) Edition (German),1995,46,5.58275,5.50162, +18921,169988,Pancake Pile-Up,2014,53,5.57176,5.50161, +18922,113070,Zoneplex,2012,69,5.55507,5.50160, +18923,188493,Sequence Cats,2013,61,5.56167,5.50159, +18924,105434,Dingbats,2003,46,5.58043,5.50157, +18925,92304,Pixy Cubes,2011,30,5.62000,5.50154, +18926,17773,CrackeD ICE,2002,96,5.53854,5.50154, +18927,126206,Dragon Whisperer,2013,111,5.53351,5.50154, +18928,31715,IQube,2006,36,5.60000,5.50154, +18929,4558,Take Off!,1987,176,5.52159,5.50153, +18930,57276,Crazy Dancing,2009,64,5.55625,5.50152, +18931,8670,Der Herr der Ringe: Die Rückkehr des Königs,2003,51,5.57020,5.50152, +18932,26687,The Really Nasty Motor Racing Game,2006,69,5.55217,5.50152, +18933,89569,Uskoci: A Card Game of Croatian Pirates,2010,93,5.53871,5.50150,"89569, 428094" +18934,25236,Ear Tug,2004,31,5.61290,5.50150, +18935,193928,Top Trumps Tournament,2009,36,5.59722,5.50149, +18936,4248,City States of Arklyrell,1983,39,5.58974,5.50149, +18937,106836,Ostfriesisches Schafe-Schubsen,2011,45,5.57778,5.50149, +18938,34866,Crossword,1978,46,5.57609,5.50149, +18939,6333,Mighty Warriors,1991,53,5.56604,5.50148, +18940,406,Meteo,1989,108,5.53287,5.50147, +18941,155465,Peasant Buffet,2015,86,5.54047,5.50145, +18942,110649,La Guerre des Tuques,2011,31,5.60968,5.50145, +18943,5057,Never Call Retreat,1983,48,5.57083,5.50144, +18944,141679,PicWits!,2012,83,5.54096,5.50142, +18945,11258,Abagio,2004,54,5.56204,5.50142, +18946,16975,Teen Titans Collectible Card Game,2005,31,5.60645,5.50141, +18947,179975,Secret Santa,2015,73,5.54589,5.50141, +18948,2996,Dodge City,1983,38,5.58684,5.50141, +18949,3566,Thinking Man's Football,1966,66,5.55000,5.50139, +18950,389185,Micro Midgard,2024,37,5.58784,5.50139, +18951,157979,Tau Ceti: Planetary Crisis,2017,146,5.52329,5.50139, +18952,2390,Race to Riches,1989,54,5.56019,5.50138, +18953,286141,City Blox,2019,124,5.52661,5.50136, +18954,40617,Würfel Express,2009,55,5.55827,5.50136, +18955,285540,Wurf & Weg,2019,53,5.56038,5.50136, +18956,352234,The Diamond Swap,2021,59,5.55407,5.50135, +18957,151396,Bigfoot,2014,106,5.53066,5.50135, +18958,101239,Ponder,2010,70,5.54571,5.50135, +18959,22616,Crystal Faire,2006,52,5.56058,5.50134, +18960,190064,Explorers of the Lost Valley,2016,55,5.55675,5.50132, +18961,119856,Button Up!,2012,188,5.51729,5.50130, +18962,20153,Klumpeduns,1986,92,5.53370,5.50129, +18963,20146,Der Weg nach Drakonia,2005,102,5.53039,5.50129, +18964,6788,Viaduct,1975,30,5.60000,5.50128, +18964,205769,ButterKO,2016,30,5.60000,5.50128, +18966,154022,Clairvoyance,2013,31,5.59677,5.50128, +18967,38974,The Entrepreneur Card Game,1987,33,5.59091,5.50128,"1476, 38974" +18968,264209,Precious Cargo,2019,36,5.58306,5.50128, +18969,10813,Aya,1992,44,5.56818,5.50128, +18970,231362,"Sweet Honey, Bee Mine!",2017,46,5.56522,5.50128, +18971,31477,Polarity,2006,50,5.56000,5.50127, +18971,11970,Dracula's Revenge,2004,50,5.56000,5.50127, +18973,130597,Like: The Social Game,2012,62,5.54839,5.50127, +18974,32968,Shark Alarm!!!,2008,237,5.51350,5.50126,"32968, 417184" +18975,131530,The Hobbit: An Unexpected Journey,2012,158,5.51962,5.50126, +18976,268279,Tumblin' Monkeys Raptors Jurassic World,2018,858,5.50464,5.50126,"12826, 268279, 433394" +18977,17005,Bonaparte: The Napoleonic Campaigns,1982,54,5.55370,5.50123, +18978,103077,Copié Collé,2011,72,5.54043,5.50122, +18979,92081,Scene It? Disney Magical Moments Deluxe Edition,,30,5.59500,5.50122, +18980,11826,Cyberpunk: The Collectible Card Game,2003,78,5.53728,5.50122, +18981,41958,Mäuse Würfeln,2000,44,5.56505,5.50122, +18982,36523,Castellers,2008,174,5.51736,5.50122, +18983,266747,Challenge of the Superfriends Card Game,2019,121,5.52438,5.50122, +18984,257225,Boom Goes the Dynamite,2018,30,5.59433,5.50121, +18985,22254,Narnia Risk Junior,2006,120,5.52439,5.50121, +18986,35247,Qubix,2011,188,5.51596,5.50120, +18987,3628,Freche Frösche,2002,37,5.57568,5.50119, +18988,10574,Rock Jocks,1994,42,5.56667,5.50119, +18989,8675,Tops,2002,52,5.55385,5.50119, +18990,199590,Valiant Universe: The Deckbuilding Game,2016,57,5.54912,5.50118, +18991,41898,Epäillyt,2009,117,5.52436,5.50118, +18992,351849,Chang'an,2025,54,5.55093,5.50116, +18993,240824,Corks,2017,35,5.57714,5.50115, +18994,40386,Disney Club Penguin Trading Card Game,2008,43,5.56279,5.50115, +18995,3564,Programmer's Nightmare,1998,46,5.55870,5.50115, +18996,173100,Monsters' Tower,2015,89,5.53056,5.50114, +18997,220226,Sapphiro,2016,43,5.56155,5.50113, +18998,11483,Vittoria,1992,49,5.55408,5.50112, +18999,257199,Tokyo Washi Game Cats,2018,45,5.55867,5.50112, +19000,132717,Words with Friends,2012,107,5.52495,5.50111, +19001,821,La Trel,1994,54,5.54833,5.50111, +19002,369337,50 Clues: Escape the Blast Zone,2022,58,5.54483,5.50110, +19003,425431,Knuckling Knights & The Big Dragon Spectacle,2024,338,5.50854,5.50109,"11760, 425431" +19004,41901,Gänsemarsch,2009,32,5.57875,5.50108, +19005,4402,Bayon,2002,182,5.51467,5.50107, +19006,48154,Take a Chance,2009,32,5.57812,5.50107, +19007,83278,Captain Cool,2010,154,5.51708,5.50107, +19008,93288,Český film,2010,33,5.57576,5.50107, +19009,2924,Mr. Ree!: The Fireside Detective,1937,34,5.57353,5.50107, +19010,167669,The Best of TV and Movies,2012,144,5.51816,5.50107, +19011,15412,Tunebaya,2005,40,5.56250,5.50107, +19012,230915,Batasaurus,2016,59,5.54237,5.50106, +19013,141681,Troll Hunt,2014,45,5.55467,5.50105, +19014,10459,Tilt'n Tumble,1997,46,5.55217,5.50102, +19015,3271,Battlesuit,1983,145,5.51724,5.50102, +19016,17284,Kazink,2005,98,5.52487,5.50101, +19017,284839,St. Noire,2019,63,5.53810,5.50101, +19018,209168,Get Reelz,2017,45,5.55222,5.50100, +19019,31159,Piratatak,2008,575,5.50497,5.50099,"31159, 67026" +19020,202624,80's 90's Trivia Game,2014,37,5.56270,5.50099, +19021,14429,Ironsides,1994,34,5.56765,5.50098, +19022,67429,Shapes & Colors,2008,36,5.56392,5.50098, +19023,582,Kampf um Rom,1995,38,5.56053,5.50098, +19024,16649,Prickly Pile-Up,2008,46,5.55000,5.50098, +19025,339419,Blast,2021,47,5.54894,5.50098, +19026,149112,Kill Shakespeare,2014,140,5.51690,5.50097, +19027,22578,Transport,2006,32,5.57031,5.50096, +19028,123505,1000 Bornes sur un Plateau,2008,35,5.56429,5.50096, +19029,3693,Empires at War,1993,69,5.53304,5.50096, +19030,127317,Thousand Islands Railway,2012,38,5.55921,5.50096, +19031,223034,Dungeon Hustle,2017,93,5.52452,5.50095, +19032,245696,BeeSmart,2018,32,5.56875,5.50094, +19033,4096,Nodwick: The Card Game,2002,193,5.51218,5.50094, +19034,299570,Captain Bluff,2020,37,5.55946,5.50094, +19035,9471,Crazy Bugs,1991,42,5.55238,5.50094, +19036,11703,War of the States: Chickamauga & Chattanooga,2003,62,5.53570,5.50093, +19037,8600,up N dn,2003,49,5.54490,5.50093, +19038,4372,Froop!,2002,59,5.53729,5.50093, +19039,280281,Sinister Six,2019,172,5.51313,5.50091, +19040,122970,Popkult,2011,32,5.56562,5.50090, +19041,63900,Pirate Plank,2010,208,5.51082,5.50089, +19042,19763,Taboo Quick Draw,2002,42,5.55000,5.50089, +19043,1559,Wabbit's Wevenge,1986,104,5.52067,5.50089, +19044,129272,Prime Wars,2013,51,5.54118,5.50089, +19045,128408,Control-Alt-Hack,2012,31,5.56645,5.50088, +19046,2417,Charge it!,1972,76,5.52697,5.50086, +19047,5999,The Italian Campaign: Salerno,1992,82,5.52500,5.50086, +19048,366457,Sbam!,2022,51,5.53965,5.50086, +19049,21374,Napoleon Dynamite: It's Pretty Much My Favorite Animal Game,2005,32,5.56250,5.50086, +19049,169425,Rivals: Masters of the Deep,2015,32,5.56250,5.50086, +19051,1393,Basta!,1994,33,5.56061,5.50085, +19052,2923,Listen Up!,1997,36,5.55556,5.50085, +19053,371410,Disney Space Mountain Game: All Systems Go,2022,95,5.52154,5.50085, +19054,381168,Kivi Shapes,2018,136,5.51529,5.50085,"206851, 381168" +19055,235018,Jungle Joust,2017,45,5.54444,5.50085, +19056,295824,Monopoly Speed,2019,48,5.54167,5.50085, +19057,234383,Mucho Macho,2017,49,5.54082,5.50085, +19058,5790,Chutes Away!!!!!,1977,50,5.54000,5.50085, +19059,7667,History's Mysteries Card Game,2003,66,5.53030,5.50084, +19060,5449,Planet Hollywood: The Game,1997,76,5.52632,5.50084, +19061,36560,Click Clack,2008,105,5.51895,5.50083, +19062,18858,UNO: Nintendo,2004,79,5.52481,5.50082, +19063,202664,Lucha Jefe,2017,51,5.53765,5.50081, +19064,7322,Frog Tennis,2002,30,5.56333,5.50081, +19065,259329,Yummy Monsters,2018,31,5.56129,5.50081, +19066,5926,Glory Road: The First Battle of Bull Run,1986,39,5.54872,5.50081, +19067,157942,Teratozoic,2014,36,5.55250,5.50081, +19068,40871,Crunch: The Game for Utter Bankers,2009,397,5.50539,5.50079, +19069,1193,The Bottom Line,1985,82,5.52305,5.50079, +19070,124833,Tentacle Bento,2012,347,5.50600,5.50078, +19071,194034,Fire! Fire! Fire Fighters!,2016,40,5.54500,5.50077, +19072,137685,Muses,2013,41,5.54390,5.50077, +19073,216647,DiceBot MegaFun,2017,75,5.52434,5.50077, +19074,21382,In10sity,2005,58,5.53114,5.50076, +19075,10578,Super 3,1978,83,5.52169,5.50075, +19076,603,Putsch,1998,100,5.51800,5.50075, +19077,126749,Bim Bamm!,2012,42,5.54167,5.50075, +19078,30098,Caterpillar Dice,2004,44,5.53977,5.50074, +19079,315186,Over-Rated,2020,52,5.53365,5.50074, +19080,154642,Cinelinx: A Card Game For People Who Love Movies,2014,141,5.51277,5.50074, +19081,258775,The Cats of Ulthar Card Game,2019,38,5.54491,5.50073, +19082,176011,Wacky Challenge,2015,35,5.54857,5.50073, +19083,272770,Ravnica: Inquisition,2019,43,5.53953,5.50072, +19084,20265,Merlins Erben,1992,45,5.53778,5.50072,"3300, 20265" +19085,177048,Barking Up The Wrong Tree,2015,120,5.51458,5.50072, +19086,153038,Gone Viking!,2014,36,5.54611,5.50071, +19087,209541,Dead Cat: A Quantum Physics Card Game,2017,94,5.51809,5.50071, +19088,4655,Battle of the Halji,1987,52,5.53173,5.50070, +19089,323835,Adder: Realtime Chase System,2021,33,5.54848,5.50068,"306249, 323835" +19090,143560,New Zealand Menagerie,2011,50,5.53200,5.50068,"5215, 143560" +19091,3290,Maskenball Venezia,1999,71,5.52254,5.50067, +19092,77344,Atlantis Treasure,2010,118,5.51356,5.50066, +19093,1639,Archie Bunker's Card Game,1972,30,5.55000,5.50064, +19094,35896,Succesvol slecht zijn,2008,32,5.54688,5.50064, +19095,21,Gateway to the Stars,1994,33,5.54545,5.50064, +19096,15265,Hopp Galopp,2002,34,5.54412,5.50064, +19097,274439,Debunked,2020,36,5.54167,5.50064, +19097,185228,Rolf,2017,36,5.54167,5.50064, +19099,1427,GRO: Battle for the Petri Dish,1999,39,5.53846,5.50064, +19099,266308,100% Beef Showdown,2018,39,5.53846,5.50064, +19101,259310,Sheep Boom Bah,2019,138,5.51128,5.50064, +19102,5089,Harry Potter Halls of Hogwarts,2002,56,5.52679,5.50063, +19103,6963,Monopoly: Scooby-Doo! Fright Fest,2000,63,5.52381,5.50063, +19104,4069,Don't You Forget It,1983,75,5.52000,5.50063, +19105,20781,Café Race,2005,158,5.50981,5.50063, +19106,154477,Canopy Walk,2014,97,5.51546,5.50062, +19107,21729,Snake Lake,2006,111,5.51351,5.50062, +19108,179124,Air Alliance,2015,47,5.53085,5.50062, +19109,95115,Sopio,2011,96,5.51510,5.50060, +19110,235506,Cloud Mine,2018,34,5.54118,5.50060, +19111,130626,The Hobbit: An Unexpected Journey – Das Kartenspiel,2012,44,5.53182,5.50060, +19112,11083,Moby Pick,2004,68,5.52059,5.50059, +19113,241490,Pool Party,2018,104,5.51365,5.50059, +19114,107549,Crocodile,2010,55,5.52527,5.50059,"107549, 263729, 264921" +19115,5137,Ellery Queen's Mystery Magazine Game,1986,44,5.53136,5.50059, +19116,219278,Dread Draw,2017,54,5.52556,5.50058, +19117,295796,Cinderella's Dance,2019,116,5.51164,5.50056, +19118,42691,RÖK,2009,207,5.50676,5.50056, +19119,29939,Animal Express,2007,52,5.52500,5.50055, +19120,271516,Top Trumps Match,2016,60,5.52167,5.50055,"140053, 271516" +19121,26025,Tumba,2006,61,5.52131,5.50055, +19122,58672,Hit the Hat,2010,68,5.51912,5.50055, +19123,153710,Dodge Dice,2014,55,5.52345,5.50055, +19124,166929,Monster Laundry,2014,58,5.52184,5.50054, +19125,4340,Combots,1983,46,5.52717,5.50053, +19126,20965,Der Natur auf der Spur,1988,39,5.53169,5.50053, +19127,3356,Musketeers,1985,42,5.52929,5.50052, +19128,221053,Hanafuda Hawaii Style,2010,30,5.54000,5.50051, +19128,206616,Spywhere,2016,30,5.54000,5.50051, +19130,10152,Super Simon,1979,44,5.52727,5.50051, +19131,258544,Marble Bobsleigh,2018,73,5.51644,5.50050,"258544, 368629" +19132,29626,Robotics,2007,190,5.50658,5.50050, +19133,67865,Heiss auf Eis,2010,30,5.53667,5.50047, +19134,43167,The Livestock Market,2009,45,5.52444,5.50047, +19135,36299,Indiana Jones Akator Temple Race Game,2008,47,5.52340,5.50047, +19136,125028,Colorpop,2011,753,5.50189,5.50046, +19137,292338,La Casa de Papel: El Juego de Roles Ocultos,2019,48,5.52250,5.50046, +19138,165796,Assel Schlamassel,2014,167,5.50659,5.50044, +19139,21746,Pionjär,1960,35,5.52857,5.50043, +19140,159537,Ad-Lib Crossword Cubes,1963,37,5.52703,5.50043, +19141,33383,WobBally,2007,39,5.52564,5.50043, +19142,226529,Bitten: A Game of Survival,2017,41,5.52439,5.50043,"226529, 251467" +19143,87681,Za Dan,2009,45,5.52222,5.50043, +19144,7009,Khyber Rifles,1984,50,5.52000,5.50042, +19145,230910,Mistigri,2005,86,5.51176,5.50042, +19146,22682,"Panda, Gorilla & Co",2003,34,5.52898,5.50042, +19147,2175,Willi Wacker,1986,71,5.51408,5.50042, +19148,2784,Plague!,1991,85,5.51137,5.50040, +19149,3915,Won Over,1983,46,5.52065,5.50040, +19150,227010,Game of Trolls,2017,43,5.52171,5.50040, +19151,152286,Demigods Evolution,2014,45,5.52022,5.50039, +19152,163970,Tambuzi ... den Letzten trifft der Blitz!,2014,34,5.52647,5.50038, +19153,127590,Movie Trailer,2012,36,5.52500,5.50038, +19154,23552,Totally Dingbats,1990,37,5.52432,5.50038, +19155,5936,Sorry! Card Game,2002,38,5.52368,5.50038, +19156,10593,Hepta,1974,53,5.51698,5.50038, +19157,137017,Ovo,2013,103,5.50874,5.50037, +19158,2116,Cartino,1969,91,5.50956,5.50036, +19159,1433,Der grosse Gallier,2001,65,5.51308,5.50036, +19160,3373,San Gimignano,2002,153,5.50567,5.50035, +19161,360158,The Best Friend Game,2021,33,5.52424,5.50034, +19162,319400,Kurz vor Knapp,2020,38,5.52105,5.50034, +19163,37854,Cluedo Party: Tudor Mansion Edition,2006,42,5.51905,5.50034, +19164,193681,ButaBabel,2016,46,5.51739,5.50034, +19165,1330,Savannah Café,2001,418,5.50215,5.50033, +19166,168236,My Little Pony Rainbow Magic Game,2014,40,5.51875,5.50032, +19167,206508,Disney Tsum Tsum Bubble Fever,2016,47,5.51596,5.50032, +19168,1657,Space Pigs,1999,94,5.50798,5.50031, +19169,57702,Monopoly: Family Game Night Championship Edition,2009,56,5.51304,5.50031, +19170,28068,Four Twenty-one,,46,5.51567,5.50031, +19171,140675,Enchanted Cupcake Party Game,2013,123,5.50585,5.50030, +19172,234316,Super Kitty Bug Slap,2017,63,5.51111,5.50030, +19173,212348,Mined Out!,2016,74,5.50946,5.50029, +19174,201139,Haiku Warrior,2016,46,5.51413,5.50028, +19175,424225,Loot,2024,62,5.51054,5.50028, +19176,157683,Mimtoo Famille,2014,87,5.50747,5.50027,"119474, 157683" +19177,6574,Mad Dash!,1991,35,5.51714,5.50026, +19178,6219,Ice Lake,2002,44,5.51364,5.50026, +19179,18050,Argue!,2005,48,5.51250,5.50025, +19180,8585,Home Improvement,1993,50,5.51200,5.50025, +19181,3273,Cat Attack,2002,115,5.50530,5.50025, +19182,11528,White Eagle Eastward,1992,96,5.50573,5.50023, +19183,16700,Take a Gamble,2004,30,5.51667,5.50021, +19183,53631,Z pohádky do pohádky,2006,30,5.51667,5.50021, +19183,22953,Soviet System,1988,30,5.51667,5.50021, +19183,374521,"Planes, Trains and Automobiles",2022,30,5.51667,5.50021, +19187,34523,Double,1982,32,5.51562,5.50021,"2222, 34523" +19187,26467,Espias y confidentes,1975,32,5.51562,5.50021, +19189,8357,Spires of the Kremlin,1994,33,5.51515,5.50021, +19190,252382,Eesti Mälumäng,2017,52,5.50962,5.50021,"36905, 252382" +19191,39549,Destination Hogwarts,2008,62,5.50806,5.50021, +19192,5638,Monopoly Playmaster,1982,44,5.51125,5.50021, +19193,28511,Scene it? Disney Deluxe Edition,2005,73,5.50616,5.50019, +19194,270229,Dodoresque: Cherry Blossom,2019,86,5.50523,5.50019,"254494, 270229" +19195,21023,Il pranzo è servito,1982,32,5.51250,5.50017, +19196,564,Die Seidenstraße,1998,97,5.50412,5.50017, +19197,144420,Nichtlustig: Noch mehr Labor Chaos,2013,266,5.50150,5.50016,"50912, 144420" +19198,19697,Taverne de la Crypte,2004,57,5.50614,5.50015,"19696, 19697" +19199,1242,Cut and Run,1988,61,5.50574,5.50015, +19200,21563,Avista,,75,5.50467,5.50015, +19201,6708,Eureka!,2002,57,5.50596,5.50014, +19202,168174,On the Hunt for Dinos,2014,55,5.50606,5.50014, +19203,365470,May Contain Butts,2022,46,5.50710,5.50014, +19204,264154,Thrown,2019,42,5.50714,5.50013, +19205,256397,more dude,2018,551,5.50062,5.50012,"255618, 256397" +19206,324471,Czółko: Junior,2020,49,5.50531,5.50011,"236302, 324471, 411354" +19207,160413,Shadow of the Elder Gods,2015,119,5.50210,5.50010, +19208,175458,Bad Beets,2015,372,5.50065,5.50009, +19209,30335,Murdero,2007,53,5.50377,5.50008, +19210,2701,Schuss und Tor,1973,67,5.50299,5.50008, +19211,7944,Tortuga,2003,68,5.50294,5.50008, +19212,9506,Ooga!,2004,91,5.50220,5.50008, +19213,11551,Casbah,2004,38,5.50501,5.50008, +19214,195696,Magicka Mayhem: The Card Game,2016,40,5.50433,5.50007, +19215,7194,Centipede,1983,37,5.50405,5.50006, +19216,134547,卑怯なコウモリ (Cowardly Bat),2012,32,5.50313,5.50004, +19217,303883,RUN,2020,44,5.50227,5.50004, +19218,11205,All-American Football,1958,32,5.50156,5.50002, +19219,256540,The Brady Bunch Party Game,2018,50,5.50060,5.50001, +19220,215532,Misantropia,2016,70,5.50000,5.50000, +19220,1909,Nomadi,1995,56,5.50000,5.50000, +19220,27863,Lützen,1983,36,5.50000,5.50000, +19220,147824,TF22 Mine,2013,41,5.50000,5.50000, +19220,27536,Der kleine Sprechdachs,2006,31,5.50000,5.50000,"27536, 288803" +19220,177633,Ciak! Il gioco di carte,2015,45,5.50000,5.50000, +19220,169714,The Game of Life: My Little Pony,2014,38,5.50000,5.50000, +19220,7187,Finding Nemo,2003,49,5.50000,5.50000, +19228,217886,I Can't Even With These Spectacular Supers,2016,80,5.49915,5.49997,"211168, 217886, 217887" +19229,357867,Der rätselhafte Zauberwald,2022,38,5.49737,5.49996, +19230,177975,Smic Smac,2007,33,5.49697,5.49996,"177975, 218958" +19231,223332,King's Life,2017,526,5.49967,5.49994,"72766, 223332" +19232,161206,"Pequenas Igrejas, Grandes Negócios",2014,36,5.49333,5.49990, +19233,131684,Chop Chop,2012,39,5.49359,5.49989, +19234,1624,Quest of the Magic Ring,1975,31,5.49032,5.49987, +19235,4972,Lost Gold,1975,42,5.49167,5.49985, +19236,18164,Black Cannon,1986,81,5.49506,5.49983, +19237,59060,PsychoPet: Die durchgedrehte Haustierklinik,2009,73,5.49452,5.49983, +19238,37267,I Drank What?,2008,41,5.49024,5.49983, +19239,95128,Startup Fever,2012,88,5.49511,5.49982, +19240,37490,"Lumps, the Game of Big Rolls and Smart Holds",2008,58,5.49138,5.49979, +19241,97246,Wild West Express,2010,35,5.48571,5.49979, +19242,169328,Falling (Revised Edition),2014,1459,5.49944,5.49978,"75, 169328" +19243,90471,Hippo Hopp,2011,59,5.49136,5.49978, +19244,1567,Stockers!,1995,53,5.49038,5.49978, +19245,195,NASCAR Champions,1998,112,5.49509,5.49977, +19246,3996,Sudden Death!,1978,39,5.48590,5.49977, +19247,11208,Hopple-Popple,1995,33,5.48212,5.49975, +19248,229243,ShutterBug,2017,71,5.49155,5.49975, +19249,9633,Barbie Queen of the Prom Game,1960,62,5.49032,5.49975, +19250,138319,Nothing So Well Lost: The Siege of Rhodes 1522,2013,41,5.48537,5.49974, +19251,19120,High Stakes Drifter,2005,111,5.49432,5.49974, +19252,24716,Nebraska,2006,50,5.48700,5.49972,"16145, 24716" +19253,22045,Ditto,1998,38,5.48237,5.49971, +19254,200083,UNO: Frozen,2014,44,5.48455,5.49971, +19255,171540,Mount Pingo,2015,38,5.48158,5.49970, +19256,8631,Pocket Boggle,1980,35,5.48000,5.49970, +19257,2469,Wildcatter,1981,30,5.47600,5.49969, +19258,151603,Scrabble Twists & Turns,2012,61,5.48770,5.49968, +19259,56409,Activity Travel,2004,44,5.48295,5.49968, +19260,9157,Werner: Volle Socke,1990,36,5.47917,5.49968, +19261,23682,Splash!,1993,30,5.47500,5.49968, +19262,38359,The 3 Commandments,2008,588,5.49840,5.49968, +19263,113518,Eternas,2011,46,5.48326,5.49967, +19264,5882,Europe Aflame,1989,104,5.49231,5.49967, +19265,268948,Monopoly: Friends – The TV Series,2018,80,5.49000,5.49966, +19266,1715,Od,1985,47,5.48298,5.49966, +19267,31585,Piekło na Pacyfiku,1994,46,5.48261,5.49966, +19268,15991,Jenga Casino,2000,40,5.48000,5.49966, +19269,2866,The London Game,1972,303,5.49706,5.49966, +19270,244882,Not My Fault!,2017,33,5.47576,5.49966, +19271,151191,Pan T'es Mort,2013,172,5.49477,5.49964,"151191, 192409, 394163" +19272,229736,¡Ruiz!,2017,99,5.49091,5.49963, +19273,30760,Penguin Soccer,2010,58,5.48448,5.49962, +19274,7488,Squeeky,2003,55,5.48364,5.49962, +19275,123506,Wonderland,2012,53,5.48302,5.49962, +19276,2450,Deuce,1985,40,5.47750,5.49962, +19277,6977,Mission Command Land,2003,652,5.49818,5.49960,"2598, 6977" +19278,36234,Michelangelo,2008,47,5.47979,5.49960, +19279,10565,Fits,1999,125,5.49189,5.49958, +19280,352164,Trivial Pursuit: Decades – 2010 to 2020,2021,77,5.48701,5.49958, +19281,7586,An Enchanting Evening,1981,49,5.47959,5.49958, +19282,1109,Last Minute,2000,36,5.47222,5.49957, +19283,13561,Jurassic Park: Dinosaur Escape Card Game,1992,34,5.47059,5.49957, +19284,8645,20th Century Time Travel Card Game,2003,33,5.46970,5.49957, +19285,197634,"Cold War, Hot Armor: Vietnam",2017,32,5.46875,5.49957, +19286,2677,Commercial Crazies,1985,30,5.46667,5.49957, +19287,6883,Cthulhu Mash,2003,37,5.47270,5.49957, +19288,388392,Durchmarsch,2023,53,5.48075,5.49957, +19289,8620,Scattergories: Bible Edition,2000,71,5.48535,5.49956, +19290,11965,Topminos,1998,54,5.48000,5.49954, +19291,27073,Pipolo,2005,59,5.48136,5.49954, +19292,33125,Blasphemy,2007,53,5.47925,5.49953, +19293,378082,Bamboozle,2023,46,5.47609,5.49953, +19294,4849,The Charade Game,1985,54,5.47870,5.49951, +19295,81445,Hyves Ranking Game,2010,43,5.47209,5.49949, +19296,4319,Zeppelin,1993,74,5.48311,5.49947, +19297,49454,Chicago Gangsters,2009,87,5.48506,5.49946, +19298,1640,Blockbusters,1982,66,5.48030,5.49945, +19299,40908,Trivial Pursuit: Genus Edition – Bite Size,2004,62,5.47903,5.49945, +19300,11616,Monopoly: Spider-Man Collector's Edition,2002,61,5.47869,5.49945, +19301,5735,Dragonriders of Pern: The Book Game,1984,47,5.47234,5.49945, +19302,16699,Such & Such,2005,45,5.47111,5.49945, +19303,98472,Strain,2011,180,5.49222,5.49944, +19304,5856,The Wonderful World of Disney Trivia Game,1997,278,5.49456,5.49941, +19305,132145,Two Crowns,2012,55,5.47455,5.49941, +19306,30787,Monopoly: New York City,2003,32,5.45625,5.49940, +19307,220624,Dino Party,2018,110,5.48636,5.49938, +19308,3698,Clontarf,1993,84,5.48214,5.49937, +19309,163724,My Monopoly,2014,46,5.46739,5.49936, +19310,240004,Find the Pickle,2018,43,5.46512,5.49936, +19311,270732,Amoeba,2019,42,5.46429,5.49936, +19312,103687,Lamborghini: The Official Race Game,2011,41,5.46341,5.49936, +19313,287505,Alien: Perfect Organism,2019,40,5.46250,5.49936, +19314,6621,Rockets Red Glare,1981,38,5.46053,5.49936, +19315,6892,Tarawa: Bloody Betio,1992,36,5.45833,5.49936, +19316,147765,Znikające ciasteczka,2013,32,5.45312,5.49936, +19317,185024,Fruit Mix,2015,31,5.45161,5.49936, +19318,147881,Max: A Two-Player Game,1994,30,5.45000,5.49936,"5799, 147881" +19319,60057,Castle Capers,2009,86,5.48198,5.49935,"60057, 103844" +19320,96608,LEGO Champion,2011,91,5.48276,5.49935, +19321,6395,Combat,1963,36,5.45694,5.49934, +19322,297345,Family Feud: Platinum Edition,2019,87,5.48161,5.49933, +19323,165551,Moustache Smash,2014,110,5.48516,5.49932, +19324,9578,Goosebumps: One Day at Horrorland Game,1996,52,5.46923,5.49932, +19325,195496,Lego Ninjago Trading Card Game: Master of Spinjitzu,2016,42,5.46190,5.49932,"195496, 213520" +19326,136244,Miau!,2013,38,5.45789,5.49932, +19327,11955,Waz Baraz,2004,82,5.47915,5.49928, +19328,5836,Wordrop,2001,60,5.47167,5.49928, +19329,2315,Saratoga: 1777 – Burgoyne vs Gates,1974,39,5.45641,5.49928, +19330,3473,RisiKard!,1996,34,5.45000,5.49927, +19331,3295,Athos,1993,79,5.47785,5.49927, +19332,5640,Bombay Bazar,2001,135,5.48667,5.49926, +19333,161743,TacDex: Pirates,2014,48,5.46354,5.49926, +19334,147685,Hook!,2014,217,5.49124,5.49925, +19335,40654,This Big!,2009,55,5.46727,5.49924, +19336,22724,Zombie Rally,2005,52,5.46538,5.49924, +19337,5517,Mine!,1993,50,5.46400,5.49924, +19338,19307,Barricade,1974,40,5.45500,5.49923, +19339,216072,Top Gun: Plot Twist Party Game,2017,38,5.45263,5.49923, +19340,9583,UNO: SpongeBob SquarePants,2002,110,5.48309,5.49923, +19341,189969,Orange Quest,2015,73,5.47452,5.49922, +19342,8950,Bid It,2003,35,5.44714,5.49921, +19343,6000,The Italian Campaign: Anzio,1992,85,5.47765,5.49921, +19344,20018,Aloha,2005,165,5.48809,5.49921, +19345,19957,Blitz,,367,5.49416,5.49920, +19346,236112,60-Second Slam,2016,33,5.44242,5.49919, +19347,273919,Flags around the World,2014,50,5.46160,5.49919,"17507, 273919" +19348,136585,Bejeweled,2013,109,5.48172,5.49918, +19349,25155,PerplexCity: The Boardgame,2006,89,5.47753,5.49917, +19350,36777,Showtime Hanoi,2008,61,5.46721,5.49916, +19351,2196,Out of Context,1985,60,5.46667,5.49915, +19352,6233,Trivial Pursuit: Know-It-All Edition,1998,55,5.46364,5.49915, +19353,304336,Million Dollar Script,2021,51,5.46078,5.49915, +19354,258946,UNO: UNOcorns,2017,49,5.45918,5.49915, +19355,281429,Mammalath,2019,105,5.48050,5.49915, +19356,10917,Don't Quote Me,2003,43,5.45349,5.49915, +19357,37168,El Palé,1935,111,5.48145,5.49915,"37168, 309874" +19358,237585,Cock Block,2018,40,5.45000,5.49915, +19359,315599,Conspiracy Theory Travel Edition,2020,38,5.44737,5.49915,"236449, 315599" +19360,14174,Monopoly: Chicago,1995,33,5.43939,5.49915, +19361,93094,Gotcha!,2011,67,5.46896,5.49912, +19362,362482,Kinapa,2022,36,5.44278,5.49912, +19363,1414,Decathlon,1972,140,5.48457,5.49912, +19364,192225,Pickle Letter,2016,51,5.45882,5.49911, +19365,20131,Texas Roll'Em,2005,49,5.45714,5.49911, +19366,332914,Day & Night,2021,41,5.44878,5.49911, +19367,8268,Winceby,1995,33,5.43636,5.49910, +19368,251359,Ruby Monsters,2016,794,5.49645,5.49909,"144036, 251359" +19369,1407,Alcatraz,1999,277,5.49134,5.49907, +19370,3863,007 James Bond: Live and Let Die,1985,39,5.44359,5.49906, +19371,201453,Hip Hops: Brews of the World,2015,34,5.43441,5.49905, +19372,32495,Murder City,2007,157,5.48475,5.49903, +19373,224132,Monopoly: Ghostbusters edition,2016,40,5.44250,5.49902, +19374,4999,Jet World,1975,37,5.43784,5.49902, +19375,172063,Tap A Bell'O,2015,35,5.43429,5.49902, +19376,181080,Pitch Fleet,2015,45,5.44867,5.49902, +19377,136856,Simsala Hopp,2013,53,5.45566,5.49900, +19378,103828,The Jam,2011,110,5.47802,5.49900, +19379,148628,Age of Soccer,2014,44,5.44646,5.49900, +19380,131484,Hoppa Galoppa,2012,43,5.44512,5.49900, +19381,155494,Game Developerz,2014,75,5.46800,5.49899, +19382,2625,Das Pferd von Troja,1993,73,5.46712,5.49899, +19383,9049,Teenage Mutant Ninja Turtles Game,2003,153,5.48359,5.49898, +19384,258332,DealMaker,2018,30,5.42037,5.49898, +19385,4257,Elephant's Trunk,2000,155,5.48374,5.49898, +19386,378097,"Pun Intended, too!",2020,80,5.46938,5.49897,"247008, 378097" +19387,163263,Sea Kings,2015,43,5.44302,5.49896, +19388,6004,The Indian Mutiny,1988,103,5.47524,5.49894, +19389,2178,Römer,1990,54,5.45370,5.49894, +19390,218577,Bubble Jungle,2017,53,5.45283,5.49894, +19391,10570,To the Far Shore,1994,39,5.43590,5.49893, +19392,16440,The Alley Cats Game,1976,33,5.42424,5.49893, +19393,22362,Monopoly: Peanuts,2002,31,5.41935,5.49893, +19394,24138,Monopoly: James Bond 007,2006,30,5.41667,5.49893, +19394,273016,ITZI,,30,5.41667,5.49893, +19396,9368,Ave Tenebrae,1982,82,5.46866,5.49892, +19397,164542,Expeditie Robinson,2014,75,5.46560,5.49892, +19398,173157,Takamachi!,2014,31,5.41806,5.49891, +19399,171385,Shuffle My Little Pony,2014,39,5.43333,5.49889, +19400,259062,City Explorer: Tainan,2018,71,5.46268,5.49889,"241083, 259062" +19401,129955,Dragi Drache,2012,58,5.45431,5.49888, +19402,121790,Mines of the Sacred Dragon,2012,45,5.44111,5.49887, +19403,86174,Arlecchino,2010,36,5.42667,5.49887, +19404,246729,450 Things to Do in Your Life,2017,61,5.45574,5.49886, +19405,266971,Llama Drama,2018,32,5.41625,5.49885, +19406,6789,Die grosse Auktion,1959,49,5.44490,5.49885, +19407,28755,Die Sprache des Manitu,2007,46,5.44130,5.49885, +19408,176663,Wordariffic,2015,41,5.43415,5.49885, +19409,17785,Seti,1979,37,5.42703,5.49885, +19410,130724,Mimikri,2012,37,5.42568,5.49883, +19411,572,Battle Cattle,1996,75,5.46267,5.49882, +19412,73236,Naktong Bulge: Breaking the Perimeter,2010,30,5.40833,5.49882, +19413,347029,Sriracha: The Game,2021,55,5.44909,5.49881, +19414,152247,Quizmysteriet,2013,51,5.44510,5.49881, +19415,4152,Scooby-Doo! Expandable Card Game,2000,48,5.44167,5.49881, +19416,86270,Discover India,2010,146,5.47945,5.49878, +19417,3016,"Stand & Die: The Battle of Borodino, 1941",1991,61,5.45246,5.49878, +19418,17869,Heroes of Might & Magic IV Collectible Card & Tile Game,2005,57,5.44912,5.49877, +19419,316919,Temple Rush,2020,50,5.44200,5.49877, +19420,8517,Master and Commander: The Far Side of the World,2003,88,5.46648,5.49877, +19421,42969,Hagoth: Builder of Ships,2010,163,5.48129,5.49877, +19422,136588,Bejeweled Frenzy,2013,38,5.42368,5.49876, +19423,18499,Fuldrigger,1985,116,5.47414,5.49876, +19424,217340,Raffzahn,2017,46,5.43609,5.49875, +19425,368123,Unsolved: Hunt for the Truth,2022,30,5.40167,5.49874, +19426,128180,Farkle Flip,2011,50,5.44000,5.49873, +19427,2089,Das Letzte Kamel,1989,82,5.46280,5.49872, +19428,308572,Cinderella,2019,40,5.42500,5.49872, +19429,234974,Picture Party,2017,34,5.41176,5.49872, +19430,11529,Olustee,1993,33,5.40909,5.49872, +19431,116331,Guess Who? Mix 'n Mash,2010,32,5.40625,5.49872, +19432,353305,Medo,2022,31,5.40323,5.49872, +19433,1617,Icebergs,1982,61,5.44918,5.49869, +19434,194040,Star Wars: Rule the Galaxy,2015,65,5.45215,5.49869, +19435,81486,Split Decision,2010,52,5.44038,5.49869, +19436,14591,Bushi,1970,43,5.42791,5.49868, +19437,237588,Black Stories: Superheroes Edition,2017,30,5.39667,5.49867, +19438,102750,Math Dice Jr.,,60,5.44688,5.49865, +19439,189615,Pingwiny z Madagaskaru,2015,57,5.44386,5.49865, +19440,175848,Unpub: The Unpublished Card Game,2015,92,5.46467,5.49865, +19441,129944,Hey Froggy!,2012,55,5.44182,5.49865, +19442,58139,Donna Leon: Gefährliches Spiel,2009,49,5.43469,5.49864, +19443,10960,Swärje,2004,99,5.46667,5.49863, +19444,4866,Park and Shop,1952,77,5.45714,5.49862, +19445,32194,Saba: Palast der Königin,2007,120,5.47176,5.49860, +19446,156567,Would I Lie to You?,2011,51,5.43529,5.49860, +19447,131856,Boom,2012,41,5.41951,5.49859, +19448,217233,Chicken Wings: Glow in the Dark,2017,37,5.41081,5.49859,"191910, 217233" +19449,13024,James Bond 007,1965,35,5.40571,5.49859, +19450,210901,Eyes on the Prize,2016,36,5.40742,5.49858, +19451,241245,Get the MacGuffin,2018,455,5.49136,5.49858, +19452,16746,Evolution,2005,39,5.41410,5.49857, +19453,15396,Linkity,2004,69,5.45072,5.49857, +19454,231837,Action Cats!,2017,66,5.44813,5.49856,"231837, 287303" +19455,343687,Alveole,2005,40,5.41500,5.49855, +19456,128282,Party & Co Disney,,54,5.43630,5.49854, +19457,149069,The Great Snowball Battle,2014,91,5.46099,5.49852, +19458,325333,Catan: First Adventure,2020,52,5.43269,5.49852,"269978, 325333" +19459,260336,INCOHERENT,2018,47,5.42553,5.49851, +19460,24142,Monopoly: Rudolph the Red-Nosed Reindeer,2005,37,5.40541,5.49851, +19461,131756,Kérdezz ! Felelek,1992,35,5.40000,5.49851, +19461,209285,"Ich glaub, mein Schwein pfeift",2016,35,5.40000,5.49851, +19463,214030,Rally Roll,2016,32,5.39062,5.49850, +19464,2321,Letres,1998,31,5.38710,5.49850, +19465,153426,The Wimpy Kid: 10-Second Challenge,2014,30,5.38333,5.49850, +19465,218447,Cha-Cha Chihuahua: The Game of Dancing Doggies,2017,30,5.38333,5.49850, +19467,15828,"Schnapp, Land, Fluss!",2002,54,5.43426,5.49850, +19468,109105,Sparta,2011,150,5.47533,5.49849, +19469,191657,Dr. Gomb,2016,47,5.42340,5.49847, +19469,183478,Ciao!,2015,47,5.42340,5.49847, +19471,64097,Bataflash,2009,34,5.39441,5.49847, +19472,32742,Bookchase,2007,38,5.40526,5.49846, +19473,30836,Connect 4 Flip,2000,34,5.39412,5.49846, +19474,9969,Speculation,2003,66,5.44470,5.49846, +19475,175183,Battle Arena Show,2017,32,5.38594,5.49844, +19476,6531,Dwarven Dig!,2002,327,5.48742,5.49844, +19477,23456,Trivial Pursuit: Star Wars – Bite Size,2005,58,5.43621,5.49844, +19478,12133,"Last Battles: East Prussia, 1945",1994,36,5.39722,5.49842, +19479,4745,Battlecards: World Conflict – Western European Campaign: Starter Set,2002,162,5.47593,5.49842, +19480,4614,The Touch,2002,35,5.39429,5.49842, +19481,208533,Batman: The Animated Series – Almost Got 'Im Card Game,2017,159,5.47547,5.49842, +19482,1998,Tutankhamen's Revenge,1990,150,5.47400,5.49841, +19483,208,Ex & Hopp,1996,70,5.44571,5.49840, +19484,34374,Hang Four,2008,49,5.42245,5.49839, +19485,21513,Hercules: The Legendary Journeys Trading Card Game,1998,36,5.39444,5.49838, +19486,3232,Fraggle Rock,1984,34,5.38824,5.49838, +19487,8249,China Incident,1985,60,5.43567,5.49837, +19488,4118,Slide 5,1980,68,5.44304,5.49837, +19489,1941,Sjörövarön,1955,112,5.46429,5.49835, +19490,15109,Tegn og gæt,,67,5.44119,5.49834, +19491,58374,Chelsea,2009,60,5.43450,5.49834, +19492,21777,Number Rings,1976,34,5.38529,5.49833, +19493,1240,"Right Turn, Left Turn",2000,151,5.47285,5.49833, +19494,198513,Cosmic Pioneers,2016,46,5.41435,5.49833, +19495,575,Das Kollier,2000,72,5.44444,5.49832, +19496,143459,The Hobbit: An Unexpected Journey – Journey to the Lonely Mountain Strategy Game,2013,58,5.43103,5.49831, +19497,154841,Knuckle Sammich: A Kobolds Ate My Baby! Card Game,2013,57,5.42982,5.49831, +19497,303054,Yacht Rock,2020,57,5.42982,5.49831, +19499,9249,När & Fjärran,2002,53,5.42453,5.49830, +19500,122820,Mistrz Słowa,,51,5.42157,5.49830, +19501,82037,Chicken Chase,2010,43,5.40698,5.49830, +19502,178707,Seas of Iron Rising Sun,2015,40,5.40000,5.49830,"144735, 178707" +19503,153780,Black Sheep and White Sheep,2014,92,5.45543,5.49829, +19504,5851,Quest,1978,31,5.37097,5.49829, +19505,153611,UNO: Angry Birds,2012,30,5.36667,5.49829, +19506,2103,Project KGB: The Double Agent,1973,78,5.44744,5.49828,"2102, 2103, 160696" +19507,5435,North Sea Oil,1974,60,5.43183,5.49827, +19508,95800,Eckolo,2010,64,5.43594,5.49827, +19509,159774,Rycerze i Zamki,2014,58,5.42948,5.49827, +19510,23389,Les Cabanes de M'sieur Robinson,2006,32,5.37344,5.49827, +19511,146146,Galapagos,2013,123,5.46569,5.49826, +19512,37127,Uno: 30 Year Anniversary Edition,2001,50,5.41804,5.49826, +19513,41310,Wiggling Cow,2009,50,5.41800,5.49826, +19514,4649,Tower Siege,2000,44,5.40682,5.49826, +19515,13367,Charades for Kids,1999,130,5.46700,5.49824, +19516,8904,Cropredy Bridge: A Fleeting Victory,1992,75,5.44400,5.49824, +19517,1322,Chip-Chip Hurra!,1999,119,5.46387,5.49823, +19518,31361,Battleship Torpedo Attack,2007,60,5.43000,5.49823, +19519,7862,"Birds, Bugs and Beans",2003,56,5.42500,5.49822, +19520,4654,Rigamarole,2002,54,5.42222,5.49822, +19521,90735,Chaos,2010,55,5.42303,5.49821, +19522,1093,Jolly Roger,1992,36,5.38333,5.49821, +19523,13744,"Chè: Failed Revolution, Bolivia 1967",2004,30,5.36000,5.49820, +19523,85455,Fans de Hockey,2010,30,5.36000,5.49820, +19523,17103,Calypso,1955,30,5.36000,5.49820, +19526,298741,Intime Conviction n°2: L'Affaire du Passeur,2019,38,5.38895,5.49820, +19527,19349,Zahlemann und Söhne,1994,82,5.44756,5.49820, +19528,52276,Captain Pirate,2009,51,5.41588,5.49818, +19529,16809,Suds,1997,40,5.39250,5.49817, +19529,370874,Koala Kart,2020,40,5.39250,5.49817,"370874, 425758" +19531,104617,Little Dead Riding Hood,2011,145,5.46894,5.49816, +19532,32364,Trafalgar,1982,32,5.36562,5.49816, +19533,471,Totem,1995,123,5.46341,5.49815, +19534,323099,Chill Pill,2017,33,5.36848,5.49815,"180296, 323099" +19535,192556,Japanese: The Game – Tokyo Edition,2016,60,5.42667,5.49814,"153470, 178524, 192556" +19536,179537,Titus Tentacle,2015,93,5.45161,5.49812, +19537,6132,Kangaroo: The Jumping Game,1977,36,5.37778,5.49812, +19538,1215,Monkey Memory,2000,87,5.44828,5.49812, +19538,133246,Bop-It Extreme,1998,87,5.44828,5.49812, +19540,3846,Ghostly Galleon,1991,113,5.45973,5.49812, +19541,28717,Monster Mayhem,2007,134,5.46567,5.49812, +19542,248430,Zener,2018,80,5.44375,5.49811, +19543,90467,Monsta,2011,71,5.43662,5.49811, +19544,14935,Slow Freight,2004,65,5.43077,5.49810, +19545,83453,Best of British,2010,51,5.41176,5.49809, +19546,11642,Harry Potter Hogwarts Dueling Club Game,2004,55,5.41800,5.49809, +19547,42380,Linwood,2009,97,5.45258,5.49809, +19548,1994,Distant Seas: The Merchant Marine Game,1992,39,5.38462,5.49808, +19549,29352,Lupusburg,2008,198,5.47573,5.49808, +19550,2873,Siege,1966,31,5.35484,5.49808, +19551,344533,En la mente de Sherlock,2021,44,5.39636,5.49806, +19552,32415,Srebrna flota,1994,53,5.41321,5.49805, +19553,18064,"Run for Your Life, Candyman!",2005,460,5.48823,5.49804, +19554,147149,A Game For Good Christians,2013,37,5.37568,5.49804, +19555,8452,Unconditional Surrender,1984,41,5.38659,5.49802, +19556,11701,America Triumphant: The Battle of the Bulge,2003,65,5.42692,5.49800, +19557,385634,Concord,2023,38,5.37632,5.49800,"385634, 428639" +19558,93578,Ugh!,2012,53,5.41038,5.49799, +19559,151981,Geared: Build Your Bike,2014,48,5.40125,5.49799, +19560,1398,Chicago,1986,218,5.47661,5.49798, +19561,24795,Cleopatra's Caboose,2010,220,5.47677,5.49798, +19562,1502,Hotel,1974,3904,5.49678,5.49797, +19563,26196,High School Election,2004,33,5.35606,5.49797, +19564,8906,Licht und Schatten,1990,95,5.44863,5.49797,"8906, 27712" +19565,183364,Mad Libs: The Game,2016,51,5.40588,5.49796, +19566,137358,Mau Mau Extreme,2012,45,5.39333,5.49796, +19567,230768,Out of the Woods,2018,68,5.42868,5.49796, +19568,28699,Kryptonim: Lew Morski,1993,43,5.38837,5.49796, +19569,261707,Das verdrehte Labyrinth: Happy Meal Edition,2018,62,5.42194,5.49796,"195073, 261707" +19570,260790,Wer Weiss Denn Sowas?,2018,63,5.42254,5.49794, +19571,42006,Glücks-Piraten,2008,130,5.46138,5.49794, +19572,22122,Fleeced!,2007,93,5.44677,5.49794, +19573,127048,Penny Arcade: Paint The Line ECG – Red Tide,2012,117,5.45726,5.49794, +19574,104770,Monopoly: Crazy Cash,2009,48,5.39813,5.49792, +19575,4438,This Hallowed Ground,1989,34,5.35588,5.49791, +19576,2336,S.P.I.V.'s,1986,73,5.43151,5.49790, +19577,22268,Asterix & Obelix,2006,120,5.45750,5.49790, +19578,40808,J'te Gage Que... 2,2009,565,5.48927,5.49789,"27155, 40808, 144771" +19579,24969,Pit Fighter: Fantasy Arena,2006,46,5.39130,5.49787, +19580,219511,Worm Party,2017,40,5.37500,5.49787, +19581,5655,Wühltisch,2002,32,5.34375,5.49786, +19582,270628,Mount Rushmore,2019,31,5.33871,5.49786, +19583,286745,The Malaysian Dream,2019,135,5.46111,5.49785,"267030, 286745" +19584,5272,Hilarium,2001,157,5.46624,5.49785, +19585,345629,The Nightmare Before Christmas: Making Christmas,2021,53,5.40415,5.49785, +19586,275030,The Epic Beard Game,2018,41,5.37659,5.49784, +19587,327722,Monopoly: Star Wars – The Child Edition,2020,38,5.36579,5.49782, +19587,314348,My Very First Games: Building Site,2020,38,5.36579,5.49782, +19589,90974,Splish Splash!,2011,36,5.35833,5.49782, +19590,131499,Counting Fun,2012,46,5.38824,5.49781, +19591,130624,Feed the Woozle,2012,108,5.45111,5.49781, +19592,9507,Dynamite,1988,68,5.42338,5.49781, +19593,27387,Bungee,2007,103,5.44854,5.49780, +19594,132320,Monopoly: Doctor Who 50th Anniversary Collectors Edition,2012,154,5.46452,5.49778, +19595,9959,WCW Nitro Trading Card Game,2000,55,5.40418,5.49777, +19596,14040,¡New Amici!,2004,41,5.37195,5.49776, +19597,5890,1863,1991,68,5.42132,5.49775, +19598,37330,UNO: Pokémon,2006,42,5.37333,5.49774, +19599,168278,Firefly: Tall Card,2015,67,5.41970,5.49773, +19600,58696,Bugs,2010,167,5.46623,5.49772, +19601,45437,Trivial Pursuit: Best of Genus,2008,50,5.39200,5.49771, +19602,383483,Bloxo,2023,49,5.38980,5.49771, +19603,6230,Snafooey,1982,58,5.40632,5.49770, +19604,1975,Stamp,1992,34,5.34118,5.49769, +19605,2147,Vegas,2000,95,5.44105,5.49767, +19606,146309,Kronen für den König,2013,47,5.38298,5.49766, +19607,327899,Winzul,2020,44,5.37500,5.49766, +19608,146841,ConeZILLA,2013,54,5.39769,5.49766, +19609,167827,Butim,2014,43,5.37209,5.49766, +19610,153624,Oink!,2014,64,5.41328,5.49766, +19611,39193,Voll Verladen!,2008,42,5.36905,5.49766, +19612,9621,Battle for the Galaxy: Zylatron,1986,34,5.33824,5.49765, +19613,191478,Ice Cult,2016,46,5.37978,5.49765, +19614,3150,Taktvoll,1993,32,5.32812,5.49765, +19614,110298,Klondike 1896,2011,32,5.32812,5.49765, +19614,267006,Zangle!,2019,32,5.32812,5.49765, +19617,159961,Victus: El joc de cartes – Barcelona 1714,2014,31,5.32258,5.49765, +19617,61522,Zenith,2009,31,5.32258,5.49765, +19619,386102,Parkade,2023,35,5.34257,5.49765, +19620,15048,Monopoly: Mickey Mouse 75th Anniversary,2004,30,5.31667,5.49765, +19621,1524,Fight City,1999,190,5.46905,5.49764, +19622,8491,Dino Dice,1993,87,5.43517,5.49764, +19623,8970,Herd Your Horses!,1993,122,5.45246,5.49761, +19624,5961,Battle for Basra,1991,67,5.41493,5.49760, +19625,5715,Petropolis,1976,135,5.45630,5.49758, +19626,285156,Orangutwang,2018,30,5.31167,5.49758, +19627,4486,Dragonslayer,1981,53,5.39208,5.49758, +19628,39389,Turtle Shells,2009,40,5.35750,5.49757, +19629,1862,Avalon,1994,38,5.35000,5.49757, +19629,363094,Catstronauts,2022,38,5.35000,5.49757, +19631,80935,L'Aventure c'est dur,2010,36,5.34167,5.49757, +19632,32450,Money Lisa,2007,32,5.32188,5.49756, +19633,6582,Let's Do Lunch!,2000,77,5.42443,5.49756, +19634,15195,Monopoly: X-Men,2000,64,5.40937,5.49755, +19635,38665,Don't Say It,2008,61,5.40492,5.49755, +19636,1417,Alibi,1993,727,5.48974,5.49754, +19637,206082,Eye Sea,2016,146,5.45856,5.49753, +19638,60710,Der Maulwurf und sein Versteck-Spiel,2007,31,5.31290,5.49752, +19639,47258,Soul Hunters,2009,69,5.41449,5.49752, +19640,14032,Finders Keepers!,1993,321,5.47957,5.49750, +19641,3434,Golden Deuce,2002,86,5.43035,5.49750, +19642,200410,Granjeros,2016,31,5.31097,5.49749, +19643,89931,LEGO Frog Rush,2011,96,5.43698,5.49748, +19644,287676,Гравити Фолз (Gravity Falls),2019,64,5.40656,5.49748, +19645,320135,Don't wake up Cthulhu!,2020,70,5.41429,5.49748, +19646,291806,Host Your Own: After Dinner Games,1997,50,5.38100,5.49748,"15009, 116482, 291806" +19647,246499,Pixit,2018,30,5.30333,5.49748, +19648,3483,Pinocchio,2000,56,5.39286,5.49746, +19649,25642,Kasl,2006,58,5.39638,5.49746, +19650,136,Robin Hood,1999,87,5.42989,5.49745, +19651,378354,Goddam Dilema,2023,46,5.36957,5.49745, +19652,174,T-Rex,1999,278,5.47626,5.49745, +19653,1232,Saludos Amigos!,1996,82,5.42561,5.49745, +19654,12859,Schatzjagd,2003,34,5.32409,5.49744, +19655,4441,PornStar,2001,35,5.32857,5.49744, +19655,202660,Run Bunny Run,2015,35,5.32857,5.49744, +19657,152622,Black Stories: Office Edition,2014,30,5.30000,5.49743, +19657,243283,Sixteen Samurai,2017,30,5.30000,5.49743, +19659,245325,Athens,2018,49,5.37574,5.49742, +19660,33701,Wahoo,1930,87,5.42885,5.49741, +19661,107583,Ding!,2011,51,5.38039,5.49741, +19662,107811,For Fame & Fortune,2011,43,5.35856,5.49741, +19663,151409,Bedlam,2014,31,5.30258,5.49738, +19664,434491,Butts in Space Galactic Edition,2024,79,5.42089,5.49738,"237572, 434491" +19665,16088,Calaboose,2005,49,5.37347,5.49737, +19666,25986,Scene It? Nick,2006,45,5.36222,5.49736, +19667,283796,Die Schule der magischen Tiere: Nicht zu fassen!,2018,38,5.33553,5.49733, +19668,192092,Catch Phrase,2015,36,5.32639,5.49733, +19669,53279,Wo war's?,2009,123,5.44715,5.49732,"53279, 104368" +19670,204600,The Crow: Fire It Up!,2016,40,5.34250,5.49732, +19671,4790,Trivial Pursuit: Volume II,1987,68,5.40588,5.49731, +19672,192353,Spooky Castle,2016,133,5.45019,5.49728, +19673,10537,Kit & Caboodle,1997,44,5.35455,5.49728, +19674,128001,Rally Fally,2012,41,5.34390,5.49727, +19675,35312,Repeat Pete!,2008,35,5.31760,5.49727, +19676,12281,Versailles,2004,38,5.33158,5.49727, +19677,140988,ElfQuest Adventure Game,2015,61,5.39344,5.49725, +19678,99254,Monopoly: The Lord of the Rings Collectors Edition,2005,48,5.36458,5.49724, +19679,233565,King Ozo,2017,69,5.40493,5.49724, +19680,21465,Crazy Diamond & Karatino,2006,46,5.35870,5.49724, +19681,12316,Sky My Husband,2004,43,5.34884,5.49723, +19682,22338,Spin & Trap,2006,55,5.38109,5.49723, +19683,1935,Puls,1999,38,5.32895,5.49723, +19684,182049,Taste of Poland,2015,109,5.43849,5.49722, +19685,14758,Slammer,2004,34,5.30882,5.49722, +19686,88996,Bag-O-Loot,2010,60,5.39017,5.49722, +19687,358219,Home Sweet Home (or Not),2022,58,5.38578,5.49720, +19688,12633,Mall World,2004,336,5.47792,5.49719, +19689,1397,Crash Pilot,1999,113,5.43982,5.49719, +19690,244811,Z First Impact: Opus 1 Chapter 2,2014,40,5.33500,5.49719,"172707, 244811" +19691,15819,Snifty Snakes,1975,35,5.31143,5.49718, +19692,155327,Stand & Deliver,2015,33,5.30000,5.49718, +19693,124589,Flame War,2012,85,5.42059,5.49718, +19694,193255,Line Links,2014,66,5.39848,5.49718,"66852, 193255" +19695,2440,The Way,1994,50,5.36600,5.49716, +19696,156570,Challenge Sudoku / Kakuro Challenge,,70,5.40343,5.49716,"23616, 24424, 156570" +19697,10257,Battle of Buena Vista,1996,46,5.35435,5.49715, +19698,282578,Dragon Snacks,2019,30,5.27800,5.49715, +19699,99949,Eragra: The Game of Eras and the First Step,2011,43,5.34419,5.49715, +19700,32107,Cro-Magnon,2007,166,5.45747,5.49714, +19701,2326,Pirate and Traveler,1908,74,5.40811,5.49714, +19702,260926,Collecto,2018,36,5.31389,5.49714, +19703,6840,Teams of Enemies,2000,86,5.42035,5.49714, +19704,3189,BAS-KET,1938,127,5.44496,5.49713, +19705,355739,Tang Hu Lu (冰糖葫芦),2020,97,5.42876,5.49713, +19706,1136,Domain: The Warlock's Challenge,1991,93,5.42581,5.49712, +19707,5605,I Think You Think I Think,1984,35,5.30714,5.49712, +19708,137152,Mucca Pazza,2013,121,5.44215,5.49712, +19709,10306,King Kong,1976,41,5.33415,5.49710, +19710,178364,UNO: Avengers,2015,46,5.35174,5.49710, +19711,26207,Dicewords,2006,31,5.28065,5.49709, +19712,3848,Ultimate Combat!,1995,62,5.38871,5.49709, +19713,230995,Deadland,2017,58,5.38103,5.49708, +19714,22866,UNO: Family Guy,2004,53,5.36956,5.49707, +19715,108100,Total Mania,2004,42,5.33571,5.49706, +19716,108156,Tante Trudels Trödel,2011,57,5.37807,5.49706, +19717,200188,Monster Misfits,2016,69,5.39855,5.49705, +19718,3533,Arena of Death: Heroic Combat in the Fantasy World of DragonQuest,1980,89,5.42022,5.49704, +19719,269074,Limite Limite: Gold,2018,152,5.45204,5.49704,"193329, 269038, 269074" +19720,7269,Monopoly: The Heirloom Edition,1997,72,5.40194,5.49703, +19721,13284,Cowpoker,2006,276,5.47221,5.49703, +19722,2258,The Stock Market Game,1970,216,5.46528,5.49703, +19723,6702,Battlecards: World Conflict – The Russian Front: Starter Set,2003,70,5.39857,5.49701, +19724,8335,Say What!?!,2003,103,5.43010,5.49701, +19725,108158,Wollmilchsau,2011,33,5.28788,5.49701, +19726,617,Alles Futsch,1998,32,5.28125,5.49701, +19727,26595,Word Sweep!,2006,30,5.26667,5.49700, +19728,4598,Word Rummikub,1983,227,5.46651,5.49700, +19729,122873,Cartes sur Table,2012,44,5.33864,5.49698, +19730,200792,All Hands On Deck,2016,42,5.33095,5.49698, +19731,133557,Red Code,2013,77,5.40610,5.49697, +19732,93965,Trivial Pursuit Junior: Fifth Edition,,44,5.33773,5.49696,"16130, 93965" +19733,213268,That Snow Moon,2017,43,5.33302,5.49694, +19734,191880,Skibe,2016,64,5.38672,5.49694, +19735,148099,Worker Placement,2014,81,5.40981,5.49694, +19736,11608,Baccade,2000,34,5.28824,5.49692, +19737,121090,Claim to Fame Travel Edition,2013,48,5.34896,5.49692,"10075, 121090" +19738,34745,Battleship Express,2007,327,5.47520,5.49692, +19739,37349,Cthulhu Rising,2008,273,5.47060,5.49689, +19740,256375,Star Wars: I've Got a Bad Feeling About This!,2018,162,5.45247,5.49688, +19741,41890,Food Chain,2009,160,5.45188,5.49688, +19742,10705,Dynamit Joe,2004,30,5.25667,5.49688, +19743,191714,Lil' Cthulhu,2016,62,5.38065,5.49688, +19744,109732,Three Little Pigs,2010,63,5.38206,5.49686, +19745,41152,Out of Sight,2008,57,5.36930,5.49685, +19746,595,Escape from Elba,1999,168,5.45357,5.49685, +19747,28053,Tunnelz,2007,36,5.29444,5.49684, +19747,170779,Press Here,2014,36,5.29444,5.49684, +19749,12206,Space Race,2004,32,5.26875,5.49684, +19750,2643,Target: Libya,1986,62,5.37903,5.49683, +19751,267884,Silicon Valley Startups,2018,59,5.37288,5.49683, +19752,6563,Sweet Valley High,1988,57,5.36842,5.49683, +19753,10811,"Piraten, Planken & Peseten",2004,53,5.35849,5.49682, +19754,159227,Teddy's Colors & Shapes,2014,51,5.35294,5.49682, +19755,40433,Crazy Old Fish War,2008,47,5.34043,5.49681, +19756,165557,Quizduell: Das Spiel,2014,44,5.32955,5.49681, +19757,15090,Scrabble Dice,1989,74,5.39730,5.49681, +19758,181263,Falling Coin,2015,73,5.39589,5.49681, +19759,193425,Jobstacles,2016,30,5.25100,5.49680, +19760,152822,Xoom Cubes,2013,39,5.30769,5.49680, +19761,254149,Señor Pepper,2018,49,5.34626,5.49680, +19762,4365,Dark Victory: The Battle of the Alamo,1997,38,5.30263,5.49680, +19763,3701,Smear,1999,54,5.36004,5.49680, +19764,8514,Forgotten Axis: The Romanian Campaign,2001,35,5.28571,5.49680, +19765,206857,Are You the Cultist? Party Edition,2016,34,5.27941,5.49680,"206856, 206857" +19766,3689,Think Alike,1992,33,5.27273,5.49679, +19766,67341,Make 'n' Break: Würfelspiel,2010,33,5.27273,5.49679, +19766,10028,The Wizard of Oz Trivia Game,1999,33,5.27273,5.49679, +19766,159817,Bitwy XXI Wieku,2014,33,5.27273,5.49679, +19770,9456,UNO: Peanuts,2002,31,5.25806,5.49679, +19771,28307,Gassy Gus,2006,30,5.25000,5.49679, +19771,86040,Koekie Loeren,2010,30,5.25000,5.49679, +19773,2066,"Teufel, Teufel!",1992,47,5.33894,5.49678, +19774,9357,East Wind Rain: The War in the Pacific 1941-1945,1985,54,5.35926,5.49678, +19775,18199,What's GNU?,2004,46,5.33478,5.49677, +19776,37498,Monopoly: The Beatles Collector's Edition,2008,106,5.42585,5.49674, +19777,148040,Monopoly: The Walking Dead – Survival Edition,2013,113,5.43009,5.49674, +19778,6386,Nibelungen,1992,39,5.30308,5.49673, +19779,24388,Paparazzi,2006,36,5.28666,5.49672, +19780,313457,The Dark Village,2020,56,5.36161,5.49672, +19781,10341,Disney Charades Game,1999,65,5.38000,5.49671, +19782,38464,Crash by Crash,2008,53,5.35283,5.49669, +19783,63216,Evolution Earth: Cataclysm,2009,335,5.47391,5.49669,"63216, 101718, 111426" +19784,5561,Monkey Mission,2003,68,5.38426,5.49669, +19785,85992,Kaiten Sushi,2010,39,5.30000,5.49667, +19786,144346,Mess Machine,2014,85,5.40635,5.49667, +19787,11800,Fantasyland,2000,69,5.38435,5.49664, +19788,2026,Um Kopf und Kragen,1996,30,5.23833,5.49664, +19789,2140,Eldorado,1990,70,5.38571,5.49663, +19790,19647,Wir sind schwanger,2005,33,5.26061,5.49662, +19791,255689,UNO Pocket,2017,48,5.33333,5.49660, +19792,10949,La Maldición del Templo Cristal,,47,5.32979,5.49660, +19793,209857,PJ Masks: Night Sight,2016,34,5.26471,5.49658, +19794,172736,Chaos of Cthulhu,2015,33,5.25758,5.49658, +19795,721,Oregon Trail,1981,47,5.32872,5.49658, +19796,6718,Anathema,2003,130,5.43577,5.49657, +19797,8966,Raid on Richmond,1991,48,5.33125,5.49656, +19798,32996,Yucatán,2008,76,5.39214,5.49656, +19799,223094,Burgermania,,33,5.25606,5.49656, +19800,24743,Machina,2002,154,5.44481,5.49655,"24743, 26778" +19801,153168,Karten Kniffel,2014,74,5.38859,5.49654, +19802,98426,Super Tock 6,,60,5.36333,5.49654, +19803,1006,Die Erbraffer,1994,122,5.43074,5.49652, +19804,202852,Canine Chaos,2016,35,5.26667,5.49651,"202852, 283000" +19805,218574,Quizoo,2017,43,5.30930,5.49651, +19806,188129,Heroes and Tricks,2017,104,5.41904,5.49651, +19807,7069,Summer Camp,2003,52,5.34135,5.49650, +19808,33646,Flippin' Frogs,2007,74,5.38736,5.49650, +19809,95021,Ninja vs Robot,2011,35,5.26571,5.49650, +19810,7912,Sand Castles,1991,32,5.24375,5.49649, +19811,2724,Apache: A Game of the Old West,1981,43,5.30814,5.49649, +19812,103811,X Marks the Spot,2011,56,5.35179,5.49649, +19813,1641,Bounty,2000,91,5.40729,5.49648, +19814,7231,Sahara,1990,32,5.24219,5.49647, +19815,181251,Round-o-Loot,2015,30,5.22500,5.49647, +19816,341484,Andor StoryQuest: Dunkle Pfade,2021,99,5.41414,5.49647, +19817,223811,Archmage Origins,2017,39,5.28718,5.49646, +19818,371787,Cradle to Grave,2022,63,5.36667,5.49646, +19819,317847,The Lost Words,2020,62,5.36452,5.49645, +19820,377943,Reflections in the Looking Glass,2024,51,5.33529,5.49644, +19821,9710,Take Off,1999,101,5.41485,5.49643, +19822,40376,Crazy Chefs,2008,68,5.37471,5.49641, +19823,3255,Cash Flow,1987,41,5.29390,5.49640, +19824,9968,Custer's Luck,1985,52,5.33654,5.49640, +19825,930,Böse Buben,2000,50,5.33000,5.49639, +19826,76546,Expedition: Congo River 1884,2012,132,5.43333,5.49639, +19827,13106,Dad's Army,1974,46,5.31522,5.49639, +19828,317290,Drinkopoly,2014,39,5.28205,5.49638, +19829,90930,Witty Pong,2011,36,5.26389,5.49637, +19830,218367,Overkill: Halloween Slasher,2016,34,5.25000,5.49637, +19831,144337,Doodle Jump,2013,47,5.31809,5.49637, +19832,4897,Shake Up,1997,53,5.33774,5.49636, +19833,3089,Bounty Hunter: Shootout at the Saloon,1982,157,5.44268,5.49635, +19834,32128,Wat ben ik?,1983,39,5.27949,5.49633, +19835,132357,Sloop,2012,52,5.33365,5.49633, +19836,1636,The Quest of the Philosopher's Stone,1986,163,5.44417,5.49632, +19837,6238,Beware of the Wolf!,1981,32,5.22906,5.49629, +19838,28408,Super Blockhead!,1992,320,5.46953,5.49629,"3427, 28408" +19839,59310,Mucks Mäuschen Still,2009,50,5.32393,5.49626, +19840,20096,Toru,2005,211,5.45540,5.49626, +19841,205787,Sky Heist,2016,32,5.22656,5.49626, +19842,8806,Trivial Pursuit: All American Edition,1993,69,5.37101,5.49625, +19843,14116,Bad Hollywood,2004,33,5.23333,5.49624, +19844,8926,Catch 22,2002,30,5.20700,5.49624, +19845,147112,Monopoly: My Little Pony,2013,72,5.37569,5.49624, +19846,148534,Sauschwer,2013,44,5.29886,5.49624, +19847,66256,Triplica,2010,46,5.30652,5.49622, +19848,37497,Bilekuosi,2008,37,5.25946,5.49620, +19849,5841,Quick Wit,1987,61,5.35246,5.49620, +19850,6492,Tanbo,1993,32,5.22187,5.49619, +19851,269001,Don't Get Stabbed!,2019,54,5.33333,5.49619, +19852,242024,Outpost: Amazon,2018,47,5.30851,5.49618, +19853,338953,States of the USA,,219,5.45569,5.49616,"7960, 338953" +19854,389734,XXung,2016,32,5.21875,5.49615, +19855,135763,Wereldsteden,2012,30,5.20000,5.49615, +19856,135581,Pointless: The Travel Game,2012,44,5.29318,5.49613, +19857,207814,Shadow Games,2016,54,5.33074,5.49613, +19858,6630,Intercept: The Electronic Search and Destroy Game,1978,40,5.27275,5.49613, +19859,163685,Captain's Wager,2015,238,5.45858,5.49613, +19860,43231,Balance of Power,2012,129,5.42674,5.49612, +19861,76551,Hirelings: The Ascent,2012,71,5.36972,5.49611, +19862,156615,Fishing Party,2014,32,5.21562,5.49611, +19863,29694,Die kleine Hexe,2007,56,5.33571,5.49611, +19864,15563,Double Sens,,40,5.27125,5.49610, +19865,22380,CSI: Senses,2006,44,5.29091,5.49609, +19866,182284,Motto,2015,67,5.36119,5.49608, +19867,25526,Monopoly: Batman,2005,41,5.27561,5.49608, +19868,118315,Ruse,2014,160,5.43950,5.49608, +19869,16873,Dividends,2005,105,5.40976,5.49607, +19870,189806,Rocket Squad,,73,5.37184,5.49607, +19871,355987,Lotti Karotti Deluxe,2021,1195,5.48848,5.49607,"8964, 12057, 225602, 355987" +19872,240107,¿Quién soy? Electrónico,2010,133,5.42782,5.49607,"33406, 222728, 240107" +19873,373562,On the Road,2023,68,5.36258,5.49607, +19874,359203,Rackare! 3,2021,78,5.37949,5.49606,"183481, 359201, 359203, 359204, 432408" +19875,40247,BrainBox: The World,2008,101,5.40594,5.49605, +19876,192729,Jump Ship!,2016,75,5.37467,5.49605, +19877,220440,1500: The New World,2017,72,5.36944,5.49605, +19878,95810,Herding Cats,2012,34,5.22794,5.49605, +19879,103640,Carré,2011,42,5.27884,5.49605, +19880,17042,Rufus,1988,127,5.42409,5.49604,"2492, 17042" +19881,76443,Legitimacy,2009,97,5.40155,5.49603, +19882,11751,No Peeking!,1977,59,5.34068,5.49603, +19883,4735,Where There's A Will,2002,46,5.29674,5.49603, +19884,10769,Herzlos,2003,33,5.21818,5.49603, +19885,147721,Karnickel,2013,169,5.44150,5.49601, +19886,263426,Officinalis,2019,59,5.33977,5.49600, +19887,89976,Bugs & Co,2011,182,5.44527,5.49600, +19888,283762,Tyle,2019,42,5.27619,5.49600, +19889,27372,Bonaparte,2006,36,5.23889,5.49599, +19890,22790,Cephalopod,2006,149,5.43374,5.49598, +19891,9589,Dog Dice,1997,56,5.33036,5.49598, +19892,2550,Snarf Quest,2001,31,5.19677,5.49598, +19893,153810,The Simpsons Trivia Game: Fan Edition,2013,38,5.25000,5.49595, +19894,217253,Labyrint 2.0,2016,37,5.24324,5.49595,"187619, 214863, 217253, 322270" +19895,141594,Fleet Admiral,2012,36,5.23611,5.49595, +19896,161261,Bim Bum Bam,2014,34,5.22059,5.49594, +19897,12084,Tres,1998,33,5.21212,5.49594, +19898,6994,Scrabble Card Game,1997,330,5.46755,5.49594, +19899,87871,Bra$ilis,2010,32,5.20312,5.49594, +19900,8007,Locomotion,1987,30,5.18333,5.49593, +19901,2002,Magical Maze,1994,144,5.43056,5.49592, +19902,13827,UFOs! Fritten aus dem All,2004,45,5.28667,5.49592, +19903,88167,Apples to Apples: Family,2010,69,5.35942,5.49592, +19904,344040,Don Juan,2021,52,5.31346,5.49589, +19905,105053,Yakari: Das Kooperative Brettspiel,2011,62,5.34274,5.49588,"105053, 139780, 159465" +19906,19115,Dead Money,2006,175,5.44160,5.49588, +19907,174146,Batman: Road Trip,2014,46,5.28913,5.49588, +19908,162571,PBL Robots,2015,44,5.27955,5.49587, +19909,14361,Trivial Pursuit: Disney – The Animated Picture Edition,1999,139,5.42734,5.49587, +19910,5789,Bombs Away,1995,39,5.25128,5.49586, +19911,209378,Totem,2016,92,5.39217,5.49586, +19912,12274,Bloody Legacy,2004,97,5.39742,5.49586, +19913,19616,Monopoly: Vintage Game Collection,2005,149,5.43161,5.49585, +19914,172494,Gruffalo Deep Dark Wood Game,2014,30,5.17667,5.49585, +19915,14992,Sword & Skull,2005,763,5.48328,5.49584, +19916,5312,Family Feud,1977,580,5.47929,5.49584,"5312, 200447, 332571, 379902, 395187, 425674" +19917,146473,The Game of Life: 50th Special Anniversary Edition,2010,39,5.24872,5.49582, +19918,2845,Star Fist,1991,42,5.26571,5.49581, +19919,4260,Odyssey: The Gods Clash,1980,38,5.24132,5.49581, +19920,154602,Night of the Grand Octopus,2014,422,5.47278,5.49579, +19921,337833,Bag of Butts,2021,83,5.37831,5.49577, +19922,8024,Up Scope! Tactical Submarine Warfare in the 20th Century,1978,58,5.32759,5.49577, +19923,235863,Pinocchio Mini,2017,54,5.31481,5.49576,"166509, 235863" +19924,176872,"Sun, Moon, & Stars",2016,103,5.40087,5.49576, +19925,297635,Top of Mind,2016,56,5.32071,5.49575, +19926,311457,Ninja Catfoot and the Covert Action,2020,46,5.28261,5.49575, +19927,135705,Cheap Shot,2013,31,5.17935,5.49575, +19928,9547,Are You Afraid of the Dark?,1995,42,5.26190,5.49574, +19929,51505,Seinfeld Trivia Game,2009,40,5.24983,5.49574, +19930,5996,"The Battle for Cassino: Assaulting the Gustav Line, 1944",1978,171,5.43819,5.49573, +19931,7631,The Game of Sniglets,1989,44,5.27159,5.49572, +19932,65557,Order's Up!,2010,67,5.34776,5.49570, +19933,260815,kNOW!,2018,113,5.40796,5.49570, +19934,934,Die Kette von Saba,1984,88,5.38295,5.49570, +19935,107938,Dicecapades! Kerfuffle!,2011,67,5.34736,5.49569, +19936,166567,Sequence Letters,2009,58,5.32391,5.49568, +19937,32743,Black Stories: Mystery Edition,2007,357,5.46776,5.49568, +19938,5244,Star Wars: Destroy Death Star Game,1977,114,5.40789,5.49566, +19939,368358,eBay Buy It Now,2022,54,5.31019,5.49566, +19940,13262,Spider & Fly,1977,41,5.25122,5.49566, +19941,196953,Battle Yahtzee: Alien vs. Predator,2016,54,5.30926,5.49564, +19942,156648,Blood of the Werewolf,2013,73,5.35753,5.49563, +19943,4037,"Raid! Commando Operations, in the 20th Century",1977,168,5.43542,5.49562, +19944,313817,Hello Neighbor: The Secret Neighbor Party Game,2020,65,5.33877,5.49558, +19945,97287,Great Western,2011,80,5.36812,5.49558, +19946,21809,Apples to Apples: Bible Edition,2006,177,5.43785,5.49557, +19947,33836,Le Cercle,2007,41,5.24634,5.49557, +19948,345641,One Finger!,2022,58,5.31897,5.49556, +19949,142194,Стартап,2011,49,5.28571,5.49554, +19950,40236,A Conclave of Wyrms,2010,79,5.36506,5.49553, +19951,13488,Redneck Life,2004,43,5.25581,5.49553, +19952,9594,Double-Play Baseball,1979,33,5.18258,5.49552, +19953,254314,Hidden Panda,2019,38,5.22368,5.49552, +19954,172580,"The Vampire, the Elf & the Cthulhu",2016,60,5.32333,5.49552, +19955,65197,Le Marché de Samarkand,2010,36,5.20833,5.49552, +19955,146226,Witch Hunt,2013,36,5.20833,5.49552, +19955,33789,Monopoly: A Christmas Story,2007,36,5.20833,5.49552, +19958,15284,Scavengers Gold,1988,35,5.20000,5.49552, +19959,4129,Snapshot,1989,33,5.18182,5.49551, +19959,11138,Tank Command,1975,33,5.18182,5.49551, +19961,8591,Der Kleine Prinz,2003,31,5.16129,5.49551, +19962,16297,Dinobones,1987,30,5.15000,5.49551, +19963,23228,Evo,,57,5.31325,5.49550, +19964,107376,Murder Mystery Mansion Travel,2011,102,5.39363,5.49550,"34785, 107376" +19965,15031,Jochen der Rochen,2004,112,5.40268,5.49549, +19966,14002,Round The World,1961,104,5.39543,5.49549,"14001, 14002" +19967,9415,Microdot,1975,64,5.33281,5.49549, +19968,210098,Circus Puppy,2016,41,5.24146,5.49549, +19969,288688,Wyścig balonów,2019,45,5.26400,5.49548, +19970,270873,Bioviva Junior,2017,74,5.35466,5.49548,"3745, 270873" +19971,334988,Incohearent: Family Edition,2020,260,5.45513,5.49545,"289020, 334988" +19972,13052,Missionary: Impossible,1996,41,5.23902,5.49544, +19973,159452,"Wake up, Cthulhu!",2015,203,5.44340,5.49542, +19974,94002,Nitro Dice,2011,105,5.39476,5.49542, +19975,131477,Burg Klettermax,2012,60,5.31917,5.49542, +19976,130470,Marauders,2012,42,5.24229,5.49539, +19977,130227,Big Badaboom,2012,80,5.36250,5.49539, +19978,359800,Super Mario Blow Up! Shaky Tower Balancing Game,2020,36,5.20000,5.49539, +19978,26827,The Tower of Balance,2006,36,5.20000,5.49539, +19980,40394,Scene It? To Go!: Jr.,2008,51,5.28667,5.49539,"13879, 40394" +19981,7549,Stone Soup,1996,91,5.37819,5.49538, +19982,8624,Outburst Bible Edition,1989,74,5.35081,5.49536, +19983,4676,Rush for Glory,1989,82,5.36463,5.49535, +19984,38504,Hurry'Cup!,2008,345,5.46418,5.49534, +19985,334482,Minderheiten Quartett,2020,81,5.36235,5.49533,"135492, 334482" +19986,338725,Amigos de Mierda 2,2020,154,5.42527,5.49532,"306142, 338725" +19987,182174,Kaleva of the Finnish Forests,2015,41,5.23171,5.49531, +19988,190685,We Detectives,2015,55,5.29818,5.49530, +19989,131546,Speed Dating,2012,31,5.14516,5.49529, +19989,250439,Clades Prehistoric,2018,31,5.14516,5.49529,"250437, 250439" +19991,4119,Challenge Yahtzee,1974,122,5.40574,5.49527, +19992,159044,The Hobbit: Enchanted Gold,2014,256,5.45258,5.49526, +19993,6675,Madeline Game,1992,41,5.22854,5.49526, +19994,161130,Pig,1945,32,5.15313,5.49525, +19995,13154,Monopoly: Popular Edition,1954,35,5.18190,5.49525, +19996,7091,"20,000 Leagues Under the Sea Game",1975,33,5.16242,5.49524, +19997,24932,Cranium Zooreka!,2006,189,5.43709,5.49524, +19998,10104,Take 5,1977,65,5.32615,5.49524, +19999,285390,Hands Down this game Will Spill The Beans on the origins of expressions,,84,5.36429,5.49523,"35023, 285390" +20000,339976,Brain Freeze,2020,32,5.15125,5.49523, +20001,237712,Floppy Ears,2017,46,5.25565,5.49522, +20002,185497,Dwarves in Trouble,2016,268,5.45406,5.49522, +20003,137201,Epic Death!,2014,111,5.39572,5.49521, +20004,217275,Kakerlaken-Duell,2017,76,5.34947,5.49520, +20005,251328,Joust,2019,43,5.23721,5.49519, +20006,2148,Huzzah!,1997,126,5.40714,5.49519, +20007,10544,Master Quiz,,55,5.29315,5.49518, +20008,7837,Drago Mago,2003,39,5.21026,5.49518, +20009,140829,Hunter's Guild: The Vampire Forest,2014,79,5.35443,5.49518, +20010,12420,Throw 'n Go Jenga,1986,99,5.38283,5.49518, +20011,181246,Crazy Bullets,2015,55,5.29273,5.49517, +20012,233308,Tetris Dual,2017,44,5.24205,5.49517, +20013,152867,Unita,2014,140,5.41557,5.49517, +20014,306443,Crash!,2021,39,5.20769,5.49514, +20015,283544,25 Outlaws,2019,90,5.37040,5.49513, +20016,344404,Canopéa,2021,31,5.13226,5.49512, +20017,55279,Ergo,2009,215,5.44279,5.49512, +20018,55820,Santa Timea,2009,71,5.33662,5.49512, +20019,146151,Käse Würfeln,2013,67,5.32687,5.49511, +20020,187405,Deck zu!,1975,45,5.24444,5.49511,"17580, 86772, 187405, 198628" +20021,181492,Operation: Kindergarten,2015,69,5.33146,5.49511, +20022,13490,Ballons,2003,103,5.38544,5.49510, +20023,305056,Stringamajig,2020,36,5.18056,5.49509, +20024,6426,Kage,1986,35,5.17143,5.49509, +20025,2333,Hacker,1991,31,5.12903,5.49508, +20026,159198,Trivial Pursuit: TV Edition – Master Game,1991,101,5.38218,5.49506,"4952, 159198" +20027,109252,Creature Clash! Card Game,2011,258,5.45078,5.49505, +20028,4737,Numble,1965,34,5.15882,5.49504, +20029,224122,AVES,2017,113,5.39381,5.49504, +20030,268839,Pencil Nose!,2018,32,5.13750,5.49504, +20031,127304,Herooj,,44,5.23409,5.49502, +20032,40656,Catch the Mice,2009,92,5.37000,5.49501, +20033,2946,Pipeline,1993,189,5.43409,5.49501,"2946, 314887" +20034,240463,Tournament Fishing: The Deckbuilding Game,2017,415,5.46726,5.49501,"240463, 372368" +20035,31235,The Witcher,2007,41,5.21341,5.49500, +20036,5282,Raise the Titanic,1987,30,5.11000,5.49499, +20037,12130,Barons' War: The Battle of Lewes and Evesham,2004,57,5.29201,5.49498, +20038,857,Titanic: Der Mythos,1998,157,5.42102,5.49497, +20039,356303,Crime Zoom: A Dirty Objective,2022,154,5.41942,5.49496, +20040,247473,Drawing Without Dignity: An Adult Party Game of Uncensored Sketches,2016,61,5.30410,5.49495, +20041,206681,Space Base Mutiny,2016,70,5.32857,5.49495, +20042,238825,Cards Against Downtime,2017,55,5.28182,5.49492, +20043,21577,M is for Mouse,2006,50,5.26000,5.49491, +20044,28834,Heli Hopper,2007,62,5.30484,5.49489, +20045,4508,Warchon,2002,32,5.12656,5.49489, +20046,5208,Six Cubes,1989,74,5.33554,5.49489, +20047,21807,Papa Bear,1999,40,5.20000,5.49489, +20048,317061,Desolated: Duel,2022,58,5.29138,5.49488, +20049,3501,Fantasy,1990,37,5.17568,5.49488, +20050,235943,Doppel X,2017,34,5.14706,5.49487, +20051,186808,The Island of Doctor Necreaux: Second Edition,2018,648,5.47662,5.49487,"42892, 186808" +20052,104756,Gator Golf,1993,33,5.13636,5.49487, +20053,22802,Pandabo,2005,32,5.12500,5.49487, +20054,11408,Monopoly: United States Navy,1998,31,5.11290,5.49487, +20055,11641,Lemony Snicket's A Series of Unfortunate Events: The Catastrophic Card Game,2004,42,5.21190,5.49485, +20056,292788,S'Mores Wars,2020,35,5.15486,5.49484, +20057,4105,The Wheel of Time Collectible Card Game,2000,155,5.41806,5.49484, +20058,268588,The Awkward Storyteller,2017,36,5.16389,5.49484, +20059,6499,Two Player Brick by Brick,1995,86,5.35581,5.49482, +20060,2649,Spider Wars,1988,81,5.34691,5.49481, +20061,2577,Face-it,2001,42,5.20952,5.49481,"2577, 15065" +20062,1368,Tuf,1967,59,5.29153,5.49480, +20063,10688,Advanced Dungeons & Dragons Battlesystem Skirmishes,1991,58,5.28793,5.49480, +20064,123776,Gotta Go!,2012,33,5.13121,5.49480, +20065,4885,Chicken Out,1988,66,5.31288,5.49480, +20066,209506,Terra Formars,2016,78,5.34064,5.49479, +20067,32444,Bello,2007,41,5.20122,5.49478, +20068,185195,Urbis,2015,37,5.16892,5.49477, +20069,84173,Van Helsing,2010,146,5.41205,5.49477, +20070,3842,Wing Commander,1995,44,5.21984,5.49476, +20071,325841,Silent Planet,2021,48,5.24250,5.49475, +20072,6953,Lara Croft: Tomb Raider – The Angel of Darkness,2003,194,5.43233,5.49475, +20073,165578,Astro Jam,2014,45,5.22556,5.49475, +20074,11883,Trivial Pursuit: Volume 6,2003,258,5.44779,5.49475, +20075,8247,Hoppla Lama,2003,90,5.36000,5.49474, +20076,408,Zoon,1999,296,5.45372,5.49474, +20077,27275,Monopoly: Fifa World Cup 2006 Germany,2006,31,5.10000,5.49470, +20078,8560,Make 5,1998,39,5.18077,5.49469, +20079,206410,Nothing To Declare,2017,57,5.27982,5.49469, +20080,12829,Ice Cream,2005,263,5.44810,5.49469, +20081,217425,Connect 4: Card Game,2016,83,5.34687,5.49468, +20082,4280,Starleader: Assault! – A Futuristic Man-To-Man Combat Game,1982,40,5.18750,5.49467, +20083,5530,Burger Battle,1990,38,5.17105,5.49467, +20084,38227,Wolsung: The Boardgame,2008,225,5.44000,5.49467, +20085,26986,Retro,2006,37,5.16216,5.49467, +20086,186905,Monopoly: Pokémon Kanto Edition,2014,960,5.48183,5.49466,"5758, 66238, 186905, 215609" +20087,226862,Fetch,2017,34,5.13235,5.49466, +20087,762,Formula C Minus,2000,34,5.13235,5.49466, +20089,2650,Infection,1998,33,5.12121,5.49466, +20090,28127,Gammelgäddan,1991,31,5.09677,5.49465, +20091,26017,Space Checkers,2006,53,5.26189,5.49465, +20092,252544,Dice Summoners,2018,142,5.40775,5.49465, +20093,6469,Isaac Asimov's Robots VCR Mystery Game,1988,35,5.14057,5.49463, +20094,19876,Palatinus,2005,267,5.44818,5.49462, +20095,244906,Joe Connaissant: Gars vs Filles,2014,54,5.26481,5.49462,"182238, 185744, 244906, 410328" +20095,11115,Saipan,1993,54,5.26481,5.49462, +20097,34655,Serendipity,2008,35,5.14000,5.49462, +20098,264259,Tumball,2018,34,5.12941,5.49462, +20099,183532,Star Wars: Galaxy Rebellion,2015,94,5.36191,5.49459, +20100,133633,RARRR!!,2014,172,5.42195,5.49458, +20101,28861,Kingdom Quest,2007,73,5.32342,5.49458, +20102,160067,The Worst Game Ever,2014,185,5.42704,5.49458, +20103,3114,Poleconomy,1977,435,5.46584,5.49458, +20104,7552,Whad'Ya Know?,2003,63,5.29603,5.49458, +20105,2186,Dino,1987,71,5.31831,5.49457, +20106,23771,Foggle,1978,34,5.12647,5.49457, +20107,33614,Adventurer: Card Game,2007,43,5.20349,5.49457, +20108,6647,Ökolopoly,1983,106,5.37642,5.49457, +20109,5616,James Bond Secret Agent 007 Game,1964,39,5.17308,5.49456, +20110,252374,FReNeTiC,2018,48,5.23333,5.49456, +20111,4405,The Big Deal,1977,82,5.34146,5.49456, +20112,40559,Trivial Pursuit: Family,2008,79,5.33544,5.49455, +20113,24443,Idol Quest,2006,40,5.18000,5.49455, +20114,24627,Star Wars Miniatures: Starship Battles,2006,435,5.46561,5.49454, +20115,293517,The Game Box: Family Feud,2015,38,5.16316,5.49454, +20116,151532,Draw Something Party,2013,31,5.08806,5.49454,"134683, 151532" +20117,12683,Cookin' Cookies,2003,51,5.24608,5.49451, +20118,34590,Skoki Narciarskie,2008,39,5.16923,5.49450, +20119,205865,Naova,2016,54,5.25926,5.49449, +20120,13576,Math Dice,2003,102,5.36992,5.49449, +20121,165470,100!,2014,37,5.15092,5.49449, +20122,302679,Stormsunder: Heirs of Ruin,,52,5.25000,5.49449, +20123,135077,Clockwork Kingdom,2015,63,5.29238,5.49448, +20124,3203,Contack,1939,66,5.30152,5.49448, +20125,653,Shit!,1996,117,5.38556,5.49448, +20126,2626,Das Phantom,1993,37,5.15000,5.49447, +20127,8477,"10-Four, Good Buddy",1976,46,5.21739,5.49447, +20128,10869,Heart of Africa,2004,381,5.46101,5.49447, +20129,349219,ANTIFA: Le Jeu,2021,45,5.21111,5.49447, +20130,1303,The Squirrel Game,1987,81,5.33704,5.49447, +20131,14034,Autobridge,1938,56,5.26643,5.49446, +20132,180939,Chimère,2016,196,5.42926,5.49446, +20133,169782,Dice Alias,2014,38,5.15789,5.49446, +20134,139401,Realm of Heroes,2015,55,5.26182,5.49445, +20135,19425,Daemonibus,2005,35,5.12857,5.49445, +20135,32464,Sorry! The Simpsons Edition,2007,35,5.12857,5.49445, +20137,12225,UNO: The Muppet Show,2003,30,5.06667,5.49444, +20138,2489,Chaos Tiles,1999,44,5.20227,5.49443, +20139,344814,Harry Potter: Catch the Golden Snitch,2021,57,5.26848,5.49442, +20140,268080,Cooking Customers,2019,31,5.07892,5.49442, +20141,33418,"Therapy, The Second Session",1996,53,5.25094,5.49441, +20142,87748,Frenetic Village,2010,47,5.21915,5.49439, +20143,181616,8-28,2015,130,5.39469,5.49438, +20144,15806,Knowing Me Knowing You,2003,89,5.34854,5.49437, +20145,3371,September,1985,46,5.21087,5.49435, +20146,52514,I've Never... The Outrageous Game of Truth,2009,36,5.13210,5.49435,"17114, 52514" +20147,32148,BallCube,2007,32,5.08563,5.49433, +20148,3631,Flinke Flitzer,2000,71,5.30986,5.49432, +20149,17576,Chameleon,2005,52,5.24231,5.49432, +20150,257598,MacGyver: The Escape Room Game,2018,187,5.42420,5.49432, +20151,275391,Skulk,2019,94,5.35468,5.49431, +20152,96777,Back to Iraq (Third Edition),2001,89,5.34674,5.49431,"4381, 96777" +20153,411085,Sau-Bande!,2016,61,5.27869,5.49430,"165559, 411085" +20154,2391,Risky Strategy,1991,49,5.22571,5.49429, +20155,34277,Gisborne: Die ersten Kartographen,2008,111,5.37568,5.49429, +20156,41095,Clue: Secrets & Spies,2009,272,5.44588,5.49429, +20157,8455,Anvil-Dragoon: Southwall 1944,1986,48,5.21979,5.49429, +20158,160502,Pointing Fingers,2013,35,5.11762,5.49428, +20159,283229,I Dissent,2019,121,5.38521,5.49428, +20160,14423,Husker Du?,1970,113,5.37743,5.49428, +20161,360747,Skate Legend,2023,128,5.39078,5.49426, +20162,6965,Monopoly: Muppets,2003,43,5.18605,5.49425, +20163,1099,Downspin,1970,950,5.48029,5.49425, +20164,91664,Auf die Birne,2011,41,5.17073,5.49425, +20165,9541,The Addams Family Family Reunion Game,1991,40,5.16250,5.49425, +20165,11563,Forgotten Axis: The Finnish Campaign,1999,40,5.16250,5.49425, +20167,3342,Soccerama,1968,38,5.14474,5.49424, +20168,296115,Harry Potter Quiz,2019,36,5.12500,5.49424, +20169,274712,Boogie Beasts,2019,30,5.05000,5.49422, +20169,30880,Holiday,1985,30,5.05000,5.49422, +20171,58678,Ezelen,,45,5.19807,5.49422, +20172,198147,Awful Fantasy: The Card Game,2017,126,5.38833,5.49422, +20173,13383,Monopoly: Major League Baseball,2004,33,5.08939,5.49421, +20174,209284,Hamster Clan,2016,165,5.41323,5.49421, +20175,169463,The Princess Bride: Miracle Pill,2015,57,5.25965,5.49420, +20176,240842,Curio: The Lost Temple,2018,54,5.24635,5.49420, +20177,72376,Forever Young: A Vampire Game,2010,37,5.13243,5.49420, +20177,8400,Travel Buff,1987,37,5.13243,5.49420, +20179,180746,Los Viajes del Capitán Foucault,2015,52,5.23654,5.49419, +20180,200539,Yacht Sea!,2016,79,5.32456,5.49419,"18812, 200539" +20181,119622,Massilia,2014,230,5.43583,5.49418, +20182,107029,Simon Flash,2011,40,5.15825,5.49418, +20183,116596,Fruit Ninja Card Game,2011,123,5.38466,5.49416, +20184,238721,Stumped,2018,74,5.31189,5.49415, +20185,113312,Grill Party,2012,128,5.38867,5.49415, +20186,82216,Trivial Pursuit: Steal Card Game,2009,299,5.44892,5.49414, +20187,266079,Galactiquest,2019,73,5.30890,5.49414, +20188,19694,GEOMAG Magnetic Challenge,2005,30,5.04333,5.49414, +20189,3941,Dragonriders of Pern,1983,163,5.41104,5.49413, +20190,1723,Alpha Omega,1977,181,5.41928,5.49413, +20191,62311,Visual Brainstorms 2,1997,32,5.07031,5.49412,"10608, 62311, 357853" +20192,23312,Free At Last,2006,65,5.28534,5.49412,"23312, 348303, 424293" +20193,124758,Famous Forehand: The World's Smallest Tennis Game,2012,76,5.31513,5.49410, +20194,285165,Tatort Tonne,2019,56,5.25000,5.49407, +20194,81263,My First Triominos,,56,5.25000,5.49407, +20196,7318,Bob the Builder: Scoop's Construction Site Game,1995,38,5.13421,5.49407, +20197,35676,Time After Time,2008,33,5.07879,5.49406, +20198,266092,MonsterSlap,2018,48,5.20833,5.49405, +20199,6620,Den of Thieves,2003,44,5.18182,5.49404, +20200,89404,Diary of a Wimpy Kid: Zoo-Wee Mama Card Game,2010,43,5.17442,5.49404, +20201,12988,Collide-O!,2004,42,5.16667,5.49404, +20202,109456,Nova Cry,2016,175,5.41543,5.49404, +20203,2871,Kookaburra Game,2000,40,5.15000,5.49403, +20204,343130,Detective Rummy,2022,33,5.07576,5.49402, +20205,19087,Build-A-Burger,,31,5.04839,5.49401, +20206,257595,Dudab Buba,2018,64,5.27813,5.49401,"165414, 257595" +20207,240511,Rick and Morty: Tráfico de Megasemillas,2017,58,5.25545,5.49400, +20208,203083,"Zombies, Run! The Board Game",2017,60,5.26333,5.49400, +20209,71899,Gremlins: Gizmo's Great Escape,2010,42,5.16429,5.49400, +20210,5621,Bleeding Sherwood,1996,75,5.30933,5.49400, +20211,675,4th Dimension,1977,83,5.32651,5.49397, +20212,129851,Czech Pub,2012,65,5.28000,5.49397, +20213,8429,"Combat Command: Tactical Armored Warfare, France 1944",1972,48,5.20417,5.49397, +20214,38981,Bobby Sitter,2008,188,5.41995,5.49397, +20215,7465,Chekov,2003,62,5.26935,5.49396, +20216,24977,Es geht seinen Gang,1997,37,5.11622,5.49394, +20217,9174,Leonardo,1988,81,5.32099,5.49393, +20218,64064,Life's a Pitch,2009,47,5.19574,5.49392, +20219,335919,Ice Floes & Foes,2021,63,5.27143,5.49392, +20220,2589,Winhard,2001,65,5.27769,5.49391, +20221,180940,Top Face!,2015,36,5.10278,5.49390, +20222,26176,"It's the Great Pumpkin, Charlie Brown",2006,35,5.09111,5.49389, +20223,3314,Lügenbeutel,1978,105,5.35962,5.49389, +20224,167465,Laser Cat Attack!,2014,46,5.18587,5.49386, +20225,5886,Die Dracheninsel,2003,112,5.36714,5.49385, +20226,2430,Phlounder,1962,76,5.30711,5.49385, +20227,134326,Monopoly: Zapped Edition,2012,30,5.02000,5.49384, +20228,914,Battle Platform Antilles,2000,39,5.12821,5.49382, +20229,215038,Phase 10 Junior,2011,34,5.07353,5.49381, +20230,349192,Grounded For Life,2020,38,5.11763,5.49380, +20231,7235,Interstellar Wars,1982,33,5.06061,5.49380, +20232,25260,Garden Party,2006,31,5.03226,5.49380, +20233,16612,Viersprong,1987,30,5.01667,5.49379, +20234,144374,Once Upon a Time... Life,2012,61,5.25902,5.49379, +20235,119872,Joomba!,2012,70,5.28900,5.49379, +20236,24379,Celebrity Head,1994,39,5.12564,5.49378, +20237,246,Politika,1996,42,5.15143,5.49377, +20238,13460,Obscura Tempora,2005,143,5.39301,5.49375, +20239,194075,Vroom Vroom,2016,59,5.24953,5.49375, +20240,2792,Coco Crazy,1992,350,5.45254,5.49375, +20241,32992,Tàin,2007,113,5.36593,5.49374, +20242,154889,Toasted or Roasted,2014,40,5.13250,5.49374, +20243,24447,Twisted Fish,2006,53,5.22075,5.49373, +20244,32431,Altamira,2007,143,5.39241,5.49372, +20245,169256,Hoverkraft,2014,109,5.36009,5.49369, +20246,36236,Living Labyrinth,2008,98,5.34490,5.49368, +20247,6588,Radar Search,1969,30,5.00667,5.49367, +20248,3762,Mister Diamond,1993,144,5.39201,5.49366, +20249,120022,Gnominia,,53,5.21698,5.49364,"120022, 254178" +20250,9639,Aladdin: The Magic Carpet Game,1992,37,5.09730,5.49364, +20250,240135,Catch the Fox,2017,37,5.09730,5.49364, +20252,210181,Doctor Who: Time Clash – Starter Set,2016,50,5.20000,5.49364, +20253,1812,Night of the Ill-Tempered Squirrel,2000,45,5.16667,5.49362, +20254,235247,Jim Henson's The Dark Crystal: Board Game,2018,176,5.40999,5.49362, +20255,2404,Sorcerer King,1985,44,5.15909,5.49362, +20256,9706,‘Tis the Season: Christmas Trivia,1988,40,5.12500,5.49361, +20257,7463,"'CA' Tactical Naval Warfare in the Pacific, 1941-45",1973,117,5.36752,5.49361, +20258,126463,Spectrix,2012,37,5.09459,5.49360, +20259,25270,Stop & Go,1960,35,5.07143,5.49359, +20260,3324,Railroader,1963,127,5.37717,5.49359, +20261,157352,Doom and Bloom SURVIVAL!,2014,33,5.04545,5.49359, +20262,3884,Mana Burn,1998,32,5.03125,5.49359, +20262,4081,Nick at Nite Classic TV Trivia Game,1996,32,5.03125,5.49359, +20264,158771,Hogger Logger,2015,65,5.26569,5.49358, +20265,36230,Dogfight,2009,60,5.24667,5.49358, +20266,374001,You Lying Sack,2022,62,5.25452,5.49357, +20267,419262,Mega Jackpot,2024,123,5.37285,5.49356, +20268,38991,Hot Potato,2011,39,5.11282,5.49356, +20269,3673,Hot Spot,1979,84,5.31667,5.49356, +20270,24814,Princess Ryan's Space Marines: Squad Combat in the 23rd Century,1986,227,5.42797,5.49355,"127, 24814" +20271,9016,Treasure Hunt,1989,54,5.21667,5.49352, +20272,20217,Splash Attack,2005,108,5.35509,5.49352, +20273,72957,Nino Delfino,2010,66,5.26667,5.49351, +20274,8933,Happiness,1972,32,5.02500,5.49350, +20275,119165,Serpent Stones,2013,62,5.25161,5.49350, +20276,239074,Color Smash,2016,51,5.19882,5.49349, +20277,164939,Ultimate Spider-Man: Face Off Dice Game – Spider-Man vs. Rhino,2014,41,5.12683,5.49348,"141726, 164937, 164939" +20278,29019,Gildia,2007,34,5.04882,5.49345, +20279,255546,Spy Code: Operation – Escape – Room,2017,82,5.30902,5.49344,"239504, 255545, 255546, 287781, 317305, 397764, 397765" +20280,280147,Ulanga,2019,41,5.12390,5.49343, +20281,14132,Project Pornstar,2004,137,5.38248,5.49341, +20282,9227,Weed!,2002,125,5.37155,5.49340, +20283,5666,Strolling Bowling,1979,40,5.11250,5.49340, +20283,101519,Rise or Fall,2011,40,5.11250,5.49340, +20285,4560,Fast 111's,1981,39,5.10205,5.49338, +20286,298740,Intime Conviction n°1: L'Affaire des Poissons de Chine,2019,58,5.23023,5.49338, +20287,273933,Techlandia,2020,34,5.04412,5.49338, +20288,989,1848,1998,31,5.00000,5.49337, +20289,3080,RSVP: Vertical Crossword Game,1958,91,5.32527,5.49337, +20290,19842,Alpen Roulette,1965,84,5.31071,5.49335, +20291,2832,Great Western Railway Game,1985,40,5.10750,5.49331, +20292,343155,"Farting Frenchies: Celebrity Dogs Fart, Too!",2020,50,5.18400,5.49330,"320456, 338361, 343155" +20293,9508,Golden Trivia Game: M*A*S*H Edition,1984,32,5.00938,5.49329, +20294,12976,The Mutiny on Little Blue,2004,46,5.15652,5.49328, +20295,72535,Exile Sun,2012,155,5.39323,5.49328, +20296,35414,The Chain Game,2008,57,5.22105,5.49327, +20297,24522,Suspect,2006,33,5.02273,5.49327, +20298,183186,Appalachian Trail Game: Special Edition,2015,38,5.08447,5.49327,"170973, 183186" +20299,175497,Dinosaur Escape,2015,193,5.41254,5.49325, +20300,14134,My Dwarves Fly,2004,407,5.45491,5.49324, +20301,97888,Monopoly: Doctor Who,2011,58,5.22414,5.49323, +20302,32685,Warriors of the Promised Land,2007,43,5.12977,5.49322, +20303,19532,Baffle Gab,2004,32,5.00469,5.49322, +20304,94958,Drôles de petites bêtes Domino,,54,5.20370,5.49322, +20305,3233,Ballast,1998,44,5.13636,5.49319, +20306,19062,CardChess,2001,33,5.01697,5.49319, +20307,14696,The Horse Race Game,2004,41,5.10982,5.49319, +20308,331752,Oppai Go: Fantastic Breasts and Where to Find Them,2018,70,5.26857,5.49318,"195545, 331752" +20309,102965,Agent Doppelnull,2011,33,5.01515,5.49316, +20309,34575,Sea Monsters,2007,33,5.01515,5.49316, +20311,27447,Azteken Schatz,2006,31,4.98387,5.49316, +20312,171547,Tornado Ellie,2015,102,5.33784,5.49313, +20313,139975,Twisted Farkel,2011,50,5.17586,5.49312, +20314,32409,Wiochmen 2,2007,470,5.45936,5.49312,"19484, 32409, 95695" +20315,10511,Gute Freunde,1988,48,5.16250,5.49312, +20316,271042,UNDO: Curse from the Past,2019,437,5.45677,5.49311, +20317,21788,Panicozoo,2005,64,5.24453,5.49310, +20318,257851,Picnic,2018,101,5.33457,5.49306, +20319,230675,Super-Letra-Mix,,151,5.38675,5.49304,"6873, 29951, 230675" +20320,110434,Farkle Frenzy,2011,48,5.15833,5.49304, +20321,19914,Hexxagon,1992,147,5.38333,5.49301, +20322,154553,Last Letter,2014,127,5.36584,5.49300, +20323,107435,Campbell's Alphabet Dice Game,2011,73,5.27178,5.49300, +20324,2517,Ulcers,1969,191,5.40838,5.49299, +20325,124958,1984: Animal Farm,2012,83,5.29819,5.49299, +20326,150061,Celestial Rainbows,2013,31,4.97097,5.49298, +20327,181153,Butts away! Heroes,2015,52,5.18173,5.49298, +20328,363464,Dragonwake,2022,41,5.09756,5.49297, +20329,136286,Star Wars: Bounty Hunter – Das Würfelspiel,2013,82,5.29512,5.49297, +20330,348276,Carrera de Mente: Cartas,2018,93,5.31828,5.49296,"4561, 348276" +20331,135329,Disruptus,2013,36,5.04167,5.49296, +20332,8177,UNO: Spider-Man,2002,68,5.25368,5.49295, +20333,1201,"Game, Set, Match!",1999,31,4.96774,5.49294, +20334,40966,In Love,2007,59,5.21695,5.49294, +20335,4435,Pirate Inc.,1985,30,4.95000,5.49294, +20336,29010,Walk the Plank,2007,78,5.28397,5.49293, +20337,32684,Scene It? Pirates of the Caribbean,2007,41,5.09480,5.49292, +20338,19530,Toot and Otto,2004,39,5.07436,5.49292, +20339,6956,Creeps' Castle,1980,31,4.96613,5.49292, +20340,43042,Black Stories Junior: Blue Stories,2009,35,5.02571,5.49291, +20341,9388,Halloween Party,2004,266,5.43139,5.49291, +20342,337542,Act One,1995,106,5.33830,5.49290,"3525, 150565, 337542" +20343,74310,Falklands Showdown: The 1982 Anglo-Argentine War,2011,55,5.19455,5.49289, +20344,7827,Fast Figure,2003,40,5.08250,5.49288, +20345,4353,Vector 3: Tactical Space Combat in Three Dimensions,1979,82,5.29268,5.49288, +20346,41646,Sushi Roll!,2009,141,5.37624,5.49287, +20347,41995,Monopoly: Star Trek Continuum Edition,2009,62,5.22726,5.49286, +20348,3298,Schleck und weg!!,2002,44,5.11818,5.49285, +20349,2572,Quicksand,1981,35,5.02143,5.49285, +20350,1625,Pokémon Jr. Adventure Game: Pokémon Emergency!,2000,79,5.28354,5.49283, +20351,321145,Blurt!: Sports Game,,379,5.44919,5.49283,"1607, 5429, 8623, 28910, 33092, 321145" +20352,5527,Memo Street,2003,61,5.22131,5.49282, +20353,16367,Pick A Dilly,2005,60,5.21667,5.49282, +20354,167589,Cut the Rope: The Card Game,2014,61,5.22049,5.49280, +20355,14374,Monster Match,2002,47,5.13934,5.49280, +20356,5121,Knock Out,1978,50,5.16000,5.49279, +20356,148973,The World Needs a Jetpack Unicorn,2013,50,5.16000,5.49279, +20358,6681,Back Off! Buzzard,1990,48,5.14583,5.49278, +20359,169502,Firefly: Fistful of Credits,2015,103,5.33107,5.49278, +20360,4930,Survivor Trading Card Game,2001,33,4.98788,5.49278, +20361,4460,Green Ghost,1965,63,5.22794,5.49277, +20362,14347,UNO: Disney Princess,2004,39,5.06410,5.49275, +20363,150216,QuickWits,2013,67,5.24254,5.49273, +20364,4310,Sting,1984,85,5.29549,5.49273, +20365,6518,Trap Door,1982,32,4.96875,5.49273, +20365,23200,Dylan Dog,1994,32,4.96875,5.49273, +20367,31508,ReFraze,2000,34,4.99912,5.49272, +20368,58396,20000 Mijlen onder zee,2009,38,5.05000,5.49271, +20369,8847,Jargon,2003,37,5.03784,5.49270, +20369,161720,Rumplestiltskin!,2014,37,5.03784,5.49270, +20371,26563,Upturn,2006,49,5.14898,5.49270, +20372,6874,Müller & Sohn,1985,62,5.22097,5.49270, +20373,195195,Monster Rejects,2016,96,5.31718,5.49270, +20374,42062,Pants on Fire!,2009,40,5.07125,5.49269, +20375,62854,Humpty Dumpty's Wall Game,2009,98,5.32061,5.49269, +20376,42149,Monopoly: Magnetic Pocket Edition,1991,30,4.93000,5.49268, +20377,22379,aBRIDGEd,2006,70,5.25143,5.49268, +20378,192904,Destroy BCN!,2016,54,5.17901,5.49266, +20379,252501,Monopoly: Star Wars,2015,32,4.96246,5.49265, +20380,28063,Het goud van de Farao,2007,85,5.29294,5.49264, +20381,296960,Divercité,2019,42,5.08810,5.49263, +20382,15066,Cat & Mouse,1985,200,5.40765,5.49263,"15066, 17687" +20383,9559,The Hamburger Game,1987,151,5.37987,5.49262, +20384,87280,Danse Macabre,2010,45,5.11333,5.49260, +20385,2370,Cows Can't Dance (But They Like to Be Asked!),1996,42,5.08571,5.49259, +20386,33845,Nibble Nibble,2007,39,5.05385,5.49258, +20387,159818,Survival!,1980,65,5.22923,5.49258,"3042, 67792, 159818" +20388,5430,Best of TriBond,2001,172,5.39302,5.49258, +20389,5742,Escape from Colditz Castle,1972,49,5.14286,5.49257, +20389,31100,Monopoly: Spider-Man,2007,49,5.14286,5.49257, +20391,63899,Magma Monster,2010,102,5.32451,5.49257, +20392,196564,Quick And Dirty,2016,45,5.11111,5.49256, +20393,7356,Vegas,1969,31,4.93871,5.49256, +20394,136092,Blitzed!,2013,41,5.07317,5.49255, +20395,4219,Goal,2000,176,5.39464,5.49253, +20396,10275,The X-Files Trivia Game,1997,36,5.01389,5.49253, +20397,4951,PAC-MAN Card Game,1982,35,5.00000,5.49253, +20398,152641,Bulls & Cows,,33,4.96970,5.49252, +20398,377237,Plný kurník,2016,33,4.96970,5.49252, +20400,9188,SPI Football,1980,32,4.95312,5.49252, +20401,65581,Hamunaptra: Aventures dans la Grande Pyramide,2010,126,5.35548,5.49251, +20402,104768,Scrabble Alphabet Scoop,2011,30,4.91667,5.49251, +20403,100753,Battlefield Blast,2009,50,5.14700,5.49251,"4810, 100753" +20404,122868,Blackrock City,2012,118,5.34576,5.49249, +20405,238010,Let's Feed The Very Hungry Caterpillar Game,2016,32,4.95125,5.49249, +20406,5532,Where in the USA is Carmen Sandiego?,1993,130,5.35923,5.49249, +20407,35658,Malta Convoy: Operation Pedestal,2001,35,4.99714,5.49248, +20407,42542,Monopoly: Seinfeld Collector's Edition,2009,35,4.99714,5.49248, +20409,58713,Lübeck,2009,113,5.33894,5.49248, +20410,13009,The White Unicorn,1994,31,4.93226,5.49247, +20411,8100,Frik,1986,49,5.13776,5.49247, +20412,12491,UNO: Disney,2002,48,5.12979,5.49245, +20413,3909,Pirate's Treasure,2001,47,5.12128,5.49244, +20414,417487,Tapas,2024,47,5.12021,5.49242, +20415,8637,Tears of the Dragon,2003,66,5.22727,5.49241, +20416,239807,Ship of Treasures,2017,41,5.06439,5.49239, +20417,5209,Rondo,1997,55,5.17273,5.49238, +20418,118496,Trivial Pursuit: Disney for All,2011,34,4.97529,5.49238, +20419,124960,3012,2012,321,5.43755,5.49237, +20420,1200,Sagarian,2000,47,5.11787,5.49237, +20421,231790,UNO: Emoji,2016,48,5.12500,5.49236, +20422,1937,Lao Pengh,1999,74,5.25405,5.49236, +20423,296517,Contact: Signals from Outer Space,2020,87,5.28966,5.49236, +20424,91448,Scene It? Comedy Movies,2010,42,5.07143,5.49234, +20425,172257,ZomBee,2015,41,5.06098,5.49233, +20426,144066,Family Feud Strikeout Card Game,2011,96,5.30781,5.49232, +20427,22801,Rapido,2005,38,5.02500,5.49230, +20428,262157,Block Arena,2018,47,5.11383,5.49229, +20429,356231,Megalomania Card Game,2022,53,5.15660,5.49229, +20430,170190,Time Jockeys,2016,50,5.13600,5.49228, +20431,37225,MIG (volym 3),2006,87,5.28736,5.49227,"15236, 15519, 32399, 37225, 58574, 64556, 297181, 297203" +20432,30239,Der Goldene Kompass,2007,254,5.42205,5.49227, +20433,128635,Saqqara,2012,68,5.22985,5.49226, +20434,3850,Galactic Empires,1994,167,5.38539,5.49226, +20435,43233,Nmbrs!,2009,57,5.17895,5.49226, +20436,1063,Schraumen,1992,107,5.32523,5.49225, +20437,184044,Cul-De-Sac Conquest,2016,63,5.20853,5.49225, +20438,31294,Dead End,2007,176,5.39057,5.49224, +20439,89915,Top & Down,2011,76,5.25658,5.49224, +20440,600,Die Weinhändler,2000,64,5.21172,5.49222, +20441,27584,Schafe Schnappen,2007,30,4.89333,5.49221, +20442,129469,Card of the Dead,2011,535,5.45860,5.49221, +20443,138201,They Who Were 8,2013,200,5.40225,5.49220, +20444,7869,Balancing Aliens,2003,76,5.25526,5.49219, +20445,254417,Clickbait,2018,98,5.30816,5.49218, +20446,82762,Whac-A-Mole,2009,34,4.96176,5.49218, +20447,155435,Disney Princess Pop-Up Magic Castle Game,2014,32,4.92812,5.49218, +20448,1517,Ani-Mayhem,1996,127,5.34961,5.49215, +20449,21555,Rumble in the Jungle,2004,37,5.00270,5.49215, +20450,149323,Yahtzee Steal the Deal,2013,82,5.27098,5.49214, +20451,19381,Quest Cards,2005,39,5.02564,5.49211, +20452,6693,Scooby-Doo! Thrills and Spills,1999,37,5.00000,5.49211, +20452,21787,Diên Biên Phu,1980,37,5.00000,5.49211, +20454,28371,Monopoly: My Marvel Heroes,,36,4.98611,5.49210, +20455,360,Quests of the Round Table,1995,318,5.43481,5.49210, +20456,12912,Monopoly: Golf,1998,34,4.95588,5.49210, +20457,31848,Wall Street,2000,33,4.93939,5.49209, +20458,389090,Dragon Castle: New Challenges,2022,32,4.92188,5.49209,"30898, 389090" +20459,140480,Pyramid,,37,4.99865,5.49209, +20460,29924,Monopoly: Transformers,2007,89,5.28652,5.49207, +20461,1435,4000 A.D.,1972,397,5.44590,5.49206, +20462,4374,Crosstrack,1994,102,5.31225,5.49205, +20463,2074,Murphy,1989,38,5.00921,5.49205, +20464,337178,Factum,2021,41,5.04424,5.49204, +20465,312762,The Joker,2020,83,5.27020,5.49202, +20466,740,Rio Grande: The Battle of Valverde,1991,71,5.23239,5.49201, +20467,201842,Cup of Bluff,2016,44,5.07273,5.49200, +20468,134477,Temple Run: Speed Sprint Card Game,2012,87,5.27989,5.49200, +20469,12500,Automobile für die Welt,1977,30,4.87667,5.49200, +20470,3398,Eye of Horus,2002,44,5.07227,5.49199, +20471,33950,Solo Tower Hack,2007,103,5.31262,5.49199,"30009, 33950" +20472,287078,Eyetoons,2016,46,5.08913,5.49197,"192971, 287078" +20473,72482,Heroes of Graxia,2010,414,5.44696,5.49193, +20474,556,7 Safari,2000,109,5.32110,5.49193, +20475,900,City,1988,511,5.45548,5.49193,"900, 27800" +20476,299249,Mint Control,2020,327,5.43495,5.49192, +20477,4383,Oskar,1994,39,5.01410,5.49192, +20478,276124,Bookworm: The Card Game,2019,119,5.33527,5.49192,"193272, 276124, 286748" +20479,22923,Dragon Stripes,1989,56,5.15893,5.49192, +20480,9929,Touch and Go,1974,39,5.01282,5.49190, +20481,320444,Seas of Fortune,2020,38,5.00000,5.49190, +20482,1939,Kismet,1997,75,5.24267,5.49190, +20483,18498,Zimbbos!,2004,108,5.31852,5.49188, +20484,18063,Goldrush,1970,33,4.92424,5.49188, +20485,320252,15 Minutes to Self-Destruct,2020,32,4.90625,5.49188, +20485,5302,SPI Baseball,1980,32,4.90625,5.49188, +20485,15455,Värsta språket,2004,32,4.90625,5.49188, +20488,349495,Crime Scene: Helsinki 2012,2021,56,5.15536,5.49183, +20489,4502,König der Maulwürfel,2002,101,5.30495,5.49182, +20490,145963,Wetland,2013,50,5.11360,5.49180, +20491,141059,Shelby's Snack Shack Game,,38,4.99342,5.49179, +20492,220741,Yummy Yummy Pancake,2017,128,5.34381,5.49179, +20493,5810,Trivial Pursuit: Warner Bros. All Family Edition,1999,67,5.20896,5.49179, +20494,137404,Banana Party,2013,96,5.29427,5.49178, +20495,33676,Scene It? To Go!: TV,2007,229,5.40895,5.49178,"14342, 28509, 33676" +20496,10673,Monopoly: America Special Edition,2002,84,5.26583,5.49177, +20497,86443,Color-A-Do,2010,49,5.10408,5.49176, +20498,151876,London 1888 (Second Edition),2014,126,5.34095,5.49176,"19991, 151876" +20499,8088,Scrabble Rebus,1986,34,4.93235,5.49175, +20500,7156,UNO: Hello Kitty,2003,56,5.15179,5.49175, +20501,137244,Monopoly Hotels,2013,116,5.32759,5.49175, +20502,31360,Laborigines,2007,55,5.14545,5.49174, +20503,190409,Star Wars: Duels Card Game,2015,42,5.03810,5.49174, +20504,13817,Monopoly: 1935 Commemorative Edition,1985,102,5.30490,5.49174, +20505,98857,White Elephant,2011,95,5.29105,5.49174, +20506,3650,The Twilight War,1984,52,5.12500,5.49173, +20507,4736,Armor Supremacy,1976,35,4.94571,5.49172, +20508,5347,Edge City,1994,48,5.09312,5.49171, +20509,674,J.U.M.P. Into the Unknown,1999,103,5.30583,5.49170, +20510,95589,Bad Grandmas,2011,48,5.09271,5.49170, +20511,58375,Eine gegen Eine,2009,41,5.02439,5.49169, +20512,4042,Dweebs Geeks & Weirdos,1988,40,5.01250,5.49169, +20513,160273,Virus the Card Game,2014,39,5.00000,5.49169, +20514,206516,Mine All Mines,2017,64,5.19141,5.49167, +20515,6245,Quest for the Dungeonmaster,1984,45,5.06459,5.49167, +20516,5204,Dimension Demons,1981,57,5.15351,5.49164, +20517,24484,Disorder,2006,77,5.24026,5.49161, +20518,11047,Barbarossa: Game of the Russo-German War 1941-45,1986,88,5.27159,5.49161, +20519,76065,Pictionary Card Game,2009,220,5.40337,5.49159, +20520,16153,Labyrinth Treasure Hunt,2005,247,5.41300,5.49159, +20521,23812,Drachenjäger von Xorlosch,2006,69,5.21014,5.49158, +20522,146259,Sangoku,2016,32,4.88438,5.49158, +20523,12819,The Dinosaur Game: Survival or Extinction,1995,66,5.19697,5.49157, +20524,808,Pipeline: The Oil Game,1988,89,5.27303,5.49157, +20525,279169,Ogre Under,2019,38,4.97895,5.49156, +20526,4279,Flux,1986,298,5.42617,5.49155, +20527,103191,Pergamemnon,2011,218,5.40211,5.49155, +20528,27552,Élve fogd el,1981,68,5.20441,5.49154, +20529,67712,Susume!! Kaizoku-san,2008,31,4.86129,5.49153, +20530,187719,The Banner Saga: Warbands,2016,91,5.27659,5.49152, +20531,11784,Instant Recall,1965,38,4.97632,5.49151, +20532,42368,Inquisitio,2009,144,5.35556,5.49151, +20533,5084,Berzerk,1983,48,5.08333,5.49151, +20534,257880,The Golden Girls: Any Way you Slice it,2018,47,5.07447,5.49150, +20535,180975,Crimson Creek,2016,279,5.42111,5.49149, +20536,28292,Deluxe Weed!,,42,5.02381,5.49148, +20537,26089,Dschingis Khan: Bewegung an der Großen Mauer,2006,97,5.28866,5.49147, +20538,26578,Tumbling Tower: Rainbow!,,43,5.03256,5.49145, +20539,6217,War of Wizards,1975,31,4.85484,5.49144, +20539,15147,Zoo Food,1999,31,4.85484,5.49144, +20541,9160,Neopets TCG,2003,89,5.26966,5.49144, +20542,15462,Get Nifty,2005,30,4.83333,5.49144, +20543,141250,Pirackie Skarby,2013,49,5.08776,5.49143, +20544,159437,iGranie z Gruzem,2014,152,5.36118,5.49142, +20545,4577,Hollywood Squares,1967,34,4.90882,5.49141, +20546,242756,Deal or Duel,2017,44,5.03977,5.49139, +20547,83658,Медвед,2009,44,5.03932,5.49138, +20548,35468,On Top,2008,59,5.15424,5.49138, +20549,370186,ION: Card & Dice Game,2016,34,4.90588,5.49137,"174083, 370186" +20550,31136,1 vs. 100 Board Game,2006,33,4.88788,5.49137, +20551,31066,Aapep,2007,67,5.19403,5.49136, +20552,999,Panda Monium,1994,148,5.35676,5.49136, +20553,40480,Fantasía S.A.,2008,134,5.34261,5.49136, +20554,16262,Race,1984,41,5.00488,5.49135, +20555,36650,Quick,2008,49,5.08367,5.49134, +20556,174927,Masterline,2015,57,5.14081,5.49134, +20557,26700,Monopoly: Dutch Edition,1961,48,5.07500,5.49134, +20558,947,Trivia for Dummies,1998,61,5.16311,5.49132, +20559,13477,Space Shuffle,2004,60,5.15667,5.49130, +20560,16141,Fredericus,2005,180,5.37944,5.49127, +20561,189657,Goosebumps: The Board Game,2015,37,4.94595,5.49125, +20562,10345,Safari Round Up,1973,48,5.07083,5.49125, +20563,85394,The Last Banquet,2012,353,5.43405,5.49125, +20564,152724,Are You Normal?,2013,40,4.98625,5.49124, +20565,4788,Quad-Ominos,1978,66,5.18485,5.49123, +20566,5564,Oh What a Mountain!,1980,47,5.06064,5.49123, +20567,182516,Game for Fame,2010,34,4.89471,5.49121, +20568,367512,Squid Game: Let the Games Begin,2022,101,5.29036,5.49121, +20569,663,Siege,1999,31,4.83548,5.49119, +20570,13328,Chromino,2001,888,5.46809,5.49113, +20571,12624,Trivial Pursuit: 10th Anniversary,1992,54,5.11204,5.49113, +20572,197969,Estanciero Express,,88,5.25795,5.49111,"3753, 197969" +20573,24754,Sneaks,2006,32,4.84969,5.49110, +20574,349492,Crime Scene: Moscow 1989,2021,53,5.10377,5.49110, +20575,186185,Aladdin's Flying Carpet,2014,41,4.99024,5.49110, +20576,5688,Trolls in the Pantry,1989,47,5.05404,5.49110, +20577,266651,Tangled Timelines,2021,46,5.04348,5.49107, +20578,325735,Empire Plateau: The Lateral Thinking Battle Game,2022,68,5.18824,5.49107, +20579,288985,Der Herr der Wichtel,2019,45,5.03333,5.49107,"2068, 288985" +20580,15182,Destination London,2004,43,5.01163,5.49106, +20580,61135,Trixo,2008,43,5.01163,5.49106, +20582,39898,Word Pirates!,2008,58,5.13534,5.49106, +20583,3622,eBay: The Card Game,2001,61,5.15246,5.49105, +20584,131389,Castle: The Detective Card Game,2013,111,5.30471,5.49103, +20585,89222,Bloodsuckers,2011,134,5.33659,5.49103, +20586,10282,Masters of the Universe 3-D Action Game,1983,33,4.86364,5.49102, +20587,7959,Marvel Super Dice,1997,31,4.82258,5.49102, +20587,4634,Warhammer Warriors: Kal Jerico,1999,31,4.82258,5.49102, +20589,99809,Rrrats!,2011,30,4.80000,5.49101, +20590,67364,3D Tic Tac Toe,,49,5.06776,5.49101, +20591,11561,Forgotten Axis: Murmansk 1941,1999,39,4.95897,5.49101, +20592,23723,Dinosaurs Extinct?,2006,48,5.05625,5.49095, +20593,958,Orcz,2000,282,5.41684,5.49094, +20594,3253,Perpetual Notion,1993,63,5.15873,5.49093, +20595,276802,Doctor! Doctor!,2019,37,4.92432,5.49091, +20596,32213,Antarctica (Second Edition),2007,35,4.89143,5.49090,"23257, 32213" +20597,295051,Monopoly World,2008,45,5.02444,5.49090, +20598,35499,Fight Klub,2008,44,5.01364,5.49090, +20599,11393,Tummy Ache,1973,53,5.09434,5.49089, +20600,97824,Sanitarium,2012,168,5.36577,5.49089, +20601,298,Lang lebe der König!,1997,77,5.21766,5.49088, +20602,87929,Ninjago,2011,49,5.06122,5.49087, +20603,5617,Bionic Crisis,1975,61,5.14557,5.49087, +20604,399757,Linx,2023,198,5.38444,5.49087, +20605,23308,Pirates of the Caribbean: Trading Card Game,2006,56,5.11429,5.49086, +20606,157083,Dragon Valley,2014,141,5.34116,5.49085, +20607,168168,Prima Ballerina,2014,40,4.96250,5.49084, +20608,2513,Colony,2001,37,4.91892,5.49083, +20609,19565,Word Spin Scramble,1994,35,4.88571,5.49082,"10965, 19565" +20610,19447,WWE DVD Board Game,2005,38,4.93261,5.49080, +20611,13039,Digimon Digi-Battle Card Game,1999,78,5.21885,5.49080, +20612,172480,Roar! Catch the Monster,2015,216,5.39259,5.49080, +20613,1056,Piratenpoker,1998,31,4.80645,5.49080, +20613,26030,Scrabble Junior: The Disney Edition,2003,31,4.80645,5.49080, +20615,26841,Table-MotoGP: The Moto GP Licensed Board Game,2006,45,5.01778,5.49077, +20616,34825,4-mation,2007,33,4.84455,5.49076, +20617,329330,Robogem Deluxe,2017,45,5.01667,5.49075,"182380, 329330" +20618,2110,No Bluff!,1997,115,5.30522,5.49075, +20619,7964,West Wall,1984,44,5.00568,5.49075, +20620,129053,Meins!,2012,88,5.24773,5.49073, +20621,1221,Crossed Wires,1993,45,5.01422,5.49070, +20622,10599,Tempest of the Gods,1995,33,4.84091,5.49070, +20623,88554,MythBusters: The Game,2010,37,4.91081,5.49070, +20624,299798,Spanish Civil War Battles: Vol. 1 – Brunete & Jarama,2002,65,5.16000,5.49068,"11673, 299798" +20625,10612,Champagne: The Game,1996,63,5.14921,5.49067, +20626,2075,Restaurant,1987,62,5.14355,5.49067, +20627,179228,Grim,2015,49,5.05102,5.49066, +20627,39276,Casino Hot Dog,2008,49,5.05102,5.49066, +20629,182062,Movie Buff,2015,61,5.13607,5.49062, +20630,7471,Breaking Point,1976,39,4.93590,5.49062, +20631,4073,Malarky Card Game,2000,36,4.88889,5.49061, +20632,4443,Am Rande des Gletschers,2002,31,4.79032,5.49059, +20633,134642,Vem i rummet,2012,36,4.88601,5.49057, +20634,150754,Vulture Culture,2015,47,5.02719,5.49056, +20635,2306,Bewitched,1988,55,5.09455,5.49056, +20636,53373,Kazaam Dice,2009,51,5.06275,5.49054, +20637,36866,Link-O,2007,35,4.86571,5.49052, +20638,38476,Igor: The Life of the Party,2008,30,4.76000,5.49050, +20639,197435,Santa VS Jesus,2016,91,5.24945,5.49049, +20640,10703,Baantjer,2001,32,4.80469,5.49049, +20641,13333,Dead Hand Chaos Poker,2004,52,5.06750,5.49047, +20642,64706,Monopoly Free Parking Mini Game,2009,62,5.13548,5.49046, +20643,320560,Fort Boyard,2018,51,5.05882,5.49046,"30334, 320560" +20644,6534,Maya Madness,2003,89,5.24270,5.49044, +20645,101954,Rollin' Bones: Pirates of the Caribbean (On Stranger Tides) Dice Game,2011,56,5.09643,5.49044, +20646,78436,Apples to Apples Mod,2009,53,5.07377,5.49043, +20647,14310,Wrestling Superstars Game,1985,30,4.75400,5.49042, +20648,2348,Lotus,1998,232,5.39517,5.49042, +20649,3302,Machu Picchu,1998,59,5.11576,5.49042, +20650,9573,The Dick Tracy Game,1990,37,4.89189,5.49040, +20651,287655,Cracked,2019,76,5.19868,5.49039, +20652,5108,The Disneyland Game,1990,34,4.83824,5.49039, +20653,32224,4th Corner,2007,32,4.79688,5.49038, +20654,8349,Farm Families,1996,31,4.77419,5.49038, +20655,323810,Slide in the DMs,2020,30,4.75000,5.49037, +20655,14617,Mikado Magnetico,1988,30,4.75000,5.49037, +20657,10999,Abracadabra,2004,113,5.29381,5.49037, +20658,158343,Hand Made Wonders,2014,67,5.15821,5.49035, +20659,147423,Jumping Jack,2013,64,5.14219,5.49034, +20660,289123,Picture Show,2019,41,4.94634,5.49033, +20661,9785,Twelve Caesars,1997,34,4.83235,5.49030, +20662,25469,SchreckLicht,2006,52,5.05981,5.49030, +20663,328,Damn the Torpedoes!,1995,39,4.91538,5.49028, +20664,28225,Shipping,1959,48,5.02292,5.49028,"16158, 28225" +20665,388993,Goat Lords 2,2021,265,5.40533,5.49025,"195205, 388993" +20666,9808,Solotaire,1973,45,4.98889,5.49022, +20666,94073,Hit the Deck,2009,45,4.98889,5.49022, +20668,320897,Pasapalabra Junior,,61,5.12000,5.49021,"34974, 320897" +20669,86555,Flickin' Chicken,2009,31,4.76129,5.49020, +20670,3090,Doctor Who: The Game of Time & Space,1980,244,5.39754,5.49020, +20671,272991,The Original Tiny Hands Challenge Game,2017,34,4.82353,5.49017, +20672,5689,Squelch!,1989,33,4.80303,5.49017, +20673,112177,Blanko Junior,1998,51,5.04549,5.49017,"26729, 112177" +20674,9234,My Word,1980,52,5.05327,5.49015, +20675,34173,"Si, Oscuro Padrino!",2007,132,5.31780,5.49014, +20676,2429,Barnabas Collins Dark Shadows Game,1969,33,4.80000,5.49013, +20677,403133,Festi'vibes,2024,71,5.16831,5.49010, +20678,140317,Monopoly: Adventure Time Collector's Edition,2013,95,5.24947,5.49009, +20679,4633,Stop,2001,34,4.81765,5.49009, +20680,8038,Eagles of the Empire: Napoleon in the Desert,2002,60,5.10833,5.49007, +20681,386128,Ding Dong,2023,58,5.09483,5.49006, +20681,15542,Orangino,2002,58,5.09483,5.49006, +20683,6729,North to Alaska,1984,32,4.77344,5.49006, +20684,20311,Horse-opoly,2004,43,4.95651,5.49005, +20685,324238,Guess in 10: Animal Planet,,53,5.05674,5.49004, +20686,356579,Icebreaker,2021,46,4.99063,5.49004, +20687,5609,Oxford Dilemma,1998,54,5.06444,5.49004, +20688,1184,Zug nach Westen,1987,82,5.20976,5.49004, +20689,1127,Encounters,1982,92,5.24022,5.49004,"1127, 5899" +20690,2463,Scavenger Hunt,1983,68,5.15176,5.49003, +20691,63217,Scabs `N` Guts,2009,45,4.97778,5.49001, +20691,166537,RuneCast,2015,45,4.97778,5.49001, +20693,246317,Isidore,2018,75,5.18267,5.49001, +20694,71837,The Hunger Games: Training Days,2010,146,5.33185,5.48999, +20695,326408,Una Questione di Voto,2020,40,4.91250,5.48999, +20696,7713,Dingo,1985,59,5.09831,5.48998, +20697,6661,Corda,1982,39,4.89744,5.48998, +20698,25167,Project Skyline,2004,86,5.22093,5.48997, +20699,57239,Locale,2009,44,4.96341,5.48996, +20700,17745,Cogno: The Alien Adventure Game,2004,32,4.76562,5.48995, +20700,15627,The Hole in One,1987,32,4.76562,5.48995, +20702,10303,F*ck This!,2003,37,4.86216,5.48993, +20703,218639,Eye 'N Seek,2017,61,5.10869,5.48992, +20704,139894,Alchemist Academy,2013,46,4.98261,5.48988, +20705,133423,Rocket Game,2011,51,5.03176,5.48987, +20706,72566,Monopoly: The Simpsons Electronic Banking Edition,2009,42,4.93333,5.48987, +20707,33906,Komandosi,1990,76,5.18224,5.48986, +20708,795,Dragonlance,1988,449,5.43777,5.48986, +20709,13126,Tetris Tower 3D,2003,65,5.13000,5.48986, +20710,39,Darkover,1979,114,5.28465,5.48986, +20711,6949,Garfield,1981,74,5.17297,5.48984, +20712,166661,Paititi,2014,83,5.20723,5.48983, +20713,20771,Bad Babiez,2005,81,5.20000,5.48982, +20714,11556,Money Bags,,40,4.90267,5.48982, +20715,302361,Donald Quest,2020,38,4.87105,5.48981, +20716,174468,Guess Who? Shuffle,2014,47,4.98936,5.48980, +20717,28176,Crazy Creatures,2007,43,4.94186,5.48979, +20717,5496,Riddles & Riches,1996,43,4.94186,5.48979, +20719,8321,Beirut ‘82: Arab Stalingrad,1989,91,5.23077,5.48978, +20720,4267,Jaunty Jalopies,2002,37,4.85135,5.48976, +20721,2357,Nizza,1993,36,4.83333,5.48976, +20722,10419,Adversity,2003,43,4.93953,5.48974, +20723,256146,Nya Geni,1997,32,4.75000,5.48974,"22289, 256146" +20724,773,Beim Zeus!,1997,79,5.18987,5.48973, +20725,10009,Rummy Rumble,1985,32,4.74906,5.48973, +20726,22818,Tock 6,,48,4.99583,5.48972, +20727,954,Pony Express,1991,128,5.30414,5.48970, +20728,30723,Die freche Sprech-Hexe,2006,47,4.98362,5.48969, +20729,341916,Milestones,2021,46,4.97174,5.48967, +20730,136285,Ubongo: Das Würfelspiel,2013,87,5.21576,5.48967, +20731,65134,Sorry! Revenge Card Game,2009,336,5.41863,5.48965, +20732,237153,Fruit Ninja: Combo Party,2018,186,5.36134,5.48965, +20733,131221,MindMaze,2012,164,5.34390,5.48964, +20734,8057,1944: Second Front – From D-Day to Victory in the West,1990,41,4.90610,5.48963, +20735,22342,Amazones,2006,58,5.07672,5.48962, +20736,11243,Arne Total,2003,33,4.76364,5.48961, +20737,121471,Banditos,2012,78,5.18205,5.48960, +20738,17071,Caravans of Ahldarahd,2005,47,4.97872,5.48959, +20738,39145,GemBlo Pyramid,,47,4.97872,5.48959, +20740,27870,Toss Your Cookies,2007,179,5.35537,5.48959, +20741,1752,Haps,2000,32,4.73750,5.48957, +20742,173132,Ludix,2014,35,4.80000,5.48954, +20743,62633,Undercover in Europa,2009,53,5.03396,5.48953, +20744,20634,MiniMonFa (MiniMonsterFantasy),2005,219,5.37922,5.48953, +20745,14422,Pride and Prejudice: The Game,2002,32,4.73438,5.48952, +20746,8314,Arthur Goes to the Library,1996,30,4.68400,5.48952, +20747,2514,Skyline,1988,31,4.70968,5.48952, +20748,137014,Professor Tempus,2013,58,5.07241,5.48951, +20748,125013,Next!,2012,58,5.07241,5.48951, +20750,3589,Beast Wars Transformers Mutating Card Game,1997,37,4.83514,5.48950, +20751,207975,Siege,2016,96,5.23677,5.48948, +20752,6839,The Bionic Woman,1976,51,5.01373,5.48948, +20753,74129,Fractal,2010,51,5.01329,5.48947, +20754,9153,Monopoly: NASCAR,1997,59,5.07763,5.48947, +20755,214343,Fantastic Gymnastics,2016,146,5.32267,5.48944,"214343, 261035" +20756,3030,Baggage Claim,1987,79,5.18101,5.48944, +20757,286031,Dragon Bridge,2019,88,5.21250,5.48944, +20758,207311,Card Rogue,2017,104,5.25510,5.48943, +20759,70653,Monopoly: Nintendo Collector's Edition,2010,192,5.36250,5.48943, +20760,126234,Carmarace,2014,59,5.07627,5.48943, +20761,147392,Colony Clash: Insect Warfare,,30,4.67667,5.48943, +20762,29119,Party Pooper,2008,39,4.86256,5.48940, +20763,5361,Doubletrack,1981,45,4.94444,5.48937, +20764,198305,Bandits on Mars,2016,123,5.28992,5.48937, +20765,238086,Daniel Tiger's Neighborhood: Welcome to Main Street Game,2016,41,4.89024,5.48935, +20766,297343,Super Slow Sloths,2019,46,4.95435,5.48933, +20767,8448,Bible Challenge,1984,64,5.10469,5.48933, +20768,21631,Bohnkick,2006,146,5.32055,5.48932, +20769,6886,Capital Adventure,1986,32,4.71875,5.48931, +20770,15354,Race Around Britain!,1988,31,4.69355,5.48931, +20771,35262,Monopoly: Here & Now Electronic Banking,2006,75,5.16000,5.48929, +20772,110598,Isegrim,2011,37,4.82162,5.48929, +20773,224751,ROBiTs,2017,176,5.34881,5.48928, +20774,605,Banana Republic,1993,167,5.34072,5.48925, +20775,67486,Bubble Talk,2010,285,5.40199,5.48922, +20776,9115,Questo Gioco del Calcio,2003,57,5.05263,5.48921, +20777,32922,Camper Tour,2007,52,5.00962,5.48919, +20778,89926,Sunblock,2011,75,5.15600,5.48917, +20779,28906,Top 15,1984,45,4.93333,5.48916,"10368, 28906" +20780,6524,VH1 Pop Up Video Game,1999,44,4.92045,5.48915, +20781,1105,Titus,2000,89,5.20787,5.48915, +20782,5794,Landyland,1998,33,4.73030,5.48914, +20783,676,Ninja Wars,1998,31,4.68129,5.48914, +20784,1703,Kula Kula,1991,105,5.25048,5.48914, +20785,13989,Mad About Movies!,1997,40,4.86250,5.48913, +20786,33497,Celtyckie Miecze,1993,39,4.84615,5.48913, +20787,6228,Rolling Thunder,1979,42,4.89095,5.48911, +20788,28479,Monopoly: New Disney,2004,40,4.86000,5.48909, +20789,3205,Da geht was ab im Morgenland,1999,37,4.80811,5.48908, +20790,73288,Dumb Ass,2010,90,5.20882,5.48907, +20791,39431,Name Chase: Historical Figures Edition,2008,39,4.84205,5.48906, +20792,118494,Tic-Tac Two,2011,30,4.64741,5.48905, +20793,18774,Älpler-Stafette,1989,92,5.21424,5.48904,"2295, 18774" +20794,156580,The Chase,2012,61,5.07377,5.48902, +20795,3919,Chute-5,1973,46,4.93816,5.48902, +20796,275,Extinction,1993,47,4.94894,5.48900, +20797,21846,The Neighbours Game,1988,32,4.69375,5.48897, +20798,25412,Vampire: Dark Influences,2006,299,5.40381,5.48896, +20799,2012,Titanic,1998,46,4.93478,5.48895, +20800,175879,Ruddy Vikings,2015,54,5.01667,5.48894, +20801,228714,SHAEF,2018,30,4.63667,5.48892, +20802,7715,Porca Miseria,1999,48,4.95625,5.48892, +20803,4912,G.I. Joe Adventure Board Game,1982,38,4.81579,5.48891, +20804,7864,Wildside,2003,37,4.79730,5.48891, +20805,3268,Bunker Poker,1999,44,4.90682,5.48890, +20806,313070,Danger Noodle!,2020,83,5.18024,5.48889, +20807,3451,Coffee!,2002,31,4.66129,5.48888, +20807,30253,Polly the Porcupine,2007,31,4.66129,5.48888, +20809,7259,Management Material: Information Technology Edition,2003,260,5.39019,5.48888,"4076, 7259" +20810,13527,Monstret som slukade Stockholm,1983,30,4.63333,5.48887, +20810,1914,Im 7. Himmel,1989,30,4.63333,5.48887, +20812,24137,Monopoly: Pirates of the Caribbean,2006,44,4.90455,5.48885, +20813,177807,King Arthur,2014,380,5.42118,5.48885,"6368, 177807" +20814,131164,Barbeque Party,2011,49,4.96327,5.48884, +20815,23671,Monopoly: SpongeBob SquarePants,2005,264,5.39128,5.48884, +20816,4976,Derby Days,1989,48,4.95076,5.48880, +20817,4797,Guinness Game of World Records,1975,63,5.07778,5.48878, +20818,138195,City Blocks,2013,125,5.28160,5.48877, +20819,8447,Objective: Tunis,1991,79,5.16076,5.48877, +20820,181471,Catan: Chocolate Edition,2015,55,5.01636,5.48874, +20821,3486,Bataclan,1997,46,4.92391,5.48874, +20822,38678,Novem,2008,88,5.19318,5.48873, +20823,185050,Nimmit,2015,43,4.88372,5.48872,"3297, 185050" +20824,154085,How to Human,2014,59,5.04695,5.48870, +20825,4552,Zorro,1991,31,4.64516,5.48866, +20826,26134,Die Drachenbändiger von Zavandor,2006,64,5.07969,5.48865, +20827,30820,Wind & Wetter,2007,81,5.16543,5.48865, +20828,237213,Rhino Hero: Active Kids,2017,55,5.01164,5.48863, +20829,32601,Rubik's Revolution,2006,46,4.91826,5.48863, +20830,2378,Drachenfels,1986,48,4.94167,5.48862, +20831,215154,Jungli-La,2016,82,5.16768,5.48859, +20832,163170,Firefly: Shiny Dice,2015,728,5.45243,5.48859, +20833,14812,Camelot,2005,136,5.29485,5.48858, +20834,47170,The Tower of Mystery,2009,48,4.93958,5.48858, +20835,26617,Hatch: The Dragonology Card Game,2006,56,5.01786,5.48857, +20835,319046,Icons: Women Who Play to Win,2020,56,5.01786,5.48857, +20837,9348,Der Alchimist,2000,36,4.75556,5.48856, +20838,6363,Monopoly: World Cup France '98 Edition,1998,120,5.26850,5.48855, +20839,172506,Speed Snacks,2015,72,5.12153,5.48854, +20840,6888,The Ashes of Empire,1989,39,4.81026,5.48853,"6888, 41542" +20841,20139,Elementals,2005,44,4.88636,5.48851, +20842,149611,Greedy Wizards,2013,43,4.87209,5.48851, +20843,1500,Zocken,1998,163,5.32558,5.48849,"1500, 154008" +20844,62478,Mâamut,2009,81,5.16049,5.48848, +20845,264714,The Game of Life: Quarter-Life Crisis,2018,93,5.20272,5.48848, +20846,4185,B.S.: The Game of Being Sneaky,1986,75,5.13400,5.48848,"4185, 170384" +20846,8943,Superfection,1975,75,5.13400,5.48848, +20848,14360,Trivial Pursuit: Star Wars – Episode I,1999,44,4.88409,5.48847, +20849,5540,Höhlengrölen,2002,33,4.68182,5.48846, +20850,852,Pop Belly,1999,83,5.16747,5.48845, +20851,6486,Save the President,1980,48,4.93333,5.48845, +20852,21150,Stack Market,2004,378,5.41783,5.48843, +20853,17579,Scrambled States of America 2,2005,35,4.72571,5.48843, +20854,205226,Chocobo's Crystal Hunt,2016,322,5.40530,5.48840, +20855,9082,Go Tell the Spartans,2003,63,5.06349,5.48840, +20856,89927,Ramses Return,2011,177,5.33695,5.48838, +20857,7331,Rum Rebellion,1983,33,4.67576,5.48838, +20858,33169,The Wrong Game,2006,40,4.81775,5.48837, +20859,352802,Keine Panik!: Family Edition,2006,179,5.33799,5.48833,"6513, 169439, 352802" +20860,9554,Events,1974,39,4.79744,5.48832, +20861,168005,Alien Invasion,2014,61,5.04590,5.48830, +20862,4326,Virus & Co,2002,97,5.20969,5.48829, +20863,375,6 Billion,1999,140,5.29493,5.48827, +20864,177502,Monopoly: Marvel Avengers,2015,85,5.16976,5.48826, +20865,12601,NFL Showdown,2002,95,5.20232,5.48823, +20866,329227,Betta,2022,305,5.39915,5.48822, +20867,4282,Greed,1984,478,5.43117,5.48818, +20868,5885,Meschugge,1988,36,4.73056,5.48818, +20869,230976,Bard Saga,2017,35,4.70857,5.48817, +20870,11001,Mister Bill,2004,89,5.18146,5.48817, +20871,1534,Jump!,1998,95,5.20000,5.48813, +20872,15325,Dino-opoly,2004,33,4.65778,5.48812, +20873,19466,Trivial Pursuit: 1980s,2000,149,5.30403,5.48811, +20874,3687,Picture Pursuit,1994,47,4.90426,5.48810, +20875,8691,The Top 10 Game,2003,38,4.76579,5.48810, +20876,13935,7 Deadly Sins,2003,45,4.87778,5.48809, +20877,23541,T-Rex greift an!,2006,31,4.60194,5.48809, +20878,207670,Nectar,2017,34,4.67971,5.48809, +20879,17044,Riombo,1983,31,4.60000,5.48807, +20880,337023,Dog Man: The Hot Dog Card Game,2020,39,4.78205,5.48806, +20881,23598,Mother Sheep,2006,168,5.32417,5.48806, +20882,85562,LineUp,2010,44,4.86182,5.48806, +20883,288361,Clash of Vikings,2019,81,5.14776,5.48805, +20884,240096,Moonshiners of the Apocalypse,2019,178,5.33320,5.48805, +20885,26768,Stixx,2006,35,4.70000,5.48804, +20886,19621,Mental Floss Game,2005,85,5.16294,5.48802, +20887,327883,Matador,,37,4.74054,5.48801, +20888,7610,Fowl Play,2002,43,4.84465,5.48801, +20889,1653,Coup,1991,84,5.15833,5.48800, +20890,20224,Geld & Börse,1987,72,5.10278,5.48798, +20891,24323,Yahtzee Turbo,2006,55,4.98325,5.48797, +20892,6971,Jeopardy! Simpsons Edition,2003,72,5.10139,5.48794, +20893,2418,Rainbows,1995,72,5.10069,5.48791, +20894,13916,Mr & Mrs,2001,67,5.07164,5.48791, +20895,201243,Baby Blues,2016,361,5.41065,5.48791,"155157, 201243" +20896,290506,Finity,2019,48,4.90625,5.48790, +20897,423739,Mauseschlau & Bärenstark: Bewegungs-Mau Mau,2023,70,5.08857,5.48788,"193049, 423739" +20898,263074,Pablo Escobar: The Boardgame,2018,35,4.68857,5.48787, +20899,9805,Habana Taxi,2004,33,4.63939,5.48786, +20900,14991,Elementalis,2006,42,4.82024,5.48784, +20901,2549,Top Hats,1997,37,4.72973,5.48784, +20902,354720,Art Thief,2014,99,5.20444,5.48784, +20903,179628,Flipping Flags,2015,36,4.70833,5.48784, +20904,12599,Marriage Material,2004,92,5.18261,5.48783, +20905,21967,Trivial Pursuit for Kids,2004,53,4.95755,5.48782, +20906,18464,White Rabbit,1988,126,5.26473,5.48781, +20907,25238,The Game of Ladybirds,1975,31,4.58065,5.48781, +20908,2497,Goldrush-City,2001,39,4.76667,5.48781, +20909,4404,Gold!,1981,58,5.00172,5.48778, +20910,32679,Hero: Immortal King – The Den of Dementia,2007,132,5.27394,5.48776, +20911,57422,Climate-Poker,2009,45,4.86000,5.48775, +20912,69175,Wobble,2010,108,5.22593,5.48774, +20913,107056,Ninjutsu: Battle of the Ninjas,2011,33,4.63030,5.48773, +20914,18828,Monopoly: Singapore,2000,41,4.79756,5.48773, +20915,43043,Black Stories Junior: Green Stories,2009,71,5.08887,5.48772, +20916,66276,Awans: Zostań Marszałkiem Polski,2009,43,4.82791,5.48770, +20917,229954,Junggle,2017,51,4.93137,5.48770, +20918,2408,Digimon Digital Monsters,2000,58,4.99828,5.48769, +20919,13384,Election USA,2004,73,5.09822,5.48768, +20920,2493,The Grand Alchemist,2000,44,4.84105,5.48767, +20921,6232,Market Day,1984,60,5.01333,5.48766, +20922,1259,Pivot,1998,81,5.13580,5.48765, +20923,148273,Kto z Kim?,2013,48,4.89375,5.48764, +20924,20624,Captain Bones Gold,2005,71,5.08592,5.48764, +20925,20836,Sneeze,2005,46,4.86739,5.48763, +20926,11714,Bunte Vögel,2004,40,4.77375,5.48762, +20927,33623,Larry,2007,35,4.67143,5.48762, +20928,298545,Spoilers: The Game – Travel Edition,2020,528,5.43350,5.48761,"188601, 225313, 259554, 298545, 348535" +20929,2799,Arabian Nightmare: The Kuwait War,1990,107,5.22056,5.48761, +20930,11822,The All Canadian Trivia Board Game,1997,33,4.62121,5.48761, +20931,18562,World Championship Dodge Ball,2005,32,4.59375,5.48760, +20932,23330,Farm Friends,1995,31,4.56452,5.48760, +20933,88130,Spotcha!,2010,79,5.12532,5.48759,"88130, 167505" +20934,28301,Trivial Pursuit: Music Edition 1990-Now – Bite-size,2006,53,4.94717,5.48758, +20935,24151,Skullduggery,2006,68,5.06618,5.48758, +20936,8618,This Vs That,2003,50,4.91400,5.48757, +20937,1084,Das Gold der Maya,1997,48,4.88958,5.48756, +20938,1819,Proton,1998,57,4.98351,5.48755, +20939,3329,Hans Dampf,1989,45,4.84889,5.48754, +20940,164449,Karate Fight,2014,69,5.07087,5.48754, +20941,4433,Acrobats,1989,52,4.93462,5.48754, +20942,179701,Game of Phones,2015,119,5.24583,5.48753, +20943,319283,yanaginagi,2020,204,5.34631,5.48751,"256479, 319283" +20944,139162,Zingo! Sight Words,2012,35,4.66343,5.48750, +20945,209551,Zombergeek,2016,155,5.30116,5.48748, +20946,5759,Monopoly: Star Trek Limited Edition,2000,78,5.11718,5.48748, +20947,200783,HOP!,2016,320,5.39716,5.48747, +20948,203661,Bad People,2016,160,5.30671,5.48746, +20949,13478,StrataGem,2004,118,5.24195,5.48744, +20950,1464,Duo,1986,129,5.26279,5.48744, +20951,9426,Long Cours,1959,81,5.12963,5.48744, +20952,246704,Mixtape,2018,48,4.88333,5.48743, +20953,2990,Balanx,1993,175,5.32145,5.48741, +20954,82208,Monopoly: Deutschland,2007,34,4.63235,5.48740, +20955,178569,CatTube Famous,2015,36,4.67967,5.48739, +20956,218564,Treasure Rush,2017,33,4.60606,5.48739, +20957,24520,Sudoku Challenge,2006,32,4.57812,5.48739, +20957,12314,Newmarket,,32,4.57812,5.48739, +20959,146104,UnNatural Selection,2013,102,5.20206,5.48738, +20960,57129,Pop N' Drop Penguins,2008,40,4.75950,5.48738, +20961,99235,Dice Age Alpha Edition: Fundamental series,2012,30,4.51667,5.48738, +20962,22445,Guru,2006,58,4.98448,5.48736, +20963,9293,Turbulent Top,1996,83,5.13593,5.48736, +20964,142322,Black Stories Junior: Golden Stories,2013,40,4.75700,5.48734, +20965,10744,Corx,1999,62,5.01613,5.48734, +20966,10270,Media Mogul,2004,34,4.62647,5.48731, +20967,179876,Jailbreakers: Plan Your Escape,2015,81,5.12593,5.48731, +20968,414816,Road to 300,2024,53,4.93491,5.48731, +20969,240130,Rubik's Battle,2017,49,4.88980,5.48731, +20970,8619,Bible Pictionary,1987,41,4.77317,5.48731, +20971,12424,Daring Eagle,2003,37,4.69595,5.48731, +20972,267144,Banana Joe,2018,52,4.92308,5.48728, +20973,1191,Card Caper,1997,48,4.87604,5.48728, +20974,82449,King's Vineyard,2010,185,5.32822,5.48725, +20975,3867,The Hammer of Thor: The Game of Norse Mythology,1980,65,5.03462,5.48725, +20976,242289,Cat Chaos Card Game: Celebrity Edition,2017,121,5.24380,5.48723, +20977,14314,Deus Vult!,2005,91,5.16330,5.48722, +20978,283124,Kids Against Maturity,2018,171,5.31481,5.48722, +20979,1638,Archimedes,1981,48,4.87292,5.48722, +20980,112692,Goblins: Epic Death,2011,117,5.23496,5.48721, +20981,4904,Wicket The Ewok,1983,34,4.61765,5.48718, +20981,351494,TriATri,2021,34,4.61765,5.48718, +20983,35482,Mini Cat & Mouse,2008,33,4.59091,5.48718, +20984,175730,Surviving: One Month In,2015,60,4.99383,5.48717, +20985,182865,Engineering Ants,2015,43,4.79767,5.48715, +20986,23025,Shoot Out,1995,138,5.27225,5.48714, +20987,145764,Zero Hour: Survival Horror Card Game,2014,39,4.72564,5.48713, +20988,20525,Knock Out Whist,,93,5.16774,5.48712, +20989,24988,Lie Detector: The Crime Solving Card Game,2006,72,5.07458,5.48712, +20990,40514,Scrabble Apple,2009,81,5.11914,5.48708, +20991,169045,Star Wars Galactic Dice Game,2014,100,5.18900,5.48708, +20992,66251,Galapagos,2010,134,5.26418,5.48705, +20993,139779,Migrato,2013,122,5.24221,5.48705, +20994,11628,Trivial Pursuit: Young Players Edition Master Game,1984,232,5.35797,5.48702, +20995,325413,ONE,2021,66,5.03303,5.48701, +20996,66499,Roope-Setä Liikemiespeli,2010,37,4.67568,5.48699, +20997,39778,Big Brain Academy Cardgame,2008,35,4.62857,5.48698, +20998,39552,GoLong Football Dice Game,2008,102,5.19186,5.48695, +20999,12637,X-Men: Crisis in the Danger Room,1994,30,4.48333,5.48695, +21000,170395,BoardGameGeek: The Card Game,2015,181,5.32028,5.48692, +21001,24116,The Game of Life: Pirates of the Caribbean – Dead Man's Chest,2006,208,5.34183,5.48692, +21002,8484,Xena Warrior Princess: The Board Game,1998,55,4.93818,5.48692,"8484, 10432" +21003,297,Stadens nyckel,1998,126,5.24722,5.48691, +21004,5512,Fighting Fantasy Battle Cards,1993,61,4.99180,5.48691, +21005,156930,Pizza XXL,2014,49,4.87041,5.48690, +21006,28674,Akkon: Machtkampf der Tempelritter,2007,94,5.16489,5.48688, +21007,173387,Urban Dictionary Game,2015,33,4.56970,5.48688, +21008,6731,Donkey Kong,1981,152,5.28757,5.48687, +21009,148517,S-Evolution,2013,165,5.30303,5.48685, +21010,2840,Heuchel und Meuchel,1990,88,5.14205,5.48685, +21011,120515,Chupacabra: Survive the Night,2012,976,5.45575,5.48684, +21012,25248,Dragon,2006,49,4.86735,5.48684, +21012,5804,Marvel Trivia Game,2001,49,4.86735,5.48684, +21014,13239,Dragon Master,1987,75,5.08133,5.48682, +21015,11938,The Dukes of Hazzard Card Game,1981,36,4.64167,5.48681, +21016,296291,Escape from the Starline Express,2019,95,5.16625,5.48680, +21017,6990,Ultra Ducks,1998,40,4.72525,5.48679, +21018,32794,Disney Pictionary DVD Game,2007,39,4.70513,5.48678, +21019,30363,1001 Karawane,2007,82,5.11463,5.48677, +21020,107850,Cars 2: Race Champions,2011,35,4.61429,5.48676, +21021,21095,Mage Master,2005,51,4.88725,5.48675, +21022,5661,Trivial Pursuit: 1960's Edition,1990,69,5.04348,5.48674, +21023,797,Flucht aus Mangrovia,1989,31,4.50000,5.48674, +21024,1610,The Worlds of Boris Vallejo,1984,37,4.65946,5.48673, +21025,174055,Go Bong!,2015,130,5.25124,5.48673,"158256, 174055" +21026,4325,Conflict,1940,100,5.18050,5.48673, +21027,433990,Lâche pas la savonette Extra Large,2024,594,5.43503,5.48670,"236360, 433990" +21028,246037,Misdirection,2019,35,4.60971,5.48669, +21029,120579,Spuzzle,2010,53,4.90755,5.48669, +21030,25455,Mercante in Fiera,1755,87,5.13379,5.48669, +21031,4509,Funny Bones,1968,121,5.23223,5.48665, +21032,131982,We Are Dead: Zombie Mall Massacre,2014,87,5.13276,5.48665, +21033,14990,Troja,2004,89,5.14045,5.48664, +21034,32369,Mind Twist,2007,42,4.75238,5.48663, +21035,1629,Air War: Modern Tactical Air Combat,1977,333,5.39384,5.48661, +21036,188576,GG,2016,75,5.07467,5.48661, +21037,21529,Poker Tiles Game,2005,57,4.94386,5.48659, +21038,151367,Heads Up!: Party Game,2013,205,5.33561,5.48658, +21039,206850,Muumipeikon kalaretki,2016,39,4.69231,5.48657, +21040,6716,Star Wars: Yoda the Jedi Master,1981,30,4.45333,5.48656, +21041,7958,The 80's Game,2001,115,5.21696,5.48656, +21042,3629,Start Your Own Riot!,2002,35,4.60037,5.48655, +21043,243606,Clouds,2018,93,5.15280,5.48654, +21044,4057,1776: The Birth Of A Nation,1974,34,4.57353,5.48654, +21045,5952,Xena: Warrior Princess CCG,1998,97,5.16649,5.48654, +21046,183868,Awkward Turtle,2015,33,4.54545,5.48654, +21047,16726,The Beer Game,1999,31,4.48387,5.48653, +21048,1178,Sphinx,1999,279,5.37506,5.48652, +21049,5649,Rock Trivia,1987,52,4.88827,5.48651, +21050,108176,Over Under Game,2011,39,4.68846,5.48651, +21051,4597,Blood Wars,1995,219,5.34429,5.48650, +21052,6339,Dying Lights,2003,58,4.94828,5.48647, +21053,223778,Teenage Mutant Ninja Turtles: Showdown – Bebop & Rocksteady Madness,2017,36,4.61806,5.48645, +21054,2656,Inferno,1996,76,5.07368,5.48640, +21055,12924,Dark Crusade: The War in the East 1941-45,1984,42,4.73810,5.48638, +21056,256406,"Monopoly: Warhammer 40,000",2018,39,4.67949,5.48636, +21057,2314,Off to the Tower,1978,99,5.16768,5.48632, +21058,23291,Sioux,2006,31,4.46774,5.48631, +21059,20231,Die Pyramide des Krimsutep,2005,30,4.43333,5.48631, +21060,89620,Monopoly: Canada (Electronic Banking),2009,48,4.82500,5.48624, +21061,165189,Altaria: Clash of Dimensions,2014,49,4.83673,5.48620, +21062,86768,Abetto,2010,64,4.98828,5.48619, +21063,122598,Beer & Vikings,2012,87,5.11954,5.48617, +21064,4922,Clever Endeavor,1989,231,5.34804,5.48617, +21065,9017,Rummikub Rummy Dice Game,1995,114,5.20606,5.48616, +21066,176918,Rotten Apples,2014,67,5.00915,5.48615, +21067,8256,LEGO Constructionary Game,1999,35,4.57143,5.48612, +21068,1391,Aura Poku,1993,50,4.84540,5.48611, +21069,3883,4th Reich: Puremen vs. the Mutants for Control of the World,1985,65,4.99246,5.48609, +21070,4038,Skip-Bo Dice,1995,44,4.75500,5.48606, +21071,42572,The Game of Life: Family Guy Collector's Edition,,34,4.53824,5.48603, +21072,19578,Scene It? Harry Potter,2005,337,5.39030,5.48602, +21073,3020,Monopoly: Looney Tunes,2000,78,5.07231,5.48601, +21074,31068,Bulp!,2007,87,5.11494,5.48601, +21075,171626,Lotti Karotti: Das Hasenrennen,2015,131,5.23920,5.48599, +21076,27981,Candy Land Castle,2007,44,4.75114,5.48598, +21077,151005,Wands,2014,41,4.69580,5.48596, +21078,318561,Make Fake News Great Again,2020,32,4.47313,5.48595, +21079,94142,Number Please!,2011,32,4.47234,5.48594, +21080,420793,Dicy Cards,2024,129,5.23450,5.48594, +21081,31512,Habitat,2008,281,5.37045,5.48593, +21082,6959,Monopoly: Elvis Presley 25th Anniversary,2003,38,4.63158,5.48593, +21082,171411,Bubble Bomb,2015,38,4.63158,5.48593, +21084,211599,Fuchs-Alarm!,2016,30,4.40333,5.48592, +21085,8654,Grand Prix,1998,35,4.55714,5.48591, +21086,195161,Rooster Rush,2016,72,5.03417,5.48590, +21087,5663,WFF 'N PROOF,1962,68,5.00735,5.48589, +21088,240355,Tavern Trouble,2021,31,4.43548,5.48588, +21089,13309,Sicilianos,2004,101,5.16337,5.48588, +21090,142191,Мафия,2009,39,4.65026,5.48587, +21091,146752,Daemon Dice,2013,98,5.15306,5.48586,"4058, 146752" +21092,162915,8 the Liar,2014,41,4.69024,5.48586, +21093,27468,Book of Mormon Battles,2004,39,4.64923,5.48586, +21094,4371,Last Man Standing,1999,32,4.46563,5.48585, +21095,63898,UFO Attack,2010,31,4.43226,5.48584, +21096,94684,Spontuneous,2010,125,5.22435,5.48583, +21097,28860,Totem Land,2007,50,4.83200,5.48583, +21098,11635,Harry Potter and the Chamber of Secrets Trivia Game,2002,70,5.01857,5.48582, +21099,23970,Pokémon Master Trainer III,2005,81,5.08160,5.48581, +21100,15783,Whoville-opoly,2000,35,4.55000,5.48580, +21101,74936,War Cards,2010,95,5.14095,5.48580, +21102,29969,Monopoly: Australian Here and Now,2007,36,4.57500,5.48579, +21103,343629,Don't Be a Dik Dik,2018,48,4.80208,5.48577, +21104,10283,Monkey Madness,2001,169,5.29154,5.48577, +21105,4034,Triazzle,1998,46,4.77174,5.48576, +21106,188276,Vampyrjakten,2014,43,4.72093,5.48574, +21107,22525,Schweine-Würfeln,,34,4.51765,5.48573, +21108,120533,Redstone,2012,36,4.57131,5.48573, +21109,11854,Kameltreiber AG,1989,32,4.45625,5.48572, +21110,232944,Where in the World is Carmen Sandiego? Card Game,2017,244,5.35068,5.48572, +21111,67630,U-Build Sorry!,2010,49,4.81327,5.48572, +21112,11262,Monopoly: NFL Official,1998,81,5.07840,5.48570, +21113,24110,Teraforming,2006,35,4.54286,5.48569, +21114,19000,Marvel Trivia Game,2003,32,4.45312,5.48568, +21115,32993,Mustang,2007,66,4.98485,5.48567, +21116,928,Gerüchteküche,2000,76,5.04934,5.48563, +21117,5729,Squadron Scramble,1942,30,4.38000,5.48562, +21118,29625,59 Seconds,2007,36,4.56389,5.48562, +21119,3175,The ElfQuest Boardgame,1986,69,5.00435,5.48560, +21120,5691,Hungry Troll and the Gobbos,1989,30,4.37667,5.48558, +21121,20989,Krusade,2005,42,4.69167,5.48555, +21122,235942,Arena: Gladiator League,2018,42,4.69048,5.48552, +21123,63443,Dilbert: Escape from Cubeville,2009,54,4.86704,5.48552, +21124,21566,Scene It? Sports powered by ESPN,2005,89,5.10955,5.48550, +21125,29117,Sherpa,2007,36,4.55556,5.48549, +21126,4181,Tri-Trac,1980,46,4.75761,5.48549, +21127,43044,Black Stories Junior: Pink Stories,2009,35,4.52857,5.48548, +21128,103922,Star Wars: Angriff der Rebellen,2011,84,5.08643,5.48547, +21129,287741,The Furglars,2019,60,4.92661,5.48546, +21130,42785,Soccer Dice,,32,4.43750,5.48546, +21130,21546,The Original Sudoku Game,2005,32,4.43750,5.48546, +21132,26420,F.A.T.A.,2006,65,4.96923,5.48545,"26420, 36380" +21133,22090,Destruct 3,2005,91,5.11659,5.48545, +21134,942,Snail's Pace,2000,93,5.12419,5.48544,"942, 8191" +21135,232831,Super Mario Bros. Power Up Card Game,2017,367,5.39385,5.48543, +21136,24786,SuDoku: The Card Game,2006,136,5.23824,5.48543, +21137,5644,Anera's Arena,2001,33,4.46667,5.48543, +21138,228687,Champion of Earth,2017,35,4.52457,5.48542, +21139,2823,Finish Lines,1997,89,5.10730,5.48541, +21140,100374,Atlantida,2011,42,4.68333,5.48540, +21141,254686,Last Heroes,2018,55,4.87091,5.48535, +21142,17323,Kitty Chaos,2005,44,4.71705,5.48535, +21143,8638,Monopoly Junior: Travel Edition,1991,37,4.57120,5.48534, +21144,95893,The Impossible Machine,2011,302,5.37318,5.48532, +21145,2788,First to Reverse,1988,46,4.74826,5.48530, +21146,4150,Bakari,2002,166,5.28042,5.48526, +21147,3636,SongBurst 50's & 60's Edition,1990,117,5.19444,5.48525, +21148,3160,Holy War,1979,106,5.16415,5.48525, +21149,240712,Family Feud: After Hours Edition,2017,36,4.53898,5.48523, +21150,174337,Bahama Taxi,2012,68,4.98426,5.48523, +21151,136116,Primo,2013,41,4.65366,5.48522, +21152,4382,Go For It!,1986,174,5.28925,5.48522, +21153,42686,Pictureka! Flipper,2009,50,4.80300,5.48521, +21154,146299,Bowling for Zombies!!!,2013,52,4.82885,5.48520, +21155,20790,You've Been Sentenced!,2005,268,5.35769,5.48519, +21156,85286,Skyscrapers,2010,73,5.01644,5.48517, +21157,158947,Fantasy Dice Battles,,56,4.87411,5.48517, +21158,393485,Diggin' Doggies,,62,4.93306,5.48516,"16987, 393485" +21159,2566,Die Erbtante,1997,125,5.21120,5.48515, +21160,391,Ocean,1999,50,4.80000,5.48515, +21161,6152,Stop it!,2003,34,4.47647,5.48513, +21162,6398,Close Encounters of the Third Kind,1978,67,4.97313,5.48513, +21163,1156,Bram Stoker's Dracula: The Board Game,1992,60,4.91333,5.48513, +21164,39192,Schwarzer Kater,2008,76,5.03355,5.48512, +21165,10626,Pacific War Classics Vol 1: Tarawa & Saipan,1992,38,4.58158,5.48512, +21166,30364,Those Pesky Garden Gnomes,2012,78,5.04487,5.48511, +21167,80836,The Target,2010,94,5.11968,5.48511, +21168,130823,Titten Ärsche Sonnenschein,2013,46,4.73696,5.48508, +21169,61,Fossil,1998,687,5.43491,5.48506, +21170,164805,Logo Billionaire,2013,35,4.50000,5.48505, +21170,18919,Duel Masters: Battle of the Creatures Board Game,2004,35,4.50000,5.48505, +21172,2906,Jurassic Park III: The Spinosaurus Chase Game,2001,34,4.47059,5.48505, +21173,170927,Kortslutning,2014,52,4.82141,5.48504, +21174,300729,Make It Happen,2020,44,4.70000,5.48503, +21175,372811,BIKIDO,2022,57,4.87895,5.48502, +21176,29419,Chicken or Egg?,2007,44,4.69614,5.48495, +21177,21331,Quip It!,2005,70,4.98857,5.48494, +21178,18679,Morgan's Revenge,1996,50,4.78999,5.48494, +21179,22085,Baron,2006,115,5.18263,5.48493, +21180,10582,Who Wants to Be a Millionaire Junior,2000,47,4.74468,5.48492, +21181,2403,Go Wild!,1998,93,5.11075,5.48492, +21182,246345,Ninja Rush,2018,42,4.65476,5.48489, +21183,7611,Differix,1974,48,4.75833,5.48488, +21184,187033,Irrational Game,2016,74,5.01351,5.48488, +21185,15380,The Game of CHIPS,1999,53,4.82667,5.48488, +21186,3021,Origins,1995,73,5.00685,5.48487, +21187,58253,Appletters,2009,217,5.32401,5.48487, +21188,10090,Turmbau zu Babel,1988,59,4.89308,5.48486, +21189,9475,Backwords,1988,94,5.11309,5.48485, +21190,170674,Prison Run,2015,36,4.51389,5.48485, +21191,26093,Koala,2006,66,4.95522,5.48485, +21192,28650,The Transformers Game,1986,32,4.39062,5.48482, +21193,33197,Trybiki,2008,31,4.35484,5.48481, +21194,16990,Blue's Clues Game,1998,30,4.31667,5.48481, +21195,8210,Monopoly: The Wizard of Oz – Collector's Edition,1998,48,4.75417,5.48480, +21196,2547,Emperor's Challenge,1986,40,4.60750,5.48479, +21197,1626,Krull,1983,88,5.08523,5.48476, +21198,2941,Romance of the Three Kingdoms Card Game,1999,55,4.84545,5.48476, +21199,12243,Ziff Zoff,1996,48,4.75208,5.48475, +21200,9947,The Smurf Game,1981,41,4.62683,5.48475, +21201,6412,Humm...ble,1991,39,4.58205,5.48474, +21202,2280,Marco Polo,1983,150,5.25000,5.48474, +21203,255027,Quinque,2018,133,5.21970,5.48472, +21204,92646,The Million Pound Drop,2010,114,5.17544,5.48472, +21205,2925,The Dukes of Hazzard Game,1981,57,4.86579,5.48471, +21206,39312,Hunter: Deadly Prey,2008,65,4.94169,5.48470, +21207,6958,Monopoly: Justice League of America,1999,72,4.99444,5.48470, +21208,11968,Harry Potter Gnome Toss Card Game,2001,37,4.52946,5.48468, +21209,187787,Nerdy Inventions,2015,358,5.38587,5.48467, +21210,3849,Red Zone,1995,41,4.62195,5.48467, +21210,202726,Suicidium,2016,41,4.62195,5.48467, +21212,356,Ab die Post!,1996,217,5.32166,5.48467, +21213,31315,Brin de Jasette,2006,38,4.55263,5.48465, +21214,153116,Bravest Warriors Co-operative Dice Game,2014,168,5.27381,5.48465, +21215,26540,Napoleonic Battles: Austerlitz 1805,2007,55,4.84000,5.48463, +21216,36232,Top Ten: The Bill of Rights,2009,35,4.47143,5.48463, +21217,5662,Word Mastermind,1972,126,5.20286,5.48461, +21218,12741,Six Degrees of Kevin Bacon,1997,30,4.30000,5.48459, +21219,34938,Beware of the Dog,2006,71,4.98310,5.48457, +21220,38694,Godzilla: Kaiju World Wars,2011,198,5.30460,5.48455, +21221,21249,Recess!,2006,102,5.13431,5.48452, +21222,55706,Ren Faire,2009,112,5.16518,5.48450, +21223,199247,Hypnose,2017,37,4.51622,5.48447, +21224,38860,Switch: Secrets of the Temple,2008,36,4.48889,5.48446, +21225,133687,MimiQ,2011,113,5.16717,5.48446, +21226,76670,The Cat in the Hat I Can Do That! Card Game,2010,120,5.18567,5.48446,"32849, 76670" +21227,136554,Rock Me Archimedes,2012,328,5.37507,5.48445, +21228,305997,Gierki Małżeńskie: Kalambury,2017,356,5.38363,5.48444,"191077, 305587, 305996, 305997" +21229,12030,WWF Wrestling Challenge,1991,55,4.83091,5.48442, +21230,11530,Don't Be A Dork: The Ultimate Party Adventure Game!,1999,45,4.68444,5.48439, +21231,17755,Schnipp Schnapp,1900,50,4.76400,5.48439, +21232,24125,Gangster,1994,70,4.96786,5.48433, +21233,111299,I Will Survive,2011,124,5.19274,5.48433, +21234,85504,Don't Let the Pigeon Drive the Bus Game!,2010,47,4.71489,5.48432, +21235,2225,Bamboozle,1997,77,5.01364,5.48429, +21236,3840,RIFTS Collectible Card Game,2001,61,4.88951,5.48427, +21237,10625,Håtunaleken,1977,44,4.65909,5.48426, +21238,28137,Millionær Junior,2001,38,4.52842,5.48425,"15497, 28137" +21239,144790,Angry Dice,2014,115,5.16826,5.48425, +21240,110511,Fall of the Roman Empire,2011,39,4.55128,5.48423, +21241,9406,The Simpsons: Don't Have A Cow Dice Game,1990,36,4.47222,5.48421, +21242,28864,Sieben Auf Einen Streich,2007,290,5.35854,5.48420,"28864, 235251" +21243,18110,Mighty Magpies,2005,31,4.30645,5.48417, +21244,67948,Mahjong Solitaire,1981,108,5.14583,5.48416, +21245,10280,Doh Nutters,1991,30,4.26333,5.48412, +21246,21257,Eat It!,2007,39,4.54487,5.48412, +21247,7605,The Suicide Bomber Card Game,2003,90,5.07704,5.48412, +21248,134255,Angry Birds: Star Wars – Jenga Death Star Game,2012,93,5.08925,5.48408, +21249,224994,Zakgeldspel: Kaartspel,2010,41,4.58780,5.48407,"32740, 224994" +21250,31561,Bankruptcy: The Card Game,2007,58,4.85017,5.48406, +21251,320538,Escape Advent Calendar: The Sunken Submarine,2020,46,4.68478,5.48406, +21252,255819,Super Mario Match: The Crazy Cube Game,2018,48,4.71806,5.48406, +21253,1867,Curse of the Idol,1990,444,5.40122,5.48406, +21254,3319,Neutreeko,2001,166,5.26241,5.48405, +21255,115435,"Nicht Ja, Nicht Nein",2002,44,4.64773,5.48405, +21256,13165,Owzthat,1932,69,4.95072,5.48405, +21257,426445,Paperback Wordle,2022,140,5.22101,5.48404,"367033, 426445" +21258,33215,Finger Twister,2007,35,4.43143,5.48403, +21259,6703,The Amazing Spider Man Game with the Fantastic Four!,1967,33,4.36667,5.48402, +21260,32680,Hero: Immortal King – The Infernal Forge,2007,146,5.23144,5.48401, +21261,295924,Elf: Card Scramble,2020,36,4.45833,5.48399, +21262,6713,Monopoly: Batman & Robin,1997,38,4.51053,5.48396, +21263,33799,Fruttirelli,2007,47,4.69574,5.48394, +21264,13114,8 1/2,2003,87,5.05747,5.48392, +21265,18695,Lightning: War on Terror,2005,63,4.89484,5.48391, +21266,6052,Yorktown: The Siege Which Determined the Birth of the United States,1979,69,4.94493,5.48388, +21267,25144,Dart Wars,2006,143,5.22308,5.48384, +21268,7388,Trivia Adventure,1983,42,4.59524,5.48382, +21269,40886,Heist,2008,44,4.63432,5.48380, +21270,13951,Guess Where?,2004,97,5.09845,5.48380, +21271,4627,Ultra-Warrior,1981,38,4.50000,5.48379, +21272,14459,Monopoly: New Zealand,1960,36,4.44444,5.48378, +21273,6194,Home Alone,1991,43,4.61279,5.48376, +21274,121601,Zombie Fried,2013,33,4.34848,5.48376, +21275,282080,Posing Pandas,2018,39,4.52205,5.48374, +21276,219185,Sabrina Stachelschwein,2017,84,5.03690,5.48373,"219185, 235534" +21277,221609,Chrono Bomb,2014,37,4.46757,5.48370, +21278,38154,Electronic Pictionary Man,2008,347,5.37535,5.48370, +21279,122499,Fint It: Deluxe Edition,2002,33,4.34333,5.48369, +21280,154476,Gold Ahoy!,2014,391,5.38738,5.48368, +21281,37847,The Dangerous Book for Boys Game,2008,50,4.73020,5.48367, +21282,68315,Ludo 6 Mands-Ludo,1985,34,4.37503,5.48366, +21283,8454,Rise of the House of Sa'ud,1985,53,4.77170,5.48364, +21284,168840,Bonje in de stal,2014,79,5.00557,5.48363, +21285,175846,Deck Building: The Deck Building Game,2015,460,5.40130,5.48359, +21286,206540,Banana Bandits,2016,266,5.34115,5.48358, +21287,1096,Four Real,1999,56,4.80625,5.48356, +21288,3574,Tank! Armored Combat in the 20th Century,1974,107,5.12897,5.48355, +21289,89956,Ninjago: The Board Game,2011,176,5.26767,5.48353, +21290,8204,Star Wars: Death Star Assault Game,1995,77,4.98948,5.48351, +21291,496,Dilemma,2000,34,4.36324,5.48349, +21292,112134,4-Way Countdown!,2004,61,4.85743,5.48345,"14156, 112134" +21293,13350,Jeu du Nain Jaune,1760,123,5.17293,5.48344, +21294,71402,CUPONK,2010,108,5.12951,5.48343, +21295,3524,Geeks: The Convention,2001,46,4.65217,5.48342, +21296,4770,Star Trek: The Next Generation Collectible Dice Game,1996,129,5.18667,5.48341, +21297,2352,Treasure Quest,1996,78,4.99231,5.48339, +21298,8915,Jenga Xtreme,2003,222,5.31069,5.48338, +21299,4477,Station Manager,2002,121,5.16612,5.48336, +21300,367,Overthrone,1999,284,5.34785,5.48332, +21301,184752,J'ai mon voyage,2015,36,4.41111,5.48327,"184752, 271039" +21302,14275,Black Molly,2004,39,4.49231,5.48325, +21303,25158,Pingo Balance,2006,91,5.05824,5.48323, +21304,9912,Stacrobats,1970,216,5.30417,5.48323, +21305,135648,Tales & Games: Baba Yaga,2013,460,5.39910,5.48322, +21306,1777,Dark World: Village of Fear,1993,949,5.44230,5.48318,"31, 1777, 1778" +21307,197068,Trick-Taking: The Trick-Taking Game,2016,93,5.06570,5.48317, +21308,4157,Hail to the Chief,1987,37,4.43243,5.48315, +21309,294321,Baker Street: L'héritage de Sherlock Holmes,2019,31,4.22903,5.48315, +21310,232351,Master of Orion: Conquest,2017,61,4.84426,5.48311, +21311,121751,Colossal Cave: The Board Game,2013,93,5.06398,5.48310, +21312,16380,Mighty Morphin Power Rangers Game,1994,48,4.67083,5.48310, +21313,7249,The Legend of Zelda,1988,70,4.92571,5.48309, +21314,2128,Warlords,1997,57,4.79825,5.48308, +21315,4070,Tri-Virsity,1988,56,4.78571,5.48307, +21316,58339,Amos Daragon,2008,54,4.75926,5.48306, +21317,186295,Pick the Lock,2016,93,5.06237,5.48304, +21318,2771,Maginor,2001,470,5.39949,5.48299,"1255, 2771" +21319,3719,British Square,1978,43,4.56977,5.48298, +21320,1199,Hocus Focus,1998,70,4.92186,5.48297, +21321,1488,Trailer Park Gods,1998,54,4.75556,5.48297, +21322,124160,The Strategy Game,,48,4.66458,5.48297, +21322,2783,Thieves in the Wood,1976,48,4.66458,5.48297, +21324,8450,Hector and Achilles,2003,522,5.40769,5.48297, +21325,14000,Dog-opoly,,45,4.60978,5.48297, +21326,20182,Maxi Yatzy,,199,5.28538,5.48296, +21327,32828,The Really Nasty Golf Game,2007,50,4.69500,5.48292, +21328,217007,La Criatura,2016,38,4.44474,5.48290, +21329,295394,Juduku,2018,139,5.19902,5.48289, +21330,116975,Diam's,2011,95,5.06632,5.48285, +21331,3194,Dots,1998,135,5.18963,5.48284, +21332,85995,Dinomeal,2010,37,4.41216,5.48283, +21333,11683,Chicken of the Sea,1994,50,4.69000,5.48282, +21334,210179,Yo Fui a EGB: El Juego Oficial,2015,70,4.91629,5.48281, +21335,370756,Diablo,2022,32,4.24250,5.48279, +21336,9320,Bottles and Bins,1982,44,4.57955,5.48277, +21337,19027,Redneck Life,2003,591,5.41536,5.48274, +21338,6851,The Simpsons Mystery of Life,1990,38,4.43421,5.48273, +21339,6522,TV Guide: The Game,1997,31,4.19677,5.48272, +21340,3723,Peanut Butter & Jelly Card Game,1971,76,4.95789,5.48271, +21341,3830,Doctor Who: Battle for the Universe,1989,49,4.66837,5.48270, +21342,216906,Across the Iron Curtain,2017,34,4.30882,5.48270, +21342,51512,Super WHY ABC Letter Game,2009,34,4.30882,5.48270, +21344,318409,"Million Dollars, But... The Game 80's Expansion Pack",2019,336,5.36384,5.48269,"200610, 203019, 246329, 306415, 306416, 306417, 306418, 318409, 417201, 417202" +21345,1732,Bei Nacht und Nebel,1990,34,4.30627,5.48266, +21346,120268,Monsters & Maidens,2014,169,5.24595,5.48266, +21347,28308,Martinis & Men,2007,79,4.97532,5.48263, +21348,146596,Logo Party,2013,134,5.18299,5.48260, +21349,9533,Super Mario Bros.,1988,34,4.30147,5.48259, +21350,207917,Scandinavia and the World: A Heap of Trouble,2018,62,4.83387,5.48256, +21351,183778,Star Patrol: Carrier Commander,2015,95,5.05895,5.48255, +21352,145401,Crisis: Tokyo,2013,109,5.11330,5.48255, +21353,2446,Chopper Strike,1976,233,5.30970,5.48254, +21354,197909,Shark Island,2017,175,5.25200,5.48251, +21355,20005,Sushi Express,2005,190,5.27000,5.48250, +21356,785,Dog Eat Dog,1999,134,5.18097,5.48249, +21357,260933,Escape Now!,2018,192,5.27203,5.48248,"260933, 353921" +21358,140143,Polska w budowie,2013,32,4.21875,5.48247, +21359,1409,Spawn: The Game,1995,38,4.41702,5.48245, +21360,17159,Survivor: The Game,2003,40,4.47000,5.48244, +21361,16052,Merlin,1978,105,5.09619,5.48242, +21362,3910,Harry Potter: Diagon Alley Board Game,2001,251,5.32080,5.48241, +21363,400854,Monopoly: Fortnite Collector's Edition,2021,251,5.32071,5.48241,"260942, 400854" +21364,348250,Monopoly: Animal Crossing – New Horizons,2021,220,5.29783,5.48240, +21365,32157,The T-Shirt Game,2007,119,5.14076,5.48238, +21366,21124,Monopoly: Disney Theme Park,2002,57,4.76754,5.48234, +21367,6685,Arbora,1984,52,4.69712,5.48230,"6685, 13292" +21368,866,"Lie, Cheat & Steal",1971,191,5.26848,5.48230, +21369,32361,Lis Pustyni,2007,42,4.50952,5.48229, +21370,5366,Batman Returns 3-D Board Game,1992,35,4.31429,5.48228, +21371,31762,Moce Albionu,1993,34,4.27941,5.48227, +21372,3652,NFL Franchise,1982,31,4.16226,5.48226, +21373,8254,Balance,1990,71,4.90563,5.48225, +21374,286329,Friends: The One With the Ball,2019,36,4.34463,5.48225, +21375,1542,Calamity!,1983,112,5.11607,5.48222,"1542, 1946" +21376,15454,Riket,2004,30,4.11333,5.48220, +21377,189203,Le Dernier Peuple,2015,38,4.40132,5.48219, +21378,8852,Gem Quest,2003,52,4.69231,5.48219, +21379,3835,Turbo,1983,70,4.89514,5.48219, +21380,150018,Alternatywy 4,2013,62,4.81882,5.48217, +21381,141896,Give It to the King!,2013,82,4.98049,5.48217, +21382,35877,Piston Cup,2008,64,4.83906,5.48216, +21383,188930,Tue Fourre Marie... et pire encore!,2015,43,4.52388,5.48214, +21384,8972,Beat the Experts,2002,41,4.47561,5.48211, +21385,38577,Monopoly: Clone Wars,2008,112,5.11321,5.48209, +21386,98350,Kamakura,2011,32,4.19062,5.48208, +21387,4933,The Tick: Hip Deep in Evil!,1996,65,4.84615,5.48208, +21388,5181,Operation Cannibal,1996,89,5.01742,5.48207, +21389,24141,Monopoly: Family Guy,2006,100,5.06800,5.48205, +21390,236694,Aku Ankka matkapeli,,38,4.38947,5.48200,"39636, 236694" +21391,116468,La Boîte à énigmes,2008,41,4.46829,5.48198, +21392,136494,Jake and the Never Land Pirates: Who Shook Hook?,2012,63,4.82222,5.48198, +21393,11037,El Capitán Alatriste,2002,131,5.16458,5.48198, +21394,10808,BSZZZZ!,2003,44,4.53689,5.48197, +21395,13260,Clown,1975,102,5.07353,5.48194, +21396,280149,Mastabas,2019,65,4.84077,5.48193, +21397,32124,My Little Pony Hide & Seek,2005,72,4.90194,5.48190, +21398,11147,Ea$y Money,1988,178,5.24663,5.48185, +21399,6010,Phantom Rallye,2003,109,5.09725,5.48183, +21400,14989,World of Wines,2003,31,4.12903,5.48182, +21401,171369,Schlafmütze,2015,42,4.48333,5.48182, +21402,6857,LifeStories,1989,30,4.08333,5.48181, +21403,9607,Enigma,1988,50,4.64200,5.48180, +21404,95705,Urknall: The Big Bang,2011,52,4.67404,5.48179, +21405,5468,Snap: The Interlocking Dragon-Making Game,2002,249,5.31305,5.48179, +21406,3640,Spy Ring,1965,177,5.24435,5.48178, +21407,368733,Roll Into Town,2022,156,5.21212,5.48176, +21408,30135,Geni Junior,1988,50,4.64000,5.48175,"15490, 30135" +21409,104287,Batanimo,,43,4.50233,5.48174, +21410,1249,Safari Jack,1998,270,5.32556,5.48172, +21411,5051,"La Grande Armee: Campaigns of Napoleon, 1805-1815",1987,88,5.00227,5.48171, +21412,22931,Brillance,2006,55,4.71455,5.48171, +21413,20924,The Guinness Game of Records,1988,42,4.47619,5.48169, +21414,3111,Daumen Drauf,1996,30,4.07333,5.48168, +21415,409,Dschungel,1999,68,4.86029,5.48168, +21416,18696,Racer Knights of Falconus,2005,81,4.96000,5.48168, +21417,12616,Zingo!,2002,595,5.41062,5.48167, +21418,139769,Robotech RPG Tactics,2014,143,5.18600,5.48167, +21419,16860,Kaboodl,2004,99,5.05455,5.48167, +21420,239937,Fake News,2017,36,4.30556,5.48165, +21421,136058,Dice Devils,2013,176,5.24097,5.48164, +21422,6712,Monopoly: Coca-Cola Collector's Edition,1996,55,4.71093,5.48162, +21423,185453,Hoppin' Frogs,,60,4.77500,5.48162,"19456, 185453" +21424,6011,Disneyland Monorail Game,1960,32,4.15313,5.48157, +21425,1925,Krystal,1989,50,4.63000,5.48154, +21426,10424,Crazy Crocodiles,1988,48,4.59375,5.48153, +21427,1934,Up & Down,1996,56,4.71964,5.48150, +21428,2782,Vantage,1985,44,4.51136,5.48150, +21429,2696,Palenque,1998,30,4.05833,5.48149, +21430,103573,Scurvy Dogs: Pirates and Privateers,2012,43,4.48837,5.48149, +21431,40767,Feste Druff,2005,45,4.53111,5.48146, +21432,948,Dao,1999,226,5.29204,5.48144, +21433,21990,Lightning Reaction Extreme,2006,312,5.34420,5.48144,"8813, 10575, 21990, 36267, 118257, 298419" +21434,159084,Black Market Warehouse,2014,102,5.06118,5.48142, +21435,8570,Challenge Football,1972,33,4.18182,5.48141, +21436,4442,Oraklos,1997,153,5.20092,5.48140, +21437,22265,Don Peperoni,2006,69,4.85942,5.48140, +21438,20028,"The Chronicles of Narnia The Lion, The Witch and The Wardrobe Game",2005,60,4.76383,5.48134, +21439,217545,Dice'n Score! Farm,2016,44,4.50227,5.48133,"88881, 217545" +21440,13886,The Princess and the Pea,2004,200,5.26580,5.48131, +21441,38197,Relic Raiders: Haunted Ruins,2008,64,4.80781,5.48131, +21442,4456,1862,1990,58,4.73793,5.48131, +21443,37224,Huída del Imperio Cobra II,1983,47,4.56383,5.48131, +21444,202375,Race,2016,64,4.80625,5.48127, +21445,38795,Rhino Rampage,2008,56,4.70893,5.48125, +21446,6364,Monopoly: Hong Kong,1997,56,4.70714,5.48121, +21447,194575,Loża Szyderców,2015,85,4.97059,5.48119, +21448,7556,Panzer Battles: Tactical Armored Warfare in World War II,1979,130,5.14731,5.48118, +21449,56246,Goblins,2009,122,5.12541,5.48118, +21450,11519,Bear Buddies,1997,30,4.03333,5.48117, +21451,231087,Ducklings,2018,43,4.46977,5.48115, +21452,11954,Paladin,2004,62,4.77677,5.48107, +21453,34933,Monopoly Town,2007,43,4.46512,5.48106, +21454,27340,Dogopoly,1977,37,4.30000,5.48106, +21455,168687,Pete the Cat Groovy Buttons Game,2014,42,4.44048,5.48105, +21456,24053,Section X,2006,89,4.98989,5.48105, +21457,339466,Disney Sidekicks,2021,300,5.33502,5.48101, +21458,24901,Bunny Hop,2005,43,4.46047,5.48098, +21459,42448,We Didn't Playtest This Either,2009,4750,5.47173,5.48097,"31016, 42448, 123129, 147445, 157723, 159500, 306714, 346821, 433704" +21460,190772,Ta bouche,2015,205,5.26664,5.48095,"123991, 159890, 190772, 191882, 245361" +21461,1290,Shifti,1977,59,4.73585,5.48094, +21462,18657,Test Match,1955,43,4.45735,5.48092, +21463,10414,Poppa's Pizza Topple,1999,59,4.73475,5.48092, +21464,5354,Colorama,1996,129,5.13953,5.48091, +21465,150993,Cache Hunt,2013,38,4.32105,5.48089,"150993, 198450" +21466,252555,Bad Maps,2019,118,5.10678,5.48086, +21467,147581,The Rats in the Walls,2013,54,4.66296,5.48085, +21468,267578,Bakugan Battle Planet: Battle Brawlers,2019,144,5.17396,5.48084,"34390, 267578" +21469,36634,Rice Wars,2008,211,5.27128,5.48083, +21470,9705,More Dirty Minds,1991,49,4.57837,5.48083, +21471,2037,Triology,1994,58,4.71810,5.48082, +21472,32678,Hero: Immortal King – The Lair of the Lich,2007,195,5.25385,5.48081, +21473,351392,Dribble,2016,62,4.76694,5.48081,"5675, 351392" +21474,7575,Snowball Fight,2002,89,4.98315,5.48080, +21475,4559,Ginny-O,1978,53,4.64151,5.48072, +21476,98189,Casse-toi Pov'con!,2011,103,5.04854,5.48070, +21477,7547,Go Bananas!,2000,75,4.88667,5.48069, +21478,14539,Drakskatten,1983,48,4.55208,5.48068, +21479,135677,Foodie Fight Rematch,2011,82,4.93695,5.48067,"32702, 135677" +21480,88872,Rising Kings,2010,42,4.41905,5.48067, +21481,1482,Ubi,1986,346,5.35168,5.48065, +21482,205876,Azuchi Castle,2016,68,4.82279,5.48061, +21483,238761,Get a Grip: The No Thumbs Challenge Game,2017,39,4.33333,5.48060, +21484,22501,See Sek,,49,4.56735,5.48060, +21485,316927,Sweet Existence: A Strange Planet Card Game,2020,164,5.20732,5.48057, +21486,16620,Domination,2005,97,5.01856,5.48057, +21487,180459,Wikipedia: The Game About Everything,2015,233,5.28816,5.48057, +21488,125059,Cowtown,2012,60,4.73333,5.48056, +21489,13132,Monopoly Junior: Dig 'n Dinos,2001,37,4.26757,5.48054, +21490,1863,Tatort Titanic,1987,33,4.11818,5.48051, +21491,400859,The way to Juliet,,45,4.48000,5.48048, +21492,304820,Roll 'n' One,,43,4.43023,5.48042,"16027, 22536, 34752, 95073, 304820" +21493,94486,Mermaid Island,2011,103,5.04175,5.48041, +21494,40350,XLR8,2008,35,4.18914,5.48041, +21495,256861,"Yeti, Set, Go!",2018,43,4.42884,5.48040, +21496,26163,The Christmas Game,2006,38,4.28947,5.48038, +21497,207274,Great Shakespearean Deaths: Card Game,2016,33,4.10667,5.48035, +21498,5717,Girl Talk,1988,34,4.14706,5.48035, +21499,42879,Überholen ohne Einzuholen,1995,33,4.10606,5.48034, +21500,28472,Scooby-Doo! Haunted House 3D Board Game,2007,108,5.05991,5.48032, +21501,1656,Smokers Wild,1978,84,4.93929,5.48030, +21502,92094,Pointless: The Board Game,2013,197,5.24842,5.48021, +21503,12494,Goodnight Moon,1997,71,4.83704,5.48020, +21504,1011,Dream Team,1997,80,4.90750,5.48014, +21505,9603,The Emergency! Game,1973,49,4.54380,5.48011, +21506,355414,Brain Quest: After School Sports,1996,49,4.54306,5.48010,"11167, 355414, 355415" +21507,33673,Petrodólar,1984,304,5.32895,5.48008,"1958, 33673" +21508,168141,Epic Dice Tower Defense,2021,39,4.30128,5.48007, +21509,4117,Ruffhouse,1980,62,4.73732,5.48004, +21510,6493,Impasse,2003,48,4.51981,5.48002, +21511,155208,Raiders of the Lost Tomb,2014,81,4.91049,5.48000, +21512,231345,Deer Lord!: Bling Edition,2017,233,5.28185,5.47999,"183831, 231345" +21513,2515,Pirate Island,1984,63,4.74683,5.47998, +21514,6436,Echelons of Fury,1995,54,4.62407,5.47996, +21515,15046,Monopoly: Star Wars Saga Edition,2005,436,5.37393,5.47996, +21516,62861,Drakar och Demoner: Brädspelet,2009,35,4.15714,5.47993, +21517,88957,Avatar: The Board Game,2010,56,4.65179,5.47990, +21518,170054,Accentuate,2014,70,4.81714,5.47989, +21519,12876,Cranium Balloon Lagoon,2004,159,5.18679,5.47980, +21520,2156,Arch Rival,1992,290,5.31900,5.47979, +21521,133334,Where's My Water?,2012,38,4.25000,5.47974, +21522,3068,Komme Gleich,1996,36,4.18056,5.47973, +21523,117910,Schotten Rennen,2012,64,4.74859,5.47972, +21524,6868,Hear Me Out,2002,110,5.05409,5.47970, +21525,46743,Pirate Code,2009,153,5.17301,5.47966, +21526,15855,Resan,,49,4.52041,5.47962, +21527,34377,King Toad,2008,62,4.72097,5.47961, +21528,6792,Star Wars: Hoth Ice Planet Adventure Game,1980,57,4.65404,5.47960, +21529,1648,Kan-U-Go,1934,62,4.71935,5.47957, +21530,15863,Impact,2003,47,4.47660,5.47956, +21531,25950,Masters of the Universe,1984,62,4.71774,5.47953, +21532,5690,Oi! Dat's My Leg!,1989,49,4.51531,5.47952, +21533,100670,Défis Nature,2009,92,4.96587,5.47951, +21534,1707,Spices of the World,1988,79,4.88059,5.47949, +21535,12581,Barnyard Bingo,1994,32,3.99875,5.47946, +21536,166196,Quarter Horse Racing Game,2014,36,4.16250,5.47945, +21537,1871,Dark Side,2001,52,4.56769,5.47945, +21538,103327,Água: The Water Cycle,2011,54,4.60093,5.47943, +21539,1853,Hägar ruft zum Beutefest,1989,73,4.82877,5.47941, +21540,272821,Koninkrijk,2016,47,4.46809,5.47939, +21541,4345,Beer: The Card Game,1999,44,4.39773,5.47937, +21542,8530,Stampede!,2003,52,4.56346,5.47935, +21543,38353,Monopol: Sverige,2008,38,4.22368,5.47932, +21544,179718,Black-Handed Henry's Potion Party,2015,75,4.84267,5.47930, +21545,244837,You Are a Liar (or maybe not),2017,30,3.88667,5.47929, +21546,1497,Dino Hunt,1996,341,5.33902,5.47927, +21547,286126,Monopoly: Socialism,2019,157,5.17452,5.47926, +21548,23870,"Strange Defeat: The Fall of France, 1940",2006,106,5.02689,5.47921, +21549,80503,Dexter: The Board Game,2010,85,4.91473,5.47920, +21550,2435,Reminiscing: The Game For People Over Thirty,1989,66,4.75000,5.47914, +21551,263189,Harry Potter: A Year at Hogwarts,2018,358,5.34469,5.47914, +21552,228501,60 Seconds to Save the World,2017,80,4.87725,5.47913, +21553,349129,Snowhere,2021,93,4.96129,5.47912, +21554,28104,Sealife DVD Board Game,2007,72,4.80972,5.47911,"25754, 28104" +21555,16226,Gone Fishing!,2005,345,5.33929,5.47909, +21556,67629,U-Build Connect 4,2010,36,4.13889,5.47908, +21557,13944,Escape The Mad Mummy,2004,50,4.51400,5.47908, +21558,6114,Goosebumps: Shrieks and Spiders Game,1995,35,4.10000,5.47908, +21559,76362,Celtic Challenge,2010,40,4.27125,5.47906, +21560,19834,Bus Stop,1996,82,4.88927,5.47904, +21561,105123,Bananas,2011,59,4.65932,5.47903, +21562,7746,Mountaineering,1973,50,4.51160,5.47903, +21563,13412,What's in Ned's Head?,2003,76,4.84211,5.47902, +21564,21652,Silence in Class!,1988,36,4.13194,5.47898, +21565,50444,Pop to the Shops,,42,4.32365,5.47897, +21566,272350,Beagle or Bagel?,2019,60,4.66750,5.47890, +21567,27296,The Game of Life: Fame Edition,2002,66,4.74091,5.47889, +21568,24473,Megastar,2006,520,5.38491,5.47883, +21569,36228,Roman Taxi,2009,46,4.41522,5.47879, +21570,179266,Flip the Bird,2015,44,4.36318,5.47872, +21571,152615,Zombie-opoly,2012,41,4.28049,5.47870, +21572,407018,ソクラテスラ 拡張版 (Sokuratesura shi no presentation),2019,38,4.18421,5.47868,"278285, 407018" +21573,6375,Made for Trade,1984,87,4.91322,5.47867, +21574,10094,Weakest Link,2001,61,4.67213,5.47867, +21575,24105,The Da Vinci Code Game,2006,75,4.82267,5.47867, +21576,33967,Take the Train,2007,178,5.20217,5.47866, +21577,7924,Harvest Time,1980,75,4.82227,5.47866, +21578,42259,"Admiral Ackbar ""It's a TRAP!"" GAME",2009,37,4.14636,5.47863, +21579,4064,Scrabble Up,1996,53,4.54528,5.47856, +21580,3352,Gouda! Gouda! Cat Attack,2002,222,5.25541,5.47853, +21581,69796,The Price Is Right Game: DVD Edition,2005,38,4.17474,5.47852, +21582,849,Golf Masters,2000,75,4.81733,5.47850, +21583,5234,Sniggle!,1978,83,4.88072,5.47849, +21584,140729,Say What You Meme,2013,38,4.17158,5.47847, +21585,16003,Fraud Squad,2002,36,4.09722,5.47844, +21586,23243,Pirate's Cove: Search for the Treasure Game,2005,48,4.44167,5.47843, +21587,159621,Spill and Spell,2003,154,5.15464,5.47839,"2331, 159621" +21588,3502,Star of the Guardians,1995,51,4.50024,5.47837, +21589,101425,Cucumber,1970,76,4.82105,5.47834, +21590,41321,I Spy Memory Game: Travel Edition,2002,75,4.81187,5.47833,"10518, 41321" +21591,6684,Transformers Adventure Game,1984,44,4.34091,5.47831, +21592,347604,Exit Adventskalender pro: Das verrückte Zeitreise-Museum,2021,31,3.86387,5.47830, +21593,1443,Alpha Blitz,1998,88,4.90909,5.47829, +21594,145943,A Duel Betwixt Us,2014,204,5.23270,5.47828, +21595,8211,Great States!,2000,36,4.08611,5.47827, +21596,51383,Draw out Junior: Travel,2009,153,5.14967,5.47821,"15020, 51383, 51384" +21597,104527,The Game of Life Adventure Edition,2011,131,5.09389,5.47818, +21598,27675,Monster Maker,2007,41,4.24634,5.47811, +21599,22839,Trivial Pursuit: DVD,2005,114,5.03509,5.47811, +21600,3140,Sixmix,1999,82,4.86195,5.47810, +21601,4889,Dizzy Dizzy Dinosaur,1987,143,5.12476,5.47810, +21602,3430,The Three Stooges Card Game,1998,67,4.72313,5.47807, +21603,3944,The Honeymooners Game,1986,40,4.21250,5.47806, +21604,41017,Tuk-Tuk Taxi,2009,96,4.95073,5.47805, +21605,4162,Horse Show,1997,192,5.21416,5.47804, +21606,8963,Robot Wars: The Game,2002,38,4.14474,5.47804, +21607,8097,Ten Commandments Bible Game,1960,60,4.63333,5.47803, +21608,43890,Jenga Max,2009,107,5.00374,5.47800, +21609,254419,Weird Things Humans Search For,2018,213,5.23975,5.47800, +21610,3447,The Game of Maze,1990,34,3.98529,5.47800, +21611,8308,3D Labyrinth,2002,164,5.16829,5.47798, +21612,246015,Hearing Things,2017,111,5.01931,5.47793, +21613,2496,Saloon,2001,115,5.03478,5.47791, +21614,46746,Monster 4,2009,158,5.15538,5.47791, +21615,29142,I Spy Eagle Eye,2006,103,4.98265,5.47789, +21616,5420,Assassin: The Final Game,1980,97,4.95155,5.47787, +21617,261157,5 Second Rule: South African Edition,2018,3056,5.46114,5.47786,"86073, 218722, 243093, 261157, 261307, 294455, 352290, 353892, 358288, 369556, 425033, 432567" +21618,283865,Politisk Ukorrekt Billeder,2018,105,4.99048,5.47782,"189520, 283865" +21619,69205,High Five!,2010,68,4.72500,5.47781, +21620,11484,Dindons & Dragons,2003,37,4.09219,5.47778, +21621,1603,Cortez,2001,56,4.56071,5.47774, +21622,12237,Oil: The Great Adventure,1960,253,5.27470,5.47773, +21623,23684,Crystal Code,2006,68,4.72206,5.47772, +21624,5031,Dare!,1988,42,4.25238,5.47769, +21625,276528,Brexit: The Real Deal,2019,41,4.21951,5.47764, +21626,15743,Agentenjagd,2001,35,4.00114,5.47760, +21627,14511,SharkPark,2005,95,4.93305,5.47758, +21628,20589,Trivial Pursuit: DVD – Pop Culture 2,2005,174,5.18017,5.47757, +21629,39320,Potions,2008,54,4.51889,5.47756, +21630,69275,Yakari Wettlaufspiel,2001,47,4.37447,5.47753, +21631,76444,Sturgeon,2010,51,4.46078,5.47752, +21632,2793,The Hamsters,1986,58,4.58103,5.47746, +21633,151847,That's What She Said Game,2016,244,5.26434,5.47746, +21634,4242,Foxbat & Phantom: Tactical Aerial Combat in the 1970's,1973,133,5.08647,5.47746, +21635,1514,Yali,1996,197,5.21323,5.47744, +21636,5040,Operation Crusader: The 8th Army's Forgotten Victory,1991,46,4.34565,5.47743, +21637,4373,Operation Felix,1992,77,4.80130,5.47743, +21638,6800,"Win, Lose or Draw",1987,265,5.28068,5.47740, +21639,128909,Norge Rundt,1992,53,4.49245,5.47737,"14951, 128909" +21640,183472,Across Africa,2015,44,4.29091,5.47737, +21641,116938,Pictureka: Disney Edition,2009,1403,5.44014,5.47736,"22889, 116938, 403653" +21642,7821,Creepy Freaks,2003,121,5.04545,5.47735, +21643,120906,Velociraptor! Cannibalism!,2013,179,5.18436,5.47727, +21644,7457,Monopoly: Canadian Edition,1982,91,4.90055,5.47725, +21645,121011,Gurami: das Spiel,2011,47,4.36000,5.47724, +21646,2764,Ein Arsch kommt selten allein,2001,78,4.80385,5.47723, +21647,18104,Banana Express,2005,46,4.33261,5.47718, +21648,3266,Alien Autopsy,1997,45,4.30667,5.47717, +21649,2144,Ebola Monkey Hunt,1998,130,5.07192,5.47716, +21650,189201,Dark Agent,2015,57,4.55263,5.47716, +21651,410396,...I should have known that! Yes or No,2022,146,5.11618,5.47715,"137167, 410396" +21652,158198,MiFuChi,2013,83,4.84175,5.47714, +21653,8636,The Grape Escape,1992,290,5.29484,5.47709,"8636, 91977" +21654,237329,Stranger Things: Eggo Card Game,2017,114,5.01339,5.47708, +21655,170096,de Bono: Two Smart Games,1996,141,5.10213,5.47708,"6474, 6475, 170096, 201440" +21656,8621,Bible TriBond,2000,38,4.08553,5.47708, +21657,40974,Superpoly,1979,106,4.97817,5.47707, +21658,36895,The Office Trivia Game,2008,126,5.05714,5.47706, +21659,12649,NFL-opoly,1994,37,4.04595,5.47705, +21660,2816,Crossfire,1971,559,5.38217,5.47702, +21661,334,Advance to Boardwalk,1985,828,5.41298,5.47701, +21662,6981,Monopoly Junior: Toy Story,2001,38,4.08158,5.47701, +21663,3686,Yu-Gi-Oh Millennium Game,2002,61,4.60738,5.47700, +21664,251642,CIA: Collect It All,2018,84,4.84488,5.47698, +21665,3503,Star Quest,1995,42,4.21198,5.47697, +21666,2197,Kensington,1979,469,5.36365,5.47696, +21667,19633,Gefangen in der Geisterbahn,2005,36,4.00000,5.47695, +21668,382194,The Great American Fox Hunt,2023,42,4.20952,5.47692, +21669,41189,Animal Upon Animal: The Card Game,2008,52,4.45269,5.47691, +21670,14131,Casanova,2004,74,4.75676,5.47690, +21671,23631,Conquest of Pangea,2006,305,5.30216,5.47690, +21672,36231,Rorschach,2008,175,5.17164,5.47685, +21673,151468,Downton Abbey: The Board Game,2013,64,4.64062,5.47680, +21674,119316,United Square,2011,158,5.13722,5.47674, +21675,359735,"Manöverspiel Pionierstafette ""Immer bereit""",1976,1504,5.44102,5.47672,"2322, 2426, 359735" +21676,88586,Doctor Who: Battle to Save the Universe,2010,32,3.79688,5.47670, +21677,319145,WW84: Wonder Woman Card Game,2021,44,4.25455,5.47669, +21678,5553,Parity,2002,31,3.74194,5.47669, +21679,10123,Movie Mania for Kids,1995,64,4.63561,5.47667,"899, 10123" +21680,8567,Cargo,2004,127,5.05276,5.47666, +21681,154901,The Fittest,2015,86,4.84884,5.47660, +21682,164339,3 to 4 Headed Monster,2016,56,4.51036,5.47654, +21683,26861,"You Gotta Be Kidding! The Crazy Game of ""Would You Rather...?""",2004,54,4.47407,5.47653, +21684,25188,Vorsicht Lehrer!,1993,35,3.92857,5.47651, +21685,113490,Yahtzee Flash,2011,36,3.96944,5.47648, +21686,17457,He & She,2008,69,4.68986,5.47647, +21687,17709,Last Word,2005,858,5.41316,5.47646, +21688,12634,Hispaniola,2004,218,5.22706,5.47643, +21689,359061,Rive,2010,38,4.04211,5.47637, +21690,313463,OK Boomer!,2020,69,4.68551,5.47634, +21691,9416,Westminster: The Election Game,1983,61,4.58115,5.47633, +21692,31794,Robin Hood,1994,80,4.79375,5.47633, +21693,194998,Mad Love,2018,132,5.06235,5.47631,"194998, 315058" +21694,76319,Unusual Suspects,2009,77,4.76623,5.47630, +21695,60697,Atlantic Triangle,2010,92,4.88152,5.47628, +21696,25968,Banzai,2006,87,4.84713,5.47627, +21697,15175,Spinning Wishes,2002,36,3.95556,5.47627, +21698,137360,Jolly Octopus,2012,65,4.63385,5.47626,"98371, 137360" +21699,4696,Outwit,1978,139,5.08216,5.47625, +21700,107733,The Big Bang Theory: The Party Game,2012,216,5.22244,5.47624, +21701,42004,Arthurian Ghost Knights,2007,494,5.36500,5.47619,"20436, 41997, 41998, 42002, 42003, 42004, 42107" +21702,118340,The Hunger Games: Jabberjay Card Game,2012,76,4.75329,5.47618, +21703,3028,By Jove,1983,132,5.05985,5.47618, +21704,1503,Mid-East Peace,1990,125,5.03584,5.47614, +21705,5203,Annihilator / OneWorld,1980,83,4.81205,5.47611, +21706,2100,Myth Fortunes,1990,102,4.93284,5.47598, +21707,6798,Concentration,1958,212,5.21436,5.47596, +21708,30379,Change Horses,2008,460,5.35532,5.47595, +21709,257074,Pechvogel,2018,235,5.23959,5.47592, +21710,10912,Jumpin' Java,2003,86,4.82674,5.47580, +21711,315534,Goal 10,2019,63,4.58778,5.47575, +21712,34395,Planet Earth DVD Game,2007,61,4.55738,5.47572, +21713,21941,Marvel Heroes Battle Dice,2006,72,4.69722,5.47570, +21714,171783,Color Rouli,2011,121,5.01105,5.47563,"30640, 171783" +21715,4213,Mao,,689,5.39401,5.47562,"4213, 30393, 145621, 151610" +21716,8842,Eselspiel,,68,4.64824,5.47561, +21717,18893,Madagascar,2005,259,5.25826,5.47560,"2206, 18893" +21718,30947,Splice Pirateology Card Game,2007,47,4.27660,5.47557, +21719,164,"Before I Kill You, Mister Spy...",1996,1256,5.43048,5.47549, +21720,37849,Star Wars Galactic Heroes Game,2008,51,4.36667,5.47549, +21721,357973,Rift Valley Reserve,,79,4.75949,5.47548, +21722,219670,HUNGER: The Show,2017,132,5.04697,5.47548, +21723,6210,On Assignment with National Geographic,1990,117,4.99128,5.47544, +21724,16562,Pie Face,1993,50,4.34000,5.47539, +21725,31298,Man Laws and Woman Rules,2007,44,4.18318,5.47535, +21726,2760,Knights of the Dinner Table: Orcs at the Gates,1998,239,5.23745,5.47535,"752, 2760" +21727,3488,C-23,1998,84,4.79762,5.47532, +21728,88556,Duel: Once Upon a Game in the West,2010,63,4.57032,5.47528, +21729,35294,Indiana Jones DVD Adventure Game,2008,128,5.02891,5.47523, +21730,200760,YOOLOO,2016,59,4.50678,5.47523, +21731,144579,Pizza Party,2013,347,5.31011,5.47517, +21732,14146,Blow Football,1910,35,3.83571,5.47513, +21733,14133,Druids,2004,79,4.74684,5.47506, +21734,198836,3 Wishes,2016,1125,5.42391,5.47505, +21735,39415,Trivial Pursuit: Digital Choice,2008,143,5.07259,5.47505, +21736,5166,Express Monopoly Card Game,1993,124,5.01048,5.47503, +21737,221644,Pyramid of the Sun,2017,273,5.26399,5.47502, +21738,137969,Geek Dice,2013,55,4.42727,5.47502, +21739,70502,Doctor Who: The Time Wars Family Board Game,2010,34,3.77941,5.47501, +21740,2029,Top Secret,1995,31,3.61290,5.47498, +21741,146864,NFL Rush Zone,2013,114,4.96854,5.47497, +21742,10450,Clue Jr.: Case of The Missing Pet,1989,77,4.72468,5.47496, +21743,9208,Predator: The Forest Food Chain Game,1973,75,4.70467,5.47496,"9208, 9581" +21744,185,Devil Bunny Needs a Ham,1998,721,5.39475,5.47494, +21745,6605,Track,1975,62,4.54177,5.47492, +21746,8542,Turbo,2003,69,4.63507,5.47488, +21747,16498,Inka,2005,664,5.38750,5.47486, +21748,347086,Lady's Choice,2022,71,4.65732,5.47484, +21749,180654,Zombie Road Trip,2014,48,4.26354,5.47480, +21750,9410,Aus die Maus!,2004,33,3.71212,5.47478, +21751,264660,Can't Catch Harry,2019,157,5.10382,5.47475, +21752,143869,Something Different,2013,179,5.14922,5.47474, +21753,8599,Monopoly: Star Wars Episode II,2002,47,4.23404,5.47472, +21754,1225,Quest,1984,154,5.09538,5.47468, +21755,6220,Afrikan tähti korttipeli,1996,31,3.58710,5.47463, +21756,50458,Billy Biber,2009,197,5.17665,5.47456, +21757,194228,Rick and Morty: Mr. Meeseeks' Box o' Fun Dice and Dares Game,2016,181,5.14971,5.47451, +21758,3188,Bionicle: Quest For The Masks CCG,2001,44,4.13800,5.47451, +21759,5423,Bible Trivia,1984,137,5.04489,5.47449, +21760,9514,Happy Days,1976,86,4.79012,5.47449, +21761,21881,Family Guy Trivia Game,2005,44,4.13182,5.47439, +21762,144236,Antimatter Matters,2013,64,4.55078,5.47438, +21763,73228,Hecho,2010,126,5.00516,5.47437, +21764,138091,Guile,2013,106,4.91651,5.47437, +21765,265026,The Floor is Lava,2018,109,4.93182,5.47436, +21766,77596,The Enigma of Leonardo,2007,93,4.83763,5.47433, +21767,62,Curse of the Mummy's Tomb,1988,357,5.30840,5.47432, +21768,14736,Let's Kill!,1997,395,5.32392,5.47426, +21769,5018,Fishin' Time,1986,88,4.79830,5.47421, +21770,328053,Jumanji,2019,70,4.62286,5.47417, +21771,20580,Name That Tune 80's Edition DVD Game,2005,92,4.82501,5.47411, +21772,89423,Garbage,,60,4.47717,5.47407, +21773,14130,Sharur: Evolutions,2004,64,4.53906,5.47406, +21774,1725,A Nightmare on Elm Street: The Game,1987,63,4.52381,5.47405, +21775,329641,King of the Pitch,2021,86,4.77593,5.47398, +21776,29582,Stoplights,2007,200,5.17380,5.47397, +21777,366327,Nacho Pile,2022,317,5.28449,5.47396, +21778,19083,The Fuzztoons,2005,80,4.72279,5.47395, +21779,240224,The Emoji Game,2015,54,4.36111,5.47395, +21780,3841,Echelons of Fire,1995,62,4.50323,5.47391, +21781,1467,Abduction,1998,277,5.25610,5.47385, +21782,41518,Horrible Histories: Rotten Romans,2008,36,3.79722,5.47383, +21783,53557,Colorio,2004,81,4.72840,5.47383, +21784,12436,Ogre Bash,2004,37,3.83784,5.47376, +21785,84825,FaceEater,2010,70,4.60857,5.47375, +21786,39789,Zombie Mosh!,2009,57,4.40982,5.47371, +21787,95765,Joe Name It,2011,197,5.16574,5.47370, +21788,23249,Game of Games,1986,174,5.12465,5.47367, +21789,276801,Valhallamas,2020,46,4.15217,5.47365, +21790,14705,Totally Gross,2002,60,4.46002,5.47364, +21791,213787,The Terminator: The Official Board Game,,44,4.09091,5.47363, +21792,5903,Cats' Mansion,1984,97,4.84639,5.47362, +21793,49010,Clue: Carnival – The Case of the Missing Prizes,2009,88,4.78136,5.47359, +21794,18097,Monopoly: Moscow,1996,77,4.68117,5.47355, +21795,113369,"Ticonderoga: The Battles for Lake George, 1755-1758",2012,36,3.77778,5.47354, +21796,17245,Pepper,2005,94,4.82394,5.47353, +21797,89071,Saturday Night Live: The Game,2010,35,3.72857,5.47352, +21798,299654,Harry Potter: Potions Challenge Game,2019,39,3.90564,5.47349, +21799,154482,Dream Heist,2014,50,4.25000,5.47348, +21800,26106,Gezanke auf der Planke!,2006,76,4.66776,5.47346, +21801,23346,10,2006,46,4.14130,5.47344, +21802,21749,Scene It? Squabble,2005,91,4.79890,5.47339, +21803,646,Pirate's Plunder,2000,70,4.59529,5.47335, +21804,5259,Oh Snap!,1965,735,5.38958,5.47332, +21805,38337,Fishing for Terrorists Version 2.0,2008,185,5.14054,5.47331,"10807, 38337" +21806,295178,Monopoly: Longest Game Ever,2019,53,4.31132,5.47330, +21807,19888,Master of Movies,2005,93,4.81075,5.47329, +21808,156599,Caffeine Rush,2015,78,4.68231,5.47326, +21809,20203,Breakout,1994,59,4.42712,5.47324, +21810,193500,Statecraft: The Political Card Game,2017,215,5.18605,5.47323, +21811,27668,Apache,2007,99,4.84747,5.47315, +21812,2308,Atlantis: Pathways of the Deep,2001,66,4.53439,5.47314, +21813,12511,Artifact,2004,76,4.65789,5.47314, +21814,5956,South Africa: The Death of Colonialism,1977,163,5.09294,5.47314, +21815,2693,Bottle Topps,1993,257,5.23171,5.47311, +21816,223978,Carrotia: Noscarrotu,2017,108,4.89829,5.47309,"191041, 223978" +21817,2303,Blast-Off!,1969,101,4.85842,5.47309, +21818,234819,Garçon!: En délire!!!,,99,4.84485,5.47304,"28989, 234819" +21819,5412,Tomb of Doom,1999,62,4.46855,5.47300, +21820,15635,Busungar,1986,41,3.95122,5.47295, +21821,286125,Risk: Office Politics,2019,39,3.87282,5.47295, +21822,17578,Leaping Lizards,2003,91,4.78626,5.47291, +21823,137366,Social Network,2013,45,4.08222,5.47287, +21824,370139,DIG UP Adventure,2022,168,5.10024,5.47286, +21825,1437,Trust Me,1981,137,5.01423,5.47277, +21826,159847,Ali Baba Junior,2003,184,5.13092,5.47274,"3889, 159847" +21827,34129,The Beer Game,1994,49,4.18776,5.47271, +21828,19378,Doctor Who: The Interactive Electronic Board Game,2005,69,4.56014,5.47270, +21829,180740,Shopkins Supermarket Scramble Game,2014,36,3.72222,5.47268, +21830,1706,UFO: Game of Close Encounters,1976,160,5.07875,5.47268, +21831,18574,Dark Force,1994,57,4.36667,5.47267, +21832,217136,Kurzer Prozess: Krimi-Kartenspiel,2017,385,5.30862,5.47263,"21859, 217136" +21833,158232,Bedpans & Broomsticks,2014,101,4.84733,5.47262, +21834,9780,Star Wars: Episode I – Jar Jar Binks 3-D Adventure Game,1999,30,3.36667,5.47261, +21835,12623,UWO,2004,237,5.20591,5.47260, +21836,20040,Badaboom,2005,210,5.17143,5.47258, +21837,56687,Capitaly 2000: Győr,2000,74,4.61757,5.47257,"18618, 56686, 56687" +21838,28288,Temple of the Monkey,2007,276,5.24293,5.47253,"28288, 35524" +21839,14535,SPANC: Space Pirate Amazon Ninja Catgirls,2005,524,5.35143,5.47250, +21840,345081,Countaloupe,2021,66,4.51061,5.47248,"12238, 345081" +21841,3584,World War 3: 1976-1984,1975,188,5.13431,5.47244, +21842,125461,Cubu,2012,50,4.20000,5.47242, +21843,11862,Gay Monopoly,1983,59,4.39322,5.47240, +21844,15852,Electro,1910,46,4.08783,5.47239, +21845,41857,Zoo Panic,2009,44,4.02273,5.47235, +21846,7987,Catch Mag,2002,32,3.47656,5.47231, +21847,150160,Zombies vs. Wrestlers,2013,241,5.20726,5.47231,"117784, 150160, 150162, 151068" +21848,1415,Rat Splatter,2001,38,3.79105,5.47230, +21849,344017,Dodo,2021,88,4.74545,5.47227, +21850,34902,Rock!,2008,76,4.63026,5.47226, +21851,228503,Mad Science Expo,2017,46,4.08043,5.47225, +21852,2036,Time: The Game,1983,85,4.71882,5.47224, +21853,60870,Schätze des Dunklen Turmes,2009,34,3.58824,5.47223, +21854,70267,Klussen met Koeien,2010,113,4.90505,5.47222,"35585, 70267, 70268" +21855,263730,Yorsh: Mini,2017,49,4.16327,5.47220,"141991, 263730" +21856,15845,Fantomen,1984,80,4.66875,5.47214, +21857,12557,APBA Basketball,1965,33,3.52424,5.47213, +21858,1989,The Peter Principle Game,1973,46,4.07391,5.47212, +21859,230542,Gold Raiders,2017,63,4.45095,5.47211, +21860,927,Lift Off,2000,171,5.09532,5.47207, +21861,16973,Genial daneben: Das Spiel,2004,37,3.72973,5.47205, +21862,2033,Reporter,1976,46,4.06957,5.47203, +21863,31615,Fred,2007,43,3.97093,5.47202, +21864,7553,Babylon,2003,566,5.35783,5.47199,"7553, 131199" +21865,12763,Block It!,2004,77,4.63247,5.47198, +21866,128672,Ricochet Rock Jockeys,2012,48,4.12500,5.47197, +21867,20306,Brew-opoly,,50,4.17800,5.47195, +21868,7250,Q*bert,1983,52,4.22692,5.47193, +21869,121414,Countdown: Special Ops,2013,141,5.01277,5.47193, +21870,63901,Oh No... Zombies!,2009,60,4.39189,5.47191, +21871,2766,Jeopardy!,1964,285,5.24386,5.47183, +21872,99992,Kill Shot: The Counter-Terrorism Party Game,2011,43,3.96047,5.47183, +21873,9545,The Batman Game,1989,96,4.79479,5.47182, +21874,8860,Cranium Conga,2003,247,5.20828,5.47178, +21875,265832,WTF?,2017,77,4.62597,5.47177, +21876,1673,Ultimate Golf,1985,83,4.68675,5.47175, +21877,360266,Draft Cider,2022,74,4.58986,5.47171, +21878,119194,The Witches of Blackmore,2012,89,4.73775,5.47168, +21879,12308,Towers in Time,1994,33,3.49091,5.47166, +21880,1938,XXL,1996,67,4.49418,5.47161, +21881,379343,Unfinished Business,2023,545,5.35131,5.47158, +21882,7693,Fußball-Bundesliga: Das große Geschäft,1987,55,4.27636,5.47150, +21883,18399,Fan Tan,,255,5.21357,5.47149, +21884,152902,Fish or Cut Bait,2013,164,5.07000,5.47146, +21885,23959,Piranha Panic,2005,178,5.10109,5.47142, +21886,182252,Darkness Sabotage,,36,3.63889,5.47140, +21887,151887,Clusterf**k!,2013,118,4.91186,5.47138, +21888,94891,Kabaleo,2011,402,5.30704,5.47136, +21889,3676,Global Pursuit,1987,282,5.23673,5.47132, +21890,8393,Monopoly: NHL,2001,112,4.88054,5.47132, +21891,2811,Blind Justice,1989,86,4.70116,5.47129, +21892,10925,Tumbling Tower,1999,228,5.18048,5.47126, +21893,6598,Frogger,1981,81,4.65185,5.47123, +21894,131735,Castles,2012,56,4.28571,5.47122, +21895,1090,YoYo,1998,46,4.02609,5.47118, +21896,6397,Egyptians,2001,46,4.02587,5.47118, +21897,3306,Hack Attack,2000,47,4.05383,5.47112, +21898,180920,Flock,2016,243,5.19678,5.47110, +21899,332173,Robots Ate Our Pizza,2021,69,4.50494,5.47110, +21900,2115,Free Parking,1988,332,5.26991,5.47105, +21901,16461,POG The Game,1995,80,4.63510,5.47101, +21902,40503,Birds on a Wire,2009,236,5.18720,5.47097, +21903,3758,Triopoly,1997,248,5.20036,5.47091, +21904,199401,Kingz,2016,66,4.45394,5.47090, +21905,67627,U-Build Mouse Trap,2010,50,4.12600,5.47085, +21906,6388,Star Wars: Return of the Jedi – Battle at Sarlacc's Pit,1983,181,5.09901,5.47083, +21907,3538,Gnome Tribes,2001,49,4.09694,5.47082, +21908,5387,Shakin' Sorry,1992,56,4.26786,5.47080, +21909,7710,Tip-It,1965,148,5.01486,5.47075, +21910,5377,Dragon Hunt,1997,484,5.33043,5.47059,"2166, 5377" +21911,10355,Fore: The Golf Game,1987,69,4.48741,5.47059, +21912,203967,Arkham Ritual,2017,218,5.15928,5.47058, +21913,131956,PURGE: Sins of Science,2012,53,4.18868,5.47055, +21914,1972,Game of the Year,1989,121,4.90876,5.47053, +21915,113200,Angry Birds: On Thin Ice,2011,99,4.78384,5.47053, +21916,74098,Trivial Pursuit: The 90s,2005,369,5.28628,5.47053,"2957, 24155, 33023, 74098" +21917,4834,Judge for Yourself,1998,67,4.45522,5.47051, +21918,7563,Jaws,1975,134,4.96269,5.47050, +21919,16985,Gelb gewinnt!,2005,126,4.93016,5.47049, +21920,22019,ZombieTown,2007,440,5.31571,5.47048, +21921,32264,Biznes po polsku,2006,63,4.38889,5.47046, +21922,19571,The Sudoku Game,2005,61,4.35330,5.47046, +21923,40131,Sportmagazin,1964,45,3.95511,5.47044,"8789, 12889, 25189, 26091, 30288, 40131, 113786, 198275, 221109, 335920, 342640" +21924,142363,Ghost Castle: Mr Creepy,2012,1513,5.42531,5.47041,"1613, 4893, 142363" +21925,2297,U.S. Patent No. 1,2001,296,5.23956,5.47038, +21926,155464,The Walking Dead: Don't Look Back Dice Game,2014,138,4.97239,5.47022, +21927,24857,Deal or No Deal Card Game,2006,62,4.36210,5.47022, +21928,3320,The Game of Life: A Jedi's Path,2002,517,5.33695,5.47015, +21929,69544,Ik Hou van Holland Spel,2008,54,4.19444,5.47014, +21930,3578,BattleBots: Kickbot Arena,2001,65,4.40769,5.47006, +21931,52107,Twister Moves: High School Musical,2007,71,4.49648,5.47004,"12784, 52107, 66354" +21932,67080,Flume,2010,55,4.21273,5.47002, +21933,9878,Cheers,1992,71,4.49577,5.47001, +21934,64611,Monopoly Get Out of Jail Mini Game,2009,43,3.86047,5.47000, +21935,155912,Monopoly: Marvel Comics Collectors Edition,2012,125,4.91616,5.46999,"11950, 155912" +21936,21835,Mont Saint Michel,2006,78,4.58205,5.46998, +21937,1660,The Cattlemen,1977,47,3.99574,5.46996, +21938,6659,Harry Potter Casting Stones,2001,52,4.13748,5.46996, +21939,55,Sophie's World,1998,100,4.77700,5.46996, +21940,186208,Project Mars,2016,52,4.13327,5.46987, +21941,146253,Angry Sheep,2014,84,4.63869,5.46974, +21942,76668,Diary of a Wimpy Kid: Cheese Touch,2010,104,4.79808,5.46972, +21943,132203,What Do You Meme?,2012,135,4.95185,5.46969, +21944,53376,7,2009,155,5.01845,5.46968, +21945,32789,Bogoss,2007,56,4.21875,5.46963, +21946,7848,Snakes and Ladders 3D,1998,58,4.26034,5.46960, +21947,67628,U-Build Battleship,2010,60,4.29833,5.46954, +21948,354256,The Voting Game: After Dark Edition,2021,542,5.33987,5.46953,"172007, 354256" +21949,320955,KRAFT Macaroni & Cheese Game,2020,43,3.83488,5.46953,"320953, 320955, 320956, 322203" +21950,8041,Monopoly: The Lord of the Rings Trilogy Edition,2003,958,5.39610,5.46951, +21951,629,Q-Turn,1999,165,5.04309,5.46950, +21952,40421,Malta!,2010,157,5.02134,5.46950, +21953,733,Don't Make Me Laugh Jr.,2000,39,3.66513,5.46949,"732, 733" +21954,2367,Haunted Wood,1974,88,4.66932,5.46948, +21955,312590,Dad Joke Face-Off 2nd Ed,2020,47,3.97021,5.46945,"279443, 312589, 312590" +21956,20694,Sillage,2003,49,4.03061,5.46944, +21957,242972,L.O.L. Surprise: 7 Layers of Fun Game,2017,32,3.26562,5.46943, +21958,39372,The Crazy Cat Lady Game,2008,56,4.20964,5.46942, +21959,116422,Apples to Apples Dice Game,2011,92,4.70217,5.46940, +21960,4852,Armada: The War With Spain 1585-1604,1978,208,5.12990,5.46939, +21961,1510,Class Struggle,1978,220,5.14835,5.46938, +21962,33020,Bata-Waf,2006,155,5.01309,5.46934, +21963,3610,Word Power,1963,58,4.24741,5.46928, +21964,331666,Zola,2021,80,4.58250,5.46925, +21965,9802,Tuchulcha,2004,168,5.04639,5.46921, +21966,259708,Diced Tomatoes,2018,206,5.12306,5.46910, +21967,10831,Vapor's Gambit,2004,100,4.75550,5.46907, +21968,9824,Employee of the Month,2004,192,5.09740,5.46907, +21969,610,Knights of the Rainbow,1999,174,5.05862,5.46904,"610, 4384" +21970,213871,Yippie Yippie Yeti,2016,39,3.63744,5.46903, +21971,18543,Senior Moments,,34,3.36765,5.46903, +21972,271821,Dog Rush,2019,69,4.43333,5.46902,"25475, 271821" +21973,172729,The Game of Life: Despicable Me,2015,64,4.35197,5.46901, +21974,21528,SuDoku: The Board Game,2005,54,4.14352,5.46897, +21975,1216,Mystery Garden,1989,195,5.10157,5.46895, +21976,30456,Touring England,1935,47,3.94468,5.46894, +21977,181477,Star Patrol,2017,34,3.36118,5.46893, +21978,17819,Sin City,2005,78,4.55000,5.46893, +21979,28905,Dostihy a sázky,1983,240,5.16933,5.46884, +21980,75991,Sorry! Spin,2010,103,4.77087,5.46884, +21981,14702,30 Second Mysteries for Kids,1995,67,4.39552,5.46883,"8133, 14702, 268192" +21982,17211,Monkey Arena,2005,90,4.66967,5.46882, +21983,380728,Exit Strategy,2023,96,4.71708,5.46872, +21984,28274,Life on the Farm: Preschool Edition,,82,4.58875,5.46872,"4641, 28274" +21985,356061,Sherlock: Case Connection,2022,62,4.30242,5.46865, +21986,54559,Bacchus,2009,103,4.76650,5.46865, +21987,24254,Simulations Canada's Battleship,2005,216,5.13241,5.46853,"8173, 24254" +21988,16530,The Apprentice Game,2005,47,3.92340,5.46852, +21989,281457,Manchukuo,,45,3.85422,5.46851, +21990,21734,Krumble!,2006,104,4.76894,5.46846, +21991,411050,Gobelin des Bois,2024,53,4.09547,5.46845, +21992,60311,Pairs in Pears,2009,200,5.10460,5.46845, +21993,2791,Baby Bird Game,1988,37,3.50000,5.46843, +21994,231082,Hatchimals CollEGGtibles EGGventure Game,2017,50,4.01000,5.46839, +21995,13208,Thin Ice,1992,81,4.56605,5.46832, +21996,716,Pizza Party,1987,158,5.00538,5.46829, +21997,127748,Alliances,2013,75,4.48987,5.46819, +21998,335090,Kraken Up,2021,71,4.43465,5.46819, +21999,10462,Battle of the Sexes,1986,39,3.58333,5.46813, +22000,3393,Public Assistance,1980,75,4.48800,5.46813, +22001,5566,The Muppet Show Game,1977,67,4.37090,5.46813, +22002,5028,The Game of Life in Monstropolis,2001,82,4.56890,5.46804, +22003,22629,Giggle Wiggle,1991,100,4.73050,5.46803, +22004,12304,Deluxe Pass the Pigs,2004,6946,5.45740,5.46802,"2593, 12304, 22516, 92497" +22005,356622,Tusk!: Surviving the Ice Age,2022,38,3.52632,5.46801, +22006,7473,Drag Strip!,1965,101,4.73531,5.46792, +22007,154753,Ice Cold Ice Hockey,2014,107,4.77632,5.46792, +22008,17568,Magic Robot Quiz Game,1935,46,3.85652,5.46787, +22009,315131,Dumb Criminals,2020,30,2.99667,5.46786, +22010,204069,Cranium Dark,2016,154,4.98571,5.46782, +22011,6122,Star Wars: Escape the Death Star Action Figure Game,1998,93,4.66882,5.46779, +22012,165600,What The Face?,2014,72,4.43481,5.46776, +22013,329640,Detective Poker,2014,43,3.73721,5.46774, +22014,23913,League of Pirates,2006,68,4.37221,5.46771, +22015,263802,Dirty Words: Party Edition,2018,59,4.20316,5.46766,"10105, 263802" +22016,39662,Cash Cab,2008,59,4.20169,5.46762, +22017,20135,Spelunke,2005,47,3.87766,5.46761, +22018,3018,The A-Team: B.A. Lends a Hand in the Race for the Formula,1984,63,4.28095,5.46759, +22019,344425,Hydroracers: The Schneider Trophy Epic,2022,114,4.81053,5.46753, +22020,2707,Alibi,2001,122,4.85246,5.46747, +22021,9118,"Operation Elope, 1918-1919",2001,38,3.49211,5.46746, +22022,31111,Picture Dominoes,,109,4.77807,5.46743, +22023,125765,Rock Paper Scissors Lizard Spock Dice,2012,66,4.32591,5.46734, +22024,3715,Gregory Horror Show,2002,127,4.87366,5.46732, +22025,222389,Super Mario Tower,1994,161,4.99901,5.46731,"10687, 222389" +22026,43340,Kung Fu,2009,69,4.37440,5.46731, +22027,124648,I Am Vlad: Prince of Wallachia,2012,86,4.59012,5.46730, +22028,194960,Brain Games,2015,165,5.00936,5.46725, +22029,5425,MindTrap II,1997,433,5.29253,5.46721, +22030,3759,Make Your Own Opoly,1998,53,4.03962,5.46720, +22031,1963,Risk 'n' Roll 2000,1999,88,4.60636,5.46716, +22032,311848,Monkey Mischief,2019,410,5.28232,5.46715,"25623, 311848" +22033,1779,Berserker,1982,80,4.51950,5.46714, +22034,23435,Hugo,1993,36,3.36111,5.46713, +22035,7400,LEGO Creator,1999,285,5.20091,5.46711, +22036,1174,Minister,1975,143,4.93636,5.46710, +22037,341918,Tulpenfieber,2021,151,4.96397,5.46707, +22038,1001,Vendetta,1988,233,5.14099,5.46706, +22039,14625,Stare! Junior Edition,2002,216,5.11491,5.46703,"2855, 14625" +22040,92960,S'mores Card Game,2009,42,3.65476,5.46700, +22041,406093,Winter Diceathlon,2023,199,5.08377,5.46694,"375553, 406093" +22042,28857,Rail/Road,2007,106,4.74575,5.46686, +22043,1190,Continuo,1982,452,5.29699,5.46674, +22044,2777,Safari,2000,115,4.79913,5.46672, +22045,11737,Curious George Match-a-Balloon Game,1957,49,3.89796,5.46668, +22046,216659,Toilet Trouble,2016,51,3.95882,5.46666, +22047,5116,Kreskin's ESP,1967,34,3.20206,5.46662, +22048,224212,Red Scare,2017,149,4.94906,5.46657, +22049,2901,GolfMania,1997,244,5.14980,5.46650, +22050,146275,Vikings: Warriors of the North,2013,327,5.23009,5.46649, +22051,103405,Monopoly: Cars 2 Edition,2011,79,4.48456,5.46638, +22052,8916,Jenga: Truth or Dare,2000,235,5.13609,5.46635, +22053,11248,The Vampire Game,1986,72,4.38750,5.46633, +22054,37382,Monopoly: Wonder of The World,2003,142,4.91901,5.46631, +22055,2841,Tennis,1975,130,4.86846,5.46631, +22056,88691,The Game of Life: Adventures Card Game,2010,265,5.17272,5.46628, +22057,343274,Cryptid: Urban Legends,2022,277,5.18531,5.46626, +22058,17026,Top Dogs,2005,177,5.02650,5.46626, +22059,187801,Star Wars Trivia Game,2015,76,4.44184,5.46625, +22060,54239,Mindflex,2009,112,4.77054,5.46622, +22061,32161,Wypas,2007,77,4.45195,5.46615, +22062,223776,Random Encounter: Seas of the Sea Chicken,2017,83,4.52442,5.46612,"177751, 223776" +22063,24258,Pounce!,2005,118,4.80297,5.46608, +22064,13672,Chutes and Ladders VCR,1986,45,3.72718,5.46608, +22065,5211,Antiques Roadshow: The Game,2000,59,4.13898,5.46606, +22066,313114,Relative Insanity Party Game Expansion/Travel Pack,2020,217,5.10460,5.46600,"250448, 313114" +22067,9090,My First UNO,1991,147,4.93205,5.46598, +22068,9079,Das kaufmännische Talent,1936,145,4.92448,5.46596, +22069,3645,History of the Second World War: Part 1 – Hitler Turns Against Russia,1985,64,4.23906,5.46596, +22070,25081,Wyprawa,2005,46,3.75870,5.46596, +22071,340672,Council of 12,2022,119,4.80588,5.46595, +22072,1684,Intern,1979,71,4.35915,5.46593, +22073,20801,Sudoku,2005,189,5.05012,5.46593, +22074,40650,The Lord of the Rings: The Return of the King Board Game,2004,56,4.06250,5.46593,"7519, 23907, 40650" +22075,64608,Kapitan Bomba,2009,51,3.92157,5.46586, +22076,6231,Pimps and Hos,2002,36,3.27778,5.46585, +22077,12309,Austin Powers CCG,1999,81,4.49309,5.46584, +22078,1428,Image,1971,202,5.07574,5.46584, +22079,131914,King's Bounty,2012,53,3.97547,5.46576, +22080,110962,Shadow Days,2012,43,3.62791,5.46574, +22081,16112,Bamses honungs-jakt,1984,66,4.26455,5.46564, +22082,19274,Darkness Falls on Sevinpold,2002,72,4.36250,5.46557, +22083,7462,Jumpin' Monkeys,1991,242,5.13731,5.46556, +22084,8499,Bowl and Score,1962,71,4.34507,5.46551, +22085,12532,Abuse: The Final Insult,2004,55,4.01818,5.46549, +22086,1546,Worlds of Heroes & Tyrants,2001,30,2.80000,5.46534, +22087,37698,The Laughing Pig,1932,61,4.15262,5.46529, +22088,294969,Dog Man: Attack of The Fleas,2019,81,4.47667,5.46529, +22089,107829,Building an Elder God,2011,124,4.81944,5.46528, +22090,8479,Odds'R,2002,87,4.54346,5.46524, +22091,118339,The Hunger Games: District 12 Strategy Game,2012,305,5.20229,5.46523, +22092,844,Mausoleum,2000,94,4.61170,5.46522, +22093,2317,Mückenstich,1999,191,5.04476,5.46519,"1377, 1802, 2317, 159999" +22094,22209,Muumipeli,,77,4.42208,5.46518, +22095,1731,Tintin,1987,120,4.79575,5.46518, +22096,1424,Book of Lists Game,1979,56,4.02982,5.46516, +22097,345617,Battle of the Sexes,2011,60,4.12550,5.46516,"251252, 345617" +22098,38418,Inwigilacja Luksusowa,2008,97,4.63247,5.46499,"29408, 38418" +22099,10793,"Civil War Classics, Volume 1: The Battles of Pea Ridge & Shiloh",1991,35,3.15714,5.46498, +22100,5428,Mad Gab Card Game,2000,145,4.90759,5.46496, +22101,4567,Ripley's Believe It or Not!,1984,85,4.51412,5.46496, +22102,32340,The Golden Compass,2007,75,4.38667,5.46494, +22103,216742,Shark Tank: The Game,2016,31,2.85484,5.46492, +22104,35652,Log Jam,2008,225,5.10516,5.46491, +22105,251208,Game Box: Family Feud – Disney Edition,2016,70,4.30700,5.46486, +22106,1865,Astrotime,1990,93,4.59140,5.46479, +22107,5254,Solomon's Temple,2001,64,4.19531,5.46478, +22108,1531,Ritter ohne Furcht und Tadel,1998,73,4.34932,5.46470, +22109,6880,Nix,1999,42,3.52381,5.46466, +22110,19001,Tech Support,2005,38,3.31842,5.46465, +22111,23482,Igelkottens hämnd!,1991,51,3.86471,5.46463,"12837, 23482" +22112,18736,CSI: Miami,2005,45,3.65111,5.46462, +22113,11765,Capt'n W. Kidd,2004,90,4.55667,5.46458, +22114,5285,Pro Tennis,1983,77,4.40104,5.46450, +22115,236639,Flaming Pyramids,2018,414,5.26664,5.46449, +22116,10325,"Marry, Date or Dump?",2003,66,4.22273,5.46447, +22117,259968,What's That Smell?,2018,67,4.23980,5.46443, +22118,5472,Monopoly: Millennium,2000,352,5.23128,5.46442, +22119,28047,Covert Action,2007,252,5.13790,5.46434, +22120,20140,Sybarit,2003,72,4.31875,5.46425, +22121,27471,Cálico Electrónico: El juego de cartas,2006,67,4.22985,5.46415, +22122,20419,Monopoly Junior: Disney Princess,2004,57,4.01228,5.46413, +22123,334824,Gopher,2021,68,4.24706,5.46412, +22124,184108,Monopoly: Despicable Me,2013,64,4.17026,5.46410, +22125,40249,Luck,1943,193,5.03393,5.46402,"4519, 9885, 12998, 40249" +22126,127798,Express 01,2012,163,4.95399,5.46396, +22127,318059,Lost In Jurassica,2021,179,4.99866,5.46390,"304021, 313695, 318059" +22128,17708,Isolate,2003,96,4.59583,5.46388, +22129,226878,Outpost: Siberia,2017,121,4.77388,5.46381, +22130,129939,Ha! Ha! Moustache,2012,113,4.72445,5.46378, +22131,13703,The Game of Life: Pirates of the Caribbean,2004,192,5.02839,5.46376, +22132,452,Mummy Rummy,1994,194,5.03245,5.46373, +22133,13416,Tim Burton's The Nightmare Before Christmas Game,2004,69,4.24783,5.46363, +22134,26137,Deal or No Deal: Electronic Game,2006,101,4.63201,5.46359, +22135,30306,What the F*ck?,2006,74,4.32838,5.46358, +22136,8104,Monopoly: European Edition,1991,197,5.03706,5.46358, +22137,2094,4 First Games,1974,130,4.81385,5.46339, +22138,134777,Zombies!!! Roll Them Bones!,2013,98,4.60153,5.46339, +22139,4251,Globopolis,2002,67,4.20149,5.46335, +22140,23912,Dread Pirate: Buccaneer's Revenge,2006,1184,5.39185,5.46332,"5457, 23912" +22141,174925,Mr. Game!,2015,65,4.16154,5.46332, +22142,240133,Soggy Doggy,2017,50,3.76787,5.46325, +22143,2929,Monopoly: The .com Edition,2000,174,4.97557,5.46322, +22144,39734,Suomi Tietopeli Junior,2008,62,4.09194,5.46315,"17597, 39734" +22145,17184,Blankety Blank,1983,117,4.73591,5.46312,"4902, 17184, 158486, 159982" +22146,19272,Go Fish!,1997,66,4.17318,5.46309, +22147,4470,Xanth,1991,183,4.99781,5.46309, +22148,264245,Noah's Animal Rescue,2018,220,5.07573,5.46306,"264245, 352375, 352376" +22149,330806,Silverwood Grove,2021,166,4.94699,5.46288, +22150,350722,Wonders of the World,2019,97,4.57990,5.46287,"14383, 350722" +22151,23181,The Da Vinci Code Board Game: The Quest for the Truth,2006,284,5.16102,5.46284, +22152,30255,Five Little Monkeys Jumping on the Bed,2007,72,4.27153,5.46282, +22153,430554,Legend Academy (Gamefound Edition),2025,33,2.86061,5.46277,"336207, 430554" +22154,12996,Quips,1972,132,4.81197,5.46276, +22155,6686,Stun,1986,82,4.41463,5.46274, +22156,9173,Spite,1995,68,4.19875,5.46274, +22157,1969,Point Of Law,1972,137,4.83394,5.46266, +22158,183521,Monopoly: Star Wars,2015,346,5.21355,5.46264, +22159,2868,Eye,1987,66,4.15606,5.46262, +22160,103402,Cranium Brain Breaks,2010,84,4.43155,5.46246, +22161,25429,Der Dativ ist dem Genitiv sein Tod,2006,82,4.40244,5.46232, +22162,3606,The Game of Shakespeare,1966,111,4.67793,5.46226, +22163,264282,Red Light: A Star is Porn,2018,437,5.26293,5.46224,"136143, 150276, 180311, 200294, 264282, 423359, 431851" +22164,648,Vox Populi,1999,82,4.40000,5.46224, +22165,9938,Smath,1978,75,4.30047,5.46223, +22166,38001,Black Stories: Das Spiel,2008,108,4.65509,5.46221, +22167,5775,Electronic Whac-a-Mole,1999,114,4.69719,5.46219, +22168,27837,Nichtlustig,2007,354,5.21582,5.46219, +22169,136249,Voodoo Mania,2013,266,5.13327,5.46208, +22170,19368,Pacardy,2005,49,3.67687,5.46208, +22171,3389,Castle Lords,2002,89,4.47865,5.46206, +22172,3908,Dr. Seuss Green Eggs and Ham Game,1996,63,4.07143,5.46202, +22173,2234,Chez Dork,2001,524,5.29470,5.46200, +22174,300226,Egocentric World,2020,76,4.30671,5.46194, +22175,4693,White Lady,1989,61,4.01967,5.46186, +22176,53804,Cir*Kis,2009,369,5.22293,5.46179, +22177,114189,'Over a Thousand' Question Quiz,1969,366,5.22057,5.46174,"2421, 114189" +22178,2518,Quicksand,1989,156,4.89551,5.46171, +22179,272854,Smart Ass: 90's Nostalgia Card Game,2017,1632,5.40755,5.46169,"27389, 72630, 182994, 272854, 290632, 417171" +22180,265802,Crypt X,2020,41,3.30488,5.46167, +22181,130347,Fibber,2012,101,4.58347,5.46155, +22182,260143,Adventures in Neverland,2025,88,4.45364,5.46155, +22183,314026,Break In: Alcatraz,2020,225,5.06733,5.46155, +22184,368118,Hadron,2022,66,4.11591,5.46150, +22185,5750,Harry Potter and the Sorcerer's Stone: Trivia Game,2000,410,5.24485,5.46149, +22186,58698,Pickles to Penguins,2009,118,4.70782,5.46145, +22187,2312,Ringgeister,1992,211,5.03910,5.46137, +22188,13121,Kablamo,2004,313,5.17620,5.46131, +22189,89928,LEGO Banana Balance,2011,111,4.65405,5.46116, +22190,8127,Lucky Loop,2003,590,5.30906,5.46111, +22191,4240,Combined Arms: Combat Operations in the 20th Century,1974,93,4.49570,5.46108, +22192,8327,Men At Arms,1990,117,4.69316,5.46105, +22193,13792,Tyrannosaurus Rex,1988,79,4.32025,5.46094, +22194,3547,Survival of the Witless,1997,88,4.43636,5.46092, +22195,9540,Advanced Dungeons & Dragons Trivia Game,1991,99,4.54949,5.46089, +22196,28100,Deluxe Dirty Minds,2005,81,4.34506,5.46082, +22197,21980,A Christmas Story: The Board Game,2005,31,2.54355,5.46080, +22198,191624,Bear Valley,2016,443,5.25589,5.46067, +22199,7612,The Simpsons Board Game,2000,93,4.48495,5.46066, +22200,1264,Der Schattendieb,2001,70,4.16143,5.46058, +22201,225208,7th Guest: The Board Game,2018,43,3.34488,5.46056, +22202,39342,Bet Your Brain,2008,124,4.72630,5.46053, +22203,151091,Los Cazadores del Rey,2013,975,5.36715,5.46053,"47082, 151091, 186212" +22204,223688,Hier kommt die Maus,1997,129,4.75442,5.46051,"25097, 223688" +22205,142615,The Jelly Monster Lab,2013,86,4.40116,5.46051, +22206,279769,Queens & Kings ...A Checkers Game,2019,47,3.52128,5.46049, +22207,109002,Machine of Death,2011,526,5.28716,5.46048,"109002, 138311" +22208,28018,Trivial Pursuit: Disney Edition,2005,320,5.17525,5.46044, +22209,287571,ego GOLD,2017,724,5.33414,5.46038,"39564, 75762, 153766, 253678, 287571, 287572" +22210,4355,Therapy,1986,795,5.34477,5.46021, +22211,3048,Trivial Pursuit: Millennium Edition,1999,595,5.30589,5.46020, +22212,6020,Borodino: Doomed Victory,1990,86,4.39081,5.46013, +22213,28224,Kill the Hippies,2007,138,4.79220,5.46005, +22214,198059,Twist of Fate,2016,154,4.86136,5.46003, +22215,15111,Yahtzee: Texas Hold'em,2004,298,5.15046,5.46001, +22216,24376,Trivial Pursuit: Totally 80s Edition,2005,318,5.16981,5.46000, +22217,150811,Mega Man: The Board Game,2016,314,5.16585,5.45996, +22218,7327,The Lion King,1993,100,4.53600,5.45995, +22219,4812,Rules of the Game,1995,55,3.77636,5.45986, +22220,19513,Labirynt Czarnoksiężnika,2005,38,3.01842,5.45978, +22221,25789,Eragon,2006,58,3.85776,5.45972, +22222,66198,U-Build Monopoly,2010,433,5.24448,5.45962, +22223,5248,The Lord of the Rings Tarot Deck and Card Game,1997,119,4.67311,5.45944, +22224,170954,Stinky Pig Game,2014,71,4.14056,5.45941, +22225,262381,Amazed: the Game,2018,137,4.77562,5.45939, +22226,4229,Spellfire,1994,655,5.31636,5.45939, +22227,129368,Amber,2012,256,5.09254,5.45930, +22228,342252,Flushin' Frenzy Overflow,2020,92,4.43870,5.45930,"264989, 342252" +22229,25668,XIG: The Sorcerers Sword,2006,71,4.13662,5.45929,"19478, 25668" +22230,17987,Huggermugger Jr.,1992,492,5.26830,5.45927,"2387, 17987" +22231,2540,Beest,2001,62,3.94194,5.45922, +22232,24249,3D Action Snakes and Ladders,,53,3.68113,5.45915, +22233,2971,Kojak Detective Game,1975,73,4.16781,5.45914, +22234,51008,Mr. Bacon's Big Adventure,2009,54,3.71074,5.45907, +22235,66459,Mad Zeppelin,2010,343,5.18338,5.45902, +22236,1556,Tenjo,2001,205,4.99595,5.45886, +22237,136609,Jenga BOOM,2012,165,4.88370,5.45886, +22238,151467,Il était une forêt,2013,155,4.84516,5.45877, +22239,175861,Meow,2015,194,4.96830,5.45875, +22240,165302,King Down,2015,126,4.70238,5.45869, +22241,354330,Dr. Seuss 3 Games in ONE!,2005,59,3.83729,5.45853,"8081, 8106, 23416, 354330" +22242,7826,Secrets of the Tombs,2003,190,4.95497,5.45852, +22243,9704,Cat-opoly,,117,4.64060,5.45852, +22244,287030,The Newlywed Game: DVD Edition,2006,148,4.81088,5.45845,"9091, 287030" +22245,37175,Playing Gods: The Board Game of Divine Domination,2008,66,4.00606,5.45845, +22246,130603,Start 11! The Board Game,2012,869,5.34772,5.45833,"2086, 108862, 130603" +22247,175090,Game of Crowns,2015,112,4.59843,5.45825, +22248,10205,Noteability for Juniors,1991,118,4.64195,5.45824,"3007, 10205" +22249,8958,kuuduk,2003,181,4.92570,5.45822, +22250,26101,Worst Case Scenario: The Game of Surviving Life,2006,53,3.63019,5.45800, +22251,221641,Wild Kratts Race Around the World,2015,39,2.97026,5.45794, +22252,27181,"1,000 Places to See Before You Die",2006,40,3.03150,5.45793, +22253,102859,FURT,2011,174,4.89996,5.45791, +22254,59451,Candyland Sweet Celebration Game,2009,50,3.51571,5.45790, +22255,167590,New Earth,2016,48,3.42384,5.45768, +22256,31936,Sorry! Express,2007,116,4.61595,5.45767, +22257,23333,Littlest Pet Shop Game,2005,54,3.64444,5.45756, +22258,7410,Monty Python and the Holy Grail CCG,1996,116,4.61230,5.45750, +22259,305980,A Fistful of Gold,2015,140,4.75571,5.45741, +22260,12642,Army of Darkness Card Game,2004,220,5.01068,5.45740, +22261,156350,Hipster Dice,2014,85,4.29576,5.45720, +22262,182077,Cardline: Marvel,2015,370,5.19003,5.45715, +22263,1826,Whatzit?,1987,308,5.13573,5.45709, +22264,36973,The Office DVD Board Game,2008,108,4.53889,5.45701, +22265,1718,Foreign Exchange,1978,84,4.27619,5.45700, +22266,150690,Templar Intrigue,2014,237,5.03688,5.45685, +22267,15268,Trivial Pursuit: Book Lover's Edition,2004,111,4.55910,5.45680, +22268,46745,Lava Dragon,2009,272,5.09007,5.45676, +22269,149156,Castles,2014,51,3.50000,5.45674, +22270,5260,Star Wars: Jedi Knights CCG,2001,145,4.76793,5.45671, +22271,308532,イラストリー (Illustori),2019,91,4.35824,5.45667, +22272,13306,Die Bar-Bolz-Bande: Das Würfelspiel,2004,63,3.86508,5.45654, +22273,157581,Makin' Bacon,2012,56,3.66607,5.45653, +22274,122524,Monopoly Junior: Party,2011,73,4.08219,5.45651, +22275,27495,The Very Hungry Caterpillar Card Game,2006,65,3.90769,5.45636, +22276,4925,Survivor: The Australian Outback Card Game,2000,57,3.68544,5.45624, +22277,8009,Where in the World is Carmen Sandiego?,1992,154,4.80021,5.45621, +22278,107971,QI the Board Game,2011,102,4.46569,5.45620, +22279,21702,Big Fish Lil' Fish,2005,108,4.51944,5.45615, +22280,3484,Armada,1986,372,5.18387,5.45610, +22281,1749,Alien Hotshots,1998,133,4.69323,5.45602, +22282,3529,Vampire Hunter,2002,485,5.24614,5.45590, +22283,21123,Monopoly: Disney/Pixar,2005,149,4.77282,5.45588, +22284,214897,Mouthguard Challenge,2016,39,2.83718,5.45573, +22285,17062,Batman Begins: Shadow Assault,2005,107,4.50000,5.45567, +22286,19990,SuDoku: Das Brettspiel,2005,133,4.68511,5.45558, +22287,5784,Polterdice,2003,123,4.62053,5.45548, +22288,17008,Award Show,2005,76,4.10132,5.45539, +22289,22980,Jeff Foxworthy's You Might Be a Redneck if... Game,2006,66,3.89591,5.45538, +22290,24782,The Amazing Race: DVD Board Game,2006,80,4.16625,5.45530, +22291,66044,Scary Tales: Prince Charming vs. Hansel,2010,263,5.06245,5.45522,"41334, 42132, 66044, 66045" +22292,320275,Ghost at Home,2021,143,4.73147,5.45514, +22293,14538,Fei Xing Qi,,116,4.56293,5.45513, +22294,8598,Monopoly: Star Trek The Next Generation,1998,140,4.71500,5.45508, +22295,10043,LEGO Racers Super Speedway Game,2001,122,4.60410,5.45500, +22296,201502,Korporacja,2015,77,4.10519,5.45495, +22297,6387,Mr. Mouth,1976,221,4.98450,5.45493, +22298,6420,Cranium Cadoo,2001,669,5.29940,5.45490, +22299,269905,Jokes de Papa: version Sucrée,2017,139,4.70626,5.45489,"238102, 269904, 269905" +22300,139388,Emperor's New Clothes,2014,89,4.28510,5.45487, +22301,7927,Trivial Pursuit: Junior,1992,176,4.86250,5.45481, +22302,3482,Past Lives,1988,107,4.47972,5.45477, +22303,26205,Monopoly: Euro,2000,308,5.11432,5.45457, +22304,15427,The Worst-Case Scenario Survival Card Game: Travel Edition,2002,54,3.51296,5.45455, +22305,420517,Monumental Duel: Exploration,2024,58,3.64655,5.45454,"420517, 420522, 420523" +22306,145106,Raverun,2013,72,3.99514,5.45445, +22307,16937,Basic Training,,210,4.95405,5.45445,"5960, 16937" +22308,133063,The Lord of the Rings: The Complete Trilogy – Adventure Board Game,2012,71,3.96901,5.45429, +22309,2887,The Yeti Slalom,2001,189,4.89592,5.45425, +22310,36229,Toboggans of Doom,2008,126,4.61587,5.45421, +22311,150998,The Tarot of Loka,2014,875,5.33300,5.45407,"150998, 198447, 295477, 341441, 424678" +22312,234372,Plitsch-Platsch Pinguin: Happy Meal Edition,2015,621,5.28259,5.45389,"1439, 234372" +22313,184922,Poopyhead,2015,55,3.51818,5.45385, +22314,2294,Flinch,1903,490,5.23527,5.45362, +22315,146934,Big Deal Card Games,2007,192,4.89471,5.45349,"4068, 19769, 22568, 22571, 22572, 22574, 146934" +22316,2356,Scrabble Sentence Cube Game,1971,148,4.72703,5.45340, +22317,14191,¥€$,2004,145,4.70993,5.45327, +22318,24253,Fleets,2004,127,4.60410,5.45325,"8121, 24253" +22319,1175,Movies and Money,1979,55,3.48309,5.45303, +22320,11778,Cat & Mouse,2001,203,4.91833,5.45295, +22321,92961,Camp Travel Edition,,184,4.86253,5.45291,"28010, 92961" +22322,37305,Halo Interactive Strategy Game,2008,248,5.01431,5.45285, +22323,20824,Saint or Sinner?,2002,69,3.87536,5.45282, +22324,193488,Airlines,2016,108,4.44139,5.45265, +22325,193592,Gas Out,2016,125,4.57728,5.45257, +22326,277084,Black Stories Junior: Ghost Stories,2016,187,4.86513,5.45239,"43171, 168659, 277084" +22327,13271,Frantic Frankfurt,2004,216,4.94208,5.45223, +22328,27443,Baccarat,1890,68,3.82794,5.45212, +22329,255715,Elefantastico,2018,230,4.97154,5.45209,"15505, 255715" +22330,19811,Mix-Max,1972,175,4.81866,5.45196, +22331,2717,Der Herr der Ringe: Die Gefährten,2001,165,4.77970,5.45192, +22332,14708,Battle of the Sexes: IQ Test,2003,51,3.27451,5.45186, +22333,29099,Pola Naftowe,2007,84,4.12976,5.45186, +22334,28231,The Curse of the Ruby Rhino,2007,79,4.04367,5.45178, +22335,5232,Gnip Gnop,1971,171,4.79795,5.45155, +22336,284772,Googly Eyes Showdown,2019,159,4.74591,5.45137,"57215, 284772" +22337,42223,Partini Mixers: Fast and Fabulous,2009,325,5.10607,5.45135,"37000, 42222, 42223" +22338,16232,Flying Hats,1890,143,4.66238,5.45111, +22339,7860,Simpsons Trading Card Game,2003,154,4.71851,5.45109,"2120, 7860" +22340,101335,Scrabble DASH,2009,144,4.66667,5.45104, +22341,247493,Don't Step In It!,2017,53,3.30660,5.45074, +22342,11618,Cranium Zigity,2004,1003,5.33662,5.45049, +22343,1308,Confusion,2000,640,5.27168,5.45041, +22344,404427,Mensch ärgere Dich nicht,1910,72,3.85972,5.45035, +22345,4126,Dixie: The Second War Between the States,1976,142,4.64366,5.45034, +22346,156576,Dragon Line,2014,72,3.85417,5.45018, +22347,274056,HEL: The Last Saga,2023,228,4.94605,5.45017, +22348,19508,Igels: Das Kartenspiel,2005,242,4.97508,5.45016, +22349,4189,Star Wars: Episode I – Battle for Naboo 3-D Action Game,1999,97,4.26082,5.45000, +22350,113436,Genegrafter,2012,65,3.67308,5.44993, +22351,30485,Big Brain Academy Boardgame,2007,145,4.65292,5.44990, +22352,1362,Wit's End,1995,353,5.12205,5.44984, +22353,1256,Star Wars Episode I: Customizable Card Game,1999,159,4.72050,5.44974, +22354,135801,The Hobbit: An Unexpected Journey – The Board Game,2012,46,2.91768,5.44951, +22355,34160,24 Card Game,2007,43,2.73163,5.44934,"27335, 34160" +22356,1148,Eagle Kingdoms,1994,59,3.46610,5.44928, +22357,11532,The Eagle and the Sun,1991,73,3.84384,5.44920, +22358,17965,The Game of Life: Spongebob Squarepants Edition,2004,145,4.64038,5.44916, +22359,202254,The Bird Told Me to Do It,2016,223,4.92323,5.44916, +22360,171090,Monopoly Junior: Disney Frozen,2014,83,4.03133,5.44899, +22361,173899,The Sherlock Holmes Puzzle Case,2014,93,4.17634,5.44870, +22362,287002,Marram,2018,87,4.08610,5.44861, +22363,6521,Magdar,2003,555,5.23498,5.44860, +22364,5029,Monopoly: Star Wars Episode I,1999,597,5.24863,5.44832, +22365,406282,Triominos Conquest,2023,3065,5.40940,5.44831,"4040, 406282" +22366,6532,Monopoly: Australian Edition,1978,116,4.41810,5.44820, +22367,255335,Shit Happens: Too Shitty for Work,2018,1772,5.38061,5.44813,"196379, 255310, 255335, 282594, 290163, 334421, 409541, 433303" +22368,209945,Pretending to Grownup,2017,206,4.86655,5.44807, +22369,145259,Jenga: Tetris,2013,235,4.93816,5.44805, +22370,5284,Star Trek: The Next Generation Game of the Galaxies,1993,75,3.84893,5.44801, +22371,12276,Hyborian Gates,1995,73,3.80411,5.44798, +22372,262397,Mystery Date: Catfished,2018,133,4.54248,5.44780,"7314, 262397" +22373,6764,The Six Million Dollar Man,1975,119,4.43550,5.44778, +22374,3820,Star Fleet Missions,1992,151,4.64868,5.44770, +22375,7399,The Allowance Game,1979,80,3.93025,5.44739, +22376,10506,Blue Marble,1982,127,4.48606,5.44709, +22377,130240,Monopoly Millionaire,2012,345,5.09079,5.44676, +22378,8432,Sorry! The Disney Edition,2001,219,4.88534,5.44671, +22379,192265,Disturbed Friends: Mini Game & Expansion,2016,355,5.10010,5.44667,"173075, 192265" +22380,11824,Spejle Æg,,72,3.73667,5.44663, +22381,5959,Scrimmage: Tactical Professional Football,1973,87,4.03103,5.44661, +22382,262624,Ghost Star,,31,1.46774,5.44653, +22383,286403,Never Have I Ever: Girls Edition,2014,207,4.84957,5.44644,"170274, 286403, 286532" +22384,23946,Na Sygnale,2006,140,4.56321,5.44640, +22385,8063,Ghettopoly,2003,122,4.43279,5.44639, +22386,101988,Storm the Castle!,2013,152,4.63224,5.44636, +22387,160541,Paw Patrol Adventure Game,2014,75,3.79493,5.44631, +22388,412059,Bop-It!: Star Wars BB-8 Edition,2016,335,5.07619,5.44626,"95710, 183612, 400670, 412059, 414898" +22389,336705,"New Phone, Who Dis?: Family Edition",2020,273,4.99194,5.44624,"287810, 336705" +22390,242994,Onimaru,,54,3.14815,5.44620, +22391,2817,Delta V,2001,238,4.92399,5.44613, +22392,13447,Harry Potter and the Sorcerer's Stone The Game,2000,78,3.85218,5.44610, +22393,8658,Monopoly: French,1982,119,4.39950,5.44601, +22394,16807,Swipe,2004,186,4.77522,5.44592, +22395,11863,Rock Paper Scissors,1968,77,3.82338,5.44584, +22396,7600,Star Trek: The Next Generation,1993,95,4.13053,5.44583, +22397,29505,Monopoly: Banking,2005,131,4.49115,5.44579, +22398,15634,Barnfinans,1995,434,5.15758,5.44578,"6614, 9392, 15634" +22399,13356,Yes! No! Game,1994,90,4.05556,5.44576, +22400,20647,Fart!,2007,66,3.54449,5.44561, +22401,94481,Count Your Chickens!,2010,221,4.87719,5.44555, +22402,30281,Geheime Welt Idhun,2007,45,2.65244,5.44551, +22403,327788,Bluey: Shadowlands Board Game,2020,56,3.19536,5.44538, +22404,7720,The Prince: The Struggle of House Borgia,2003,295,5.01763,5.44531, +22405,19614,The Pumpkin King,2005,46,2.69789,5.44522, +22406,379393,Questions de Merde: Spécial Geek,2018,109,4.28526,5.44519,"69676, 379393" +22407,1837,Word Yahtzee,1978,322,5.05101,5.44500, +22408,128185,Don't Rock the Boat,2012,289,5.00581,5.44498, +22409,40347,Monopoly: Here and Now – The World Edition,2008,366,5.09794,5.44494, +22410,299556,Exploration: Warzone,2022,66,3.51821,5.44488, +22411,4376,Kings in the Corner,1996,508,5.19341,5.44467, +22412,143508,World War Z: The Game,2013,122,4.39631,5.44456, +22413,13373,Choco,1977,141,4.53667,5.44451, +22414,16428,Mr. Bucket,1991,63,3.40794,5.44438, +22415,3390,Friends,1999,96,4.10521,5.44427, +22416,42968,Pressure Matrix,2010,133,4.47747,5.44426, +22417,141636,Fairytale Games: The Battle Royale,2014,87,3.96552,5.44423, +22418,378010,Color Flush,2023,146,4.56301,5.44423, +22419,1073,Der Schatz der Inka,1987,312,5.03029,5.44404, +22420,281,Ostindiska kompaniet,1991,175,4.70000,5.44359, +22421,23694,Pirates of the Caribbean DVD Treasure Hunt,2006,209,4.81900,5.44343, +22422,70329,Conan: el juego de cartas,2011,98,4.10977,5.44335, +22423,2431,Bargain Hunter,1981,184,4.73288,5.44333, +22424,11370,The Civil War: The War That Pitted Brother Against Brother,1991,53,2.97113,5.44320, +22425,258723,ToeShamBo,2019,207,4.80663,5.44290, +22426,1724,Bureaucracy,1981,97,4.08314,5.44283, +22427,286264,The Office: Downsizing Game,2019,83,3.85301,5.44280, +22428,376574,Splash Down,2022,49,2.74694,5.44274, +22429,313850,Escape The Night: The Board Game,2020,166,4.64608,5.44268, +22430,22770,Mad Libs Card Game,2002,79,3.76684,5.44261, +22431,353799,Rolling Pins,2021,143,4.50921,5.44217, +22432,207848,The World Council,2017,85,3.87212,5.44215, +22433,127533,Angry Birds: Space,2012,86,3.88605,5.44199, +22434,89550,Battle of the Sexes: The Battle Continues,2008,65,3.37846,5.44186, +22435,1959,Myst,1998,81,3.77285,5.44141, +22436,1647,Spammers,1998,111,4.22324,5.44138, +22437,313442,Pugs in Mugs,2020,208,4.78740,5.44106, +22438,350604,Regidice,2021,104,4.13269,5.44102, +22439,7999,Airlines: United States Set 2,1998,201,4.76398,5.44101,"2275, 7999" +22440,392494,The Grand Siberian,2024,35,1.54286,5.44086, +22441,369336,Herd,2022,61,3.18852,5.44045, +22442,2433,Halloween Party,2000,79,3.70127,5.44044, +22443,32670,Barista,2007,112,4.21319,5.44042, +22444,141035,Space Sheep!,2013,300,4.98191,5.44038, +22445,180611,Evil Genius: Deathray,2015,149,4.51631,5.44032, +22446,221918,All Hail King Julien,2016,176,4.65748,5.44028,"166658, 221918" +22447,19560,Zathura: Adventure Is Waiting,2005,150,4.51763,5.44002, +22448,359194,Jumanji,2021,191,4.71545,5.44001, +22449,19409,Mouse Chaos,2003,207,4.77053,5.43993, +22450,1902,Mad Scientist,2000,109,4.16743,5.43987, +22451,13782,Trivial Pursuit: SNL DVD Edition,2003,151,4.52053,5.43982, +22452,292732,Hedbanz Adulting,2019,1596,5.35264,5.43974,"1855, 23049, 200296, 292732, 403353, 403354, 405366, 405367, 405368, 405369, 405371, 405372, 405373, 405374" +22453,137168,Klugscheisser 2: Edition Krasses Wissen,,125,4.32560,5.43963,"125083, 137168" +22454,295484,Risk Junior,2019,161,4.57427,5.43960, +22455,29405,Transformers 3D Battle Card Game,2007,72,3.50153,5.43951, +22456,46744,Race 3000,2009,206,4.76044,5.43937, +22457,1326,MacGregor,1998,287,4.95178,5.43934, +22458,93522,Tetris: The Card Game,2011,149,4.49819,5.43922, +22459,270846,Warmaster Chess 2000: Variants,1998,54,2.84241,5.43921,"12691, 270846" +22460,252554,Citadel Combat Cards,2017,165,4.58933,5.43921,"8031, 252554" +22461,144557,Where Art Thou Romeo?,2013,298,4.96799,5.43914, +22462,155582,ERA,,48,2.49687,5.43878, +22463,116823,Dark Legacy,2012,61,3.11475,5.43855,"116823, 240142, 248204, 248205, 248206" +22464,266031,Meme: The Game – Disney Edition,2018,157,4.53195,5.43831,"229902, 266031" +22465,128565,Evil Baby Orphanage,2012,664,5.22321,5.43813, +22466,27826,What's Yours Like?,2007,434,5.10855,5.43802, +22467,2485,Game of the States,1940,214,4.76936,5.43797, +22468,2242,Creatures & Cultists,1993,366,5.04547,5.43776, +22469,15064,Pimp: The Backhanding,2005,541,5.17013,5.43733, +22470,318293,Connect 4 (Revised Second Edition),2009,801,5.25681,5.43732,"65262, 318293" +22471,180024,500 Malicious Cards,2014,144,4.42899,5.43707, +22472,13508,Boggle Jr.,1988,153,4.48693,5.43699, +22473,7584,Electric Football,1948,246,4.84478,5.43686, +22474,19377,Rock Paper Scissors Game,2005,35,1.27429,5.43684, +22475,15728,Magnetic Jack Straws,1920,202,4.71510,5.43680,"5253, 15728" +22476,786,Maxi Bour$e,1987,157,4.50490,5.43659, +22477,193141,The Game of Life Junior,2014,120,4.20292,5.43586, +22478,24000,Monopoly: Nintendo,2006,304,4.94865,5.43580, +22479,7422,Mid-Life Crisis,1982,100,3.95460,5.43579, +22480,27960,Wizardology: The Game,2007,170,4.56441,5.43578, +22481,395847,Space Marine: The Board Game,2023,74,3.43243,5.43574, +22482,18750,Dragonriders,2005,364,5.02711,5.43555, +22483,15804,Hidden Conflict,2005,130,4.28538,5.43520, +22484,101420,Ninety-Nine,,177,4.59062,5.43520, +22485,46747,Magikus,2009,202,4.69356,5.43507, +22486,137336,Archer: The Danger Zone! Board Game,2014,219,4.74954,5.43493, +22487,1095,Mystery on the Nile,1996,87,3.70943,5.43492, +22488,313822,Tic Tac Match,2020,148,4.41574,5.43463, +22489,33198,Osada,2007,78,3.49359,5.43438, +22490,3702,Topple,1983,528,5.14758,5.43436, +22491,242615,Clue Jr.: Spongebob Squarepants Edition – The Case of the Missing Jellyfish Net,2011,775,5.23872,5.43429,"5591, 9852, 76101, 242615" +22492,2740,Jumbo Jet,1975,282,4.89352,5.43394, +22493,1147,Outrage! Steal the Crown Jewels,1992,328,4.96905,5.43390, +22494,16387,3D Tic Tac Toe,1953,128,4.22988,5.43323, +22495,3736,Gooey Louie,1995,109,4.01238,5.43288, +22496,3549,Superpower,1986,141,4.33241,5.43274, +22497,249816,Taco vs Burrito,2018,504,5.12371,5.43253, +22498,23388,Ninja Galaxy,2006,75,3.35067,5.43232, +22499,118955,Zombie! Run for Your Lives!,2012,165,4.48364,5.43215, +22500,27322,Monopoly: Chocolate,2006,54,2.52778,5.43201, +22501,12545,The Game of Life: The Simpsons Edition,2004,435,5.07087,5.43192, +22502,310408,The Shining: Escape from the Overlook Hotel,2020,120,4.11108,5.43132, +22503,2044,"Non-Violent, Politically-Correct War",1996,67,3.06433,5.43125, +22504,11739,Madeline's House,1996,178,4.53763,5.43106,"10613, 11739" +22505,154174,The Big Bang Theory: Rock! Paper! Scissors! Lizard! Spock! Dice Game,,93,3.70968,5.43062, +22506,349676,I.Q. 2000 Trans Canada Trivia,,370,4.99543,5.43026,"8983, 324594, 349676" +22507,308357,Con Sonar!,2011,78,3.36410,5.43014, +22508,2482,Zaxxon,1982,148,4.34010,5.43007, +22509,134815,The Hobbit: An Unexpected Journey – Adventure Board Game,2012,79,3.38734,5.43004, +22510,4694,Friends Trivia Game,2002,162,4.42963,5.42976, +22511,3696,Channel Surfing,1994,134,4.21955,5.42970, +22512,162093,I Hate Zombies,2015,560,5.14002,5.42968, +22513,172032,Bottlecap Vikings,2015,497,5.10072,5.42922, +22514,2573,"Rivers, Roads & Rails",1969,628,5.16904,5.42918, +22515,84730,Doggie Doo,2010,199,4.60670,5.42906, +22516,170407,Story War: Sentinel Conflict,2015,321,4.91916,5.42905,"137550, 170407" +22517,35282,Abundance,2007,777,5.21728,5.42877,"6552, 11200, 35282" +22518,6090,Pack of Flies,2003,339,4.94189,5.42849, +22519,4476,Hot Potato,1988,149,4.32081,5.42845, +22520,8633,Monopoly: Disney,2001,653,5.17487,5.42827, +22521,46748,Robo Champ,2009,191,4.56141,5.42823, +22522,12063,There's a Moose in the House,2004,938,5.25139,5.42813, +22523,12422,All Wound Up,2004,319,4.90784,5.42806, +22524,22188,Swap! (2-10p),,310,4.89238,5.42802,"4062, 22188" +22525,14076,The Ladybug Game,2004,191,4.55738,5.42792, +22526,6785,Big Brother: The Game,2000,80,3.34375,5.42773, +22527,184078,Awkward Family Photos Card Game,2013,259,4.77794,5.42711,"103261, 184078, 193013, 287406, 287407" +22528,9464,Teenage Mutant Ninja Turtles: Pizza Power Game,1987,261,4.77854,5.42667, +22529,3394,Monopoly: The Simpsons,2001,819,5.21983,5.42659, +22530,211534,Bears vs Babies,2017,5015,5.39256,5.42641, +22531,308263,Dylematy 2,2020,220,4.64818,5.42583,"167715, 308263" +22532,3344,Lone Wolf and Cub Game,1989,151,4.28861,5.42558, +22533,2130,Young Jedi: Collectible Card Game,1999,374,4.96645,5.42556, +22534,13285,Dungeonville,2004,318,4.88506,5.42550, +22535,698,Gother Than Thou,2000,213,4.61839,5.42548, +22536,6597,E.T.: The Extra-Terrestrial,1982,97,3.64948,5.42533, +22537,1692,Spoons,1972,629,5.15123,5.42528, +22538,4110,X-Men Trading Card Game,2000,124,4.03282,5.42516, +22539,9927,Adverteasing Junior,1989,150,4.27280,5.42507,"9516, 9927" +22540,15278,Law & Order Game,2004,58,2.43914,5.42493, +22541,1817,Devil Bunny Hates the Earth,2001,306,4.85693,5.42469, +22542,6447,Time Control,2003,53,2.14491,5.42465, +22543,249735,Solo Sonderedition,2018,1297,5.28852,5.42389,"3347, 171368, 249735, 291297" +22544,206274,Single Card Game,2016,115,3.86957,5.42258, +22545,36783,Jishaku,2008,457,5.02986,5.42226, +22546,3845,Yahtzee Jr.,1988,476,5.04401,5.42200, +22547,6749,Busen Memo,2001,297,4.81164,5.42148, +22548,198598,Star Wars: Hands Down Game,2015,395,4.96086,5.42118,"7709, 64875, 198598" +22549,218358,Harry Potter: Magical Beasts Board Game,2016,147,4.18367,5.42114, +22550,8784,Po-Ke-No,1930,225,4.61129,5.42102, +22551,5129,The Simpsons: LOSER Takes All!,2001,126,3.97151,5.42084, +22552,99918,W.W.B,2011,48,1.59375,5.42038, +22553,12746,Dreidel,1500,125,3.94000,5.41981, +22554,231954,Legends of the Hidden Temple,2017,119,3.86451,5.41977, +22555,27190,Battleships,1931,241,4.64946,5.41955, +22556,9319,The Train Game,1997,714,5.15917,5.41944,"9319, 10502, 24120, 192079" +22557,3122,Doctor Who Collectible Card Game,1996,105,3.64905,5.41942, +22558,30182,Junior True or False,1997,154,4.20032,5.41866,"2000, 30182" +22559,254617,Monopoly: Cheaters Edition,2018,515,5.05306,5.41843, +22560,9812,Gone Fishin',1890,140,4.07221,5.41831, +22561,3602,Kriegspiel,1970,315,4.81689,5.41793, +22562,14436,Travel TriBond,1994,1374,5.27916,5.41756,"1962, 5427, 14436" +22563,278139,Escape from the Grand Hotel: The Escape Room Game,2018,131,3.96427,5.41747, +22564,1170,Trick 'r Treat,1998,204,4.48196,5.41728, +22565,152488,Funny or Die,2013,108,3.64354,5.41697, +22566,160757,The Sneaky Snacky Squirrel Card Game,2014,677,5.13399,5.41695,"93688, 160757" +22567,8039,Trivial Pursuit: DVD – Pop Culture Game,2003,460,4.99707,5.41638, +22568,265316,Black Mirror: NOSEDIVE,2018,144,4.07120,5.41605, +22569,6284,Shark Attack!,1988,273,4.70385,5.41575, +22570,7098,Monopoly: Deluxe Edition,1995,1364,5.27291,5.41562, +22571,149051,Surprise Slides Game,2013,156,4.16723,5.41558, +22572,352781,Sloth in my Broth,2019,405,4.93437,5.41552,"198961, 352781" +22573,13945,Trivial Pursuit: 90's Time Capsule Edition,2004,814,5.17398,5.41496, +22574,3419,Star Trek: The Game,1992,187,4.36364,5.41479, +22575,358340,Anastyr,2023,94,3.30851,5.41419, +22576,9666,Greed Quest,2004,250,4.61768,5.41373, +22577,203739,Evil Dead 2: The Official Board Game,,63,2.25397,5.41371, +22578,185154,Wizard School,2016,297,4.73815,5.41310, +22579,294880,Chai: Tea for 2,,178,4.28663,5.41308, +22580,372250,Watch Ya' Mouth: Ultimate Edition,2019,267,4.66117,5.41298,"214899, 232099, 372250" +22581,3285,Star Wars: Jedi Unleashed,2002,333,4.80733,5.41262, +22582,53317,Pictureka! Card Game,2008,591,5.07027,5.41236, +22583,28718,Kanji Battle,2007,198,4.38862,5.41215, +22584,4165,Spare Time Bowling,1940,140,3.95814,5.41178, +22585,17451,Wench,2005,225,4.50612,5.41167, +22586,21239,Rocketville,2006,600,5.06972,5.41118, +22587,6201,Dante's Inferno,2003,304,4.73697,5.41115, +22588,152955,DogFight WW1,2013,148,4.02345,5.41098, +22589,72660,Electronic Toss Across,2009,210,4.42226,5.41007,"6898, 72660" +22590,344837,Penalty Challenge: Teams,2021,114,3.57544,5.40937,"321928, 344837" +22591,3515,"Men Are from Mars, Women Are from Venus",1998,142,3.92704,5.40879, +22592,32236,Grzybobranie,1975,193,4.30881,5.40803, +22593,8486,Bed Bugs,1985,218,4.43211,5.40779, +22594,422751,Das Nilpferd in der Achterbahn Kids,2023,364,4.82277,5.40770,"4587, 4596, 422751" +22595,265584,Bucket of Doom: Toxic Edition,2018,440,4.92256,5.40750,"166081, 265584" +22596,6668,Bibleopoly,1991,122,3.65787,5.40747, +22597,425683,Name 5: Pop Culture Party Edition,2014,338,4.77488,5.40733,"89340, 425683" +22598,306555,Punderdome: Deluxe Edition,2016,332,4.76147,5.40708,"202771, 306555" +22599,18901,Monopoly: Here and Now,2005,517,4.99093,5.40679, +22600,2767,Snail's Pace Race,1985,747,5.11582,5.40602, +22601,373107,Elden Ring: The Board Game,2024,132,3.73869,5.40467, +22602,337503,Cardiceo,2016,116,3.50802,5.40463, +22603,28257,Intelligent Design vs. Evolution,2006,62,1.82097,5.40371, +22604,5788,Battle of the Sexes Card Game,2001,117,3.50470,5.40368, +22605,24224,Anasazi: Lost Pueblos of the Ancients,2006,475,4.93034,5.40273, +22606,26696,Monopoly: Star Wars Limited Collector's Edition,1996,1188,5.21295,5.40242, +22607,7822,Buffy the Vampire Slayer: The Board Game,2000,160,3.99377,5.40230, +22608,164043,The Twilight Saga 3 Game Collection,2010,105,3.24095,5.40165,"41068, 63379, 69827, 164043" +22609,29653,The Very Hungry Caterpillar Game,2006,135,3.71027,5.40105, +22610,18041,Bunco Party,2004,137,3.73307,5.40094, +22611,10320,Lucky Ducks,1995,187,4.17733,5.40082, +22612,186074,The Big Bang Theory: Fact or Fiction Card Game,2012,211,4.30863,5.40016,"115793, 186074" +22613,204887,Potions Brew,2016,125,3.53944,5.39922, +22614,18044,BreaKey,2003,61,1.52623,5.39763, +22615,5122,Charades,1550,637,5.02188,5.39654, +22616,5367,Chomp!,2000,348,4.70747,5.39611, +22617,197585,Caca: El Juego,2016,406,4.80473,5.39594,"155081, 197538, 197585, 199935, 246702" +22618,4492,Trivial Pursuit: 20th Anniversary Edition,2002,1474,5.23285,5.39585, +22619,8569,The Haunting House,2003,750,5.07508,5.39574, +22620,2980,The Simpsons Trivia Game,2000,276,4.50902,5.39410, +22621,2878,ThinkBlot,1997,246,4.39913,5.39391, +22622,182604,The Princess Bride: Prepare to Die! Again!!,2015,132,3.53856,5.39384,"137348, 182604" +22623,41259,Ramses Pyramid,2009,590,4.97793,5.39367, +22624,27959,Pirateology: The Game,2007,172,3.95959,5.39311, +22625,3422,Fantasy,2001,645,5.01017,5.39297, +22626,6485,Quidditch: The Game,2000,99,2.86798,5.39169, +22627,339107,くまきちファミリーの最高のティータイム (Kmakici Family's Greatest Teatime),2021,100,2.88500,5.39135, +22628,11415,Warriors,2004,642,4.99905,5.39093, +22629,4907,PAC-MAN Game,1982,527,4.91138,5.39053, +22630,229684,Tjuv och polis: Kortspel,2013,262,4.41832,5.38968,"10709, 38738, 229684" +22631,399,Tom Clancy's Politika,1997,224,4.24897,5.38927, +22632,3504,Super Deck!,1994,83,2.28783,5.38844, +22633,24783,24 DVD Board Game,2006,84,2.31840,5.38822, +22634,10453,Crocodile Dentist,1991,480,4.84663,5.38746, +22635,166278,Feed the Kitty (2-6p),2003,490,4.85754,5.38744,"22861, 166278" +22636,41541,Are You the Traitor?,2009,746,5.03436,5.38621, +22637,171317,The Logo Board Game MiniGame,2010,1200,5.16743,5.38620,"64204, 171317" +22638,6711,Hit the Deck,2001,270,4.41295,5.38610, +22639,32260,The Club,2008,258,4.34502,5.38382, +22640,430966,UNO: All Wild! Grogu!,2022,336,4.58260,5.38336,"352997, 430966" +22641,212436,Big Time Soccer,2016,125,3.20080,5.38182, +22642,101737,Angry Birds: Card Game,2011,384,4.66779,5.38124, +22643,240624,Overturn: Rising Sands,,72,1.56944,5.38103, +22644,2688,Battlestar Galactica,1978,212,4.08420,5.38084, +22645,212027,Balloon Pop!,2017,482,4.81015,5.38077, +22646,125879,Fallen City of Karez,2012,304,4.47125,5.38021, +22647,4041,Go to the Head of the Class,1936,368,4.62613,5.37977, +22648,99079,The Walking Dead Board Game,2011,701,4.98411,5.37977, +22649,320795,Beat the Parents: Ask Me Anything,,287,4.41035,5.37943,"20422, 320795, 324925" +22650,9214,Manga Manga,2004,246,4.23654,5.37825, +22651,23499,Deal or No Deal,2006,197,3.94477,5.37763, +22652,120426,Redshirts,2012,376,4.62634,5.37755, +22653,18686,Gazdálkodj Okosan!,1960,332,4.51175,5.37566, +22654,126207,Deer in the Headlights Game,2012,511,4.81170,5.37518, +22655,316555,The Umbrella Academy Game,2020,134,3.18940,5.37315, +22656,126444,The Hobbit Card Game,2012,1551,5.18421,5.37304, +22657,127052,DICEcapades! Quick Play Edition,2009,910,5.04895,5.37240,"29613, 35042, 127052" +22658,3623,Survivor,2000,209,3.94786,5.37106, +22659,2770,Stay Alive,1965,944,5.05329,5.37028, +22660,10400,Patience,1783,601,4.86433,5.36862, +22661,2910,Power Lunch,1994,117,2.76761,5.36810, +22662,4127,Arne,2002,181,3.67831,5.36746, +22663,17250,Monopoly: London,1972,369,4.52558,5.36562, +22664,7972,Crocodile Pool Party,1968,340,4.44362,5.36430, +22665,4004,Harry Potter and the Sorcerer's Stone Quidditch Card Game,2000,289,4.26204,5.36217, +22666,230864,WTF: (What the Fish!),2017,182,3.61407,5.36209, +22667,10484,Rhein-Reise,1953,838,4.98228,5.36204,"2484, 6787, 10484, 12822, 25387, 27374" +22668,2979,Bionicle Adventure Game: Quest For Makuta,2001,280,4.22119,5.36158, +22669,258302,Pug You!,2018,126,2.82344,5.36137, +22670,417,Edison & Co.,1998,371,4.49154,5.36028, +22671,4845,Star Wars: Escape from Death Star Game,1977,604,4.81899,5.35869, +22672,24067,Dragonology: The Game,2006,442,4.61627,5.35790, +22673,10712,Bondespelet,1953,367,4.44527,5.35523, +22674,3804,Slamwich,1994,1401,5.11626,5.35500, +22675,1426,Lord of the Rings: The Search,2001,1156,5.06095,5.35343, +22676,1422,Wadjet,1996,230,3.87709,5.35286, +22677,50849,Le Boomb!,2009,391,4.48165,5.35241, +22678,297481,If you had to...,2017,330,4.31512,5.35171,"193295, 297481" +22679,248702,Trivial Pursuit: Classic Edition,2016,9197,5.31256,5.35014,"2952, 3214, 21459, 29338, 149328, 209772, 216557, 248702, 275452, 289517, 302337, 338731, 340510, 399167" +22680,36611,Monopoly: The Portable Property Trading Game,1994,358,4.38352,5.35001, +22681,89962,Angry Birds: Knock on Wood,2011,448,4.56777,5.34839, +22682,189489,Grand Bazaar,2015,171,3.26754,5.34593, +22683,5546,Marbles,-3000,561,4.71121,5.34570, +22684,1527,Bitin' Off Hedz,1996,480,4.59319,5.34381, +22685,4910,Wheel of Fortune,1975,468,4.57017,5.34317, +22686,267021,Pie Face Cannon!,2018,575,4.71241,5.34285,"18755, 208583, 267021" +22687,31145,Are You Smarter Than a 5th Grader?,2007,311,4.17318,5.34237, +22688,6549,Pretty Pretty Princess,1990,354,4.31395,5.34220, +22689,4367,Nero: Legacy of a Despot,2002,229,3.73166,5.34031, +22690,166239,Scrabble Slam! (2-6p),2008,1753,5.12971,5.34011,"40508, 166239" +22691,32863,Quelf Jr.,2007,3048,5.21799,5.33948,"19370, 32863, 61916" +22692,226464,Castle Assault: Fell Fire Forge,2017,258,3.89860,5.33891,"154674, 226464" +22693,89953,Carcassonne: The Dice Game,2011,908,4.92481,5.33754, +22694,258855,Stupid Deaths,2018,394,4.38107,5.33677, +22695,144110,Oneupmanship: Mine's Bigger,2013,90,1.14556,5.33649, +22696,42050,Eurobusiness,1983,604,4.71124,5.33633, +22697,402339,Rock ‘Em Sock ‘Em Robots Fight Cards,2024,492,4.56677,5.33595,"7308, 152463, 402339" +22698,3934,Bowling Dice,1999,524,4.60598,5.33451, +22699,11416,Burn in Hell,2004,417,4.41211,5.33345, +22700,354202,Elefun Flyers,2021,453,4.45682,5.32877,"7320, 354202" +22701,65611,Cthulhu Dice,2010,2860,5.18608,5.32624, +22702,2004,Titanic: The Board Game,1998,415,4.35602,5.32557, +22703,8487,Ants in the Pants,1969,378,4.25286,5.32441, +22704,2502,Global Survival,1992,123,2.03049,5.32437, +22705,244216,Shark Bite,2017,405,4.30196,5.32108,"35173, 244216" +22706,32032,Monopoly: Electronic Banking,2007,950,4.88032,5.31924, +22707,182875,Hengist,2015,776,4.78135,5.31910, +22708,175512,A Chaotic Life!,2015,187,3.07342,5.31804, +22709,6535,Don't Wake Daddy,1992,494,4.45953,5.31648, +22710,38558,Pogs,1920,295,3.87740,5.31602, +22711,15613,Scruples: Millennium Edition,1999,874,4.81827,5.31268,"1748, 15613, 35310" +22712,82138,CSI: Crime Scene Investigation – The Crime Game,2004,307,3.89746,5.31178,"10715, 82138" +22713,113819,Tenzi,2011,1318,4.98204,5.31167, +22714,29096,Letter of Marque,2009,747,4.72952,5.31153, +22715,3074,Uncle Wiggily,1916,369,4.11794,5.30941, +22716,3052,Sim City: The Card Game,1994,472,4.36992,5.30805, +22717,764,Mad Gab,1996,1650,5.03887,5.30771, +22718,5015,Don't Spill the Beans,1957,389,4.15961,5.30658, +22719,9004,Pop-Up Pirate!,1975,621,4.56554,5.30180, +22720,23964,The Game of Life (40th Anniversary Edition),1999,621,4.56276,5.30121, +22721,1511,Outdoor Survival,1972,1041,4.86032,5.30109, +22722,225981,Penguin Trap,2017,2000,5.06848,5.29961,"4888, 225981, 268008, 380367" +22723,8392,Buckaroo!,1970,620,4.55382,5.29956, +22724,141019,Thermopyles,2013,345,3.93228,5.29604, +22725,1604,The Mad Magazine Game,1979,1622,5.00264,5.29466, +22726,17003,Snap,1866,277,3.54404,5.29031, +22727,7601,Urban Myth,2002,258,3.40306,5.28906, +22728,5458,EuroHit,1992,285,3.57147,5.28793,"1094, 5458" +22729,8632,Travel Aggravation,1980,1331,4.89823,5.27982,"2272, 8632" +22730,155250,TseuQuesT,2024,216,2.92042,5.27914, +22731,419763,Wonders of The First CCG,2024,136,1.50809,5.27775, +22732,2456,The Hobbit: The Defeat of Smaug,2001,1286,4.86011,5.27096, +22733,316165,What Do You Meme?: BSFW Edition,2018,3378,5.10788,5.26700,"226610, 311659, 316165, 325179, 326125, 353229, 396537, 421585" +22734,11028,Lotto,1530,346,3.67341,5.26176, +22735,24959,Lost: The Game,2006,333,3.58572,5.25852, +22736,338067,6: Siege – The Board Game,2024,744,4.46366,5.24727, +22737,1298,Monopoly: Star Wars,1997,1944,4.92988,5.23927, +22738,292653,Man Bites Dog: Deluxe Edition,2014,931,4.58682,5.23742,"4035, 268837, 292653" +22739,166429,Who Wants to Be a Millionaire (Second Edition),2001,1071,4.59120,5.21185,"4077, 166429" +22740,3343,Go For Broke,1965,1483,4.76209,5.21125, +22741,13166,Let's Go Fishin',1979,773,4.34689,5.21058, +22742,1824,Trump: The Game,1989,777,4.32147,5.20305, +22743,6546,Labyrinth,1940,1270,4.64832,5.19760, +22744,292733,Would You Rather...? Prove It,2019,853,4.37756,5.19699,"677, 21866, 165294, 228895, 257803, 292733" +22745,379644,Roller Coaster Rush,2023,445,3.62018,5.19601,"232895, 379644" +22746,387485,Pocket Ungame: All Ages Version,1983,348,3.12526,5.18871,"6283, 33066, 387485, 387488" +22747,8689,Bunco,1855,352,3.14440,5.18814, +22748,357874,Fingerlings: Treetop Fall Game,2016,1746,4.76561,5.18361,"3728, 70174, 357874" +22749,13805,The Lord of the Rings: The Return of the King,2004,405,3.37970,5.18334,"4724, 7467, 13805" +22750,390609,Suuri Kahvisafari,,1574,4.70854,5.17899,"5130, 20281, 229683, 265810, 368910, 390609" +22751,2956,Dirty Minds: The Game of Naughty Clues,1990,654,4.02075,5.17325, +22752,1923,MindTrap,1991,1951,4.78000,5.17008, +22753,12205,In a Pickle,2004,1595,4.66466,5.15852, +22754,10816,Blackjack,1700,2065,4.75337,5.14733, +22755,238250,Porsta,,729,4.02745,5.14639,"4792, 238250" +22756,227510,Fact or Crap: Hollywood,2012,716,3.81985,5.10203,"3990, 227510" +22757,5314,Hangman,1976,1145,4.22679,5.07766, +22758,367987,Jumanji,2019,1539,4.44088,5.07616,"1751, 367987" +22759,359751,Top Trumps: Indiana Jones Mini-Game,2008,1199,4.24064,5.06929,"7262, 255727, 359751" +22760,276022,Alien: USCSS Nostromo,2019,277,1.24765,5.04412, +22761,5050,The Worst-Case Scenario Survival Game,2001,664,3.37304,5.02460, +22762,261955,Anti-Monopoly Luxus-Edition,1988,985,3.72956,4.97023,"1930, 1931, 1932, 261955" +22763,263733,Monopoly Junior Game: Disney/Pixar Incredibles 2 Edition,2017,2022,4.33795,4.95720,"5339, 151220, 226490, 263733, 380655, 415715" +22764,4149,Barrel of Monkeys,1965,918,3.56334,4.94869, +22765,11821,Jotto,1956,12374,4.84374,4.94686,"2425, 4122, 4781, 6725, 6837, 11821, 16067, 17106, 24009, 40851, 65629, 85558, 159843, 165274, 194924, 300379, 309094, 320831, 327900, 400406, 413401" +22766,15549,Roulette,1796,931,3.35135,4.88217, +22767,6424,Pick Up Sticks,1850,2935,4.33421,4.84725, +22768,6932,Hi Ho! Cherry-O,1960,1283,3.60486,4.82267, +22769,3510,Battle of the Sexes,1997,1192,3.49232,4.81600, +22770,114043,Maulwurf Würfel Puzzle,2001,1245,3.52912,4.80915,"4378, 8676, 13402, 15599, 114043" +22771,429874,Candy Land: Bluey,2024,12348,4.60382,4.74488,"2719, 5048, 33568, 296226, 309097, 400885, 403379, 429874" +22772,345111,Hungry Hungry Hippos Launchers,2021,3087,4.13634,4.71954,"5895, 38561, 345111" +22773,231939,The Oregon Trail: Hunt for Food Card Game,2017,3828,4.21958,4.70104,"205322, 231939" +22774,433816,Operation: Fallout S.P.E.C.I.A.L. Edition,2017,5286,4.31418,4.67445,"3737, 5588, 27982, 33292, 37246, 264716, 325732, 332259, 433816" +22775,11725,Mouse Trap Card Game,2002,3781,4.14947,4.66121,"2679, 11725, 24985, 184159" +22776,414696,LCR Wild,2012,2403,3.65013,4.55617,"3522, 137481, 414696"