diff --git a/digital_land/commands.py b/digital_land/commands.py index c79f24179..5f92dc0ca 100644 --- a/digital_land/commands.py +++ b/digital_land/commands.py @@ -140,8 +140,16 @@ def pipeline_run( default_values = pipeline.default_values(endpoints=endpoints) combine_fields = pipeline.combine_fields(endpoints=endpoints) + lpa_geometry_path = "var/cache/lpa-geometry.csv" + local_authority_path = "var/cache/local-authority.csv" # load organisations - organisation = Organisation(organisation_path, Path(pipeline.path)) + organisation = Organisation( + organisation_path, + Path(pipeline.path), + None, + lpa_geometry_path, + local_authority_path, + ) # load the resource default values from the collection if not endpoints: diff --git a/digital_land/datatype/point.py b/digital_land/datatype/point.py index fc1b27dc4..4c1089336 100644 --- a/digital_land/datatype/point.py +++ b/digital_land/datatype/point.py @@ -3,12 +3,12 @@ class PointDataType(WktDataType): - def normalise(self, values, default=["", ""], issues=None): + def normalise(self, values, default=["", ""], issues=None, boundary=None): if not values or "" in values: return default point = f"POINT ({values[0]} {values[1]})" - point = super().normalise(point, issues=issues) + point = super().normalise(point, issues=issues, boundary=boundary) if not point: return default diff --git a/digital_land/organisation.py b/digital_land/organisation.py index a9b3dfa6c..c923d6432 100644 --- a/digital_land/organisation.py +++ b/digital_land/organisation.py @@ -17,14 +17,27 @@ def lower_uri(value): class Organisation: organisation_path = "var/cache/organisation.csv" + lpa_geometry_path = "var/cache/lpa-geometry.csv" + local_authority_path = "var/cache/local-authority.csv" pipeline_patch_path = "pipeline/patch.csv" organisation = {} organisation_uri = {} organisation_lookup = {} - def __init__(self, organisation_path=None, pipeline_dir=None, organisation=None): + def __init__( + self, + organisation_path=None, + pipeline_dir=None, + organisation=None, + lpa_geometry_path=None, + local_authority_path=None, + ): if organisation_path: self.organisation_path = organisation_path + if lpa_geometry_path: + self.lpa_geometry_path = lpa_geometry_path + if local_authority_path: + self.local_authority_path = local_authority_path if pipeline_dir: self.pipeline_patch_path = pipeline_dir / "patch.csv" if organisation is None: diff --git a/digital_land/phase/harmonise.py b/digital_land/phase/harmonise.py index f8f9de460..e91fdf313 100644 --- a/digital_land/phase/harmonise.py +++ b/digital_land/phase/harmonise.py @@ -1,3 +1,4 @@ +import csv from datetime import datetime from .phase import Phase @@ -9,9 +10,11 @@ def __init__( self, specification=None, issues=None, + organisation=None, ): self.specification = specification self.issues = issues + self.organisation = organisation def harmonise_field(self, fieldname, value): if not value: @@ -21,6 +24,26 @@ def harmonise_field(self, fieldname, value): datatype = self.specification.field_type(fieldname) return datatype.normalise(value, issues=self.issues) + def load_local_planning_authority(self, organisation): + with open(self.organisation.local_authority_path) as f: + reader = csv.DictReader(f) + for row in reader: + if row["reference"] == organisation: + return row["local-planning-authority"] + return None + + def load_lpa_geometry(self, organisation): + if not organisation: + return None + lpa_ref = self.load_local_planning_authority(organisation[-3:]) + if lpa_ref: + with open(self.organisation.lpa_geometry_path) as f: + reader = csv.DictReader(f) + for row in reader: + if row["reference"] == lpa_ref: + return row["geometry"] + return None + def process(self, stream): for block in stream: row = block["row"] @@ -43,6 +66,17 @@ def process(self, stream): self.issues.log_issue(field, "future entry-date", row[field]) o[field] = "" + # if dataset is brownfield land get boundary geometry to use for boundary check + if ( + self.organisation + and self.organisation.lpa_geometry_path + and self.organisation.local_authority_path + and block["dataset"] == "brownfield-land" + ): + boundary = self.load_lpa_geometry(o["organisation"]) + else: + boundary = None + # fix point geometry # TBD: generalise as a co-constraint if set(["GeoX", "GeoY"]).issubset(row.keys()): @@ -50,7 +84,7 @@ def process(self, stream): point = PointDataType() (o["GeoX"], o["GeoY"]) = point.normalise( - [o["GeoX"], o["GeoY"]], issues=self.issues + [o["GeoX"], o["GeoY"]], issues=self.issues, boundary=boundary ) # ensure typology fields are a CURIE diff --git a/tests/data/boundary/local-authority.csv b/tests/data/boundary/local-authority.csv new file mode 100644 index 000000000..8cfe18c54 --- /dev/null +++ b/tests/data/boundary/local-authority.csv @@ -0,0 +1,4 @@ +dataset,prefix,reference,local-authority-type,wikidata,name,combined-authority,local-authority-district,local-planning-authority,start-date,end-date +local-authority,local-authority,HPL,UA,Q16993720,Hartlepool Borough Council,TVCA,E06000001,E60000003,1905-06-18, +local-authority,local-authority,MDB,UA,Q6841843,Middlesbrough Borough Council,TVCA,E06000002,E60000004,1905-06-18, +local-authority,local-authority,RCC,UA,Q17019415,Redcar and Cleveland Borough Council,TVCA,E06000003,E60000006,1996-04-01, diff --git a/tests/data/boundary/lpa-geometry.csv b/tests/data/boundary/lpa-geometry.csv new file mode 100644 index 000000000..162093cf2 --- /dev/null +++ b/tests/data/boundary/lpa-geometry.csv @@ -0,0 +1,4 @@ +geometry,reference +"MULTIPOLYGON (((-1.239707 54.723838,-1.242520 54.722431,-1.242840 54.722264,-1.243247 54.722050,-1.243719 54.721719,-1.243808 54.721645,-1.244020 54.721578,-1.244824 54.722058,-1.245797 54.722293,-1.247614 54.722410,-1.248091 54.721697,-1.248766 54.720734,-1.250594 54.720049,-1.251065 54.719843,-1.251422 54.719739,-1.251865 54.719623,-1.252660 54.719860,-1.253040 54.720033,-1.253353 54.720246,-1.253577 54.720308,-1.253736 54.720368,-1.254120 54.720593,-1.255263 54.721430,-1.255414 54.721575,-1.255557 54.721716,-1.255964 54.722226,-1.256245 54.722649,-1.256644 54.723411,-1.256759 54.723641,-1.256874 54.723936,-1.257102 54.724547,-1.257445 54.725547,-1.257526 54.725552,-1.257543 54.725603,-1.258837 54.725419,-1.258561 54.726055,-1.258736 54.726039,-1.259141 54.725953,-1.260580 54.725730,-1.260923 54.725789,-1.261026 54.725786,-1.261208 54.725830,-1.261795 54.725939,-1.262008 54.725996,-1.262213 54.726053,-1.262363 54.726176,-1.262854 54.726265,-1.262868 54.726411,-1.263055 54.726460,-1.263223 54.726462,-1.263590 54.726438,-1.263705 54.726407,-1.263773 54.726374,-1.263834 54.726330,-1.263869 54.726293,-1.263930 54.726159,-1.263943 54.726145,-1.264025 54.726084,-1.264148 54.726025,-1.264328 54.725982,-1.264446 54.725972,-1.264710 54.725982,-1.264888 54.726019,-1.265029 54.726081,-1.265698 54.726520,-1.265897 54.726631,-1.266183 54.726698,-1.266605 54.726783,-1.267271 54.726860,-1.267405 54.726865,-1.267522 54.726852,-1.267631 54.726826,-1.267671 54.726810,-1.267742 54.726765,-1.267791 54.726706,-1.267953 54.726262,-1.267999 54.726217,-1.268148 54.726106,-1.268225 54.726091,-1.268456 54.726116,-1.268578 54.726141,-1.268697 54.726168,-1.268862 54.726228,-1.269011 54.726334,-1.269200 54.726513,-1.269397 54.726757,-1.269590 54.726925,-1.269811 54.726979,-1.269980 54.727106,-1.270063 54.727145,-1.270162 54.727166,-1.270252 54.727169,-1.270398 54.727140,-1.270486 54.727113,-1.270539 54.727090,-1.270641 54.727027,-1.271175 54.726499,-1.271447 54.726305,-1.271811 54.726030,-1.272186 54.725715,-1.272510 54.725413,-1.272643 54.725404,-1.273126 54.725441,-1.273427 54.725333,-1.273511 54.725321,-1.273601 54.725324,-1.273735 54.725341,-1.274418 54.725218,-1.274487 54.725212,-1.274590 54.725236,-1.274694 54.725244,-1.274781 54.725238,-1.274906 54.725215,-1.275465 54.725391,-1.275631 54.725470,-1.275819 54.725357,-1.275953 54.725253,-1.276194 54.724807,-1.276290 54.724663,-1.276399 54.724535,-1.276527 54.724425,-1.276784 54.724262,-1.277010 54.724154,-1.277939 54.723795,-1.278206 54.723774,-1.278428 54.723715,-1.278557 54.723666,-1.279524 54.723494,-1.279670 54.723453,-1.279982 54.723445,-1.280585 54.723243,-1.281178 54.723030,-1.281216 54.723010,-1.281278 54.723007,-1.281488 54.723078,-1.281699 54.723109,-1.281772 54.723103,-1.281781 54.723100,-1.281853 54.722915,-1.282307 54.723024,-1.282359 54.723017,-1.282417 54.722956,-1.282435 54.722917,-1.282454 54.722783,-1.282437 54.722629,-1.282753 54.722462,-1.282756 54.722388,-1.282711 54.722252,-1.282680 54.722206,-1.282676 54.722180,-1.282683 54.722158,-1.282710 54.722124,-1.282759 54.722085,-1.282862 54.722033,-1.283154 54.721960,-1.283353 54.721889,-1.283707 54.721661,-1.284139 54.721342,-1.284211 54.721237,-1.284617 54.721044,-1.284849 54.720923,-1.285124 54.720814,-1.285381 54.720555,-1.285534 54.720421,-1.285719 54.720345,-1.286037 54.720184,-1.286351 54.720133,-1.286721 54.719927,-1.286843 54.719881,-1.286963 54.719839,-1.287211 54.719791,-1.287391 54.719715,-1.287600 54.719660,-1.287766 54.719563,-1.288059 54.719498,-1.288215 54.719472,-1.288489 54.719358,-1.288970 54.719084,-1.289097 54.718991,-1.289301 54.718882,-1.289399 54.718670,-1.289947 54.718630,-1.290166 54.718449,-1.290301 54.718398,-1.290401 54.718389,-1.290477 54.718393,-1.290912 54.718474,-1.291204 54.718519,-1.291417 54.718529,-1.291723 54.718516,-1.292194 54.718591,-1.292320 54.718632,-1.292519 54.718795,-1.292875 54.718848,-1.293031 54.718890,-1.293338 54.719021,-1.293583 54.719105,-1.293758 54.719144,-1.294103 54.719197,-1.294444 54.719345,-1.294747 54.719394,-1.294910 54.719410,-1.295155 54.719362,-1.295602 54.719343,-1.296173 54.719364,-1.296547 54.719266,-1.296796 54.719266,-1.297050 54.719138,-1.297112 54.719123,-1.297160 54.719121,-1.297242 54.719136,-1.297436 54.719224,-1.298333 54.719224,-1.298558 54.719188,-1.298837 54.719200,-1.299034 54.719179,-1.299319 54.719133,-1.299771 54.719017,-1.300200 54.718812,-1.300296 54.718731,-1.300492 54.718615,-1.300865 54.718527,-1.301429 54.718417,-1.301780 54.718226,-1.302051 54.718338,-1.302184 54.718290,-1.302318 54.718173,-1.302599 54.718165,-1.302966 54.718206,-1.303238 54.718131,-1.303234 54.718088,-1.303132 54.718042,-1.303108 54.718024,-1.303083 54.717987,-1.303093 54.717941,-1.303181 54.717898,-1.303215 54.717890,-1.303338 54.717926,-1.303445 54.717994,-1.303480 54.718115,-1.303476 54.718289,-1.303483 54.718327,-1.303674 54.718508,-1.304192 54.718245,-1.305521 54.717522,-1.305265 54.717306,-1.304989 54.717133,-1.304831 54.717026,-1.304771 54.716975,-1.304721 54.716919,-1.304677 54.716849,-1.304643 54.716767,-1.304620 54.716645,-1.304645 54.716431,-1.304675 54.716315,-1.304711 54.716228,-1.304767 54.716141,-1.305290 54.715513,-1.305518 54.715216,-1.305077 54.714785,-1.304832 54.714488,-1.304467 54.714182,-1.304526 54.714085,-1.304408 54.713880,-1.304196 54.713642,-1.304131 54.713484,-1.304014 54.713476,-1.303949 54.713463,-1.303895 54.713440,-1.303831 54.713386,-1.303753 54.713266,-1.303625 54.713111,-1.303585 54.713002,-1.303584 54.712966,-1.303605 54.712907,-1.303649 54.712872,-1.303746 54.712842,-1.303797 54.712840,-1.303988 54.712859,-1.304100 54.712850,-1.304170 54.712839,-1.304198 54.712827,-1.304215 54.712811,-1.304217 54.712769,-1.304137 54.712645,-1.303774 54.712310,-1.303538 54.712265,-1.303272 54.712164,-1.303071 54.712026,-1.302938 54.711906,-1.302739 54.711747,-1.302574 54.711576,-1.302455 54.711425,-1.302396 54.711272,-1.302378 54.711065,-1.302362 54.711015,-1.302270 54.710819,-1.302104 54.710565,-1.301989 54.710474,-1.301739 54.710306,-1.301561 54.710204,-1.301511 54.710105,-1.301495 54.709875,-1.301502 54.709800,-1.301538 54.709729,-1.301649 54.709553,-1.301813 54.709414,-1.301894 54.709324,-1.301969 54.709205,-1.302013 54.709065,-1.302019 54.709022,-1.301988 54.708844,-1.301945 54.708781,-1.301619 54.708452,-1.301415 54.708317,-1.301372 54.708283,-1.301305 54.708211,-1.301301 54.708160,-1.301327 54.708101,-1.301459 54.708050,-1.301718 54.708015,-1.303811 54.707664,-1.303544 54.707212,-1.303424 54.706914,-1.303310 54.706661,-1.303289 54.706267,-1.303275 54.706146,-1.303221 54.705871,-1.303215 54.705670,-1.303220 54.705657,-1.304217 54.705643,-1.304050 54.705252,-1.304045 54.704998,-1.304062 54.704704,-1.304056 54.704402,-1.304063 54.704374,-1.304077 54.704359,-1.304120 54.704334,-1.304179 54.704314,-1.304233 54.704306,-1.304309 54.704306,-1.305174 54.704203,-1.306090 54.704071,-1.306410 54.704002,-1.306249 54.703872,-1.306231 54.703807,-1.306466 54.703635,-1.306883 54.703379,-1.307187 54.703159,-1.307423 54.703021,-1.307782 54.702782,-1.307927 54.702718,-1.308023 54.702693,-1.308301 54.702647,-1.308589 54.702622,-1.308881 54.702608,-1.309120 54.702563,-1.309205 54.702536,-1.309316 54.702488,-1.309319 54.702006,-1.309339 54.701641,-1.309351 54.701564,-1.310210 54.701466,-1.311728 54.701344,-1.312467 54.701304,-1.313107 54.701259,-1.313849 54.701228,-1.313861 54.700742,-1.313682 54.700329,-1.313550 54.700059,-1.313015 54.699094,-1.312889 54.698905,-1.312835 54.698713,-1.313560 54.698343,-1.314246 54.697954,-1.313961 54.697760,-1.313788 54.697493,-1.313508 54.697085,-1.313241 54.696746,-1.312743 54.696183,-1.312673 54.696131,-1.312642 54.696088,-1.312629 54.696042,-1.312637 54.695997,-1.312665 54.695948,-1.312696 54.695913,-1.312765 54.695867,-1.312865 54.695828,-1.312963 54.695808,-1.313058 54.695800,-1.314033 54.695320,-1.314341 54.695189,-1.314538 54.695092,-1.314768 54.694961,-1.315198 54.694678,-1.315377 54.694579,-1.315629 54.694492,-1.315924 54.694413,-1.316422 54.694350,-1.316548 54.694323,-1.317353 54.694109,-1.317815 54.693942,-1.318219 54.693755,-1.318781 54.693525,-1.319387 54.693302,-1.319349 54.693215,-1.319489 54.693142,-1.319533 54.693105,-1.319568 54.693059,-1.319605 54.692980,-1.319631 54.692898,-1.319644 54.692794,-1.319744 54.692734,-1.319747 54.692667,-1.319729 54.692416,-1.319617 54.691905,-1.319559 54.691800,-1.319340 54.691467,-1.319311 54.691412,-1.319312 54.691384,-1.319329 54.691357,-1.319373 54.691327,-1.319431 54.691302,-1.319495 54.691289,-1.319787 54.691279,-1.320212 54.691204,-1.320499 54.691173,-1.321078 54.691138,-1.321309 54.691143,-1.321704 54.691227,-1.321841 54.691246,-1.322207 54.691258,-1.322932 54.691252,-1.323477 54.691312,-1.323835 54.691342,-1.324096 54.691321,-1.324541 54.691243,-1.325595 54.691174,-1.325982 54.691165,-1.326256 54.691175,-1.326551 54.691204,-1.326758 54.691235,-1.327554 54.691382,-1.327939 54.690992,-1.328481 54.690534,-1.328764 54.690311,-1.328891 54.690196,-1.329011 54.690082,-1.329105 54.689942,-1.329333 54.689736,-1.329410 54.689654,-1.329447 54.689630,-1.329573 54.689580,-1.329624 54.689568,-1.329825 54.689553,-1.329969 54.689563,-1.330136 54.689600,-1.330270 54.689654,-1.331321 54.689963,-1.331962 54.690123,-1.332189 54.690200,-1.332435 54.690801,-1.332688 54.691300,-1.333023 54.692022,-1.334306 54.691926,-1.334379 54.691837,-1.336080 54.691712,-1.338161 54.691585,-1.339171 54.691509,-1.340080 54.691470,-1.341171 54.691396,-1.342947 54.691232,-1.344526 54.691121,-1.344658 54.690819,-1.342289 54.690331,-1.341230 54.690097,-1.340997 54.690059,-1.340582 54.689974,-1.340442 54.689939,-1.339804 54.689750,-1.339409 54.689646,-1.338673 54.689470,-1.337813 54.689503,-1.337652 54.689501,-1.337402 54.689484,-1.336919 54.689421,-1.336371 54.689369,-1.335908 54.689313,-1.335473 54.689276,-1.335118 54.689232,-1.334896 54.689191,-1.334668 54.689135,-1.334488 54.689072,-1.334440 54.689047,-1.334342 54.688972,-1.334004 54.688632,-1.333805 54.688467,-1.333954 54.688426,-1.333814 54.688288,-1.333335 54.687843,-1.332669 54.687304,-1.332453 54.687170,-1.332269 54.687023,-1.332160 54.686903,-1.332129 54.686854,-1.332092 54.686745,-1.332054 54.686517,-1.332024 54.686433,-1.331880 54.686132,-1.331796 54.685872,-1.331734 54.685531,-1.331663 54.685290,-1.331650 54.685128,-1.331667 54.684979,-1.331700 54.684868,-1.331873 54.684501,-1.332030 54.684206,-1.331916 54.684166,-1.331993 54.684090,-1.332088 54.683972,-1.332112 54.683919,-1.332106 54.683895,-1.332088 54.683873,-1.332054 54.683852,-1.332007 54.683834,-1.331752 54.683785,-1.331524 54.683769,-1.331433 54.683749,-1.331368 54.683710,-1.331345 54.683680,-1.331326 54.683637,-1.331299 54.683488,-1.331207 54.683158,-1.331056 54.682140,-1.330946 54.682134,-1.330941 54.681780,-1.330900 54.681244,-1.331027 54.681231,-1.331196 54.681240,-1.331402 54.681287,-1.331567 54.681301,-1.331645 54.681297,-1.331723 54.681282,-1.331779 54.681261,-1.331812 54.681243,-1.331845 54.681211,-1.331850 54.681188,-1.331832 54.681137,-1.331736 54.681025,-1.331705 54.680973,-1.331656 54.680791,-1.331639 54.680638,-1.331645 54.680539,-1.331713 54.680147,-1.331815 54.679744,-1.331850 54.679222,-1.331947 54.678952,-1.331966 54.678848,-1.331968 54.678652,-1.331987 54.678308,-1.331985 54.678068,-1.331945 54.677667,-1.331911 54.677470,-1.331918 54.677456,-1.331938 54.677435,-1.331977 54.677413,-1.332160 54.677358,-1.332240 54.677344,-1.332380 54.677335,-1.332504 54.677341,-1.333105 54.677296,-1.333457 54.677209,-1.333206 54.676986,-1.333021 54.676466,-1.332735 54.676190,-1.332564 54.675931,-1.332426 54.675576,-1.332392 54.675452,-1.332387 54.675372,-1.332392 54.675257,-1.332437 54.674891,-1.332419 54.674662,-1.332377 54.674426,-1.332377 54.674338,-1.332396 54.674260,-1.332466 54.674094,-1.332617 54.673866,-1.332654 54.673794,-1.332705 54.673678,-1.332745 54.673519,-1.332745 54.673499,-1.332590 54.673339,-1.332595 54.673317,-1.332658 54.673165,-1.333038 54.672653,-1.333262 54.672434,-1.333791 54.671948,-1.334069 54.671726,-1.334192 54.671502,-1.334324 54.671225,-1.334875 54.671264,-1.335707 54.671302,-1.336225 54.670867,-1.336663 54.670539,-1.336830 54.670430,-1.337145 54.670274,-1.337289 54.670182,-1.337501 54.670017,-1.337719 54.669821,-1.337891 54.669682,-1.338014 54.669606,-1.338088 54.669574,-1.338216 54.669528,-1.338370 54.669485,-1.338507 54.669457,-1.339290 54.669347,-1.339587 54.669287,-1.339702 54.669278,-1.339979 54.669310,-1.340044 54.669310,-1.340119 54.669299,-1.340201 54.669273,-1.340292 54.669232,-1.340522 54.669081,-1.340600 54.669011,-1.340652 54.668942,-1.340687 54.668868,-1.340714 54.668755,-1.341043 54.668752,-1.341369 54.668765,-1.341800 54.668727,-1.342417 54.668687,-1.343296 54.668649,-1.343530 54.668621,-1.343384 54.668283,-1.343174 54.667706,-1.343094 54.667560,-1.343063 54.667523,-1.342920 54.667415,-1.342580 54.667242,-1.342538 54.667200,-1.342520 54.667133,-1.342528 54.667048,-1.342539 54.667013,-1.342651 54.666789,-1.342674 54.666722,-1.342683 54.666664,-1.342672 54.666627,-1.342630 54.666570,-1.342283 54.666261,-1.342250 54.666204,-1.342249 54.666170,-1.342271 54.666114,-1.342347 54.666020,-1.342457 54.665927,-1.342614 54.665839,-1.342679 54.665811,-1.342743 54.665793,-1.342858 54.665780,-1.343377 54.665792,-1.343395 54.665546,-1.343393 54.665376,-1.343471 54.665254,-1.343469 54.665207,-1.343482 54.665181,-1.343529 54.665150,-1.343585 54.665148,-1.343736 54.665177,-1.343951 54.665196,-1.344010 54.665196,-1.344127 54.665173,-1.344241 54.665129,-1.344352 54.665066,-1.344454 54.664984,-1.344561 54.664874,-1.344683 54.664811,-1.345147 54.664678,-1.345570 54.664591,-1.345887 54.664546,-1.345934 54.664530,-1.346047 54.664471,-1.346360 54.664256,-1.346522 54.664114,-1.346585 54.664034,-1.346631 54.663918,-1.346638 54.663871,-1.346634 54.663816,-1.346587 54.663636,-1.346576 54.663562,-1.346576 54.663331,-1.346599 54.663158,-1.346644 54.663004,-1.346696 54.662945,-1.346770 54.662894,-1.346940 54.662810,-1.347348 54.662678,-1.347470 54.662646,-1.347673 54.662628,-1.347712 54.662618,-1.347756 54.662596,-1.347806 54.662537,-1.347852 54.662421,-1.347846 54.662354,-1.347827 54.662315,-1.347757 54.662247,-1.347674 54.662203,-1.347555 54.662168,-1.347078 54.661861,-1.346762 54.661709,-1.346424 54.661506,-1.346350 54.661130,-1.346718 54.661064,-1.346878 54.660960,-1.347084 54.660900,-1.346776 54.660675,-1.346449 54.660730,-1.346368 54.660508,-1.346167 54.660268,-1.346010 54.660105,-1.346399 54.659987,-1.346406 54.659930,-1.346401 54.659893,-1.346372 54.659831,-1.346352 54.659809,-1.346236 54.659731,-1.346205 54.659702,-1.346177 54.659623,-1.346181 54.659580,-1.346244 54.659393,-1.346283 54.659332,-1.346321 54.659291,-1.346350 54.659271,-1.346436 54.659234,-1.346671 54.659176,-1.346837 54.659151,-1.346881 54.659136,-1.346919 54.659104,-1.346927 54.658997,-1.346958 54.658964,-1.346991 54.658950,-1.347352 54.658868,-1.347458 54.658797,-1.347533 54.658706,-1.347544 54.658680,-1.347544 54.658648,-1.347534 54.658613,-1.347513 54.658584,-1.347479 54.658552,-1.347392 54.658496,-1.347282 54.658457,-1.347222 54.658445,-1.347085 54.658429,-1.346957 54.658434,-1.346830 54.658456,-1.346691 54.658503,-1.346569 54.658509,-1.346273 54.658464,-1.345535 54.658313,-1.345431 54.658305,-1.345300 54.658334,-1.345174 54.658395,-1.345080 54.658458,-1.345042 54.658471,-1.344928 54.658468,-1.344784 54.658424,-1.344701 54.658390,-1.344540 54.658290,-1.344395 54.658222,-1.344174 54.658132,-1.343976 54.658071,-1.343870 54.658021,-1.343849 54.658001,-1.343779 54.657881,-1.343755 54.657860,-1.343650 54.657802,-1.343232 54.657612,-1.343177 54.657573,-1.343145 54.657528,-1.343130 54.657476,-1.343131 54.657417,-1.343164 54.657289,-1.343233 54.657172,-1.343393 54.656951,-1.343437 54.656878,-1.343468 54.656811,-1.343492 54.656733,-1.343505 54.656598,-1.343486 54.656428,-1.343387 54.655944,-1.343399 54.655896,-1.343460 54.655776,-1.343467 54.655738,-1.343458 54.655695,-1.343436 54.655644,-1.343396 54.655595,-1.343352 54.655559,-1.343218 54.655497,-1.343172 54.655458,-1.343150 54.655390,-1.343156 54.655197,-1.343151 54.655123,-1.343114 54.655014,-1.343045 54.654961,-1.342984 54.654933,-1.342775 54.654861,-1.342714 54.654832,-1.342670 54.654798,-1.342590 54.654705,-1.342309 54.654281,-1.342197 54.654089,-1.342139 54.654044,-1.341975 54.653962,-1.341889 54.653899,-1.341599 54.653627,-1.341436 54.653451,-1.341325 54.653295,-1.341310 54.653262,-1.341305 54.653226,-1.341313 54.653181,-1.341337 54.653136,-1.341375 54.653094,-1.341450 54.653044,-1.341632 54.652997,-1.341674 54.652978,-1.341730 54.652920,-1.341818 54.652708,-1.341830 54.652630,-1.341809 54.652506,-1.341812 54.652438,-1.341898 54.652200,-1.341895 54.652168,-1.341877 54.652134,-1.341842 54.652098,-1.341690 54.651988,-1.341649 54.651942,-1.341625 54.651899,-1.341544 54.651680,-1.341516 54.651634,-1.341390 54.651486,-1.341324 54.651369,-1.341207 54.651020,-1.341190 54.650893,-1.341183 54.650302,-1.341223 54.650243,-1.341254 54.650212,-1.341325 54.650169,-1.341399 54.650151,-1.341508 54.650148,-1.342723 54.650212,-1.343140 54.650253,-1.343367 54.650286,-1.343466 54.650309,-1.343586 54.650350,-1.343700 54.650396,-1.343798 54.650449,-1.343886 54.650506,-1.343954 54.650561,-1.344052 54.650658,-1.345841 54.650760,-1.346465 54.650747,-1.347041 54.650708,-1.347879 54.650605,-1.348489 54.650832,-1.348653 54.650868,-1.348743 54.650870,-1.348878 54.650848,-1.349110 54.650791,-1.349415 54.650743,-1.349672 54.650725,-1.349897 54.650723,-1.349900 54.650131,-1.349777 54.648719,-1.349692 54.648678,-1.349746 54.648593,-1.349798 54.648581,-1.350065 54.648556,-1.350204 54.648560,-1.350527 54.648607,-1.350785 54.648669,-1.351312 54.648842,-1.351652 54.648930,-1.351847 54.648961,-1.352223 54.648980,-1.352727 54.648970,-1.353088 54.648936,-1.353301 54.648905,-1.353525 54.648864,-1.354814 54.648671,-1.355235 54.648600,-1.355578 54.648382,-1.355733 54.648317,-1.355838 54.648299,-1.355893 54.648305,-1.355951 54.648332,-1.355974 54.648354,-1.356060 54.648485,-1.356227 54.648639,-1.356296 54.648662,-1.356349 54.648669,-1.356418 54.648667,-1.356496 54.648654,-1.356821 54.648573,-1.357241 54.648512,-1.357518 54.648489,-1.357647 54.648489,-1.357768 54.648502,-1.357899 54.648531,-1.358036 54.648576,-1.358338 54.648708,-1.358576 54.648856,-1.358726 54.648976,-1.358843 54.649092,-1.359305 54.649467,-1.360006 54.649327,-1.360336 54.649277,-1.360761 54.649228,-1.361102 54.649207,-1.361930 54.649229,-1.362193 54.649225,-1.362390 54.649207,-1.362670 54.649164,-1.363083 54.649075,-1.363342 54.648994,-1.364115 54.648688,-1.364410 54.648588,-1.364653 54.648467,-1.364787 54.648432,-1.364880 54.648424,-1.365294 54.648418,-1.365409 54.648429,-1.365541 54.648477,-1.365696 54.648575,-1.365911 54.648697,-1.366057 54.648797,-1.366146 54.648834,-1.366261 54.648851,-1.366351 54.648852,-1.366526 54.648830,-1.366711 54.648776,-1.366850 54.648715,-1.367416 54.648397,-1.367611 54.648323,-1.368171 54.648161,-1.368418 54.648073,-1.368633 54.647982,-1.368864 54.647855,-1.368967 54.647813,-1.369211 54.647758,-1.369533 54.647711,-1.369863 54.647676,-1.370506 54.647582,-1.371131 54.647469,-1.371599 54.647403,-1.371964 54.647327,-1.372849 54.647098,-1.373028 54.647045,-1.373636 54.646836,-1.374514 54.646559,-1.374750 54.646548,-1.375335 54.646589,-1.375504 54.646589,-1.376628 54.646444,-1.377546 54.646312,-1.378362 54.646220,-1.378905 54.646180,-1.379353 54.646177,-1.379572 54.646183,-1.380205 54.646223,-1.381165 54.646248,-1.381679 54.646218,-1.383764 54.646243,-1.383731 54.645993,-1.383730 54.645809,-1.383274 54.645355,-1.383081 54.645210,-1.383030 54.645156,-1.382979 54.645082,-1.382899 54.644926,-1.382749 54.644468,-1.382727 54.644425,-1.382636 54.644357,-1.382553 54.644319,-1.382458 54.644290,-1.382379 54.644273,-1.382297 54.644267,-1.382071 54.644259,-1.381708 54.644279,-1.381413 54.644318,-1.381309 54.644305,-1.381265 54.644289,-1.381202 54.644245,-1.381148 54.644192,-1.381025 54.644046,-1.380898 54.643917,-1.380844 54.643796,-1.380423 54.643496,-1.379855 54.643359,-1.379552 54.643274,-1.378838 54.643270,-1.378248 54.643279,-1.377949 54.643316,-1.377420 54.643404,-1.377224 54.643426,-1.377055 54.643434,-1.376253 54.643420,-1.375476 54.643619,-1.374500 54.643739,-1.373936 54.643732,-1.373115 54.643622,-1.372533 54.643605,-1.372093 54.643604,-1.371375 54.643625,-1.370985 54.643674,-1.370597 54.643699,-1.370193 54.643683,-1.369422 54.643619,-1.367832 54.643471,-1.367262 54.643281,-1.366875 54.643134,-1.366689 54.643035,-1.366585 54.642970,-1.366441 54.642915,-1.366039 54.642695,-1.365623 54.642544,-1.364843 54.642143,-1.364603 54.641990,-1.364299 54.641777,-1.363986 54.641599,-1.363548 54.641268,-1.363232 54.641042,-1.363114 54.640986,-1.362920 54.640917,-1.362385 54.640615,-1.361980 54.640430,-1.361141 54.640105,-1.360556 54.639793,-1.359960 54.639568,-1.359889 54.639521,-1.358988 54.639213,-1.358523 54.639076,-1.358473 54.639037,-1.357659 54.638690,-1.357124 54.638477,-1.356957 54.638414,-1.356827 54.638376,-1.356188 54.638245,-1.355492 54.638136,-1.355048 54.638081,-1.354768 54.638070,-1.354005 54.638152,-1.353739 54.638205,-1.353318 54.638262,-1.353093 54.638307,-1.352607 54.638452,-1.352400 54.638523,-1.352184 54.638566,-1.352036 54.638572,-1.350963 54.638768,-1.350520 54.638828,-1.349896 54.638809,-1.349691 54.638779,-1.349101 54.638650,-1.348667 54.638524,-1.348363 54.638400,-1.347897 54.638182,-1.347681 54.638103,-1.346558 54.637825,-1.346298 54.637770,-1.344866 54.637412,-1.344431 54.637320,-1.344075 54.637167,-1.343702 54.637058,-1.342759 54.636734,-1.342536 54.636672,-1.342054 54.636734,-1.341836 54.636739,-1.341665 54.636701,-1.341527 54.636702,-1.341166 54.636608,-1.340583 54.636434,-1.340166 54.636327,-1.339718 54.636247,-1.339604 54.636200,-1.339187 54.635963,-1.338921 54.635740,-1.338595 54.635501,-1.338270 54.635344,-1.337681 54.635026,-1.337549 54.634908,-1.337398 54.634752,-1.337083 54.634230,-1.336895 54.634009,-1.336365 54.633426,-1.336032 54.632920,-1.335852 54.632598,-1.335847 54.632496,-1.335747 54.632254,-1.335659 54.631876,-1.335524 54.631733,-1.335372 54.631627,-1.335259 54.631515,-1.335260 54.631465,-1.335350 54.631359,-1.335061 54.631324,-1.334898 54.631330,-1.334526 54.631616,-1.334177 54.631976,-1.332901 54.632863,-1.332833 54.632956,-1.332547 54.633305,-1.332144 54.633618,-1.331982 54.633766,-1.331904 54.633792,-1.331113 54.634620,-1.330933 54.634772,-1.330684 54.635054,-1.330505 54.635194,-1.330145 54.635600,-1.329830 54.636022,-1.329667 54.636320,-1.329509 54.636528,-1.329254 54.637245,-1.329192 54.637481,-1.329141 54.637605,-1.329083 54.638201,-1.329071 54.638576,-1.329117 54.639455,-1.329114 54.639816,-1.329165 54.640016,-1.329168 54.640210,-1.329249 54.640459,-1.329316 54.641944,-1.329295 54.642057,-1.329295 54.642558,-1.329428 54.642923,-1.329449 54.643097,-1.329191 54.643319,-1.329006 54.643515,-1.328983 54.643699,-1.328864 54.644002,-1.328686 54.644132,-1.328372 54.644322,-1.328097 54.644446,-1.327821 54.644466,-1.327721 54.644494,-1.327476 54.644511,-1.326658 54.644418,-1.326508 54.644466,-1.326375 54.644536,-1.326344 54.644777,-1.326310 54.644847,-1.326306 54.645103,-1.325289 54.644944,-1.324408 54.644773,-1.323304 54.644652,-1.322802 54.644654,-1.321984 54.644542,-1.321904 54.644576,-1.321685 54.644635,-1.321310 54.644785,-1.320935 54.644883,-1.320449 54.644972,-1.320017 54.644971,-1.319859 54.645059,-1.319745 54.645081,-1.319643 54.645083,-1.319429 54.645144,-1.318709 54.645209,-1.317757 54.645251,-1.317557 54.644993,-1.317286 54.644803,-1.317148 54.644799,-1.316995 54.644841,-1.316940 54.644892,-1.316904 54.645013,-1.316819 54.645085,-1.316517 54.645176,-1.316364 54.645235,-1.316318 54.645225,-1.316291 54.645195,-1.316279 54.645153,-1.316044 54.645016,-1.315823 54.644782,-1.315787 54.644735,-1.315789 54.644620,-1.315660 54.644481,-1.315563 54.644438,-1.315388 54.644318,-1.315142 54.644096,-1.315131 54.644040,-1.315219 54.643984,-1.315419 54.643953,-1.315514 54.643919,-1.315593 54.643846,-1.315580 54.643798,-1.315469 54.643741,-1.315351 54.643570,-1.315264 54.643510,-1.315259 54.643447,-1.315071 54.643373,-1.314902 54.643352,-1.314782 54.643311,-1.314690 54.643154,-1.314537 54.643035,-1.314345 54.642925,-1.313883 54.642774,-1.313741 54.642675,-1.313585 54.642644,-1.313435 54.642681,-1.313241 54.642613,-1.312849 54.642369,-1.312621 54.642203,-1.312446 54.642153,-1.312205 54.642056,-1.312054 54.641969,-1.311863 54.641915,-1.311691 54.641912,-1.311573 54.641938,-1.311430 54.641858,-1.311302 54.641634,-1.311264 54.641448,-1.311237 54.641260,-1.311242 54.641228,-1.311300 54.641138,-1.311328 54.641115,-1.311414 54.641094,-1.311528 54.641106,-1.311734 54.641211,-1.311848 54.641234,-1.311943 54.641194,-1.311951 54.641119,-1.311869 54.641007,-1.311788 54.640876,-1.311576 54.640751,-1.311435 54.640734,-1.311176 54.640676,-1.311030 54.640619,-1.311011 54.640554,-1.311064 54.640357,-1.311061 54.640304,-1.310813 54.640145,-1.310691 54.640032,-1.310626 54.639916,-1.310546 54.639884,-1.310279 54.639844,-1.310096 54.639765,-1.310043 54.639692,-1.309705 54.639351,-1.309471 54.639225,-1.309226 54.639159,-1.308617 54.638794,-1.308406 54.638726,-1.308265 54.638573,-1.308425 54.638406,-1.308426 54.638346,-1.308394 54.638266,-1.308301 54.638184,-1.308140 54.638162,-1.308053 54.638055,-1.308021 54.637965,-1.307952 54.637896,-1.307779 54.637783,-1.307773 54.637683,-1.307624 54.637534,-1.307624 54.637495,-1.307489 54.637357,-1.307395 54.637306,-1.307348 54.637241,-1.307323 54.637184,-1.307090 54.637062,-1.307063 54.637003,-1.306980 54.636950,-1.306707 54.636874,-1.306612 54.636824,-1.306432 54.636829,-1.306029 54.636740,-1.305902 54.636808,-1.305742 54.636775,-1.305145 54.636773,-1.304728 54.636731,-1.304414 54.636673,-1.303948 54.636507,-1.303524 54.636259,-1.303239 54.636021,-1.302925 54.635797,-1.302746 54.635754,-1.301959 54.635820,-1.301024 54.635819,-1.300524 54.635789,-1.298219 54.635511,-1.298227 54.635224,-1.298116 54.635241,-1.298077 54.635185,-1.298299 54.634639,-1.298373 54.634551,-1.298650 54.633915,-1.298811 54.633465,-1.298863 54.632910,-1.298835 54.632458,-1.298594 54.631157,-1.298589 54.630545,-1.298653 54.629690,-1.298827 54.628806,-1.299014 54.627982,-1.298652 54.627956,-1.297208 54.627930,-1.296780 54.627954,-1.296199 54.628028,-1.295753 54.628109,-1.295683 54.627968,-1.294611 54.628225,-1.293708 54.628482,-1.293427 54.628539,-1.293112 54.628566,-1.292481 54.628747,-1.291828 54.627852,-1.291659 54.627586,-1.291512 54.627457,-1.291220 54.627088,-1.291135 54.626992,-1.288708 54.627607,-1.286315 54.628194,-1.286047 54.627665,-1.285218 54.627794,-1.284907 54.627871,-1.284247 54.627881,-1.280128 54.628254,-1.279875 54.628246,-1.279116 54.628154,-1.278879 54.628063,-1.278451 54.627853,-1.278149 54.627739,-1.277699 54.627608,-1.277209 54.627491,-1.276508 54.627356,-1.276112 54.627255,-1.275094 54.626838,-1.275172 54.626795,-1.274881 54.626614,-1.274006 54.626107,-1.273882 54.625996,-1.273665 54.625985,-1.273206 54.625891,-1.272799 54.625736,-1.271947 54.625345,-1.271529 54.625518,-1.271261 54.625606,-1.269993 54.626055,-1.268971 54.626393,-1.268707 54.626038,-1.268557 54.625655,-1.268455 54.625664,-1.268106 54.625826,-1.267659 54.626063,-1.267609 54.626010,-1.267582 54.625607,-1.267574 54.625361,-1.267573 54.624738,-1.267542 54.624643,-1.267479 54.624558,-1.267446 54.624571,-1.267282 54.624603,-1.267184 54.624575,-1.267115 54.624454,-1.267034 54.624220,-1.266988 54.624157,-1.266887 54.624144,-1.266592 54.624168,-1.266033 54.624177,-1.265805 54.624191,-1.265663 54.624213,-1.265499 54.624225,-1.265045 54.624208,-1.264861 54.624225,-1.264681 54.624227,-1.264550 54.624214,-1.264359 54.624217,-1.264301 54.624237,-1.264238 54.624318,-1.264162 54.624326,-1.263954 54.624283,-1.263829 54.624303,-1.263739 54.624396,-1.263661 54.624430,-1.263440 54.624441,-1.263111 54.624437,-1.263055 54.624487,-1.263058 54.624628,-1.262868 54.624704,-1.262437 54.624803,-1.262136 54.624919,-1.262019 54.624892,-1.261615 54.624882,-1.261488 54.624808,-1.261227 54.624737,-1.261077 54.624664,-1.260890 54.624651,-1.260616 54.624681,-1.260341 54.624661,-1.259850 54.624600,-1.259820 54.624787,-1.259799 54.624823,-1.259578 54.624986,-1.259254 54.625661,-1.258761 54.626449,-1.257360 54.625930,-1.256258 54.625626,-1.256610 54.625171,-1.256612 54.625127,-1.256959 54.624710,-1.257235 54.624332,-1.257403 54.624078,-1.257616 54.624191,-1.257673 54.624191,-1.257690 54.624114,-1.257646 54.623985,-1.257439 54.623874,-1.257296 54.623646,-1.257194 54.623550,-1.256882 54.623429,-1.256717 54.623351,-1.256626 54.623367,-1.256480 54.623435,-1.256387 54.623459,-1.256296 54.623458,-1.256160 54.623443,-1.256022 54.623409,-1.255952 54.623372,-1.255321 54.623382,-1.255204 54.623431,-1.255116 54.623544,-1.254975 54.623613,-1.254863 54.623705,-1.254814 54.623796,-1.254781 54.623815,-1.254464 54.623857,-1.254350 54.623927,-1.254265 54.624053,-1.254143 54.624104,-1.254046 54.624112,-1.253637 54.624091,-1.253525 54.624061,-1.253407 54.624046,-1.253091 54.624041,-1.252610 54.623933,-1.252506 54.623931,-1.252445 54.623961,-1.252140 54.624313,-1.251969 54.624456,-1.251650 54.624604,-1.251605 54.624608,-1.251421 54.624676,-1.251127 54.624853,-1.251057 54.624927,-1.251035 54.625022,-1.250870 54.625259,-1.250768 54.625303,-1.250636 54.625337,-1.250419 54.625269,-1.250241 54.625264,-1.249909 54.625293,-1.249691 54.625262,-1.249577 54.625228,-1.249451 54.625225,-1.249259 54.625266,-1.248991 54.625418,-1.248829 54.625447,-1.248571 54.625451,-1.248324 54.625489,-1.247726 54.625796,-1.247467 54.625910,-1.247203 54.625942,-1.246471 54.625944,-1.246303 54.625960,-1.245902 54.626054,-1.245635 54.626052,-1.245413 54.626005,-1.244784 54.625831,-1.244540 54.625756,-1.244177 54.625595,-1.243754 54.625502,-1.242736 54.625478,-1.242532 54.625441,-1.241456 54.625133,-1.241226 54.624957,-1.241032 54.624795,-1.240892 54.624730,-1.240822 54.624711,-1.240740 54.624699,-1.240670 54.624699,-1.240620 54.624709,-1.240470 54.624792,-1.240398 54.624898,-1.240384 54.624973,-1.240390 54.625236,-1.240367 54.625388,-1.240266 54.625490,-1.240089 54.625625,-1.239936 54.625705,-1.239543 54.625819,-1.239308 54.625908,-1.239154 54.625990,-1.239025 54.626093,-1.238951 54.626180,-1.238774 54.626302,-1.238767 54.626410,-1.238658 54.626499,-1.238512 54.626529,-1.238348 54.626538,-1.238074 54.626528,-1.237790 54.626463,-1.237662 54.626420,-1.237365 54.626421,-1.237271 54.626451,-1.237262 54.626562,-1.237301 54.626639,-1.237395 54.626715,-1.237703 54.626840,-1.237969 54.626922,-1.238164 54.627036,-1.238476 54.627373,-1.238857 54.627642,-1.238937 54.627766,-1.238929 54.627869,-1.238867 54.627942,-1.238746 54.628011,-1.238619 54.628041,-1.238147 54.628081,-1.237329 54.628282,-1.236614 54.628468,-1.236458 54.628521,-1.236169 54.628671,-1.235892 54.628727,-1.235579 54.628753,-1.235031 54.628715,-1.234882 54.628719,-1.234389 54.628843,-1.234210 54.628877,-1.234018 54.628869,-1.233818 54.628819,-1.233696 54.628771,-1.233574 54.628706,-1.233467 54.628637,-1.233207 54.628373,-1.233137 54.628260,-1.233154 54.628136,-1.233213 54.628017,-1.233331 54.627854,-1.233409 54.627719,-1.233414 54.627632,-1.233391 54.627540,-1.233285 54.627409,-1.232959 54.627204,-1.232729 54.627086,-1.232584 54.626960,-1.232518 54.626847,-1.232518 54.626607,-1.232480 54.626162,-1.232427 54.626022,-1.232373 54.625833,-1.232337 54.625762,-1.232235 54.625680,-1.232097 54.625623,-1.231777 54.625594,-1.231615 54.625620,-1.231398 54.625714,-1.231177 54.625852,-1.231047 54.625946,-1.230785 54.626245,-1.230760 54.626282,-1.230702 54.626323,-1.230557 54.626365,-1.230393 54.626377,-1.230213 54.626346,-1.230071 54.626266,-1.229934 54.626136,-1.229895 54.626051,-1.229904 54.625988,-1.229946 54.625922,-1.229911 54.625815,-1.229897 54.625618,-1.229949 54.625493,-1.230067 54.625329,-1.230085 54.625213,-1.230014 54.625112,-1.229908 54.625066,-1.229800 54.625044,-1.229563 54.625047,-1.229369 54.625029,-1.229205 54.625049,-1.229057 54.625106,-1.228990 54.625199,-1.228948 54.625343,-1.228928 54.625447,-1.228935 54.625657,-1.229034 54.625911,-1.229046 54.626068,-1.228960 54.626213,-1.228865 54.626308,-1.228746 54.626393,-1.228507 54.626504,-1.228140 54.626639,-1.227607 54.626814,-1.227311 54.626887,-1.226995 54.626927,-1.226826 54.626923,-1.226598 54.626862,-1.226331 54.626708,-1.226137 54.626574,-1.226014 54.626455,-1.225956 54.626323,-1.225940 54.626190,-1.226008 54.626012,-1.226192 54.625781,-1.226281 54.625577,-1.226306 54.625445,-1.226272 54.625318,-1.226202 54.625265,-1.226023 54.625223,-1.225840 54.625230,-1.225505 54.625269,-1.225500 54.625373,-1.225182 54.625777,-1.225116 54.625849,-1.224962 54.625972,-1.224668 54.626128,-1.224479 54.626193,-1.224101 54.626303,-1.223805 54.626374,-1.223550 54.626416,-1.223385 54.626408,-1.223200 54.626364,-1.222800 54.626192,-1.222652 54.626092,-1.222606 54.626041,-1.222554 54.625939,-1.222563 54.625858,-1.222641 54.625788,-1.222904 54.625639,-1.223117 54.625601,-1.223659 54.625580,-1.224224 54.625582,-1.224628 54.625544,-1.224802 54.625501,-1.224922 54.625410,-1.224945 54.625372,-1.224948 54.625325,-1.224812 54.625307,-1.224695 54.625266,-1.224510 54.625144,-1.224449 54.625017,-1.224420 54.624823,-1.224449 54.624586,-1.224569 54.624334,-1.224586 54.624176,-1.224513 54.624074,-1.224369 54.623922,-1.224203 54.623785,-1.223998 54.623660,-1.223919 54.623633,-1.223686 54.623588,-1.223277 54.623606,-1.223064 54.623651,-1.222887 54.623733,-1.222629 54.623895,-1.222425 54.624074,-1.222197 54.624349,-1.222033 54.624689,-1.221952 54.624762,-1.221762 54.624846,-1.221495 54.625002,-1.220913 54.625094,-1.220658 54.625161,-1.220409 54.625174,-1.220276 54.625162,-1.220116 54.625118,-1.220000 54.625052,-1.219831 54.624907,-1.219729 54.624699,-1.219733 54.624531,-1.219814 54.624386,-1.220211 54.623916,-1.220359 54.623695,-1.220419 54.623561,-1.220345 54.623442,-1.220200 54.623312,-1.220060 54.623206,-1.219833 54.623084,-1.219373 54.622940,-1.219072 54.622895,-1.218807 54.622887,-1.218504 54.622918,-1.215793 54.623285,-1.215675 54.623287,-1.215355 54.623249,-1.215102 54.623193,-1.214821 54.623084,-1.214646 54.623007,-1.214225 54.622738,-1.213232 54.621951,-1.212995 54.621812,-1.212816 54.621753,-1.212629 54.621727,-1.212287 54.621718,-1.211476 54.621720,-1.211064 54.621709,-1.210326 54.621673,-1.209753 54.621670,-1.209393 54.621685,-1.208244 54.621781,-1.207662 54.621862,-1.207394 54.621927,-1.205456 54.622341,-1.204671 54.622480,-1.203685 54.622632,-1.203176 54.622683,-1.202520 54.622736,-1.201796 54.622819,-1.201273 54.622856,-1.200581 54.622864,-1.200192 54.622887,-1.199644 54.623011,-1.198434 54.623382,-1.197466 54.623669,-1.197319 54.623731,-1.196889 54.623871,-1.195721 54.624359,-1.194725 54.624742,-1.194566 54.624813,-1.194403 54.624889,-1.193977 54.625199,-1.193412 54.625539,-1.191974 54.626484,-1.191574 54.626727,-1.191202 54.626927,-1.190905 54.627131,-1.190711 54.627319,-1.190641 54.627405,-1.190579 54.627491,-1.190496 54.627668,-1.190481 54.627796,-1.190484 54.627866,-1.190494 54.627936,-1.190532 54.628053,-1.190650 54.628246,-1.190790 54.628340,-1.191142 54.628602,-1.191327 54.628719,-1.191432 54.628847,-1.191459 54.628925,-1.191448 54.629051,-1.191411 54.629122,-1.191109 54.629482,-1.190822 54.629731,-1.190585 54.629987,-1.190477 54.630116,-1.190330 54.630246,-1.189517 54.630551,-1.189268 54.630683,-1.189002 54.630849,-1.188723 54.630999,-1.188538 54.631116,-1.188449 54.631205,-1.188072 54.631475,-1.187874 54.631566,-1.187638 54.631652,-1.187314 54.631723,-1.186397 54.631747,-1.185541 54.631795,-1.185247 54.631826,-1.184650 54.631845,-1.184288 54.631842,-1.183599 54.631809,-1.182614 54.631804,-1.182021 54.631817,-1.181174 54.631850,-1.179795 54.631929,-1.178962 54.631916,-1.178257 54.631925,-1.177894 54.631862,-1.177491 54.631756,-1.177245 54.631727,-1.177098 54.631720,-1.176773 54.631717,-1.176356 54.631725,-1.175040 54.631829,-1.174217 54.631866,-1.173769 54.631876,-1.173585 54.631865,-1.173231 54.631835,-1.172880 54.631795,-1.172375 54.631724,-1.171453 54.631577,-1.171009 54.631482,-1.170626 54.631385,-1.169689 54.631262,-1.167423 54.630757,-1.166438 54.630519,-1.165844 54.630361,-1.165295 54.630237,-1.164307 54.629981,-1.163299 54.629817,-1.162826 54.629750,-1.162279 54.629688,-1.161871 54.629659,-1.161560 54.629646,-1.160612 54.629535,-1.160097 54.629513,-1.159580 54.629505,-1.159260 54.629525,-1.158963 54.629504,-1.157985 54.629490,-1.157904 54.629966,-1.157787 54.630452,-1.157653 54.630903,-1.157626 54.631189,-1.157569 54.631447,-1.157497 54.631660,-1.157340 54.632053,-1.157300 54.632185,-1.157271 54.632234,-1.157155 54.632368,-1.156801 54.632629,-1.156437 54.632920,-1.156214 54.633112,-1.155583 54.633881,-1.155364 54.634095,-1.154986 54.634487,-1.154786 54.634736,-1.154039 54.635863,-1.153824 54.636221,-1.153564 54.636567,-1.153450 54.636775,-1.153264 54.636982,-1.153181 54.637094,-1.152748 54.637749,-1.152548 54.638121,-1.152161 54.639082,-1.152134 54.639308,-1.152072 54.639549,-1.152007 54.639981,-1.152026 54.640560,-1.152043 54.640695,-1.152101 54.641065,-1.152266 54.641760,-1.152359 54.642007,-1.152656 54.642990,-1.152794 54.643350,-1.152903 54.643698,-1.152973 54.644057,-1.152999 54.644318,-1.153052 54.644526,-1.153090 54.644929,-1.153031 54.645061,-1.152964 54.645160,-1.152737 54.645332,-1.152393 54.645523,-1.151944 54.645710,-1.151615 54.645808,-1.150288 54.646295,-1.149815 54.646496,-1.149440 54.646641,-1.148810 54.646929,-1.148240 54.647205,-1.147837 54.647498,-1.147612 54.647808,-1.147540 54.647987,-1.149192 54.648057,-1.156337 54.648320,-1.157801 54.648380,-1.159102 54.648158,-1.159905 54.648231,-1.160296 54.648282,-1.160739 54.648310,-1.161136 54.648367,-1.161401 54.648427,-1.161623 54.648498,-1.162062 54.648693,-1.162653 54.648979,-1.163037 54.649141,-1.163691 54.649468,-1.164257 54.649812,-1.164544 54.650012,-1.165352 54.650531,-1.165800 54.650880,-1.166138 54.651095,-1.166333 54.651192,-1.166532 54.651274,-1.166828 54.651381,-1.167048 54.651486,-1.167321 54.651642,-1.167677 54.651826,-1.168412 54.652244,-1.168736 54.652404,-1.168861 54.652513,-1.168996 54.652572,-1.169364 54.652679,-1.170660 54.653286,-1.171107 54.653527,-1.171524 54.653773,-1.172507 54.654442,-1.172671 54.654543,-1.172844 54.654626,-1.173481 54.654859,-1.173892 54.655068,-1.174082 54.655207,-1.174476 54.655561,-1.175030 54.655860,-1.175193 54.655964,-1.175333 54.656087,-1.175485 54.656338,-1.175578 54.656418,-1.175779 54.656521,-1.176369 54.656908,-1.176446 54.656966,-1.176907 54.657386,-1.176976 54.657495,-1.177001 54.657619,-1.177050 54.657747,-1.177140 54.657876,-1.177192 54.657925,-1.177386 54.658071,-1.177595 54.658243,-1.177724 54.658301,-1.177706 54.658360,-1.177667 54.658372,-1.177622 54.658379,-1.177476 54.658369,-1.177434 54.658375,-1.177376 54.658400,-1.177369 54.658512,-1.177420 54.658603,-1.177593 54.658814,-1.177871 54.659061,-1.178176 54.659267,-1.178481 54.659445,-1.178745 54.659550,-1.178926 54.659634,-1.179056 54.659658,-1.179152 54.659644,-1.179288 54.659539,-1.179415 54.659468,-1.179484 54.659440,-1.179614 54.659423,-1.179739 54.659448,-1.180027 54.659625,-1.180085 54.659668,-1.180101 54.659718,-1.180117 54.659834,-1.180156 54.659860,-1.180224 54.659840,-1.180440 54.659690,-1.180529 54.659812,-1.180636 54.659931,-1.180645 54.659965,-1.180646 54.659999,-1.180622 54.660041,-1.180468 54.660227,-1.180446 54.660283,-1.180426 54.660387,-1.180426 54.660437,-1.180445 54.660488,-1.180514 54.660612,-1.180769 54.660869,-1.180910 54.660984,-1.181174 54.661227,-1.181370 54.661442,-1.181898 54.661967,-1.182017 54.662114,-1.182080 54.662224,-1.182166 54.662334,-1.182379 54.662480,-1.182783 54.663024,-1.183030 54.663305,-1.183351 54.663713,-1.183451 54.663754,-1.183642 54.663783,-1.183712 54.663784,-1.184219 54.663733,-1.184231 54.663742,-1.184247 54.663797,-1.184231 54.663836,-1.183920 54.664024,-1.183834 54.664103,-1.183810 54.664183,-1.183814 54.664291,-1.183871 54.664424,-1.183954 54.664487,-1.184122 54.664596,-1.184951 54.665415,-1.185313 54.665963,-1.185303 54.666029,-1.185308 54.666068,-1.185321 54.666109,-1.185369 54.666191,-1.185521 54.666377,-1.185698 54.666513,-1.185631 54.666543,-1.185516 54.666539,-1.185379 54.666480,-1.185125 54.666399,-1.184240 54.666436,-1.184236 54.666487,-1.184241 54.666493,-1.184473 54.666506,-1.184509 54.666589,-1.184605 54.666631,-1.184927 54.666627,-1.185354 54.666890,-1.185886 54.667183,-1.186332 54.667384,-1.186412 54.667530,-1.186422 54.667605,-1.186425 54.667823,-1.186384 54.667863,-1.186406 54.667926,-1.186364 54.667990,-1.186408 54.668076,-1.186223 54.668186,-1.186186 54.668230,-1.186219 54.668264,-1.186464 54.668185,-1.186575 54.668167,-1.186581 54.668191,-1.186524 54.668237,-1.186512 54.668293,-1.186623 54.668327,-1.186628 54.668370,-1.186675 54.668427,-1.186592 54.668470,-1.186543 54.668468,-1.186526 54.668420,-1.186452 54.668365,-1.186221 54.668495,-1.186225 54.668678,-1.186121 54.668789,-1.185979 54.668836,-1.185825 54.668935,-1.185868 54.668996,-1.186017 54.668953,-1.186079 54.668997,-1.186102 54.669002,-1.186387 54.668972,-1.186400 54.668981,-1.186472 54.669064,-1.186285 54.669242,-1.186269 54.669279,-1.186387 54.669276,-1.186567 54.669199,-1.186663 54.669248,-1.186943 54.669072,-1.187067 54.669045,-1.187128 54.669046,-1.187179 54.669150,-1.187296 54.669352,-1.187419 54.669823,-1.187498 54.670020,-1.187510 54.670585,-1.187609 54.670725,-1.187693 54.670862,-1.187799 54.671062,-1.187882 54.671280,-1.187931 54.671482,-1.187931 54.671564,-1.187919 54.671606,-1.187869 54.671695,-1.187726 54.671876,-1.187646 54.672086,-1.187629 54.672235,-1.187667 54.672396,-1.187691 54.672464,-1.187774 54.672563,-1.187917 54.672692,-1.188087 54.672888,-1.188222 54.672972,-1.188403 54.673058,-1.188466 54.673079,-1.188531 54.673099,-1.189167 54.673188,-1.189305 54.673229,-1.189495 54.673270,-1.189919 54.673405,-1.190115 54.673447,-1.190202 54.673446,-1.190285 54.673426,-1.190343 54.673372,-1.190390 54.673347,-1.190441 54.673338,-1.190499 54.673346,-1.190730 54.673414,-1.190886 54.673439,-1.190963 54.673462,-1.191067 54.673524,-1.191281 54.673627,-1.191348 54.673667,-1.191446 54.673744,-1.191481 54.673789,-1.191482 54.673799,-1.191469 54.673813,-1.191404 54.673820,-1.191317 54.673808,-1.191018 54.673681,-1.190866 54.673678,-1.190687 54.673696,-1.190601 54.673739,-1.190589 54.673770,-1.190587 54.673805,-1.190600 54.673849,-1.190657 54.673963,-1.190771 54.674048,-1.191137 54.674303,-1.191241 54.674386,-1.191582 54.674557,-1.192164 54.674988,-1.193223 54.675685,-1.193855 54.676133,-1.194423 54.676597,-1.194683 54.676993,-1.195170 54.677777,-1.195351 54.678031,-1.195411 54.678129,-1.196357 54.678952,-1.196505 54.679111,-1.196773 54.679293,-1.196863 54.679610,-1.196831 54.679646,-1.196813 54.679688,-1.196934 54.679736,-1.196889 54.679976,-1.196948 54.680163,-1.196946 54.680274,-1.197111 54.680512,-1.197178 54.680703,-1.197360 54.680848,-1.197390 54.680949,-1.197387 54.681112,-1.197545 54.681592,-1.197649 54.681621,-1.197670 54.681637,-1.197677 54.681654,-1.197677 54.681674,-1.197615 54.681743,-1.197594 54.681800,-1.197623 54.682126,-1.197737 54.682417,-1.197849 54.682550,-1.197900 54.682638,-1.198090 54.682829,-1.198077 54.683034,-1.198194 54.683238,-1.198286 54.683443,-1.198306 54.683591,-1.198265 54.683739,-1.198197 54.683856,-1.198228 54.683953,-1.198257 54.684116,-1.198234 54.684816,-1.198237 54.685132,-1.198217 54.685285,-1.198191 54.685405,-1.198149 54.685521,-1.198058 54.685574,-1.198029 54.685626,-1.197966 54.685666,-1.197846 54.685703,-1.197472 54.685719,-1.197259 54.685742,-1.196460 54.685900,-1.195822 54.686132,-1.195506 54.686307,-1.195214 54.686490,-1.194294 54.687249,-1.194170 54.687411,-1.194080 54.687591,-1.194019 54.687813,-1.193432 54.687993,-1.193109 54.688027,-1.192600 54.688595,-1.192889 54.688883,-1.193814 54.689731,-1.194129 54.690107,-1.194277 54.690386,-1.194558 54.690686,-1.194547 54.690767,-1.194312 54.690903,-1.193933 54.691005,-1.193833 54.691097,-1.193802 54.691289,-1.193591 54.691522,-1.193345 54.691718,-1.192892 54.691932,-1.192573 54.692232,-1.192109 54.692551,-1.191884 54.692627,-1.191713 54.692632,-1.191125 54.692861,-1.190821 54.692895,-1.190524 54.692899,-1.189299 54.693171,-1.189045 54.693320,-1.188803 54.693334,-1.188659 54.693312,-1.188473 54.693233,-1.188329 54.693201,-1.188203 54.693201,-1.188042 54.693215,-1.187960 54.693282,-1.187906 54.693349,-1.187904 54.693406,-1.185037 54.693273,-1.184841 54.693203,-1.184597 54.693218,-1.184354 54.693304,-1.184198 54.693389,-1.183119 54.693608,-1.183265 54.693494,-1.182961 54.693435,-1.182795 54.693304,-1.182673 54.693111,-1.182474 54.693110,-1.182422 54.693073,-1.182269 54.693066,-1.181779 54.692939,-1.181284 54.693024,-1.180459 54.693033,-1.180129 54.692943,-1.179860 54.692853,-1.179360 54.692839,-1.179050 54.693014,-1.178955 54.692894,-1.178856 54.692893,-1.178828 54.692971,-1.178409 54.692812,-1.178292 54.692848,-1.178313 54.693118,-1.178134 54.693143,-1.178229 54.693278,-1.178588 54.693245,-1.178767 54.693303,-1.178509 54.693633,-1.178204 54.693673,-1.178083 54.693813,-1.178188 54.693980,-1.177738 54.694085,-1.177486 54.694110,-1.177083 54.694107,-1.176672 54.694031,-1.176397 54.693889,-1.176159 54.693669,-1.175866 54.693517,-1.175539 54.693291,-1.175224 54.693031,-1.173981 54.691824,-1.173841 54.691879,-1.175435 54.693360,-1.175375 54.693468,-1.175446 54.693588,-1.175531 54.693583,-1.175616 54.693671,-1.175522 54.693737,-1.175536 54.693792,-1.175558 54.693839,-1.175776 54.693992,-1.175702 54.694040,-1.175622 54.693995,-1.175544 54.694005,-1.175514 54.694034,-1.175564 54.694157,-1.175533 54.694192,-1.175144 54.694221,-1.175128 54.694320,-1.175015 54.694373,-1.174955 54.694424,-1.175015 54.694472,-1.175161 54.694456,-1.175276 54.694521,-1.175381 54.694503,-1.175544 54.694542,-1.175528 54.694592,-1.175522 54.694723,-1.175595 54.694785,-1.175610 54.694825,-1.175553 54.694854,-1.175521 54.694933,-1.175392 54.694930,-1.175285 54.694991,-1.175216 54.695068,-1.175172 54.695163,-1.175159 54.695256,-1.175309 54.695273,-1.175358 54.695235,-1.175456 54.695227,-1.175437 54.695452,-1.175334 54.695481,-1.175325 54.695538,-1.175050 54.695555,-1.174991 54.695660,-1.174766 54.695675,-1.174759 54.695681,-1.174749 54.695730,-1.174837 54.695754,-1.174873 54.695792,-1.175071 54.695835,-1.175116 54.695901,-1.175086 54.696007,-1.174849 54.696007,-1.174836 54.695952,-1.174672 54.695947,-1.174637 54.696038,-1.174692 54.696176,-1.174727 54.696298,-1.174473 54.696264,-1.174546 54.696431,-1.174525 54.696505,-1.174623 54.696517,-1.174660 54.696606,-1.174785 54.696621,-1.174791 54.696717,-1.174974 54.696876,-1.175008 54.696941,-1.175081 54.696971,-1.175097 54.697005,-1.175107 54.697044,-1.175090 54.697134,-1.175026 54.697212,-1.175057 54.697289,-1.175112 54.697322,-1.175065 54.697372,-1.175056 54.697420,-1.175023 54.697461,-1.174997 54.697522,-1.174853 54.697562,-1.174849 54.697608,-1.174917 54.697646,-1.175086 54.697650,-1.175099 54.697700,-1.175264 54.697829,-1.175200 54.697894,-1.175202 54.697976,-1.175123 54.698024,-1.175116 54.698073,-1.175149 54.698132,-1.175277 54.698238,-1.175402 54.698215,-1.175423 54.698153,-1.175467 54.698113,-1.175552 54.698132,-1.175658 54.698103,-1.175715 54.698132,-1.175692 54.698186,-1.175727 54.698215,-1.175769 54.698241,-1.175853 54.698236,-1.175851 54.698316,-1.175920 54.698343,-1.175998 54.698333,-1.176011 54.698396,-1.176134 54.698654,-1.176365 54.698591,-1.176324 54.698474,-1.176339 54.698426,-1.176370 54.698413,-1.176465 54.698466,-1.176661 54.698616,-1.176786 54.698665,-1.176907 54.698740,-1.176959 54.698902,-1.176965 54.698951,-1.177010 54.699002,-1.177066 54.699015,-1.177007 54.699165,-1.176918 54.699259,-1.176924 54.699285,-1.176936 54.699307,-1.177047 54.699316,-1.177066 54.699378,-1.177135 54.699418,-1.177269 54.699384,-1.177365 54.699418,-1.177478 54.699508,-1.177510 54.699542,-1.177473 54.699612,-1.177486 54.699647,-1.177445 54.699732,-1.177532 54.699766,-1.177645 54.699736,-1.177761 54.699783,-1.177875 54.699795,-1.177913 54.699845,-1.178021 54.699870,-1.178110 54.699876,-1.178165 54.699889,-1.177995 54.700010,-1.177872 54.699986,-1.177770 54.700013,-1.177714 54.700008,-1.177660 54.699999,-1.177580 54.699972,-1.177469 54.700012,-1.177333 54.700006,-1.176977 54.700189,-1.176895 54.700252,-1.176930 54.700301,-1.176897 54.700357,-1.177022 54.700419,-1.177185 54.700352,-1.177231 54.700300,-1.177215 54.700249,-1.177234 54.700223,-1.177361 54.700204,-1.177590 54.700233,-1.177722 54.700267,-1.177897 54.700356,-1.177985 54.700430,-1.177873 54.700629,-1.177758 54.700689,-1.177683 54.700664,-1.177632 54.700627,-1.177430 54.700560,-1.177321 54.700498,-1.177274 54.700446,-1.177181 54.700439,-1.177049 54.700473,-1.177068 54.700540,-1.177125 54.700604,-1.177295 54.700713,-1.177384 54.700754,-1.177479 54.700815,-1.177590 54.700871,-1.177481 54.700964,-1.177292 54.701104,-1.177363 54.701177,-1.177499 54.701243,-1.177645 54.701288,-1.177765 54.701204,-1.177879 54.701215,-1.178012 54.701241,-1.178111 54.701198,-1.178149 54.701151,-1.178093 54.701104,-1.178115 54.701017,-1.178093 54.700987,-1.178123 54.700921,-1.178126 54.700842,-1.178187 54.700758,-1.178177 54.700711,-1.178364 54.700585,-1.178403 54.700585,-1.178438 54.700591,-1.178473 54.700649,-1.178636 54.700685,-1.178645 54.700733,-1.178732 54.700774,-1.178795 54.700757,-1.178884 54.700791,-1.178744 54.700894,-1.178659 54.700881,-1.178563 54.700924,-1.178510 54.700958,-1.178460 54.700993,-1.178439 54.701033,-1.178475 54.701057,-1.178551 54.701070,-1.178624 54.701048,-1.178732 54.701079,-1.178894 54.701004,-1.179075 54.700868,-1.179137 54.700865,-1.179154 54.700928,-1.179239 54.700966,-1.179352 54.700967,-1.179367 54.701021,-1.179575 54.701101,-1.179598 54.701158,-1.179700 54.701270,-1.179667 54.701289,-1.179559 54.701282,-1.179466 54.701316,-1.179503 54.701356,-1.179668 54.701462,-1.179757 54.701544,-1.179693 54.701626,-1.179712 54.701680,-1.179708 54.701736,-1.179790 54.701785,-1.179898 54.701772,-1.180036 54.701791,-1.180200 54.701723,-1.180518 54.701782,-1.180638 54.701691,-1.180675 54.701652,-1.180751 54.701616,-1.180853 54.701633,-1.180953 54.701702,-1.180913 54.701747,-1.181022 54.701810,-1.181056 54.701905,-1.181038 54.701966,-1.180814 54.702050,-1.180681 54.702027,-1.180408 54.702116,-1.180323 54.702179,-1.180137 54.702367,-1.180175 54.702415,-1.180192 54.702422,-1.180284 54.702382,-1.180361 54.702417,-1.180387 54.702469,-1.180473 54.702473,-1.180584 54.702442,-1.180881 54.702288,-1.180965 54.702318,-1.180769 54.702505,-1.180817 54.702569,-1.180817 54.702610,-1.180811 54.702650,-1.180777 54.702703,-1.180771 54.702811,-1.180736 54.702860,-1.180733 54.702907,-1.180880 54.703000,-1.180955 54.703117,-1.180845 54.703203,-1.181060 54.703386,-1.181162 54.703402,-1.181260 54.703380,-1.181309 54.703335,-1.181223 54.703109,-1.181210 54.703036,-1.181157 54.702971,-1.181217 54.702896,-1.181158 54.702836,-1.181175 54.702773,-1.180996 54.702661,-1.181048 54.702606,-1.181074 54.702528,-1.181161 54.702535,-1.181278 54.702586,-1.181231 54.702627,-1.181216 54.702679,-1.181284 54.702732,-1.181354 54.702821,-1.181452 54.702826,-1.181664 54.702752,-1.181780 54.702773,-1.182031 54.702664,-1.182121 54.702651,-1.182442 54.702497,-1.182551 54.702502,-1.182727 54.702461,-1.182780 54.702496,-1.182912 54.702495,-1.183122 54.702399,-1.183156 54.702399,-1.183262 54.702467,-1.183141 54.702563,-1.183330 54.702647,-1.183380 54.702704,-1.183444 54.702747,-1.183567 54.702719,-1.183580 54.702698,-1.183594 54.702633,-1.183640 54.702585,-1.183856 54.702647,-1.183964 54.702598,-1.184030 54.702551,-1.184121 54.702518,-1.184149 54.702492,-1.184170 54.702462,-1.184139 54.702380,-1.184192 54.702314,-1.184145 54.702165,-1.184038 54.702157,-1.184020 54.701961,-1.184085 54.701924,-1.184267 54.701902,-1.184480 54.702027,-1.184475 54.702089,-1.184553 54.702162,-1.184748 54.702213,-1.184973 54.702122,-1.185123 54.702166,-1.185211 54.702237,-1.185157 54.702294,-1.185284 54.702403,-1.185233 54.702444,-1.185333 54.702518,-1.185389 54.702514,-1.185500 54.702593,-1.185493 54.702672,-1.185566 54.702718,-1.185710 54.702657,-1.185802 54.702716,-1.185777 54.702783,-1.185547 54.702897,-1.185631 54.702968,-1.185699 54.702981,-1.185670 54.703044,-1.185659 54.703106,-1.185735 54.703348,-1.185623 54.703432,-1.185668 54.703507,-1.185737 54.703499,-1.186005 54.703423,-1.186105 54.703332,-1.186255 54.703285,-1.186289 54.703267,-1.186240 54.703180,-1.186507 54.703159,-1.186515 54.703164,-1.186540 54.703210,-1.186455 54.703339,-1.186468 54.703420,-1.186206 54.703525,-1.186242 54.703610,-1.186265 54.703635,-1.186360 54.703670,-1.186424 54.703677,-1.186385 54.703734,-1.186380 54.703829,-1.186183 54.703905,-1.186158 54.703794,-1.186133 54.703761,-1.186103 54.703732,-1.186033 54.703731,-1.185970 54.703760,-1.185960 54.703826,-1.185944 54.703837,-1.185927 54.703844,-1.185894 54.703842,-1.185783 54.703825,-1.185702 54.703846,-1.185686 54.703881,-1.185725 54.703929,-1.185821 54.703961,-1.185964 54.704068,-1.186062 54.704070,-1.186141 54.704099,-1.186248 54.704104,-1.186309 54.704142,-1.186469 54.704140,-1.186519 54.704172,-1.186586 54.704194,-1.186676 54.704156,-1.186686 54.704123,-1.186753 54.704106,-1.186845 54.704181,-1.186835 54.704214,-1.186860 54.704298,-1.186814 54.704355,-1.186751 54.704388,-1.186686 54.704369,-1.186518 54.704264,-1.186380 54.704243,-1.186218 54.704238,-1.185979 54.704259,-1.185906 54.704271,-1.185900 54.704321,-1.186023 54.704456,-1.186289 54.704381,-1.186381 54.704406,-1.186586 54.704507,-1.186642 54.704543,-1.186750 54.704680,-1.186745 54.704754,-1.186758 54.704814,-1.186837 54.704880,-1.186866 54.704925,-1.186978 54.705000,-1.187322 54.705032,-1.187693 54.705104,-1.187965 54.705113,-1.188048 54.705086,-1.188031 54.705007,-1.188131 54.704985,-1.188373 54.704850,-1.188382 54.704784,-1.188527 54.704724,-1.188498 54.704422,-1.188373 54.704384,-1.188436 54.704316,-1.188418 54.704196,-1.188637 54.703899,-1.189076 54.703602,-1.188946 54.703790,-1.188935 54.703891,-1.189189 54.703675,-1.189421 54.703632,-1.189999 54.703597,-1.190386 54.703510,-1.190519 54.703522,-1.190489 54.703617,-1.190296 54.703654,-1.190274 54.703766,-1.190734 54.703633,-1.191087 54.703752,-1.191336 54.703892,-1.191437 54.703894,-1.191563 54.703991,-1.191441 54.704040,-1.191358 54.704085,-1.191373 54.704123,-1.191316 54.704182,-1.191306 54.704208,-1.191440 54.704359,-1.191391 54.704398,-1.191147 54.704407,-1.191154 54.704524,-1.191191 54.704618,-1.191266 54.704738,-1.191329 54.704867,-1.191644 54.704801,-1.191793 54.704866,-1.191793 54.704954,-1.191446 54.705054,-1.191388 54.705101,-1.191387 54.705141,-1.191437 54.705198,-1.191447 54.705258,-1.191488 54.705291,-1.191648 54.705269,-1.191725 54.705319,-1.192107 54.705206,-1.192163 54.705119,-1.192276 54.705160,-1.192385 54.705140,-1.192470 54.705141,-1.192671 54.705118,-1.192608 54.705380,-1.192821 54.705387,-1.192971 54.705544,-1.193071 54.705348,-1.193361 54.705279,-1.193548 54.705113,-1.193700 54.705338,-1.193749 54.705393,-1.193910 54.705478,-1.194009 54.705479,-1.194062 54.705534,-1.194331 54.705693,-1.194544 54.705769,-1.194746 54.705796,-1.194809 54.705840,-1.194730 54.705910,-1.194800 54.706052,-1.194881 54.706100,-1.195014 54.706074,-1.195145 54.706136,-1.195340 54.706045,-1.194934 54.705811,-1.195053 54.705605,-1.195268 54.705556,-1.195358 54.705308,-1.197288 54.705992,-1.198114 54.706129,-1.199364 54.706452,-1.199819 54.706604,-1.200286 54.706781,-1.200810 54.707040,-1.201560 54.707397,-1.201909 54.707517,-1.202088 54.707567,-1.202581 54.707755,-1.202790 54.707825,-1.203178 54.707993,-1.203331 54.708027,-1.203533 54.708039,-1.203640 54.708055,-1.204247 54.708177,-1.204548 54.708254,-1.204729 54.708309,-1.205095 54.708451,-1.205309 54.708559,-1.205490 54.708676,-1.205769 54.708919,-1.206075 54.709087,-1.206232 54.709195,-1.206444 54.709308,-1.207019 54.709512,-1.207189 54.709554,-1.207805 54.709805,-1.208044 54.709893,-1.208769 54.710114,-1.208997 54.710208,-1.209210 54.710342,-1.209421 54.710522,-1.209559 54.710664,-1.209770 54.710948,-1.210141 54.711145,-1.210495 54.711389,-1.210781 54.711620,-1.211083 54.711826,-1.211255 54.711857,-1.211459 54.711878,-1.212191 54.711912,-1.212345 54.711965,-1.212468 54.712045,-1.212530 54.712106,-1.212596 54.712173,-1.212735 54.712357,-1.212926 54.712450,-1.213126 54.712504,-1.213357 54.712551,-1.213537 54.712618,-1.213752 54.712734,-1.214172 54.712927,-1.215372 54.713574,-1.215853 54.713761,-1.215970 54.713794,-1.216077 54.713790,-1.216149 54.713747,-1.216228 54.713618,-1.216303 54.713580,-1.216357 54.713575,-1.216475 54.713581,-1.217005 54.713659,-1.217224 54.713706,-1.217875 54.713905,-1.218156 54.714070,-1.218254 54.714174,-1.218997 54.714338,-1.220134 54.714644,-1.220367 54.714722,-1.220602 54.714820,-1.220988 54.715039,-1.221585 54.715360,-1.222687 54.715934,-1.222992 54.716054,-1.223477 54.716224,-1.223791 54.716343,-1.224222 54.716529,-1.224458 54.716616,-1.224941 54.716762,-1.225370 54.716905,-1.227214 54.717779,-1.227296 54.717806,-1.229065 54.718263,-1.229347 54.718370,-1.229653 54.718513,-1.229768 54.718606,-1.230352 54.719252,-1.230569 54.719431,-1.230724 54.719521,-1.231020 54.719652,-1.231212 54.719720,-1.231492 54.719798,-1.231692 54.719866,-1.231874 54.719953,-1.232144 54.720102,-1.232849 54.720457,-1.233409 54.720786,-1.233593 54.720920,-1.233804 54.721095,-1.234247 54.721489,-1.234422 54.721575,-1.234633 54.721653,-1.234735 54.721684,-1.235250 54.721786,-1.235357 54.721829,-1.235480 54.721897,-1.235981 54.722333,-1.236171 54.722458,-1.236383 54.722567,-1.236531 54.722626,-1.236804 54.722717,-1.237892 54.722994,-1.237958 54.723017,-1.238264 54.723179,-1.238760 54.723415,-1.239136 54.723572,-1.239567 54.723734,-1.239707 54.723838)))",E60000003 +"MULTIPOLYGON (((-1.198605 54.582868,-1.199165 54.582641,-1.200042 54.582332,-1.200891 54.582065,-1.201809 54.581809,-1.202284 54.581699,-1.202896 54.581585,-1.204893 54.581266,-1.205739 54.581161,-1.206460 54.581089,-1.207378 54.581026,-1.208247 54.580996,-1.209064 54.580994,-1.209591 54.581010,-1.210401 54.581072,-1.211000 54.581135,-1.212071 54.581274,-1.214092 54.581564,-1.217827 54.582482,-1.220800 54.583225,-1.221689 54.583421,-1.222118 54.583506,-1.223031 54.583670,-1.223961 54.583823,-1.227394 54.584325,-1.227885 54.584410,-1.228024 54.584424,-1.228208 54.584471,-1.229727 54.584758,-1.230900 54.585029,-1.231849 54.585309,-1.232529 54.585492,-1.233812 54.585854,-1.234389 54.586036,-1.235291 54.586265,-1.236228 54.586529,-1.236946 54.586813,-1.237178 54.586897,-1.237577 54.587072,-1.238671 54.587651,-1.239402 54.588089,-1.240329 54.588542,-1.240465 54.588624,-1.240587 54.588712,-1.240732 54.588841,-1.241049 54.589078,-1.241270 54.589202,-1.243200 54.590094,-1.244279 54.590555,-1.244696 54.590701,-1.245335 54.590872,-1.246205 54.591049,-1.247004 54.591198,-1.248410 54.591322,-1.248727 54.591379,-1.249066 54.591478,-1.249163 54.591498,-1.249364 54.591517,-1.251122 54.591530,-1.251735 54.591437,-1.252359 54.591315,-1.252833 54.591193,-1.253067 54.591124,-1.253412 54.591009,-1.254355 54.590733,-1.254682 54.590624,-1.254989 54.590507,-1.255407 54.590320,-1.255834 54.590092,-1.256296 54.589804,-1.256741 54.589475,-1.256874 54.589342,-1.257308 54.588857,-1.257451 54.588664,-1.257820 54.588094,-1.257992 54.587763,-1.258170 54.587237,-1.258353 54.586599,-1.258756 54.584588,-1.259168 54.582260,-1.259578 54.579866,-1.259831 54.578539,-1.260301 54.575944,-1.261012 54.572971,-1.261204 54.572203,-1.261292 54.571932,-1.261327 54.571853,-1.261460 54.571620,-1.261939 54.570939,-1.262189 54.570633,-1.262559 54.570293,-1.262961 54.569969,-1.263179 54.569810,-1.263402 54.569663,-1.263738 54.569472,-1.265388 54.568679,-1.266145 54.568377,-1.267220 54.568033,-1.267819 54.567883,-1.269165 54.567600,-1.269864 54.567467,-1.270382 54.567387,-1.271509 54.567248,-1.272322 54.567167,-1.272949 54.567118,-1.274064 54.567071,-1.275400 54.566953,-1.277185 54.566696,-1.278688 54.566371,-1.279791 54.566092,-1.281527 54.565621,-1.282000 54.565465,-1.282626 54.565284,-1.282424 54.565059,-1.282156 54.564937,-1.281592 54.564709,-1.281288 54.564538,-1.281173 54.564439,-1.281117 54.564286,-1.281044 54.564229,-1.280936 54.564201,-1.280852 54.564146,-1.280827 54.564081,-1.280840 54.563973,-1.280663 54.563911,-1.280381 54.563586,-1.280162 54.563375,-1.279903 54.563060,-1.279564 54.562559,-1.279345 54.562349,-1.279141 54.562099,-1.278815 54.561646,-1.278777 54.561572,-1.278593 54.561340,-1.278051 54.560687,-1.277864 54.560541,-1.277698 54.560426,-1.276997 54.560006,-1.276787 54.559837,-1.276180 54.559244,-1.275578 54.558826,-1.275271 54.558651,-1.274450 54.558344,-1.274062 54.558164,-1.273351 54.557906,-1.273155 54.557813,-1.272989 54.557764,-1.272605 54.557693,-1.272237 54.557613,-1.271904 54.557516,-1.271680 54.557436,-1.271433 54.557317,-1.271176 54.557180,-1.270980 54.557044,-1.270911 54.556960,-1.270851 54.556854,-1.270666 54.556371,-1.270612 54.556024,-1.270620 54.555737,-1.270631 54.555661,-1.270703 54.555411,-1.270774 54.555200,-1.270808 54.555068,-1.270958 54.554735,-1.271042 54.554446,-1.271135 54.554266,-1.271355 54.553990,-1.271536 54.553784,-1.271781 54.553572,-1.272427 54.553189,-1.273270 54.552808,-1.273606 54.552710,-1.273701 54.552633,-1.273754 54.552526,-1.273770 54.552303,-1.273892 54.552181,-1.274134 54.552049,-1.274344 54.551981,-1.274660 54.551911,-1.275030 54.551873,-1.275230 54.551869,-1.275376 54.551851,-1.275520 54.551798,-1.275597 54.551720,-1.275792 54.550948,-1.275901 54.550286,-1.276016 54.550075,-1.276198 54.549154,-1.276196 54.548815,-1.276387 54.548576,-1.276985 54.548029,-1.277115 54.547894,-1.277213 54.547867,-1.277194 54.547719,-1.277151 54.547631,-1.277157 54.547521,-1.276938 54.547254,-1.276936 54.547177,-1.277025 54.547149,-1.277371 54.547176,-1.277792 54.547189,-1.277915 54.547159,-1.278010 54.547109,-1.278064 54.547033,-1.278049 54.546949,-1.277902 54.546853,-1.277795 54.546686,-1.277760 54.546505,-1.277759 54.546373,-1.277790 54.546077,-1.277876 54.546026,-1.278012 54.545969,-1.278204 54.545940,-1.278345 54.545942,-1.278530 54.545834,-1.278635 54.545762,-1.278681 54.545711,-1.278674 54.545662,-1.278531 54.545569,-1.278556 54.545471,-1.278631 54.545369,-1.278784 54.545300,-1.278873 54.545244,-1.278887 54.545089,-1.278947 54.544679,-1.278949 54.544569,-1.278850 54.544105,-1.278716 54.543902,-1.278682 54.543757,-1.278650 54.543619,-1.278706 54.543569,-1.278704 54.543515,-1.278620 54.543500,-1.278566 54.543392,-1.278568 54.543257,-1.278643 54.543146,-1.278694 54.543040,-1.278685 54.542874,-1.278721 54.542574,-1.278810 54.542539,-1.278810 54.542496,-1.278775 54.542472,-1.278786 54.542415,-1.278876 54.542364,-1.279052 54.542285,-1.279197 54.542198,-1.279240 54.542149,-1.279257 54.542090,-1.279187 54.542023,-1.279223 54.541891,-1.279306 54.541737,-1.279408 54.541630,-1.279566 54.541538,-1.279683 54.541412,-1.279745 54.541300,-1.279821 54.541207,-1.280080 54.540991,-1.280097 54.540898,-1.280207 54.540800,-1.280420 54.540641,-1.280453 54.540495,-1.280703 54.540352,-1.280823 54.540326,-1.280868 54.540268,-1.280873 54.540199,-1.280989 54.540146,-1.281050 54.540067,-1.281053 54.539963,-1.281155 54.539853,-1.281168 54.539766,-1.281164 54.539715,-1.281151 54.539676,-1.281081 54.539613,-1.281082 54.539559,-1.281232 54.539471,-1.281320 54.539339,-1.281417 54.539279,-1.281591 54.539228,-1.281666 54.539181,-1.281706 54.539118,-1.281726 54.539041,-1.281832 54.538929,-1.281869 54.538794,-1.281960 54.538659,-1.281999 54.538638,-1.282153 54.538586,-1.282244 54.538522,-1.282400 54.538435,-1.282518 54.538401,-1.282611 54.538434,-1.282718 54.538430,-1.282774 54.538409,-1.282895 54.538289,-1.283002 54.538220,-1.283182 54.538179,-1.283338 54.538181,-1.283408 54.538049,-1.283491 54.537979,-1.283558 54.537954,-1.283640 54.537957,-1.283890 54.538126,-1.283963 54.538119,-1.283998 54.538084,-1.283939 54.537976,-1.283941 54.537888,-1.284007 54.537840,-1.284118 54.537828,-1.284255 54.537771,-1.284460 54.537711,-1.284575 54.537515,-1.284580 54.537491,-1.284482 54.537371,-1.284542 54.537269,-1.284553 54.537188,-1.284552 54.537126,-1.284571 54.537094,-1.284779 54.537066,-1.284818 54.537035,-1.284804 54.536978,-1.284746 54.536920,-1.284650 54.536871,-1.284614 54.536793,-1.284623 54.536709,-1.284656 54.536666,-1.284720 54.536619,-1.284825 54.536568,-1.285032 54.536502,-1.285362 54.536277,-1.285432 54.536250,-1.285437 54.536196,-1.285398 54.536139,-1.285315 54.536097,-1.285289 54.536044,-1.285290 54.535935,-1.285253 54.535878,-1.285174 54.535802,-1.285157 54.535717,-1.285103 54.535575,-1.285073 54.535363,-1.285015 54.535307,-1.284902 54.535242,-1.284952 54.535158,-1.284976 54.535000,-1.285045 54.534874,-1.284991 54.534527,-1.284914 54.534463,-1.284907 54.534420,-1.284951 54.534282,-1.284885 54.534172,-1.284860 54.533763,-1.284761 54.533350,-1.284737 54.533098,-1.284660 54.532952,-1.284653 54.532898,-1.284745 54.532770,-1.284769 54.532615,-1.284758 54.532420,-1.284682 54.532365,-1.284703 54.532296,-1.284746 54.532224,-1.284892 54.532130,-1.284916 54.532052,-1.284924 54.531960,-1.284811 54.531914,-1.284783 54.531834,-1.284687 54.531738,-1.284651 54.531654,-1.284583 54.531573,-1.284832 54.531306,-1.284979 54.531016,-1.284950 54.530924,-1.284948 54.530848,-1.284720 54.530880,-1.284659 54.530862,-1.284682 54.530754,-1.284729 54.530657,-1.284726 54.530552,-1.284701 54.530503,-1.284711 54.530465,-1.284889 54.530445,-1.285007 54.530422,-1.285060 54.530370,-1.285074 54.530297,-1.284980 54.530238,-1.284920 54.530144,-1.284875 54.529903,-1.284734 54.529760,-1.284691 54.529631,-1.284580 54.529483,-1.284581 54.529375,-1.284763 54.529307,-1.284795 54.529258,-1.284779 54.529060,-1.284728 54.529049,-1.284590 54.529058,-1.284495 54.529036,-1.284472 54.529006,-1.284491 54.528972,-1.284608 54.528916,-1.284601 54.528885,-1.284345 54.528858,-1.284274 54.528823,-1.284265 54.528766,-1.284315 54.528726,-1.284259 54.528572,-1.284274 54.528486,-1.284433 54.528386,-1.284465 54.528346,-1.284454 54.528294,-1.284403 54.528264,-1.284127 54.528262,-1.284084 54.528235,-1.284326 54.528086,-1.284338 54.528021,-1.284332 54.527974,-1.284308 54.527941,-1.284222 54.527942,-1.284077 54.527995,-1.283904 54.527986,-1.283753 54.527958,-1.283515 54.527885,-1.283530 54.527738,-1.283552 54.527702,-1.283622 54.527698,-1.283694 54.527716,-1.283812 54.527776,-1.283871 54.527777,-1.283900 54.527760,-1.283898 54.527652,-1.283832 54.527617,-1.283714 54.527615,-1.283617 54.527628,-1.283522 54.527603,-1.283389 54.527508,-1.283503 54.527452,-1.283528 54.527397,-1.283530 54.527285,-1.283485 54.527222,-1.283414 54.527192,-1.283211 54.527159,-1.283151 54.527129,-1.283121 54.527095,-1.283132 54.526976,-1.283100 54.526899,-1.283041 54.526834,-1.282990 54.526791,-1.282950 54.526742,-1.282942 54.526706,-1.283001 54.526637,-1.283021 54.526566,-1.282724 54.526460,-1.282602 54.526459,-1.282418 54.526499,-1.282355 54.526485,-1.282264 54.526438,-1.282116 54.526448,-1.282071 54.526430,-1.282066 54.526374,-1.282149 54.526247,-1.282161 54.526054,-1.282192 54.525995,-1.282245 54.525929,-1.282172 54.525779,-1.282182 54.525725,-1.282290 54.525677,-1.282428 54.525546,-1.282452 54.525506,-1.282457 54.525382,-1.282429 54.525316,-1.282321 54.525213,-1.282329 54.525107,-1.282353 54.525000,-1.282317 54.524945,-1.282188 54.524891,-1.282113 54.524764,-1.282040 54.524701,-1.282057 54.524580,-1.282009 54.524488,-1.282013 54.524383,-1.282059 54.524110,-1.282120 54.524069,-1.282139 54.523964,-1.282244 54.523816,-1.282346 54.523635,-1.282436 54.523535,-1.282447 54.523392,-1.282636 54.523272,-1.282650 54.523217,-1.282733 54.523127,-1.282766 54.523030,-1.282764 54.522966,-1.282690 54.522884,-1.282695 54.522770,-1.282607 54.522731,-1.282439 54.522709,-1.282266 54.522574,-1.282122 54.522567,-1.282027 54.522538,-1.281940 54.522478,-1.281945 54.522369,-1.281890 54.522343,-1.281777 54.522253,-1.281748 54.522202,-1.281785 54.522155,-1.281893 54.522068,-1.281895 54.522013,-1.281811 54.521970,-1.281823 54.521835,-1.281540 54.521756,-1.281502 54.521687,-1.281307 54.521651,-1.281275 54.521525,-1.281315 54.521475,-1.281323 54.521343,-1.281436 54.521263,-1.281440 54.521210,-1.281376 54.521160,-1.281140 54.521101,-1.281044 54.521060,-1.281019 54.520958,-1.280956 54.520885,-1.280963 54.520804,-1.280821 54.520658,-1.280750 54.520558,-1.280746 54.520522,-1.280913 54.520439,-1.280972 54.520394,-1.281101 54.520269,-1.281138 54.520248,-1.281472 54.520250,-1.281494 54.520125,-1.281528 54.520073,-1.281601 54.520036,-1.281789 54.519975,-1.281774 54.519925,-1.281721 54.519872,-1.281702 54.519822,-1.281712 54.519768,-1.281738 54.519728,-1.281945 54.519729,-1.282002 54.519718,-1.282002 54.519653,-1.281931 54.519526,-1.282034 54.519470,-1.282069 54.519425,-1.282072 54.519225,-1.282089 54.519177,-1.282053 54.519106,-1.281978 54.519059,-1.281980 54.519013,-1.282062 54.519001,-1.282282 54.518999,-1.282322 54.518975,-1.282346 54.518947,-1.282355 54.518865,-1.282249 54.518846,-1.282174 54.518777,-1.282167 54.518668,-1.282069 54.518619,-1.282068 54.518582,-1.282112 54.518555,-1.282218 54.518520,-1.282265 54.518461,-1.282249 54.518380,-1.282155 54.518317,-1.281912 54.518236,-1.281773 54.518218,-1.281508 54.518211,-1.281412 54.518274,-1.281332 54.518279,-1.281254 54.518258,-1.281107 54.518162,-1.281111 54.518084,-1.281009 54.518020,-1.280850 54.517998,-1.280859 54.517967,-1.280854 54.517945,-1.280805 54.517913,-1.280751 54.517913,-1.280467 54.518005,-1.280051 54.517956,-1.279437 54.517913,-1.279331 54.517876,-1.279262 54.517755,-1.279272 54.517702,-1.279360 54.517643,-1.279399 54.517597,-1.279260 54.517495,-1.279165 54.517480,-1.279069 54.517488,-1.278885 54.517557,-1.278760 54.517556,-1.278615 54.517479,-1.278577 54.517449,-1.278574 54.517432,-1.278585 54.517415,-1.278624 54.517395,-1.278780 54.517386,-1.278903 54.517355,-1.278936 54.517340,-1.278959 54.517320,-1.278967 54.517297,-1.278967 54.517235,-1.278919 54.517207,-1.278828 54.517216,-1.278652 54.517283,-1.278575 54.517285,-1.278366 54.517203,-1.278352 54.517150,-1.278323 54.517103,-1.277999 54.517002,-1.277915 54.516956,-1.277947 54.516831,-1.277930 54.516786,-1.277776 54.516722,-1.277746 54.516669,-1.277749 54.516622,-1.277579 54.516558,-1.277443 54.516561,-1.277340 54.516606,-1.277160 54.516488,-1.277045 54.516543,-1.276938 54.516573,-1.276816 54.516570,-1.276732 54.516514,-1.276818 54.516470,-1.276820 54.516344,-1.276780 54.516312,-1.276576 54.516260,-1.276462 54.516214,-1.276406 54.516155,-1.276387 54.516095,-1.276335 54.516065,-1.276253 54.516061,-1.276042 54.515955,-1.275836 54.515918,-1.275746 54.515915,-1.275669 54.515881,-1.275601 54.515828,-1.275597 54.515783,-1.275386 54.515680,-1.275142 54.515677,-1.275029 54.515578,-1.274912 54.515450,-1.274719 54.515365,-1.274661 54.515329,-1.274567 54.515246,-1.274468 54.515074,-1.274267 54.514904,-1.274047 54.514858,-1.273916 54.514866,-1.273723 54.514923,-1.273675 54.514927,-1.273600 54.514889,-1.273556 54.514838,-1.273538 54.514793,-1.273462 54.514761,-1.273323 54.514766,-1.273206 54.514788,-1.273083 54.514867,-1.272963 54.514923,-1.272802 54.515098,-1.272624 54.515041,-1.272579 54.515041,-1.272438 54.515062,-1.272167 54.514975,-1.271951 54.515002,-1.271836 54.515058,-1.271777 54.515054,-1.271721 54.515025,-1.271698 54.514946,-1.271633 54.514915,-1.271521 54.514914,-1.271449 54.514937,-1.271359 54.514932,-1.271292 54.514889,-1.271304 54.514823,-1.271249 54.514789,-1.270979 54.514783,-1.270853 54.514825,-1.270617 54.514733,-1.270523 54.514732,-1.270334 54.514750,-1.270140 54.514694,-1.270036 54.514633,-1.269943 54.514614,-1.269784 54.514610,-1.269712 54.514630,-1.269712 54.514696,-1.269670 54.514734,-1.269560 54.514733,-1.269281 54.514656,-1.268988 54.514612,-1.268925 54.514578,-1.268797 54.514577,-1.268795 54.514634,-1.268726 54.514667,-1.268439 54.514663,-1.268324 54.514701,-1.268186 54.514694,-1.268161 54.514665,-1.268220 54.514616,-1.268192 54.514574,-1.267921 54.514531,-1.267855 54.514483,-1.267816 54.514427,-1.267828 54.514351,-1.267743 54.514347,-1.267340 54.514483,-1.267267 54.514446,-1.267248 54.514373,-1.267044 54.514227,-1.266941 54.514179,-1.266960 54.514155,-1.267082 54.514173,-1.267130 54.514151,-1.267139 54.514102,-1.266997 54.514063,-1.266938 54.514018,-1.266902 54.513967,-1.266821 54.513929,-1.266601 54.513880,-1.266511 54.513877,-1.266434 54.513894,-1.266381 54.513872,-1.266324 54.513788,-1.266229 54.513685,-1.266243 54.513567,-1.265870 54.513432,-1.265695 54.513400,-1.265491 54.513398,-1.265267 54.513410,-1.265218 54.513392,-1.265119 54.513270,-1.264981 54.513215,-1.264774 54.513164,-1.264653 54.513085,-1.264648 54.513024,-1.264601 54.512985,-1.264476 54.512977,-1.264250 54.513006,-1.264164 54.512996,-1.264015 54.512818,-1.264032 54.512658,-1.263863 54.512545,-1.263764 54.512545,-1.263567 54.512582,-1.263041 54.512565,-1.262946 54.512533,-1.262781 54.512424,-1.262662 54.512422,-1.262405 54.512552,-1.262181 54.512640,-1.262001 54.512680,-1.261735 54.512678,-1.261522 54.512690,-1.261208 54.512678,-1.261042 54.512638,-1.260857 54.512635,-1.260491 54.512532,-1.260422 54.512606,-1.260256 54.512717,-1.260043 54.512693,-1.259910 54.512700,-1.259749 54.512743,-1.259598 54.512750,-1.259066 54.512674,-1.258964 54.512653,-1.258832 54.512567,-1.258704 54.512538,-1.258509 54.512566,-1.258444 54.512551,-1.258349 54.512500,-1.258108 54.512323,-1.258038 54.512225,-1.257934 54.512224,-1.257119 54.511854,-1.256575 54.511556,-1.256457 54.511430,-1.256375 54.511402,-1.256386 54.512144,-1.256303 54.512395,-1.253546 54.512808,-1.251239 54.513117,-1.251230 54.512997,-1.251104 54.512890,-1.250752 54.512287,-1.250670 54.512128,-1.250645 54.512002,-1.250459 54.512003,-1.250306 54.511930,-1.250135 54.511932,-1.250099 54.511852,-1.250088 54.511785,-1.250008 54.511751,-1.249825 54.511713,-1.249819 54.511786,-1.249651 54.511770,-1.249538 54.511724,-1.249501 54.511791,-1.249301 54.511806,-1.249177 54.511879,-1.249116 54.511886,-1.248960 54.511973,-1.248787 54.511970,-1.248555 54.511920,-1.248471 54.511867,-1.248469 54.511785,-1.248392 54.511727,-1.248361 54.511655,-1.248273 54.511622,-1.248190 54.511617,-1.248181 54.511685,-1.247884 54.511684,-1.247888 54.511620,-1.247527 54.511476,-1.247295 54.511493,-1.247141 54.511462,-1.246832 54.511359,-1.246781 54.511297,-1.246637 54.511293,-1.246350 54.511387,-1.246003 54.511365,-1.245868 54.511377,-1.245640 54.511434,-1.245352 54.511548,-1.245238 54.511557,-1.244761 54.511550,-1.244380 54.511564,-1.244226 54.511541,-1.243872 54.511414,-1.243796 54.511397,-1.243662 54.511399,-1.243461 54.511426,-1.243174 54.511500,-1.242949 54.511510,-1.242831 54.511557,-1.242762 54.511561,-1.242646 54.511534,-1.242512 54.511522,-1.242168 54.511576,-1.242053 54.511638,-1.241915 54.511829,-1.241588 54.512058,-1.241461 54.512064,-1.241035 54.511956,-1.240927 54.511904,-1.240918 54.511846,-1.240832 54.511756,-1.240485 54.511549,-1.240281 54.511489,-1.240065 54.511493,-1.239845 54.511528,-1.239747 54.511560,-1.239652 54.511570,-1.239415 54.511562,-1.239293 54.511511,-1.239144 54.511431,-1.238876 54.511366,-1.238689 54.511303,-1.238528 54.511224,-1.238140 54.510977,-1.237986 54.510976,-1.237854 54.510785,-1.237856 54.510720,-1.237779 54.510666,-1.237126 54.510631,-1.236489 54.510739,-1.235743 54.510429,-1.235424 54.510274,-1.235322 54.510269,-1.234719 54.510329,-1.234393 54.510422,-1.233743 54.510583,-1.233405 54.510569,-1.233233 54.510656,-1.232813 54.510800,-1.232692 54.510832,-1.232635 54.510860,-1.232501 54.510983,-1.232398 54.511023,-1.232278 54.511083,-1.232148 54.511187,-1.232098 54.511245,-1.231907 54.511369,-1.231728 54.511427,-1.231587 54.511441,-1.231484 54.511422,-1.231375 54.511398,-1.230971 54.511278,-1.230442 54.511003,-1.230408 54.511060,-1.230536 54.511645,-1.230605 54.511882,-1.229837 54.511808,-1.229585 54.511803,-1.229253 54.511779,-1.228883 54.511778,-1.228607 54.511803,-1.228183 54.511873,-1.227868 54.511944,-1.227725 54.511988,-1.227612 54.511996,-1.226892 54.511927,-1.226324 54.511852,-1.226134 54.511841,-1.225177 54.511655,-1.223991 54.511395,-1.223909 54.511461,-1.223510 54.511342,-1.222667 54.511235,-1.222614 54.511179,-1.221549 54.511024,-1.221234 54.510980,-1.220631 54.510915,-1.220444 54.510915,-1.220136 54.510941,-1.220101 54.510905,-1.220013 54.510756,-1.219823 54.510519,-1.219783 54.510452,-1.219708 54.510378,-1.219608 54.510316,-1.219543 54.510291,-1.219276 54.510213,-1.218977 54.510151,-1.218763 54.510125,-1.218200 54.510092,-1.216330 54.510074,-1.214999 54.510052,-1.214525 54.510071,-1.214326 54.510062,-1.214107 54.510038,-1.213845 54.510005,-1.213683 54.509965,-1.213181 54.509813,-1.212813 54.509681,-1.212612 54.509618,-1.212183 54.509495,-1.211197 54.509314,-1.210623 54.509183,-1.209575 54.508989,-1.209224 54.508937,-1.208501 54.508890,-1.208407 54.508860,-1.208349 54.508825,-1.208197 54.508726,-1.207704 54.508377,-1.207562 54.508291,-1.207199 54.508097,-1.206866 54.507943,-1.206344 54.507745,-1.205543 54.507551,-1.205368 54.507498,-1.205205 54.507427,-1.204376 54.507030,-1.204170 54.506970,-1.203912 54.506912,-1.203786 54.506894,-1.203571 54.506884,-1.202931 54.506935,-1.202515 54.506959,-1.202146 54.506953,-1.201884 54.506911,-1.201526 54.506817,-1.200749 54.506684,-1.200253 54.506615,-1.199868 54.506573,-1.199439 54.506545,-1.198063 54.506432,-1.197596 54.506349,-1.197050 54.506234,-1.196757 54.506189,-1.196680 54.506186,-1.196590 54.506195,-1.196323 54.506244,-1.195867 54.506362,-1.195783 54.506390,-1.195632 54.506470,-1.195536 54.506559,-1.195485 54.506632,-1.194272 54.506596,-1.193782 54.506543,-1.193657 54.506543,-1.193352 54.506566,-1.192883 54.506564,-1.192199 54.506594,-1.191398 54.506559,-1.190998 54.506525,-1.190829 54.506464,-1.190465 54.506359,-1.190228 54.506314,-1.189938 54.506292,-1.189725 54.506293,-1.189320 54.506339,-1.188851 54.506437,-1.188080 54.506533,-1.187525 54.506643,-1.187237 54.506684,-1.187090 54.506713,-1.186706 54.506823,-1.186359 54.506936,-1.185929 54.507051,-1.185469 54.507198,-1.185094 54.507285,-1.184839 54.507116,-1.184513 54.506917,-1.184298 54.506824,-1.183997 54.506739,-1.183462 54.506618,-1.182873 54.506522,-1.181848 54.506083,-1.181426 54.505878,-1.181163 54.505772,-1.180691 54.505932,-1.180532 54.505977,-1.180410 54.506038,-1.180011 54.506195,-1.179753 54.506076,-1.179636 54.506043,-1.179379 54.505999,-1.179106 54.505846,-1.178807 54.505700,-1.178137 54.505394,-1.177913 54.505313,-1.177517 54.505125,-1.177375 54.505040,-1.177132 54.504917,-1.176890 54.504730,-1.176526 54.504480,-1.176300 54.504366,-1.176143 54.504314,-1.176070 54.504337,-1.175994 54.504388,-1.175954 54.504447,-1.175929 54.504534,-1.175897 54.504585,-1.175883 54.504595,-1.175768 54.504583,-1.175645 54.504582,-1.175609 54.504636,-1.175549 54.504688,-1.175022 54.504775,-1.174849 54.504792,-1.174775 54.504787,-1.174686 54.504767,-1.174292 54.504620,-1.174218 54.504614,-1.174162 54.504626,-1.174020 54.504724,-1.173982 54.504728,-1.173864 54.504717,-1.173505 54.504378,-1.173501 54.504343,-1.173523 54.504226,-1.173470 54.504098,-1.173471 54.504049,-1.173489 54.504025,-1.173520 54.504004,-1.173560 54.503988,-1.173621 54.503977,-1.173829 54.503970,-1.173957 54.503974,-1.173996 54.503967,-1.174113 54.503928,-1.174209 54.503839,-1.174192 54.503740,-1.174227 54.503689,-1.174293 54.503651,-1.174234 54.503574,-1.174233 54.503557,-1.174258 54.503484,-1.174235 54.503455,-1.174125 54.503383,-1.173908 54.503209,-1.173948 54.503198,-1.174092 54.503216,-1.174148 54.503203,-1.174174 54.503180,-1.174174 54.503136,-1.174446 54.503006,-1.174493 54.502991,-1.174523 54.502965,-1.174522 54.502946,-1.174516 54.502938,-1.174318 54.502868,-1.174236 54.502848,-1.174197 54.502818,-1.174188 54.502799,-1.174198 54.502698,-1.174189 54.502669,-1.174134 54.502627,-1.173906 54.502642,-1.173790 54.502630,-1.173716 54.502607,-1.173651 54.502546,-1.173619 54.502527,-1.173578 54.502510,-1.173541 54.502505,-1.173485 54.502508,-1.173363 54.502579,-1.173236 54.502668,-1.173066 54.502762,-1.172797 54.502857,-1.172772 54.502873,-1.172727 54.502881,-1.172662 54.502870,-1.172595 54.502789,-1.172562 54.502729,-1.172509 54.502673,-1.172383 54.502587,-1.172309 54.502552,-1.172212 54.502551,-1.171792 54.502677,-1.171451 54.502549,-1.171340 54.502518,-1.170988 54.502447,-1.170764 54.502368,-1.170653 54.502348,-1.170363 54.502512,-1.169952 54.502601,-1.169993 54.502779,-1.170001 54.502893,-1.169983 54.502960,-1.169953 54.502990,-1.169840 54.502993,-1.169663 54.502893,-1.169502 54.502898,-1.169457 54.502914,-1.169426 54.502939,-1.169409 54.502961,-1.169408 54.502975,-1.169437 54.503007,-1.169536 54.503055,-1.169544 54.503064,-1.169543 54.503085,-1.169526 54.503107,-1.169473 54.503131,-1.169318 54.503136,-1.169215 54.503154,-1.169177 54.503173,-1.169144 54.503202,-1.169128 54.503257,-1.169198 54.503428,-1.169079 54.503496,-1.169013 54.503523,-1.168972 54.503534,-1.168797 54.503545,-1.168407 54.503536,-1.168334 54.503497,-1.168108 54.503346,-1.167874 54.503409,-1.167661 54.503481,-1.167503 54.503493,-1.167406 54.503470,-1.167236 54.503413,-1.167063 54.503383,-1.166977 54.503384,-1.166870 54.503410,-1.166841 54.503443,-1.166910 54.503646,-1.166771 54.503718,-1.166698 54.503729,-1.166638 54.503724,-1.166531 54.503697,-1.166191 54.503523,-1.166173 54.503498,-1.166153 54.503442,-1.166149 54.503408,-1.166161 54.503312,-1.166154 54.503221,-1.166139 54.503182,-1.166120 54.503157,-1.166033 54.503109,-1.165979 54.503110,-1.165925 54.503253,-1.165862 54.503365,-1.165840 54.503390,-1.165751 54.503453,-1.165449 54.503414,-1.165400 54.503527,-1.165369 54.503547,-1.165298 54.503555,-1.164733 54.503474,-1.164639 54.503447,-1.164604 54.503419,-1.164592 54.503321,-1.164346 54.503223,-1.164231 54.503153,-1.164193 54.503149,-1.164173 54.503153,-1.164115 54.503196,-1.164165 54.503325,-1.164163 54.503343,-1.164106 54.503396,-1.164073 54.503412,-1.163915 54.503450,-1.163479 54.503487,-1.163183 54.503544,-1.163113 54.503542,-1.162877 54.503464,-1.162585 54.503406,-1.162471 54.503369,-1.162355 54.503314,-1.162166 54.503259,-1.161891 54.503204,-1.161677 54.503174,-1.161550 54.503120,-1.161296 54.502977,-1.161023 54.502905,-1.160734 54.502840,-1.160500 54.502805,-1.160359 54.502808,-1.160050 54.502847,-1.159934 54.502833,-1.159710 54.502783,-1.159338 54.502763,-1.159162 54.502737,-1.158820 54.502651,-1.158621 54.502582,-1.158584 54.502565,-1.158424 54.502431,-1.158296 54.502373,-1.157845 54.502313,-1.157442 54.502236,-1.157334 54.502224,-1.157068 54.502226,-1.156916 54.502210,-1.156494 54.502116,-1.156291 54.502091,-1.156067 54.502086,-1.155727 54.502106,-1.155244 54.502073,-1.154963 54.502085,-1.154387 54.502088,-1.153962 54.502048,-1.153544 54.501991,-1.153236 54.501974,-1.152667 54.501912,-1.152230 54.501843,-1.151929 54.501771,-1.151700 54.501737,-1.151474 54.501734,-1.151372 54.501742,-1.151203 54.501727,-1.151089 54.501694,-1.150863 54.501569,-1.150751 54.501527,-1.150320 54.501460,-1.150230 54.501418,-1.150129 54.501356,-1.150016 54.501314,-1.149899 54.501298,-1.149474 54.501301,-1.149367 54.501287,-1.148993 54.501194,-1.148701 54.501216,-1.148233 54.501134,-1.148059 54.501125,-1.147878 54.501141,-1.147566 54.501204,-1.147238 54.501246,-1.146823 54.501313,-1.146758 54.501332,-1.146693 54.501372,-1.146662 54.501405,-1.146630 54.501461,-1.146605 54.501525,-1.146598 54.501566,-1.146615 54.501646,-1.146697 54.501802,-1.146714 54.501852,-1.146708 54.501909,-1.146376 54.502445,-1.146197 54.502822,-1.146215 54.502900,-1.146288 54.502979,-1.146306 54.503048,-1.146262 54.503112,-1.145402 54.503410,-1.144940 54.503542,-1.144322 54.503770,-1.144077 54.503819,-1.143549 54.504294,-1.143306 54.504533,-1.143187 54.504616,-1.142862 54.504802,-1.142813 54.504855,-1.142682 54.505130,-1.142642 54.505334,-1.142484 54.505500,-1.142430 54.505579,-1.142305 54.505919,-1.142215 54.505985,-1.142123 54.506078,-1.141790 54.506349,-1.141632 54.506495,-1.141634 54.506662,-1.141456 54.506974,-1.141439 54.507264,-1.141382 54.507318,-1.141261 54.507398,-1.141144 54.507554,-1.141140 54.507717,-1.141119 54.507767,-1.140861 54.508012,-1.140606 54.508146,-1.140343 54.508424,-1.140310 54.508491,-1.140064 54.508671,-1.139907 54.508891,-1.139661 54.509055,-1.139468 54.509267,-1.139443 54.509479,-1.139287 54.509738,-1.139341 54.509989,-1.139332 54.510092,-1.139223 54.510310,-1.139065 54.510525,-1.139078 54.510668,-1.138790 54.511165,-1.138562 54.511523,-1.138495 54.511885,-1.138100 54.512614,-1.137994 54.512831,-1.137921 54.513051,-1.137927 54.513294,-1.137835 54.513565,-1.137767 54.513977,-1.137661 54.514116,-1.137609 54.514318,-1.137406 54.514745,-1.137344 54.514855,-1.137319 54.514919,-1.137369 54.514995,-1.137494 54.515072,-1.137702 54.515154,-1.139506 54.515690,-1.139959 54.515808,-1.140235 54.515847,-1.141396 54.515926,-1.141612 54.515951,-1.142499 54.515957,-1.142860 54.515892,-1.143233 54.515778,-1.143538 54.515806,-1.143810 54.515815,-1.143944 54.515810,-1.144115 54.515764,-1.144543 54.515574,-1.144833 54.515486,-1.145024 54.515450,-1.145230 54.515431,-1.145453 54.515371,-1.145616 54.515374,-1.145856 54.515417,-1.145962 54.515413,-1.146217 54.515369,-1.146372 54.515329,-1.146579 54.515236,-1.146750 54.515216,-1.146927 54.515217,-1.147238 54.515275,-1.147329 54.515264,-1.147897 54.514782,-1.148245 54.514401,-1.148991 54.514700,-1.149312 54.514852,-1.149939 54.515094,-1.150721 54.515361,-1.151198 54.515590,-1.151572 54.515685,-1.151943 54.515793,-1.152181 54.515896,-1.152381 54.515967,-1.152609 54.516026,-1.153220 54.516129,-1.153493 54.516138,-1.154101 54.516188,-1.155275 54.516257,-1.155736 54.516273,-1.155949 54.516291,-1.158681 54.515969,-1.159740 54.515836,-1.160088 54.516561,-1.160182 54.516808,-1.160674 54.517534,-1.161276 54.518300,-1.161464 54.518342,-1.161540 54.518471,-1.161603 54.518705,-1.161696 54.518986,-1.161734 54.519246,-1.161818 54.520197,-1.162473 54.520443,-1.162767 54.520572,-1.163052 54.520737,-1.163116 54.520728,-1.163370 54.520903,-1.163909 54.521242,-1.164428 54.521598,-1.164994 54.521943,-1.164634 54.522129,-1.163805 54.522601,-1.163404 54.522868,-1.162798 54.523331,-1.162553 54.523546,-1.162278 54.523822,-1.162011 54.524120,-1.161520 54.524709,-1.161320 54.524979,-1.161380 54.524991,-1.161567 54.525060,-1.161797 54.525098,-1.162017 54.525110,-1.162751 54.525272,-1.162772 54.525243,-1.163107 54.525320,-1.164362 54.525676,-1.165059 54.525895,-1.166102 54.526250,-1.166074 54.526287,-1.166621 54.526511,-1.166640 54.526495,-1.167804 54.526965,-1.168824 54.527458,-1.169319 54.527688,-1.169257 54.527727,-1.170338 54.528230,-1.170374 54.528212,-1.170859 54.528487,-1.171509 54.528815,-1.171531 54.528801,-1.171831 54.528963,-1.172921 54.529457,-1.173944 54.530012,-1.174640 54.530364,-1.175866 54.530954,-1.176545 54.531229,-1.177863 54.531908,-1.178241 54.532087,-1.179205 54.532568,-1.180041 54.533008,-1.179879 54.533101,-1.179942 54.533135,-1.180035 54.533096,-1.182407 54.534399,-1.183149 54.534790,-1.184142 54.535392,-1.184715 54.535727,-1.185685 54.536226,-1.186711 54.536819,-1.187717 54.537384,-1.189017 54.538170,-1.189269 54.538312,-1.190282 54.538754,-1.190561 54.538856,-1.190803 54.538961,-1.191166 54.539160,-1.191433 54.539318,-1.191945 54.539640,-1.192249 54.539861,-1.192686 54.540229,-1.192953 54.540397,-1.193319 54.540585,-1.194487 54.541370,-1.196116 54.542495,-1.197059 54.543203,-1.197715 54.543619,-1.197910 54.543769,-1.198808 54.544247,-1.199063 54.544497,-1.198386 54.544650,-1.198123 54.544686,-1.197440 54.544754,-1.196774 54.544866,-1.196117 54.545048,-1.195683 54.545204,-1.195227 54.545414,-1.194922 54.545579,-1.194326 54.545940,-1.193345 54.546570,-1.192240 54.547221,-1.191818 54.547458,-1.191411 54.547647,-1.191012 54.547792,-1.190684 54.547903,-1.189705 54.548211,-1.188543 54.548524,-1.185951 54.549099,-1.185442 54.549184,-1.185116 54.549219,-1.183763 54.549338,-1.182034 54.549552,-1.180603 54.549913,-1.180212 54.549974,-1.179193 54.550213,-1.179007 54.550292,-1.178050 54.550872,-1.176855 54.551562,-1.176617 54.551675,-1.176244 54.551871,-1.175944 54.552009,-1.175134 54.552333,-1.174341 54.552625,-1.173554 54.552839,-1.173065 54.552941,-1.172531 54.553024,-1.170785 54.553217,-1.170040 54.553328,-1.169033 54.553553,-1.167884 54.553825,-1.167315 54.553945,-1.166663 54.554053,-1.166644 54.554234,-1.166689 54.554263,-1.166728 54.554361,-1.166736 54.554465,-1.166886 54.554630,-1.167162 54.554839,-1.167423 54.555123,-1.167590 54.555287,-1.167665 54.555317,-1.167726 54.555387,-1.167780 54.555526,-1.168002 54.555668,-1.168289 54.555920,-1.168484 54.556052,-1.168605 54.556182,-1.168718 54.556242,-1.168832 54.556366,-1.168881 54.556440,-1.169007 54.556500,-1.169105 54.556599,-1.169334 54.556743,-1.169400 54.556852,-1.169606 54.556995,-1.169808 54.557168,-1.170283 54.557245,-1.170431 54.557261,-1.170618 54.557332,-1.170729 54.557416,-1.171063 54.557810,-1.171073 54.557864,-1.171244 54.558035,-1.171269 54.558092,-1.171387 54.558212,-1.171687 54.558594,-1.171710 54.558695,-1.171844 54.558796,-1.171909 54.558865,-1.171933 54.558931,-1.171970 54.558974,-1.172154 54.559122,-1.172209 54.559238,-1.172305 54.559311,-1.172402 54.559337,-1.172446 54.559378,-1.172678 54.559480,-1.172758 54.559498,-1.172887 54.559591,-1.173094 54.559667,-1.173205 54.559776,-1.173365 54.559827,-1.173472 54.559880,-1.173640 54.559930,-1.173734 54.559982,-1.173778 54.560057,-1.173902 54.560096,-1.173919 54.560180,-1.174006 54.560243,-1.174061 54.560334,-1.174208 54.560428,-1.174291 54.560450,-1.174484 54.560557,-1.174579 54.560591,-1.174634 54.560638,-1.174857 54.560675,-1.174961 54.560733,-1.175228 54.560786,-1.175339 54.560832,-1.175674 54.561033,-1.175742 54.561056,-1.175865 54.561223,-1.175861 54.561327,-1.175989 54.561495,-1.175927 54.561612,-1.175947 54.561753,-1.175871 54.561855,-1.175863 54.562005,-1.175830 54.562052,-1.175836 54.562134,-1.175895 54.562331,-1.175811 54.562436,-1.175741 54.562478,-1.175738 54.562541,-1.175794 54.562584,-1.175822 54.562660,-1.175922 54.562772,-1.175934 54.562845,-1.175977 54.562903,-1.175933 54.563244,-1.175896 54.563733,-1.175829 54.563800,-1.175881 54.563973,-1.175919 54.564212,-1.176061 54.564372,-1.176087 54.564571,-1.176324 54.564710,-1.176321 54.564851,-1.176416 54.564907,-1.176467 54.564977,-1.176337 54.565197,-1.176295 54.565306,-1.176295 54.565376,-1.176420 54.565477,-1.176445 54.565657,-1.176501 54.565724,-1.176494 54.565949,-1.176593 54.566070,-1.176600 54.566177,-1.176567 54.566244,-1.176487 54.566287,-1.176436 54.566373,-1.176429 54.566531,-1.176667 54.566762,-1.176795 54.566980,-1.176997 54.567225,-1.177267 54.567494,-1.177267 54.567587,-1.177363 54.567657,-1.177587 54.567946,-1.177646 54.568078,-1.177616 54.568278,-1.177694 54.568374,-1.177745 54.568474,-1.177976 54.568594,-1.178103 54.568605,-1.179025 54.568587,-1.179242 54.568638,-1.180080 54.568807,-1.180514 54.568793,-1.180652 54.568826,-1.180703 54.568815,-1.180814 54.568752,-1.180850 54.568750,-1.180968 54.568786,-1.181135 54.568885,-1.181228 54.568971,-1.181301 54.568996,-1.181436 54.569000,-1.181913 54.569127,-1.182114 54.569144,-1.182288 54.569184,-1.182433 54.569194,-1.182640 54.569174,-1.182837 54.569193,-1.182991 54.569181,-1.183282 54.569184,-1.183554 54.569222,-1.183872 54.569334,-1.184173 54.569489,-1.184729 54.569758,-1.184851 54.569795,-1.184911 54.569850,-1.184915 54.569975,-1.184956 54.570041,-1.185107 54.570125,-1.185337 54.570455,-1.185335 54.570551,-1.185442 54.570708,-1.186006 54.571656,-1.186258 54.572058,-1.186347 54.572282,-1.186534 54.572506,-1.186571 54.572659,-1.186898 54.572861,-1.187045 54.572993,-1.187372 54.573232,-1.187745 54.573452,-1.188326 54.573760,-1.188969 54.574130,-1.189479 54.574399,-1.189662 54.574453,-1.190108 54.574654,-1.190309 54.574876,-1.190375 54.574920,-1.190607 54.574982,-1.191058 54.574867,-1.191711 54.574723,-1.194149 54.574339,-1.194237 54.574341,-1.195443 54.574904,-1.195607 54.575006,-1.195692 54.575015,-1.195909 54.575066,-1.196225 54.575180,-1.196697 54.575400,-1.197178 54.575416,-1.198453 54.576030,-1.199885 54.576707,-1.201743 54.577567,-1.200872 54.577642,-1.200554 54.577685,-1.199997 54.577780,-1.199110 54.577957,-1.198687 54.578053,-1.198187 54.578219,-1.197834 54.578327,-1.197510 54.578465,-1.196989 54.578635,-1.196154 54.578973,-1.195638 54.579234,-1.194335 54.579865,-1.197062 54.581793,-1.198605 54.582868)))",E60000004 +"MULTIPOLYGON (((-1.136332 54.645035,-1.136536 54.645097,-1.136710 54.645166,-1.137127 54.645391,-1.137278 54.645494,-1.137578 54.645809,-1.137435 54.646224,-1.137300 54.646307,-1.137158 54.646498,-1.137119 54.646561,-1.137025 54.646759,-1.137013 54.646822,-1.137007 54.646948,-1.137037 54.647168,-1.137037 54.647220,-1.137007 54.647383,-1.137024 54.647452,-1.137073 54.647498,-1.137179 54.647524,-1.137253 54.647552,-1.137336 54.647573,-1.137476 54.647583,-1.138321 54.647622,-1.140210 54.647699,-1.143562 54.647821,-1.147540 54.647987,-1.147612 54.647808,-1.147837 54.647498,-1.148240 54.647205,-1.148810 54.646929,-1.149440 54.646641,-1.149815 54.646496,-1.150288 54.646295,-1.151615 54.645808,-1.151944 54.645710,-1.152393 54.645523,-1.152737 54.645332,-1.152964 54.645160,-1.153031 54.645061,-1.153090 54.644929,-1.153052 54.644526,-1.152999 54.644318,-1.152973 54.644057,-1.152903 54.643698,-1.152794 54.643350,-1.152656 54.642990,-1.152359 54.642007,-1.152266 54.641760,-1.152101 54.641065,-1.152043 54.640695,-1.152026 54.640560,-1.152007 54.639981,-1.152072 54.639549,-1.152134 54.639308,-1.152161 54.639082,-1.152548 54.638121,-1.152748 54.637749,-1.153181 54.637094,-1.153264 54.636982,-1.153450 54.636775,-1.153564 54.636567,-1.153824 54.636221,-1.154039 54.635863,-1.154786 54.634736,-1.154986 54.634487,-1.155364 54.634095,-1.155583 54.633881,-1.156214 54.633112,-1.156437 54.632920,-1.156801 54.632629,-1.157155 54.632368,-1.157271 54.632234,-1.157300 54.632185,-1.157340 54.632053,-1.157497 54.631660,-1.157569 54.631447,-1.157626 54.631189,-1.157653 54.630903,-1.157787 54.630452,-1.157904 54.629966,-1.157985 54.629490,-1.158013 54.629247,-1.158018 54.628607,-1.158001 54.628269,-1.157993 54.627892,-1.157976 54.627719,-1.157904 54.627386,-1.157764 54.627143,-1.157737 54.627071,-1.157658 54.626776,-1.157484 54.626270,-1.157270 54.625817,-1.157157 54.625553,-1.156735 54.624764,-1.156208 54.623811,-1.155718 54.622986,-1.155508 54.622650,-1.154961 54.621871,-1.154741 54.621509,-1.154451 54.621065,-1.154247 54.620690,-1.153890 54.619829,-1.153741 54.619314,-1.153615 54.618645,-1.153563 54.618198,-1.153566 54.617727,-1.153581 54.617362,-1.153610 54.617204,-1.153635 54.616573,-1.153668 54.616101,-1.153751 54.615445,-1.153856 54.614867,-1.154024 54.614158,-1.154172 54.613652,-1.154406 54.613003,-1.154672 54.612357,-1.154790 54.612104,-1.155113 54.611476,-1.155305 54.611136,-1.156152 54.609802,-1.156411 54.609488,-1.156598 54.609283,-1.156814 54.609064,-1.157086 54.608805,-1.157397 54.608527,-1.157726 54.608257,-1.158219 54.607900,-1.158400 54.607781,-1.158706 54.607594,-1.159022 54.607413,-1.159676 54.607077,-1.163816 54.604600,-1.165522 54.603606,-1.166337 54.603172,-1.166642 54.603025,-1.166764 54.602951,-1.166892 54.602864,-1.167010 54.602768,-1.167457 54.602322,-1.167677 54.602142,-1.167842 54.602046,-1.168032 54.601962,-1.168752 54.601564,-1.169378 54.601251,-1.169781 54.601001,-1.169831 54.600952,-1.170009 54.600737,-1.170205 54.600527,-1.170374 54.600361,-1.170585 54.600183,-1.171672 54.599355,-1.171720 54.599326,-1.171805 54.599296,-1.172201 54.599223,-1.172441 54.599151,-1.173056 54.598883,-1.173653 54.598604,-1.173840 54.598460,-1.174004 54.598209,-1.174254 54.598038,-1.175272 54.597446,-1.176714 54.596640,-1.177595 54.596132,-1.177679 54.596066,-1.177728 54.596012,-1.177776 54.595948,-1.177806 54.595892,-1.177818 54.595846,-1.177817 54.595728,-1.177825 54.595670,-1.177843 54.595590,-1.177891 54.595453,-1.177933 54.595356,-1.178039 54.595231,-1.178105 54.595178,-1.178227 54.595104,-1.180091 54.593851,-1.183580 54.591659,-1.183892 54.591484,-1.184334 54.591279,-1.185255 54.590950,-1.185661 54.590783,-1.185867 54.590677,-1.186442 54.590316,-1.186789 54.590073,-1.187687 54.589578,-1.187814 54.589500,-1.187965 54.589379,-1.188079 54.589255,-1.188351 54.588872,-1.188475 54.588727,-1.188569 54.588638,-1.188723 54.588523,-1.189375 54.588117,-1.196132 54.584055,-1.196591 54.583811,-1.197113 54.583550,-1.197800 54.583228,-1.198605 54.582868,-1.197062 54.581793,-1.194335 54.579865,-1.195638 54.579234,-1.196154 54.578973,-1.196989 54.578635,-1.197510 54.578465,-1.197834 54.578327,-1.198187 54.578219,-1.198687 54.578053,-1.199110 54.577957,-1.199997 54.577780,-1.200554 54.577685,-1.200872 54.577642,-1.201743 54.577567,-1.199885 54.576707,-1.198453 54.576030,-1.197178 54.575416,-1.196697 54.575400,-1.196225 54.575180,-1.195909 54.575066,-1.195692 54.575015,-1.195607 54.575006,-1.195443 54.574904,-1.194237 54.574341,-1.194149 54.574339,-1.191711 54.574723,-1.191058 54.574867,-1.190607 54.574982,-1.190375 54.574920,-1.190309 54.574876,-1.190108 54.574654,-1.189662 54.574453,-1.189479 54.574399,-1.188969 54.574130,-1.188326 54.573760,-1.187745 54.573452,-1.187372 54.573232,-1.187045 54.572993,-1.186898 54.572861,-1.186571 54.572659,-1.186534 54.572506,-1.186347 54.572282,-1.186258 54.572058,-1.186006 54.571656,-1.185442 54.570708,-1.185335 54.570551,-1.185337 54.570455,-1.185107 54.570125,-1.184956 54.570041,-1.184915 54.569975,-1.184911 54.569850,-1.184851 54.569795,-1.184729 54.569758,-1.184173 54.569489,-1.183872 54.569334,-1.183554 54.569222,-1.183282 54.569184,-1.182991 54.569181,-1.182837 54.569193,-1.182640 54.569174,-1.182433 54.569194,-1.182288 54.569184,-1.182114 54.569144,-1.181913 54.569127,-1.181436 54.569000,-1.181301 54.568996,-1.181228 54.568971,-1.181135 54.568885,-1.180968 54.568786,-1.180850 54.568750,-1.180814 54.568752,-1.180703 54.568815,-1.180652 54.568826,-1.180514 54.568793,-1.180080 54.568807,-1.179242 54.568638,-1.179025 54.568587,-1.178103 54.568605,-1.177976 54.568594,-1.177745 54.568474,-1.177694 54.568374,-1.177616 54.568278,-1.177646 54.568078,-1.177587 54.567946,-1.177363 54.567657,-1.177267 54.567587,-1.177267 54.567494,-1.176997 54.567225,-1.176795 54.566980,-1.176667 54.566762,-1.176429 54.566531,-1.176436 54.566373,-1.176487 54.566287,-1.176567 54.566244,-1.176600 54.566177,-1.176593 54.566070,-1.176494 54.565949,-1.176501 54.565724,-1.176445 54.565657,-1.176420 54.565477,-1.176295 54.565376,-1.176295 54.565306,-1.176337 54.565197,-1.176467 54.564977,-1.176416 54.564907,-1.176321 54.564851,-1.176324 54.564710,-1.176087 54.564571,-1.176061 54.564372,-1.175919 54.564212,-1.175881 54.563973,-1.175829 54.563800,-1.175896 54.563733,-1.175933 54.563244,-1.175977 54.562903,-1.175934 54.562845,-1.175922 54.562772,-1.175822 54.562660,-1.175794 54.562584,-1.175738 54.562541,-1.175741 54.562478,-1.175811 54.562436,-1.175895 54.562331,-1.175836 54.562134,-1.175830 54.562052,-1.175863 54.562005,-1.175871 54.561855,-1.175947 54.561753,-1.175927 54.561612,-1.175989 54.561495,-1.175861 54.561327,-1.175865 54.561223,-1.175742 54.561056,-1.175674 54.561033,-1.175339 54.560832,-1.175228 54.560786,-1.174961 54.560733,-1.174857 54.560675,-1.174634 54.560638,-1.174579 54.560591,-1.174484 54.560557,-1.174291 54.560450,-1.174208 54.560428,-1.174061 54.560334,-1.174006 54.560243,-1.173919 54.560180,-1.173902 54.560096,-1.173778 54.560057,-1.173734 54.559982,-1.173640 54.559930,-1.173472 54.559880,-1.173365 54.559827,-1.173205 54.559776,-1.173094 54.559667,-1.172887 54.559591,-1.172758 54.559498,-1.172678 54.559480,-1.172446 54.559378,-1.172402 54.559337,-1.172305 54.559311,-1.172209 54.559238,-1.172154 54.559122,-1.171970 54.558974,-1.171933 54.558931,-1.171909 54.558865,-1.171844 54.558796,-1.171710 54.558695,-1.171687 54.558594,-1.171387 54.558212,-1.171269 54.558092,-1.171244 54.558035,-1.171073 54.557864,-1.171063 54.557810,-1.170729 54.557416,-1.170618 54.557332,-1.170431 54.557261,-1.170283 54.557245,-1.169808 54.557168,-1.169606 54.556995,-1.169400 54.556852,-1.169334 54.556743,-1.169105 54.556599,-1.169007 54.556500,-1.168881 54.556440,-1.168832 54.556366,-1.168718 54.556242,-1.168605 54.556182,-1.168484 54.556052,-1.168289 54.555920,-1.168002 54.555668,-1.167780 54.555526,-1.167726 54.555387,-1.167665 54.555317,-1.167590 54.555287,-1.167423 54.555123,-1.167162 54.554839,-1.166886 54.554630,-1.166736 54.554465,-1.166728 54.554361,-1.166689 54.554263,-1.166644 54.554234,-1.166663 54.554053,-1.167315 54.553945,-1.167884 54.553825,-1.169033 54.553553,-1.170040 54.553328,-1.170785 54.553217,-1.172531 54.553024,-1.173065 54.552941,-1.173554 54.552839,-1.174341 54.552625,-1.175134 54.552333,-1.175944 54.552009,-1.176244 54.551871,-1.176617 54.551675,-1.176855 54.551562,-1.178050 54.550872,-1.179007 54.550292,-1.179193 54.550213,-1.180212 54.549974,-1.180603 54.549913,-1.182034 54.549552,-1.183763 54.549338,-1.185116 54.549219,-1.185442 54.549184,-1.185951 54.549099,-1.188543 54.548524,-1.189705 54.548211,-1.190684 54.547903,-1.191012 54.547792,-1.191411 54.547647,-1.191818 54.547458,-1.192240 54.547221,-1.193345 54.546570,-1.194326 54.545940,-1.194922 54.545579,-1.195227 54.545414,-1.195683 54.545204,-1.196117 54.545048,-1.196774 54.544866,-1.197440 54.544754,-1.198123 54.544686,-1.198386 54.544650,-1.199063 54.544497,-1.198808 54.544247,-1.197910 54.543769,-1.197715 54.543619,-1.197059 54.543203,-1.196116 54.542495,-1.194487 54.541370,-1.193319 54.540585,-1.192953 54.540397,-1.192686 54.540229,-1.192249 54.539861,-1.191945 54.539640,-1.191433 54.539318,-1.191166 54.539160,-1.190803 54.538961,-1.190561 54.538856,-1.190282 54.538754,-1.189269 54.538312,-1.189017 54.538170,-1.187717 54.537384,-1.186711 54.536819,-1.185685 54.536226,-1.184715 54.535727,-1.184142 54.535392,-1.183149 54.534790,-1.182407 54.534399,-1.180035 54.533096,-1.179942 54.533135,-1.179879 54.533101,-1.180041 54.533008,-1.179205 54.532568,-1.178241 54.532087,-1.177863 54.531908,-1.176545 54.531229,-1.175866 54.530954,-1.174640 54.530364,-1.173944 54.530012,-1.172921 54.529457,-1.171831 54.528963,-1.171531 54.528801,-1.171509 54.528815,-1.170859 54.528487,-1.170374 54.528212,-1.170338 54.528230,-1.169257 54.527727,-1.169319 54.527688,-1.168824 54.527458,-1.167804 54.526965,-1.166640 54.526495,-1.166621 54.526511,-1.166074 54.526287,-1.166102 54.526250,-1.165059 54.525895,-1.164362 54.525676,-1.163107 54.525320,-1.162772 54.525243,-1.162751 54.525272,-1.162017 54.525110,-1.161797 54.525098,-1.161567 54.525060,-1.161380 54.524991,-1.161320 54.524979,-1.161520 54.524709,-1.162011 54.524120,-1.162278 54.523822,-1.162553 54.523546,-1.162798 54.523331,-1.163404 54.522868,-1.163805 54.522601,-1.164634 54.522129,-1.164994 54.521943,-1.164428 54.521598,-1.163909 54.521242,-1.163370 54.520903,-1.163116 54.520728,-1.163052 54.520737,-1.162767 54.520572,-1.162473 54.520443,-1.161818 54.520197,-1.161734 54.519246,-1.161696 54.518986,-1.161603 54.518705,-1.161540 54.518471,-1.161464 54.518342,-1.161276 54.518300,-1.160674 54.517534,-1.160182 54.516808,-1.160088 54.516561,-1.159740 54.515836,-1.158681 54.515969,-1.155949 54.516291,-1.155736 54.516273,-1.155275 54.516257,-1.154101 54.516188,-1.153493 54.516138,-1.153220 54.516129,-1.152609 54.516026,-1.152381 54.515967,-1.152181 54.515896,-1.151943 54.515793,-1.151572 54.515685,-1.151198 54.515590,-1.150721 54.515361,-1.149939 54.515094,-1.149312 54.514852,-1.148991 54.514700,-1.148245 54.514401,-1.147897 54.514782,-1.147329 54.515264,-1.147238 54.515275,-1.146927 54.515217,-1.146750 54.515216,-1.146579 54.515236,-1.146372 54.515329,-1.146217 54.515369,-1.145962 54.515413,-1.145856 54.515417,-1.145616 54.515374,-1.145453 54.515371,-1.145230 54.515431,-1.145024 54.515450,-1.144833 54.515486,-1.144543 54.515574,-1.144115 54.515764,-1.143944 54.515810,-1.143810 54.515815,-1.143538 54.515806,-1.143233 54.515778,-1.142860 54.515892,-1.142499 54.515957,-1.141612 54.515951,-1.141396 54.515926,-1.140235 54.515847,-1.139959 54.515808,-1.139506 54.515690,-1.137702 54.515154,-1.137494 54.515072,-1.137369 54.514995,-1.137319 54.514919,-1.137344 54.514855,-1.137406 54.514745,-1.137609 54.514318,-1.137661 54.514116,-1.137767 54.513977,-1.137835 54.513565,-1.137927 54.513294,-1.137921 54.513051,-1.137994 54.512831,-1.138100 54.512614,-1.138495 54.511885,-1.138562 54.511523,-1.138790 54.511165,-1.139078 54.510668,-1.139065 54.510525,-1.139223 54.510310,-1.139332 54.510092,-1.139341 54.509989,-1.139287 54.509738,-1.139443 54.509479,-1.139468 54.509267,-1.139661 54.509055,-1.139907 54.508891,-1.140064 54.508671,-1.140310 54.508491,-1.140343 54.508424,-1.140606 54.508146,-1.140861 54.508012,-1.141119 54.507767,-1.141140 54.507717,-1.141144 54.507554,-1.141261 54.507398,-1.141382 54.507318,-1.141439 54.507264,-1.141456 54.506974,-1.141634 54.506662,-1.141632 54.506495,-1.141790 54.506349,-1.142123 54.506078,-1.142215 54.505985,-1.142305 54.505919,-1.142430 54.505579,-1.142484 54.505500,-1.142642 54.505334,-1.142682 54.505130,-1.142813 54.504855,-1.142862 54.504802,-1.143187 54.504616,-1.143306 54.504533,-1.143549 54.504294,-1.144077 54.503819,-1.144322 54.503770,-1.144940 54.503542,-1.145402 54.503410,-1.146262 54.503112,-1.146306 54.503048,-1.146288 54.502979,-1.146215 54.502900,-1.146197 54.502822,-1.145865 54.502817,-1.145555 54.502776,-1.145086 54.502690,-1.144010 54.502459,-1.143282 54.502282,-1.142772 54.502214,-1.142509 54.502169,-1.141502 54.501975,-1.140520 54.501799,-1.139403 54.501629,-1.138705 54.501532,-1.137875 54.501380,-1.137320 54.501257,-1.136715 54.501141,-1.135727 54.500863,-1.135459 54.500805,-1.134833 54.500700,-1.133539 54.500545,-1.133104 54.500478,-1.131557 54.500182,-1.130852 54.500037,-1.130428 54.499940,-1.130424 54.499841,-1.130092 54.499639,-1.129497 54.499459,-1.129070 54.499351,-1.128787 54.499288,-1.127806 54.499086,-1.127292 54.498997,-1.126891 54.498968,-1.126815 54.498790,-1.126654 54.498721,-1.126472 54.498740,-1.126725 54.499226,-1.126954 54.499639,-1.127771 54.501213,-1.128701 54.502981,-1.127207 54.503502,-1.127097 54.503526,-1.126941 54.503604,-1.126435 54.503807,-1.125111 54.504312,-1.124390 54.504611,-1.123729 54.504902,-1.123513 54.505015,-1.123256 54.505187,-1.122934 54.505460,-1.122676 54.505702,-1.122294 54.506080,-1.121632 54.506764,-1.121432 54.507009,-1.121260 54.507264,-1.121133 54.507409,-1.120869 54.507785,-1.120776 54.507891,-1.120733 54.507987,-1.120621 54.508166,-1.120498 54.508414,-1.120327 54.508892,-1.120313 54.508947,-1.120305 54.509029,-1.120280 54.509120,-1.120250 54.509350,-1.120216 54.509496,-1.120063 54.509880,-1.119852 54.510314,-1.119748 54.510483,-1.119559 54.510739,-1.119359 54.510976,-1.119184 54.511161,-1.119006 54.511329,-1.118248 54.511935,-1.117977 54.512168,-1.117678 54.512454,-1.117071 54.513072,-1.116080 54.514054,-1.115451 54.514715,-1.114856 54.515238,-1.114242 54.515795,-1.112572 54.517419,-1.112415 54.517549,-1.111997 54.518167,-1.111875 54.518301,-1.111634 54.518510,-1.111438 54.518660,-1.110861 54.519038,-1.110084 54.519518,-1.109649 54.519734,-1.109256 54.519911,-1.109019 54.519998,-1.108816 54.520100,-1.107794 54.520546,-1.107633 54.520630,-1.107473 54.520726,-1.107241 54.520892,-1.107144 54.520975,-1.107018 54.521109,-1.106948 54.521231,-1.106883 54.521513,-1.106789 54.521801,-1.106716 54.521969,-1.106556 54.522270,-1.106479 54.522445,-1.106453 54.522528,-1.106443 54.522635,-1.106449 54.522706,-1.106474 54.522829,-1.106532 54.523006,-1.106666 54.523325,-1.106686 54.523419,-1.106689 54.523531,-1.106682 54.523602,-1.106660 54.523673,-1.106615 54.523774,-1.106547 54.523875,-1.106416 54.524036,-1.105913 54.524570,-1.105579 54.524865,-1.105483 54.524936,-1.105191 54.525116,-1.104549 54.525461,-1.103846 54.525809,-1.103069 54.526239,-1.102760 54.526422,-1.102566 54.526548,-1.101996 54.526967,-1.101385 54.527402,-1.101085 54.527647,-1.100852 54.527874,-1.100605 54.528163,-1.100543 54.528226,-1.100373 54.528460,-1.100238 54.528622,-1.100228 54.528651,-1.100050 54.528838,-1.099924 54.528958,-1.099164 54.528921,-1.098515 54.528858,-1.097922 54.528843,-1.096438 54.528717,-1.096031 54.528669,-1.095236 54.528548,-1.094698 54.528455,-1.094246 54.528367,-1.093697 54.528239,-1.092906 54.528023,-1.092599 54.527932,-1.091944 54.527704,-1.091283 54.527400,-1.091202 54.527380,-1.090942 54.527243,-1.090775 54.527169,-1.090151 54.526849,-1.089580 54.526526,-1.089276 54.526343,-1.089053 54.526191,-1.088875 54.526053,-1.088305 54.525685,-1.087840 54.525429,-1.087468 54.525239,-1.086832 54.524955,-1.086301 54.524788,-1.085939 54.524687,-1.085544 54.524599,-1.084445 54.524405,-1.083402 54.524309,-1.082629 54.524282,-1.082180 54.524271,-1.081730 54.524280,-1.081187 54.524319,-1.079896 54.524441,-1.079516 54.524468,-1.072967 54.525135,-1.072202 54.525207,-1.071023 54.525303,-1.069654 54.525445,-1.067330 54.525717,-1.066280 54.525829,-1.065626 54.525860,-1.065045 54.525844,-1.064234 54.525764,-1.063518 54.525649,-1.063140 54.525574,-1.062734 54.525478,-1.062387 54.525369,-1.061832 54.525164,-1.060018 54.524413,-1.058146 54.523656,-1.057185 54.523248,-1.056670 54.523058,-1.055812 54.522727,-1.055389 54.522585,-1.055045 54.522482,-1.054482 54.522355,-1.054048 54.522286,-1.053420 54.522212,-1.053256 54.522200,-1.052660 54.522208,-1.051787 54.522276,-1.051276 54.522326,-1.050000 54.522556,-1.049304 54.522708,-1.048896 54.522811,-1.047641 54.523165,-1.047086 54.523334,-1.044583 54.524063,-1.044362 54.524119,-1.043635 54.524231,-1.043587 54.524233,-1.042794 54.524613,-1.042269 54.524812,-1.041358 54.525217,-1.041330 54.525231,-1.041345 54.525285,-1.040603 54.525303,-1.040362 54.525281,-1.039629 54.525415,-1.039073 54.525414,-1.038999 54.525450,-1.038367 54.525391,-1.038123 54.525383,-1.037791 54.525326,-1.037579 54.525349,-1.037311 54.525361,-1.036716 54.525347,-1.036511 54.525367,-1.035228 54.525440,-1.035167 54.525428,-1.034291 54.525495,-1.033550 54.525532,-1.032565 54.525792,-1.032127 54.525885,-1.032068 54.525863,-1.031282 54.526012,-1.031035 54.526039,-1.030425 54.526079,-1.030032 54.526152,-1.029823 54.526151,-1.028997 54.526079,-1.028895 54.526089,-1.028414 54.526167,-1.027904 54.526176,-1.027521 54.526166,-1.027395 54.526177,-1.026913 54.526260,-1.025419 54.526637,-1.023730 54.527102,-1.023353 54.527180,-1.023004 54.527271,-1.022313 54.527496,-1.021706 54.527823,-1.021172 54.528031,-1.020405 54.528443,-1.020535 54.528512,-1.020439 54.528563,-1.020263 54.528713,-1.020361 54.528755,-1.020197 54.528903,-1.020425 54.528968,-1.020660 54.529210,-1.020643 54.529229,-1.020626 54.529235,-1.020779 54.529349,-1.020880 54.529465,-1.020959 54.529603,-1.021310 54.530135,-1.021379 54.530256,-1.021447 54.530403,-1.021471 54.530506,-1.021482 54.530581,-1.021482 54.530705,-1.021453 54.530818,-1.021399 54.530926,-1.021353 54.530988,-1.021304 54.531035,-1.020834 54.531430,-1.020808 54.531462,-1.020739 54.531499,-1.021592 54.532064,-1.021784 54.532178,-1.022239 54.532414,-1.022475 54.532547,-1.022928 54.532778,-1.022991 54.532816,-1.023185 54.532968,-1.023259 54.533127,-1.023337 54.533362,-1.023181 54.533429,-1.021932 54.533602,-1.021272 54.533683,-1.020879 54.533705,-1.020155 54.533798,-1.019676 54.533816,-1.018818 54.533817,-1.017213 54.533775,-1.017045 54.533764,-1.016224 54.533748,-1.015372 54.533718,-1.014086 54.533699,-1.012981 54.533739,-1.012673 54.533760,-1.011855 54.533854,-1.010847 54.533990,-1.010532 54.533859,-1.010250 54.533830,-1.009874 54.533884,-1.009577 54.533903,-1.009414 54.533891,-1.009322 54.533872,-1.009191 54.533827,-1.009103 54.533784,-1.009048 54.533740,-1.009017 54.533694,-1.009001 54.533654,-1.008975 54.533497,-1.008650 54.533039,-1.008280 54.532955,-1.008026 54.532883,-1.007574 54.532817,-1.007292 54.532801,-1.007017 54.532796,-1.005908 54.532792,-1.005625 54.532784,-1.005466 54.532772,-1.005152 54.532729,-1.004713 54.532562,-1.004216 54.532288,-1.003830 54.532129,-1.003583 54.532037,-1.003432 54.531994,-1.003315 54.531944,-1.003240 54.531933,-1.002580 54.531748,-1.001753 54.531480,-1.001190 54.531133,-1.001115 54.531063,-1.001030 54.530957,-1.000835 54.531009,-1.000750 54.531018,-1.000662 54.531002,-1.000606 54.530965,-0.999909 54.530183,-0.998476 54.528550,-0.996602 54.526402,-0.996022 54.525754,-0.995734 54.525377,-0.995282 54.524728,-0.995030 54.524407,-0.994851 54.524204,-0.994700 54.524045,-0.994585 54.523960,-0.994448 54.523878,-0.994288 54.523812,-0.994153 54.523774,-0.993976 54.523743,-0.993832 54.523734,-0.993590 54.523743,-0.993393 54.523769,-0.993198 54.523816,-0.993041 54.523881,-0.992940 54.523940,-0.992840 54.524014,-0.992743 54.524104,-0.992506 54.524368,-0.991225 54.526088,-0.991103 54.526241,-0.990725 54.526627,-0.990323 54.526975,-0.990072 54.527157,-0.989909 54.527259,-0.989704 54.527361,-0.989560 54.527407,-0.989407 54.527432,-0.989160 54.527449,-0.989004 54.527440,-0.988739 54.527388,-0.988578 54.527331,-0.988489 54.527282,-0.988307 54.527128,-0.988245 54.527056,-0.988177 54.526949,-0.987878 54.526297,-0.987756 54.526052,-0.987644 54.525885,-0.987533 54.525743,-0.987426 54.525632,-0.987268 54.525487,-0.986978 54.525266,-0.986765 54.525123,-0.986405 54.524927,-0.986018 54.524826,-0.985822 54.524765,-0.985319 54.524640,-0.984245 54.524448,-0.982789 54.524084,-0.981683 54.523819,-0.979884 54.523460,-0.979500 54.523371,-0.979153 54.523280,-0.978754 54.523164,-0.976630 54.522476,-0.974413 54.521745,-0.973764 54.521481,-0.972063 54.520736,-0.969862 54.519901,-0.968522 54.519409,-0.967188 54.518907,-0.964685 54.517819,-0.964364 54.517704,-0.963836 54.517549,-0.961099 54.516786,-0.960652 54.516656,-0.960100 54.516481,-0.959654 54.516328,-0.959524 54.516271,-0.959156 54.516133,-0.957662 54.515467,-0.957379 54.515356,-0.956989 54.515223,-0.956496 54.515074,-0.955033 54.514686,-0.951230 54.513601,-0.950708 54.513387,-0.950530 54.513306,-0.950170 54.513124,-0.949838 54.512926,-0.949699 54.512829,-0.949441 54.512622,-0.949269 54.512464,-0.949170 54.512354,-0.949112 54.512272,-0.949068 54.512168,-0.949063 54.512139,-0.949069 54.512087,-0.949099 54.512001,-0.949269 54.511873,-0.949478 54.511669,-0.949523 54.511620,-0.949560 54.511557,-0.949569 54.511520,-0.949570 54.511452,-0.949563 54.511416,-0.949517 54.511308,-0.949289 54.511164,-0.948557 54.510817,-0.948233 54.510652,-0.948084 54.510562,-0.947987 54.510484,-0.947191 54.509744,-0.947109 54.509679,-0.946754 54.509452,-0.946434 54.509285,-0.946242 54.509207,-0.946052 54.509142,-0.945878 54.509097,-0.944071 54.508781,-0.943938 54.508752,-0.943749 54.508698,-0.943662 54.508696,-0.943544 54.508734,-0.943465 54.508733,-0.943155 54.508656,-0.942374 54.508500,-0.941356 54.508342,-0.938892 54.507931,-0.934611 54.507200,-0.934390 54.507144,-0.934624 54.507628,-0.934745 54.507911,-0.936323 54.511915,-0.936340 54.512017,-0.936346 54.512188,-0.936354 54.512211,-0.936389 54.513382,-0.936478 54.515577,-0.936466 54.515610,-0.936436 54.515639,-0.936259 54.515678,-0.936065 54.515710,-0.934450 54.515962,-0.934110 54.515999,-0.933731 54.516051,-0.933193 54.516094,-0.932588 54.516110,-0.930495 54.516036,-0.930000 54.515997,-0.929757 54.515970,-0.929577 54.515938,-0.929052 54.515816,-0.928639 54.515757,-0.927683 54.515708,-0.927195 54.515647,-0.927030 54.515637,-0.926762 54.515655,-0.926566 54.515654,-0.926426 54.515644,-0.926454 54.515648,-0.926272 54.515623,-0.925969 54.515568,-0.925790 54.515545,-0.924763 54.515241,-0.924594 54.515212,-0.924147 54.515097,-0.923565 54.514984,-0.923249 54.514943,-0.922589 54.514878,-0.922283 54.514863,-0.921829 54.514868,-0.921726 54.514832,-0.921616 54.514778,-0.921499 54.514712,-0.921358 54.514614,-0.921022 54.514352,-0.920899 54.514229,-0.920859 54.514158,-0.920805 54.514092,-0.920710 54.514006,-0.920704 54.514002,-0.920589 54.514029,-0.920541 54.514054,-0.920449 54.514131,-0.920432 54.514172,-0.920457 54.514269,-0.920454 54.514317,-0.920392 54.514401,-0.920320 54.514581,-0.920289 54.514602,-0.920310 54.514688,-0.920297 54.514750,-0.920312 54.514779,-0.920383 54.514850,-0.920409 54.514918,-0.920426 54.515005,-0.920420 54.515020,-0.920372 54.515069,-0.920371 54.515103,-0.920393 54.515148,-0.920444 54.515198,-0.920446 54.515224,-0.920473 54.515257,-0.920456 54.515301,-0.920457 54.515318,-0.920511 54.515378,-0.920509 54.515396,-0.920464 54.515482,-0.920466 54.515513,-0.920438 54.515540,-0.920424 54.515571,-0.920377 54.515607,-0.920374 54.515630,-0.920406 54.515706,-0.920391 54.515762,-0.920396 54.515813,-0.920375 54.515842,-0.920323 54.515887,-0.920311 54.515918,-0.920312 54.515957,-0.920273 54.515998,-0.920277 54.516054,-0.920154 54.516144,-0.920160 54.516184,-0.920114 54.516267,-0.920071 54.516300,-0.920042 54.516346,-0.919956 54.516404,-0.919950 54.516459,-0.919940 54.516475,-0.919865 54.516532,-0.919831 54.516609,-0.919795 54.516643,-0.919761 54.516655,-0.919734 54.516699,-0.919702 54.516731,-0.919695 54.516744,-0.919701 54.516772,-0.919682 54.516838,-0.919520 54.516992,-0.919498 54.517030,-0.919475 54.517110,-0.919444 54.517165,-0.919350 54.517256,-0.919337 54.517360,-0.919209 54.517453,-0.919142 54.517536,-0.918983 54.517687,-0.918960 54.517741,-0.918732 54.517845,-0.918669 54.517889,-0.918639 54.517923,-0.918518 54.517958,-0.918431 54.518004,-0.918141 54.518057,-0.918107 54.518078,-0.917999 54.518176,-0.917823 54.518270,-0.917810 54.518283,-0.917757 54.518405,-0.917743 54.518427,-0.917704 54.518458,-0.917699 54.518488,-0.917640 54.518520,-0.917604 54.518561,-0.917521 54.518598,-0.917408 54.518733,-0.917377 54.518757,-0.917306 54.518786,-0.917175 54.518889,-0.917110 54.518925,-0.917050 54.518993,-0.917024 54.519038,-0.916984 54.519078,-0.916897 54.519141,-0.916870 54.519191,-0.916839 54.519306,-0.916794 54.519343,-0.916430 54.519547,-0.915970 54.519640,-0.915813 54.519663,-0.915740 54.519734,-0.915703 54.519753,-0.915669 54.519786,-0.915631 54.519960,-0.915607 54.520032,-0.915529 54.520110,-0.915510 54.520117,-0.915232 54.519916,-0.915147 54.519794,-0.915029 54.519655,-0.914945 54.519563,-0.914777 54.519405,-0.914731 54.519350,-0.914707 54.519311,-0.914691 54.519264,-0.914676 54.519152,-0.914681 54.519021,-0.914639 54.518918,-0.914608 54.518863,-0.914545 54.518791,-0.914438 54.518629,-0.914414 54.518607,-0.914347 54.518571,-0.912883 54.518749,-0.912843 54.518776,-0.912615 54.518855,-0.912530 54.518871,-0.912336 54.518888,-0.912256 54.518888,-0.912016 54.518852,-0.911838 54.518806,-0.911650 54.518789,-0.911548 54.518792,-0.911002 54.518857,-0.911144 54.519098,-0.911391 54.519555,-0.911363 54.519558,-0.911677 54.520163,-0.911674 54.520207,-0.911659 54.520236,-0.911636 54.520254,-0.911604 54.520263,-0.911433 54.520279,-0.910452 54.520319,-0.909039 54.520392,-0.908646 54.520423,-0.908146 54.520418,-0.907428 54.520443,-0.907122 54.520465,-0.906851 54.520457,-0.906707 54.520488,-0.906653 54.520511,-0.906437 54.520555,-0.904444 54.520835,-0.904055 54.520880,-0.903841 54.520895,-0.902828 54.520999,-0.902361 54.521068,-0.901771 54.521135,-0.901191 54.521241,-0.900582 54.521338,-0.900393 54.521359,-0.896003 54.522025,-0.896932 54.523915,-0.897072 54.524170,-0.897174 54.524307,-0.897255 54.524446,-0.898660 54.526037,-0.898846 54.526267,-0.899044 54.526531,-0.899219 54.526784,-0.899362 54.527010,-0.899671 54.527587,-0.900084 54.528517,-0.900220 54.528868,-0.898780 54.528718,-0.898282 54.528673,-0.897358 54.528568,-0.896844 54.528525,-0.896495 54.528506,-0.896255 54.528467,-0.895526 54.528419,-0.894595 54.528381,-0.894367 54.528344,-0.893584 54.528292,-0.893352 54.528269,-0.892730 54.528249,-0.892565 54.528237,-0.891641 54.528067,-0.891528 54.528143,-0.891300 54.528072,-0.891260 54.528064,-0.891207 54.528066,-0.891191 54.528074,-0.891068 54.528239,-0.890645 54.528681,-0.890456 54.528638,-0.890198 54.528851,-0.889995 54.529007,-0.889744 54.529178,-0.889323 54.529503,-0.889161 54.529539,-0.888965 54.529596,-0.888929 54.529618,-0.888856 54.529684,-0.888846 54.529704,-0.888828 54.529805,-0.888814 54.529942,-0.888819 54.530018,-0.888797 54.530079,-0.888634 54.530413,-0.888512 54.530920,-0.888408 54.531444,-0.888292 54.531912,-0.888288 54.531947,-0.888299 54.531968,-0.888352 54.532021,-0.888447 54.532084,-0.888405 54.532097,-0.888327 54.532099,-0.887535 54.532241,-0.887150 54.532299,-0.886494 54.532435,-0.885646 54.532574,-0.885262 54.532664,-0.884645 54.532758,-0.884536 54.532765,-0.883609 54.532770,-0.883480 54.532782,-0.883447 54.532668,-0.883257 54.532681,-0.883150 54.532589,-0.882788 54.532539,-0.882657 54.532496,-0.882473 54.532454,-0.882237 54.532404,-0.882146 54.532396,-0.881985 54.532400,-0.881888 54.532389,-0.881837 54.532395,-0.881816 54.532422,-0.881812 54.532453,-0.881797 54.532476,-0.881760 54.532483,-0.881695 54.532472,-0.881644 54.532450,-0.881405 54.532386,-0.881346 54.532346,-0.881330 54.532322,-0.881276 54.532297,-0.881211 54.532285,-0.881098 54.532220,-0.881053 54.532203,-0.880694 54.532152,-0.880530 54.532094,-0.880430 54.532089,-0.880266 54.532108,-0.880198 54.532104,-0.879794 54.532012,-0.879608 54.531944,-0.879247 54.531862,-0.879060 54.531794,-0.878847 54.531754,-0.878362 54.531691,-0.877755 54.531521,-0.877575 54.531475,-0.877268 54.531411,-0.877238 54.531417,-0.877231 54.531408,-0.876594 54.531373,-0.876075 54.531376,-0.875636 54.531411,-0.875188 54.531462,-0.874500 54.531579,-0.873838 54.531715,-0.873426 54.531808,-0.872721 54.531986,-0.872142 54.532154,-0.871722 54.532259,-0.871465 54.532313,-0.870546 54.532468,-0.870387 54.532506,-0.870132 54.532607,-0.869798 54.532764,-0.869508 54.532907,-0.869372 54.532985,-0.869235 54.533096,-0.868925 54.533440,-0.868839 54.533510,-0.866556 54.532840,-0.865039 54.532487,-0.862913 54.532079,-0.861254 54.531715,-0.859828 54.531431,-0.859757 54.531368,-0.859733 54.531417,-0.858950 54.532579,-0.858310 54.533549,-0.858050 54.534171,-0.857924 54.534435,-0.857679 54.534993,-0.857245 54.535829,-0.857112 54.535997,-0.857054 54.536185,-0.856799 54.536824,-0.856828 54.536825,-0.856774 54.537034,-0.856771 54.537085,-0.856799 54.537193,-0.857120 54.537931,-0.857212 54.538093,-0.857517 54.538685,-0.857572 54.538774,-0.858904 54.540446,-0.859623 54.541336,-0.859801 54.541544,-0.860526 54.542538,-0.860927 54.543067,-0.861275 54.543548,-0.861512 54.543853,-0.861698 54.544078,-0.861763 54.544127,-0.861974 54.544237,-0.861952 54.544268,-0.861945 54.544351,-0.861713 54.544633,-0.861378 54.544952,-0.861376 54.545044,-0.861346 54.545126,-0.861323 54.545247,-0.861182 54.545327,-0.861165 54.545346,-0.861148 54.545392,-0.861157 54.545458,-0.861152 54.545487,-0.861110 54.545549,-0.861042 54.545609,-0.860914 54.545696,-0.860787 54.545756,-0.860670 54.545787,-0.860600 54.545818,-0.860518 54.545905,-0.860452 54.546052,-0.860441 54.546091,-0.860439 54.546140,-0.860473 54.546196,-0.860507 54.546222,-0.860601 54.546270,-0.860636 54.546311,-0.860633 54.546339,-0.860653 54.546405,-0.860707 54.546481,-0.860724 54.546521,-0.860746 54.546616,-0.860742 54.546691,-0.860723 54.546721,-0.860647 54.546794,-0.860637 54.546880,-0.860620 54.546921,-0.860504 54.547026,-0.860432 54.547109,-0.860344 54.547188,-0.860269 54.547219,-0.860211 54.547232,-0.860125 54.547328,-0.860044 54.547383,-0.859961 54.547507,-0.859863 54.547565,-0.859806 54.547612,-0.859706 54.547727,-0.859586 54.547966,-0.859579 54.548107,-0.859516 54.548190,-0.859475 54.548347,-0.859479 54.548372,-0.859503 54.548410,-0.860064 54.548901,-0.860080 54.548942,-0.860173 54.548989,-0.860279 54.549063,-0.861089 54.549805,-0.861509 54.550308,-0.861628 54.550480,-0.861658 54.550568,-0.861675 54.550707,-0.861565 54.550879,-0.861167 54.551140,-0.860971 54.551471,-0.860875 54.551696,-0.860668 54.552007,-0.860175 54.552073,-0.859799 54.552147,-0.859766 54.552553,-0.859710 54.552892,-0.859596 54.553303,-0.859588 54.553502,-0.859573 54.553538,-0.859523 54.553536,-0.859494 54.553650,-0.859473 54.553679,-0.859377 54.553684,-0.859108 54.553622,-0.858981 54.553636,-0.858913 54.553635,-0.858871 54.553807,-0.858918 54.553896,-0.858919 54.553923,-0.858907 54.553958,-0.858771 54.554183,-0.858720 54.554295,-0.858628 54.554417,-0.858474 54.554747,-0.858251 54.555074,-0.858152 54.555241,-0.858148 54.555392,-0.857878 54.556312,-0.857858 54.556407,-0.857844 54.556530,-0.857684 54.557219,-0.857605 54.557538,-0.857537 54.557653,-0.857380 54.558393,-0.857292 54.558680,-0.857265 54.558853,-0.857184 54.559066,-0.857139 54.559163,-0.857088 54.559391,-0.856901 54.560037,-0.856881 54.560093,-0.856829 54.560137,-0.856728 54.560409,-0.856712 54.560512,-0.856691 54.560539,-0.856679 54.560599,-0.856640 54.560706,-0.856603 54.560763,-0.856578 54.560840,-0.856485 54.561224,-0.856429 54.561392,-0.856229 54.561854,-0.856210 54.561869,-0.855946 54.562406,-0.855812 54.562505,-0.855589 54.562876,-0.855454 54.563071,-0.855202 54.563498,-0.855161 54.563540,-0.855088 54.563591,-0.855008 54.563793,-0.854953 54.563895,-0.854845 54.564061,-0.854812 54.564080,-0.854585 54.564451,-0.854142 54.565243,-0.854063 54.565310,-0.853985 54.565432,-0.853770 54.565708,-0.853743 54.565756,-0.853697 54.565791,-0.853561 54.565938,-0.853456 54.566035,-0.853427 54.566087,-0.853314 54.566190,-0.853151 54.566509,-0.853007 54.566769,-0.852810 54.567058,-0.852651 54.567279,-0.851855 54.568265,-0.851665 54.568470,-0.848554 54.571442,-0.849018 54.571592,-0.849211 54.571628,-0.849798 54.571712,-0.850540 54.571704,-0.851360 54.571780,-0.851538 54.571827,-0.851653 54.571870,-0.851796 54.571940,-0.851853 54.571995,-0.851886 54.572055,-0.851894 54.572083,-0.851873 54.572167,-0.851887 54.572240,-0.852001 54.572291,-0.852369 54.572377,-0.853209 54.572596,-0.853844 54.572734,-0.853956 54.572712,-0.853979 54.572700,-0.854065 54.572577,-0.854126 54.572545,-0.854379 54.572520,-0.854446 54.572532,-0.854568 54.572700,-0.854693 54.572681,-0.854810 54.572528,-0.854832 54.572510,-0.854956 54.572449,-0.855009 54.572432,-0.855121 54.572415,-0.855516 54.572410,-0.855661 54.572473,-0.855770 54.572500,-0.856046 54.572512,-0.856479 54.572544,-0.856556 54.572657,-0.856582 54.572715,-0.856649 54.572742,-0.856681 54.572736,-0.856984 54.572608,-0.857111 54.572680,-0.857195 54.572699,-0.857283 54.572700,-0.857646 54.572667,-0.857635 54.572613,-0.857641 54.572574,-0.857671 54.572503,-0.857695 54.572473,-0.857810 54.572444,-0.857981 54.572433,-0.858055 54.572529,-0.858459 54.572518,-0.858963 54.572541,-0.859400 54.572505,-0.859420 54.572569,-0.859388 54.572655,-0.859456 54.572673,-0.860084 54.572680,-0.860353 54.572722,-0.860522 54.572727,-0.860578 54.572658,-0.860743 54.572635,-0.860817 54.572636,-0.861299 54.572692,-0.861973 54.572721,-0.862120 54.572792,-0.862309 54.572813,-0.862396 54.572883,-0.862889 54.572877,-0.863083 54.572863,-0.863165 54.572847,-0.863477 54.572771,-0.863709 54.572696,-0.863849 54.572619,-0.864026 54.572603,-0.864065 54.572542,-0.864122 54.572483,-0.864356 54.572475,-0.864596 54.572402,-0.864659 54.572377,-0.864705 54.572283,-0.865046 54.572261,-0.865645 54.572242,-0.865751 54.572218,-0.865795 54.572182,-0.865957 54.571963,-0.866090 54.571746,-0.866094 54.571498,-0.866132 54.571353,-0.866170 54.571283,-0.866238 54.571222,-0.866312 54.571178,-0.866410 54.571145,-0.866491 54.571131,-0.866681 54.571245,-0.866717 54.571275,-0.866747 54.571307,-0.866743 54.571362,-0.866735 54.571417,-0.866664 54.571467,-0.866530 54.571489,-0.866453 54.571513,-0.866386 54.571577,-0.866335 54.571660,-0.866312 54.571791,-0.866283 54.572098,-0.866354 54.572164,-0.866381 54.572178,-0.866514 54.572193,-0.866907 54.572186,-0.867548 54.572210,-0.867779 54.572189,-0.868114 54.572130,-0.868548 54.572128,-0.868663 54.572019,-0.868869 54.572010,-0.869115 54.572020,-0.869277 54.571905,-0.869382 54.571856,-0.869430 54.571845,-0.869562 54.571836,-0.870077 54.571843,-0.871209 54.571968,-0.871384 54.572016,-0.871437 54.572053,-0.871456 54.572086,-0.871458 54.572118,-0.871444 54.572147,-0.871410 54.572184,-0.871367 54.572218,-0.871291 54.572260,-0.871257 54.572303,-0.871258 54.572334,-0.871275 54.572374,-0.871308 54.572408,-0.871348 54.572430,-0.871397 54.572441,-0.871615 54.572436,-0.871712 54.572415,-0.871746 54.572402,-0.871914 54.572245,-0.872177 54.572241,-0.872347 54.572169,-0.872480 54.572170,-0.873021 54.572211,-0.873138 54.572239,-0.873126 54.572295,-0.873045 54.572378,-0.873004 54.572442,-0.873082 54.572486,-0.873420 54.572548,-0.873683 54.572548,-0.873970 54.572537,-0.874124 54.572562,-0.874373 54.572624,-0.874481 54.572641,-0.874587 54.572653,-0.874833 54.572640,-0.875255 54.572668,-0.875360 54.572680,-0.875677 54.572745,-0.875990 54.572788,-0.876050 54.572765,-0.876098 54.572714,-0.876073 54.572603,-0.876193 54.572589,-0.876369 54.572589,-0.876415 54.572558,-0.876490 54.572370,-0.876565 54.572118,-0.876710 54.571805,-0.876815 54.571450,-0.876828 54.571430,-0.876866 54.571389,-0.876917 54.571351,-0.877105 54.571250,-0.877193 54.571222,-0.877295 54.571204,-0.877337 54.571205,-0.877377 54.571214,-0.877444 54.571250,-0.877463 54.571283,-0.877465 54.571337,-0.877451 54.571398,-0.877396 54.571478,-0.877329 54.571619,-0.877262 54.571850,-0.877202 54.571937,-0.877093 54.572159,-0.877072 54.572232,-0.877099 54.572281,-0.877240 54.572358,-0.877308 54.572386,-0.878348 54.572655,-0.878760 54.572739,-0.878968 54.572767,-0.879070 54.572767,-0.879128 54.572748,-0.879163 54.572704,-0.879164 54.572676,-0.879151 54.572644,-0.879098 54.572596,-0.878947 54.572515,-0.878712 54.572449,-0.878595 54.572375,-0.878314 54.572244,-0.878286 54.572195,-0.878305 54.572176,-0.878361 54.572149,-0.878438 54.572133,-0.878487 54.572129,-0.878648 54.572139,-0.879018 54.572220,-0.879470 54.572280,-0.880049 54.572385,-0.880308 54.572452,-0.880448 54.572497,-0.880578 54.572555,-0.880693 54.572630,-0.880732 54.572669,-0.880761 54.572714,-0.880772 54.572748,-0.880758 54.572807,-0.880667 54.572908,-0.880636 54.572991,-0.880631 54.573031,-0.880638 54.573059,-0.880658 54.573089,-0.880722 54.573152,-0.881046 54.573298,-0.881348 54.573423,-0.881632 54.573494,-0.881906 54.573581,-0.881967 54.573756,-0.882053 54.573810,-0.882177 54.573861,-0.882400 54.573917,-0.882531 54.573930,-0.882754 54.573873,-0.882808 54.573880,-0.883213 54.574011,-0.883340 54.574063,-0.884029 54.574256,-0.884555 54.574382,-0.884727 54.574399,-0.884776 54.574368,-0.884780 54.574351,-0.884774 54.574335,-0.884565 54.574215,-0.884503 54.574170,-0.884459 54.574127,-0.884434 54.574090,-0.884427 54.574026,-0.884474 54.573880,-0.884540 54.573794,-0.884825 54.573558,-0.884894 54.573512,-0.885069 54.573434,-0.885250 54.573386,-0.885362 54.573369,-0.885521 54.573360,-0.885633 54.573364,-0.885966 54.573394,-0.886443 54.573500,-0.886605 54.573519,-0.887313 54.573566,-0.888186 54.573605,-0.888310 54.573620,-0.888790 54.573641,-0.889449 54.573703,-0.889806 54.573715,-0.890230 54.573710,-0.890321 54.573686,-0.890332 54.573654,-0.890287 54.573618,-0.890201 54.573594,-0.889921 54.573573,-0.889826 54.573540,-0.889830 54.573519,-0.889841 54.573501,-0.889882 54.573481,-0.890342 54.573462,-0.890674 54.573471,-0.890814 54.573462,-0.890857 54.573421,-0.890836 54.573383,-0.890758 54.573364,-0.890593 54.573354,-0.890516 54.573309,-0.890479 54.573210,-0.890507 54.573090,-0.890608 54.572954,-0.890762 54.572879,-0.890939 54.572847,-0.891258 54.572842,-0.891369 54.572799,-0.891537 54.572758,-0.892364 54.572657,-0.892402 54.572645,-0.892422 54.572623,-0.892490 54.572512,-0.892896 54.572430,-0.892977 54.572346,-0.893106 54.572297,-0.893277 54.572182,-0.894768 54.572253,-0.894923 54.572306,-0.895023 54.572331,-0.895419 54.572396,-0.895633 54.572462,-0.895783 54.572525,-0.895976 54.572613,-0.896244 54.572759,-0.896486 54.572918,-0.896731 54.573111,-0.897022 54.573294,-0.897145 54.573300,-0.897245 54.573347,-0.898363 54.573769,-0.898893 54.574012,-0.899467 54.574304,-0.899710 54.574452,-0.899804 54.574520,-0.899957 54.574655,-0.900226 54.574952,-0.900348 54.575012,-0.900323 54.575089,-0.900294 54.575130,-0.900166 54.575209,-0.900013 54.575263,-0.899493 54.575404,-0.899071 54.575482,-0.899064 54.575529,-0.899097 54.575565,-0.899234 54.575574,-0.899360 54.575562,-0.900008 54.575441,-0.900163 54.575401,-0.900261 54.575362,-0.900363 54.575301,-0.900638 54.575040,-0.901189 54.575247,-0.901485 54.575336,-0.901649 54.575396,-0.902501 54.575713,-0.902962 54.575895,-0.903848 54.576190,-0.904209 54.576343,-0.904580 54.576533,-0.904769 54.576697,-0.905691 54.577372,-0.905547 54.577461,-0.905560 54.577484,-0.905602 54.577523,-0.905634 54.577538,-0.905836 54.577574,-0.906218 54.577697,-0.906510 54.577837,-0.906764 54.578008,-0.906814 54.578026,-0.906988 54.578068,-0.907142 54.578073,-0.907313 54.578063,-0.907404 54.578082,-0.907448 54.578102,-0.907527 54.578152,-0.907556 54.578181,-0.907556 54.578214,-0.907549 54.578246,-0.907537 54.578256,-0.907422 54.578270,-0.907375 54.578293,-0.907384 54.578339,-0.907407 54.578362,-0.907466 54.578402,-0.907504 54.578417,-0.907699 54.578418,-0.907852 54.578443,-0.907981 54.578480,-0.908064 54.578559,-0.908170 54.578701,-0.908486 54.578847,-0.908688 54.578888,-0.909036 54.578985,-0.909429 54.579071,-0.909904 54.579230,-0.909795 54.579270,-0.909663 54.579294,-0.909113 54.579312,-0.908999 54.579328,-0.908900 54.579354,-0.908853 54.579378,-0.908805 54.579415,-0.908776 54.579457,-0.908772 54.579496,-0.908781 54.579525,-0.908830 54.579575,-0.908937 54.579630,-0.909167 54.579655,-0.909385 54.579703,-0.909405 54.579743,-0.909388 54.579766,-0.909332 54.579783,-0.908985 54.579806,-0.908849 54.579842,-0.908925 54.579972,-0.908936 54.580006,-0.908939 54.580042,-0.908926 54.580107,-0.908910 54.580134,-0.908851 54.580182,-0.908798 54.580198,-0.908736 54.580212,-0.908523 54.580231,-0.908498 54.580270,-0.908505 54.580291,-0.908542 54.580338,-0.908611 54.580381,-0.908654 54.580394,-0.908773 54.580401,-0.908984 54.580438,-0.909091 54.580540,-0.909194 54.580559,-0.909250 54.580601,-0.909240 54.580674,-0.909201 54.580697,-0.909153 54.580719,-0.908880 54.580802,-0.908812 54.580851,-0.908868 54.580905,-0.908915 54.580934,-0.909055 54.580996,-0.909403 54.580973,-0.909457 54.581015,-0.909448 54.581059,-0.909331 54.581282,-0.909279 54.581429,-0.909526 54.581492,-0.909919 54.581615,-0.910535 54.581775,-0.911087 54.581879,-0.911643 54.581949,-0.912013 54.582069,-0.911919 54.582104,-0.911812 54.582112,-0.911418 54.582101,-0.911339 54.582093,-0.911033 54.582020,-0.910708 54.581958,-0.910449 54.581926,-0.910117 54.581910,-0.909841 54.581924,-0.909729 54.581946,-0.909729 54.581963,-0.909750 54.581997,-0.909841 54.582038,-0.909968 54.582057,-0.910246 54.582122,-0.910600 54.582192,-0.911179 54.582354,-0.911248 54.582400,-0.911328 54.582742,-0.911374 54.582822,-0.911397 54.582845,-0.911473 54.582893,-0.911627 54.582965,-0.911709 54.583021,-0.911813 54.583134,-0.911908 54.583282,-0.911937 54.583354,-0.911949 54.583414,-0.911947 54.583452,-0.911905 54.583564,-0.911832 54.583685,-0.911826 54.583745,-0.911887 54.583850,-0.911997 54.583958,-0.912258 54.584302,-0.912410 54.584413,-0.912506 54.584464,-0.912771 54.584557,-0.912902 54.584589,-0.913304 54.584655,-0.913654 54.584726,-0.913699 54.584829,-0.913769 54.584933,-0.913874 54.584985,-0.914302 54.585060,-0.914410 54.585042,-0.914530 54.584995,-0.914451 54.584771,-0.914398 54.584441,-0.914197 54.583731,-0.914199 54.583707,-0.914226 54.583636,-0.914257 54.583619,-0.914305 54.583617,-0.914392 54.583663,-0.914480 54.583745,-0.914576 54.583888,-0.914607 54.583954,-0.914643 54.584400,-0.914710 54.584622,-0.914750 54.584683,-0.914823 54.584741,-0.914933 54.584797,-0.915070 54.584839,-0.915217 54.584865,-0.915280 54.584894,-0.915301 54.584925,-0.915299 54.584944,-0.915284 54.584962,-0.915242 54.584981,-0.915102 54.584996,-0.914889 54.584983,-0.914802 54.584995,-0.914780 54.585004,-0.914752 54.585030,-0.914745 54.585049,-0.914759 54.585117,-0.914879 54.585376,-0.914966 54.585481,-0.915040 54.585541,-0.915282 54.585700,-0.915459 54.585799,-0.915697 54.585906,-0.915783 54.585935,-0.915960 54.585968,-0.916119 54.585974,-0.916219 54.585911,-0.916165 54.585787,-0.916153 54.585699,-0.916164 54.585640,-0.916190 54.585584,-0.916233 54.585529,-0.916326 54.585347,-0.916457 54.585249,-0.916492 54.585234,-0.916582 54.585222,-0.916689 54.585229,-0.916787 54.585257,-0.916866 54.585301,-0.916908 54.585343,-0.916919 54.585398,-0.916897 54.585434,-0.916847 54.585458,-0.916577 54.585527,-0.916509 54.585578,-0.916444 54.585654,-0.916433 54.585715,-0.916448 54.585760,-0.916481 54.585812,-0.916555 54.585890,-0.916654 54.585955,-0.916882 54.586044,-0.916999 54.586082,-0.917148 54.586117,-0.917299 54.586149,-0.917441 54.586166,-0.917575 54.586179,-0.917652 54.586168,-0.917722 54.586153,-0.917798 54.586065,-0.917752 54.585954,-0.917603 54.585810,-0.917665 54.585752,-0.917740 54.585739,-0.917825 54.585798,-0.917916 54.585918,-0.918039 54.586012,-0.918209 54.586079,-0.918374 54.586092,-0.918718 54.586176,-0.918739 54.586218,-0.918868 54.586254,-0.918941 54.586309,-0.919031 54.586465,-0.919070 54.586510,-0.919409 54.586839,-0.919699 54.586915,-0.919761 54.586897,-0.919811 54.586755,-0.919934 54.586613,-0.919897 54.586499,-0.919921 54.586458,-0.919955 54.586419,-0.920108 54.586343,-0.920185 54.586249,-0.920195 54.586115,-0.920137 54.585999,-0.920259 54.585895,-0.920241 54.585778,-0.920447 54.585776,-0.920560 54.585829,-0.920853 54.585906,-0.920898 54.585953,-0.920989 54.585993,-0.921007 54.586050,-0.921071 54.586096,-0.921088 54.586163,-0.921094 54.586333,-0.921152 54.586482,-0.921106 54.586591,-0.921171 54.586664,-0.921175 54.586725,-0.921221 54.586858,-0.921264 54.587068,-0.921274 54.587075,-0.921369 54.587102,-0.921443 54.587018,-0.921471 54.586904,-0.921499 54.586870,-0.921533 54.586841,-0.921623 54.586829,-0.921655 54.586892,-0.921747 54.586937,-0.921763 54.587213,-0.921849 54.587274,-0.922018 54.587317,-0.922090 54.587246,-0.922162 54.587139,-0.922382 54.587068,-0.922627 54.587113,-0.922763 54.587052,-0.922785 54.587127,-0.922902 54.587209,-0.923515 54.587432,-0.923618 54.587573,-0.923806 54.587710,-0.924021 54.587839,-0.924621 54.587973,-0.925024 54.587991,-0.925132 54.587823,-0.925613 54.587851,-0.925710 54.587919,-0.926054 54.587972,-0.926081 54.588016,-0.926169 54.588050,-0.926293 54.588123,-0.926522 54.588182,-0.926706 54.588258,-0.926834 54.588562,-0.926937 54.588679,-0.927063 54.588725,-0.927218 54.588717,-0.927532 54.588629,-0.927899 54.588586,-0.928148 54.588613,-0.928319 54.588650,-0.928497 54.588690,-0.929118 54.588856,-0.930731 54.588912,-0.931619 54.588922,-0.931787 54.588829,-0.932004 54.588728,-0.931997 54.588638,-0.931914 54.588518,-0.932018 54.588436,-0.932439 54.588439,-0.932600 54.588340,-0.932794 54.588344,-0.933022 54.588220,-0.933163 54.588041,-0.933459 54.587592,-0.933535 54.587584,-0.933543 54.587586,-0.933683 54.587843,-0.933767 54.588142,-0.933699 54.588440,-0.933858 54.588520,-0.933763 54.588663,-0.933773 54.588719,-0.933792 54.588773,-0.933912 54.588869,-0.934133 54.588987,-0.934691 54.589145,-0.935694 54.589314,-0.935736 54.589409,-0.935889 54.589548,-0.936050 54.589665,-0.936226 54.589722,-0.936398 54.589717,-0.936639 54.589820,-0.936859 54.589847,-0.937174 54.589921,-0.937265 54.589996,-0.937382 54.590015,-0.937638 54.590083,-0.937718 54.590225,-0.938329 54.590356,-0.938787 54.590326,-0.939059 54.590250,-0.939514 54.590353,-0.939669 54.590469,-0.939912 54.590533,-0.940312 54.590610,-0.941212 54.590691,-0.941410 54.590650,-0.941326 54.590590,-0.941285 54.590521,-0.941325 54.590481,-0.941847 54.590487,-0.942334 54.590449,-0.942819 54.590495,-0.943219 54.590520,-0.943731 54.590530,-0.943895 54.590525,-0.944231 54.590479,-0.944553 54.590412,-0.945039 54.590427,-0.945232 54.590384,-0.945586 54.590257,-0.946262 54.590231,-0.946484 54.590172,-0.946242 54.590130,-0.946209 54.590104,-0.945292 54.589946,-0.945274 54.589924,-0.945139 54.589897,-0.944018 54.589779,-0.943477 54.589663,-0.943388 54.589676,-0.943263 54.589663,-0.942816 54.589592,-0.942831 54.589549,-0.943082 54.589538,-0.943471 54.589571,-0.944442 54.589695,-0.944895 54.589735,-0.945475 54.589774,-0.945990 54.589832,-0.946506 54.589879,-0.946567 54.589909,-0.946926 54.589972,-0.947024 54.590018,-0.947722 54.590109,-0.948075 54.590167,-0.948155 54.590147,-0.948662 54.590236,-0.948807 54.590405,-0.948847 54.590440,-0.948886 54.590460,-0.948929 54.590476,-0.949070 54.590490,-0.949297 54.590547,-0.949483 54.590563,-0.949963 54.590544,-0.950281 54.590559,-0.950559 54.590649,-0.950914 54.590697,-0.951191 54.590623,-0.951270 54.590574,-0.951464 54.590484,-0.951740 54.590416,-0.952127 54.590386,-0.952367 54.590390,-0.952494 54.590340,-0.952467 54.590258,-0.951895 54.590156,-0.951653 54.590188,-0.951396 54.590254,-0.951294 54.590359,-0.951204 54.590365,-0.950984 54.590443,-0.950593 54.590413,-0.950531 54.590428,-0.949930 54.590369,-0.949942 54.590297,-0.950042 54.590228,-0.950226 54.590233,-0.950482 54.590200,-0.950620 54.590141,-0.950789 54.590142,-0.950828 54.590111,-0.950791 54.590008,-0.950642 54.589953,-0.950589 54.589910,-0.950699 54.589866,-0.950830 54.589862,-0.951850 54.589972,-0.952121 54.589975,-0.952371 54.589950,-0.952496 54.589897,-0.952497 54.589850,-0.952083 54.589694,-0.952068 54.589625,-0.952117 54.589586,-0.952291 54.589614,-0.952432 54.589603,-0.952778 54.589701,-0.952931 54.589641,-0.953101 54.589612,-0.953109 54.589515,-0.952972 54.589434,-0.952643 54.589336,-0.952541 54.589343,-0.952353 54.589310,-0.952220 54.589311,-0.952011 54.589267,-0.951934 54.589294,-0.951653 54.589213,-0.951698 54.589151,-0.952033 54.589133,-0.952344 54.589184,-0.952678 54.589259,-0.952969 54.589310,-0.953195 54.589297,-0.953495 54.589310,-0.954256 54.589401,-0.954437 54.589389,-0.954699 54.589457,-0.954781 54.589458,-0.955054 54.589525,-0.955155 54.589535,-0.955257 54.589542,-0.955564 54.589519,-0.955715 54.589450,-0.955729 54.589362,-0.955804 54.589270,-0.955893 54.589202,-0.955840 54.589007,-0.955934 54.588932,-0.956067 54.588877,-0.955976 54.588694,-0.955640 54.588593,-0.955611 54.588496,-0.955642 54.588447,-0.955612 54.588397,-0.955630 54.588319,-0.955832 54.588161,-0.956374 54.588198,-0.956548 54.588190,-0.956035 54.588025,-0.955815 54.587993,-0.955181 54.587971,-0.954748 54.587892,-0.954686 54.587830,-0.954746 54.587771,-0.955271 54.587809,-0.955403 54.587799,-0.955682 54.587853,-0.955974 54.587859,-0.956049 54.587835,-0.956147 54.587624,-0.956251 54.587575,-0.956391 54.587550,-0.956564 54.587541,-0.956759 54.587565,-0.957005 54.587571,-0.957200 54.587476,-0.957266 54.587332,-0.957446 54.587144,-0.957620 54.586975,-0.957784 54.586858,-0.957856 54.586832,-0.957932 54.586811,-0.958164 54.586778,-0.958326 54.586741,-0.958824 54.586675,-0.959567 54.586478,-0.959698 54.586429,-0.959852 54.586392,-0.960199 54.586347,-0.960347 54.586308,-0.960661 54.586308,-0.960781 54.586281,-0.960836 54.586233,-0.960917 54.586221,-0.961019 54.586275,-0.961142 54.586302,-0.961283 54.586408,-0.961616 54.586577,-0.961843 54.586664,-0.962603 54.586913,-0.964216 54.587390,-0.964648 54.587509,-0.965420 54.587667,-0.965825 54.587768,-0.965893 54.587820,-0.965832 54.587834,-0.965982 54.587923,-0.965791 54.587931,-0.966262 54.588165,-0.966351 54.588194,-0.966656 54.588254,-0.966809 54.588270,-0.966957 54.588281,-0.967138 54.588264,-0.967221 54.588247,-0.967255 54.588233,-0.967265 54.588212,-0.967258 54.588168,-0.967244 54.588146,-0.967180 54.588091,-0.967371 54.588078,-0.967861 54.588125,-0.968542 54.588260,-0.968632 54.588271,-0.968721 54.588280,-0.969136 54.588273,-0.969278 54.588284,-0.969369 54.588310,-0.969501 54.588386,-0.969548 54.588420,-0.969590 54.588504,-0.969734 54.588606,-0.969812 54.588631,-0.970147 54.588669,-0.970776 54.588724,-0.971517 54.588832,-0.972004 54.588913,-0.973200 54.589198,-0.973365 54.589257,-0.973622 54.589334,-0.973930 54.589402,-0.974121 54.589416,-0.974226 54.589415,-0.974578 54.589394,-0.974737 54.589426,-0.974962 54.589434,-0.975279 54.589413,-0.975838 54.589519,-0.976394 54.589555,-0.976792 54.589596,-0.976963 54.589694,-0.977060 54.589734,-0.977351 54.589772,-0.977582 54.589838,-0.978292 54.589902,-0.978405 54.589948,-0.978613 54.590063,-0.978842 54.590138,-0.978946 54.590182,-0.979100 54.590218,-0.979470 54.590253,-0.979716 54.590315,-0.979793 54.590323,-0.980075 54.590341,-0.980199 54.590320,-0.980276 54.590316,-0.980462 54.590325,-0.980597 54.590357,-0.980861 54.590450,-0.980910 54.590461,-0.981087 54.590470,-0.981130 54.590480,-0.981450 54.590587,-0.981875 54.590758,-0.982714 54.591061,-0.982897 54.591155,-0.983583 54.591386,-0.983849 54.591467,-0.984097 54.591531,-0.985514 54.592095,-0.985942 54.592166,-0.986454 54.592303,-0.986936 54.592371,-0.987226 54.592455,-0.987448 54.592491,-0.987845 54.592597,-0.987923 54.592604,-0.987978 54.592596,-0.988015 54.592586,-0.988180 54.592510,-0.988299 54.592492,-0.988344 54.592496,-0.988425 54.592516,-0.988725 54.592627,-0.989199 54.592784,-0.989440 54.592845,-0.990173 54.592987,-0.990343 54.593002,-0.990707 54.593011,-0.991040 54.593008,-0.991531 54.593028,-0.991670 54.593102,-0.991715 54.593111,-0.991906 54.593092,-0.991983 54.593116,-0.992110 54.593177,-0.992206 54.593177,-0.992315 54.593150,-0.992370 54.593157,-0.992572 54.593245,-0.992798 54.593362,-0.992995 54.593435,-0.993234 54.593402,-0.993446 54.593408,-0.993570 54.593434,-0.993654 54.593483,-0.993855 54.593571,-0.994575 54.593808,-0.994900 54.593929,-0.995249 54.594077,-0.995546 54.594217,-0.998483 54.594823,-0.998865 54.594890,-0.999229 54.594984,-1.000285 54.595286,-1.001188 54.595600,-1.001658 54.595789,-1.003213 54.596517,-1.004884 54.597200,-1.006072 54.597711,-1.006187 54.597706,-1.006291 54.597686,-1.006355 54.597651,-1.006419 54.597578,-1.006441 54.597524,-1.006450 54.597450,-1.006441 54.597386,-1.006401 54.597302,-1.006338 54.597081,-1.006379 54.597014,-1.006441 54.597000,-1.006626 54.597010,-1.007043 54.597048,-1.007106 54.597064,-1.007163 54.597085,-1.007258 54.597271,-1.007317 54.597332,-1.007439 54.597408,-1.007520 54.597444,-1.007667 54.597493,-1.007826 54.597566,-1.007987 54.597705,-1.008236 54.597972,-1.008875 54.598286,-1.009445 54.598470,-1.011000 54.599004,-1.011778 54.599287,-1.012763 54.599605,-1.013580 54.599918,-1.014679 54.600159,-1.016134 54.600456,-1.017318 54.600632,-1.018230 54.600777,-1.019558 54.601204,-1.020105 54.601365,-1.021200 54.601666,-1.021475 54.601775,-1.021844 54.601939,-1.022381 54.602218,-1.022558 54.602324,-1.022728 54.602453,-1.022961 54.602665,-1.023240 54.602980,-1.023437 54.603168,-1.024065 54.603702,-1.024346 54.603913,-1.024787 54.604212,-1.024987 54.604324,-1.025243 54.604440,-1.025529 54.604546,-1.025663 54.604583,-1.025887 54.604626,-1.026260 54.604672,-1.026494 54.604687,-1.027355 54.604710,-1.027687 54.604750,-1.028320 54.605162,-1.028498 54.605232,-1.029049 54.605476,-1.029544 54.605896,-1.030275 54.606233,-1.030536 54.606387,-1.031051 54.606588,-1.031496 54.606813,-1.031721 54.606917,-1.032138 54.607152,-1.032684 54.607395,-1.033187 54.607604,-1.033558 54.607793,-1.033850 54.607898,-1.034365 54.608062,-1.035084 54.608237,-1.035179 54.608266,-1.035440 54.608355,-1.035756 54.608489,-1.035996 54.608619,-1.036358 54.608869,-1.036631 54.609021,-1.036985 54.609282,-1.037327 54.609559,-1.037580 54.609739,-1.039059 54.610569,-1.039338 54.610793,-1.039844 54.611140,-1.041002 54.611971,-1.041669 54.612434,-1.042454 54.613008,-1.043137 54.613480,-1.043708 54.613911,-1.043935 54.614036,-1.044210 54.614229,-1.044559 54.614383,-1.044770 54.614515,-1.044886 54.614566,-1.045066 54.614613,-1.045161 54.614621,-1.045390 54.614620,-1.045519 54.614639,-1.045639 54.614677,-1.045740 54.614728,-1.045781 54.614773,-1.045790 54.614830,-1.045777 54.614877,-1.045717 54.614979,-1.045709 54.615011,-1.045711 54.615041,-1.045735 54.615074,-1.045767 54.615105,-1.045854 54.615149,-1.046126 54.615181,-1.046256 54.615241,-1.046304 54.615314,-1.046301 54.615322,-1.046243 54.615328,-1.046094 54.615272,-1.046053 54.615274,-1.046014 54.615281,-1.045979 54.615361,-1.045852 54.615374,-1.045734 54.615707,-1.045756 54.615850,-1.045845 54.616024,-1.046124 54.616405,-1.046430 54.616756,-1.046598 54.616964,-1.046720 54.617083,-1.047158 54.617325,-1.047704 54.617584,-1.047866 54.617615,-1.048090 54.617603,-1.048147 54.617687,-1.048040 54.617751,-1.048042 54.617802,-1.048050 54.617852,-1.048114 54.617899,-1.048124 54.617933,-1.048251 54.617951,-1.048461 54.617956,-1.048692 54.618022,-1.048884 54.618092,-1.049094 54.618148,-1.048954 54.618164,-1.048780 54.618171,-1.048567 54.618290,-1.048461 54.618330,-1.048350 54.618367,-1.048138 54.618404,-1.047910 54.618426,-1.047388 54.618422,-1.047082 54.618477,-1.046612 54.618579,-1.044630 54.618879,-1.044500 54.618895,-1.044058 54.618913,-1.043180 54.618994,-1.042707 54.619014,-1.042069 54.619071,-1.041852 54.619095,-1.041418 54.619173,-1.041235 54.619243,-1.041616 54.619244,-1.042343 54.619164,-1.042681 54.619114,-1.043227 54.619069,-1.044046 54.619049,-1.044580 54.619054,-1.044904 54.619020,-1.045283 54.618997,-1.046568 54.618854,-1.047803 54.618703,-1.048758 54.618643,-1.049410 54.618639,-1.049960 54.618648,-1.050335 54.618684,-1.051059 54.618721,-1.051248 54.618752,-1.050200 54.619179,-1.050380 54.619181,-1.050981 54.619136,-1.051136 54.619132,-1.051285 54.619130,-1.051523 54.619148,-1.051802 54.619155,-1.051688 54.619245,-1.051582 54.619290,-1.051468 54.619335,-1.051153 54.619427,-1.051158 54.619470,-1.051730 54.619462,-1.052137 54.619405,-1.052473 54.619390,-1.053472 54.619322,-1.054325 54.619290,-1.054364 54.619337,-1.054243 54.619386,-1.053807 54.619504,-1.053440 54.619559,-1.053059 54.619635,-1.052672 54.619679,-1.052149 54.619755,-1.051380 54.619846,-1.050434 54.619983,-1.049492 54.620139,-1.048886 54.620192,-1.048491 54.620261,-1.047513 54.620355,-1.047129 54.620419,-1.046790 54.620504,-1.046638 54.620523,-1.045641 54.620605,-1.045235 54.620621,-1.045167 54.620693,-1.045084 54.620726,-1.044913 54.620744,-1.043884 54.620943,-1.043555 54.621026,-1.043150 54.621096,-1.042025 54.621328,-1.041570 54.621389,-1.041074 54.621472,-1.040739 54.621492,-1.040315 54.621601,-1.040206 54.621658,-1.040303 54.621678,-1.040744 54.621672,-1.041350 54.621602,-1.041603 54.621586,-1.041917 54.621528,-1.042568 54.621438,-1.043048 54.621362,-1.043909 54.621259,-1.044262 54.621238,-1.044345 54.621336,-1.044499 54.621324,-1.044693 54.621288,-1.045194 54.621145,-1.045637 54.621073,-1.045999 54.620994,-1.046360 54.620928,-1.047807 54.620792,-1.048234 54.620725,-1.049420 54.620568,-1.050248 54.620502,-1.050659 54.620478,-1.051410 54.620365,-1.051931 54.620266,-1.052280 54.620229,-1.052685 54.620143,-1.052907 54.620107,-1.053810 54.619978,-1.054124 54.619979,-1.054371 54.620022,-1.054444 54.620029,-1.054517 54.620025,-1.054740 54.619988,-1.055156 54.619829,-1.055398 54.619769,-1.055747 54.619806,-1.055903 54.619807,-1.056468 54.619694,-1.056794 54.619639,-1.057024 54.619602,-1.057526 54.619544,-1.057836 54.619614,-1.057861 54.619634,-1.057905 54.619685,-1.057989 54.619874,-1.057989 54.619954,-1.058113 54.620021,-1.058344 54.620003,-1.058549 54.619973,-1.058833 54.619965,-1.058916 54.619970,-1.059086 54.620043,-1.059332 54.620204,-1.059820 54.620271,-1.060259 54.620359,-1.060579 54.620442,-1.060791 54.620523,-1.061086 54.620707,-1.061322 54.620812,-1.061541 54.620926,-1.061833 54.621020,-1.061939 54.621049,-1.062260 54.621112,-1.062429 54.621158,-1.062665 54.621199,-1.062897 54.621219,-1.064013 54.621262,-1.064365 54.621353,-1.064583 54.621443,-1.065130 54.621719,-1.065299 54.621822,-1.065549 54.621928,-1.065890 54.622011,-1.066128 54.622024,-1.066323 54.622067,-1.066402 54.622095,-1.066479 54.622128,-1.066637 54.622219,-1.066963 54.622457,-1.067188 54.622511,-1.067391 54.622541,-1.067463 54.622625,-1.067503 54.622693,-1.067637 54.622757,-1.067881 54.622897,-1.067864 54.622971,-1.067528 54.623013,-1.067247 54.623002,-1.066878 54.623004,-1.066799 54.623084,-1.066849 54.623144,-1.066861 54.623153,-1.067214 54.623170,-1.067336 54.623168,-1.067580 54.623148,-1.067706 54.623150,-1.067830 54.623155,-1.067963 54.623176,-1.068041 54.623290,-1.067825 54.623330,-1.067838 54.623356,-1.067859 54.623381,-1.067964 54.623393,-1.068004 54.623431,-1.068492 54.623754,-1.068541 54.623826,-1.068615 54.623977,-1.068643 54.624053,-1.068548 54.624022,-1.068368 54.623942,-1.068040 54.623947,-1.067836 54.623907,-1.067728 54.623838,-1.067819 54.623774,-1.067918 54.623721,-1.067906 54.623623,-1.067838 54.623573,-1.067669 54.623570,-1.067410 54.623664,-1.067366 54.623612,-1.067479 54.623552,-1.067506 54.623456,-1.067406 54.623370,-1.067315 54.623350,-1.067068 54.623378,-1.066996 54.623489,-1.066929 54.623557,-1.066793 54.623663,-1.066661 54.623708,-1.066013 54.623666,-1.065492 54.623681,-1.065326 54.623693,-1.064976 54.623740,-1.064843 54.623750,-1.064711 54.623755,-1.064422 54.623739,-1.064001 54.623775,-1.063650 54.623825,-1.063480 54.623867,-1.063317 54.623910,-1.063178 54.624008,-1.063153 54.624214,-1.063066 54.624325,-1.062931 54.624377,-1.062714 54.624409,-1.062495 54.624431,-1.062229 54.624481,-1.062147 54.624533,-1.062444 54.624556,-1.062658 54.624535,-1.062853 54.624562,-1.062899 54.624637,-1.062746 54.624736,-1.062595 54.624783,-1.061719 54.624944,-1.060796 54.625147,-1.060605 54.625266,-1.060508 54.625338,-1.060366 54.625418,-1.060234 54.625474,-1.060003 54.625540,-1.059883 54.625605,-1.060006 54.625610,-1.060202 54.625578,-1.060411 54.625621,-1.060498 54.625672,-1.060429 54.625762,-1.060403 54.625820,-1.061402 54.625804,-1.061723 54.625743,-1.062024 54.625656,-1.062309 54.625660,-1.062771 54.625633,-1.064206 54.625585,-1.064691 54.625518,-1.065020 54.625560,-1.064977 54.625611,-1.064818 54.625640,-1.064546 54.625641,-1.064273 54.625693,-1.064008 54.625710,-1.063618 54.625718,-1.062861 54.625805,-1.061896 54.625968,-1.061626 54.626031,-1.061495 54.626009,-1.061266 54.626015,-1.060966 54.626049,-1.060704 54.626059,-1.060341 54.626102,-1.060323 54.626179,-1.060380 54.626198,-1.060554 54.626201,-1.060916 54.626188,-1.061519 54.626133,-1.062136 54.626045,-1.062435 54.626013,-1.063499 54.625952,-1.064004 54.625907,-1.064281 54.625899,-1.065184 54.625823,-1.065669 54.625774,-1.067920 54.625673,-1.068385 54.625663,-1.070132 54.625660,-1.070401 54.625480,-1.070654 54.625264,-1.070942 54.624989,-1.071221 54.624756,-1.072254 54.623975,-1.072416 54.623791,-1.072455 54.623690,-1.072459 54.623591,-1.072388 54.623518,-1.072265 54.623488,-1.072086 54.623530,-1.071974 54.623466,-1.072032 54.623419,-1.072044 54.623388,-1.072050 54.623329,-1.072031 54.623276,-1.072008 54.623251,-1.071848 54.623235,-1.071584 54.623256,-1.071452 54.623276,-1.071394 54.623290,-1.071261 54.623363,-1.071173 54.623428,-1.070954 54.623423,-1.070675 54.623429,-1.070137 54.623465,-1.069979 54.623453,-1.069912 54.623428,-1.070057 54.623358,-1.070162 54.623320,-1.070343 54.623258,-1.070558 54.623205,-1.070884 54.623192,-1.071407 54.623070,-1.071788 54.623050,-1.072104 54.623010,-1.072174 54.622967,-1.072236 54.622895,-1.072242 54.622866,-1.072192 54.622824,-1.072034 54.622807,-1.071743 54.622801,-1.071471 54.622767,-1.071371 54.622738,-1.071318 54.622689,-1.071406 54.622625,-1.071632 54.622572,-1.072032 54.622611,-1.072155 54.622645,-1.072371 54.622636,-1.072433 54.622614,-1.072473 54.622586,-1.072620 54.622651,-1.072728 54.622716,-1.072884 54.622749,-1.073057 54.622771,-1.073090 54.622815,-1.072950 54.622926,-1.073110 54.623002,-1.073337 54.622983,-1.073595 54.623030,-1.073852 54.623103,-1.074387 54.623337,-1.074501 54.623372,-1.074844 54.623463,-1.075089 54.623494,-1.075175 54.623497,-1.075358 54.623491,-1.075581 54.623463,-1.076041 54.623334,-1.076341 54.623221,-1.077054 54.623002,-1.078105 54.622811,-1.078361 54.622782,-1.078917 54.622774,-1.079547 54.622729,-1.079913 54.622727,-1.080254 54.622715,-1.080998 54.622730,-1.081614 54.622702,-1.082574 54.622645,-1.083800 54.622673,-1.084496 54.622717,-1.085332 54.622729,-1.086216 54.622814,-1.086530 54.622822,-1.086835 54.622857,-1.088211 54.623203,-1.088643 54.623288,-1.089291 54.623398,-1.089888 54.623524,-1.090463 54.623694,-1.090669 54.623764,-1.091167 54.623952,-1.091413 54.624034,-1.092606 54.624362,-1.092966 54.624447,-1.093816 54.624597,-1.094322 54.624709,-1.095458 54.624938,-1.095778 54.625029,-1.096018 54.625108,-1.096264 54.625150,-1.096739 54.625169,-1.097685 54.625184,-1.097873 54.625217,-1.098091 54.625305,-1.098300 54.625361,-1.098394 54.625394,-1.098669 54.625508,-1.098869 54.625568,-1.099100 54.625621,-1.099624 54.625814,-1.100411 54.626025,-1.101013 54.626174,-1.101161 54.626218,-1.101351 54.626297,-1.102512 54.626630,-1.102632 54.626670,-1.102827 54.626751,-1.103352 54.626936,-1.103699 54.627037,-1.104070 54.627186,-1.104793 54.627351,-1.105223 54.627461,-1.105689 54.627554,-1.105781 54.627579,-1.106329 54.627677,-1.106843 54.627695,-1.107173 54.627677,-1.107362 54.627723,-1.107374 54.627743,-1.107333 54.627781,-1.107260 54.627803,-1.107039 54.627833,-1.106940 54.627861,-1.106959 54.627906,-1.107234 54.627988,-1.107623 54.628149,-1.107831 54.628257,-1.108109 54.628369,-1.108319 54.628473,-1.109046 54.628783,-1.109334 54.628877,-1.109822 54.629013,-1.110112 54.629137,-1.110479 54.629269,-1.110800 54.629354,-1.111068 54.629411,-1.111382 54.629493,-1.112186 54.629775,-1.113151 54.630163,-1.113398 54.630246,-1.113834 54.630373,-1.114136 54.630513,-1.114566 54.630747,-1.114743 54.630879,-1.115127 54.631110,-1.115307 54.631204,-1.115534 54.631303,-1.115708 54.631363,-1.115874 54.631364,-1.115909 54.631326,-1.115826 54.631216,-1.115707 54.631135,-1.115418 54.631021,-1.115130 54.630867,-1.115082 54.630801,-1.115256 54.630771,-1.115329 54.630766,-1.115627 54.630830,-1.115785 54.630887,-1.116037 54.631005,-1.116286 54.631145,-1.116672 54.631427,-1.116889 54.631618,-1.117098 54.631778,-1.117405 54.631977,-1.117714 54.632161,-1.118391 54.632587,-1.118665 54.632749,-1.118875 54.632911,-1.118992 54.633095,-1.119039 54.633156,-1.119189 54.633284,-1.119318 54.633412,-1.120156 54.633865,-1.120329 54.633913,-1.120677 54.633987,-1.120864 54.634071,-1.120951 54.634121,-1.121100 54.634221,-1.121229 54.634323,-1.121343 54.634425,-1.121443 54.634530,-1.121490 54.634588,-1.121538 54.634709,-1.121643 54.634862,-1.121828 54.634998,-1.122314 54.635246,-1.122820 54.635459,-1.123827 54.635839,-1.125183 54.636272,-1.125498 54.636359,-1.126229 54.636535,-1.127142 54.636716,-1.127512 54.636815,-1.127666 54.636869,-1.127936 54.636982,-1.128378 54.637199,-1.128637 54.637315,-1.129533 54.637657,-1.130619 54.638103,-1.130866 54.638199,-1.131191 54.638312,-1.131373 54.638402,-1.131465 54.638503,-1.131549 54.638564,-1.131825 54.638582,-1.132006 54.638644,-1.132078 54.638680,-1.132289 54.638811,-1.132440 54.638879,-1.132909 54.639032,-1.133513 54.639251,-1.134101 54.639518,-1.134842 54.639742,-1.135695 54.640036,-1.135961 54.640158,-1.136213 54.640307,-1.136289 54.640341,-1.136365 54.640373,-1.136661 54.640454,-1.137145 54.640639,-1.137400 54.640759,-1.137848 54.641039,-1.138149 54.641329,-1.138251 54.641458,-1.138367 54.641783,-1.138394 54.641958,-1.138395 54.642044,-1.138370 54.642289,-1.138310 54.642478,-1.138242 54.642627,-1.138103 54.643136,-1.137976 54.643409,-1.137867 54.643498,-1.137745 54.643616,-1.137163 54.644038,-1.137016 54.644119,-1.136859 54.644148,-1.136709 54.644140,-1.136386 54.644024,-1.136355 54.643991,-1.136333 54.643960,-1.136543 54.643897,-1.136625 54.643845,-1.136676 54.643782,-1.136696 54.643653,-1.136635 54.643594,-1.136553 54.643590,-1.136464 54.643608,-1.136341 54.643657,-1.136061 54.643749,-1.135784 54.643822,-1.135418 54.643931,-1.134599 54.644374,-1.134335 54.644474,-1.133629 54.644660,-1.133117 54.644766,-1.132985 54.644800,-1.132975 54.644812,-1.132999 54.644853,-1.133082 54.644884,-1.133224 54.644896,-1.133487 54.644954,-1.134124 54.645135,-1.134456 54.645279,-1.134665 54.645313,-1.134860 54.645313,-1.135071 54.645279,-1.135385 54.645188,-1.135918 54.645049,-1.136163 54.645013,-1.136332 54.645035)))",E60000006 \ No newline at end of file diff --git a/tests/data/boundary/organisation.csv b/tests/data/boundary/organisation.csv new file mode 100644 index 000000000..f3c472f11 --- /dev/null +++ b/tests/data/boundary/organisation.csv @@ -0,0 +1,4 @@ +organisation,entity,wikidata,name,website,twitter,statistical-geography,boundary,toid,opendatacommunities,opendatacommunities-area,billing-authority,census-area,local-authority-type,government-organisation,combined-authority,esd-inventories,local-resilience-forum,region,addressbase-custodian,company,wikipedia,start-date,end-date +local-authority-eng:HPL,172,Q16993720,Hartlepool Borough Council,https://www.hartlepool.gov.uk,HpoolCouncil,E06000001,https://raw.githubusercontent.com/digital-land/boundary-collection/master/collection/local-authority/E06000001/index.geojson,,http://opendatacommunities.org/id/unitary-authority/hartlepool,http://opendatacommunities.org/id/geography/administration/ua/E06000001,E0701,00EB,UA,,TVCA,,cleveland,north-east,724,,https://en.wikipedia.org/wiki/Hartlepool_Borough_Council,1905-06-18, +local-authority-eng:MDB,210,Q6841843,Middlesbrough Borough Council,https://www.middlesbrough.gov.uk,MbroCouncil,E06000002,https://raw.githubusercontent.com/digital-land/boundary-collection/master/collection/local-authority/E06000002/index.geojson,,http://opendatacommunities.org/id/unitary-authority/middlesbrough,http://opendatacommunities.org/id/geography/administration/ua/E06000002,E0702,00EC,UA,,TVCA,,cleveland,north-east,734,,https://en.wikipedia.org/wiki/Middlesbrough_Council,1905-06-18, +local-authority-eng:RCC,259,Q17019415,Redcar and Cleveland Borough Council,https://www.redcar-cleveland.gov.uk,RedcarCleveland,E06000003,https://raw.githubusercontent.com/digital-land/boundary-collection/master/collection/local-authority/E06000003/index.geojson,,http://opendatacommunities.org/id/unitary-authority/redcar-and-cleveland,http://opendatacommunities.org/id/geography/administration/ua/E06000003,E0703,00EE,UA,,TVCA,,cleveland,north-east,728,,https://en.wikipedia.org/wiki/Redcar_and_Cleveland_Borough_Council,1996-04-01, diff --git a/tests/data/specification/field.csv b/tests/data/specification/field.csv index 8a0b4a8e8..98a7c531f 100644 --- a/tests/data/specification/field.csv +++ b/tests/data/specification/field.csv @@ -24,3 +24,5 @@ entity,,string,1,,,, reference-entity,,string,1,,,, field,,string,1,,,, value,,string,1,,,, +GeoX,,decimal,1,,,, +GeoY,,decimal,1,,,, diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index ba33dddc1..3a34b023b 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -3,7 +3,7 @@ class FakeDictReader: # csv.DictReader). Simply returns values from the passed in list of rows. def __init__(self, rows, resource=None, dataset=None): self.resource = resource - self.dataset = resource + self.dataset = dataset self.fieldnames = rows[0].keys() self.rows = iter(rows) self.line_number = 0 diff --git a/tests/unit/test_harmonise.py b/tests/unit/test_harmonise.py index 20deefd8c..68b3dadeb 100755 --- a/tests/unit/test_harmonise.py +++ b/tests/unit/test_harmonise.py @@ -1,5 +1,6 @@ #!/usr/bin/env -S py.test -svv +from digital_land.organisation import Organisation from digital_land.phase.harmonise import HarmonisePhase from digital_land.specification import Specification from digital_land.log import IssueLog @@ -19,9 +20,12 @@ def test_harmonise_field(): def test_harmonise(): specification = Specification("tests/data/specification") + organisation = Organisation("tests/data/organisation.csv") issues = IssueLog() - h = HarmonisePhase(specification=specification, issues=issues) + h = HarmonisePhase( + specification=specification, issues=issues, organisation=organisation + ) reader = FakeDictReader( [ {"field-integer": "123"}, @@ -34,3 +38,158 @@ def test_harmonise(): assert output[0]["row"] == {"field-integer": "123"}, "pass through valid data" assert output[1]["row"] == {"field-integer": "321"}, "whitespace trimmed" assert output[2]["row"] == {"field-integer": ""}, "remove bad data" + + +def test_harmonise_inside_custom_boundary(): + specification = Specification("tests/data/specification") + organisation = Organisation( + "tests/data/boundary/organisation.csv", + None, + None, + "tests/data/boundary/lpa-geometry.csv", + "tests/data/boundary/local-authority.csv", + ) + issues = IssueLog() + + h = HarmonisePhase( + specification=specification, issues=issues, organisation=organisation + ) + reader = FakeDictReader( + [ + { + "organisation": "local-authority-eng:HPL", + "GeoX": "-1.259419", + "GeoY": "54.66946", + }, + ], + None, + dataset="brownfield-land", + ) + output = list(h.process(reader)) + assert len(output) == 1 + assert output[0]["row"]["GeoX"] == "-1.259419" + assert output[0]["row"]["GeoY"] == "54.66946" + + +def test_harmonise_outside_custom_boundary(): + specification = Specification("tests/data/specification") + organisation = Organisation( + "tests/data/boundary/organisation.csv", + None, + None, + "tests/data/boundary/lpa-geometry.csv", + "tests/data/boundary/local-authority.csv", + ) + issues = IssueLog() + + h = HarmonisePhase( + specification=specification, issues=issues, organisation=organisation + ) + reader = FakeDictReader( + [ + { + "organisation": "local-authority-eng:HPL", + "GeoX": "-0.446154", + "GeoY": "53.081202", + }, + ], + None, + "brownfield-land", + ) + output = list(h.process(reader)) + assert len(output) == 1 + assert output[0]["row"]["GeoX"] == "" + assert output[0]["row"]["GeoY"] == "" + + +def test_harmonise_non_brownfield_outside_custom_boundary(): + specification = Specification("tests/data/specification") + organisation = Organisation( + "tests/data/boundary/organisation.csv", + None, + None, + "tests/data/boundary/lpa-geometry.csv", + "tests/data/boundary/local-authority.csv", + ) + issues = IssueLog() + + h = HarmonisePhase( + specification=specification, issues=issues, organisation=organisation + ) + reader = FakeDictReader( + [ + { + "organisation": "local-authority-eng:HPL", + "GeoX": "-0.446154", + "GeoY": "53.081202", + }, + ], + None, + "not-brownfield-land", + ) + output = list(h.process(reader)) + assert len(output) == 1 + assert output[0]["row"]["GeoX"] == "-0.446154" + assert output[0]["row"]["GeoY"] == "53.081202" + + +def test_harmonise_inside_default_boundary_unknown_organisation(): + specification = Specification("tests/data/specification") + organisation = Organisation( + "tests/data/boundary/organisation.csv", + None, + None, + "tests/data/boundary/lpa-geometry.csv", + "tests/data/boundary/local-authority.csv", + ) + issues = IssueLog() + + h = HarmonisePhase( + specification=specification, issues=issues, organisation=organisation + ) + reader = FakeDictReader( + [ + { + "organisation": "???", + "GeoX": "-0.446154", + "GeoY": "53.081202", + }, + ], + None, + "brownfield-land", + ) + output = list(h.process(reader)) + assert len(output) == 1 + assert output[0]["row"]["GeoX"] == "-0.446154" + assert output[0]["row"]["GeoY"] == "53.081202" + + +def test_harmonise_outside_default_boundary_unknown_organisation(): + specification = Specification("tests/data/specification") + organisation = Organisation( + "tests/data/boundary/organisation.csv", + None, + None, + "tests/data/boundary/lpa-geometry.csv", + "tests/data/boundary/local-authority.csv", + ) + issues = IssueLog() + + h = HarmonisePhase( + specification=specification, issues=issues, organisation=organisation + ) + reader = FakeDictReader( + [ + { + "organisation": "???", + "GeoX": "7.578883", + "GeoY": "54.379565", + }, + ], + None, + "brownfield-land", + ) + output = list(h.process(reader)) + assert len(output) == 1 + assert output[0]["row"]["GeoX"] == "" + assert output[0]["row"]["GeoY"] == "" diff --git a/tests/unit/test_specification.py b/tests/unit/test_specification.py index 4c743c97d..43dd602b2 100644 --- a/tests/unit/test_specification.py +++ b/tests/unit/test_specification.py @@ -94,6 +94,8 @@ def test_field_names(): "field", "reference-entity", "fact", + "GeoX", + "GeoY", ] ) @@ -133,6 +135,8 @@ def test_current_fieldnames(): "line-number", "resource", "value", + "GeoX", + "GeoY", ] )