Refactoring and better file format detection. Also added a unit test for that.

Originally committed to SVN as r2480.
This commit is contained in:
Rodrigo Braz Monteiro 2008-11-23 02:39:00 +00:00
parent 9c815d3042
commit 747ffe9025
22 changed files with 5029 additions and 74 deletions

View File

@ -49,8 +49,6 @@ namespace Athenasub {
// Forward references
class Range;
class Reader;
class Writer;
class ISelection;
class IController;
class IView;
@ -65,6 +63,8 @@ namespace Athenasub {
class ISection;
class IDeltaCoder;
class IAction;
class IReader;
class IWriter;
// Smart pointers
@ -83,6 +83,8 @@ namespace Athenasub {
typedef shared_ptr<ISection> Section;
typedef shared_ptr<IDeltaCoder> DeltaCoder;
typedef shared_ptr<IAction> Action;
typedef shared_ptr<IReader> Reader;
typedef shared_ptr<IWriter> Writer;
// Const smart pointers
@ -106,7 +108,7 @@ namespace Athenasub {
virtual Controller CreateController() = 0;
virtual void AddListener(View listener) = 0;
virtual void Save(Writer &output,Format format=Format()) const = 0;
virtual void Save(Writer output,Format format=Format()) const = 0;
virtual String GetUndoMessage(const String owner="") const = 0;
virtual String GetRedoMessage(const String owner="") const = 0;
@ -121,15 +123,6 @@ namespace Athenasub {
};
// View
class IView {
public:
virtual ~IView() {}
virtual void OnNotify(Notification notification) = 0;
};
// Controller
class IController {
public:
@ -158,6 +151,15 @@ namespace Athenasub {
};
// View
class IView {
public:
virtual ~IView() {}
virtual void OnNotify(Notification notification) = 0;
};
// Selection
class ISelection {
public:
@ -308,8 +310,8 @@ namespace Athenasub {
public:
virtual ~IFormatHandler() {}
virtual void Load(IModel &model,Reader &file) = 0;
virtual void Save(const IModel &model,Writer &file) const = 0;
virtual void Load(IModel &model,Reader file) = 0;
virtual void Save(const IModel &model,Writer file) const = 0;
};
@ -382,6 +384,29 @@ namespace Athenasub {
};
// File reader
class IReader {
public:
virtual ~IReader() {}
virtual String GetFileName() = 0;
virtual void Rewind() = 0;
virtual bool HasMoreLines() = 0;
virtual String ReadLineFromFile() = 0;
virtual String GetCurrentEncoding() = 0;
};
// File writer
class IWriter {
public:
virtual ~IWriter() {}
virtual void WriteLineToFile(String line,bool addLineBreak=true) = 0;
virtual void Flush() = 0;
};
// Library
class ILibAthenaSub {
public:

View File

@ -63,7 +63,7 @@ ActionList CController::CreateActionList(const String title,const String owner,b
// Load a file
void CController::LoadFile(const String filename,const String encoding)
{
Reader reader(filename,encoding);
Reader reader(new CReader(filename,encoding));
std::vector<Format> handlers = FormatManager::GetCompatibleFormatList(reader);
size_t len = handlers.size();
bool success = false;
@ -89,7 +89,7 @@ void CController::LoadFile(const String filename,const String encoding)
void CController::SaveFile(const String filename,const String encoding)
{
Format handler = FormatManager::GetFormatFromFilename(filename,true);
Writer writer(filename,encoding);
Writer writer(new CWriter(filename,encoding));
model->Save(writer,handler);
}

View File

@ -55,8 +55,8 @@ namespace Athenasub {
public:
//CFormatHandler(IModel& _model) : model(_model) {}
virtual void Load(IModel &model,Reader &file) = 0;
virtual void Save(const IModel &model,Writer &file) const = 0;
virtual void Load(IModel &model,Reader file) = 0;
virtual void Save(const IModel &model,Writer file) const = 0;
};
}

View File

@ -42,9 +42,10 @@
using namespace Athenasub;
////////
// List
///////////
// Statics
std::vector<Format> FormatManager::formats;
bool FormatManager::formatsInitialized = false;
////////////////
@ -66,9 +67,13 @@ void FormatManager::AddFormat(Format format)
// Initialize all built-in formats
void FormatManager::InitializeFormats()
{
AddFormat(Format(new FormatASS()));
AddFormat(Format(new FormatSSA()));
AddFormat(Format(new FormatASS2()));
if (!formatsInitialized) {
AddFormat(Format(new FormatASS()));
AddFormat(Format(new FormatSSA()));
AddFormat(Format(new FormatASS2()));
formatsInitialized = true;
}
}
@ -77,6 +82,7 @@ void FormatManager::InitializeFormats()
void FormatManager::ClearFormats()
{
formats.clear();
formatsInitialized = false;
}
@ -133,14 +139,14 @@ Format FormatManager::GetFormatFromName(const String &name)
///////////////////////////////////////////////////////
// Get a list of all formats compatible with this file
std::vector<Format> FormatManager::GetCompatibleFormatList(Reader &reader)
std::vector<Format> FormatManager::GetCompatibleFormatList(Reader reader)
{
// Find all compatible formats and store them with their certainty
std::vector<std::pair<float,Format> > results;
size_t len = formats.size();
for (size_t i=0;i<len;i++) {
// Reset reader
reader.Rewind();
reader->Rewind();
// Check how certain it is that it can read the format
float certainty = formats[i]->CanReadFile(reader);
@ -148,7 +154,7 @@ std::vector<Format> FormatManager::GetCompatibleFormatList(Reader &reader)
// Compare to extension
StringArray exts = formats[i]->GetReadExtensions();
for (size_t j=0;j<exts.size();j++) {
if (reader.GetFileName().EndsWith(exts[j],false)) {
if (reader->GetFileName().EndsWith(exts[j],false)) {
certainty *= 2.0f;
break;
}
@ -176,6 +182,14 @@ std::vector<Format> FormatManager::GetCompatibleFormatList(Reader &reader)
}
// Reset reader again and return results
reader.Rewind();
reader->Rewind();
return finalResults;
}
//////////////////////////////////////
// Same as above, but from a filename
std::vector<Format> FormatManager::GetCompatibleFormatList(const String &filename,const String &encoding)
{
return GetCompatibleFormatList(Reader(new CReader(filename,encoding)));
}

View File

@ -38,11 +38,10 @@
namespace Athenasub {
class Reader;
// Format manager class
class FormatManager {
private:
static bool formatsInitialized;
static std::vector<Format> formats;
FormatManager() {}
@ -55,7 +54,8 @@ namespace Athenasub {
static Format GetFormatByIndex(const int index);
static Format GetFormatFromFilename(const String &filename,bool read);
static Format GetFormatFromName(const String &name);
static std::vector<Format> GetCompatibleFormatList(Reader &reader);
static std::vector<Format> GetCompatibleFormatList(Reader reader);
static std::vector<Format> GetCompatibleFormatList(const String &filename,const String &encoding="");
};
}

View File

@ -93,10 +93,8 @@ StringArray FormatASS2::GetWriteExtensions() const
//////////////////////////////////
// Check if it can read this file
float FormatASSFamily::CanReadFile(Reader &reader) const
float FormatASSFamily::CanReadFile(Reader &file) const
{
shared_ptr<TextReader> file = reader.GetTextReader();
// Check header
if (!file->HasMoreLines()) return 0.0f;
String line = file->ReadLineFromFile();
@ -106,7 +104,7 @@ float FormatASSFamily::CanReadFile(Reader &reader) const
float version = 0.0f;
float sections = 0.25f;
String section = line;
while (file->HasMoreLines()) {
for (int i=0; i < 100 && file->HasMoreLines(); i++) {
// Get line
line = file->ReadLineFromFile();
line.AsciiMakeLower();
@ -116,7 +114,7 @@ float FormatASSFamily::CanReadFile(Reader &reader) const
// Check version
if (section == "[script info]") {
if (line.StartsWith("ScriptType")) {
if (line.StartsWith("scripttype")) {
int formatVersion = GetVersion();
String expected = "";
switch (formatVersion) {
@ -158,11 +156,8 @@ FormatHandlerASS::~FormatHandlerASS()
///////////////
// Load a file
void FormatHandlerASS::Load(IModel &model,Reader &file)
void FormatHandlerASS::Load(IModel &model,Reader reader)
{
// Get text file reader
shared_ptr<TextReader> reader = file.GetTextReader();
// Variables
int version = 1;
String curGroup = "-";
@ -201,11 +196,8 @@ void FormatHandlerASS::Load(IModel &model,Reader &file)
/////////////////////
// Save file to disc
void FormatHandlerASS::Save(const IModel& model,Writer &file) const
void FormatHandlerASS::Save(const IModel& model,Writer writer) const
{
// Make text file writer
shared_ptr<TextWriter> writer = file.GetTextWriter();
// Set up list of sections to write
StringArray sections;
sections.push_back("Script Info");
@ -389,7 +381,7 @@ void FormatHandlerASS::ProcessGroup(String cur,String &curGroup,int &version) {
///////////////////////////////
// Write a section to the file
void FormatHandlerASS::WriteSection(shared_ptr<TextWriter> writer,ConstSection section) const
void FormatHandlerASS::WriteSection(Writer writer,ConstSection section) const
{
// Write name
String name = section->GetName();

View File

@ -55,15 +55,15 @@ namespace Athenasub {
Entry MakeEntry(const String &data,Section section,int version);
void ProcessGroup(String cur,String &curGroup,int &version);
void WriteSection(shared_ptr<TextWriter> writer,ConstSection section) const;
void WriteSection(Writer writer,ConstSection section) const;
void MakeValid(IModel &model);
public:
FormatHandlerASS(int version);
~FormatHandlerASS();
void Load(IModel &model,Reader &file);
void Save(const IModel &model,Writer &file) const;
void Load(IModel &model,Reader file);
void Save(const IModel &model,Writer file) const;
};
// Advanced Substation Alpha format base class

View File

@ -136,7 +136,7 @@ void CModel::Load(Reader &input,const Format _format)
//////////////////
// Save subtitles
void CModel::Save(Writer &output,const Format _format) const
void CModel::Save(Writer output,const Format _format) const
{
// Use another format
if (_format && _format != format) {

View File

@ -93,7 +93,7 @@ namespace Athenasub {
Format GetFormat() const { return format; }
void AddListener(View listener);
void Save(Writer &output,Format format=Format()) const;
void Save(Writer output,Format format=Format()) const;
ConstSection GetSection(String name) const;
ConstSection GetSectionByIndex(size_t index) const;

View File

@ -40,30 +40,40 @@
using namespace Athenasub;
Reader::Reader(String fn,String encoding)
CReader::CReader(String fn,String encoding)
: filename(fn)
{
stream = shared_ptr<wxFFileInputStream>(new wxFFileInputStream(filename.GetWxString()));
text = TextReader::GetReader(*stream,encoding);
}
shared_ptr<TextReader> Athenasub::Reader::GetTextReader()
{
return text;
}
Athenasub::String Athenasub::Reader::GetFileName()
String CReader::GetFileName()
{
return filename;
}
Athenasub::Reader::~Reader()
CReader::~CReader()
{
text = shared_ptr<TextReader>();
stream = shared_ptr<wxFFileInputStream>();
}
void Reader::Rewind()
void CReader::Rewind()
{
text->Rewind();
}
}
bool CReader::HasMoreLines()
{
return text->HasMoreLines();
}
String CReader::ReadLineFromFile()
{
return text->ReadLineFromFile();
}
String CReader::GetCurrentEncoding()
{
THROW_ATHENA_EXCEPTION(Exception::TODO);
}

View File

@ -44,18 +44,20 @@ class wxFFileInputStream;
namespace Athenasub {
class TextReader;
class Reader {
class CReader : public IReader {
private:
shared_ptr<TextReader> text;
String filename;
shared_ptr<wxFFileInputStream> stream;
public:
Reader(String filename,String encoding="");
~Reader();
CReader(String filename,String encoding="");
~CReader();
shared_ptr<TextReader> GetTextReader();
String GetFileName();
void Rewind();
virtual String GetFileName();
virtual void Rewind();
virtual bool HasMoreLines();
virtual String ReadLineFromFile();
virtual String GetCurrentEncoding();
};
}

View File

@ -40,21 +40,25 @@
using namespace Athenasub;
Writer::Writer(String filename,String encoding)
CWriter::CWriter(String filename,String encoding)
{
stream = shared_ptr<wxFFileOutputStream>(new wxFFileOutputStream(filename.GetWxString()));
text = TextWriter::GetWriter(*stream,encoding);
}
Writer::~Writer()
CWriter::~CWriter()
{
text = shared_ptr<TextWriter>();
stream = shared_ptr<wxFFileOutputStream>();
}
shared_ptr<TextWriter> Writer::GetTextWriter()
void CWriter::WriteLineToFile(String line,bool addLineBreak)
{
return text;
text->WriteLineToFile(line,addLineBreak);
}
void CWriter::Flush()
{
text->Flush();
}

View File

@ -45,15 +45,16 @@ class wxFFileOutputStream;
namespace Athenasub {
class TextWriter;
class Writer {
class CWriter : public IWriter {
private:
shared_ptr<TextWriter> text;
shared_ptr<wxFFileOutputStream> stream;
public:
Writer(String filename,String encoding="");
~Writer();
CWriter(String filename,String encoding="");
~CWriter();
shared_ptr<TextWriter> GetTextWriter();
void WriteLineToFile(String line,bool addLineBreak=true);
void Flush();
};
}

View File

@ -0,0 +1,85 @@
// Copyright (c) 2008, Rodrigo Braz Monteiro
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of the Aegisub Group nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// -----------------------------------------------------------------------------
//
// AEGISUB
//
// Website: http://aegisub.cellosoft.com
// Contact: mailto:zeratul@cellosoft.com
//
#include "../suites.h"
#include "../utils.h"
#if ATHENASUB_TEST == 1
#include <iostream>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include "athenasub/athenasub.h"
#include "format_manager.h"
using namespace Athenasub;
class AthenasubFormatsTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(AthenasubFormatsTest);
CPPUNIT_TEST(testIdentifyFormat);
CPPUNIT_TEST_SUITE_END();
private:
String getFormatName(String file)
{
String fileFolder = "test_files/";
std::vector<Format> formats = FormatManager::GetCompatibleFormatList(fileFolder+file,"UTF-8");
if (formats.size() == 0) return "";
return formats[0]->GetName();
}
public:
void setUp()
{
}
void tearDown()
{
}
void testIdentifyFormat()
{
std::vector<Format> formats;
CPPUNIT_ASSERT_NO_THROW(FormatManager::InitializeFormats());
CPPUNIT_ASSERT(getFormatName("format_ssa.ssa") == "Substation Alpha");
CPPUNIT_ASSERT(getFormatName("format_ass.ass") == "Advanced Substation Alpha");
CPPUNIT_ASSERT(getFormatName("format_ass2.ass") == "Advanced Substation Alpha 2");
//CPPUNIT_ASSERT(getFormatName("format_srt.srt") == "SubRip Text");
}
};
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(AthenasubFormatsTest,AegisubSuites::athenasub());
#endif

View File

@ -0,0 +1,389 @@
[Script Info]
; Script generated by Aegisub v2.00 PRE-RELEASE (SVN r886, ArchMageZeratuL)
; http://www.aegisub.net
Title: <untitled>
Original Script: <unknown>
ScriptType: v4.00+
Video Aspect Ratio: 0
Video Zoom: 8
Video Position: 11067
Last Style Storage: evangelion
PlayResX: 704
PlayResY: 480
Video File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1.mkv
Audio File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1_Track2.ac3
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: eva main,Sui Generis,27,&H00F1E4D3,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0
Style: eva alternate,Sui Generis,27,&H00C4A377,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0
Style: eva bg broadcast,Sui Generis,24,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,8,18,18,17,0
Style: eva broadcast,Sui Generis,27,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0
Style: eva notes,Tw Cen MT,28,&H00FFFFFF,&H0000FFFF,&H00D2D2D2,&H00000000,0,0,0,0,100,100,0,0,1,0,0,9,18,18,17,0
Style: eva other fo,Lucida Sans,20,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0
Style: eva titles,Angsana New,80,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,-1,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: 0,0:01:30.40,0:01:32.73,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(352,345)}The year is 2015 A.D.
Dialogue: 0,0:01:55.10,0:01:59.03,eva broadcast,Comment,0000,0000,0000,,As of 12:30 PM today, a special state\nof emergency has been declared
Dialogue: 0,0:01:59.13,0:02:03.26,eva broadcast,Comment,0000,0000,0000,,for the Kanto and Chubu regions\nsurrounding the Tokai district.
Dialogue: 0,0:02:03.77,0:02:07.80,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate to their\ndesignated shelters immediately.
Dialogue: 0,0:02:08.24,0:02:12.55,eva broadcast,Comment,0000,0000,0000,,Repeating: As of 12:30 PM today,
Dialogue: 0,0:02:11.65,0:02:14.07,eva other fo,Comment,0000,0000,0000,,{\pos(488,124)\bord0\shad0\fs30\frz322.539\frx24\fry41}All Lines Stopped
Dialogue: 0,0:02:12.55,0:02:16.17,eva broadcast,Comment,0000,0000,0000,,the Kanto and Chubu regions\nsurrounding the Tokai district
Dialogue: 0,0:02:16.25,0:02:19.31,eva broadcast,Comment,0000,0000,0000,,have been declared to be under\na state of emergency.
Dialogue: 0,0:02:19.39,0:02:20.92,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate...
Dialogue: 0,0:02:20.92,0:02:24.39,eva main,Comment,0000,0000,0000,,Why did I have to lose sight of him now?
Dialogue: 0,0:02:24.39,0:02:26.23,eva main,Comment,0000,0000,0000,,Oh, man!
Dialogue: 0,0:02:26.11,0:02:28.75,eva other fo,Comment,0000,0000,0000,,{\c&H071413&\bord0\shad0\pos(154,432)\frz-5\fs22}Ikari Shinji
Dialogue: 0,0:02:27.26,0:02:29.96,eva main,Comment,0000,0000,0000,,Due to the special emergency,
Dialogue: 0,0:02:30.03,0:02:33.30,eva main,Comment,0000,0000,0000,,all lines are currently unavailable.
Dialogue: 0,0:02:34.74,0:02:35.73,eva main,Comment,0000,0000,0000,,It's no use.
Dialogue: 0,0:02:36.77,0:02:39.07,eva main,Comment,0000,0000,0000,,I shouldn't have come here after all.
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(160,179)}To Shinji-kun
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(592,123)}I'll be coming to\N\Nget you, so wait
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(211,250)}Attention here!!
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(628,197)}for me.{\fnWebdings}♥
Dialogue: 0,0:02:43.38,0:02:45.74,eva main,Comment,0000,0000,0000,,Well, I guess we won't be meeting here.
Dialogue: 0,0:02:46.88,0:02:49.48,eva main,Comment,0000,0000,0000,,Can't be helped. I'll go to a shelter.
Dialogue: 0,0:03:14.63,0:03:18.55,eva titles,Comment,0000,0000,0000,,{\fs21\fsp-1\bord0\shad0\c&HE3EDFC&\fnTw Cen MT\pos(612,415)}ESTIMATED PATH
Dialogue: 0,0:03:15.14,0:03:18.60,eva main,Comment,0000,0000,0000,,The unidentified mobile object is still\nadvancing on our position.
Dialogue: 0,0:03:19.38,0:03:22.61,eva main,Comment,0000,0000,0000,,We've got visual confirmation.\NI'm putting it on the main screen.
Dialogue: 0,0:03:24.29,0:03:26.12,eva main,Comment,0000,0000,0000,,It's been fifteen years, hasn't it?
Dialogue: 0,0:03:26.19,0:03:28.31,eva main,Comment,0000,0000,0000,,Yes, there's no doubt.
Dialogue: 0,0:03:29.29,0:03:30.52,eva main,Comment,0000,0000,0000,,It's an Angel.
Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\pos(476,263)\fs130\fsp-6}Angel Attack
Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(193,61)}Episode One
Dialogue: 0,0:03:42.50,0:03:44.34,eva broadcast,Comment,0000,0000,0000,,Every missile hit the target!
Dialogue: 0,0:04:03.53,0:04:05.12,eva main,Comment,0000,0000,0000,,I'm sorry! Thanks for waiting!
Dialogue: 0,0:04:22.11,0:04:26.71,eva broadcast,Comment,0000,0000,0000,,The target is still operational.\NIt's still heading towards New Tokyo-3.
Dialogue: 0,0:04:26.78,0:04:29.31,eva broadcast,Comment,0000,0000,0000,,The Air Defense Force doesn't have\nthe firepower to stop it!
Dialogue: 0,0:04:30.12,0:04:31.29,eva main,Comment,0000,0000,0000,,Hit it with everything we've got!
Dialogue: 0,0:04:31.29,0:04:33.25,eva main,Comment,0000,0000,0000,,Mobilize all of Atsugi and Iruma as well!
Dialogue: 0,0:04:33.32,0:04:36.72,eva main,Comment,0000,0000,0000,,Don't hold anything back!\NDestroy the target at any cost!
Dialogue: 0,0:04:50.05,0:04:52.17,eva main,Comment,0000,0000,0000,,Why?! That was a direct hit!
Dialogue: 0,0:04:52.64,0:04:55.04,eva main,Comment,0000,0000,0000,,The tank battalion's been annihilated.
Dialogue: 0,0:04:55.04,0:04:57.98,eva main,Comment,0000,0000,0000,,Guided missiles and artillery\nhave no effect either.
Dialogue: 0,0:04:57.98,0:05:01.52,eva main,Comment,0000,0000,0000,,It's no good! We'll never get anywhere\nwith the firepower we've got!
Dialogue: 0,0:05:01.52,0:05:03.39,eva main,Comment,0000,0000,0000,,Is it an AT field after all?
Dialogue: 0,0:05:01.52,0:05:04.52,eva notes,Comment,0000,0000,0000,,{\fad(400,400)\1a&H70&}AT field: absolute terror field
Dialogue: 0,0:05:03.39,0:05:07.34,eva main,Comment,0000,0000,0000,,Yes. Conventional weapons are\nuseless against Angels.
Dialogue: 0,0:05:10.76,0:05:13.99,eva main,Comment,0000,0000,0000,,I understand. We'll activate it as planned.
Dialogue: 0,0:05:18.80,0:05:20.29,eva main,Comment,0000,0000,0000,,Hey, don't tell me...
Dialogue: 0,0:05:20.37,0:05:22.23,eva main,Comment,0000,0000,0000,,They're going to use an N{\fnLucida Sans}²{\r} mine?!
Dialogue: 0,0:05:22.74,0:05:23.76,eva main,Comment,0000,0000,0000,,Get down!
Dialogue: 0,0:05:46.56,0:05:47.43,eva main,Comment,0000,0000,0000,,We did it!
Dialogue: 0,0:05:48.80,0:05:51.89,eva main,Comment,0000,0000,0000,,Sorry, but it looks like you won't be\ngetting a shot at it.
Dialogue: 0,0:05:51.97,0:05:54.16,eva broadcast,Comment,0000,0000,0000,,Shock wave approaching.
Dialogue: 0,0:05:55.37,0:05:56.70,eva main,Comment,0000,0000,0000,,Are you all right?
Dialogue: 0,0:05:56.77,0:06:00.11,eva main,Comment,0000,0000,0000,,Yeah, but my mouth is full of dirt.
Dialogue: 0,0:06:00.11,0:06:04.07,eva main,Comment,0000,0000,0000,,That's okay. Now then, here we go!
Dialogue: 0,0:06:04.75,0:06:06.08,eva main,Comment,0000,0000,0000,,One, two!
Dialogue: 0,0:06:09.88,0:06:11.44,eva main,Comment,0000,0000,0000,,There.
Dialogue: 0,0:06:14.79,0:06:16.88,eva main,Comment,0000,0000,0000,,Thanks for the hand. I really appreciate it.
Dialogue: 0,0:06:16.96,0:06:19.95,eva main,Comment,0000,0000,0000,,Thank you too, Katsuragi-san.
Dialogue: 0,0:06:20.03,0:06:22.09,eva main,Comment,0000,0000,0000,,Just Misato is fine.
Dialogue: 0,0:06:22.56,0:06:25.90,eva main,Comment,0000,0000,0000,,I'm glad we've met at last, Ikari Shinji-kun.
Dialogue: 0,0:06:26.20,0:06:27.02,eva main,Comment,0000,0000,0000,,Yeah...
Dialogue: 0,0:06:27.57,0:06:28.83,eva broadcast,Comment,0000,0000,0000,,What's the target's status?
Dialogue: 0,0:06:28.90,0:06:31.80,eva broadcast,Comment,0000,0000,0000,,We're unable to confirm due to\nall the EMP interference.
Dialogue: 0,0:06:31.87,0:06:34.64,eva main,Comment,0000,0000,0000,,You saw the size of the explosion. It's over.
Dialogue: 0,0:06:34.71,0:06:36.14,eva broadcast,Comment,0000,0000,0000,,Sensors restored.
Dialogue: 0,0:06:37.45,0:06:39.28,eva broadcast,Comment,0000,0000,0000,,We've got an energy reading\nat the explosion's epicenter!
Dialogue: 0,0:06:39.35,0:06:40.47,eva main,Comment,0000,0000,0000,,What the hell?!
Dialogue: 0,0:06:40.55,0:06:42.18,eva broadcast,Comment,0000,0000,0000,,Visual display restored.
Dialogue: 0,0:06:46.45,0:06:48.68,eva main,Comment,0000,0000,0000,,That was our last resort.
Dialogue: 0,0:06:49.62,0:06:51.53,eva main,Comment,0000,0000,0000,,How can this be?
Dialogue: 0,0:06:51.53,0:06:53.15,eva main,Comment,0000,0000,0000,,Damned monster!
Dialogue: 0,0:07:03.10,0:07:05.50,eva main,Comment,0000,0000,0000,,Yes. Don't worry about it.
Dialogue: 0,0:07:05.57,0:07:09.63,eva main,Comment,0000,0000,0000,,His safety is my top priority,\nso could you get a car train ready for us?
Dialogue: 0,0:07:09.71,0:07:10.94,eva main,Comment,0000,0000,0000,,A direct one.
Dialogue: 0,0:07:11.81,0:07:12.78,eva main,Comment,0000,0000,0000,,Right.
Dialogue: 0,0:07:13.15,0:07:15.48,eva main,Comment,0000,0000,0000,,Well, I volunteered to pick him up,
Dialogue: 0,0:07:15.48,0:07:18.18,eva main,Comment,0000,0000,0000,,so I'll make sure he gets there. See ya!
Dialogue: 0,0:07:20.52,0:07:26.95,eva main,Comment,0000,0000,0000,,Man, this sucks! I just had my car restored\nand it's a total wreck already!
Dialogue: 0,0:07:27.44,0:07:30.56,eva main,Comment,0000,0000,0000,,33 more loan payments to go,\nplus the cost of repairs.
Dialogue: 0,0:07:30.63,0:07:33.16,eva main,Comment,0000,0000,0000,,And look! My best dress has been ruined!
Dialogue: 0,0:07:33.54,0:07:37.30,eva main,Comment,0000,0000,0000,,And I was looking and feeling so nice.
Dialogue: 0,0:07:32.97,0:07:34.79,eva alternate,Comment,0000,0000,0000,,Excuse me, Misato-san?
Dialogue: 0,0:07:37.30,0:07:38.98,eva main,Comment,0000,0000,0000,,Excuse me, Misato-san?
Dialogue: 0,0:07:39.17,0:07:40.66,eva main,Comment,0000,0000,0000,,What?
Dialogue: 0,0:07:40.74,0:07:43.40,eva main,Comment,0000,0000,0000,,Are you sure you can just take those?
Dialogue: 0,0:07:45.25,0:07:46.21,eva main,Comment,0000,0000,0000,,Never mind about that!
Dialogue: 0,0:07:46.28,0:07:50.05,eva main,Comment,0000,0000,0000,,It's an emergency, and we need\na working car right now, right?
Dialogue: 0,0:07:50.12,0:07:53.61,eva main,Comment,0000,0000,0000,,And I'm an international government\nofficial, after all,
Dialogue: 0,0:07:53.69,0:07:55.28,eva main,Comment,0000,0000,0000,,so everything's going to be\nperfectly fine, okay?
Dialogue: 0,0:07:56.66,0:07:59.29,eva main,Comment,0000,0000,0000,,I don't think anyone will buy that.
Dialogue: 0,0:07:59.36,0:08:03.46,eva main,Comment,0000,0000,0000,,You're no fun. You look cute,\nbut you're kind of a cold fish.
Dialogue: 0,0:08:04.40,0:08:05.73,eva main,Comment,0000,0000,0000,,You think so?
Dialogue: 0,0:08:05.80,0:08:07.53,eva main,Comment,0000,0000,0000,,Oh, did I upset you?
Dialogue: 0,0:08:08.27,0:08:11.67,eva main,Comment,0000,0000,0000,,Sorry about that! You are a boy, after all.
Dialogue: 0,0:08:11.74,0:08:15.04,eva main,Comment,0000,0000,0000,,And you're pretty childish for your age.
Dialogue: 0,0:08:20.75,0:08:23.68,eva main,Comment,0000,0000,0000,,As we predicted, it's regenerating itself.
Dialogue: 0,0:08:23.99,0:08:27.85,eva main,Comment,0000,0000,0000,,If it couldn't, it wouldn't be\na practical autonomous weapon.
Dialogue: 0,0:08:31.49,0:08:35.09,eva main,Comment,0000,0000,0000,,Impressive. It appears it can even upgrade\nits own operational functions.
Dialogue: 0,0:08:35.43,0:08:37.69,eva main,Comment,0000,0000,0000,,And it seems to have gotten smarter.
Dialogue: 0,0:08:38.73,0:08:41.63,eva main,Comment,0000,0000,0000,,It's only a matter of time before\nit resumes attacking.
Dialogue: 0,0:08:43.04,0:08:46.61,eva bg broadcast,Comment,0000,0000,0000,,The gates are now closing.\NPlease stand clear.
Dialogue: 0,0:08:46.30,0:08:48.03,eva main,,0000,0000,0000,,The special duty organization Nerv?
Dialogue: 0,0:08:46.61,0:08:48.34,eva bg broadcast,Comment,0000,0000,0000,,Now departing.
Dialogue: 0,0:08:48.14,0:08:51.45,eva main,Comment,0000,0000,0000,,Yes, it's a secret organization under\nthe control of the United Nations.
Dialogue: 0,0:08:48.34,0:08:56.75,eva bg broadcast,Comment,0000,0000,0000,,This is the C-22 Special Express\ndeparting directly for G33-1.
Dialogue: 0,0:08:51.95,0:08:53.58,eva main,Comment,0000,0000,0000,,That's where my father is, right?
Dialogue: 0,0:08:53.58,0:08:54.75,eva main,Comment,0000,0000,0000,,Well, yeah.
Dialogue: 0,0:08:54.75,0:08:56.75,eva main,Comment,0000,0000,0000,,Do you know what he does?
Dialogue: 0,0:08:58.09,0:09:01.92,eva bg broadcast,Comment,0000,0000,0000,,This train will bypass all other stations.\NPlease stand back.
Dialogue: 0,0:09:00.69,0:09:04.52,eva main,Comment,0000,0000,0000,,My teacher told me his work is vital\nfor the protection of the human race.
Dialogue: 0,0:09:07.66,0:09:10.83,eva main,Comment,0000,0000,0000,,From this point forward, command of this\noperation will be entrusted to you.
Dialogue: 0,0:09:10.90,0:09:12.53,eva main,Comment,0000,0000,0000,,Show us what you're capable of.
Dialogue: 0,0:09:12.60,0:09:13.69,eva main,Comment,0000,0000,0000,,Yes, Sir.
Dialogue: 0,0:09:14.27,0:09:20.37,eva main,Comment,0000,0000,0000,,Ikari-kun, we will admit that our weapons\nhave no effect on the target.
Dialogue: 0,0:09:21.28,0:09:23.68,eva main,Comment,0000,0000,0000,,But are you sure you can beat this thing?
Dialogue: 0,0:09:24.15,0:09:25.83,eva main,Comment,0000,0000,0000,,It's what Nerv was created for.
Dialogue: 0,0:09:26.65,0:09:28.14,eva main,Comment,0000,0000,0000,,Let's hope you're correct.
Dialogue: 0,0:09:29.78,0:09:31.91,eva broadcast,Comment,0000,0000,0000,,The target is still stationary.
Dialogue: 0,0:09:31.99,0:09:35.35,eva broadcast,Comment,0000,0000,0000,,Our intercept system is currently\N7.5% operational.
Dialogue: 0,0:09:37.03,0:09:39.36,eva main,Comment,0000,0000,0000,,So, even the UN forces have retired.
Dialogue: 0,0:09:39.43,0:09:41.02,eva main,Comment,0000,0000,0000,,What are you going to do?
Dialogue: 0,0:09:41.53,0:09:43.52,eva main,Comment,0000,0000,0000,,I intend to activate Unit 01.
Dialogue: 0,0:09:43.77,0:09:46.86,eva main,Comment,0000,0000,0000,,Unit 01? But we have no pilot.
Dialogue: 0,0:09:47.50,0:09:51.10,eva main,Comment,0000,0000,0000,,That's not a problem. Another spare\nwill be delivered soon.
Dialogue: 0,0:09:52.07,0:09:54.80,eva main,Comment,0000,0000,0000,,Are you taking me to my father?
Dialogue: 0,0:09:55.31,0:09:57.40,eva main,Comment,0000,0000,0000,,Yes. Pretty much.
Dialogue: 0,0:10:01.25,0:10:02.51,eva main,Comment,0000,0000,0000,,Father...
Dialogue: 0,0:10:04.09,0:10:07.45,eva main,Comment,0000,0000,0000,,Oh, that's right. Did you get\nan ID card from your father?
Dialogue: 0,0:10:09.36,0:10:10.35,eva main,Comment,0000,0000,0000,,Yes.
Dialogue: 0,0:10:12.03,0:10:13.05,eva main,Comment,0000,0000,0000,,Here it is.
Dialogue: 0,0:10:13.13,0:10:14.43,eva main,Comment,0000,0000,0000,,Thanks.
Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\fs35\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(420,396)}Come.
Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(485,459)}Ikari Gendo
Dialogue: 0,0:10:15.80,0:10:18.20,eva main,Comment,0000,0000,0000,,Then read this.
Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\pos(380,320)}Welcome to
Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\i1\pos(380,353)}Nerv
Dialogue: 0,0:10:18.93,0:10:20.13,eva main,Comment,0000,0000,0000,,Nerv...
Dialogue: 0,0:10:21.00,0:10:22.26,eva main,Comment,0000,0000,0000,,My father's agency.
Dialogue: 0,0:10:23.00,0:10:25.06,eva main,Comment,0000,0000,0000,,Am I going to work for them too?
Dialogue: 0,0:10:27.01,0:10:28.50,eva main,Comment,0000,0000,0000,,Of course.
Dialogue: 0,0:10:28.68,0:10:32.81,eva main,Comment,0000,0000,0000,,He wouldn't have sent me a letter unless\nhe needed me for something.
Dialogue: 0,0:10:33.27,0:10:36.24,eva main,Comment,0000,0000,0000,,I see. So you don't get along with your father.
Dialogue: 0,0:10:37.65,0:10:39.24,eva main,Comment,0000,0000,0000,,It's the same with me.
Dialogue: 0,0:10:45.23,0:10:46.49,eva main,Comment,0000,0000,0000,,Awesome!
Dialogue: 0,0:10:47.70,0:10:49.39,eva main,Comment,0000,0000,0000,,It's the real Geo-Front!
Dialogue: 0,0:10:49.46,0:10:50.36,eva main,Comment,0000,0000,0000,,That's right.
Dialogue: 0,0:10:50.43,0:10:53.87,eva main,Comment,0000,0000,0000,,This is our secret base.\NNerv Headquarters.
Dialogue: 0,0:10:54.26,0:10:55.80,eva main,Comment,0000,0000,0000,,This is the key to rebuilding our world.
Dialogue: 0,0:10:55.87,0:10:58.34,eva main,Comment,0000,0000,0000,,A fortress for all mankind.
Dialogue: 1,0:11:04.91,0:11:10.18,eva main,Comment,0000,0000,0000,,That's strange. Isn't this the right way?
Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma
Dialogue: 0,0:11:07.10,0:11:08.64,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\pos(273,118)\bord0\shad0\c&H3B2C71&}Around here
Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,99)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,109)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,125)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,145)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,186)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,235)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,285)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,333)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,394)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:09.02,0:11:09.06,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,457)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma
Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,152)}Central Dogma
Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,162)}Central Dogma
Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,178)}Central Dogma
Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,198)}Central Dogma
Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,240)}Central Dogma
Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,287)}Central Dogma
Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,339)}Central Dogma
Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,384)}Central Dogma
Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,447)}Central Dogma
Dialogue: 0,0:11:08.64,0:11:08.68,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,128)}Around here
Dialogue: 0,0:11:08.68,0:11:08.73,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,138)}Around here
Dialogue: 0,0:11:08.73,0:11:08.77,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,154)}Around here
Dialogue: 0,0:11:08.77,0:11:08.81,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,171)}Around here
Dialogue: 0,0:11:08.81,0:11:08.85,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,213)}Around here
Dialogue: 0,0:11:08.85,0:11:08.89,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,262)}Around here
Dialogue: 0,0:11:08.89,0:11:08.93,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(276,312)}Around here
Dialogue: 0,0:11:08.93,0:11:08.98,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,358)}Around here
Dialogue: 0,0:11:08.98,0:11:09.02,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(273,420)}Around here
Dialogue: 0,0:11:09.02,0:11:09.06,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(281,480)}Around here
Dialogue: 0,0:11:10.89,0:11:12.49,eva bg broadcast,Comment,0000,0000,0000,,Central Dogma's closed passages\nremain sealed.
Dialogue: 0,0:11:12.49,0:11:15.29,eva main,Comment,0000,0000,0000,,This is why I hate wearing skirts here.
Dialogue: 0,0:11:12.92,0:11:17.76,eva bg broadcast,Comment,0000,0000,0000,,Opening block B-26 in sequence.
Dialogue: 0,0:11:15.79,0:11:18.56,eva main,Comment,0000,0000,0000,,But where the heck did Ritsuko go?
Dialogue: 0,0:11:18.63,0:11:21.42,eva main,Comment,0000,0000,0000,,I'm sorry. I'm just not used to this place yet.
Dialogue: 0,0:11:21.50,0:11:23.49,eva main,Comment,0000,0000,0000,,We passed this spot just a little while ago.
Dialogue: 0,0:11:24.87,0:11:26.30,eva main,Comment,0000,0000,0000,,But don't worry about it.
Dialogue: 0,0:11:26.37,0:11:29.24,eva main,Comment,0000,0000,0000,,They make these systems\nto be used, you know.
Dialogue: 0,0:11:29.24,0:11:31.97,eva bg broadcast,Comment,0000,0000,0000,,Would the head of Project E,\NTechnical Department Division 1,
Dialogue: 0,0:11:31.97,0:11:34.84,eva bg broadcast,Comment,0000,0000,0000,,Dr. Akagi Ritsuko, Dr. Akagi Ritsuko,
Dialogue: 0,0:11:34.84,0:11:39.48,eva bg broadcast,Comment,0000,0000,0000,,please contact Captain Katsuragi Misato\nof Operations, Division 1, immediately.
Dialogue: 0,0:11:39.61,0:11:41.45,eva main,Comment,0000,0000,0000,,I don't believe it.
Dialogue: 0,0:11:41.45,0:11:42.42,eva main,Comment,0000,0000,0000,,She got lost again, didn't she?
Dialogue: 0,0:11:46.89,0:11:48.95,eva main,Comment,0000,0000,0000,,Uh, hiya, Ritsuko.
Dialogue: 0,0:11:53.63,0:11:55.99,eva main,Comment,0000,0000,0000,,What were you doing, Captain Katsuragi?
Dialogue: 0,0:11:56.10,0:11:58.33,eva main,Comment,0000,0000,0000,,We're short on both time\nand manpower, you know.
Dialogue: 0,0:11:58.83,0:11:59.86,eva main,Comment,0000,0000,0000,,Sorry!
Dialogue: 0,0:12:03.14,0:12:04.97,eva main,Comment,0000,0000,0000,,So this is the boy?
Dialogue: 0,0:12:05.04,0:12:08.98,eva main,Comment,0000,0000,0000,,Right. According to the Marduk report,\nhe's the "Third Child".
Dialogue: 0,0:12:09.68,0:12:10.77,eva main,Comment,0000,0000,0000,,I'm glad to meet you.
Dialogue: 0,0:12:10.85,0:12:12.68,eva main,Comment,0000,0000,0000,,Huh? Sure.
Dialogue: 0,0:12:13.00,0:12:17.88,eva main,Comment,0000,0000,0000,,He's just like his father.\NLike how he's unendearing.
Dialogue: 0,0:12:18.25,0:12:19.51,eva main,Comment,0000,0000,0000,,I'll leave the rest to you.
Dialogue: 0,0:12:23.96,0:12:26.19,eva main,Comment,0000,0000,0000,,Their first meeting in over three years.
Dialogue: 0,0:12:27.23,0:12:30.89,eva main,Comment,0000,0000,0000,,Vice Commander, the target\nhas started moving again.
Dialogue: 0,0:12:30.97,0:12:34.37,eva main,Comment,0000,0000,0000,,Right. All personnel, assume\nbattle stations, Level One.
Dialogue: 0,0:12:34.54,0:12:37.91,eva bg broadcast,Comment,0000,0000,0000,,Repeat. All personnel, assume\nbattle stations, Level One.
Dialogue: 0,0:12:37.91,0:12:39.30,eva bg broadcast,Comment,0000,0000,0000,,Prepare for ground-unit interception.
Dialogue: 0,0:12:39.81,0:12:41.04,eva main,Comment,0000,0000,0000,,Here we go.
Dialogue: 0,0:12:41.04,0:12:42.27,eva main,Comment,0000,0000,0000,,It sounds pretty serious.
Dialogue: 0,0:12:43.41,0:12:45.58,eva main,Comment,0000,0000,0000,,So, how's Unit 01 doing?
Dialogue: 0,0:12:45.58,0:12:47.95,eva main,Comment,0000,0000,0000,,It's currently in refrigeration,\nusing the B-type equipment.
Dialogue: 0,0:12:47.95,0:12:51.95,eva main,Comment,0000,0000,0000,,Does it really work?\NIt's never worked before, right?
Dialogue: 0,0:12:51.95,0:12:56.89,eva main,Comment,0000,0000,0000,,The possibility of activation is 0.000000001%.
Dialogue: 0,0:12:57.49,0:12:59.99,eva main,Comment,0000,0000,0000,,We call it, pathetically enough,\nthe O-9 System.
Dialogue: 0,0:12:59.99,0:13:02.66,eva main,Comment,0000,0000,0000,,Does that mean it doesn't work?
Dialogue: 0,0:13:02.66,0:13:05.13,eva main,Comment,0000,0000,0000,,Oh, don't be insulting. It's not zero.
Dialogue: 0,0:13:05.13,0:13:06.83,eva main,Comment,0000,0000,0000,,Well, it's just a number.
Dialogue: 0,0:13:06.90,0:13:11.43,eva main,Comment,0000,0000,0000,,Anyway, it's a bit too late to be saying,\N"Sorry, it didn't work".
Dialogue: 0,0:13:20.05,0:13:22.81,eva main,Comment,0000,0000,0000,,Huh? It's completely dark.
Dialogue: 0,0:13:26.39,0:13:29.15,eva main,Comment,0000,0000,0000,,A face? A giant robot?
Dialogue: 0,0:13:30.86,0:13:33.02,eva main,Comment,0000,0000,0000,,You won't find this in the manual.
Dialogue: 0,0:13:34.16,0:13:38.13,eva main,Comment,0000,0000,0000,,This is mankind's ultimate\nmultipurpose decisive weapon,
Dialogue: 0,0:13:38.13,0:13:42.04,eva main,Comment,0000,0000,0000,,the synthetic human Evangelion, Unit 01.
Dialogue: 0,0:13:42.04,0:13:47.28,eva main,Comment,0000,0000,0000,,Built in absolute secrecy,\nit is mankind's trump card.
Dialogue: 0,0:13:47.28,0:13:49.28,eva main,Comment,0000,0000,0000,,Is this part of what my father's been doing?
Dialogue: 0,0:13:49.28,0:13:50.18,eva broadcast,Comment,0000,0000,0000,,Correct.
Dialogue: 0,0:13:52.15,0:13:53.48,eva main,Comment,0000,0000,0000,,It's been a while.
Dialogue: 0,0:13:54.55,0:13:55.68,eva main,Comment,0000,0000,0000,,Father...
Dialogue: 0,0:13:58.75,0:13:59.52,eva main,Comment,0000,0000,0000,,We're moving out!
Dialogue: 0,0:14:00.02,0:14:03.48,eva main,Comment,0000,0000,0000,,Moving out?! Unit 00's still in\ncryo-stasis, isn't it?
Dialogue: 0,0:14:05.43,0:14:07.62,eva main,Comment,0000,0000,0000,,You're not planning to use Unit 01?!
Dialogue: 0,0:14:08.43,0:14:09.96,eva main,Comment,0000,0000,0000,,There's no other way.
Dialogue: 0,0:14:09.96,0:14:12.83,eva main,Comment,0000,0000,0000,,Hold on! Rei can't do it yet, can she?
Dialogue: 0,0:14:13.77,0:14:15.17,eva main,Comment,0000,0000,0000,,We've got no pilot!
Dialogue: 0,0:14:16.10,0:14:17.26,eva main,Comment,0000,0000,0000,,A pilot has just been delivered.
Dialogue: 0,0:14:18.54,0:14:19.56,eva main,Comment,0000,0000,0000,,Are you serious?
Dialogue: 0,0:14:20.54,0:14:21.61,eva main,Comment,0000,0000,0000,,Ikari Shinji-kun...
Dialogue: 0,0:14:21.61,0:14:22.71,eva main,Comment,0000,0000,0000,,Yes?
Dialogue: 0,0:14:22.71,0:14:23.73,eva main,Comment,0000,0000,0000,,You will pilot it.
Dialogue: 0,0:14:24.45,0:14:29.44,eva main,Comment,0000,0000,0000,,But even Ayanami Rei took seven months\nto synchronize with her Eva.
Dialogue: 0,0:14:29.62,0:14:32.25,eva main,Comment,0000,0000,0000,,It's impossible for him to do it!\NHe just got here!
Dialogue: 0,0:14:32.32,0:14:35.12,eva main,Comment,0000,0000,0000,,He just has to sit in the seat.\NWe don't expect more than that.
Dialogue: 0,0:14:35.19,0:14:36.18,eva main,Comment,0000,0000,0000,,But...
Dialogue: 0,0:14:36.26,0:14:38.92,eva main,Comment,0000,0000,0000,,Repelling that Angel is our ultimate priority.
Dialogue: 0,0:14:39.43,0:14:43.02,eva main,Comment,0000,0000,0000,,To do that, we have no choice but to put\naboard the Eva whomever has the chance
Dialogue: 0,0:14:43.10,0:14:45.62,eva main,Comment,0000,0000,0000,,to synchronize with it, no matter how slight.
Dialogue: 0,0:14:46.87,0:14:48.80,eva main,Comment,0000,0000,0000,,I believe you know that, Captain Katsuragi.
Dialogue: 0,0:14:51.27,0:14:52.60,eva main,Comment,0000,0000,0000,,I suppose...
Dialogue: 0,0:14:54.21,0:14:56.61,eva main,Comment,0000,0000,0000,,Father, why did you send for me?
Dialogue: 0,0:14:56.61,0:14:58.75,eva main,Comment,0000,0000,0000,,You know exactly why.
Dialogue: 0,0:14:58.75,0:15:02.65,eva main,Comment,0000,0000,0000,,So, you're asking me to take this thing\nand fight that thing?
Dialogue: 0,0:15:03.35,0:15:04.35,eva main,Comment,0000,0000,0000,,That's right.
Dialogue: 0,0:15:04.35,0:15:08.02,eva main,Comment,0000,0000,0000,,No way! Why are you doing this now?!
Dialogue: 0,0:15:08.02,0:15:10.63,eva main,Comment,0000,0000,0000,,I thought you didn't need me!
Dialogue: 0,0:15:10.63,0:15:12.82,eva main,Comment,0000,0000,0000,,I called you because I have a need for you.
Dialogue: 0,0:15:15.40,0:15:16.83,eva main,Comment,0000,0000,0000,,Why me?
Dialogue: 0,0:15:17.47,0:15:19.70,eva main,Comment,0000,0000,0000,,Because no one else can.
Dialogue: 0,0:15:20.37,0:15:22.06,eva main,Comment,0000,0000,0000,,No, I can't...
Dialogue: 0,0:15:22.50,0:15:26.03,eva main,Comment,0000,0000,0000,,I've never even seen anything\nlike this before! I can't do this!
Dialogue: 0,0:15:27.01,0:15:28.41,eva main,Comment,0000,0000,0000,,You will be instructed.
Dialogue: 0,0:15:29.04,0:15:32.88,eva main,Comment,0000,0000,0000,,But there's no way I can do this!
Dialogue: 0,0:15:33.71,0:15:35.74,eva main,Comment,0000,0000,0000,,I can't pilot it!
Dialogue: 0,0:15:37.22,0:15:40.24,eva main,Comment,0000,0000,0000,,If you're going to pilot it, do it now\nand quickly. If not, leave!
Dialogue: 0,0:15:51.93,0:15:54.46,eva main,Comment,0000,0000,0000,,It must have detected our location.
Dialogue: 0,0:15:58.11,0:16:00.04,eva main,Comment,0000,0000,0000,,Shinji-kun, we don't have time.
Dialogue: 0,0:16:05.08,0:16:06.24,eva main,Comment,0000,0000,0000,,Get into it.
Dialogue: 0,0:16:07.31,0:16:11.98,eva main,Comment,0000,0000,0000,,No! I didn't come for this! This isn't fair!
Dialogue: 0,0:16:13.25,0:16:16.69,eva main,Comment,0000,0000,0000,,Shinji-kun, just why did you come here?
Dialogue: 0,0:16:18.59,0:16:22.69,eva main,Comment,0000,0000,0000,,You mustn't run! Not from your father,\nand most of all not from yourself.
Dialogue: 0,0:16:23.33,0:16:27.39,eva main,Comment,0000,0000,0000,,I know that! But there's no way I can do it!
Dialogue: 0,0:16:35.54,0:16:36.53,eva main,Comment,0000,0000,0000,,Fuyutsuki...
Dialogue: 0,0:16:37.85,0:16:39.25,eva main,Comment,0000,0000,0000,,Wake up Rei.
Dialogue: 0,0:16:39.25,0:16:40.75,eva broadcast,Comment,0000,0000,0000,,Can we use her?
Dialogue: 0,0:16:40.75,0:16:42.31,eva main,Comment,0000,0000,0000,,She isn't dead.
Dialogue: 0,0:16:43.45,0:16:44.58,eva broadcast,Comment,0000,0000,0000,,I understand.
Dialogue: 0,0:16:46.39,0:16:47.25,eva main,Comment,0000,0000,0000,,Rei.
Dialogue: 0,0:16:47.25,0:16:48.39,eva main,Comment,0000,0000,0000,,Yes?
Dialogue: 0,0:16:48.39,0:16:51.26,eva main,Comment,0000,0000,0000,,Our spare is unusable. You will do it again.
Dialogue: 0,0:16:51.26,0:16:52.23,eva main,Comment,0000,0000,0000,,Yes, Sir.
Dialogue: 0,0:16:54.50,0:16:57.93,eva main,Comment,0000,0000,0000,,Reconfigure Unit 01's system to Rei,\nthen re-activate!
Dialogue: 0,0:16:57.93,0:17:00.99,eva broadcast,Comment,0000,0000,0000,,Roger. Call off the present work,\nand begin re-activation.
Dialogue: 0,0:17:02.97,0:17:06.80,eva main,Comment,0000,0000,0000,,I knew it. I'm not needed after all.
Dialogue: 0,0:17:40.67,0:17:41.70,eva main,Comment,0000,0000,0000,,Watch out!
Dialogue: 0,0:17:51.32,0:17:52.89,eva broadcast,Comment,0000,0000,0000,,The Eva moved!
Dialogue: 0,0:17:52.89,0:17:54.09,eva broadcast,Comment,0000,0000,0000,,What's going on?!
Dialogue: 0,0:17:54.09,0:17:56.46,eva broadcast,Comment,0000,0000,0000,,It broke the right arm restraint!
Dialogue: 0,0:17:56.46,0:17:58.02,eva main,Comment,0000,0000,0000,,No, that's impossible!
Dialogue: 0,0:17:58.53,0:18:00.73,eva main,Comment,0000,0000,0000,,It didn't even have an entry plug inserted!
Dialogue: 0,0:18:00.73,0:18:01.96,eva main,Comment,0000,0000,0000,,There's no way it could have moved!
Dialogue: 0,0:18:03.10,0:18:05.33,eva main,Comment,0000,0000,0000,,It reacted without any interface?!
Dialogue: 0,0:18:06.13,0:18:08.20,eva main,Comment,0000,0000,0000,,Or was it protecting...
Dialogue: 0,0:18:08.20,0:18:09.23,eva main,Comment,0000,0000,0000,,him?
Dialogue: 0,0:18:10.54,0:18:11.53,eva main,Comment,0000,0000,0000,,We can do it.
Dialogue: 0,0:18:32.56,0:18:37.16,eva main,Comment,0000,0000,0000,,I mustn't run away. I mustn't run away.\NI mustn't run away. I mustn't run away.
Dialogue: 0,0:18:37.16,0:18:38.32,eva main,Comment,0000,0000,0000,,I mustn't run away!
Dialogue: 0,0:18:39.77,0:18:40.67,eva main,Comment,0000,0000,0000,,I'll do it.
Dialogue: 0,0:18:41.37,0:18:42.49,eva main,Comment,0000,0000,0000,,I'll pilot it!
Dialogue: 0,0:18:46.04,0:18:47.34,eva broadcast,Comment,0000,0000,0000,,Cooling process, completed.
Dialogue: 0,0:18:47.34,0:18:48.88,eva broadcast,Comment,0000,0000,0000,,Right arm re-secured.
Dialogue: 0,0:18:48.88,0:18:50.91,eva broadcast,Comment,0000,0000,0000,,Cage contents now in position for docking.
Dialogue: 0,0:18:50.91,0:18:51.85,eva main,Comment,0000,0000,0000,,Roger.
Dialogue: 0,0:18:51.85,0:18:54.68,eva main,Comment,0000,0000,0000,,Signal terminator plug has been ejected.
Dialogue: 0,0:18:55.22,0:18:57.82,eva broadcast,Comment,0000,0000,0000,,Roger. Inserting entry plug.
Dialogue: 0,0:18:57.82,0:19:00.88,eva broadcast,Comment,0000,0000,0000,,Direct hydro-transmission system,\nconnection prepared.
Dialogue: 0,0:19:04.93,0:19:06.43,eva broadcast,Comment,0000,0000,0000,,Plug fixed in place.
Dialogue: 0,0:19:06.43,0:19:08.16,eva broadcast,Comment,0000,0000,0000,,First stage connection initiated.
Dialogue: 0,0:19:13.07,0:19:14.90,eva broadcast,Comment,0000,0000,0000,,Filling the entry plug.
Dialogue: 0,0:19:16.07,0:19:17.47,eva main,Comment,0000,0000,0000,,What is this stuff?
Dialogue: 0,0:19:21.41,0:19:24.45,eva main,Comment,0000,0000,0000,,Don't worry. Once your lungs\nare filled with LCL,
Dialogue: 0,0:19:24.45,0:19:27.21,eva main,Comment,0000,0000,0000,,your blood will be oxygenated directly.
Dialogue: 0,0:19:27.21,0:19:28.55,eva broadcast,Comment,0000,0000,0000,,You'll get used to it.
Dialogue: 0,0:19:32.02,0:19:33.45,eva main,Comment,0000,0000,0000,,I feel nauseous.
Dialogue: 0,0:19:33.45,0:19:35.72,eva main,Comment,0000,0000,0000,,Stop whining! You're a boy, aren't you?!
Dialogue: 0,0:19:37.02,0:19:38.16,eva broadcast,Comment,0000,0000,0000,,Connecting main power.
Dialogue: 0,0:19:38.16,0:19:40.86,eva broadcast,Comment,0000,0000,0000,,All circuits transmitting power.
Dialogue: 0,0:19:40.86,0:19:41.70,eva broadcast,Comment,0000,0000,0000,,Roger.
Dialogue: 0,0:19:41.70,0:19:43.36,eva broadcast,Comment,0000,0000,0000,,Commencing secondary contacts.
Dialogue: 0,0:19:44.93,0:19:47.37,eva broadcast,Comment,0000,0000,0000,,A-10 nerve connection, normal.
Dialogue: 0,0:19:47.37,0:19:52.57,eva broadcast,Comment,0000,0000,0000,,Set the thought configuration to Japanese.
Dialogue: 0,0:19:53.44,0:19:55.88,eva broadcast,Comment,0000,0000,0000,,All preliminary contacts established.\NPerformance nominal.
Dialogue: 0,0:19:55.88,0:19:57.67,eva broadcast,Comment,0000,0000,0000,,Bi-directional circuits are open.
Dialogue: 0,0:19:58.21,0:20:00.74,eva broadcast,Comment,0000,0000,0000,,Synchronization rate at 41.3%.
Dialogue: 0,0:20:01.38,0:20:02.62,eva main,Comment,0000,0000,0000,,Amazing.
Dialogue: 0,0:20:02.62,0:20:06.21,eva main,Comment,0000,0000,0000,,Harmonics are all normal.\NNo disturbances identified.
Dialogue: 0,0:20:06.99,0:20:08.01,eva main,Comment,0000,0000,0000,,We can do it.
Dialogue: 0,0:20:09.39,0:20:10.62,eva main,Comment,0000,0000,0000,,Prepare to launch!
Dialogue: 0,0:20:12.59,0:20:14.13,eva broadcast,Comment,0000,0000,0000,,Prepare to launch!
Dialogue: 0,0:20:14.13,0:20:15.60,eva broadcast,Comment,0000,0000,0000,,Disengage primary lock bolts!
Dialogue: 0,0:20:17.13,0:20:20.29,eva broadcast,Comment,0000,0000,0000,,Disengage confirmed.\NDisengaging the umbilical bridge.
Dialogue: 0,0:20:22.70,0:20:24.10,eva broadcast,Comment,0000,0000,0000,,Disengage secondary lock bolts.
Dialogue: 0,0:20:26.44,0:20:28.38,eva broadcast,Comment,0000,0000,0000,,Disengage primary restraints.
Dialogue: 0,0:20:28.38,0:20:30.81,eva broadcast,Comment,0000,0000,0000,,Likewise, disengage secondary restraints.
Dialogue: 0,0:20:34.28,0:20:37.22,eva broadcast,Comment,0000,0000,0000,,Release safety locks numbers\none through fifteen.
Dialogue: 0,0:20:37.22,0:20:38.24,eva broadcast,Comment,0000,0000,0000,,Release confirmed.
Dialogue: 0,0:20:38.65,0:20:40.79,eva broadcast,Comment,0000,0000,0000,,Currently, Unit 01's condition is free.
Dialogue: 0,0:20:40.79,0:20:42.42,eva broadcast,Comment,0000,0000,0000,,Internal batteries fully charged.
Dialogue: 0,0:20:42.42,0:20:44.45,eva broadcast,Comment,0000,0000,0000,,External battery outlet, normal.
Dialogue: 0,0:20:45.03,0:20:47.96,eva main,Comment,0000,0000,0000,,Roger. Move Eva Unit 01\nto the ejector pad.
Dialogue: 0,0:21:03.54,0:21:05.44,eva main,Comment,0000,0000,0000,,Launch path is clear. All systems green.
Dialogue: 0,0:21:05.85,0:21:07.18,eva main,Comment,0000,0000,0000,,Ready for launch.
Dialogue: 0,0:21:08.25,0:21:09.18,eva main,Comment,0000,0000,0000,,Roger.
Dialogue: 0,0:21:10.02,0:21:11.12,eva main,Comment,0000,0000,0000,,Can we really do this?
Dialogue: 0,0:21:11.12,0:21:12.18,eva main,Comment,0000,0000,0000,,Of course.
Dialogue: 0,0:21:13.05,0:21:15.61,eva main,Comment,0000,0000,0000,,Unless we defeat the Angels,\nwe have no future.
Dialogue: 0,0:21:17.19,0:21:20.18,eva main,Comment,0000,0000,0000,,Ikari, you're really sure about this?
Dialogue: 0,0:21:21.83,0:21:22.80,eva main,Comment,0000,0000,0000,,Launch!
Dialogue: 0,0:21:56.76,0:21:58.86,eva main,Comment,0000,0000,0000,,Shinji-kun, don't get killed out there.
Dialogue: 0,0:21:58.83,0:22:00.46,eva titles,Comment,0000,0000,0000,,{\fsp-3\fs80\pos(531,377)}To Be Continued
Dialogue: 0,0:23:05.86,0:23:06.77,eva titles,Comment,0000,0000,0000,,{\pos(352,487)\fsp-3}Preview
Dialogue: 0,0:23:06.77,0:23:08.14,eva main,Comment,0000,0000,0000,,Eva triumphs over the Angel!
Dialogue: 0,0:23:08.14,0:23:10.40,eva main,Comment,0000,0000,0000,,However, that was just the beginning.
Dialogue: 0,0:23:10.64,0:23:12.27,eva main,Comment,0000,0000,0000,,Shinji runs away from his father.
Dialogue: 0,0:23:12.27,0:23:15.67,eva main,Comment,0000,0000,0000,,Misato's arrogance leads her\nto try to save him.
Dialogue: 0,0:23:16.04,0:23:18.41,eva main,Comment,0000,0000,0000,,Next Evangelion: "Unfamiliar Ceiling"
Dialogue: 0,0:23:18.41,0:23:20.45,eva main,Comment,0000,0000,0000,,I'll give you fan service next time too!
Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fsp-3\pos(353,389)}Unfamiliar Ceiling
Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fs60\fsp-2\pos(343,85)}Next Episode

