Newer
Older
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with the difference that every version is prefixed with the vanilla version it is based on. Format is: `vanilla-pregmod`
## [Unreleased]
## [0.10.7.1-3.9.3] - 2021-03-12
* fixes event issues
* incubator object conversion
## [0.10.7.1-3.9.2] - 2021-03-11
* more JS conversion
* fixes
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## [0.10.7.1-3.9.1] - 2021-03-09
* added Elohiem's openGL renders
* added HG abortion permissions
* raiding, expiration & retirement JS conversions
* fixes
## [0.10.7.1-3.9.0] - 2021-03-02
* added catmod, a mod that allows you to develop and produce your own catgirls
* new events
* completed belly descriptions
* new one legged shoe descriptions
* more event conversions
* fixes
## [0.10.7.1-3.8.6] - 2021-01-25
* sugarcube updated to 2.34.1
* new clothing vectors for revamped art set
* new shoe vectors for revamped art set
* added support for tracking partners
* cleaned up facility head related tutoring
* your usual fixes and code improvements
## [0.10.7.1-3.8.5] - 2020-12-29
* added the toy shop (custom sex toy printing)
* added extreme implant breast shape "spherical"
* added associated nipple shape "flat" (preventable via piercings and lactation)
* tweaked NCS hormone balance effects
* shoes to data
* buttplugs to data
* dildos to data
* more lingering .tw files to DOM
* SC tweaks to facilitate complete conversion to JS from tweeScript
* fixes
## [0.10.7.1-3.8.4] - 2020-12-22
* learned how to add vectors
* fixed nicea event chain
* fixed issues with the TFS
* clothing data overhaul
* description options converted to JS
* lingering passage .tw files converted to DOM
* fixes
## [0.10.7.1-3.8.3] - 2020-12-13
* lots of under the hood work
* fixes
## [0.10.7.1-3.8.2] - 2020-11-06
* weather updates
* overhauled smart and dumb vibrators
* added polyhydramnios, galactorrhea, neoteny and progeria genetic quirks
* added gumjob trendsetting
* added support for deep pregnancy editing to cheat edit slave new
* RA can now be set to only apply once to a slave
* fixes
* further code optimization
## [0.10.7.1-3.8.1] - 2020-10-04
* added the ability to favorite slaves
* more Neo Imp events
* considerable overhauling of the pit and related code
* fixes and code improving
## [0.10.7.1-3.8.0] - 2020-09-13
* added Neo Imperialism FS
* added undercut hairstyle
* various fixes and code cleaning
* ongoing major code overhauls
## [0.10.7.1-3.7.1] - 2020-08-30
* added hormone controls to the dairy
* various fixes and code cleaning
## [0.10.7.1-3.7.0] - 2020-08-27
* revamped tiredness
* revamped illness
* Schoolteacher accent affects language teaching
* various code touch ups
* fixes
## [0.10.7.1-3.6.2] - 2020-08-01
* SugarCube updated to 2.33.1
* completion of RECI cleanup
* fixes
## [0.10.7.1-3.6.1] - 2020-07-31
* added The Utopian Orphanage slave school
* SugarCube updated to 2.33.0
## [0.10.7.1-3.6.0] - 2020-07-30
* revised mobility tracking
* overhauled inbreeding effects
* farmyard development progressed
* continued code cleanup
* fixes
## [0.10.7.1-3.5.4] - 2020-07-06
* added hair to the organ farm
* more code cleanup
* breast size immobilization floor raised for adult/teen slaves
* fixes
## [0.10.7.1-3.5.3] - 2020-06-16
* custom hotkeys
* custom theme support
* added Uterine Hypersensitivity genetic quirk
* lactation rules applicable to all slaves
* major nursery work
* longSlaveDescription converted to DOM
* fixes & code improvements
## [0.10.7.1-3.5.2] - 2020-06-06
* sub slave content expanded
* backend work
## [0.10.7.1-3.5.1] - 2020-05-13
* browser saving rework
* split neck accessories into face and neck slots
* added neckties
* added tracking for abortions, miscarriages, pit wins and pit losses
* fixes
## [0.10.7.1-3.5.0] - 2020-05-03
* SugarCube updated to 2.31.1
* added a python based save editor
* added incubator upgrade to improve young slave pregnancy adaptation
* added incubator setting to generate husks for bodyswapping
* added nipple growth drugs
* added rabbit, horse, and squirrel tails
* added rabbit ears
* added fangs
* deprecated vanilla relationships (replaced by limit family growth)
* various fixes and cleaning
## [0.10.7.1-3.4.1] - 2020-03-27
* various fixes, tidying and cleanup
## [0.10.7.1-3.4.0] - 2020-03-15
* added Stud subordinate slave role and associated universal impregnation rule
* arcology layout overhauled
* fixes
## [0.10.7.1-3.3.3] - 2020-03-07
* added corrective diet
* food market tweaking
* restored lost policy effects and text
* fixes
* more code improvement
## [0.10.7.1-3.3.2] - 2020-03-02
* fixed lingering assistant issues
## [0.10.7.1-3.3.1] - 2020-03-01
* added a follow up event to "snatch and grab"
* assistant code restructuring
* corrected breast description desyncs
* continued code DOMifiying
* fixes
## [0.10.7.1-3.3.0] - 2020-02-23
* tiredness overhauled (temp disabled)
* illness tweaked
* slave performance listing
* debug beauty/FResult listing
* reminder system
* engineering & warfare personal attention options
* RA can now target race for abortion
* better defined breast and butt implant types
* porn/ads code optimization
* arcology structure optimization
* expanded racial eye, hair and skin color ranges
* royal blood event can now use real dynasties
* CSS replacing SC formatting
* code consolidation
* major code structure improvements
* various fixes and balance changes
## [0.10.7.1-3.2.1] - 2019-12-26
* fixes
## [0.10.7.1-3.2.0] - 2019-12-25
* slave health overhaul (short and long term health, exhaustion effects and illness)
* slave release rules overhaul (better control of who they do in their free time)
* eye object overhaul
* organ farm cleanup
* limb cleaning
* added overflow feedback to demand
* added pit assign/remove rules to the RA
* fixes and cleaning
## [0.10.7.1-3.1.4] - 2019-12-11
* JS'd saGetMilked
* milk value slightly boosted with repopulation law
* tweaked femCum output upwards
## [0.10.7.1-3.1.3]
* removed lingering isPlayerFertile()s
* fixes
## [0.10.7.1-3.1.2] - 2019-12-10
* fixed critical error in BC player object conversion
* temporarily added option to remove accidental dicks from the player to options
## [0.10.7.1-3.1.1] - 2019-12-09
* added slave search feature
* closed major RA exploit
* cheat edit player and player testicle enhancement re-enabled
* slave listing performance improvements
* fixes and cleaning
## [0.10.7.1-3.1.0] - 2019-12-04
* standardized player and slave objects
* cheat edit player and player testicle enhancement disabled for cleaning
* whoring added to citizen satisfaction
* high class whores can target lower than max classes
* better defined difficulty (make sure to check that it was converted to desired settings)
* rule and porn slave variables objectified
* FS naming is now player selectable instead of a priority
* minor fixes and JSification
## [0.10.7.1-3.0.0] - 2019-11-21
* added FS Intellectual Dependency
* added FS Slave Professionalism
* added FS Statuesque Glorification
* added FS Petite Admiration
* minor bug fixes
* eyes currently in a state of flux
## [0.10.7.1-2.9.2] - 2019-11-09
* SugarCube updated to 2.30.0
* RA told to start working properly again
* 3.0.0 work (SP research - Bimbo slave names)
* various minor fixes and cleaning
## [0.10.7.1-2.9.1] - 2019-10-28
* beta 3.0.0 work (schoolroom remodel)
* added ability to reject delivered custom slaves without closing the order
* dairy job requirements adjusted
* RA label tweaks and fixes
* fixes
* saTakeClasses JSification
## [0.10.7.1-2.9.0] - 2019-10-15
* corporation overhauling
* some minor ui settings
* fixes and cleaning
* beta 3.0.0 work
## [0.10.7.1-2.8.2] - 2019-10-01
* amputation rework
* support for missing eyes
* added RA controls for birth and abortion tallies
* fixes and cleaning
## [0.10.7.1-2.8.1] - 2019-09-03
* amputation rework nearing completion
* tweaks to the RA and facility workers
* altered gender fund bimbo law (it now focuses on lack of education instead)
* fixes and cleaning
## [0.10.7.1-2.8.0] - 2019-08
* large update to the nursery beta content
* fixes and cleaning
## [0.10.7.1-2.7.0] - 2019-08
* secExp refactoring + expansion
* amputation rework in progress
* development of FCHost
## [0.10.7.1-2.6.0] - 2019-07-31
* scar system added
* partial amputation and amp rework underway
* four wip FSs now neighbor ready
* player slave impregnation bug fixed
* fixes and cleaning
## [0.10.7.1-2.5.3] - 2019-07-09
* SugarCube updated to 2.29.0
* incest toggle added
* added more watersports content
* various fixes and cleanings
## [0.10.7.1-2.5.2] - 2019-06-27
* fixes
## [0.10.7.1-2.5.1] - 2019-06-17
* fixes
* more vignettes added
## [0.10.7.1-2.5.0] - 2019-06-14
* RA refactoring
* multibranding
* added support for gloves and arm accessories
* expanded the traitor event line
* superfetation tweaks
* preg analysis can now identify genetic quirks in fetuses
* enabled weight gain/loss genetic quirks
* added androgyny genetic quirk
* fixes
## [0.10.7.1-2.4.0] - 2019-05-25
* unified cybermod with vanilla
* major pronoun work (99.9% completion)
* slave assignment links improved
* facility transfer tab added to facility assignment
* new slave school specializing in nulled slaves
* added a drug to force erections
* aphrodisiacs counter erectile dysfunction
* added birth tracking tattoo
* added event to revive FCNN
* added upgrade to gene lab allowing further genetic quirk detection and control
* dwarfism and gigantism genetic quirks added
* added genetic muscle gain and loss
* added dick and testicle branding
* fixed branding
* breast implants now impact milk production based on % implant
* many new names added to lacking name pools
* restored chem summary to the clinic
* fixes
## [0.10.7.1-2.3.8] - 2019-04-17
* fixes
## [0.10.7.1-2.3.7] - 2019-04-15
* converted saWhore to js
* added rules summary to the RA
* fixes
## [0.10.7.1-2.3.6] - 2019-04-14
* fixes
## [0.10.7.1-2.3.5] - 2019-04-13
* fixes
## [0.10.7.1-2.3.4] - 2019-04-12
* fixed issues with salon skin treatments
* fixed inflation errors
## [0.10.7.1-2.3.3]
* fixes
## [0.10.7.1-2.3.2] - 2019-04-11
* fixes
* tweaked need
## [0.10.7.1-2.3.1]
* major fixes to slave skills (BC required)
## [0.10.7.1-2.3.0] - 2019-04-09
* Arcade overhauled
* population now affects demand
* added superfetation genetic quirk
* added rear lipedema genetic quirk (constant ass growth)
* many new names and nicknames
* player can now be impregnated during the futanari sister orgy
* added tracking for futanari sister impregnation
* player medicine and trading skill now more useful
* easier to passively gain slaving skill
* artificial eyes better managed
* tweaks to FCTV
* added overalls outfit
* UI changes
* slave data structural changes
* tanning and skin color tweaks
* fixes
* code cleaning
## [0.10.7.1-2.2.5] - 2019-03-15
* fixes
* code cleaning
* CSS tweaks to intro summary
## [0.10.7.1-2.3.4] - 2019-03-13
* fixes
* code cleaning
* player engineering skill now functional
## [0.10.7.1-2.2.3] - 2019-03-11
* fixes
* CSS tweaks
* body modification reactions expanded
## [0.10.7.1-2.2.2]
* fixes
* code cleaning
## [0.10.7.1-2.2.1] - 2019-03-10
* fixes
* code cleaning
## [0.10.7.1-2.2.0] - 2019-03-09
* overhauled chastity
* overhauled reputation tracking
* reputation is now harder to build the higher it gets
* ear shaping surgeries
* horn implant surgeries
* tail socket cybernetics port and tails
* taste and smell senses
* fertility diet no longer blocked by chastity
* RA can now apply contraceptives to postpartum slaves
* RA can now manage basic abortions
* added abortion tracking tattoos
* added bulk incubator retrieval
* added "albinism", "heterochromia", "pFace" and "uFace" genetic traits
* added sexy Santa outfit
* watersports is now toggleable
* added option for force surname-name on all slaves
* fixes
* various code cleaning
## [0.10.7.1-2.1.6] - 2019-02-08
* fixes
* cleaning
* adjustments to secEx balances
## [0.10.7.1-2.1.5] - 2019-02-06
* fixes
* nox/deepmurk vector art now reflects basic height
## [0.10.7.1-2.1.4] - 2019-02-04
* fixes
* penthouse milkers upgrade now only milks
* "well hung" can now apply to female slave development
* more code cleaning
## [0.10.7.1-2.1.3] - 2019-02-02
* enabled "well hung" genetic quirk
* fixes
## [0.10.7.1-2.1.2] - 2019-02-01
* fixes
## [0.10.7.1-2.1.1]
* fixes
## [0.10.7.1-2.1.0]
* added ear surgery (elf)
* groundwork for multiple marriage
* fixes and cleaning
## [0.10.7.1-2.0.2] - 2019-01-29
* fixes
## [0.10.7.1-2.0.1]
* fixes
## [0.10.7.1-2.0.0] - 2019-01-28
* core SugarCube changes (now built from source)
## [0.10.7.1-1.7.1] - 2019-01-28
* fixes
## [0.10.7.1-1.7.0] - 2019-01-26
* corporation overhauled
* more farmyard development
* food resource and management (optional)
* fixes
## [0.10.7.1-1.6.4] - 2019-01-23
* fixes
## [0.10.7.1-1.6.3] - 2019-01-21
* fixes
* sufficiently grown babies may survive slave bursting
## [0.10.7.1-1.6.2]
* more budget fixes to seeUnit and pPeaceKeepersDeficit
## [0.10.7.1-1.6.1]
* fixed an error with cloning
## [0.10.7.1-1.6.0]
* overhauled budget tracking
* embedded vector art now handled in JS
* fixes
## [0.10.7.1-1.5.9] - 2019-01-16
* fixes and cleaning
## [0.10.7.1-1.5.8] - 2019-01-13
* fixes
* belly implant microfilter can be installed anally
* cleaning
## [0.10.7.1-1.5.7] - 2019-01-12
* fixes
* improved RA accent handling
* backend code work
## [0.10.7.1-1.5.6] - 2019-01-11
* now with even more fixes and cleaning
* tweaked preg biometrics to require ovaries of some sort
## [0.10.7.1-1.5.5] - 2019-01-09
* more fixes and cleaning
## [0.10.7.1-1.5.4] - 2019-01-08
* more fixes and cleaning
## [0.10.7.1-1.5.3] - 2019-01-05
* fixes
* more cleaning
* `[!]` appears when you can upgrade an FS now too
## [0.10.7.1-1.5.2] - 2019-01-03
* fixes
* more cleaning
## [0.10.7.1-1.5.1] - 2019-01-02
* fixes
## [0.10.7.1-1.5.0] - 2019-01-01
* fixed cloning
* added an ovary implant to boost fertility
* added an ovary implant to that doubles ovulation
* added an ovary implant that forces asexual reproduction
* resetting a slave in starting girls no longer wipes origins
* various code clean up
* fixes
## [0.10.7.1-1.4.4] - 2018-12-28
* sent cloning back to cheatmode for more testing
* fixes
## [0.10.7.1-1.4.3] - 2018-12-27
* added cloning
* fixes
## [0.10.7.1-1.4.2] - 2018-12-23
* Sugarcube updated to 2.28.2
* cellblock, schoolroom and master suite now have added ways to maintain natural lactation
* fixes
* code cleaning
## [0.10.7.1-1.4.1] - 2018-12-21
* enabled first run of cloning in cheatmode (slave cloning has issues)
* fixes
* more economy work
## [0.10.7.1-1.4.0] - 2018-12-19
* dispensary broken down into pharm fabricator, organ farm, implant manufactory and gene lab
* lots of SF work
* better naming support in childgen
* fixes
* cleaning
## [0.10.7.1-1.3.8] - 2018-12-16
* fixes
* code cleanup
* custom shares removed from the corporation (too buggy)
* added faceShape to genetics
## [0.10.7.1-1.3.7] - 2018-12-15
* added dairy setting to induce lactation in non-cum slaves
* fixes
* code cleaning
## [0.10.7.1-1.3.6] - 2018-12-13
* added salvage code for saves affected by the bug fixed in v4
## [0.10.7.1-1.3.5]
* fixes
## [0.10.7.1-1.3.4]
* critical bug fix for genetics corruption
## [0.10.7.1-1.3.3] - 2018-12-12
* fixes
## [0.10.7.1-1.3.2]
* tweaked natural lactation logic (now decreases at endWeek start and engorges at endWeek end)
* added a rule for facility heads to direct them on how to handle their lactation
* fixes
## [0.10.7.1-1.3.1] - 2018-12-11
* fixes
## [0.10.7.1-1.3.0] - 2018-12-10
* pregnancy size/progress tracking overhauled
* natural lactation overhauled
* natural lactation can be induced from excessive breast play and will dry up if unused
* ignored natural lactation causes breast to engorge
* added new repop related trendsetting policies
* more art from deepmurk
* fixes
## [0.10.7.1-1.2.3] - 2018-12-05
* fixes
## [0.10.7.1-1.2.2] - 2018-12-04
* fixes
## [0.10.7.1-1.2.1] - 2018-12-03
* fixes
* general pronoun work
* cleaning
## [0.10.7.1-1.2.0] - 2018-12-02
* added universal rule to send children to the repop breeder school if available
* added universal rule to automatically decide the fate of born children
* hormone balance now displayed in slave summary + other QoL changes
* fixes
## [0.10.7.1-1.1.5] - 2018-12-01
* fixes
* added ability to overwrite saves
* removed a long term, ever increasing problem related to SugarCube
## [0.10.7.1-1.1.4] - 2018-11-30
* added buttplug attachments to the RA
* fixes
## [0.10.7.1-1.1.3] - 2018-11-29
* more fixes
* uncommented incubator semen harvesting
## [0.10.7.1-1.1.2] - 2018-11-28
* fixed bad string pass
* tweaked how slave recruit events are handled
## [0.10.7.1-1.1.1]
* fixes
## [0.10.7.1-1.1.0] - 2018-11-27
* fixes
* more SF tweaking
* major changes to population tracking + tourism
* chaste release rule added
* added gapped teeth
* added ability to rename incubating children
## [0.10.7.1-1.0.4] - 2018-11-26
* fixes
* lots of fixes
## [0.10.7.1-1.0.3] - 2018-11-25
* fixed an issue with csec and reservations
## [0.10.7.1-1.0.2]
* fixes
* more names and stuff (I think)
* citizen enslavements now respect subjugationist laws
## [0.10.7.1-1.0.1]
* fixes
* more art from deepmurk
* assay widgets entirely converted to JS
## [0.10.7.1-1.0.0] - 2018-11-23
* WIP content added to nursery/farmyard
* genetic sequencing moved out of dispensary
* added advanced pregnancy tracking
* ability to name developing babies
* ability to terminate unwanted ova early in pregnancy
* added surrogacy
* added fertilized ovum transplant
* genetics now determined at conception, rather than birth
* pregSource normalization
## [0.10.7.1-0.10.48] - 2018-11-08
* added an option to permit and deny $seeDicks control over child gender
* minor fixes
## [0.10.7.1-0.10.47] - 2018-11-06
* fixes
* moved halter top dress and mini dress back to baseline clothing
## [0.10.7.1-0.10.46]
* fixes
* migrated a bunch of clothing to wardrobe purchases
## [0.10.7.1-0.10.45] - 2018-11-05
* fixed slaves not dying in the pit
* fixes
* more pronoun work
## [0.10.7.1-0.10.44] - 2018-11-04
* more pronoun work
* fixes to possible issues with .pluck()
* optimized dairyReport a bit and condensed four for loops into a single one
## [0.10.7.1-0.10.43] - 2018-11-03
* anon's new RESS event added
* fixes
* RA now can set chooses own job
## [0.10.7.1-0.10.42] - 2018-11-02
* fixes
* new random non-individual event added
* some more JS conversion
* starting Sup/Sub arcologies now retain their racial choice
## [0.10.7.1-0.10.41] - 2018-11-01
* fixes
* traitor slave no longer exists outside the realm of time
## [0.10.7.1-0.10.40] - 2018-10-31
* fixes
## [0.10.7.1-0.10.39]
* weather now affects the economy and tourism
* fixes and text corrections
## [0.10.7.1-0.10.38] - 2018-10-29
* added pregmodfan's broodmother hacks
* fixes
## [0.10.7.1-0.10.37] - 2018-10-28
* fixes
## [0.10.7.1-0.10.36]
* slave price economy tweaking
* fixes
## [0.10.7.1-0.10.35] - 2018-10-27
* fixes
* enabled elasticity treatment
* another recruit event from the todo pile
## [0.10.7.1-0.10.34] - 2018-10-26
* added a couple new recruit events that have been sitting in my todo pile for ages
* fixes
* major changes to how data is cleaned after cheatmode/during backwards compatibility
* more fixes to bellies by deepmurk
* ripped out several large chunks of walkPast into JS and apparently didn't make a dent in it
## [0.10.7.1-0.10.33] - 2018-10-25
* fixes
* anon's art fixes for prosthetic limbs
* fixed the legacy SugarCube header naming scheme to actually make sense
## [0.10.7.1-0.10.32] - 2018-10-24
* fixes
## [0.10.7.1-0.10.31]
* fixes
* tweaks to how geneModding is obtained via dispensary (prices not final)
## [0.10.7.1-0.10.30] - 2018-10-23
* economy difficulty tweaks
* economy can now be set to fluctuate over time
* fixes
## [0.10.7.1-0.10.29] - 2018-10-22
* genemod initialization
* conversion of NCS to a genemod
* fixes
## [0.10.7.1-0.10.28]
* added surgical reductions for excess foreskins and scrotums
* fixes
## [0.10.7.1-0.10.27] - 2018-10-21
* fixes
## [0.10.7.1-0.10.26] - 2018-10-20
* fixes
## [0.10.7.1-0.10.25]
* implemented the uterine restraint mesh from the black market
* fixes and tweaks
* more vectors from deepmurk
## [0.10.7.1-0.10.24] - 2018-10-19
* fixes
* more vectors from deepmurk
## [0.10.7.1-0.10.23] - 2018-10-18
* fixes
* typo corrections
* pregnancy support band descriptions
## [0.10.7.1-0.10.22] - 2018-10-17
* fixes
* added pregnancy support band (still working on descriptions)
## [0.10.7.1-0.10.21]
* fixes
* tweaks to burst chances
* more work clothing vectors from deepmurk
## [0.10.7.1-0.10.20]
* fixes
* pussy licking slave interact
## [0.10.7.1-0.10.19] - 2018-10-16
* fixes
## [0.10.7.1-0.10.18] - 2018-10-15
* fixes
* slave creation is now JS based
* added genes as a check to the RA
## [0.10.7.1-0.10.17]
* fixes
## [0.10.7.1-0.10.16]
* fixes
* chem no longer affects miscarriage rates.
## [0.10.7.1-0.10.15] - 2018-10-14
* several new gigantic belly focused slave interactions
* fixes
## [0.10.7.1-0.10.14] - 2018-10-13
* fixes
## [0.10.7.1-0.10.13]
* added premature birth and miscarriage (optional)
* fixes
* more work from deepmurk
## [0.10.7.1-0.10.13] - 2018-10-12
* fixes
## [0.10.7.1-0.10.11]
* fixes
* tweaks to lispReplace()
## [0.10.7.1-0.10.10]
* fixes
* adjustments to how intelligence and education affects slave price
* new aid event
## [0.10.7.1-0.10.9] - 2018-10-11