-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos_1138379-1139308.html
1907 lines (1834 loc) · 120 KB
/
Chaos_1138379-1139308.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
<!DOCTYPE html>
<html>
<head>
<title>Hoboleaks: Chaos_Previous (Build: 1138379) to Chaos_Next (Build: 1139308)</title>
<meta name="title" content="Client Comparison: Chaos_Previous (Build: 1138379) to Chaos_Next (Build: 1139308) | Hoboleaks">
<meta name="description" content="Generated @ 2017-04-28 14:32:19 EVE Time">
<meta name="og:title" content="Hoboleaks: Chaos_Previous (Build: 1138379) -> Chaos_Next (Build: 1139308)">
<meta name="og:description" content="Generated @ 2017-04-28 14:32:19 EVE Time">
<meta name="og:image" content="http://hoboleaks.space/sitepreview.png">
<meta name="twitter:title" content="Hoboleaks: Chaos_Previous (Build: 1138379) -> Chaos_Next (Build: 1139308)">
<meta name="twitter:description" content="Generated @ 2017-04-28 14:32:19 EVE Time">
<meta name="twitter:image" content="http://hoboleaks.space/sitepreview.png">
<meta name="genTime" content="1493389939734">
<meta name="genDate" content="2017-04-28 14:32:19">
<meta charset="UTF-8">
<style>
table {
width:1280px;
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
border-collapse: collapse;
}
td, th {
border: 1px solid black;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #DBDBDB;
}
tr.unimportant {
opacity: 0.5;
font-size: 8pt;
}
.hidden {
display: none;
}
td.mini {
font-size: 8pt;
}
p.mini {
font-family: arial, tahoma, sans-serif;
font-size: 8pt;
}
p {
font-family: arial, tahoma, sans-serif;
}
p.mini2 {
font-family: arial, tahoma, sans-serif;
font-size: 5pt;
}
p.mini3 {
font-family: arial, tahoma, sans-serif;
font-size: 5pt;
color: gray;
}
p.kindasmall {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
margin: 5px 0px 5px 0px;
}
h1, h2, h3 {
font-family: arial, tahoma, sans-serif;
}
summary.bigsum {
font-family: arial, tahoma, sans-serif;
font-size: 15pt;
}
summary.bigsum_disabled {
font-family: arial, tahoma, sans-serif;
color: #9E9E9E;
font-size: 15pt;
}
summary.smallsum {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
}
.smallinput {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
}
p.scriptnotify {
font-family: arial, tahoma, sans-serif;
color: red;
font-size: 12pt;
}
p.scriptnotifysmall {
font-family: arial, tahoma, sans-serif;
color: red;
font-size: 9pt;
}
p.scriptnotifysmaller {
font-family: arial, tahoma, sans-serif;
color: red;
font-size: 5pt;
}
div.simplebox {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
padding: 5px;
margin: 2px;
border-left-style: dotted;
}
ul {
padding-left:20px;
}
div.footer {
position: fixed;
bottom: 20px;
height: 20px;
width: 20px;
border-style: none;
}
div.footer1 {
right: 20px;
}
div.footer2 {
left: 20px;
visibility: hidden;
}
div.footer:hover {
border-style: dotted;
border-color: #F2F2F2;
}
.selected {
background-color: #C4F0FF;
}
tr.selected:nth-child(even) {
background-color: #C4F0FF;
}
.noscripthidden {
display: none;
}
/* IE 6 */
* html #footer {
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}
</style>
<script type="text/javascript">
genBaseHash = "highlight" + 1493389939734
function selectText(containerid, hasWaited) {
hasWaited = hasWaited || false
if (hasWaited == false) {
window.setTimeout(function(){selectText(containerid, true)}, 50); /* I'm sure I'm in the wrong here somehow and not Chrome, but this is how we're fixing it soooooooo yeah. */
return
}
var node = document.getElementById(containerid);
if (document.selection) {
var range = document.body.createTextRange();
range.moveToElementText(node);
range.select();
} else if (window.getSelection) {
var range = document.createRange();
range.selectNodeContents(node);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
}
}
function hasClass(node, className) {
return (node.className && node.className.indexOf(className) != -1)
}
function getHashValues() {
hashValues = window.location.hash.slice(1).split(",")
if (!isHashValid(hashValues)) {
return [genBaseHash]
}
if (hashValues.length == 1 && hashValues[0] == "") {
return [genBaseHash]
}
return hashValues
}
function isHashValid(hashValues) {
if (hashValues[0] == genBaseHash) {
return true
}
return false
}
function hashHasID(nodeID) {
hashValues = getHashValues()
idPos = hashValues.indexOf(nodeID)
ret = (idPos != -1)
return
}
function updateSelectablesFromHash() {
hashValues = getHashValues()
oldSelected = document.getElementsByClassName("selected")
for (var i=oldSelected.length-1; i >= 0; i--) {
node = oldSelected[i]
if (!hashHasID(getNodeID(node))) {
deselectNode(node)
}
}
for (var i=0; i < hashValues.length; i++) {
currentID = hashValues[i]
idName = "cid-" + currentID
node = document.getElementById(idName)
if (node != null) {
selectNode(node)
updateInheritance(node)
}
}
}
function updateInheritance(node, isDetail) {
isDetail = isDetail || false
if (node == null || node.tagName == "BODY") {
return
}
if (hasClass(node, "selectParent")) {
node.classList.add("selected")
}
if (node.tagName == "DETAILS") {
updateInheritance(node.firstElementChild, true)
}
if (!isDetail) {
return updateInheritance(node.parentNode)
}
}
function selectNode(node) {
node.classList.add("selected")
}
function deselectNode(node) {
node.classList.remove("selected")
}
function getNodeID(node) {
nodeID = node.id.slice(4)
return nodeID
}
function toggleNodeHash(node) {
nodeID = node.id.slice(4)
hashValues = getHashValues()
idPos = hashValues.indexOf(nodeID)
if (idPos == -1) {
hashValues.push(nodeID)
}
else {
hashValues.splice(idPos, 1)
}
window.location.hash = hashValues.join()
}
function getSelectableNode(node) {
/* We recursively iterate our way up the tree to see if any part of it is selectable. */
if (node == null) {
return null
}
if (hasClass(node, "selectable")) {
return node
}
return getSelectableNode(node.parentNode)
}
window.onhashchange = function() {
updateSelectablesFromHash()
}
window.onload = function() {
document.body.onclick = function(e){
if (!e.altKey) {
return
}
if (window.event) {
clickedNode = event.srcElement;
}
else {
clickedNode = e.target
}
selectableNode = getSelectableNode(clickedNode)
if (selectableNode != null) {
toggleNodeHash(selectableNode)
return false
}
}
updateSelectablesFromHash()
}
</script>
</head>
<body>
<h1>Comparing Chaos_Previous (Build: 1138379) to Chaos_Next (Build: 1139308)</h1>
<noscript>
<nobr>
<p class="mini">Generated @ 2017-04-28 14:32:19 EVE Time (UTC)</p>
<p class="scriptnotify" style="display:inline;">You've disabled javascript. This made the menu so sad that it self-destructed. I hope you're happy now.</p>
<p class="scriptnotifysmaller" style="display:inline;">You monster.</p>
</nobr>
<p class="scriptnotifysmall">This page should still kinda work though.</p>
</noscript>
<iframe id="timer" src="timerSection#2,1493389939734" style="border:none; display:none;" height="40px" width="800px"> </iframe>
<iframe id="navMenu" src="" style="border:none; display:none;" height="40px" width="800px"> </iframe>
<script>
function getStrippedPageName(pageName) {
dot = pageName.indexOf(".")
if (dot != -1) {
pageName = pageName.slice(0, dot)
}
slash = pageName.indexOf("/")
if (slash == 0) {
pageName = pageName.slice(1)
}
return pageName || "index"
}
document.getElementById("navMenu").style.display = "block";
document.getElementById("navMenu").src = "nav.html?curPage=" + getStrippedPageName(window.location.pathname);
document.getElementById("timer").style.display = "block";
</script>
<p class="mini">Note: Chaos is an internal development server containing many odd projects and changes, many of which may never actually make it to TQ. Speculate responsibly.</p>
<p class="kindasmall">Click the categories below to expand them! <a href="confused.html">Confused?</a></p>
<!--<h2 id="items">Items</h2>-->
<details id="newitems">
<summary class="selectParent bigsum">New Items (14 Entries)</summary>
<table>
<details>
<summary class="smallsum" onClick="selectText('newItemsNotepad')">Show/Hide EVE notepad list for in-game viewing.</summary><div class="simplebox" id="newItemsNotepad"><url=showinfo:45537>Standup Composite Reactor I</url><br><url=showinfo:45538>Standup Hybrid Reactor I</url><br><url=showinfo:45539>Standup Biochemical Reactor I</url><br><url=showinfo:45540>Standup Composite Reactor I Blueprint</url><br><url=showinfo:45541>Standup Hybrid Reactor I Blueprint</url><br><url=showinfo:45542>Standup Biochemical Reactor I Blueprint</url><br><url=showinfo:45544>Standup M-Set Thukker Capital Component Manufacturing Material Efficiency</url><br><url=showinfo:45545>Standup M-Set Thukker Capital Component Manufacturing Material Efficiency Blueprint</url><br><url=showinfo:45546>Standup L-Set Thukker Capital Component Manufacturing Efficiency</url><br><url=showinfo:45547>Standup L-Set Thukker Capital Component Manufacturing Efficiency Blueprint</url><br><url=showinfo:45548>Standup XL-Set Thukker Structure and Component Manufacturing Efficiency</url><br><url=showinfo:45549>Standup XL-Set Thukker Structure and Component Manufacturing Efficiency Blueprint</url><br><url=showinfo:45550>Standup Hyasyoda Research Lab</url><br><url=showinfo:45551>Standup Hyasyoda Research Lab Blueprint</url><br></div></details>
<tr>
<!--<th>[[title4]]</th>-->
<th>TypeID & Name</th>
<th>Description</th>
<th>Group</th>
<th>Attributes</th>
</tr>
<tr class="selectable" id="cid-1">
<td>45537 - <b>Standup Composite Reactor I</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Resource Processing Service Module</td>
<td width="300px"><details>
<summary>Click to toggle showing the 19 attributes.</summary> <b>Mass:</b> 500.0<br> <b>Volume:</b> 4000.0<br> <b>typeNameID:</b> 526385<br> <b>iconID:</b> 21597<br> <b>basePrice:</b> 0.0<br> <b>Can be fitted to:</b> 1406.0<br> <b>structureItemVisualFlag:</b> 1.0<br> <b>typeID:</b> 45537<br> <b>radius:</b> 1.0<br> <b>Capacity:</b> 0.0<br> <b>Service Module Cycle Fuel Need:</b> 12.0<br> <b>CPU usage:</b> 1000.0<br> <b>Powergrid Usage:</b> 200000.0<br> <b>published:</b> False<br> <b>portionSize:</b> 1<br> <b>Service Module Fuel Need:</b> 1136.0<br> <b>groupID:</b> 1322<br> <b>Service Module Online Fuel Need:</b> 864.0<br> <b>Max Modules Of This Type Allowed:</b> 1.0<br></details></td>
</tr>
<tr class="selectable" id="cid-2">
<td>45538 - <b>Standup Hybrid Reactor I</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Resource Processing Service Module</td>
<td width="300px"><details>
<summary>Click to toggle showing the 19 attributes.</summary> <b>Mass:</b> 500.0<br> <b>Volume:</b> 4000.0<br> <b>typeNameID:</b> 526386<br> <b>iconID:</b> 21597<br> <b>basePrice:</b> 0.0<br> <b>Can be fitted to:</b> 1406.0<br> <b>structureItemVisualFlag:</b> 1.0<br> <b>typeID:</b> 45538<br> <b>radius:</b> 1.0<br> <b>Capacity:</b> 0.0<br> <b>Service Module Cycle Fuel Need:</b> 12.0<br> <b>CPU usage:</b> 1000.0<br> <b>Powergrid Usage:</b> 200000.0<br> <b>published:</b> False<br> <b>portionSize:</b> 1<br> <b>Service Module Fuel Need:</b> 1136.0<br> <b>groupID:</b> 1322<br> <b>Service Module Online Fuel Need:</b> 864.0<br> <b>Max Modules Of This Type Allowed:</b> 1.0<br></details></td>
</tr>
<tr class="selectable" id="cid-3">
<td>45539 - <b>Standup Biochemical Reactor I</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Resource Processing Service Module</td>
<td width="300px"><details>
<summary>Click to toggle showing the 19 attributes.</summary> <b>Mass:</b> 500.0<br> <b>Volume:</b> 4000.0<br> <b>typeNameID:</b> 526387<br> <b>iconID:</b> 21597<br> <b>basePrice:</b> 0.0<br> <b>Can be fitted to:</b> 1406.0<br> <b>structureItemVisualFlag:</b> 1.0<br> <b>typeID:</b> 45539<br> <b>radius:</b> 1.0<br> <b>Capacity:</b> 0.0<br> <b>Service Module Cycle Fuel Need:</b> 12.0<br> <b>CPU usage:</b> 1000.0<br> <b>Powergrid Usage:</b> 200000.0<br> <b>published:</b> False<br> <b>portionSize:</b> 1<br> <b>Service Module Fuel Need:</b> 1136.0<br> <b>groupID:</b> 1322<br> <b>Service Module Online Fuel Need:</b> 864.0<br> <b>Max Modules Of This Type Allowed:</b> 1.0<br></details></td>
</tr>
<tr class="selectable" id="cid-4">
<td>45540 - <b>Standup Composite Reactor I Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Module Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45540<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526388<br> <b>iconID:</b> 21597<br> <b>published:</b> False<br> <b>basePrice:</b> 500000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1707<br></details></td>
</tr>
<tr class="selectable" id="cid-5">
<td>45541 - <b>Standup Hybrid Reactor I Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Module Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45541<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526389<br> <b>iconID:</b> 21597<br> <b>published:</b> False<br> <b>basePrice:</b> 500000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1707<br></details></td>
</tr>
<tr class="selectable" id="cid-6">
<td>45542 - <b>Standup Biochemical Reactor I Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Module Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45542<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526390<br> <b>iconID:</b> 21597<br> <b>published:</b> False<br> <b>basePrice:</b> 500000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1707<br></details></td>
</tr>
<tr class="selectable" id="cid-7">
<td>45544 - <b>Standup M-Set Thukker Capital Component Manufacturing Material Efficiency</b></td>
<td style="max-width: 500px;">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space.<br><br>The Standup M-Set Thukker Capital Component Manufacturing Material Efficiency rig provides a means for structure operators to decrease material requirements when manufacturing capital ship construction components in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</td>
<td style="max-width: 250px;">Structure Engineering Rig M - Basic Capital Component ME</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 526395<br> <b>typeID:</b> 45544<br> <b>radius:</b> 100<br> <b>Mass:</b> 200<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 10<br> <b>typeNameID:</b> 526394<br> <b>iconID:</b> 21729<br> <b>published:</b> True<br> <b>marketGroupID:</b> 2347<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1839<br></details></td>
</tr>
<tr class="selectable" id="cid-8">
<td>45545 - <b>Standup M-Set Thukker Capital Component Manufacturing Material Efficiency Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Rig Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45545<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526396<br> <b>iconID:</b> 3198<br> <b>published:</b> True<br> <b>basePrice:</b> 100000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1708<br></details></td>
</tr>
<tr class="selectable" id="cid-9">
<td>45546 - <b>Standup L-Set Thukker Capital Component Manufacturing Efficiency</b></td>
<td style="max-width: 500px;">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space.<br><br>The Standup L-Set Thukker Capital Component Manufacturing Efficiency rig provides a means for structure operators to decrease both material and time requirements for manufacturing capital ship construction components in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</td>
<td style="max-width: 250px;">Structure Engineering Rig L - Basic Capital Component Efficiency</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 526398<br> <b>typeID:</b> 45546<br> <b>radius:</b> 100<br> <b>Mass:</b> 200<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 20<br> <b>typeNameID:</b> 526397<br> <b>iconID:</b> 21729<br> <b>published:</b> True<br> <b>marketGroupID:</b> 2348<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1861<br></details></td>
</tr>
<tr class="selectable" id="cid-10">
<td>45547 - <b>Standup L-Set Thukker Capital Component Manufacturing Efficiency Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Rig Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45547<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526399<br> <b>iconID:</b> 21729<br> <b>published:</b> True<br> <b>basePrice:</b> 500000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1708<br></details></td>
</tr>
<tr class="selectable" id="cid-11">
<td>45548 - <b>Standup XL-Set Thukker Structure and Component Manufacturing Efficiency</b></td>
<td style="max-width: 500px;">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space. When installed in low security space it provides enhanced benefits to the materials required for construction of capital ship components and normal benefits to the construction of other components, Upwell structures, structure modules, structure rigs, starbase structures and fuel blocks.<br><br>The Standup XL-Set Thukker Structure and Component Manufacturing Efficiency rig provides a means for structure operators to decrease both material and time requirements manufacturing components, Upwell structures, structure modules, structure rigs, starbase structures and fuel blocks in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</td>
<td style="max-width: 250px;">Structure Engineering Rig XL - Structure and Component Efficiency</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 526401<br> <b>typeID:</b> 45548<br> <b>radius:</b> 100<br> <b>Mass:</b> 200<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 40<br> <b>typeNameID:</b> 526400<br> <b>iconID:</b> 21729<br> <b>published:</b> True<br> <b>marketGroupID:</b> 2349<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1869<br></details></td>
</tr>
<tr class="selectable" id="cid-12">
<td>45549 - <b>Standup XL-Set Thukker Structure and Component Manufacturing Efficiency Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Rig Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45549<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526402<br> <b>iconID:</b> 21729<br> <b>published:</b> True<br> <b>basePrice:</b> 2500000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1708<br></details></td>
</tr>
<tr class="selectable" id="cid-13">
<td>45550 - <b>Standup Hyasyoda Research Lab</b></td>
<td style="max-width: 500px;">The Standup Hyasyoda Research Lab is a service module that allows Research activity when installed into an Upwell technology structure. This particular variant of the basic Research Lab design was modified by the Hyasyoda megacorporation to consume less power and fuel in day to day operation.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.</td>
<td style="max-width: 250px;">Structure Engineering Service Module</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 526404<br> <b>typeID:</b> 45550<br> <b>radius:</b> 1<br> <b>Mass:</b> 500<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 4000<br> <b>typeNameID:</b> 526403<br> <b>iconID:</b> 3006<br> <b>published:</b> True<br> <b>marketGroupID:</b> 2332<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1415<br></details></td>
</tr>
<tr class="selectable" id="cid-14">
<td>45551 - <b>Standup Hyasyoda Research Lab Blueprint</b></td>
<td style="max-width: 500px;">No Description</td>
<td style="max-width: 250px;">Structure Module Blueprint</td>
<td width="300px"><details>
<summary>Click to toggle showing the 11 attributes.</summary> <b>typeID:</b> 45551<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 526405<br> <b>iconID:</b> 21596<br> <b>published:</b> True<br> <b>basePrice:</b> 1000000000<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1707<br></details></td>
</tr>
</table>
</details>
<details id="removeditems">
<summary class="selectParent bigsum_disabled" onclick="return false">Removed Items (0 Entries)</summary>
<p class="kindasmall">Please note that a "removed" item usually means the item was just not yet added to the "newer" build.</p>
<table>
<tr>
<th>TypeID & Name</th>
<th>Description</th>
<th>Group</th>
<th>Attributes</th>
</tr>
</table>
</details>
<details id="changedblueprints">
<summary class="selectParent bigsum">Changed Blueprints BETA (10 Entries)</summary>
<table>
<tr>
<th>Blueprint Name</th>
<th>Old BP Data</th>
<th>New BP Data</th>
<th>Raw Diff</th>
</tr>
<tr class="selectable" id="cid-15">
<td>45540 - <b>Standup Composite Reactor I Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:28800 ME:12600 TE:12600 Limit:5x<br><b>Materials:</b><br>4x Integrity Response Drones<br>4x Recursive Computing Module<br>4x Wetware Mainframe<br>5x Broadcast Node<br>5x Self-Harmonizing Power Core<br>5x Sterile Conduits<br>7x Nano-Factory<br>8x Organic Mortar Applicators<br>350x Megacyte<br>800x Zydrine<br>2000x Nocxium<br>16000x Isogen<br>50000x Mexallon<br>200000x Pyerite<br>850000x Tritanium<br><b>Skills:</b><br>Outpost Construction I<br><b>Outcome:</b><br>1x Standup Composite Reactor I (45537)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:28800 ME:12600 TE:12600 Limit:5x<br>Materials:<br>4x 2868<br>4x 2871<br>4x 2876<br>5x 2867<br>5x 2872<br>5x 2875<br>7x 2869<br>8x 2870<br>350x 40<br>800x 39<br>2000x 38<br>16000x 37<br>50000x 36<br>200000x 35<br>850000x 34<br>Skills:<br>3400 I<br>Outcome:<br>1x 45537</ins></td>
</tr><tr class="selectable" id="cid-16">
<td>45541 - <b>Standup Hybrid Reactor I Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:28800 ME:12600 TE:12600 Limit:5x<br><b>Materials:</b><br>2x Sterile Conduits<br>3x Broadcast Node<br>4x Organic Mortar Applicators<br>5x Integrity Response Drones<br>6x Recursive Computing Module<br>6x Self-Harmonizing Power Core<br>6x Wetware Mainframe<br>8x Nano-Factory<br>400x Megacyte<br>500x Zydrine<br>1500x Nocxium<br>14000x Isogen<br>62500x Mexallon<br>210000x Pyerite<br>800000x Tritanium<br><b>Skills:</b><br>Outpost Construction I<br><b>Outcome:</b><br>1x Standup Hybrid Reactor I (45538)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:28800 ME:12600 TE:12600 Limit:5x<br>Materials:<br>2x 2875<br>3x 2867<br>4x 2870<br>5x 2868<br>6x 2871<br>6x 2872<br>6x 2876<br>8x 2869<br>400x 40<br>500x 39<br>1500x 38<br>14000x 37<br>62500x 36<br>210000x 35<br>800000x 34<br>Skills:<br>3400 I<br>Outcome:<br>1x 45538</ins></td>
</tr><tr class="selectable" id="cid-17">
<td>45542 - <b>Standup Biochemical Reactor I Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:28800 ME:12600 TE:12600 Limit:5x<br><b>Materials:</b><br>3x Integrity Response Drones<br>4x Broadcast Node<br>4x Self-Harmonizing Power Core<br>5x Nano-Factory<br>5x Recursive Computing Module<br>5x Wetware Mainframe<br>8x Sterile Conduits<br>9x Organic Mortar Applicators<br>375x Megacyte<br>1000x Zydrine<br>2500x Nocxium<br>20000x Isogen<br>55000x Mexallon<br>180000x Pyerite<br>750000x Tritanium<br><b>Skills:</b><br>Outpost Construction I<br><b>Outcome:</b><br>1x Standup Biochemical Reactor I (45539)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:28800 ME:12600 TE:12600 Limit:5x<br>Materials:<br>3x 2868<br>4x 2867<br>4x 2872<br>5x 2869<br>5x 2871<br>5x 2876<br>8x 2875<br>9x 2870<br>375x 40<br>1000x 39<br>2500x 38<br>20000x 37<br>55000x 36<br>180000x 35<br>750000x 34<br>Skills:<br>3400 I<br>Outcome:<br>1x 45539</ins></td>
</tr><tr class="selectable" id="cid-18">
<td>45545 - <b>Standup M-Set Thukker Capital Component Manufacturing Material Efficiency Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:? ME:? TE:? Limit:60x<br><b>Materials:</b><br>960x Contaminated Nanite Compound<br>1440x Fried Interface Circuit<br>1600x Contaminated Lorentz Fluid<br>1600x Defective Current Pump<br>1600x Smashed Trigger Unit<br>1600x Tangled Power Conduit<br>1600x Damaged Artificial Neural Network<br>1600x Charred Micro Circuit<br>1600x Conductive Polymer<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Standup M-Set Thukker Capital Component Manufacturing Material Efficiency (45544)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:? ME:? TE:? Limit:60x<br>Materials:<br>960x 25590<br>1440x 25601<br>1600x 25591<br>1600x 25592<br>1600x 25593<br>1600x 25594<br>1600x 25597<br>1600x 25599<br>1600x 25604<br>Skills:<br>3380 I<br>Outcome:<br>1x 45544</ins></td>
</tr><tr class="selectable" id="cid-19">
<td>45547 - <b>Standup L-Set Thukker Capital Component Manufacturing Efficiency Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:? ME:? TE:? Limit:40x<br><b>Materials:</b><br>3600x Tripped Power Circuit<br>7200x Contaminated Nanite Compound<br>10800x Fried Interface Circuit<br>12000x Contaminated Lorentz Fluid<br>12000x Defective Current Pump<br>12000x Smashed Trigger Unit<br>12000x Tangled Power Conduit<br>12000x Damaged Artificial Neural Network<br>12000x Charred Micro Circuit<br>12000x Conductive Polymer<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Standup L-Set Thukker Capital Component Manufacturing Efficiency (45546)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:? ME:? TE:? Limit:40x<br>Materials:<br>3600x 25598<br>7200x 25590<br>10800x 25601<br>12000x 25591<br>12000x 25592<br>12000x 25593<br>12000x 25594<br>12000x 25597<br>12000x 25599<br>12000x 25604<br>Skills:<br>3380 I<br>Outcome:<br>1x 45546</ins></td>
</tr><tr class="selectable" id="cid-20">
<td>45549 - <b>Standup XL-Set Thukker Structure and Component Manufacturing Efficiency Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:? ME:? TE:? Limit:30x<br><b>Materials:</b><br>36000x Tripped Power Circuit<br>72000x Contaminated Nanite Compound<br>108000x Fried Interface Circuit<br>120000x Contaminated Lorentz Fluid<br>120000x Defective Current Pump<br>120000x Smashed Trigger Unit<br>120000x Tangled Power Conduit<br>120000x Damaged Artificial Neural Network<br>120000x Charred Micro Circuit<br>120000x Conductive Polymer<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Standup XL-Set Thukker Structure and Component Manufacturing Efficiency (45548)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:? ME:? TE:? Limit:30x<br>Materials:<br>36000x 25598<br>72000x 25590<br>108000x 25601<br>120000x 25591<br>120000x 25592<br>120000x 25593<br>120000x 25594<br>120000x 25597<br>120000x 25599<br>120000x 25604<br>Skills:<br>3380 I<br>Outcome:<br>1x 45548</ins></td>
</tr><tr class="selectable" id="cid-21">
<td>45486 - <b>Pacifier Blueprint</b></td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>1x Tritanium<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Pacifier (44993)</td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>3x Fusion Reactor Unit<br>5x Megacyte<br>15x Sustained Shield Emitter<br>23x Construction Blocks<br>25x Zydrine<br>30x Morphite<br>30x Plasma Thruster<br>60x Nocxium<br>68x Gravimetric Sensor Cluster<br>165x Photon Microprocessor<br>300x Isogen<br>300x Tungsten Carbide Armor Plate<br>3000x Mexallon<br>9000x Pyerite<br>14000x Tritanium<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Pacifier (44993)</td>
<td width="300"><span>Copy:? ME:? TE:? Limit:1x<br>Materials:<br></span><del style="background:#ffe6e6;">1</del><ins style="background:#e6ffe6;">3x 11547<br>5x 40<br>15x 11558<br>23x 3828<br>25x 39<br>30x 11399<br>30x 11530<br>60x 38<br>68x 11534<br>165x 11541<br>300x 37<br>300x 11543<br>3000x 36<br>9000x 35<br>14000</ins><span>x 34<br>Skills:<br>3380 I<br>Outcome:<br>1x 44993</span></td>
</tr><tr class="selectable" id="cid-22">
<td>45487 - <b>Enforcer Blueprint</b></td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>1x Tritanium<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Enforcer (44995)</td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>30x Fusion Reactor Unit<br>57x Plasma Thruster<br>75x Construction Blocks<br>230x Megacyte<br>300x Morphite<br>300x Sustained Shield Emitter<br>495x Gravimetric Sensor Cluster<br>1100x Zydrine<br>1800x Photon Microprocessor<br>2200x Nocxium<br>3750x Tungsten Carbide Armor Plate<br>9500x Isogen<br>40000x Mexallon<br>95000x Pyerite<br>420000x Tritanium<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Enforcer (44995)</td>
<td width="300"><span>Copy:? ME:? TE:? Limit:1x<br>Materials:<br></span><del style="background:#ffe6e6;">1</del><ins style="background:#e6ffe6;">30x 11547<br>57x 11530<br>75x 3828<br>230x 40<br>300x 11399<br>300x 11558<br>495x 11534<br>1100x 39<br>1800x 11541<br>2200x 38<br>3750x 11543<br>9500x 37<br>40000x 36<br>95000x 35<br>420000</ins><span>x 34<br>Skills:<br>3380 I<br>Outcome:<br>1x 44995</span></td>
</tr><tr class="selectable" id="cid-23">
<td>45528 - <b>Marshal Blueprint</b></td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>1x Tritanium<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Marshal (44996)</td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>3x Capital Jump Drive<br>150x Fusion Reactor Unit<br>225x Plasma Thruster<br>450x Construction Blocks<br>900x Gravimetric Sensor Cluster<br>1500x Morphite<br>1634x Sustained Shield Emitter<br>6300x Photon Microprocessor<br>7300x Megacyte<br>18750x Tungsten Carbide Armor Plate<br>19000x Zydrine<br>40000x Nocxium<br>180000x Isogen<br>680000x Mexallon<br>2500000x Pyerite<br>11000000x Tritanium<br><b>Skills:</b><br>Industry I<br><b>Outcome:</b><br>1x Marshal (44996)</td>
<td width="300"><span>Copy:? ME:? TE:? Limit:1x<br>Materials:<br></span><del style="background:#ffe6e6;">1</del><ins style="background:#e6ffe6;">3x 21025<br>150x 11547<br>225x 11530<br>450x 3828<br>900x 11534<br>1500x 11399<br>1634x 11558<br>6300x 11541<br>7300x 40<br>18750x 11543<br>19000x 39<br>40000x 38<br>180000x 37<br>680000x 36<br>2500000x 35<br>11000000</ins><span>x 34<br>Skills:<br>3380 I<br>Outcome:<br>1x 44996</span></td>
</tr><tr class="selectable" id="cid-24">
<td>45551 - <b>Standup Hyasyoda Research Lab Blueprint</b></td>
<td>No blueprint entry found.</td>
<td>Copy:? ME:? TE:? Limit:1x<br><b>Materials:</b><br>1x Standup Research Lab I<br><b>Skills:</b><br>Outpost Construction I<br><b>Outcome:</b><br>1x Standup Hyasyoda Research Lab (45550)</td>
<td width="300"><ins style="background:#e6ffe6;">Copy:? ME:? TE:? Limit:1x<br>Materials:<br>1x 35891<br>Skills:<br>3400 I<br>Outcome:<br>1x 45550</ins></td>
</tr>
</table>
</details>
<br>
<details id="bonuschanges">
<summary class="selectParent bigsum_disabled" onclick="return false">Changed Traits (0 Entries)</summary>
<table>
<tr>
<th>TypeID, Group, & Name</th>
<th>Chaos_Previous</th>
<th>Chaos_Next</th>
<th>Diff</th>
<!-- <th>[[title4]]</th> -->
</tr>
</table>
</details>
<!--<h2 id="attributes">Attributes</h2>-->
<details id="dgmattribs">
<summary class="selectParent bigsum">Changes to Attributes (5 Entries)</summary>
<table>
<tr>
<th>Attribute Name</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Diff</th>
</tr>
<tr class="selectable" id="cid-25">
<td>2650 - weaponCycleDamageMultiplier</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2650<br><b>attributeName:</b> None <b>=></b> weaponCycleDamageMultiplier<br><b>categoryID:</b> None <b>=></b> 29<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 104<br></td>
</tr>
<tr class="selectable" id="cid-26">
<td>2653 - attributeThukkerEngRigMatBonus</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2653<br><b>attributeName:</b> None <b>=></b> attributeThukkerEngRigMatBonus<br><b>categoryID:</b> None <b>=></b> 37<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>displayNameID:</b> None <b>=></b> 315673 ("None")<br><b>highIsGood:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> True<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 105<br></td>
</tr>
<tr class="selectable" id="cid-27">
<td>2594 - attributeEngRigMatBonus</td>
<td><b>defaultValue:</b> 1.0 <b>=></b> 0.0<br></td>
</tr>
<tr class="selectable" id="cid-28">
<td>2652 - weaponMaxDamageMultiplier</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2652<br><b>attributeName:</b> None <b>=></b> weaponMaxDamageMultiplier<br><b>categoryID:</b> None <b>=></b> 29<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 104<br></td>
</tr>
<tr class="selectable" id="cid-29">
<td>2651 - weaponMinDamageMultiplier</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2651<br><b>attributeName:</b> None <b>=></b> weaponMinDamageMultiplier<br><b>categoryID:</b> None <b>=></b> 29<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 104<br></td>
</tr>
</table>
</details>
<details id="typeattribs">
<summary class="selectParent bigsum">Attribute Changes per Type (24 Entries)</summary>
<table>
<tr>
<th>TypeID, Name, and Group</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Diff</th>
</tr>
<tr class="selectable" id="cid-30">
<td>2820 - <b>Experimental Laboratory Blueprint</b> (Starbase - Mobile Laboratory Blueprints)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-31">
<td>2821 - <b>Research Laboratory Blueprint</b> (Starbase - Mobile Laboratory Blueprints)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-32">
<td>2749 - <b>Advanced Large Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-33">
<td>2751 - <b>Advanced Medium Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-34">
<td>2753 - <b>Advanced Small Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-35">
<td>2754 - <b>Ammunition Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-36">
<td>2756 - <b>Supercapital Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-37">
<td>2758 - <b>Component Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-38">
<td>2760 - <b>Drone Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-39">
<td>2762 - <b>Drug Lab Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-40">
<td>2764 - <b>Equipment Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-41">
<td>2765 - <b>Intensive Reprocessing Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-42">
<td>2766 - <b>Large Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-43">
<td>2767 - <b>Compression Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-44">
<td>2768 - <b>Medium Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-45">
<td>2769 - <b>Reprocessing Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-46">
<td>2770 - <b>Rapid Equipment Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-47">
<td>2771 - <b>Small Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-48">
<td>2772 - <b>Subsystem Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-49">
<td>2773 - <b>Capital Ship Assembly Array Blueprint</b> (Starbase Blueprint)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
<tr class="selectable" id="cid-50">
<td>45537 - <b>Standup Composite Reactor I</b> (Structure Resource Processing Service Module)</td>
<td><details>
<summary>Click to toggle showing the 19 attributes.</summary><b>mass:</b> None <b>=></b> 500.0<br><b>power:</b> None <b>=></b> 200000.0<br><b>capacity:</b> None <b>=></b> 0.0<br><b>cpu:</b> None <b>=></b> 1000.0<br><b>volume:</b> None <b>=></b> 4000.0<br><b>radius:</b> None <b>=></b> 1.0<br><b>canFitShipGroup01:</b> None <b>=></b> 1406.0<br><b>published:</b> None <b>=></b> False<br><b>serviceModuleFuelConsumptionGroup:</b> None <b>=></b> 1136.0<br><b>serviceModuleFuelAmount:</b> None <b>=></b> 12.0<br><b>serviceModuleFuelOnlineAmount:</b> None <b>=></b> 864.0<br><b>structureItemVisualFlag:</b> None <b>=></b> 1.0<br><b>maxTypeFitted:</b> None <b>=></b> 1.0<br><b>basePrice:</b> None <b>=></b> 0.0<br><b>groupID:</b> None <b>=></b> 1322<br><b>iconID:</b> None <b>=></b> 21597<br><b>portionSize:</b> None <b>=></b> 1<br><b>typeID:</b> None <b>=></b> 45537<br><b>typeNameID:</b> None <b>=></b> 526385<br></details></td>
</tr>
<tr class="selectable" id="cid-51">
<td>45538 - <b>Standup Hybrid Reactor I</b> (Structure Resource Processing Service Module)</td>
<td><details>
<summary>Click to toggle showing the 19 attributes.</summary><b>mass:</b> None <b>=></b> 500.0<br><b>power:</b> None <b>=></b> 200000.0<br><b>capacity:</b> None <b>=></b> 0.0<br><b>cpu:</b> None <b>=></b> 1000.0<br><b>volume:</b> None <b>=></b> 4000.0<br><b>radius:</b> None <b>=></b> 1.0<br><b>canFitShipGroup01:</b> None <b>=></b> 1406.0<br><b>published:</b> None <b>=></b> False<br><b>serviceModuleFuelConsumptionGroup:</b> None <b>=></b> 1136.0<br><b>serviceModuleFuelAmount:</b> None <b>=></b> 12.0<br><b>serviceModuleFuelOnlineAmount:</b> None <b>=></b> 864.0<br><b>structureItemVisualFlag:</b> None <b>=></b> 1.0<br><b>maxTypeFitted:</b> None <b>=></b> 1.0<br><b>basePrice:</b> None <b>=></b> 0.0<br><b>groupID:</b> None <b>=></b> 1322<br><b>iconID:</b> None <b>=></b> 21597<br><b>portionSize:</b> None <b>=></b> 1<br><b>typeID:</b> None <b>=></b> 45538<br><b>typeNameID:</b> None <b>=></b> 526386<br></details></td>
</tr>
<tr class="selectable" id="cid-52">
<td>45539 - <b>Standup Biochemical Reactor I</b> (Structure Resource Processing Service Module)</td>
<td><details>
<summary>Click to toggle showing the 19 attributes.</summary><b>mass:</b> None <b>=></b> 500.0<br><b>power:</b> None <b>=></b> 200000.0<br><b>capacity:</b> None <b>=></b> 0.0<br><b>cpu:</b> None <b>=></b> 1000.0<br><b>volume:</b> None <b>=></b> 4000.0<br><b>radius:</b> None <b>=></b> 1.0<br><b>canFitShipGroup01:</b> None <b>=></b> 1406.0<br><b>published:</b> None <b>=></b> False<br><b>serviceModuleFuelConsumptionGroup:</b> None <b>=></b> 1136.0<br><b>serviceModuleFuelAmount:</b> None <b>=></b> 12.0<br><b>serviceModuleFuelOnlineAmount:</b> None <b>=></b> 864.0<br><b>structureItemVisualFlag:</b> None <b>=></b> 1.0<br><b>maxTypeFitted:</b> None <b>=></b> 1.0<br><b>basePrice:</b> None <b>=></b> 0.0<br><b>groupID:</b> None <b>=></b> 1322<br><b>iconID:</b> None <b>=></b> 21597<br><b>portionSize:</b> None <b>=></b> 1<br><b>typeID:</b> None <b>=></b> 45539<br><b>typeNameID:</b> None <b>=></b> 526387<br></details></td>
</tr>
<tr class="selectable" id="cid-53">
<td>28605 - <b>Design Laboratory Blueprint</b> (Starbase - Mobile Laboratory Blueprints)</td>
<td><b>radius:</b> 0.0 <b>=></b> 1.0<br></td>
</tr>
</table>
</details>
<br>
<!--<h2 id="effectchanges">Effect Changes</h2>-->
<details id="dgmeffects">
<summary class="selectParent bigsum">Changes to Effects (3 Entries)</summary>
<table>
<tr>
<th>Effect Name</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Diff</th>
</tr>
<tr class="selectable" id="cid-54">
<td>6887 - rigThukkerBasCapCompManufactureMaterialBonus</td>
<td><b>descriptionID:</b> None <b>=></b> 315674<br><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>displayName:</b> None <b>=></b> <br><b>effectCategory:</b> None <b>=></b> 0<br><b>effectID:</b> None <b>=></b> 6887<br><b>effectName:</b> None <b>=></b> rigThukkerBasCapCompManufactureMaterialBonus<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> - domain: structureID<br> func: ItemModifier<br> modifiedAttributeID: 2559<br> modifyingAttributeID: 2653<br> operator: 6<br><b>postExpression:</b> None <b>=></b> 1<br><b>preExpression:</b> None <b>=></b> 1<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr class="selectable" id="cid-55">
<td>6886 - testWeapon</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>dischargeAttributeID:</b> None <b>=></b> 6<br><b>displayName:</b> None <b>=></b> <br><b>durationAttributeID:</b> None <b>=></b> 51<br><b>effectCategory:</b> None <b>=></b> 2<br><b>effectID:</b> None <b>=></b> 6886<br><b>effectName:</b> None <b>=></b> testWeapon<br><b>electronicChance:</b> None <b>=></b> False<br><b>falloffAttributeID:</b> None <b>=></b> 517<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> <br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeAttributeID:</b> None <b>=></b> 54<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br><b>trackingSpeedAttributeID:</b> None <b>=></b> 160<br></td>
</tr>
<tr class="selectable" id="cid-56">
<td>6842 - structureEngineeringRigSecurityModification</td>
<td><b>modifierInfo:</b> - domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2595<br> modifyingAttributeID: 2358<br> operator: 4<br>- domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2594<br> modifyingAttributeID: 2358<br> operator: 4<br>- domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2593<br> modifyingAttributeID: 2358<br> operator: 4<br> <b>=></b> - domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2595<br> modifyingAttributeID: 2358<br> operator: 4<br>- domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2594<br> modifyingAttributeID: 2358<br> operator: 4<br>- domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2593<br> modifyingAttributeID: 2358<br> operator: 4<br>- domain: null<br> func: ItemModifier<br> modifiedAttributeID: 2653<br> modifyingAttributeID: 2358<br> operator: 4<br></td>
</tr>
</table>
</details>
<details id="typeeffects">
<summary class="selectParent bigsum">Effect Changes per Type (3 Entries)</summary>
<table>
<tr>
<th>TypeID, Name, and Group</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Effects Changes</th>
</tr>
<tr class="selectable" id="cid-57">
<td>45537 - <b>Standup Composite Reactor I</b> (Structure Resource Processing Service Module)</td>
<td><b><u>Added Effects:</u></b><br><b>online:</b> None <b>=></b> False <br><b>serviceSlot:</b> None <b>=></b> False <br></td>
</tr>
<tr class="selectable" id="cid-58">
<td>45538 - <b>Standup Hybrid Reactor I</b> (Structure Resource Processing Service Module)</td>
<td><b><u>Added Effects:</u></b><br><b>online:</b> None <b>=></b> False <br><b>serviceSlot:</b> None <b>=></b> False <br></td>
</tr>
<tr class="selectable" id="cid-59">
<td>45539 - <b>Standup Biochemical Reactor I</b> (Structure Resource Processing Service Module)</td>
<td><b><u>Added Effects:</u></b><br><b>online:</b> None <b>=></b> False <br><b>serviceSlot:</b> None <b>=></b> False <br></td>
</tr>
</table>
</details>
<br>
<!--<h2 id="stringchanges">String Changes</h2>-->
<script>
function toggleHidden(cb) {
var nodes = document.getElementById("stringchanges").getElementsByClassName("unimportant")
for (var i=0; i < nodes.length; i++) {
var node = nodes[i]
if (cb.checked) {
node.classList.remove("hidden")
} else {
node.classList.add("hidden")
}
}
}
</script>
<details id="stringchanges">
<summary class="selectParent bigsum">String Changes (37 Entries)</summary>
<label class="smallinput noscripthidden hidden"><input type="checkbox" onclick="toggleHidden(this)">Show [[unimportants]] changes marked as old</label>
<table>
<tr>
<th>Key</th>
<th>Chaos_Previous</th>
<th>Chaos_Next</th>
<th>Diff</th>
<th>Notes</th>
</tr>
<tr class="selectable" id="cid-60">
<td>526367</td>
<td width="355px"></td>
<td width="355px">The birth of the capsuleer.</td>
<td><ins style="background:#e6ffe6;">The birth of the capsuleer.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-61">
<td>526368</td>
<td width="355px"></td>
<td width="355px">A sacred act.</td>
<td><ins style="background:#e6ffe6;">A sacred act.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-62">
<td>526369</td>
<td width="355px"></td>
<td width="355px">Immutable and profound.</td>
<td><ins style="background:#e6ffe6;">Immutable and profound.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-63">
<td>526370</td>
<td width="355px"></td>
<td width="355px">Mind and machine merged.</td>
<td><ins style="background:#e6ffe6;">Mind and machine merged.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-64">
<td>526371</td>
<td width="355px"></td>
<td width="355px">Flesh fused with power beyond mortal limits.</td>
<td><ins style="background:#e6ffe6;">Flesh fused with power beyond mortal limits.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-65">
<td>526372</td>
<td width="355px"></td>
<td width="355px">United with destiny, a ship and its heart.</td>
<td><ins style="background:#e6ffe6;">United with destiny, a ship and its heart.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-66">
<td>526373</td>
<td width="355px"></td>
<td width="355px">They are one.</td>
<td><ins style="background:#e6ffe6;">They are one.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-67">
<td>526374</td>
<td width="355px"></td>
<td width="355px">New Eden.</td>
<td><ins style="background:#e6ffe6;">New Eden.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-68">
<td>526375</td>
<td width="355px"></td>
<td width="355px">An oasis of life in an uncharted void.</td>
<td><ins style="background:#e6ffe6;">An oasis of life in an uncharted void.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-69">
<td>526376</td>
<td width="355px"></td>
<td width="355px">A galaxy where power and wealth spur humankind.</td>
<td><ins style="background:#e6ffe6;">A galaxy where power and wealth spur humankind.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-70">
<td>526377</td>
<td width="355px"></td>
<td width="355px">Where four great empires seed<br>the fractured renaissance of man.</td>
<td><ins style="background:#e6ffe6;">Where four great empires seed<br>the fractured renaissance of man.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-71">
<td>526378</td>
<td width="355px"></td>
<td width="355px">Wielding vast fleets, they carve<br>their ideologies into the stars.</td>
<td><ins style="background:#e6ffe6;">Wielding vast fleets, they carve<br>their ideologies into the stars.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-72">
<td>526379</td>
<td width="355px"></td>
<td width="355px">The heroism and treachery of capsuleers<br>is woven into the fabric of New Eden.</td>
<td><ins style="background:#e6ffe6;">The heroism and treachery of capsuleers<br>is woven into the fabric of New Eden.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-73">
<td>526380</td>
<td width="355px"></td>
<td width="355px">A story of industry, exploration and conquest.</td>
<td><ins style="background:#e6ffe6;">A story of industry, exploration and conquest.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-74">
<td>526381</td>
<td width="355px"></td>
<td width="355px">However you choose to forge your destiny,</td>
<td><ins style="background:#e6ffe6;">However you choose to forge your destiny,</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-75">
<td>526382</td>
<td width="355px"></td>
<td width="355px">do so with heart.</td>
<td><ins style="background:#e6ffe6;">do so with heart.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-76">
<td>526383</td>
<td width="355px"></td>
<td width="355px">New Eden is yours to shape.</td>
<td><ins style="background:#e6ffe6;">New Eden is yours to shape.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-77">
<td>526384</td>
<td width="355px"></td>
<td width="355px">This is where your legend begins.</td>
<td><ins style="background:#e6ffe6;">This is where your legend begins.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-78">
<td>526385</td>
<td width="355px"></td>
<td width="355px">Standup Composite Reactor I</td>
<td><ins style="background:#e6ffe6;">Standup Composite Reactor I</ins></td>
<td class="mini">Item name for typeID 45537 (Structure Resource Processing Service Module)</td>
</tr>
<tr class="selectable" id="cid-79">
<td>526386</td>
<td width="355px"></td>
<td width="355px">Standup Hybrid Reactor I</td>
<td><ins style="background:#e6ffe6;">Standup Hybrid Reactor I</ins></td>
<td class="mini">Item name for typeID 45538 (Structure Resource Processing Service Module)</td>
</tr>
<tr class="selectable" id="cid-80">
<td>526387</td>
<td width="355px"></td>
<td width="355px">Standup Biochemical Reactor I</td>
<td><ins style="background:#e6ffe6;">Standup Biochemical Reactor I</ins></td>
<td class="mini">Item name for typeID 45539 (Structure Resource Processing Service Module)</td>
</tr>
<tr class="selectable" id="cid-81">
<td>526388</td>
<td width="355px"></td>
<td width="355px">Standup Composite Reactor I Blueprint</td>
<td><ins style="background:#e6ffe6;">Standup Composite Reactor I Blueprint</ins></td>
<td class="mini">Item name for typeID 45540 (Structure Module Blueprint)</td>
</tr>
<tr class="selectable" id="cid-82">
<td>526389</td>
<td width="355px"></td>
<td width="355px">Standup Hybrid Reactor I Blueprint</td>
<td><ins style="background:#e6ffe6;">Standup Hybrid Reactor I Blueprint</ins></td>
<td class="mini">Item name for typeID 45541 (Structure Module Blueprint)</td>
</tr>
<tr class="selectable" id="cid-83">
<td>526390</td>
<td width="355px"></td>
<td width="355px">Standup Biochemical Reactor I Blueprint</td>
<td><ins style="background:#e6ffe6;">Standup Biochemical Reactor I Blueprint</ins></td>
<td class="mini">Item name for typeID 45542 (Structure Module Blueprint)</td>
</tr>
<tr class="selectable" id="cid-84">
<td>526391</td>
<td width="355px"></td>
<td width="355px">Can not save location. Anomaly already visited.</td>
<td><ins style="background:#e6ffe6;">Can not save location. Anomaly already visited.</ins></td>
<td class="mini"></td>
</tr>
<tr class="selectable" id="cid-85">
<td>526394</td>
<td width="355px"></td>
<td width="355px">Standup M-Set Thukker Capital Component Manufacturing Material Efficiency</td>
<td><ins style="background:#e6ffe6;">Standup M-Set Thukker Capital Component Manufacturing Material Efficiency</ins></td>
<td class="mini">Item name for typeID 45544 (Structure Engineering Rig M - Basic Capital Component ME)</td>
</tr>
<tr class="selectable" id="cid-86">
<td>526395</td>
<td width="355px"></td>
<td width="355px">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space.<br><br>The Standup M-Set Thukker Capital Component Manufacturing Material Efficiency rig provides a means for structure operators to decrease material requirements when manufacturing capital ship construction components in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</td>
<td><ins style="background:#e6ffe6;">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space.<br><br>The Standup M-Set Thukker Capital Component Manufacturing Material Efficiency rig provides a means for structure operators to decrease material requirements when manufacturing capital ship construction components in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</ins></td>
<td class="mini">Item description for "Standup M-Set Thukker Capital Component Manufacturing Material Efficiency" (typeID 45544)</td>
</tr>
<tr class="selectable" id="cid-87">
<td>526396</td>
<td width="355px"></td>
<td width="355px">Standup M-Set Thukker Capital Component Manufacturing Material Efficiency Blueprint</td>
<td><ins style="background:#e6ffe6;">Standup M-Set Thukker Capital Component Manufacturing Material Efficiency Blueprint</ins></td>
<td class="mini">Item name for typeID 45545 (Structure Rig Blueprint)</td>
</tr>
<tr class="selectable" id="cid-88">
<td>526397</td>
<td width="355px"></td>
<td width="355px">Standup L-Set Thukker Capital Component Manufacturing Efficiency</td>
<td><ins style="background:#e6ffe6;">Standup L-Set Thukker Capital Component Manufacturing Efficiency</ins></td>
<td class="mini">Item name for typeID 45546 (Structure Engineering Rig L - Basic Capital Component Efficiency)</td>
</tr>
<tr class="selectable" id="cid-89">
<td>526398</td>
<td width="355px"></td>
<td width="355px">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space.<br><br>The Standup L-Set Thukker Capital Component Manufacturing Efficiency rig provides a means for structure operators to decrease both material and time requirements for manufacturing capital ship construction components in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</td>
<td><ins style="background:#e6ffe6;">This rig has been optimized for use in low security space and will provide reduced benefits in all other areas of space.<br><br>The Standup L-Set Thukker Capital Component Manufacturing Efficiency rig provides a means for structure operators to decrease both material and time requirements for manufacturing capital ship construction components in their Upwell structures.<br><br>This facility design has been modified by Thukker specialists to utilize certain unregulated opportunities for expediting capital ship component construction in low security space.<br><br>Standup is a proprietary system that uses a Structure Autonomous Nanoassembly Device (Upwell) containing integrated template software, a nanoassembler array and sufficient nanomass to enable the construction of a variety of service modules, structure modules and structure rigs when inserted into the appropriate slots on a structure built with Upwell technology.<br><br>Note: Only one rig of the same type, counting both tech variations, may be fitted at the same time on a structure.</ins></td>
<td class="mini">Item description for "Standup L-Set Thukker Capital Component Manufacturing Efficiency" (typeID 45546)</td>
</tr>
<tr class="selectable" id="cid-90">
<td>526399</td>
<td width="355px"></td>
<td width="355px">Standup L-Set Thukker Capital Component Manufacturing Efficiency Blueprint</td>
<td><ins style="background:#e6ffe6;">Standup L-Set Thukker Capital Component Manufacturing Efficiency Blueprint</ins></td>
<td class="mini">Item name for typeID 45547 (Structure Rig Blueprint)</td>
</tr>