View File

@ -0,0 +1,389 @@
[Script Info]
; Script generated by Aegisub v2.00 PRE-RELEASE (SVN r886, ArchMageZeratuL)
; http://www.aegisub.net
Title: <untitled>
Original Script: <unknown>
ScriptType: v4.00++
Video Aspect Ratio: 0
Video Zoom: 8
Video Position: 11067
Last Style Storage: evangelion
PlayResX: 704
PlayResY: 480
Video File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1.mkv
Audio File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1_Track2.ac3
[V4++ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: eva main,Sui Generis,27,&H00F1E4D3,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0
Style: eva alternate,Sui Generis,27,&H00C4A377,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0
Style: eva bg broadcast,Sui Generis,24,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,8,18,18,17,0
Style: eva broadcast,Sui Generis,27,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0
Style: eva notes,Tw Cen MT,28,&H00FFFFFF,&H0000FFFF,&H00D2D2D2,&H00000000,0,0,0,0,100,100,0,0,1,0,0,9,18,18,17,0
Style: eva other fo,Lucida Sans,20,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0
Style: eva titles,Angsana New,80,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,-1,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: 0,0:01:30.40,0:01:32.73,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(352,345)}The year is 2015 A.D.
Dialogue: 0,0:01:55.10,0:01:59.03,eva broadcast,Comment,0000,0000,0000,,As of 12:30 PM today, a special state\nof emergency has been declared
Dialogue: 0,0:01:59.13,0:02:03.26,eva broadcast,Comment,0000,0000,0000,,for the Kanto and Chubu regions\nsurrounding the Tokai district.
Dialogue: 0,0:02:03.77,0:02:07.80,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate to their\ndesignated shelters immediately.
Dialogue: 0,0:02:08.24,0:02:12.55,eva broadcast,Comment,0000,0000,0000,,Repeating: As of 12:30 PM today,
Dialogue: 0,0:02:11.65,0:02:14.07,eva other fo,Comment,0000,0000,0000,,{\pos(488,124)\bord0\shad0\fs30\frz322.539\frx24\fry41}All Lines Stopped
Dialogue: 0,0:02:12.55,0:02:16.17,eva broadcast,Comment,0000,0000,0000,,the Kanto and Chubu regions\nsurrounding the Tokai district
Dialogue: 0,0:02:16.25,0:02:19.31,eva broadcast,Comment,0000,0000,0000,,have been declared to be under\na state of emergency.
Dialogue: 0,0:02:19.39,0:02:20.92,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate...
Dialogue: 0,0:02:20.92,0:02:24.39,eva main,Comment,0000,0000,0000,,Why did I have to lose sight of him now?
Dialogue: 0,0:02:24.39,0:02:26.23,eva main,Comment,0000,0000,0000,,Oh, man!
Dialogue: 0,0:02:26.11,0:02:28.75,eva other fo,Comment,0000,0000,0000,,{\c&H071413&\bord0\shad0\pos(154,432)\frz-5\fs22}Ikari Shinji
Dialogue: 0,0:02:27.26,0:02:29.96,eva main,Comment,0000,0000,0000,,Due to the special emergency,
Dialogue: 0,0:02:30.03,0:02:33.30,eva main,Comment,0000,0000,0000,,all lines are currently unavailable.
Dialogue: 0,0:02:34.74,0:02:35.73,eva main,Comment,0000,0000,0000,,It's no use.
Dialogue: 0,0:02:36.77,0:02:39.07,eva main,Comment,0000,0000,0000,,I shouldn't have come here after all.
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(160,179)}To Shinji-kun
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(592,123)}I'll be coming to\N\Nget you, so wait
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(211,250)}Attention here!!
Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(628,197)}for me.{\fnWebdings}♥
Dialogue: 0,0:02:43.38,0:02:45.74,eva main,Comment,0000,0000,0000,,Well, I guess we won't be meeting here.
Dialogue: 0,0:02:46.88,0:02:49.48,eva main,Comment,0000,0000,0000,,Can't be helped. I'll go to a shelter.
Dialogue: 0,0:03:14.63,0:03:18.55,eva titles,Comment,0000,0000,0000,,{\fs21\fsp-1\bord0\shad0\c&HE3EDFC&\fnTw Cen MT\pos(612,415)}ESTIMATED PATH
Dialogue: 0,0:03:15.14,0:03:18.60,eva main,Comment,0000,0000,0000,,The unidentified mobile object is still\nadvancing on our position.
Dialogue: 0,0:03:19.38,0:03:22.61,eva main,Comment,0000,0000,0000,,We've got visual confirmation.\NI'm putting it on the main screen.
Dialogue: 0,0:03:24.29,0:03:26.12,eva main,Comment,0000,0000,0000,,It's been fifteen years, hasn't it?
Dialogue: 0,0:03:26.19,0:03:28.31,eva main,Comment,0000,0000,0000,,Yes, there's no doubt.
Dialogue: 0,0:03:29.29,0:03:30.52,eva main,Comment,0000,0000,0000,,It's an Angel.
Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\pos(476,263)\fs130\fsp-6}Angel Attack
Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(193,61)}Episode One
Dialogue: 0,0:03:42.50,0:03:44.34,eva broadcast,Comment,0000,0000,0000,,Every missile hit the target!
Dialogue: 0,0:04:03.53,0:04:05.12,eva main,Comment,0000,0000,0000,,I'm sorry! Thanks for waiting!
Dialogue: 0,0:04:22.11,0:04:26.71,eva broadcast,Comment,0000,0000,0000,,The target is still operational.\NIt's still heading towards New Tokyo-3.
Dialogue: 0,0:04:26.78,0:04:29.31,eva broadcast,Comment,0000,0000,0000,,The Air Defense Force doesn't have\nthe firepower to stop it!
Dialogue: 0,0:04:30.12,0:04:31.29,eva main,Comment,0000,0000,0000,,Hit it with everything we've got!
Dialogue: 0,0:04:31.29,0:04:33.25,eva main,Comment,0000,0000,0000,,Mobilize all of Atsugi and Iruma as well!
Dialogue: 0,0:04:33.32,0:04:36.72,eva main,Comment,0000,0000,0000,,Don't hold anything back!\NDestroy the target at any cost!
Dialogue: 0,0:04:50.05,0:04:52.17,eva main,Comment,0000,0000,0000,,Why?! That was a direct hit!
Dialogue: 0,0:04:52.64,0:04:55.04,eva main,Comment,0000,0000,0000,,The tank battalion's been annihilated.
Dialogue: 0,0:04:55.04,0:04:57.98,eva main,Comment,0000,0000,0000,,Guided missiles and artillery\nhave no effect either.
Dialogue: 0,0:04:57.98,0:05:01.52,eva main,Comment,0000,0000,0000,,It's no good! We'll never get anywhere\nwith the firepower we've got!
Dialogue: 0,0:05:01.52,0:05:03.39,eva main,Comment,0000,0000,0000,,Is it an AT field after all?
Dialogue: 0,0:05:01.52,0:05:04.52,eva notes,Comment,0000,0000,0000,,{\fad(400,400)\1a&H70&}AT field: absolute terror field
Dialogue: 0,0:05:03.39,0:05:07.34,eva main,Comment,0000,0000,0000,,Yes. Conventional weapons are\nuseless against Angels.
Dialogue: 0,0:05:10.76,0:05:13.99,eva main,Comment,0000,0000,0000,,I understand. We'll activate it as planned.
Dialogue: 0,0:05:18.80,0:05:20.29,eva main,Comment,0000,0000,0000,,Hey, don't tell me...
Dialogue: 0,0:05:20.37,0:05:22.23,eva main,Comment,0000,0000,0000,,They're going to use an N{\fnLucida Sans}²{\r} mine?!
Dialogue: 0,0:05:22.74,0:05:23.76,eva main,Comment,0000,0000,0000,,Get down!
Dialogue: 0,0:05:46.56,0:05:47.43,eva main,Comment,0000,0000,0000,,We did it!
Dialogue: 0,0:05:48.80,0:05:51.89,eva main,Comment,0000,0000,0000,,Sorry, but it looks like you won't be\ngetting a shot at it.
Dialogue: 0,0:05:51.97,0:05:54.16,eva broadcast,Comment,0000,0000,0000,,Shock wave approaching.
Dialogue: 0,0:05:55.37,0:05:56.70,eva main,Comment,0000,0000,0000,,Are you all right?
Dialogue: 0,0:05:56.77,0:06:00.11,eva main,Comment,0000,0000,0000,,Yeah, but my mouth is full of dirt.
Dialogue: 0,0:06:00.11,0:06:04.07,eva main,Comment,0000,0000,0000,,That's okay. Now then, here we go!
Dialogue: 0,0:06:04.75,0:06:06.08,eva main,Comment,0000,0000,0000,,One, two!
Dialogue: 0,0:06:09.88,0:06:11.44,eva main,Comment,0000,0000,0000,,There.
Dialogue: 0,0:06:14.79,0:06:16.88,eva main,Comment,0000,0000,0000,,Thanks for the hand. I really appreciate it.
Dialogue: 0,0:06:16.96,0:06:19.95,eva main,Comment,0000,0000,0000,,Thank you too, Katsuragi-san.
Dialogue: 0,0:06:20.03,0:06:22.09,eva main,Comment,0000,0000,0000,,Just Misato is fine.
Dialogue: 0,0:06:22.56,0:06:25.90,eva main,Comment,0000,0000,0000,,I'm glad we've met at last, Ikari Shinji-kun.
Dialogue: 0,0:06:26.20,0:06:27.02,eva main,Comment,0000,0000,0000,,Yeah...
Dialogue: 0,0:06:27.57,0:06:28.83,eva broadcast,Comment,0000,0000,0000,,What's the target's status?
Dialogue: 0,0:06:28.90,0:06:31.80,eva broadcast,Comment,0000,0000,0000,,We're unable to confirm due to\nall the EMP interference.
Dialogue: 0,0:06:31.87,0:06:34.64,eva main,Comment,0000,0000,0000,,You saw the size of the explosion. It's over.
Dialogue: 0,0:06:34.71,0:06:36.14,eva broadcast,Comment,0000,0000,0000,,Sensors restored.
Dialogue: 0,0:06:37.45,0:06:39.28,eva broadcast,Comment,0000,0000,0000,,We've got an energy reading\nat the explosion's epicenter!
Dialogue: 0,0:06:39.35,0:06:40.47,eva main,Comment,0000,0000,0000,,What the hell?!
Dialogue: 0,0:06:40.55,0:06:42.18,eva broadcast,Comment,0000,0000,0000,,Visual display restored.
Dialogue: 0,0:06:46.45,0:06:48.68,eva main,Comment,0000,0000,0000,,That was our last resort.
Dialogue: 0,0:06:49.62,0:06:51.53,eva main,Comment,0000,0000,0000,,How can this be?
Dialogue: 0,0:06:51.53,0:06:53.15,eva main,Comment,0000,0000,0000,,Damned monster!
Dialogue: 0,0:07:03.10,0:07:05.50,eva main,Comment,0000,0000,0000,,Yes. Don't worry about it.
Dialogue: 0,0:07:05.57,0:07:09.63,eva main,Comment,0000,0000,0000,,His safety is my top priority,\nso could you get a car train ready for us?
Dialogue: 0,0:07:09.71,0:07:10.94,eva main,Comment,0000,0000,0000,,A direct one.
Dialogue: 0,0:07:11.81,0:07:12.78,eva main,Comment,0000,0000,0000,,Right.
Dialogue: 0,0:07:13.15,0:07:15.48,eva main,Comment,0000,0000,0000,,Well, I volunteered to pick him up,
Dialogue: 0,0:07:15.48,0:07:18.18,eva main,Comment,0000,0000,0000,,so I'll make sure he gets there. See ya!
Dialogue: 0,0:07:20.52,0:07:26.95,eva main,Comment,0000,0000,0000,,Man, this sucks! I just had my car restored\nand it's a total wreck already!
Dialogue: 0,0:07:27.44,0:07:30.56,eva main,Comment,0000,0000,0000,,33 more loan payments to go,\nplus the cost of repairs.
Dialogue: 0,0:07:30.63,0:07:33.16,eva main,Comment,0000,0000,0000,,And look! My best dress has been ruined!
Dialogue: 0,0:07:33.54,0:07:37.30,eva main,Comment,0000,0000,0000,,And I was looking and feeling so nice.
Dialogue: 0,0:07:32.97,0:07:34.79,eva alternate,Comment,0000,0000,0000,,Excuse me, Misato-san?
Dialogue: 0,0:07:37.30,0:07:38.98,eva main,Comment,0000,0000,0000,,Excuse me, Misato-san?
Dialogue: 0,0:07:39.17,0:07:40.66,eva main,Comment,0000,0000,0000,,What?
Dialogue: 0,0:07:40.74,0:07:43.40,eva main,Comment,0000,0000,0000,,Are you sure you can just take those?
Dialogue: 0,0:07:45.25,0:07:46.21,eva main,Comment,0000,0000,0000,,Never mind about that!
Dialogue: 0,0:07:46.28,0:07:50.05,eva main,Comment,0000,0000,0000,,It's an emergency, and we need\na working car right now, right?
Dialogue: 0,0:07:50.12,0:07:53.61,eva main,Comment,0000,0000,0000,,And I'm an international government\nofficial, after all,
Dialogue: 0,0:07:53.69,0:07:55.28,eva main,Comment,0000,0000,0000,,so everything's going to be\nperfectly fine, okay?
Dialogue: 0,0:07:56.66,0:07:59.29,eva main,Comment,0000,0000,0000,,I don't think anyone will buy that.
Dialogue: 0,0:07:59.36,0:08:03.46,eva main,Comment,0000,0000,0000,,You're no fun. You look cute,\nbut you're kind of a cold fish.
Dialogue: 0,0:08:04.40,0:08:05.73,eva main,Comment,0000,0000,0000,,You think so?
Dialogue: 0,0:08:05.80,0:08:07.53,eva main,Comment,0000,0000,0000,,Oh, did I upset you?
Dialogue: 0,0:08:08.27,0:08:11.67,eva main,Comment,0000,0000,0000,,Sorry about that! You are a boy, after all.
Dialogue: 0,0:08:11.74,0:08:15.04,eva main,Comment,0000,0000,0000,,And you're pretty childish for your age.
Dialogue: 0,0:08:20.75,0:08:23.68,eva main,Comment,0000,0000,0000,,As we predicted, it's regenerating itself.
Dialogue: 0,0:08:23.99,0:08:27.85,eva main,Comment,0000,0000,0000,,If it couldn't, it wouldn't be\na practical autonomous weapon.
Dialogue: 0,0:08:31.49,0:08:35.09,eva main,Comment,0000,0000,0000,,Impressive. It appears it can even upgrade\nits own operational functions.
Dialogue: 0,0:08:35.43,0:08:37.69,eva main,Comment,0000,0000,0000,,And it seems to have gotten smarter.
Dialogue: 0,0:08:38.73,0:08:41.63,eva main,Comment,0000,0000,0000,,It's only a matter of time before\nit resumes attacking.
Dialogue: 0,0:08:43.04,0:08:46.61,eva bg broadcast,Comment,0000,0000,0000,,The gates are now closing.\NPlease stand clear.
Dialogue: 0,0:08:46.30,0:08:48.03,eva main,,0000,0000,0000,,The special duty organization Nerv?
Dialogue: 0,0:08:46.61,0:08:48.34,eva bg broadcast,Comment,0000,0000,0000,,Now departing.
Dialogue: 0,0:08:48.14,0:08:51.45,eva main,Comment,0000,0000,0000,,Yes, it's a secret organization under\nthe control of the United Nations.
Dialogue: 0,0:08:48.34,0:08:56.75,eva bg broadcast,Comment,0000,0000,0000,,This is the C-22 Special Express\ndeparting directly for G33-1.
Dialogue: 0,0:08:51.95,0:08:53.58,eva main,Comment,0000,0000,0000,,That's where my father is, right?
Dialogue: 0,0:08:53.58,0:08:54.75,eva main,Comment,0000,0000,0000,,Well, yeah.
Dialogue: 0,0:08:54.75,0:08:56.75,eva main,Comment,0000,0000,0000,,Do you know what he does?
Dialogue: 0,0:08:58.09,0:09:01.92,eva bg broadcast,Comment,0000,0000,0000,,This train will bypass all other stations.\NPlease stand back.
Dialogue: 0,0:09:00.69,0:09:04.52,eva main,Comment,0000,0000,0000,,My teacher told me his work is vital\nfor the protection of the human race.
Dialogue: 0,0:09:07.66,0:09:10.83,eva main,Comment,0000,0000,0000,,From this point forward, command of this\noperation will be entrusted to you.
Dialogue: 0,0:09:10.90,0:09:12.53,eva main,Comment,0000,0000,0000,,Show us what you're capable of.
Dialogue: 0,0:09:12.60,0:09:13.69,eva main,Comment,0000,0000,0000,,Yes, Sir.
Dialogue: 0,0:09:14.27,0:09:20.37,eva main,Comment,0000,0000,0000,,Ikari-kun, we will admit that our weapons\nhave no effect on the target.
Dialogue: 0,0:09:21.28,0:09:23.68,eva main,Comment,0000,0000,0000,,But are you sure you can beat this thing?
Dialogue: 0,0:09:24.15,0:09:25.83,eva main,Comment,0000,0000,0000,,It's what Nerv was created for.
Dialogue: 0,0:09:26.65,0:09:28.14,eva main,Comment,0000,0000,0000,,Let's hope you're correct.
Dialogue: 0,0:09:29.78,0:09:31.91,eva broadcast,Comment,0000,0000,0000,,The target is still stationary.
Dialogue: 0,0:09:31.99,0:09:35.35,eva broadcast,Comment,0000,0000,0000,,Our intercept system is currently\N7.5% operational.
Dialogue: 0,0:09:37.03,0:09:39.36,eva main,Comment,0000,0000,0000,,So, even the UN forces have retired.
Dialogue: 0,0:09:39.43,0:09:41.02,eva main,Comment,0000,0000,0000,,What are you going to do?
Dialogue: 0,0:09:41.53,0:09:43.52,eva main,Comment,0000,0000,0000,,I intend to activate Unit 01.
Dialogue: 0,0:09:43.77,0:09:46.86,eva main,Comment,0000,0000,0000,,Unit 01? But we have no pilot.
Dialogue: 0,0:09:47.50,0:09:51.10,eva main,Comment,0000,0000,0000,,That's not a problem. Another spare\nwill be delivered soon.
Dialogue: 0,0:09:52.07,0:09:54.80,eva main,Comment,0000,0000,0000,,Are you taking me to my father?
Dialogue: 0,0:09:55.31,0:09:57.40,eva main,Comment,0000,0000,0000,,Yes. Pretty much.
Dialogue: 0,0:10:01.25,0:10:02.51,eva main,Comment,0000,0000,0000,,Father...
Dialogue: 0,0:10:04.09,0:10:07.45,eva main,Comment,0000,0000,0000,,Oh, that's right. Did you get\nan ID card from your father?
Dialogue: 0,0:10:09.36,0:10:10.35,eva main,Comment,0000,0000,0000,,Yes.
Dialogue: 0,0:10:12.03,0:10:13.05,eva main,Comment,0000,0000,0000,,Here it is.
Dialogue: 0,0:10:13.13,0:10:14.43,eva main,Comment,0000,0000,0000,,Thanks.
Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\fs35\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(420,396)}Come.
Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(485,459)}Ikari Gendo
Dialogue: 0,0:10:15.80,0:10:18.20,eva main,Comment,0000,0000,0000,,Then read this.
Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\pos(380,320)}Welcome to
Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\i1\pos(380,353)}Nerv
Dialogue: 0,0:10:18.93,0:10:20.13,eva main,Comment,0000,0000,0000,,Nerv...
Dialogue: 0,0:10:21.00,0:10:22.26,eva main,Comment,0000,0000,0000,,My father's agency.
Dialogue: 0,0:10:23.00,0:10:25.06,eva main,Comment,0000,0000,0000,,Am I going to work for them too?
Dialogue: 0,0:10:27.01,0:10:28.50,eva main,Comment,0000,0000,0000,,Of course.
Dialogue: 0,0:10:28.68,0:10:32.81,eva main,Comment,0000,0000,0000,,He wouldn't have sent me a letter unless\nhe needed me for something.
Dialogue: 0,0:10:33.27,0:10:36.24,eva main,Comment,0000,0000,0000,,I see. So you don't get along with your father.
Dialogue: 0,0:10:37.65,0:10:39.24,eva main,Comment,0000,0000,0000,,It's the same with me.
Dialogue: 0,0:10:45.23,0:10:46.49,eva main,Comment,0000,0000,0000,,Awesome!
Dialogue: 0,0:10:47.70,0:10:49.39,eva main,Comment,0000,0000,0000,,It's the real Geo-Front!
Dialogue: 0,0:10:49.46,0:10:50.36,eva main,Comment,0000,0000,0000,,That's right.
Dialogue: 0,0:10:50.43,0:10:53.87,eva main,Comment,0000,0000,0000,,This is our secret base.\NNerv Headquarters.
Dialogue: 0,0:10:54.26,0:10:55.80,eva main,Comment,0000,0000,0000,,This is the key to rebuilding our world.
Dialogue: 0,0:10:55.87,0:10:58.34,eva main,Comment,0000,0000,0000,,A fortress for all mankind.
Dialogue: 1,0:11:04.91,0:11:10.18,eva main,Comment,0000,0000,0000,,That's strange. Isn't this the right way?
Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma
Dialogue: 0,0:11:07.10,0:11:08.64,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\pos(273,118)\bord0\shad0\c&H3B2C71&}Around here
Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,99)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,109)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,125)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,145)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,186)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,235)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,285)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,333)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,394)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:09.02,0:11:09.06,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,457)}Nerv{\i0} Headquarters
Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma
Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,152)}Central Dogma
Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,162)}Central Dogma
Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,178)}Central Dogma
Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,198)}Central Dogma
Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,240)}Central Dogma
Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,287)}Central Dogma
Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,339)}Central Dogma
Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,384)}Central Dogma
Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,447)}Central Dogma
Dialogue: 0,0:11:08.64,0:11:08.68,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,128)}Around here
Dialogue: 0,0:11:08.68,0:11:08.73,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,138)}Around here
Dialogue: 0,0:11:08.73,0:11:08.77,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,154)}Around here
Dialogue: 0,0:11:08.77,0:11:08.81,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,171)}Around here
Dialogue: 0,0:11:08.81,0:11:08.85,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,213)}Around here
Dialogue: 0,0:11:08.85,0:11:08.89,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,262)}Around here
Dialogue: 0,0:11:08.89,0:11:08.93,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(276,312)}Around here
Dialogue: 0,0:11:08.93,0:11:08.98,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,358)}Around here
Dialogue: 0,0:11:08.98,0:11:09.02,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(273,420)}Around here
Dialogue: 0,0:11:09.02,0:11:09.06,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(281,480)}Around here
Dialogue: 0,0:11:10.89,0:11:12.49,eva bg broadcast,Comment,0000,0000,0000,,Central Dogma's closed passages\nremain sealed.
Dialogue: 0,0:11:12.49,0:11:15.29,eva main,Comment,0000,0000,0000,,This is why I hate wearing skirts here.
Dialogue: 0,0:11:12.92,0:11:17.76,eva bg broadcast,Comment,0000,0000,0000,,Opening block B-26 in sequence.
Dialogue: 0,0:11:15.79,0:11:18.56,eva main,Comment,0000,0000,0000,,But where the heck did Ritsuko go?
Dialogue: 0,0:11:18.63,0:11:21.42,eva main,Comment,0000,0000,0000,,I'm sorry. I'm just not used to this place yet.
Dialogue: 0,0:11:21.50,0:11:23.49,eva main,Comment,0000,0000,0000,,We passed this spot just a little while ago.
Dialogue: 0,0:11:24.87,0:11:26.30,eva main,Comment,0000,0000,0000,,But don't worry about it.
Dialogue: 0,0:11:26.37,0:11:29.24,eva main,Comment,0000,0000,0000,,They make these systems\nto be used, you know.
Dialogue: 0,0:11:29.24,0:11:31.97,eva bg broadcast,Comment,0000,0000,0000,,Would the head of Project E,\NTechnical Department Division 1,
Dialogue: 0,0:11:31.97,0:11:34.84,eva bg broadcast,Comment,0000,0000,0000,,Dr. Akagi Ritsuko, Dr. Akagi Ritsuko,
Dialogue: 0,0:11:34.84,0:11:39.48,eva bg broadcast,Comment,0000,0000,0000,,please contact Captain Katsuragi Misato\nof Operations, Division 1, immediately.
Dialogue: 0,0:11:39.61,0:11:41.45,eva main,Comment,0000,0000,0000,,I don't believe it.
Dialogue: 0,0:11:41.45,0:11:42.42,eva main,Comment,0000,0000,0000,,She got lost again, didn't she?
Dialogue: 0,0:11:46.89,0:11:48.95,eva main,Comment,0000,0000,0000,,Uh, hiya, Ritsuko.
Dialogue: 0,0:11:53.63,0:11:55.99,eva main,Comment,0000,0000,0000,,What were you doing, Captain Katsuragi?
Dialogue: 0,0:11:56.10,0:11:58.33,eva main,Comment,0000,0000,0000,,We're short on both time\nand manpower, you know.
Dialogue: 0,0:11:58.83,0:11:59.86,eva main,Comment,0000,0000,0000,,Sorry!
Dialogue: 0,0:12:03.14,0:12:04.97,eva main,Comment,0000,0000,0000,,So this is the boy?
Dialogue: 0,0:12:05.04,0:12:08.98,eva main,Comment,0000,0000,0000,,Right. According to the Marduk report,\nhe's the "Third Child".
Dialogue: 0,0:12:09.68,0:12:10.77,eva main,Comment,0000,0000,0000,,I'm glad to meet you.
Dialogue: 0,0:12:10.85,0:12:12.68,eva main,Comment,0000,0000,0000,,Huh? Sure.
Dialogue: 0,0:12:13.00,0:12:17.88,eva main,Comment,0000,0000,0000,,He's just like his father.\NLike how he's unendearing.
Dialogue: 0,0:12:18.25,0:12:19.51,eva main,Comment,0000,0000,0000,,I'll leave the rest to you.
Dialogue: 0,0:12:23.96,0:12:26.19,eva main,Comment,0000,0000,0000,,Their first meeting in over three years.
Dialogue: 0,0:12:27.23,0:12:30.89,eva main,Comment,0000,0000,0000,,Vice Commander, the target\nhas started moving again.
Dialogue: 0,0:12:30.97,0:12:34.37,eva main,Comment,0000,0000,0000,,Right. All personnel, assume\nbattle stations, Level One.
Dialogue: 0,0:12:34.54,0:12:37.91,eva bg broadcast,Comment,0000,0000,0000,,Repeat. All personnel, assume\nbattle stations, Level One.
Dialogue: 0,0:12:37.91,0:12:39.30,eva bg broadcast,Comment,0000,0000,0000,,Prepare for ground-unit interception.
Dialogue: 0,0:12:39.81,0:12:41.04,eva main,Comment,0000,0000,0000,,Here we go.
Dialogue: 0,0:12:41.04,0:12:42.27,eva main,Comment,0000,0000,0000,,It sounds pretty serious.
Dialogue: 0,0:12:43.41,0:12:45.58,eva main,Comment,0000,0000,0000,,So, how's Unit 01 doing?
Dialogue: 0,0:12:45.58,0:12:47.95,eva main,Comment,0000,0000,0000,,It's currently in refrigeration,\nusing the B-type equipment.
Dialogue: 0,0:12:47.95,0:12:51.95,eva main,Comment,0000,0000,0000,,Does it really work?\NIt's never worked before, right?
Dialogue: 0,0:12:51.95,0:12:56.89,eva main,Comment,0000,0000,0000,,The possibility of activation is 0.000000001%.
Dialogue: 0,0:12:57.49,0:12:59.99,eva main,Comment,0000,0000,0000,,We call it, pathetically enough,\nthe O-9 System.
Dialogue: 0,0:12:59.99,0:13:02.66,eva main,Comment,0000,0000,0000,,Does that mean it doesn't work?
Dialogue: 0,0:13:02.66,0:13:05.13,eva main,Comment,0000,0000,0000,,Oh, don't be insulting. It's not zero.
Dialogue: 0,0:13:05.13,0:13:06.83,eva main,Comment,0000,0000,0000,,Well, it's just a number.
Dialogue: 0,0:13:06.90,0:13:11.43,eva main,Comment,0000,0000,0000,,Anyway, it's a bit too late to be saying,\N"Sorry, it didn't work".
Dialogue: 0,0:13:20.05,0:13:22.81,eva main,Comment,0000,0000,0000,,Huh? It's completely dark.
Dialogue: 0,0:13:26.39,0:13:29.15,eva main,Comment,0000,0000,0000,,A face? A giant robot?
Dialogue: 0,0:13:30.86,0:13:33.02,eva main,Comment,0000,0000,0000,,You won't find this in the manual.
Dialogue: 0,0:13:34.16,0:13:38.13,eva main,Comment,0000,0000,0000,,This is mankind's ultimate\nmultipurpose decisive weapon,
Dialogue: 0,0:13:38.13,0:13:42.04,eva main,Comment,0000,0000,0000,,the synthetic human Evangelion, Unit 01.
Dialogue: 0,0:13:42.04,0:13:47.28,eva main,Comment,0000,0000,0000,,Built in absolute secrecy,\nit is mankind's trump card.
Dialogue: 0,0:13:47.28,0:13:49.28,eva main,Comment,0000,0000,0000,,Is this part of what my father's been doing?
Dialogue: 0,0:13:49.28,0:13:50.18,eva broadcast,Comment,0000,0000,0000,,Correct.
Dialogue: 0,0:13:52.15,0:13:53.48,eva main,Comment,0000,0000,0000,,It's been a while.
Dialogue: 0,0:13:54.55,0:13:55.68,eva main,Comment,0000,0000,0000,,Father...
Dialogue: 0,0:13:58.75,0:13:59.52,eva main,Comment,0000,0000,0000,,We're moving out!
Dialogue: 0,0:14:00.02,0:14:03.48,eva main,Comment,0000,0000,0000,,Moving out?! Unit 00's still in\ncryo-stasis, isn't it?
Dialogue: 0,0:14:05.43,0:14:07.62,eva main,Comment,0000,0000,0000,,You're not planning to use Unit 01?!
Dialogue: 0,0:14:08.43,0:14:09.96,eva main,Comment,0000,0000,0000,,There's no other way.
Dialogue: 0,0:14:09.96,0:14:12.83,eva main,Comment,0000,0000,0000,,Hold on! Rei can't do it yet, can she?
Dialogue: 0,0:14:13.77,0:14:15.17,eva main,Comment,0000,0000,0000,,We've got no pilot!
Dialogue: 0,0:14:16.10,0:14:17.26,eva main,Comment,0000,0000,0000,,A pilot has just been delivered.
Dialogue: 0,0:14:18.54,0:14:19.56,eva main,Comment,0000,0000,0000,,Are you serious?
Dialogue: 0,0:14:20.54,0:14:21.61,eva main,Comment,0000,0000,0000,,Ikari Shinji-kun...
Dialogue: 0,0:14:21.61,0:14:22.71,eva main,Comment,0000,0000,0000,,Yes?
Dialogue: 0,0:14:22.71,0:14:23.73,eva main,Comment,0000,0000,0000,,You will pilot it.
Dialogue: 0,0:14:24.45,0:14:29.44,eva main,Comment,0000,0000,0000,,But even Ayanami Rei took seven months\nto synchronize with her Eva.
Dialogue: 0,0:14:29.62,0:14:32.25,eva main,Comment,0000,0000,0000,,It's impossible for him to do it!\NHe just got here!
Dialogue: 0,0:14:32.32,0:14:35.12,eva main,Comment,0000,0000,0000,,He just has to sit in the seat.\NWe don't expect more than that.
Dialogue: 0,0:14:35.19,0:14:36.18,eva main,Comment,0000,0000,0000,,But...
Dialogue: 0,0:14:36.26,0:14:38.92,eva main,Comment,0000,0000,0000,,Repelling that Angel is our ultimate priority.
Dialogue: 0,0:14:39.43,0:14:43.02,eva main,Comment,0000,0000,0000,,To do that, we have no choice but to put\naboard the Eva whomever has the chance
Dialogue: 0,0:14:43.10,0:14:45.62,eva main,Comment,0000,0000,0000,,to synchronize with it, no matter how slight.
Dialogue: 0,0:14:46.87,0:14:48.80,eva main,Comment,0000,0000,0000,,I believe you know that, Captain Katsuragi.
Dialogue: 0,0:14:51.27,0:14:52.60,eva main,Comment,0000,0000,0000,,I suppose...
Dialogue: 0,0:14:54.21,0:14:56.61,eva main,Comment,0000,0000,0000,,Father, why did you send for me?
Dialogue: 0,0:14:56.61,0:14:58.75,eva main,Comment,0000,0000,0000,,You know exactly why.
Dialogue: 0,0:14:58.75,0:15:02.65,eva main,Comment,0000,0000,0000,,So, you're asking me to take this thing\nand fight that thing?
Dialogue: 0,0:15:03.35,0:15:04.35,eva main,Comment,0000,0000,0000,,That's right.
Dialogue: 0,0:15:04.35,0:15:08.02,eva main,Comment,0000,0000,0000,,No way! Why are you doing this now?!
Dialogue: 0,0:15:08.02,0:15:10.63,eva main,Comment,0000,0000,0000,,I thought you didn't need me!
Dialogue: 0,0:15:10.63,0:15:12.82,eva main,Comment,0000,0000,0000,,I called you because I have a need for you.
Dialogue: 0,0:15:15.40,0:15:16.83,eva main,Comment,0000,0000,0000,,Why me?
Dialogue: 0,0:15:17.47,0:15:19.70,eva main,Comment,0000,0000,0000,,Because no one else can.
Dialogue: 0,0:15:20.37,0:15:22.06,eva main,Comment,0000,0000,0000,,No, I can't...
Dialogue: 0,0:15:22.50,0:15:26.03,eva main,Comment,0000,0000,0000,,I've never even seen anything\nlike this before! I can't do this!
Dialogue: 0,0:15:27.01,0:15:28.41,eva main,Comment,0000,0000,0000,,You will be instructed.
Dialogue: 0,0:15:29.04,0:15:32.88,eva main,Comment,0000,0000,0000,,But there's no way I can do this!
Dialogue: 0,0:15:33.71,0:15:35.74,eva main,Comment,0000,0000,0000,,I can't pilot it!
Dialogue: 0,0:15:37.22,0:15:40.24,eva main,Comment,0000,0000,0000,,If you're going to pilot it, do it now\nand quickly. If not, leave!
Dialogue: 0,0:15:51.93,0:15:54.46,eva main,Comment,0000,0000,0000,,It must have detected our location.
Dialogue: 0,0:15:58.11,0:16:00.04,eva main,Comment,0000,0000,0000,,Shinji-kun, we don't have time.
Dialogue: 0,0:16:05.08,0:16:06.24,eva main,Comment,0000,0000,0000,,Get into it.
Dialogue: 0,0:16:07.31,0:16:11.98,eva main,Comment,0000,0000,0000,,No! I didn't come for this! This isn't fair!
Dialogue: 0,0:16:13.25,0:16:16.69,eva main,Comment,0000,0000,0000,,Shinji-kun, just why did you come here?
Dialogue: 0,0:16:18.59,0:16:22.69,eva main,Comment,0000,0000,0000,,You mustn't run! Not from your father,\nand most of all not from yourself.
Dialogue: 0,0:16:23.33,0:16:27.39,eva main,Comment,0000,0000,0000,,I know that! But there's no way I can do it!
Dialogue: 0,0:16:35.54,0:16:36.53,eva main,Comment,0000,0000,0000,,Fuyutsuki...
Dialogue: 0,0:16:37.85,0:16:39.25,eva main,Comment,0000,0000,0000,,Wake up Rei.
Dialogue: 0,0:16:39.25,0:16:40.75,eva broadcast,Comment,0000,0000,0000,,Can we use her?
Dialogue: 0,0:16:40.75,0:16:42.31,eva main,Comment,0000,0000,0000,,She isn't dead.
Dialogue: 0,0:16:43.45,0:16:44.58,eva broadcast,Comment,0000,0000,0000,,I understand.
Dialogue: 0,0:16:46.39,0:16:47.25,eva main,Comment,0000,0000,0000,,Rei.
Dialogue: 0,0:16:47.25,0:16:48.39,eva main,Comment,0000,0000,0000,,Yes?
Dialogue: 0,0:16:48.39,0:16:51.26,eva main,Comment,0000,0000,0000,,Our spare is unusable. You will do it again.
Dialogue: 0,0:16:51.26,0:16:52.23,eva main,Comment,0000,0000,0000,,Yes, Sir.
Dialogue: 0,0:16:54.50,0:16:57.93,eva main,Comment,0000,0000,0000,,Reconfigure Unit 01's system to Rei,\nthen re-activate!
Dialogue: 0,0:16:57.93,0:17:00.99,eva broadcast,Comment,0000,0000,0000,,Roger. Call off the present work,\nand begin re-activation.
Dialogue: 0,0:17:02.97,0:17:06.80,eva main,Comment,0000,0000,0000,,I knew it. I'm not needed after all.
Dialogue: 0,0:17:40.67,0:17:41.70,eva main,Comment,0000,0000,0000,,Watch out!
Dialogue: 0,0:17:51.32,0:17:52.89,eva broadcast,Comment,0000,0000,0000,,The Eva moved!
Dialogue: 0,0:17:52.89,0:17:54.09,eva broadcast,Comment,0000,0000,0000,,What's going on?!
Dialogue: 0,0:17:54.09,0:17:56.46,eva broadcast,Comment,0000,0000,0000,,It broke the right arm restraint!
Dialogue: 0,0:17:56.46,0:17:58.02,eva main,Comment,0000,0000,0000,,No, that's impossible!
Dialogue: 0,0:17:58.53,0:18:00.73,eva main,Comment,0000,0000,0000,,It didn't even have an entry plug inserted!
Dialogue: 0,0:18:00.73,0:18:01.96,eva main,Comment,0000,0000,0000,,There's no way it could have moved!
Dialogue: 0,0:18:03.10,0:18:05.33,eva main,Comment,0000,0000,0000,,It reacted without any interface?!
Dialogue: 0,0:18:06.13,0:18:08.20,eva main,Comment,0000,0000,0000,,Or was it protecting...
Dialogue: 0,0:18:08.20,0:18:09.23,eva main,Comment,0000,0000,0000,,him?
Dialogue: 0,0:18:10.54,0:18:11.53,eva main,Comment,0000,0000,0000,,We can do it.
Dialogue: 0,0:18:32.56,0:18:37.16,eva main,Comment,0000,0000,0000,,I mustn't run away. I mustn't run away.\NI mustn't run away. I mustn't run away.
Dialogue: 0,0:18:37.16,0:18:38.32,eva main,Comment,0000,0000,0000,,I mustn't run away!
Dialogue: 0,0:18:39.77,0:18:40.67,eva main,Comment,0000,0000,0000,,I'll do it.
Dialogue: 0,0:18:41.37,0:18:42.49,eva main,Comment,0000,0000,0000,,I'll pilot it!
Dialogue: 0,0:18:46.04,0:18:47.34,eva broadcast,Comment,0000,0000,0000,,Cooling process, completed.
Dialogue: 0,0:18:47.34,0:18:48.88,eva broadcast,Comment,0000,0000,0000,,Right arm re-secured.
Dialogue: 0,0:18:48.88,0:18:50.91,eva broadcast,Comment,0000,0000,0000,,Cage contents now in position for docking.
Dialogue: 0,0:18:50.91,0:18:51.85,eva main,Comment,0000,0000,0000,,Roger.
Dialogue: 0,0:18:51.85,0:18:54.68,eva main,Comment,0000,0000,0000,,Signal terminator plug has been ejected.
Dialogue: 0,0:18:55.22,0:18:57.82,eva broadcast,Comment,0000,0000,0000,,Roger. Inserting entry plug.
Dialogue: 0,0:18:57.82,0:19:00.88,eva broadcast,Comment,0000,0000,0000,,Direct hydro-transmission system,\nconnection prepared.
Dialogue: 0,0:19:04.93,0:19:06.43,eva broadcast,Comment,0000,0000,0000,,Plug fixed in place.
Dialogue: 0,0:19:06.43,0:19:08.16,eva broadcast,Comment,0000,0000,0000,,First stage connection initiated.
Dialogue: 0,0:19:13.07,0:19:14.90,eva broadcast,Comment,0000,0000,0000,,Filling the entry plug.
Dialogue: 0,0:19:16.07,0:19:17.47,eva main,Comment,0000,0000,0000,,What is this stuff?
Dialogue: 0,0:19:21.41,0:19:24.45,eva main,Comment,0000,0000,0000,,Don't worry. Once your lungs\nare filled with LCL,
Dialogue: 0,0:19:24.45,0:19:27.21,eva main,Comment,0000,0000,0000,,your blood will be oxygenated directly.
Dialogue: 0,0:19:27.21,0:19:28.55,eva broadcast,Comment,0000,0000,0000,,You'll get used to it.
Dialogue: 0,0:19:32.02,0:19:33.45,eva main,Comment,0000,0000,0000,,I feel nauseous.
Dialogue: 0,0:19:33.45,0:19:35.72,eva main,Comment,0000,0000,0000,,Stop whining! You're a boy, aren't you?!
Dialogue: 0,0:19:37.02,0:19:38.16,eva broadcast,Comment,0000,0000,0000,,Connecting main power.
Dialogue: 0,0:19:38.16,0:19:40.86,eva broadcast,Comment,0000,0000,0000,,All circuits transmitting power.
Dialogue: 0,0:19:40.86,0:19:41.70,eva broadcast,Comment,0000,0000,0000,,Roger.
Dialogue: 0,0:19:41.70,0:19:43.36,eva broadcast,Comment,0000,0000,0000,,Commencing secondary contacts.
Dialogue: 0,0:19:44.93,0:19:47.37,eva broadcast,Comment,0000,0000,0000,,A-10 nerve connection, normal.
Dialogue: 0,0:19:47.37,0:19:52.57,eva broadcast,Comment,0000,0000,0000,,Set the thought configuration to Japanese.
Dialogue: 0,0:19:53.44,0:19:55.88,eva broadcast,Comment,0000,0000,0000,,All preliminary contacts established.\NPerformance nominal.
Dialogue: 0,0:19:55.88,0:19:57.67,eva broadcast,Comment,0000,0000,0000,,Bi-directional circuits are open.
Dialogue: 0,0:19:58.21,0:20:00.74,eva broadcast,Comment,0000,0000,0000,,Synchronization rate at 41.3%.
Dialogue: 0,0:20:01.38,0:20:02.62,eva main,Comment,0000,0000,0000,,Amazing.
Dialogue: 0,0:20:02.62,0:20:06.21,eva main,Comment,0000,0000,0000,,Harmonics are all normal.\NNo disturbances identified.
Dialogue: 0,0:20:06.99,0:20:08.01,eva main,Comment,0000,0000,0000,,We can do it.
Dialogue: 0,0:20:09.39,0:20:10.62,eva main,Comment,0000,0000,0000,,Prepare to launch!
Dialogue: 0,0:20:12.59,0:20:14.13,eva broadcast,Comment,0000,0000,0000,,Prepare to launch!
Dialogue: 0,0:20:14.13,0:20:15.60,eva broadcast,Comment,0000,0000,0000,,Disengage primary lock bolts!
Dialogue: 0,0:20:17.13,0:20:20.29,eva broadcast,Comment,0000,0000,0000,,Disengage confirmed.\NDisengaging the umbilical bridge.
Dialogue: 0,0:20:22.70,0:20:24.10,eva broadcast,Comment,0000,0000,0000,,Disengage secondary lock bolts.
Dialogue: 0,0:20:26.44,0:20:28.38,eva broadcast,Comment,0000,0000,0000,,Disengage primary restraints.
Dialogue: 0,0:20:28.38,0:20:30.81,eva broadcast,Comment,0000,0000,0000,,Likewise, disengage secondary restraints.
Dialogue: 0,0:20:34.28,0:20:37.22,eva broadcast,Comment,0000,0000,0000,,Release safety locks numbers\none through fifteen.
Dialogue: 0,0:20:37.22,0:20:38.24,eva broadcast,Comment,0000,0000,0000,,Release confirmed.
Dialogue: 0,0:20:38.65,0:20:40.79,eva broadcast,Comment,0000,0000,0000,,Currently, Unit 01's condition is free.
Dialogue: 0,0:20:40.79,0:20:42.42,eva broadcast,Comment,0000,0000,0000,,Internal batteries fully charged.
Dialogue: 0,0:20:42.42,0:20:44.45,eva broadcast,Comment,0000,0000,0000,,External battery outlet, normal.
Dialogue: 0,0:20:45.03,0:20:47.96,eva main,Comment,0000,0000,0000,,Roger. Move Eva Unit 01\nto the ejector pad.
Dialogue: 0,0:21:03.54,0:21:05.44,eva main,Comment,0000,0000,0000,,Launch path is clear. All systems green.
Dialogue: 0,0:21:05.85,0:21:07.18,eva main,Comment,0000,0000,0000,,Ready for launch.
Dialogue: 0,0:21:08.25,0:21:09.18,eva main,Comment,0000,0000,0000,,Roger.
Dialogue: 0,0:21:10.02,0:21:11.12,eva main,Comment,0000,0000,0000,,Can we really do this?
Dialogue: 0,0:21:11.12,0:21:12.18,eva main,Comment,0000,0000,0000,,Of course.
Dialogue: 0,0:21:13.05,0:21:15.61,eva main,Comment,0000,0000,0000,,Unless we defeat the Angels,\nwe have no future.
Dialogue: 0,0:21:17.19,0:21:20.18,eva main,Comment,0000,0000,0000,,Ikari, you're really sure about this?
Dialogue: 0,0:21:21.83,0:21:22.80,eva main,Comment,0000,0000,0000,,Launch!
Dialogue: 0,0:21:56.76,0:21:58.86,eva main,Comment,0000,0000,0000,,Shinji-kun, don't get killed out there.
Dialogue: 0,0:21:58.83,0:22:00.46,eva titles,Comment,0000,0000,0000,,{\fsp-3\fs80\pos(531,377)}To Be Continued
Dialogue: 0,0:23:05.86,0:23:06.77,eva titles,Comment,0000,0000,0000,,{\pos(352,487)\fsp-3}Preview
Dialogue: 0,0:23:06.77,0:23:08.14,eva main,Comment,0000,0000,0000,,Eva triumphs over the Angel!
Dialogue: 0,0:23:08.14,0:23:10.40,eva main,Comment,0000,0000,0000,,However, that was just the beginning.
Dialogue: 0,0:23:10.64,0:23:12.27,eva main,Comment,0000,0000,0000,,Shinji runs away from his father.
Dialogue: 0,0:23:12.27,0:23:15.67,eva main,Comment,0000,0000,0000,,Misato's arrogance leads her\nto try to save him.
Dialogue: 0,0:23:16.04,0:23:18.41,eva main,Comment,0000,0000,0000,,Next Evangelion: "Unfamiliar Ceiling"
Dialogue: 0,0:23:18.41,0:23:20.45,eva main,Comment,0000,0000,0000,,I'll give you fan service next time too!
Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fsp-3\pos(353,389)}Unfamiliar Ceiling
Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fs60\fsp-2\pos(343,85)}Next Episode

