forked from StarSmasher44/Apollo-Gaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiler-1.txt
4119 lines (4119 loc) · 591 KB
/
profiler-1.txt
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
Profile results (total time)
Proc Name Self CPU Total CPU Real Time Calls
---------------------------------------------------------------------------------------------- --------- --------- --------- ---------
/datum/controller/process/proc/sleepCheck 251.368 319.419 570.154 108528191
/datum/controller/process/machinery/proc/internal_process_machinery 166.541 851.747 1094.484 5089
/datum/controller/process/radiation/doWork 119.267 294.647 372.457 5079
/obj/machinery/proc/powered 73.747 107.744 112.119 34768554
/datum/controller/processScheduler/proc/getCurrentTickElapsedTime 65.286 67.629 83.479 108528191
/obj/machinery/proc/auto_use_power 49.472 215.350 221.132 33624207
/obj/machinery/proc/use_power 35.608 55.685 59.251 21035558
/proc/equalize_gases 35.261 80.979 81.147 686626
/area/proc/powered 34.195 34.924 40.608 35553432
/obj/machinery/portable_atmospherics/hydroponics/update_icon 25.524 25.967 25.991 32996
/proc/mobs_in_view 23.237 24.222 24.425 150503
/datum/radio_frequency/proc/send_to_filter 21.367 34.834 35.097 351268
/datum/gas_mixture/proc/update_values 18.920 19.113 20.710 7356555
/obj/machinery/power/apc/process 17.997 64.750 65.228 1093952
/area/proc/power_change 17.354 28.294 28.349 20540
/datum/gas_mixture/proc/heat_capacity 16.984 17.112 17.847 5764241
/turf/simulated/mineral/New 16.891 18.353 18.294 37427
/datum/controller/process/obj/doWork 15.509 80.303 88.538 5092
/datum/gas_mixture/proc/multiply 14.169 26.092 26.551 4741288
/obj/machinery/door/firedoor/process 12.769 17.865 19.103 6543168
/obj/machinery/door/airlock/process 12.524 21.459 169.073 5212584
/proc/get_area 12.057 12.579 15.665 25165896
/obj/machinery/alarm/proc/overall_danger_level 11.538 17.185 17.515 978216
/datum/gas_mixture/proc/react 10.118 12.939 13.455 4051233
/repository/radiation/proc/radiate 9.873 9.911 9.923 1138
/area/proc/use_power 9.701 10.126 12.062 21035694
/obj/structure/table/update_icon 9.564 9.564 9.546 3506
/obj/machinery/power/solar/update_icon 9.031 9.265 9.238 60728
/obj/machinery/door/airlock/process 8.508 33.263 181.585 5212584
/obj/machinery/atmospherics/process 8.103 10.683 11.507 4482738
/turf/simulated/return_air 7.395 10.020 10.384 2492456
/obj/machinery/alarm/process 7.240 33.264 33.695 1711883
/obj/machinery/door/process 6.857 14.598 163.965 14549238
/repository/radiation/proc/flat_radiate 6.746 6.749 6.748 2
/obj/machinery/alarm/proc/get_danger_level 6.641 6.798 7.529 6847512
/turf/Entered 6.346 11.094 11.244 59752
/obj/machinery/power/solar/process 6.329 7.088 8.039 3342816
/datum/gas_mixture/proc/check_tile_graphic 5.932 5.958 6.101 1304785
/datum/powernet/proc/reset 5.646 6.652 6.722 343024
/datum/random_map/automata/proc/iterate 5.536 11.414 11.413 5
/obj/machinery/light/powered 5.416 15.779 16.236 3341432
/datum/gas_mixture/proc/return_pressure 5.099 5.274 6.680 8048457
/mob/living/carbon/human/handle_regular_hud_updates 4.873 6.327 6.328 31596
/proc/propagate_network 4.694 5.990 5.988 40
/obj/item/weapon/tank/process 4.602 17.684 18.059 1588611
/datum/proc/finalize_qdel 4.530 4.533 4.531 1354
/obj/machinery/process 4.387 4.669 7.031 9518661
/atom/movable/Del 4.362 4.394 4.386 11203
/obj/machinery/atmospherics/unary/vent_pump/process 4.240 11.779 12.108 2020587
/obj/item/device/radio/intercom/process 4.228 5.663 6.069 1574566
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/process 3.924 11.143 11.350 811258
/mob/living/Life 3.845 40.352 40.344 273604
/mob/Stat 3.839 4.061 81.964 39463
/obj/item/weapon/tank/proc/check_status 3.558 4.381 4.731 1588611
/zone/proc/tick 3.533 10.833 11.157 1304785
/obj/machinery/atmospherics/unary/vent_scrubber/process 3.103 7.802 8.187 1538890
/datum/controller/process/proc/process 3.086 1443.329 1822.580 134017
/obj/machinery/shield_diffuser/process 3.071 3.079 3.140 241408
/obj/machinery/power/apc/proc/update_channels 3.071 5.409 5.612 1058784
/datum/controller/process/machinery/proc/internal_process_pipenets 3.041 80.782 93.988 5089
/obj/machinery/portable_atmospherics/hydroponics/process 3.016 30.085 30.204 228960
/obj/machinery/alarm/proc/handle_heating_cooling 3.010 4.806 4.981 978216
/obj/machinery/portable_atmospherics/canister/process 2.964 11.521 11.819 959004
/obj/machinery/atmospherics/proc/add_underlay 2.930 3.191 3.203 18431
/datum/random_map/proc/get_map_cell 2.930 3.006 3.503 3466278
/obj/machinery/atmospherics/pipe/manifold/update_icon 2.864 5.663 5.667 2630
/datum/controller/process/machinery/doWork 2.802 944.572 1199.673 5089
/obj/machinery/meter/process 2.794 4.108 4.240 531424
/mob/living/simple_animal/Life 2.697 22.002 22.067 201272
/obj/item/weapon/tank/proc/update_gauge 2.508 3.285 3.457 1303469
/datum/gas_mixture/proc/merge 2.398 4.074 4.163 583751
/datum/gas_mixture/proc/zburn 2.394 2.853 3.810 4051982
/obj/machinery/portable_atmospherics/process 2.362 7.453 7.667 1208316
/obj/item/weapon/cell/update_icon 2.326 3.013 3.197 1598700
/obj/item/weapon/cell/proc/use 2.256 4.378 4.627 1099689
/datum/gas_mixture/proc/remove_ratio 2.245 4.027 4.055 199586
/obj/machinery/door/airlock/receive_signal 2.238 2.303 2.521 2465900
/datum/pipeline/proc/mingle_with_turf 2.190 20.152 20.217 183039
/turf/c_airblock 2.176 3.923 4.020 701797
/datum/pipeline/proc/radiate_heat_to_space 2.147 5.789 5.925 780719
/obj/machinery/atmospherics/unary/vent_pump/receive_signal 2.118 2.190 2.418 2590187
/proc/game_log 2.111 2.113 2.114 428
/obj/machinery/vending/process 2.067 2.098 2.332 895512
/datum/computer/file/embedded_program/airlock/receive_signal 2.050 2.076 2.201 984090
/obj/item/organ/external/proc/get_pain 2.046 4.439 4.517 713504
/obj/machinery/door/airlock/proc/arePowerSystemsOn 2.025 2.111 2.778 5230007
/datum/gas_mixture/proc/adjust_multi 1.949 2.982 3.002 171609
/datum/alarm/proc/process 1.846 1.860 1.920 538258
/mob/proc/update_canmove 1.804 5.076 5.113 268553
/obj/machinery/proc/power_change 1.790 10.435 10.574 1236101
/datum/light_source/proc/apply_lum 1.734 2.073 2.037 8361
/turf/simulated/mineral/update_icon 1.722 2.290 2.311 88796
/obj/item/weapon/cell/proc/percent 1.699 1.792 2.407 4174419
/obj/machinery/power/solar/proc/occlusion 1.689 1.795 1.826 60544
/datum/gas_mixture/proc/remove 1.673 2.962 3.030 178288
/obj/machinery/embedded_controller/receive_signal 1.634 4.515 4.794 1061552
/turf/simulated/update_air_properties 1.599 8.553 8.566 110609
/decl/observ/proc/raise_event 1.596 4.843 4.908 455328
/datum/controller/air_system/proc/Tick 1.585 16.752 16.783 5092
/datum/gas_mixture/proc/add_thermal_energy 1.583 3.176 3.318 796425
/area/proc/usage 1.570 1.627 1.919 3176352
/obj/machinery/atmospherics/unary/build_network 1.554 1.875 2.582 3769968
/obj/machinery/disposal/process 1.538 1.862 1.963 367472
/mob/living/carbon/human/updateshock 1.522 4.351 4.379 31596
/datum/controller/air_system/proc/mark_zone_update 1.520 1.582 1.927 2407854
/proc/is_type_in_list 1.501 1.507 1.589 345697
/obj/item/organ/proc/can_feel_pain 1.477 1.522 1.805 1661315
/datum/gas_mixture/proc/(init) 1.461 1.513 1.768 1377664
/proc/get_mobs_and_objs_in_view_fast 1.448 1.772 1.778 1095
/datum/pipe_network/proc/reconcile_air 1.446 72.878 72.922 503587
/obj/machinery/porta_turret/process 1.429 26.089 26.362 218784
/obj/machinery/power/apc/update_icon 1.417 1.423 1.428 4563
/proc/supermatter_pull 1.404 1.622 1.623 15
/datum/powernet/proc/draw_power 1.397 1.738 1.851 1105311
/atom/movable/lighting_overlay/proc/update_overlay 1.394 1.397 1.416 141146
/datum/random_map/automata/proc/cell_is_alive 1.366 1.439 1.820 2918465
/mob/proc/incapacitated 1.347 1.365 1.449 810854
/obj/machinery/hologram/holopad/process 1.340 1.350 1.499 478366
/datum/gas_mixture/New 1.323 1.369 1.533 1377664
/obj/machinery/door/airlock/proc/execute_current_command 1.272 1.482 132.910 3150800
/obj/machinery/firealarm/process 1.271 1.289 1.501 718544
/obj/machinery/atmospherics/pipe/return_air 1.256 1.333 1.614 1156229
/datum/pipeline/proc/process 1.239 2.379 2.566 1058320
/obj/machinery/recharger/process 1.238 1.385 1.464 381600
/datum/controller/process/mob/doWork 1.233 77.320 85.407 5092
/obj/machinery/power/apc/avail 1.230 1.654 1.886 1058784
/turf/proc/ChangeTurf 1.217 19.483 19.463 53817
/obj/machinery/air_sensor/process 1.206 8.650 8.717 72368
/obj/item/organ/process 1.204 3.859 3.877 192295
/datum/random_map/automata/cave_system/revive_cell 1.199 1.323 1.335 217907
/obj/item/weapon/rig/process 1.174 1.358 1.359 183312
/turf/Enter 1.164 1.573 128.871 100495
/obj/machinery/computer/general_air_control/receive_signal 1.146 1.158 1.249 636757
/turf/simulated/floor/asteroid/proc/updateMineralOverlays 1.137 1.217 1.197 32591
/obj/machinery/power/apc/draw_power 1.136 2.785 2.935 1058881
/obj/machinery/power/apc/surplus 1.112 1.952 2.125 1058784
/datum/controller/processScheduler/proc/queueProcesses 1.105 1.165 1.170 310618
/mob/living/carbon/human/proc/handle_medical_side_effects 1.090 1.185 1.193 31596
/atom/proc/c_airblock 1.080 1.744 1.845 659155
/datum/global_iterator/proc/main 1.063 3.749 0.000 24
/datum/computer/file/embedded_program/airlock/process 1.058 21.289 21.405 249336
/mob/living/carbon/human/proc/handle_pain 1.048 1.500 1.485 31596
/mob/living/proc/updatehealth 1.032 1.294 1.301 231900
/obj/machinery/portable_atmospherics/canister/proc/check_change 1.027 1.301 1.363 366222
/datum/alarm_handler/proc/process 1.027 3.249 3.261 25465
/obj/item/organ/external/proc/get_genetic_damage 1.017 1.041 1.162 1043108
/datum/trader/proc/get_possible_item 0.996 0.996 0.994 1269
/mob/living/proc/handle_statuses 0.992 1.910 1.988 269651
/obj/machinery/computer/general_air_control/large_tank_control/receive_signal 0.986 1.854 1.968 552694
/atom/movable/proc/get_mob 0.980 1.308 2.890 13125122
/datum/controller/game_controller/proc/SetupXenoarch 0.972 1.374 1.374 1
/mob/living/carbon/human/should_have_organ 0.955 0.962 1.008 379341
/obj/machinery/embedded_controller/process 0.949 23.829 23.999 401976
/datum/controller/process/machinery/proc/internal_process_power 0.947 8.440 9.018 5088
/obj/machinery/power/smes/process 0.912 1.252 1.302 147552
/mob/living/carbon/human/updatehealth 0.892 2.828 2.797 63232
/obj/item/organ/external/proc/is_dislocated 0.889 1.671 1.795 843504
/obj/item/weapon/cell/proc/give 0.870 1.794 1.851 498388
/obj/machinery/portable_atmospherics/canister/update_icon 0.869 2.169 2.204 366222
/datum/radio_frequency/proc/post_signal 0.856 35.685 35.901 160318
/area/beach/proc/process 0.855 1.705 1.714 1756
/datum/gas_mixture/proc/compare 0.852 0.975 0.972 106459
/mob/living/carbon/human/handle_chemicals_in_body 0.847 2.798 2.832 31596
/obj/structure/cable/proc/get_connections 0.830 0.885 0.897 55933
/mob/living/carbon/human/getCloneLoss 0.823 1.486 1.457 63232
/proc/RoundHealth 0.809 0.812 0.837 31596
/mob/living/bot/secbot/lookForTargets 0.809 0.842 0.843 5092
/obj/machinery/power/proc/surplus 0.808 0.826 0.932 1047154
/mob/living/carbon/human/adjustHalLoss 0.794 1.721 1.730 31596
/mob/living/proc/handle_actions 0.786 0.797 0.851 273604
/proc/dd_mergeObjectList 0.781 1.360 1.366 29219
/obj/machinery/atmospherics/binary/pump/process 0.760 1.902 1.988 336953
/obj/item/organ/external/proc/is_parent_dislocated 0.757 0.778 0.877 843504
/proc/blood_incompatible 0.751 0.762 0.802 189578
/datum/seed/proc/get_trait 0.743 0.751 0.790 321478
/obj/machinery/atmospherics/portables_connector/process 0.732 1.950 2.145 605472
/mob/living/carbon/slime/proc/handle_speech_and_mood 0.731 1.203 1.202 10184
/datum/pipe_network/proc/process 0.722 73.630 73.886 1334821
/obj/machinery/atmospherics/pipe/simple/process 0.710 19.731 19.776 178988
/obj/machinery/power/proc/add_avail 0.689 0.712 0.791 1366585
/obj/machinery/airlock_sensor/process 0.681 2.509 2.565 254400
/mob/living/simple_animal/cat/Life 0.676 1.642 1.638 5092
/obj/machinery/embedded_controller/radio/update_icon 0.676 0.691 0.730 381720
/atom/movable/Move 0.674 7.458 7.440 100495
/obj/machinery/status_display/proc/update 0.651 1.439 1.436 223184
/obj/return_air 0.650 2.020 2.062 331860
/proc/create_lighting_overlays 0.648 1.305 1.305 1
/obj/machinery/atmospherics/unary/outlet_injector/receive_signal 0.648 0.666 0.727 670361
/obj/machinery/telecomms/process 0.641 3.296 3.322 162821
/datum/global_iterator/mecha_tank_give_air/process 0.639 2.528 2.543 84768
/atom/movable/lighting_overlay/proc/update_lumcount 0.639 0.647 0.679 347721
/obj/item/organ/proc/handle_rejection 0.638 1.399 1.411 189578
/turf/return_air 0.638 3.231 3.246 125463
/mob/living/carbon/human/proc/handle_stance 0.635 1.553 1.600 31597
/mob/living/carbon/slime/proc/handle_targets 0.614 1.552 1.548 10184
/obj/item/organ/external/proc/remove_pain 0.590 0.937 0.988 347556
/atom/proc/set_light 0.590 0.745 0.815 550766
/obj/machinery/alarm/receive_signal 0.589 0.648 0.673 323802
/datum/computer/file/embedded_program/docking/process 0.585 0.645 0.686 228960
/datum/gas_mixture/proc/specific_entropy_gas 0.584 0.592 0.611 225031
/datum/gas_mixture/proc/adjust_gas 0.578 0.603 0.658 706624
/datum/random_map/noise/ore/apply_to_turf 0.574 0.617 0.697 4225
/obj/machinery/atmospherics/binary/dp_vent_pump/update_icon 0.574 0.753 0.752 10183
/obj/machinery/status_display/proc/remove_display 0.573 1.063 1.161 413264
/mob/living/carbon/human/handle_regular_status_updates 0.570 6.800 6.714 31596
/obj/machinery/atmospherics/portables_connector/build_network 0.565 0.601 0.707 605864
/obj/machinery/atmospherics/binary/passive_gate/process 0.564 1.843 1.854 76320
/proc/AStar 0.560 2.081 2.077 94
/obj/item/organ/internal/heart/proc/handle_blood 0.560 0.725 0.734 31596
/mob/living/simple_animal/hostile/proc/ListTargets 0.554 0.554 0.557 5618
/obj/machinery/power/apc/proc/attempt_charging 0.551 0.570 0.724 1058784
/proc/scrub_gas 0.543 0.551 0.578 108026
/mob/living/carbon/human/proc/handle_organs 0.536 8.767 8.904 31597
/mob/living/proc/handle_regular_status_updates 0.535 2.205 2.183 226732
/proc/get_thermal_radiation 0.533 0.543 0.617 780719
/mob/living/carbon/proc/handle_viruses 0.529 0.532 0.541 46872
/obj/machinery/status_display/process 0.525 2.506 2.564 413264
/obj/machinery/atmospherics/unary/vent_pump/proc/can_pump 0.525 0.564 0.725 1285125
/datum/gas_mixture/proc/specific_entropy 0.524 1.062 1.084 127760
/datum/reagents/proc/get_reagent_amount 0.521 0.535 0.644 497321
/area/initialize 0.519 3.588 3.588 350
/atom/proc/CanPass 0.518 0.552 0.672 1250112
/atom/set_density 0.510 0.628 0.666 280420
/atom/proc/reset_plane_and_layer 0.506 0.510 0.550 264896
/obj/machinery/light/power_change 0.504 1.475 1.490 87901
/datum/controller/game_controller/proc/setup_objects 0.501 18.400 30.716 1
/area/proc/clear_usage 0.498 0.512 0.591 1058784
/datum/pipe_icon_manager/proc/get_atmos_icon 0.498 0.574 0.580 59976
/obj/item/proc/generate_blood_overlay 0.497 0.502 0.502 10
/mob/living/carbon/human/Life 0.496 43.501 43.540 31596
/turf/space/initialize 0.492 1.116 1.140 349928
/obj/machinery/computer/process 0.486 0.529 0.717 844615
/obj/machinery/recharge_station/process 0.482 1.070 1.086 109120
/obj/machinery/atmospherics/pipe/simple/update_icon 0.478 0.660 0.662 22489
/atom/movable/proc/forceMove 0.478 5.192 5.221 44039
/datum/gas_mixture/proc/subtract 0.477 0.887 0.918 133329
/obj/machinery/light_switch/powered 0.477 1.864 1.922 552558
/mob/living/carbon/human/getHalLoss 0.471 2.730 2.675 32197
/icon/proc/Blend 0.467 0.468 0.468 959
/mob/living/carbon/human/handle_mutations_and_radiation 0.467 0.980 0.963 31596
/mob/living/Move 0.466 7.956 7.934 46993
/datum/light_source/proc/remove_lum 0.464 0.762 0.761 12011
/area/proc/get_cameras 0.462 0.462 0.470 338
/datum/gas_mixture/proc/copy_from 0.456 0.915 0.937 166778
/obj/screen/movable/ability_master/proc/update_spells 0.456 0.462 0.505 277653
/proc/between 0.448 0.484 0.672 1519774
/proc/calculate_transfer_moles 0.444 0.943 0.970 93785
/mob/living/update_canmove 0.444 5.523 5.530 268553
/obj/machinery/computer/update_icon 0.437 0.446 0.453 1136
/mob/Life 0.435 0.905 0.949 277653
/proc/DirBlockedWithAccess 0.429 0.472 0.479 150127
/obj/item/organ/external/is_broken 0.428 0.453 0.522 843504
/mob/living/carbon/proc/handle_chemical_smoke 0.426 0.443 0.459 15798
/mob/living/set_stat 0.424 0.555 0.575 255116
/datum/random_map/automata/cave_system/kill_cell 0.423 0.477 0.493 107218
/obj/effect/decal/cleanable/blood/process 0.413 0.477 0.580 372383
/proc/getCardinalAirInfo 0.413 0.526 0.536 21462
/obj/machinery/portable_atmospherics/powered/pump/process 0.405 1.454 1.476 142464
/datum/reagents/metabolism/proc/metabolize 0.402 0.516 0.558 140616
/mob/living/carbon/human/getFireLoss 0.397 0.398 0.390 32640
/mob/living/simple_animal/mouse/Life 0.396 12.696 12.700 150352
/obj/machinery/power/proc/avail 0.386 0.394 0.480 1047157
/mob/living/proc/handle_disabilities 0.386 1.447 1.473 269651
/turf/New 0.379 0.397 0.399 953
/obj/machinery/atmospherics/pipe/manifold4w/update_icon 0.369 0.778 0.778 303
/datum/alarm_handler/proc/check_alarm_cleared 0.368 0.384 0.451 538258
/datum/random_map/proc/apply_to_turf 0.367 19.972 19.972 65025
/atom/movable/initialize 0.363 2.027 2.109 172809
/obj/machinery/power/smes/proc/restore 0.356 0.536 0.531 67215
/obj/machinery/telecomms/proc/checkheat 0.356 2.154 2.169 162821
/obj/item/organ/internal/lungs/proc/handle_breath 0.352 0.909 0.904 15798
/obj/item/organ/proc/is_preserved 0.348 0.351 0.376 192295
/proc/pump_gas 0.344 2.391 2.428 64693
/datum/controller/process/lighting/doWork 0.340 5.199 28.201 19399
/mob/living/proc/handle_impaired_hearing 0.337 0.527 0.577 269651
/datum/gas_mixture/proc/check_recombustability 0.336 0.337 0.356 86650
/proc/LinkBlockedWithAccess 0.333 0.804 0.806 75087
/obj/item/weapon/gun/energy/process 0.333 0.345 0.392 239324
/datum/computer/file/embedded_program/docking/airlock/receive_signal 0.319 0.710 0.737 119755
/obj/item/organ/proc/handle_germ_effects 0.318 0.464 0.497 189656
/mob/living/carbon/human/proc/handle_hud_list 0.316 1.143 1.154 31597
/proc/testing 0.312 0.312 0.309 152
/atom/set_dir 0.312 0.555 0.594 170902
/mob/living/carbon/human/update_icons 0.311 0.325 0.326 133
/obj/item/organ/external/is_usable 0.311 0.457 0.495 126349
/mob/living/carbon/human/handle_environment 0.310 0.365 0.364 31596
/proc/dview 0.310 0.320 0.324 1095
/obj/item/organ/proc/handle_antibiotics 0.292 0.461 0.506 189656
/atom/movable/Move 0.291 8.997 8.986 126001
/datum/geosample/proc/UpdateTurf 0.290 0.291 0.296 39204
/obj/machinery/atmospherics/unary/vent_pump/proc/get_pressure_delta 0.287 0.382 0.399 150693
/proc/replace_characters 0.279 0.285 0.293 106195
/proc/getFlatIcon 0.276 1.082 1.083 265
/turf/simulated/wall/update_icon 0.276 0.276 0.275 587
/obj/machinery/portable_atmospherics/powered/pump/update_icon 0.275 0.276 0.271 15267
/obj/machinery/door/airlock/proc/send_status 0.275 7.149 7.218 48824
/icon/proc/GetPixel 0.274 0.277 0.289 115368
/mob/living/carbon/human/getBrainLoss 0.273 0.530 0.543 126406
/mob/proc/reset_layer 0.272 0.779 0.803 268530
/zone/proc/add 0.271 2.710 2.706 68716
/obj/machinery/cell_charger/process 0.269 0.317 0.332 96672
/mob/living/carbon/human/getToxLoss 0.268 0.353 0.398 161827
/obj/machinery/proc/update_use_power 0.268 0.302 0.475 879273
/mob/living/proc/handle_impaired_vision 0.268 0.272 0.292 269651
/datum/controller/processScheduler/proc/recordRunTime 0.263 0.265 0.269 134041
/obj/machinery/mech_recharger/process 0.263 0.328 0.363 111936
/obj/machinery/portable_atmospherics/powered/scrubber/process 0.263 1.059 1.094 106848
/obj/item/modular_computer/process 0.263 0.280 0.372 397176
/obj/machinery/telecomms/initialize 0.262 0.266 0.266 32
/obj/machinery/telecomms/proc/update_power 0.261 0.272 0.299 162821
/datum/pipeline/proc/build_pipeline 0.260 0.321 0.323 222
/obj/machinery/conveyor/process 0.258 0.273 0.409 483360
/obj/item/device/assembly/timer/process 0.257 0.271 0.389 448096
/datum/evacuation_controller/proc/has_eta 0.257 0.266 0.298 259102
/mob/living/carbon/human/proc/get_effective_blood_volume 0.257 0.447 0.477 63192
/obj/structure/lattice/initialize 0.254 0.456 0.461 5142
/mob/living/simple_animal/hostile/retaliate/goat/Life 0.254 1.352 1.358 5092
/mob/living/reset_layer 0.252 1.032 1.074 268530
/zone/proc/add_tile_air 0.252 1.241 1.245 68716
/obj/proc/receive_signal 0.251 0.341 0.785 3379192
/obj/machinery/portable_atmospherics/powered/scrubber/update_icon 0.250 0.252 0.236 10178
/area/proc/set_emergency_lighting 0.250 0.264 0.268 325
/datum/controller/processScheduler/proc/process 0.247 1.681 0.133 1
/mob/living/proc/handle_stunned 0.243 0.256 0.332 466970
/obj/machinery/telecomms/update_icon 0.239 0.245 0.270 162824
/mob/living/carbon/human/proc/recheck_bad_external_organs 0.239 0.327 0.337 31597
/obj/machinery/porta_turret/proc/tryToShootAt 0.237 0.248 0.291 301006
/obj/machinery/portable_atmospherics/hydroponics/proc/process_reagents 0.235 0.242 0.268 228960
/proc/getOPressureDifferential 0.233 0.399 0.384 21462
/obj/effect/floor_decal/initialize 0.232 0.589 0.582 3607
/obj/structure/table/proc/update_connections 0.232 6.325 6.331 3508
/mob/living/carbon/human/isSynthetic 0.231 0.250 0.340 512284
/obj/machinery/mineral/stacking_machine/process 0.229 0.245 0.255 5088
/obj/structure/lattice/proc/updateOverlays 0.229 0.230 0.235 14885
/obj/proc/updateDialog 0.228 0.250 0.355 664362
/datum/computer/file/embedded_program/docking/receive_signal 0.226 0.278 0.311 197217
/datum/computer/file/embedded_program/airlock/proc/signalPump 0.225 20.218 20.298 30543
/datum/powernet/proc/remove_cable 0.224 0.257 0.268 57942
/mob/living/Bump 0.221 2.208 2.213 25444
/atom/movable/initialize 0.219 2.367 2.468 172809
/datum/controller/process/proc/finished 0.219 1.270 1.217 134016
/turf/proc/make_air 0.218 1.016 1.008 45025
/proc/get_game_time 0.218 0.228 0.239 443041
/datum/controller/processScheduler/proc/recordEnd 0.217 0.585 0.570 134041
/proc/calculate_specific_power 0.215 1.276 1.287 63880
/atom/movable/Bump 0.215 0.319 32.696 111690
/datum/controller/air_system/proc/has_valid_zone 0.214 0.218 0.250 249450
/atom/movable/lighting_overlay/New 0.213 0.582 0.595 95813
/obj/machinery/power/smes/proc/input_power 0.213 0.325 0.347 47875
/mob/proc/cannot_stand 0.212 0.681 0.702 268553
/mob/living/carbon/human/getOxyLoss 0.211 0.563 0.587 126424
/obj/machinery/power/emitter/process 0.209 0.275 0.293 77456
/obj/machinery/atmospherics/unary/outlet_injector/process 0.208 1.097 1.139 82544
/obj/machinery/power/smes/proc/chargedisplay 0.206 0.220 0.261 427713
/mob/living/carbon/human/handle_disabilities 0.205 1.156 1.140 31596
/client/proc/is_stealthed 0.205 0.207 0.204 39465
/datum/controller/air_system/proc/Setup 0.202 5.473 7.008 1
/mob/Stat 0.202 4.265 82.151 39463
/proc/sanitize_old 0.201 0.484 0.487 106084
/datum/computer/file/embedded_program/docking/simple/receive_signal 0.199 0.318 0.331 75315
/obj/machinery/power/rad_collector/process 0.198 0.200 0.204 20352
/proc/HasBelow 0.197 0.209 0.272 402151
/obj/machinery/power/smes/buildable/process 0.196 1.404 1.456 137376
/proc/mix_gas 0.195 0.929 0.939 9304
/obj/machinery/porta_turret/proc/popDown 0.192 0.198 0.236 218784
/turf/proc/CardinalTurfsWithAccess 0.191 0.998 0.986 21178
/turf/proc/Distance 0.190 0.201 0.220 156824
/connection_edge/zone/recheck 0.190 0.906 0.917 62490
/datum/controller/process/proc/started 0.189 0.642 0.567 134017
/datum/nano_module/power_monitor/proc/refresh_sensors 0.188 0.204 0.207 76
/mob/living/adjustEarDamage 0.187 0.192 0.228 269651
/obj/effect/wingrille_spawn/proc/activate 0.186 5.354 5.348 1602
/proc/filter_gas_multi 0.184 0.478 0.491 5975
/obj/item/organ/internal/liver/process 0.184 1.132 1.181 31781
/obj/machinery/light/update_icon 0.180 0.183 0.191 88675
/obj/item/weapon/rig/proc/update_offline 0.179 0.188 0.208 183312
/mob/living/carbon/human/can_feel_pain 0.179 0.243 0.265 128029
/datum/random_map/automata/cave_system/cleanup 0.179 0.179 0.252 1
/datum/controller/processScheduler/proc/setIdleProcessState 0.178 0.179 0.186 134016
/obj/machinery/light/proc/update 0.178 0.452 0.447 88674
/datum/nano_module/supermatter_monitor/proc/refresh 0.178 0.178 0.177 76
/mob/living/proc/handle_paralysed 0.176 0.188 0.246 466969
/obj/machinery/computer/general_air_control/process 0.170 0.246 0.269 81409
/obj/machinery/power/solar_control/proc/set_panels 0.169 11.258 11.260 991
/obj/machinery/power/smes/update_icon 0.169 0.169 0.168 179
/atom/proc/(init) 0.169 0.187 0.223 165319
/datum/signal/proc/(init) 0.167 0.177 0.187 160446
/mob/living/proc/handle_weakened 0.166 0.188 0.254 466969
/obj/machinery/atmospherics/omni/filter/process 0.164 0.800 0.812 36752
/PriorityQueue/proc/FindElementIndex 0.162 0.185 0.192 23195
/obj/item/organ/proc/is_broken 0.161 0.168 0.197 145343
/obj/machinery/optable/proc/check_victim 0.161 0.165 0.176 50880
/obj/machinery/camera/process 0.159 0.312 0.321 71589
/obj/machinery/atmospherics/binary/dp_vent_pump/receive_signal 0.158 0.973 0.989 71452
/datum/computer/file/embedded_program/docking/airlock/process 0.158 0.627 0.648 76320
/turf/simulated/Entered 0.155 8.556 8.530 49282
/obj/machinery/shieldwallgen/process 0.153 0.319 0.326 61056
/proc/dd_sortedObjectList 0.151 11.166 11.166 58616
/atom/movable/proc/initialize 0.149 0.153 0.186 172809
/mob/living/carbon/human/Stat 0.148 1.077 1.001 7965
/datum/gas_mixture/proc/divide 0.148 0.281 0.287 68716
/obj/machinery/alarm/proc/elect_master 0.146 0.146 0.148 206
/image/proc/turf_decal_layerise 0.145 0.146 0.160 65689
/datum/controller/processScheduler/proc/processFinished 0.144 0.908 0.860 134016
/atom/New 0.143 0.145 0.153 112404
/mob/living/carbon/Life 0.143 26.106 26.062 46872
/obj/item/organ/internal/heart/process 0.138 2.061 2.086 31596
/atom/Entered 0.135 4.277 4.295 60166
/mob/living/carbon/human/handle_impaired_vision 0.135 0.299 0.286 31596
/atom/Entered 0.135 4.418 4.450 60166
/atom/Exited 0.135 0.260 0.276 76746
/obj/machinery/recharge_station/auto_use_power 0.133 0.888 0.899 109120
/datum/evacuation_controller/shuttle/waiting_to_leave 0.133 0.214 0.201 35918
/client/Stat 0.132 5.635 83.461 39463
/obj/machinery/atmospherics/unary/heat_exchanger/process 0.130 0.264 0.268 30528
/turf/ChangeTurf 0.128 19.994 19.975 53817
/datum/controller/processScheduler/proc/runProcess 0.127 1443.457 1822.684 134017
/datum/powernet/proc/add_cable 0.127 0.382 0.393 57910
/obj/machinery/atmospherics/pipe/simple/hide 0.127 0.215 0.207 3528
/atom/proc/set_dir 0.127 0.128 0.154 170902
/proc/pump_gas_passive 0.127 0.454 0.448 40704
/datum/random_map/proc/apply_to_map 0.126 20.706 23.561 2
/turf/ChangeTurf 0.125 19.654 19.645 53817
/mob/living/proc/handle_drugged 0.125 0.137 0.178 269651
/datum/controller/process/garbage_collector/proc/AddTrash 0.122 0.122 0.124 9417
/obj/machinery/atmospherics/omni/process 0.121 0.233 0.241 52016
/mob/living/carbon/proc/breathe 0.121 2.503 2.526 25982
/proc/deleted 0.121 0.124 0.137 172262
/datum/evacuation_controller/proc/get_status_panel_eta 0.120 0.529 0.515 35918
/mob/living/carbon/human/GetVoice 0.120 0.137 0.137 31596
/obj/machinery/mineral/unloading_machine/process 0.119 0.120 0.119 30528
/datum/evacuation_controller/shuttle/get_status_panel_eta 0.119 0.742 0.728 35918
/connection_edge/unsimulated/recheck 0.119 0.370 0.374 37154
/mob/living/carbon/human/handle_shock 0.118 4.586 4.596 31596
/datum/dna/gene/proc/is_active 0.118 0.130 0.156 252960
/datum/powernet/proc/get_percent_load 0.118 0.133 0.156 68872
/obj/machinery/power/solar_control/process 0.117 0.148 0.150 45794
/mob/living/bot/proc/handleAI 0.117 3.355 6536.093 15276
/obj/structure/window/update_icon 0.116 0.129 0.129 15833
/mob/observer/ghost/Stat 0.116 4.218 82.134 29906
/obj/machinery/power/apc/proc/update 0.116 26.968 27.034 20190
/obj/machinery/atmospherics/pipe/simple/initialize 0.115 0.620 0.609 6096
/datum/evacuation_controller/proc/is_prepared 0.115 0.122 0.126 223184
/proc/stationtime2text 0.115 0.115 0.111 36080
/proc/log_to_dd 0.115 0.489 0.489 57
/obj/machinery/atmospherics/omni/mixer/process 0.114 1.023 1.031 15264
/datum/random_map/automata/proc/revive_cell 0.114 0.119 0.146 217907
/datum/reagents/proc/update_total 0.114 0.118 0.145 142104
/decl/observ/unregister 0.113 0.215 0.221 81261
/mob/living/carbon/human/proc/get_face_name 0.112 0.179 0.195 31596
/proc/GetAbove 0.112 0.211 0.230 107545
/obj/machinery/door/airlock/close 0.112 7.299 153.964 33720
/turf/ChangeTurf 0.112 20.162 20.151 53817
/turf/simulated/proc/update_dirt 0.111 0.155 0.157 25921
/mob/living/bot/Life 0.111 5.364 6538.089 25460
/mob/proc/check_solid_ground 0.111 0.112 0.118 55762
/proc/calculate_equalize_moles 0.110 0.159 0.162 40688
/datum/map/proc/refresh_mining_turfs 0.110 1.524 3.610 1
/mob/living/proc/handle_slurring 0.110 0.118 0.153 269651
/mob/living/proc/handle_silent 0.110 0.117 0.161 269651
/mob/proc/set_stat 0.109 0.117 0.167 255116
/turf/Entered 0.108 9.028 9.027 59752
/atom/proc/set_density 0.108 0.119 0.163 280420
/datum/controller/process/turf/doWork 0.108 0.151 0.443 5093
/atom/movable/New 0.107 0.983 1.021 111443
/datum/controller/radio/proc/return_frequency 0.107 0.108 0.108 11701
/obj/machinery/power/terminal/process 0.107 0.141 0.428 1225664
/atom/Entered 0.106 0.204 0.207 60166
/datum/controller/processScheduler/proc/recordStart 0.106 0.166 0.151 134042
/obj/machinery/shieldwallgen/proc/power 0.106 0.168 0.178 61056
/obj/machinery/power/solar/proc/update_solar_exposure 0.106 0.106 0.119 46027
/mob/living/proc/getOxyLoss 0.106 0.126 0.192 368509
/obj/machinery/computer/pod/process 0.105 0.126 0.124 40704
/obj/machinery/atmospherics/proc/add_underlay_adapter 0.105 0.119 0.120 624
/turf/simulated/post_change 0.102 0.437 0.451 53712
/datum/evacuation_controller/shuttle/get_eta 0.102 0.197 0.212 35918
/datum/gas_mixture/proc/adjust_gas_temp 0.101 0.173 0.182 21851
/mob/living/carbon/slime/handle_regular_status_updates 0.101 0.125 0.131 10184
/datum/global_iterator/proc/has_null_args 0.100 0.106 0.115 148344
/mob/living/proc/handle_stuttering 0.100 0.103 0.147 269651
/obj/structure/window/proc/update_nearby_icons 0.098 0.261 0.263 4437
/decl/observ/proc/unregister 0.098 0.102 0.118 81261
/obj/machinery/sleeper/process 0.098 0.102 0.140 117024
/atom/proc/HasProximity 0.098 0.154 0.331 1587683
/proc/is_below_sound_pressure 0.098 0.439 0.459 47422
/turf/Exited 0.097 0.318 0.338 66440
/atom/New 0.097 0.242 0.246 112404
/mob/living/simple_animal/cat/proc/handle_movement_target 0.097 0.097 0.092 848
/proc/HasAbove 0.096 0.102 0.116 107853
/obj/machinery/camera/internal_process 0.096 0.147 0.176 71589
/mob/living/proc/update_pulling 0.095 0.101 0.140 273604
/obj/structure/window/CanPass 0.094 0.133 0.138 66838
/obj/machinery/embedded_controller/radio/post_signal 0.093 20.084 20.161 30869
/obj/item/weapon/hand/missing_card/initialize 0.093 0.093 0.093 2
/obj/machinery/power/powered 0.093 0.314 0.321 100771
/turf/Entered 0.093 9.121 9.108 59752
/datum/pipeline/proc/temperature_interact 0.093 0.184 0.190 20352
/datum/controller/processScheduler/proc/setRunningProcessState 0.092 0.094 0.099 134017
/datum/controller/process/proc/idle 0.092 0.140 0.161 134066
/obj/machinery/button/remote/airlock/trigger 0.091 0.091 0.091 2
/atom/New 0.091 0.419 0.433 112404
/obj/machinery/power/supermatter/process 0.090 4.403 6.151 1136
/turf/CanPass 0.090 0.097 0.111 95910
/turf/simulated/mineral/proc/MineralSpread 0.089 0.679 0.688 46520
/proc/heat2color_r 0.088 0.098 0.121 83618
/mob/living/carbon/human/proc/stabilize_body_temperature 0.087 0.095 0.112 31596
/atom/movable/Move 0.087 9.089 9.076 126001
/obj/machinery/atmospherics/unary/freezer/process 0.086 0.254 0.260 40704
/turf/ChangeTurf 0.086 19.796 19.778 53817
/mob/living/simple_animal/crab/Life 0.086 2.811 2.796 15276
/atom/movable/Bump 0.086 0.227 0.233 111786
/proc/cleanup_event_listener 0.086 0.590 0.590 77
/obj/machinery/atmospherics/binary/passive_gate/update_icon 0.086 0.088 0.093 66198
/obj/machinery/space_heater/powered 0.085 0.092 0.117 141577
/obj/machinery/power/port_gen/pacman/handleInactive 0.084 0.193 0.208 25440
/mob/living/carbon/human/handle_stomach 0.084 0.085 0.098 31596
/mob/set_dir 0.084 0.324 0.331 53133
/turf/simulated/proc/update_graphic 0.082 0.085 0.107 92608
/mob/living/carbon/human/proc/get_visible_name 0.082 0.309 0.323 31596
/datum/alarm/dd_SortValue 0.082 0.444 0.457 88772
/obj/item/organ/external/proc/get_damage 0.082 0.093 0.140 347556
/datum/nanomanager/proc/update_uis 0.081 0.082 0.084 5095
/mob/proc/playsound_local 0.081 0.134 0.129 2844
/obj/machinery/atmospherics/binary/build_network 0.081 0.086 0.112 102984
/atom/New 0.081 0.324 0.337 112404
/obj/item/organ/external/proc/get_damage_hud_image 0.081 0.159 0.162 11484
/obj/item/weapon/gun/energy/gun/nuclear/process 0.080 0.145 0.160 50920
/obj/item/organ/proc/is_bruised 0.080 0.084 0.109 176937
/obj/machinery/computer/area_atmos/proc/scanscrubbers 0.080 0.080 0.080 2
/datum/asset/nanoui/register 0.079 0.079 0.079 1
/obj/machinery/light/proc/seton 0.079 0.518 0.512 87901
/obj/machinery/power/generator/process 0.079 0.435 0.427 6224
/datum/random_map/proc/seed_map 0.079 0.137 0.137 1
/atom/movable/forceMove 0.078 5.365 5.385 44039
/obj/item/organ/internal/brain/process 0.078 0.407 0.422 31596
/mob/living/proc/handle_fire 0.078 0.080 0.098 72332
/mob/living/simple_animal/corgi/Ian/Life 0.077 0.993 80.441 5092
/datum/shuttle/ferry/proc/is_launching 0.077 0.082 0.079 35918
/obj/machinery/suit_cycler/process 0.077 0.085 0.097 55968
/obj/machinery/door/airlock/power_change 0.076 0.453 0.435 70151
/turf/simulated/mineral/proc/UpdateMineral 0.075 0.514 0.517 9966
/turf/proc/post_change 0.075 0.256 0.274 53817
/datum/controller/process/trade/proc/generateTrader 0.074 0.714 0.716 72
/obj/machinery/atmospherics/omni/update_icon 0.074 0.074 0.074 30
/datum/controller/process/proc/setStatus 0.073 0.079 0.088 412530
/datum/nanomanager/proc/close_uis 0.073 0.076 0.077 12022
/datum/controller/process/garbage_collector/doWork 0.073 3.533 5.355 2043
/mob/living/carbon/human/handle_random_events 0.073 0.132 0.133 31596
/obj/machinery/embedded_controller/radio/airlock/access_controller/update_icon 0.072 0.073 0.082 20364
/mob/proc/make_floating 0.072 0.075 0.090 55150
/obj/machinery/space_heater/process 0.072 0.077 0.121 138512
/obj/machinery/atm/process 0.072 0.075 0.104 71246
/datum/pipe_icon_manager/proc/check_icons 0.071 0.075 0.094 59976
/obj/item/organ/internal/heart/proc/handle_pulse 0.071 0.091 0.095 31596
/mob/living/proc/handle_regular_hud_updates 0.071 0.189 0.208 258329
/datum/controller/processScheduler/proc/processStarted 0.071 0.328 0.298 134017
/obj/item/organ/external/proc/get_burn_damage 0.071 0.086 0.152 347556
/turf/proc/get_cable_node 0.070 0.070 0.068 14572
/client/Stat 0.070 5.705 83.521 39463
/obj/fire/process 0.069 0.490 0.503 1246
/obj/machinery/atmospherics/binary/circulator/proc/return_transfer_air 0.069 0.189 0.192 7866
/datum/controller/processScheduler/proc/checkRunningProcesses 0.068 0.090 0.100 310618
/datum/seed/proc/handle_environment 0.068 0.173 0.181 7905
/obj/machinery/portable_atmospherics/powered/scrubber/huge/process 0.067 0.093 0.102 35616
/obj/item/organ/proc/is_usable 0.067 0.071 0.107 157946
/image/finalize_qdel 0.067 0.067 0.069 308
/obj/item/organ/internal/eyes/process 0.067 0.732 0.736 31784
/obj/machinery/atmospherics/omni/mixer/error_check 0.066 0.066 0.065 15269
/proc/heat2color_g 0.066 0.069 0.077 83618
/datum/evacuation_controller/proc/get_eta 0.066 0.068 0.074 35918
/mob/living/carbon/human/adjustToxLoss 0.065 0.115 0.110 31609
/obj/machinery/iv_drip/process 0.065 0.069 0.075 76320
/mob/living/proc/getFireLoss 0.064 0.069 0.125 267579
/mob/observer/virtual/updateicon 0.064 0.064 0.066 211
/proc/dirs_to_corner_states 0.063 0.064 0.071 3809
/obj/machinery/optable/process 0.063 0.226 0.235 50880
/obj/item/clothing/under/proc/update_rolldown_status 0.061 0.062 0.061 74
/mob/living/carbon/human/handle_breath 0.061 0.967 0.965 15798
/PathNode/New 0.060 0.061 0.063 23128
/mob/living/carbon/slime/handle_chemicals_in_body 0.059 0.240 0.238 10184
/mob/living/carbon/proc/handle_shock 0.059 4.412 4.428 31596
/obj/machinery/recharge_station/proc/has_cell_power 0.059 0.104 0.130 81784
/turf/proc/reconsider_lights 0.059 0.061 0.049 38795
/mob/living/carbon/handle_breathing 0.058 2.621 2.638 41780
/datum/medical_effect/proc/manifest 0.058 0.075 0.080 8412
/mob/living/simple_animal/proc/handle_supernatural 0.058 0.065 0.084 197318
/atom/movable/forceMove 0.058 5.423 5.447 44039
/obj/item/clothing/under/New 0.058 0.179 0.181 74
/mob/living/bot/updatehealth 0.058 0.077 0.081 25494
/proc/is_player_area 0.057 0.057 0.057 342
/obj/machinery/power/port_gen/process 0.057 0.293 0.315 25440
/obj/machinery/power/emitter/update_icon 0.057 0.058 0.068 66149
/obj/machinery/atmospherics/unary/freezer/update_icon 0.057 0.061 0.067 40727
/datum/controller/air_system/proc/connect 0.056 0.513 0.541 6411
/datum/controller/processScheduler/proc/updateCurrentTickData 0.056 0.089 0.098 310622
/mob/living/carbon/human/breathe 0.056 2.545 2.557 15798
/obj/machinery/telecomms/proc/produce_heat 0.056 0.396 0.404 16434
/datum/global_iterator/mecha_preserve_temp/process 0.055 0.056 0.058 63576
/obj/machinery/power/smes/proc/add_charge 0.055 0.056 0.067 115090
/proc/get_zstep 0.055 0.058 0.068 104359
/obj/machinery/atmospherics/unary/cryo_cell/process 0.055 0.155 0.163 40704
/obj/machinery/alarm/proc/master_is_operating 0.054 0.055 0.072 126709
/obj/machinery/shower/process 0.054 0.059 0.080 128336
/obj/item/organ/internal/is_usable 0.054 0.127 0.134 31597
/mob/living/proc/getToxLoss 0.053 0.063 0.107 403992
/atom/proc/visible_message 0.053 1.024 1.021 544
/client/Move 0.053 0.550 0.555 6081
/obj/item/clothing/under/proc/update_rollsleeves_status 0.053 0.055 0.053 74
/obj/machinery/power/smes/add_avail 0.053 0.085 0.094 53635
/mob/living/carbon/proc/get_breath_from_environment 0.053 1.015 1.041 15798
/datum/controller/process/air/doWork 0.053 16.805 16.837 5092
/obj/machinery/computer/operating/process 0.053 0.078 0.083 25440
/obj/machinery/portable_atmospherics/return_air 0.052 0.054 0.071 84768
/mob/living/carbon/human/handle_stunned 0.051 0.121 0.126 31596
/obj/machinery/portable_atmospherics/hydroponics/proc/check_health 0.051 15.959 15.982 15810
/obj/machinery/mining/drill/proc/check_supports 0.051 0.060 0.069 10176
/mob/living/carbon/human/reset_layer 0.051 0.195 0.204 31602
/mob/living/proc/getBruteLoss 0.051 0.062 0.107 267579
/obj/item/organ/internal/kidneys/process 0.051 0.657 0.678 31778
/obj/effect/decal/cleanable/blood/oil/dry 0.050 0.067 0.118 306964
/obj/machinery/atmospherics/binary/circulator/update_icon 0.050 0.050 0.056 20863
/obj/machinery/atmospherics/unary/vent_pump/update_icon 0.050 0.066 0.070 1235
/obj/machinery/camera/proc/isMotion 0.050 0.051 0.053 30271
/datum/random_map/automata/proc/kill_cell 0.050 0.053 0.078 107218
/obj/machinery/atmospherics/pipe/vent/process 0.050 1.194 1.217 10176
/mob/living/carbon/human/handle_chemical_smoke 0.049 0.493 0.509 15798
/datum/effect/effect/system/trail/start 0.049 0.055 0.056 105948
/obj/machinery/mineral/mint/process 0.049 0.050 0.053 10180
/datum/proc/Destroy 0.049 0.123 0.119 12022
/mob/living/carbon/human/proc/handle_grasp 0.049 0.063 0.068 31597
/obj/machinery/power/apc/proc/queue_icon_update 0.049 1.468 1.477 20359
/obj/item/organ/internal/heart/proc/handle_heartbeat 0.049 0.333 0.358 31596
/obj/item/organ/internal/lungs/process 0.049 0.679 0.679 31596
/datum/controller/process/alarm/doWork 0.048 3.342 7.171 5093
/zone/proc/rebuild 0.048 0.078 0.079 255
/mob/living/carbon/Move 0.048 3.533 3.534 15028
/obj/machinery/clonepod/process 0.048 0.049 0.049 10176
/obj/item/organ/external/proc/get_brute_damage 0.047 0.052 0.100 347556
/mob/living/silicon/ai/New 0.047 0.853 0.852 76
/mob/living/carbon/slime/proc/handle_AI 0.047 0.148 0.151 41414
/atom/movable/proc/move_to_turf_or_null 0.047 3.203 3.217 27576
/obj/machinery/button/remote/blast_door/trigger 0.047 0.048 10.107 1
/mob/living/carbon/human/proc/handle_some_updates 0.047 0.048 0.056 63192
/datum/computer/file/embedded_program/proc/post_signal 0.046 20.131 20.206 30869
/obj/machinery/portable_atmospherics/hydroponics/proc/check_level_sanity 0.046 0.077 0.077 15810
/mob/living/carbon/human/has_brain 0.046 0.048 0.050 31596
/mob/living/carbon/human/proc/remove_blood 0.046 0.124 0.136 31596
/obj/machinery/power/smes/batteryrack/process 0.046 0.126 0.138 10176
/obj/proc/updateUsrDialog 0.045 0.046 0.057 86500
/proc/trange 0.045 0.045 0.045 1882
/mob/living/carbon/human/proc/get_organ 0.045 0.071 0.078 35943
/proc/GetBelow 0.045 0.070 0.072 52066
/mob/living/carbon/human/proc/get_id_name 0.045 0.046 0.052 31596
/datum/controller/process/proc/running 0.045 0.070 0.066 134017
/obj/machinery/atmospherics/omni/filter/error_check 0.045 0.047 0.053 36765
/proc/angle2dir 0.045 0.046 0.049 61538
/obj/machinery/atmospherics/binary/circulator/process 0.044 0.121 0.129 16400
/obj/effect/spider/spiderling/process 0.044 0.510 0.506 3968
/obj/machinery/door/proc/close 0.044 0.048 174.310 179
/datum/species/monkey/handle_npc 0.044 1.904 1.893 30552
/datum/controller/processScheduler/proc/runQueuedProcesses 0.043 0.095 0.095 310618
/obj/machinery/newscaster/proc/newsAlert 0.043 0.051 0.050 495
/obj/item/weapon/Bump 0.042 0.095 0.099 10167
/obj/machinery/smartfridge/process 0.042 0.043 0.052 40704
/turf/simulated/floor/levelupdate 0.042 0.044 0.049 17015
/obj/machinery/r_n_d/server/process 0.042 0.116 0.116 10176
/mob/living/simple_animal/hostile/Life 0.042 2.234 2.252 10184
/obj/machinery/power/port_gen/update_icon 0.041 0.042 0.047 25440
/PriorityQueue/proc/Enqueue 0.041 0.227 0.238 23384
/obj/item/organ/internal/lungs/proc/handle_temperature_effects 0.041 0.041 0.035 15798
/client/Stat 0.040 5.746 83.567 39463
/proc/playsound 0.040 0.181 0.171 4198
/mob/living/carbon/slime/handle_environment 0.040 0.114 0.123 10184
/obj/machinery/door/airlock/close 0.040 0.110 146.706 33720
/proc/qdel 0.040 24.260 24.270 14641
/area/proc/has_turfs 0.040 0.040 0.040 259
/obj/machinery/bluespace_beacon/proc/updateicon 0.040 0.040 0.045 5089
/datum/gas_mixture/proc/check_combustability 0.039 0.039 0.047 5904
/obj/machinery/cryopod/process 0.039 0.042 0.061 71232
/datum/controller/process/event/doWork 0.039 0.396 4.049 5093
/obj/machinery/conveyor_switch/process 0.039 0.045 0.065 111936
/mob/living/carbon/human/proc/drip 0.039 0.165 0.179 31596
/mob/living/carbon/slime/regenerate_icons 0.039 0.039 0.037 223
/mob/living/carbon/human/handle_post_breath 0.038 0.323 0.320 15798
/obj/structure/window/New 0.038 0.427 0.429 4437
/datum/light_source/proc/check 0.038 0.067 0.064 8645
/proc/swap_density_check 0.038 0.067 0.063 4600
/mob/living/proc/adjustToxLoss 0.038 0.039 0.041 34628
/datum/controller/processScheduler/proc/setQueuedProcessState 0.037 0.059 0.057 134017
/obj/machinery/radiocarbon_spectrometer/process 0.037 0.153 0.154 15264
/datum/species/proc/get_ssd 0.037 0.049 0.048 30552
/mob/living/carbon/human/adjustOxyLoss 0.037 0.114 0.116 15798
/obj/structure/window/proc/is_full_window 0.037 0.042 0.046 73500
/mob/living/carbon/human/movement_delay 0.037 0.111 0.112 601
/datum/geosample/New 0.037 0.328 0.338 39204
/PriorityQueue/proc/Dequeue 0.037 0.050 0.055 21272
/obj/structure/table/initialize 0.036 2.636 2.621 1640
/obj/machinery/atmospherics/proc/check_icon_cache 0.036 0.038 0.042 38926
/datum/computer/file/embedded_program/docking/simple/escape_pod/process 0.036 0.093 0.094 20352
/datum/shuttle_controller/proc/process 0.036 0.036 0.035 5093
/proc/hex2num 0.036 0.036 0.039 13754
/obj/machinery/field_generator/process 0.036 0.039 0.052 40704
/obj/item/organ/external/proc/is_malfunctioning 0.035 0.040 0.065 130000
/datum/Destroy 0.035 0.946 0.934 12022
/obj/machinery/atmospherics/pipe/simple/hidden/universal/update_icon 0.035 0.095 0.099 55
/obj/machinery/door/CanPass 0.035 0.042 0.042 65055
/datum/gas_mixture/proc/share_ratio 0.035 0.076 0.073 6696
/proc/heat2color_b 0.035 0.036 0.047 83618
/mob/living/carbon/brain/handle_chemicals_in_body 0.035 0.108 0.117 5092
/turf/simulated/assume_air 0.034 0.266 0.260 13311
/obj/machinery/oxygen_pump/process 0.034 0.038 0.044 61056
/obj/machinery/door/airlock/update_icon 0.034 0.052 0.057 3683
/mob/living/carbon/slime/Life 0.033 3.800 3.823 10184
/obj/machinery/power/solar_control/update_icon 0.033 0.034 0.037 1005
/turf/simulated/proc/c_copy_air 0.033 0.166 0.172 24432
/zone/proc/c_merge 0.033 0.275 0.283 1556
/mob/living/say 0.032 0.589 0.594 78
/mob/visible_message 0.032 0.580 0.585 328
/obj/item/singularity_pull 0.032 0.748 339.038 3089
/proc/heat2color 0.032 0.038 0.042 2290
/obj/machinery/mineral/processing_unit/process 0.032 0.032 0.033 5088
/datum/controller/processScheduler/proc/updateTimeAllowance 0.032 0.033 0.039 310618
/obj/machinery/computer/prisoner/process 0.031 0.045 0.043 15264
/mob/living/bot/mulebot/update_icons 0.031 0.031 0.027 10190
/mob/living/carbon/human/proc/handle_trace_chems 0.031 0.033 0.045 31596
/obj/machinery/drone_fabricator/process 0.030 0.038 0.039 11312
/obj/machinery/atmospherics/unary/vent_scrubber/update_icon 0.030 0.036 0.038 959
/mob/living/carbon/human/handle_fire 0.030 0.074 0.083 31596
/datum/gas_mixture/proc/remove_volume 0.030 0.373 0.372 15798
/obj/machinery/door_timer/proc/timer_end 0.030 0.030 5.013 3990
/client/proc/add_admin_verbs 0.030 0.030 0.030 1
/datum/geosample/proc/(init) 0.029 0.030 0.033 39204
/datum/controller/air_system/proc/mark_for_update 0.029 0.030 0.031 20335
/mob/living/carbon/human/calculate_affecting_pressure 0.029 0.029 0.030 31596
/obj/item/clothing/under/New 0.029 0.208 0.210 74
/obj/machinery/door/airlock/CanPass 0.029 0.058 0.057 30815
/mob/living/carbon/slime/proc/handle_regular_AI 0.028 2.784 2.778 10184
/mob/living/carbon/brain/handle_regular_hud_updates 0.028 0.198 0.197 5092
/datum/shuttle/proc/has_arrive_time 0.028 0.028 0.042 35918
/turf/proc/calc_rad_resistance 0.028 0.029 0.033 3973
/mob/living/carbon/slime/proc/adjust_body_temperature 0.028 0.030 0.035 10184
/mob/living/carbon/slime/proc/UpdateFace 0.027 0.066 0.063 10184
/mob/living/proc/getHalLoss 0.027 0.030 0.064 242084
/obj/machinery/ntnet_relay/process 0.027 0.043 0.038 5088
/obj/machinery/power/smes/batteryrack/update_icon 0.027 0.028 0.032 1022
/obj/machinery/dd_SortValue 0.027 0.152 0.159 17312
/turf/simulated/floor/is_plating 0.027 0.031 0.035 31539
/obj/machinery/atmospherics/pipe/color_cache_name 0.026 0.026 0.026 18539
/obj/machinery/disease2/incubator/process 0.026 0.107 0.118 5088
/proc/calculate_specific_power_gas 0.026 0.077 0.074 9013
/datum/powernet/proc/is_empty 0.026 0.029 0.035 61324
/obj/machinery/power/smes/proc/remove_charge 0.026 0.026 0.036 53635
/obj/item/seeds/proc/update_appearance 0.026 0.027 0.026 85
/obj/item/device/geiger/process 0.025 0.027 0.031 30552
/datum/controller/processScheduler/proc/start 0.025 1.581 0.000 1
/datum/pipeline/proc/temporarily_store_air 0.025 0.075 0.076 7
/mob/living/simple_animal/hostile/proc/AttackTarget 0.025 0.587 0.593 5528
/area/proc/play_ambience 0.025 0.027 0.026 28
/obj/machinery/atmospherics/trinary/mixer/process 0.025 0.181 0.185 5088
/obj/machinery/r_n_d/circuit_imprinter/process 0.025 0.056 0.065 10178
/obj/item/proc/(init) 0.024 0.024 0.017 3021
/obj/item/weapon/storage/New 0.024 0.076 0.082 103
/atom/movable/Destroy 0.024 4.765 4.768 10335
/client/verb/moveright 0.024 0.184 0.194 2007
/proc/pickweight 0.024 0.025 0.029 3053
/datum/visualnet/proc/is_chunk_generated 0.024 0.024 0.024 5816
/mob/living/carbon/brain/handle_environment 0.024 0.057 0.055 5092
/datum/radio_frequency/proc/remove_listener 0.024 0.024 0.022 2728
/datum/random_map/noise/proc/subdivide 0.024 0.209 0.209 1365
/datum/light_source/proc/smart_vis_update 0.024 0.026 0.026 82
/datum/controller/gameticker/proc/process 0.024 0.038 0.037 5093
/atom/proc/checkpass 0.024 0.025 0.024 50102
/proc/check_zone 0.023 0.024 0.029 35946
/datum/controller/air_system/proc/add_zone 0.023 0.029 0.026 3303
/datum/controller/process/proc/statProcess 0.023 0.043 0.047 1975
/decl/turf_initializer/maintenance/initialize 0.023 0.230 0.230 6028
/obj/item/organ/internal/appendix/process 0.023 0.631 0.636 31597
/obj/machinery/disposal/update_icon 0.023 0.024 0.028 7447
/datum/light_source/New 0.023 0.095 0.097 2854
/obj/machinery/mecha_part_fabricator/process 0.023 0.043 0.042 11312
/obj/proc/check_access 0.022 0.051 0.058 23900
/proc/stationdate2text 0.022 0.024 0.019 35918
/turf/simulated/mineral/random/New 0.022 1.558 1.574 2650
/turf/simulated/create_fire 0.022 0.157 0.165 1044
/turf/proc/initialize 0.022 0.039 0.126 455175
/obj/machinery/atmospherics/pipe/simple/visible/universal/update_icon 0.022 0.085 0.084 49
/obj/structure/table/rack/auto_align 0.022 0.022 0.021 402
/obj/proc/check_access_list 0.022 0.034 0.038 25045
/icon/proc/RscFile 0.022 0.022 0.019 1582
/atom/movable/Destroy 0.022 4.789 4.789 10335
/obj/machinery/atmospherics/pipe/manifold/hide 0.022 0.687 0.687 467
/datum/controller/air_system/proc/air_blocked 0.022 0.133 0.137 8213
/obj/machinery/atmospherics/unary/heater/process 0.021 0.069 0.080 15264
/mob/proc/hear_say 0.021 0.021 0.024 271
/mob/living/proc/adjustOxyLoss 0.021 0.021 0.021 18818
/proc/PathWeightCompare 0.021 0.024 0.041 96302
/mob/living/proc/update_living_sight 0.021 0.163 0.164 6136
/datum/reagents/proc/has_reagent 0.021 0.022 0.024 97599
/proc/get_mobs_in_radio_ranges 0.021 0.031 0.031 1
/obj/machinery/atmospherics/binary/dp_vent_pump/process 0.021 0.048 0.051 10176
/datum/Destroy 0.020 0.142 0.137 12022
/obj/machinery/computer/area_atmos/area/scanscrubbers 0.020 0.020 0.020 1
/mob/proc/clear_fullscreen 0.020 0.023 3.992 29029
/client/verb/movedown 0.020 0.198 0.197 2006
/obj/machinery/door/airlock/can_close 0.020 0.022 0.026 33871
/atom/proc/update_light 0.020 0.132 0.134 11388
/obj/machinery/mining/drill/process 0.020 0.079 0.089 10176
/obj/machinery/porta_turret/update_icon 0.020 0.020 0.025 2283
/zone/proc/(init) 0.020 0.031 0.028 3303
/obj/machinery/mech_sensor/receive_signal 0.020 0.020 0.019 16624
/mob/proc/ssd_check 0.019 0.019 0.021 31596
/obj/machinery/bluespacerelay/update_icon 0.019 0.019 0.016 5088
/obj/machinery/r_n_d/protolathe/process 0.019 0.035 0.035 5088
/obj/machinery/r_n_d/circuit_imprinter/update_icon 0.019 0.019 0.022 10184
/mob/living/Stat 0.019 0.771 0.715 7965
/obj/structure/window/New 0.019 1.673 1.678 4437
/obj/machinery/atmospherics/unary/vent_scrubber/proc/broadcast_status 0.019 0.575 0.571 612
/obj/machinery/door_timer/process 0.019 0.050 0.054 15267
/atom/movable/Destroy 0.019 5.029 5.032 10335
/mob/living/proc/can_swap_with 0.019 0.100 0.096 2300
/atom/proc/investigate_log 0.019 0.019 0.019 6
/proc/create_objects_in_loc 0.018 0.340 0.344 255
/turf/proc/AdjacentTurfs 0.018 0.018 0.018 2690
/obj/machinery/door/firedoor/update_icon 0.018 0.024 0.027 3074
/obj/machinery/disposal/proc/pressurize 0.018 0.139 0.143 7119
/mob/living/simple_animal/hostile/proc/FindTarget 0.018 0.025 0.025 4613
/mob/proc/has_brain_worms 0.018 0.019 0.014 2113
/datum/random_map/automata/cave_system/get_appropriate_path 0.018 0.022 0.031 52864
/obj/machinery/botany/process 0.018 0.026 0.022 10176
/turf/simulated/floor/asteroid/New 0.018 0.020 0.026 15437
/mob/living/carbon/human/proc/handle_changeling 0.018 0.022 0.026 31596
/mob/proc/set_fullscreen 0.018 0.030 0.034 20496
/obj/machinery/computer/HolodeckControl/process 0.018 0.021 0.025 5088
/datum/visualnet/proc/for_all_chunks_in_range 0.018 0.043 0.042 1740
/obj/machinery/shieldgen/process 0.018 0.018 0.031 50880
/obj/machinery/igniter/process 0.018 0.019 0.024 20352
/mob/living/bot/secbot/resetTarget 0.018 0.031 0.032 5093
/mob/living/carbon/proc/handle_post_breath 0.018 0.284 0.281 15798
/mob/living/proc/handle_breathing 0.018 0.022 0.051 222779
/obj/item/device/beacon_locator/process 0.018 0.019 0.023 10184
/proc/num2hex 0.018 0.018 0.020 6082
/proc/updateVisibility 0.018 0.066 0.074 54290
/obj/machinery/floodlight/process 0.018 0.020 0.023 30528
/mob/living/proc/getCloneLoss 0.018 0.028 0.064 242084
/atom/proc/CheckExit 0.018 0.025 0.045 277107
/obj/Destroy 0.018 4.142 4.141 9084
/mob/living/bot/secbot/confirmTarget 0.018 0.033 0.033 5100
/mob/living/carbon/human/restrained 0.018 0.019 0.018 22526
/mob/living/carbon/Bump 0.018 0.033 0.034 13416
/turf/simulated/wall/proc/radiate 0.018 0.018 0.019 8587
/obj/machinery/alarm/initialize 0.017 0.182 0.180 338
/datum/controller/process/machinery/proc/internal_process_power_drain 0.017 0.017 0.017 5088
/obj/structure/window/initialize 0.017 0.119 0.124 6690
/obj/machinery/light_switch/update_icon 0.017 0.024 0.023 298
/mob/living/carbon/slime/movement_delay 0.017 0.029 0.029 41414
/decl/observ/proc/register 0.017 0.017 0.022 3107
/obj/structure/table/CanPass 0.017 0.020 0.023 20030
/proc/mergeAssoc 0.017 0.017 0.016 785
/mob/observer/virtual/mob/proc/sync_sight 0.017 0.017 0.016 7405
/obj/machinery/atmospherics/unary/vent_pump/proc/broadcast_status 0.017 0.630 0.627 839
/datum/light_source/proc/parse_light_color 0.017 0.096 0.095 4596
/mob/living/carbon/human/Stat 0.017 0.788 0.731 7965
/turf/simulated/wall/calc_rad_resistance 0.017 0.017 0.019 8649
/mob/proc/handle_hud_glasses 0.017 0.017 0.017 4998
/obj/machinery/light_switch/power_change 0.017 0.136 0.139 12094
/obj/machinery/door/Bumped 0.017 0.050 24.490 7629
/mob/living/carbon/human/proc/GetSpecialVoice 0.017 0.018 0.020 31596
/datum/controller/air_system/proc/mark_edge_active 0.017 0.017 0.018 6563
/datum/nano_module/alarm_monitor/proc/major_alarms 0.017 0.032 0.030 684
/mob/living/bot/proc/resetTarget 0.016 0.017 0.019 15279
/proc/mergeAtoms 0.016 0.016 0.018 1870
/mob/observer/ghost/Life 0.016 0.039 0.041 3954
/mob/living/silicon/ai/New 0.016 1.166 1.165 76
/datum/controller/process/proc/queued 0.016 0.023 0.024 134017
/obj/machinery/atmospherics/pipe/manifold/initialize 0.016 2.187 2.193 689
/datum/Destroy 0.016 0.159 0.151 12022
/obj/machinery/power/sensor/process 0.016 0.022 0.051 87637
/proc/overlay_image 0.015 0.015 0.018 135
/obj/machinery/light_switch/proc/sync_state 0.015 0.015 0.014 12153
/datum/obfuscation/proc/get_obfuscation 0.015 0.016 0.016 961
/decl/observ/register 0.015 0.033 0.037 3107
/obj/item/weapon/storage/belt/get_mob_overlay 0.015 0.015 0.015 15
/obj/machinery/firealarm/update_icon 0.015 0.029 0.029 516
/mob/living/proc/handle_mutations_and_radiation 0.015 0.025 0.057 232963
/datum/event_container/proc/process 0.015 0.185 0.187 15279
/datum/controller/processScheduler/proc/averageRunTime 0.015 0.015 0.015 1975
/obj/machinery/artifact_harvester/process 0.015 0.016 0.022 10176
/mob/proc/set_see_in_dark 0.015 0.152 0.150 7184
/obj/machinery/smartfridge/drying_rack/process 0.015 0.030 0.029 10176
/proc/GetGreenPart 0.015 0.026 0.028 4454
/obj/fire/New 0.015 0.134 0.137 1044
/datum/computer/file/embedded_program/airlock/multi_docking/process 0.015 0.054 0.053 10176
/mob/living/carbon/human/get_breath_from_internal 0.015 0.015 0.017 15798
/datum/species/proc/handle_vision 0.014 0.083 0.076 1044
/obj/Destroy 0.014 4.124 4.126 9084
/obj/structure/bed/CanPass 0.014 0.017 0.015 9795
/proc/cleanup_events 0.014 0.604 0.601 12022
/obj/structure/window/CheckExit 0.014 0.018 0.016 4648
/mob/living/proc/can_move_mob 0.014 0.020 0.019 4600
/sound/New 0.014 0.014 0.016 3254
/proc/explosion 0.014 11.423 42.201 4
/mob/proc/is_client_active 0.014 0.014 0.015 39463
/obj/machinery/power/proc/connect_to_network 0.014 0.050 0.052 4396
/proc/GetRedPart 0.014 0.030 0.032 4454
/obj/machinery/door/proc/next_close_time 0.013 0.014 0.017 33924
/turf/simulated/mineral/proc/clear_ore_effects 0.013 0.013 0.014 9966
/connection_manager/proc/update_all 0.013 0.078 0.073 1582
/obj/structure/window/proc/is_fulltile 0.013 0.015 0.017 21153
/proc/roundduration2text 0.013 0.013 0.012 35919
/obj/singularity_pull 0.013 0.160 0.169 36752
/proc/stars 0.013 0.013 0.011 118
/atom/Destroy 0.013 3.369 3.368 10335
/proc/GetBluePart 0.013 0.024 0.023 4454
/datum/pipeline/proc/network_expand 0.013 0.017 0.016 256
/atom/proc/return_air_for_internal_lifeform 0.013 0.098 0.107 15798
/obj/machinery/door/airlock/do_animate 0.013 0.014 0.017 833
/obj/structure/table/proc/update_desc 0.013 0.013 0.014 1236
/datum/controller/processScheduler/proc/addProcess 0.013 6.840 8.375 25
/connection_edge/unsimulated/tick 0.013 0.101 0.099 4733
/obj/machinery/atmospherics/pipe/simple/pipeline_expansion 0.013 0.014 0.021 15870
/obj/machinery/bluespace_beacon/process 0.012 0.053 0.058 5089
/mob/living/simple_animal/hostile/retaliate/proc/Retaliate 0.012 0.012 0.010 51
/datum/nano_module/supermatter_monitor/New 0.012 0.190 0.191 76
/PriorityQueue/proc/Remove 0.012 0.013 0.016 21428
/obj/machinery/atmospherics/unary/heater/update_icon 0.012 0.012 0.013 15273
/turf/simulated/floor/update_icon 0.012 0.015 0.013 339
/mob/living/proc/handle_random_events 0.012 0.017 0.041 238055
/mob/living/carbon/human/Crossed 0.012 0.013 0.015 13338
/obj/machinery/gateway/centerstation/initialize 0.012 0.012 0.012 1
/obj/machinery/gateway/centerstation/process 0.012 0.015 0.018 5088
/datum/controller/process/proc/update 0.012 0.020 0.020 40991
/atom/Destroy 0.012 3.354 3.351 10335
/obj/item/device/suit_cooling_unit/process 0.012 0.014 0.014 15276
/mob/living/carbon/human/getBruteLoss 0.012 0.012 0.013 1044
/atom/finalize_qdel 0.012 0.134 0.134 10026
/atom/movable/proc/update_nearby_tiles 0.012 0.019 0.020 4508
/datum/controller/radio/proc/add_object 0.012 0.016 0.013 2918
/connection/New 0.012 0.062 0.063 3675
/proc/has_access 0.012 0.012 0.015 25045
/turf/simulated/mineral/random/proc/(init) 0.012 0.012 0.012 2650
/mob/living/simple_animal/proc/SA_attackable 0.012 0.014 0.015 5571
/datum/controller/radio/proc/remove_object 0.012 0.036 0.035 2812
/turf/simulated/hotspot_expose 0.012 0.029 0.030 1412
/connection_edge/unsimulated/add_connection 0.012 0.022 0.022 4289
/turf/simulated/open/update_icon 0.011 0.011 0.011 205
/obj/machinery/suspension_gen/process 0.011 0.012 0.017 10176
/datum/nano_module/power_monitor/New 0.011 0.215 0.216 76
/datum/computer/file/embedded_program/airlock/multi_docking/receive_signal 0.011 0.027 0.026 4284
/obj/structure/grille/CanPass 0.011 0.013 0.016 33000
/obj/machinery/r_n_d/protolathe/update_icon 0.011 0.012 0.016 5091
/mob/living/proc/handle_stomach 0.011 0.018 0.046 238055
/obj/machinery/bluespacerelay/process 0.011 0.035 0.032 5088
/obj/machinery/door/window/Bumped 0.011 0.024 7.938 3843
/obj/machinery/power/supermatter/proc/explode 0.011 6.807 39.210 1
/mob/living/silicon/Destroy 0.011 1.058 1.060 76
/mob/living/proc/update_sight 0.011 0.177 0.175 6137
/obj/machinery/camera/proc/newTarget 0.011 0.011 0.011 2907
/mob/living/simple_animal/hostile/proc/DestroySurroundings 0.011 0.011 0.012 5571
/obj/item/organ/external/update_icon 0.011 0.018 0.017 297
/proc/populate_lathe_recipes 0.011 0.154 0.154 1
/obj/effect/Destroy 0.011 0.441 0.433 5815
/client/verb/moveup 0.011 0.112 0.109 1004
/datum/controller/air_system/proc/get_edge 0.011 0.032 0.034 4489
/client/verb/moveleft 0.011 0.134 0.136 1064
/obj/machinery/mecha_part_fabricator/update_icon 0.011 0.011 0.010 4308
/obj/item/device/radio/headset/proc/setupRadioDescription 0.010 0.011 0.010 171
/obj/proc/(init) 0.010 0.011 0.010 14461
/proc/sortAtom 0.010 0.093 0.094 3822
/turf/space/Entered 0.010 0.087 0.091 2352
/datum/light_source/proc/destroy 0.010 0.014 0.012 3471
/icon/finalize_qdel 0.010 0.010 0.012 25
/proc/hear 0.010 0.010 0.010 282
/obj/effect/wingrille_spawn/initialize 0.010 2.128 2.134 617
/turf/proc/CardinalTurfs 0.010 0.028 0.028 2690
/mob/verb/stop_pulling 0.010 0.012 0.017 46957
/mob/living/carbon/brain/handle_regular_status_updates 0.010 0.032 0.034 5092
/turf/simulated/wall/proc/update_connections 0.010 0.106 0.104 278
/mob/living/carbon/brain/update_canmove 0.010 0.016 0.016 5094
/obj/machinery/computer/supply/proc/generateSupplyList 0.010 0.010 0.010 4
/mob/living/simple_animal/hostile/retaliate/ListTargets 0.010 0.043 0.044 5092
/datum/dna/proc/UpdateSE 0.010 0.033 0.033 141
/mob/living/carbon/human/proc/update_body 0.010 0.091 0.092 33
/datum/controller/air_system/proc/has_same_air 0.010 0.010 0.011 3976
/mob/living/carbon/human/get_equipped_item 0.010 0.011 0.013 13334
/atom/proc/singularity_pull 0.010 0.014 0.023 108210
/icon/New 0.009 0.010 0.010 1714
/obj/machinery/proc/inoperable 0.009 0.010 0.010 16891
/mob/living/carbon/human/handle_vision 0.009 0.106 0.099 1044
/mob/living/bot/secbot/proc/check_threat 0.009 0.010 0.009 5100
/obj/machinery/vending/proc/build_inventory 0.009 0.015 0.015 174
/turf/proc/post_update_air_properties 0.009 0.087 0.088 17612
/connection_edge/proc/add_connection 0.009 0.012 0.012 4489
/obj/machinery/porta_turret/power_change 0.009 0.039 0.045 2283
/obj/machinery/cryopod/proc/find_control_computer 0.009 0.009 0.009 14
/obj/machinery/door/airlock/proc/isElectrified 0.009 0.010 0.015 31303
/obj/item/weapon/anodevice/process 0.009 0.011 0.009 10184
/proc/send_asset 0.009 0.009 21.792 200