-
Notifications
You must be signed in to change notification settings - Fork 7
/
SG00_01_en.txt
2404 lines (1840 loc) · 49.6 KB
/
SG00_01_en.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
#VAR(Table, TABLE)
#ADDTBL("data\shiftjis.tbl", Table)
#ACTIVETBL(Table)
#VAR(PTR, CUSTOMPOINTER)
#CREATEPTR(PTR, "LINEAR", 0, 32)
#JMP($000073FC)
#WRITE(PTR, $00000BEE)
%L1
<END2>
#WRITE(PTR, $00000BF4)
Prologue
<END2>
#WRITE(PTR, $00000BFA)
%L1
<END2>
#WRITE(PTR, $00000CDA)
INSERT01.PMF
<END2>
#WRITE(PTR, $00000E0C)
INSERT02.PMF
<END2>
#WRITE(PTR, $000010D2)
【???】
Hey, hey, what are you mumbling about?
<END>
#WRITE(PTR, $000010E2)
There's no sound from the phone against my right ear. Perfect silence.
<END>
#WRITE(PTR, $000010F2)
I stand in the strong summer sun.
<END>
#WRITE(PTR, $00001102)
Sweat slowly slips down my chin and drops onto the asphalt below.
<END>
#WRITE(PTR, $0000114A)
【???】
Okarin? I'm talking to you-
<END>
#WRITE(PTR, $0000115A)
A girl stands in front of me.
<END>
#WRITE(PTR, $0000116A)
She calls my name as she tilts her head.
<END>
#WRITE(PTR, $0000117A)
Her facial expression holds the innocence of a middle school girl. She doesn't seem to understand that we're wading into enemy territory, nor does she sense even a bit of the tension in the air.
<END>
#WRITE(PTR, $00001190)
I cover my phone's mouthpiece and turn to the girl with my index finger to my mouth.
<END>
#WRITE(PTR, $000011A0)
A gesture to please be silent.
<END>
#WRITE(PTR, $000011BA)
【???】
You on the phone with someone?
<END>
#WRITE(PTR, $000011F6)
I nod and put my phone back to my ear.
<END>
#WRITE(PTR, $00001206)
Still no sound from the other side.
<END>
#WRITE(PTR, $00001216)
He's probably being silent because he knows it would be bad if someone overheard him.
<END>
#WRITE(PTR, $00001226)
【Rintarou】
...No, I was talking to someone here. Nothing's wrong. We're about to infiltrate the assembly hall.
<END>
#WRITE(PTR, $00001236)
The other side's silent as always.
<END>
#WRITE(PTR, $00001246)
Looks like he only wants to hear my report.
<END>
#WRITE(PTR, $00001256)
That's understandable.
<END>
#WRITE(PTR, $00001266)
It's too dangerous to waste time talking here.
<END>
#WRITE(PTR, $00001276)
【Rintarou】
Yeah, Doctor Nakabachi got the jump on us. I plan to have him tell us everything he's thinking.
<END>
#WRITE(PTR, $00001296)
【Rintarou】
...What!? The <DICT>Organization</DICT> has already begun to move!?
<END>
#WRITE(PTR, $000012A6)
I widen my eyes and exclaim in a shocked manner.
<END>
#WRITE(PTR, $000013EE)
The girl turns towards me in surprise too.
<END>
#WRITE(PTR, $000013FE)
Or more like, she was already staring this way.
<END>
#WRITE(PTR, $0000141A)
I immediately sigh, shaking my head side to side as I rub my temples.
<END>
#WRITE(PTR, $0000142A)
【Rintarou】
I see, so is that {Steins;Gate}[the Door of the Fate Stone]'s choice? El Psy Congroo.
<END>
#WRITE(PTR, $00001440)
I end with the parting password and put away my cellphone with a serious face.
<END>
#WRITE(PTR, $00001450)
Steins;Gate. The Door of the Fate Stone.
<END>
#WRITE(PTR, $00001460)
In other words, "God's Will" or possibly "Fate".
<END>
#WRITE(PTR, $00001470)
You could probably count on one hand the people aware of its existence in the world.
<END>
#WRITE(PTR, $00001480)
Well, let's start the infiltration immediately.
<END>
#WRITE(PTR, $00001490)
I advance towards Radio Kaikan, which is right next to the station.
<END>
#WRITE(PTR, $000015CC)
This is an infiltration into enemy territory, so I can't risk rushing in from the front like a normal person.
<END>
#WRITE(PTR, $000015DC)
Instead of using the elevator or escalator, I head to the 8th floor on the top of the stairs.
<END>
#WRITE(PTR, $000015EC)
But it takes all I have just getting to the 7th floor.
<END>
#WRITE(PTR, $000015FC)
【Mayuri】
Who were you talking to back there-?
<END>
#WRITE(PTR, $0000160C)
The girl following me from behind-- Shiina Mayuri-- asks without stopping to breathe.
<END>
#WRITE(PTR, $0000161C)
I, on the other hand, have to stop for a breather with my hands on my knees.
<END>
#WRITE(PTR, $0000162C)
Maybe we shouldn't have used the stairs.... It's too tough....
<END>
#WRITE(PTR, $0000163C)
I turn to Mayuri while wiping the sweat of my brow.
<END>
#WRITE(PTR, $00001684)
【Rintarou】
Don't ask. That would be best for you too.
<END>
#WRITE(PTR, $0000169E)
【Mayuri】
Oh, I see-. Thanks, Okarin-
<END>
#WRITE(PTR, $000016AE)
Mayuri smiles happily.
<END>
#WRITE(PTR, $000016BE)
She really is perceptive.
<END>
#WRITE(PTR, $000016CE)
She understands the my position and doesn't try to pry any further.
<END>
#WRITE(PTR, $0000176C)
She's my childhood friend.
<END>
#WRITE(PTR, $0000177C)
She's two years younger than me-- a 16 year old high school girl, so she's more like a little sister than a childhood friend.
<END>
#WRITE(PTR, $0000178C)
We live in the same neighborhood, so we've taken care of each other since long ago.
<END>
#WRITE(PTR, $0000179C)
Mayuri may possibly have the potential to become Steins;Gate's key. I used to think that, but I'm reconsidering.
<END>
#WRITE(PTR, $000017AC)
I want her to live a life of normality forever.
<END>
#WRITE(PTR, $000017BC)
That's my present wish.
<END>
#WRITE(PTR, $000019DE)
We enter the assembly hall on the 8th floor greeted by a cheap looking setup.
<END>
#WRITE(PTR, $000019EE)
Apparently, it's "Doctor Nakabachi's Successful Time Machine Invention Press Conference".
<END>
#WRITE(PTR, $00001A36)
【Mayuri】
Anyway, Okarin, Okarin.
<END>
#WRITE(PTR, $00001A46)
She's been calling me that for a while now, but that is neither my real name nor my codename. It's one of those nicknames people give you that you hate.
<END>
#WRITE(PTR, $00001A56)
【Rintarou】
Mayuri, how many times do I have to tell you? Don't call me Okarin.
<END>
#WRITE(PTR, $00001A66)
【Mayuri】
Eh-? But I've always called you that, haven't I?
<END>
#WRITE(PTR, $00001A76)
【Rintarou】
That was then; this is now. My present self is "{Hououin}[PhoenixTemple] {Kyouma}[EvilTruth]". The insane mad scientist wanted by secret organizations the world over. Fuhahaha!
<END>
#WRITE(PTR, $00001A90)
【Mayuri】
But that's too hard to remember.
<END>
#WRITE(PTR, $00001AA8)
In any case, Hououin Kyouma is my <DICT>true name</DICT>.
<END>
#WRITE(PTR, $00001AC2)
【Mayuri】
And besides, it doesn't have anything in common with Okabe Rintarou, does it-? Isn't that just weird? Ehheheh-
<END>
#WRITE(PTR, $00001AD2)
Mm, she sure seems happy.
<END>
#WRITE(PTR, $00001AE2)
By the way, Okabe Rintarou is my real name, but I don't like it because it sounds stupid.
<END>
#WRITE(PTR, $00001AF2)
And I hate the derivative "Okarin" by extension.
<END>
#WRITE(PTR, $00001B02)
I mean, Okarin. Seriously?
<END>
#WRITE(PTR, $00001B12)
Sounds like that elf boy's blue potato pipe.
<END>
#WRITE(PTR, $00001B2C)
【Mayuri】
So, Okarin. Uhmm, can you tell me...
<END>
#WRITE(PTR, $00001B3C)
Looks like words won't get to her.
<END>
#WRITE(PTR, $00001B4C)
She's been calling me that for 5 years now, so now I'm halfway towards giving up.
<END>
#WRITE(PTR, $00001B5C)
【Mayuri】
What's gonna happen here-?
<END>
#WRITE(PTR, $00001B6C)
【Rintarou】
Are you saying you came all the way here with me without even knowing that?
<END>
#WRITE(PTR, $00001B86)
【Mayuri】
Yup.
<END>
#WRITE(PTR, $00001B96)
She nods, smiling.
<END>
#WRITE(PTR, $00001BA6)
We're in Tokyo. Radio Kaikan in Akihabara.
<END>
#WRITE(PTR, $00001BB6)
Its 8th floor has become an event space.
<END>
#WRITE(PTR, $00001BC6)
【Rintarou】
What's happening here is Doctor Nakabachi's press conference.
<END>
#WRITE(PTR, $00001BD6)
Doctor Nakabachi is an inventor. Famous enough to be on TV. Quite a few patents under his belt. But the entire world sees him as nothing but a laughing stock.
<END>
#WRITE(PTR, $00001BF0)
【Mayuri】
A press conference? But I don't see any reporters...
<END>
#WRITE(PTR, $00001C00)
Mayuri's right.
<END>
#WRITE(PTR, $00001C1C)
I glimpsed deep inside the assembly hall, but couldn't see anyone who looked like a reporter or cameraman. So it's more like a presentation than a press conference.
<END>
#WRITE(PTR, $00001C2C)
There are about ten men standing in the hall including me.
<END>
#WRITE(PTR, $00001C3C)
You heard me. Ten.
<END>
#WRITE(PTR, $00001C4C)
You'd expect more people to gather, considering Nakabachi's popularity and the fact that he claims to have created a time machine.
<END>
#WRITE(PTR, $00001C5C)
【Rintarou】
Or maybe... this could be an 'Organization' conspiracy.
<END>
#WRITE(PTR, $00001C6C)
I force my lips into a self-deriding twist as I whisper.
<END>
#WRITE(PTR, $00001C7C)
I thought Nakabachi was on my side-- well, I've never met him, but I'm sure he was.
<END>
#WRITE(PTR, $00001C8C)
But he abandoned us.
<END>
#WRITE(PTR, $00001C9C)
The Organization couldn't overlook this timing.
<END>
#WRITE(PTR, $00001CAC)
【Rintarou】
I really don't want to get involved with this.
<END>
#WRITE(PTR, $00001CBC)
But still, I'm interested in what he has to say.
<END>
#WRITE(PTR, $00001CCC)
That's why I came here, wasting an early afternoon of my precious summer holiday.
<END>
#WRITE(PTR, $00001CDC)
Mayuri ponders my utterance for a while before turning her head again.
<END>
#WRITE(PTR, $00001D28)
【Mayuri】
You don't want to get evolved?
<END2>
#WRITE(PTR, $00001D42)
Ah, that reminds me, frill-necked lizards look like they evolved from dinosaurs, don't they-. Ehheheh-
<END>
#WRITE(PTR, $00001D56)
I let out a sigh.
<END>
#WRITE(PTR, $00001D66)
Laughing at her own silly retort... What an airhead.
<END>
#WRITE(PTR, $00001D76)
Well, she was always like that.
<END>
#WRITE(PTR, $00001D86)
【Rintarou】
Mayuri, keep your guard up. I think something's going to happen at this pr--
<END>
#WRITE(PTR, $00001E28)
I didn't even finish my sentence!
<END>
#WRITE(PTR, $00001E40)
Wh-what's that sound!? An <DICT>electromagnetic</DICT> pulse!?
<END>
#WRITE(PTR, $00001FCA)
The floor shakes slightly.
<END>
#WRITE(PTR, $00001FDA)
Definitely an attack.
<END>
#WRITE(PTR, $00001FEA)
From above.
<END>
#WRITE(PTR, $00001FFA)
But we're on the top floor.
<END>
#WRITE(PTR, $0000200A)
All that's above is the roof.
<END>
#WRITE(PTR, $00002052)
【Mayuri】
An earthquake? Shindo 2? Magnitude 2? What was the difference between Shindo and magnitudes, again?
<END>
#WRITE(PTR, $0000206E)
Let's leave the confused girl for now.
<END>
#WRITE(PTR, $0000207E)
I've got a bad feeling about this, so I rush out of the hall.
<END>
#WRITE(PTR, $00002194)
I disregard the off limits signs and run upstairs to the rooftop.
<END>
#WRITE(PTR, $00002490)
The rooftop door is open for some reason. Actually, the lock's broken.
<END>
#WRITE(PTR, $000024A0)
Just as I open the door, I see lots of black smoke rising up.
<END>
#WRITE(PTR, $000024B0)
Also, some sort of phosphorescent particles are sparkling around.
<END>
#WRITE(PTR, $000024C0)
【Rintarou】
An... explosion!?
<END>
#WRITE(PTR, $000024D0)
I was just pretending to be surprised, but, no, wait, was there seriously an explosion?
<END>
#WRITE(PTR, $000024E0)
This is bad. My chest is throbbing.
<END>
#WRITE(PTR, $000024F0)
Pounding and pounding.
<END>
#WRITE(PTR, $00002500)
Uh... wh-what should I do now?
<END>
#WRITE(PTR, $00002510)
Should I run away?
<END>
#WRITE(PTR, $00002520)
Wait, why an explosion? Terrorism?
<END>
#WRITE(PTR, $00002530)
No, I don't think that's quite it.
<END>
#WRITE(PTR, $00002540)
Why not? Because right before me-- dead center on the empty roof-- is a strange object.
<END>
#WRITE(PTR, $000025C2)
【Rintarou】
What... is that?
<END>
#WRITE(PTR, $000025D2)
The mysterious machine just sits there.
<END>
#WRITE(PTR, $000025E2)
It's huge. Maybe more than three meters tall.
<END>
#WRITE(PTR, $000025F2)
Is it a... satellite?
<END>
#WRITE(PTR, $00002602)
Is this the source of the smoke, the phosphorescence, and that shaking?
<END>
#WRITE(PTR, $00002612)
Who'd put something like this here?
<END>
#WRITE(PTR, $00002622)
Did Nakabachi prepare this thing? Does it have something to do with today's presentation?
<END>
#WRITE(PTR, $00002632)
But, even if that were the case, just how the hell did he bring it up here?
<END>
#WRITE(PTR, $00002642)
This is an 8th story roof, you know?
<END>
#WRITE(PTR, $00002652)
My head gets swamped with questions.
<END>
#WRITE(PTR, $00002662)
None of which I can answer.
<END>
#WRITE(PTR, $00002672)
Just as I start hesitating over whether I should approach the mysterious machine, several people-- most likely Radio Kaikan officials or conference staff-- follow me up the stairs.
<END>
#WRITE(PTR, $00002682)
And everyone looks as surprised as I am.
<END>
#WRITE(PTR, $00002692)
【Woman】
Please don't come any closer-!
<END>
#WRITE(PTR, $000026A2)
And then, a woman who I assume is a staff member starts to walk up to us while waving her hands.
<END>
#WRITE(PTR, $000026B2)
【Woman】
The press conference will proceed as scheduled, so please be patient-!
<END>
#WRITE(PTR, $000026C2)
Is she trying to hide something?
<END>
#WRITE(PTR, $000026D2)
That was an awfully quick response. It's almost like they're trying to keep me away from the satellite-looking thing.
<END>
#WRITE(PTR, $000026E2)
【Rintarou】
This smells. Smells like conspiracy. What are they hiding? What was that explosion?
<END>
#WRITE(PTR, $000026F2)
I mumble my thoughts out loud.
<END>
#WRITE(PTR, $00002702)
It bothers me....
<END>
#WRITE(PTR, $00002712)
It bothers me, but I shouldn't risk getting any closer.
<END>
#WRITE(PTR, $00002722)
It's like I'm scared or anything.
<END>
#WRITE(PTR, $000028A4)
Officials lead us back to the 8th floor.
<END>
#WRITE(PTR, $000028B4)
I didn't see Mayuri. She wasn't in the event hall either.
<END>
#WRITE(PTR, $000028C4)
After searching for her a little, I found her at the 7th floor landing.
<END>
#WRITE(PTR, $000029EA)
Several <DICT>capsule toy</DICT> machines are lined up next to a plate saying "The PC's Birthplace in Japan".
<END>
#WRITE(PTR, $000029FA)
She's gazing upon them with a wistful look.
<END>
#WRITE(PTR, $00002A24)
I take out my phone, relieved for now.
<END>
#WRITE(PTR, $00002A34)
【Rintarou】
It's me. I have a bad feeling about this. Something might be happening somewhere unknown.
<END>
#WRITE(PTR, $00002A44)
【Rintarou】
...Yeah. I know. I won't be rash. I don't have a death wish after all. El Psy Congroo.
<END>
#WRITE(PTR, $00002A54)
I say the parting password again and wipe the sweat off my brow with the back of my hand.
<END>
#WRITE(PTR, $00002A64)
Ah crap. Quite the cold sweat.
<END>
#WRITE(PTR, $00002A74)
What'll I do if something actually happens?
<END>
#WRITE(PTR, $00002A84)
Half of me hopes something will happen. The other half fears the same thing.
<END>
#WRITE(PTR, $00002A9A)
I put away my phone and look back at Mayuri.
<END>
#WRITE(PTR, $00002B08)
What is she doing?
<END>
#WRITE(PTR, $00002B18)
Could she be daydreaming about capsule toys?
<END>
#WRITE(PTR, $00002B28)
She doesn't seem to be perturbed by the explosion at all.
<END>
#WRITE(PTR, $00002B38)
I can't decide if that's amazing or just idiotic.
<END>
#WRITE(PTR, $00002B48)
【Rintarou】
Mayuri, what are you up to?
<END>
#WRITE(PTR, $00002B9C)
【Mayuri】
Hmm?
<END>
#WRITE(PTR, $00002BB6)
【Mayuri】
Well... I really want an Upa.
<END>
#WRITE(PTR, $00002BC6)
Just as suspected....
<END>
#WRITE(PTR, $00002C90)
On the capsule toy machine that Mayuri pointed at, there was a cheap display saying 'RaiNet Kakeru 3D Character Doll Series'.
<END>
#WRITE(PTR, $00002CA8)
<DICT>RaiNet Kakeru</DICT>, the anime known by every man, woman, and child.
<END>
#WRITE(PTR, $00002CB8)
Its spinoff card game, RaiNet Access Battlers, is so popular overseas that they even hold worldwide tournaments.
<END>
#WRITE(PTR, $00002CC8)
By the way, the Upa that Mayuri mentioned is the most popular character in RaiNet Kakeru.
<END>
#WRITE(PTR, $00002CD8)
Its appearance resembles an elliptical egg shape with limbs sticking out, like a dog or some other sort of animal, I guess.
<END>
#WRITE(PTR, $00002CE8)
It's considered to be the so-called mascot character.
<END>
#WRITE(PTR, $00002CF8)
Unsurprisingly, it's popular among high school girls. Come to think of it, last year an ugly frog character got popular too. Its name escapes me, though.
<END>
#WRITE(PTR, $00002D50)
【Rintarou】
Then just go for it. I can't guarantee you'll get an Upa, though.
<END>
#WRITE(PTR, $00002D60)
But Mayuri gives me a troubled smile.
<END>
#WRITE(PTR, $00002D7A)
【Mayuri】
Butcha know, Mayushii's all out of 100 yen coins right now.
<END>
#WRITE(PTR, $00002D8A)
Mayuri calls herself "Mayushii".
<END>
#WRITE(PTR, $00002D9A)
Or to be more specific, she adds ☆ to the end of "Mayushii".
<END>
#WRITE(PTR, $00002DAA)
So basically, "Mayushii☆".
<END>
#WRITE(PTR, $00002DBA)
But who really cares?
<END>
#WRITE(PTR, $00002DCA)
【Mayuri】
So, Okarin, Okarin, can you pwease lend me 100 yen-?
<END>
#WRITE(PTR, $00002DDA)
She cups her hands out to me with a look like a begging puppy.
<END>
#WRITE(PTR, $00002DEA)
Looks like she was planning this from the very beginning.
<END>
#WRITE(PTR, $00002DFA)
Well, at least she didn't say "gimme".
<END>
#WRITE(PTR, $00002E0A)
【Rintarou】
Don't act so spoiled, Mayuri. I won't lend you the money. I'll show you how harsh life can be.
<END>
#WRITE(PTR, $00002E6A)
I make my declaration as I take a 100 yen coin out of my wallet and set it into the slot. I spin the lever.
<END>
#WRITE(PTR, $00002EE0)
【Mayuri】
Ah, ahh-...
<END>
#WRITE(PTR, $00002F08)
I open the capsule and take out the contents.
<END>
#WRITE(PTR, $00002F50)
Mayuri tries to peek inside my hands, wondering what's inside.
<END>
#WRITE(PTR, $00002F6A)
【Mayuri】
Ah, it's an Upa. And metal. A Metal Upa!
<END>
#WRITE(PTR, $00002F7A)
【Rintarou】
Is it rare?
<END>
#WRITE(PTR, $00002F8A)
【Mayuri】
Very!
<END>
#WRITE(PTR, $00002FF8)
We move out of the way while examining the Metal Upa.
<END>
#WRITE(PTR, $00003008)
A boy around elementary age who saw us from behind tries his luck on the same RaiNet machine.
<END>
#WRITE(PTR, $00003018)
【Boy】
Ah, a normal Upa....
<END>
#WRITE(PTR, $00003028)
He looks at my Metal Upa in resentment.
<END>
#WRITE(PTR, $00003038)
I look to the side and see Mayuri's sparkling eyes.
<END>
#WRITE(PTR, $00003048)
Hey, high school girl. You're stooping to an elementary brat's level....
<END>
#WRITE(PTR, $000030AC)
【Rintarou】
Hmph, I'll give this to you, Mayuri.
<END>
#WRITE(PTR, $000030BC)
I'm honestly not interested in it at all.
<END>
#WRITE(PTR, $000030CC)
I pass it on to Mayuri.
<END>
#WRITE(PTR, $000030DC)
【Mayuri】
Really-? It's okay? Okarin?
<END>
#WRITE(PTR, $000030EC)
【Rintarou】
It's Hououin Kyouma.
<END>
#WRITE(PTR, $000030FC)
【Mayuri】
Ehheheh-, thank you-, Okarin♪
<END>
#WRITE(PTR, $0000310C)
【Rintarou】
...
<END>
#WRITE(PTR, $0000311C)
Is she ignoring me on purpose?
<END>
#WRITE(PTR, $0000314A)
【Chairman】
--We give our honest gratitude to those assembled here for Doctor Nakabachi's Successful Time Machine Invention Press Conference.
<END>
#WRITE(PTR, $0000315A)
We faintly heard that announcement from the floor above.
<END>
#WRITE(PTR, $0000316A)
【Rintarou】
Looks like they're starting.
<END>
#WRITE(PTR, $00003224)
I head to the 8th floor.
<END>
#WRITE(PTR, $00003234)
But Mayuri doesn't follow.
<END>
#WRITE(PTR, $000032A2)
【Rintarou】
Let's go, Mayuri.
<END>
#WRITE(PTR, $000032EA)
【Mayuri】
Mm--, hold on, hold on. I gotta write my name.
<END>
#WRITE(PTR, $000032FA)
Looks like she's engrossed with the Metal Upa.
<END>
#WRITE(PTR, $0000341E)
【Chairman】
Well then, without further delay, I introduce to you the inventor, Doctor Nakabachi! Everyone, please welcome him with a round of applause!
<END>
#WRITE(PTR, $00003494)
Doctor Nakabachi appears, greeted by sparse applause-- okay, more like a couple of people clapping.
<END>
#WRITE(PTR, $000034A4)
He walks to the podium up front.
<END>
#WRITE(PTR, $000034B4)
He already has a sour look. Displeasure exudes out of his every pore.
<END>
#WRITE(PTR, $00003562)
【Nakabachi】
I am Doctor Nakabachi. Pleased to meet you.
<END>
#WRITE(PTR, $0000357C)
【Nakabachi】
Now then, all of you ladies and gentlemen gathered here today. Allow me to teach you my theory on time machines, the greatest breakthrough of the century.
<END>
#WRITE(PTR, $000036A6)
【Mayuri】
Time machines? Did he make one-?
<END>
#WRITE(PTR, $000036B6)
Mayuri came back after she finished writing her name on the Metal Upa. Wait, she's asking that this late in the game?
<END>
#WRITE(PTR, $000036D2)
With mic in hand, Nakabachi begins a talk brimming with confidence.
<END>
#WRITE(PTR, $000036E2)
There are about 20 people including us. A little more than before.
<END>
#WRITE(PTR, $000036F2)
But none of the newcomers look like reporters or cameramen either.
<END>
#WRITE(PTR, $00003702)
Now I know that this is the scope of Doctor Nakabachi's worldwide attention.
<END>
#WRITE(PTR, $00003712)
If this laughing stock of an inventor announced he invented a time machine, the world would just laugh at him as if he were out of his mind.
<END>
#WRITE(PTR, $00003722)
I was interested in what he had to say too, but it's not like I expect a lot from him.
<END>
#WRITE(PTR, $00003732)
And, after listening to some of his time machine theory, I was filled with disappointment, which turned into anger in a short amount of time.
<END>
#WRITE(PTR, $000037EC)
【Rintarou】