View File

@ -0,0 +1,515 @@
1 00;01;30;11 00;01;32;21The year is 2015 A.D.
2 00;01;55;02 00;01;59;00As of 12:30 PM today, a special state
of emergency has been declared
3 00;01;59;03 00;02;03;07for the Kanto and Chubu regions
surrounding the Tokai district.
4 00;02;03;23 00;02;07;23All residents must evacuate to their
designated shelters immediately.
5 00;02;08;07 00;02;11;19Repeating: As of 12:30 PM today,
6 00;02;11;19 00;02;12;16All Lines Stopped
Repeating: As of 12:30 PM today,
7 00;02;12;16 00;02;14;02the Kanto and Chubu regions
surrounding the Tokai district
All Lines Stopped
8 00;02;14;02 00;02;16;05the Kanto and Chubu regions
surrounding the Tokai district
9 00;02;16;07 00;02;19;09have been declared to be under
a state of emergency.
10 00;02;19;11 00;02;20;27All residents must evacuate...
11 00;02;20;27 00;02;24;11Why did I have to lose sight of him now?
12 00;02;24;11 00;02;26;03Oh, man!
13 00;02;26;03 00;02;26;06Ikari Shinji
Oh, man!
14 00;02;26;06 00;02;27;07Ikari Shinji
15 00;02;27;07 00;02;28;22Due to the special emergency,
Ikari Shinji
16 00;02;28;22 00;02;29;28Due to the special emergency,
17 00;02;30;00 00;02;33;08all lines are currently unavailable.
18 00;02;34;22 00;02;35;21It's no use.
19 00;02;36;23 00;02;39;02I shouldn't have come here after all.
20 00;02;42;25 00;02;43;11for me.♥
Attention here!!
I'll be coming to
get you, so wait
To Shinji-kun
21 00;02;43;11 00;02;45;07Well, I guess we won't be meeting here.
for me.♥
Attention here!!
I'll be coming to
get you, so wait
To Shinji-kun
22 00;02;45;07 00;02;45;22Well, I guess we won't be meeting here.
23 00;02;46;26 00;02;49;14Can't be helped. I'll go to a shelter.
24 00;03;14;18 00;03;15;04ESTIMATED PATH
25 00;03;15;04 00;03;18;16The unidentified mobile object is still
advancing on our position.
ESTIMATED PATH
26 00;03;18;16 00;03;18;17The unidentified mobile object is still
advancing on our position.
27 00;03;19;11 00;03;22;18We've got visual confirmation.
I'm putting it on the main screen.
28 00;03;24;08 00;03;26;03It's been fifteen years, hasn't it?
29 00;03;26;05 00;03;28;09Yes, there's no doubt.
30 00;03;29;08 00;03;30;15It's an Angel.
31 00;03;30;15 00;03;33;05Episode One
Angel Attack
32 00;03;42;14 00;03;44;10Every missile hit the target!
33 00;04;03;15 00;04;05;03I'm sorry! Thanks for waiting!
34 00;04;22;03 00;04;26;21The target is still operational.
It's still heading towards New Tokyo-3.
35 00;04;26;23 00;04;29;09The Air Defense Force doesn't have
the firepower to stop it!
36 00;04;30;03 00;04;31;08Hit it with everything we've got!
37 00;04;31;08 00;04;33;07Mobilize all of Atsugi and Iruma as well!
38 00;04;33;09 00;04;36;21Don't hold anything back!
Destroy the target at any cost!
39 00;04;50;01 00;04;52;05Why?! That was a direct hit!
40 00;04;52;19 00;04;55;01The tank battalion's been annihilated.
41 00;04;55;01 00;04;57;29Guided missiles and artillery
have no effect either.
42 00;04;57;29 00;05;01;15It's no good! We'll never get anywhere
with the firepower we've got!
43 00;05;01;15 00;05;03;11AT field: absolute terror field
Is it an AT field after all?
44 00;05;03;11 00;05;04;15Yes. Conventional weapons are
useless against Angels.
AT field: absolute terror field
45 00;05;04;15 00;05;07;10Yes. Conventional weapons are
useless against Angels.
46 00;05;10;22 00;05;13;29I understand. We'll activate it as planned.
47 00;05;18;23 00;05;20;08Hey, don't tell me...
48 00;05;20;11 00;05;22;06They're going to use an N² mine?!
49 00;05;22;22 00;05;23;22Get down!
50 00;05;46;16 00;05;47;12We did it!
51 00;05;48;23 00;05;51;26Sorry, but it looks like you won't be
getting a shot at it.
52 00;05;51;29 00;05;54;04Shock wave approaching.
53 00;05;55;11 00;05;56;20Are you all right?
54 00;05;56;23 00;06;00;03Yeah, but my mouth is full of dirt.
55 00;06;00;03 00;06;04;02That's okay. Now then, here we go!
56 00;06;04;22 00;06;06;02One, two!
57 00;06;09;26 00;06;11;13There.
58 00;06;14;23 00;06;16;26Thanks for the hand. I really appreciate it.
59 00;06;16;28 00;06;19;28Thank you too, Katsuragi-san.
60 00;06;20;00 00;06;22;02Just Misato is fine.
61 00;06;22;16 00;06;25;26I'm glad we've met at last, Ikari Shinji-kun.
62 00;06;26;05 00;06;27;00Yeah...
63 00;06;27;17 00;06;28;24What's the target's status?
64 00;06;28;26 00;06;31;23We're unable to confirm due to
all the EMP interference.
65 00;06;31;26 00;06;34;19You saw the size of the explosion. It's over.
66 00;06;34;21 00;06;36;04Sensors restored.
67 00;06;37;13 00;06;39;08We've got an energy reading
at the explosion's epicenter!
68 00;06;39;10 00;06;40;14What the hell?!
69 00;06;40;16 00;06;42;05Visual display restored.
70 00;06;46;13 00;06;48;20That was our last resort.
71 00;06;49;18 00;06;51;15How can this be?
72 00;06;51;15 00;06;53;04Damned monster!
73 00;07;03;02 00;07;05;14Yes. Don't worry about it.
74 00;07;05;17 00;07;09;18His safety is my top priority,
so could you get a car train ready for us?
75 00;07;09;21 00;07;10;28A direct one.
76 00;07;11;24 00;07;12;23Right.
77 00;07;13;04 00;07;15;14Well, I volunteered to pick him up,
78 00;07;15;14 00;07;18;05so I'll make sure he gets there. See ya!
79 00;07;20;15 00;07;26;28Man, this sucks! I just had my car restored
and it's a total wreck already!
80 00;07;27;13 00;07;30;1633 more loan payments to go,
plus the cost of repairs.
81 00;07;30;18 00;07;32;29And look! My best dress has been ruined!
82 00;07;32;29 00;07;33;04Excuse me, Misato-san?
And look! My best dress has been ruined!
83 00;07;33;04 00;07;33;16Excuse me, Misato-san?
84 00;07;33;16 00;07;34;23And I was looking and feeling so nice.
Excuse me, Misato-san?
85 00;07;34;23 00;07;37;08And I was looking and feeling so nice.
86 00;07;37;08 00;07;38;29Excuse me, Misato-san?
87 00;07;39;05 00;07;40;19What?
88 00;07;40;22 00;07;43;11Are you sure you can just take those?
89 00;07;45;07 00;07;46;06Never mind about that!
90 00;07;46;08 00;07;50;01It's an emergency, and we need
a working car right now, right?
91 00;07;50;03 00;07;53;18And I'm an international government
official, after all,
92 00;07;53;20 00;07;55;08so everything's going to be
perfectly fine, okay?
93 00;07;56;19 00;07;59;08I don't think anyone will buy that.
94 00;07;59;10 00;08;03;13You're no fun. You look cute,
but you're kind of a cold fish.
95 00;08;04;11 00;08;05;21You think so?
96 00;08;05;23 00;08;07;15Oh, did I upset you?
97 00;08;08;08 00;08;11;20Sorry about that! You are a boy, after all.
98 00;08;11;22 00;08;15;01And you're pretty childish for your age.
99 00;08;20;22 00;08;23;20As we predicted, it's regenerating itself.
100 00;08;23;29 00;08;27;25If it couldn't, it wouldn't be
a practical autonomous weapon.
101 00;08;31;14 00;08;35;02Impressive. It appears it can even upgrade
its own operational functions.
102 00;08;35;12 00;08;37;20And it seems to have gotten smarter.
103 00;08;38;21 00;08;41;18It's only a matter of time before
it resumes attacking.
104 00;08;43;01 00;08;46;08The gates are now closing.
Please stand clear.
105 00;08;46;08 00;08;46;18The special duty organization Nerv?
The gates are now closing.
Please stand clear.
106 00;08;46;18 00;08;48;00Now departing.
The special duty organization Nerv?
107 00;08;48;00 00;08;48;04Now departing.
108 00;08;48;04 00;08;48;10Yes, it's a secret organization under
the control of the United Nations.
Now departing.
109 00;08;48;10 00;08;51;13This is the C-22 Special Express
departing directly for G33-1.
Yes, it's a secret organization under
the control of the United Nations.
110 00;08;51;13 00;08;51;28This is the C-22 Special Express
departing directly for G33-1.
111 00;08;51;28 00;08;53;17That's where my father is, right?
This is the C-22 Special Express
departing directly for G33-1.
112 00;08;53;17 00;08;54;22Well, yeah.
This is the C-22 Special Express
departing directly for G33-1.
113 00;08;54;22 00;08;56;22Do you know what he does?
This is the C-22 Special Express
departing directly for G33-1.
114 00;08;58;02 00;09;00;20This train will bypass all other stations.
Please stand back.
115 00;09;00;20 00;09;01;27My teacher told me his work is vital
for the protection of the human race.
This train will bypass all other stations.
Please stand back.
116 00;09;01;27 00;09;04;15My teacher told me his work is vital
for the protection of the human race.
117 00;09;07;19 00;09;10;24From this point forward, command of this
operation will be entrusted to you.
118 00;09;10;26 00;09;12;15Show us what you're capable of.
119 00;09;12;17 00;09;13;20Yes, Sir.
120 00;09;14;08 00;09;20;11Ikari-kun, we will admit that our weapons
have no effect on the target.
121 00;09;21;08 00;09;23;20But are you sure you can beat this thing?
122 00;09;24;04 00;09;25;24It's what Nerv was created for.
123 00;09;26;19 00;09;28;04Let's hope you're correct.
124 00;09;29;23 00;09;31;27The target is still stationary.
125 00;09;31;29 00;09;35;10Our intercept system is currently
7.5% operational.
126 00;09;37;00 00;09;39;10So, even the UN forces have retired.
127 00;09;39;12 00;09;41;00What are you going to do?
128 00;09;41;15 00;09;43;15I intend to activate Unit 01.
129 00;09;43;23 00;09;46;25Unit 01? But we have no pilot.
130 00;09;47;14 00;09;51;02That's not a problem. Another spare
will be delivered soon.
131 00;09;52;02 00;09;54;23Are you taking me to my father?
132 00;09;55;09 00;09;57;11Yes. Pretty much.
133 00;10;01;07 00;10;02;15Father...
134 00;10;04;02 00;10;07;13Oh, that's right. Did you get
an ID card from your father?
135 00;10;09;10 00;10;10;10Yes.
136 00;10;12;00 00;10;13;01Here it is.
137 00;10;13;03 00;10;13;26Thanks.
138 00;10;13;26 00;10;14;12Ikari Gendo
Come.
Thanks.
139 00;10;14;12 00;10;15;02Come.
Ikari Gendo
140 00;10;15;23 00;10;18;02Then read this.
141 00;10;18;02 00;10;18;05Nerv
Welcome to
Then read this.
142 00;10;18;05 00;10;18;27Welcome to
Nerv
143 00;10;18;27 00;10;19;22Nerv...
Welcome to
Nerv
144 00;10;19;22 00;10;20;03Nerv...
145 00;10;21;00 00;10;22;07My father's agency.
146 00;10;23;00 00;10;25;01Am I going to work for them too?
147 00;10;27;00 00;10;28;14Of course.
148 00;10;28;20 00;10;32;24He wouldn't have sent me a letter unless
he needed me for something.
149 00;10;33;08 00;10;36;07I see. So you don't get along with your father.
150 00;10;37;19 00;10;39;07It's the same with me.
151 00;10;45;06 00;10;46;14Awesome!
152 00;10;47;20 00;10;49;11It's the real Geo-Front!
153 00;10;49;13 00;10;50;10That's right.
154 00;10;50;12 00;10;53;26This is our secret base.
Nerv Headquarters.
155 00;10;54;07 00;10;55;23This is the key to rebuilding our world.
156 00;10;55;26 00;10;58;10A fortress for all mankind.
157 00;11;04;27 00;11;07;02That's strange. Isn't this the right way?
158 00;11;07;02 00;11;08;17Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
159 00;11;08;17 00;11;08;19Central Dogma
Nerv Headquarters
Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
160 00;11;08;19 00;11;08;20Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
161 00;11;08;20 00;11;08;21Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
162 00;11;08;21 00;11;08;23Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
163 00;11;08;23 00;11;08;24Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
164 00;11;08;24 00;11;08;25Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
165 00;11;08;25 00;11;08;26Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
166 00;11;08;26 00;11;08;27Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
167 00;11;08;27 00;11;08;29Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
168 00;11;08;29 00;11;09;00Around here
Central Dogma
Nerv Headquarters
That's strange. Isn't this the right way?
169 00;11;09;00 00;11;09;01Around here
Nerv Headquarters
That's strange. Isn't this the right way?
170 00;11;09;01 00;11;10;05That's strange. Isn't this the right way?
171 00;11;10;26 00;11;12;14Central Dogma's closed passages
remain sealed.
172 00;11;12;14 00;11;12;27This is why I hate wearing skirts here.
173 00;11;12;27 00;11;15;08Opening block B-26 in sequence.
This is why I hate wearing skirts here.
174 00;11;15;08 00;11;15;23Opening block B-26 in sequence.
175 00;11;15;23 00;11;17;22But where the heck did Ritsuko go?
Opening block B-26 in sequence.
176 00;11;17;22 00;11;18;16But where the heck did Ritsuko go?
177 00;11;18;18 00;11;21;12I'm sorry. I'm just not used to this place yet.
178 00;11;21;14 00;11;23;14We passed this spot just a little while ago.
179 00;11;24;26 00;11;26;08But don't worry about it.
180 00;11;26;11 00;11;29;07They make these systems
to be used, you know.
181 00;11;29;07 00;11;31;29Would the head of Project E,
Technical Department Division 1,
182 00;11;31;29 00;11;34;25Dr. Akagi Ritsuko, Dr. Akagi Ritsuko,
183 00;11;34;25 00;11;39;14please contact Captain Katsuragi Misato
of Operations, Division 1, immediately.
184 00;11;39;18 00;11;41;13I don't believe it.
185 00;11;41;13 00;11;42;12She got lost again, didn't she?
186 00;11;46;26 00;11;48;28Uh, hiya, Ritsuko.
187 00;11;53;18 00;11;55;29What were you doing, Captain Katsuragi?
188 00;11;56;02 00;11;58;09We're short on both time
and manpower, you know.
189 00;11;58;24 00;11;59;25Sorry!
190 00;12;03;04 00;12;04;29So this is the boy?
191 00;12;05;01 00;12;08;29Right. According to the Marduk report,
he's the "Third Child".
192 00;12;09;20 00;12;10;23I'm glad to meet you.
193 00;12;10;25 00;12;12;20Huh? Sure.
194 00;12;13;00 00;12;17;26He's just like his father.
Like how he's unendearing.
195 00;12;18;07 00;12;19;15I'll leave the rest to you.
196 00;12;23;28 00;12;26;05Their first meeting in over three years.
197 00;12;27;06 00;12;30;26Vice Commander, the target
has started moving again.
198 00;12;30;29 00;12;34;11Right. All personnel, assume
battle stations, Level One.
199 00;12;34;16 00;12;37;27Repeat. All personnel, assume
battle stations, Level One.
200 00;12;37;27 00;12;39;08Prepare for ground-unit interception.
201 00;12;39;24 00;12;41;01Here we go.
202 00;12;41;01 00;12;42;08It sounds pretty serious.
203 00;12;43;12 00;12;45;17So, how's Unit 01 doing?
204 00;12;45;17 00;12;47;28It's currently in refrigeration,
using the B-type equipment.
205 00;12;47;28 00;12;51;28Does it really work?
It's never worked before, right?
206 00;12;51;28 00;12;56;26The possibility of activation is 0.000000001%.
207 00;12;57;14 00;12;59;29We call it, pathetically enough,
the O-9 System.
208 00;12;59;29 00;13;02;19Does that mean it doesn't work?
209 00;13;02;19 00;13;05;03Oh, don't be insulting. It's not zero.
210 00;13;05;03 00;13;06;24Well, it's just a number.
211 00;13;06;26 00;13;11;12Anyway, it's a bit too late to be saying,
"Sorry, it didn't work".
212 00;13;20;01 00;13;22;24Huh? It's completely dark.
213 00;13;26;11 00;13;29;04A face? A giant robot?
214 00;13;30;25 00;13;33;00You won't find this in the manual.
215 00;13;34;04 00;13;38;03This is mankind's ultimate
multipurpose decisive weapon,
216 00;13;38;03 00;13;42;01the synthetic human Evangelion, Unit 01.
217 00;13;42;01 00;13;47;08Built in absolute secrecy,
it is mankind's trump card.
218 00;13;47;08 00;13;49;08Is this part of what my father's been doing?
219 00;13;49;08 00;13;50;05Correct.
220 00;13;52;04 00;13;53;14It's been a while.
221 00;13;54;16 00;13;55;20Father...
222 00;13;58;22 00;13;59;15We're moving out!
223 00;14;00;00 00;14;03;14Moving out?! Unit 00's still in
cryo-stasis, isn't it?
224 00;14;05;12 00;14;07;18You're not planning to use Unit 01?!
225 00;14;08;12 00;14;09;28There's no other way.
226 00;14;09;28 00;14;12;24Hold on! Rei can't do it yet, can she?
227 00;14;13;23 00;14;15;05We've got no pilot!
228 00;14;16;02 00;14;17;07A pilot has just been delivered.
229 00;14;18;16 00;14;19;16Are you serious?
230 00;14;20;16 00;14;21;18Ikari Shinji-kun...
231 00;14;21;18 00;14;22;21Yes?
232 00;14;22;21 00;14;23;21You will pilot it.
233 00;14;24;13 00;14;29;13But even Ayanami Rei took seven months
to synchronize with her Eva.
234 00;14;29;18 00;14;32;07It's impossible for him to do it!
He just got here!
235 00;14;32;09 00;14;35;03He just has to sit in the seat.
We don't expect more than that.
236 00;14;35;05 00;14;36;05But...
237 00;14;36;07 00;14;38;27Repelling that Angel is our ultimate priority.
238 00;14;39;12 00;14;43;00To do that, we have no choice but to put
aboard the Eva whomever has the chance
239 00;14;43;02 00;14;45;18to synchronize with it, no matter how slight.
240 00;14;46;26 00;14;48;23I believe you know that, Captain Katsuragi.
241 00;14;51;08 00;14;52;17I suppose...
242 00;14;54;06 00;14;56;18Father, why did you send for me?
243 00;14;56;18 00;14;58;22You know exactly why.
244 00;14;58;22 00;15;02;19So, you're asking me to take this thing
and fight that thing?
245 00;15;03;10 00;15;04;10That's right.
246 00;15;04;10 00;15;08;00No way! Why are you doing this now?!
247 00;15;08;00 00;15;10;18I thought you didn't need me!
248 00;15;10;18 00;15;12;24I called you because I have a need for you.
249 00;15;15;11 00;15;16;24Why me?
250 00;15;17;14 00;15;19;20Because no one else can.
251 00;15;20;11 00;15;22;01No, I can't...
252 00;15;22;14 00;15;26;00I've never even seen anything
like this before! I can't do this!
253 00;15;27;00 00;15;28;12You will be instructed.
254 00;15;29;01 00;15;32;26But there's no way I can do this!
255 00;15;33;21 00;15;35;22I can't pilot it!
256 00;15;37;06 00;15;40;07If you're going to pilot it, do it now
and quickly. If not, leave!
257 00;15;51;27 00;15;54;13It must have detected our location.
258 00;15;58;03 00;16;00;01Shinji-kun, we don't have time.
259 00;16;05;02 00;16;06;07Get into it.
260 00;16;07;09 00;16;11;29No! I didn't come for this! This isn't fair!
261 00;16;13;07 00;16;16;20Shinji-kun, just why did you come here?
262 00;16;18;17 00;16;22;20You mustn't run! Not from your father,
and most of all not from yourself.
263 00;16;23;09 00;16;27;11I know that! But there's no way I can do it!
264 00;16;35;16 00;16;36;15Fuyutsuki...
265 00;16;37;25 00;16;39;07Wake up Rei.
266 00;16;39;07 00;16;40;22Can we use her?
267 00;16;40;22 00;16;42;09She isn't dead.
268 00;16;43;13 00;16;44;17I understand.
269 00;16;46;11 00;16;47;07Rei.
270 00;16;47;07 00;16;48;11Yes?
271 00;16;48;11 00;16;51;07Our spare is unusable. You will do it again.
272 00;16;51;07 00;16;52;06Yes, Sir.
273 00;16;54;14 00;16;57;27Reconfigure Unit 01's system to Rei,
then re-activate!
274 00;16;57;27 00;17;00;29Roger. Call off the present work,
and begin re-activation.
275 00;17;02;29 00;17;06;23I knew it. I'm not needed after all.
276 00;17;40;20 00;17;41;20Watch out!
277 00;17;51;09 00;17;52;26The Eva moved!
278 00;17;52;26 00;17;54;02What's going on?!
279 00;17;54;02 00;17;56;13It broke the right arm restraint!
280 00;17;56;13 00;17;58;00No, that's impossible!
281 00;17;58;15 00;18;00;21It didn't even have an entry plug inserted!
282 00;18;00;21 00;18;01;28There's no way it could have moved!
283 00;18;03;02 00;18;05;09It reacted without any interface?!
284 00;18;06;03 00;18;08;05Or was it protecting...
285 00;18;08;05 00;18;09;06him?
286 00;18;10;16 00;18;11;15We can do it.
287 00;18;32;16 00;18;37;04I mustn't run away. I mustn't run away.
I mustn't run away. I mustn't run away.
288 00;18;37;04 00;18;38;09I mustn't run away!
289 00;18;39;23 00;18;40;20I'll do it.
290 00;18;41;11 00;18;42;14I'll pilot it!
291 00;18;46;01 00;18;47;10Cooling process, completed.
292 00;18;47;10 00;18;48;26Right arm re-secured.
293 00;18;48;26 00;18;50;27Cage contents now in position for docking.
294 00;18;50;27 00;18;51;25Roger.
295 00;18;51;25 00;18;54;20Signal terminator plug has been ejected.
296 00;18;55;06 00;18;57;24Roger. Inserting entry plug.
297 00;18;57;24 00;19;00;26Direct hydro-transmission system,
connection prepared.
298 00;19;04;27 00;19;06;12Plug fixed in place.
299 00;19;06;12 00;19;08;04First stage connection initiated.
300 00;19;13;02 00;19;14;26Filling the entry plug.
301 00;19;16;02 00;19;17;14What is this stuff?
302 00;19;21;12 00;19;24;13Don't worry. Once your lungs
are filled with LCL,
303 00;19;24;13 00;19;27;06your blood will be oxygenated directly.
304 00;19;27;06 00;19;28;16You'll get used to it.
305 00;19;32;00 00;19;33;13I feel nauseous.
306 00;19;33;13 00;19;35;21Stop whining! You're a boy, aren't you?!
307 00;19;37;00 00;19;38;04Connecting main power.
308 00;19;38;04 00;19;40;25All circuits transmitting power.
309 00;19;40;25 00;19;41;20Roger.
310 00;19;41;20 00;19;43;10Commencing secondary contacts.
311 00;19;44;27 00;19;47;11A-10 nerve connection, normal.
312 00;19;47;11 00;19;52;17Set the thought configuration to Japanese.
313 00;19;53;13 00;19;55;26All preliminary contacts established.
Performance nominal.
314 00;19;55;26 00;19;57;20Bi-directional circuits are open.
315 00;19;58;06 00;20;00;22Synchronization rate at 41.3%.
316 00;20;01;11 00;20;02;18Amazing.
317 00;20;02;18 00;20;06;06Harmonics are all normal.
No disturbances identified.
318 00;20;06;29 00;20;08;00We can do it.
319 00;20;09;11 00;20;10;18Prepare to launch!
320 00;20;12;17 00;20;14;03Prepare to launch!
321 00;20;14;03 00;20;15;17Disengage primary lock bolts!
322 00;20;17;03 00;20;20;08Disengage confirmed.
Disengaging the umbilical bridge.
323 00;20;22;20 00;20;24;02Disengage secondary lock bolts.
324 00;20;26;13 00;20;28;11Disengage primary restraints.
325 00;20;28;11 00;20;30;24Likewise, disengage secondary restraints.
326 00;20;34;08 00;20;37;06Release safety locks numbers
one through fifteen.
327 00;20;37;06 00;20;38;07Release confirmed.
328 00;20;38;19 00;20;40;23Currently, Unit 01's condition is free.
329 00;20;40;23 00;20;42;12Internal batteries fully charged.
330 00;20;42;12 00;20;44;13External battery outlet, normal.
331 00;20;45;00 00;20;47;28Roger. Move Eva Unit 01
to the ejector pad.
332 00;21;03;16 00;21;05;13Launch path is clear. All systems green.
333 00;21;05;25 00;21;07;05Ready for launch.
334 00;21;08;07 00;21;09;05Roger.
335 00;21;10;00 00;21;11;03Can we really do this?
336 00;21;11;03 00;21;12;05Of course.
337 00;21;13;01 00;21;15;18Unless we defeat the Angels,
we have no future.
338 00;21;17;05 00;21;20;05Ikari, you're really sure about this?
339 00;21;21;24 00;21;22;23Launch!
340 00;21;56;22 00;21;58;24Shinji-kun, don't get killed out there.
341 00;21;58;24 00;21;58;25To Be Continued
Shinji-kun, don't get killed out there.
342 00;21;58;25 00;22;00;13To Be Continued
343 00;23;05;25 00;23;06;23Preview
344 00;23;06;23 00;23;08;04Eva triumphs over the Angel!
345 00;23;08;04 00;23;10;11However, that was just the beginning.
346 00;23;10;19 00;23;12;08Shinji runs away from his father.
347 00;23;12;08 00;23;15;20Misato's arrogance leads her
to try to save him.
348 00;23;16;01 00;23;18;12Next Evangelion: "Unfamiliar Ceiling"
349 00;23;18;12 00;23;18;24I'll give you fan service next time too!
350 00;23;18;24 00;23;20;13Next Episode
Unfamiliar Ceiling
I'll give you fan service next time too!
351 00;23;20;13 00;23;20;26Unfamiliar Ceiling
Next Episode

