globals [ initial-firms ;; number of firms new-firms GDP LFT ;; world wide labor force dbug_tmp employ-lag good_counter fml_jobs_created ; formal job created fml_jobs_destroyed ; formal jobs destroyed d_rho rho_bar stc new_hire_count new_nfmls country_new_nfml new_nfml_count trade_blocked_count macro_blocked_count ] turtles-own [ outsourced? ;; If true, the firm is outsourced. trading-partners ;; Counter for trading partners trading? ;; If true, the agent is trading trade-length ;; How long the person has been trading internationally. rho_hat ;; Growth of productivity macro ;; Govt macro policy protection ;; Tariff protection partner ;; The person that is our current partner in a couple. employed ;; Number of employed by this process employed_ ;; Last period employment in this process rho ;; Output per worker rho-max ;; Maximum rho life_span ;; Product cycle country ;; country ID good ;; good ID shut_down ;; output goes to zero an firm is shut by outsourcing output ;; output ofshr? ;; off shore nfml? ;; informal sector have2fire ;; number of workers to fire (without shutting down) ] ;;; ;;; SETUP PROCEDURES ;;; to setup ;; (for this model to work with NetLogo's new plotting features, ;; __clear-all-and-reset-ticks should be replaced with clear-all at ;; the beginning of your setup procedure and reset-ticks at the end ;; of the procedure.) clear-all set GDP 0 set LFT 0 set employ-lag 20 set dbug_tmp 0 setup-countries my-setup-plots set GDP sum [output] of turtles reset-ticks end to setup-countries let country_counter -1 repeat countries [ set initial-firms 2 + random 100 ; number of firms per country set country_counter country_counter + 1 set good_counter -1 crt initial-firms [set good_counter good_counter + 1 setxy random-xcor random-ycor set ofshr? false set life_span random max_life_span set trade-length 0 set trading-partners 0 set trading? false set partner nobody set rho_hat 0 set output rho * employed set country country_counter ;type "country is = " print country set good good_counter if good_counter mod 5 = 0 [set good_counter 0] ifelse random 2 = 0 ; arbitrarily split up turtles to make coding of initiation of trade easier [ set shape "circle 2" set size .5] [ set shape "circle" set size .5] set outsourced? false ifelse random-float 1 < .8 ;informal sector if they're not trading? [ set nfml? true set employed 1 set rho random-normal 1 .2] ;informal sector [ set nfml? false set employed 1 + random 10 set rho random-normal 2 .5 ] if rho < 0 [die] set rho-max 2 * rho ;type "country = " print country ;type "agent = " print who assign-protection country assign-macro country assign-color ] ] set GDP sum [rho * employed] of turtles end ;; yellow is no traded ;; green is not outsource ;; red is outsourced to assign-color ;; turtle procedure ifelse (ofshr? = true and nfml? = false) [ set color red ] [ set color green ] if nfml? [set color yellow] ; not trading are yellow end ;; The following four procedures assign core turtle variables. They use ;; the helper procedure RANDOM-NEAR so that the turtle variables have an ;; approximately "normal" distribution around the average values set by ;; the sliders. to assign-macro [country_] ;; turtle procedure let piasano one-of other turtles with [country = country_] ifelse piasano != nobody [set macro [macro] of piasano] [set macro random-float max-macro] end to assign-protection [country_] ;; turtle procedure let piasano one-of other turtles with [country = country_] ifelse piasano != nobody [set protection [protection] of piasano] [set protection random-float max-protection] ;type "protection = " print protection end ;;; ;;; GO PROCEDURES ;;; to go ; go if ticks > 1999 [stop] ask turtles [if nfml? = true [set trading? false set trade-length 0 ]] ; zero out informal traders ask turtles [set employed_ employed ; store last period's employmenfml if trading? [set trade-length trade-length + 1] set output rho * employed ; output is a function of employmenfml and productivity ] ask turtles with [nfml? = false] ; search for trading partner [ if not trading? and not outsourced? [ move ] ] ;; Righties are always the ones to initiate trading. This is purely ;; arbitrary choice which makes the coding easier. ask turtles [ stop-trade ] ; trade doesn't go on forever ask turtles with [nfml? = false] [ if not trading? and shape = "circle 2" [trade ] ] ask turtles with [nfml? = false] [ outsource ] let next-shut_down one-of turtles with [shut_down = 1] while [next-shut_down != nobody] [ask next-shut_down [set new_nfmls employed set country_new_nfml country set fml_jobs_created fml_jobs_created + 1 die] repeat new_nfmls [ ;type "shut down firm with " type new_nfmls print " workers" make-nfml country_new_nfml 0 ] set next-shut_down one-of turtles with [shut_down = 1] set new_nfmls 0 ] let next-have2fire one-of turtles with [have2fire > 0] ; fire employee for losers who don't have to completely shut down while [next-have2fire != nobody] [ask next-have2fire [set new_nfmls have2fire set country_new_nfml country set have2fire 0] repeat new_nfmls [;print "fire 1 " make-nfml country_new_nfml 0 ] set new_nfmls 0 set next-have2fire one-of turtles with [have2fire > 0] ] ask turtles [ assign-color ] if ticks mod 5 = 0 ;; add new jobs [repeat 1 [ ask one-of turtles with [nfml? = false and rho > I_rho * average-rho] ; if switch is on then job creation is tied to productivity increases. [ set employed_ employed ; type "calling add jobs " type who type " of country " print country let new_hires round ((1 + rho_hat * growth_factor ) * employed) ;let new_hires 1 set new_hire_count new_hire_count + new_hires add-jobs-locally new_hires country employed ;type "new informals " print new_nfmls if ( employed_ + new_hires != employed ) [ ;type "employed_ = " print employed_ ;type "employed = " print employed ;print "try going abroad" let home_country country set new_hires new_hires + employed let new_country find-new-country home_country new_hires ; ------find new country ifelse new_country = home_country [set output new_hires * rho let rho_ rho set rho output / employed ;type "rho_ = " print rho_ ;type "rho = " print rho set d_rho d_rho + 1; reset productivity at home has no effect on output at home--just raise productivity if (rho > rho-max) [set rho rho-max ;print "rho limit reached" ] set rho_hat rho / rho_ - 1 ] [; type "new country = " print new_country ; type "home country = " print home_country ; type "turtle " type who type " moved to country " type new_country set country new_country set ofshr? true set color red set employed new_hires ; set globals for informal creation when firm goes offshore set new_nfmls employed_ set country_new_nfml home_country let absorbed employed repeat absorbed ; aborb local labor force in new country [ask one-of turtles with [country = new_country and nfml? = True] [; ;type " one job created in country " print new_country set fml_jobs_created fml_jobs_created + 1 die]] ] ] ] ;print "end adding new jobs" ] ; this is for any new informals created by going offshore to create jobs abroad if new_nfmls > 0 [ ;type " From Offshoring " type new_nfmls type " new nfmls in country " print country_new_nfml repeat new_nfmls [ ;print "off shore informals" make-nfml country_new_nfml 1 ] set new_nfmls 0 ] ;set LFT sum[employed] of turtles ] my-update-plots ;let dbug fml_jobs_destroyed - new_nfml_count ;type "dbug error" print dbug if fml_jobs_destroyed != new_nfml_count [stop] tick end ;; move about at random. to move ;; turtle procedure rt random-float 360 fd 1 end ;; countries have a chance to trade depending on the level of protection if they meet. ;; To better show that trading has occurred, the patches below ;; the couple turn gray. to trade ;; turtle procedure -- righties only! let potential-partner one-of (turtles-at -1 0) with [not trading? and shape = "circle" and not nfml?] if potential-partner != nobody [if [country] of potential-partner != [country] of self [ ifelse random-float 1 > [protection] of potential-partner [ set partner potential-partner set trading? true ask partner [ set trading? true ] ask partner [ set partner myself ] move-to patch-here ;; move to center of patch move-to patch-here ;; partner moves to center of patch set pcolor gray - 3 ask (patch-at -1 0) [ set pcolor gray - 3 ] ] [ set trade_blocked_count trade_blocked_count + 1 ] ] ] end ;; If two trading partners are together for longer than either partners life_span variable ;; allows, the deal broken. This is to make sure trades don't go one forever? to stop-trade ;; turtle procedure if trading? and (shape = "circle 2") [ if partner != nobody [if (trade-length >= life_span) or ([trade-length] of partner) >= ([life_span] of partner) [ set trading? false set trade-length 0 set trading-partners trading-partners + 1 move ask partner [set trading? false set partner nobody set trade-length 0 set trading-partners trading-partners + 1 move ] set pcolor black ask (patch-at -1 0) [ set pcolor black ] ask partner [ ] ask partner [ ] set partner nobody set stc stc + 1 ]]] end to outsource ;; turtle procedure outsourcing wipes out domestic production unless protected ;; outsourcing can only happen to firms in the traded goods sector ;; if partner != nobody [ if trading? and good = [good] of partner [ let loser partner let new_jobs 0 if ([rho] of self > [rho] of loser) [set new_jobs round (([rho] of loser / rho) * [employed] of loser)] if (new_jobs > 0 and random-float 1 > [protection] of partner and [employed] of partner > 1) [ ;type "rho of loser " print [rho] of loser ;type "rho of winner " print [rho] of self ;type "new_jobs = " print new_jobs let employed_win employed let for_country [country] of loser let home_country country ;type "employed in dominant firm = " type employed_win type " in country " print home_country ;type "employed in losing firm = " type [employed] of loser type " in country " print for_country let nfml_lf sum[employed] of other turtles with [country = home_country and nfml? = True] ;if nfml_lf < 0 [print "informal error in winners country"] ;if nfml_lf = 0 [print "no informal workers left in winners country"] ifelse nfml_lf >= new_jobs ; local labor sufficient [ ;type "local labor sufficient-absorb " type new_jobs print " informal jobs in winners country " ask self [set employed employed + new_jobs] ;type "new winners employed " print [employed] of self repeat new_jobs [ask one-of turtles with [country = home_country and nfml? = True] [set fml_jobs_created fml_jobs_created + 1 die]] ; absorb local labor ask loser [set shut_down 1] ]; end first ifelse ; local labor not sufficient ; hurt but do not kill loser-create full employment in home_country [ ; start second ifelse set new_jobs nfml_lf ; only hire what is available ask self [set employed employed + new_jobs] ;type "new winners employed " print employed ;type "local labor limited-absorb " type new_jobs print " informal jobs in winners country " repeat new_jobs [ask one-of turtles with [country = home_country and nfml? = True] [set fml_jobs_created fml_jobs_created + 1 die]] ; absorb local labor ; there should be no one left in the informal sector ask loser [set employed employed - new_jobs set have2fire new_jobs] ; reduce foreign employment ;repeat new_jobs [make-nfml for_country 0] ; increase foreign informal by same amount ;type "limited losers employed " type [employed] of loser type " had " type [employed_] of loser type " and have to fire " print new_jobs ] ; end second ifelse ]; end if rho ];end if trading ]; end if partner end to add-jobs-locally [new_hires home_country already_employed] ;type " from add jobs locally = " type new_hires type " in country " print home_country let nfml_lf sum[employed] of other turtles with [country = home_country and nfml? = True] ifelse (new_hires <= nfml_lf) [ ;type "add new hires = " type new_hires print " found adequate labor supply don't go off shore" ; transfer informal workers to formal sector repeat new_hires ; aborb local labor force [ask one-of turtles with [country = home_country and nfml? = True] [set fml_jobs_created fml_jobs_created + 1 die]] ask self [set employed (already_employed + new_hires)] ] [ ;print"can't hire locally" ] end to-report find-new-country [home_country new_hires] let macroOK? True let looking 0 let looking_count 0 let potential_country home_country + 1 mod countries let m_tmp 0 while [looking = 0 and looking_count < 49] [ ; if looking at a foreign country--macro policies must be in order ; type "looking at country " print potential_country let incountry_counterpart one-of turtles with [country = potential_country] ifelse (incountry_counterpart = nobody) [set m_tmp 0] [set m_tmp [macro] of incountry_counterpart] ; just ask someone in the country ;ifelse random-float 1 > m_tmp ifelse -1 > m_tmp [set macroOK? false set macro_blocked_count macro_blocked_count + 1 ] [ ; print"macro conditions ok " ] let nfml_lf sum[employed] of other turtles with [country = potential_country and nfml? = True] ifelse (new_hires <= nfml_lf and macroOK? = True) ; for current country in looking loop [ ; print"current country has enough labor--move there" set looking 1 ; type "country found and is " type potential_country type "--looking for " type new_hires print " new hires" report potential_country ] [; go to next country ; type "Not enough labor or inadequate macro policy in country " type potential_country set potential_country ((potential_country + 1) mod countries) set looking_count looking_count + 1 ; type " looking to " print potential_country ] ] ;print "failed to find new country going home" set fail_count fail_count + 1 report home_country ; if can't find a potential country to which to move, stay home. end to make-nfml [country_ cause] crt 1[ ; type " Now make " type new_nfmls type " new nfmls with cause " type cause type " in country " print country_new_nfml setxy random-xcor random-ycor set ofshr? false set outsourced? false ifelse cause = 1 [set ofshr? true] [set outsourced? true] set trade-length 0 set trading-partners 0 set trading? false set partner nobody set employed 1 set rho random-normal 1 .2 set rho-max 2 * rho set output rho * employed set good good_counter if good_counter mod 5 = 0 [set good_counter 0] ifelse random 2 = 0 ; arbitrarily split up turtles to make coding of initiation of trade easier [ set shape "circle 2" set size .5 ] [ set shape "circle" set size .5] set outsourced? true set nfml? true ; non traded goods sector--includes informal sector assign-color ; type "new nfml in country " print country_ set fml_jobs_destroyed fml_jobs_destroyed + 1 set new_nfml_count new_nfml_count + 1 ] end ;;; ;;; PLOTTING PROCEDURES ;;; to my-setup-plots set-current-plot "Trading" set-current-plot "GDP" end to my-update-plots update-trading-plot update-GDP-plot end to update-trading-plot set-current-plot "Trading" set-current-plot-pen "Trading" plot count turtles with [trading? = true] * 100 / count turtles set-current-plot-pen "Outsourced" plot count turtles with [outsourced?] * 100 / count turtles set-current-plot-pen "Offshore" plot count turtles with [ofshr?] * 100 / count turtles set-current-plot "Formal jobs" set-current-plot-pen "Created" plot fml_jobs_created set-current-plot-pen "Destroyed" plot fml_jobs_destroyed set-current-plot "Employment" set-current-plot-pen "nfml" plot sum [employed] of turtles with [nfml? = true] set-current-plot-pen "fml" plot sum [employed] of turtles with [nfml? = false] set-current-plot "Cause of informality" set-current-plot-pen "ofshr" plot count turtles with [nfml? = true and ofshr? = true] set-current-plot-pen "out" plot sum [employed] of turtles with [nfml? = true and outsourced? = true] set-current-plot "Productivity" set-current-plot-pen "Productivity" plot sum [output] of turtles / sum [employed] of turtles set-current-plot "Productivity" set-current-plot-pen "rho-fml" plot sum [output] of turtles with [nfml? = false] / sum [employed] of turtles with [nfml? = false] set-current-plot "Productivity" set-current-plot-pen "rho-nfml" plot sum [output] of turtles with [nfml? = true] / sum [employed] of turtles with [nfml? = true] let max_rho max [rho] of turtles with [nfml? = true] set-current-plot "Productivity-informal" plot-pen-reset ;; erase what we plotted before set-plot-x-range 0 precision max_rho .01 + .01 ;; + 1 to make room for the width of the last bar histogram [rho] of turtles with [nfml? = true] set max_rho max [rho] of turtles with [nfml? = false] set-current-plot "Productivity-formal" plot-pen-reset ;; erase what we plotted before set-plot-x-range 0 precision max_rho .01 + .01 ;; + 1 to make room for the width of the last bar histogram [rho] of turtles with [nfml? = false] end to update-GDP-plot set-current-plot "GDP" set GDP sum ([output] of turtles) plot GDP end ;;; ;;; MONITOR PROCEDURES ;;; to-report %outsourced ifelse any? turtles [ report count turtles with [outsourced? = true] / count turtles with [nfml? = true] * 100 ] [ report 0 ] end to-report %ofshr ifelse any? turtles [ report count turtles with [ofshr? = true] / count turtles with [nfml? = true] * 100 ] [ report 0 ] end to-report GDP-growth-rate let GDP_ sum [output] of turtles let gGDP (GDP_ / GDP - 1) * 100 set GDP GDP_ report gGDP end to-report Average-rho let AP sum [rho * employed] of turtles with [nfml? = false] set AP AP / (sum [employed] of turtles with [nfml? = false]) report AP end @#$#@#$#@ GRAPHICS-WINDOW 288 10 723 466 12 12 17.0 1 10 1 1 1 0 1 1 1 -12 12 -12 12 1 1 1 weeks 30.0 BUTTON 12 81 95 114 setup setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 96 81 179 114 go go T 1 T OBSERVER NIL NIL NIL NIL 1 MONITOR 749 362 888 407 outsourced-percent %outsourced 2 1 11 SLIDER 7 37 276 70 countries countries 1 50 50 1 1 NIL HORIZONTAL SLIDER 7 197 276 230 max-protection max-protection 0 1 0 .01 1 NIL HORIZONTAL PLOT 7 268 276 467 Trading sweeps people 0.0 52.0 0.0 100.0 true true "" "" PENS "Trading" 1.0 0 -16777216 true "" "" "Outsourced" 1.0 0 -2674135 true "" "" "Offshore" 1.0 0 -10899396 true "" "" PLOT 5 469 278 662 Productivity sweeps indes 0.0 52.0 0.0 2.0 true true "" "" PENS "Productivity" 1.0 0 -10899396 true "" "" "rho-nfml" 1.0 0 -2674135 true "" "" "rho-fml" 1.0 0 -16777216 true "" "" BUTTON 184 81 265 114 go once go NIL 1 T OBSERVER NIL NIL NIL NIL 1 PLOT 333 489 533 639 GDP sweeps GDP 0.0 10.0 0.0 10.0 true false "" "" PENS "default" 1.0 0 -16777216 true "" "" MONITOR 812 87 899 132 Productivity Average-rho 2 1 11 SLIDER 8 123 270 156 max-macro max-macro 0 1 0 .1 1 NIL HORIZONTAL MONITOR 750 479 830 524 Offshore % %ofshr 0 1 11 PLOT 843 493 1043 643 Productivity-formal NIL NIL 0.0 2.0 0.0 100.0 true false "" "" PENS "default" 0.1 1 -16777216 true "" "" MONITOR 582 518 639 563 Firms count turtles 17 1 11 MONITOR 589 578 654 623 Informal count turtles with [nfml? = true] 17 1 11 MONITOR 793 25 850 70 debug count turtles with [country = 3] 17 1 11 PLOT 956 254 1156 404 Employment NIL NIL 0.0 10.0 0.0 10.0 true true "" "" PENS "nfml" 1.0 0 -2674135 true "" "" "fml" 1.0 0 -16777216 true "" "" MONITOR 775 419 864 464 Employment sum[employed] of turtles 17 1 11 PLOT 1106 503 1306 653 Productivity-informal NIL NIL 0.0 2.0 0.0 400.0 true false "" "" PENS "default" 0.1 1 -16777216 true "" "" PLOT 937 101 1137 251 Formal jobs NIL NIL 0.0 10.0 0.0 10.0 true true "" "" PENS "created" 1.0 0 -10899396 true "" "" "destroyed" 1.0 0 -2674135 true "" "" MONITOR 769 165 827 210 NIL d_rho\n 17 1 11 SLIDER 9 160 182 193 max_life_span max_life_span 0 100 50 1 1 NIL HORIZONTAL MONITOR 964 27 1044 72 Stop Trade stc 17 1 11 SLIDER 27 236 200 269 growth_factor growth_factor 0 2 1 .5 1 NIL HORIZONTAL MONITOR 792 220 865 265 New hires new_hire_count 17 1 11 MONITOR 741 545 816 590 Ofshr_fml count turtles with [ofshr? = true and nfml? = false]\n\n 17 1 11 PLOT 1121 349 1321 499 Cause of informality NIL NIL 0.0 10.0 0.0 10.0 true true "" "" PENS "ofshr" 1.0 0 -16777216 true "" "" "out" 1.0 0 -2674135 true "" "" MONITOR 678 616 738 661 created fml_jobs_created 17 1 11 MONITOR 745 617 820 662 destroyed fml_jobs_destroyed\n 17 1 11 MONITOR 532 622 632 667 new informals new_nfml_count 17 1 11 SLIDER 762 291 934 324 I_rho I_rho 0 1 0 1 1 NIL HORIZONTAL @#$#@#$#@ @#$#@#$#@ 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 person lefty false 0 Circle -7500403 true true 170 5 80 Polygon -7500403 true true 165 90 180 195 150 285 165 300 195 300 210 225 225 300 255 300 270 285 240 195 255 90 Rectangle -7500403 true true 187 79 232 94 Polygon -7500403 true true 255 90 300 150 285 180 225 105 Polygon -7500403 true true 165 90 120 150 135 180 195 105 person righty false 0 Circle -7500403 true true 50 5 80 Polygon -7500403 true true 45 90 60 195 30 285 45 300 75 300 90 225 105 300 135 300 150 285 120 195 135 90 Rectangle -7500403 true true 67 79 112 94 Polygon -7500403 true true 135 90 180 150 165 180 105 105 Polygon -7500403 true true 45 90 0 150 15 180 75 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 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 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 5.0.3 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ setup go count turtles with [nfml? = true] count turtles with [nfml? = false] count turtles with [trading? = true] count turtles with [ofshr? = true and nfml? = true] count turtles with [ofshr? = true and nfml? = false] count turtles with [outsourced? = true and nfml? = true] sum[employed] of turtles with [nfml? = false] GDP Average-rho new_hire_count trade_blocked_count macro_blocked_count fml_jobs_created fml_jobs_destroyed @#$#@#$#@ @#$#@#$#@ 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 @#$#@#$#@