forked from dalehenrich/PharoGs
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPharoGs.md5
1376 lines (1376 loc) · 107 KB
/
PharoGs.md5
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
Generated by PharoGs.st in Pharo minimal image.
Changes here imply edits to Pharo that may affect PharoGs
Adler32 class>>update:from:to:in: #[217 163 76 20 172 158 140 68 0 221 194 250 120 225 248 228]
Array class>>new: #[109 101 74 50 124 254 91 210 152 32 186 15 95 212 112 116]
Array>>atWrap: #[133 46 6 215 183 158 15 222 102 17 101 233 115 64 173 39]
Array>>atWrap:put: #[162 24 160 88 2 60 183 23 58 238 229 100 108 181 123 8]
Array>>elementsExchangeIdentityWith: #[28 60 23 76 197 109 192 73 84 43 38 24 9 73 145 140]
Array>>elementsForwardIdentityTo: #[2 174 158 183 159 248 16 201 253 25 119 189 30 208 255 43]
Array>>elementsForwardIdentityTo:copyHash: #[149 117 66 10 6 120 6 236 154 81 107 143 161 227 254 142]
Array>>replaceFrom:to:with:startingAt: #[16 45 144 216 41 53 96 116 165 79 241 177 59 93 124 87]
ArrayedCollection>>size #[29 134 112 246 26 209 191 133 92 38 201 29 172 99 135 76]
AsyncFile>>primClose: #[93 103 252 123 198 201 149 20 41 222 144 41 247 73 177 174]
AsyncFile>>primOpen:forWrite:semaIndex: #[100 151 120 184 61 203 167 32 78 110 156 143 85 141 128 133]
AsyncFile>>primReadResult:intoBuffer:at:count: #[251 100 119 131 237 42 165 218 94 192 73 13 245 196 56 130]
AsyncFile>>primReadStart:fPosition:count: #[218 234 202 214 222 202 84 239 255 104 225 180 64 208 30 80]
AsyncFile>>primWriteResult: #[76 48 26 67 152 132 1 202 133 223 95 141 63 255 15 207]
AsyncFile>>primWriteStart:fPosition:fromBuffer:at:count: #[53 132 25 146 28 254 244 144 133 25 148 166 8 212 20 98]
Behavior>>addObsoleteSubclass: #[216 54 146 19 44 245 121 192 143 101 209 180 254 56 187 133]
Behavior>>adoptInstance: #[197 238 53 23 47 56 51 233 31 169 253 86 2 158 24 175]
Behavior>>allInstances #[12 47 227 33 69 14 41 145 53 158 205 123 183 13 56 237]
Behavior>>allInstancesOrNil #[239 8 219 172 213 44 162 9 208 223 198 244 17 197 6 124]
Behavior>>allInstVarNames #[160 190 127 200 254 45 137 24 253 128 95 168 128 180 59 176]
Behavior>>basicIdentityHash #[18 247 174 99 69 186 224 214 175 28 166 170 207 172 175 130]
Behavior>>basicNew #[5 10 123 107 20 75 160 22 223 250 128 224 161 208 250 161]
Behavior>>basicNew: #[54 86 6 128 140 107 161 40 51 15 39 35 81 123 117 39]
Behavior>>basicSuperclass: #[26 111 113 218 172 101 70 139 91 234 138 82 149 13 34 40]
Behavior>>byteSizeOfInstance #[71 153 110 43 173 178 176 87 155 151 133 73 130 210 38 250]
Behavior>>byteSizeOfInstanceOfSize: #[9 91 66 230 60 76 68 168 171 20 80 168 176 183 101 157]
Behavior>>classLayout #[117 38 216 252 179 150 45 236 198 99 129 185 230 154 204 231]
Behavior>>classLayout: #[100 97 151 78 216 185 160 30 47 32 10 102 145 230 120 113]
Behavior>>flushCache #[141 111 192 66 127 128 66 126 12 47 181 111 93 90 39 63]
Behavior>>handleFailingBasicNew #[126 7 80 165 138 50 225 134 43 112 65 82 45 252 32 38]
Behavior>>handleFailingBasicNew: #[65 67 118 161 181 36 68 233 39 133 8 129 186 147 206 189]
Behavior>>handleFailingFailingBasicNew #[168 171 164 157 159 136 196 106 179 50 214 154 135 102 142 203]
Behavior>>handleFailingFailingBasicNew: #[197 202 179 186 139 43 129 173 120 224 1 51 203 0 206 189]
Behavior>>isReferenced #[46 236 141 74 92 54 180 252 183 91 83 150 227 155 255 131]
Behavior>>isVariable #[174 133 7 71 225 194 94 144 81 22 110 41 158 16 147 229]
Behavior>>localSelectors #[213 199 92 118 109 94 158 253 115 4 150 84 161 161 45 31]
Behavior>>methodDict #[245 168 178 196 214 36 93 26 77 191 239 9 107 6 42 2]
Behavior>>methodDict: #[185 79 161 150 39 49 65 239 138 159 203 56 166 230 24 249]
Behavior>>properties #[212 71 113 100 93 209 211 246 144 19 80 245 200 238 207 0]
Behavior>>someInstance #[220 82 58 104 105 76 243 71 228 231 166 55 52 172 117 183]
Behavior>>superclass #[213 120 82 13 247 12 107 228 246 169 241 141 239 222 89 140]
BlockClosure>>abstractBytecodeMessagesDo:
BlockClosure>>argumentCount #[119 2 168 89 58 148 78 157 109 238 118 192 44 19 1 12]
BlockClosure>>argumentNames #[224 208 81 31 36 3 246 68 50 32 208 191 200 127 95 75]
BlockClosure>>asContext #[33 227 27 136 159 123 93 65 251 200 31 252 7 85 22 105]
BlockClosure>>asContextWithSender: #[123 185 1 197 204 215 96 42 83 190 154 115 105 192 84 68]
BlockClosure>>asJob #[175 186 108 121 218 62 34 71 208 160 61 91 6 236 48 222]
BlockClosure>>asMinimalRepresentation #[243 186 43 72 18 104 141 152 136 54 63 201 15 23 56 178]
BlockClosure>>assert #[49 227 107 157 189 22 250 202 248 229 122 138 49 179 95 208]
BlockClosure>>assertWithDescription: #[207 157 99 237 58 124 188 45 1 244 165 10 45 145 109 19]
BlockClosure>>asText
BlockClosure>>bench
BlockClosure>>benchFor:
BlockClosure>>blockCreationBytecodeMessage
BlockClosure>>clearTemporariesOn: #[84 151 161 93 74 152 12 232 209 72 135 130 115 75 172 37]
BlockClosure>>compiledBlock #[163 10 40 252 9 124 22 244 106 230 113 134 187 203 72 167]
BlockClosure>>compiledBlock: #[140 4 100 154 7 99 27 32 91 21 57 170 54 249 125 88]
BlockClosure>>copiedValueAt: #[226 156 218 179 134 183 46 50 196 46 83 160 162 186 203 25]
BlockClosure>>copyForSaving #[189 77 205 239 152 112 185 144 64 81 106 250 57 231 218 196]
BlockClosure>>cull: #[88 152 113 220 247 132 198 48 3 223 195 150 7 71 184 166]
BlockClosure>>cull:cull: #[199 164 53 116 42 47 243 75 90 223 102 62 48 194 24 51]
BlockClosure>>cull:cull:cull: #[55 6 253 7 36 21 32 44 111 49 129 81 16 175 4 226]
BlockClosure>>cull:cull:cull:cull: #[91 238 121 99 4 39 17 191 159 113 63 160 41 87 120 229]
BlockClosure>>doPrintOn: #[204 80 186 203 1 238 75 10 165 166 175 19 114 187 222 244]
BlockClosure>>doWhileFalse: #[220 174 75 67 30 110 109 121 47 196 43 135 4 3 225 142]
BlockClosure>>doWhileTrue: #[14 11 92 106 208 110 211 139 215 101 231 190 27 25 114 191]
BlockClosure>>durationToRun
BlockClosure>>endPC #[190 41 35 140 0 210 112 204 149 48 34 53 60 111 210 19]
BlockClosure>>ensure: #[34 97 186 224 178 178 234 232 252 115 218 190 116 162 70 156]
BlockClosure>>execute:against:
BlockClosure>>fork #[37 124 168 199 193 24 50 111 70 137 19 117 58 56 119 52]
BlockClosure>>forkAndWait #[14 143 154 110 84 104 30 251 81 126 214 172 34 16 89 128]
BlockClosure>>forkAt: #[192 0 38 7 61 123 53 191 215 89 164 214 142 107 184 10]
BlockClosure>>forkAt:named: #[117 236 94 150 64 148 179 170 147 208 60 45 184 2 17 48]
BlockClosure>>forkNamed: #[45 204 170 228 115 2 37 160 197 251 113 241 200 101 241 233]
BlockClosure>>hasMethodReturn
BlockClosure>>hasTemporaryVariableNamed: #[157 30 167 10 13 189 173 160 77 43 81 67 69 117 146 197]
BlockClosure>>home #[163 170 151 46 211 231 224 24 123 170 81 162 199 161 189 210]
BlockClosure>>ifCurtailed: #[117 86 209 247 232 164 11 65 94 180 255 163 138 15 120 110]
BlockClosure>>ifError:
BlockClosure>>initialStackPointer #[69 181 219 42 58 187 208 33 125 178 3 35 228 33 254 13]
BlockClosure>>isBlock #[82 90 244 176 185 98 140 33 12 202 237 20 215 203 76 70]
BlockClosure>>isClean #[46 170 0 116 94 11 147 3 206 204 139 43 138 54 201 171]
BlockClosure>>isClosure #[87 221 98 224 88 255 174 171 35 247 22 138 64 72 176 8]
BlockClosure>>isDead #[12 235 72 66 101 94 7 15 71 38 208 153 160 31 41 35]
BlockClosure>>isFullBlock #[79 36 103 141 225 24 95 9 219 247 118 56 64 143 25 65]
BlockClosure>>isValid #[71 209 112 60 76 114 126 115 119 28 28 126 248 87 94 77]
BlockClosure>>method #[109 121 232 68 191 158 65 82 24 227 201 60 140 139 203 55]
BlockClosure>>newProcess #[28 82 86 106 17 52 31 156 12 130 208 136 146 165 243 143]
BlockClosure>>newProcessWith: #[222 65 226 33 46 149 124 250 19 69 17 188 51 242 197 84]
BlockClosure>>numArgs #[237 59 73 90 74 237 234 79 133 135 32 59 71 56 202 29]
BlockClosure>>numArgs: #[66 13 250 123 13 212 67 216 39 26 254 236 2 9 153 252]
BlockClosure>>numArgsError: #[7 223 8 156 120 104 60 75 72 32 241 224 199 138 218 32]
BlockClosure>>numCopiedValues #[55 6 189 7 39 88 158 27 103 84 133 166 24 179 167 176]
BlockClosure>>numLocalTemps
BlockClosure>>numTemps #[168 26 166 5 42 182 11 251 13 74 160 30 117 40 204 33]
BlockClosure>>on:fork: #[190 164 61 118 112 183 74 239 27 173 137 213 3 54 114 39]
BlockClosure>>on:fork:return: #[50 183 142 27 55 242 65 110 229 208 74 66 93 30 75 229]
BlockClosure>>onDNU:do: #[168 167 21 186 125 6 219 9 30 139 102 6 103 235 14 222]
BlockClosure>>onErrorDo: #[188 235 70 23 157 250 133 171 120 81 120 209 144 149 80 175]
BlockClosure>>outerContext #[54 92 122 97 105 131 254 91 154 250 36 33 121 224 51 36]
BlockClosure>>outerContext: #[88 91 153 81 231 244 8 52 74 125 255 185 10 192 79 31]
BlockClosure>>outerContext:startpc:numArgs:copiedValues:
BlockClosure>>printOn: #[0 130 131 162 79 101 46 255 223 136 205 109 168 139 150 254]
BlockClosure>>receiver #[126 0 128 230 65 78 243 44 217 69 15 210 228 90 152 220]
BlockClosure>>reentrant #[138 157 243 18 209 230 70 101 114 122 246 195 208 208 207 156]
BlockClosure>>repeat #[230 26 135 209 111 164 241 37 5 160 186 219 34 90 159 217]
BlockClosure>>repeatWithGCIf: #[210 46 56 78 56 156 187 75 74 254 245 197 125 208 150 121]
BlockClosure>>rfEnsure:
BlockClosure>>rfvalue
BlockClosure>>rfvalueNoContextSwitch
BlockClosure>>sender #[42 136 184 73 3 254 143 52 36 240 116 198 20 179 184 206]
BlockClosure>>setAuthorInMetacelloConfig:
BlockClosure>>setBaseline:withInMetacelloConfig:
BlockClosure>>setBlessingInMetacelloConfig:
BlockClosure>>setConfiguration:withInMetacelloConfig:
BlockClosure>>setDescriptionInMetacelloConfig:
BlockClosure>>setPackage:withInMetacelloConfig:
BlockClosure>>setProject:withInMetacelloConfig:
BlockClosure>>setTimestampInMetacelloConfig:
BlockClosure>>simulateValueWithArguments:caller: #[199 147 31 51 192 173 177 197 99 98 71 162 67 196 39 209]
BlockClosure>>sourceNode #[201 178 169 37 61 167 33 27 214 141 212 222 13 147 25 175]
BlockClosure>>split:indicesDo: #[225 96 172 155 212 56 111 68 252 228 90 236 124 59 192 72]
BlockClosure>>startpc #[116 127 205 161 88 10 226 42 219 124 34 4 164 133 198 147]
BlockClosure>>startpcOrOuterCode #[108 129 179 90 60 113 253 252 146 80 190 133 30 212 14 154]
BlockClosure>>tempNames #[218 110 196 119 31 29 189 231 50 221 246 7 161 187 191 207]
BlockClosure>>temporaryVariableNamed: #[249 194 173 155 212 116 87 140 154 250 222 255 250 249 129 81]
BlockClosure>>temporaryVariables #[121 53 87 122 40 179 70 94 175 184 246 94 226 233 81 152]
BlockClosure>>timeToRun #[64 252 41 243 39 222 127 26 88 249 221 31 106 191 198 138]
BlockClosure>>value #[242 51 123 117 82 8 52 229 118 13 176 97 48 27 203 152]
BlockClosure>>value: #[245 172 205 110 14 151 139 164 120 116 204 177 104 126 231 138]
BlockClosure>>value:value: #[186 48 232 205 116 174 148 228 35 198 215 208 129 64 12 245]
BlockClosure>>value:value:value: #[130 239 68 143 135 59 132 242 241 48 132 240 55 150 186 65]
BlockClosure>>value:value:value:value: #[118 237 116 103 127 172 25 239 71 227 211 10 95 227 174 113]
BlockClosure>>valueAfterWaiting: #[146 209 25 194 100 149 16 164 241 146 218 231 178 8 88 65]
BlockClosure>>valueAt:
BlockClosure>>valueNoContextSwitch #[218 186 172 24 191 135 182 68 14 124 214 109 30 95 39 36]
BlockClosure>>valueNoContextSwitch: #[99 68 60 246 66 127 104 200 211 57 88 136 72 17 0 105]
BlockClosure>>valueSelector
BlockClosure>>valueSupplyingAnswer: #[98 17 188 26 11 228 241 40 136 250 139 117 26 128 7 167]
BlockClosure>>valueSupplyingAnswers: #[81 222 106 62 200 126 54 230 225 54 88 21 194 0 71 56]
BlockClosure>>valueSupplyingMetacelloAnswers:
BlockClosure>>valueSuppressingAllMessages #[203 217 230 210 32 173 253 54 243 44 232 188 32 158 91 246]
BlockClosure>>valueSuppressingMessages: #[244 248 140 239 86 60 226 98 240 5 183 155 221 59 145 84]
BlockClosure>>valueSuppressingMessages:supplyingAnswers: #[71 104 188 246 121 161 237 54 1 84 151 25 110 41 21 224]
BlockClosure>>valueUninterruptably #[96 137 161 215 110 174 156 126 190 160 146 82 170 193 209 240]
BlockClosure>>valueUnpreemptively #[18 131 196 242 69 173 189 243 8 98 189 133 87 138 118 246]
BlockClosure>>valueWithArguments: #[16 29 107 233 58 44 206 162 50 43 39 61 2 111 86 71]
BlockClosure>>valueWithEnoughArguments: #[63 112 199 214 137 91 49 115 216 54 44 52 43 132 192 108]
BlockClosure>>valueWithExit #[120 39 25 131 145 101 176 72 36 211 21 69 30 90 3 134]
BlockClosure>>valueWithin:onTimeout: #[217 209 231 188 182 140 100 80 125 240 126 173 172 207 190 134]
BlockClosure>>valueWithInterval: #[227 165 253 226 184 165 197 220 76 75 87 251 87 7 174 168]
BlockClosure>>valueWithoutNotifications
BlockClosure>>valueWithPossibleArgs: #[85 57 28 72 35 213 52 87 46 193 86 109 8 73 212 223]
BlockClosure>>valueWithPossibleArgument: #[88 48 75 173 155 147 59 175 136 160 67 247 205 94 208 160]
BlockClosure>>whileFalse #[109 221 48 217 112 112 6 20 121 81 193 213 172 192 249 97]
BlockClosure>>whileFalse: #[62 233 246 59 171 48 109 99 236 111 43 241 229 168 241 175]
BlockClosure>>whileNil: #[63 211 224 26 42 145 218 245 182 136 7 73 245 222 198 142]
BlockClosure>>whileNotNil: #[136 80 122 202 216 189 155 182 195 188 62 55 190 195 57 13]
BlockClosure>>whileTrue #[104 244 179 199 64 59 143 106 180 112 167 60 91 33 253 209]
BlockClosure>>whileTrue: #[183 180 6 213 100 190 170 42 28 101 236 41 14 76 65 88]
BlockClosure>>withAllBlocksDo: #[76 126 73 8 137 216 151 163 249 56 231 94 80 250 131 91]
Boolean class>>new #[115 72 253 110 26 154 210 255 146 31 199 151 164 35 86 134]
Boolean>>& #[140 154 137 10 229 218 78 27 174 201 3 142 219 165 100 211]
Boolean>>and: #[241 157 0 18 229 228 6 76 114 213 146 66 32 5 72 74]
Boolean>>asBit #[241 133 143 253 19 97 227 135 148 151 98 235 202 218 227 240]
Boolean>>ifFalse: #[212 131 64 241 250 237 236 48 43 232 148 161 234 37 86 7]
Boolean>>ifFalse:ifTrue: #[242 32 196 168 72 22 235 5 235 215 177 90 187 51 224 145]
Boolean>>ifTrue: #[3 223 61 137 235 207 207 212 153 218 19 44 88 73 78 62]
Boolean>>ifTrue:ifFalse: #[15 233 62 96 52 27 162 87 138 178 4 14 77 168 86 30]
Boolean>>not #[42 143 66 145 177 151 191 18 124 209 108 43 193 215 179 131]
Boolean>>or: #[177 213 104 232 86 196 250 8 153 16 15 207 87 221 81 0]
Boolean>>printOn:
Boolean>>xor: #[94 223 209 63 98 133 201 36 35 91 98 201 132 117 16 173]
Boolean>>| #[172 101 173 149 211 218 216 26 238 237 234 63 104 145 149 234]
BoxedFloat64 class>>basicNew: #[143 16 192 161 207 55 140 3 62 38 73 205 4 58 110 1]
BoxedFloat64>>* #[81 54 158 184 255 36 45 204 170 223 220 226 204 126 61 111]
BoxedFloat64>>+ #[187 3 20 64 131 42 253 87 140 25 146 61 173 115 96 92]
BoxedFloat64>>- #[27 137 140 75 97 213 66 127 125 22 53 153 212 24 181 1]
BoxedFloat64>>/ #[127 175 167 4 254 184 70 170 6 248 225 161 39 109 138 53]
BoxedFloat64>>< #[216 120 102 159 238 180 28 173 42 215 250 194 110 31 53 33]
BoxedFloat64>><= #[103 209 117 6 123 10 228 179 225 187 112 55 217 200 140 198]
BoxedFloat64>>= #[25 118 221 116 197 32 71 146 134 7 228 131 72 1 180 97]
BoxedFloat64>>> #[241 10 255 75 94 58 69 192 118 216 128 164 77 3 149 207]
BoxedFloat64>>>= #[228 49 254 50 171 240 70 87 61 155 65 14 115 52 206 141]
BoxedFloat64>>arcTan #[161 104 244 220 255 68 16 201 35 13 73 109 137 120 190 106]
BoxedFloat64>>exp #[134 127 79 239 249 221 32 62 138 133 220 36 86 3 95 151]
BoxedFloat64>>exponent #[121 49 64 22 6 125 160 97 162 55 154 37 97 202 13 79]
BoxedFloat64>>fractionPart #[82 226 11 210 50 60 224 235 15 238 189 9 13 132 138 242]
BoxedFloat64>>ln #[229 124 43 58 215 176 112 235 194 223 78 0 68 78 215 115]
BoxedFloat64>>sin #[86 145 48 10 196 236 12 18 162 189 84 188 115 241 196 252]
BoxedFloat64>>size
BoxedFloat64>>sqrt #[156 16 29 189 132 61 85 6 116 71 121 154 214 202 168 199]
BoxedFloat64>>timesTwoPower: #[120 132 111 233 73 10 64 97 79 141 4 20 172 96 193 28]
BoxedFloat64>>truncated #[127 24 96 18 150 65 8 226 243 11 16 61 192 213 55 32]
BoxedFloat64>>~= #[237 232 168 71 125 225 58 230 45 208 0 223 145 36 166 229]
ByteArray class>>hashBytes:startingWith: #[175 3 250 77 101 234 81 238 25 219 108 11 156 66 119 17]
ByteArray>>at:
ByteArray>>at:put:
ByteArray>>atAllPut: #[26 57 100 107 225 120 245 8 218 38 129 139 190 123 41 59]
ByteArray>>boolean8AtOffset: #[38 78 183 160 71 25 64 35 73 189 40 69 92 198 198 44]
ByteArray>>boolean8AtOffset:put: #[22 93 160 242 215 247 167 224 82 36 198 17 204 67 58 166]
ByteArray>>byteAt: #[107 222 194 115 212 243 6 152 92 47 143 193 160 104 13 233]
ByteArray>>byteAt:put: #[150 203 217 3 52 153 126 169 135 1 243 77 63 137 161 75]
ByteArray>>char16AtOffset: #[84 36 133 185 69 102 193 238 48 1 203 204 149 3 62 69]
ByteArray>>char16AtOffset:put: #[244 83 217 61 92 199 52 21 27 79 215 93 166 254 204 235]
ByteArray>>char32AtOffset: #[221 157 2 190 3 65 213 28 37 69 15 182 236 129 129 195]
ByteArray>>char32AtOffset:put: #[31 59 151 129 207 61 86 103 210 186 131 21 137 94 94 26]
ByteArray>>char8AtOffset: #[76 245 150 58 195 120 138 248 100 148 9 17 112 219 48 83]
ByteArray>>char8AtOffset:put: #[118 42 52 21 1 176 204 203 204 254 190 120 42 247 50 125]
ByteArray>>doubleAt: #[128 73 129 90 226 85 138 50 135 89 138 92 116 40 65 120]
ByteArray>>doubleAt:put: #[155 7 190 7 126 165 203 216 204 6 10 215 97 206 232 162]
ByteArray>>float32AtOffset: #[24 66 132 164 21 158 142 156 52 5 30 80 141 6 237 110]
ByteArray>>float32AtOffset:put: #[140 232 36 93 221 154 66 139 225 71 44 240 202 26 206 235]
ByteArray>>float64AtOffset: #[199 77 190 210 147 71 92 150 236 132 207 26 222 130 136 89]
ByteArray>>float64AtOffset:put: #[198 56 215 196 60 16 94 13 32 14 104 18 245 34 113 47]
ByteArray>>floatAt: #[195 46 98 154 77 196 208 253 23 191 20 240 84 143 168 231]
ByteArray>>floatAt:put: #[162 205 234 244 128 159 134 152 155 236 144 204 165 110 116 200]
ByteArray>>int16AtOffset: #[106 80 34 248 0 247 48 20 243 151 57 225 157 225 68 165]
ByteArray>>int16AtOffset:put: #[208 35 81 160 131 249 87 74 249 139 226 88 66 146 11 230]
ByteArray>>int32AtOffset: #[161 99 160 208 21 174 114 187 16 169 68 216 45 146 224 236]
ByteArray>>int32AtOffset:put: #[50 202 184 124 243 222 89 220 1 3 48 221 184 151 175 121]
ByteArray>>int64AtOffset: #[2 91 32 190 250 24 22 36 220 60 3 46 254 140 188 172]
ByteArray>>int64AtOffset:put: #[177 71 249 132 53 191 101 63 62 157 22 200 229 119 131 96]
ByteArray>>int8AtOffset: #[12 69 219 136 251 213 240 255 157 96 186 2 159 113 90 247]
ByteArray>>int8AtOffset:put: #[211 3 111 232 43 140 236 108 217 197 4 246 126 106 193 175]
ByteArray>>integerAt:put:size:signed: #[19 87 1 25 44 227 170 242 66 158 84 161 148 159 46 210]
ByteArray>>pointerAtOffset: #[43 3 219 44 247 13 205 69 240 59 239 188 137 183 65 113]
ByteArray>>pointerAtOffset:put: #[175 182 197 91 5 56 200 150 210 226 161 111 87 148 13 84]
ByteArray>>replaceFrom:to:with:startingAt: #[165 150 18 231 82 209 145 70 140 37 35 109 106 42 9 122]
ByteArray>>uint16AtOffset: #[193 23 186 155 27 171 219 117 133 116 152 243 20 206 149 3]
ByteArray>>uint16AtOffset:put: #[221 8 246 16 87 254 206 77 124 203 2 13 4 7 130 139]
ByteArray>>uint32AtOffset: #[171 96 220 86 203 196 5 179 233 73 229 113 232 129 55 118]
ByteArray>>uint32AtOffset:put: #[193 49 226 173 115 201 101 123 90 39 66 187 70 1 70 84]
ByteArray>>uint64AtOffset: #[155 251 95 127 83 52 214 186 179 7 213 10 209 139 223 222]
ByteArray>>uint64AtOffset:put: #[97 160 4 13 52 21 222 218 17 199 171 165 235 149 108 164]
ByteArray>>uint8AtOffset: #[22 255 206 209 65 0 112 217 117 78 33 40 21 136 86 201]
ByteArray>>uint8AtOffset:put: #[101 95 144 71 87 111 181 191 209 27 5 77 57 221 156 44]
ByteString class>>basicNew:
ByteString class>>compare:with:collated:
ByteString class>>findFirstInString:inSet:startingAt: #[157 45 91 35 222 79 59 153 247 122 36 157 72 10 141 35]
ByteString class>>indexOfAscii:inString:startingAt: #[225 126 209 38 167 136 94 140 142 145 235 32 235 218 194 235]
ByteString class>>stringHash:initialHash: #[36 10 154 183 173 189 16 88 157 50 241 230 238 70 126 172]
ByteString class>>translate:from:to:table: #[75 153 23 203 52 7 7 207 147 231 252 133 171 5 205 37]
ByteString>>at: #[152 98 135 154 139 177 35 97 81 159 137 45 64 192 90 1]
ByteString>>at:put: #[255 15 57 134 215 30 37 3 185 162 61 22 113 245 93 221]
ByteString>>byteAt: #[252 29 199 123 105 249 76 175 252 98 244 45 233 59 218 179]
ByteString>>byteAt:put: #[54 113 102 79 24 6 240 124 136 115 225 117 13 51 42 160]
ByteString>>replaceFrom:to:with:startingAt: #[116 45 176 6 112 220 116 109 163 139 108 145 130 148 23 118]
ByteSymbol class>>lookup:
ByteSymbol>>at: #[152 98 135 154 139 177 35 97 81 159 137 45 64 192 90 1]
ByteSymbol>>byteAt: #[252 29 199 123 105 249 76 175 252 98 244 45 233 59 218 179]
ByteSymbol>>findSubstring:in:startingAt:matchTable: #[238 154 10 211 233 151 205 16 47 63 51 144 51 167 150 132]
ByteSymbol>>flushCache
ByteSymbol>>privateAt:put: #[67 4 132 37 8 50 164 74 179 241 77 165 70 236 90 200]
CannotReturn>>result #[29 231 147 229 142 153 53 26 208 184 63 82 38 234 104 40]
CannotReturn>>result: #[249 155 227 125 60 91 255 138 208 38 235 240 162 143 74 132]
Character class>>value: #[88 61 22 80 123 36 14 49 172 131 156 3 21 177 119 23]
Character>>= #[115 93 229 41 69 23 33 107 102 193 45 5 84 246 178 20]
Character>>asciiValue #[32 135 77 238 44 168 77 253 157 73 3 162 249 59 199 204]
Character>>asInteger #[42 105 202 119 105 126 88 252 180 106 71 127 252 223 104 83]
Character>>basicIdentityHash #[85 170 165 194 167 63 82 33 67 167 105 122 90 67 21 74]
Character>>hash #[8 135 233 27 111 7 177 220 57 169 33 226 64 140 139 157]
Class>>basicCategory
Class>>basicCategory:
Class>>classPool #[176 2 241 8 148 177 7 181 185 55 116 195 179 27 124 63]
Class>>classPool: #[61 32 117 184 18 32 154 18 218 136 116 223 20 126 87 245]
Class>>copyForAnnouncement #[196 33 6 60 199 175 157 220 127 63 180 157 245 131 233 111]
Class>>environment #[161 201 81 188 191 231 66 166 162 197 150 175 140 30 53 97]
Class>>environment: #[106 176 102 41 188 122 161 230 126 2 97 81 58 250 105 156]
Class>>new
Class>>new:
Class>>obsolete #[54 158 217 70 170 29 77 38 114 22 235 26 52 225 13 88]
Class>>sharedPools #[107 92 87 132 30 137 39 99 112 63 53 23 193 51 69 165]
Class>>sharedPools: #[175 113 177 92 50 61 219 74 127 46 67 161 210 127 107 53]
Class>>subclass:instanceVariableNames:classVariableNames:poolDictionaries:category:
Class>>subclasses #[207 36 141 105 11 26 53 39 230 181 119 57 137 134 31 55]
ClassDescription>>basicOrganization
ClassDescription>>basicOrganization:
ClassDescription>>compile:classified: #[53 123 11 127 57 43 206 220 67 92 40 23 217 101 101 126]
ClassDescription>>definitionWithoutSlots
ClassDescription>>definitionWithSlots
ClassDescription>>oldDefinition #[46 94 67 85 106 83 232 113 223 190 182 113 250 202 124 85]
ClassDescription>>slots #[44 75 160 210 142 115 134 61 94 90 39 210 76 2 242 246]
ClassDescription>>superclass:layout: #[52 70 251 150 133 220 160 69 209 52 254 34 1 17 62 144]
CompiledCode class>>newMethod:header: #[62 121 255 187 193 123 104 159 179 64 198 204 222 94 4 161]
CompiledCode>>objectAt: #[237 181 84 20 164 23 174 156 234 244 149 187 209 121 190 177]
CompiledCode>>objectAt:put: #[10 236 58 111 37 35 229 103 249 177 140 222 237 239 10 161]
CompiledCode>>voidCogVMState #[178 122 12 151 183 189 228 34 249 42 24 145 209 113 214 129]
CompiledMethod class>>abstractMarker #[190 156 42 227 76 194 57 3 213 153 77 37 93 84 81 184]
CompiledMethod class>>basicNew
CompiledMethod class>>basicNew:
CompiledMethod class>>checkBytecodeSetConflictsInMethodsWith: #[148 110 3 236 165 103 92 190 225 241 221 90 244 1 187 62]
CompiledMethod class>>checkIsValidBytecodeEncoder: #[53 225 99 6 65 196 235 111 151 4 94 1 33 127 135 144]
CompiledMethod class>>cleanUpSourceInTrailers
CompiledMethod class>>conflictMarker #[117 98 236 57 127 151 139 51 123 143 71 230 145 193 246 187]
CompiledMethod class>>disabledMarker #[253 51 235 6 31 55 248 166 119 61 6 102 83 163 192 216]
CompiledMethod class>>explicitRequirementMarker #[33 38 145 116 75 171 187 216 23 120 186 208 68 198 240 140]
CompiledMethod class>>fullFrameSize #[125 152 73 74 157 71 240 151 42 63 165 126 5 65 144 189]
CompiledMethod class>>handleFailingFailingNewMethod:header:
CompiledMethod class>>handleFailingNewMethod:header:
CompiledMethod class>>headerFlagForEncoder: #[167 29 226 160 71 176 124 16 128 18 153 131 224 133 21 120]
CompiledMethod class>>initialize #[106 121 176 64 151 208 185 89 69 139 140 247 30 158 196 98]
CompiledMethod class>>installPrimaryBytecodeSet: #[67 141 121 171 203 50 231 230 158 59 39 85 126 153 53 159]
CompiledMethod class>>installSecondaryBytecodeSet: #[98 225 138 102 73 23 103 191 211 50 199 44 97 0 93 45]
CompiledMethod class>>methodPropertiesClass #[61 227 10 194 206 82 199 102 119 146 103 66 120 205 172 80]
CompiledMethod class>>new #[195 67 185 178 126 69 57 84 39 100 139 70 43 254 1 80]
CompiledMethod class>>newBytes:trailerBytes:nArgs:nTemps:nStack:nLits:primitive:
CompiledMethod class>>newBytes:trailerBytes:nArgs:nTemps:nStack:nLits:primitive:flag:
CompiledMethod class>>newFrom:
CompiledMethod class>>newInstanceFrom:variable:size:map:
CompiledMethod class>>primitive:numArgs:numTemps:stackSize:literals:bytecodes:trailer:
CompiledMethod class>>smallFrameSize #[245 109 184 11 98 66 45 58 254 152 8 90 153 114 229 219]
CompiledMethod class>>sortBlock #[127 198 241 88 33 132 45 52 144 45 108 177 171 82 142 253]
CompiledMethod class>>subclassResponsibilityMarker #[34 224 76 16 190 171 70 130 29 208 64 161 238 43 106 118]
CompiledMethod class>>toReturnConstant:trailerBytes:
CompiledMethod class>>toReturnField:trailerBytes:
CompiledMethod class>>toReturnSelf
CompiledMethod class>>toReturnSelfTrailerBytes:
CompiledMethod>>argumentNames
CompiledMethod>>asActiveRingDefinition #[82 128 1 8 63 57 137 100 17 204 238 55 206 235 200 237]
CompiledMethod>>asFullRingDefinition #[171 129 120 153 10 35 170 157 49 242 49 122 57 83 186 79]
CompiledMethod>>asHistoricalRingDefinition #[29 152 251 226 141 179 64 67 15 45 219 189 15 122 204 50]
CompiledMethod>>asMCMethodDefinition #[13 193 162 222 29 22 120 235 205 189 55 142 44 88 32 18]
CompiledMethod>>asPassiveRingDefinition #[144 186 61 124 236 75 94 208 83 123 88 194 32 94 92 202]
CompiledMethod>>asRingDefinition #[37 1 110 131 184 110 42 231 61 143 32 238 198 49 254 153]
CompiledMethod>>assignmentNodes
CompiledMethod>>ast #[111 45 254 247 244 201 209 1 164 147 237 160 22 89 247 218]
CompiledMethod>>basicAsMCMethodDefinition #[118 29 248 202 116 118 125 82 39 112 176 251 48 80 59 184]
CompiledMethod>>blockNodes
CompiledMethod>>cachePragmas #[145 9 93 75 48 105 243 210 202 64 228 95 29 47 235 233]
CompiledMethod>>category
CompiledMethod>>classBinding #[115 253 140 219 130 17 92 23 123 103 194 224 172 58 99 14]
CompiledMethod>>classBinding: #[208 30 22 75 42 77 54 179 144 188 53 245 148 226 229 116]
CompiledMethod>>codeForNoSource #[67 122 213 160 24 161 129 104 26 207 248 227 93 56 185 172]
CompiledMethod>>comments #[188 201 225 155 87 186 86 115 140 121 192 191 135 91 121 160]
CompiledMethod>>compiledMethod
CompiledMethod>>containsHalt #[56 79 181 191 206 167 124 161 60 228 240 48 12 251 155 78]
CompiledMethod>>copyWithSource:
CompiledMethod>>copyWithTrailerBytes:
CompiledMethod>>createTwin
CompiledMethod>>debuggerMap
CompiledMethod>>decompile #[180 51 106 139 84 255 189 124 249 82 79 229 185 149 78 50]
CompiledMethod>>decompileIR
CompiledMethod>>defaultSelector #[230 128 125 30 225 148 114 46 118 101 231 56 218 201 122 55]
CompiledMethod>>destroyTwin
CompiledMethod>>displayStringOn: #[243 73 161 79 129 12 177 252 151 161 35 238 110 206 85 237]
CompiledMethod>>embeddSourceInTrailer
CompiledMethod>>endPC #[238 0 82 102 56 106 111 58 26 93 33 135 203 162 180 0]
CompiledMethod>>ffiArgumentNames
CompiledMethod>>firstComment #[74 224 235 214 214 63 208 140 96 220 197 231 63 55 144 94]
CompiledMethod>>flushCache #[154 61 132 231 12 122 11 37 103 222 180 129 212 217 73 130]
CompiledMethod>>getPreambleFrom:at: #[62 226 91 208 167 215 130 66 230 89 132 140 101 24 115 4]
CompiledMethod>>getSourceFromFile #[184 70 221 175 20 154 37 34 9 172 87 33 111 14 52 50]
CompiledMethod>>getSourceReplacingSelectorWith: #[57 25 241 29 194 70 176 218 234 213 77 119 176 158 103 80]
CompiledMethod>>hasBreakpoint
CompiledMethod>>hasComment #[160 16 111 60 28 115 49 221 44 112 28 94 34 37 214 176]
CompiledMethod>>hasLinks
CompiledMethod>>hasMetaLinks
CompiledMethod>>hasPragma #[194 164 23 142 155 97 225 34 248 106 93 27 133 82 148 101]
CompiledMethod>>hasPragmaNamed: #[154 60 103 89 168 77 217 196 99 22 108 56 169 71 247 175]
CompiledMethod>>hasProperties #[32 155 68 207 118 110 228 81 220 238 142 225 187 180 127 129]
CompiledMethod>>hasProperty: #[70 7 11 69 165 190 166 87 91 203 85 20 240 181 120 213]
CompiledMethod>>hasSourceCode #[84 0 229 108 63 239 153 67 226 210 61 142 18 107 72 81]
CompiledMethod>>hasSourcePointer #[189 64 8 124 62 189 45 114 238 96 23 149 126 52 88 204]
CompiledMethod>>hasTemporaryVariableNamed: #[177 69 97 61 49 100 200 148 111 68 198 233 245 113 116 36]
CompiledMethod>>implementors #[0 4 20 50 206 160 111 6 33 15 7 51 32 178 206 216]
CompiledMethod>>installLink:
CompiledMethod>>instanceVariableReadNodes
CompiledMethod>>instanceVariableWriteNodes
CompiledMethod>>invalidate
CompiledMethod>>ir
CompiledMethod>>irPrimitive
CompiledMethod>>isAbstract #[153 118 204 87 215 135 116 20 209 175 80 71 99 74 173 23]
CompiledMethod>>isBinarySelector #[1 135 1 203 52 251 41 128 80 55 130 38 51 243 46 147]
CompiledMethod>>isClassSide #[81 146 52 221 1 247 135 178 57 241 134 217 87 83 94 230]
CompiledMethod>>isCompiledMethod #[151 241 119 237 189 200 121 6 161 218 255 112 84 244 51 140]
CompiledMethod>>isConflict #[10 36 240 12 20 36 3 179 198 113 88 80 64 53 86 253]
CompiledMethod>>isDefinedInPackage:
CompiledMethod>>isDeprecated #[27 88 33 162 171 222 57 85 222 42 70 97 239 196 211 187]
CompiledMethod>>isDisabled #[180 101 126 216 250 49 58 201 119 157 212 227 199 233 147 189]
CompiledMethod>>isDisabled: #[207 240 33 205 180 98 221 249 240 26 38 216 1 223 93 246]
CompiledMethod>>isDoIt #[10 20 44 222 147 206 6 64 209 241 83 6 186 16 127 226]
CompiledMethod>>isErrorTest
CompiledMethod>>isExplicitlyRequired #[45 107 136 141 31 224 119 227 32 135 173 168 49 9 11 78]
CompiledMethod>>isExplicitlyRequired: #[113 217 53 199 129 153 3 251 152 129 158 81 103 250 78 24]
CompiledMethod>>isExtension #[78 239 187 199 188 219 225 75 143 172 254 31 178 215 66 50]
CompiledMethod>>isExtensionInPackage:
CompiledMethod>>isFailedTest
CompiledMethod>>isFaulty #[31 137 173 245 176 149 180 154 183 149 234 79 230 47 175 153]
CompiledMethod>>isFFIMethod
CompiledMethod>>isFromTrait #[20 25 160 151 170 198 108 9 84 7 165 2 19 129 98 124]
CompiledMethod>>isInstalled #[247 44 115 213 90 67 225 49 190 134 72 212 38 165 137 123]
CompiledMethod>>isOverridden #[250 19 138 215 157 61 216 102 180 127 59 134 112 215 189 185]
CompiledMethod>>isPassedTest
CompiledMethod>>isProvided #[187 189 147 68 252 254 85 104 30 75 137 57 126 29 121 194]
CompiledMethod>>isProvided: #[120 17 209 224 246 238 103 28 111 99 106 9 234 77 226 171]
CompiledMethod>>isRequired #[254 127 241 64 156 107 21 45 191 139 89 17 171 25 227 210]
CompiledMethod>>isRequired: #[250 48 169 58 97 21 243 5 222 94 210 12 89 160 233 6]
CompiledMethod>>isReturnField #[232 136 57 231 154 117 67 182 89 242 229 77 56 9 213 75]
CompiledMethod>>isReturnSelf
CompiledMethod>>isReturnSpecial
CompiledMethod>>isSelfEvaluating #[140 38 102 81 110 6 64 216 155 157 159 35 145 172 66 69]
CompiledMethod>>isSubclassResponsibility #[187 29 94 11 44 134 189 164 213 182 81 134 1 124 243 133]
CompiledMethod>>isSubclassResponsibility: #[210 205 121 39 77 127 73 214 95 19 244 46 8 16 123 105]
CompiledMethod>>isTaggedWith:
CompiledMethod>>isTestMethod
CompiledMethod>>linesOfCode #[51 214 217 250 141 251 72 142 149 95 26 124 50 124 107 216]
CompiledMethod>>link:toVariableNamed:option:
CompiledMethod>>literalsToSkip #[135 62 236 53 72 49 172 152 136 1 85 198 54 181 247 234]
CompiledMethod>>lookupVar: #[202 15 173 28 84 153 123 216 75 30 8 233 114 109 19 19]
CompiledMethod>>markerOrNil #[74 113 11 108 241 123 247 32 57 238 180 235 46 102 196 92]
CompiledMethod>>metaLinkOptions
CompiledMethod>>method #[220 202 250 188 66 123 219 214 143 176 99 8 224 39 75 177]
CompiledMethod>>methodClass #[10 25 244 16 80 210 56 140 221 27 149 137 196 169 252 129]
CompiledMethod>>methodClass: #[77 62 148 34 40 252 114 155 162 253 214 44 109 34 126 51]
CompiledMethod>>methodNode #[21 117 77 174 109 99 221 166 164 171 40 37 123 38 224 173]
CompiledMethod>>methodReference #[175 139 253 251 205 29 27 86 52 189 62 212 99 252 38 130]
CompiledMethod>>name #[119 234 161 156 8 22 176 192 223 255 165 24 121 65 72 76]
CompiledMethod>>newBreakpointForVariable:
CompiledMethod>>numberOfReservedLiterals
CompiledMethod>>origin
CompiledMethod>>originMethod
CompiledMethod>>package
CompiledMethod>>packageFromOrganizer:
CompiledMethod>>parseTree #[63 254 167 169 252 217 152 91 87 166 113 38 117 35 254 66]
CompiledMethod>>penultimateLiteral #[81 165 101 206 192 24 2 157 75 54 146 227 27 27 178 162]
CompiledMethod>>penultimateLiteral: #[255 75 130 46 209 72 31 207 134 30 177 60 191 235 243 13]
CompiledMethod>>postCopy #[84 30 86 109 174 36 94 130 161 177 197 203 181 176 250 235]
CompiledMethod>>pragmaAt: #[56 34 52 33 155 56 255 23 176 107 43 65 70 155 19 251]
CompiledMethod>>pragmaRefersToLiteral: #[139 7 47 223 163 250 48 98 119 169 22 238 248 13 89 246]
CompiledMethod>>pragmas #[170 139 84 130 229 14 86 193 242 165 216 72 28 115 189 180]
CompiledMethod>>pragmasDo: #[123 22 169 162 143 51 12 230 122 232 206 142 57 1 118 108]
CompiledMethod>>prepareForSimulationWith: #[37 58 205 200 99 216 238 199 89 154 54 185 225 106 97 166]
CompiledMethod>>primitive
CompiledMethod>>printOn: #[87 61 94 217 237 241 250 141 192 81 57 174 128 205 129 17]
CompiledMethod>>printPrimitiveOn: #[147 17 46 24 40 51 37 201 146 192 148 85 69 218 145 56]
CompiledMethod>>properties #[242 199 111 248 118 181 180 107 164 218 226 85 244 242 50 136]
CompiledMethod>>properties: #[72 2 112 83 113 67 234 101 20 59 34 98 74 43 206 159]
CompiledMethod>>propertyAt: #[29 64 193 159 116 4 11 8 245 14 133 64 120 178 178 193]
CompiledMethod>>propertyAt:ifAbsent: #[220 85 173 76 68 159 195 221 27 103 51 239 93 126 2 201]
CompiledMethod>>propertyAt:ifAbsentPut: #[127 6 72 12 234 199 113 164 196 133 29 183 12 180 178 16]
CompiledMethod>>propertyAt:put: #[116 201 251 226 114 24 8 102 69 65 99 9 209 103 139 241]
CompiledMethod>>propertyKeysAndValuesDo: #[24 36 174 26 24 104 217 116 212 206 213 180 158 216 203 224]
CompiledMethod>>propertyValueAt:
CompiledMethod>>propertyValueAt:ifAbsent:
CompiledMethod>>propertyValueAt:put:
CompiledMethod>>protocol #[147 160 148 213 242 74 99 149 202 198 147 47 112 232 181 245]
CompiledMethod>>protocol: #[172 140 200 69 227 246 83 213 53 199 20 154 119 70 170 1]
CompiledMethod>>putSource:class:category:withStamp:priorMethod:
CompiledMethod>>putSource:withPreamble: #[135 87 157 57 215 137 92 37 35 111 253 116 12 75 109 223]
CompiledMethod>>readsField: #[245 200 158 93 121 58 143 58 174 196 121 233 159 233 157 103]
CompiledMethod>>realClass #[112 184 136 90 15 125 35 118 145 125 195 182 25 191 124 229]
CompiledMethod>>receiver:withArguments:executeMethod: #[29 141 11 231 204 95 0 205 120 84 217 253 60 143 205 207]
CompiledMethod>>recompile #[34 146 153 40 244 231 235 157 86 79 195 238 33 40 122 126]
CompiledMethod>>referencedClasses #[142 17 209 144 44 77 175 233 63 112 50 51 45 110 43 155]
CompiledMethod>>refersToLiteral: #[92 51 111 71 132 55 235 17 9 201 39 253 141 244 43 106]
CompiledMethod>>reflectiveMethod
CompiledMethod>>reflectiveMethod:
CompiledMethod>>reflectivityDisabled
CompiledMethod>>reformat #[77 86 254 95 108 0 27 147 254 220 3 34 34 45 195 13]
CompiledMethod>>removeFromSystem #[77 222 32 207 227 37 191 174 137 109 100 244 54 8 81 160]
CompiledMethod>>removeLink:
CompiledMethod>>removeProperty: #[172 82 214 75 73 37 252 103 30 36 59 5 208 20 154 205]
CompiledMethod>>removeProperty:ifAbsent: #[129 88 231 128 59 102 244 117 173 122 176 165 210 37 28 165]
CompiledMethod>>removeSavedTemp:
CompiledMethod>>returnField #[213 38 58 24 235 149 178 52 175 207 175 38 74 180 190 177]
CompiledMethod>>sameAsMCDefinition: #[42 148 181 105 110 172 81 98 76 111 0 13 219 44 101 141]
CompiledMethod>>savedTemps
CompiledMethod>>saveTemp:
CompiledMethod>>selector #[23 38 92 65 2 49 79 183 82 184 61 156 150 216 186 155]
CompiledMethod>>selector: #[171 42 242 86 140 159 57 134 234 180 186 53 19 235 143 53]
CompiledMethod>>senders #[109 219 27 2 38 121 84 221 202 200 169 193 117 241 18 59]
CompiledMethod>>sendNodes
CompiledMethod>>setSourcePointer: #[161 209 94 93 102 223 203 88 23 175 250 251 10 195 130 11]
CompiledMethod>>sourceCode #[255 0 23 206 103 82 121 28 91 59 188 168 244 232 37 104]
CompiledMethod>>sourceNode #[23 124 232 140 168 223 223 108 150 64 182 96 139 164 186 5]
CompiledMethod>>sourceNodeExecutedForPC:
CompiledMethod>>sourceNodeForPC: #[201 31 220 99 118 85 240 241 208 32 57 77 56 123 119 78]
CompiledMethod>>sourcePointer #[174 146 165 171 162 107 107 255 240 52 65 152 58 246 108 12]
CompiledMethod>>stepIntoQuickMethods: #[53 97 45 131 135 160 81 208 40 58 132 29 106 68 117 185]
CompiledMethod>>storeOn: #[4 205 224 8 37 131 0 59 170 92 136 57 47 116 46 188]
CompiledMethod>>tags
CompiledMethod>>tagWith:
CompiledMethod>>tempNames #[104 195 188 119 194 194 155 143 129 75 253 232 233 40 151 25]
CompiledMethod>>temporaryVariableNamed: #[249 194 173 155 212 116 87 140 154 250 222 255 250 249 129 81]
CompiledMethod>>temporaryVariables #[56 71 17 159 110 158 152 129 41 87 245 88 227 189 26 238]
CompiledMethod>>trailer
CompiledMethod>>traitSource #[214 23 62 107 109 27 156 202 154 187 232 31 164 159 92 245]
CompiledMethod>>untagFrom:
CompiledMethod>>usesUndeclareds #[150 162 128 6 1 39 32 204 185 108 245 147 62 126 109 119]
CompiledMethod>>valueWithReceiver:arguments: #[52 165 88 91 121 22 110 245 54 91 155 230 169 214 213 193]
CompiledMethod>>variableNodes
CompiledMethod>>variableReadNodes
CompiledMethod>>variableWriteNodes
CompiledMethod>>veryDeepCopyWith: #[119 101 72 236 225 69 82 127 211 88 123 249 108 175 186 98]
CompiledMethod>>writesField: #[159 148 182 183 138 28 152 178 9 131 222 12 231 152 185 104]
Context class>>allInstances #[181 106 34 50 172 80 106 84 126 206 233 15 144 251 223 69]
Context>>at: #[200 126 200 124 127 67 196 239 156 142 110 49 179 50 185 18]
Context>>at:put: #[166 16 76 130 201 14 27 60 9 216 99 86 1 91 240 111]
Context>>basicAt: #[161 187 230 0 56 77 212 219 108 54 57 245 223 34 92 75]
Context>>basicAt:put: #[61 22 249 231 218 106 235 10 193 34 233 248 206 239 211 83]
Context>>basicSize #[123 152 187 130 161 145 9 71 231 103 140 68 89 255 211 228]
Context>>closureCopy:copiedValues:
Context>>evaluateSignal: #[51 183 194 169 208 164 192 9 11 70 232 49 47 109 86 104]
Context>>findNextHandlerOrSignalingContext #[233 166 152 26 99 39 195 166 178 16 121 232 69 175 237 245]
Context>>findNextUnwindContextUpTo: #[86 174 245 59 149 139 27 252 240 210 63 166 67 148 3 88]
Context>>object:basicAt: #[38 7 190 171 227 148 99 22 160 250 24 143 2 138 121 143]
Context>>object:basicAt:put: #[175 34 157 239 58 221 67 151 255 218 209 106 107 247 222 0]
Context>>object:eqeq: #[71 96 28 222 134 168 138 24 100 67 235 1 242 85 140 174]
Context>>object:instVarAt: #[79 222 57 64 101 59 55 163 82 138 180 198 79 162 149 180]
Context>>object:instVarAt:put: #[115 215 245 179 252 33 121 153 42 249 32 59 94 167 3 35]
Context>>object:perform:withArguments:inClass: #[98 195 135 60 57 91 58 241 18 91 140 32 243 107 186 235]
Context>>objectClass: #[132 79 30 210 247 96 181 39 171 105 134 22 231 68 46 240]
Context>>objectSize: #[40 46 7 0 135 73 18 179 244 8 114 211 205 73 161 198]
Context>>rftempAt:put:
Context>>size #[193 15 253 217 28 60 245 90 39 47 71 47 49 164 42 139]
Context>>stackp: #[46 172 135 73 106 208 57 116 238 83 142 135 240 102 76 229]
Context>>tempAt: #[133 248 16 32 68 151 156 10 235 233 57 7 70 164 227 145]
Context>>tempAt:put: #[188 150 250 201 111 51 209 202 133 121 171 113 228 20 108 86]
Context>>terminateTo: #[122 66 91 69 7 149 15 117 103 197 201 108 174 43 41 30]
Context>>tryNamedPrimitiveIn:for:withArgs: #[8 228 23 11 214 97 220 147 160 26 246 70 103 173 68 57]
CRC class>>update:from:to:in: #[215 0 72 193 188 221 233 44 188 80 228 64 185 220 28 221]
DateAndTime class>>now #[148 11 253 26 210 102 174 64 1 49 168 210 98 155 74 130]
DeflateStream>>updateHashTable:delta: #[254 192 141 156 35 221 174 156 13 166 202 5 171 244 19 187]
Delay class>>anyActive #[254 130 52 227 149 212 172 223 216 90 144 245 92 198 58 90]
Delay class>>delaySchedulerClass #[112 172 233 181 25 200 134 191 169 64 62 75 109 75 52 23]
Delay class>>delaySchedulerClass: #[91 163 136 35 230 31 88 123 65 163 182 22 226 45 168 234]
Delay class>>forDuration: #[240 86 95 70 152 37 169 43 86 96 232 239 253 221 84 159]
Delay class>>forMilliseconds: #[37 39 60 87 238 124 5 116 71 52 244 213 50 86 22 230]
Delay class>>forSeconds: #[108 188 190 174 170 127 135 191 252 143 120 156 107 167 157 127]
Delay class>>initialize #[209 39 154 27 214 52 54 229 141 180 28 4 123 194 128 113]
Delay class>>nextWakeUpTime #[160 234 79 21 153 42 153 23 221 171 115 98 101 211 252 229]
Delay class>>restartTimerEventLoop #[108 170 82 146 29 126 99 213 164 111 246 139 99 130 141 249]
Delay class>>scheduler #[246 119 69 189 112 30 130 85 107 105 128 57 96 161 198 102]
Delay class>>scheduler: #[129 144 166 227 119 253 103 72 103 170 131 191 246 39 115 125]
Delay class>>schedulingProcess #[240 229 52 127 10 222 246 216 57 168 235 151 168 198 84 142]
Delay class>>shutDown #[147 235 123 150 236 26 231 212 215 228 196 205 126 124 206 48]
Delay class>>startTimerEventLoop #[227 174 115 193 232 220 19 42 163 244 30 62 85 6 213 141]
Delay class>>startUp #[185 194 134 74 250 112 162 170 212 78 244 190 74 23 128 116]
Delay class>>stopTimerEventLoop #[209 181 230 31 7 194 7 121 128 241 152 238 187 35 126 77]
Delay class>>systemSettingOn: #[222 95 216 98 179 198 131 183 254 171 172 60 151 165 210 61]
Delay class>>timeoutSemaphore:afterMSecs: #[28 36 243 77 220 74 226 130 26 163 39 239 115 130 209 177]
Delay>>beingWaitedOn #[134 161 146 197 209 115 117 83 165 199 45 231 75 179 136 200]
Delay>>delaySemaphore #[102 53 171 48 57 158 5 59 7 27 7 172 74 172 173 41]
Delay>>isExpired #[48 5 44 171 196 182 216 169 172 49 76 133 204 214 223 205]
Delay>>millisecondDelayDuration #[89 65 196 192 97 228 34 165 240 1 32 156 29 50 238 59]
Delay>>millisecondsToGo #[193 118 143 123 95 219 140 17 152 213 29 90 197 129 47 184]
Delay>>printOn: #[25 173 214 96 143 203 126 229 60 193 93 4 140 120 165 175]
Delay>>resumptionTick #[135 136 239 236 68 183 112 42 253 136 110 195 122 161 67 51]
Delay>>resumptionTickAdjustFrom:to: #[121 142 229 192 13 46 209 191 243 122 75 172 57 98 55 176]
Delay>>schedule #[74 214 242 207 15 218 76 27 18 177 62 85 251 253 133 145]
Delay>>setDelay: #[247 103 141 37 213 129 150 225 12 92 152 10 220 248 116 147]
Delay>>setDelay:forSemaphore: #[78 35 78 141 16 30 198 247 127 234 133 29 54 79 182 34]
Delay>>signal
Delay>>timingPriorityScheduleTicker: #[113 159 55 73 232 1 107 233 187 57 94 221 128 227 64 106]
Delay>>timingPrioritySignalExpired #[169 52 142 220 21 26 70 63 206 131 32 91 200 177 13 94]
Delay>>timingPriorityUnschedule #[183 190 60 138 57 248 40 5 133 197 17 36 127 28 222 201]
Delay>>unschedule #[21 46 207 233 183 128 21 41 229 58 127 202 96 54 128 201]
Delay>>wait #[156 200 128 192 71 129 90 26 247 151 246 241 109 69 243 14]
DelayMicrosecondTicker>>nowTick #[60 127 188 153 131 60 237 131 187 114 234 233 78 86 170 154]
DelayMicrosecondTicker>>primSignal:atUTCMicroseconds: #[250 135 99 243 52 218 168 161 38 221 73 39 48 131 88 42]
DelayMillisecondTicker>>nowTick #[23 246 47 47 60 218 201 249 220 161 67 21 57 206 10 246]
DelayMillisecondTicker>>primSignal:atMilliseconds: #[95 252 168 224 39 46 38 131 154 88 3 105 215 16 186 138]
DelayWaitTimeout>>isExpired #[113 225 146 244 39 12 82 199 241 168 228 45 4 243 191 168]
DelayWaitTimeout>>schedulerSignalWaitingProcess
DelayWaitTimeout>>setDelay:forSemaphore: #[157 108 131 163 201 58 209 66 228 73 171 222 8 118 43 128]
DelayWaitTimeout>>timingPrioritySignalExpired #[226 164 18 33 51 243 142 198 226 61 191 145 171 145 4 207]
DelayWaitTimeout>>wait #[163 3 88 203 150 190 23 76 156 14 105 226 112 234 185 119]
DelayWaitTimeout>>waitOnCompletion:onTimeout: #[74 159 193 113 28 239 45 0 212 42 246 244 192 69 72 117]
DependentsArray>>basicReplaceFrom:to:with:startingAt: #[109 210 203 200 47 134 253 33 157 179 65 253 144 100 131 171]
DiskStore>>directoryAt:nodesDo: #[246 134 191 82 212 126 135 148 123 206 208 240 141 26 82 64]
DoubleByteArray class>>new:
DoubleByteArray>>atAllPut: #[26 57 100 107 225 120 245 8 218 38 129 139 190 123 41 59]
DoubleByteArray>>replaceFrom:to:with:startingAt: #[16 45 144 216 41 53 96 116 165 79 241 177 59 93 124 87]
DoubleWordArray class>>new:
DoubleWordArray>>atAllPut: #[26 57 100 107 225 120 245 8 218 38 129 139 190 123 41 59]
DoubleWordArray>>replaceFrom:to:with:startingAt: #[16 45 144 216 41 53 96 116 165 79 241 177 59 93 124 87]
Error>>defaultAction
Exception>>freezeUpTo: #[225 79 37 203 95 101 171 251 133 131 136 14 88 206 212 157]
Exception>>initialize
Exception>>isNested #[146 19 144 208 195 238 237 244 149 247 104 183 241 156 147 183]
Exception>>outer #[206 13 103 140 114 11 56 118 213 94 193 14 157 84 170 69]
Exception>>pass #[191 208 44 115 128 208 28 22 216 193 243 253 241 173 66 51]
Exception>>privHandlerContext #[196 62 214 219 2 59 169 156 135 19 40 148 99 41 85 110]
Exception>>privHandlerContext: #[173 139 252 163 164 235 82 202 5 88 128 13 231 55 156 127]
Exception>>receiver #[93 217 77 88 8 165 153 30 227 53 160 17 152 215 231 105]
Exception>>resignalAs: #[32 255 86 116 109 149 129 124 46 141 252 233 242 201 79 158]
Exception>>resumeUnchecked: #[26 68 164 25 222 220 105 224 27 89 154 165 20 206 184 236]
Exception>>retry #[146 239 255 61 246 138 117 208 234 219 167 160 82 97 126 130]
Exception>>retryUsing: #[131 118 38 179 41 185 149 7 190 154 59 228 166 62 153 102]
Exception>>return: #[49 112 239 63 13 161 166 46 197 136 70 117 122 141 135 98]
Exception>>searchFrom: #[5 193 90 189 78 190 54 86 99 238 195 52 216 64 73 109]
Exception>>signal #[27 173 67 161 3 70 30 26 213 137 124 97 183 146 182 72]
Exception>>signaler #[187 85 219 161 239 4 190 74 63 48 183 136 5 97 252 123]
Exception>>signaler: #[87 13 168 83 67 97 203 92 34 69 84 222 82 197 230 35]
Exception>>signalerContext #[68 148 19 30 193 252 59 190 3 133 108 119 193 200 234 101]
Exception>>signalIn: #[71 102 239 226 99 102 155 9 184 164 5 163 81 146 78 83]
Exception>>_executeEnsuresBelow:
Exception>>_signalWith:
ExceptionSet>>, #[133 150 197 158 203 123 172 189 247 8 94 100 4 122 12 34]
ExceptionSet>>add: #[50 194 223 154 183 223 119 17 85 28 145 224 215 68 238 169]
ExceptionSet>>handles: #[146 157 195 55 103 30 200 123 1 108 43 189 2 202 48 38]
ExceptionSet>>initialize #[161 130 99 176 100 75 31 82 244 24 135 107 187 170 231 184]
ExternalAddress class>>allocate: #[223 189 111 249 251 165 242 142 28 139 223 138 94 52 87 69]
ExternalAddress class>>loadSymbol:module: #[210 39 66 124 169 77 24 221 191 146 85 93 127 126 220 231]
ExternalAddress>>clone #[21 160 232 177 65 188 149 39 132 31 20 18 250 212 15 36]
ExternalAddress>>free #[179 116 212 58 225 156 149 144 205 103 122 114 218 98 41 82]
ExternalSemaphoreTable class>>clearExternalObjects #[219 35 137 7 78 227 39 195 132 118 250 76 250 237 240 25]
ExternalSemaphoreTable class>>externalObjects #[200 47 77 15 213 23 233 19 186 100 124 24 158 170 115 132]
ExternalSemaphoreTable class>>initialize #[220 73 16 77 13 159 154 79 182 144 176 48 96 255 112 154]
ExternalSemaphoreTable class>>registerExternalObject: #[124 147 103 240 100 247 74 161 203 194 109 185 251 202 155 223]
ExternalSemaphoreTable class>>unregisterExternalObject: #[44 206 25 35 193 239 188 191 89 72 31 100 38 216 113 240]
False class>>new
FastInflateStream>>decompressBlock:with: #[49 123 115 48 0 194 82 154 25 165 36 174 245 88 13 89]
File class>>atEnd: #[146 221 90 20 224 221 148 170 20 225 170 152 130 48 195 134]
File class>>close: #[47 203 139 54 137 64 229 0 239 8 71 174 140 244 226 7]
File class>>connectToFile:writable: #[255 221 44 245 18 159 232 99 83 24 172 205 216 194 143 145]
File class>>connectToFileDescriptor:writable: #[70 161 63 59 182 164 57 32 156 241 242 26 33 40 84 172]
File class>>createDirectory: #[94 10 178 192 74 81 194 159 189 16 94 143 46 129 127 241]
File class>>deleteDirectory: #[233 101 124 19 231 239 0 96 244 92 186 202 113 16 167 57]
File class>>delimiter #[27 185 128 63 192 183 60 29 17 120 177 67 125 103 34 161]
File class>>fileAttributesVersionString #[47 49 141 16 187 184 253 241 53 0 134 250 7 198 222 3]
File class>>fileDescriptorType: #[47 31 240 201 196 12 74 65 85 144 120 127 0 223 168 10]
File class>>flush: #[231 221 107 218 205 171 170 138 126 234 250 138 73 99 56 46]
File class>>getMacFile:type:creator: #[72 52 29 231 85 42 85 197 226 20 8 78 20 133 36 188]
File class>>getPosition: #[147 244 146 220 116 239 138 128 112 247 131 111 63 222 194 250]
File class>>isDirectory: #[205 17 239 145 251 33 214 74 158 222 106 78 155 7 129 184]
File class>>lookupDirectory:filename: #[145 94 216 72 68 177 40 143 173 230 101 213 169 73 25 103]
File class>>lookupEntryIn:index: #[100 252 18 88 24 123 123 239 170 10 113 246 54 21 243 142]
File class>>open:writable: #[113 228 227 62 232 100 127 176 135 144 10 19 176 209 164 33]
File class>>primClosedir: #[129 191 220 13 56 23 207 206 174 123 16 95 234 219 149 15]
File class>>primDeleteFile: #[24 108 209 86 88 98 116 236 159 201 243 155 27 10 8 39]
File class>>primExists: #[110 156 73 227 193 66 153 60 42 200 180 38 7 200 140 32]
File class>>primFile:posixPermissions: #[38 120 251 138 246 23 106 195 156 133 39 184 248 241 49 159]
File class>>primFile:symlinkUid:gid: #[150 8 219 106 166 198 221 192 58 46 45 85 52 110 252 169]
File class>>primFile:uid:gid: #[251 100 159 175 210 69 129 61 81 105 169 5 97 182 114 123]
File class>>primFileAttribute:number: #[189 233 53 184 188 62 152 12 140 73 149 87 58 81 83 168]
File class>>primFileAttributes:mask: #[125 148 154 4 105 33 8 89 77 129 31 96 184 207 158 193]
File class>>primFileMasks #[36 210 10 190 102 62 178 14 149 3 255 188 59 40 97 21]
File class>>primFromPlatformPath: #[145 79 77 23 93 138 98 215 52 173 207 175 172 200 219 228]
File class>>primitiveWaitForDataOn:signalling: #[223 46 217 120 231 137 48 157 29 95 16 177 198 48 200 196]
File class>>primLogicalDrives #[97 106 197 229 207 234 192 10 219 9 122 156 238 18 131 6]
File class>>primOpendir: #[199 54 0 30 238 34 24 27 106 216 148 78 179 19 140 77]
File class>>primPathMax #[111 41 158 157 241 82 50 44 0 93 35 98 14 94 253 19]
File class>>primReaddir: #[66 12 180 252 201 220 173 23 89 158 81 70 37 18 112 251]
File class>>primRewinddir: #[7 66 85 15 153 17 52 169 36 124 125 76 40 93 7 5]
File class>>primToPlatformPath: #[137 202 239 225 170 70 194 33 119 197 76 120 184 225 121 135]
File class>>read:into:startingAt:count: #[60 56 238 229 128 57 188 124 144 142 240 146 227 151 134 239]
File class>>register: #[62 2 42 184 90 136 254 109 133 53 130 43 25 101 171 70]
File class>>rename:to: #[6 224 123 85 147 57 127 38 82 220 75 76 239 118 89 45]
File class>>retryWithGC:until:forFileNamed: #[28 77 19 101 143 231 6 41 48 69 179 88 147 191 187 225]
File class>>setPosition:to: #[49 215 104 51 156 242 83 170 89 112 34 200 123 171 137 83]
File class>>sizeOf: #[171 194 41 153 128 115 61 214 193 63 226 102 63 65 145 96]
File class>>sizeOrNil: #[124 212 246 121 212 129 162 90 1 49 113 205 93 108 119 209]
File class>>stdioHandles #[222 192 252 187 171 37 247 232 14 128 120 110 87 169 138 125]
File class>>sync: #[42 171 2 160 34 189 152 124 183 137 159 39 124 162 94 184]
File class>>truncate:to: #[155 79 157 31 174 179 187 190 88 19 154 115 109 109 134 238]
File class>>unregister: #[159 115 92 93 35 245 35 141 188 110 31 235 144 62 30 107]
File class>>write:from:startingAt:count: #[106 241 74 210 155 100 135 10 112 164 2 168 58 204 12 108]
FileReference class>>primDropRequestFileName:
Float>>asTrueFraction #[127 236 6 243 171 0 56 8 16 121 62 113 28 1 177 17]
Float>>basicAt: #[236 39 52 209 74 171 27 33 22 8 34 111 114 28 18 55]
Float>>basicAt:put: #[101 172 159 145 195 124 255 223 54 0 188 94 29 212 37 39]
Float>>negative
Float>>positive
Float>>significandAsInteger #[220 199 108 120 57 29 138 20 235 97 141 224 220 42 143 21]
Float32Array>>= #[184 102 251 4 68 199 19 236 127 75 202 107 243 207 172 124]
Float32Array>>at: #[4 63 205 105 8 179 93 140 246 154 77 242 117 105 238 90]
Float32Array>>at:put: #[224 227 136 172 67 37 86 138 115 66 129 110 40 229 244 235]
Float32Array>>dot: #[250 136 158 65 124 218 9 154 53 172 186 73 80 91 109 81]
Float32Array>>hash #[90 169 149 73 147 92 195 147 148 230 225 82 181 117 97 151]
Float32Array>>primAddArray: #[208 93 42 31 176 59 71 22 12 246 88 148 182 182 15 130]
Float32Array>>primAddScalar: #[41 223 64 143 193 165 25 241 107 7 175 47 98 9 227 78]
Float32Array>>primDivArray: #[167 115 188 180 77 130 38 159 93 37 5 212 253 110 111 92]
Float32Array>>primDivScalar: #[176 28 44 207 200 82 149 237 177 109 22 2 191 55 55 94]
Float32Array>>primMulArray: #[176 211 180 51 232 211 196 46 127 117 137 165 202 35 34 16]
Float32Array>>primMulScalar: #[67 114 157 226 97 84 90 76 246 131 194 58 16 147 0 240]
Float32Array>>primSubArray: #[154 152 107 76 26 87 171 168 253 189 143 98 163 149 47 168]
Float32Array>>primSubScalar: #[181 125 134 115 122 83 197 230 1 95 164 183 161 151 115 218]
Float32Array>>replaceFrom:to:with:startingAt: #[16 45 144 216 41 53 96 116 165 79 241 177 59 93 124 87]
Float32Array>>sum #[35 226 31 118 175 169 254 173 114 41 82 215 143 207 181 173]
Float64Array>>at64Bits: #[215 37 204 226 206 56 6 20 156 167 240 11 236 157 172 56]
Float64Array>>at64Bits:put: #[34 125 43 121 181 62 166 16 247 159 221 43 170 218 35 233]
FullBlockClosure>>abstractBytecodeMessagesDo:
FullBlockClosure>>asContextWithSender:
FullBlockClosure>>compiledBlock
FullBlockClosure>>compiledBlock:
FullBlockClosure>>endPC
FullBlockClosure>>hasMethodReturn
FullBlockClosure>>home
FullBlockClosure>>method
FullBlockClosure>>numArgs:
FullBlockClosure>>numTemps
FullBlockClosure>>outerContext:
FullBlockClosure>>printOn:
FullBlockClosure>>receiver #[140 99 129 155 141 124 37 89 94 165 204 47 17 150 43 136]
FullBlockClosure>>receiver: #[225 120 201 240 214 192 87 42 212 195 66 166 158 2 18 42]
FullBlockClosure>>sender #[9 64 80 228 252 83 209 225 153 144 47 25 86 128 193 241]
FullBlockClosure>>simulateValueWithArguments:caller:
FullBlockClosure>>sourceNode
FullBlockClosure>>startpc
FullBlockClosure>>value
FullBlockClosure>>value:
FullBlockClosure>>value:value:
FullBlockClosure>>value:value:value:
FullBlockClosure>>value:value:value:value:
FullBlockClosure>>valueNoContextSwitch
FullBlockClosure>>valueNoContextSwitch:
FullBlockClosure>>valueWithArguments:
Halt>>defaultAction
IndexedSlot>>object:instVarAt: #[221 62 40 44 136 95 172 101 161 141 209 213 130 97 151 216]
IndexedSlot>>object:instVarAt:put: #[4 62 82 223 102 95 29 189 48 89 34 69 95 214 202 222]
Integer>>anyBitOfMagnitudeFrom:to: #[5 190 109 198 62 157 4 42 65 92 72 115 120 43 250 178]
Integer>>bitAnd: #[89 83 247 211 27 32 5 223 10 46 2 132 13 112 57 153]
Integer>>bitOr: #[88 49 13 236 71 42 218 133 109 239 76 226 166 120 124 136]
Integer>>bitShiftMagnitude: #[114 217 92 204 31 70 176 151 36 115 166 246 150 114 46 90]
Integer>>bitXor: #[181 59 242 71 39 61 109 242 59 171 235 165 200 21 60 82]
Integer>>bytesCompare: #[196 85 33 39 112 203 76 191 99 90 147 87 43 148 216 194]
Integer>>digitAdd: #[86 80 166 114 240 242 84 206 35 229 116 224 180 124 33 121]
Integer>>digitCompare:
Integer>>digitDiv:neg: #[206 133 166 197 129 114 226 113 73 241 101 163 118 235 254 215]
Integer>>digitMultiply:neg: #[191 250 251 9 248 238 29 184 22 37 209 206 228 22 117 167]
Integer>>digitSubtract: #[146 20 20 107 204 194 166 66 247 16 252 37 24 157 211 204]
Integer>>montgomeryDigitLength #[243 148 243 69 255 77 188 22 38 66 101 236 73 245 80 10]
Integer>>montgomeryTimes:modulo:mInvModB: #[134 220 161 36 72 181 137 101 230 116 10 170 36 103 85 187]
IntegerArray class>>new:
IntegerArray>>at: #[3 200 176 234 164 38 120 189 234 51 247 196 183 97 153 39]
IntegerArray>>at:put: #[49 245 116 197 217 119 180 57 154 99 184 167 231 237 244 10]
IntegerArray>>primFill: #[216 48 104 118 84 83 122 152 155 231 62 110 116 131 127 141]
InternetConfiguration class>>primitiveGetMacintoshFileTypeAndCreatorFrom: #[60 36 52 89 234 117 55 14 2 72 248 112 168 107 4 85]
InternetConfiguration class>>primitiveGetStringKeyedBy: #[169 82 105 248 55 219 119 231 15 66 50 143 147 172 227 118]
Interval class>>new #[141 77 134 252 247 129 197 174 22 104 65 12 230 207 3 90]
Job class>>jobAnnouncer #[185 126 143 205 206 74 252 98 226 16 38 142 167 67 63 7]
LargeInteger>>* #[131 49 206 55 28 162 45 128 114 177 238 249 165 38 29 75]
LargeInteger>>+ #[112 11 109 163 147 34 203 93 199 205 175 140 195 39 11 62]
LargeInteger>>- #[25 82 136 213 43 129 54 78 231 112 136 212 216 91 153 140]
LargeInteger>>/ #[117 121 151 167 49 48 141 83 116 144 169 230 158 85 150 16]
LargeInteger>>// #[254 37 131 62 194 84 3 139 64 65 196 138 17 166 37 171]
LargeInteger>>< #[46 123 18 209 157 44 236 43 180 226 41 19 232 172 26 23]
LargeInteger>><= #[238 13 178 163 15 144 24 251 227 185 230 51 97 166 66 87]
LargeInteger>>> #[141 21 208 36 45 56 233 134 129 210 111 203 37 127 174 104]
LargeInteger>>>= #[224 226 197 240 99 84 114 16 242 117 2 240 51 18 234 201]
LargeInteger>>bitAt:
LargeInteger>>byteAt: #[20 76 15 137 45 124 122 41 17 235 183 3 216 204 156 88]
LargeInteger>>byteAt:put: #[22 22 37 64 116 47 55 226 190 63 78 151 145 172 97 244]
LargeInteger>>bytesCount #[13 55 252 254 50 220 220 243 197 142 39 249 253 88 105 122]
LargeInteger>>digitAt:
LargeInteger>>digitAt:put:
LargeInteger>>digitLength
LargeInteger>>quo: #[10 120 25 235 50 249 70 132 54 181 204 91 146 158 50 75]
LargeInteger>>rem: #[55 162 233 151 73 168 51 96 61 9 30 55 176 120 141 23]
LargeInteger>>replaceFrom:to:with:startingAt: #[140 40 25 41 254 175 201 132 201 136 219 157 157 3 1 100]
LargeInteger>>\\ #[228 11 10 144 181 186 99 130 30 142 23 203 48 13 207 7]
LargeNegativeInteger>>normalize #[228 253 167 171 6 111 39 179 14 97 29 141 50 174 6 239]
LargePositiveInteger>>hashMultiply #[179 181 251 117 175 178 238 189 103 153 56 237 199 195 168 243]
LargePositiveInteger>>normalize #[80 21 208 39 235 23 190 73 79 76 83 222 74 174 108 191]
Locale>>primCountry #[214 27 133 199 149 56 130 112 127 47 187 11 5 124 105 46]
Locale>>primCurrencyNotation #[61 38 143 88 195 131 7 118 21 248 58 206 253 58 74 146]
Locale>>primCurrencySymbol #[47 201 19 6 74 176 142 67 179 179 165 115 182 71 138 171]
Locale>>primDecimalSymbol #[153 11 122 108 161 157 210 11 160 30 62 69 68 114 139 124]
Locale>>primDigitGrouping #[57 194 102 113 120 98 57 144 48 202 112 8 248 194 56 56]
Locale>>primDST #[177 61 161 131 167 183 55 131 148 96 1 223 228 171 158 177]
Locale>>primLanguage #[187 25 45 189 21 178 165 206 154 47 196 168 73 120 86 204]
Locale>>primLongDateFormat #[171 247 113 8 219 219 11 92 184 216 216 7 125 53 146 131]
Locale>>primMeasurement #[159 63 60 255 12 47 142 142 127 3 193 206 224 240 63 170]
Locale>>primShortDateFormat #[205 251 134 62 165 107 95 218 51 130 93 168 250 137 224 236]
Locale>>primTimeFormat #[203 174 30 247 40 16 238 212 93 5 53 160 94 166 171 107]
Locale>>primTimezone #[55 11 83 182 150 144 43 179 50 80 251 108 187 162 135 52]
Locale>>primVMOffsetToUTC #[251 49 4 61 49 154 59 224 143 63 3 185 148 10 210 197]
LocalTimeZone>>primOffset #[173 75 209 86 11 11 254 0 92 224 14 222 103 156 189 183]
MCClassDefinition>>createClass #[146 44 68 3 193 34 167 145 215 219 153 208 238 162 172 165]
MCTraitDefinition>>createClass #[140 59 206 38 246 253 178 240 198 26 182 108 236 44 254 243]
MCWorkingCopy>>ancestorsFromArray:cache:
MD5 class>>isPluginAvailable #[65 178 105 3 7 210 215 73 109 7 99 10 211 226 206 238]
MD5>>primProcessBuffer:withState: #[151 54 138 32 120 212 0 161 54 57 90 68 255 67 203 216]
Message>>analogousCodeTo: #[69 171 140 100 121 75 163 23 172 228 111 73 148 141 144 210]
Message>>argument #[135 111 41 107 192 120 213 194 182 133 59 148 143 208 101 110]
Message>>argument: #[85 15 217 183 164 120 191 117 175 128 255 220 29 199 67 9]
Message>>arguments #[203 157 159 24 203 13 235 87 165 88 208 202 80 221 79 212]
Message>>arguments: #[24 43 147 46 214 59 64 62 214 26 156 119 225 127 87 173]
Message>>hasArguments #[119 135 130 101 8 12 45 181 70 237 56 218 1 200 228 92]
Message>>arguments #[203 157 159 24 203 13 235 87 165 88 208 202 80 221 79 212]
Message>>lookupClass #[110 10 168 99 96 136 79 219 97 242 94 62 233 158 218 87]
Message>>lookupClass: #[125 125 15 41 76 4 105 136 152 26 203 170 167 139 20 79]
Message>>numArgs #[158 217 211 122 64 49 180 58 75 192 9 231 100 11 39 208]
Message>>printOn: #[181 90 88 176 138 17 48 57 96 114 159 87 230 177 204 232]
Message>>sentTo: #[81 40 67 160 199 150 178 44 128 88 188 28 177 46 230 130]
Message>>setSelector:arguments: #[97 99 97 212 115 217 202 155 172 186 203 118 54 142 196 178]
Message>>storeOn: #[201 164 48 201 221 74 108 58 18 41 160 219 163 176 16 169]
MessageNotUnderstood>>defaultAction #[232 85 245 175 150 132 102 25 88 59 136 143 83 20 134 66]
MessageNotUnderstood>>initialize #[189 137 156 165 129 120 152 92 24 199 226 101 43 241 186 165]
MessageNotUnderstood>>message #[35 148 215 131 215 186 143 27 83 44 70 82 231 241 229 156]
MessageNotUnderstood>>message: #[224 14 10 231 56 180 113 249 212 24 73 66 146 86 56 61]
MessageNotUnderstood>>messageText #[130 166 81 60 72 130 143 96 110 26 70 49 59 238 128 193]
MessageNotUnderstood>>reachedDefaultHandler #[118 56 118 153 187 188 96 255 13 65 71 41 86 234 48 126]
MessageNotUnderstood>>smartDescription
Metaclass>>adoptInstance:from:
Metaclass>>environment #[239 173 164 189 184 168 71 113 192 109 204 13 159 61 210 65]
Metaclass>>fileOutOn:initializing:
Metaclass>>name #[217 154 203 116 182 9 48 11 12 250 204 80 192 93 131 24]
Metaclass>>new #[172 144 219 43 162 208 189 15 98 101 179 13 122 244 221 237]
Metaclass>>postCopy #[21 140 28 65 219 79 185 247 167 99 74 134 182 105 118 204]
Metaclass>>soleInstance #[173 201 42 249 50 192 8 48 181 129 75 96 234 155 158 82]
MetaclassForTraits>>name #[155 155 226 116 177 52 61 171 185 235 173 17 63 133 172 194]
MethodDictionary class>>compactAllInstances #[196 132 240 160 7 175 126 137 29 112 208 35 91 66 205 126]
MethodDictionary class>>new #[57 5 120 217 144 113 16 170 70 149 67 74 166 56 105 150]
MethodDictionary class>>new: #[198 239 241 108 107 238 212 91 48 135 79 102 177 128 39 26]
MethodDictionary class>>newForCapacity: #[19 105 114 10 236 223 158 157 183 48 186 40 107 183 42 84]
MethodDictionary class>>sizeFor: #[72 50 110 156 183 28 139 88 67 87 91 172 149 244 138 210]
MethodDictionary>>add: #[1 131 36 54 91 168 92 120 106 225 33 146 210 34 244 149]
MethodDictionary>>associationAt:ifAbsent: #[243 75 231 77 185 130 96 177 157 193 75 1 105 110 244 13]
MethodDictionary>>associationsDo: #[9 171 37 29 55 167 35 244 7 36 132 191 175 190 245 239]
MethodDictionary>>at:
MethodDictionary>>at:ifAbsent: #[8 208 225 69 20 147 31 193 154 214 165 135 138 163 107 174]
MethodDictionary>>at:ifPresent: #[175 165 124 67 187 39 12 177 189 34 92 90 220 246 151 215]
MethodDictionary>>at:put: #[97 140 76 182 166 108 79 2 195 84 22 217 146 242 203 76]
MethodDictionary>>compact #[178 125 34 81 140 96 218 244 114 249 183 181 117 112 247 205]
MethodDictionary>>compactWithoutBecome #[239 208 71 66 2 118 93 196 144 50 6 144 97 160 1 156]
MethodDictionary>>fixCollisionsFrom: #[212 109 132 35 151 218 57 168 171 38 250 39 208 115 228 144]
MethodDictionary>>grow #[71 40 44 214 197 235 152 225 143 208 81 141 96 153 161 65]
MethodDictionary>>includesKey:
MethodDictionary>>isHealthy #[228 67 18 11 40 105 53 38 201 203 159 50 135 174 130 6]
MethodDictionary>>keyAtIdentityValue:ifAbsent: #[171 21 107 69 230 82 201 253 203 6 252 200 245 91 21 61]
MethodDictionary>>keyAtValue:ifAbsent: #[21 78 85 22 85 215 221 48 247 19 170 116 229 76 148 141]
MethodDictionary>>keys
MethodDictionary>>keysAndValuesDo: #[211 135 84 97 124 21 255 83 125 131 29 28 203 193 210 225]
MethodDictionary>>keysDo: #[25 96 30 130 192 71 136 90 23 75 47 169 112 228 184 152]
MethodDictionary>>metaLinkOptions
MethodDictionary>>postCopy #[217 59 222 132 206 204 112 174 81 236 28 205 239 60 225 181]
MethodDictionary>>rehash #[159 130 189 189 118 188 224 161 249 51 121 204 65 105 132 174]
MethodDictionary>>removeAll #[105 138 36 240 175 140 61 143 2 128 15 48 72 25 213 116]
MethodDictionary>>removeDangerouslyKey:ifAbsent: #[122 225 120 125 8 133 87 119 240 251 39 34 127 42 127 109]
MethodDictionary>>removeKey:ifAbsent: #[59 204 36 222 211 97 4 108 152 41 201 236 47 149 188 83]
MethodDictionary>>scanFor: #[140 49 20 241 226 216 20 112 97 183 188 64 143 68 117 186]
MethodDictionary>>swap:with: #[220 67 184 124 131 195 22 115 253 102 169 127 138 170 76 250]
MethodDictionary>>valuesDo: #[158 11 96 28 88 254 54 216 27 82 252 136 120 220 29 249]
MirrorPrimitives class>>check:identicalTo: #[211 13 123 92 32 62 131 126 135 252 81 208 123 230 47 54]
MirrorPrimitives class>>classOf: #[114 40 60 206 163 241 3 119 194 122 76 98 203 225 144 146]
MirrorPrimitives class>>fixedFieldOf:at: #[22 254 149 45 33 246 202 170 42 124 7 28 102 245 80 82]
MirrorPrimitives class>>fixedFieldOf:at:put: #[188 24 167 229 173 167 30 86 191 77 203 67 5 63 124 180]
MirrorPrimitives class>>identityHashOf: #[76 44 30 204 86 83 137 254 127 113 124 42 69 232 217 188]
MirrorPrimitives class>>indexableFieldOf:at: #[99 53 33 169 162 101 81 45 153 104 84 174 251 104 194 109]
MirrorPrimitives class>>indexableFieldOf:at:put: #[109 98 164 228 147 110 160 121 25 86 156 36 60 36 228 223]
MirrorPrimitives class>>indexableSizeOf: #[191 43 98 2 50 192 32 134 221 6 142 34 151 154 39 136]
MirrorPrimitives class>>isObjectReadOnly: #[97 99 122 203 50 247 38 38 145 29 1 71 54 235 4 99]
MirrorPrimitives class>>makeObject:readOnly: #[208 165 144 80 126 243 81 225 35 70 119 9 138 201 136 201]
MirrorPrimitives class>>setClass:to: #[178 15 22 4 226 21 142 210 29 10 235 98 34 251 122 148]
MirrorPrimitives class>>withReceiver:andArguments:execute: #[234 124 43 179 140 64 254 204 17 4 8 213 31 64 137 216]
MirrorPrimitives class>>withReceiver:perform:withArguments: #[202 200 182 167 214 241 190 225 191 191 117 43 208 2 247 81]
MirrorPrimitives class>>withReceiver:perform:withArguments:inSuperclass: #[131 180 29 46 32 69 85 167 142 160 244 31 111 254 211 171]
MirrorPrimitives class>>withReceiver:tryPrimitive:withArguments: #[83 26 245 32 11 179 60 251 30 53 215 69 94 171 65 126]
MonitorDelay class>>signalLock:afterMSecs:inMonitor:queue: #[194 8 189 193 41 207 180 211 61 247 96 154 198 80 42 194]
MonitorDelay>>schedulerSignalWaitingProcess
MonitorDelay>>setDelay:forSemaphore:monitor:queue: #[174 196 69 23 43 69 45 246 21 202 40 218 41 137 152 179]
MonitorDelay>>timingPrioritySignalExpired #[68 247 167 194 70 7 73 143 124 155 30 105 149 196 108 121]
NetNameResolver class>>addressForName:timeout: #[126 39 137 4 132 221 35 60 205 209 26 105 75 224 26 169]
NetNameResolver class>>initializeNetwork #[148 229 214 227 69 204 194 91 20 122 21 201 33 118 205 56]
NetNameResolver class>>isConnected #[105 55 43 60 240 247 240 164 128 171 233 237 113 202 214 255]
NetNameResolver class>>localHostName #[111 251 239 165 170 166 238 97 94 217 7 158 54 13 42 167]
NetNameResolver class>>primAbortLookup #[249 255 235 55 64 75 225 55 131 30 227 62 187 153 139 187]
NetNameResolver class>>primAddressLookupResult #[34 140 18 78 163 203 26 82 245 42 204 118 252 83 58 32]
NetNameResolver class>>primGetAddressInfoFamily #[189 203 12 251 66 105 53 121 242 81 76 127 49 252 49 40]
NetNameResolver class>>primGetAddressInfoHost:service:flags:family:type:protocol: #[156 60 150 172 56 207 32 160 233 249 241 71 2 222 80 38]
NetNameResolver class>>primGetAddressInfoNext #[86 55 177 137 150 40 170 57 180 155 143 183 204 187 114 63]
NetNameResolver class>>primGetAddressInfoProtocol #[194 226 157 242 134 63 100 156 194 156 206 30 205 205 244 130]
NetNameResolver class>>primGetAddressInfoResult: #[175 8 73 238 198 242 150 229 73 17 115 153 208 80 110 56]
NetNameResolver class>>primGetAddressInfoSize #[112 23 198 244 36 251 128 225 186 30 128 10 106 107 191 49]
NetNameResolver class>>primGetAddressInfoType #[133 158 18 32 113 5 13 122 52 86 63 170 67 213 168 145]
NetNameResolver class>>primGetNameInfoHostResult: #[107 66 103 46 102 248 198 114 53 163 179 119 64 26 65 216]
NetNameResolver class>>primGetNameInfoHostSize #[39 17 107 251 185 103 130 9 183 242 113 128 134 165 55 92]
NetNameResolver class>>primGetNameInfoServiceResult: #[143 179 210 227 255 202 113 38 178 181 83 75 144 42 26 130]
NetNameResolver class>>primGetNameInfoServiceSize #[77 5 28 206 210 247 159 132 63 230 183 117 108 36 169 246]
NetNameResolver class>>primHostNameResult: #[105 104 207 101 95 47 200 97 177 201 218 137 31 96 50 112]
NetNameResolver class>>primHostNameSize #[99 59 52 166 11 105 209 61 150 107 162 62 252 225 54 28]
NetNameResolver class>>primInitializeNetwork: #[91 106 156 210 231 24 11 153 222 31 103 143 98 59 135 211]
NetNameResolver class>>primLocalAddress #[98 212 37 255 250 24 71 179 69 123 152 98 161 13 73 182]
NetNameResolver class>>primNameLookupResult #[102 42 169 183 2 236 63 29 80 46 18 172 223 16 112 193]
NetNameResolver class>>primNameResolverError #[218 143 146 243 32 161 166 201 254 237 131 71 195 128 155 153]
NetNameResolver class>>primNameResolverStatus #[109 123 81 145 185 210 150 202 73 95 244 109 129 151 242 99]
NetNameResolver class>>primStartLookupOfAddress: #[53 225 150 208 197 135 48 183 86 122 161 219 97 209 96 100]
NetNameResolver class>>primStartLookupOfName: #[223 106 115 187 151 100 188 77 168 129 149 175 35 119 81 57]
Number>>@ #[136 47 189 170 29 218 26 204 98 106 116 209 12 234 150 167]
Number>>_nonZeroGte:
Object>>at: #[247 203 148 241 134 222 175 186 126 126 14 202 27 180 17 40]
Object>>at:put: #[242 27 18 104 207 14 188 119 7 94 135 144 246 197 53 240]
Object>>basicAt: #[137 73 109 217 207 245 232 73 146 60 108 68 184 159 123 185]
Object>>basicAt:put: #[156 133 202 228 233 27 144 1 223 195 190 240 250 60 133 255]
Object>>basicSize #[165 224 94 161 73 162 88 194 80 31 140 183 163 161 117 4]
Object>>clone #[158 171 144 143 185 95 57 177 202 25 238 126 131 213 171 3]
Object>>copyFrom: #[8 172 173 113 240 176 0 87 199 77 9 214 61 109 3 218]
Object>>instVarAt: #[102 111 169 157 87 239 73 238 82 219 113 71 146 13 145 11]
Object>>instVarAt:put: #[29 50 244 16 196 203 138 167 5 88 202 159 5 22 167 21]
Object>>instVarNamed:put: #[54 104 219 178 9 35 19 59 97 52 30 27 70 187 178 76]
Object>>isPinnedInMemory #[184 19 39 49 133 127 8 131 246 58 184 67 66 233 125 73]
Object>>isReadOnlyObject #[43 203 129 125 0 217 247 29 199 63 155 170 224 11 195 249]
Object>>perform: #[36 106 115 109 11 64 126 243 124 109 29 31 183 45 140 123]
Object>>perform:with: #[18 109 96 213 180 103 93 104 172 13 203 22 14 10 192 126]
Object>>perform:with:with: #[215 181 169 167 41 125 220 157 212 157 128 26 83 247 253 160]
Object>>perform:with:with:with: #[124 219 154 67 155 109 70 67 89 141 0 228 82 229 22 58]
Object>>perform:with:with:with:with: #[191 121 89 12 159 222 72 150 137 137 133 236 148 87 30 205]
Object>>perform:withArguments: #[214 21 69 85 136 251 59 18 154 52 92 76 101 20 246 73]
Object>>perform:withArguments:inSuperclass: #[73 28 18 113 55 130 100 122 114 78 253 117 198 209 38 201]
Object>>primitiveChangeClassTo: #[64 32 204 211 219 83 110 145 98 50 200 14 232 25 119 143]
Object>>retrySetPinnedInMemory: #[193 208 234 230 58 152 245 97 164 245 77 143 76 121 121 80]
Object>>setIsReadOnlyObject: #[242 108 73 20 174 79 39 188 229 246 135 12 164 84 36 77]
Object>>setPinnedInMemory: #[2 39 105 56 78 152 45 194 12 220 105 250 113 220 90 222]
Object>>shallowCopy #[154 121 63 39 66 138 120 36 117 62 3 26 76 221 243 133]
Object>>size #[195 97 149 122 245 26 64 242 75 36 191 134 207 171 98 196]
Object>>someObject #[6 181 14 157 68 146 142 26 164 31 92 77 179 121 155 158]
Object>>species #[137 82 243 15 189 201 236 79 75 152 98 2 237 134 163 91]
OSPlatform class>>current #[126 27 104 244 94 135 233 131 82 253 151 239 187 191 13 108]
OSPlatform>>currentWorkingDirectoryPath #[0 54 67 114 65 80 41 26 169 43 119 54 163 106 82 99]
OSPlatform>>currentWorkingDirectoryPathWithBuffer: #[94 251 79 10 130 42 215 226 192 74 127 220 244 207 233 181]
PlatformResolver class>>primitiveGetUntrustedUserDirectory #[107 110 146 111 171 111 253 216 133 223 226 206 19 214 165 250]
Pragma>>selector
Pragma>>selector:
Process class>>allocatePSKey: #[214 221 43 90 218 49 10 114 75 92 243 160 209 46 187 12]
Process class>>inheritablePSKeys
Process class>>psKeys
Process class>>psKeysSema #[52 215 229 181 168 97 144 51 57 16 89 27 232 63 26 196]
Process>>activateReturn:value:
Process>>browserPrintString #[77 70 179 195 200 182 216 152 72 63 243 120 137 7 52 80]
Process>>browserPrintStringWith: #[21 107 197 154 23 74 175 120 67 94 12 17 182 133 23 105]
Process>>calleeOf: #[178 18 209 10 242 89 65 250 237 13 238 132 110 15 253 185]
Process>>complete: #[199 39 193 84 135 72 30 217 68 135 236 3 143 38 235 187]
Process>>completeStep:
Process>>completeTo: #[129 34 158 107 10 153 91 169 68 198 140 31 177 234 105 42]
Process>>copyStack #[27 70 199 169 44 53 166 240 164 192 203 159 44 240 195 230]
Process>>debug
Process>>debug:title:
Process>>debug:title:full:
Process>>debugWithTitle:
Process>>doTerminationFromAnotherProcess #[178 98 126 96 55 166 104 197 8 115 126 223 162 163 213 193]
Process>>doTerminationFromYourself #[82 27 108 103 127 196 157 231 244 187 231 209 164 188 31 62]
Process>>effectiveProcess #[112 47 252 105 123 110 55 93 255 41 58 233 245 122 125 155]
Process>>effectiveProcess: #[220 163 11 195 150 132 7 165 83 74 95 213 220 140 127 189]
Process>>endProcess #[137 191 72 226 151 135 129 168 245 253 25 203 196 35 134 87]
Process>>environmentKeyNotFound
Process>>evaluate:onBehalfOf: #[81 215 139 158 114 104 11 238 89 255 84 55 236 156 66 186]
Process>>initialize #[186 62 212 140 108 186 219 98 121 72 145 27 4 125 6 167]
Process>>install: #[13 216 207 23 55 49 196 107 122 180 132 222 238 236 218 93]
Process>>installEnvIntoForked: #[129 136 147 173 29 247 117 235 69 178 32 197 80 80 109 202]
Process>>isActive:
Process>>isActiveProcess #[118 11 57 245 217 252 56 200 30 68 165 230 219 23 24 247]
Process>>isMeta
Process>>isSuspended #[41 146 141 29 122 78 54 192 90 191 126 133 57 178 199 58]
Process>>isTerminated #[139 210 214 4 42 233 94 91 24 27 77 114 153 22 207 111]
Process>>isTerminating #[123 35 160 91 100 58 8 212 59 5 89 181 11 66 227 18]
Process>>level
Process>>longPrintOn:
Process>>name #[101 123 107 98 169 56 166 121 29 252 201 191 212 133 152 43]
Process>>name: #[50 20 222 50 152 66 248 75 153 143 239 229 199 19 203 228]
Process>>on:do: #[98 147 19 107 121 68 153 39 87 53 92 2 80 254 199 51]
Process>>popTo:
Process>>popTo:value:
Process>>primitiveResume #[80 28 32 104 185 167 162 122 212 172 6 122 68 208 109 70]
Process>>printOn: #[53 138 60 238 18 54 237 34 195 98 183 243 47 186 190 36]
Process>>priority #[55 211 176 28 38 231 210 8 142 26 248 205 198 231 149 81]
Process>>priority: #[3 189 101 126 135 102 235 154 149 66 18 139 247 167 143 39]
Process>>psValueAt: #[93 85 163 92 255 44 39 63 203 62 230 85 233 197 252 130]
Process>>psValueAt:put: #[194 143 197 53 84 29 72 58 25 250 23 110 248 201 199 119]
Process>>pvtSignal:list: #[144 202 164 85 182 60 208 123 185 91 195 114 73 204 204 238]
Process>>resetPSValueAt: #[203 182 61 103 57 109 251 48 69 231 42 249 252 59 206 186]
Process>>restartTop
Process>>restartTopWith:
Process>>resume #[147 49 214 89 252 157 30 234 133 152 108 173 82 75 108 28]
Process>>return:value:
Process>>rfeffectiveProcess
Process>>run #[169 133 166 206 125 163 135 186 113 156 84 12 133 245 225 214]
Process>>shiftLevelDown
Process>>shiftLevelUp
Process>>signalException: #[113 125 149 138 84 98 127 227 52 180 96 48 230 218 8 113]
Process>>step #[2 6 62 90 67 210 84 197 34 60 163 2 62 33 197 14]
Process>>step: #[246 158 247 10 251 81 184 24 37 146 222 62 66 98 168 127]
Process>>stepToCallee #[117 149 240 164 6 29 84 228 40 158 211 164 52 253 100 164]
Process>>stepToHome:
Process>>stepToSendOrReturn #[36 212 146 110 79 88 136 104 61 179 121 252 224 152 170 158]
Process>>suspend #[184 27 251 129 41 204 148 6 97 49 222 56 5 157 45 220]
Process>>suspendedContext #[198 99 202 23 252 149 27 89 216 99 18 11 224 135 124 160]
Process>>suspendedContext: #[10 198 144 64 84 15 155 157 33 9 207 55 194 222 189 94]
Process>>suspendingList #[69 199 188 139 192 1 220 98 226 91 6 185 78 83 1 181]
Process>>terminate #[140 236 1 67 81 140 45 72 10 116 118 15 125 35 23 235]
ProcessorScheduler>>activePriority #[136 185 95 254 223 242 222 118 135 163 114 112 122 204 167 31]
ProcessorScheduler>>activeProcess #[33 88 66 219 217 186 216 168 4 120 246 113 255 243 24 115]
ProcessorScheduler>>anyProcessesAbove: #[171 224 40 105 187 221 78 115 102 209 101 242 8 172 189 219]
ProcessorScheduler>>backgroundProcess #[8 238 253 33 253 172 225 173 218 15 145 162 137 7 96 142]
ProcessorScheduler>>fonextReadyProcesso
ProcessorScheduler>>foo
ProcessorScheduler>>highestPriority #[163 180 195 52 247 9 211 252 203 157 164 153 23 78 44 95]
ProcessorScheduler>>highestPriority: #[105 198 185 26 180 120 182 105 172 208 2 15 150 71 107 242]
ProcessorScheduler>>highIOPriority #[148 51 17 188 11 245 66 135 194 200 97 78 1 21 253 30]
ProcessorScheduler>>isSelfEvaluating #[124 144 25 237 241 192 27 43 170 145 171 13 101 111 252 239]
ProcessorScheduler>>lowestPriority #[104 48 191 230 249 109 128 51 47 205 159 175 0 47 197 215]
ProcessorScheduler>>lowIOPriority #[151 185 28 61 49 218 40 164 235 112 38 252 174 76 102 217]
ProcessorScheduler>>preemptedProcess #[92 246 30 167 3 32 183 254 246 206 107 8 175 248 246 206]
ProcessorScheduler>>printOn: #[22 17 8 133 133 33 176 246 95 123 133 22 178 214 236 213]
ProcessorScheduler>>remove:ifAbsent: #[37 203 91 139 145 199 125 122 88 181 107 16 228 187 60 118]