View File

@ -0,0 +1,352 @@
{1}{1}29.970030
{2710}{2779}The year is 2015 A.D.
{3450}{3567}As of 12:30 PM today, a special state|of emergency has been declared
{3571}{3694}for the Kanto and Chubu regions|surrounding the Tokai district.
{3710}{3830}All residents must evacuate to their|designated shelters immediately.
{3844}{3945}Repeating: As of 12:30 PM today,
{3946}{3972}All Lines Stopped|Repeating: As of 12:30 PM today,
{3973}{4018}the Kanto and Chubu regions|surrounding the Tokai district|All Lines Stopped
{4019}{4081}the Kanto and Chubu regions|surrounding the Tokai district
{4084}{4175}have been declared to be under|a state of emergency.
{4178}{4223}All residents must evacuate...
{4224}{4327}Why did I have to lose sight of him now?
{4328}{4378}Oh, man!
{4379}{4382}Ikari Shinji|Oh, man!
{4383}{4413}Ikari Shinji
{4414}{4458}Due to the special emergency,|Ikari Shinji
{4459}{4494}Due to the special emergency,
{4497}{4594}all lines are currently unavailable.
{4638}{4667}It's no use.
{4699}{4767}I shouldn't have come here after all.
{4881}{4896}for me.♥|Attention here!!|I'll be coming to|get you, so wait|To Shinji-kun
{4897}{4952}Well, I guess we won't be meeting here.|for me.♥|Attention here!!|I'll be coming to|get you, so wait|To Shinji-kun
{4953}{4967}Well, I guess we won't be meeting here.
{5002}{5079}Can't be helped. I'll go to a shelter.
{5834}{5848}ESTIMATED PATH
{5849}{5950}The unidentified mobile object is still|advancing on our position.|ESTIMATED PATH
{5951}{5952}The unidentified mobile object is still|advancing on our position.
{5976}{6072}We've got visual confirmation.|I'm putting it on the main screen.
{6123}{6177}It's been fifteen years, hasn't it?
{6180}{6243}Yes, there's no doubt.
{6273}{6309}It's an Angel.
{6310}{6389}Episode One|Angel Attack
{6669}{6723}Every missile hit the target!
{7299}{7346}I'm sorry! Thanks for waiting!
{7856}{7993}The target is still operational.|It's still heading towards New Tokyo-3.
{7996}{8071}The Air Defense Force doesn't have|the firepower to stop it!
{8096}{8130}Hit it with everything we've got!
{8131}{8189}Mobilize all of Atsugi and Iruma as well!
{8192}{8293}Don't hold anything back!|Destroy the target at any cost!
{8693}{8756}Why?! That was a direct hit!
{8771}{8842}The tank battalion's been annihilated.
{8843}{8930}Guided missiles and artillery|have no effect either.
{8931}{9036}It's no good! We'll never get anywhere|with the firepower we've got!
{9037}{9092}AT field: absolute terror field|Is it an AT field after all?
{9093}{9126}Yes. Conventional weapons are|useless against Angels.|AT field: absolute terror field
{9127}{9210}Yes. Conventional weapons are|useless against Angels.
{9314}{9410}I understand. We'll activate it as planned.
{9555}{9599}Hey, don't tell me...
{9602}{9657}They're going to use an N² mine?!
{9673}{9703}Get down!
{10387}{10412}We did it!
{10454}{10546}Sorry, but it looks like you won't be|getting a shot at it.
{10549}{10614}Shock wave approaching.
{10651}{10690}Are you all right?
{10693}{10792}Yeah, but my mouth is full of dirt.
{10793}{10911}That's okay. Now then, here we go!
{10932}{10971}One, two!
{11086}{11132}There.
{11233}{11295}Thanks for the hand. I really appreciate it.
{11298}{11387}Thank you too, Katsuragi-san.
{11390}{11451}Just Misato is fine.
{11466}{11565}I'm glad we've met at last, Ikari Shinji-kun.
{11575}{11599}Yeah...
{11616}{11653}What's the target's status?
{11656}{11742}We're unable to confirm due to|all the EMP interference.
{11745}{11827}You saw the size of the explosion. It's over.
{11830}{11872}Sensors restored.
{11912}{11966}We've got an energy reading|at the explosion's epicenter!
{11969}{12002}What the hell?!
{12005}{12053}Visual display restored.
{12182}{12248}That was our last resort.
{12277}{12333}How can this be?
{12334}{12382}Damned monster!
{12681}{12752}Yes. Don't worry about it.
{12755}{12876}His safety is my top priority,|so could you get a car train ready for us?
{12879}{12915}A direct one.
{12942}{12970}Right.
{12982}{13051}Well, I volunteered to pick him up,
{13052}{13132}so I'll make sure he gets there. See ya!
{13203}{13395}Man, this sucks! I just had my car restored|and it's a total wreck already!
{13410}{13503}33 more loan payments to go,|plus the cost of repairs.
{13506}{13575}And look! My best dress has been ruined!
{13576}{13581}Excuse me, Misato-san?|And look! My best dress has been ruined!
{13582}{13592}Excuse me, Misato-san?
{13593}{13630}And I was looking and feeling so nice.|Excuse me, Misato-san?
{13631}{13705}And I was looking and feeling so nice.
{13706}{13755}Excuse me, Misato-san?
{13762}{13805}What?
{13809}{13888}Are you sure you can just take those?
{13944}{13972}Never mind about that!
{13975}{14087}It's an emergency, and we need|a working car right now, right?
{14090}{14194}And I'm an international government|official, after all,
{14197}{14244}so everything's going to be|perfectly fine, okay?
{14286}{14364}I don't think anyone will buy that.
{14367}{14489}You're no fun. You look cute,|but you're kind of a cold fish.
{14518}{14557}You think so?
{14560}{14611}Oh, did I upset you?
{14634}{14735}Sorry about that! You are a boy, after all.
{14738}{14836}And you're pretty childish for your age.
{15008}{15095}As we predicted, it's regenerating itself.
{15105}{15220}If it couldn't, it wouldn't be|a practical autonomous weapon.
{15330}{15437}Impressive. It appears it can even upgrade|its own operational functions.
{15448}{15515}And it seems to have gotten smarter.
{15547}{15633}It's only a matter of time before|it resumes attacking.
{15676}{15773}The gates are now closing.|Please stand clear.
{15774}{15782}The special duty organization Nerv?|The gates are now closing.|Please stand clear.
{15783}{15825}Now departing.|The special duty organization Nerv?
{15826}{15828}Now departing.
{15829}{15834}Yes, it's a secret organization under|the control of the United Nations.|Now departing.
{15835}{15927}This is the C-22 Special Express|departing directly for G33-1.|Yes, it's a secret organization under|the control of the United Nations.
{15928}{15942}This is the C-22 Special Express|departing directly for G33-1.
{15943}{15991}That's where my father is, right?|This is the C-22 Special Express|departing directly for G33-1.
{15992}{16026}Well, yeah.|This is the C-22 Special Express|departing directly for G33-1.
{16027}{16086}Do you know what he does?|This is the C-22 Special Express|departing directly for G33-1.
{16127}{16204}This train will bypass all other stations.|Please stand back.
{16205}{16241}My teacher told me his work is vital|for the protection of the human race.|This train will bypass all other stations.|Please stand back.
{16242}{16319}My teacher told me his work is vital|for the protection of the human race.
{16414}{16508}From this point forward, command of this|operation will be entrusted to you.
{16511}{16559}Show us what you're capable of.
{16562}{16594}Yes, Sir.
{16612}{16794}Ikari-kun, we will admit that our weapons|have no effect on the target.
{16822}{16893}But are you sure you can beat this thing?
{16908}{16957}It's what Nerv was created for.
{16983}{17027}Let's hope you're correct.
{17077}{17140}The target is still stationary.
{17143}{17243}Our intercept system is currently|7.5% operational.
{17294}{17363}So, even the UN forces have retired.
{17366}{17413}What are you going to do?
{17429}{17488}I intend to activate Unit 01.
{17496}{17588}Unit 01? But we have no pilot.
{17608}{17715}That's not a problem. Another spare|will be delivered soon.
{17745}{17826}Are you taking me to my father?
{17842}{17904}Yes. Pretty much.
{18020}{18057}Father...
{18105}{18205}Oh, that's right. Did you get|an ID card from your father?
{18263}{18292}Yes.
{18343}{18373}Here it is.
{18376}{18398}Thanks.
{18399}{18414}Ikari Gendo|Come.|Thanks.
{18415}{18434}Come.|Ikari Gendo
{18456}{18524}Then read this.
{18525}{18527}Nerv|Welcome to|Then read this.
{18528}{18549}Welcome to|Nerv
{18550}{18574}Nerv...|Welcome to|Nerv
{18575}{18585}Nerv...
{18612}{18649}My father's agency.
{18672}{18733}Am I going to work for them too?
{18792}{18836}Of course.
{18842}{18965}He wouldn't have sent me a letter unless|he needed me for something.
{18980}{19068}I see. So you don't get along with your father.
{19111}{19158}It's the same with me.
{19338}{19375}Awesome!
{19412}{19462}It's the real Geo-Front!
{19465}{19491}That's right.
{19494}{19596}This is our secret base.|Nerv Headquarters.
{19609}{19654}This is the key to rebuilding our world.
{19657}{19730}A fortress for all mankind.
{19928}{19993}That's strange. Isn't this the right way?
{19994}{20037}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20038}{20039}Central Dogma|Nerv Headquarters|Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20040}{20040}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20041}{20041}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20042}{20043}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20044}{20044}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20045}{20045}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20046}{20046}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20047}{20047}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20048}{20049}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20050}{20050}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way?
{20051}{20051}Around here|Nerv Headquarters|That's strange. Isn't this the right way?
{20052}{20085}That's strange. Isn't this the right way?
{20107}{20154}Central Dogma's closed passages|remain sealed.
{20155}{20167}This is why I hate wearing skirts here.
{20168}{20238}Opening block B-26 in sequence.|This is why I hate wearing skirts here.
{20239}{20253}Opening block B-26 in sequence.
{20254}{20312}But where the heck did Ritsuko go?|Opening block B-26 in sequence.
{20313}{20336}But where the heck did Ritsuko go?
{20339}{20422}I'm sorry. I'm just not used to this place yet.
{20425}{20484}We passed this spot just a little while ago.
{20526}{20568}But don't worry about it.
{20571}{20656}They make these systems|to be used, you know.
{20657}{20738}Would the head of Project E,|Technical Department Division 1,
{20739}{20824}Dr. Akagi Ritsuko, Dr. Akagi Ritsuko,
{20825}{20963}please contact Captain Katsuragi Misato|of Operations, Division 1, immediately.
{20968}{21022}I don't believe it.
{21023}{21051}She got lost again, didn't she?
{21186}{21247}Uh, hiya, Ritsuko.
{21388}{21458}What were you doing, Captain Katsuragi?
{21462}{21528}We're short on both time|and manpower, you know.
{21544}{21574}Sorry!
{21673}{21727}So this is the boy?
{21730}{21847}Right. According to the Marduk report,|he's the "Third Child".
{21869}{21901}I'm glad to meet you.
{21904}{21958}Huh? Sure.
{21969}{22114}He's just like his father.|Like how he's unendearing.
{22126}{22163}I'll leave the rest to you.
{22297}{22363}Their first meeting in over three years.
{22395}{22504}Vice Commander, the target|has started moving again.
{22507}{22608}Right. All personnel, assume|battle stations, Level One.
{22614}{22714}Repeat. All personnel, assume|battle stations, Level One.
{22715}{22756}Prepare for ground-unit interception.
{22772}{22808}Here we go.
{22809}{22845}It sounds pretty serious.
{22880}{22944}So, how's Unit 01 doing?
{22945}{23015}It's currently in refrigeration,|using the B-type equipment.
{23016}{23135}Does it really work?|It's never worked before, right?
{23136}{23283}The possibility of activation is 0.000000001%.
{23302}{23376}We call it, pathetically enough,|the O-9 System.
{23377}{23456}Does that mean it doesn't work?
{23457}{23530}Oh, don't be insulting. It's not zero.
{23531}{23581}Well, it's just a number.
{23584}{23719}Anyway, it's a bit too late to be saying,|"Sorry, it didn't work".
{23978}{24060}Huh? It's completely dark.
{24168}{24250}A face? A giant robot?
{24302}{24366}You won't find this in the manual.
{24401}{24519}This is mankind's ultimate|multipurpose decisive weapon,
{24520}{24636}the synthetic human Evangelion, Unit 01.
{24637}{24793}Built in absolute secrecy,|it is mankind's trump card.
{24794}{24853}Is this part of what my father's been doing?
{24854}{24880}Correct.
{24940}{24979}It's been a while.
{25012}{25045}Father...
{25138}{25160}We're moving out!
{25176}{25279}Moving out?! Unit 00's still in|cryo-stasis, isn't it?
{25338}{25403}You're not planning to use Unit 01?!
{25428}{25473}There's no other way.
{25474}{25559}Hold on! Rei can't do it yet, can she?
{25588}{25629}We've got no pilot!
{25658}{25692}A pilot has just been delivered.
{25731}{25761}Are you serious?
{25791}{25822}Ikari Shinji-kun...
{25823}{25855}Yes?
{25856}{25886}You will pilot it.
{25908}{26057}But even Ayanami Rei took seven months|to synchronize with her Eva.
{26063}{26141}It's impossible for him to do it!|He just got here!
{26144}{26227}He just has to sit in the seat.|We don't expect more than that.
{26230}{26259}But...
{26262}{26341}Repelling that Angel is our ultimate priority.
{26357}{26464}To do that, we have no choice but to put|aboard the Eva whomever has the chance
{26467}{26542}to synchronize with it, no matter how slight.
{26580}{26637}I believe you know that, Captain Katsuragi.
{26712}{26751}I suppose...
{26800}{26871}Father, why did you send for me?
{26872}{26935}You know exactly why.
{26936}{27052}So, you're asking me to take this thing|and fight that thing?
{27074}{27103}That's right.
{27104}{27213}No way! Why are you doing this now?!
{27214}{27291}I thought you didn't need me!
{27292}{27357}I called you because I have a need for you.
{27435}{27477}Why me?
{27497}{27563}Because no one else can.
{27584}{27634}No, I can't...
{27648}{27753}I've never even seen anything|like this before! I can't do this!
{27783}{27824}You will be instructed.
{27844}{27958}But there's no way I can do this!
{27984}{28044}I can't pilot it!
{28089}{28179}If you're going to pilot it, do it now|and quickly. If not, leave!
{28530}{28605}It must have detected our location.
{28715}{28772}Shinji-kun, we don't have time.
{28924}{28958}Get into it.
{28991}{29130}No! I didn't come for this! This isn't fair!
{29169}{29271}Shinji-kun, just why did you come here?
{29329}{29451}You mustn't run! Not from your father,|and most of all not from yourself.
{29471}{29592}I know that! But there's no way I can do it!
{29837}{29866}Fuyutsuki...
{29906}{29947}Wake up Rei.
{29948}{29992}Can we use her?
{29993}{30039}She isn't dead.
{30074}{30107}I understand.
{30162}{30187}Rei.
{30188}{30221}Yes?
{30222}{30307}Our spare is unusable. You will do it again.
{30308}{30336}Yes, Sir.
{30405}{30507}Reconfigure Unit 01's system to Rei,|then re-activate!
{30508}{30599}Roger. Call off the present work,|and begin re-activation.
{30659}{30773}I knew it. I'm not needed after all.
{31789}{31819}Watch out!
{32108}{32154}The Eva moved!
{32155}{32190}What's going on?!
{32191}{32261}It broke the right arm restraint!
{32262}{32308}No, that's impossible!
{32324}{32389}It didn't even have an entry plug inserted!
{32390}{32426}There's no way it could have moved!
{32461}{32527}It reacted without any interface?!
{32552}{32613}Or was it protecting...
{32614}{32644}him?
{32684}{32713}We can do it.
{33344}{33481}I mustn't run away. I mustn't run away.|I mustn't run away. I mustn't run away.
{33482}{33516}I mustn't run away!
{33560}{33586}I'll do it.
{33608}{33641}I'll pilot it!
{33748}{33786}Cooling process, completed.
{33787}{33832}Right arm re-secured.
{33833}{33893}Cage contents now in position for docking.
{33894}{33921}Roger.
{33922}{34006}Signal terminator plug has been ejected.
{34023}{34100}Roger. Inserting entry plug.
{34101}{34192}Direct hydro-transmission system,|connection prepared.
{34314}{34358}Plug fixed in place.
{34359}{34410}First stage connection initiated.
{34558}{34612}Filling the entry plug.
{34648}{34689}What is this stuff?
{34808}{34898}Don't worry. Once your lungs|are filled with LCL,
{34899}{34981}your blood will be oxygenated directly.
{34982}{35021}You'll get used to it.
{35126}{35168}I feel nauseous.
{35169}{35236}Stop whining! You're a boy, aren't you?!
{35276}{35309}Connecting main power.
{35310}{35390}All circuits transmitting power.
{35391}{35415}Roger.
{35416}{35465}Commencing secondary contacts.
{35513}{35585}A-10 nerve connection, normal.
{35586}{35741}Set the thought configuration to Japanese.
{35768}{35840}All preliminary contacts established.|Performance nominal.
{35841}{35894}Bi-directional circuits are open.
{35911}{35986}Synchronization rate at 41.3%.
{36006}{36042}Amazing.
{36043}{36150}Harmonics are all normal.|No disturbances identified.
{36174}{36204}We can do it.
{36246}{36282}Prepare to launch!
{36342}{36387}Prepare to launch!
{36388}{36431}Disengage primary lock bolts!
{36478}{36572}Disengage confirmed.|Disengaging the umbilical bridge.
{36645}{36686}Disengage secondary lock bolts.
{36757}{36814}Disengage primary restraints.
{36815}{36887}Likewise, disengage secondary restraints.
{36992}{37079}Release safety locks numbers|one through fifteen.
{37080}{37110}Release confirmed.
{37123}{37186}Currently, Unit 01's condition is free.
{37187}{37235}Internal batteries fully charged.
{37236}{37296}External battery outlet, normal.
{37314}{37401}Roger. Move Eva Unit 01|to the ejector pad.
{37869}{37925}Launch path is clear. All systems green.
{37938}{37977}Ready for launch.
{38010}{38037}Roger.
{38063}{38095}Can we really do this?
{38096}{38127}Of course.
{38154}{38230}Unless we defeat the Angels,|we have no future.
{38278}{38367}Ikari, you're really sure about this?
{38417}{38445}Launch!
{39464}{39525}Shinji-kun, don't get killed out there.
{39526}{39526}To Be Continued|Shinji-kun, don't get killed out there.
{39527}{39574}To Be Continued
{41535}{41561}Preview
{41562}{41602}Eva triumphs over the Angel!
{41603}{41670}However, that was just the beginning.
{41678}{41726}Shinji runs away from his father.
{41727}{41828}Misato's arrogance leads her|to try to save him.
{41840}{41910}Next Evangelion: "Unfamiliar Ceiling"
{41911}{41922}I'll give you fan service next time too!
{41923}{41971}Next Episode|Unfamiliar Ceiling|I'll give you fan service next time too!
{41972}{41984}Unfamiliar Ceiling|Next Episode

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,387 @@
[Script Info]
; Script generated by Aegisub v2.1.3 RELEASE PREVIEW (SVN r2420, amz)
; http://www.aegisub.net
Title: <untitled>
Original Script: <unknown>
ScriptType: v4.00
Video Aspect Ratio: 0
Video Zoom: 6
Video Position: 0
Last Style Storage: evangelion
PlayResX: 704
PlayResY: 480
[V4 Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, TertiaryColour, BackColour, Bold, Italic, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding
Style: eva main,Sui Generis,27,15852755,65535,0,0,0,0,1,2,1,2,18,18,17,0,0
Style: eva alternate,Sui Generis,27,12886903,65535,0,0,0,0,1,2,1,2,18,18,17,0,0
Style: eva bg broadcast,Sui Generis,24,12698049,65535,0,0,0,0,1,2,1,6,18,18,17,0,0
Style: eva broadcast,Sui Generis,27,12698049,65535,0,0,0,0,1,2,1,2,18,18,17,0,0
Style: eva notes,Tw Cen MT,28,16777215,65535,0,0,0,0,1,0,0,7,18,18,17,0,0
Style: eva other fo,Lucida Sans,20,16777215,65535,0,0,0,0,1,0,0,2,10,10,10,0,0
Style: eva titles,Angsana New,80,16777215,65535,0,0,-1,0,1,0,0,2,10,10,10,0,0
[Events]
Format: Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: Marked=0,0:01:30.40,0:01:32.73,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(352,345)}The year is 2015 A.D.
Dialogue: Marked=0,0:01:55.10,0:01:59.03,eva broadcast,Comment,0000,0000,0000,,As of 12:30 PM today, a special state\nof emergency has been declared
Dialogue: Marked=0,0:01:59.13,0:02:03.26,eva broadcast,Comment,0000,0000,0000,,for the Kanto and Chubu regions\nsurrounding the Tokai district.
Dialogue: Marked=0,0:02:03.77,0:02:07.80,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate to their\ndesignated shelters immediately.
Dialogue: Marked=0,0:02:08.24,0:02:12.55,eva broadcast,Comment,0000,0000,0000,,Repeating: As of 12:30 PM today,
Dialogue: Marked=0,0:02:11.65,0:02:14.07,eva other fo,Comment,0000,0000,0000,,{\pos(488,124)\bord0\shad0\fs30\frz322.539\frx24\fry41}All Lines Stopped
Dialogue: Marked=0,0:02:12.55,0:02:16.17,eva broadcast,Comment,0000,0000,0000,,the Kanto and Chubu regions\nsurrounding the Tokai district
Dialogue: Marked=0,0:02:16.25,0:02:19.31,eva broadcast,Comment,0000,0000,0000,,have been declared to be under\na state of emergency.
Dialogue: Marked=0,0:02:19.39,0:02:20.92,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate...
Dialogue: Marked=0,0:02:20.92,0:02:24.39,eva main,Comment,0000,0000,0000,,Why did I have to lose sight of him now?
Dialogue: Marked=0,0:02:24.39,0:02:26.23,eva main,Comment,0000,0000,0000,,Oh, man!
Dialogue: Marked=0,0:02:26.11,0:02:28.75,eva other fo,Comment,0000,0000,0000,,{\c&H071413&\bord0\shad0\pos(154,432)\frz-5\fs22}Ikari Shinji
Dialogue: Marked=0,0:02:27.26,0:02:29.96,eva main,Comment,0000,0000,0000,,Due to the special emergency,
Dialogue: Marked=0,0:02:30.03,0:02:33.30,eva main,Comment,0000,0000,0000,,all lines are currently unavailable.
Dialogue: Marked=0,0:02:34.74,0:02:35.73,eva main,Comment,0000,0000,0000,,It's no use.
Dialogue: Marked=0,0:02:36.77,0:02:39.07,eva main,Comment,0000,0000,0000,,I shouldn't have come here after all.
Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(160,179)}To Shinji-kun
Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(592,123)}I'll be coming to\N\Nget you, so wait
Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(211,250)}Attention here!!
Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(628,197)}for me.{\fnWebdings}♥
Dialogue: Marked=0,0:02:43.38,0:02:45.74,eva main,Comment,0000,0000,0000,,Well, I guess we won't be meeting here.
Dialogue: Marked=0,0:02:46.88,0:02:49.48,eva main,Comment,0000,0000,0000,,Can't be helped. I'll go to a shelter.
Dialogue: Marked=0,0:03:14.63,0:03:18.55,eva titles,Comment,0000,0000,0000,,{\fs21\fsp-1\bord0\shad0\c&HE3EDFC&\fnTw Cen MT\pos(612,415)}ESTIMATED PATH
Dialogue: Marked=0,0:03:15.14,0:03:18.60,eva main,Comment,0000,0000,0000,,The unidentified mobile object is still\nadvancing on our position.
Dialogue: Marked=0,0:03:19.38,0:03:22.61,eva main,Comment,0000,0000,0000,,We've got visual confirmation.\NI'm putting it on the main screen.
Dialogue: Marked=0,0:03:24.29,0:03:26.12,eva main,Comment,0000,0000,0000,,It's been fifteen years, hasn't it?
Dialogue: Marked=0,0:03:26.19,0:03:28.31,eva main,Comment,0000,0000,0000,,Yes, there's no doubt.
Dialogue: Marked=0,0:03:29.29,0:03:30.52,eva main,Comment,0000,0000,0000,,It's an Angel.
Dialogue: Marked=0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\pos(476,263)\fs130\fsp-6}Angel Attack
Dialogue: Marked=0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(193,61)}Episode One
Dialogue: Marked=0,0:03:42.50,0:03:44.34,eva broadcast,Comment,0000,0000,0000,,Every missile hit the target!
Dialogue: Marked=0,0:04:03.53,0:04:05.12,eva main,Comment,0000,0000,0000,,I'm sorry! Thanks for waiting!
Dialogue: Marked=0,0:04:22.11,0:04:26.71,eva broadcast,Comment,0000,0000,0000,,The target is still operational.\NIt's still heading towards New Tokyo-3.
Dialogue: Marked=0,0:04:26.78,0:04:29.31,eva broadcast,Comment,0000,0000,0000,,The Air Defense Force doesn't have\nthe firepower to stop it!
Dialogue: Marked=0,0:04:30.12,0:04:31.29,eva main,Comment,0000,0000,0000,,Hit it with everything we've got!
Dialogue: Marked=0,0:04:31.29,0:04:33.25,eva main,Comment,0000,0000,0000,,Mobilize all of Atsugi and Iruma as well!
Dialogue: Marked=0,0:04:33.32,0:04:36.72,eva main,Comment,0000,0000,0000,,Don't hold anything back!\NDestroy the target at any cost!
Dialogue: Marked=0,0:04:50.05,0:04:52.17,eva main,Comment,0000,0000,0000,,Why?! That was a direct hit!
Dialogue: Marked=0,0:04:52.64,0:04:55.04,eva main,Comment,0000,0000,0000,,The tank battalion's been annihilated.
Dialogue: Marked=0,0:04:55.04,0:04:57.98,eva main,Comment,0000,0000,0000,,Guided missiles and artillery\nhave no effect either.
Dialogue: Marked=0,0:04:57.98,0:05:01.52,eva main,Comment,0000,0000,0000,,It's no good! We'll never get anywhere\nwith the firepower we've got!
Dialogue: Marked=0,0:05:01.52,0:05:03.39,eva main,Comment,0000,0000,0000,,Is it an AT field after all?
Dialogue: Marked=0,0:05:01.52,0:05:04.52,eva notes,Comment,0000,0000,0000,,{\fad(400,400)\1a&H70&}AT field: absolute terror field
Dialogue: Marked=0,0:05:03.39,0:05:07.34,eva main,Comment,0000,0000,0000,,Yes. Conventional weapons are\nuseless against Angels.
Dialogue: Marked=0,0:05:10.76,0:05:13.99,eva main,Comment,0000,0000,0000,,I understand. We'll activate it as planned.
Dialogue: Marked=0,0:05:18.80,0:05:20.29,eva main,Comment,0000,0000,0000,,Hey, don't tell me...
Dialogue: Marked=0,0:05:20.37,0:05:22.23,eva main,Comment,0000,0000,0000,,They're going to use an N{\fnLucida Sans}²{\r} mine?!
Dialogue: Marked=0,0:05:22.74,0:05:23.76,eva main,Comment,0000,0000,0000,,Get down!
Dialogue: Marked=0,0:05:46.56,0:05:47.43,eva main,Comment,0000,0000,0000,,We did it!
Dialogue: Marked=0,0:05:48.80,0:05:51.89,eva main,Comment,0000,0000,0000,,Sorry, but it looks like you won't be\ngetting a shot at it.
Dialogue: Marked=0,0:05:51.97,0:05:54.16,eva broadcast,Comment,0000,0000,0000,,Shock wave approaching.
Dialogue: Marked=0,0:05:55.37,0:05:56.70,eva main,Comment,0000,0000,0000,,Are you all right?
Dialogue: Marked=0,0:05:56.77,0:06:00.11,eva main,Comment,0000,0000,0000,,Yeah, but my mouth is full of dirt.
Dialogue: Marked=0,0:06:00.11,0:06:04.07,eva main,Comment,0000,0000,0000,,That's okay. Now then, here we go!
Dialogue: Marked=0,0:06:04.75,0:06:06.08,eva main,Comment,0000,0000,0000,,One, two!
Dialogue: Marked=0,0:06:09.88,0:06:11.44,eva main,Comment,0000,0000,0000,,There.
Dialogue: Marked=0,0:06:14.79,0:06:16.88,eva main,Comment,0000,0000,0000,,Thanks for the hand. I really appreciate it.
Dialogue: Marked=0,0:06:16.96,0:06:19.95,eva main,Comment,0000,0000,0000,,Thank you too, Katsuragi-san.
Dialogue: Marked=0,0:06:20.03,0:06:22.09,eva main,Comment,0000,0000,0000,,Just Misato is fine.
Dialogue: Marked=0,0:06:22.56,0:06:25.90,eva main,Comment,0000,0000,0000,,I'm glad we've met at last, Ikari Shinji-kun.
Dialogue: Marked=0,0:06:26.20,0:06:27.02,eva main,Comment,0000,0000,0000,,Yeah...
Dialogue: Marked=0,0:06:27.57,0:06:28.83,eva broadcast,Comment,0000,0000,0000,,What's the target's status?
Dialogue: Marked=0,0:06:28.90,0:06:31.80,eva broadcast,Comment,0000,0000,0000,,We're unable to confirm due to\nall the EMP interference.
Dialogue: Marked=0,0:06:31.87,0:06:34.64,eva main,Comment,0000,0000,0000,,You saw the size of the explosion. It's over.
Dialogue: Marked=0,0:06:34.71,0:06:36.14,eva broadcast,Comment,0000,0000,0000,,Sensors restored.
Dialogue: Marked=0,0:06:37.45,0:06:39.28,eva broadcast,Comment,0000,0000,0000,,We've got an energy reading\nat the explosion's epicenter!
Dialogue: Marked=0,0:06:39.35,0:06:40.47,eva main,Comment,0000,0000,0000,,What the hell?!
Dialogue: Marked=0,0:06:40.55,0:06:42.18,eva broadcast,Comment,0000,0000,0000,,Visual display restored.
Dialogue: Marked=0,0:06:46.45,0:06:48.68,eva main,Comment,0000,0000,0000,,That was our last resort.
Dialogue: Marked=0,0:06:49.62,0:06:51.53,eva main,Comment,0000,0000,0000,,How can this be?
Dialogue: Marked=0,0:06:51.53,0:06:53.15,eva main,Comment,0000,0000,0000,,Damned monster!
Dialogue: Marked=0,0:07:03.10,0:07:05.50,eva main,Comment,0000,0000,0000,,Yes. Don't worry about it.
Dialogue: Marked=0,0:07:05.57,0:07:09.63,eva main,Comment,0000,0000,0000,,His safety is my top priority,\nso could you get a car train ready for us?
Dialogue: Marked=0,0:07:09.71,0:07:10.94,eva main,Comment,0000,0000,0000,,A direct one.
Dialogue: Marked=0,0:07:11.81,0:07:12.78,eva main,Comment,0000,0000,0000,,Right.
Dialogue: Marked=0,0:07:13.15,0:07:15.48,eva main,Comment,0000,0000,0000,,Well, I volunteered to pick him up,
Dialogue: Marked=0,0:07:15.48,0:07:18.18,eva main,Comment,0000,0000,0000,,so I'll make sure he gets there. See ya!
Dialogue: Marked=0,0:07:20.52,0:07:26.95,eva main,Comment,0000,0000,0000,,Man, this sucks! I just had my car restored\nand it's a total wreck already!
Dialogue: Marked=0,0:07:27.44,0:07:30.56,eva main,Comment,0000,0000,0000,,33 more loan payments to go,\nplus the cost of repairs.
Dialogue: Marked=0,0:07:30.63,0:07:33.16,eva main,Comment,0000,0000,0000,,And look! My best dress has been ruined!
Dialogue: Marked=0,0:07:33.54,0:07:37.30,eva main,Comment,0000,0000,0000,,And I was looking and feeling so nice.
Dialogue: Marked=0,0:07:32.97,0:07:34.79,eva alternate,Comment,0000,0000,0000,,Excuse me, Misato-san?
Dialogue: Marked=0,0:07:37.30,0:07:38.98,eva main,Comment,0000,0000,0000,,Excuse me, Misato-san?
Dialogue: Marked=0,0:07:39.17,0:07:40.66,eva main,Comment,0000,0000,0000,,What?
Dialogue: Marked=0,0:07:40.74,0:07:43.40,eva main,Comment,0000,0000,0000,,Are you sure you can just take those?
Dialogue: Marked=0,0:07:45.25,0:07:46.21,eva main,Comment,0000,0000,0000,,Never mind about that!
Dialogue: Marked=0,0:07:46.28,0:07:50.05,eva main,Comment,0000,0000,0000,,It's an emergency, and we need\na working car right now, right?
Dialogue: Marked=0,0:07:50.12,0:07:53.61,eva main,Comment,0000,0000,0000,,And I'm an international government\nofficial, after all,
Dialogue: Marked=0,0:07:53.69,0:07:55.28,eva main,Comment,0000,0000,0000,,so everything's going to be\nperfectly fine, okay?
Dialogue: Marked=0,0:07:56.66,0:07:59.29,eva main,Comment,0000,0000,0000,,I don't think anyone will buy that.
Dialogue: Marked=0,0:07:59.36,0:08:03.46,eva main,Comment,0000,0000,0000,,You're no fun. You look cute,\nbut you're kind of a cold fish.
Dialogue: Marked=0,0:08:04.40,0:08:05.73,eva main,Comment,0000,0000,0000,,You think so?
Dialogue: Marked=0,0:08:05.80,0:08:07.53,eva main,Comment,0000,0000,0000,,Oh, did I upset you?
Dialogue: Marked=0,0:08:08.27,0:08:11.67,eva main,Comment,0000,0000,0000,,Sorry about that! You are a boy, after all.
Dialogue: Marked=0,0:08:11.74,0:08:15.04,eva main,Comment,0000,0000,0000,,And you're pretty childish for your age.
Dialogue: Marked=0,0:08:20.75,0:08:23.68,eva main,Comment,0000,0000,0000,,As we predicted, it's regenerating itself.
Dialogue: Marked=0,0:08:23.99,0:08:27.85,eva main,Comment,0000,0000,0000,,If it couldn't, it wouldn't be\na practical autonomous weapon.
Dialogue: Marked=0,0:08:31.49,0:08:35.09,eva main,Comment,0000,0000,0000,,Impressive. It appears it can even upgrade\nits own operational functions.
Dialogue: Marked=0,0:08:35.43,0:08:37.69,eva main,Comment,0000,0000,0000,,And it seems to have gotten smarter.
Dialogue: Marked=0,0:08:38.73,0:08:41.63,eva main,Comment,0000,0000,0000,,It's only a matter of time before\nit resumes attacking.
Dialogue: Marked=0,0:08:43.04,0:08:46.61,eva bg broadcast,Comment,0000,0000,0000,,The gates are now closing.\NPlease stand clear.
Dialogue: Marked=0,0:08:46.30,0:08:48.03,eva main,,0000,0000,0000,,The special duty organization Nerv?
Dialogue: Marked=0,0:08:46.61,0:08:48.34,eva bg broadcast,Comment,0000,0000,0000,,Now departing.
Dialogue: Marked=0,0:08:48.14,0:08:51.45,eva main,Comment,0000,0000,0000,,Yes, it's a secret organization under\nthe control of the United Nations.
Dialogue: Marked=0,0:08:48.34,0:08:56.75,eva bg broadcast,Comment,0000,0000,0000,,This is the C-22 Special Express\ndeparting directly for G33-1.
Dialogue: Marked=0,0:08:51.95,0:08:53.58,eva main,Comment,0000,0000,0000,,That's where my father is, right?
Dialogue: Marked=0,0:08:53.58,0:08:54.75,eva main,Comment,0000,0000,0000,,Well, yeah.
Dialogue: Marked=0,0:08:54.75,0:08:56.75,eva main,Comment,0000,0000,0000,,Do you know what he does?
Dialogue: Marked=0,0:08:58.09,0:09:01.92,eva bg broadcast,Comment,0000,0000,0000,,This train will bypass all other stations.\NPlease stand back.
Dialogue: Marked=0,0:09:00.69,0:09:04.52,eva main,Comment,0000,0000,0000,,My teacher told me his work is vital\nfor the protection of the human race.
Dialogue: Marked=0,0:09:07.66,0:09:10.83,eva main,Comment,0000,0000,0000,,From this point forward, command of this\noperation will be entrusted to you.
Dialogue: Marked=0,0:09:10.90,0:09:12.53,eva main,Comment,0000,0000,0000,,Show us what you're capable of.
Dialogue: Marked=0,0:09:12.60,0:09:13.69,eva main,Comment,0000,0000,0000,,Yes, Sir.
Dialogue: Marked=0,0:09:14.27,0:09:20.37,eva main,Comment,0000,0000,0000,,Ikari-kun, we will admit that our weapons\nhave no effect on the target.
Dialogue: Marked=0,0:09:21.28,0:09:23.68,eva main,Comment,0000,0000,0000,,But are you sure you can beat this thing?
Dialogue: Marked=0,0:09:24.15,0:09:25.83,eva main,Comment,0000,0000,0000,,It's what Nerv was created for.
Dialogue: Marked=0,0:09:26.65,0:09:28.14,eva main,Comment,0000,0000,0000,,Let's hope you're correct.
Dialogue: Marked=0,0:09:29.78,0:09:31.91,eva broadcast,Comment,0000,0000,0000,,The target is still stationary.
Dialogue: Marked=0,0:09:31.99,0:09:35.35,eva broadcast,Comment,0000,0000,0000,,Our intercept system is currently\N7.5% operational.
Dialogue: Marked=0,0:09:37.03,0:09:39.36,eva main,Comment,0000,0000,0000,,So, even the UN forces have retired.
Dialogue: Marked=0,0:09:39.43,0:09:41.02,eva main,Comment,0000,0000,0000,,What are you going to do?
Dialogue: Marked=0,0:09:41.53,0:09:43.52,eva main,Comment,0000,0000,0000,,I intend to activate Unit 01.
Dialogue: Marked=0,0:09:43.77,0:09:46.86,eva main,Comment,0000,0000,0000,,Unit 01? But we have no pilot.
Dialogue: Marked=0,0:09:47.50,0:09:51.10,eva main,Comment,0000,0000,0000,,That's not a problem. Another spare\nwill be delivered soon.
Dialogue: Marked=0,0:09:52.07,0:09:54.80,eva main,Comment,0000,0000,0000,,Are you taking me to my father?
Dialogue: Marked=0,0:09:55.31,0:09:57.40,eva main,Comment,0000,0000,0000,,Yes. Pretty much.
Dialogue: Marked=0,0:10:01.25,0:10:02.51,eva main,Comment,0000,0000,0000,,Father...
Dialogue: Marked=0,0:10:04.09,0:10:07.45,eva main,Comment,0000,0000,0000,,Oh, that's right. Did you get\nan ID card from your father?
Dialogue: Marked=0,0:10:09.36,0:10:10.35,eva main,Comment,0000,0000,0000,,Yes.
Dialogue: Marked=0,0:10:12.03,0:10:13.05,eva main,Comment,0000,0000,0000,,Here it is.
Dialogue: Marked=0,0:10:13.13,0:10:14.43,eva main,Comment,0000,0000,0000,,Thanks.
Dialogue: Marked=0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\fs35\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(420,396)}Come.
Dialogue: Marked=0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(485,459)}Ikari Gendo
Dialogue: Marked=0,0:10:15.80,0:10:18.20,eva main,Comment,0000,0000,0000,,Then read this.
Dialogue: Marked=0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\pos(380,320)}Welcome to
Dialogue: Marked=0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\i1\pos(380,353)}Nerv
Dialogue: Marked=0,0:10:18.93,0:10:20.13,eva main,Comment,0000,0000,0000,,Nerv...
Dialogue: Marked=0,0:10:21.00,0:10:22.26,eva main,Comment,0000,0000,0000,,My father's agency.
Dialogue: Marked=0,0:10:23.00,0:10:25.06,eva main,Comment,0000,0000,0000,,Am I going to work for them too?
Dialogue: Marked=0,0:10:27.01,0:10:28.50,eva main,Comment,0000,0000,0000,,Of course.
Dialogue: Marked=0,0:10:28.68,0:10:32.81,eva main,Comment,0000,0000,0000,,He wouldn't have sent me a letter unless\nhe needed me for something.
Dialogue: Marked=0,0:10:33.27,0:10:36.24,eva main,Comment,0000,0000,0000,,I see. So you don't get along with your father.
Dialogue: Marked=0,0:10:37.65,0:10:39.24,eva main,Comment,0000,0000,0000,,It's the same with me.
Dialogue: Marked=0,0:10:45.23,0:10:46.49,eva main,Comment,0000,0000,0000,,Awesome!
Dialogue: Marked=0,0:10:47.70,0:10:49.39,eva main,Comment,0000,0000,0000,,It's the real Geo-Front!
Dialogue: Marked=0,0:10:49.46,0:10:50.36,eva main,Comment,0000,0000,0000,,That's right.
Dialogue: Marked=0,0:10:50.43,0:10:53.87,eva main,Comment,0000,0000,0000,,This is our secret base.\NNerv Headquarters.
Dialogue: Marked=0,0:10:54.26,0:10:55.80,eva main,Comment,0000,0000,0000,,This is the key to rebuilding our world.
Dialogue: Marked=0,0:10:55.87,0:10:58.34,eva main,Comment,0000,0000,0000,,A fortress for all mankind.
Dialogue: Marked=0,0:11:04.91,0:11:10.18,eva main,Comment,0000,0000,0000,,That's strange. Isn't this the right way?
Dialogue: Marked=0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma
Dialogue: Marked=0,0:11:07.10,0:11:08.64,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\pos(273,118)\bord0\shad0\c&H3B2C71&}Around here
Dialogue: Marked=0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,99)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,109)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,125)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,145)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,186)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,235)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,285)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,333)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,394)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:09.02,0:11:09.06,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,457)}Nerv{\i0} Headquarters
Dialogue: Marked=0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma
Dialogue: Marked=0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,152)}Central Dogma
Dialogue: Marked=0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,162)}Central Dogma
Dialogue: Marked=0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,178)}Central Dogma
Dialogue: Marked=0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,198)}Central Dogma
Dialogue: Marked=0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,240)}Central Dogma
Dialogue: Marked=0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,287)}Central Dogma
Dialogue: Marked=0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,339)}Central Dogma
Dialogue: Marked=0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,384)}Central Dogma
Dialogue: Marked=0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,447)}Central Dogma
Dialogue: Marked=0,0:11:08.64,0:11:08.68,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,128)}Around here
Dialogue: Marked=0,0:11:08.68,0:11:08.73,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,138)}Around here
Dialogue: Marked=0,0:11:08.73,0:11:08.77,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,154)}Around here
Dialogue: Marked=0,0:11:08.77,0:11:08.81,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,171)}Around here
Dialogue: Marked=0,0:11:08.81,0:11:08.85,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,213)}Around here
Dialogue: Marked=0,0:11:08.85,0:11:08.89,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,262)}Around here
Dialogue: Marked=0,0:11:08.89,0:11:08.93,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(276,312)}Around here
Dialogue: Marked=0,0:11:08.93,0:11:08.98,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,358)}Around here
Dialogue: Marked=0,0:11:08.98,0:11:09.02,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(273,420)}Around here
Dialogue: Marked=0,0:11:09.02,0:11:09.06,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(281,480)}Around here
Dialogue: Marked=0,0:11:10.89,0:11:12.49,eva bg broadcast,Comment,0000,0000,0000,,Central Dogma's closed passages\nremain sealed.
Dialogue: Marked=0,0:11:12.49,0:11:15.29,eva main,Comment,0000,0000,0000,,This is why I hate wearing skirts here.
Dialogue: Marked=0,0:11:12.92,0:11:17.76,eva bg broadcast,Comment,0000,0000,0000,,Opening block B-26 in sequence.
Dialogue: Marked=0,0:11:15.79,0:11:18.56,eva main,Comment,0000,0000,0000,,But where the heck did Ritsuko go?
Dialogue: Marked=0,0:11:18.63,0:11:21.42,eva main,Comment,0000,0000,0000,,I'm sorry. I'm just not used to this place yet.
Dialogue: Marked=0,0:11:21.50,0:11:23.49,eva main,Comment,0000,0000,0000,,We passed this spot just a little while ago.
Dialogue: Marked=0,0:11:24.87,0:11:26.30,eva main,Comment,0000,0000,0000,,But don't worry about it.
Dialogue: Marked=0,0:11:26.37,0:11:29.24,eva main,Comment,0000,0000,0000,,They make these systems\nto be used, you know.
Dialogue: Marked=0,0:11:29.24,0:11:31.97,eva bg broadcast,Comment,0000,0000,0000,,Would the head of Project E,\NTechnical Department Division 1,
Dialogue: Marked=0,0:11:31.97,0:11:34.84,eva bg broadcast,Comment,0000,0000,0000,,Dr. Akagi Ritsuko, Dr. Akagi Ritsuko,
Dialogue: Marked=0,0:11:34.84,0:11:39.48,eva bg broadcast,Comment,0000,0000,0000,,please contact Captain Katsuragi Misato\nof Operations, Division 1, immediately.
Dialogue: Marked=0,0:11:39.61,0:11:41.45,eva main,Comment,0000,0000,0000,,I don't believe it.
Dialogue: Marked=0,0:11:41.45,0:11:42.42,eva main,Comment,0000,0000,0000,,She got lost again, didn't she?
Dialogue: Marked=0,0:11:46.89,0:11:48.95,eva main,Comment,0000,0000,0000,,Uh, hiya, Ritsuko.
Dialogue: Marked=0,0:11:53.63,0:11:55.99,eva main,Comment,0000,0000,0000,,What were you doing, Captain Katsuragi?
Dialogue: Marked=0,0:11:56.10,0:11:58.33,eva main,Comment,0000,0000,0000,,We're short on both time\nand manpower, you know.
Dialogue: Marked=0,0:11:58.83,0:11:59.86,eva main,Comment,0000,0000,0000,,Sorry!
Dialogue: Marked=0,0:12:03.14,0:12:04.97,eva main,Comment,0000,0000,0000,,So this is the boy?
Dialogue: Marked=0,0:12:05.04,0:12:08.98,eva main,Comment,0000,0000,0000,,Right. According to the Marduk report,\nhe's the "Third Child".
Dialogue: Marked=0,0:12:09.68,0:12:10.77,eva main,Comment,0000,0000,0000,,I'm glad to meet you.
Dialogue: Marked=0,0:12:10.85,0:12:12.68,eva main,Comment,0000,0000,0000,,Huh? Sure.
Dialogue: Marked=0,0:12:13.00,0:12:17.88,eva main,Comment,0000,0000,0000,,He's just like his father.\NLike how he's unendearing.
Dialogue: Marked=0,0:12:18.25,0:12:19.51,eva main,Comment,0000,0000,0000,,I'll leave the rest to you.
Dialogue: Marked=0,0:12:23.96,0:12:26.19,eva main,Comment,0000,0000,0000,,Their first meeting in over three years.
Dialogue: Marked=0,0:12:27.23,0:12:30.89,eva main,Comment,0000,0000,0000,,Vice Commander, the target\nhas started moving again.
Dialogue: Marked=0,0:12:30.97,0:12:34.37,eva main,Comment,0000,0000,0000,,Right. All personnel, assume\nbattle stations, Level One.
Dialogue: Marked=0,0:12:34.54,0:12:37.91,eva bg broadcast,Comment,0000,0000,0000,,Repeat. All personnel, assume\nbattle stations, Level One.
Dialogue: Marked=0,0:12:37.91,0:12:39.30,eva bg broadcast,Comment,0000,0000,0000,,Prepare for ground-unit interception.
Dialogue: Marked=0,0:12:39.81,0:12:41.04,eva main,Comment,0000,0000,0000,,Here we go.
Dialogue: Marked=0,0:12:41.04,0:12:42.27,eva main,Comment,0000,0000,0000,,It sounds pretty serious.
Dialogue: Marked=0,0:12:43.41,0:12:45.58,eva main,Comment,0000,0000,0000,,So, how's Unit 01 doing?
Dialogue: Marked=0,0:12:45.58,0:12:47.95,eva main,Comment,0000,0000,0000,,It's currently in refrigeration,\nusing the B-type equipment.
Dialogue: Marked=0,0:12:47.95,0:12:51.95,eva main,Comment,0000,0000,0000,,Does it really work?\NIt's never worked before, right?
Dialogue: Marked=0,0:12:51.95,0:12:56.89,eva main,Comment,0000,0000,0000,,The possibility of activation is 0.000000001%.
Dialogue: Marked=0,0:12:57.49,0:12:59.99,eva main,Comment,0000,0000,0000,,We call it, pathetically enough,\nthe O-9 System.
Dialogue: Marked=0,0:12:59.99,0:13:02.66,eva main,Comment,0000,0000,0000,,Does that mean it doesn't work?
Dialogue: Marked=0,0:13:02.66,0:13:05.13,eva main,Comment,0000,0000,0000,,Oh, don't be insulting. It's not zero.
Dialogue: Marked=0,0:13:05.13,0:13:06.83,eva main,Comment,0000,0000,0000,,Well, it's just a number.
Dialogue: Marked=0,0:13:06.90,0:13:11.43,eva main,Comment,0000,0000,0000,,Anyway, it's a bit too late to be saying,\N"Sorry, it didn't work".
Dialogue: Marked=0,0:13:20.05,0:13:22.81,eva main,Comment,0000,0000,0000,,Huh? It's completely dark.
Dialogue: Marked=0,0:13:26.39,0:13:29.15,eva main,Comment,0000,0000,0000,,A face? A giant robot?
Dialogue: Marked=0,0:13:30.86,0:13:33.02,eva main,Comment,0000,0000,0000,,You won't find this in the manual.
Dialogue: Marked=0,0:13:34.16,0:13:38.13,eva main,Comment,0000,0000,0000,,This is mankind's ultimate\nmultipurpose decisive weapon,
Dialogue: Marked=0,0:13:38.13,0:13:42.04,eva main,Comment,0000,0000,0000,,the synthetic human Evangelion, Unit 01.
Dialogue: Marked=0,0:13:42.04,0:13:47.28,eva main,Comment,0000,0000,0000,,Built in absolute secrecy,\nit is mankind's trump card.
Dialogue: Marked=0,0:13:47.28,0:13:49.28,eva main,Comment,0000,0000,0000,,Is this part of what my father's been doing?
Dialogue: Marked=0,0:13:49.28,0:13:50.18,eva broadcast,Comment,0000,0000,0000,,Correct.
Dialogue: Marked=0,0:13:52.15,0:13:53.48,eva main,Comment,0000,0000,0000,,It's been a while.
Dialogue: Marked=0,0:13:54.55,0:13:55.68,eva main,Comment,0000,0000,0000,,Father...
Dialogue: Marked=0,0:13:58.75,0:13:59.52,eva main,Comment,0000,0000,0000,,We're moving out!
Dialogue: Marked=0,0:14:00.02,0:14:03.48,eva main,Comment,0000,0000,0000,,Moving out?! Unit 00's still in\ncryo-stasis, isn't it?
Dialogue: Marked=0,0:14:05.43,0:14:07.62,eva main,Comment,0000,0000,0000,,You're not planning to use Unit 01?!
Dialogue: Marked=0,0:14:08.43,0:14:09.96,eva main,Comment,0000,0000,0000,,There's no other way.
Dialogue: Marked=0,0:14:09.96,0:14:12.83,eva main,Comment,0000,0000,0000,,Hold on! Rei can't do it yet, can she?
Dialogue: Marked=0,0:14:13.77,0:14:15.17,eva main,Comment,0000,0000,0000,,We've got no pilot!
Dialogue: Marked=0,0:14:16.10,0:14:17.26,eva main,Comment,0000,0000,0000,,A pilot has just been delivered.
Dialogue: Marked=0,0:14:18.54,0:14:19.56,eva main,Comment,0000,0000,0000,,Are you serious?
Dialogue: Marked=0,0:14:20.54,0:14:21.61,eva main,Comment,0000,0000,0000,,Ikari Shinji-kun...
Dialogue: Marked=0,0:14:21.61,0:14:22.71,eva main,Comment,0000,0000,0000,,Yes?
Dialogue: Marked=0,0:14:22.71,0:14:23.73,eva main,Comment,0000,0000,0000,,You will pilot it.
Dialogue: Marked=0,0:14:24.45,0:14:29.44,eva main,Comment,0000,0000,0000,,But even Ayanami Rei took seven months\nto synchronize with her Eva.
Dialogue: Marked=0,0:14:29.62,0:14:32.25,eva main,Comment,0000,0000,0000,,It's impossible for him to do it!\NHe just got here!
Dialogue: Marked=0,0:14:32.32,0:14:35.12,eva main,Comment,0000,0000,0000,,He just has to sit in the seat.\NWe don't expect more than that.
Dialogue: Marked=0,0:14:35.19,0:14:36.18,eva main,Comment,0000,0000,0000,,But...
Dialogue: Marked=0,0:14:36.26,0:14:38.92,eva main,Comment,0000,0000,0000,,Repelling that Angel is our ultimate priority.
Dialogue: Marked=0,0:14:39.43,0:14:43.02,eva main,Comment,0000,0000,0000,,To do that, we have no choice but to put\naboard the Eva whomever has the chance
Dialogue: Marked=0,0:14:43.10,0:14:45.62,eva main,Comment,0000,0000,0000,,to synchronize with it, no matter how slight.
Dialogue: Marked=0,0:14:46.87,0:14:48.80,eva main,Comment,0000,0000,0000,,I believe you know that, Captain Katsuragi.
Dialogue: Marked=0,0:14:51.27,0:14:52.60,eva main,Comment,0000,0000,0000,,I suppose...
Dialogue: Marked=0,0:14:54.21,0:14:56.61,eva main,Comment,0000,0000,0000,,Father, why did you send for me?
Dialogue: Marked=0,0:14:56.61,0:14:58.75,eva main,Comment,0000,0000,0000,,You know exactly why.
Dialogue: Marked=0,0:14:58.75,0:15:02.65,eva main,Comment,0000,0000,0000,,So, you're asking me to take this thing\nand fight that thing?
Dialogue: Marked=0,0:15:03.35,0:15:04.35,eva main,Comment,0000,0000,0000,,That's right.
Dialogue: Marked=0,0:15:04.35,0:15:08.02,eva main,Comment,0000,0000,0000,,No way! Why are you doing this now?!
Dialogue: Marked=0,0:15:08.02,0:15:10.63,eva main,Comment,0000,0000,0000,,I thought you didn't need me!
Dialogue: Marked=0,0:15:10.63,0:15:12.82,eva main,Comment,0000,0000,0000,,I called you because I have a need for you.
Dialogue: Marked=0,0:15:15.40,0:15:16.83,eva main,Comment,0000,0000,0000,,Why me?
Dialogue: Marked=0,0:15:17.47,0:15:19.70,eva main,Comment,0000,0000,0000,,Because no one else can.
Dialogue: Marked=0,0:15:20.37,0:15:22.06,eva main,Comment,0000,0000,0000,,No, I can't...
Dialogue: Marked=0,0:15:22.50,0:15:26.03,eva main,Comment,0000,0000,0000,,I've never even seen anything\nlike this before! I can't do this!
Dialogue: Marked=0,0:15:27.01,0:15:28.41,eva main,Comment,0000,0000,0000,,You will be instructed.
Dialogue: Marked=0,0:15:29.04,0:15:32.88,eva main,Comment,0000,0000,0000,,But there's no way I can do this!
Dialogue: Marked=0,0:15:33.71,0:15:35.74,eva main,Comment,0000,0000,0000,,I can't pilot it!
Dialogue: Marked=0,0:15:37.22,0:15:40.24,eva main,Comment,0000,0000,0000,,If you're going to pilot it, do it now\nand quickly. If not, leave!
Dialogue: Marked=0,0:15:51.93,0:15:54.46,eva main,Comment,0000,0000,0000,,It must have detected our location.
Dialogue: Marked=0,0:15:58.11,0:16:00.04,eva main,Comment,0000,0000,0000,,Shinji-kun, we don't have time.
Dialogue: Marked=0,0:16:05.08,0:16:06.24,eva main,Comment,0000,0000,0000,,Get into it.
Dialogue: Marked=0,0:16:07.31,0:16:11.98,eva main,Comment,0000,0000,0000,,No! I didn't come for this! This isn't fair!
Dialogue: Marked=0,0:16:13.25,0:16:16.69,eva main,Comment,0000,0000,0000,,Shinji-kun, just why did you come here?
Dialogue: Marked=0,0:16:18.59,0:16:22.69,eva main,Comment,0000,0000,0000,,You mustn't run! Not from your father,\nand most of all not from yourself.
Dialogue: Marked=0,0:16:23.33,0:16:27.39,eva main,Comment,0000,0000,0000,,I know that! But there's no way I can do it!
Dialogue: Marked=0,0:16:35.54,0:16:36.53,eva main,Comment,0000,0000,0000,,Fuyutsuki...
Dialogue: Marked=0,0:16:37.85,0:16:39.25,eva main,Comment,0000,0000,0000,,Wake up Rei.
Dialogue: Marked=0,0:16:39.25,0:16:40.75,eva broadcast,Comment,0000,0000,0000,,Can we use her?
Dialogue: Marked=0,0:16:40.75,0:16:42.31,eva main,Comment,0000,0000,0000,,She isn't dead.
Dialogue: Marked=0,0:16:43.45,0:16:44.58,eva broadcast,Comment,0000,0000,0000,,I understand.
Dialogue: Marked=0,0:16:46.39,0:16:47.25,eva main,Comment,0000,0000,0000,,Rei.
Dialogue: Marked=0,0:16:47.25,0:16:48.39,eva main,Comment,0000,0000,0000,,Yes?
Dialogue: Marked=0,0:16:48.39,0:16:51.26,eva main,Comment,0000,0000,0000,,Our spare is unusable. You will do it again.
Dialogue: Marked=0,0:16:51.26,0:16:52.23,eva main,Comment,0000,0000,0000,,Yes, Sir.
Dialogue: Marked=0,0:16:54.50,0:16:57.93,eva main,Comment,0000,0000,0000,,Reconfigure Unit 01's system to Rei,\nthen re-activate!
Dialogue: Marked=0,0:16:57.93,0:17:00.99,eva broadcast,Comment,0000,0000,0000,,Roger. Call off the present work,\nand begin re-activation.
Dialogue: Marked=0,0:17:02.97,0:17:06.80,eva main,Comment,0000,0000,0000,,I knew it. I'm not needed after all.
Dialogue: Marked=0,0:17:40.67,0:17:41.70,eva main,Comment,0000,0000,0000,,Watch out!
Dialogue: Marked=0,0:17:51.32,0:17:52.89,eva broadcast,Comment,0000,0000,0000,,The Eva moved!
Dialogue: Marked=0,0:17:52.89,0:17:54.09,eva broadcast,Comment,0000,0000,0000,,What's going on?!
Dialogue: Marked=0,0:17:54.09,0:17:56.46,eva broadcast,Comment,0000,0000,0000,,It broke the right arm restraint!
Dialogue: Marked=0,0:17:56.46,0:17:58.02,eva main,Comment,0000,0000,0000,,No, that's impossible!
Dialogue: Marked=0,0:17:58.53,0:18:00.73,eva main,Comment,0000,0000,0000,,It didn't even have an entry plug inserted!
Dialogue: Marked=0,0:18:00.73,0:18:01.96,eva main,Comment,0000,0000,0000,,There's no way it could have moved!
Dialogue: Marked=0,0:18:03.10,0:18:05.33,eva main,Comment,0000,0000,0000,,It reacted without any interface?!
Dialogue: Marked=0,0:18:06.13,0:18:08.20,eva main,Comment,0000,0000,0000,,Or was it protecting...
Dialogue: Marked=0,0:18:08.20,0:18:09.23,eva main,Comment,0000,0000,0000,,him?
Dialogue: Marked=0,0:18:10.54,0:18:11.53,eva main,Comment,0000,0000,0000,,We can do it.
Dialogue: Marked=0,0:18:32.56,0:18:37.16,eva main,Comment,0000,0000,0000,,I mustn't run away. I mustn't run away.\NI mustn't run away. I mustn't run away.
Dialogue: Marked=0,0:18:37.16,0:18:38.32,eva main,Comment,0000,0000,0000,,I mustn't run away!
Dialogue: Marked=0,0:18:39.77,0:18:40.67,eva main,Comment,0000,0000,0000,,I'll do it.
Dialogue: Marked=0,0:18:41.37,0:18:42.49,eva main,Comment,0000,0000,0000,,I'll pilot it!
Dialogue: Marked=0,0:18:46.04,0:18:47.34,eva broadcast,Comment,0000,0000,0000,,Cooling process, completed.
Dialogue: Marked=0,0:18:47.34,0:18:48.88,eva broadcast,Comment,0000,0000,0000,,Right arm re-secured.
Dialogue: Marked=0,0:18:48.88,0:18:50.91,eva broadcast,Comment,0000,0000,0000,,Cage contents now in position for docking.
Dialogue: Marked=0,0:18:50.91,0:18:51.85,eva main,Comment,0000,0000,0000,,Roger.
Dialogue: Marked=0,0:18:51.85,0:18:54.68,eva main,Comment,0000,0000,0000,,Signal terminator plug has been ejected.
Dialogue: Marked=0,0:18:55.22,0:18:57.82,eva broadcast,Comment,0000,0000,0000,,Roger. Inserting entry plug.
Dialogue: Marked=0,0:18:57.82,0:19:00.88,eva broadcast,Comment,0000,0000,0000,,Direct hydro-transmission system,\nconnection prepared.
Dialogue: Marked=0,0:19:04.93,0:19:06.43,eva broadcast,Comment,0000,0000,0000,,Plug fixed in place.
Dialogue: Marked=0,0:19:06.43,0:19:08.16,eva broadcast,Comment,0000,0000,0000,,First stage connection initiated.
Dialogue: Marked=0,0:19:13.07,0:19:14.90,eva broadcast,Comment,0000,0000,0000,,Filling the entry plug.
Dialogue: Marked=0,0:19:16.07,0:19:17.47,eva main,Comment,0000,0000,0000,,What is this stuff?
Dialogue: Marked=0,0:19:21.41,0:19:24.45,eva main,Comment,0000,0000,0000,,Don't worry. Once your lungs\nare filled with LCL,
Dialogue: Marked=0,0:19:24.45,0:19:27.21,eva main,Comment,0000,0000,0000,,your blood will be oxygenated directly.
Dialogue: Marked=0,0:19:27.21,0:19:28.55,eva broadcast,Comment,0000,0000,0000,,You'll get used to it.
Dialogue: Marked=0,0:19:32.02,0:19:33.45,eva main,Comment,0000,0000,0000,,I feel nauseous.
Dialogue: Marked=0,0:19:33.45,0:19:35.72,eva main,Comment,0000,0000,0000,,Stop whining! You're a boy, aren't you?!
Dialogue: Marked=0,0:19:37.02,0:19:38.16,eva broadcast,Comment,0000,0000,0000,,Connecting main power.
Dialogue: Marked=0,0:19:38.16,0:19:40.86,eva broadcast,Comment,0000,0000,0000,,All circuits transmitting power.
Dialogue: Marked=0,0:19:40.86,0:19:41.70,eva broadcast,Comment,0000,0000,0000,,Roger.
Dialogue: Marked=0,0:19:41.70,0:19:43.36,eva broadcast,Comment,0000,0000,0000,,Commencing secondary contacts.
Dialogue: Marked=0,0:19:44.93,0:19:47.37,eva broadcast,Comment,0000,0000,0000,,A-10 nerve connection, normal.
Dialogue: Marked=0,0:19:47.37,0:19:52.57,eva broadcast,Comment,0000,0000,0000,,Set the thought configuration to Japanese.
Dialogue: Marked=0,0:19:53.44,0:19:55.88,eva broadcast,Comment,0000,0000,0000,,All preliminary contacts established.\NPerformance nominal.
Dialogue: Marked=0,0:19:55.88,0:19:57.67,eva broadcast,Comment,0000,0000,0000,,Bi-directional circuits are open.
Dialogue: Marked=0,0:19:58.21,0:20:00.74,eva broadcast,Comment,0000,0000,0000,,Synchronization rate at 41.3%.
Dialogue: Marked=0,0:20:01.38,0:20:02.62,eva main,Comment,0000,0000,0000,,Amazing.
Dialogue: Marked=0,0:20:02.62,0:20:06.21,eva main,Comment,0000,0000,0000,,Harmonics are all normal.\NNo disturbances identified.
Dialogue: Marked=0,0:20:06.99,0:20:08.01,eva main,Comment,0000,0000,0000,,We can do it.
Dialogue: Marked=0,0:20:09.39,0:20:10.62,eva main,Comment,0000,0000,0000,,Prepare to launch!
Dialogue: Marked=0,0:20:12.59,0:20:14.13,eva broadcast,Comment,0000,0000,0000,,Prepare to launch!
Dialogue: Marked=0,0:20:14.13,0:20:15.60,eva broadcast,Comment,0000,0000,0000,,Disengage primary lock bolts!
Dialogue: Marked=0,0:20:17.13,0:20:20.29,eva broadcast,Comment,0000,0000,0000,,Disengage confirmed.\NDisengaging the umbilical bridge.
Dialogue: Marked=0,0:20:22.70,0:20:24.10,eva broadcast,Comment,0000,0000,0000,,Disengage secondary lock bolts.
Dialogue: Marked=0,0:20:26.44,0:20:28.38,eva broadcast,Comment,0000,0000,0000,,Disengage primary restraints.
Dialogue: Marked=0,0:20:28.38,0:20:30.81,eva broadcast,Comment,0000,0000,0000,,Likewise, disengage secondary restraints.
Dialogue: Marked=0,0:20:34.28,0:20:37.22,eva broadcast,Comment,0000,0000,0000,,Release safety locks numbers\none through fifteen.
Dialogue: Marked=0,0:20:37.22,0:20:38.24,eva broadcast,Comment,0000,0000,0000,,Release confirmed.
Dialogue: Marked=0,0:20:38.65,0:20:40.79,eva broadcast,Comment,0000,0000,0000,,Currently, Unit 01's condition is free.
Dialogue: Marked=0,0:20:40.79,0:20:42.42,eva broadcast,Comment,0000,0000,0000,,Internal batteries fully charged.
Dialogue: Marked=0,0:20:42.42,0:20:44.45,eva broadcast,Comment,0000,0000,0000,,External battery outlet, normal.
Dialogue: Marked=0,0:20:45.03,0:20:47.96,eva main,Comment,0000,0000,0000,,Roger. Move Eva Unit 01\nto the ejector pad.
Dialogue: Marked=0,0:21:03.54,0:21:05.44,eva main,Comment,0000,0000,0000,,Launch path is clear. All systems green.
Dialogue: Marked=0,0:21:05.85,0:21:07.18,eva main,Comment,0000,0000,0000,,Ready for launch.
Dialogue: Marked=0,0:21:08.25,0:21:09.18,eva main,Comment,0000,0000,0000,,Roger.
Dialogue: Marked=0,0:21:10.02,0:21:11.12,eva main,Comment,0000,0000,0000,,Can we really do this?
Dialogue: Marked=0,0:21:11.12,0:21:12.18,eva main,Comment,0000,0000,0000,,Of course.
Dialogue: Marked=0,0:21:13.05,0:21:15.61,eva main,Comment,0000,0000,0000,,Unless we defeat the Angels,\nwe have no future.
Dialogue: Marked=0,0:21:17.19,0:21:20.18,eva main,Comment,0000,0000,0000,,Ikari, you're really sure about this?
Dialogue: Marked=0,0:21:21.83,0:21:22.80,eva main,Comment,0000,0000,0000,,Launch!
Dialogue: Marked=0,0:21:56.76,0:21:58.86,eva main,Comment,0000,0000,0000,,Shinji-kun, don't get killed out there.
Dialogue: Marked=0,0:21:58.83,0:22:00.46,eva titles,Comment,0000,0000,0000,,{\fsp-3\fs80\pos(531,377)}To Be Continued
Dialogue: Marked=0,0:23:05.86,0:23:06.77,eva titles,Comment,0000,0000,0000,,{\pos(352,487)\fsp-3}Preview
Dialogue: Marked=0,0:23:06.77,0:23:08.14,eva main,Comment,0000,0000,0000,,Eva triumphs over the Angel!
Dialogue: Marked=0,0:23:08.14,0:23:10.40,eva main,Comment,0000,0000,0000,,However, that was just the beginning.
Dialogue: Marked=0,0:23:10.64,0:23:12.27,eva main,Comment,0000,0000,0000,,Shinji runs away from his father.
Dialogue: Marked=0,0:23:12.27,0:23:15.67,eva main,Comment,0000,0000,0000,,Misato's arrogance leads her\nto try to save him.
Dialogue: Marked=0,0:23:16.04,0:23:18.41,eva main,Comment,0000,0000,0000,,Next Evangelion: "Unfamiliar Ceiling"
Dialogue: Marked=0,0:23:18.41,0:23:20.45,eva main,Comment,0000,0000,0000,,I'll give you fan service next time too!
Dialogue: Marked=0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fsp-3\pos(353,389)}Unfamiliar Ceiling
Dialogue: Marked=0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fs60\fsp-2\pos(343,85)}Next Episode

File diff suppressed because it is too large Load Diff

View File

@ -193,6 +193,10 @@
RelativePath=".\src\athenasub\test_format_ass.cpp"
>
</File>
<File
RelativePath=".\src\athenasub\test_formats.cpp"
>
</File>
<File
RelativePath=".\src\athenasub\test_string.cpp"
>