From b450a456213f7ace27e2ff302f0f7a63f0e966e3 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 31 Aug 2019 21:32:07 +0200 Subject: [PATCH] Added model --- Model.nlogo | 1955 +++++++++++++++++++++++++++++++++++++++++++++ Spaceship.afphoto | Bin 0 -> 65105 bytes Spaceship.png | Bin 0 -> 16397 bytes 3 files changed, 1955 insertions(+) create mode 100644 Model.nlogo create mode 100644 Spaceship.afphoto create mode 100644 Spaceship.png diff --git a/Model.nlogo b/Model.nlogo new file mode 100644 index 0000000..71c759b --- /dev/null +++ b/Model.nlogo @@ -0,0 +1,1955 @@ +breed [males male] +breed [females female] + +males-own +[ + ; When dies a specific male? Value in years. + ageOfDeathYears + + ; Age in years, e.g. for plotting and statistics. + ageYears + + ; Age in days. Makes things easier due to the fact that one tick is a day. + ageDays + + ; Is a specific male able to breed? + isFertile +] + +females-own +[ + ; When dies a specific female? Value in years. + ageOfDeathYears + + ; Age in years, e.g. for plotting and statistics. + ageYears + + ; Age in days. Makes things easier due to the fact that one tick is a day. + ageDays + + ; Is a specific female able to breed? + isFertile + + ; How many children can a specific female become? + maxChildren + + ; How many children had this female? + previousChildren + + ; When does the menopause begins? + startMenopauseYears + + ; Is an individual female pregnant? + isPregnant + + ; How long is a female pregnant? + pregnantSinceDays +] + +globals +[ + ; The chip's capacity. + capacity + + ; How many females are on board? This number gets updates on each tick. + numberFemales + + ; How many females alive are infertile? Gets updated each tick. + numberFemalesInfertile + + ; How many males are on board? This number gets updated on each tick. + numberMales + + ; How many males alive are infertile? Gets updated each tick. + numberMalesInfertile + + ; How many accidents happens in the mission? + numberAccidents + + ; How many crew members died by accidents? + numberDeathsByAccidents + + ; How many crew members are died? + numberDeaths + + ; How many births? + numberBirths + + ; How many females are born? + numberBirthsFemales + + ; How many males are born? + numberBirthsMales + + ; The current year. + currentYear + + ; The crew's mean age. + meanAgeYears + + ; The mean age of females. + meanAgeFemalesYears + + ; The mean age of males. + meanAgeMalesYears +] + +to setup + clear-all + + ; Configure the plots' pens to behave on a daily or monthly basis: + ifelse simulateMonthsInsteadOfDays + [ + set-current-plot "Population over time (6300 years)" + + set-current-plot-pen "females" + set-plot-pen-interval 30.42 + + set-current-plot-pen "males" + set-plot-pen-interval 30.42 + + set-current-plot-pen "total" + set-plot-pen-interval 30.42 + + set-current-plot "Population over time (last 365 days)" + + set-current-plot-pen "females" + set-plot-pen-interval 30.42 + + set-current-plot-pen "males" + set-plot-pen-interval 30.42 + + set-current-plot-pen "total" + set-plot-pen-interval 30.42 + ] + [ + set-current-plot "Population over time (6300 years)" + + set-current-plot-pen "females" + set-plot-pen-interval 1 + + set-current-plot-pen "males" + set-plot-pen-interval 1 + + set-current-plot-pen "total" + set-plot-pen-interval 1 + + set-current-plot "Population over time (last 365 days)" + + set-current-plot-pen "females" + set-plot-pen-interval 1 + + set-current-plot-pen "males" + set-plot-pen-interval 1 + + set-current-plot-pen "total" + set-plot-pen-interval 1 + ] + + ; The ship's capacity: + set capacity 500 + + ; Load the ships's environment: + import-pcolors "Spaceship.png" + + ; Half the crew consists of males: + create-males initialCrewSize / 2 + [ + ; Set the shape and color: + set shape "person" + set color blue ; males are blue + + ; Determine the date of death for each individual. + ; The time of death is a normal distribution: + set ageOfDeathYears random-normal maxAgeMales ageStdDeviation + + ; Determine the initial age at time of mission's start: + set ageYears random-normal initialAgeMales initialAgeStdDeviation + + ; Calculate the corresponding age as days: + set ageDays ageYears * 365 + + ; Initially, set all individuals to be fertile. We fix this in a moment. + set isFertile true + ] + + ; Half the crew consists of females: + create-females initialCrewSize / 2 + [ + ; Set the shape and color: + set shape "person" + set color red ; females are red + + ; Determine the date of death for each individual. + ; The time of death is a normal distribution: + set ageOfDeathYears random-normal maxAgeFemals ageStdDeviation + + ; Determine the initial age at time of mission's start: + set ageYears random-normal initialAgeFemales initialAgeStdDeviation + + ; Calculate the corresponding age as days: + set ageDays ageYears * 365 + + ; Initially, set all individuals to be fertile. We fix this in a moment. + set isFertile true + + ; Determine how many children a specific female can have. + ; When the specific female is infertile, use 0. Otherwise, it is a normal distribution: + set maxChildren random-normal maxChildrenPerFemale maxChildrenStdDeviation + + ; Determine when the menopause begins: + set startMenopauseYears random-normal meanAgeMenopause ageMenopauseStdDeviation + + ; No female is pregnant at the time of mission's start: + set isPregnant false + set pregnantSinceDays 0 + ] + + ; Now, some initial crew members might got a negative age: + ask turtles with [ ageYears < 0 ] + [ + set ageDays random 365 + set ageYears ageDays / 365 + ] + + ; Distribute the crew across the spaceship: + ask turtles [ setxy random-xcor random-ycor ] + + ; Ensure the crew is not in space: + moveAwayFromSpace + + ; Count the number of females and males on board. + ; This is necessary to this point in time, to + ; calculate the fertile state of the crew: + countSex + + ; Get the initial crew's mean age: + determineMeanAges + + ; Now, we are fixing the crew's fertile state: + ask n-of (numberMales * (infertilityMales / 100)) males [ set isFertile false ] + ask n-of (numberFemales * (infertilityFemales / 100)) females [ set isFertile false ] + + ; Next, we can fix the number of possible children accordingly: + ask females [ set maxChildren ifelse-value isFertile [ maxChildren ] [ 0 ] ] + + ; Count the number of females and males, again. + ; This time it is necessary, to show the correct statistics + ; in the dashboard: + countSex + + reset-ticks + output-print "Please wait until the mission's\nsimulation ends ..." +end + +to go + ; Check if and who died: + checkLife + + ; Determine if any accident occurs today: + checkAccident + + ; Count the number of females and males to consider + ; the deaths: + countSex + + ; The mission might ended: + if missionEnds? + [ + stop + ] + + ; Doing males' actions: + actMales + + ; Doing females' actions: + actFemals + + ; Do mating: + mate + + ; Protect children and pregnant individuals: + protect + + ; Ensure the crew is not in space: + moveAwayFromSpace + + ; Determine the number of females and males, again. + ; Due to births, the numbers might be increased: + countSex + + ; Calculate the mean age: + determineMeanAges + + ; Determine the current year: + determineYear + + ; Update the plotting: + updatePlots + + ; Next day or month (cf. simulateMonthsInsteadOfDays) ... + ifelse simulateMonthsInsteadOfDays + [ + ; Next month... + tick-advance 30.42 + ] + [ + ; Next day... + tick + ] +end + +to actMales + ask males + [ + forward random 6 + right random 90 + ] +end + +to actFemals + ask females + [ + forward random 6 + right random 90 + + ; Doing pregnancy management: + if isPregnant + [ + ifelse simulateMonthsInsteadOfDays + [ + set pregnantSinceDays pregnantSinceDays + 30.42 + ] + [ + set pregnantSinceDays pregnantSinceDays + 1 + ] + ] + ] + + ; Determine how many births we have today: + let births count females with [ pregnantSinceDays > 270 ] + + ; End the pregnancy: + ask females with [ pregnantSinceDays > 270 ] + [ + set pregnantSinceDays 0 + set isPregnant false + set previousChildren previousChildren + 1 + ] + + ; For each birth... + repeat births + [ + ; Twin rate is approx. 1% per birth: + let isTwin random 100 > 98 + + ; How many children does the female gets? + let numberChildren ifelse-value isTwin [ 2 ] [ 1 ] + + ; For each child: + repeat numberChildren + [ + ; 50/50 chance for sex: + let isMale random 100 > 50 + + ; Birth: + + ifelse not isMale + [ + create-females 1 + [ + ; Set the shape and color: + set shape "person" + set color red ; females are red + + ; Determine the date of death for each individual. + ; The time of death is a normal distribution: + set ageOfDeathYears random-normal maxAgeFemals ageStdDeviation + + ; Determine the initial age at time of mission's start: + set ageYears 0 + + ; Calculate the corresponding age as days: + set ageDays 1 + + ; Is this individual fertile? + set isFertile random 100 < (100 - infertilityFemales) + + ; Determine how many children a specific female can have. + ; When the specific female is infertile, use 0. Otherwise, it is a normal distribution: + set maxChildren random-normal maxChildrenPerFemale maxChildrenStdDeviation + + ; Determine when the menopause begins: + set startMenopauseYears random-normal meanAgeMenopause ageMenopauseStdDeviation + + ; Not yet pregnant: + set isPregnant false + set pregnantSinceDays 0 + ] + + ; Statistics: + set numberBirths numberBirths + 1 + set numberBirthsFemales numberBirthsFemales + 1 + ] + [ + create-males 1 + [ + ; Set the shape and color: + set shape "person" + set color blue ; males are blue + + ; Determine the date of death for each individual. + ; The time of death is a normal distribution: + set ageOfDeathYears random-normal maxAgeMales ageStdDeviation + + ; Determine the initial age at time of mission's start: + set ageYears 0 + + ; Calculate the corresponding age as days: + set ageDays 1 + + ; Is this individual fertile? + set isFertile random 100 < (100 - infertilityMales) + ] + + ; Statistics: + set numberBirths numberBirths + 1 + set numberBirthsMales numberBirthsMales + 1 + ] + ] + ] + + ; Move all newborn to the secure area: + ask turtles with [ ageDays = 1 ] + [ + setxy 0 0 + ] + +end + +to checkAccident + + ; Determine if there is any accident. We choose a random number between 0 and 99. + ; Any value below 99 means no accident. + let accident random 100 + + ; Are we having an accident today? + if accident >= 99 + [ + set numberAccidents numberAccidents + 1 + + ; Okay. Now we have to determine where in spaceship the accident occurs. + ; As darker the color of the patches, as higher is the risk. The white + ; areas are save. But from time to time, even there an accident happens. + ; + ; Value mappings: + ; 0 - 70 = black area (pcolor 0) + ; 71 - 90 = dark area (pcolor > 0 and pcolor < 2.9) + ; 91 - 98 = gray area (pcolor > 2.9 and pcolor < 9) + ; 99 = white area (pcolor > 9 and pcolor <= 9.9) + let affectedArea random 100 + + ; The black area: + if affectedArea >= 0 and affectedArea <= 70 + [ + ; Approx. 30% of these accidents are mortal: + let mortal random 100 >= 70 + if mortal + [ + ; Determine how many crew members are killed: + let kills floor random-normal 1 1.1 + if kills > 0 + [ + ; Kill the affected members: + ask up-to-n-of kills turtles with [pcolor = 0] [ die ] + + ; Statistics: + set numberDeathsByAccidents numberDeathsByAccidents + kills + set numberDeaths numberDeaths + kills + ] + ] + ] + + ; The dark area: + if affectedArea > 70 and affectedArea <= 90 + [ + ; Approx. 15% of these accidents are mortal: + let mortal random 100 >= 85 + if mortal + [ + ; Determine how many crew members are killed: + let kills floor random-normal 0.9 0.8 + if kills > 0 + [ + ; Kill the affected members: + ask up-to-n-of kills turtles with [pcolor = 0] [ die ] + + ; Statistics: + set numberDeathsByAccidents numberDeathsByAccidents + kills + set numberDeaths numberDeaths + kills + ] + ] + ] + + ; The gray area: + if affectedArea > 90 and affectedArea <= 98 + [ + ; Approx. 5% of these accidents are mortal: + let mortal random 100 >= 95 + if mortal + [ + ; Determine how many crew members are killed: + let kills floor random-normal 0.8 0.8 + if kills > 0 + [ + ; Kill the affected members: + ask up-to-n-of kills turtles with [pcolor = 0] [ die ] + + ; Statistics: + set numberDeathsByAccidents numberDeathsByAccidents + kills + set numberDeaths numberDeaths + kills + ] + ] + ] + + ; The white, save area: + if affectedArea > 98 + [ + ; Approx. 1% of these accidents are mortal: + let mortal random 100 > 98 + if mortal + [ + ; Determine how many crew members are killed: + let kills floor random-normal 0.5 0.5 + if kills > 0 + [ + ; Kill the affected members: + ask up-to-n-of kills turtles with [pcolor = 0] [ die ] + + ; Statistics: + set numberDeathsByAccidents numberDeathsByAccidents + kills + set numberDeaths numberDeaths + kills + ] + ] + ] + ] +end + +to checkLife + ask males + [ + ifelse ageYears > ageOfDeathYears + [ + set numberDeaths numberDeaths + 1 + die + ] + [ + ifelse simulateMonthsInsteadOfDays + [ + set ageDays ageDays + 30.42 + ] + [ + set ageDays ageDays + 1 + ] + + set ageYears ageDays / 365 + ] + ] + + ask females + [ + ifelse ageYears > ageOfDeathYears + [ + set numberDeaths numberDeaths + 1 + die + ] + [ + ifelse simulateMonthsInsteadOfDays + [ + set ageDays ageDays + 30.42 + ] + [ + set ageDays ageDays + 1 + ] + + set ageYears ageDays / 365 + ] + ] +end + +to countSex + set numberMales count males + set numberMalesInfertile count males with [ isFertile = false ] + set numberFemales count females + set numberFemalesInfertile count females with [ isFertile = false ] +end + +to determineMeanAges + if any? females + [ + set meanAgeFemalesYears mean [ageYears] of females + ] + + if any? males + [ + set meanAgeMalesYears mean [ageYears] of males + ] + + set meanAgeYears (meanAgeMalesYears + meanAgeFemalesYears) / 2 +end + +to determineYear + set currentYear ticks / 365 +end + +to mate + + ; The maximal number of males: + let maxAllowedMales count males with [ ageYears >= startAgePermittedMating and ageYears <= endAgePermittedMating ] + + ; Dynamic control? + if useDynamicPermittedMating + [ + ; Reached 90% of spaceship's capacity? + if count turtles + count females with [ isPregnant ] > capacity * 0.8 + [ + ; Allow approx. 1/3 to be mate: + set maxAllowedMales floor maxAllowedMales / 3 + ] + + ; Reached 95% of spaceship's capacity? + if count turtles + count females with [ isPregnant ] > capacity * 0.9 + [ + ; Restrict the males down to three: + set maxAllowedMales 3 + ] + + if count turtles + count females with [ isPregnant ] > capacity * 0.95 + [ + ; Restrict the males down to three: + set maxAllowedMales 0 + ] + ] + + ; Start by selecting the allowed number of males in the correct age: + ask up-to-n-of maxAllowedMales males with [ ageYears >= startAgePermittedMating and ageYears <= endAgePermittedMating ] + [ + ; Choose a random partner: + let partner one-of females with [ not isPregnant and ageYears >= startAgePermittedMating and ageYears <= endAgePermittedMating and ageYears < startMenopauseYears] + + ; Both are fertile? + if partner != nobody and isFertile and [isFertile] of partner and [ previousChildren < maxChildren ] of partner + [ + ; Chances of pregnancy after intercourse: 75% + let getsPregnant random 100 > 75 + if getsPregnant + [ + ask partner + [ + set isPregnant true + ] + ] + ] + ] +end + +to-report missionEnds? + if (currentYear > 6300) + [ + clear-output + output-print "The mission was successful:\nsurvivors reached the\ndistant planet." + report true + ] + + if (numberFemales + numberMales > capacity) + [ + clear-output + output-print "Unfortunately, there was too\nmuch offspring, so that the\ncapacity of the spaceship was\nexceeded. The crew has starved,\ndied of thirst or suffocated." + report true + ] + + if (numberFemales = 0 and numberMales = 0) + [ + clear-output + output-print "The mission failed because\nthe crew was extinct." + report true + ] + + report false +end + +to moveAwayFromSpace + + ; Patch color >10 means red, which is the space around the ship. + ; We move all crew members away into the ship: + + while [any? turtles with [ pcolor > 10]] + [ + ask turtles with [ pcolor > 10] + [ + forward random 6 + right random 90 + ] + ] +end + +to protect + ; Protect children: + ask turtles with [ ageYears < 16 and pcolor < 9.8 ] + [ + facexy 0 0 + forward random 3 + ] + + ; Protect pregnant females: + ask females with [ isPregnant and pcolor < 9.8 ] + [ + facexy 0 0 + forward random 4 + ] +end + +to updatePlots + + ; Set the range of the population's plot. We want to see the + ; last year in more detail. Thus, we use this function to + ; move the window of the plot along: + + set-current-plot "Population over time (last 365 days)" + ifelse currentYear < 1.0 + [ + set-plot-x-range 0 365 + ] + [ + set-plot-x-range ceiling ((currentYear * 365) - 365) ceiling (currentYear * 365) + ] + + update-plots +end +@#$#@#$#@ +GRAPHICS-WINDOW +625 +18 +1397 +415 +-1 +-1 +11.76 +1 +10 +1 +1 +1 +0 +0 +0 +1 +-32 +32 +-16 +16 +1 +1 +1 +ticks +30.0 + +SLIDER +9 +31 +224 +64 +initialCrewSize +initialCrewSize +2 +250 +100.0 +2 +1 +people +HORIZONTAL + +BUTTON +249 +21 +337 +67 +NIL +setup +NIL +1 +T +OBSERVER +NIL +NIL +NIL +NIL +1 + +BUTTON +249 +68 +337 +117 +NIL +go +T +1 +T +OBSERVER +NIL +NIL +NIL +NIL +1 + +MONITOR +367 +107 +497 +152 +# males +numberMales +17 +1 +11 + +MONITOR +498 +107 +617 +152 +# females +numberFemales +17 +1 +11 + +PLOT +626 +420 +1396 +570 +Population over time (6300 years) +Days +Number Peoples +0.0 +2299500.0 +0.0 +500.0 +false +true +"" "" +PENS +"females" 1.0 1 -5298144 true "" "plot numberFemales" +"males" 1.0 1 -13345367 true "" "plot numberMales" +"total" 1.0 0 -16777216 true "" "plot numberFemales + numberMales" + +PLOT +625 +577 +1397 +727 +Population over time (last 365 days) +Days +Number Peoples +0.0 +365.0 +0.0 +500.0 +false +true +"" "" +PENS +"females" 1.0 1 -5298144 true "" "plot numberFemales" +"males" 1.0 1 -13345367 true "" "plot numberMales" +"total" 1.0 0 -16777216 true "" "plot numberFemales + numberMales" + +MONITOR +366 +20 +618 +85 +Current Year +currentYear +1 +1 +16 + +SLIDER +8 +247 +225 +280 +maxAgeFemals +maxAgeFemals +0.5 +120 +85.0 +0.1 +1 +years +HORIZONTAL + +SLIDER +8 +281 +225 +314 +maxAgeMales +maxAgeMales +0.5 +120 +79.0 +0.1 +1 +years +HORIZONTAL + +SLIDER +8 +315 +225 +348 +ageStdDeviation +ageStdDeviation +0 +25 +15.0 +1 +1 +years +HORIZONTAL + +MONITOR +368 +266 +548 +311 +mean age crew +meanAgeYears +2 +1 +11 + +MONITOR +498 +199 +617 +244 +mean age femals +meanAgeFemalesYears +2 +1 +11 + +MONITOR +367 +199 +497 +244 +mean age males +meanAgeMalesYears +2 +1 +11 + +TEXTBOX +11 +10 +161 +30 +Initial parameters: +16 +0.0 +1 + +TEXTBOX +9 +109 +159 +127 +Crew's initial age: +11 +0.0 +1 + +SLIDER +8 +127 +223 +160 +initialAgeFemales +initialAgeFemales +1 +80 +20.0 +1 +1 +years +HORIZONTAL + +SLIDER +8 +161 +223 +194 +initialAgeMales +initialAgeMales +1 +80 +20.0 +1 +1 +years +HORIZONTAL + +SLIDER +8 +194 +223 +227 +initialAgeStdDeviation +initialAgeStdDeviation +0 +36 +22.0 +1 +1 +years +HORIZONTAL + +TEXTBOX +10 +231 +160 +249 +Max. age: +11 +0.0 +1 + +TEXTBOX +371 +93 +491 +111 +Males' statistics: +11 +0.0 +1 + +TEXTBOX +503 +93 +612 +111 +Females' statistics: +11 +0.0 +1 + +TEXTBOX +11 +366 +161 +384 +Crew's bio parameters: +11 +0.0 +1 + +SLIDER +9 +381 +224 +414 +infertilityFemales +infertilityFemales +0 +100 +10.0 +1 +1 +% +HORIZONTAL + +SLIDER +9 +415 +224 +448 +infertilityMales +infertilityMales +0 +100 +15.0 +1 +1 +% +HORIZONTAL + +MONITOR +498 +153 +617 +198 +# females (infertile) +numberFemalesInfertile +0 +1 +11 + +MONITOR +367 +153 +497 +198 +# males (infertile) +numberMalesInfertile +0 +1 +11 + +SLIDER +9 +449 +224 +482 +maxChildrenPerFemale +maxChildrenPerFemale +1 +10 +2.0 +0.1 +1 +children +HORIZONTAL + +SLIDER +9 +483 +224 +516 +maxChildrenStdDeviation +maxChildrenStdDeviation +0 +2 +0.5 +0.1 +1 +NIL +HORIZONTAL + +OUTPUT +247 +598 +603 +737 +16 + +TEXTBOX +249 +552 +605 +636 +After the mission ended, the reason why this was the case is given here: +16 +0.0 +1 + +MONITOR +368 +313 +548 +358 +# accidents +numberAccidents +17 +1 +11 + +MONITOR +369 +360 +548 +405 +# deaths caused by accidents +numberDeathsByAccidents +17 +1 +11 + +TEXTBOX +369 +249 +519 +267 +Crew's statistics: +11 +0.0 +1 + +SLIDER +8 +647 +221 +680 +meanAgeMenopause +meanAgeMenopause +40.0 +50.0 +48.81 +0.5 +1 +years +HORIZONTAL + +TEXTBOX +10 +630 +160 +648 +Females's bio parameters: +11 +0.0 +1 + +SLIDER +8 +683 +222 +716 +ageMenopauseStdDeviation +ageMenopauseStdDeviation +1 +6 +3.9 +0.1 +1 +years +HORIZONTAL + +SLIDER +9 +517 +224 +550 +startAgePermittedMating +startAgePermittedMating +16 +50 +35.0 +1 +1 +years +HORIZONTAL + +SLIDER +9 +551 +224 +584 +endAgePermittedMating +endAgePermittedMating +20 +100 +40.0 +1 +1 +years +HORIZONTAL + +MONITOR +369 +406 +548 +451 +# deaths +numberDeaths +17 +1 +11 + +MONITOR +369 +499 +439 +544 +# births +numberBirths +17 +1 +11 + +MONITOR +440 +499 +502 +544 +# females +numberBirthsFemales +17 +1 +11 + +MONITOR +503 +499 +566 +544 +# males +numberBirthsMales +17 +1 +11 + +MONITOR +369 +453 +548 +498 +# pregnancies +count females with [ isPregnant ] +17 +1 +11 + +SWITCH +9 +584 +224 +617 +useDynamicPermittedMating +useDynamicPermittedMating +0 +1 +-1000 + +SWITCH +9 +67 +224 +100 +simulateMonthsInsteadOfDays +simulateMonthsInsteadOfDays +0 +1 +-1000 + +@#$#@#$#@ +## Model Description + +### Introduction + +This model is an attempt to recreate the experiment of Frédéric Marin and Camille Beluffi from 2018 [1] by means of ABM. The experiment deals with the questions of how to choose the initial crew of a spacecraft and how to regulate its reproduction in order to survive a 6,300 year intergalactic journey from Earth to the distant planet Proxima Centauri b. + +### Scope +The model considers the number of people, their sex and the simplified biological parameters relevant for reproduction. In addition and in contrast to the original experiment, the risk of different tasks in the spaceship is considered. Some activities, e.g. at the technical facilities, are associated with a higher accident risk. + +Essential resources such as water, food and medicine, etc. are explicitly not taken into account. The basic assumption is that the spaceship offers enough resources for everyone or can produce them during the journey. + +The settlement of Proxima Centauri b is also not taken into account. The experiment is successful if survivors arrive on the distant planet. + +## Running the Model + +### Dependencies +The model needs the representation of the spaceship in order to execute the setup function. Therefore the `Spaceship.png` file must be located in the directory of the `Survival on Space Flight.nlogo` file. This file is read in automatically. Further manual steps are therefore not necessary. + +### Time Scale +The model simulates a day of travel as a tick. In order to simulate the 6,300 years i.e. 2,299,500 ticks, technical challenges arise. Among others, the standard memory allocated for NetLogo is not sufficient to simulate this number of years on a daily basis. This problem is due to the fact that NetLogo is a Java program. One solution is to allocate more memory to the program. + +Another solution is the parameter `simulateMonthsInsteadOfDays` in the user interface. If this parameter is enabled, the simulation calculates 30.42 days for each tick instead of one day per tick. + +Thus, the parameter `simulateMonthsInsteadOfDays` is enabled by default. + +### Necessary Time for a Run i.e. a Mission +Several test runs with four CPU cores have shown that with default parameters approx. 10 minutes are needed for a mission or 6,300 years. + +## Environment + +The environment used is a two-dimensional representation of a spaceship. The top view from above was chosen as viewpoint. The spaceship is divided into different areas. These areas are represented by grey shades. The darker an area is, the higher is the accident risk. The brighter an area is, the lower is the accident risk. + +These areas with the positions of the agents model e.g. different professions and tasks. Work on the engines or other mechanical facilities entails a higher accident risk. Work on the IT infrastructure, in resource extraction (e.g. food) or in the preparation of food is potentially less dangerous. + +The spaceship is surrounded by space, which is represented in the model as red color. Space is deadly. + +## Agents + +### Femals + +#### Properties +- `ageOfDeathYears`: At what age will the agent die (in years)? + +- `ageYears`: The current age of the agent (in years). + +- `ageDays`: The current age of the agent (in days). + +- `isFertile`: Is this agent fertile and can produce offspring? + +- `maxChildren`: What is the maximum number of children this female can have? + +- `previousChildren`: How many children has this female given birth to? + +- `startMenopauseYears`: At what age (in years) does menopause begin for this female? + +- `isPregnant`: Is this female currently pregnant? + +- `pregnantSinceDays`: If this female is currently pregnant, since how many days? + +#### Behaviour / Actions +- **Movement:** In every tick a female moves randomly in the spaceship as long as she is older than 15 years and not pregnant. Pregnant females and females younger than 16 years only stay in the middle of the spacecraft so that they are protected from lethal accidents. + +- **Pregnancy:** If a female is pregnant, the pregnancy progresses. If a female has been pregnant for at least 270 days, her pregnancy gets terminated and at least one offspring is born. There is a 1% probability that twins will be born. The probability that the offspring is male or female is 50%. + +- **Accidents:** A female might be involved in an accident. The probability depends on the position in the spaceship. Not every accident is lethal. Every day, the probability of an accident occurrence is 1%. When an accident happens, it happens 70% in a black area, 20% in a dark area, 8% in a gray area, and 1% in the white area. The accidents in the black area end in 30%, in the dark area in 15%, in the grey area in 5%, and in the white area in 1% of the cases deadly. + +- **Reproduction:** A female can reproduce. All males and females that are within the allowed age of reproduction try to mate. The couples are formed randomly. If one of the two partners is not fertile, no pregnancy occurs. If both partners are fertile, there is a 75% probability of pregnancy after intercourse. + +- **Death:** A female can die. Either due to age or an accident. + +### Males + +#### Properties + +- `ageOfDeathYears`: At what age will the agent die (in years)? + +- `ageYears`: The current age of the agent (in years). + +- `ageDays`: The current age of the agent (in days). + +- `isFertile`: Is this agent fertile and can produce offspring? + + +#### Behaviour / Actions +- **Movement:** In every tick a male moves randomly in the spaceship as long as he is older than 15 years. Males younger than 16 years only stay in the middle of the spacecraft so that they are protected from lethal accidents. + +- **Accidents:** A male might be involved in an accident. The probability depends on the position in the spaceship. Not every accident is lethal. Every day, the probability of an accident occurrence is 1%. When an accident happens, it happens 70% in a black area, 20% in a dark area, 8% in a gray area, and 1% in the white area. The accidents in the black area end in 30%, in the dark area in 15%, in the grey area in 5%, and in the white area in 1% of the cases deadly. + +- **Reproduction:** A male can reproduce. All males and females that are within the allowed age of reproduction try to mate. The couples are formed randomly. If one of the two partners is not fertile, no pregnancy occurs. If both partners are fertile, there is a 75% probability of pregnancy after intercourse. + +- **Death:** A male can die. Either due to age or an accident. + +## Order of Events + +### Function: Setup + +1. **Reset:** Reset i.e. clear the entire simulation. + +1. **Pens:** Initialize all pens of both diagrams. This is necessary so that the user can choose between a simulation on a daily or monthly basis. + +1. **Capacity:** Define the capacity of the spaceship so that a maximum of 500 people can live on it. + +1. **Import representation:** Import the two-dimensional representation of the spaceship from the `Spaceship.png` file. This will also import the colors that indicate which risk zones exist where in the spaceship. + +1. **Create males:** Creates the first half of the crew (males): Set males' color to blue. Define the date of death and the age of all males as the normal distribution with the parameters selected from the user interface. Define all males as fertile (all males were examined before the mission so that initially only fertile members are present). + +1. **Create females:** Creates the second half of the crew (females): Set females' color to red. Define the date of death and the age of all females as the normal distribution with the parameters selected from the user interface. Define all females as fertile (all females were examined before the mission so that initially only fertile members are present). Determine how many children a female can have and when her menopause begins, both as normal distribution with the parameters selected in the user interface. Define that all females are not pregnant. + +1. **Fixing crew's age:** Depending on the parameters selected in the user interface, it might happen that some crew members have a negative age due to the normal distribution of age. Therefore, this step ensures that the members affected by this effect receive an age between 0 and 365 days. + +1. **Random position:** Assign a random position in the spaceship to each crew member. + +1. **Not in space:** Make sure no crew member was randomly positioned outside the spacecraft. + +1. **Count sex:** Count how many males and females currently exist and how many are fertile or infertile. This step is necessary to subsequently calculate the initial infertility as a distribution over the crew. + +1. **Determine mean age:** Calculate the average age of the crew. + +1. **Crews' infertility:** Randomly distribute the infertility status to the crew according to the parameters configured in the user interface. + +1. **Unfertile women cannot have children:** This step ensures that women who are infertile cannot have children. + +1. **Count sex:** Count how many males and females currently exist and how many are fertile or infertile. This step will now be performed again after the infertility status has been correctly distributed across the crew. This will give us statistics about the actual infertility at the start time of the mission. + +1. **Reset ticks:** The ticks of the simulation are reset. + +### Function Go +At each tick of the simulation the following events take place. Reminder: A tick simulates one day of the intergalactic journey or approx. one month (depending on your choice in the user interface). + +1. **Check life:** The first step is to check if and how many crew members die today. Everyone whose lifespan has expired is marked dead and is no longer part of the simulation. All members who do not die naturally today will become one day or month older. + +1. **Check if accidents occur:** It will be checked whether there will be an accident on the spaceship today. The statistical probability of an accident is 1%. If this probability applies, an accident occurs. It is also checked in which part of the spaceship the accident occurs. When an accident happens, it happens 70% in a black area, 20% in a dark area, 8% in a gray area, and 1% in the white area. The accidents in the black area end in 30%, in the dark area in 15%, in the grey area in 5%, and in the white area in 1% of the cases deadly. Depending on whether and where an accident occurs, appropriate crew members from the affected part of the ship are randomly selected and marked as dead. These members are then no longer part of the simulation. + +1. **Count sex:** Count how many males and females currently exist and how many are fertile or infertile. This will update the mission's statistic after all natural and unnatural deaths have been addressed. + +1. **Mission ended?** It will be checked if the mission has been completed. This is the case when the mission year 6300 has been reached. The survivors of the mission can then colonize the distant planet. If the number of crew members is above the capacity limit, the mission also ends: In this case the members starve, die of thirst or suffocate because the resources are not sufficient. The mission can also end when all humans on the ship are extinct. + +1. **Male actions:** The actions of the males are limited to the fact that their agents move randomly in the spaceship. + +1. **Female actions:** The females move first randomly in the spaceship. With all females that are pregnant, the pregnancy progresses by one or 30 day(s). Afterwards it is determined whether and how many births there will be today. The pregnancy of the affected females is terminated and the birth is initiated. For each birth it is statistically determined whether there will be twins. The probability of this is 1%. Then it is decided whether a male or female will be born. The probability is the same for both sexes. For each newborn the age is set to zero and the other parameters are assigned as in the setup (day of death, fertility, number of children, menopause, etc.) The newborns are added to the crew. + +1. **Mating:** In this step it is first determined how many males are at the permitted age for reproduction. This number indicates the maximum number of theoretically possible reproductions for that day. If the option for dynamic control of allowed reproduction is enabled in the user interface, this number is dynamically reduced if necessary to prevent overpopulation on the spacecraft. If the capacity limit is reached to 80%, only 30% of the males are allowed to mate with a female. If the capacity limit was reached to 90%, only three males are allowed to mate with a female. If the capacity limit is already reached to 95% or more, no reproduction at all is permitted on this day. The number of males determined in this way is selected randomly. The selected males randomly select a suitable female. Suitable females are not yet pregnant, are in the age range for permitted reproduction and are younger than the time of menopause. Now it is checked whether both partners are fertile and the female has not yet exceeded her child limit. If all conditions are met, intercourse occurs. After that there is a 75% probability that the female has become pregnant. If this probability is fulfilled, the female is marked as pregnant. + +1. **Protection:** This step ensures that all children younger than 17 years and all pregnant females are in the safest area of the spacecraft. This measure ensures that the highest mission priority is maintained (crew survival). + +1. **Not in space:** Make sure no crew member was randomly positioned outside the spacecraft. + +1. **Count sex:** Count how many males and females currently exist and how many are fertile or infertile. This will update the statistics after all births due for that day have been handled. + +1. **Determine mean age:** Calculate the average age of the crew. + +1. **Determine year:** Calculate the current mission year. + +1. **Update plots:** The "*Population over time (last 365 days)*" diagram is updated. This cannot be done automatically because, so to speak, the window of the graph has to move, so that the last 365 days are always visible. + +1. **Time advancement:** Depending on the configuration, the simulation progresses by one day or one month. + +## User Interface +The user interface is divided into six parts. For each part there is subsequently a separate section so that the information is better arranged. + +### Initial parameters + +- `initialCrewSize` The number of crew members to the mission's start. **Default: 100** + +- `simulateMonthsInsteadOfDays` Should one day or one month be simulated per tick of the simulation? **Default: On = Months** + +### Crew's initial age + +- `initialAgeFemales` The age of females at the beginning of the mission. **Default: 20 years** + +- `initialAgeMales` The age of males at the beginning of the mission. **Default: 20 years** + +- `initialAgeStdDeviation` The age of the crew is a normal distribution. This is its standard deviation. **Default: 22 years** + +### Max. age + +- `maxAgeFemals` The maximum age of females. **Default: 85 years** + +- `maxAgeMales` The maximum age of males. **Default: 79 years** + +- `ageStdDeviation` The maximum age is a normal distribution. This is its standard deviation. **Default: 15 years** + +### Crew's bio parameters + +- `infertilityFemales` The infertility of females. **Default: 10%** + +- `infertilityMales` The infertility of males. **Default: 15%** + +- `maxChildrenPerFemale` The maximum number of children a woman can give birth to. **Default: 2 children** + +- `maxChildrenStdDeviation` The maximum number of children per female is a normal distribution. This is its standard deviation. **Default: 0.5 children** + +- `startAgePermittedMating` The age at which reproduction is allowed on this mission. **Default: 35 years** + +- `endAgePermittedMating` The age up to which reproduction is permitted during this mission. **Default: 40 years** + +- `useDynamicPermittedMating` Enables or disables the dynamic control of reproduction. Might prevents overpopulation. **Default: On** + +### Females's bio parameters + +- `meanAgeMenopause` The age at which the female menopause begins. Frédéric Marin and Camille Beluffi indicate 45 years as mean age, cf. [1]. A standard deviation is missing in their paper. I therefore use the default values from Magurský, Mesko, and Sokolík from 1975, cf. [2]. **Default: 48.81 years** + +- `ageMenopauseStdDeviation` The age at which female menopause begins is a normal distribution. This is its standard deviation. As mentioned before, Frédéric Marin and Camille Beluffi [1] do not mention any standard deviation. I therefore use the information from Magurský, Mesko, and Sokolík [2]. **Default: 3.9 years** + +### Statistics + +- *Current year*: Indicates the current year of the mission. + +- *Males' statistics* and *Females' statistics*: Indicates the total number of males and females, their average age, and the number of infertile individuals. + +- *Crew's statistics*: Indicates the average age of the entire crew, how many accidents there were, how many deadly accidents and how many deaths overall. The number of pregnancies, the total number of births and the number of males and females born are also specified. + +- *Population over time (6300 years)*: A time series over the duration of the entire mission, i.e. 6300 years. The time series indicates the size of the population. The total population, as well as the number of males and females. + +- *Population over time (last 365 days)*: A time series of the population size over the last 365 days. The total population as well as the number of males and females are given. + +## Things to Notice +This model has a lot of parameters, so a lot of interesting insights can be obtained. A first example is given here: It seems to be very difficult to find a stable combination of parameters so that the mission is guaranteed to be successful (even if the experiment is repeated several times). At least, without the dynamic control of propagation. I have not succeeded so far. + +When the dynamic control of reproduction is activated, success can be guaranteed with two allowed children per female. However, this dynamic control is a significant cut in the freedom of the crew. From an ethical point of view it does not seem to be acceptable. + +It would lead to a situation in which only a few selected people would be allowed to reproduce, which could lead to corruption and crime. The crew might tend to eliminate older crew members in order to escape the strict rules of dynamic control, etc. Therefore, it seems useful to find a parameter set under which dynamic control of reproduction is not necessary. + +## Citation and References + +### Cite this Model +This model can be cited in its entirety by citing the repository: "Sommer, Thorsten, 2019. Simulation of long-distance space flight. DOI: XXXX. Source Code: https://github.com/SommerEngineering/Simulation-of-long-distance-space-flight" + +The procedure of the simulation can be cited dedicated: "Sommer, Thorsten, 2019. Simulation of 6300 year intergalactic journey. DOI: [dx.doi.org/10.17504/protocols.io.6zshf6e](https://dx.doi.org/10.17504/protocols.io.6zshf6e). + +### References + +- [1] https://arxiv.org/abs/1806.03856 + +- [2] https://www.ncbi.nlm.nih.gov/pubmed/4380 +@#$#@#$#@ +default +true +0 +Polygon -7500403 true true 150 5 40 250 150 205 260 250 + +airplane +true +0 +Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 + +arrow +true +0 +Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 + +box +false +0 +Polygon -7500403 true true 150 285 285 225 285 75 150 135 +Polygon -7500403 true true 150 135 15 75 150 15 285 75 +Polygon -7500403 true true 15 75 15 225 150 285 150 135 +Line -16777216 false 150 285 150 135 +Line -16777216 false 150 135 15 75 +Line -16777216 false 150 135 285 75 + +bug +true +0 +Circle -7500403 true true 96 182 108 +Circle -7500403 true true 110 127 80 +Circle -7500403 true true 110 75 80 +Line -7500403 true 150 100 80 30 +Line -7500403 true 150 100 220 30 + +butterfly +true +0 +Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 +Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 +Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 +Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 +Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 +Circle -16777216 true false 135 90 30 +Line -16777216 false 150 105 195 60 +Line -16777216 false 150 105 105 60 + +car +false +0 +Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 +Circle -16777216 true false 180 180 90 +Circle -16777216 true false 30 180 90 +Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 +Circle -7500403 true true 47 195 58 +Circle -7500403 true true 195 195 58 + +circle +false +0 +Circle -7500403 true true 0 0 300 + +circle 2 +false +0 +Circle -7500403 true true 0 0 300 +Circle -16777216 true false 30 30 240 + +cow +false +0 +Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 +Polygon -7500403 true true 73 210 86 251 62 249 48 208 +Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 + +cylinder +false +0 +Circle -7500403 true true 0 0 300 + +dot +false +0 +Circle -7500403 true true 90 90 120 + +face happy +false +0 +Circle -7500403 true true 8 8 285 +Circle -16777216 true false 60 75 60 +Circle -16777216 true false 180 75 60 +Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 + +face neutral +false +0 +Circle -7500403 true true 8 7 285 +Circle -16777216 true false 60 75 60 +Circle -16777216 true false 180 75 60 +Rectangle -16777216 true false 60 195 240 225 + +face sad +false +0 +Circle -7500403 true true 8 8 285 +Circle -16777216 true false 60 75 60 +Circle -16777216 true false 180 75 60 +Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 + +fish +false +0 +Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 +Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 +Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 +Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 +Circle -16777216 true false 215 106 30 + +flag +false +0 +Rectangle -7500403 true true 60 15 75 300 +Polygon -7500403 true true 90 150 270 90 90 30 +Line -7500403 true 75 135 90 135 +Line -7500403 true 75 45 90 45 + +flower +false +0 +Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 +Circle -7500403 true true 85 132 38 +Circle -7500403 true true 130 147 38 +Circle -7500403 true true 192 85 38 +Circle -7500403 true true 85 40 38 +Circle -7500403 true true 177 40 38 +Circle -7500403 true true 177 132 38 +Circle -7500403 true true 70 85 38 +Circle -7500403 true true 130 25 38 +Circle -7500403 true true 96 51 108 +Circle -16777216 true false 113 68 74 +Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 +Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 + +house +false +0 +Rectangle -7500403 true true 45 120 255 285 +Rectangle -16777216 true false 120 210 180 285 +Polygon -7500403 true true 15 120 150 15 285 120 +Line -16777216 false 30 120 270 120 + +leaf +false +0 +Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 +Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 + +line +true +0 +Line -7500403 true 150 0 150 300 + +line half +true +0 +Line -7500403 true 150 0 150 150 + +pentagon +false +0 +Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 + +person +false +0 +Circle -7500403 true true 110 5 80 +Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 +Rectangle -7500403 true true 127 79 172 94 +Polygon -7500403 true true 195 90 240 150 225 180 165 105 +Polygon -7500403 true true 105 90 60 150 75 180 135 105 + +plant +false +0 +Rectangle -7500403 true true 135 90 165 300 +Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 +Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 +Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 +Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 +Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 +Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 +Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 + +sheep +false +15 +Circle -1 true true 203 65 88 +Circle -1 true true 70 65 162 +Circle -1 true true 150 105 120 +Polygon -7500403 true false 218 120 240 165 255 165 278 120 +Circle -7500403 true false 214 72 67 +Rectangle -1 true true 164 223 179 298 +Polygon -1 true true 45 285 30 285 30 240 15 195 45 210 +Circle -1 true true 3 83 150 +Rectangle -1 true true 65 221 80 296 +Polygon -1 true true 195 285 210 285 210 240 240 210 195 210 +Polygon -7500403 true false 276 85 285 105 302 99 294 83 +Polygon -7500403 true false 219 85 210 105 193 99 201 83 + +square +false +0 +Rectangle -7500403 true true 30 30 270 270 + +square 2 +false +0 +Rectangle -7500403 true true 30 30 270 270 +Rectangle -16777216 true false 60 60 240 240 + +star +false +0 +Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 + +target +false +0 +Circle -7500403 true true 0 0 300 +Circle -16777216 true false 30 30 240 +Circle -7500403 true true 60 60 180 +Circle -16777216 true false 90 90 120 +Circle -7500403 true true 120 120 60 + +tree +false +0 +Circle -7500403 true true 118 3 94 +Rectangle -6459832 true false 120 195 180 300 +Circle -7500403 true true 65 21 108 +Circle -7500403 true true 116 41 127 +Circle -7500403 true true 45 90 120 +Circle -7500403 true true 104 74 152 + +triangle +false +0 +Polygon -7500403 true true 150 30 15 255 285 255 + +triangle 2 +false +0 +Polygon -7500403 true true 150 30 15 255 285 255 +Polygon -16777216 true false 151 99 225 223 75 224 + +truck +false +0 +Rectangle -7500403 true true 4 45 195 187 +Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 +Rectangle -1 true false 195 60 195 105 +Polygon -16777216 true false 238 112 252 141 219 141 218 112 +Circle -16777216 true false 234 174 42 +Rectangle -7500403 true true 181 185 214 194 +Circle -16777216 true false 144 174 42 +Circle -16777216 true false 24 174 42 +Circle -7500403 false true 24 174 42 +Circle -7500403 false true 144 174 42 +Circle -7500403 false true 234 174 42 + +turtle +true +0 +Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 +Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 +Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 +Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 +Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 +Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 + +wheel +false +0 +Circle -7500403 true true 3 3 294 +Circle -16777216 true false 30 30 240 +Line -7500403 true 150 285 150 15 +Line -7500403 true 15 150 285 150 +Circle -7500403 true true 120 120 60 +Line -7500403 true 216 40 79 269 +Line -7500403 true 40 84 269 221 +Line -7500403 true 40 216 269 79 +Line -7500403 true 84 40 221 269 + +wolf +false +0 +Polygon -16777216 true false 253 133 245 131 245 133 +Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105 +Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113 + +x +false +0 +Polygon -7500403 true true 270 75 225 30 30 225 75 270 +Polygon -7500403 true true 30 75 75 30 270 225 225 270 +@#$#@#$#@ +NetLogo 6.1.0 +@#$#@#$#@ +@#$#@#$#@ +@#$#@#$#@ + + + setup + go + count turtles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@#$#@#$#@ +@#$#@#$#@ +default +0.0 +-0.2 0 0.0 1.0 +0.0 1 1.0 0.0 +0.2 0 0.0 1.0 +link direction +true +0 +Line -7500403 true 150 150 90 180 +Line -7500403 true 150 150 210 180 +@#$#@#$#@ +0 +@#$#@#$#@ diff --git a/Spaceship.afphoto b/Spaceship.afphoto new file mode 100644 index 0000000000000000000000000000000000000000..bf524640209f279ae5f319b29f880bfee55b207f GIT binary patch literal 65105 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 C|A_|x literal 0 HcmV?d00001 diff --git a/Spaceship.png b/Spaceship.png new file mode 100644 index 0000000000000000000000000000000000000000..84ade29b91e0968fb12523ff3c475511608aafea GIT binary patch literal 16397 zcmajG1z1#H+b_I9&>T^77a%=zq@DvqfH2?rz4*<|OAn4#PF{TEe z004u+MoZ6KPeobG+{u9pVd3-=$@R*?8Egjtaj93%2y;86JIza^m5rkW-C=7d9gU5J z1f8y+3Xh7j4AR<0!N(P;>7%M;?qg>zYC$I@i7oz03?$%ybVtyEdoDL8qspP9x*wilhORS5#D#n}?5^kB<}V!RhAh=#F^B>F7p(N8(>JWRY&>t~So@HcpN- zcQg?%ojlwn=;*+9ntu~VzOwmG>W*&zUOu=H+;=V9yj(oo|FyfjjphHL`(4Zb)*al1 z|CsuJBmN5E{6BS8QTe}jcX0S`vvG5m^90xP@4fjSKj5b2?TqBsK)N}3xSAv7Jduv> z^#3gAZh2zrHm{KOda^bSNJlqtlO*VbczFJQt@{6^mH*$ZcWV_>bU;`kb!{x%t^ae_ ze>Ny19j)$K{@akdY1n(*9f!7~4LEVWf4=q4Aie)=lb{pk0~z7&kp5}X{~w#ctrb&o zvaqrAmPNQDL0UY#qMSS;oV+|*d^}=&qGJ4l>^yv8|DN$by+OvaK)56RU;XdchejM6 zp`s$DVB_ZQuz7fY8{sLHT98!#`5wUp}?EfwLeEcuKc{0A3!?<7_Fj! zft^HxMeO&_`lP8R_{?w>Iw?|1!=m__v?x;;@}`69xNJPEHBTp(yEU4i zUF;(_-sSBF`V_v$LWX6&*t{Iij`%X9Y9UtdtNYEAcvW3>9JriS=if{o_nIU6<|5=6 z>G>@jlk1 z#`lH_j@NRXPRPfrjkV^f57M;|o6Uvk!U3b?`E^s%p0-`rZOGO!d|ZS-HoMa!j55F!bvX3z3f+&RR{-#0w}Oy-z#-(cdaxmgsOWrP5 z3chc8k9e)YBIj)%-xL8^fN8@-Nbsq3>aH1PXLFL*rfgZ~Hc20}rb(PT}70^hh&2RyT4 ze$u4GM7S|AuBY*yf4^rgMM?Lfu$Y_7JgqvQI)HzS)Lfa5iIFhk{nqQ^nG)7T$HF2% z{mTOQje}{)INB}iZN5xj@3F`$3UPd@2hsfL{c91Q(>Py=zP6-Ih`7!y|82U0%yeZX zT_3+y+{fr6tu)eByk&-s(e;^wv@y+#6Eyga)0kLac9B|1`P#GwPuT0htF4rhih5hO zI+>(=zW-Ok3QY+7IuemsogSG^I1ix;ne)yWe&o!OLNWwq+w3~1cM^vvL zH?15_o3rJMcyofwoFM%8%uncjsx~CpBBvTsGirHKn|aLv8PbgIUq23|_M6}LjMT&c zdy2=VbkuPrvd*jJ) z!i+C7qMgmn#dFO(xQ7P^I_y7J9smFjx{wOko{N~AwLLpnYK{M5LK@<<(jk}{0girF z=^S1+tB;BbH>A*xQHW!RGH*oP9hB1mF>D(~(eJd}mW`PcRW@fgLIi$}lys3I+hevU z9C}~+=wRvTg^kph=+@uss|yzj>gaxs;i!IdI8jv6J&;6swLa<#-dPYY{3(1ubj4n1 z@9Zn@12_?9l2Q$&@W;{VX-znh#!!EMKehi~-r5hp(3m3)-N(z zl)I@mq%Va3q~TdD)U~fh(|nqLkNuC@zXSWri(hU$Ys zJ!`f&o$#ZL^Y^8tr98OC2b6M?w)J5-Bo_u;NdjC$qNbH|-Wglo_^nXfXQUx}XFjzH zy)G2}E<|$SpJ9hrZg{)xtTR~o{7QucK3AoUA-hl7XTN+jxHJ;8RqB0(b6ysNO&(DE z!hGk^wHopgLaX($qF3@wpC!L`u*xB0jDeQF;kkwf`883WWT2nq`^-y%7a{3B&pevp ztY^6zL$kIXUS7IHa*4>9pvgfw_|J>0(9qEFOeyfFJYDssQ$)P$It>+Arv(_53f7k% z^qr@9s5aU`f>uXA3UdkL2X(QeXvJCw#kl#oxy2XkL`&Ul$1wrr?{l^{H#aXY4a$#N z+V381xf#o(A}I&F=NC-HQby!uaRJ&Ma;zxFuGvyEU;3xTrX$vBbK=2%ei>Ucg>y-G zeJ*WAT&C?lXQRR^;6bStAmBuuS4)RC*DJTaKO+PR7AR=Vm1i6ojVkB3HqD?IA4mH< zEs5mx6N^h8%f-gY1D65V8~gj^YI&*OeNBzxww)+V|AhKQN>U zsZZaNhR!q52H?!HvY)k=vaU%^G{!wGuiw-MeprW^R2#)2+2sh zn??0#wm-u73?lU zi)uA@G+v9a)iuV#V^Y`=)HZzyC#r+Bzmh+DJrfYf>0*$he4LXsjHKw#d*>?&1-3?% zOCLIkJ!i>7SPO*Zfb&XSWKgUz;!?YjmxEK_hiVL;?aqRt^|pWZeWYq!UTmQ`sMFK`s742p?{@RVzL|VuB1k%_NWvdcEuiuNJMJyJtC&nh zxtJv-0Ccg8%!Jr9=!Nhn4rMAUU~d?U1*W;Dwe77rt7j&Sn~4wsJf>zuV=ZXHmP;*x z60iMcH!@yG5y{04Z+f{NWt+lAE}w(eP2eT}HRdb&alT(jQYMM-_qX0O8@1rt6U$|{ zy`IRKp0&kX;RS#!^<}i;dfXo8%P8lqJ^hgCUpKFE9Ir5pX;A7{xASf+-bto`Ipfo* zsimdtuhc<<6ZCh$sc{iBCrgfn2E#02I;FE`XM&sqPI$+P25xQuFB9sOkI&`r44YcQ|Yn?PwPYL*^XJaO?GvZW-S%~hj_?hg%p;3}|N zWJSbfRlCsUeR6-10d#y=!oGuM>h@3Ot+&6wzc`iBp5wp~X!svKe3&Wa?{{_1iTO7h z%3h}$dXqm*MSb_!`1-N3KKA8Mj1!4cRL@Ufqr#E)pJGf9p^RJ?iCSj~b6EXV9odWUvK$;Vn)j<$HO$*7KkqqacK1 zcuK(c;vjugQ5XP>$T!S3S`Ry})X&3n=YdjJQTQV3sbE*QcklZhq2GEqcfc)`y`oa3W!0;dk5+0Kg{K zdi~~2n{%Z=?)1n`LseTDXz~heE^n@{&Opzs(x#c9-1_U`g?GlZhH=v)OaKUmzU*8% zytu07N5|C*t}2+WS#tEhT3q2u8s6Kp`%1%t8mQqIu3-uDI}SHB>jas2dm@0$@2LL$tnHjm)BnPXfk(1X;>zK_hJOp=G#QO2` zP=1|clOPXjL@Pq&SF238f*~U);lOFIOVk7%s=QA=JVzaW`yYRrDOe@3OeVL%7v*sg z!#D0$76H0$Jks`y%w@27{I3E&LR6ry1*GA{RZsX@*9D6Xkj872m>H0ggL}cl+JtnU zY0)d7tdmU6k!?`9^X0aKnGnfh*0hrs+bo!-1rvj_=~qPZ`o5MCteHi-6g8%MhZ;_E z-MiY`QX=?g?h5J8d@2s2EOVdFTyp{FL{n>DYTQw%o#&(mIad~F4hNmA?-ml5YSBI zY=3m>_;a+@|9h?Z>W}3hZbm`^UTzdIm zc$sgZ*X0FTr5t=o^D57oawwnnY&NC5%8h|_2*~;0wfbL8?)_l0!_;Hmk20~Ty9^_;BsC? zjVfC85})ybz{Xqoiy=<-gkQz4O|>RSor-UY#(l&zi_BV-3~gL?4}Yl7K5c;iO@6C`7&AA?T02MA zUcUCrEU-yLs`v621j-GF9Tr?f<$^Iyl|lJ(`)e!Q7A>&_oiE0_0b+%zgcRM`9S=XW zn2wZB1o?nYoak1iY3I%PqLcsa)k<_a4+<^qdm@I09A+In%^fu_T0ziH_o^ir0_>W;GDnsQz`IcB-fJStP06iL7FV zD8I?iYAWxOvI5R}HgN#w5PP8~_K8xu5k2oWlhPY07k=7Qz|_825_Gc*16?=*Z33QL zUCtwx)><}*_OCm&@4;vjeat(K0pzMv7~wddL#X^~1OG}xRKu~_*Q!7?4d9s<^!k)z zEh6|J(7RS~6w23EC-Fw;ZM2T}XBTnn1_0QC6c~)fS%xF^tj78LCL1+o-KW(((Et;X zoln>!v6hR>Vej{gb)SUVy|98}Xbf=-S2cs_glCTpNtsHg_lsRLAa@?xyKndLKMDd} zS=*`@4tPNayiLQLU7`q_5j)~;tTBQ|f^zXpjlodwjHd~;xKLdkKyW^UgMuEi}Z zLplYEq`gCRTTySVUTB+8mS5y5&FVv9ktx55B_?|2rDLC@TM}m{FXM-4U>0e(70D9G zQA@r7LxP$|MnQ=gQ&!q;V+FszivMEqTI=I)rzp8(7rrEPdeHtH_J=}Oy2(CiX5-W5 zbecByTOT@)j!CnO0vw-Lm7E8JFC#0`!5HRb3boH@Y42zP5~7al|kOa zv3rJQCW{l+!^9sbM0`T^vipFuWyFsl0+wYvql#YioUUK zC`Q4BQ@G@0&DNA=(w0RHGmaN&$n5naARzqZw-za6cnq)5LEKlw>VX?dqv4z6BsJIP z#v2M*l6#O1NQ%N36?mX;dFagU|w)|Z~Zk0IC-7J){qUag{qF;e(G|1 zcgh_`XAn`M3)j9bxoyd6dx}k)(D5sbzmH!e?>0F~YAj-V9AR16q@=ntQs73YqFp6< zuMV@rhp9Xum;CbRsA_Rvb$M*=W9sk|r(S(YEv!YtRO7P8t_B3Vt?MTIJv?ttHu36r zlGOPO%C!a6n&hRN2VbarE*5EMi z>=s!>%0rBdJf4J7zmOp+`w+WD@`s}E^EC;JqFH#GBCA)camJRPa98~+Uq8+J*R*8( ziF~zkuk5cnn63(z_=)A!))~63=WLy;jogdg?PYGQA`Vn3^ zH>WWC@jQ`fQQQQ7bQ7`|jCi^3P&CJzDAZ3>wA8ur>qRGkx!rWM3|M1tiR1S0;D+Z6 z)Yw;<;piudX6$e|EqmB~hw1SbI%6dV^Tcz~&s+!}Pd~5G=4#t{7(^2WdI?<3F9HtK zpR=hlfUL~80|Tu}1Rt zc)Me(mS_Cwr_HTpL0D5})&h2Cepl?o2khwI)JmHtDOe>uJa$XP#&ugT%(J_=(@t2z zP|$lQ>NpK~xYi*6UJ2ySyC&doNQI+rNLpPLt%}<7#R6@WtU}HhnTd zou_4ht(>+w-5H58q0M_q1aWtr18IQ?nOSFQ0_f9DVupNimLqF zrsVmXKc4|JTin|B6Q8&GdehSa5j?~MZ=pjCZYUqtQ^QsA_tO-?(5TU_W z;oIEIX11gu@^Yn-gxc~m-QK+4dpEqzDVPhLA|z8?2CisnG4NccCUaOQbURM7Wul0) zeJ~EmfZQH3!h;NC3%?F;YO%?fz~Z#DS8ESDg6NZ;0;_K6hfBBCrGtyt{Wykov?i&P z3aj4JUA4-4eded04}xD^&X?6)@|UuQo;f98e95~XQh3Tm9{J`~|Q&e zJ-V2M9Y*K~=^g(St*Sq=x?)H#2pYK2;~lE* zkLgkLgIUOdr|3Ms|FayQr~*E?Z<{`#%`zY7uF^pJSjl~B&0j=DYn++7u2IM1+Ah>q2#(r zVtg-8?_aJSz_0)w9wIws2(2IrN=1+FgSMWN6yiPYwWlHaa;@lsEr;*E8#JIgi-n!> z@GtCL4oiun!t({m$pHg7H{R!I62tDz{aTUb1XfG{5T>ERV3XJMRzLBvTsFRU<@*Cq z=E2&P*0-!?i;Pa-pi3eCi+a4r7+F%bX+t51COr1!=V2%ga-7bo2Mk)<(E=X5(y4Dv3oG0%lQQ2-NQq4qai^ zuAPjd@I?`)5jL14BV~NIAZLD}DK#c&Oi$IY01+$|vJxp@59KEgP;pTK?9K4w_S8`M z!jRU6PcFDXZ9!eljB(6ve$!LChdTV#ZI(t>P+_-F!Xq75p^ zk?s1Zr7cKxHdTPPG~0H*WZV{cf4q&Czi&8NxO0KR#XcdXdHI8ZD|G@AS}kVxl^7ga z3^VMBU&P$zqLEW;X_Y#q@tjy3-J(-wSF$AGRS(JaQOrtPgLx?E_5s=iVN~{pV&gZ? z?n}J0NEDb;Gbjg-caSYa-s(j>s_ zYV5kY%1&&QbCf_81ZTlj##artZL(@>|6Jk{0|j!7bFopLA)BgZ|I-FTA0G|K$Eg`M zOy5;of}tIK)JXQPB2s0c*%>=@cl-c?;>v)_nXJn5ykO|pFPV)@<8F20x#r>OhYNGo z)KB0~@FKse>crzQbHa9|at6>R9x&UPW^6@CqbZSm#aH=cnwr2jTr*jVmO4t%z>od> zVnChV^#C@&BZmDfb7sVJ162NqTmd^Ff~W(&NGgYK;y||`6@sgrKa5#%x^6$8stC@l zO-513;u9Huzw7gq0;VrWsdXq9?E!6?h$JUWXbo#kzP&q#<-5p%pcI%glaHGc7_BJ_ z-_bEAXs}KQ%MnRQk#`iMK@oluxggQ*WD{c{!@T}wr|OL*Fwc`5FIlK8; z68{rHCO<i=nec`gZmIsO^%t?`|gHbXQD%Vgwa1-Up0d1E6DP5ee&|RZ{=RCVH_+nf6Ycs z5GZY-LbwHSUsBA_Xs3Gh6=kEoV0%; zQYLpF=LI!mF5Jwdvr+z*Aiyo?o07Nk=v7LVZr)xAeAy;S-IsK#GxaJ(#SMv*h6h+j zUJ&H^q)Z+P>dX;0tjju6k|URL)LvaQNgR|+eqnouPXh?G%|%tCpudEkrZuW5=nPc6 z-W`7iDQ>8%5Q4&h`?(!0JBH1D=i5zHS4>q;s{A6Qz@{;x ze&pFTmda-=7$m?eh=x?8V)$jX_3rgNZ;jz1MWBnbF-H&CaGv)tf*wD#hcW39gccAI z*;0&SQ2efhulA*$C5$*ccsPYE^r*qVq6t5;A%lKKae4;dPICkR$cgW;0O5}WzCIU8 z7qJ32z+PP&uZJhf+%!;0ZP}&SNGMW#J z9rgCH5pD09^U-&2&;{>!T3CC+Q?cd7<$Yi5^oy2W9mnwHfrvbOrbx0S?HkMZHklg6 z`fC;(S}Tsjs%(=ryS1X$`^vTgGB27J_veS@gwxzu^Dp~;K+h~*`&N))y;r#n@keoa z31^sI|N8swoSb%A9TL0cog`~CW+R}Y!0z*{aW^xM$(@H3_s-X?f@o5sZ^}WQ)T8?a zPv~Bhlam|zuD>dBvYdgZ!*!ObKOB|xblZB6D$$>Dc#PjKPiGCwIlNdLpkuJB_v_T5 zH_bIppgN7r4o|3$R9^{Yr@s*UB5)}VXm;tSFqK~B2fE+HO$jp-(t>Hmo+_te>lxj1 zyKo#@GXhl%^L9QxRC%bplD3ywxO0Mf7nmz&?&s91#|sK*Ddd_G>1qpE-!4imFLHX5 zI>f-y&Ds@dc;CSdwRHTFKxz6SZDlJ&iYhw7pB-4l1VS_J@!*J_zi~n49N(&FLqlr0qjDR$2+BX z@GaN!*@ueQTSr#L5c$G@{m4|KGH_|8swK7X`GJ9tV{!1#tQ$aG4T^D~5?N{dH?n2N zFV`gC%RC3{tyM}CZ}N@%@YrTjE8~XO;C5b@z*FE%q~c)~aq;qW@l|pn6m&Jl97T4G zT+TQ&>jWW6+>7B*v5XxSlpBRv-U6mO^C$1={AL-KVXs_|*}S5}rxgU5HTGE~ZI5Di0FX|bY;YLP#q`C@nTd;Mo#7C%jbD>_tXu^C_?Q zLmkgBUs*cZ7KSMK{*+IQuE~X;+cgCumyFEo1Wa!r-x#3$T(}o}m7#2Nq<-=H?+ip_ zDo(lIG*PFa32d(Tawb=XWsMJ{DNp-yONmty1{w+t>7uIMKDu;BT8cN|AddW^*2+JM zDFS=PG5kyXVNXnufHeN6pIHQx;^Xb_Wa)4D&dxqh;u+HO6P0!pzFnutP8)dQ=Jf5O zJh@wFf@M&htBN$l=k&sc?5Rtu6oT*Nj7|HU`1JCIz+*)8%5tlO)O=MT(OKJosi;ze=^oA z$0viW)ArF#Q3Si~@b_od45Gvy^}gM_^_O(nUOuXP&th0tgBe3<+QN8rujgBu_@1vpR2?r;hB{idk%~3 z#!=aga(_vnXt!uLWv<%02Dtb0yy*J$k}20Q-O|TfZ(5he@~=7J(~nd>JxklE{Q3^9 zH_JwqoHCV9F|OA|IsQjfQd2}!OWG#>If3c}VcMT&1W~gk=kNhg`SwRslbPFMqA13< z3dy%PBCS0hd>|YFYsz2+oHT@sv3Unl)lVhF_O+K6H?qMGN#9}LpAEmDIJf|-N!JZp z2$3y;m0XGi+}!JY>~GecsLD6wBr>}vhJ8=8tv;8mJaL-jZ4`Vzw}m$Hjt950qJlUa z^Mj(PQhyuNuZwymtZ|3^9Zh5^7#@vVArdA#zvj~^v8_9_6(3921RT2nf6;$Bd$Hy7hIX#^8TB@ z=h@%bwdte%9coYL2yor&ayw!%r?c6V&Te!{N&|l@+0T7B4Rzlb#!J;00?V-<9W{mo zRFPDIVj4=|ua=Pc*dU!?`QGG8Z}PT&T+^E}&~W z!87VS%zSB%QoRYZFe*G^eK|UQ;eE%`aO*mZzGDm8UV&@td%$Hu3(bH6HSC?G72W*l zs0D$l49-&UM0*Stt#!4>qB0t=8MfX%vuk@qZlo+R*4+9;VS@eJqqmKJkx8Ng(dg4G ztQUv}V}C4br4MlfaC#@{HpUGfQ3~(07Fp(YU1UjZ05Z9L%#fww(U;ZEZGv}!dYj+1 zk1c^08sIza9y17s7<0fRmbpm@9N$aA{e*=+rSVBaMX+f_gYODe`}>??)_@UF$xtRP zlMFqmd993y?v@QEfMq|^{p67oDHfa%0<%`@zk5O-9Gs8JXho&HD|m z6sfCB7$+KB%@b=8AXmnT92KWXN88XXlH5*S)W)RlVL@(#@0^T_k3NGGS#F1nif}vgCZSWMh^vh7k_Yb*|kKMpkb+RDXtaQ zvhxn_2Lo=8NYq;zFl8?=tzTZ0FQrDlt(~;cCzC%-e*N{Vb8V1Nm9IWYP(MPV`O?IA zR5`R?=I=sn#Lei=mQ8rVFK3Z7jvlUI!_%02=0l~m956fotrq*TYmhD>ofGzPq^_%4 z@^^`l)y|8>T-77&8I6e+=NG0RQ)LxJ9+V@BIS*P@%7m`_4ELUw298@50yzR z2>+a;$)-Ys_Ey?#gJX8->Dv_g>AabTMU5owr$rGf^BNVq)t4O!Yg2!Qyba+*`iUTh zfKsqu`3uh4;A-kD1}MTtj(9%#pC}MXiTvXyfx$6vLL;} zCt?E)<;;3m9^VhIQc|MHfAi+eH+vx&Hp0l0EUbI0Iopc}ugE|1FnyaxXrnU%$DP@d zD${|vlyY#4a44`E%Y$pz@T6ga|0jJKL^T5$HU^ttVZt_FTTf$F43ZE7fN1A2yDwcy zn-F8M@5xn}=xNnQc~)d&dR*mCIVoZ_JR2dA$YGthI0mrVvG?jZh#?i(0%1)BGL^zE zQ9W?IAs)=MZl1xx-{gX0T2F#w!hUl59pjA1-2+;BMEy@TM?vJ)KFU_cU1KdTf%&>6 z5Ut7~vq(NO8FiMypm?VA5o%&=?0YgQ-1+wh_gX6&Fo8MtXR*=gcDM4zw%%YiO{WH8 ztSs^C=QeG4);%Gm$});S7|U8v3>S(g549f{zoq$ob9GqD@suhWP9z~AQU5WU!yz+A z>O&8|p>&~(+4{}#uHz5lW^@2|@Q&=J)6FJ`VZ8mteXCJBP`mT{%(48UKx-6QQ?F^)?}UQ zA^AUdjSA@NuxGB{_{Op|$AGvH22}WGx+wFdJa&il3O_{%tv%zSr=nfNqauG6ZT_37 zhdMhj4+XV6wnjle-m#xCjtg^7E>@?q3h2k(E_ESbEyVA7&vaT?&=Fm~lo)`CU^apE zBZRg4H_x0adC0Hp^nx9~&cX(@XpTv-g{X7=T*K{hAx?7G$x>__t)!=C*FX_1#o6JS zGYE@uJx(;LjBQxNYilJZjZNGqd`x@lHS9SWN$&SEiu^bkZdxX0QBs$t+oyY`#D%vw zQ9UWYkw|-dBB^!R9Fd7u{|L0Flhnd?lG5`(*j7mlCojlC6ep1zRm*hZS4iChliZ0k zvgf`Zgh-RPjaRdGJGm&|!6)3bN3)OL7^?76X?#%fi1qOQcJRj@K~RHZ-D(-QM}hDf z=L;j&F16STAXl$E!bxM)<~$8z?R%}k_M9A&{Mn38E_AbrPmyL_F49k*M zU@KV)a7_3!*qzUxeNE-Pl%Uc9gqWg10-+(1kCk58%esi@oU1>Ga&&3oWgTw6m zd;%|$KuAi7@w?H-V67g$XE6Bo@yI7KT2A7%@O{Fx>hAuK%L8>?_F+C(vXZpOblf^w zM_B1i{HaR+-vxN#WxTSUZy|x5B(9zN(In(L4#AMw=`JnYMTsVI4+ZUC=T*@xvq>gt z$eygJu+ZFHikX|>7#<+T4Kiz8;&T{w80^$i94yfq*Y#&(*YVBmH{&DEec?FEAU(VC zVKO#!6xpYzAv@k=#5MT*4~sWo=B}k}%t4%XA`&$?U5PDSYs3XY18;XSZ;Iub8g27j zc*KRg!(T9~^wQ11efaD=A=GGyVdp&f6Ku~j;2 zTf0z1ZrE-lQCw}v6Du>+PW&0FK4w|Hf|HOX_9z5F(O){trub+VUt>g2!WQpCDNERt zfXBs)l6$mi=-+Da3v3B|T2|cVQTppj0sS6{Yb>aUYHrgGQtry?JSF9$nBCq43_mf^ z-fTEN+?Qy)>g#VipCHZ<8AZqDB~dog`-92Hc)F;G&`P*q!-Oc~Dq8zNHWj+Mj0)zC zo)?%za}_-b+B<)*Tyvnps3PK_0^(=J{;9iL@hEs!Xc?9L;UUdo2?A>&00tKA$lFPm zGr`m=J&w21Ahtq%f@WcMc6Oc&twJU@Sq8-DjB^l&k6QA3a&b`}eAf^0u7Rw%fkWM` zpFG@*kngwN`{UIz3POc&OF{6yl_CyryoO`r;?>n_frxcF(0~1113}!uv}3paTwnXD z7*XfCH?`6cYoHLpWOk%NzL^WK_nNJ%6B53j(a^XQx3SNgt-Zc|kLx`}L6HAvE9_fgHhK2NewFalY>7r&!?PF+Tqe z_OE9>fkA>FhQ~yb*nkK_CWU_h=h8hQV&5L=4N(c&PUiWp|?R(-Ak$)A?&W>5riGJ8FCn9?x?HWdAO zd>{pktuz$RaLxL$h^HrR(I;_@rv|HpA=#J0VL6{)#xe~0v@hEW>FVktNWlQerFK7R zvQ~MJPTV0YHaBbc-FD_9Z&mv76EJ8)K{si@l8L)b>vxfx@Xp^jtUtU~e7BY+aXGcX zs&CXfgW_pD`Kk1a;*jqOTQh(1oLwm5S0~YRFOw=}b1lCTw0iD3aMa=f0Z zW!;Q~I6pgDSvXNLHwf-aXHfL}Gi(ZCK38sUF4WZ2_B|K&h!6({E%va%P3aMz3la4QaOUO5p*Cxm7-tj_Rsj;^^Kl~Qh$$n z9!5t;-&K{QLuAk1FlxbxVowgvd{kJi{fbt+KWsK+7BgcEU8VhHckoBf>XU@d^#b8)zmsU>~Rf!bBO z%iATNnJ9tcX%#SP6A@oINdp0S34AD>z?48o6wCO@zURlS=5-LN2w3(S$y=xAsObqm zk)Le!I{fA&zrK|3WbKmhn(hv7xH$y|>PF|?ib-8T&w_v^o3C#@GUz!5f^OqqQ}(_+StasX8*y<`SmvB=E!ryr*#$ zTRBPMg$-7OtCk#jpMi31)f3Sdmd*h~e3honw`VpE?U6oYonT4^Z#tadNTUNyES58; z_b7$K)yW&w5*lQhG>PPPx_NMGIj(;F7>-c30atRya$!%{Pn>;odXB}4w0ojzN-5Ks zknn3~2Mfe&ntd6`S)z_;{_WwGPA?Ewu;bb4;4&vZe&$PbYW~9;KNkvut#(G{McX+H z%IL|$r;j1QpKF!>Nl4T#)HUrnHnw(jFk$5>5Lpl{fBV*TNDj1X{L;1gYvli7ow4u4 z&YsC*=7$MaYN07C5DnrwjI~#;J8--+-@J_~t(*j7DGv`&3#2a7jGusaia?9&OgJonrmjYY!1{Ddkl(~Jo+yx zs=3LK8xiTT(;)LF*n_zR;CK)5^f``TKd&vI0YwnMo67KU_{NhNrHNHH7?kw9ec z?b<_skXodp3tyu#*M&!Tod3??cjAy@q4(nB{(q1AKfj!O>8NIdh+_ajmwyNK|2hK! zkKBIJBoZI|33BTIRafg$scxk`Ra0I9SeIV}lP_TOux9CM1R`cl3{VBWC^7JYR{ z=H~YLb?bsXi-~w-&_Cw-4si``y7>6yX=FGjt|o{H)EMenJKC8p1f{WY_<3ppIFI2Z zZcrQEdH?HCA>P+mdYoTUcgvD*B(4q9nc4HruCB+=VyNWP>`2Es@K!U$wXT17#Ij>$ zTx$3~ZxF@=BdyzY>RZq@Q1mmPU=UZfI3!tQU}XApGrSSQRC;$G-PR?p@e^YCH8n2+ z&{dU?l$3`jh|7fOrSb`UvGBz*Dz^W?gtOpg6{%A?)rlb0pr7SBImuzLw7}j@P&NNL zUUB`>n)WFWjJLBgTW!cpWEaF4WYIPW_tg&U7YrP_rv#g?*IUJ|D8am9e8$ zo=(7i5c&1c^Qo<1f-Kn+{r0Ed&}W5W>2|lTy@Yt_YvglYaAwuXyp(5qx3GXV5sYm_ zuHM0Fjx%xv8wu0gLqb@8_;orpehA_Pa}lMSP0*Yfvya(@hW(Vt!PwBSb`}%pA{C-6V>aMvQ{p(7im2Gq_cGKiBn*ZeqR8$KEyT#j-_0MrT_jYcn|WrU*GwB z#j*R=hcZEf1qZ=u(`TC$_sccJet_im4%#hG!!wxZfrFYt=$5;EG6(PU0|5`An4pi= iC3lY&w1&=;fBhXsWN^i>g`B`fKv7OrwgP4r^uGWsFI>3* literal 0 HcmV?d00001