From 40356d67790d32d8b32f50eda608da40d82430c0 Mon Sep 17 00:00:00 2001 From: nuggetcatsoftware Date: Mon, 27 Jun 2022 19:47:05 +0100 Subject: [PATCH] restructuring(again) --- LICENSE | 201 - UI.py => UI/UI.py | 13 +- {web => UI/web}/index.html | 0 {web => UI/web}/main.js | 0 {web => UI/web}/style.css | 0 __pycache__/UI.cpython-36.pyc | Bin 1207 -> 0 bytes __pycache__/chatdata.cpython-36.pyc | Bin 2012 -> 0 bytes __pycache__/customcorpus.cpython-36.pyc | Bin 2241 -> 0 bytes __pycache__/frontend_command.cpython-37.pyc | Bin 364 -> 0 bytes __pycache__/functions.cpython-36.pyc | Bin 5854 -> 0 bytes __pycache__/response.cpython-36.pyc | Bin 3062 -> 0 bytes alpha_main.py | 185 +- {systeminfo => apps/systeminfo}/systeminfo.py | 8 +- .../systeminfo}/sysweb/sysinfo.css | 0 .../systeminfo}/sysweb/systeminfo.html | 0 {usersetting => apps/usersetting}/set.ico | Bin .../usersetting}/settingweb/homesetting.html | 0 .../usersetting}/settingweb/loading.html | 0 .../usersetting}/settingweb/usersettings.js | 0 .../usersetting}/usersettings.py | 13 +- audio/beep.mp3 | Bin 0 -> 650630 bytes audio/radar.mp3 | Bin 928005 -> 0 bytes audio/slowtypebeep.mp3 | Bin 313478 -> 0 bytes audio/typingbeep.mp3 | Bin 260636 -> 0 bytes .../__pycache__/customcorpus.cpython-36.pyc | Bin 838 -> 0 bytes corpus/customcorpus.py | 47 +- corpus/extrawords.py | 21 + data.json | 6 +- db.sqlite3 | Bin 937984 -> 0 bytes .../requirements.txt | 3 +- error.txt | 2 - experiments/NER/image.png | Bin 0 -> 23216 bytes experiments/NER/ner.ipynb | 84 + experiments/NER/ner.py | 5 + experiments/SL/stemming.ipynb | 147 + experiments/SL/test.py | 6 + experiments/VADER/avatar.csv | 13736 ++++++++++++++++ experiments/VADER/vader.py | 21 + experiments/implementation.ipynb | 182 + experiments/speechrecog.ipynb | 26 + experiments/tdidf/tdidf.py | 11 + frontend_command.py | 18 - modules/__pycache__/bootloader.cpython-36.pyc | Bin 2985 -> 0 bytes modules/__pycache__/bootloader.cpython-37.pyc | Bin 0 -> 3081 bytes modules/__pycache__/display.cpython-37.pyc | Bin 0 -> 540 bytes modules/__pycache__/mainsystem.cpython-36.pyc | Bin 1469 -> 0 bytes modules/__pycache__/search.cpython-36.pyc | Bin 161 -> 0 bytes modules/__pycache__/sense.cpython-36.pyc | Bin 1324 -> 0 bytes modules/__pycache__/sense.cpython-37.pyc | Bin 1330 -> 1342 bytes modules/__pycache__/weather.cpython-36.pyc | Bin 1083 -> 0 bytes modules/bootloader.py | 57 +- modules/display.py | 12 + modules/mainsystem.py | 2 +- modules/sense.py | 2 +- modules/weather.py | 2 +- preprocessors/README | 2 - .../clean_puncuations.cpython-36.pyc | Bin 529 -> 0 bytes .../__pycache__/clean_words.cpython-36.pyc | Bin 474 -> 0 bytes preprocessors/clean_words.py | 19 - setup.py | 39 - speechrecogn.py | 4 - test.txt | 22 - 62 files changed, 14329 insertions(+), 567 deletions(-) delete mode 100644 LICENSE rename UI.py => UI/UI.py (83%) rename {web => UI/web}/index.html (100%) rename {web => UI/web}/main.js (100%) rename {web => UI/web}/style.css (100%) delete mode 100644 __pycache__/UI.cpython-36.pyc delete mode 100644 __pycache__/chatdata.cpython-36.pyc delete mode 100644 __pycache__/customcorpus.cpython-36.pyc delete mode 100644 __pycache__/frontend_command.cpython-37.pyc delete mode 100644 __pycache__/functions.cpython-36.pyc delete mode 100644 __pycache__/response.cpython-36.pyc rename {systeminfo => apps/systeminfo}/systeminfo.py (89%) rename {systeminfo => apps/systeminfo}/sysweb/sysinfo.css (100%) rename {systeminfo => apps/systeminfo}/sysweb/systeminfo.html (100%) rename {usersetting => apps/usersetting}/set.ico (100%) rename {usersetting => apps/usersetting}/settingweb/homesetting.html (100%) rename {usersetting => apps/usersetting}/settingweb/loading.html (100%) rename {usersetting => apps/usersetting}/settingweb/usersettings.js (100%) rename {usersetting => apps/usersetting}/usersettings.py (91%) create mode 100644 audio/beep.mp3 delete mode 100644 audio/radar.mp3 delete mode 100644 audio/slowtypebeep.mp3 delete mode 100644 audio/typingbeep.mp3 delete mode 100644 corpus/__pycache__/customcorpus.cpython-36.pyc create mode 100644 corpus/extrawords.py delete mode 100644 db.sqlite3 rename requirements.txt => documentations/requirements.txt (92%) delete mode 100644 error.txt create mode 100644 experiments/NER/image.png create mode 100644 experiments/NER/ner.ipynb create mode 100644 experiments/NER/ner.py create mode 100644 experiments/SL/stemming.ipynb create mode 100644 experiments/SL/test.py create mode 100644 experiments/VADER/avatar.csv create mode 100644 experiments/VADER/vader.py create mode 100644 experiments/implementation.ipynb create mode 100644 experiments/speechrecog.ipynb create mode 100644 experiments/tdidf/tdidf.py delete mode 100644 frontend_command.py delete mode 100644 modules/__pycache__/bootloader.cpython-36.pyc create mode 100644 modules/__pycache__/bootloader.cpython-37.pyc create mode 100644 modules/__pycache__/display.cpython-37.pyc delete mode 100644 modules/__pycache__/mainsystem.cpython-36.pyc delete mode 100644 modules/__pycache__/search.cpython-36.pyc delete mode 100644 modules/__pycache__/sense.cpython-36.pyc delete mode 100644 modules/__pycache__/weather.cpython-36.pyc create mode 100644 modules/display.py delete mode 100644 preprocessors/README delete mode 100644 preprocessors/__pycache__/clean_puncuations.cpython-36.pyc delete mode 100644 preprocessors/__pycache__/clean_words.cpython-36.pyc delete mode 100644 preprocessors/clean_words.py delete mode 100644 setup.py delete mode 100644 speechrecogn.py delete mode 100644 test.txt diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 8f71ceb..0000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [2021] [Nuggetcatsoftware] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/UI.py b/UI/UI.py similarity index 83% rename from UI.py rename to UI/UI.py index 3e0a747..0cbdf13 100644 --- a/UI.py +++ b/UI/UI.py @@ -5,8 +5,10 @@ import psutil import sys import platform -from frontend_command import Pcommand -eel.init("web") +try: + eel.init("web") +except Exception as e: + eel.init("UI/web") @eel.expose def checkram(): memory_info=psutil.virtual_memory() @@ -23,13 +25,8 @@ def checkcpu(): def checknetwork1(): checknetwork= psutil.sensors_battery().percent checknetwork= str(checknetwork) - current_network="Energy: " + checknetwork + "%" + current_network="Battery: " + checknetwork + "%" return current_network -@eel.expose -def checkcommand(commandinput): - print(commandinput) - Pcommand(commandinput) - #frontend functions def alpha_frontend(): diff --git a/web/index.html b/UI/web/index.html similarity index 100% rename from web/index.html rename to UI/web/index.html diff --git a/web/main.js b/UI/web/main.js similarity index 100% rename from web/main.js rename to UI/web/main.js diff --git a/web/style.css b/UI/web/style.css similarity index 100% rename from web/style.css rename to UI/web/style.css diff --git a/__pycache__/UI.cpython-36.pyc b/__pycache__/UI.cpython-36.pyc deleted file mode 100644 index 32d1c21994a06d1b3569847655cf5cbd88885b08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1207 zcmZuwOHUL*5bmCt-I;xYB#KdECMG7%VF`%wK!{Nh9~WXYTqc`rW~X~$*m-QKdx71+ z#pU9`|KQcX)E+%?^vcQV9zY<>q^ql{AN5t$*Q>2o{WtuLzB`2cAy+;d_18E=ih>bF zQ<9O8P_0`j4XK%}&@!_f+GfTbobEZyo>8i`3UgTHgv@AIHCC0m#&V72v6`_wR%eY9 z64sdYl?2UGj7S2iyipp-K>^uTXdm!?tlj#vaAX{WeW+)9dU?xE(1$7N`EiO z2SwP3#{lT>L6rR>P{XKaop`OgEjWnoho}z;PrL7mc%0!b^d$1*xZiz~j&`H&_NS%M zM0xQpkB4|(9~M;<#PaBZ4Gq+8Pwo+}Tu<(n)HXhEulb-064-!kB&rdQ#=Y}IKnDt} z&_$n+k^G+tI!qp=sOy6zL|m9h>k{HTg%;Y^AnG2N`aeOXgt%uN6KNk|vvntq$ju(q z-bPY#m|TE$O0aW+=b`}7>zB*m;*A%mo2F(tmj?w5!?}wloI7s9Z(ZHJau@Fr9tvXB zsYja>=1{-PLNDmrm@L*&(OIziunNo4k`!5lnJ{};LE9;b%&I$-xy<|FP?CGH%4#$E z4Ict>tg)pk2T8vA+)OWDoa%Z`>q*Y|;nJ?m()ZJaP6rzRvNIT`sfdB|Jo$-`0$Wx3 zX%P>@W}LA!$$2k=9ig020do3m6QF=KUrdDLnV$$hFQkv5SaBfym1VyGKk66zJg`7_ z4ep=_Tx9b^fbNpAlUynnc*-NemCbpoDh7y}-^}q16uG9X33H{OnxtSz(T+5Udjs4k zdCv5ME2%*r(0dj<)bZ*j6x`Q`GzCEyUpYyhNPPK+qXM6arnw=K>4Q0UYdmi~E7&;Y WuWURZ7Em;?edS-LZMR)%*Zu*TJQ>aa diff --git a/__pycache__/chatdata.cpython-36.pyc b/__pycache__/chatdata.cpython-36.pyc deleted file mode 100644 index faec1df7a9053ebde2cc1b3b2dead0b131b52fd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2012 zcmcIl%W@k<6qV%%wqwT+oB#$)I}R9wEU*oPI1UPdDx^({!a!k_t5Pl9)=Zarrj_m< z$?6qfz<0nu@C|%`w)_BVR-A6hb|?z6LRB-G$Gx{tpL6b=qvhqroj-o#KhKv+zn7l- z)o}d?hy4jBD$x{`X_{temgeXsnx_R?#M2wJM9XxOR%n&hXq{fB4Z4N<+w=;(O0Ur- zy-sh?o3ur55u4Pm&~QYh;6@K*8|3lU_)In(lSqKezmcijjvf^ z1b0=x@omZ-la?h~6LXrSf*Zexr+GJIR{hGEE_P97AXHmtqS`FirGFTgt1!uU#y(fQ zlvhHuVLf52&beaTTIqQ1DlFh=^Bl3MP`wc5mjSDXd?JfpO=X(pi=bS*r6uS0sE)O4Y9hR@y-qK_R%- zTzgU^iEv+Vcd9#X05yH(s@C7uMWIYoQr;Jgvs|_XBR;J9o1k3jN|fp1;=-@RS20+) zum*qzdUh=lmk;lc?qc*S~?hMQEuI6_d|7iysTs11|?x+MmhtO#5v7!A&fP&pbdtdr_ zG#5#;eg#H|D_LRsAZawyDcW7Xe+F5t5E-B*W(Zqb07e%v3&)QcX+#eP2ao1*2~~_g z{#prc1v8>!xXf9{=!_ZOmaxB7g|QVhP4pL6>PlGgtl-Ko14eumf%^S1z)2J7p3J32 z$5__qs^Bdp!d76L#OQ%b{nkLDA`g8B=XC|seE~D2=u&MI`IDirRn~wTm8wqo2kX*U z7nMjR??7ExL@1fboV#G)ALM8@n#SLVe`6v%gbI8hJ^)v;51}4J_N^=&QUl!FN{aKw zFpP>`fj*feOpKXGqdI7boc!jQus}h&%Id%#qz_O|rICI!G{RVeFpn@OMPDe5*;4b1 z^%(aRZ`tNdFyUyr#mV0rV?o2Ak;hXE$T`N(xX!<5S@SC?@AW1*s;9etCs-cM^qls* zr3=UUm}j7gJw7<}zkYvx!_fYr3&O~V8a&=VI0OM5-gbD^Q+&u|*3%{!ml>_Fag+&a z!Ca`Vq|KP_uuQg%)+XUO9>6^K&$zNtzqG)Nf~MaHY8AmvI(P7#WzP!fLeHl%NddVq zXnoWI$nju`b`RjL*Lt#79xb5&JY%DB&2_M>T>6w#=!&Pr9si|d7Vx2qr$3L{$LHUn zXY4t6hkok(OWiIqkvlw*u3ogx<454U4a!4ywKp8ipJbW}B|a;MujY?9m8Z&O98=}# T$yK=fKaS~tRGpriEl>Rgrh$sX diff --git a/__pycache__/customcorpus.cpython-36.pyc b/__pycache__/customcorpus.cpython-36.pyc deleted file mode 100644 index a147f328a25911159b725613fb7c54e850a40505..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2241 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 diff --git a/__pycache__/response.cpython-36.pyc b/__pycache__/response.cpython-36.pyc deleted file mode 100644 index fc17f17957b2b85080eff22f5bf45dcbd669b68b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3062 zcmaJ@YkM2T74}N9Y|EB!fdnTZj6)yeP^`tr6iRe?VkHNb8e&EZnx8I{99COb94WhJM&ow{4Rd> zU(wtg%~3=RYEp~lsZ9&CNK4eAWm=&wt;TD7j@D?MHfWPB#Pd9&r|4+3xkTTi@6!(eb?Arm7X66cj$3@0eoXJs9Z*;3UAjx}0qW8oy-z=( zpMt+iAMiE$kgwA|{fvH2zo1{zJ^G05)34$szCj<;19;h_hjGL&&?k64MZd=LX?jGz zq2Cgx-_Zg6o<5~R`iuk}QICiu_2YGZkzyKHqT3G)st@ZR4Cx7K3V0%UJl}t9H#_3U4+xrCYA;2Y;7F{%{BY9N1EN$i$H; z3wJdzL@qri2g{W4ps?q-h$k>jrnEAe6=oz*E4Ol%>bmC)xXnj0Np7?K+M5r?b@w$( z$E>#FRvv~F4UCqya4QdF!GvZa5qau5kHk>2RI)O2OCQTrX#!R?3gecQW+o?zXpP&n zV_V3SDcv`Diewn=y5VTvv1Rx7+}1~#)U01739E&L7RlHu>#ps=p<-6T)tL26nw5pj zZ(3#xQP?}~#*}}oBI%WhC}g!Lk3~`f z^7{k9C@htJ*~13016A<0hh@%JQiCA!8f$A6$1-9xlX$aZMq>mJj{7`re<@%)(&si$y=RT^ttsj<(BK65RioeGm9~E%L!%?!#C7s#G4SV=0%bXgzI>T(7VWn zueRs4d|ImJXke=O5mJD4iu;H@4nVUfBl4(ol)yESl#sY}MZ8#eJ_k%vx(hF{Dx^iZhO@&&B9 zu)aFp=4#k2(6$*GTk;hv=nQr`|GMD*j?_bR&x!OVI(j;BQy-WfzGO$pq|X<}btbhz zKY9dr^$9XFP<8wa3D38DaWn|PYbVg_C(!N*^afwfO5MY3qe5uABkX=0q-v1i%Ob~i zPo$ODq8oKnoO-BQp2RyDa%HnbU}bb_p<|Kr%a|>d%U*HVhl4{LEjg^&99zU>!WO*a z0faAg@y%Sm3(w&(+3me`@Cg=?J@`Nzw*UYD diff --git a/alpha_main.py b/alpha_main.py index 419fb6f..932bf34 100644 --- a/alpha_main.py +++ b/alpha_main.py @@ -1,169 +1,16 @@ -#this file is used to group ALL parts of the program into one file -#Compile only this file as all others are just functions and only this file can call it -print("Alpha V3") -print("nuggetcatsoftware@gmail.com") - -#import modules for chatterbot -from logging import shutdown -from threading import Thread -from chatterbot import ChatBot -from chatterbot.trainers import ListTrainer -from chatterbot.trainers import ChatterBotCorpusTrainer -from corpus.customcorpus import * #imports the local corpus -from chatterbot import preprocessors -from modules.bootloader import startup1 -#this line implements the custom chattebot preprocessors for extra word filter -from preprocessors import clean_words -############### - -#importing modules from modules files -from modules.sense import * -from modules.mainsystem import * -from modules.search import * -from modules.weather import * -################ -#importing modules for the UI -from UI import alpha_frontend - -#import extra modules -from playsound import playsound - -#### -from modules.bootloader import * -extrawords=[ - "please", - "would you mind", - "do you mind", - "tell me", - "let me know", - "you", - "telling me", - "can you" -] -#defines the bot -chatbot = ChatBot( - 'Alpha', - storage_adapter='chatterbot.storage.SQLStorageAdapter', - logic_adapters=[ - { - 'import_path': 'chatterbot.logic.BestMatch', - 'default_response': 'I am sorry, but I do not understand.', - 'maximum_similarity_threshold': 0.90 - }, - { - 'import_path': 'chatterbot.logic.MathematicalEvaluation', - 'default_response': 'I am sorry, but I do not understand.', - 'maximum_similarity_threshold': 0.40 - } - ], - #this adds small functions processing to clean remaining problematic words - #that could break the system - preprocessors=[ - 'chatterbot.preprocessors.clean_whitespace', #cleans any wrong spacing with regex - 'chatterbot.preprocessors.unescape_html', #Convert escaped html characters into unescaped html characters - 'chatterbot.preprocessors.convert_to_ascii', - ] -) - -#set params for TRAINING THE BOT -trainer=ChatterBotCorpusTrainer(chatbot) -def trainchatbot(trainer): #works in tandem with bootnoise.startupnoise1() - trainer.train( - "chatterbot.corpus.english.greetings", - "chatterbot.corpus.english.conversations", - "chatterbot.corpus.english.ai" - ) - trainer=ListTrainer(chatbot) - trainer.train(conversation) - trainer.train(conversation1) - trainer.train(conversation2) - trainer.train(conversation3) - trainer.train(conversation4) - trainer.train(conversation5) - trainer.train(conversation6) - trainer.train(conversation7) - trainer.train(conversation8) - trainer.train(conversation9) - - -def alpha_main(): - user_name=checkuserdata()[0] - user_gender=checkuserdata()[2] - random_functions = random.randint(1,2) - if int(random_functions) == 1: - wishMe(user_gender) - elif int(random_functions) == 2: - wishme2(user_name) - while True: - query = str(query) - query=listen.lower() - if query.startswith("alpha"): - #listen - print("listen") - for x in extrawords: - if x in query: - query= query.replace(x,"") - else: - continue - #direct function calls - if query.startswith("wikipedia"): - query=query.replace("wikipedia","") - search_wiki(query) - elif query.startswith("wiki"): - query=query.replace("wiki","") - search_wiki(query) - elif query.startswith("dictionary"): #need to scan: allow one word only - query=query.replace("dictionary","") - search_meaning(query) - elif query.startswith("meaning"): - query=query.replace("meaning","") - search_meaning(query) - - #system actions - elif query.startswith("system"): - print("System actions") - if "ram" in query: - checkram() - elif "cpu" in query: - checkcpu() - elif "battery" in query: - checkbattery() - elif "stat" in query: - systemstats() - elif "shut down" in query: - shutdown_s() - elif "kill" in query: - kill() - elif "flush DNS": - flushdns() - elif "location": - my_location() - else: - speak("Unknown command for system") - - #humane query - elif query.startswith('what'): - query=query.replace('what','') - - - elif query.startswith('where'): - query=query.repalce('where','') - - elif query.startswith('when'): - query=query.replace("when","") - - elif query.startswith('how'): - query=query.replace("how",'') - - - else: - print("AI response") - - - - #cannot identify, dont understand or give AI response - else: - #ignore - print("ignore") - - \ No newline at end of file +#Import modules +from winreg import QueryValue +from modules.display import slowprint +from modules.display import ascii +from modules.bootloader import checkuserdata, startup_main +from modules.sense import listen, speak +from corpus.extrawords import * +#################################### +#INTRO +results=ascii("ALPHA V4.0") +print(results) +slowprint("Designed by PrivacyRespected in the United Kingdom") +###################################################################################### +#GREET +startup_main() +####################################################################################### diff --git a/systeminfo/systeminfo.py b/apps/systeminfo/systeminfo.py similarity index 89% rename from systeminfo/systeminfo.py rename to apps/systeminfo/systeminfo.py index 7ecdbf8..bdd967a 100644 --- a/systeminfo/systeminfo.py +++ b/apps/systeminfo/systeminfo.py @@ -9,7 +9,11 @@ memory_info=psutil.virtual_memory() print(memory_info) -eel.init("systeminfo/sysweb") +try: + eel.init("apps/systeminfo/sysweb")#this is when you run this on VScode +except Exception as e: + eel.init("sysweb") +#apps/systeminfo/sysweb @eel.expose def generate_data(): def size_utility(size,initials="B"): @@ -44,4 +48,4 @@ def size_utility(size,initials="B"): pass return data -eel.start("systeminfo.html",size=(600,470)) \ No newline at end of file +eel.start("systeminfo.html",size=(600,470)) diff --git a/systeminfo/sysweb/sysinfo.css b/apps/systeminfo/sysweb/sysinfo.css similarity index 100% rename from systeminfo/sysweb/sysinfo.css rename to apps/systeminfo/sysweb/sysinfo.css diff --git a/systeminfo/sysweb/systeminfo.html b/apps/systeminfo/sysweb/systeminfo.html similarity index 100% rename from systeminfo/sysweb/systeminfo.html rename to apps/systeminfo/sysweb/systeminfo.html diff --git a/usersetting/set.ico b/apps/usersetting/set.ico similarity index 100% rename from usersetting/set.ico rename to apps/usersetting/set.ico diff --git a/usersetting/settingweb/homesetting.html b/apps/usersetting/settingweb/homesetting.html similarity index 100% rename from usersetting/settingweb/homesetting.html rename to apps/usersetting/settingweb/homesetting.html diff --git a/usersetting/settingweb/loading.html b/apps/usersetting/settingweb/loading.html similarity index 100% rename from usersetting/settingweb/loading.html rename to apps/usersetting/settingweb/loading.html diff --git a/usersetting/settingweb/usersettings.js b/apps/usersetting/settingweb/usersettings.js similarity index 100% rename from usersetting/settingweb/usersettings.js rename to apps/usersetting/settingweb/usersettings.js diff --git a/usersetting/usersettings.py b/apps/usersetting/usersettings.py similarity index 91% rename from usersetting/usersettings.py rename to apps/usersetting/usersettings.py index 1494671..c157393 100644 --- a/usersetting/usersettings.py +++ b/apps/usersetting/usersettings.py @@ -14,12 +14,21 @@ from chatterbot import ChatBot from chatterbot.trainers import ListTrainer from chatterbot.trainers import ChatterBotCorpusTrainer -from modules.sense import speak +import pyttsx3 +def speak(audio): + print("Alpha: "+audio) + engine = pyttsx3.init() + engine.say(audio) + engine.runAndWait() + #imports the notification system. from win10toast import ToastNotifier #start the eel session -eel.init("usersetting/settingweb") +#eel.init("usersetting/settingweb") +eel.init("apps/usersetting/settingweb") + + #screen loading session for machine learning chatterbot @eel.expose def usersettingwrite(username, usercity, user_gender, userdob, useremail, useremailpass): diff --git a/audio/beep.mp3 b/audio/beep.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..169f24275fda365854dc9ddfec46c896bc5b6506 GIT binary patch literal 650630 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

3|u#hs6 z>v8b7l}^4$5oo_G#msS|IZo2EFMwGzrc}m&$HXPICZa}3z3Pi}+M69!;Kf9)mLa37 z3(oe>CPT7e2%kzQtc|8LnBP>9CWO#&DD<3Z6;^3s%lvxs% zykz;hWr_u5GC=Z7ESRsyEijr%HfCmKMNmxw+^U*>Zj$xdS=lu&1PyTlU3-J@f^il1 zkWZGN8LgZU9VOWThS=gs3SvM6!3zcJe3Q>IPCG-IwM!`vm2`AW*@^q-3Ee`W{v5$$ z=BnCvoV!XaNi(HWs8jVXo>a*2`2F<<7co*@E+?U>;&oZi=vh47ZDD}pB!i?v60Tu!_AlkAJ_YWT9l4n zC*BuULS$o9m!ea|mL=A-b~YP*4-2r?#+5#;QkBz_1ts+ZH3?2RS#qh8P)M?Ix}1@) zH=Ii@+ZBqX6QyK%UmJe{hm3W|(YE?rE{q;Go7b`=g|Y78cCTluKgVL;Vi zO*)2YUrZlXKI1LBYyrn$=|clWSTcecs@5kWNvNYaVXhY_X&jUpYm>DlbZf{&IOIpT zq2qYLUQVbL=gavO3X=YE9ny;7$Smrjcq@i_xWTZym}%15K#P%*bR7luQIx2dfrHS2 z$2y5{Ld^(c(lkvOOZk#dLC#M9`@&@Bk0rZWxdTjlVxo(;B|VRq`@hn}_QHs<` z1~Q3;X;78iSz#`rO8xq*&}dXi6rr6M`Ek}W))2&s{K{QVRa6<+vJ5Z%tyULOlGBV=cGv3s6iGLE%O`r4HLmB;)}p21 z?$35^^x}q)_RgMG0=tlw2G0p&K!#Z^8Wu$2!Bk@<0qn2LI8eUN-tW?XYhT~3=~nNz zdH=lLwT_)E^CvT|)c~+qRYHUHnS|MsxKU{1I&r9@ZjcD+6Wr;@AB%Jkgf64b?!0

=RuqG$s4r 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 literal 0 HcmV?d00001 diff --git a/audio/radar.mp3 b/audio/radar.mp3 deleted file mode 100644 index 8218aa8d9266178364a3cd7d9d260979ec77216c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 928005 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

  • @#Nzw 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ΝOQ6O8^e&$hFuoJzp7R06Ol$S}a>;?*I( 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

    k~&hF0r{wb@ZE3TH26Ps{Zi?Cf(Db^De_ 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 z zUcQ@Yb45iFj+X`<3ctB2KDV3hx;*me zPb)liF`Z!Gyd*glR2yKO+I*%i^bADy7cl`SXj^yUS{~bEVDE!V`Eaqe+Coi0aBH(S&J4Ejn zPEt;%zjg>bnB!Tw_xtZxzh0bcC1d0m(jWtzJPHYw#8jiC(x1gaF~wlnxc0 z{T%85O(QHB+H$iTo{*S_mlk21iSPw{&(o*vc~Ti(x@`3GeZ)0+u)7fSo*i$g#KUJb zcW3q9oE(mxy^}BHDs~nkPAoSUz4cu3jMKfn#hGfRMRz}nA66(lB6_YQa%7$9LkdXx zbtP|IE3kk)LP!@%01xCB$FBnIkk z@>2E>KeY;9OcSa4mw%yKz;9I#Q5FYhf`!xfLkI_9bP)l%ga`r*h?=yKD>?^p?JXv4 zNJdCHI1?|APm#=Iiqpsdy_KlM`D6*IKt^Z9_#T~?=f{h`GtSW+eREFa`gJJ*NbV3c z?OKPc-S+p$$)_}7pJWFfBq>>OX*Ek(^cuv9rzZPs4tE>;dK)nwD$-@wywDF$k{=Ef zgoS48KcBRvP&-`lNh7h4V(!OxHTUI=5&H{!9m4x}7uY{JX{B;7xgUR3N5N~V-BrRe zBQHj8KdSfE+!6UJpDOjQjPJxXNb2Yx{F4JY?6<3JtyVi@fO!PN%<%MD!E{Xu4|e-u zyPcDQ2D1xa!ETA7He&)IYnk0lV_`Tst>>)OD{Qzk{U|_n&jGTzajz=zY&5?3Y$| zN!Z*cp&WY^ji65kqieL~{H=AuV8BG(wWS;E-L)?LKaX9J8)0uJ$6Qw4m%RVYj4F!g zI&h&V(?Q*9`{X4vvwvjXZ92v-tp&W`tpTsN5i0&*4!bI+T35vZ4cmic`dov_SuH%j zO7(ac1SLu{2R5~s(D8#XILT@OPU8yV8HWY?rvaW&ZmIConNPVo(qH+NUg>$PT!a>? zFP5}jGE(ZJ5OmRPJp>b=HHjWcvs0QreMO9(#^|H85CZQB^J5~%3tJUzGAwfDlYpQpb5BQcvj&jIkx zl%+wL{ThXjFcE=6g_(bE3fq~BFI+owug_+E?~NTk#{o22JBc5IGf}d{YuFsA5>3ALRrrK^O|E^Z>eGr8mAAG< z6<)z>g=xu_G*^Crbz557KdW;tdQTy}TUS+z@euEec}iFVUwA5Rw zI>UL6*;rIbfJGo`Z)eA@8uI0N$lOyM(}24?2KSFUIA~Q*t37DVw7A{Duu^Wm@V;}s z$a4;y@xL*4iaiSOSwd>xVC;BD1Zyv1a>OA}Qakn~qFoZHjIBia z^Z6df#44;K{qnFz{Ql;Z=MDdqCZ0$%Hu_pJ`7nA(oVC)WH{3WB3iv_aary5la-v-Exel-A*S#Xg66c-52F$^$Gi3h;R)qb5oI_)yUj3)*jOC-l#h= z@Avlb9Ez(?;@=fk)^1xh;BPk7O0;a-F8|rCp zQ&s~zZ*LZd=)AXW`nb)xGyNUOGDh+LJg|39(%S&&LPbX_u=snL(77l@!Y0qF1M77Php*3O$YS zUGDIkQEXHq_&QSp=zy$!T~@R)rt~VJ1xx{O(;e%O1O!a{NO;||M~%GRI#Zig_v40= z%EmjcB&1h8uGO7ICiGv{TemXV~*UNyFRk#!ys;brQ^2e zk;$jyf`~HEGH4$=vD9J(aFwKg#b)g_YA*|oC}7P|_B6=GR5zsIKbx+- z6>WYpbNHj68;J0$w`|-|`OllB(#4hh9JTKgQ+MKT=Txl=Rzz3oN~iZ*KW{X;ch5#^ zXJX{ld&?B<~MiUO* zT^(y9crE|@NHFMCVzz1%YA7WwC={2)QfmMgL86vgRhpW8w3!f^wS)uOZTUXeTAP;v zeQ8Qr$YeeabQzcfkU(ByZA<5H*(2KHA)B(Tn4&S4$6>9ZE1k1WU$^(vY~1%WvIl$g z%Pz^sv^jK$z#clykq!{Odk<2M2MZPP z%p^hqB3&6k{W?*I2EU5uM zE^ytrK#)3C-Ep`1WX^hWXt1jyUG)0$o}8t_%6#iVqxQQq-?H(K0LPYm0R^Xd$DiJG&EmGCjF5v}}FlDi$#rS<&r?%{z=Zbj`(@AP=~%CW7! zf7N)$KEjM0g|pPJEm0^uvZtGs?BcjPmM(jH0Z5r(NciU~!D@<6$Q4yT)UswI~Fac0bl zaZomr6l*ConW2tFLHX;y_vZrZUwiRInn76iK!jx<$p94#F10*DV1hab zf*_Cn;)f%)ynd7K>ifLzLU(Ie`l4h8a{L`2DoPcal{t&FLES$; z3iHYjd_+A73r!0~cAUsi$$up#EvgSPFXR-&VtRWK=)4xWei_{I0Kr*l^M>FWZT>ZX zqiqkRn>?o2^swR^-wEwL|IB>{#|SxC(K7x z516@$hr zl_Y&H+DI&sDMEQxWk_oGJY<}h#-I+gCNL1w{G2XtPAG$2(yCo0n3<$q0lupSK&*-RyqgqLKwOwf#_O5!^BUUhUx?cTPatB7tS4!NpU01Z{}OIwmf$8^#$)Y zU2A-KaZIm19uI_S&pf&Q6L%7AKxB?2J^Fb2X+(Vdu^TRa`>zXUxU!hv437BibJ2fw zKXj{L(5g~oWhbO_W!S4Y^+>ay+lx~j<%a#Qn%wfTCnRESEX}zJ_YdQ>-V`jttgo?C z&332Zk=jVx@2|?y5(rMSCqrbG%Gq`2K2JO%?D{*UKp5A8X^U`>au_x7T22^VV!_4Q z!dIJXfp^*}IH+u(ziRJ&X+S^t<7w5F@sD++%_0z$$SsNB^_!usq2x&c^>O)DObJ~S zxjFz+la;)1#9k&J75K9UgJ!n7061Oo$qD~t)WT}r<%Xr#Z|%utciTk7DTx3R4m&_B zb<~=+qlI~1MkPE5Bd*rM-zBQW@AZzov|I4&WPZZRvmkT2vy%*%atkO`;>c7 zQW1&H)0hvp{3rR4)OE(DQ>1w|YwLDwPV}S|8k;Qlb&FHhXtfDhGnCP%|l38Ek@oMd5(>F#brPun5M z;xc;#RIc#QMG;jumHCo!L4rW8^sC!37+a-QQc(U#_Pq)N&5wO=?-~WDo!h&16npgf zbKJ4teMv_v+G}fnRyO=z|Kj`ZUcTl25T|sBYaSlTcVU1}?Aa%$<;0x?9_ZfzYc6DS zx7^9WH+-6ULzO#si?_A*M?Kcbc{9J4RCP?{wUWKpY}3%Y2U`PqB3u{a694bMuy=0! zeQ9U2W6U_~M$8gCRpn@5kO!7(RRKFvoRmJpaFDN~$#>L*cFM;wGioMmhEgx@Q7fB$ zJClOrj>`$amemj`=P{2CVI!+BgCg41**Z-lU=b!#2zH@jEq=1EJ=5MLKBriZ4IEF>yb!2zUSl_h~x)@zPIC!Yk4QlmkzJp!(@V5{_T2a|! zK-aE?uy^PjN|Wcd_$-M8o$nIb#ZL~e9J}z5_~p-^&Y67Pg#)9L!I}-Gz7Ib4W;^(V zyw|<_{*znP{-CsZGY1Eq6OWJV3SVPczS`%_xMKY9aP_x$;mD2;GmR0fm=kmTPR$(Y z|7ZM)|My{I;P1M{DROYM{{NWS{$ptSX9d7tRmrrmL-a>(1671oLQB>w>!oiKOyU)@ z$u@&y1Yxd_-dM;0Thoil$z45VonYys>|O{^la2-s1G%;6);q}zMybaq*T$E%(8}82KJc+_|@t zKOa%4J~6QS`H3f0i{iAxIzL=`lPN`OJS|?dt6Novu(yB=QlwgGjeS@`YK33aKEpNc(zb#R2)x^}<&%_o-1%N+<=cK6nqOVjeiSiXF` zR!$Y7B8Vu5_sd+k@SNMP(#A@EA?ACP>(`VYRJ=B3I%uifyh;Z+%j~aGu@hK8C#b+P zSh_6SVCPj@$4JR*my+)6@HW5NwmG7qly;W1s5U`DfF1`%$bk_~d~}SQOKqNtwvs+Z zDODHTrQ@fBMJZ#6QR0YcrK^X>s~#WTLla6LZK(#MXTubKC-K?T;!wJvn}$&>Xf#|_ z7}RH=1TtqSi)*;H3rU+PN38syM35eS8v3;8+tX!ftradbc0{mG^{z9)64f4abNK02 zQ*oW$0hR5Ur+QqTx9wnyx1I!D_WWxUJ|nvJ*>GSA6GFn_s;AHG5M}xmIU$8G%Nt7m z83Sv!x8K}bQS+-frtz<`{GETExWSn@cgme_e_x-*0y0pwc5y+1%OZjskg|6Gg{dcn;t5HGbL}^Ij27~MFsLIfW=pjW0L-cZf zVMMMZ);Y;kz=H7>WtasOrt3ZcjDzjb~}DobEYC>q&`{6S{_K#n78zISVah&e(NZ^Dn~aV`m@kz1v*cp z1aGN43R4=ITZ+;|=0X%ZZDFoxlx~EFB8o=NfkIw$NC(MjGc7+?5~gvshF~tq!X9{x zm1ka3kf4lytfb}W3m=RD&n-faDF4A4X$|;LO_75@!0Mk`ch7XOGPO?^3e=d%Ta-=z z%^2fuN0ApX#~_WT&XFASD_>A5FcDfJjnj>%USiIeDZFP`{0`Al{5Hn?*%s#0+fcwY zZ1)m=CumVmbzbnibb;L#JNLWK>;JU_hyULJ00gBrE5(F#!ZS^5i(7}iLSxNMin!ofN^iGjolDXPgzWb0E|bnUF3DUCjeKI5;Pe>^7OGXnTkFly;XNjNozjWpzv* zsd!ctz$v_rC+3L)hlArh$|@A&59}*yY75-H@#jQC%>6^&kH5LT&2Vkr zb^q|~gBt)u=1N`TufL&F&FTV^fkvi*#6(Gm$cMnor#NO>RwERM z%z=H92HMM3%6d6oZFn6e2mz&p*(5M|h5&fiygy0+L5jnq>UQ1qmjba2Y_(Cb7GjuM zG+LO~fP!xYS=eWB-Oizcxtg!s{BtSiv0wfpnP|sW`!c@K7v?0$4R6CNoL8LlC9kFD zja#nmQHvAQWBXE6-jzSuca76=RP}nk!^b1)_Q4Nk&Ms#je>RVw7!&=0d1ctXem_q{ zE&f64e$4~Yw~AgsyR=?K6@80v^0?z9RO4{)5PQ?Le`Ti^0DsGBfr98V!0*3C;Rk&& z#@4#{`ULu$9lSky+hWh=Ne*`DYvOwOEZ4wK-quJM0tV1EcmP0E7@EjaO2AYLw!=UN zFn3^cphyuN(bKuiV@ud6xa&)ygccEO3W0&gfIWuD(I634g(`*!?=4%`%<2d@TGA)GC@sc!t(tAJ zzkJ)2eWgT|+<%S2QV53;`uQWVO2EhoOE1uX&64qBXv+X!K$|vScxRgQD%0V}WY=A| z?eKiZD^S+JU}Q^K$t3zWOQEU14ADBg-8pMAGC29_JH2BR!OXJi7xHKq>Tb<3;4~pb zaA8;hm?S3{g$gZP;HIG|s##jbCVZGAc{oB8bU2BUO#~QH$zrmUdx7}&;CuX`UIT_X!6UtueQ7V*(aO{KmDx3wp)UC=S7#cpZ#YP z0PtZYBqLlS=!1P=kxJij|JuD8X`%aR_d__HW~&WV;0E|0(JYaLE5y%Lyxp2io=71) zfP)2rZ6RGD-6yG3>dhd9s`EL}vlyW{sDW<7x+%zcllVz zq^!k?(=X+LCnrDM(R{k^`cwYT*r^?#p>6=Aj`T&>UBy$6Ay5-hzU7itLn?u$B`T$% z7QSh&Rm6%Ql9hT;nreRh?N?Ouk17GHFcm5EnD1Q(6$!@hbG5@(lK~*L_Fig8VWcxn z8pWv(D{Rx2R5ibjlq}^Fw9E3{5u&C`f(ogEk}{#w8seLh5+be{?~;$C5kGr_4=LJv z3jq&48Ryj;IrEuR|8wEXgTn{T`E+g~tkrIPeCw}}+?2L=2&@)*#+FE8z;Bv3+Tolkh zj6Ly+kl^c-N_fxP z#bb%$34z+nXxXmNQpwcM7a8}O6m(brOUrO_^YIsU;{V=y*xzn&ri;LSgdK{&qiG@P zuiIXZ?O(UG7J=m`n!?s)P;+MfxiEsTA_V2+&x_vM;3Usg4q<63rbZ-sQX9ij*TPPn zp%i;EW1NZ!C83zLhaeSI#bR;3D9`KrP?ZyWhO9&2IO|+R8o~?7Wy|sh z>)q)l!+lqK5}~}bma^fVf>d7g<2vOk7`YE84`O=Cl*vrklEk8#wd_3$S}!+@E0-G8 zNGL|19KCd^UErbX$ycF6*JGsmw;s%2$ToOU@H5l$QZUl{78Q|r^yjk+Ym#1bJ0L^- zkGk~-9sDyQmhbP+I~T1xB$az?LZmZ(+@A{2&C*&h&d}C!i=O%Wt4*)Px&< z1UX!cQ1vp-MlT-D6}(AzA*W=NS|SL>b>b}XX%~Xvpal$%p*(j=3llh0P7P&p$B0rL!s0MX>|nKChzfb?C=ZSBSD_qTA4>gS(qJFw+{A1fZ z%j8~#{WXK+BfkPy`=rNT+3fjxywAg5_9=3}@U7L(WoF2S)WaH?X~%*L3%*TP)~S zmcQE>ysUvN__#z1VZdIu%hr$}2cDL(VRl&fI^j8q--%NyRAt>je-(UG!0Uwr&%i;d z`a--AE0#yxJxDU%!2(Wz+DQ?F;q%@6wk9p+2n_!|>y8ewwduHq0ccQ3SyI0DwMv6C zA}LJC`C~NJ?Kah`1!epP1oGMm_Yp$bU6T1x>XP+wHYe;ow@x_Od&J)v~5TFjfuSNJHNXwoQhR=5swgH(=1;D(SD|#t2CrJk&oI3Ux$Z)UGv@#$$Gf-nT9dkJ5))4e+_%*Q#kR^TD$|8q z?THmn4wdj0ICo7~b74ay-K@}u>DPPJNq{FAR8iXYmXU;M@1aEk%$7 z8MKfE5DFl2o0TDg-@3LnNflw-+So?W$rxL+?e)rL*@LHBS2a5+GSqId(jecUr2D$2 z!DS1&Zb247MsmLGLFaMDDWy2oRrtXWF1od4f(W8Jh5-tQP{1SA-`twnYms^ml)A8Q zAZMsgpj(Y+ucm*=?RX1qBcAV~&-VmjJLcexI=a<`nb{pL&sjKAlF|%?dtkOfxfbS| zB;AR=!p{e-0(l+koiq52Bd?ejhrNR@eKE|c)hN%1{$^A6YGL$vf8fO1DrS$k7DNMb8$wbeyJ#BS{drB)SHwc64p5n{J?wWXy->7-K^ zzx4GUpU?L=et&+y&vE1)`78IjazEE~Ug!B-WJQnXhF943sWFGGScSYEt}f5<|d0N`TAC=Yn+5mK!z! z9QFXnaG@*&KQ+ay2;0J;nbDvF6e5@-aMkhGb@P{ArzUvQ?>5g@h>hD)QA{OUXDUI} z;6NS`l#{w)M&T_|%7dbhHIEjXbZQM0KfZTSVy_Wji%|j?u;9AxE# zQoe*L(uz_}h1gvcNFlGK)9H7^bOeP0Ts#!H&k0s_@qI+U*QfUno5UL?v8AO!MZE=s zu%j&}Mk1OB;|zACc*2|aYst#Fbc;^$tzXvC_8+7B8CMw9zcC%|nXthZb!EY?5UD;1 zAG$uaFTdS=q`VzIt-Z}eUEepYA}%&VPMC@~cWg_zm>ZCIBMgv%&PH1IK(%771LLT! z3Ukg9W}!sQu+VK3IxK1WozX)Q{_^CSd`|CmSpU!TyzuC(0_$o?^eZXy6KX9ClDaO| z(_2w3ej$r~UI&8iuc|;zGFE%C&Pjp&a)vy@O3;!ZTQz_WZf{dE8$_f;N0?Qhh@wZw z2CH*YlXrl>OP_u^w^NsYm))Jc8khCpZ88DPR2 z?ERH5_S5K(MV^oN=fC6p6H*hSIq|*Y`Fo@63?I{ptH9CiH1oz^Ew*MRxGRIVA9_B{ zKl(T9^6%&6e;VAHn*|9yO4!96{*p6292->A$B#aag|pD7qd7~1oaMetAJfoooQa4I|g=EovV?u9Zaz&|Uv<3#a&M^e3q0Tm`a;)mwMmn~hf^ntr+9vaCq;~@- zQE;{cKVyy`Jql!1v3zI{{uIg&3fm`1rI-e!r*+HZQhuZ>b*9j4_CnzRTmXSVp;;h7 z779SRF_PR=+kUtVfrNnaK;*4t5wNEdQTDZ=G6$lX5jW4&iDjih$eP~*`yxeW@I^gS zZ~LIStA*Fj{N5^A>a4#5SHo3rD$M;Dxg+B+71HGGb;nn7fAD@zOl{TZ!%wipgll1= zz8OzB@;S%jmt|Yd{?9y|`gilk-`WNM7!Yb<**`ahtOGcAPU&Aq>u;Wu|%FQ?iA& zBnDY9rmM;nI||2IvQlg~kx+CcJg_>KEA%EUj1HlMMgy&K1IlA76n_a8v05b+3CN%X z9o%-~U21ru!Kj>RA=sY=qyi4CJDtjKKuPmaX_`Tg$K}Zgi(|;{8IVBi7|bqH11S=8 z;io748}${gsUAFBn%kl59%dyQUUYkQ`JaJz zc>@BM>WBhxu41Glv>JvvE-OHFF_nN?z;j`sv=9sq@PO?iZ2lZN{-ioAIpitmh^iK= zkOVUzv3w{CBO1~UBI7Eq>(G%)Xsc3Yy3r-&OhaJFMZAO9L(g_SO@iC-d)k`IlG(>5 zZzLOzRe6c#*KC>22E~ikXsP@0E%X~v142Yx^K`|Jv3pcsyPmr69kF_|x&~c3a3-L8 z_tNT}>eIiSGDS^VJ`HG4gHR2h9Sv5HvPj1w<~@f8avggBHO(GWr?RjWs6`F)NycyC?`UURyXEl}ThUW162JZpgJK4K&Sx^IfJ)_q$StQk= zUH~txO zqSs<)v!l&vqc`g>2gJRrhUL4P2XCl3obFkA1fwH&aZGz@Ru)tWt5LuK*?pgdf@Fy^ zn_c=k^O9Uv$!olLvxdeVU;)c*eLI z`3w+8xc^|HyE&7sG0@Pq(H>pxs%!cBXU6J!ZFRxR6}gUgUS_7?GG>cdySkzEnD#l+ z)01ArwQw1sz0F(>+yu>IrC{ak*mN80BGT!n4s>3ibHByx^EER)jklp#KEh58-sUwH z5l>I0#OiURI~)(pRbNrA31}I+XHL1L)MUHzX*YV_ylh2^%!n57chg8Ypi}`avnazs zRB1E~P9l-AErR^T7{kWo+<|O*a>HlUEX(A1CDD_kZvsKaI*th;lg=DxM{BMR8QO=O z7Ly)B)ysQ{QUEh0pz52NtfR)6&!mBZC)43qPuHD;zGS(;q(>OLul)>dk3DSio&0=k zH>boWs6-=c>X6?(%OA^*xK1nd>99kU3HJs(ou>^{#64Ai95{U`x~eU9N$)>ffm_%A zV-f%PVk@ziOW_ItWdN(k0^81H=i_NTm2@7l9Z*i>0Z8iM*E}oeB1mO2sjm3G=)(0b z+hTR8==@bhv>!Ja0fK+%aQ`#F+f}OXpoJas%Qom>^l|qfR9^a{Ce$i^a&p+zF6z&R@54@ME}R~|EI~>Z0uDz}nuy`h z3=d)jymnWGZ)FA|kRY>R?b`A{(-<5;=)Oi3DM=s&qzsjjruUUM?p{{)DCps;9x2)K z`Q#gq%?!W0`}LI5$xxEg>gj=av1MNlso+!dboD1reJ0=Y2lieWRy$6xrTJO@HgPHBo_#zJ$C<@Fl#0({)#B|V^(TSk2I9uQULOwl+4TO6 zJ}eI)p2a@1RuM`RbxKUL+zl!VabF+OE&Y{~w)~%V;rtnhpD|4fi$4$0EQd|s+{R59U7fn?_s{5&2Zhx2tph6gw zwSJxht3TE@Df z>AWGx44RLd97(N?Wgu-1>G_-s0Rli)X$D;dR@~uB7Ppy-0u7CYrR*t56$CsT2&&XU z-{4U*JI0YiT;!4NJ?X?^?7Sm(%(WxpR24gqu6EPh()NZIh!9piwA`ODh+x>8=`U*C z>hqG4@jPcw9ub~sQ#c#&xH_0NK2Ukr_UNU3&U%0Ldu#KF6`jo6T2pAO^bRa&!nI|x zN^W5?Brd-jS3L5;zx(R2&;a%9*DK5R_A#@;|1%YDxwwu0KEDc2{wEmmUk$nc1F7(T zrvvUJ81TaH5?d%SL=nm$@jeA0Rs$u(#H13UHq?U{o@7W&fj1KU_&FpCcuk1CUVNhZ z!N>q%Q7uw?(iTZRNlH~zl=_9&D0v+zL&YL&sXb5@^&wv;MGrPc5r9D`kpfEfd5m@b zMziv2*U=(LdB-D-DDPc*LgC;}@-VtrI2{Gq7K?e7O86upOe!6n^L@n0V$!eVrHzGHutRY#z{h+0ggD(M{+4p{|L zs-Hiqm3X|p^|HUZczf%_gZRs1+uy$c`>1Y88AwCJ2|PR>JR)Sz&SMIB49tp2xeG8I z@N`tNXVoUJP%h0y6s^eB^IL}&6O!=obbboL(u1Xl4~14zDOn+v6-1?xb0HX#n(A`4 zOsz%LGyIQ{B*BY37yOXJMq>Sv`g7KoRJw$?fW`n0+-8kv0s9rcUVE+M6PI`ivz#dQ zC^00duY6HvPHpo=fk&p9$L$|iKA0F4NrgnXEbPBNe(%)$pJ1=qQ?afW2gPAigN|-; zg}z0@iCZ^5?!45+-BNF&Avt5#$znA~9w(jnFP!y!wG;=Ox!zj}JFsn^MwT9G2XZ&& zDAGs_E26HG>d-$XFuaEnHjHSF8=(F+C9~^xgVJn48+~P6Mf*Lim{Ufz1-#~tT>zNF zdF&Y1KWxSnpvMIH!=V)V3&!5dM!(~$t;UhkKJ-07rc$*nE-tO|!vLNy88WwXpugmk zwfRNCrhRLz5Yp5@^qK&ew|In;-srgtk|Fof7}m z`|F`a8^6D_vaEzDdhw0{yarRCWgQP8*Jx7VHMts(>U7_YZoUssp%80SkIou9B?4jJ}-eavLo ze1g>LmO+(|?RzGwvCyKOXi)^7nA&dqq7eE2*a!fC2c|oEwHt!zRr27RKn%20XzQYl zWs2jbN_qTbs)c324*8dkXkBt**)CTAokl&$5TD;d3lh!I`W2?K;-|+B7f;Mcp*aLc z%XhkH1@kcepftl+tyGD-q%qF9ssO-01t7G^c!Jg~*V;_w6pk2VxH}8Op)GA<{K`VU z_77b4)j^1wZi6|pIN5gT(*(g0M-7jD3Pk)|t?R;?=O(8#Ik<4ty-#;?;zR~vxU5s3 z|6RlW=8W-%j}oFVn;kq)PQD#_bI(0*gyr>emGq~3FZ^zlySl@H#NxeLTRaiQ%Q(}E zSIob6U-60U?0WgH4e^#+ttj{={;S6=|2#iL0RXW=3b9|=f8G)UHG`0-%JCqG*OQY{ z$}&|NHWQ@SL}ycE3OKHnvqn|q^e;M5ujO)qV3=!CG7n!enrX$Cm7b5{tz zVw2ghLj&FqUCia;yS0ON-Uxf>wK`*0JT9;{>xWIx>VBA>oBpGtzscF4U<7M6{p!bT zdplem=lsIxa{72whW6*4Y3@ZKU{u)VuwPGU*R!0azG8t>&S9!ni2}lj^zNxjmHMtw zf~cT6yeKjSORnN-*M(NzEgSFJnjKrD-f@zZza4jARnz;4x|;SOXIR{h66C{tNMA#rJLd4gxz;okC#g&mq>K z*)ly6&ujfzQ5*mE%4RG4#3|9FKi7ubb{uIW5~EKQ zxQ0qV1}lltDMtAp^oY!SIuU}QNT7FvE)t+2DM!pc89;2-A$2ge?P$BAG(YuQ6m?za z*s%?t;;(m4-XDI+6Jcx8Qf%=v*TJX4Cg8%XwnFxv5al!Xo8Sp$JAU3t4U7`6dsIHN zlyL@PbNT1sW zHDM>eDy2CwV_t8`q^iZ{=RWTk+)79;0N<_n*?L8OJMnS4_J&674cVpS*3#{b!ynu3 zbXqrrMP6A#MZDX;n7{qAtl-3djl%ziF8!}Is7Xl&Ws{JgB*6lVWG%uW>%Jkea_ioBLg%`gJacOVPO6gw@$&tqnx zpY9Q$<-yZ*mCFDqBg}|%fh$5R(vSoQg>v;V9>K$-;b>)D#6dvsf6Nn>0^kIJnj^PJ zNGYCUy_+Yd&a~k}eS*tY$@Wrq(*X~k9YaN4ye@ED#-!lU(}}z5j+cg`(mVV(F-AnD zppv#&6`Gx8>k{rA}w3Rksq7kz?HmwU`DE^KcT05voc zHAE1LVzL|vs!ARbs8D}wG62uUZ%iD^#IH!Hc>3pq1&Gg~Wdh~s!StLQnrt#n@O9KE zi&7)t;BwT;Cf_xW=gdZr|{1$r6%GcU}XvA+4Y_lLE#;{u+gk7yJMCbtnH0k7^I@U*z&GskKlM zBHwqzOl!#Lk0We^K{$Z~IzmLjgGsz#5k(%<=oSD)nN466a}m#*d>tILRMH)?Oxq_^ z7ONXT`>CVK;RSnvMljLBU7z=$eu5|dM}+>mm>vPH$J_vC@^o=Mc%p?aB1}g$8D~Gd zQ+3!4V+Q4VXnnG(X21*hcgk9F*t`N@UTe-#hX`MO>z-?Taah~)#C*t^+uJ^cJ)MIEmoP_PpE4-D z$3FkOEOGr&-+#{g_8UPu{=XfrK;>NuBm}IB8;%eYZ8m%u91~rr%t@1w*<2yx(o>yZ zTU4O;638E7f`3Koss6%BD+h2-&I*#M6_#!u%gGB9a1&DoU3Gad0(^q-lID1U5Dsrv zh&P8dbe~vhy~i!Nk^d|r`Co-tp3b)k>o4GcOH8tKN@ncd^2)7 zA&L;qZkL%TQ}S9!kWDSIc@K$sh7>;&F#nKfs7d}I;lG+d9!1GHqpdL|#&1fkts9^!8d_GcBdDFn^VbaUKlsgfJYWB*ev3Fr_T-()b(!tK_ zEB6z-4!}a^jfn!naDeGTw1d(itU8h`=tSS=(@}9|>C`zalJTs$UJfS6j!JV<9*w9f4B9!qc>@cQ>1_NSMjOg*GFs z6)FfTpe-HlAAa~+zJUoG`Lyx%rQKNKw`gmzw3uW4qV%2B9pnZD4*w!o3V{eW1YVGy z$yjUj63B+~wfmBJ{8yDY0)RI0vd9V_(}jFUg)UC8A=OG-OHp4D=}>DWqAICi4_w+t zn+!MMs4#6vN&G8Hlyw2#&)O!sw=A$U9p*xvyEH@(NJh)!S#7*>yn2kBAKA*XvLU!t zZ;jJ!C&cjPi*lw?AV_gnRYGM$EC=Aj!%8{To3wOTTAG6#?^OgP(@8>7ma8w$mH^q8 zFK43Uz}{-x@;vS3-pN}FMLh2wN*=K~mTnp<%?k&{Z%d9r>Z|+z+)Z!17^huu^tt<) zn^~1FBEzC%PABivVi_xXD!O2gjFvzCC+4@s-BEwmGg#ZdTK>B6UUEMmeKxp!`zs&> z5M`+Zo)AP9mp?=d!bJmC5s5+^1SWwPj^s!atH^sWSP_+YvX*VC2xv$Cw9{G^@E{`P z;k*@OjI}7p&ev~Cx`wpWbwExfgWn*-W-POjlJqmfEf^Hb9WQQ-=%;{JvmEqpO3A94 zO7O2s@fmh64JPooMLa!f+EiUPTm5(`%{gPI zE*Kl8+uj(-E1&eNHuDI{EI96_ynR#p7V_YiTl==1zWqRjA}RGzv~86Flez)y3*BIC~42Q{NGT6p3Y!(?-c zwN5?vh&*B;d%T?iE0h?aI=k{M-tf6bqh9)TaB%&hEhFR{q zxiG*DK168fCE=!C#irqgRUGgE1%pztKvDSq;D>GA>w}=UaI%b;C>X%Ur3~2r`SX69 z;9bUNrICu_Owk(^XgWdzWP4_%ADK%Yey2Au1xe*z^Li<)$L=lW4Bs^@41`Z0%?WAGqzZL3mQ!g*KaUO1Ud>S}r z9HaRB@^uVV^@h;RnUhO#+K$3kPiY)Ql&l_aja9}Q4#Bu|+LO0KU;BPDIU^S-=Z~^F z8N6%xN8mKCLitV0*();I#(Yi(%Ih;$P z{1F_lAkG1~xv)em|3ek52vKfD3}u4d1BBG-lvr77qwySHrE&$|;0tS4S2%@7s4g7+ z9mQiap`ZpLYw%Sp9P1M;TG!tv8al6P9Mm>OwS@Fc;4Y@-2KhmgDpoT0?9eJFVP-JE zR$U8)scII5GWAwa0+g=%`C^FS0^^x!qnb6P6gD>85N8)~p}_23Q_(xd$JxR>Ki~et zUUFGJcOn|?DxQmd)B1Yrxm19QYCgIxW8F%5xbt`8ON-{E=Myp%`Jb|KA8j#vy2Mz0 zWe;{2XE(nYH@Q=;{%y|W5Aq4U{D0-Qe80qH`AxkCX5w`koC z1`7-2jn+$>8uC{d${NS%bS*vFRjnPjtRFfCGeQO7cZ(PAHEEBvdIBqDtU+2cWq^Lv z%+rh%LfR1_A6&Q3u#X%vNI+LO6cM8XS==Weh(P~5RFc(MI{#b(k7`5lT4R_NC|*e+ zEa0_4(s^a^Ug&YSuw7jJDkDcwtsBeP)x2k}c<3?~`+hEK|8d&BkzbnEI<|V{uZ!o} zp@nPmWb*n{^IM*Fywi0Ha#cRN(fp*X$hJE2*4ay;AG<`n6lk$kzDpLE{E2M6PVi?-Q<|l3}#^c~ExV(lmM~5R{w2g)RdH5K08x?3Y zb*!?0u@*|Z#UN7|-9?jvnQM4o-G@h~SuaQ5iBU2Vr>^-u?|AIo=YOJt z5k?O)(9RySIJxshZ7w_N=%6DBe=1V&nO>4(Mhq--7tlT5|N1^$6Jy3LBRTSo4A%?yXfKh`i-!3%LNom-) zJLXwT=)_DV;~+_g+{s7t)TB88-BT-4=gHyZDaGD2=L5U!N+wSUoISX^$G;`?lwbW5 zjo+a;J8aViUI&+i2QThkHf`#;Ah{#WqV?fi#mSma(%%e(9j)drIjJt5j44mJ_ILCD z>v@~F%|-KVKl#j+!um5eM`O~>P+%Tvf3d(0^tcm)hr-2JGG3UMV2&00NHS0l7+=pZ zE~uM*J6ptfctL4m?m)A&48uZKxp&YFEzyhl){Xc>`d)K zeNDAjfqOn=kq0#m_@MkTy%Gzm|pt6 zFlZOzD82I$Tc_kq?!Y52-oxS+xGpoAi~Ttkk{fQ9fUsxb^!&^f#kn zYkF{dl8Y%bqG%%QM@EzxL;50%K6r1(xyzw> zL^t$3p7az(JbG7J)IB$CPLa&dGzA+WLuDRg5{=TQ#}X${hiocZz?_cS3{V1PD?}MV zIy8&JK(v79Ip|cq>h&G!W#hr1kX`gXEbcVpeo-ENVsTYlvmeM!$;AUagNReUn) zqrAYYH;2d4RvSFO)99b8bLz61g%^L!I;iK4)E=VlxB%1P*HE3*3@%h^ZWt%)hDl@i0+( z&+89!w_B^^B*ug%S|Kx+bq_o7igH$7Jr45v*7GH8sxa=%zlXWK%@sJ}@`C(%zI{`p z#5}!bbRn7AlCf;F@G0O~RB-8PfccjoU>>fVwab3^uTj{h9VqwVxIa6~eDikm^(p6g zjGDZF@UIL@uH1S0``htwN5>fU%-ifmWG343v0kDBSIwGzM99fg!lb$86=6{cNkfh5 z1q^k^%E~)<2jIb|@#TE=j01?;y(%(ss{YBVql9jMU9Bu6orI5>8OabYMGA584uo@Z zaQd<2(i&bwy|-@BI{ECSa?ECEi?a>!yX10_!^n{CJp;F!eHzEv ztsRjZJ)MTbcd)x6J?-g7^S?2iw+A*ezUhL`xfvo_4p3N4cb#rhg%~khXoatmK!gff zOR~L*pP<$|s*vPJUbtYzzEEf&_I`+O_CVMPEU870M0XGxJL zg0)D>2U3WVH80atMZleYXpaC9LoK<;U=C14Vf1Om32O+f-rv+I+(6rVd0*R6ghrzSe zksb2*e$ze+e~n_Nb#Jf*=dIezkrh{q(MlsU5KE{mgK=2XbV(=y4i^@HQ5p~kXiIHY zh7dPaXTdnt-j?_39jV@>mo(T^7#MvuAayOlORxE=Uyb$k==-#(sNS?u`B$1rI+Lg1 z_Km7DRn004v3Ei_)1=n?;3lW}hjD$ieLM7B3s?SqvbJE?e(d7Es-paCepLwpgIbOq0Yo)8%`(K)qKoJ#R!qF>%qHB)Se9nu3*rS2f3a4E3w<^E-HxbphHiF<(tB zi=nh%*N|Cd!6RTpqszi*nr3}TC=`z+X`V%4?miY|6R-~_qf0Z%1l*U2m9<1uejJcu zZfRDb1^m=jgRXD8?n|3BD!rhtU$D1L>zb_tB~$Xz!1!3m1O2Pcy3J!6QWa%-4ram5 ze~rSYtW_O%w&3j9Wg)wG*RvPT?I0g+<*jiW+kpX#;=z1 zfn+TP=QDrDD+#mO4AAkHwBQAIfvs>_j>%$H)uOSg?Ld;36e@rwLk6x{k9H;zLJx`+ zfY*2~0S?+k+V$Ch#My#w{Cx#d#p+OVic>HP|%7n<=u2B7Q_Bsdqb~?G#yYXH5 ziMoNHxl7~kB))Uhu`1GAk&{M>i9yRxLYJo-hZ_5cHZdwH)DH(<%U!DVJN@n2)k%6% zQub9Jnyt#oK%J*Yccmr1A0P9&)%m0J^ZN5+_H_X-w@z>WAlwa^TH>lhJ5)W;n{il( zt?)cD#XAwfE0UiA=SqT#4x$fNiGFj$%6v{wFX-Qe{*Kt76B6au#`2(w>toMl#GM%C z&7{x<4|D~IB@eh}O`81yb5)xllKe`HJQ<2K@6hm#%P(U@)_+&I44M)ImyC^Bv_=`d?NKO}COq30)a00JF@)1$S;39$QfnCRk+-o7x+o<87(zD4N-Zz|Weq>6bBfHEOG1YAz<~e=ngINqR)i`X6$tr9(E-J z(a&PS`1u@?_Ue$<$8z#_OA**@BI!tFL_oUE9RyV@bGQ{Vu^763;aERHILvm2>ATolXeb=OH&8zm$$!81@RS$);GX<}pj+7<43<{E{c7Y^L8 zVds~Rn~7y^x}CiksYrE3IY)nlWmYfBcSR8XIrYo=|5T43Z+>C_>feXu0TRe=@DB=k%0O6o$tm%N1U{F!)!&8Gz*X9v5E@0pk`QdHYOoSPZ=9;Y6}>+!b~YNj(7eRE4pV^?pWa0vZdJm)6B3kt%NHnBT-IThYL8bDhq4wDGAbkEoBaD9jdxr zlh^5Y?xj|i^xX+l-k@=C=RZT|7QNe#G`xr~rz50_i=}UrGAoKdM`gA5yh(4#{uB53 z9&ct(GtwN@!r{Y%aH35#5W7vMtDi07AdsO=;w)4ZUQ>Pb?%jtdWbwB##Q2V-W)%?BpPY2r< zjzprCZcFs52#Mb9SuCpCdOKt}qZ&~fbyUykJ&(Wfx}L9*=m(w8T|fMO|16aJuTdZX z5OZ+roF%-jJLFoma!^;!*>QFHD$#cr7K6znQMMOrCKV{jktuZ zMPas%jlKRQcieVmzWI2>5-jM9lvEJ3JQI(OiJFRPt*@dN(?qkH(GBrLA4*0^Np!Is z>QYM6a5IASq%ao}v` z-a~S=MG=2eUk2Twy|ZsszhrFF?lf6ddga8eU$HN{`}lA#3B-(v>SAn%=c$ohKu}fY0IX5s1LBV~T#X>X7*a zN_bdI(mM(fo`WP3AXMr?_pO7q3G)Y)tPUnEoGANRukL-meh+=F$@GS{no7$V{-Ck6 z$fCKutJTdj0l9T2E#7CC022?|H?FM|S?tbRls@}?Ag*Uh>w-u=)2Y45`Or~`i59)- z(#E6=XqP~U5eE|@d=y=1bhO@hJK_GFA6D&QUWK&3M&TFyHTwWtH{ogXZ`>xCOT45Q zs)%&@l>wVqSulIw3bM>5nHyhv%~VH#nHegBD^RJNsc#czIFM|Jehl7H+V88TBjRfj zvMHjgDyW-C7Y-sAcDOt>Omo(#g1Hv3fo*I_0Qi-J#}*p=?4 z1!gt=eEi4+q^=J}Oc13gR3(8YHg+djs3eCHDskPK=o+aMK^h>K0R}NMPdcDrmI2!Y z9f3;&`$*T&QBpaXWj-%Xb@SDh9pAxobga;+=cp%{{JwZKUir~yhf`Heawh7T`q>s?xT61g&ppE@bX3=rAd8jkgrqnexVY=bv+KM@>c&>bCwIENI#*qWYu7 z$%DW{7a(0;V<4fVv?yNmc|J2L<_J2E-?hXgfng5Y$N>ywtg1t+#WxhwP5Ifx6EfOa zl_`de=-Nztx?vMqo}QbunZ(dY%Dt>9e}kHNv+TF+r9J2$3z=mXlv79!6047ghLKB} zQ6Vt8*to!cL78HW`lX{Klu;73g4!=QsU(1q(8)-W4csw}5c^Kqj`tHk8;>qi@EYE?{e2%xRy#ToQ-}`YgvYIza z1soDrkwk5Q*ZDv5R4jwK&^Fl?KD@0)oA5#x_z|M32@^NTozcD0JZ=2*{-0>~?2$)0 zdvp;*P9_XfBNt>9z=@R5dj(vblxmuQN402ngby;zOob-0~_#{>-7 z!d~!?&G(S1A!&j^!U8GOS}_QnSJ4YE)FrZ*GY9~IuOt8{myJewBbZDHn7nOlQ%OF^ zyP97%e_8$d?dTpy!HvE92TA6eSE}+kx#OXVZ@x*q$r=bTF3hdEqI>gpn}L~|_7XYL zM)%5FP;P2<>7C>^>BXx-;;p_C=NUFIh%Ucb3jvMI< zk#dYN9g}xbMunYwc?GH0!Mu3kcEC_l*4G(U0X%QGMRf>1e1FxOCLyI?MHH@3HRpA) zP1_eYWW#Tj73EFo5##YzLhx(9iA3l06J~EUw-@rn2^t+m$colNmn+GtkmmVzSZAePQRfa9&Q(Sbkc41 zra=Bi#~GQ*dz#lSxJ}sUH{c%Z`8un=|J(P@zYLAr7gm#q-G6CYzt(Y$!gEXcksZQ+ zxtvvQE?9A+59j@TT8O33W@IGh1A8_QGyPXBjM|2EzUY?3y=iJjq;YJ;#iH;!J7n3a zo@<6r-oup5r0}hTXDi}JF`;vIpnxT3A)im!fntPb*vLBTV7ytY;(A366ue;aaGfG> z1+e&R#7zT}6Ej0taCS*E*5mECCP%fqBH#|_tuJ1%OzmpCb)6lxbjGjbJWJH=n=WnX zqMax{oQcB*j%XX0Kas2Ne@D-A#nCG}FD2m(w@h6-CT>Yl^-(p~j+0#vj4jquuYO+t z99z^wG-y?Lyf}9FP}}!|0YL^~y84QhMbGX@rv`2aCB#jdTWp>3`_gvnstc)Lp%^d| zwm7JUEQ#17(L8>=t!`@A?H2fp!Q2aDvK}L6IQBc{nV+l?J=xIvA9`3Q@5ihtX~N?r z3vX&xoU*Q=Y5&e~i-n7P@Erz>Mko<5$^gisr0gkpghDZx6~x*|;l)D#CYgH3@uWEq z8hWWsLqyTEBSgxKDwYSPH|3FB`bzWaW1En;%}_sxWRe~-hD#O;q<6xPqb?T?9F+-v0Tt~XPl615sMW;=pT z6n79qMS>8*2I$Wcf@QQeCUkuJu)k=a)*GkgegrCMg7wFNhf^5`ZX=~tTRshH`jOzW<+ z>C36>*D*Az)?GE$SwCz1n-@RnB&+VAA)KWl$Q&1Ui5rlPs;{PN*}AgM1X;-DE(D~# zs18CWzscd?0Est3#a}6PWP(i67f0*|YLzIUV%O*?mZM32EUnViSec`ak-K2cbpntUZ1C1#jigKO)Dz zf0rl|0E5~dzH#&KL~+Rpw(e|y5B$TOu5B)IY5V*A-QVRF-lhQ%q5w@sfIpj`(V1R- zQ6{Y8OG}a)`b_<8KL&ypO$7@XWMLV5gin%<8rl>>jiJuei54*dNSJlG-VVce z3KjiC6|;yQ!sRULEtCZ6bQskp3&Di+Hv;!qf)!{9*_4UOKbnUgetNF0`94nL%9AZb zl7`9#zp$Ps$-QHLhx@^*oCRBQa9oUii;!8ov$>JMv6F!l2fMcH(cA^M+Wuq1%Z1?Y zrHq5ltV7@>$~^cFc4_ls=v_Z%@}CKpdOpM3$DdkiL~~&Z-<_dbatqY1kQr(;s7aj$ zPeF>oQs_m{nwAM>!S;ZCz?iO%;Ee8DDtiB&1GeDZ!702Wv;}Opi~(N&;d>5E?C;kH zjW%^|wHRdN>sY=tGD^@9TGTr)p)-@9+wO~S8uryia?~=$RQO%Rr7e;TY%Np-RkTFd zk_Bvn$D)K<^{yVa5be_fI zdfK#{XO*3B`F>=lee{`oZZ?B$`t?Zkqt>I@C71z>?aYn4-Y4%(8660!DRKV{ruR!Z zI-lMCFqF8xwRihx4tGd@N`L*&YsCNQZT$c1>GrIC;hpH(;ee?%z{^eBvn|xJ95=w5 zTmvEkTm=V!`*?MB2e^ZIU>`N>8D6#53oqV{2KNCkKpzO7{-4IFSc_e<*|BYVK<~Ma z`SQvma=AL<1w$Fha=AR%&!%jL`(--o_XjH}Vxx~aZGv(_3e(_N{448fSrkBR6Q%VN z0<7AQyxld)qR9?$kzF9cwA;*|CmoY7!)JyO`+~-CQ`H;BFf^p8Y&s)ORtq95l1!MV z=rGt7C^DnL#{5E^3TNJOmVSAuUE_$}R`V&y_j{Vbmq{ufRpT_haP5;pX^_cSwI!dtd`9M9w9|Q!aSsg^(!Hk|*6lWhyy( z0-3bQOR|l2?N-OLH0fcol1C<7jo7L-;##B2Y1WFfY`s%3Y032~$9JfcZm1o-M14xW z$fH+}u~w0|*m=EGKJ~lssL$KO^s>RRlwK?0qnse`4|nY26uvz#>9Te6-u{4(?)_l; z?_bTuE-hcQ_3>jRUs-6bx@LI$Sf?c}B@y^*6dL7T72XV)+3pNyu0cnci-PZ%ui=xd zDj_{)2k$KNEh>Zs;s4!zKxDHA!&Adjff1M}>6sn_{-y4mGcLb&zP&#dEO)tgL;%_S z4T@oP^VTe|9VX)ny2VgWJb_;2b2A)VpXB<84!|~F9UgP&neQ1;LJpAo+2iN>l^V_Q z#c9rHIWx2=UkOp6*jF*H=GxwJCh`Ac?LDKKin?y$G(vy?p(hj#RY1fLLPrU`1*M4y zCo{T^4Ef=lf0Wh-}chf z5g532?rCk$f0s0tb7B-yIqeRd@t6JHXnb&AAbgIkPA0;XLdmm3-rs1SN}$$~B_&J_|j%S&c9%ROxunE>t&qmMZn9 zfGXf>QqCMhjd?Lvs!*UKB2p{)VpK`Gg;=A~wKnRTjDc`zC42rAFrU)FbSgI)3Z+_H zLzxbcGUwM4dna?MCzO}4SY0d~h|MzO5Gpiu&y!X}DNKL|N6ItB0ukp$j_^d{rRjcx zP{4^YU5lLMZnvf8+U!+P)jUdSlq$Fhz~s_JXzW=n|MlEdEH1TM2O3wc6R4@Z1rO6t z-%}cR?)ItloX~0YDfh8Q(JsQjFDNWC(lL@^Llc!6gGW}nrOsbn<{~k)q3omV;JpX2 z-`^9oUwt$B{}!8b8_S&g-(TkTdtmR_`-z6)13thubOdT`9Iaea>L3xFk=p4L?s|~q#9FhPB zlw9S|p@_=KpKq%U8Uv^}C~@PXiRU z32V7xF7SKwZfwNioCmbu-07Vbqx?a3L00MfK*AR?f4HihdeEpbz?+7iI8HDx*Q807 zorSBquruGT`Vbz^vuJpyXR6QA-^;^GudS6V*4IKN77qa@d^9m0hp>1r>{+T_*ddJabxgDR*sJ zYhcWBD{N8FtHo|!$YF%GBI<;PvgU~}@tO(mGwwUW{BR^tN;TJL=+BhTMt<+IO4m>C zfVye=U!GY*qH^ComV89C+>XY13;|kp{OhqMrxb4Y%IFV5EB6}KDu0zc+nqjmB#k5G z8ud1JlKr*f>$i86|9)7Go|_)$7cS3?{r8Q%-+714HnJc48M{{k1(33!M)cSPrEh-& zDFXp*=2Ts!n43_|8xdo*&u6``Sv8NUZ~Lw)u5gjOh^bHu{&{p*1R4NR2nOC3uJGFn ze0eQ+s{~C|)SVY`=wyQGjyT5;4`>5bvK{MLw`Oi~- z!T^~#41(f=K>-jLFy5cjH?xG1C&yxp@je^{zC)N)V=N{DM8H_GwlR!e84dT|V+OHS z`x=+PvY1bRpBN2LIVOfIf)N8`Vt4_gU_cxc+A zwpUqrkvXV5UQU8gW~mWl9D#zo4>Hr6bo6b3f{oERJfL`(JjXB4@ByA;Of~HTzSfN1 zZg&|~QzqvE9zrPMo?-%AmPKoa-F-gST$hoF9vL|jcW4=#Rfcqg4I#1M#41}T(p+>5 zDjJiMmc2`l3PXwVL=ehs1?q1miV0AxER?Dac#5Dq{^c3jwAFJ&6Y!4nCO-jY9GiYa z=Ax892s=69RMR|VU+a(P$l2f(bu}46MRM=M{oP<$enuU=#GJxuhfMrcTM3b!3AxcU|kqc=(N~k5qMH(Duk_hH(LWd+g!wRKdNWP5Rdak< z$eP>O@&2o20XqY)BI>!dBcef9oPrD>%oZMl-Hmah<`Aie?IY6bfWc)M=fUbNhxM1IrQQr&Nk*-HFq|Jk=P5K=VMjLzkna zgh4W1(d@GySJg}w7#^Ou+h}Wv2}u{QP_K%LRnFnF?e8OfvO9i^IMrD>MiPIm+gkRU>Sc5hfR-aUG-~`c~^{ zkdBt5hIO{KA^}rwfyR|*eZdT{zT*fA8%#vunLMkeZE6Zs(-U<^-%mcg=ClRcm9Ai; zFNp2U8n0QBaYV5ZAJ4N-6eQv6!mB9Ic3A+d+8$M4rVz*3^8LLz zyimeZC73WW-6h7-KHGzS>9q;a7vHg}OPAcM9QK|38o)$5K_QavGS2DUUH2y$2i&pu z+h4|g(onuW6;+%UnB?u;j@IT~u<+1615gTHH#`Ry7WBE`@nal)y`=M6`=bl~7p*V; z${kxc{w~O9(~B%B!Rdi{%Wgk;JLn%MtPA+(IrYZ(EK+zHVUGW_oG(&%kA89JJ5lLX z(h~wR>JGgHnp>L1_VsYqhBMy(yX>#^{JZ@dzsC21z9WcW@^hjw1w`~D6Nx9u^F-A+ zIRLbbX#}3_1%a}d5&!}-oMVm%ga!AiarvMjn%-vkN)bb?3WPk350gvd#f!iJ_82h0 z2@1MPR3_hr@Zwg%`uxYmD}fF=T$-{nuzoRf1eK#*n@C@l+d>wt@ zfohwdZ{7#~C#$uj4oSy-JIj!h#^D+W9XV8y5GewKRzoLJ=+H#KHA7+ZMfA_XgeQa; zlm3b~C$h5y99L!&sDm* zgdkwWutfw34T=Mjh4cx(*SV6%4Z=p{uBRC}Sm~pB$A(4kW}I|8G@i63`=_0rdoP6iINf(XW2}!c z&8}*XC}dB(X+8St!|f}%vAdUVvKJ-6aI53+%ZeuD+4TbsRB8YZ0iBx8XUjarNJ>k& z1K3<3OeTdHzitdTot+F5Pf1V(w@?5a{el^&y`G$ROJ|M~l(z!v#SaR{;XGc1B1AB~ z%vPizp;1sPe8Q?MC|e^F3?-@2XTk`c;t(XVCU7MCJ`V}sQI?%(PJqJ11y%Y;eB|ji zVc6xOi?iL1xQB}fN3(~O`1?=GQ^Uq>|9YC&0*`;9OgpY@5{tUekUpoABqY?Bj#jgV z!{-O8Gu~$Hg{)op=qnU(>e+xoj8R5z*P+gljK*5~jyp*!`xUeCvHNiu@PsV`R38>O zcK6(P>A&6F^l@K8kIl|x8~w{1jDK*dW@^!he=PIRz%cOFa+iTCdOyXq!n96 zTP9&#J;u#jMFBMEQ4BFm^dlD(-X()omPUUi%{K#HhGm4);4A%bq%y>>?CD3Lq*ETb z&`I|qEx067S(-Kp(Lh5V)J-#U`$fTpCl^1P9+g`^dL9y4KFBC|TTQ zvNXL*`OLx4FnIZ$j+uVn&=3VT$&t3Kowt_!PBvS5XFix0D}0}odoc=*< zr-yCJ9y|Z*{pF4eJG*<|I=*tO8M6Z6a3;Oq5DMp}48b5Z2k^_JpAsuP#(qR$nE@EZ zgyk zUm=l$k;UNqB+f`WV1cjZcE*2jQfENslBPb_oQ+8V) zqo}+6cf3E?Y_DT^AjN(j9?SaAYH@v#?W@(h-`*Ks9GASrt^4xcQR|e8oK@I2+J4sF z$liP0vbn$6$U()q003kiKTOPM3!6g5QT(Ejp-?|QIe?(flvCUuhbxX18?4k(JmiUmW8>i1sA~eGkd>Pf;ADmXZ~@eX zlA(0enT#qvARXOsT88UxE9bQsU45)RZVSusaZ!5tsy}4s?U$lUF-`-zyVkN)`;_)` zx-ZlntLqcIGp?FPdE1*V&RO~X_<1LLzWRC<=IWsCtJ>q;*3oWJfscbu^t%E4Cw4Mk zm4~mH?=6k4#eVHWywko`_#nSsP5E~Nlq;Hg)A+~iyZ){@KrTdI;Nfu#X27^h=YRN#= z)N3(@a{c47vn*=l_>q7&-dV$?CMIKGVFX~n8y`*`|*j|w5G2517#*;;r9=-yco6zKRoVnH;5$9sHvQ9RU&tstwA)a z?`Ho_=q)>QF-f+m{^M`{3hJ5ZoYQEVGi#~-16ypxFvAzC{bMt;KiIju>PJ-B?Cu*| zm(#u-yB(Nznf-Z7@1)UxCN0RG;}jb>siM98cJ?EVAerEcFf@l@7$mBP_7y%;X#viX1(DaVkGDsIs7Tp*ng)k7zyu-z+tdnCK~;Rf zA6+qjQLzr?`~*PR--)FZ5i{4DU{6Ny_1_&oa48-w8IC>q!4@rTTg;P{>jJ%UINavb zfGSNPM$WSr`L?pJZaQdrmhPs!sCk5BbRSMXvRf6_eX56ph5sUjRcX&&zS2d+$9g0w za>q>eY%GLhBnja;x?sK6{%7m`je6hMhv)t0cCVJ4yO!v-fB3Ud*+6*0Ol~o2vdu)D zp38}fZ6&|nC^~wmu+6bJNubD{B=d)t{x}ID)iYX0SFC6{5Q_{&bQV!L)w$x&z2deE zj~f@U+1XAOMix@_#}Q*#GHnbzbx5AeR4G^srK}7(P~b6KE`p$rVth4)2=6TA|B4gp z4nUH{8zRmnkK!Z>g9KFf169Q30rU=N1r-DY$MH%(@;Lky_Ue#F?l%lZsQ#`?Z*$mm zXY;+hza?Q{&Yr02?ilpRbUJXO%<_84qtDrM=cnzybpI`354U`j4h*|^UrRA+I_77O zViJbU9&EX=JAdnj+fC0s-}i+7#*wjqcdxR?K5&kc{m9Mno;mhPEL&0m4s2E;K$_vB z5Hw;G+$=N-&l0d96Oi&~A3A#8oa5YJgG3PH=r#a5x{fiLp$?%)uk#hrslAFwePT6I zpv;U5e@5qlsXS7v8th}ueMB;g#n6=8tS@2|CI$|PBR5!QD8<}J6WL@cLn9_7nLZR) z1E(j~kBG|r?4-d^8(3lKu!Z~?B%Hw^DkALd0{{YUdXY79fCTg>7wgKKgK~umchahl zNh@8-dnJ?N9K;=6=2BuK#ic3qEcv(agl1Y_fAiIhN?y+cPlWCV`viQ>%8Wp}4-Iqo z29zd-ebzZ>DSt)dgSG6h2CHjEjwQn9V?SMCyFI$z?Rm+xAP>YtvBn%`i9;xylrZHI z@oIc7u^8Y*6anFhPvhxCe#&iP3WS&VIpI4Akamrvb~7sMN#?#+N79>XR+Ha6k~A%g zf*X$<)jEur_Ll1TEKri8yARXCWTMFrdumH>4@kXSIP^f5Hj?D2sl=f4?K4~D<5#zTcOZHSV* zHNY}DFDR=6ibTf=kv9+&e1Bgs&!_|h)BiJCFwGJ-Jc=V60m7M$KsbUqUygai+4s>b zHMGbPxk_k&g^SiXCuarymY2otl2aN$U0%bZ6So8V|MczNJk?-S43xQhw;uQ7j(^F| z%(m!|yFKYwEd3PLPv|y9-T!&))a(t$HGG9qr5X~d%#o4Hmi9&mE2e-n(29-6hC%qc z)^tS;KkF8alzzIHMWv8BPQi0IB>BteqriWl@KMl8f)gq1o)3Fr`{&cuBRAyuV<7?@ zF*d`d`PUrF>AVN*7k}Tf*$stsnJS+=*|vVaJualy4PTgbRlvtMKl-axKan-^GhSAz zpYUe#8^@G}=-|nee9@GNZi~s`l6F^L1nNFOY4~Ijw&J|8Zno<%vCln|oKT6mM-X?z zc0d5lSbDLvDaPJoP+r$ChIXC{I`I1LWLkO5Xi z5;4arq^M&ac)r}rLOjk?04UF~%wv%I>^(T_m(HWyhYZsZ(1=HfNjbeImc1NXpK^Pr<8H{kkC!) zbI}#ICxiN_P_7Q+L%w}FPyyx%QpS(U@9~aH1WhLmLckiPE@8HRLepv*ta<22D$~zB zlRlxZYJ@}244|D*Mev6h3=eapZ*t;w3YQ;Lp)gPSJc<=h7%-RO5qfdoBk6PA#a>T; zw}Xu{FRu{VsN$nE1%RdXZ^G2%F|L;emttORqIvlosfamk<%cyH$KX1r>zCu^lEZYN zgNwBHjLL4tiMbO4W<5(;Uk+Y|v<-;XMTDl?Yy%L^;x|=8j`3b1-e9wb*ei<1*!vd@ zu6Mn$U;6J_{HxHv%Vh7z8nL&U_SsvW>>J}8Jx3m}V%{LY!XAfGv+<2APql@LGt#dS zEJ6&QV+mxu)SKZ{F#vqH|@C$m}x7+;f zYMQg;hL2&F7C&pqB{Q+p&&x5r@xmA%iYB4tdEjrk4?|+rZR<8bFuW$uQi7+Fa3V-{Q&!$ zuiUZC zvQgjF>FlZ}rOPvtQGNeFVJTy!^{W*z30-so!mI1O&JL}*AmIJ<0Pd=PbaG^PLnUH&5V=~jLuW%|S0J{2jMg99jT zy7MKHEF;Yn$|Fcgp(12az~lak3$-^BOujR@xB$?qMh#e1ZyAE(c#QrT%MalO)=3U2 zOAawXKy(n%#*FOy*XFX4v}c8}sA7}qZQ_2HJYEZODQ{O3!z|5rd4>=^rxeDnnrebY z6Ool44c>^iOFgJo?2fhebEP6^`cA<29rON*{mQ1*vq0;$U5<&3S@s1D@HOBkCR-ku34i z4Y8UqwDNhOS0BIPE>)NZ@B>VyjSaNR)5+TY8nU;>sICX-0T?kX((PPeVfpwJiNBiH z3T>~Z3^AP^suy$7?rKhXEDLFy=z!-cG*(w3Kqh7GLx*e~|HOgI$mmr#bKVl(lNys; zU3n&HDRHybMAet@^G@4EvolU(!Wm7}Z)Q&ms@EO_oxWhR6SGGM6t(GYC>c_TFxJ2Q zesDcz?&`+ivm)bi!uEM-6k%%CH|ry4-#B?OTs={z3NKtM%=@m4iuay|=j& z%doKW@zwu}x+MoJkQs#J6PhdluPRPIY{*pP03Yo)M!(*E0u&EYLq~F(DfYpv#7*sz zJxw8vVj^438K)qcpKv3fDP_nQIz&Tg8EK-KYVL#@GVx`GA#;5Y#_?cddsLh;m7j~8 zWWmP^GgcA<@g|YYa}L&Is4}o+a*}0`bP+leZB4{akl`?p3hBn;S2LL-pSvFNrqs!w zb$A(lD~)$d)wuOuPuPVwaY42pa$e0v{|trfOhtY_?0^(FbK{HQ?0q9WTjk=srK9u$ zmv2Mm!m*{>-`EYY$FINruKw*P`wRDM<;cqPQ_8svr=-H@oUz% zd`2`n*v+`q)k4*Qu^1W{yGivEKXd0N={5BeREPqoc;zH{XiQaI`6wNC*ALxUM4_r! z(BU3lIeNL2MMQZa-iIs?;vaQ9E=-_1D-)Y51Sk}%C^R3cs_e1|tXYomd;tmsR2QH4 zd1pV*+}qA48CH<$Htc4@SH0>C%5+pQi>Ms78JV9c${Z5E@!q9O_t;3vgDX?GiIw+P zY)>xB9SQwECYkQ?uc7f(hNYX8sR-xwVR4Al(70=Vz)lu!x07soU4D_H#%A?(abo%K z>i$*sr@3+V^~$f`*}Hf4n_4HuDoRB@z5CQ@oZ>Gm>~+%O?t#E7P^&txszXKjz&<1K z96liy#vL$abJ#;~cQwaQ9-=+&^MW~Lk~7+^^)B} zRn1h&z3g|*w@jmA3F6&nyXqQng+)~Nk1}n(*q!U^FMk`+?mNF@n8637>wS(1QGLd! z0@7BaaLG}H&IK0rgu+~n)^CK*xNWU4mmXp2LXssA#QuKbqJKGqU0mY_}y#l zk)#Ou9G<9|;&VyI!9zc*@9tC4y{+_tQkNN;hS!eI`RtFsbP9gF`K709l06BvR9uev zSdrlP8`|@mF#Me)CBFfzk|u>-d&>yUgIljU>{= z)t;@;Q(H%Fu$6XCF>99jYUl$}A%Lb^m^SvS>O$&c+yWp9YL!-rtX8`TWRGK*XoH+DJ zu#scE=8o4xF7e^l%cHs@q`WuZwcRxx=%Zh*V%*;zvsAAtx&wFZrRty?R98Z zRSFVhv@`XE^vHftR#Jo{s-nuVoO}yJBCjBf$-kk))jGWY6zu~3k=8mfzOQb6~>z43YuHqU(K^Q9(E7P~s)n5P5%{pHl(-D6+fhk5d!_zDjfoIvKiNb<$P z(rSHwmoRciHg5KYc(z;X_+NhD=c%blyZdCv^|^Zw+o|AU;`KK*U%u^qFIYeK#Wq_} zmbj5*K7BF!wQ+`5U~xSv$q3w$+#lS$oK=D z9fZ9GjFO7^&Pw|iD6nZOGnV}vI#kxzdKjLQQczH#066wg3C37-%9s2YOf4uHV^990 zjASU!hU=)*Vh4axg=Vv1<_?99(Cn)y3=Juc;lcG)PjTOcV=TQ^_=Qjqj28vgtUO#H zk6nc8<_IN^HY#f{e5-IG9teVmv)&kE_-W3M4zB`50Z8V@UN!2Z`Ytjw4@3HYK-k*jIGRM7`9R zC`M}Xc6QvsLd{3zBc=9*#Dn4Sm{$54H|yVl&+$P^n%6}7fm71TtU$oe%qU4bi%L`g zS;XagTT!CoasIdmng>1f5mOM!Q}YXse(~D8n95eU3~a|l#A^m92LehRN~GTu1jRE= zs=tD`Bs{vz`h3?31Gy!k=RE{KQH4^C($X1%PhWBDxi)&S7+`t1A??!|AdYi)ElUu>}g0IdD9hpP}o2}7u@_@*4~4T(Gsft=x2VotVJ7>z%~B+gLYTKV8fKGs2!jS za|SoXZ2yes$KX9i$d$sC+=Wy}?u0`$Z8YGfNkuCRLYT%ul1JqbhPoZS6d@Rmxd;|X zpb4We^F9HhVo(661_emt$*Jagr+r?@b)MJ-Kq$U^e?;N#5TfPou}{*E(*8`iq#qUz z4L1LBHY{14=TAR!DH#V$wSuua26eOM<%JcOgh5JvW+^Z4|#IZ&t3TDSg132jtBq45TS5AhXHCLMqK)kXw z7|gNb06mF+v3cGWBL`CN9TNqhfE>dzfY;Hgu9!P*Dp(FjY1*zuqg^aQ@tG5Uj_$Mc zAnR+h+(3Q7hb=>;WPxYT zZ?I`d^wp3I8UBOtXIFzv8{`+P$G;%rA}uv#b06DXTkyN1b+RkR{9WU1Thpzoxjm(- z>sEMRw7Ibb4uHh;liF1>fK)Y?VrG7LqAb;CMOnWvjT*h}K)Y9ty4_E?1&E~U!G@_; zPIM)p!|e&wO}y)9P!__~XPO%72;+worl>JkF+~s*>UC)?5{oneQi?0&?iSQ$GG3`pAk7+*}ynL_T!6MV4R})ijue!4pblaHHPtBMaSfw zJRCXpW_je-flF_3J0}7fYn&8)!=!$wSEZfnkc|h8u#~ka;@3}b> zzcaXab@ArjG0ktLUHeCr-LIr@Nmd+u%UH0 zeO5X{0VokMk{su|Qexhw2r?U>!MP*QxWWrdUzB9*zc(wbz6`7iX6<)<#tuHWg})-p z)Ln9|KCxrmdyu*~-gqC?u{AY%zpJ8zqH1>Zw^oVaUFmw-IZxV6#^0j8HtF%6ZY=}$ zW6$xfmDur}fnR)vA5(uGtvPPqmfgl|bh6EXN7!Rm=|hT@&~}=f2BZ|erl)B-&ys~z z^$|dItUAT$=LYuQ+PqwQ6*IZhu2VFu}qEUKGO{ zvOHO9RWsJapk48Lrjnw3gMJJ_`3DL+0)xjbd($`^$#rX(JttB?pE(ItzZ%eQb(A7?gR`9^>A8Q#MuAp=urn5HuIOH0HTM5C`C!G*dQY;g`6wmZ-S&C2I#xy&D(K_Dt z%M13C&$IoTllw%)H8#IHYNFNkvNW$)VFUUEbl~;^%9wI4KDZ7RjSi4<#Q?BW*6=Pk%n?nxq_R^ToSU^p%!(M4HF9ppOMcYxlmf_j{r_ zxx=l3Ew<|M>e4|I8!%4fk`=Iuwo#-FDtii?NR#bMt`&#VA=A-0omC!(B4Z^#+zvS@ zOAX_f=o%NbT%zPV0)w?V2FHGo|X(j!786h1Y~JF1K>7 zz4ZRAg(sCa^?b0qR^o5%YObruX=dc@AQ}Xh^Otq((r27+57g@*+OKw=s;&9B+o1k0 zW3Uw+YvjphcO7N#b6_Doc7MAxHqVmBUgDDV|A4}OISxm*^Mq<5fs)5Od;yfk+lM@% z$y91Rf}$|Mk3=d-u8IyobT^ffd-bR?uAv`;UrT0|T~J2792uyPrDsh9;ZqpTs54S@ zIw0_caRJ^BWlop&;gv-r$B30e$pn{cnj5Z6pNi*n(OX`^oe4`8c6{_^dr=SrBDsm3 z4pM|Zp+UryWaJ$!@7H(Wd7STbbrB#;VvKP2m~J)_})Sj~`or9mZC=4V&ea|w~P zLqXd*{tiu;S0IjtJ@R~b14e6TSwy9TUK=dfZhh{|GuvwH$HM-f7SGQp<`{tST z{k^DUL+I7Rv0a<{oFies=X+mIsZP^Q>)ak^d30iXn%Ld!tyZUQE+Cwk&+#(px74)A z1VE?YIfTbhP4ei>=}H9|f-EKkE-_(FGo9Z~myS9%s*Z@xY>Uyao|r`Bc;^8XDn**? zg0(eVajyjX#1%)q$~4N82TYuf#ly8_VJZwmH?N6g-DbS1MsxBL6M1M{zmlfy&6AjO z;wE5Fzr|)&U`$e?wQC^@A7~GMIY6<#h7b$jYt@UyCcSAlOl1TpwMyilj-O3&isv_& ze96+t`;%*Qd;zyIKYK3u#VY^G^|DSwP4RjSncQd3J);i>U6F1rE;x0IQh%t%xBFUT z;^~3VOS}I-;g8@@m?u8IbWwz7y-t?XyChvL0TZ}t6Q83%O5vy}99r8b``h~CwbS0~ zj(-guoc+|px$NY}a(X*m3I!ooCzt z1!XZj;hOt0@#zOn)%I%s z+JkdnbaY7@TLK_zQYT32V|}?uX2?wMcmlOroF0FA5^^Pi`*-*`|;JhPBk*x zF>>8C&G(rAJgA|)&+-Tw007n#HZZSY1jMxj`b;ywH0A~Q8B%)fb>?I;^PvpEHsv#O zxmd9M)CAN10{oQOpWamfoEPNEnl&|qHVOlTwIiSV6*2=WYLsc-6mmJmTvGy}B#+l9 z7X?-(#nBpxy~dW@toV=W0&p0F%0-C-AScS)oXzsCyT(lu2($OcwNt-~|3=)C04oHF zHcLKuSb)|QyKA9%;n7DgA?TCxu)}PjOJ$e3aj#?xqXXGRWK!q3GCun!ecWk7w{YmE8m;zmFc+@F*kAjJi~En?3sT9D)QeZj%9DD<}Mak16;;_+LF~MbctI+ zDzCC6!>p4%QHDYlD6ig78~VV?9Up4XKvHKnm9RPG?`kQb6kX-o||8puPQ zD4i$PYpff_)zEAnJ~<4qHq(ZZz5EZ=c-8oSSUIljwEztW_L`?^D-df~#*xwxUB0En z%Q$0V9G5zT>rnHMq^YgqP2K5~->FR(KQsH$Dl?qmmLi(;2?o~r?b=tk`XR-4Q4*EAg#_isG5zXJCz8!V@mV@%68+*gr(e^K^ zdlC$8eE!f=w%vHq_T=HBaToBd*Mqm^*9slb*xNvzXn+-$#K3}S;j)Fdf>3;N&DjtX zoe)^_pPWL%$Ly1Rwm06OeRogDf>oF===G7r^HPz+VmZ1VjXHl3Y#qBF;@L7 zCqWv4Dg~tsr`5X=y<$?S^^HWPMxk*fr420v=m&-&j@?wM$DG$Ke#A|HgY)Yv%1J-* zWs+j;zi4brI@}<hPa^!DfHwD7LP1 za_byqqu+RNH+CVDQ(j~LeeqbjJ6)J6-+Er#zLg5s^wPYA)cn1q6{rR18!`g$cap;Z z3ZJJDfric5Js;o*iGVc349k0!cW31=CPhB*(J5X=mRVSSaaCtB8SP2{xnNGM)8v>fka4Oa9r~YL36c#ljwkp7#*T?VcYif{< zCotZhInkz)O0cNXwe_e^QrY!W+;N!hO*eYx4Eoc1_Do%lZ2>bo#qiYIYo4!dm2Qw$ zRm#-smU&slox`S}?57V7j)aR}c9AIvQVD{^DeoNa7N&Pv|En;Jv)M1^IQQ-X_P3b* zgWKNhQudGQ?3b}U9h!mdfb$~Y4Rs6wVtM@y7&uJMLL$uo;RzE6BpA4z0uw+s3DswY zonnl)1OMELp`T0(CnuZJ4dUyQv(#Zpqltg6s)IxtET z+?)VFcepAhRu^I<;&VdH>d!_V9nuEwT<0yzTJjurju&Krdl{WT*N zgWi;2w?`ExMC^FWr_3S0uFZ_zPdHxIWOOLVJmIh1{^f55nmKI@1|!4oa=n4(WxvK_ zzUF5@+DAS)#^!9raeWNH~E!gm19vG5I0W6dY* z)Rod4+;5uc3jEM2Sa5U}kPBj%mKI#>eXMJ5%60CNjD1E+SINP|*W0SvvwR|v!f1BH z>6Q|;VJ?q^caP2`-IvO}rZbc0dT4PXOuEi$%=FZ-XrY~RN!WD-35j3lT`spsmYGxE z?*;Zr-lS93n|__#`jzg_-Y1>k-PyU$E?Ih0_nr3z|l4_=Hx* z;uiYCaFy`a*JIvUzrLg3=e9BsSo!R6gN48Rsb6NZmrVt{k5rXawVpFF63HL`9nT-x z`NQ?{advE;Eqi0GW$QO|F-eBtr%?R~pbkbR(k$*_XVji3*c0L7{!6+ew2WR&9Da%= zqAJC&HiUzMBG>%ZG`)_4xhJ1uR)Asll2TRDAsvGCA6bFDko7F$riS8sBC4&b@K*Xr^`g z+P?iOPAN(>Lfwijt2Z~)@45Z(IV|YWVFG1-AZxvquE)^&owaTA?(|p1bME1P;{(ra zUGnsMc<~z*SzRyHL^ECw!o{*9iVpeH`@fyaAHF&^Hl}{9nmsGq`1qUA@mQnouhFp! z?A;HUd%tUcTpl{f6(1RX-yVX39|*%Unk*~`Cs5J4USN$99CZ~b8GQ2saPn!u;JtN} z=>3=e0JPq;YsKzS>#U-{v$akOG^s{Y>Es` z91cdnn>8`X^xilpPP3DnDRvR@*@qaG#gV#l&SlEVE?gngxVb1{c`}#YJ^d7Rx0+v8 z&!Kw$s<(ac(vi#V12RW!2219i9SQt(^L3aPrmuOgyDcN9N5I~R*%H&>{6I2t>B!Z^ zW-aY7+c|`1epTorhJyH*Vh=n0>&OmmPWAc3R#DU8hF?Y-d6#=K8Y8dle|^!|v%%gy z`Y%%07Wla3+ADJFO*UktLpE~O{?-$J*vXJD@!vJj!(Wg5S!a6;cAPJK(0HDG)$TQg z*p`MSw(+b80C|ZfpcQVig&NFH&;OdnRlEe654vRa9%6Vb*U^xreCM*^1 z#4}|OVR~IfvlQH9sion46Q$8UpQedDX25azMqq&%hmk}*S4uh4zPX!bb5))9-HsXlBaEGM6f%?r=W^T8Xj3Bmr}Jy)(a$Do#|NJE-p9 zhUio4KB8bd3-!DF>F4(kE)m#IE*Asev=!HkKdFX`Rh?>mD>^oI){gIdb#K$LaTntZju*FJ=cZ7>2+wMTbq|Wk92tgBaapCSbmU$TI#2P!<#5DPKEdwXiNP zmFi%wy#TbA1dLod=e1nvLGSqj%wuJZSXmD6NZnA=)-%2P#{tKy?;KNmfBUI_wTQ@< z=;?fPIzMv(clq{78MHH15FSR`dl$H_HG>r`u^jP}B0xk#;qRu-ap zp)(b14X3pAog8gciy;h(&^%U|)&yxQCKs^JPgzcxdSw~NZ-vbI@ZR3V!~G^2xF|>3 z1`t7k*?jqB?IC^kwp^~_x%Igr-q_1pPlIW{z9wqb&=!yVaj&W=Pk12l9F>kIwEw1- zuSe)+D*ntbuX|;1_4ktQoe0Z~$eh^2&YZTZy^*l>mK)TJ3(?;%6lL|a6n|u|#q6+O zU3|Cot00m+xA*jHEGM_H-L%`yZaBEpjub=#2+27h^gL8k@7XJ+U7uk8=R}QWjvaPy zuHdLlJib3m4L+7h_&vKq3$pasKRkYYy8qy~72%VMjm#4|T;K4G6M=3x_#BcustXbI zgDDDV>u}l z4k-Le7!vn1=2%W=?R>U!I{y|YwJnSIay7v8@7*#^qLF7S@dA5~z0M(mkFY&Cbdit0 znr#4}4+)hMvOuE-J?)frRu#7}FF6=ozs2^n@4E<`7!R z3@d}M5v2;{(xh@b8xL?OU?eluAOf7=f<%ydLqydjXVdO2CdQAFXI8`{T_M71pIJdv z>;UR&xv+1uyD-CxaAfE58<~K<-)tP}n)TI(HXp3@vvz|Z$;|tUQ}^?Q{>Dm07c0*7 z9tb`$YL|POQ|s-3qN0`}-o$uJd0kkJLj0`B*rN-_^s`^q&UHLWn|fuy*8AIPYuicK zvrfABQtOU=lk4Dmjw7H9h~^~0lEznrRO!lh#bhOM7QPoX%6ToiEQ+_(h#H_E5)W9} z>lAl!U@U@{NCF%B3MI+@4(PA_y6R`YFEE!dfI+X{t_Omkqc~SygzrKP5|_N{s&oBVZ=KVZimJm6u%rfHenh5iYru}k-vlul{CL+WfQ@|bQu8_w5F>z zU+*>nvp4Fljw$9*Q;ZQz)@5FCp4d~~Fa^|9iPsh|wyQi7ixC`lFFlb!mzBp3V7gD~ zLq$@qEMPI{T&=$+&T)^=r!+jlMBE>b%Bmp8>w2J1d2yTn2C;$xoSIn~+@KGb8`i}h zjqgM%Iar-#KiUiHdxo+&E;^*Ic=Z3)wgVkLVaH^bIpc|ZkJOK`_Jhqh?%uhd=at@h zO_Fbxtu4^`&dj}rKki9Mr%LtqGY^7BBeitpMh7fq1 zihBORh?j?E8g)~YRhw#Hq3mft)n}J0fLFn|!m*+ly189vvIS2kUBNn)s)D|Zz8j*b6AHikM0W_6;Yg@EGM{VRid6sao zlMu5B+{8QQPnF~419yG;KD!E=eEHiJq7zYZUblb-r`Rso_0(ILsshbEn;2H=A6}rZ zS&pwuEML~2Z2$Ue>4~?$?wdoi+JKy#yO(&&OC#=G;$;)HQwD)BqszBoCQ6!~b*D7@p~C6XFN;I9O3Mt}wZgHiF84#G<=+QE|$6JI2$@P}RT^i8b#iR*j-9 zUr{!{Pi@mwUMQOY@q!DJK__^mkHOBT^?b3$wiyININ-J17*bkqNoVsjGMIt|af0b_ zEO1aB<%@rpC@I042L#k-Vw$v!pgfZ7v_6zLDEWMD$am@b5@$m)eFBJ zXNDHgQI-B@Oqg9$k5qXD7K&SLl)&AgGR6H?{=iVPH$p;wA58NCu?W(_h|A9(CJw3* zcZ1koupDjI4NOZO8ipr)uS+^#Fg;Z;`1}7R-#KXiS;8n9VmP$lx^Hmr)O9@o3M`&x zG4l{ZB6W*{<+|a{L}gKv2@X4V_hcI%45H&bW`t~rd7U7o7R(LB+@>{YB<2o;>C4rn zpoNr18~YRVMYzZiWy!d)TSmvRZDp@1t`IH=-pE!7alKP=i#P>wuZuIy0iuc|Ht3vzw!3TrZfp5gav)MvoTABBci@fK1DzGB>dEj594O;1~__*8*by4(Vj zTiHZ!*53CY52N?*txLiK7B_dA-}6oW&lB*EmF`yw<1cd~mU+BkOb9Sup9O3VB!opA z#|uJ~kW=sF!A_Y}2O|~K*M0@@a!t4h+K_&hrhw;eni%o!AmEiYtvfY)O;>oNEeP{U zWMtnUP@-u59^YLs2rdtY2wT{@vggAcjk&bhgy1}qSan>dq#f5CFhtbGm-x6Z0ldq{ z?8kusl^KV(N#uo22a97LCI#~EdoWIf9i_|P4k+EawA{2^ajf-0^tctr}g-;YCT41q0`jzzAZ+5u_+BceehCGbSR5~+g zb16GD6Zvk1ajo2Pt$OCUPI#rMTW-s?cS`reR+(_I%!x-$0bh_r1?um*!lKp8!#<|b z{~f!t`%PCELriZlUSDGzJ=xfUs*vM=Ut>MQ;^~5!s?AemScC3~6^y{bzP*ot67!H>T4SweF%}C}+Os@XzM|PPZ8|FBm_WPr^UT8MhgQ>;K0T z^Z$>p?SFlT;U%pzRcfDL&H=t)#DR1S7fBi8A0v)Y0n5q8CK4KfUkK5$f&|Z`5)T1* zKQT~M&EM=WmuSWHPZ70rIj404+ZHB#tsA62nCk*MSob)GPc)1)^ z8p4?Zr32XEA~Mt`Nc>GG{VF>=2!dymp^gdBr9|BA83K^y{lEO z6vx%r1AohxorQms6ofRnW&Z~YzG)OEgh2SN^nZnufyaiT*tj2QkFCz}X%Li#a*IsG z4VUmP^)Poffpvu&w$9y!SmJjT^$^PJUYpQsANl0V^cR@%+wNV#IU(kXXX`qTQ~9y+8H6M zA|bQiqmO>1b!gCG(gN&Yvaa<&%AgdGGq+ZYpbJJS$<7Q6XL`1!96NJHz&>2G{2nna zt^n)H9*d6|bEJMqsK9*dHsmuEj{!-BwYeKXS==wzkcx}Y9mYl-9EnNErd!@?%%I>o zoNBs8(2ivaN!~S_B8QmuN0Cv+_3CKpi}Ebf6gS3nWp6iZj+ls3N6v7PD`G|A;yV1LIy8Nxqj+_W zo&S`0u81AH=()#Vf4)pH0#7Ob4wo|c+o@QVZnn&tO3T{!sxgPI@!rs+GkMCFd?mJC zS@)7eU=Bq^D`X=hcFnwlGU7Hd#h4hk39#-XkDcJ>JZ-A6HTqUYUn3Pz6oO8K2@=rG zD}i6S(WEIpqu6RzKKbXTrASmBK2|YaR$0JrcC}K%sKy0t30hf(eAip)$jl_oiI!e7 zU}9NDb;stRqxqkG6$-9t(yYnCKy>$q@%_mqhx0p^OB!~(ZU54CtT~rM^Vx^KaQl|- zOJ(7L;d)tuk!f?cV&D> z14#Uc>2}r&>ix<1%%GQd_l6FF#CAJaXvT>pX9@v#u*l;!f?{6N`D5GuV-R<*{~}+Dl49tF;le8sClar zfR=Lx0Z=AXV?CQ7$Dm>;Jq-FSR%@92xEs+%Lr--8k=?=8v^WIa2H%}F-eZmH%8(f3 zo^$+-@$~?Jq3Hx{Sf{I^fROz8@zh$$(;h2F^|d-DgSbl1 z1lagJ;yQRW=B>Nj}sP=t9?pCvFpEHedWGxM1r4%+tv9x@Jd+wb>(EMO|mLQKhx(qPOGw3ox-FkV7WNe{*^#la=$TLeMV44@SKyX>TZ ze7=kfwYJCkixP0!1%Cd8SDOoR52%hd-ZbxHrWppxby8eQj@v#q-Dd2~^ZAD*t zWw_HGNC|LMenP5WyVc9dk_b36h@DgQV+DyHALB83{)NY`PC2ck%cSH;X^w4k=zvTO zxo?OzRB>79@8Ul`n|`*wfXn#1Dnj7 z_f8GY8)>aIP35OP>fXN3q(#cK2!Bo+NjNh*%UDd^zP|7!c={<%QwO*xhCc^mu25o2h|jf!7{r4sDp^cZkVv!wKz%F8_Kcvl zSxCAdQXqRH{@Ru?7}zEEY^Md>rSQBg@|0&o%?o|6msQm+qmYX8YIDy7_pXEwUlBQ6 znEm%e{CE8AdmPQkWZ3!)OMS7i7O?z(0geCbxBdV80FVLei&FLGm9F>G(V5EqU7!-s zvwCl1E=^R)A3`qRF@!U&0}S1nnAW;QTL&XMAfPn_tx&IW^eBxI$0wC4Ff6VYW%+O zaPiOJbXW2zpY&&0nz2tdbML*Dn7Sn0{k1d8M%AQNFM06#eW_u%E>`eHgq6AMUAyTT z)eA54^`E!=4A_qTA8$QqcVkj;GMH0a#sjxcQMZSFdF0&8KLj{}r8Mx>9V$GCPF8V) z5jqz^>2KMgd?|Y(yEwp_O&kj07YA!OD6>|IXDTI6*>Re1#clz(gxiz@%Dz^4SjBbN zhw-t%*%27>!IBZ#`Yjn+;Ux{Y=j|&Nn<^#4maD==nCnNP5xz>fh<;|pS~-}aZ$YLu z!{D&^UML$UIB|&&oCT^72grtxzlX!1r{$!hQNfJ^yE)6eHa!RNa`3kFTtH>dU7)G}Y`fY-XxQ;xPZAZh z6H;UQWcPJhgxW7{+e9y)cI;Tp4REIz5Swo8s@oep=T+hq3-iPylfo9*>(qDBrl+#J zrahz|LbPm)#Tw2luKiRVF;7b73x#XXiax z8j|_*zR!)=Ieug;%Z-@k-U9y*O=%`pxwlw=@o6b{K*bNP6XFv0IiGk1CN9o~b0o^D zx0GNA@8;(H^R%c4`{xdcrWg|SoBoc>%FVRGdOb4ga=ytdD#m{3k@H2!bXiyg+6fPR zwZL6@`9}q%!Kpm5@cLrEK_*-7+75^1n51g)GEc3gi8-zrMGAxOt#+0;W)=}KEZCcDR~?ufgez9QEQRYGpU-r^i00x+27lC zavZ^a&G}NV?hbQe<*KEHvyR50 zeej3u?}rL&=f^orwGQkC|9e`at7j&oHQO0~b{RrmjE14_j5F;=KFR^nzv);E^(u;P z$_+n@f(YaeDaX|5y=O<3PEvCu;b-T3EXG(S@VcYnR_~BsWI zFI-gJyErY{$qkH2t8jG`NNkh6rp!h|UxfjY21Z^#2hw^gn0VOSuZcx-HWUzr1BsNr z?xV7o-BGFJ?7_}L#mLKVswi2Xa7n4@ETr&r$iB>bY?Xbzv3ARsorD;dhL~mX;6jhJ zf9r9=F232nbnWEJ(`nlu0{+Jj+{Ab%G^d8e?URA z@mp;(qSkWM)lkudn?FCfm4CYPFDNjmCU=Om%=QoI$iNeu*O)t!E78!?3}5{ZSoHLI z-QIJu->HXpZn*t(+~TgB*_oZ08isRuee~qB)T0;o?@T%MK02y)dlHspZA}DIK#jho z6azw7NJa0Rn}Z1@e7@;YJJtk_nCApCsEF_eY)gnZO(61o!KMueMq z1IAHQk8uy1$}hft6`w1-<^c;!y&mYY5<~LW4&BkpDk?Y72vDGpH_bnr~4)yvj^t+F+86C%U66)bbqW<2*CH9OETn*|Z z{jDIKjs95hI3EZt<}N8E!HOx0g@CZd1QREiqcpQvu4|J;c#D|@3Mv3N`QXw3^PlKk z+gtr5$!6+BY>t`SodganN?g_Xa?h)~bhEi9LH@ZtLKVu~xes#kF}DOO-Y(kA1fFGE zTnNk<0#*xs%^(ocX*+Ct^N(L9vT@<}GJMK^$8wACoYRVOKt+02@uamgelw!+KBc@4 z2hqb8+R^8!Uw$=xXN3nlU@E&iV#+UI^loWh3X(*yeet-s^?n%2D$Om$k5;NcUavRu z-e&Ovo=2@o)93T+a*L2K>kd}D+2}MYg-p_u665l{>n#QI^_wdT0ieiid5EIM`7}}< z;M+U4m^9Em{H?gprVzcavE~DMX#+0SmwV+&{n%T=XZC9K>-^3Z?A9$iC;QFl);(@L zO_7tYt5wT8XD!5+&ry-R;EsDP-YVPGnDao`+170HR<%Hj;RQ*ppRGUrJ%nEJw-c%B79;MgP0&51;>H>}6m4l)P9I{eW2rwl6tG zM=g%bb_Sh~_khCyCY?L-`hYUpS2&)}z@YOU1TII)rD1@0IdX81fg)bEGk5?d32*gB z?z`*KyFuL@l>&H?F7-}pbIbX%Q4>;^Hy@^x;~N~HtC7r+=L8VQecKl&Rca2<1;uR( zfiXpCMbkMH0o*rG|3D7h*MN`RI>;ab2voRxG*%TyjMEL>{dJPJm>coQK38DuGOE3d#_v_rf0+X08;@HD$HNaif7g7`Hv^(B)`>EQ55D?8n$bOn<$Hg9>r#F- zyC-Gemtpo|?|uB?QKPlgIS~>4!+ZMIFW=`1Lb9Ljihvivl1u$%e0<7E`mSME8F2>% z(AC^Xo0t7upc{8!UvlwW(+9VQkwM_9_VgJ0H^3>Ai#Qxpy|uT;vwzbkzE??@SVAC; zc6)w8kmF!r(g4}*skV;+Q~=)Fy=aVj>Ti9MF@3Z5OWXKwnet4r;+wn((cMd{@v-+0mT(frF%r8V`TP@bySTM9L{b+bRxJF=} zE;f#Y&?Iu%aYz;bLK=*xp+N^A)-6&L@V}gx)CNE&axJh_a*u(>*%#Qfz+v`*`YphF z@G)>3OdN2Ln->zy)unO)lV)8-o4Ye=^WJP2N1~9FxUK==@n(2?0ErJ{lBhz{*CoZp z13JP4apHTzf+%(-+@6aK)EeA??UJA8 z%Gq)hS}wHLS2yVWdkgyBJ8V5$euL6GWNf_ubLG>|eyfeC3#&{WBHGorV%y5XDcVxl z&RfIeh03I47a=wMz_&%)5D6qN#9k&A6em;~w@l6@V(<8N>$hBx#>3>W zf2m^><{l5enN5j9x?8N2{j9zuo9tDJRI-_b~^{dFAtH(_)_;P*&zT(q|TXN$K3Nei{5uflsZmfK z?!@Uj%cx_vT5tXf1Y3)NHP`lDF;-oAGu^`4_nU_DG{inE-(`hgP{xeX2Rp>|C{%in zYHZQR;!;$>@aYbf=-O|qnHfLe?AGDK{xO+w;n5f?t>D2@`ke2Ih86CBAxJBZL1&DX zrQe1J(|o_a(T}&*6QbfV-3dl_aU>}z15Zh4HA2u`bME>&vHR|54~SZnBK1;C);)iF zm@Q3XWh!~?iTJ%LWfUrEX3r1Cal_eyKQ})l{k3qIN27#}YtA4sJO5pQV6#OA6QHcL zd?a}~@kiIN#Dl1d180dX=No%{mOR3xmL!9>-`fSl4=q+kDBrvvI0afNv(+Sv90oM` z9=QCo{^!4-@axz&r1O8P55Uza?y!ApxA2<~P6iX@j796dS?6BIw=gy~7;djNq7NCL z9=I;G?@@j+SF_KazS(7NU7ZV5U2hFl4KCs`pMcj!S3QIL5M7#kGd}-PJCL?D5bH#{PZDT6YrRvIy zKgaex!oy0w(!V|uh#u0s9%g?+=Vx&?kvX|%);vtTq&JgCj7TOKP5t*?5hf2y$op;W zj=zds0{k6i`tTBZprx=DYDzH3``MG_CGe|)m23i-Y)_bv^Cwh-JN>r{o)fuaOqjZW zIKo*nAE5vkr}p@M><&$3c7Q(MzWb5oc}3=oQw>S$xr6cM)d<$G%|rD*w6u8 zJaUQ-98OF0ln{ggHS{x%s}D1I!T?@*o^MXNg26PI>fP3Xn7E0HlMZ3`J{3M)x$(qi zDe6!)Vx+=;I755i2f4dNiyI2)NTuF6&)W)rGh0-4yPRo1_s45%2B*GT{oWwxtS7&3 zHH;G1K=nTS*s%UeeZc3 zfK%G%gupj1>!q9I&I{3xgfjYMu2Ti6N?i~dm7k94wI9H;ziDWg>zOm78&nOZESATud?|J za&YFAL@c-kjlkRnl(Kg!Dj|fnZSNc@*>fr%!#S`5l48<$1aAOCy%LOEVAaY>kFU;` zt0l#nbnEIp(nBJfItXY$bv=;3m?RAJc%l9|64V?tuT{>wv&~ zK31#0uCpjdqhfRXz6kL6UDj56JSkyTbG@Z_Sy)Css9~(fStK&|RmCeS!BFv_o3B7~ zJ)6%?1|?^kXPr!jTRJuX3|3tt9kvHP+zUw*{gW{5n&h=|c3w97V_t6Dvf_)lC`rB% z#edP@@Y?44!|2s#%lDH5n1zD!M8m?&-ir^*@0;TBa=W>UA8+=gAx@#5r$1yx{=|-j zqdv~3-M@cBbV(?$y^2ID$<+YuC5Jf*DCzDslEjgPrn_z@xwhW7-XGv5w+K#E7096c z_MSB54uqtOgYW1TL9GQmJ&ZizJ`#Xa*1klTXlyAjJiif}P|7Mv&L6rW&H+_?n-tNZpw{mtNqvLk@vGLbh%ZtbC zMs-p>W>%~;ZK}KyKVA)NzF0Zq>#j@Oj1UX2>yX>~x^BASIo`tYw<$8kRJbO{+g<lh%9% z)A6vU83U0MIsVMY1A@@VUZlwudc5L`^8H6XbjCgAQM-+?4vQq&`R)QuWW%a1*e%y&FkZSZh5OeG@vzY|(g1g;#m42zq$VLm_ZBv}0r+WyjY#pnLNpzs~O{FWIMKHls+T)U3A zc_qkoJ_lyym)!MTu_%7M>6tPAe~s5KUvf5=M{2jDR|g)hR4;2j$_Y6wJoTnd{Cm3D zU4Q^UnguBf@FU|;xvFFWOcPWDC#s;JP(mnC3`DR_#q=Weh4lWrn$=@r?J(0nvQ0AvU#a??8;qwdC!RN z-G7yNWavv`k9U?PW85w^FKgwqYd4v?Jj~J0xhu8!F3_^}b z4Hz>>CXB?1@#f1!5+E2CBe3OhEan6cZxB|60xok^Whu49VPo|9@hT|g;BzW`wna^e zFr+#LhVNwQ)`#-Iyu{Jvb|6lSP5L_wqK#bQaW0AU#LDW&Mz-FyJ-YaV?USfj2O&iPWagxV zVm;yYE3XmXHNIruKrh9Wsj}4|?|IXY{vDs$#mo@SH-myX2Sm0-_a0sDM;JEr&7(rTIf6;qvOyPqTSS z6ANv$qRGGZtW4JHlrr7E;{1Y?+HW&nlkWTvQI#5d!-q*`3+a)~dsi1FVvcJc+2Vdy z$v@eqxK$&CyB+ zWP_WM=lXKb#}O01(U5P;o;BRnMO~!&#UbR8?BMAHX&Z0?;@{{|3CJmzmiwUdcLwPT z3#3f3EH4uV<~Ygykjp?xWtgh-U`We=-T}b6 zS1x^9zVhsL3A5_v#p2$eoqBYoxNZJkXEH2#j*^rfk*stna80lg?8lUxRM;r)g1h(GbSwb-YfTRwqE7Do*O} zJn(rF88|6wzT<&1w&w}>vP5dT+z;uPs}Ywxh3ScfgksYdbWf-dJx;3db2{`2sw0s8 z?48zze=(zA<}d^UBoq_Q7^jGa2NN-e|NH3R*z?ls@}Zq zE%AQ8C+gY(JAwp&uEVic;TeR!rJyuTY55~|A5ESZ-dH9{T|Qgb@fdv!1KRbK@4nJy zC>lJqQk9jt55h2+YxwKVp$^iU&1H z^>$XPtZA4_faTXSr|zlMMQMLN1B-OOvszx&wxb}s|9;@-?P@&&>%e7%JS*plA*0EFpIpw}(zgwg3EN5tF_B;-dEM{o#Ee z97yU;RKkM+g|q_*4xLRf;-s*l;|QPO6{WI5PyixMR?(Wa*IcM$NPehx&IP{pO8mWj-AZKX2%JGl_5tDE_UC3g!N66>p(1jr+cc^b!IIUd00H0Q3` zbgFohX>)|Q8T>rhTAG%CA)1v?*il%pAylNW2>OuLim_&yqPcxt_E{5J&U4=kwU^ck z-*n^rYIII}M07DcXo1XS=|r@-=%PY*w+i2IXDJ@tS!~(L%`nBsM4U&54P`FG4y6{m zI(27>oWFfrFU)R89^=OL&SUuQ;N`Pk2TL!m3$~B^a66r~;+|)M{Ql;Rh3fRcUh9>~ zU2j66`<015SiGbyfM&u?mjkHKOgQlz0N+kH%N-y@P@n>Z7Iqil?&ZTlJW5U*0p@7# z-Aa#e{m*?au`QuH5I|rK%1i3IuuL$KPukvCfXybU0?G~r2)F|P2;{t!1b_`tRVr24 zmnLAw-55rGrQ{KhUR8J0s~i`*ZGTL4gdtm|^mS>Zc;b!T=msv;E+WKPveF-PRYFa0 zdavHgU{03Dz>a?+d!Xz~K3kqW*@bmru!&WAw$r&K_NV@;s8{P)ky=7|f_dLS>Y3US z){vXW0@@!&7hY3}h-w)xxMI0jXS(d|v)xkKyB}3|>&?Q|{l5D`F7MF*unD0E&>72n zOoeyhwkvi!6UL>@lyF6Bv5bAaaV|d$0*J&U>1U!yR+w+RVL(JK<_rMMw#|p}Oe((R zkpg%J?NH;VTYnAVQt%(9W|}I^)DwKe_#xPL>ZlHIM$DoSOzf_Hvnx}z5rqF;aD(~d z_-QiJDmHJ%;Z!#N`s+Yw8Rm;7x8qpUx1lBRkZY$xbByf#Biy*}>0AAhcyBsWHoETU zFMBjpcE&J!`y@)IioZ>QGzC?e$#%YHlx z58J0~9?c)@Unja~VJB4s9HXb(b2c^)0~`-O9iNe3hZm_s`SNZZm>4Rx8N4m!Rpr4O zJykEU?kN?IP{s3OIPpNjD*h}siStyN1(>v{F0E_?hmr(P1NY6i#qPwXJQr*V!8irL zuX_q0y?uy4FS|6GjzIH7!CRiCmG*?L3c<%jJ0oj$d2K#$7~GTkSo$7;&_N1}xsCEh zDwp+r*t;>!@k+t!R|VZp(jZ@NCU8>)i2wUWKMf)x{|ung`kVcJ!hBBpk1NX`kE>Af zSwg%$c>K+Lea^XF3z(s}?p0Zd6a?>N%kgGC3s+??YiSc;jdjN+znjdl|L2BQ9qIP? zS02ALQruoSKbmOV2>rDFli5IH28BJ!@}iq=OVqnePHG#o!tln1HXH__i}Vpb2> ztryA3UJg0Ri`3H#vx|RUj=Tw8a=a43R;(|qh4I#RO#;C3ING?a|L_8wDeWJK<`jOS zngM__M9%98vy9Q^S~j@VHAyv&PJZ0m9gQ4NP)B>7@nm|up`ir zYHMKMV`7ZQ@X$XMg;0e%YCBZUQ8@u?g7QXvx+O8838?T2PqZRiRnXO-Tu4Qt^caB~ z6V`?7Hn$1wj0cttVF+<7sW4SQ1E;c`(Q9`WQg$*ZMqn&Y@bS_Uq-4VxzPnjwCHfs- z@W+>OuUW^5U+d;b^|!*wGAZ|_2zGjgo>=y#^2f6LsWvY|RnhHNmyRhY+a}+RTaccO z#GC7Pa<5>TpZ(bkU^SIu>+OH&^2pK^cofj=9dTdd-N@m3s_LtA%ptu6Aqw?(k$BL6 z=U7j*FLbH^M&Y_+!Q8B{bQE$Psh9VNBoLdP6DAzY7GsUNlQw_%Brbn5HKgEALO}yq zgk)A5+v>zj{f|LWnXuJ;}~N@(MA!x3930xP;yPF5^6LX3p7km&*Yiy*Nz#PE|n) zi@K{`{_FN@iu&~QiD;KS=bbbIpAz~k+pTR|cg_PTr%RzHWGM@nVS$v;a_omo4yh(0=bG+%r6&8!AvB*5(xLv|rcf>||vDkdS0 zA;p2kF`F?n)qH~Ngl=OSZh8C9_g_#}WP{|#^?cSiD@qMCGm6qz*Ddbs z>5tgUE36ecJC^DCMBrag*n}9jc_w`DYzy(aGYkYLoLY9CB3<Zq?rfT42Q2lVb1AAA=Z_PY*2)6iZnC;a<#czgrwl0lqlB<3(%blD=!4)A;9kr-?UO zPI1Kg^wTHsR{q=P6z;vzUsq85Ieqc@M?!i#&XyRBmu-9xyb}iIhYU0k# zETW(OW*&yD%Z^FuaKxM(s>TAc&tfWc@0BFy)`f!!!?l~kCh&`b?_&&wOpNF_gTHLl%Hk6pxLzcDV@$JZEoL2?RO?s4 z#DRyjM4neku77#2LI82lUVU}ZWPWL6v%R^{@hT;zAX~Co7^hSz;BwFA+OyD!ELQ6? zH`OZK8<~al&XRcv-w*TTK@wd#+?6HjqonMB#tsic-+eZJ&34gPHfAM+lWY&hj<@o^DPl`;5E?Z=!lvfA< zSx;0>&wWENN94@}2I^HkF<;iY_Anb4wv9?F4n*01UP(h@(T27hA`eYaa?OxQYXm0j9-M-zvt;k|hy7DxWS`s>bNtb2OpQGRz7Fnlk zxO@5bIjc|F7x$f=5_zta3qQ-%ZjLGj^x7{me#%V=!qwY-LrlTWY zM~r`rK@SKb#*(KLQKH)f(6|H8@T#(WA2DytM#{JF*AgGqC0ZPlwZ~p9zj{>}o1J$6fokIch@Yi90Pn0=7)~k~LCe zcE}$iA|I7D28sna-5u6RZqK`oY3I7Mfk_S$`GfCnf5m7I_%RlJc(D3Ab8GUb=5Y1N z?zJQS9d;GObPNeMNYLae)w@Ng=kC&vB&vg%z+@7^_XI_e40E@{NP!3h(8*E-yKo)1 zP7jy2s~B0H7S={MhRWSorkh!lt4U5Q&;M3^J;y+g-^VM)+UU6y=LuB_o9}kAHe7HF z!d?X{u76orNl#zzlJ>7Kj^nBz$t#5@AR;l1e71%i%E1qIjd<97`A)|bKP#u zgrvt-?g47|V4=cpsJ;)mlW{km(!4COuR?}~A4t%1J%*ZLs_0&pU`FrERXXf8@cPaCA$V=lnKr>wskCC?2 z!l5?fWLVJq3R= ztf#;ySV+W44W6OTPo1{wS01@?*-%z_0x(bJ#w5lz6o1vjS|Ki7KO4O0IZAGT|($#$DVDqBGr@n>Coaa(oYVb$TLi2KW1UAj&-wj@N zDqa3q@`{Ub)RH+Ug1@Hv$LrPZUI61-{p2zuh;dkJp1aZV@Ja8@MgrIqY6T}b_UjMv zcicCM;=j_$YANV`mvTra3<4>f-JjjHAF-xVn1rqJP-ne>K1vPE-(n7;oOTN1ye0MJ z2x!0wxZVuz(Blz@3uB7rg8kQ-&CGd{uc*^hk>)N2lqMG3bb|!y3RW`Z@#K|r zkhrOJqpMSRX=10J{3tD!7Ykhn>54wtVdtPcnots}V#6h}`07he7`&q?c{jIWd!i-q zmZzQO{kXQb_!B&S)}1T3a`DWKYnFqjYG^Wka6`{6w@l4O6+H;W!#SZ^pXWL2ZykZ` zL65E8fMLXfHq#&qr=nS1qrh94-2S)^_!B&udA2uk?p#B*Yl)kvKQta8^faHQZl3?iM` zwdz$zsCWEG2s9}?Cc+|p#lAeI3tfI+6W2aA~*?_xY#2CJ5c7dJvsfwiL^8N{d0H5&NbgOKIhP=|4b-yIlUEpra ziGYcTB4f_6nB%M9_;Y8RKgr+WoJnsVdGInuhSk`0m4V7wNL@Wza@%hYV?2ylKKdTj zF7L0nn>Q`1)7uq`0pJAI0Hg>PJHRGC#tXUtE($^bnyiKC+<@yma3i*PO+p}RFSnks zULfn1d6||Pg=a35Abk=?e61GKDV#f64kgD^eaB8AO|YpjEhjU)dKeD&mI?ri0z6Gm zY23z3Tifyql$APzT{6J@eucUt*4xJyNDjtQMt%_|zpP0aK7J;t@3;ufz&d(nW+%)) zSeiRnc2xJJUDK3w_pVXKhfd`y)SF16zHa?rbe&~b6Yl%=moQ+!=#h>dy%B;+j2k@`3@Cja6Ofe*F6EagBRId9MMJvBcbW!QSUj06kZBh_k3aPeBg~S`Y%iv^rDr&3tZWk=o%kxD@IHXYGQ@=uRF;` zi*K`PvddM|9yXL?TBxtilqhzXao>rnZJn*|=&oal+p{xxz*xPW{$+R)){G7lO`nkZ zCYB=U{|H*=uPqsz`H~NM>32u~cMzd3ceoaR=rx@((iZ>5#C~M#@Bc^TU~v780YZu4 z4Er}lpIz`*63P^LCeDwdrJ0cQ!JQPux2X&Q5fxSI)qL$^F6eApg5Hs=M3aTZV@S`S z8{?QjGQ}eq64I<2^18Z`DrYL0j0>|NFW9=StR^$EctOU34ufg&1Cv!<`9b}o#sGE3 zRv0j}Y}UBW?UVx&YMG(gBv!x*SffOZM!BquWA##>bT^g+#{(b#ftvy zyoryD&RuDrkeagX5&2>tcn#_6J_TQWm!17Q9M0N{Y21hCCT z3}Z9ToP*?tgaRl?j0kHdU?u{{MziOh6dfEzN^Fi=DUxvK>jlGtHj^VNiKNuslLT{k z&SW3d*qExA2x-$U;NZHE3g92-LZku#gD9^*Fc^|kR7EqVo%Ctbf1*}wi@WSpIP(GY zq1JUV17`M|8~KaIW{Nh`va29`{(P8{9BJQ!jVn-5e*IOnZp(QVV1rS+cFbkI9O>|8 zY>}9?M{sg+y(gK~j81nLuqp!A9>%m<2N`7)m53?U@hK?7gRiJ{wwu}ADAXR{x$<8u zBSZLfS@2(M@4t{svELX;qOp7H^O3K;TcVMvo?eEtNd`K(1i}pu`uL_hVul|==N)HCAe=aoECn!SE=0LuPR^v_;2A>STg~rgs zJwXT(5KwudD1dFl0Pr(70A#!{A+=~;&(a|(H)kix$7VB^C3xdy3pc0wkFirv#b3i6 z1@Im5;;)!1JMX^Mb8XKoX{4?=%v9cX$tmgf; zfyGb8$ja3pfFBe~PiLw>aTBj@cv|@Qm&3GfSG&9$|NrEiKV$z_6b=BUZ$0}amLqNd zwa@?zLE|MB2X@Qf@`kmItAY%c^N;YYZ?}qd7f-IVbZkDn@A{`DCic(E-@o?{eX;NN zYsXMP0C%?$B%8Tyn~GH&H>Vz}PYzl}X|E<(!dl*30NN+Z)^z#r2X2ZGE7_TFM5*GI zZj?ST6+Js8B_W6Mrx&bl8m$&) zF}lK@kGWK`QQIb0#-t+D_aKrfp52RgMLeAc96uW8UKCHN+LRC)08*GBTJD9cW^t9p z?ly=57B~L$I9i-9ZjbiSeD)jPfmN+S_34YxLu!k>an8Kez?cQmCgYhKf1?F12WI|C zxLnlr?#`R&IHe!;LRF1x4Yi?RS$jYCC*S$}jwibpUir0$*c$^rdQWQeuH~z?@4mCw zj$hE@sr#UbE<-085dNC~Q2)Au+2Je973@%7eL+7OaCbz*QaMa%f z_>%8G8r6u%8smv#LYjE8G3lz3D`j<=v^V`4n1b;-+}gqC#k?5R&;$b~tqrqEkPN+T zX@2_+eJ~$fstJ<}2{RT4dxqD6-?NKIdhivw-p5_=+tS#<)e{gZ$JlSij7AN){HG%s zGA;L!D-6qp-kM6Trq)uDtH!@?%twe>2vuB?p|2%2)w&lTI1*t z^{^(kPQh=pPKBFCSn(JD$afPLgyR&aO{s;0^K5Wz?PxXi0P^`qRz2n)nuCHGq#9Yh zu|f4wP?L~;#Xeppsx-y(=G)eBj#s&XR7^q$uLH#%h7Kq5C`v&>ZkK#z!=vRc<*|X{ zrVQc1*WU<4o4i6F6@H&`Rk&coEO`I^=;(~>@$G?FLG~TR7eYRVwJ|R6ardIOqv^q; z(i<|K)+h7~ww7=RrrlBS!4tyRy7R_SeASNIA|mJMscas>v0$`}cHQanCHSOKU08PK z7s-rJq1$Y|oWtm~naPU1v4hul6OAvW9Zo#DHNE&WCG_u)3jY^6|0@a%KUAGpFL*gJ z1U#9ld2Pw|OnV{3+V9YCUb#xN*H8b@-{nEYkJHl6r(Z@cM1HuX=Q?m{OEZ+RfnvuI z!(bkj9dH1HTn7Vyf5oS2q%kp!pvBTDvS*5-1?HFOO0{6z{(MkjUqm;H@pK~5} z6#}@f_NG-C*IzB2-&*H?wbyj-tYRoGd$>nd-rV22gn||E`3m%deXIGnHo} zcJa%;q>g&Norj0f({p9_8)MjGqQ_FT*zzuFeL83JhwDPZ@n;n+kL%Vlv^(y~1D8CN zrAomu;%c+3$QaQgi;aWVPG?GA?u|=#H0}qvaOiRC=pC2dj_fr0Jo;(j@!n0$<~hd^ zw<53dqs|wr-+wRN`FL1*`0w~|@mM!J(*}DU!wptr0+fk@27p8WCKU`^QNXw{ z;p~P0N+0H}XebNA%ep2%pd)LeN?|`?@4JE#XAT9R;A{X8i>f{=1zrGHF~o5h32KFf zjGzN}Vf~z<+>T5l0&r3)4Jc6wFwYbO!u!Y+Nd+Y!AlGk(IEcQW7w84~zzernMp&>p zII|>T!>T-IpPlZ+cn%wlw+EwNm68APLM18yGhTJ80`}0ddCpI zzAvP|7d#g~GZ#BI9#-8wd&O9~>NR?W!3B!E`evb2rnaN{?4_sJKGg@W+e-*ZqmHk7 z<4??Mo-THt37TqX{e5F^t0DbrFo3t(7pcE_yYFd^gv?E-aA^I)V{AeY#`;$>@&XN$ zcrgvbi`G+a+b$6ls11-+uPPvDGfJkUQB1sZfyl`s z?^(e*Pnlx{VUy!)X;oRy>&VNMX(>lICJw(8EdUr`sXI&oQgTXF$(95Z{)k5{o{+wJ zmm7|Us|)D5NOBmxN>m-dN#l%d2poz&wTS>OHe#x@zZtW&j!NLw^IS}JZB8y8%EMD6 zU*o%7N6GRkf`%;K*-#$qCie69?zT>J)TW$CyL2mmdsAy#mh8BZ8DCx+l4@i3s^}?! z?|Y}gh88z1prCC^@q$b%EOhy2%Zuxlw)dHCJ$brXe}&#v8K?LEzk zZGPkW!Tlip%^v(ls8Gqx&$l%Ed$+Q6H}$3#w^N8nV7w!Rfm=$E@Ra_rzEoSdmNB6(7&Mg$`%Ig(*P332PZB1J zsSn{Z>66-U0}ij10W*Cr19cvDP6=T{_5%NFWUVTR zSj_ttYUb<7HVaeUTF6=A9_RCTsLPdmo68x`{HxXy@2ceB1wsTXtQ3^G`O{irDje>y zCPn#x5DR}F7Hpnr_$p{Asc&9B@J(Ssqu)63$)&<_ALqiJ?~w$(;Fy-C!O4%0Z2M9o z{{Ad3n#Q`W8pfIh%i*1hgSLYLJFbBcV(rgDZh{# zTH@=MK|uzGzdCo9iPkfg0f5Hm-@TA8w}NJ7g(7igbq2!WZA3|fE7#N-_{wgO#=jmn zCP})O`CKoofB5KCqoG38i97#Be*5d8*BmD=vL_0jG_8NOx|3wKZ0l1hoQjt^E4Lmp zTF!f@tzjvj9dg?6Gt)J~X|oQFjY+?$_2Jv+bT3Bhy?(qO_~!y&&IN(hlBkY{F>bFN z80N?Tz0Ze-7x*82{7d@r;L6rjFT3-B$B#aI{wzAs^?bzPYl~$ifVBVvVhm?6>nHqd z*f}zbId)w#O%h{zB;%J=EwT_7k3k4G^Y5frb|E7Y{8D=OkwA)BUw_C=$^@!Ih4xcF zCo$m;lMlPrD{!FEB*;Fg+RSH$mqQn&gKG)tmxe^Rb)7VM1_Pm&0xbZ#YxAWWgN;0=Pi$1o#iy2<~pP+GvYWj=Z z#}l)}{p}v@ETdB(N*4oE7%b-v>`K}}dpphk`S1UhHpb^4%H99*yt6D@)GOlqk5;$W z-y%61|6IONR4XC`o(JMcFlI7vrWyzhNg#re&=i-1BPFCv;>-~WSr`A7+QwOO;VDao zlo&DquB8(={T>1a08ssLl?d1`8gEIk3nd!_nxW=sVS4)Mz=Vx9Ug-5ngz*nJ3S%R! zpiyDSD#DKzWVyHn4OV;vO|5nFpc-0DdNe2fWJ%mNFiGMYhwNUw9Hu5alW41YllPo! zi*ou`I9t|Po&`(Zq@JMOs5ndPSuf^7?i(ikzZ~nIdc3W4=bVz?ih6UvVb}4*R{ZLW zg6QMIm*zJ&<|=reUXOo|KigeD7`wWAX(D=zN#vib|AL5iod!oqoOBI#?)6Auck88> z-5(pV&0y7d6eq@+xr5?^fx`yCIffV%s1wxYgTVkh!IV#!1h^e^#vk(sNS3rccRo~N z9kX(vwmuLmr15axxae$U9$Hhs+=OOJQ_F>6Ab^3mxa6t<>6bzPE=WAimY0`<3`}kg z*U)Wk{!q`k&}`pDe)&rBasG=Hc5oaC*M;UbXotOEc18l%+P2GtI6?Ar+eUCQDCy$Y zXQnJ~mCI{IvMja+N(+a=K$&KPdAFw~q@M8WV}Yym7O6A^ntj_rprxz}_y?ixUw$Gw zTTHh3+U~;n7Y#ocfoPg>U&jPSoUj?Lk={C^F|3Yk-{)A0Z>R0}+kqW0Xb>1m!DB)} zh9HzJ<}&j-C`TC%0J8?0U|ay5kc;h@F3uBHOs~2KbYPw706WXbqQsbDPGA>t;t2M9 z7!4DSs+@%-#k=K}vGX^=lz}V=c2FiHds4(^48}Ie!s%F$&MTybPlP106?to@UdsFY zR56JlTH^K+&^zmW%;9lRYVh(*Qp{u=Zbc394c31<4xetEy-nc-vIjk)UMMfbl^2*um4 z|BIB3>~@MhTza>^Bph(>&c=&UW|>U)VFj|H+SE%p!2P?(YOapDwT86;Qc8)Pm)3|C3lx@h$!2xp?UcBpyEPPJy1stG8W(9`T}BxUt0_Ua_o%R`s|Po;$~WZ8 zpPl`At=!+i{Ptx(X0_ZvnI!7tM(faT3^4xWObnWX=O1vztBGf{OIRZMru#VU^-{d+ zWs$jiaNfBECt2>x^kv=?`{5A#W=`+L2b1V)H!}!r>YwZSO#as>>|~pMBGSRj+#_B#&ks$? z9Z0?--~9c2)76uwmW8qcrb$xz5^WGPG(avs2hHFMj3uI+X}O6z3E^hQ0bp8zd4*VZ z)>skEn8uv+B?WDa0EBB{+6_J+y@o$DX(1eH@PUc|xYS$+R^O~F1EA)`^9d3t6y+-( zBJ|7dR}G5E>J@HC(ih?>% zq31Ve+~?aq=}1R}%YVc>a7h2B(jb7fOAVBjqge?3`UW|=mTR7i6X3tf?Xp(qlLoRo zcTic)8+0_;8eRX2ynS8!pKwO@mdn2fppoU+Z~XYHuHVaNXrIcRf4_{hcs(27 zzAJSO{sylKt!J(T5fR{I=n9DF4&H=OVidu{ER}gV!y+qBAZ(JnmHU`>VVJZI`H*`lqUvcrDc6jtl}xhluF~-`Q6EqnzbE0Ws8GHK|(>FFR|-#Mk(VoJe$Bp ziKus+V*tzemD{iJP}Km4N2hpv0$Wy21##>i(E)1Rj~^A3z79V0yB`}b9Vez z!TaH`itVQ%W=Yzk)P$84mgXp$i*!L8-R#_(tS}=Hwok^x4UA+OOS2zx+0-|G_IDF@ zc1N?M#N;GZ&Q;&VM7Pl2bV>@ z-!O`9ZF+D$Ss`HAb)vmB5^-U{Z62US^n|SA4Dx^gZ5!TUrj>f42iGPm(G~=&fuYzj zf{=9>Rz#Im;v`<;mRc6mJeZ!1iG~JK#IOT*t4Z{kv1adUoXUp5@gPKfDw6M9wXV;b z7NK`2E#ed|>AMC%|Dom28Uy>_{7wNMF3|Vx6jLT{#f=C7wn3?q`wj`9uwATesb2m_ zTl?z1k=w@V5m^M?eoNLaf6&EwGQ4>>KVBqRw6(QyJEXvG;Vbu2@I4lx`k|jMo)cSk z-DGl@ck|e|SGvD%C`z(Ce&+zZ6_Jzr>DO$O$AUBBe?{Rl#2M=SzoHNVRHSi5T8CFa zvmr12vNI;I|5G_{>)y~=H-167Ivij!cwu;ceDC&i6|s&-{-;g}Q9=J+6&<~3c<0na zff6xNATxS8cQm?*v)FZ*z0h?_jDcJf>Ta4>*|N3#`&zx8k%CT-H z*CyUx$nlApNkMudAuJ|J=FF?}@`{mO<^w-idjq*paw-)%^)ksj=e*fQekyi!A z$!8vHsGS~0ZroFy+WCH1GM4`CyT;Y-`G7~$2eF}g|D-&$C_i%0kE4_>E$xHzD z`N{+90RUYhE2|6`r48a)XF_pdR0V3JkNGrAMJ1&SE?^d!`o&{0wh&1V0w~j+mTHP3 zCBtbi8-uHVry;QYOeqNfc1uIh92(7gKAJ`W+Y^q~A#J1aftXK@6Hy~&P6zXihXX`K z8c(WWPrMGL9o?1M*{}!m7Jx!RjVZ>kqoWu(+lR`D>C=V=+dq?cwM^~eJxyoREDDuW zxV5d%ufM~Xx1&EjxpKKLv7>fl{-NWIt!cvL76Rtq&B(wgz2b4#OTX`Z-d()M9yG1y z{bb?lgT>AAj}Ct$?@-xoG4kL6D2|C6g2Hgcfsk|}f(i!o^r2vI-hnrCw8W&~0A%PZ zoN8ZyTo;jJXU2yQvsB4ct6k(*;j56pts$aUJ1!vMeY>LM*(9&uqFMHnk%{{z-{j9nI@8LK!Ak zLsJKD;0N2=1}axhk9ppuNCMRPF|Wt8Qp}N6T#YiGi-ksV7t@(AP=2{5TbnV%o(sy;dOSRekJd=!*$)~0|Y}GN? zKfyJ$td#%E#i=7z-AbQ!zJ`fbo#RQ+uiJ^VkjeQr$ATb9zk-3@$SUGJtc0#FCsR`w zhKd}>i?B{T%-fP0O}{=T>tuZ9%b08bD+))DQDLv%gk|!|DZB@C%Q{@lD~(xs=fL7r z?M&YR_UNDNDOXj`>>VueXNaFqEcWt?7Gc9*5Au|y@}|C!^y9MrQRwU+fsFQmG&jP> zLJ$!KvGl=I$*I9od4e2pr0UgDEm@l9Vg;F}^u7j7XG9Ufn_JY(p-bdvg6MbhL-5<7 zQmR}?8P>+Z6iv`kQ+y)--AN28_vgbprZT^Pt_qlMa2l3bKs~Ah zNMpyl!4LJGfnMIm=y~bB`%HHhFpL1xZGu@6o2}(?Nf+hflJx3l#5xx9-?5nP(g&W2tHH#tlpWFkk03Py$mS^9fg@wbq1d8 zHWtDyh5*A=fET*anXy2LdV))vfv3A5s>Ti=8PCRAeb&@cOAQ1tdrabzqazZyUtJN1 z!lY%K4K!otN?t9zUPm2^dg`=sG`0&^&i$)4SyQtV85p`P>0Y$7_Ma9H0Y-jk|qT<{hJ zfSbeAp9`Ws7MIPGqTs{!uPCG{Az6Vo_wGamb_gSU+W<W}sKA%kLZiD+&jRcs4S<^YR?`u_DbRV95Ygm;R6QYUU(& z2V>5tdM^0shZw#WTmRZ7V!s_t{F*-9DvEviKKtnaV8sH11FT;pgfLBcDL`O_Nk@ zzo6Nl$QgJ=k0-=eVfGaiYISr)leXU^6KR^+XU0|Rd{N|gyWndyE>+7^xR%L zG9R*jb-8l*#w{&HB_P0B^!%JmeZfIGZ9>St62%YBXK6Du8~_tXe&PMPZ+)fRG1?) zrkAyL^?q^&`+ZHIt)b=BPRmKxo=t-o7clN%D4%}AQ`D=y`}6CM-=9^U*nodX^mJ{H zVg7ZA9xsQ7MYuk<9ur?ByxpFyHLSgy1$vx@YN-rXGuOMny=v(F{ukUrPvzwHeM8mp zVVT~qY2S&z8*Y{kz5av$JJIQ&aHp)3GonuZ{{w&iKNK_sPIKVkE#ZZeDp#{vy)jo) zX}CPDB>ISzh@fSe&qf+mRsGIOrZ0uzd`Ky1NfOQ$sR`(NX^=>dXA-*j$|$5C>1d*l z4B$bvye|;C?^RX+1ww6q1os1gQmhnt5R>G&?6E$nbE&L}aw6HD0Jg5qHEu0nu_GyH z?@iS~^9aEKYf((f9hAO5ST0}->(_l!o{{s)RKl3O=MentbDhC}1!~x2?_u}K`shQI zTtmC>txs+CdUl5@dK_2zmTR_L77Gj&Bht-8AM#d3H>{-RI=@dNRAX6R=`iGJ-Ld}? zhyeAy_!#rhPs;TfH(?qemtgzEvF1C$0o^SBY_bBsueZ90^-^sHGzP~Q&%0C zTyOy4w=wbcv*D2a?l0mwCOC;*5fG`bNF^b&S$rkq#_|&cOG>ZOE=M1%_V3!80zQ|e zeP+f_np(*|Es?8S_9v?rn3%RgxiWq(W$f_R^d3aT zvj!c8Wj#y3f+~$zeLM!)bBM(R*dLCFmwY^ZnjHH*_ULp`{#0p?{pM%n`mK`HKc}6~ zB132hXT;Go64C!Wb%V4aDP~#xggU zx9#t@y-J$(}_2mmsH&N3CS%X%iwjLfRxqNLJ~#h(iT=G zpWjflsIvb1`{K_(OmC_~&bIR0Tz~Cu+_E=li>AK+YAO{j*dbt~om;J#Elr#iUQIBL z+i(6O(zek}5dU?VG_4)~Z4t@MTfG0}>Gr7X!LTl0fxME+7Dvip9I>2{(K|W$X({xD zw-33&t3LmG>6D-73uv^4F{I-sKtm)I3E+q`l7xcWR|*guS&7EQ7=R*%fs5h9>Bps} z*l=-Qh_zEw_rxgj0eO!Wigiz=xq9Tt8h^|dMW=j^X-1LZG_2%r; z^0bvQxd;l1`uW7vzoSzl=`cdPZ@*1Zy z>f~8?{c2fx5_ep*^UTD*L7JVl4IdUVYydiH**EaiGgI@|7<|E7nNf~vH*RSrapNCI zO+5&hlkwe+e7SQV8MHxO{QHT}+YexY3sGuOcL->pCw-I&j-UtjRkFi{fP}s<9V$Fd zd$<5g(1=Hjcll5oSO%8|YN?c=@cw5UR5=ia4gp&cavWAJ*2qg?fNFG&^@GaEB2c4Q zWuu)zS2*HaqYxuHFcpwNI53l$`L0CO*jSto{I;$ZD&;+}|?+8`qxF#fNq zrKjAedrnSX-cfU~jTl-jTF4&D6F)L$o3kcucSd&U7bUSQVIhN}WZ1G1r{L=RS)znc4|oIk7cXdt%}#jA~|!0 z_qgwRSUwGQ%S68vXxfRr|G!Y`A9wen{$A@jbpM0>aB1UG>|yNWHF9xm#Af@%X~pT~ z9-_*MXS2vvi5lujl@Eom$xD3Pe|Zp3uL}D|Gvl0XJCUT3foV+*cXCLjR;5V8Jm49a zm;@V!dkZ$!Pw*_1;XhxGY4ccb!38&kT6ntIvGALQ$}wx`*P+_jZ;v=R3FTWjo85Wo z8FZ$2qWa$79Bnh!-X(c{i`r{?UYKt}InXbSnZ&Yz7wW$qW{wi+tW z_r-K8%FFMV$+`aw;yr#bUsT2ABe!zPV`gnH`t8CCC8JLla#?5w@h0UvKRAMHe%L&1 z$1`AIy^Ldjn^-zsTy@gDb^H;#*=!Tqd!@qec*E7VM^Wy!4J!%)q~JJdT=7Ok`Vka< zhK|F_5P+1KKB_z%#rO||3sTSZP4-ib;i&^gE5=lS{_B|3Ef&v!7H=UVMOzQ>rp<21 z4*m~mMaEp0WbCaf4<)G*xxGRG`bw3sQM!JzehO}JHj!2mC%(j+2rCJW@g5M%f+BJC7UZDMRp`453?0xCCMoosayKjx^{Jcz>s-Bc&PF9hE z{Hl$Gh7YbVv9|R+X`Rb0k+`?}E#Q^wVAxu(byl&AsfNS?OvAh!zi;eR!6_DNof(_q z>b_1dk8az-mXg9>JL-g;h9v;I6@DzgFFi@6 zVAe@yK%fvyGK^wm!)XFRQAx`DCUBy`)lCg1`4tfU&mi5@c%LQ#s(A@oEzm{d6g`o| z>kCz2P0OD`w!LIn!~vBJrS5;XD&ykqYxOn@24PRnOpUG^^|F5vyJpC;?TV0^jASqD zNb@!dBRdRD+16!|%O?rj3i34f%wccEV)Lp^v*ed7b<}SLb_eoj`CpL?YObHNPnTTy zr@L&0Z0>4)J5y8LIP2~V!=D^< zLqH&PdMaCnF9YyD0FWn^f#c%UNd|yn0Pa5`0dB%UgpuycZt{?mgWl|J@=BF^Orz@I z;;$JuO$J_wpC~SoXA&=_2=^ISS@Ey|L%?bmalYZOoB~l%fRU6`rA;1j0LTo5mcaU6 zHBWL0;nGrj?`{P5@^BTo?&tQ11RSw~=n594=%3Oszk=X1@%(O;EhPapx0p+@uxny4 z$qfsqCi0hDL={PN+%JOt+b;UrF+AtTypCk&QF5gh39^B6pQ&ZdAW}j?kGIiaAivN*A3yw1hs^b zAA$8ifS{!joMI<|={v(*sQj3oEaogPYQZ!vm^$1q&d>u3p8$KD&rDnApS{ZtP3))} z$7A{-UVRC|!7v^B(1= zUH3iyE}Cz%6?zs4{GMEK%VUbCSFD{Ur1@E%6E{;lxmyNV^UDmGLK=4599wzjvxN$u z8W&kpEo-bOh1YSVdHTC4P?if!)W2Q`@6D!)Oo;4AUA_Vu6hpGAz>TWjM4x2s!5{1S zT>0t#Jo3V$&ekH~hY@*o>COHpayr29R;nK8I$-+e#n9Nw6Am7A-kK}H z7Yyf3ZM4pv7$sti1?E{+A*%m@z=clAm~A+i{e>1yl0^UzmjXdn(i#CjT&fglB_WvH z`^hxe7ZhE~c@RtmsIwv-QBXC&1e~I%DqUQ*w9Ce(JDRID{qHCveJGTpCP9X*{NEkv zfyw9M%}p~8OUhbX+HZX+)w6o~!?K|Lcg^*8uFiih3zY3;@ZNgA`>hnhneoy1_75t- zeBH%dGARGR&n-Z=JtZa&Ill0_ZC%^S?!;E^t&T#Nvri|pN1n!+nq-MbVw%bE|2AX3 zDaLebIX68mx<3AG`7}AqL4Nv&VtcQ}g9mo(c7Mz2qBri`+*I&7wYU)Rffc~_29BO= zl)8%Bl;9?M4=d|l>#K)odmC<1mnKKiH0K}tYI^GQwf1Yx16!9Zz1vq_ zip`%qec4<7O=n{HQNZVbp6hN&(;KbV*ouSW;)20Q84xT-6BOr84`U_p;Rfk+02~G^ zpnnyeJVPfA%V|nV&UyvBBikbGsoc(*#W;NvFQ1z->wp z#JJhqv)Z&!soAtXr-dkGbM$Gy?dFc}%6$jIKbGTPBeP58XID>}v)c3ckhc&W?MlA0 zU8b6$>C+qh6Zjd6+-C=ulONy7X+OGp{bs@8^A5q+3a?Hpx;{=cX6*q0ciS$pLf#jJm?zGq@r>scWD}p8-fr z>9jrQ8dqdf-89h`ye@$q*1`o>GrnhbA0(s=PtEJOWpUPxf?p@W3oh&_nWsFbXe*X0 zaVM_`UV2-+)0;Q{M0sD+l#Mjwi{uhVOQ5!yYEUlZ!t^kS2~3vMxPW+m6z51zpkM~@ z#1}KC{I!YK@Dr8qI<%ihyX8%XjDKN?Bx5G^I_QRaU371I`P;o>Vx zvBd53&g;AK{JKb3GHERswnDzx7oRQ*xkbZ$_wjVO@8<24AY9-`zG-9nvmwZn2}{A| zU*XdoVcY>_$$0=+4gn&{>;a7BrX167*mXYI6pDI!`{QHf%Hj09{nx5Hd_CVH@_wt*K6U@Qwdsu+ zZe0p+I)3EQI>z*+Rirly<27ObC?t2*v7xLbg7LN*UIS995`Zl6L>$Eg)8&dOJB!^m z!=lxoOfuXlWMdYrltDO&qwf};F`kLGa(mm zq{I(be-Nc|4{rt!TqH)ypcci~qx!ORCR4EgRa)O4dPmnw7Y}xN#FEb%Px4hW@U^~P z=h&WiyrM)+LT{s>p{&B){FVZnN&czDLZ($u2I);soo7{b)otr9uodK3BxI1$9V$`| zQeV%F*SexU^Zc@#$on~J?UK_EyHzn708X3!@wYabraf?~r2gZFz1|b$Zz^|4 zo@|CppjD#HAO=T2a_c`?s`7@Qxb3#kgYjrFfo4Q$k~XgT}$7IIL><)p~E zL`anl1RI@1=kOXaabk`k_G%>VwtNm_E*MJ0h5>qfM4_Ae3vdYvB4qDsRV8vD5*iF| zDw6K`iVnRoq*D6Dy6q2bo@6OKuox*)kXv z=L3}1zO-xGSMgeHP0m^L^%O84fA4xfD*a;F_972z*SK+{{|1I?gOkr?RbBHkv~nT% zRaX~(y*QKV;%EQcPCX#Qx^ePrVLW^x_rZ^LqCwbaaQAM1@+;8c2c3@F&ybX zmmS!pcHpYj^4-lo7PTCCKecC=@&61nY>#E+`D#1Ay}e&+)uYKRHEE>v#lT@}Nv!ML z)tPNC15PiAXi(DqQe<5UetgL5{aNk1x-U9*`iz#Qa5qd8kw_IE3~*DoydF@=TAFIX&BXmd;9*QYpc-4eJGjSeW$d1t zw1Hs)F^2U5_yyogUq=H@Uk}}sub_<(ZGHCSPTMF*o|@#YjflMxu#kjkY!4CoVc^?IILpTRwsKrJoJ7n&QlZRDfb(@Uo5k^OQ;qMFz^inv>fA zNe3ZsgIXT$=hp3APkkQZ@Dcj#2s)gLpLS=%Fp??9)8#*e=Tl--0eUGVsxOhL~V>CyrwrlyQHd zTU%uf0NudJ6?bbpsbwC4j%QuEI3Ung>KbRyyz4 zJ3qZGdznT3h&IG@kq82;tX75qFnx50h*zAA94_1wLfiTLWGt?!r}vUfJ8!X~skBf^ znvw+Pcw!-%E##*as|HZQUa4jL0FRr)JI zl9l*~TLkaXzKX1wwq4`d<`A7ii|wK1v_Et|Y~!W7@HR2Muu2mrsf!+pqc z9lnj#q6>MJ=hq%fBP3$2zWc4deW6i<^Mj+W_#KgG=F{SpSQimz75S)y+y6jRA7_*&A(qb0+H{d+)F(4r+%|6PD1jAPNZuAAdE~Dx@dRYq6!G%o&WZNB z$PQZQ%M~(1t%qLhRcJ&$fG+CXl$q)|yjWka@W@xF3#*x}81wOejlxNyX@sZ2ymmwg z2;RsPNeE(CO#a>9IfUzWR=j023T~%wr=Kr2^y)FwgsI%j1Pf`nE*CYCl`)AW1Tyyx zuq19@OiAub8*rf|rKN4KRDC;FV3zy5kt@0KSH2Wi3h@oG@GGQ^bHU#r+gKGw3|4ni=$atx7yYkR(Oq>!d#$57qdt4=9 zCa7HENt?j^aI(L*T0t#*{6YD(-hHxCwRb zpJ@6!Ztk0k^jaI#IB$S&PI25{JIl+LW>*&yMWJ2sD%5XX&u;QQyScSHFeUlCR&es$ zvPW9nP}S1OMwg+)!y@?EV(I>!^I3MyB{WV6d@{#^ToOK}=xbivk=_~EmrTa`|A;2J zX+nJ*3U=&k7p@N6@Gksxx|2J7;rq2l{^x6U{~09ki@+}3?YwH;J>_Btc#;q8Nt;mECi4=N`O|%TmwK#eRm9!=F#a zK-JtgD}_bVgqgytuX02|Q7-~=Fy5Qfg{r@te9ylIVyN-$;(1+3HEJ33QbBNS$TQKY zc3D*p4Mwl;rD=2L{+QVsXeo0~u;3Ek|KsT_-ZDq(T&>(0RcykMoLN; zU5b=Q>PC$2PU-FjYjh(ejnaaGii(Q)2yzCP;C69P-4sxb#K z#6Xg2>9E^;ZHtdtlUQuOn2m>qlU=c1M_+z26}%gP+ODxqb6x9dyGGA{u@K!VRZvU1 zD_}*hEz3t4TUR>WI9mVbvF)ZuZUipfeh{B3=d(s<(IQJb+AQ{<)h};#%Ki&m+Wzrg z8>o!{0EDK&x|Fn@=J_FA)hLNc2B1hfk}zYN0_-bZPwa4vZyo=dwn9A)Zv+C9Y4D-| zQEfa71O(XOz-~Z-yb{<5p#WhSVa{mMWCM2Pw2qGEPvX;^OCidz^y4wwMCi@{6N`fV z=bioMJ; zI;jOV&3Za#k|ra;n#v(`G0nEkBvU|Z2gk^rT^XD&v!HF zKT&uK&^d7=%k+ntu20tLdQaOquI2o@JU+l=F>ll^p%3R&0XJzns9ps#009JmHW(#} zUhDwMfhh|@@g04oyj)9tsc^1JU`0fJlv+HXlT(8>B;gZ+OTf()8z>N4$qK#9196mB zpWuOYWvUP;_cOO>PSj3hOx98`03cwE75{qGI{L^do)V0g+*uwm+!TH~n^|x7&t2H_ z&iY5{vSlI0 zVST5|AJ9B)SUb6}@sCV-)xUNSI>YAh==hF(L6bxA;EK4j(=!#lkPV9muXo&whG=g! ztWnDIgQepo;RUTYSL=ZyMDP5tX2BEds73?@onoXyItR1l#h9SDQD*{{RjF=s5Pvn0n{Ag7ByJYr31i z7-dhP(r}{i3B%Xo?1zwIzdiA@QOj@7`}W~(S3ggMyCVeY1S56~v<=z)`3^$v4*Bmf zqke&shh`=zB3(YJAKw#Dyt^Gg{BEd?b52l&bCI-J>fwLOiw_#Ivw_L^t3wk%&X-rD zDE>&m^PPVoWT5~mIa*o?y2`gB&h=tWV8V8-OJ`0|aZ@krIs4<0b zEw-N$G*_HFS)-=8M1$7BkX1)~oU$gDoBmEDFMqiUM_v($JwaHMlavd7%bhj=IEF7c zdIe%8&*&3EuG(Gh+I*yV|Qnv7+f0 z;35xReN$(pR?lITVX~2bg_m)qgdRMtr9ql3cVgnO`24ggp*XjRf6~yt@bn{UIpQZT z#~f16y5d6z1KVSCD_N8hMoZ2M2B`x8>Yz~|)(Kw;Bmt43_&KVbOIJ!VIFqV02vd#L zFsizX4x%r;44UWR3S6_J<8a*F9pe5b^a`$pumn`87Ky#sM3h!16yg63W6mJzqS^C! z>`O>hE`O$JFX%Tl+UTEN)r#xKESYK=j(p8n&AQ}-;oaU~Aq2gz@Ljb6jbW?4HC3EK z-IX*Q&TRS{@EsLhj)cWb_JmR4BEngG@Tqs~+^g&(#)O1diZM5DX9xUpXt8lGu8Ihc z_~^b>KT|yumV10r;I@#nj9v&(^jPFz0_bojMM7f8a`~_x(nEeqLvNc3vx;?6(S%entF`{iP>mk-bzq!qIH_;473?W2~Ejew%cJ zL?NN!+>AB{M&?F!YLn{j%q8Mn3@oN1UF&k8wq0bE~ zT&I+{Jy!X;VDnZ3c9w}-ZazxwDg_3Z2ZM=@08v0NSxsTD zOzVTP29Cfz(|Z5#)~`>KoXkviVz6G@Osa@= z+cEHUBjy&7AiR6A`A)Y)1V6{3Yr=?=k7n6$5MO@61B#tY?P{(@`PY_ydHt#5#a{Da z88{0_U7u#%?g!=W1j$dTpQ!`nQ?N#V>Ty9@hBtJb&d0wUf61BnuJQ18jHhh(=E!td z{gd3y9;w09@Y9of4kd$K(hcURj{Z*7UR1ydEFI!XBqM+|kC8Y*L{R665|0U1%wQk@ zMkmZO3w;oU6yMS^$bX~YFd@%08UTDtAkX&G!zWiR=g@Ae94`G-MIoGp9#lz{Edr7@37{lxW-NtTw8m1-K?)k ze*cktR$9>&3HK1?b{hfKeEYS@+>-m(v$_(4_07kUWwz@1mveK~#}QydzH&|vQl4{l zXJ6AOsKnJS$`VmW8bFSw(=IUHP{fJ^2oU(e@`~|>5@q~2)oi}R$N{xc^4PWpPB{&o z09S%~kR7v(q`jZW%Zlk`$fnglDn-lMp9pzQZ|$u4r}X=9qpOm})2kggv$|Uf&g?ts zVg@3%t2Qh(WQ>8=Tl4m5{>c^mEDo+ZBkl3H%G}L(=zxqU($2Jj6((tP1O6 z=?T$oove2Ju6lnmdz4%LRol(VC7QG^O+)(niOrx2WguL4m^A$qg&amd>CQeOJDwx&y-w44b0) ztoD+cHqLAMN#=r=W$jPVhu>T8uemoEO`XnKHmE(c{_*YmazhH|=*#=Xzwgg_y}%51 zy%-8_aq@Zg1%l^CiBSx;VnIY*0*XHokVXI`0m$RQ`jE@VL^G=}V!+fTNM_7dD9F*5 zQxmy+nVBI0uqo8<@)sz@J{rat}MVgm25akMRY4Q z*~nI=S$OmPrtWokK(a{V>n6>yAiLm@#RRf{?rF73)7D;~jdumton(r^NKw8t{dED& zBF;>WGtRwF+InI0E@3YsUQb z6&wJJ1oXw00uUzZo>7j+arnM?kZ3dy1YB*NG^#>x;PcDc zp8Nk|-Z)D(Wysap+UIsOq=pMUfsSgc!QWj;6jvr@ZhOEKML(m(Af?mISboy(K2lx+ zCrDpe8J%&h*XC-5{zS^S$P_MW=Nb8UKtUH5-r3vvxb~&3qyWyxYQ0|xna{l3sQCx+ z;6v-@e6FLw*|K%c^FB#;%y0Idy1SL3OVUbjoIS;yN9$kJ_P!l6fkL!3s0c$$107Ie zHVW12jKW?+g~y_&fv8G)jOKGR)(qt_AuE4;J$CS#Cp)}S1nIGtx1F#hT??VCI+1Gu z#EG>_6QUYElP!mlRN%@xG^LOzHK36R70*8y=shiwhTX}Hci=jQ=3uu^YJ1QaTh$EA zNonS2h$Q+k#lOs*C}8)vabontdWzF+X?o?$3W;~s70CsH0WsWj?YA-&nF2T@qPWRu zBbSOUFL;9_nww=hEk9K#^I5^=*4edE=z`p6BArxFJf7`6Dj_?57J&O;5wJKa`kyGg z15ou}+7$Yow|^zYQ9m&DvM)}jkUsbb9&azLIz_iy#0Ik!$V#Y>mc9+ie6VSi`E;v# z>BrMxj+nUCZ7p*o2vT2*^5rt^*$=$*otn#fIHF{Y(2^)ois^g~0~bMq&%z8pe3Sa2 zNn%$ifS6;1cYVVgW^O)7Q342Hd+Gst3kTRlAL}1$u-OfcWK$UoaWb2~b*GBRcDbFb zUqYK5>F-aLdOw`BE9is^Wu!!%v-2O>>8@+_R$ZmMC>af`)(;46s&jPx@iV>iMEW$= zv;@;cugxxXir5TqU=-|9t-2Cxiu+(GZlt+ehi!=L)-{)Y^)9X!ddG8=g5Tu+m!068 zN?s;Sw3qfT!=P7Q-K-pruN#fdlTCTu8X}x8Nt6-J=A&)*Y+tn;vf%Pl6YUjnK!WTz zH@F%|RRn*{q%b={hsvTNu zmmkL(b9YwKJ%$&jjJiQ(BSgjN0q~l*nnE=MvCTA@z(sGGkIwUK(J5y0`tYQuG}!+Z zBzJ1AfoBR5iR-0Kr%az)K28*&!s$@)2mhm19mO>&NL~f2>%ryuQU)EBao`DaUTNIW zzWTb^5Kzny?Kz(zpNL2LGSX`CZ7&hsQzqjLpotmTrf}V|2^4w5b>#6xUt&`t=Ipyn zGUnCeLWAKC;a?W5yDdMWr3@a~oVu>v1=1muS?oa9Wq}&}S7j_5)xcs_a)$xPf2d40 zGv2d$RH!~!qdNk1Lcd6+l1U?@X{O}ptS@~B;O0Oj2J55&3?H6HkPEs9L%kDMK z>fvkD&A>w~m8J!Idk;-tn~_r%|LOgDem4}edm~+E?R8$XsoG3OB4>=12q~)x zaKdtCr@N@*Zk@`$q2fU?tDSh2;_*HVn#A8oXFB;T=~hHR>ky!qdn~j4r|#=(NmeOH zGlMR+QD=*I8xJP`&sAuy%hX2u6$2Vbdan4h`~dWlT}spiZYfyV&mLovlk@!;0?L+H zO#0|JL>j!o+pm$Xwe#LN)22z1#P99G=evGB@uAEx?vs?fOhK4hcO~hY_kW^ro&xoB zeL?$h9sU*8t9S3E9dah`H{CB>5{1l_|0ac-e|wAz)Vlv(JN|o~*Zq(8eCf7N$z6`N zwo+kc%2W`-cOr*@gZemYf$PGLAR9A$GW1(!+InJqMR^zIG4O*7Q%<;Ork0Iw?K=Fw-WfT7ckCITUpe@=iAy+@EX|z~%_`xTLrB{iTQ~YA%`OHeLhW~S8 zSF@W*_v^EAt1BM7F#BAu|G;~rs4nJ)@9c92cVD^CF0mWEuF*b+nDwQFJ0}K?a=F*S z1i%1plsGT|NWcI9xHO3dAVHK30ghB7QNuZ6OP@q71p|k)!4d1bECQvlP49;LEdAqDn^tmZB)!s13x}q`iZS6!x ziysT^l^8pZjfp(2n3zivr}ul>Q*r0H%>xIB_Z4Y}#||)wa-X1B53Nwc-3iPk08eF_ zQ}zy(8#&8+=+KceaOltt8k#+(TjUr>uic>)Z9qq&-`&N#fXF5QOm%z?`y8DzJpn)f z$BmThr|o_C0z=5w??!1ylebH8+D#K#&L-S~M_&uHa&43Ej{7;ct#-{75eUz5qnER(5x$H33X2VHu z|I-4Aj==N!*KI}ZnIU>7uYbRFzt;TiTSuR+{j>V)22;~7{dKwzzX?GRkS;X>z!?~+ z#TY9K)jTO2u7-w0`>NWFmd26Q%_rWLE`Q)&P=k~G@0id_b85s90KJ@&kgmv0SoDC2 zV-TD`YvKa-h@VW6uF{4T;40vZKqNuMw8o~m8y^m9b5pd+(iaqb)XXp@d?bAKuDZOx zq5R=dm7QDge9=qHj{$+m8G~1R>W)Pdhq#)bdE1(`a~GL+n+nxSo7p`2Zi-KRewS`v zYyRqm-tT zs(af9#E~6+p)^7U;vhC%c(hYo9$rDxHMkMVX<)?(>s5q3R+tgnOCs7DHDU&y(H_z8 z!&p503jEahbtUO-FLZd{&yT%xqOQ)i7mH8g_q!i57cSGBk|nS7 zvuwQR!Gu%mW9jlN%5q{_jC^fc_26v$@Q__}@8&iA^4bB7lS@Fr>W3>;d{}C^vdh$D zr73gH{5M&KAE$p8f1vGWf~EfLeipXC?g1`HIPxkZAlmp4Gi}*O!2e^!0`_^+_ zW_~gN^qwz~f>{}y4H^Uu?8*pGhbp%((u<*lH45Tnr_5N-VAmKRX4J@H6p*2U;*z5U zBA1a?Kc<-=nSq)HX)^#FHrxOlpQ)>p@Q%XAb){T9PZ>bk`Lq7gJ!s*~v}Ptj#U@6~ zY@RW4*Lu~gcIq*Guf=0ZRRSeZe)}0bAY+E(R~Mg|2WIR0ZWEX9L%w)f$`kbphTm1+ zi)Ie$SC!W4IL~1Tviq{ds+s;puP?ULXeoHYMOv-Xu}uK?CCQ(Ik`%}17ZKjcbHoqGQ(I+*^o!FF%K_|ctu6u`9B zgbhMN2?V$RfJDF%Hr&xfNeK+08Rbb3hCwOmsjE5DVqbr*W{o`Li`_0K5BPTC;V1)6 zUbgHfDdWIb)X=4-L=G$4s)hIKyCu1=S!5BgQ7S5c@0`=&uu?OPO?~yf49|PP{Tc5CL zar^bU`?%%We!Xk~{-S?+{?E;MEB06M^C7w9%SKgz__#r&Bf-E5p~{Uw0!l_2sNiU4ZEzLm zCw)OW+q)j>+(R@xV9m340N+9#>%T9O=%4J|4XIW#q?ik`d4KM6fAzjSrw&nYgEp15 zB4*exi_GLczvjmm=fqR$)_KN8Sayh$;mCC>nY~xZNa5uG?3!Nx-8P=6k=brF^bs=Y zxE?a*b|q|C7HIkU--Z_=&vVEuN?PGaXl6owS{OsTh)Sjvn#8rD`qpt8ZoMSAaN7 zu6eW0You|x2m~O3u$qz(XEhd02qgu+kyH&Kq|pQRKv)+PD^vhzLXD=O1_LVIU^HBZ z7`M%YV8LQVJkb<1qh+RY5^s@!EWTAa^!>GoWHCM~ZBp(rcYZAtNyElO>EXGNcrB(= z-mPES4HS`7Qm)-5#}2RcSDKLF@~G^tS*8|?_HF05qxCAQK-$7kqEapNVU4W4SdP^M zUtVDIE$=ctQ*l@T(T(P0YVknqjzjSH@9$<(5^SkUo?#yMv@>J;*S3wpYjcy%VoQQF zlN21g(`xB@U3`8DPMQVWA!tcOi@q3-n}6QZv^eh;rg}=S6?S^ikgWdvc6&FJn%CRd z_9{&d^nhI{Nu2~Fo3H}+C{5^@DCe=<0H7MdmjevU0zpVnsY<>-9$0w(;_frkEo|0YAnzrW_%(HP=`~2VM!D|%nhHEE@FG8s05hQ3 zHR;Ve(nd?n%=ZiCEVbG>mQnE2fT#=9V5O#v26L$kL@igfR-XsHf{m66t>HHCV%+pq zmEV{D!k1;L2khj42l<%pHA5%k*skJ(Oy*yW%WXrgHuKMdxSk2yb)NG80KE2)s3G5H4TaEeGU|(suNITO*qn&ETT|6?3Wqi@0@4c z-7j;^ZnZU8mZ6aK7oqkwZ!i|zGas|fWD(Z#obDyEMpzwG)+ejidIhae zaFB9Q+<7KOeC5?5*xN!Q69#p6w1wTJO=bm^lPT+%o zTban)=AD<*ag@6El36L_biZciss7>{>&Ov0_%I`En}EL@3Pequ#RrGo^qzV#9)|XM zCyw&rMIHNTt96~R-tYjDE;bGZL*uDY5)fbN>ZH2ae~FM-Q!Tn5G;F+^(o8wRSa;y) z6w7^Gv07gWIzTHV%OvC;>o2G`c&JN^4SmAb(+q!BpfS3y%iG;X->Q`K;VN61PikU^ zF}b&~S{M&{HWozT)A1x_HAbVY*Fc){gcKxqC4TE6{(%v%SJvEA zvKC~r`2He;^65yDIk=iuI&rhP~zWY#r(n5q5E+GTC)fsB?K{KuX)Z_2d`(Vvbq3TVF>%oe=nX2=yn~s>r z!=pcves25zc*^n@s%b2FtA>1vXkWhiUV8nbSH|?4?Wb^Sp0$K@+05=c#ShCM0457) zirR>&1|ygUDZ60OwnIqa=$lU|LMSuV+2oP39n(RmJn5)`7!$vH2w~w@Z9NLlY!8#! zweJ7qPQsXcny&`ny_dRA{gNj0JJsRlsIb`@6TEOTDpyMCbqLS7scRILM=RFX{oU~G zO`DC6GK|UX3KU))IuR2@-mbg;%fEz4R~|eRfa$ebOBP?`^vtZ=?DqPtyn_;~T}pV; zrb>gCxURDh_)+_qy&+$XxYcKKgtEiYf7b|>i=iGYWnu(e0 zs#;bR`yzMHw^sE_PTap~!;CZ0x!zm;sNOqb^p)4@dgWmE{S&iq2l}$>O%K1j2ouye z3pCPzQKG>Teeh5F)fv`t8E$)2YSxsDcrS6j!zV6GcpoS-tpr5}z^t-=5(j!rk49sa zECDaqxA*~Byhfsv?`{t6>X`vGG9>%aWdMeFaEESmyHf0iQ_?VALT@zStf**J*Ie9r zVEhB4+Hcd@Ksio2>T_xu%uAprO8bmFx_OU-RzK?+^-UGyX5-O{&bRFCH3+Zn@SX;a zlj+@}DBu%@ve^u!#P}oIt#Yc2kTS_w#mu)eC)5<18pCJnigstW_Jhv$y1O(b(8^T~ zj`@W$7K^Lb&jf$w*>PHp1)Y8G?h8-T!U-}|Q(@Ij=-ePk7CZ*9jlF`x zQOJPF?5G=n%LKg;ih&YLlXe?(11S^37>9aGoo3v2nF5AQ$XtVkZj>ynGfUZ&3YJ!R zbI1`&(^;Qf7gw^b8@Z{U!6#zqboPMb2Uc8cOzfC&Yr#@+TJ5w+Ji>`d(m(LAHf%G~ zS6`Zy+I9O+={UK7$hV{X)S8K(AHl>1Cj&VyPi;47Sh(}jV*MvkoF*ddbS45xwcB5n z($%)pRCx79s-_gx;@cVhs;8VcAq#{b;eDKgVFd*VMvks|TW{;l&d%tZPu~4!XnaSY zYH=CRw-5FI1?$=V?<6Ug^ONq^y{^Y{$eAZpIP~QwUwfXzJyXEoV-`+7@ z@BBu_aT*WwAXB@`7ye+`pwfQ7a>2YJ-KsYTK>QFMQ33Xx&*DV%(r_#X-i1bK(@JS; zJLQc0t_rzLV64=DgD!D4Oi^SpHw2SbUVubtH~o=G-KMgmUgi4j+OW|q16JEaya2Q@ zNYE%LV$b_-j~hOoX#=H-&nu3}O)k-k&3<>((aGyc^|WyDIR@X_}V(fn$~giO0*MaCI2@U2ChNJp1|# zNtnF%@iMWV_mM-{heWzUJNRp>1q6jDtszR7nv1Cm&60{aiK!Pu0%X;0|`oDZYJ{mnbKmu#mIXa^* zO2LZpx8N9cgy07V@|CJ%W1Ugu4wZg;PW;gDC$xBo@(tEmsIy{(Y>Ld%sm~4mGTm;> zhgy`G%YngeoK~xj0h(bYo7CrQQumTVOy#Z_kA*sS`HBcv=FYwkBy9{e5x@QE6|UDP zV$>7iW}B!k`q!`*`|u^my~VadfgG}R8vjf1 zBE6>E72+FhznLb0DmwAO>gq(VpUzLT=MR`)=&PlDexn}2z|mymKR5QwdbQ!<3tK6f zo~=}4U*7dBAebP|g0M!vhuFlML-6c4>!EkPP^LU;Xh;&khvRqMF>#fhl9B)g&!x$VFicM525l2zwMqz{2DV7WT%g)Y_UdEnViLw$XLfA!^s5bDtv`ctzt{|uB zTjzP-12OhknnA-f0QGf1eShzmn)r2q8hQ~qNh5#FGv&q1^33-p_wSBTQXX6+Ppf;L zp-GC#Pv74@J^wCo@Oo5r^r@lFj4N^x0CEdMts8~`YD z@c-EqKCc_(vARziIcFFAX!<1%vFLEHe&LEEbG-LU)0HSZcm*VWGRx13+M@8cM#^I0 zr4^-CvO%z3irG|v=vjkEBQCNA0#_}5`Y?kCxTpWThMJmw zic>5c&P=C#8e&)~Pd`4Fz~Cc>`lifsFU%nmL-Bb!w}E+9=}flz@ZDrt_0eHR&iR?Y zZT}bdgryUM>GH3%bR9~Tg1@@0HG2Db#NBs3+Gn1|@8ElH-0jHbs7_GlFcd6DRQX6m zGW&~g`8(WJ(*Mhw@&YyVmU5(eJJvG&by@1@wuhb1ijHrm!l)Jdbt19$r zm1KRG<-xbTfE+g|JrBNuG`qU*Ih%9ZkTeZx8h}uqB6T7awIr7qb<`|ZonP`(Fpbfb ztP%dC$kDG;mNLaP7>7doXFTi~YRPj7ZQ}$m8h_a$NOXs{@)2rPVf& z-&>{3DVdmI(uUBM=|Fu4s>#CUW+q&g>V*nXyV7<-Vm1{iNqTi_$V;oh!o% z8MQ?>u_h7kcGKs&A@yN+(?czZ7m}$F3Hg&XUozj8SX6xV6Zcx@rBXxMvVpeARw!!V zB4F+^F>5t0f?yzC5VmQF*zqA{aRb*3->m{U1Fy)WQTOZP#PY>(gc#O*bz&RC4~O$J zh{AZqaf4JE@EGaKm%6V%Us=>rDF~LgYS*ra2A1lk*L-Bjj=m|yX$<}j)*@-U)!qQ zz~_&cU2F!An^;2fy_n;N|J+Q|?v{J0Exs6?u6O^bv0h7fP?13sl|UgV%w&@@>~7gD z{o3>B_y@qfcbWki+_THATLLa!ar@1u?Rw&yUFuzhG+{P+L9N--(qml5oktIp!fi&ML6rY>g|`(8KeuZ3CO zj8@6GRpqRt*q3a0iilIGcZ#OMo5VmZn+l2Y=b|gRZLi}m>u+x1eCQLeKEX;4`?pW2~4yTtwmbz<62|Gh_g-C{9o$h_WK6fH&P>6xdp_Ce1VyD>x9RnsgOd zG@!hi{B@*v!a$w?u)&YgAA-q<%NAS)T6?_!E)J-3(u$gkGEhO9e8hgi9xZ5Lszoe~ zbz*~lR~Z88`sy4A137j`?QjM>p-Nk#)1yjf^;qP(wS z#5Hv_Ki1VWSp3i+lA^%3G~ZyRCWpuUZEVfq(HI4I{Hq6>vPi0r`LI9d*RRo{2kV=Rk=+43F zX1-q3Mb^<>D77^o(za`i!76SveQq$?`Jh^7G_E_()S&$^C^Z_JcBc^~%L!f$SK1RP zCv^1y-vw>0xiNJ3-SLZgBc3gNnR%29vaH6%Yejwi2rY-t1Gq$v&eV1&qV}sycjo>Y z@=lHF#F)QL;VI@$0bxS}AKIAvGd%UJ8D7NvicUYNv;~e*?17!Uwxip#t&l?r`q6Ls z{mhkLahri&s>i>@WNds|I9ji=Z4B)AG(5-+wR2_s_IN+1%!afOS2Abjbm>z7aF&gL zG7b%J9CZYBzt@EXEN-YUiI0FB2sbrgp)y&+@5A(lqK{EZx8E?HxQW{AyYZ{*5a978 zj9@4LYvr49Ee+&lF#SaGwkiM%hUT4(WU~UYCAFU6YYTSttPR{6j_oV_ zuzRQG&-TOjdOLa1V9h0gGY;*mTpzub+)fm)=BoHZD;kQdfAnyXyi9{qCB1DM{9iwM zk|XEi^-9=bUB#dDZ1yd8+tb#HXEXDYF25R(ALqZk6}JdGnW3P2x(~rnAZ647=+Wpe zGWJ>+6OE`qr75#c2DBNCK!=+q%853>x%EJUO^`bcw=he3lf7IuW1`8!3I;+6Y|~g| z7DnxbXeInIXT=QjmXW_n0YkFJ?P69KGnL<;_P#55a`IL-f9j>#5!oh8`eA+`eXE~H z$)8{+5FEC*j6KK6X2Kadxt#Hhib%avN@E2Bd03A zFOcJ)EfrWT6zc@{7{MPM+=d)X`7>|ocP3e=5wqw@NWymf^Y#5{?&G<1Fp`b0l-3QT z_jg4%MEua{d!hc#EnODtzj5k?4QEIPk3tz!8Q2T)v)HC?_`ih#mT7rT=PzC`AD6u6 zd03alAG>66P2HZ>76wrF8VnTutu_>^PAixY_RwW8J| z>pDXiD@;?}T=`w82IobWT74cqG81(Erfv}Uj!{%XJJdLst2Sd*Jv^N#+OOlu?I|E*+#-?O%clEixwzg7|d(=`d4_8w&z^0{=Jhx+e z1r_Vc-J^kVd2q-C36PeTn{hm}x}EovxVF{JWqpzTSknM+5SPND!~_FzAY_@+e1mJj zwvO8TG&b@63}T&1Cv130(MYN-+s9RLoB1009;c3P1HEKcd_=dr)!(fAy<9B%r5|KV zi88uPmK_>?8h&1!H*Q_Uz41tWSLYZR#B(M22CLIc78Ph%k!Vl|aS9QQd94QH6#CdC zhRV8|Us?=h?$NIJKYq=;_PX$K zantqd{ydX2f+>%cx(;rMiS>|JAD+e^H-s#;%}&;|&6)*u+a3nL7K9xYjmJz&aw`sV za?`Qf9}2E}*B(09IopeTm3Jz!KKv_c=h9B==4ura=R5?k!W3r3dB;1##C9CD!>LmM zC|Gc$1F=A?fR+Y|bt(-?R|vE+Vw>Jml)F(wJlf%uSZyf4mfcO& z%r@`cMRhQn;f2Uu?BI|gdO2Mwb4{~rTL~_?c2TX(8wA+V&2nRibua4A-O@>4y=5e; zA?6~7C=2VOv>-hW(HdX8Uz{I%AQcm@TkO`s)~5Wc|MNQ=#aNq%zu$PG{u6~0hH<33 zYLxvtBh~cV`AbpYj>!8RT|d z=rg|YaLJqN^TxG0?_0mC{A^d3wxq3=Co78v2_EX4wV&b`L@ASKKnAQ}7&DuJ4n?$c zTMYjZge05Eph}Y_2XRF=R*SL^Zp(<>45>d+ktK`knNx{d`Fc13P;8~7%WgG&Q>X%n zUm;G!f7f3mXk%`9iK1~eUFV+aJbU+*NN4l(zKOapKK_(L*A9X z&wb5R+j(}bH<_uvUP!7TL0m)iS&x|^B%V@(_${3#QGf~0C)-Y zsQ+*^fiZ;;B1*+dn24<9y&Mer4B?7vu7h0v3z7w>E$GV zwX!8++j!I=qI_0x-&W8;w))ccApVAh!O5PU)2-`vQi8IAMN4}6BR9)rwa(&{{du~L zWrP~y3a^Nu)jYcVfp$vwpLYb`Bk+#Yw5n69QFEUTxe(#<3K|f+{Eg(&0`A^Lg z9>+*ozb+mufyM?*k5h-;L5?IQ+1;_Ng%{!BNcAsDS|}5M0At!+)Njf!MuQrt8#F^z z1pZMRNxdv7w`#`&D#Wh{q0W#s2&ZAzHLdoTVx73N_0`JNquC15XHdKvP;?mnN5*aI z*6^{-w1wTX#(YvA{ld#Y>vmnyN$MQ4r(fGC=`^yg5s23=`G~2Hi zryr?ICQ*!(4|^>PR@d<51yvep|1;KWua1>mtDJpcQU5N8-5%VL^vZtycUXYpuZ{yidOlyfM|(G0SOWVY7cT?oH5ai7b* ze>h0<_(=fn>t-e|Ln`Knu;9!d!;o?)!nOg}LObuygQ_R{EzdNp2w76ntBZ_i{tE)@n8=Jg}zxQ$Hey33k zQtr`7uI;%7FUrw(oLw|eS5-Thbb-mShH|n_CbmJ8aZE+?``48UOH;@8nS^&JoD?8ZhYX+9s4Bpin@{! zv+C3lubk`G)j7KtLeW>^*RHe`H$=PMT)B)DWn25WxdrY&c5P==2i5B;R@vDYorgTl z&A&Xq^(tG1!NNpLKWn6%*DGsV!50Vg z4*7ZEv!ES1aR33>&IzP(q=@H-3ey(=Ko*iLt@tG_J<`t$wLyfxAUf{Igu|1~5TCRD z*HnBqIx9$uX;rXj3itAvN5!uo7|-QZIeL12{`#;m@twaN+yowT)W6)RobzF*eee2w z?%j5jn+V;L461}%A`=%6_nO>nK2|>+_U9^of$%Gf_kK|Ifd48?jw`m{#0VD1Q?t;p zay4e)YWY!a-|}mbh>7~iQc)jRN#fjUELRce+?8JCL*bp{p(e4{*`o(Ctr`g*M$2Vo zTEbIAO#e(}i+`AzF*G)NsM03+#3^Gbl{VM&K}>;7SYT)S`w;!>KIgT=BT};q8>7`# zKSq7qM(P2Pz(yrXf|F+12y|d3so0FHJn|TmO|P*dK;qe5clt&gWkO2R%HHmx<`k=K z2%qPp(4~??XI?e2bBTb-LK+P8ET-e{@D2EQNN4dCV&jFUmd=IT`shY0+KMd5&Am)=hbzG z?f*^_5p#OJ9jRi?3x@uM5(Q6wwq!qHG0Vc}YE9aFm1$4xDQ6XbGguH=WiJI%7`0Q9 z&0yzak_L*ULGr{sGg%9c9J7TB=NuOe^Bgi69}kMGeppAGnlu*VC~A_lM9v~KdYtw&)w#lDZ`S5{iE zY88g^#?}A{e1;m!egf%+qcV?uZLZ9*XqMYD?eC2V#w*+|N;HD$bzB^WE1>Wt(WPI# z7H@VZ8lgotRv6c(-M~K#Zi~}Ww{|`(oa~T2aMd492$0^bHNI1kI%>x8Q%6J=^8P+Yp>t@WDVo^*}ZgZ|SD zUVEGNos>6M%f051PYMid1f-GEH5p33Q2;amfI`8r#E5AK)ijW8`UZpos6jChMM>0P z(*YyroaKO-bNyylAR4@S>c~EaJUE;d%q~zh#x!_xy-$ezTBi(NB6yWI^p>FB8BmQy zAIe(SH11VvlF@<;a_6{vW^FQsOX-mh7>(t~QpE)G{HS_R&0Res5asYM-s?6?W}g|I z4{j)pmN z=FYI1^n{ySk9?c8E<>Hx1Z!v5Vhw|UH0qvSgSwx0d?+Mm@&1eFeW6`JmeC*2Uy0@* zLlN6C&w}NUph4RdMd%z&i7*g2gp_Eo8=MoYMWBYj5N8k>)obE}>kLr*&8-##iq0%% z0+=7A^v8m@#YF{#g#>bN{y+`u>7_Cg>jtFoW3PWZ^4w+C~IHl^+PhLK|J%B$JgS1ZlSg3vEM4b zxwKbFT$hbqh?G@uca&FPU5<*bx7M5XFOW)Kl75vSS4)3yCHR(OfvWW?`WZ^T?*pBf z3TB8Taj5G3@!Ct`ze2;^f-S*iy;uL=(`@m7KeU24Dx6V}0tSR6F;b6{G-yUD1W7}e zur~_e7aCH9unx0ym_YGsu)H><4XE)rubt!zPlGt1ho(b;X4;)=@laQC-dSCNGZ3+j zbsUvVCqiH65StS~A`p?U(n9Y{{BP2-<_&n^>r5izDr9__Kw>)3%s!5o{l8p7>B1J5 z=nq;od~k4cyubNNwamq0`29?#!0CHsb%LRys$)%Tq>N6d&z*&Q?s`E$S!vB|>E{8t zO&uIY7IB_+g3f_2d1Nn&eO;L$t$rhZ*Nui^;x)r_R}G{-atrhXRf|xcjImiI_Ku$~ zawSo*9b8S%u@n+#)LFA=*naMlJ>obb6zt>4VPU*cV(^#CwopQ92Ko*|$!#dW%0nTR z-|H#C7h6Vv&>utBpBdl>_jeQ|4Uk&D7iQp;=6i%B08&k~E-DK@%?X%Tb){gYMAsV3 z33V1lBeTRyu{YuFwFvX&4yq9vD)%Eq>~xpKei}2tAh_Y_2jO>Z%JpxQSGlZB6S}lV z|J;D@x+kRyD8Q-@1*;`7`PUuYB8~bkq%HrxN>56g~m+5?r4}^@lk! zCiS#lJ|DOS;wcQDhUjaym$EjaL*D!DF3~M3A`)C#LyknG)USIfI^S|@8d}Pj89aJ7 zB-=*gF>21JTi5Gy)LS_2;~?p0}%X*3H!p4P&W}a0nDY8_y4eLvbA98Jc<6 z7YC-;A!nwmXj8a2M^-ZT4ZpV!c-G=RA=~Vrc>dDuHon!3^6tmOZ0hAmH|XEWqPjda zBbFu2Mk3i~MvL2cqFCM3Dq~u?oRY($PUFc<_g}Ee(!D)9C#U6P=#VL0&TLX4v zT>V&laa=zjqs{2t{CRb7g)5;^#^FkR=c1D^+V=q`Q(wN|!ZS*x?2kS!&dTQE*FN!H zlVCAkVf^*2s~yvDi=3U0RDk2jtHGkqmR9hal%+tJ%G^(DI!lE6O7reboF&5m!!(gf zfz2vIquc^7s!$(uL{ocbDL=o4M={^beITAQ$)Cm;$F8728ADSX2LoPq6e00&Kq}5I z-^jF3A%n%}*42F{ypS_}4i@ zysv+E=L;Mq(KbsLQ>wlLrecS~JOCWcHU1Ak#DtWqVK@*(T>5`Jy>(oZ@B79*He$el z(IW&#Hv;+c;vE)7^iJb#bdvs5flMA*k$;^ItFXrR1Ydh@8uLfmd6lw;}$8o1T=c#U2=isBhUeZKMA#7oD?SDE z4y!5`6Tnrf&|s_t7CEr5-l4g=>{XiNy|(J!gn0Ce`%SSK{-#*nqqR!ptuOUI=Y9@j zymrj!qQg%rOvz_1R$rR7444D|bS{bZjc^KVc=w9+VM6)nWm=sQ$z)97%cNKul=W14 zu*~~?=!~m*yT0s_Kx+d9djjJJRht{8IN%Ai8!EB0Ag4Ecy84W08FSa?%wm-t5hmFD z8@T&_zYqA3QWquN?#H{(`cLhT47}O8(*6?(I!pR0$*#QByWgB0`GvVW{Z~+?hadfn z&(;|i=*e@~j%gnQEhK@L-eW>Qs7E7A1c2ueWRB1hc8Xv^aX9h{kk*C;fmm}!Q?*BK zL%$dN5Gk5Mv!M9%+DMgVo<376YD*#^aO6NBND&-_32{JDn#Os(*j5X1XjTW98UVoZ za0$g^DP24!XN0zhGryfTSjaf>VT=HFl36Z42FMd6aUpA}EUPn^>RcFS zjLREUD=*p>-lhqDmNq#T}s89O;QEZH{OC#TmFLzWdc`66eCMSR4%jrT+b* zvKWY~!0LN{Y-~|{zU8cO>CyOs>JT)$yi{m*a5HivZd99Z=Ws?k5-nMx9T~n+WsE2V zt4bVd#fuzW3C4vkg*SA_=)5)%&Lj?QQ=zMWk}1r6{6c_*{3n*3Z=dtJvASUBAL0JsBDrBHLulcH{>y#+;G(i+!qr@F8GYQi&k*$fq_Tdt80Em#|j%9F9 zFcLF|uLpFWGT=3{AVy?*ye%#G5p4pHGou3BS@@#6vHZS=uh7?bxaT&2FAIoIPClv) z=?fSc`?oo{;5-%^J*QXqULCY#$7^i_(;=UGwmc}>dgi^~>&_e|AQ5aGrO>XhO4oa} z>~i>O&_?Tb>VEy&+tQct=oeMvMKaXe{#Hm*%8iiS(J9I)(V1cU=d_k*tQ1a(=q)<+>b4ZTt6eO*<6+?; zt<#-Q-~>Pd5?>;Opa*h574q(b#PLw=JjH~F8aH0pf5}XdzSJf5X36{J0=(~VVAX~x)0P3rA_4U*+gkn3IFE7q^xYLd%n zi;m9OyA9-jza-!^LuoK3HPJ$<#rA_I(f1>IA7YKc7t_3-rwu2!jrzz z=8i+Zqjnx`0d`iZvs;KD@*Ep@EEdK}ok;-sc1E7i`f&MWuT1z>XnzWIB3*rxmEC)3 z;X2Rkvw+(z<(9rXN=UZv@JRJ3;a=(2>{j&8lF(dK8UqzJI^(z!Djp!pTk9@L5q(>9 zQjQ8OAgfso^u>O_LMzQ69PpQ^1Ry|SdrP*HS~avU1_1ZV&xlP?DbBv92h@RUhA_sK z{Bp}VnGFtPl2qfxHELU3enw4&aiJlkB%swA6OtZM#RvJbjdddc5l6qF`zI`K7n% z-UbTM@1G%Wf8qaGEVa$;+KH`L^|D)ChLzhQ}K> zZCrme$jMXQUq1F0B#;1KPm4K8*Vf*6pKpRe$|6Nw6Xv+DfcpA$^T6m2dp|I$86xelh2 zDo20%Eu_{Y8fOnihT@C;%+-wx>)mY~7~QrwEwEUcV%;*?9y% zw_pV5VwWKJg-9^}!KZn+=*ZgW@YvIw@#oDY9?#o6b9GFv_U8luP<${fx0cn|{zy z#hWrQNYF-3ox|y7Ra+>ZO_vE`-GZBfLX!|4#85XP^Plea(XOTGX3M|mw~QaY{ksJi-cx^uy{nsD%CT6M6L+mGx~ z!S>O1U7AM^^9ncXOzZv0Tf=yGyOe{CgKuJkzY$lSj#TpUd^EOHcQ8zRrF$2Jlr+97 zX`K$;dedmyF8{y>4+VgV?`x_QPg~Leh(}%N4PQ8V&L#55YNUP*Am$>G9-_G>#STh~ zD4WeH4|q9~*;lIIR2X~*IuX^=NHRy7+OR=Zwe9H!Hkz|J7B^|RsfyDp z{p*+ro*CRRvnIFp+-f~_KbKG4{5n}~xO)1`&2@p<|8p!Y(|awAAhr6t>u~;wM8`qi zLhOaonRxKen7PLLUWt6dtY>W`&vxoLstZ>tnpac)xPN7?v~Ogc`h3uS8)TT>uOmF} zhVzPaXDh_N%7>60^h4w92qW27N3A(##l===65n6&tfzctO|?y19Odk&6kGfxzpnaC zUf_*tP2m6gP>>;aekW-=m`*pn+J4ujz;TiDlk)HjnzQ92{cAU6jVPwPEz_Il>+c$z zJjgu6bp)*$Tu;7$p#U0U>Ijq#9*kf`a1yQn27GOXn{8P6VWK>FPwwUY;{vdNN?&ma z67Ca_a$-`9bA~y0C(-lMQXI|99Du1UHz3UVWs{ghrD*q0i#iJ+X9aPAJfnThH+q(qOflOC9dB&S5dkg7{*X%~;ic8m zn?Jlsj*sLYHI-)NiE+YQu119j*N&&?tvz`={{OG4+Lf01e zO+XZ-#l*;T;wq~)C1M8!f&q;r=vYHs=bIp~w;S<#>4b~9=kJ#gY8=K!{eKZpLE^bb zj?Lww2)cVF^a4In+RPlBQ433f{PT3uj@su1TD1u^Z~N5LlD;x$$$&U3aNxt%9$X~MkdU`G6g;@#xa{{pb!tdh+H`6up=$_&n| zQ`#!?)~z0!nxmGk-k@ne5nJ$| zxuZ!Cb9qO?@UxT6vTIo6!wv0I_a}R+HJ|uBiey@@s-20+@mbvq3M0epURYdvzJ>j5fdtG%)>C@~zTWyOTgBTKzNT`()t)+t|N80g2E$;XO4N5gqSsG7KR?1BU&q^7Iyo*of zL#~Y9ig3@KG0RUJ$lQA;3p{?Lu;O3!pT0LQm(6O&xlm4bUz+syaY6uqu$GEAp4UC4 zM;#5oza7N)b6^oNeB#_{;!7(CerK62BXO-naSXB1@kUx;nikdsZ7lGgG$ z#`QJ(DcrA3xt9eNMMw>nZOkQ@=Ja_CKW9hl9mU57H-vq3c#*(Re>%cxM6l@^0Eq90 zBH*M97)HWHQQ>$HIBtXsr2I{tBVMf~>P%~oa!jD{M56VB9j}F{X4L5()8XFpwI04t z+#>wp-j9m@(ELvn4k9!eogdV7I_w=MkCO(SjN>SZzEj)<8kHnp4s0tnt)A~_aR4|2 zLy-NG$xH}H#~@@b@7#DmIMzShb=`M9>#;+|7AfY_2WbB=t=2rtcj zcTMx4!Eprd3t)_h*xB*(h7gaW5k`YhU-@msq2>}dN#eGzSq6zcVo#mXrj{&oQ8@^SQ$mIp zI+>s%O>rN6Iqy05+{+TUt0?z3UKQmd?NUm^xe`9y?15;F{D=IR@%7R&jXAH9hfPB_4dfq&gy~z`V#c-{V;JiiwiI=<#fkgzNIo z7W=ofZN^-y7STB6rTnh$~+%XY3fn)eg0(>hOKJo-+Ax29uq|OvgFrT*X7e!#% z{>-iD0FV7#+P`xbg?*>IDA8%zm^nUa3Ue8XWHk$JwlH#%`Z-KX%GTLV&O1@`h~io# zu`Jt6;bU{Ee`gUicm!D8T@dF_in8ZkDh0$N=HuNB8=z0fkmGsx4ur3lHZ+}R{6nwE!Pmk_D-4@L&adF2|@60lAm9t)~5!{ z^vAR_rtNeW`y*3X8rLy=?$P~X@CT~Yq_W!f-i9fv`2V`XG5Q+;#c9rkNrHdq=Br&* z=@N{oawvELjE&L?#O_z&*uCmXZ(imLDlDM+Noamup7N-q^OpB9r;{skZj6{oEOFxF zOR|KdnYonp|0fEc?rZ|*zNF5_{a5wlq+TbD?6NukW|?yP~bRT z5-m=R84@O#rXQe&PlEso{fN8jVH&^=9-#7rScr(x(gV4M;~1_u-D=AvOYZd8jv+!( zx7Dw(i=X2t(?772gc4E~)04QZ*qR*A`&+5#k_PdP8h&QFoR(<5QE?AsABO9=sv`(f zxZU`vHMPASOiaN=@0MgXygOz2vznMQ_%b2QIO+PbY!buSwSjvxFPwbiN(D!s2^3Ir zi5MH##7LCBrT4$`Xa23zC*3M}yE?mMR=NEkiB`|YOmse2rZ9y#ebi_nogXHHHAAY^<8i_4(QdZI(}Lm0X+xlzd& zB(*FBNi=qloFFa+2TWXHKE+k)I%q_0)5K;coUhXl*5-N+f0g&8MJys~UAV|eKm0fp z!H3gD5$z9-!V>SmFU&((pT)TTzWCugD>~B5S zyETuTt5EBN`@QpZ(Q1_y@6-R$V92;Xk@wjQKS6rqxt+b($xz$y&McHB@vL=50rIXj z#ZTe>s@eZtF<)X^8mV~G+~)+I2I(>deewMHVHj3 zUl^OL+{xQkc*jiEQB$|zU}oJ_n`tV9{mYt} z$t4CWsR~BKBj5sIc67%;d^LT-gF>T=*J*)1Dnm!zNzuut$1~M*VYOA;r&7!TY>Waq zl0@00?VMI(LdQt*pcJi#MA?FlGxL({v0oH!43tvkTPYes9`PE}XD>cT|Ls|6R8$>r zXNFs0pvdkLVwPoc{?aQn!f9nN)-fe0{kvP56HQ-KOmF{cENI@J2NUL6lOz&efRuOU zxcZ+c90FiS=iaFB$p|vf)h3^H4AcBGBH_C^qfg7j<#X|_Hu|>J-8ZKqzrB5J75aut zbC&Bpy$#t8&yWliNW-2>_wO7Z@#jVZU-jq{x;?Ho-s~?-C=zPq7>0dgmDQx`Mk)+G z%QWrg0`i+fK*yNQ5N6rtN+P3-!z}^~`1%k+1$iDd00Qq~i~FHOI=XO(JVOB}@{znlh`8z0wMYBKCclnQvM|zv4ANpF~x>z;v_SNcQ zFOQ(As5CpGzx4C~5QyU*f)qpxfD#daw7?)R{_B7*=`;hNei6;pugXg?@k~8+CPOc? zOLszkm3FjJ7;Hr06&aP7>O-c_Gl^$NQ5wZqxf(T2HGfuL_w10eTzM1iy|;niszLtE z8};jgJ7#GbnJM$8Eil(9&NJPXdd}tK6YvX1_QTkThF7#M`L9;l;kl4u;Ch5ri0I@V=_e;|Z%OW%R9Y={+^LX9jSBW|O+u(U7Eya{FynqTm-s6Re zbjAX8s_GT-svN7cvU0DGy6Vs$T4r6g4x;KET^Y(&c1U9NLvh}w7m)l=CCW4T3?ZA| zNWa@yc$R8YD z$50B8z)m$LnLyca^k+f@$97qxyiMGa`?TBP-Ig;a3*Hi`NQ_wXFOxgh^OqCZ7l#18 z%!)hxTjH}c_V;Lb+Wq<`b5GJJe_dHdkRs2g$Ytg+l^m-9c)ZH;vrWel|4&YO%-Oj1 zx)o@%nj6!ix%rpOP{a19k0Z4|CwH?7O}^QH51!U^`fffs?b}WoJ$j|xeOVwF`aeGWWgVbx9h6GcgX40mJ$)<%ifxaTJpHcSwlo+oD9HnDO@f;8(C&2b&2mGNtTiK-Mh_f`j%-rU9gYI%`t$HeeoEW6( zQZTf1@QFGV$oh;ce?xOY!N9U0t(S*I_t$wJXM)?y@T#S&BJ|g#6Mt;Dk`r?IY&>)A zgAIFia?ViJTd6vFk@6}HmhX?_r>M@$5|P4%L#g26R#`lU&QHHrFYqui6cASINKeJ6oDK*lSO54s ze<;PMW?|ITX#!m_{~<8q59)*pX!=HpVX1c4qis9WviIK!prJg+V$Sc zXGT0a6*-E8#OZe{f2y3|nIyF`7=}>Gj{{7W%ueV#*xxl%f~p>rk)3AgzeyuB<9CS| z^(>|Vbt(Byjoxz3dQR~|a6z#}@uYq=t07ybWT_l2 z)l}`^+Wp>yBB}Rtv~)UMI-|W9`>H$Hs|2Lhz07XRR69q!tbQ~@DWyU%XTK9Vv{iON zm^0G5Ca|8$9li((RfKce6JE#+9BH?~k z8Jb~mdQgFSnz-N5f}DKqTgUSPe-WeKRCHU};SJ*Ifte2GMnXZa_)Y`|T+Cgj<08!7 z#S9t9nxq4ua@!B*PN#x);-#pUg)IFPU(?49&1JujmTRnhXp-XVaLyo6;BBmfqb~PJ z5_Nt~g_IF#>}%$;f60YQf4n<7SnNenjx?kE@RVH5@W}N-K1*29B;SN`dndOmQJRR@ zJIA^%IM}-2C+3KE?ZoncCsDq>k@u`q;;{J;ewx44Ch{->V-lzUtf$KS1(&5I;PWC@sjAfFM z9-h0jGLsLlck=U%qkhGxw`#FOJnH-%*76jUJQDj!pWI*7Dz`5V$*ZXKE#I2<%X)*_ z#lR~&C?OzCKNH{%XXNg1=+{612cdlA5d(M_0}KiZjRLE}yrC1#v|O-cV(J)+y9%~5 zCFwNb>8$Fc2su`J25F9dKEqP2yhW6KGx(0+^tWBf4_bj>KdmB^VjQol)QYSZmy zNJ9Y$Gc-ta1!nMx7+{eR*)F)_4RAbS(8p?c)3TQW)A{%uqQfxlrsrn+YUVrHGnm%Y-Qu1to zR`3%MIfLV396~6CIf{;Bw^A}&%b=i!msD}g;>J0WQWM6oj*QQ-7Y@XacfQ-|P$?LP zIHfK4MHRHMR`A${q~Ha4#Gv;`Db%wEIz&Y&fMepJ%1qJ8-jKy>u&_Ssn3sf+&iu3FI}WaWfq$e{VASk60YW}T(y!jENb zkKeXE3F8vy`7 zaB83TBB9Z_@*~KGAd*~b;YNexh=_ofj%uHDEC}(8I6^Z1pkW7&n52t9Z!o6FPYVmG z^=Q9+Z3x%pU15q7CX;C!HlnVG5wUVpu$!8ZJ`iV+C2SgPIS?otN(!`aTU{XWEt`hx z(i>^gCiam9&N^Jwr9&E|Z)qu&-U}%i$F%%x3KRHLp_C(8qDLVbgm5+EZg8Gz)@r}U zP_VXJ^%Gf|p39SM@K*SPn!3eu)@YDk47RgmcoM@SCgbTMZbgF!vSTPvB%{U#R;7!5$N0HH5+w&rK8QW@T)l!HOZmKOX zqnOG{qT<80a@!1e#hIsHC)f|CFUblJE50U5q;guk?VSF7DbhW<J1nN;8VSN0~6N)i*j=;s1gPhxGPtVSl7w#RO4HJc((hD%3nka#}k!l^%1j zZLgbZDbP4!vdH#&p0=!Z0U;$~Di0Bpg>`{h&3V)?Cv&2R!Ax;ce7?{1x`2FmqZoK{%=i(QdsF z^z_nO8OwV8C(>3Hurhix&;;ocS5_U2OUPS@AfzZU1YjwQhqo4$yt~&ceA){3(p{Gb733(k!q#y@-5dcvO|p_gxA2ZbU4| zCF}T~Oi^^PVgw?ZE#41W>M2N0?JMd|`--RSzn;quDSB6rPB5?&od{TBtx@B6$CdQ! zIKS{1X!7kvf;{9*ffY^A@4akOr``TwV&fal{;sCkn|ehBvE1p`Mkbz{;}ApP*C;-d z>AQ-RyO#p~hrF|rkm6(%h3BVYkGtB|(4t$4ptER}JNMzWqRg-N3?K)x3cGKq>UU$Y zQla^oc^juZ1{D9(=l5wTT_^J-h;(hhIoOzdR+Z`L$6@ckS5w%NLZpZ%BNDvlh_MJ3 zL=)EDUmk=99E59DioV_;hZ{Un$Rc-IUHIz`?!PS73#|w0wv^6eJ0nd5nHLC2qbJE* z4avD8OlaCwJ`4EEM;A5ckChwG*6e4kvAt3M@j}wdZ%sE#vIbb+XjVnFKMJp$gL5BC zXm-iS#JnA|ZD+q`^W>gKm7}wh5(V{~i}z9;X?czREJ2-^n=c2IU*zupu}y4`q|v8! z86x9#P3dtnR){0e+W4+L;t|05h(2tmuU*a|N^35UV_7h!uEkr>bM!Bzr%$#?%Q}yP zC}(FUs_@7GkMQkEK=n`8?h6*vDQq@LI-^UkiN0DPG{M(E>JG}`0H|*=CkWF-lY2-& z8r$qZ{l_`1;z=0***Do8$~Prj=y1@YL~P;8g2;eH^}~E zndjS-m%x~?>l42BjII2SR>oduEZjrmG=W?;At2(d*Bd(O$%+Xjwrno(AHz0T!+$6E z)8zHqH|CcK_Ek?uWDy(1!%hKPjUPHB#})|#BVkPy=`lCUJyB!EPFJ}GPEL*wE&SDM zGHB%k!e)Rz`L*m|+#Ice$PS*YB@eOBo2;BRuc_>}zlLpber7)l6|7(6^r*)x*sAP18lUsbqLbPcsWW>W9iFkj ze(r@D&G-Kkg=4_?T^A*g?PLTI`csof7ly?)pMawG`OquLS9gKNYA3}9-sK}y0&cBI zI$V-16UZc3HnR3_7o;+hF*sc88u{I8`TXU!< zQ#urbnjZcJB-YVzkku6Xj+>n?hlp-6k}P}lz&9qSL?ka20E8Dex( zNqviKms^fB{*-5~$E-{{1nJpEy?lOnNMU#z8r>!!(afeu{946;_M+Ax`1n7e?(z6# zH?vhztSDEhLv;;)$1NU?GBFk3g(9tcC0NyDsAV+>Cl?F4Hzznl>B?hy@v*3nWF21Q-%Y>?zLgJrZ4ti_Ewx zNUop!#)|v!AbUJaigM%ajjU->xe>E=OMlv6g|z@cf{7-8rY+P5!=$HBrL<7dHo*}w zm)K|e!$xQPyF?lKprx5Y*UK(xF>=Y~+w^C>G}gBk7G?VDUpyYT<`5TRbv{}yeWpvH z6xLohsdb%h@)0c^40ulE=lN?j;t&u`kcD?t=K@6l@QX}@gAu#%gy^9iymo>LuMkyU zg1aZv$=P1)Z~Zs4v=IqMV=?Z%&u5LQIjNjTvv}x8cpt3Rl^m7zfIG;KTh9 zfYG$x!{m{5dQi~Q6&{wWhAF)w>6D0W9V>?q4L)jD&sLENTx2;s3@b7D^jTU>JGEqy z!<^c2TIyEuFO%@@3 zj2?848R;^?D(+l65%VLkprG0?DGy#yvI`~Pr!f5PbfBpj%45_?CmgcyfIyW)yBj{p z>Up*z#;NJbKaedmKn=FA`VqRs<1vi8P`l%Scmew}MwYNj@25&?@MjQz5j(4tx^dc+gn%}koCJMvs*t4^1=jUCZVJX8e|T_>i=t4zo*!-fr;5Aq5}RS(f2oSHy0?<-Os^IF(xweYU5oC5 z4H>ihG=j3Wid*Ni+Yt}zs2GYn{ZqY7rMx2vDxzNHKF)pQOQ%H*%m#6k@pFKoEX-h7 z2rHPhD{+(?r76)*HykaVWqFx-WJ?yWprHDx7lDs2Qei(%ovH<1z(sYdkITiK zHpaK`wfgM3ncGS-7(wYrgt$$DAA8-sF%-0om?`B+UNvrsTw5kNwd0*a&3M6`gw8{b z1R$r#R0XZAl;`1wA>!6#B;u}eh%mtxzjN3OQy^ouAVVU7>xuaTac-9JU!eu*G_EpM zx*G~a3G%#=1-Kavy2)S@LKr}&x3FS}NJT3d_|XpxuI5rUGr#EvljO4$pBMYTwX$); zt1(PXws&e~DHqkMl-7+~B6Mmpa2w2o9pH5uDK8^l37Z%Elu=I1!lySnMgOsKpSfCF zDu5A2>kSgS+)fT>uV1E{s8h?JGe240&)^SGlM?@H(vtu-)QV%{_bV6_=4)M*%(}$K zLu^B@?|`q8`txyJ=s`JUAH!D&f8wN$1@A7e);5LmU30RuxXX+ zN7^ppes}%(k~gU|VS*T#Usjv5PMV)W!g`LzAu?~ZWNl_?t$!9ys~!O?PdlTQVnzpT zS~vnEmwycvD3ppLS2)SLYP5Dc&(O@$z#R3L^f{J!qqv>#S}8*$>VvXX)YgiL0`@`? z%e)7XKRRgrwcb{mz!N-XrW|7i!#Ft|U1KzOM+iZ;47oA;Yi8Pf9fn{Ch8%RtJUG!a zh0eo1bAhBl;=~~eMrk_iI+fUoKm%c-8I#dV|6YsKeRjcwExFHaL2@a-L~uk&r)G(% z3p7E62ma+%K^Y@#Hr;$opSEs0vq~xG-xhQ1a^0MuUhBlwylor6B7BkfyH{^$L`2*K zalRTDsb2L+4NhXOc#lpdm~aqoBp0(~L?0(EtY84&%Nh8}3#b*=Aaqu@7B->DMg-+M zeN7(`Ln8N@mL(t6?e+1NlJ%DnG}powB-HQ}yJETa==|pXZ^a#)hH30ZcohY!&B(SZ za~};(?yTCMd(^GNS>pxw5i+20P&5ByOp3O}p~wD`8#$UjKIZw@g-;=;eJt)EJE5z` zn2zFcwSK+Rc%HI9x%o`9$NWpt^WZug8Aa=01qD2`RHOOo#H-fgEHkW3qK zPlFkgWtIPLqyQlP;G*In<_z0}jHCU|lN=0-u0$U3XFX|sN%Y!D>-i-HokO!UJW{Og zoDQi3f%4pP{sb9CvL9p$_e0yWkU%Q{$z1@!7f+X~r#?qmB5p*Ol?~xn=XIQ4`T|k+ zt;yi4jPi4ns7iRU(9=3;^13L<ssC&19{2E}w<++&!+{%&x)JwOMX z!XSwHhIxv@(%;Y5(six5q@jefRyO&iVjc0{8i){`(-oNVUE@dUKB6XDR%a(Fhv3nz z{Nygw8mOardlWU9FYLExEa-;gRD6D(==17v&}o;+vcm%dj>zH$C29eMk-I@cM#0mG z8mEi|WNFX%&4*Th{)v~GM!Zu^t?YQGbWtrkSt+(4Ezmhqk|0LZJ}n=`TRmW*%*ji+DW2gYEk(#EyEAM8*Vg>YAXMK}LQu zjSr9LY_IT{B{J)Yr1P?AJ#!tw10PkPW){zd8OSjQpl!oWe+r#WKLj@3+pCjrBM}+P zJWUe)w5UD8AonX+@cK#Gu5>)<2$j^Kx5Im2euD<_pan&oRGa>rizex$_HStQk40rq zjw*Z(UH#_cpVl=w>iU%HlG^ko=`m%j`q_mPw!>%EKZzO+q{M8*ysIAx7`(XB=FHL? zZ;rDskjpeBir@g7=@^loDN8mSGO`ff^UpzDk~+k_A4?QT)UC*il5CS{2UPlYu<5Jv!qxU64*N>2Un zRwg)dqZQIMsT8zHr^7hV8kbAHOuXVxomF(oceX?*GsZD|Bw-a=fh9P)ewm3dSc5FB z8?l*M^RUpTE7*o@io`$fSL@&!NVXXd!tqAe{8C8%=gUos;;ChE(KKl1h zoeCYcr6&URIMl%6{a`XUA-xQk35Y);joiWh>Bm3^BamZUn4jZxI=<+FuCwj1QgOQu%96;}>6>HpVxB`&f5ha&BKKao{WMk7e3j&4SDm z3iZP`?C}f&2rh5|_vEfEUGo^&v-PF&&*_%EAmSvN1PU!$I;#-8s6}=R^;(pjnf?m} zN}Oky;LJgn#^0G2Hm@XN@GoC|nmF%k`})nx%ZG^zXNU>ZHxyb@M z$)k_}*LAY}85!$w=nboz_(6|}QeF|ml1$DnJKcgJEG@lXJDum)8cRtKCOda{XNCz< z@+X>H;`DN^)$wmKi)~VAvv$l|%Gha?gX~L@JzNlCl|R8`S0e4}UOo=u#_o%EupJGF z>0tu}c`}X^9&^7NAAts%+6Bmykg(rg^u=~pmGAR{!M=?LWvZd=9vmF6L&x(pigup6 zvutk4&W9asemA{>f2M0db8_TCOX-QQC{%RuG|CG6t~E2mR=PmOUER4#O702j%39zNCJ;CPmncuNQ|G4(dDR zE;+D3oRI+$A%?suM+tce)IcRZRl-9Z|1`-<{W@WssM{+l10snz@7vseCbW&g4 zJbwFszodL9A4}A*oL~D7Ms!kN+8o;TymgM@J-Ef?G#b!tKDnHFXQjJ7@H?qU^HCJ# zBqzTa61EtlGI))@<7P5rJ5%LAc~Z^pl|-;ME=B`2;N}ENd`Hb(UGwOV*3e>1i7p za^D>b4e42W+AO`wkX)6d!T%$9>m&V(zsrz%u^p7NMMUPnxkd%&w$jnlN1sI%n*cys zSpN?K+8;8YY!)RbAbyTis=1izj{n4mh0*cS@9DTM3B&?+FgB8z$<59HSEf-r>a?MA z3ccwew3Mm;O5-DwWg|r}1$N?}-B%HYMR6T7uwRj2B+eq96U)U_^a%$)xY%#r&j?TT zrVU6lN;2l}cus86olPoF|A|JX$~d3TS#vMwr`ejWq2K@kO8<3W$ur}Wlf91u-Z~AO zYz1fJu~(ke5E0Po6X4=ss`Dv84GRSQ5p zK{cD;N=^pQwD-@y#RLPou8{&EBhhNq1ZV~>3CDECK{9iZnT6D1YYPpYRvP`_ycH{B zdNmpA^Hn>#ZoN?(aaxkZyjGpT!41UY0h4=grlshe-EVX%;*6y{!=hp)gcBC-(}{jt!bSu zyJ(6d6J!nCy zS1pv03q}&M5`u}TQfX@ozpds!lq_`LIHgm#D*dVoA3=|{Q%xBur+5G08popvY@6j$Sx6&F?{=O(w@S_N ztI3J*7Ygf*a^$r^=CaII_o4+`mf}2wC2D(K3oFO9JGZ=wrk&Lo2j>K-q{`ajRmd2Dy&@ETUT#;|5=OyR!d)~x5imkUD=;|& zAi`9}7kfNs0UZQD)Z*9FAqSp=f8XPZ$HvD<(S$tYx@%y{wp;nn9CI|3jdWd3Ue1hE zoXo=^uS`bVYTGbS3^l#9Eq&)Ro@FPzLvwjjbqnmSfQC=~?Kf7m8Z(?!m)RcAmsB-c zVj>co2u+aYQem#3v9-$P7>@3%9bN#wT|qK4eJtzHjhlZYb_pr<6-cLzT5;-TRGsdD zjLiSbH%t0f?3r6GGvecg5j1jIIu&49I?Z-_;Cp|P(2Zs*X>v+g@19MfeGD+AN_Njz z^8ZBPIo~g5MNo)S00DZn-RpdsgDCHo(*DcPl_cB1bZ>R-X_0Lilj(b#(V3U2C&|`) zFUm<-h91);-BYJ3;tFj(rHxLG5mv_zpZ1vSq+xboArL!bVglox!3tF{6e43H9-?;o zMb(CKni2(J%tHyTT3WTq>f~F;8ZXak(J?tdl+#sDw*iNVbAosc^=Mv5s1aY(b2`^^ zY8x42@^!8{1o4L2v=3t9(?}|&gYU-T*w^ktwn)gs`I+dD@i_yLU)1^d1Ji1M3Kf5- z(N-7>zf~{zp3`%u6o#jQRK~+|CRM|vqDoY7O1Rp%K~e#89baVxLa9`ee$3v_O=UtE z7Zwh$sZ5U|BJ@vfJAqr8yd60IwtN`lWTox(QnaMCy{jgtJhyYi-q*`e9c!Sx(Qtih z8bEmel;>V<>!%myW?Qu%RZuF!WYj3y&kfQ2?KxOHH2^(`a{v(G2mJ0BMZ>%TpzK=$ z0a@aF@d&f(>gq%ooao%6;Y?G%mSo0UaTbl3(nb8P0{dR5Sp1Wol#1AJkHUV|Vuar` z@~Q`_;JWy<=v4-MsE6%2Sx7&DxYs$s8`0gZ)i&hRrMklu`Z>yl<(E6>W=v-SYM5&W zA675X3Hz^M@J1iZzAe-OGaMNrqL*|q0w~f3H^cuQj?TiZ$^C!hV+`2FfNhM<(H$cs zh0)zz(hbrAqG$BzF-9ZO-6bG;XhtcmD0*lC(L<@2=g0T=7d+SXJlFHO-k;BXzwetf zu%5#A{L4bEI=#Gc2FffiYM7nhKQLNsv(LFgUp}keJL`d6r;nv5zh<(oDoF9#V3R5H zT56N2�%LJl*=Rn;nzey>bds!3@X01PTaXfS&zP0 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

    54IEg}r{dR{%i;Gu|T-Iy70UTiQmA zkj)LeiXj>l$04NQ>=IC-rvd=$;mO9TWHAQN@r#0g+`(-$=uZj#vc5o$KT(YIj5E5$ zE4rKf(%GRbUMXSV6Pd9e;T+Zyq;?rNx^yy7)Vs8PdZ&Q}zjQB)f1#t1CEwN+d`rUR zS#>}rqKz+Hj^pLK!(Sn@)L~Ane(_=3-b~czI?vma2eMwOPUiC19Ji6r$XAZ{MskkM z``;!q-9!>ecqM@ciq}n@Pym3^31U&R;%#0f$<ZYT*jst;) z0aTdCp#|nrk$=V>c`9c-~vx%s8= z@ksZ4@bb}ZM8ls8Pq(W(>;w4uFz~@C)9ia=G@5GeQJF=%n!EUqgjcm6z1$(-xv-{! zqP#G^7bm>WCfVWl&MFzr3>%US{XP}WMUbW5eYz9dRDC)Z_SgCSO3j6L+s`{A=iztG zE{@;TEF63h2LR~agBEmfsx%^+Za6dQ=OA932SXnSSD_Em6U0R0yZ{hHv81DwNVzb8 z^hjA!PlV9t5*!PLa`0c)sap*|9=hQD9V6kh&qGt6zMN71kdV!lMFXYC3kMCP_)K25#S$IH~#*OSV@f;OKTiqkIvYIE3R-ciq` zJa6Qo^LxixeT^cyX2$I8=#7L_=3H;SX4!CNEui`~D&ne=*vsSg0yD_YuiZz!4+{m> z{ygY>cKuxutOD2NkH;X9HtW)K&S*5WcdPpfA93i0LOok=Yy+Ne2qAb4Yt7cpUiSH` zHUn`;9D)8N-YsOZINGGs;pir9%L4$4$Fn(Na3Us-n%q+;8$<`Lff1bN2UW-6)S;gY zMW4e&5p2*L#-s}nLyd?S$^~3H=u-6dL>bQxidbAtpuZWM7GugM*{HZU|J2pS3-r)^ zaeyybgW=$qL3Z`%FX1`e&Q45QoqAZ{81ab2DkVo@PwsOY1#*5Twa(7_n)H>79PA>q zjA~;yL>0%3nrCxd2kq-WR86+${IolL|MqBe_Epta?=^$$p4 z`t~r89@Z=rcxHm6jsnZ=q(*bp;xtEg4CMRwK3y(!mf33ZJ&-E+dO7weI1ZV)FFVFX%Qb;ei$DJDu_dB z1fj+*+&4)(t$3*XO+2N|thZuFyg25^G4mKmOc=#RsQOx1 zg^Y5t6>Y(7e_;4LfqbnhBdfQU@tUe4C5a)|I3Ax&3PSd+H@$wYpQQm$yB4cJq7F`W#2iEIzv^u%!+aq0xxL z{w`sEDMn}%+8p;evf(mfsE`*W2A)-{qVGn_0-vF%JIE*_KsHJoPgcyFC=N$MkQsg` zZ7sbC78(WCQUohAB)?X$l%9s36^IZt$Y6e95XD5Tg?+SbsM^O07D`!yb%@i`gRl8; zJ@2tUWJ{}8^s;&*G+}jsaZMEp1;e^Gt~?EK<8loa%5aBR%Mrd`uANgTsIoN<&al4s zAYYSVx-_Z%%}>J`^BdNA>E<8BmgTE2AKUl}7K9p2UR1LX0u!xPGU?gH zv!SarW(mL*zx3&a%hxBXYTF-nC4fc1K$c(}z9iv67s19f!-oev7zIBcI3dVKSHS@g-1n>m(0 zizsuPP3@n(Z3Ejj!?*4{{Cq_B?n_8~dSK1D!U5IUxxt71bqs*6!^vF)h@;?>E~(YA z>N_jpoizi{Ab8F)l|91&G?e#%rty-nwxU)bz#b@^$beNhmVXBu71OCiQv7J~KshI2 zA;Bp99$*n=&Rjc~1vfehhueT6<4fR%mQ*o0Lu{7v3;JxVFsNotE8J}fz@1}sdr&^& z*BjXydw%@g4`VHr#xFPmx%I;z zsCX~5g*nA~4ZTLIVNUkxL(0o)xASFpJLE2^+*QECrwy&OKWqK|WeQs`DAcu+b@t)j zIToSpd!}VSCjiiyPbgp^_R0wdWkyC|A$F5u3kTPrrx%u8G*%zu4suyjZ=m zM!sk{dAA9i>+6v0P{Ry$YvQANAmiM+ZhS(xs_Sk}-aHVXU>UAi(ao|%$ItEyM5-v! zNrQ8hYC#egPTQZ40MN~$7GU^pMVp&sQ+3kQhqZ-#;B^ z0*}^WwViqJQnH?9S4u%W+vw?Wm-^P=_cscFc9@~wMytuANCq5s+;KALi;szR$$yRR z_pAjd8fBsVkT{q?SYrK#$c=o{@6UH0G%!orVhu4rd(_-%th`tj8}fn-$f>Q{#r$`G0Rm_Tfh^!rD1amg6eOsMk;Dk2 zY;*)XFOC<|X<`kbB1HbNMli;CMw_%g$&}QLLZp!tKr@k0euM-8KFU(8br|ry!nF<8 z1qXo~-#I80AxYFIqPUZw@V zP6)GU&zk2*5Fian4+yOW_TZz7k$Zdu77qp_6UYS4Na!bD|GG|ocdsE?@7VC(_ejccV0`66s9E3gm=ykPzb0ioIG`ec-E{Ujfnd`OxO{OgZKl z63#2FqRI)SVjC)vX+QiT4Om~+;IUcN|KAH!C&iT-O;L~Pm9wDyBc9D=rGcTQC8AVL z^UK1&UQc_zd1U+~+%XE^tjh7s`5hVM&mjR++6Y{`Nt>-+ufqPIkCZfKn)QN0@@(CW z+9cOsqC3dG9F>fC{&<6b&2=cJ`QN!dR`}l>_r+!e`JnxDo{~E9N07ft{mt3g20#Rk9|j%$}G_Q#m#(U zE<>88Aa%Yo>(2EW_L4u3VK&>xJxPwPr;)lgRB^j}ao2kWC9Iu#sdO4+2}E>H@MNWLfl z<3lg{X>`#{jmOygvoP|9h>KM<3af7GK>@jyVxvX=)o)GSp3FbDJ>?woVU`Dh`?a-s zvxoGw<+*e^2&Izj*mHfA`|H25m+|RDxu~r3Ox?sm-jShH&FK9PjFaM{;2{(=nh0)w zBvSIZ6zS9x3-+T7Ns5So)S*CmVV9e3IL9uxWl?7IcwopAMkk=L+%kZ{pH>T=7!#he zvQlb`YW_6v0g?S8y`&cEpB+nEsZ7e3p#T@$=MYZd$9HUXTNE~!J_Kyq&?)X*PF3iJ zXMPCcww%adW zwpjfm8lUEb)tn!bn|;-uUhqr_oW6f`Zr`xB+ioyCy&AWQnlA!cKmh4!v3@b6`>}Qj z&jRlDaa}Ekbu8f4c_0X2mSepd#6-+3@Ox)pOmUUpJ-+V#lRv!v=qX+VHW>O>^nn(* zFA7af8cmB96+#9$7U}z0Q`e&?T4mPY#^=S%?r-jsZNWMVNy=sP&%o~9zh<+V)HrS` zwk#)?JbH)lHF5O5eD9kTp~(8xQI<9~-(hsaX?&WtE0p(o-eUY^i%Isp+t`;zyq@02 z{~mkONFc7|I7esk&r=34%?zQ!ThXaLB(4M*KSA!?_9Z6U;RJGb^AXX$>YD) zW%2>F#d`}u zsZ?~9ofx_jdp}g*Xb=NIn~he09%bFDo}p72@Z&Z-TKWeY^dSAQO*tn!wBrtX;*~oP z`Y2V-v&XE?Og#Iy3OyCiU@^euwwt@xGjpwM=|FWy>#`YJA8w=dX@aDHp4PQ+M*s)PoDD zbHQq906@l%nraxP)32pD8p|@|OrWu-@cIR@=Jk;6Z;rpq9jk3{7I97`cC$<0(TX~j z13xOspo>`@?fQUvG{RWCXToB^QV$S>O}%E@Q2#WJLgm%Pf$?bWdN^dva}?taK>yXT z4+2$n{*+P+oAb0_oLJ*&G~SNA6{8p{d#l3px$0(ma}&b&$`w|Ec)*k2=Py(YX4-PG}L8Rc%C|4*Y!f(`n7>-nnc0$UE}cHOjF#z2T7u&}{)IX?4Xgy!5lgUzr$+KYlKz3Mda- zL|g^a#(NBMLF4kyZ21s6iGxEqv8`B=VmS_}8QblH@#lq;o9AYjqq-MNRPDJdUl2M( z{PaP!P(?^4)C0?bnpWjjGa7KrC`m-h#Jq|BXp4Hy^{%c+@Lk)~9Z%h+8TQ9fc=28Rg%7S-euCwew2>wVJBtkZN-G7dl7Veax(&ty|zw$8|*eZ09QkY$%_ zS5}&JJL(r+raLf*-R+Xsu%Vl?e8j&aaeAfU=q>s6`9sx<Wh$$Jf_u1H%kht%X&k@g}GiDVm6#E63-1c%x<(Wb;lN&-+=OlvkGqo zxTZRfHWt2};*Rd&A&NR$-@4NUN}FM!aUCsAx;8v~mNfBBZd;2!MCxrCuTn67Y~iDo zv0$sEWn;8l%;4RR^ZB+f)X)A8S7#a5prjJJibTDO@KUZ-`_IF>Mcw5 zYUY^RrXkFi%I!Az5A9-c)YjDUr055$8M?Mkm$ieStGsib%~#3j1hvEKwLb6S`xxpF zIaN3-)1hrJ4QfKTPeH^2jv&Kd>4hSm!}6;vY>gsR=qWp)l{3O@l@^X=^lSR%!+tz$ z2|Ya#66ALtt=xi5LSS?y3B#kn7Rs1pQ5p$BPX=}Y4yuSA-o7h|6|H2$}=f1;! zXfJKMpAjlwPOMnV8S8HNS^Kp+=eWIp%a=l;L%g~(=alqRw)Od8v9$pMQ8L~v+cHJ< z#gWE}>k;Frv>7>$$lG%5zqkEt?^21(2%GwEj)D7f941hL7r!78b&2Jtd zsQ~eaC!QlfRW^iAH4_z(9@~QVPmj-`jmfvn;04A{zcRKpWi?~==%T3($YA%&cr8ZQ z^GZ-b0!pZ1Otjivnc_DE6Q^DZ){^S{ml~$nOwf6c1f7??#9hz&KzHvia=tvRx$$YB z;snP1YhdG(v+X?ZeZk|2w*3OuoB|G?vfGtGw7PXYh7j*^hR=HXB)O%B8+F;3N95hP z3|+1N?_o?w7O3S8o?MP8?)bm0o9leD`r4oBwJUp5^nx=zTCkQd`6mVh6PII|T$z+a z#=OU@NZTEfhG?}$npH*nDZy%sHz&l1Uvc`cpG>0kE3_m{UnIh6ovCO&;WeM^`-pWV zMr>)+G4L1w;)y(|2QdYh&>DvWhSgJMr5CZjH)>pw=r4Hy5T7U`#{<^oHI2kC?6#`! zss9f1(#jI)A9Z^9_Qflva{L>$3Vo?=6I?$NkfN0J-r7rFnm(&NrzlWUto!q=7pzv- zK!O~q;j4Qv@#ZTJGD12(h^LHLTg<#9J$0)-nz#EKz*R+A`zj40ZAIfPb+SjZRFI|l z=)WxpZFEs0KW6`P1s!@k{X5ZdsdQj_{wu6g=>`J;3Hk>hF~Df>NEZ|@(2j^lkaLrK zi6rqX@VBTE5fl#M7Sq&-(ttH5m;Noj_bVcS;K#X?kaZOGk~Tg-^0zh=IsmflEg@2y zRwv&=4(ba((A9;vy3u zp?00^@ofjzt5jt=53m_O*xt%|-o>2l=uuv!?%tsbmMv)0N z9KkNa`{0ffH+hB~I7_iIFTi48naa{^$r^dA|M~%1!o2_;-3j3Fr{a{v^+^Ei)=688 zY~mtDW}wMDJQ^-K5kE>hPBJxRxHHYj)K1vYyxqn^o$=&FaD#T$Cy9K}9kYjL|B4)8?2JxZ|lcjqWBk!M()Yju?p{{sW4>j7xR&pOg-UDNV zeiIplm!~s%;G#YnZcN2cYGm;*{Bedu{(YW(_5azSj)@dg_R8dYMiU@H>*|Ahp0*!C zAo^!IdeqHmD7hv)qj~d`yhmho+uG%Yz~w*u>aU0YzWjZZ?{)DuQxEU~2>*1yIjx9Z z995r&4DOvntY!_XYLbImo(!KM47H;FxOa|+6T|w*(Nrj9i=KK8J<=8m%Y?@U1ONQe z08k+?GUrX4yaaJoYAS&|Bg%hJc79V%S<^fe{>M6TYXG2ZZa|&!9T#gLUpcD6`80}a z-p-ID@X?8Ow0zT}r;f`&_hb2ITMvcX7@INuM6T|gRqxwZ9lv~E4Z3j^?(1ZJ)c#;r zZe-teyOjYI#g@}D`0eb2^XN%iP29=-?S!E>eg&57o=>7DOpJP;`K*v<;6i65$p|{~ zZ>RhITXKG&W%#9n?a=|tpE#w9s*Cz%Te9sJYnL^=>(7}+)a|1ZPHuW2c_29RO)`Ww zIXPY?L-6pcB>ejgRXcoGCKHm*KOZcm{p`x6^c|HJW&0VZ3no`A^p&!S1FK|&30MS7 z52SyLm_*l1dRfGyWvO7i;*ydxj35e3EL=imri_gq<%9FAV^GGFePUpZD-2|RjduL$ zf}s5E6hRCYz5l82sdEw8wBLvD9edof5_{Y(ocSW?ulGR_W3=px{WGtRKWP0zt>nZY zvFJgkmel26)vCH7R$>RwEx)&5u08IN z(%;ObwY@s_xAs;3YnOX#tN$K-dGvF^h5{A=AcL638Svd&^pWf01UMLkWyZz=91v-A zSQTn8{gk-GF-(=ZlwR>&aG&tkEg9Jso;_|hY-KB2?m#nzDHLv11yw3XKmF`fi2<@7Z?(JeD#m$@NQu%-W6t;6+z9A=DN)_jF9t12`I-g5& zzRk_|n1pbs;Il)Xl|{4WEsi9U*i~wVsfvV*QlIBBqSaA~%Je7(9!m~{qiUXG$%m(J zOV=JB^#PTM4jQOBepaeF*OFy7ZoG)^H@j)sBsJ2J z>^$o(8OrkSm@m!&_xaQ}r0eC@+)BQOZ2Yw1m$Q+;)#2IZq3Gcwo9y|>UqQ0m4cA8m z(hC_wCbq=N4}MVXFkg`Q?B|#73x0C-J#GA7_mHBQYmZM_cJMhH*8<)N?KmWl0i`jC6|s}M#M7*W-t=Y$HOZb2Pr= z5Jbypn--ny;Q5^p!HbX8(9%#I(m$Hd}>aQ>VE<)Mx#(T)+>;&Wzkr;dn+48=}rKk*r1&grexFYi^d?rK6-a)+K*>f1MV>nlRGBFqK6LlrwPI^TKWVy zO&)*5MlL_>V?VXAC{#}wzvBWyvIF5w%pd~(*=I*7PGNXgEq^0TL|>J~p#(id=ljb5 zJwogLV_EFEh+cl&Q}y_`TSG3qlnKrjYw}c#g3;Hm|0u)-dtF9ZmW@T^pEe4@cRtQ+GH>$x67vTT28LNZX;xE~j$dP&mRUE-t!1|C9j0_BYfF`-?9b0i|3ab0uXYbtq`eYFof5q{*}7L_ zFRab<+_<9VcZT@P;QV5}J%6S_7k7F`y|dP`+Q;j=l<`gNf1WA%B}t`lN}b|_gYDrD zvPv6t*bsEAIrxT1^jFe51(L0PY;1Fw(b6l^J>U0*jzSYQ6e?R#l;qfF|r{bRH z?x)QkWhV!xMdz2ZeQ*EHab8$lUW79rl1<{|D}^7Bp;vc%bjjTVP!!HUHcs2Q#b1!E z4_TrTS0W~kkRgvQgD$@>l9g>IKVyHpjcgc~FXdQE{ImC5cUCR+DQOTB<5KIq2qD$r z-jcxNPfx-wmpKp}knR3)1B8%rNpG+qMa(!r3cD?9DMzWBg8d5drlG^Oq#+}6X!D6p zJ|QkiU*9O>G2t3ybUYJ}4$Fxo))-{`dyat@i{=OM3s1yNaS^42R2*BG405~P>sm&B zyghs-OG%8Ak*RxKVcmWNndSn8N#*DMbIRaBdVUw#|Q zeOoworTyyV*{i|hyO%3(&%VDtCzGqJfAasfoqN-nl~&orkl%mo5L*)y;f!Sk!7Jk! z^5;@~sI;RQ$k^&u%80lXR88jJ)aK})l)h2B2>M7J2oVX83X^bj;ANJe1utMFds-wI zuB$~+@_;q+Z4F_QwK6-MT8?7_JLdE}w*Ou+-$tJ$YcQL^ zT~yX3eKl1_VDjMkcKgIEozS3uU{2sTRO$I}n2$MaCpCMm|=dT`-Dc1g+;)qw;xKXy{|{ z>~I2~t=R%7hAA(>(WxW~|MjLy)1|;Wfn=U*ldXS=?b#>^Q^)aDIh%A?C`$-6t{0hQ z@J3BS6PX@)Kp}j+Sm;zdMnN{#9tH7OEp%Ey3X>({GoBhsJ$R%N&)wC=G@fi z*H=7GUve@Pie4QM`f%GpGyGJjV1b_kKF$6O@7z}_Qe58dj z6Q}JJ8FrN`zK7j-grO#VCJfWBBOihynq%>`>KCG%P#3ZIWV<|B2kQb8bdPhn4*|C; z{8Qy!zeY3DG8yvDIkKeI#N-8LPVY5m&@SfH-4NVD?>kOv3GT4<>knTO zp9OBz%;$8!5z;qfcj`+l6_9FLbX4{Oh3Mdbh*UI9SFUtCzh(oMm80{nvdy=9)`-m$ zYq{5o`9-?Lf1lQn?-p&9E;P?=#p|gReHX~rCDmF*|Q{SCH7_}3}uNqVYeS$xH z=#`+4J8W9R?-vGCb_`=Tfg4dMZR$uOOa4k-_yLg}91sa4^m_>)_S8N}GLjK$$X)|x zOrhdWAfm))I5>D9*iu7)7LzEEQxM`5N21{2S6=t&O+!*^v9USh9G##*65VFE`RxKA zfz7yo6?6Fg?P1V8_BsL8Zeh1msdz8-3eIDi~ zm52MLqcRFsspp+CB+ecx0b?ymw)bSwFpjx+p!Nku*@v@pX2)N3a%H&M3=ov|0qCsAVGcPQ@zw)lTxr(mfv*tkaqARZml-&_JM&-%-1~RO4{mm% zdgSYA%TC9~9W_%OKfNzZ4$GRfG;sISsuwkNA0AvWeXotzdm<%4kQ=zA404tcx8tGA z5=7}BWbtOS1QiXCUYJU?fqo{8*1`z}7Z1$7Z7$mkrAvFkf^Iq}Fp-(!yzcifT5)o# zMdbd|2jAH8IMOOJ*@)&19phG90Xt>_zE?Mv5=5&mzE`>feJVsFsbl$n3OWS8l#TYS zl)J}xsmc&l`mgdxr&jfE?n0Ng=9RGZUu#C4`(b5b9vuHI|NEui2c6d+SUqf4U$sem zd~P(q`ti};@^6Qwmw!C&e5^TGA!igU+?hxO@WDE=Fa&^%;4%C)l<%p*R73&Up)8L8 zMlbQpm3~)MPS66uwWiYlQC`2+j2}oQkTgUY?8|!65vDVABvN^FUj&AmUkXDD#ikkm z0467EG4;_P>a&1Iw+Q9vSP09cmBp|YN_#%11p?{$Dpm;<4I<2ao)R4?W%B%X>7Q*h zY2Bn3D^qp1hB-mx6nsLN`gVLkuW?%AMaa_K7ap^<&;L%3y4D$vZ6mkE1!%P@OFQq_ zwWVqCEYccs2|#~sju%izI5mAQoAub+|GlKK@%bBBhP}L89c=i^`NjKbSmwXuKgxoG z<s4Ao!1jdZ<@4iF5_Q0Wj>rQ;gH%fe;vyXV=b52&TNg zVCSi)Aw81lA@C1o3PKZj>0tjIn#N#!e@PZT6WmBAsQOp$Jsb*^+0$#143}WMtu>w^ z#ivu67Ete2jB`sw`C#rxv?SVKBj5n+#<<|^i+A=6<$yQdx-ATWdWPMi}5xI=?zGD!mVPqcH^1nH-E>fr2$Y(S0*X342@u^{*jIUVzCM^Zt z&;5}hISpc*H2n)qJL;5I)1=swe=yW5cs05P?M8L;bZU^B2Wb_31+4M65|np0pGNfk<10% zw0%%B%#J$>7A++>+tyf{0{U5f*HAo;YgT>XyBw~@Ow3j(Y`wT)sZi*A`?bii9(E|t(Nd%xCjJ*17y0qWy zP-iHboO%bZ1mkZJU|I8A zesE&zR^jk(vAqQm^%JRGq3c{e3zb+DyK(BSYOdZOpD=SZJT!WR=RJ+#>*eKlRi72t zWH!2Lx;o!yMqDao2|FGz4r*#yPM?gsv^*TIVQS>t=q{YUO9rpiom=I1>$rb!|IpYd zdAPZ@wsbG=8n6A2OGaZj0KnQwHb@X;fm4#eb#W~`(ho%yf*nG4d1Oj8u`Pc)O%mcT|`d z?rbu9AFoO^EPCB)Zx39kb*`YlRc`1!C;dU-oVyoZ>Sb@j6+bnq^^OlHXpd0?nx3dF zaXtx)ZLgQ+%Z_fyw+O1SDU4>?SE4N=sql!{(c=C-A1k0#zHJ}D)DhbHa=?PB{Pfq5 zN<;dc+LmgsdI`EwGH37ibNSAJHpMR&b*x{k=I7p44Llm~dSdmKJ*@`~A(b2w^57a2 z>%&-ZEOgzFAj_-)B7PUw?1ykuNq&MR zTXiNZXy@K6;QXz)j#0Uak7|?ucRYk-W%Wc==j4@-o&*GX6}%j>7XIY{Pw$ngUgPO? zYq3OU{6fw8{pr7|_eGwY(??W0_(z+@YhgpzJWl;SzB1}?YMy>^hEkZ=D!))cySoR+ zAe3Jzet}9Ei_v>z`N6wq{xIBk4B5N-AV8FRIr|n6ai*r$C~txdt_np8x<2g3(BR4su@@O(>xlq$h3?@I1SoJ-v^37-8xW zC-%nBK?eLwf-!s$n-C+P&R?aS6RC>ARTcrOXzgg&`ubOrwdu>$;p1pK_^(M$&j7o8 zXV*hc`dC8f`v|L<;U{8K>9rUWt)_iVPUEUSNB$g%JN|5a^>c;4W5nEk?$CV;dy}@} zpE0+i<;unM4!S?_&M;*mCgOXzX9$<8mZ7svt)n#Gl;9KdTlUT!>+aXs7mBt)IIdiH zS}~_+aIMWvUtd8j)6zg?o8!H7$MMYp4`lmEQ09wec`{Wq|INMa#d3k-4A?2^ArrzF z2q69E0d)qDBMwFZ&fpCcK^O=H921=BDv`WMJFGw~mS|{~CI?g7;q=U@#sIch2#GAt zH0z&15W@`>O=1}gQNsvl8tInoQ;*8!9F@WCMA4z7^b(eE}|wZ1LK#B8NkOG$~B zW>8fjqbg?AM@+l5RZahHy&&xN_U)u+*A`hM>T}0CmZUwnR?HH!ot}$&-?@jDeUuky9^I~+Z&Rr$>XlL_VwGz-Bxn z_BxQXu7kzG!C*3RNEz6Km&@Y^`$iCDP&y#rRDc?aJIA-|9!vh!XkP&36XKJkKL9vU zi~zt3TeW3sy((cM;3?ywK;>j6GzcOpXc@UigNRf!vH-yx2LO)#5Lz=C@v~}1&*9~y zm48)TSZxiRlzT0BBDdxeIH^6zZneNxiZ4ExkQitqpb@U0qeh9;%;KXz*>Jm$*SW)) z8plw5aiW9jSMA%Pmu>L>ZXddnWX?e8#!P9x=|?|OliA$onF`|cu#$)ptW=r=ce~Q{ zXlbGd7O{p+#z+v&SY5-~yu?0fmx5_<9<6YxUbA7T-brd%DV!j<+7=u~A>$x=(=HwL z4Z$Nd65;4!%Of1&Fno$I(zWYwGdQ5AR6Bp`n_FOp%q`-c7WNG09;u#0P%|mA!#~e; zEA105Mo@w&n$I?*jW?U^>`$kAJPQIwI!Q9ZS>s6*&PeKH9T$Ua)gF3y8eiNT-4s%9 zRKMXS*OWon(#6)5my1a?YqPH_15sXPN{#thg>oR~#m{@+Ip2xN@1Y1VG`l{IXNDhy zL5SBpeF@{t^Aj3)$$85z56Rgol%z6NSU+c!U_p2ylHd52{YHc#iqkpGiBL29*3`y2 z*)=Ckp_8=-vDWAAzfOiuem?Asfu;`K8G5k$ZMVU+!EeOu|2wH`YmopR;v|$3BoSdq z_D#)l(x{?IqA+J_qPN`(2p_tM@Eb7*+~l_RBv!&jG#rVX&YboLJ7I(~yp(?-NxT44 z6mldO$XA%Tc~c{~gk3u`RG8qJq5W!*pVH6h6A@3&^dn?$RhBTnRx$0)0`=xJ2s6!z z7wa$HUhMLX#5m7q^935mx}J5=-YFfnr>|8%5YKx1errO3FLlW*oF^TxoEA&8VW$|_ z-uU(NQ5(@GduC9LL_7IC%9V&y|F z>a5{$!-5x-=b3pR6tU#|ZhEfprol+VCECpz*Y;V?!j?dq(gH9+;rW6cwGl6o?0F$& zg>*p9uUb=-uUfcX0-GK3ifI0vm$&4*0KUb1ib6Sqry>E&%$oTC(HbgBPOh?SrYXwN zXbm+{pMfYr@rqBq_CP%5KH$`J>e|$-hA^Z{s5?f-*yaa7TzC3QGfTE6N9-m;Fi#B0 z%KpW|v-)2WTJ(>)YrpM=xk-Rot5*gSdKitznY{!;%R(K zcc(BL&vIm>b(O2*ABWnpq#!qkAKK!(_FC%LGqFIY{gPlpq13DBv8}cT{sHY>@BS+a zUjVL*4kVE!hf|1N2b4U}$X1cc+R%M}>lnArJh87lI~pYF{-Js0+U4Zw(^p>RqpRmz z+T({8k|?LUZTGEm{qyFkMhin`bzXqr0H#f?G$Q0Xb`$G^Z~g?>o*YEr>qmepaJ^tO zDQ=uCY@joFyJT<>RQl=f3%93g7?y-wY=xKwiyZhWq+`wAHaeh=EiFR4Jk0#{^=P^M zv>*+`da>*7fwP6P(#p9~C(6-pIGoQIk~^=7$S$kqPY8~@?V?3H#weMZuaF*ubqbq+~^(TP)n1ULbEK z>lfMvdqDZ+7Q@GA-i*$Y*m@$HpcD&$sA}g&nFX=)?I|9NRF9&;=m}F}|LA=-H35}C zpJ_^A{HfH~qqgD0e)6kxSSAM6j2L<~8UB^+Bnc;dqJz|(K?HR&mR~O(7YVD+0LwIngEWkESqcdf42$TSY{%}i-MJEQG0?l?poYBtEE&8TL* zISIA8gI-h@xYcXZ{!u^r`AnZ!U}=65Yh^XAL0>TZipNr?)k@@b!RHs_qX(l+NuzHB zP8Pa(rtG9pV^45fn_q^Yo$yZEtx6~DW__+8w z_Uqt#tHI*Eg&*YqJTQln&C#-lqfl7OF+{i~z83X&KhvCj6BtAEL{(A?MZYkhDN{~u zO1Pr3kwk;iVynZ);_`TnQi&+T{anr{#^fi%!|xDC$AO;S-dGSXtuz!0z!Q~w?4X~A zjsEowJq`w18wPr+ftLG3funl71P$XA<7TxPg)E8dKbpLKnK`0xR$_lQgSU=n9zS2HULooN!>j1zNsxi)0^-AP?xppE!!w3@k(Iu8r~Gq+uKmt zrYlgIu2sf((*DMrPSe3Rry2To?rw+p*gj_2)uZC zr{&j?W&WxRJ>@cL>fFud_c5!;jBS>-!vi2SgB?vDoPmgLk)+iNHQ`oc(-U?z3dx0R zS!U+f=sVWqz_Wvd&jxEReoroN-O5!B(3Y3h( zTB*mxBYzWUa-qFLv6&X))f!o_n;EL=JE~G>gDjQ6mIsVdt`JvXP#^WXSuK(Gr$@NQ z*%nE>StfEb-xgF4y95mQ&O{#VU2z@va+kcJm0VUQ7~T4dRvHyoFkX5Y7dW!SU$b2h zxaQ_ReB9@=+*!DICGMkU_U}+fLsMSnt08M=68U+3GfAo`4S%Q?{!VY`7hzcIoIGgf z$)R!N$mwW!qoa~Y_!1*6qUr}Za@uAj9nxr*syipK4m@gZ{&076xB2x`>32c7a^b52 z0*U84;bS)?f@qJsKa9yz?FoK=r+5@0XrUSb6_`t^@B()xZ;P^F=;Xny1;)dSj_+^itn(C7U#rN5F zR__pddcd*lunb3h`s`b6RTK;23J%F=3&E1im{Ifqd1bu)iZY+N+l8GjU|TK6P@3P? zv_GT6K6wzxeGO^<-y%;p{iv&zZz-#%FySJtn@lsn{RV z$L1>=_JJx&XVDCJo5`AE#yjGIME|$Dw>GWQyQ-qB+bO}j5+z9 ziRJ@P1xtdcwhm_Y+hen>A~SDAv?uu#4-CYln&mOc@<{M8eTd<$8~Ay4WO%10?BzRt zj}H4ZAy4n8%)eLN^vv1UV!ZYOlYqGqC1gFV37`ienfBnRlOe66&C<1xDDS-~Gm)w+P@fzZlY>J4lAA*bv zCcibnE**hRDm7un zicGZ2NISYHGCN(mKq}a;<00B`_yx71J7Jxl_{+@vLeJm&qliL$?XmB-|2`B>iJJS4 z%DRgWdN0ST|LYz&ry}U|?;j-ndQn0SlEk0ql^aY1DBY`ckZ9M@6_-DIwXF0_$rAve z?Bv&w?O^VFg=2o=pji;9@pz-26YlP4!KsdEFicjLQ1r!ihhtYD*lIKd(3k)DwctrK zD=2-HM_`zOipWP|7!2U~J{o@`O(Y;_Eec37TCZKl%arjkyw1=M@(Q`J za_#5i*lI6%R!V>6&WxS$Jv)W8;c>dfq>~Y)$T!7{v+wgqi*lIaW+=a~d@ve_^zZQx zcv+}ks`)n}d!~Tt-#K@%q2&={Lcc0s#;m&c@(SHA=yKKMj}7mz!4t(-Ej{Cwn3iQ6 ze*A{_a$MnYu|ivcxh>*)T8}*`NziE!Q;cwl*+s~b^X|e*Zr~kMV}IDY2v9u4xN!_J zqu={-0iAK>la5^xzqzM+>?%!>z9p~xnTR@8uDJoS3p|wQ@6%X5AUT5r8`U!j+ciI%< zxLQ>fuB{~gu&m*l?{AOm!lB)-uH@{X+9(vijMoYPM=&nW2i7|8=NzBi^!cH%=e`XN zuMbqFncjdZWu53yr4+WPQZ>`OSL%KpKCy6dJT%uB-YEWyoo?_QjQOo7?)?1kd1r0= z{qA3DM;E8m*&-H$Z?YxOCV?_o-poJ?3C9^VQ$R!HY|n2E9Fedo?94_SW|8Gno*kD6 zW@rJDQB#GKs?_Lk%qypP)j_Qic+cSt`mD7YS)d+US|5H|`+`}~lAd=#U|`hfVg~Di*%t_O1=Z)vv?i~ zFcCkFFdgV64Z9da?9_bVKG&;H`#aaGgi0Qs z4+?G!-O#?8vsRGvXl#4Fv}3DC!uHmt+`VfY0t)&D?v+w)-Un1{4VE7N-4o9dU7X{~^rk4#i1=)rU$>*Q{Ha<>VxSg^3 zVXSQ@fA8i)qSbd=X#$#O-RN6XTBJU#vacLoh4{mCT#-_}(4WWo*eD{HqyA$KmMu40?t;)w;%Bt?{S;{ z81FRR2P-(XJ4i{~IK{QUIe6!ep5OT8osm7;4(t~1S18iA$x#qXRKL!cszQz_dUZUb z^WYxG;*7tg_h9g9`&j-)ijqUFTvzwn=cl56AMd{{IuAExU-h;jQGoDJ;ODdvaB{Wm zXhMY5Zi4|AgWYFnIP)GNjnTy(9koHL`i9|y%JYsYi2AP94-f7IwR>N5WnVlja**?X z)!41{b1E zKw__Ne4jlN-U3B%&xh`!(m&>Xm0^=&h>RMLzSeu_5E;+D#VRW66QhS2%%LrzqjKgq zQiJpQF_gG6V3gzY@(LlT5PtV`zlrpF)=rMhy-!}}fEHoangtruniX_*fc?(UiO|%qQRj@Gp?H^Q` zXJLw~j5wnSjJ_%jm^8`tuW}nYjGeUs!W=)z&yJebf9*mRkEDH;>1x^9$`^diyLMSLcxD5^9ALkjd zOYYCR!wUkAxH?mdiUL3IqSULRY>aaPG+!iQsx$54cQ=i;-;ZUMT7cM?Rkx;pH*J=G zm5rrNdE*-<%CyTnGy8Ys{-?PnV%r;sFCUVwDKL2172cmOZPR-a3NLxu*yqw9{$Ek} z8BNjUNE+*WK>A%@4SS#$j=moUdPn9ieZ{UwFl1G|n=>}Qt?Loi!gqmp>nDJQQJVD^MNMyl*Y)?K*IX}O6IT}7oZ1RU- zo1{i*#b%Vk-R@)3u8O7@g<@-g)J$}{B6H=lK1WZ)3I$E}SN zJ+ZG)cZg-R<`DN=`>#CS7_N8IgrqkGzMNfr5vGb1Yj=9-iPe1vIMLX?J9OGE89FiH z{qm20?pqGVcH#G@fnVJBKCh1E*<7ytWc8ouo)_0iYsmM60B-w8K}KtFhbrQnIvBO| z$8e8(T(~$Ro@h85s*y?}a$Sv$qsA_MK`EXmwi^y`h`gE}nnp`ZSBs7v_s!(za%_Ia z&Sc?vQlUFVsu7HU9a>82X8nH2i)<8N`WklQqwSz^iAYZF40I)elfrl7U4bfcrbS~~ zxZU|4mD)le%KSMsq%gLuxzPXl9eZU>wN)p52JU!$QrgWo|8%>Qg0=z{QPs*L^4C|al7O3z**j&s@1^Jttn&8F8|y% z?_b9`)}h|duU~(EdfN5i(lmeWvhw_V1?O}_0RTW5yCM7fI1rLij3_oxVV)a##ssy* zAf5lsw@NKtG*5?;zM|(oiWQI^y}(TFuJ(x*tmptbA$owTAQ*_2D#WgT0xQ;kw3^T& za!U(ownG&bnowXpNQ7t)6ATRCj(?LdnmroWoxe|H*$1ZJd^V+dUe zz9SR9a9l~png~#TA^UFIJD-*=BUdaOxZop)RBKTlC%LfmltTRJ`UvA{R}!icMhEva zHK`JehD;(&x$e_n_>D*5W4m+h1%OvDjM(;HbdG|&XvEUKidwDB?OG@G+ybIDRM z$KD1l#BH~;D*ulPO&r%GL!7?Wb~+l~RP(n?)~;#~W?nA!TC$c8diGvdELz*8hW~i$ zNF-M={g7>ykw045Q+g~-@wgwh;`y54>gtgHz1IlEYoe9WW1E@ul#Fe@3w2_nHUJF? zqN@<^lpx3Txhsu+LUh_Yfjg(u!d4z@H(&pp-&iV`*l)8cZu?B@@c8bkm*wv9{89aX zMd25OqS(IIB;5WKA{w{;-;}dl*1v0RUm%zl1c4)k^=BPhkDvUp4*AH9WR55$%1Wey z6Oa_~q-v5Qlt>hmhYTW=c?r%S7#;66p^_VOMI_lp-wMOUBj^A_Yfzy>1tGh#C`ug% zcuM}XQIc0exDyl4-}D6lFVUFSS=J zzhdn>`sJvbXVH5M)4`8eHFic8niN!rKcJ&t-?(d(FpFl@$amo0m-{fz{H#Fqi?v+d z0O<)P)yWbhl^ZYm`6p9tp#OkxeqBKs(&Jp?=`W83!>1WS-8{N_%LF$^{pN{0Ux2A9T78S^kGpXNoZe+=D zzn{w@V6;A*;g8nHyqS2vC`Nc^fjdpzH*5R3nK&{pPWvDKR!L!sv@tUEcB}G@jVfzX z@$3<4Pz-HYOzVrA?n&{?3H+|KMnW!4+mEG!eG2DL9%f6^cMD#}HGG)~%<=eee(vzQ zSr{1$L?S?VK-(Y~P)w+%f>EM%2q?rZ4DD#=NTmTKirSH72^PYpLn64czQxet0u;;9 zLnIth!~*bAAa_e&WE8{UkRsyFAj@JB9OT9arZ7ft#0;8iedP~`&XA%2K@sw|^#r3t z>FrD#Z0o=#L3v_7BQh_B>;{Q#yyB{s23w1k zx7Z)7X=qrnsdd(Y#Q3g5W3EN%y#3P9(JxH9{k=2hF9GR40?o>{SMUH;JRPiL}XKQ7mGRcR8E#*n=B1UIXVIl>ltIG|+ZQ|kBjDbo%+SxXj zM(H5hUYo@^P_Mm#w~znD0nU{r1LX0c%uH0zz=Oo%VBiEEuR0KLOF=0)*SSsTCte<%CiPFr+xM1S@jE{8p#BV3RVg0DJ{r%Ydy32n>VLyUm z-a)Bu$>HmTsLKzJWfk=O#D6qruBszgLdB{=O;K_FXrZw9&hmnxv3c1C_wK&0AN{$q zS34i%c!tf@uQi<2n3yWCzlJ@fQ)lOsOCK#5mTgv!Dq;^$Xd25?jyH-}h|EKQwNDtB z^C~GrdOhr(RS;u+EHu;!p$8N0DN|R&rmcmKR+4*V|skP8#5=NxM#U`d%~PmeoyxwB630_>kq9CCfsiW zI&noR&O&X@65o-1=K_zl2&v)j|5gsmGA!+P3er{$&K}jiF53NNQ0so@;6T3Ky|vg{ z@QCK@q#)f>j`7f4(tcl%3b5)*KyzauC_f+(IQ#n6GZ-L~o#YQzk>nckhmL}o-}`{Z zA5M=u;udsJ(`2iq)g3`xnKYQP*b3A5 z^)J)q0DEi$!~3_Z=5k?C5f{B|iGKFBvvJStWgT-*JDR!owEv1z8on{8nBL!!`#O)~ z4rv*(ms^s}z_XfWyTI`mt(}@OS-T1C@ss1x{QVDk z3IFz?zQ6NT3-S+W-uC@08g%noSNrA`mlYxJE;H1BPv>Ly$FR_`hWYcgo4ElJ1OS*p z4Gd1s>ldbS*o^Lp6?I4IxjCczzmEG;y}#*Y!WIFLu4CjpJxWJ6juMa>-Q6kOA|m5cv>Ex&i^|D7U?nHE(P~Erlc{X8CM&#gh2@)$iY&WV5+#8 z%BKU#RSB7@+6Uao!6_tFBCA=_ctVABvh3$fn1x;FJM!UP;|>cg!sg9h?SCe43{sPM z>&a&c_B8R1Spjd4#-sVR9_E_YZw-5_iH;29+MACpIW283Rq2m<5I(*yEyJfe1u2s> zH$D$i`IXP{PdyTRA@!nPhPc4DBIdQkmXZE_8@HFOxXasIOIWM-aicJ2X3+WfwbyO7 z?~cNz*Q$D=`#)9Ujs6!3hf!)Zwu90y<|59t7G*pal^>rM{vqE<$4`hL51M3oo=JVY zlMnOyuLVi}7nGfNu8JTWr6y7(i5aB;6G35>1jJm@5LF6dJ16GxX7reU`}hueUhL}M z6nd&8V3>6P@1XsD_74vfhoodc(8Vbk3AAtl2`PV(do8=opxI^v7TJZirt}+Z8c(5bkLaoX;L8 zvK~kcy`@@60c^aZ*prR>l3`e4^2Mw-#KZJDhPQWtXDwzfD(H;W_~7=4bMfU(-|VMV zf8EDc%Th(g#sFGI^>{K-PMBnwoqDtOU^17_y|J}ONl$G6c6fkB7)GI1KMkaSsSJSC znOE8p-%99+2YjncqQ<-#dZVaNv+ZbUwM)plXfFqiJx7^%7vrvJc?`pF{J%jH=faMu?rP7P&&Jfk9i=5YP1#`5c1q$B{GHX(Ws=z^-VmWnS{eya-7W?4wwa7pEh@!NvescD~hgO-PpYf`I1s=Li=c6uom#|H%#kc+hZLd^8_bU2 z2Kk&(01{&vNOfegr_wWp_0e`yUjX#NE(4eZJdU#1Bu1GOfGVY%frLJZ(8;4EDzvjN zdn7pONApaGx zw6G48(utUh?#`xfeJcOgDWv==b$y$7S2R+4?alZv8#480gM@a3wH!r|3ab_8g&r>w zNO66l4|4QIxGtJ3J9nri+Rw)WMQWV8bH0s#nB=%Vs0cc-mstA4(c%v447>{M^22@F zlb50b4k^Ty_(mZOu*A`OY}=$;GKA}GH~T7xpH+mr-qr9Xm4B$xDP{3Cw`5%4QNdat^4Qg2(9iY&oAkkCQJvWi@??g9c}k2^xK|ZstXg ztM`zg^3<+nOziCI1Bh`={59&!u?b#@V4$h=c@Au`8fkg23>h6WfDk%ri80JFs3@>1 zWi_Bx3E91(D=gU23UN>#bGEc)LU)3s&g(_@3l0U^ZT@z3$Jl!-74h?2*HU~Vwg)@H z&BrdfC-h4b{Hnqg>xIkXr;a6&oV9iUT77#IxgDBO;O^)wh~Pe z#7=`O=bjlfLw9&&>KyQD7(FFx~e$^ua-uG?K)e9ZmJ zqYkWVyD#%e(Du~u*xXRDM~_EOIA&E4tKMk9N%z{9u5{HeS`p&=ay;ho)TKsVv&uneDl-|Y?IXgSNJ@nz_29S8s-Y2~IuDVG`0K5f-thH-;o2eQP^#;Ebau0S#sH>&*myYVb>H4s=LxO_?!l)?R8a)gn7Q%nzYS zfsnJnO|#}psS(rcG7&fxiw+SHP+|KZ5g05X4+$EW#?ziqeyYEE#+O(S_R)IIBg=W9iI)=lx)ON=N<`Ts zG=ifagcJXxK??sb6z(tuDOa>;ZEbF`_b>*71l5Bxd38u z8Q9keh({y^gGCz#m0HX?=ZSD$94=BJPU>foW-dwEKCV#fpqLpG57&Sp01)#5@Y^C7 zKpzG-bQo09s4)k_gd|&Q;^HFXrVt3404M`dCL($a5-tfDM6XwkWY&s5QsNe$)zukD2AhPaFO#}LCGN1y(5 znZ7Fi^&SgD27^qUw^9uf;d%a2X%q$SB{?5xtP8Cy(vSuSiJqHilt+An7(qm&64QO6 zJtU52sXmFF;|U0%?r=w5RDje8v1w%V>Mii*<_s5BFg8*R&B%_NuT73M_bqbjOQY-6 z;0tHK#|GNxiuS08f<4JExm~9Pgc#kMVJv>o!p84yPqDa3o*33xa>Q2tD)L9#%4o$& ziXU+d7aQ5!u*r3Kwzr86P>a)>X1J!q&+)-=jD*e+3A@Kr>*0)YhezN0`%B&DoJ+<7 zIIrth`KBfXW-SV{Rw}y`mdI$2Iypt>j(l$tQFZNCBDI!zOaJWs@*Af3jV$wD->zi4 zdVd&STWiqK@c}&cf%6gKGXRJ|I2=M6M<5DQOfR;^&&cS@3nQn6(~g8?mt-6^#R`K^ zc19@X2P&>kx76-~rlir7t6PDI1G&X+ps2{&yl0tEl%^O}JSQ~;>jMHSmy1W@%i8H3 z90sxIf9W5T6)i|I(0=#v?LYM!?r(Kxvp_FGS%SF7IpTvJI03pFKaNJ)t;75~B+F=m zc*iq3T5NwzeXIFWT{9*Cc{X$1E?oG}EDhQ!!5)bl6H8m5tc{SEO#cKvNJ*7f^J6UM zFk;~&)R4AICBON^$G3_q^z@#8&)EMv{e9i*<(?67@{pG8j`hE5!Ax(%j$Y zJ~8*aIeURZs0qb~g}?T;dD+{z_oKi`kFbS<9P--uFR0-tf+Xdkq(N&&!*E8i(M$>V z4?HCmcHH(@?HP8utPf-ia4|1)%K;3!qXoc<-4u3fomMPOMMOnL+CI!L+3(Chh&!u! zsQD#N>jtFxwF_vGz4hno8XYxHtTp|AQsE7`yJ>JRi(pV@t@N@7&z|LD+DOIqokZ{Bh5{fd6d7Y!p@sH21X zH4l2SUs#U{@(jJs`5(J<6s5M{jBe`=!xJUF-|$>kwk^r{L*bm7_*dlH(pTB)5P7v_ zy=jBMJ7H>FP!DUy-113}&Ov_O{HNIeS_JlfOg+$_yfM_VycUT94!{9L^S}WO5I`8y zEYJ&Bmq+OX@x<#@sBkJJ`g54DA_x9~c!6*#2nFy-134aA7Snob^7|qx9 zvH4pHFkl9!ZJtc}F(UmFFIVQMGNBXDZa2?8P&Cq)c_gwWoM6@$Y;GctqTwOd@3(~4 zM2zb<4AUo(><1A@kd5q*RjRvGv5(6X(iFUE&8JN?ZpbyNopjtqiO#J`1|@#89{Rc7 zxn>iT%a=l5`LH--aY_FZ=~oAib_f9*X5GgQ%>_<^LKPHvBhfbzKoNJ`5Ck{FfHU`C z*i=E(8y5wS;NH?9bapuv+AQ7X@=DQz`*!T=K#(@AjPX=jMruMl`BO@A^6Yq#+=;pF zVI(Y`KvBWrZGzZ)^a7EHN?;IQQrQ!+7cf!fOBLkg!K$rQbW%inT*;m^b%$B6hW1)}lD&tHOu*xB2h${l>%}&*c8>1)^glFH zY7M>WLX3M`sH*OBQ#JSSEkGZV*zzwSuAB0n?B0Ldo|4n|i^0jeXcD?e_TS*UNY}G9 z53+{XtJRPovy3kjKdeBttg+`21B(zOibjY4TuDwsT0L0&Yangxy&ncjjI)$LtiECh z&SvbpWjthJa3@b7*RQ3*)0O)a8%CRG8W%4qcG zR$RS#0F<$HTVaZv!0v+cK%5~+NC~0@VGCiiH5pqFPOH#OQ}PYzr;yL)*H0kIHt7DG z973i->8w8G(r?X2wiCsPyO5oRcC+xFo0mUYXNs{8)~Xk?iB@foM6Gw0kR9u1Pwn}o z75!ABepblTm=N0VzYm3d%+FRAG=EQ+5mEj78Gk)5Tl;Ll9nUzq-ufE*RrvfnQ;A;p zcR5oBJy9c1n|tp+9iwcW%^Ul!v+qO@#(w|I7&53iRD*vEc@Sd;i5)@fBn-gjVh#i$ z2mzte1_G`I-9Qt-DP|xMG1}H{A4UX6R@lnRi#FC4POMNeVosNPDT|6I0Vlmn8=!k5RmXrElf!YmIyP=s$%+!TE9R0 zV!Ew!Qt0thtBSroyvxsp{}0~kvwgFO-7o0f+BL#Ez7M9Ra7l^5_^3{31E{q-SzyMG zv>%R9jCOyx6-pwL)uv%iC=F@XMDcX94XcvF?$e>ZeoeOO)~ab=90X6ZwCoQ8qh2lKM|F@{F3Q0|_Jd%05oz%^5y|faaFmvN)PG z1HlA~AC)tLb42BYurqQT(zE&Z*f~jAAGVZ648bKhs%mb4d_x@Ef{+biyo<59$6|tI zuZjH)S{I`URm;p|8$8U6I|(?I%r2NMjG)ggTRv=$W+&Kx{37f55qj?#;}h4Wrh-P7 z6WSSj4VQMtSS0u`k4%DFW6Q-$IR2XHNog9H4A8?xDT`)f ztw#s85MH=qQoX#xMHwb`_LMa?!XdjW)`F<0@cCr2ZAE3y_+ITaKFhdue{?&?p?RxA z$Nl%~{)v^Z8hu88dOq0Z&d#~2Nt->d+->Qq4Hr61mHjU)C&c1?&yMFkk9Vls`~F4+ zkzBpFN0?cE?Qr#y4RssEPp_^jAtg9FMln?zw#E=!DlTceH@>dLGycUfC>oB)EHJUW z`oAesj)Iy~5K;)?LlUx%@d3Ik41&-+m3DUvdQ80sA_qVi@4l&M{*KOA_N!E;n~c3{?}d0h{3l)O@aJ)*O^cLq&uFq#-!GOPt9aE~8DZDI^&K&IDUKYq{rhITy+Q|d z-eQqi!iit_J}y+Y{VxvAj(xdx3zeg9#aL<_gHCiTK1#1l>^6Rb5U-Qizg1TD0R_M3 zLZOp2wyXrorS@~|J~72mBj4I9YjAzTC)m?4aFIvYv66&4vR6kn3xsqUlw0e9`7HL; z1KnK#oUQ<#E6Gws*R!It3Jp+X5+2cd%Bx-Fo!p;G5+)qP5Q> zAYjA;k^}mj+F-QyKroFqA$klfq{wa}0TYiTIb#GGF!A;bG2+h8u>dMK89AFB5;1t^ zSpyB|dz5nkd59gkn8}z>DDi}B0QS>Q!3}y(OHYl(KT0U2Xu*zxj{>oUofM4OV%;xz z5$}iws3dPU;r|{r5TvGJc=_O%SlaiX%Fs^b;t`;QetY@g+yv9s<@VNX0~K+pK}|&F z;HUin{@AzmVcbnDEHtc~rZ0LtF6>#bt4#`YL=?2g+z+zW+uS{aYgDFtg7~S)+Hb>{ z+RPly|LA;Q=zaV8f!X0)@0Se|hZQ0Kpb@oBj*7ZZ2xKp=!9<>8l-v_oEn+rGu=XTz zV2#-AgX9X7k95m$yj>zLI%E}xrX>+Ic#{(x%;dqq#qC2jK`pZOZwJCz|XXDV&)5>@~qchgWA z8GpUP?#%kpJk@OrWQzd7$G}Mj9OmoBlJ5=Us>onb6RJtp)}Jaqym@o7nxwAIJeE$T zEv?MlF$zInEF?h&&@>QsfHpbA4n-2>nux`G#BEufV>eqKE z4EP<&UToJre$vnmtXDg^+Z}IRG3CO06;?(adp;DeUSH3Z%&q~imz~bZ+9)hD>#Cw0 z`y9J_$my;eshWm+y6{`5Dk54kX?)~ zNOUBv(opq1M_w8M5nPl!0u3di-My3K$)a5He=2J<^YjxF^65hXvj=Kftt{H&5^Bf* zP@@DZgzYPBR5|U6VG4mVb~cUDm+{1anbczjZvQ)G$>ZKT3hI&5j!J9Hd*HJ^;fLB| zUXo;TwyTBDVzO6r#!9*cN5YDKKCkbPWCX-174 zRUV$RRk2#BuRW3a#_k=PD*58_;G2Q!*UBprSMMndoPiK@k1<+FC!&Nv1>qd~+P55J z_X6>p2(WH!myaA}R2p)HcB?Ylt5=?U8X{rin@>VGlj{C*ZbrsgxK+QW6Z;3qc%Xpc zLv%tTGMlRz@`{X(Va>pN30CCHFx{Y)%h;weg6U!QJ9pG&3#Uv2>_X(zYP?g$ciWos z?~1jfh4e9U-(+XP{W^<@Isd%ed>|%DtTY2_1dj@9Fs5x#g_i913xb8&vPQk|i`L1H zBP_Bl^VIM6p7VL*eXM>;!@8uvx(P!6nPFUQ#+_W5=>5yrB)q0gD|Yg<|Cu(awN}0= zxqZ`@9VYwv`%;a^j`x?!(bd|8)s~5jzd}7OnkWnx>WmkK5(5EZC_qGzD7OhaeY68) z4!|)b1%PGh=xCazZtiL~2~I@;(F2Z{A|LDhBnTt18rGHY5T#B|O8^G27`Mj|W7IYP z$KCBb>#w7~kyCsk%axx-eB>&Mevm0kW2K|K>5Q=COX;HF_=+i$&C5=vC`Va+yaXy+ zGc1m=HBO9f%WRq%c{u-Ye`)#(`kO6|=In7xYqhye(XbS-tKvNepC**X{g z4OQniR2fEVSQXk6ZQ?)`|7(1dDShf?VMh?v(;3jPy zem7JM0w7?(mNe#jAiDL}F+_GyAfUuu5E`FkDW|0$R~I#WL&V8uYs?YoT@<> zNk#u!V8`7w6>3u_7+`;h1x)RqYeWPZb~NV5owL7WcDNTSU*`V0^IKDQo5jhi=T*C1 z|Lo%`mTc(SyvDIrccRHn$X2Y zz*qDoTQJiy3?*sUBtDL`jEmw>rV^^Q;-pp=gVE2W>}a+A*79rDy6e8q7ROUCc(!)n z^a{4!#vA*0)vXIL7aHDsFW^3dm2reX$(kB%l5~@@rGa1!^PZ}O1Ttt#GLW4;%)$uT zVrbgzPZhNLsaE9DI2})0QW+~sAeV-({=40?G(4G18L!HKk59UDUvPDSrLRP17J3r0 zUpR<*NZ5K;h4?Y|Nhl?A63V>FXO|DmxN773;eNm-{-4!EXv4$H4!+6;4XfAFw*7Ae zz_FB+3m%wE4>(!ya4hK?nQvtN^H=-$Z4MXWehsp;)qb>wzKC@BvEuq$=2o)#E;A zy|zKgFP}cd%3bOzzNm?qk1&OFsVhzvjbMDKHsXaC+{U0E1HX;74%8{Lez7%ppCV84 za(CSfSlRjE@YK)N%)@kjEjG8__Ib8CE^Kqx!b@N4yLRWY5`*FX+?Hoz$6|o(zIeMc zePK24b&c+sXfH$Pc@syn`OU$StAwA0_kuHU4wo%*vK0b;l>6gpmSeEYlYLI zPTtg@o89D(WQl61FLu|j1$D1@rj?>Tagq?Iz>A^XRd%kp%PQ@x^}mlYxI=o{Oww!o zW<{PCja{q1uDSSEq@o_S8(SbCavX^#>3n>j^plisG>$iWIXcI9as<$IZ*eG|t~Rv2 zMh5!q(f(J_EIxYn_!PEGif;;?CEo)l|6`n$;BG%F({pR-5@>v|G2(OS_|#{`-EAdi z(I>2D?L(c---rQLG?ahYwb08ju0uf>5*3;4Hd;*b)^()On z<^2Oj&SjV#Pf2*!tZwK7E;{&d1XXa&1bj^+*H5Nj>ea5*=#|A9Tbz}5at>`i_k08Q z;6v-GPafB`wGvAId4Je$og43bDU3I6>X)I1ssX^-sSqCc0Bk5!k*EnWN)v7#lvON2|EpcT%s*d;IFoj5mUOa9Ap`1em#-S9WZlXycycH1m0km^5NETU9Y@l97z(y zeXDPsKw+@qj^5N2UaGFv`3&%_o;P{;IM4+7l2Q3+dzrhARjWInzIMpbqEAVCWwGP4 z$LEb-&-ZgwTsD1h*@80Q+Qv_?eR=Zwp1(=GA3U3PNH0!}@DyJwpFp4Y-ps2we-gr% z1d1K2pN=>Sug%XXSy$x;bCv#h9M8h9%8=BqM_=>G59W`^|XKd`oev4j%DM9TlwcsvvDek7mpqqpaE ztizL~w6`A`WWf0kt|0qz@Tmlr>~5X1-c1b`&pkxqN3HTpTJy_(ngG7>*Xmcb+D8wQ z6#fel3AJBj%y|WhtlC(;kLzEO4Zfn}Xvyh%bL^NK@;Eq%Nn+3I#ZAo-Q(nu&Mf^Q_ zx1Zh>`DEWJYV?AFI6K?cInJ{+m`Lx_=TV6OXW0_>=89mdE;;F;nMG^wf z872kd)QfIYj#y3U%-@=3$qHo*ZB&<&h+6cwe)-zjI$f)rJ5^7odH#bUQI*gzI3n4X zHL_i#VpRkjrM&MDVxDiv!6+Fw*6wX4v(=(Yu^r(s6m34n_+EsVzI0X9r6RgYP$AUA z%0m3Kv*T}-!xx(urxJNnlQ*7oN%5L_Q&KU+xP9N`WQMaDF@Z_2&XqR)y)Fd&Gg?7a z)8#uz_5MI9C*7y1nQnDE08g3&3gdIj>v>m>4gd!3{=fjytyHa*m!pdgX%inTRpDU2 zQI(pN;-AT+qOPn#VnUM+AB5WWh^l{d@j7UTRT_5M;ZEv4&se$SQnafJW^||h5W{2s z4Q+evXd`ZJ9p-89?G&Oh*)SNbuv~MY2W0GwkD{) zmyuq-Hkv7Y<87uVz4GNUdwSx?wYF#8aLVw*az&rG0%My{#i-SUR)62h*?)q5HbzFD za7*XxXe7WFnFdDy=@#8s5s)NFB4Pz3+}zHG&p{GthfsD{qOv>m3drqsJbMMDi;l=S zoo1l1PyqoV_NYdvffZn$_=b_sL8bww=2eGpPtNXP&W6v zz_eNj|BXmEnBi{bo@*1nQY8&mTld%`Wgk4q=qS&Upk^dM?`SSGz6#w*`P%-y{u%j0 zI*X1w@0|WWGE!Ia2&IBEUbMATF0|`fd($322rYd7)aCcTCJ7-cxe%MhrNf`P^C$CC z;W_`sMrM!lk4#lBLHc@X0qs5GM2Y^ucvRV!TS{=XUtov zd1e3KpwP#0o<%WDqHKKs%l*~wA=_=O7SB0g2Mcl1D4G?#yk4k>BA)d|=4~!crTfl&LR2Eq`(HD_Hh)S5m1NLcM#%ki{mspnb3q2E<0V@ASUL#qn92}TZ4M+0?8}= z)Op{S)Ou8meeS0xK=>FYC->Ft&aie;4d)p>b~4<+2u+?XF%iV=PRt!_vH;22%*jdw zsB3T9zL2E!`vqB=-1B4lLJ}ueXYZqG^jD#%N;U|!e^uZuSJatlvgyn6^Mk9tAf5H+ z?aUU7fR>r4;T~UnU+lZTK_ao2zy3}@=ge2@pd{kNgT9F-|EPOZLR+L~l#e?B@4$Z0 zSXa9On@-VJCY74k3;oVlkZ5fK7elAOxYeP*pg zO_zt3rihm~C#DqUHN{(6e0-yFqfW$;Hx~!oHme(1bJRR#j1z~1U>j)PE=wmCd1yN7 zOeFigqpVTFhMZ*A_y;~FV{K3EIoO|mA}&$W_E3r`zyT~V|+$tC*mEHTomb$zEvIQYrPPOOFh7bQe2bItxs z?dV(yiTo6PHAK{(psr^M0R7oNy?@E#3YC0oo3}sIpQ`gbgOB_-Ivmq(y6XQ~(Uu3?E1^MDw;p$y8|oFnqgBlYyO{Ap(9{}JEuKbIg-+(tyP zAKd_@naML@@POd&XbH;+jn$m%8M%%xMczVc(-(+ORO{o>D4nR`(4wddbbg`oIBlTFi~ zh^{J^slOs=zsA6=L$Ap1MC`}`9cbJT2@^-Do;D58t;(bY!^4u#4kwBBfga z5=>e%RRm_dW_WD@CUm!u^vS1=D!y7T^`)x>o~g92y&6gY-`hxm8N5ISS>x8g*{}qC z4wM96w(9`(NTm^EUXAMsxk)UU^;-8sq0T(|J!V%(Cni(|ueWNL2dLwV46Z}P>hBfh z%p+6BazyG<^^8Q!wLB}^Mq+c%u`V=p%bLy0CmW70?k@=058rFGzbLy}3tMW-9v@$N zr_+1-m;coWSCa0tOS>IUG&-9}r;Lv1?kLkQq0~r$up3m~M+mnhCLtK@(;4A*IBMSn zhXSm5=9s=k6-Hg5bmuJrs2GOF!#KcQW1F#@6Z6LQpM2xd$UTFeX2s^GU2)qzx$}>&jr|Ca4@@5zi#dLg_RmmvO6wB?~dO zv$S~2u8LLri_MbN?uGb*zxsehK#f%e?3FWL-mxygO+cZ3u7CbCQZ`lTda1zPJeZS> znMa(xNaCrGyq3ymCvwJx@MY28htdtIpZv;5!!0r^@%B0K4qQW)iGRkt)sS7M7F7Cy zcfU=sXT?%_J}JfD$u^0HW9JEn0s6)sAT&xm zlAE2TG)9qMn5j%Df*v`~W>~_Nt)4Z=wa_2bl2%Oc8B7UkI^;>zF>bGe%q{#8C$DKc z5c#l?AAB1a!RB38!0oC-xcA(u%`woGjbW7 zzpm)fS!Q&!PiizR_=BVcg2^( zxr>qivVCAcfC(o#Oq&n_Dn>|J+aClvESlQEr|-5J+jaNab=x|+LtUB1{E#00NE8X_ z6bn-UE|iFWbC57exC}(ft!cahfUuIlsh+USSXWa`*c^hV?_XsSqAF`cxsFRe4vLdK zizrOb-729O&gR(rbhKmX@JPmjw7ZP^fl&>|B#AS_KaB$WQvT@X&kq;kcA`Ny(qf;Z z71A&s@;!?Q`bx^8lT`dhS{-~vPb#a8LjE*q6iRT_EB`RpWuClg3}AK6tZ*N&XNrV` zuFya$d2`92yJ7F_p8>IttJBSl+w~{|zr?}F^j-<`+v8pH(D5O0RFC1(yAM^vq=c8v zQrADkS%NXZ81zBp9d|Rpia{DgB4;reND`PB;6g~W%SS`Rnlh|Jl2vEl@w=xssvGeS zwa;ws19*aEB~lfH`@0w-|Ri!9pw!3qOMA)5T7Y)1tZ?H+xg=@JXnTcn zv#8D1u7;gbG-Y-zdlc`1e0*i!=edp6wn>lx?P?3db?4>?m+R!do{gN7OKmTEwBthU z*T!7{l9&vM+@=8lql&wu0HiQOC_KZySszIN6DLgK6!@Tn(8Ir&(xFPG`QS9LRzz5; zc}SX-t5v`3gcy&BGZz*1*&}V^A-5521mw7#p#}j230L;VlsQ~f-wjE>hRpL59F7^% z-dCOph0dub7|TlLltO7ZN&O@YRL1Uw+h0ag?~h}f~tS`tFJ6$lF{s&62Y|k11-?8a%mFp?DBHqi}uC8 zlr^jC%{u=Jg<}G9CRe$-p0GiH*WNGT9|up8N@7jBa6 zOSa|Lsxq`Gy5rJPu%qVI9!Yk&$CLhWhr*}Ip~10ZX1LfK25Ggc=0Nb%)ejYmsfuAi zWz@q)462dL1nf>ucn_~O+0iokM3ey)8_+Nq(+!S%M2SUJ5E0`XN`_%G4h92?_Ske| zG)Zz_bd_?(E-OR{L$i{#mK5fumMC}(|aps3crBhAj zF8InzYMeKzLdr}VI!63k(_z1nRbVgcgL34%FKg)2piQaf9psVz=aq36M=TIXd zX4;dm2dAnI3W|k!tH-V)zn{z1%NP(X`#y5R_wLSE)_<-`WqZMO@4X&(0Z-q=$WHd2 zZympMA`{!8jOjDa#3TsWcYm`lPhS3DiD1?|)KV0NK<^R52mqE0vBdy1F92sQghL4- z!b$T+Eg4{7gnB}ek_|(G)vG>NlL;2vX^8dl67&V2DVmL~~!8 z&HhNGU63!x=_OgWCcFk=pQKDu@`@M!apyd4hAhL+JY{$8cbefsu(&cW-=Dum%DRq3gpsQ2zlV)tbV_0(_q*wD+c=xB)ve26@XL1L1@k@r1)@5S%rU zaQ%+QN#bI^qd;*U#pBud6XB2;nHpg+5GFd6@ewJZ`4V^tE$_v6ztB2ubvZ)w3(9x4 zMo$T@Z3;iNyZz!2Koxf?=$x+P!~7QDQ$bsi-sE;;kpGLqki0`y7pEyM#PACLiQNPu z$4)m`DCvNqCO1EM<7MvXcjz28IwF9?ozW!JZO|M9`cuR;& z-)Mz=;W=~c^&j_2)2Me|L|i?u_Z&!`75u`BgjO+X0lfThQ2uC|&=@nlY(e#os@;*5 zG#eqh`p0=q61DEiIcE2!Jw{|@uJlNp)(jJK4mNuEdp5?hq}Fz(m%bKk4Zyid-OE+f zn*r-n=>tc=elZnWE&~M{YRKSh@gPRv+(Zm!k1!Pk6MM;7mtNSXA)w%@O!*?!PFGSL z*KjI=y4>gD^cQV8I=yKzssPM5@NK#hP|sSH$H%mOj20<)hT-uuQ1*vJ%!^0j!{6rfn&#|o8+ z$a{}kuH0*D7;0Gh$38mk;@r;Ngy0Av{F}$-WW$qmrk)1@%Q!}lQmHzzJBhf!})F8u9|9h{mdR*LV}=#=K<(rl0J^=?`>w7 zK{~LAec4tYYM(#}JZp%OB)W8}FcxMbI)m6#0=X2hW?Ri8(WZAJSPltjQd%BH=3@}} zjYoQ$a?WvVxF@*P2@1R92+7q3~bk!71fwu4;D82&5ZP{ zbyO-e?k`SqPtY9A7mG z%ZEN&&2!SqKjOi@c4 zqom@J;Nh(#ENbY<{LJu`$A|kKrnrKlss=4jUfEZtI1s>YOw4X@fF$-kHs4YiA>}6; z(X1Ujb*!h&0`ysQ!fTsh^xX_LFQ5RN76FaU8Pb5Y#%%`_RW^h0vtadXnKUtlMwEJ&)}kjrqc_kkIhmx!HP?Sd%FR4KhEqbTp3_YX zzsB6d$u`MfU3^)Vri^+g=*@^VyCiv16u)#54^})){Ca{=Hhs=`D9FAoFB3 z#QAiE1G5RwpP&8t<5#~6H%pS=E3%m`DXY5Cu-sc%^v z)3(3{PdGmF7}@e3rkXEK5xLoK;=I|=d61z$?i{>Rly{rX#8ktdwdL|x<5_JdhiJF1 zarTx=c}hlq=+7>mE@`dB*I|bF^~#~Nl3AEmBR-e_xc4-UCT*MqZNXar58Fqmm6y1= z`-rMCU>cRlz86~)eraW%Z~IRQX2fzeGft z*Hz=6B@(%keHPo<>=C@!>5p#6nb>MAPkLZDG5qlIo1tL6{yQp_nQ@+OXLq5jjmrm6a6$+%7K6nCa0tn; zBxmL%6y;QdyiWi7q?Cs$z2xS))FfR>ZQB_zqPnDd1g8gJm{Xt5Z*-}S%Zc~c6a_+4 znqIFlwNMOyJv{eHsbXEdIDwOc`o$t1V$rNY}~=`HhY`m1i1EhVKNyucW;feio=Ss=nnQ1N}T z7;rqsj*bWb86)~%C~O0WDxC-FY#laNrf`HoFmFe)oL^1u-xI$IZ}>L$+fab>u;yr- z5L6*@CIMGNMA`J{8_t{5K1z}qL51z*k4|Js8-GZ`;k=NKJjS?@mIEOA*_=}?0H4ys zOhRQk5IGU_Vdn^G9tJeLSDHyCSl{}Yxy7v99ah5Ix>Ihsja>+PvnRr1St~##!~P!Q zM?5~9gyYAqJ{Sfvdf!#QU9r?1htWKX=ZdWZcl_FfHdS?;dISVLeO<|R_Sc!jw4<44 zGOej9erd{I)?92V1D?Xt#Jc@RH|Fd8_+eyc_E?BI;_xT+>Yu2W)tO0+#k{ZNJf7A& z4gRT!O0yYqNdG8MSN+|Zt(AW}SQpYv5Jk2cyALnY$3V+5RK_wIhpQwZ7~9?*TvlR#e)J&eqow0n+Gz0CQqEC(c?U1xcg$sCcXjYA25T z_!Q7WKmt?}4l^#Mq{FdBUQoO}Ui$0-ZL}(nBL@!X0~?G0a0+LQ`T{33QTt*jC0qVl zOvL{q=`8%3aNn=LjoM(qfYIFzBOQpa(JhP`-5t^bqMy;--Q6KAsiPZdDHV_|L9y%M z`+NR~`+D8ixz76>fJiopI<6vK6M4&@;0fr-3vtW*9$Uz{?3=onRzXVG$vF`Scf+Y9 zCHfwTfAF=?b1a{dCjI=DXZ?Cl-tukPjU8jupZ00ZPS!A^9H(|6`{Lt$IhzLSg2jg$ z4O~Zo{l@i_d3+m0{+B-se3E#%cx|Ry%o=K*WrvTX&vc&&IYlpV=pR$cx;~}T%o1#E zwizjcx0+vqT1{NHleT1)LVh}rd0<-1Lyl7vm(eH=hzYul*f_dZooAVp3@$yD0+lLW z+#QF3BycFL{IEEx7xhQ^UIYNJ+$644)1nqUw&g{)x>OA(+Qox{tYog+&B6$h23ua| z0I+~UIWR#LDjg{7(LNI^De?!N?Y{o~N=dCoxdxNjSp(K<;G&8A#Ps3TYC0+a`HV&l zQ)6lcG4E~mHcngKA6F?+eh-+`m&}XNssXYjDPuSDwah~#v(BCI*J2*)Cv~A8xuzFH zg;hzFZ|k&+rbFUKBZlaD(6pyfUlc+M+TWC-4EpevF7M2DZA?!j{3{(FMSrPXQE$C# z&28FMioUtrKO#Q+P}sY7`+pb7-vE*`=T|y5VS7Mm-KpnmeKx}^0?{Am$^4zRz~|23 z4UxYdo5NepU^J5=qKTcW?HVC2GH%3nJK$Pk4vMde zx5jgaZDI$YC;+)0i>j-86&{w?bdxGReV-La*4Ao<#S+46>^U?MgY<0+GGt+Uq0-(J z$w{%nU*FK0i;GTjXb45vY(a*v#?K z*c!63)#qj6B4uS{`mwZipqFdUGBbQ4L8_i>gpWoi)>;+LV7?!{H_2PqXGx`B0a5Vg zyxw~smiyq+b7;uz-PfO`KL$x|yPoLieHMiZyB0LoRcKjl* zZ5D|&J?OQ_79C5}F6KM>V;1M=KQ$IxQZg{7we8U=eMvKSB@_J0Z^M-DZ>OcF&bV8z z2yhy^aKBG=<%}<~)SrEFyvvIw(~VSqwNNJmEfzEO=vAjg!gSBq=2rnUp`W_uWvLqm zXt_gS5xZ59jk%X!7@`-(Wmsg*xU5C}%K6D80#0eH!_I_p<3AhLn0#*RZ4h@QcNwgQj84BBfMC234n|D-n@s-OF4Ai%A=f|?Ylze|#If>15kMFGWL$zwnErC71 zP>E&4gV!oPmWiJoiC#bKf4JcNV5HW?m#2e92~o9jt+-w6J(*_x*u8j)f+=T4q?w>D z25MvN^5y4EzsD!C&p|b^M_1PWhdz7*Xd1abh_adCBoTQr{%F&{W;h2Z^5t~)l@xo< zn<7Dr2QrUMn$C|vaZFtRKIQU@oC$0qoB>Lwu~{7z=$?l zQ(zpYL=X>2(k2L?nNdPef>Xv7afsb$i8TFveJv8b;>2h^Qjpqv0bo4N;iMxL@R9_O zYq7BIG&-RP8Xy`)3=(pI1Ph#Ynv;0CW}Oe)T6on4dkR6Q_?O%><^8OgR=7?*MohAm?ZWxsZ-<^+Peb}> z{!{8I{}X@6JkqZ0Y*;HCos}5zGmcY;pzUmn;&u#axk9#ePdLAHGD_DZXsESxLg+%ei9b0DfhHs^`+`{L?j1{qw9u_G6o>I`dpP-(jxc@&uMt1jk`lH zB+?6H%~u3c_TU{lx;^GP5h47O=09U$wTz?L2eX(@5WM<-H-ta)K@a_7Mp}CoM}HVjAN83fK{e(lacu&N#EH>&KU%qt(Pagz3y~6r?b(HtYVqi<84=|(&VToiQWj-? zv%}TN-%b=ozEB~sD|Vcm?H%4?=Ds3TcXl~$^g1?#>;i$^m24IH$(&3Z&fge+wX>bi z(9j!1j6x9!0A5!Oe=N8A5z7=mHIL0UcN&dO4h$Kqgj!DxvqX{$6K0S2LZG>y9h|LO z$DR$2=pvLqcWv?TwtgF|xJJR1oSUeahF2uyJ@Y_Z-%~#n z4|+4eY4qB%f9EZe%TM5c8S0o0lkNI9$JWH-OeqRy$UP|yzx)YtRGM+kQryvA-OX%7 zd9LXK1JB{P>~S~auXXq9npZkH|63nEM}v{Big%FY9?9JC=A$hG_VMJqGzD!akyIJ& zop*^P&-$`gzDOxk-N$3$eEX_a)cUH?QR^Z4-XjGc%eNNUFHXfa-uQSWN^{=bPstJ7 z=*21lK1m7mMY`mY@{gfp77+y2Z2qC{?id62+{KD4RStsC`w1_efMe9y!-GXcfXX(B z&@XR)!w9TWuIkNk*SZHvP>yiPOyb|ecF4W}#x?djH&7 zAJoSG!;7y5vpg;YHR6q0^qwoqhjPfRJ&^x7p0mcIFunh1=h=CTa3{f{C_&ZyZl~Yv!Fdsz*bvLLFZ?dfwro@vO9X}fU^e_P8M}e!MrexjlKfrs2e(6U#6iW z_cQ4$VeE$Wte*L8Jf5ORJ8oOp)ahYhM1@@A&C|heM_$uc*pj2*<{8(Kt)B%<@F(Sbs#m6&XFeX61&zS1V97TYs@wheF}IoVZ;XN zdmJwCSO|*EPLk$`Vvp2Anyi*(n8&UX05)IPjz$c)VV^e1pyCAsf z(bbxcDGabIyzVS|;H)sQ;~2cW-&L(yhixsgR zd0iV8V?;ET6%(3mY2%)5`*ONU-W5ORE>NSdg*8(QZ5y8i@0-_wrk`2ovINVOc{j-aB_^{2#GM=$MdEBU8-@@&e7&+l?A@>YVk4t;9 zQcj?e98K+J<7-E#19=b*SK-Ps^BDN&5qzZ}CD17NE?ifYt?nEixb@jz6cCeL#U>G% zCcjoILgX-8`RTc@CUEDUC-xM4h6ZlEl)Ic zRXS{WU%A5~&;mdWC~VZ0lYX?PaF>6MF(TcUK?s@ zZshauQk&r6792w5pX?)eIOa4*-tt*88J{q`0HESW(nRCnw3a1bXdPew)ad>d$OjM# zeO?DBry1gK5x!*37R5*OUXEmuS4>~L9`@P)VJqgprv7-S7%wyo?4flC+y35SnmEc# zrtqjBEB)2JhqDq$EYDlOHHUe5_Gmxv<6s-+yYn>u{e6R3TPHnjp>-kgkf`R_Rce4? zZ{(vMu*|TXepQ}OP{kI+snMm!Z~Din?iE#o)hj>wV^}(&|ej6nsd(#ec}uo z(+S67!=xmblg)R?*wSZ34RzK1L4a~FnxqA4x~dEf1fWSmry1Dn(G0K@^Oq#Vt~$m3 zDAlz`v6WtZ|J+(iWvAZ%3UKc8IL*eBl1bGo-W_((w z;I%>?E;Xxi-)2=h@I4{~h)Q&mBYSy3$Vn1|TgEe#iQRyy?U3Nsx4DJs4bgayb}0Y~ zfrBekq`@*wZ4KbWh~t>|7)TRK%BB&#$Wf(0zZ-4JO2AMOVI>svLv<#{Xu?5W=SMiN zFHMZxQM$y;CnsI<>lRA|E8j#?87gBRY8g-l)HQy_rnEv3uEizDsMQ!FbmY)z@M*+9 zt9RDf=q94#lY7!yXl03rMsG)1!m>I(N&nQ3Xx8t*K;muW14}LmmBGg%ubxeflNU-^ zSnq!p7AE~gCOOmYgVm?}73nX+``v)*3$}}{9?#*$Qpq7Ft;qw1e*)aaDLVj(rCppN zj{@L++{F19`yE=BxUHP>BMDghOXKG-An9e8atiM+W3v9kU*2m_YKe%iV?q>3{uyp5s zR73IPi^em`3!oCDNr$udui_1)p+N|*xKQ1MiTz77l=Sluy>2%(S14m@$=`9NzDtIA z;lj%u>8;Wgh=G{&{${*iBKL1*{Qn`z6fl|dP?UAp^-qzy)4QJnTTb>*vAvH3 zUpmTYUp?@%-<&rxoHJ5wn>1oNROo+T^9YhK*y>UDVcNLy`90Hdy+;&gr3YW(T?#)6 z(F|Tht#!sa#Cq{%c7s3k6L5dp-#SK$s0D&b7g5UA>u>iSz`zZuiQ}*Z$XFujJ zC7U|?oD6hV$}Ay%`h+zK+srhE)6+DViTIgmSJ&?;5x9HAtWiW3&ZX&ex3`e0zy-`p zE$H?P9`Gl+`zj}V>Ko)v6Axxt3;vF#Qq_jX(Kud1~L&y4f~*8=;!3A6Hy| z&iG-?$-GLUuF6Hs&d2;k_?rOrsJFtmhmSwY4$nHg@_+B0jl%)Bsz=n60Z@QQhyXQ* zQ*8_`iY^w>mJ#iH>iDQAgA`OeyedzQYn#hx5&ZZ<@I7wK3o-i$6rg8PXgmT-03$0;){yEX} zBg~#EFD!P+4Ovl2$|K=5ILU2hO$4-YnpDX4JZ=vSjvbA5rX}q9s9IVVMi1=$#yAfiJ|B^kL0p?DTCLr%>pLNFkn5K~WQpPp;S zkj%qRnj8xQ;jw@p1s5Xh3@o5T7sO}3l#UGiGNB08SO3F3lv@VZMEB;@0N8g;GIoJ5 z)wDglIGY zaUsFhfI}eLBA4LMB4aqM=;C;knr?6`fTp6~kDmVPvmX3_g}linX>8y~&^y=d%PpC< zo2?F(ue0zU9tHDBx=6|(n!LRoS*eHH`S%8n>V>KrE0t~h2EidMAL~$zwcS1wJl2dzINIHDV8!JzzvZ*P= zb7jxXyHh4zcJ3TO;qgd^o@Q+0-W@C}x9FG|pvD_~7&dF@^$;rS2s5WJbG$fun9X~e zSwM6dn4s2IwWQ_$*P@>TwE+W_>1}D+#+Mt@C?s);V5gq|IA?%`zGK@c zbMQiwOi0LmbLs@bGx1^gnoGn%<#XcS(i(M!T zw=QU-kC|w)-i~aPRXwns?nK|VjrsMV(gL-~0vVUrD=dxw_@6qaR4Xjm{kr6Bd3iy; z99KOvdQb3K!RL`TrEtiBuHT49HI$hQ!Bd$q}=4j zoNF8$#73mP7P4^GB~DcYD*-pi?#}F3_{%v%EBc#xLU`MG0V-dfQk?LC7QYV@CZ>`F z1WiTS@qo^bSZabAo0P8fS%viXk8CzmoT&Uc>OPa*;%-?TS-qBHD@8OaI&KsmkmG60|K7do99VSk0479^dP<9j_a<{cOh@MUuQidDkN#@kXk{v&@X zlMx(sUuT{VxS08}2$DWDZyZV^9fkq!#V$FaV1{5ptr#JNldTMysN@rFa?Pfxu@fXk zDLi}xCk>@TafpB-d?BJ+aO4%ieD)~0A?>fAFREkRewB&N-jEYwW#4#^7Rm|>q^mY3 zg7g;x18-qkBZw?rXv~3z7F4&hA&w>OC_e zQZ$t0PIDoQ5S6CU($H?2K^i-T47Jk)UjGa6ryKJCOpA|fIJXvJOH0n-8YO1or(NrA zimCnvecCPjF2SRu(r)eV#dc`ebX9%F{x=j(0Q4)aild5QzCT5d$30(L-LZM!=R?oO z2=6q7R}Xx1Mh=&2W%iN!_1nQ8Iy?eJKR+29vT8@jY_YX7{+g&ONDyDO2Z8}WKH%JV zK8`d2B2@`cfrflWGkoFa%60N$Fd;GQ2=&YNj__@>n&%U42fXk3u0*#lVg&%4QY#Qp zWsm6GJ|e^kji%$M(bacp*ko9=l&x3K41jS>!%VRHMdk}F>6#-8tLBGfZA+$N43i#o zwvIB?agyL?)w7LAUk<(TndEOQXGVhc0iI>YT&h>R2k6IllGICvqlyFLYGq`L%OT^- zUH@pe9p%|d8o->2vx?SeLbhLRUh=3PCbonuuZAlTB4{LF(=v+nd+OTGmk=vMsIh`F z8V&FBa13sAG7n$>5&YwgZNa%{dAn~X{`CGoC|Nj z7?;n$X^6_mBxdxRju>Lq&4`qDV!;iIVm4k*wG{j)B$uQpf=%r9j)Mm@t2dui=(2#t&yjQf?QnkOvo-^Rs@NaO z*#>m3AR@>;6Lp^0JraRWyAzgaz_-|O?b8-wkl*`wvff(5^)LA^@lpkb?ZyX}P(Oy* z$gA=Kmiyefgwn-oDl3zbEp7fvh=;VHFKtX78Rok_(<>b^tvWk4e|z70ZevZVcwp`x zLFN+Oe!FzXlcuhlG6O72*0ZIjy)tM#paqVZl<(~5UZMqm^bECfV;9EpRS2({rW zAj}}ZXDHfkKOf(Y7>oLS=59B-2ZqvC6H2es^U{6`wxzM1$?)u=mC`CS?s4#~`=R>= z)0m8Nr!M`d@p-hB`ChRkHhJ-NZ#Swb7KG?Wr#^K#WLgXWE(_I#F4^@x&T4kHw zdgisb3*wU`{tM9878~)KjZ_nrfW4ply(X;M>YW)7IrG3&GpRv0X>MV*3NdW~>BwPP zZlj-qL5js$GhN7=06u!Sj08A`560apViTuITnMV~cZ2_cRFTC`$*dY3vL)0+J}BYg zhJa4*B8W*ffzUA|VKNaOjAtO4Lh<0EL6POucK)O;6sQf4bo2xVAXs@=BFVhI@AdrD z@87axMDeEnM`@@@a|dUU$E^PHi0g7bo$B2ddURQ*XTbC1gtNru$x2GKO`5S^QpkfH z_njOCt!xjp1utN!FK~AN*46bOZL$K37$V4u{FFKTd7s-b@Abpi>eRi&^?TbClqB3a zXB7Hg+?jglium-CuxIZeU?@M!0>Dr6i6N=;p)(_4%dMZ$RU(P;i>0R&f;9I(_I_qJ z`PeOry3pFJOiN&zG`0Bt#c{m=jYNt3&(L^~^bO+ls_8CH;V?OG_lby)T}$x~@*n5X zXsObO=kBO2Vi76=dRlT6fRCDO1WKr|448A*)eRpNkx0(XfR95Vx=1uFHtQBI0vN^B zyulJK;kM%i02_VJ(hc3kOxg;iJSnsRfOHTaz<;$*^bWbMk$`+18Re&z^2(7eZh*^? z@keRt*GF4JGN{u+6w;hvnj{I726ZVkzjad_jBQiviFSG!CxmhoD;x>hWf%mdMU)Sa zlxxelL-`H;@zC04c5VCUjWO4bLc_u}A^-9Ng*W{BY$gq4vrv^)t)$Ghx9H+#-4W1= z#6o9X!l}_~JC+lfyyUspJIwI5qWrb^ue$ex!dgGPTalXi)16^cmGW47O7wh1si6G; zIZ%6apHR~{4J?J%HP3LZ0;_sNXy{F35YsGljjD#H=&rKh329SjO$1mdL>OC#;M#!d z`kWaFKuQMGI~gf`LI%VwT?`~bS>)il7{7+Bbc|0^KHD6DfRlgi{5LTr0VvC_9-Jsb3lmuw%GIO z;RstI?7?FDiTmSmE0_9f1m7WJ;Ng@%F58DWc3lPkZN`$vJ?8~U#S5IBDbIZQrf?pu zZ*grDYtGBSb&=Iqgj3gr`8mfL4TKjJ`xhN5IyAYnwN+i2gF@Qh!u&0t89i{3qG}M! zM8B;qFZ-`5L+5i(!(r|j6#>=v#GHmXLdR6g2r@7mpH_?}4fl@~n4i6L3A+lJfiXf3 z#0^3)a)C0^2_LTy`Z9oK3r_h618KOp_uph5$`=U@`frX>>7Cp;MB#wYa2B^MjwbFc z8vn%siG1z6c*9S%V1Z?!1^@Y&;7qgBEULgHSSE%3s!QVcD-=(j$faxJo;R$mNG|o} zRHJblwoj)=7OLPC9$l(2T^&$*N^5~^oq9oo0p&`uchdzJ}1H9@|3 zh>C>Nr{69=D4mTO9`|2kv<bty$?>B09CipHeao9A}t2V$#@DC4}HQ0r*Z*)biJuk@8+nN`^+^WY9qbV^xs*`d7b#io1hFXx9{RcO&pLDC!oXNeqd559O)yRcWHMbbpO(HA$C6cp>fjIPr zC}?sC^DzGYxWMP){XSCt%CZPCuMBnINpnJC~+l~=vMraa+lh=uX+W1^YxB=Q2d`w;kfOwxCe)K@%Ouk6+-g6 zh?UC+^>k~J>cOYFovf!*cdDP6P-5Gdy{o!Ruh0incv2eB;w-HM%K?{+;ZGWC)r?$1 zj>jY$Sd9_SfydUN`b1752)-1&tS(<2cO(c`M?vu}*FKaICC>!ODSzQ2=)@y?IBM29 zt66T{z{p0G{Z=J6Wg(7Ty8`hl_np&n|2+tcNS}|0Zu6EY&W@A4Jc-+0ru z`wOE=$FC5Fk2Uct=E?V)b3r~Sg~Z7V3ds=vjxE>j_NvC_jIBVEiY8^-O){56!S5cD zQ*c8U%K)Cmdt9w%Tyn!1W=i~jTDE;YF**}aB;wP@e)|9uj1zUWZC)PJWLy3@>*^@w zRf6TX3f2|9n4fVKGSI3$=J?$>`)GNsw)L-Z-9SUChs95i!r*xy@UQ@24v30}12rKQ z&_yvKwGxB?hycJLf)F5OkwIOv6SnVukjP`E46`g5Ux7Dm&>Z%beArAY6jOp4~8Lzx9M9ZH8R!OM;7sVjM-&ziene3|5C3x8CTf(7>F#*qfXvD zvbSO-0R{HbCQs^&Sozb@TFvCtW@u(Pb;p14%w(DFHnImuIG4TuBaiRjs)J2ZwXs5w)K zrhrEvu6$oCJ*WUY<*X9=Ip9d0CRLXOfRAG82hBWTTrP=HFVqX}CrD~+ysqwj{C0Bl zAmWYWDkXP7^w0&WfN7M&Ne)-3Gk#1G5(h|@6CoD^M-40Vs36pLoqV0XYqOP>3g}x? zk8yry5Wh#YaF|o`JymOW5g$mQaZg8eB?6DXl-LYY4fr(e%dGH^p2Rr`*PngaC{%cI zk={Hcx17m6`ch(Pcz)>@{{#QRw_e?U>}O~1sk9WADE_g!LaqeRihf)p{n&ISd)asp zVW9BZ(~!DZFXnstg8qIgaOz664xhC5<-V}dod90}# z+*yjglN6K@SWdaFh~)^B@l83M!(xH5gXSDV7E~rFA23omtfv-7A`IoW8xYkuZsekJ zBLi|gz{jHn`!yhxD%FKdMhrgQv^u$|hIx?gQ0A1L#L>lw9pia{F@T!G$IfqGJf(YF z^4sQ2IM{=#CklUl(RL1C#$tJT8@cL;(4;mW1vpf z6yXi2*f{4=wQQAw#x0c%yRJ)0s!Dtm+fkJC9j((?j|qRE&KXsBwG#cm)zgnL+)>j`~?Wgr@q$s zitRRKv*_i51*pZ*ZpBIyx4pDFSdGj(ul&UO#7G5c)cn>tZ6LPcxnzSX>2E;{eqMH# z@uco4=UB04@`FTlw$vieA1fv(qgVoJK@hbq} zs<6}=$^B42DXgR%isU6ZBa2ZCCmNiBsu|HI<{RJObTh7KmCAnP?7I`IP!C6V?<*Q9=hk$gXM*qQw$m6^h64|p9i#Ys z=1XhS)SK}kA*WaykGadCGwQD{4c}Nm0N{eSAP1m)6YP$Vh>76Q%BTb?>%y{^IH3Ha zfYC2tT{!?=lWn%t4h~8~`U3bd26dFaEI~@W_J%;;B_& z{{%{8v-axoG6{>P`fXG%fXSu|4w(TpCe`g5;1{Avmz0U%x3s*%G)%h!hY%TP2 zJa0cqOzm5kXU|43EEZRVrC*+~rrKwcSOBMy;s3c%t@k*cC4q{a3%IAr_S4Hn<4(h+ zm-vNOScbS``bw*s&&8*-akG|KZC3YBN6BW?weXwU7SnYey1XKNlstQfd?r!xd-mBH z7UHlMAH=`>ZWAXlY~c<}-)(!;_?-8P`qanAq;1U@hHR3W&z#Q05CVV!hX^4JF&}dz z2fld(0Ub%-ou>-fW^J28G>_vp)8{m&03pG-oB(&O1D+ysI5;Ah!Kad#7H&RbDKH=u zQ-R$TDIXy>8*=;EbmvSNuu8=t(<(X61adbX61e53XByAgv46n##^VEvjZuV%-=2 zC@7?cPEm)LZ5itebWHr0dn<6VS?yd1RZC>@c90chOi;3vlo^R1ju$D^Gl|G~Dg6e20~PE80i4;zjpjIks0 z!@BO4hGh!GANFDAtC9HLU9m~+=od^g_6~*=1UCg>evjJpsNpbOv}6Ux!9j4|@_w*r ziG!0YG-o6{K|>(vMpA!Vg`B5AIzVyS?>A@6c!{Qd95W-Ey)bDMLvm(@w;;woi+Vc7 zKO#E6q`Ct0BO%7ZC(ZIkOM5VdE$xH*Hlb4!?{kKKsb99ag3QAew}p)rFwo=_9bL;m zh;MyT%#U#gH#sv&q#GVD56_B1vT1Nmo z=)*Ha6d)4Uz-KMF2SRJC$S~${_hb-`BHaq#*m$VbZ&jeI45?xWlK4uJ-r4;QS{TLc zGoPw5&GdneuG=A}eyr1-NKK;EA=yoiC}k7Cs406xhQZv^%w;;uY4@%w>74|6e1~yqK?=W0Zmb`B^^F81a8PBgpKv%S+)0VY~mDUv%HC54H`dKgb^oL4lp@ z|MMfElGlit8=c5Q^)h)6 z=bxh+QXVHQDEr9hywCtd>?@#6|Ah?WggtkZ*`UP(k=vyh>s_^rJLW%Zr5_m$_>e?ZBj6cd4b-tawY1wqg26SU()n{lA6-+PxrD%Dnn21Aqsje)y+mLcfchv~oYr7SY7+PB~CqD5E`E>T?R0em$*T@F8lL zHg-r26Zg31p+q0+yfousQB*zQBb;}h(`Y?o8GYEh=KZm&s)yt5Q$RvONML{}zwLf# zxPOEWjWu@IFF80Ob;xzMK^(E$jXBaeWLhqBt^Sm+U`AusI_xsrv(u9aFN%3h)eCCA zIgkssE2t&_C(WlXS=_Ik;{1B~#v=7to&9*bM$F(uez^m;YjoR|))YiElLBsSWSqWV zK;l^5cL`nVuYu~Wo2zY4Xys7W*tq~ai5)+<48u6@Jy zGO|u6_`rp?gr{+?_Qiby(+Dwjjv{HZDg)xc6@}7^-~gUAK6<7o5-`DPbs)gd*MN%@ zGV5!H#M+-MI__V&u!0>H%kAq$IEklmk$(`k&QGUMU^X*QW5}4w z5LN2xN|p*EL0Vd+RHKxK3oEqPssfZ0QQJHpnM+YOt%nvxy zj#?X@BS^=jQKq>S+ZL<+8>dWUuo)FWOn>KB;deR*W%7xF9{7^|{3HQCe|oX}oc^Uv zO5@i^invPA5rMzha0Dq7vw*dM&2Kj*eI?G+y6^kk%3PCe-XB&Xn2) zh1_?2JUY6tHll+L(OtRP9c$#dna|5_QKn8l*&_nc)xrW%X(N$+dm+W-pqkcPU43Y@ zA+qacvwPZQR0u}0^3CJy>zfNc-Qkjr0i#m69BhTlceI&)dY18ZVwho=#oru>dj`%N zj5q^xQ=&O_r~x;%GbSsP~91}^DLHKxfV?Sbl zI-tYz_%m~YL<9d7neLhBvGxpP&I<7E#yvxO@K>rkNgBVQ(9qZ2?O{ijLkJta!UkGFC{M6w1TFayKaOUUeKFh*AJ&vr+ znpYitE`bh_pmKKx2jwb&x~7m*L@hkb=R<@_7GxA8qwf;{0_?~w0J}&_hADE8r5uJL z?P$hfx+dkOPCsUBak zW=k^8TC_TJc`wsfZ11vunPGWnK);ihiaQOQZ#-ILLUf#-@xn8=;W9jL_#0QYlZ<+A z7v34(r*h-Jx4c6s)Co&O8~YW?b+g><4(h5P2%t(ChojCPXHi#?<{?hLE7{(eqaMXB zUFar5P$gdw5U#f)vonqJ?+$(*WqpL5jMNR(k8#n5c}YS#bfl zv^6J`6Gc&}9K}USceoQ!em-sE#`CuX#=`lzfBia7{}BKZvLWk|T}iqJIUnq1-cN%Pr=A zMAhp^aP_E;(HABmIRS)GGF;gYm}bhs|0++~Uvp9V2>~@ans;%zKYZPFPf6j2<#;q}mbS(Zi=j7RD z=6{9gb>-B^lV@ZjOb4sNtE78E5l7d<;zCh#&EkzY`1ZIT{9xswia>)=t!X-2H^ogMGaCtC;l ztH(yxQV_JJqY#7ToJg=b={?3|3Xpn96TpGmAcEtAP}V;JFg0W5-@%U^Y!%CCFsb z*Ok~vbP|T_>53%!Ehyfp6g@CtSQ+c_jjLCZ%F^HaZ-sQCo${h9kq+98@!x-Dw1}#T zVpmIX2d*rMkM*wWoYc=dRfldj-f}haSd4bbJmsi=e#tfTWyCGBxS9qF?keh*ER5Q(I66`Y)633;Z(^AYoECQzDI{{qS_~FOS+^&Id{` zJ)wY@KCT)wq2z3H^^qF+y#mBSV~sMhQzh$c-K|+uMweyQArH_WS zQaEEprwXB%=xc;Ia!*LeW*w87O7^lf^Uq6X@pFKyJGR9W0;C_VKpWuO$tkT9WWqX& zH6o*xIG6-TMtq+`gC%dpC!+~D_JnBh2YmWZh%)%aQw|KqsbdPt1ZQlkl0THlqNlav z!yxjTATK0yF1^FuTjIt^=_K+>w~7vbvMHP#PHkY}oBAkciU9;@^xZuEW#uwR$Tc)Tby>#)_6No9?`w>D$3Uap6lza?H4uA%t z{HcxVt`GOFI;V}?zCSO=SC?*W(w%PQrlM`yUsoY;3;;`a8GRe4SD?Iq+39vQkW+Z^ zjEMs_CHM6rG#9cK2QH=0ZufZ%$fuJsiQX3BN#A_1+hpFVT%6Ei`21^tB??ApKq7I_guN0aWJ#RyT_bR!#LHx-h`6`c z?jw@3zBwrheu}hW;OWOuh^g)V*2|xYcow9l$zeKPe`Q>+o%8KDeTR2+xe!yPMI?wy zi?q~N!Jc_)PikkWeG0bH*vhtiIOf0E;|yvaQs>=#m}wPB5kYFrV?`rqudlKSo;tLQ zIyn8A^U!-w$TOXPI+#?DCL|zp1nys2w8!VmFE|kgodVvVh#Yqw$z+niQ zu`EvgVkj7?LNg&T7S4()qpR^i``4ZY!#jS-cV95pcgzK-X-U=XaNTQs*JNL1zAG#I zyQT3<5Pi-^CZBPaLmOJAv>0z%LtnTPfUeKf-4%k9v;)IHA}9c{F-RFy1zf-Z+q}lu z?C<~)UivVsGDy4Y<_@~uwe?ng+Vob&JhG=XNHe--eOwKtTFX){%?F#cpIDcqwwg_l zxR>Vxi5GuOz?!Vg)k?ZdN%Y;rP{nVa_*yigpHsV{HJS;qEKPbV&?I)^8$i#+6h*Z% z0-@&r!~r`}{ob>PR6#ius_skh7(6fJ`Tkj}QlntdDJ{GGou2~Ta_@nB>>gh1bdN0d zqBl*MDTbosot_zI><^nC=THAP6wUzo_go$jScQE6h)kA0rVL@;%>5_2mol0!`QBvb zL4F?0Vy8~|8(T`-!m1HL!05k+>2GU`oO6G#XxLD<l9bJbw}K@ zw1Ey54IqG~L@@S@D|#QSOu$9}AR)vtm`g-=G2KolMYEI_0=U|C4Qi@L#Vrb6RgadM zs1m#qzEmklGRN(C>}~ij?G82jAuXAMoxP?X$>dtI=8iFEX}QdO;omhC_&Xr}LBW)- z{%iF9Nn8pPro~%xxR@>kFs$(XNOl;x5)aPRm^jO$PE9yCiIbvjo@fZ&{MoMMC-65u zohQ+vL5mCXec2(yK%jo`FJs>MsrhIi!l7HUfJA<*rJv}vmAH5qp$ue{lr1!dW4`%< z@v2Y5_oqMu{6m3Nfk$q*0Ua~8Snr?c34#U=!Zcu4s`0*BZxO%Okx#27;8X-%v}&c?z482R zdR-nM3RnVQ-GH&m%EMI|Fk9z{Kwv!nSk2`uysj?ZK8WWJKZ{BsQO{Za7D$G_+(=ud zML%~~Ns|`(s&Y((%{zfGkS8o>wqM=^Naqf`+ndg$9=u9BXNwZJQ?XwvLR{{v=FpT| zc>gTwMyj7%=M#J}veK4m{%a8Iy;6d>pA{OhRYzLVxsnF$z{K+cbx<@Mfr$Qn3;8k~ zABZ=jDc1!=5jjTFa|&}_G9C_5RwA5cF(_;^OlX1UFXHLp{r>P_Kr>7@wfZ{8;c$|K zYU0^-71Ck1hEu;mCJt#}*u*u_{RCxTf2bp>CLCQ5Ku-oE!2uB{mMpbYh z_Hifp$7xtg;=8*lrO5|9PKTR1Lj9QXRR4T6_hDWl#VVnZ_iwE(ihdngt3Vfzi(PPT z78%U9Mf8BB5zHpl0+MX`)oCM98dGeKCG}o56Xxkj{Tp>i{s1yN`m%-%CcJx}rZFFv z-IE)W@c8^}QQ!VKezel-Q+#uKF883|?H!;4)6rNI-yWg2XkR*CeAJ@7U|8UpwQ+Ml zJ~cnLBP=_<4mNdfiH+Az*tz4~azkmYI@$HH6n%jf)3>VzBC6bw8tJd&o6kvl#fPd3 z-w;s0m|i*8^lp)X%j|d&Fb+stzmXP{ol$6MeK$>>XH@m3*JpI4>KF3moDt6v*36e0a1hMI&{U=@pFz0Ef|aEGq`Ulw8pH| z?76#5{9!f6YiDP4#bM{AKc7(r6pa3wnDOeH-?0g|Z&$k1;b()jpyl2DE8B>;gN z46DED)#d?_2)L0JlzSJXqBs|SNg2(i7pDB9STNGYJ(67%8X;^?M?UlP_fv+7$A6mB z-Q#$WBZktsY^bzx>x>#%nidZiv1GA%SaUJ~*Ce}%tsRBmP1{Pr7iH~F6s0njeYo5@ zg+|PnRW>7$tg@m6#F4(lJ6(s$Nk8SE)4sZg&Bbv&@yFI(y_S|_5qIYM*K0m|ZoJuk za$KtFRKlC5ZrL7+o|bM%hKKR z>=d+G=kj6p>V?wXnJlWT1WVCxjDy?tM2_tS*{fFNtJC4M7ex%Xg=OvMRoG-^Hd&%J z6h>`(y7lr_qHQIM8KZ)jEstTARUL({WF`c=k1q zq_SzT5nT}{i1CRVwHTN)!pYm5jF@$Yxxa|(=*F_eZ~*s&q>hyLJn5Q#JWp;(u3cAe z-qT)*efGKUcy;xkAL}3e5Gyy`Tc3y-Cy0L{%(TiaTa&H6&gZ{k6j{l?AAa_bKR&-@ zRvOG1X-gYFz2ZtXt=*g=->Mw{(5g%0ZaM|iW-<&~@zd++xAU?-aqsd_~ znnn7c<}S3AKdJCntLC*SisDtBu{w$MV0AUaPF)a|~VV!V7os7PXG^xH! zs7n-beIhtX-aP#p;>l@yfyj}#V#eLe4HIwnMe5;oBgP7iKthIvEUQcbQ>ROTIe10LUH%y}%~ zD$dqLW~HFAj*k^z{Et&*+-}#b>c@)nVg=?c^3mRd-MbIN#4)|W*Xb6< z7Yi!pJB%oPyfE?&%WQj4BwRaRUW}h>?3+k56O5{EkF|T zL!9TZo1tUxoKWi;6U~59BH*^K0t-=CB?h+kA@ynEVgK?ri^vBDk2za$Jtwelb;%`; z_Zr)eS9?`(F^RrFZlIZSS2nvdL`(-L=OW}!v-ILBsvpd@i^K^#rLjjX=U1V%}jw$!J{?F4yY{qu0MA=Q7JSq9|`n646Z%l5QzRzBs z_!vBU^u~LhJ6z@M0%ONn%HMKm;&MS^{yBJ}8V}0aCXS!=e!WV6j)1%?6)ul@q_)dr zM$enX#8A^Y`#zLxXpPPM3Gnf+^vy$c5OP}=*b_jZhY2V&NH1A`Ig?O1nWsO0Mn?xU z*0XPuPn=d6Ku$da>MxBXynRMMlyo$vHc+o6Aa3Z;48L)Upv!r@;`7(+M#_l$tIS=} zPxFs!qQy$ThGc(3<9Xd%+`rYPzGAsWdbTMWFY?an`NJz38Gk?v4tN?52Ytw$8rI~j zr;%xiit$fgmldi$v`EzEi<^9Ulm0luSi0#(4@#07A9aKl*ZS|WWduH(43e=bRfyjT?3uZL zdysBse_-A9SQdQ@V8{VQ&B}2R|7#YiR~}_%WgH6*gRT9w3)(i>hP+$^kq3+W$5m+#@9O+vxOtLT~V&K z=5v+BYM3WV4K(jxdQ;Y`T}&`xB%qKjyV=%sa4?cbaw%#s(4w;-2kfmC!opq{AS1$U z5b#`Kp2O~P!GU(EirB%;P4Fg5i~c^ERgV1`HYob(wN>`$Af>4B8Z7b96fHUVX`H-S zk&L=+;WIo~q^h{=`t|#~XBLDuitrTl}>Pts*+y45wFU+n>KBfR&a zkALsch37}KH(Tst@{{xGYTsb1zbg%r4Ke;Dd^%D5RX-Y7U}Ux`@o=$f5i}P)+ZDk$ z|BV~q=@HS!&1Rz(?k}hR+~FG|@!V!@`^#A^ofXd;qJ|;SOMl#%F^?&Q7n9tJLp|&o zOSp*~O8(}p&=6@0zM}qH;yapZ+@VB=-n6V2;U)onk&QWoIzDqFJ}F^?A7hZ;!f9?Z zV3(&hjfv@#H`QM=Nnd7=a+<%vUD+8X(x>#lqoU528x6gt$_LeX{CF>R{CUUDKZsQ9 zBNH#u0K0{+rW5^OMHr+27jsHg_PjVepe?aH^EmEQ*_hgeny<$5mnf2rv38XhY+5sKV{P#`0BELS+})jRBGCQefx$j3UG+hg;J<1&+f?9LXDf7o-!ituWPbX4As*m zD|g1k>sXJ6#sDuQ#)+xkl*xg$b3*$x*b?M3Uuxvraj_Y=9)2?L&u+l)g4q!=_xn5A zu4@rR3Ni%aCFQ(t%{@|oT_004H7J&Mv9tng!+UO8xH-PBkMy)&E3cFUkt-u46xE)>2%2Jk}Gc84DG8& zgv87}#|+;}oyG@5*J`m&>G>JuXH9N=L-)t4dGXgA8b|ie;75cKE109RUd-e3GesDZ z5pwe736w7loy;lB%)UZZdd~HFc_Va8taznQ-ov`IfmY*RU?W`l{B2?G7Kt=3xm-et zNxI%6obm94g{+M1JZG{6khb=h?v3{0B)Rq2$J*@d^FVJ$Av3MI5B3<$xXW%oS;|*c z$4)(Q5BFLAEi1jS|KwueJI5ED9rY|%Gi1pz#@D)k!s5n?W1S+ad?f+Z(S;lsVea~K zor_QFtle*($szJ|F1Hn*4KN23@2q)=t8K~qOS%Iv6Y)902u|^7UzL$D=KB;rs9W#1 zdu0|LVP$k;AR!+;)lZ$Jpak)w{g*LK#ZjF__hi|qMqIyGMB zVJEt%*3IjTA;5B^&QLpoWR(;$*VU+K5>u|HQMUJoS7#b)aErzzIap-YMN$eY(AJ+`t8xdRq2hiG&PtNpRSS@uJg5kMXuEfaU8MTL>U zxEFCI(#dRlSRN!*-OicYwZ1_7&6pWYyfNCl5*9Qp!l+n9Q6_O^w9#d-%6}~$wtO4D z)m4Nx9$RVWcWTI`XHycoKS6ql9rg*ouK&c_i+cu^=?kYVWQEXT=K7TmD!cF!Jivv3 zNw>2kKf*sHzXIML-pxcjyaA<2g0RK*d|;bDig`JnN|>&)*!XIVyTSg+{Y+%mtLy`V z8F@GNKri)+%Aa}Z$mSaf=YuL25j_g6k3}aq!f(rY%D1&QWPIrh(Tn_K9`;Kn>4_`k zrPYX9=rCz6v{Nx3W|dIVEZtVDTZ+-U+Ep(s&@y`b?w{;R8E1=d!n5_VRo#;TQs)>0 z)<14s9wZzdtILhYG>K0kq_oL>KpPmyMp&BHARo*k>Cb0HcxiMQp#PsJ>@bbddTKG5 z8vAcU5BfunS`ll-=Pg@j!+M>Lx~*HbN{ox#ZG)T$7_ARRx)aese zu49p8$Hzw+X~A$capw`T12e4tv-c3H%!c@A9)-t}H6(2#S(f0H=Y_F)Xf;LuuxCQ(rsKZH(1JX=?HEjgw_n#yCx4OgDo>~Q^*!T zoy6=l#;H)YS)ZB^`?=VfMOcL1;QcalPRaVu4&|8p>{JV0!+HgxY9IpuYy<@JWCG3h zX`<`iJrYGH0F+xe@*Uo+Q_J}oV5ahF^wEDFh;LZNk{N(k>C#*F`rN>@I_Rezo2g2n zKed;7=kgVm;_TbLTr*dm+-)$t`KndwjCoer_9!^3s7`D=iZC${V$uBaR)F1F*Bypq zrEWUjXDKBkx6KaFMFlF-;nmm=H6u1jmsKj^3DAw!619*=c2c^c>_wK3@?vhwJp1kr z?G1k+-9F~*tDCQu=bcw^Pplc;RDjvRi}_hSg{!?;=q#uN>?Lr8(l`Wg|LT64ZZI15 zZLBy%$|cc^czLM^oR|pSxFt~^p$^15pL8X92vnx5MmhW6*V=eDPQBp+uxC|A-cag^ z2QoyZEc-UHO2Z}y6yh+$m0ku81{SxwSG{uGH7o+aPLf`kM4qC@watH@-6B<0OPX=D zYdT${m1)$M9;&Q%}mKOWi4@bE&clf2 z-3ZOArh}YxhLdi&+7(%afx$`;wr4jVbnBx$9aIF~G+VO;vZ@3`UADgJ#{(9u`Vexo zfstI86me~Fc^X6^{!<`C2Tgf($Cp#xG*V;Hor{WUeq{smAFbV>H~5+@Gy0Iz6Q}*O zEJ94+S%^}w1TA$JIvC`#dEEeZ|BEHN8Bw{|5mLW)!{ew>LBDOwite)@NRn0RTZ*cdSG*11Ao*w;1DK^d$YL!@Y4Vcgh(c=ci z?D_wceZj+`Y$THPLC-q*+P?9t;PuGnHc94q3_exnXu7$*qY7V*xEy`>U&@(*$>W98 z9S`DX>9Mtdqv@*;ioY{!7GXar-b9UcmWR#}$+}htnH9LRQ#K&SYHkfaX(^2<*;tt1 z+{L%UP25(X2RmDO`!6lOa5C9(QOr%t74CvC+u-~PhP?_&_saKTEjKd{{ZXL2<9`Qm z-%-Im-evFj&$SypKI>Y1#Ife^?oxJ4nv=<5W2^nV3a+|3pxpe*^zs2tT#p^N z@Pt3l#jHY1IjQ}&3LaMeR1s-5()Q|c@kmjui`D9%wu+k7jZoj>5^F@Irasz=2=i#- z9M3wso(P27if3fOEu~?jmzg62`WQT{4p?ncatknT(MI6cAx&oru~{kShQbCENCRtG z0ROW?zU+m9)Iuy}{2jqWAZh4%P2O&0!~KmQZdf+^Sj`}MUmPweuGk;L1dYO_{M_Cg?qb>spN0j2y8>u=1Ieb?yC>arWaMQ zHerV$EC$tma6Y)V1+%jB$Dzb{+wTrKoQASn6BSGQ$*-8MWnXLCRPQ*=b-RkHw6x0d z5^fBTSl+FmL@c{TohfiH*2WW8zNAL5BoQvIk=@*ao0u1Kv$#Y^|3OPE#VK4$1|VU5 zS81Cm;NPo0EoFW5Bu?i7R7zsQ-3uOG^}Bq5mu zYSPMsRR)|QP}(;a7HV%*Hk-7lMpiSn4lSed8Hc#HA9;g@eVPn73x}vR^}kl^yzg~X zcxhMVOqP$l-OYAYwW^Obu+w#aD9R_3ZXcPu7T!jmjBCG{>l+MDx^KlMP)dhxAnWs} ziPfsy0W!p>!9&rRjC+V=)0C}g+hlhk#<#Nh;Wx%uimb776gg4Ovs?fE1!>z(~S9OL}A$~fS4Z|Pq z_9=V7OI>8@hiL<1FXqKSc|U}xG%YNwlm;o$iZEId4UFPm%|AlS5*yA9<1z7Ba17%B z<@)7+ArT1f#G+xRd3lTqd6)ysn~n1pap$gu6_%t75^W%f7yQ5_&ghP-!u%m!4T-s@ z-V9rV22+VuO2qcvtM%HldB?c{*G2TzIa!K$%pbGlVcvfIpD27}T19wh#1`H^qfZ^n z43hJ)N96x#x%3$W(f{a<)k$d?H%TGAoidBfDp2o;Jto)C!$p<_bL@#Dq@Hwau6Q9h zX`-)(OW^j6#Q?&Ckm?9_MMlaX)OgPg>MZJl^d;*cbE@my^tH0 zEFH%h#$upfCt8&JMbO{yPU#4E_6}=RC;{*N6K*%o@A@G1UgnTcmrULKHupS7t-)!f zPJxA)v@hah8ZtJGtDg3dosn3%9>i_MWwuTAHhR^O#M)s$#}b4GR1FV}7D)R}c(<-L z(4d)ZMAY9#ltL)RLT{O4-Dg`nc8&V++By+lXStzaE|9e5br)b}S3<+P_~>%jY+axi ze-w-$FSlV_r!#ZsvALS3WsT%JNS@B=(vzBX@)FHo^ysjXfLEqe9oqVZhw-N3vc9u@ zr5dR!T!l(Nl^e!E=I5U4h-T?~uY8rgup>$8E5%F%8(iHRepRM>(d?jDbj!=uZO-&5 zlC3cxl*8K%pkf7D1Zvip%n)wlxmWildUugUBC}PN{kN3du#E{dZwRPKcMA(mCE3B% zFDbdWrLh@NZp#2ht+^J9fcN!WIUoaM8A*eY!z(R}TrPr%W!`zsuA^Kj$x!w9CsV>% zNa@>pW0T@=3TDX#!)}Wa=X>MNT4)!eu7=izZ!hcb3-gw?HQjgf;B^>zQxsom< zL%nEqKEa78mVx^;dk&K3P-92Cp`F~E2KR2PFa?C8%?$i#dZ0yBH0pD|-&dqD1IIOm zXlUr85kc((>5vqY2T#U7+Ea52 z7NSoM!8FQw*g%;Vi=xR+r4r;>MYWr%j>U%a|3ObO1h(d4Vt*j}zklN@T7Zz45_(``T_Yyqm70lN=$nkU#h*nC}#Z+2515jIyZDXT>GX0$2Xdnl-<8F64ma$UlLYvOetc7Mz?Qj#x+53c^|CRUlhF#0#k7>LeXy-*7DUi=uMF^aKo}y;*_||3wi}@tAzRuaa-6=x=wPAceTbTa7%JzOB6F zhM`SN^E!UT!zYK*LOUW6rXm6A&PV~p_9w%)!+Cza&>P~uV}A@l*E8x@hkqwo{u<6n z`|g=iOyI}Z0Sge9|8<>*JW@6EOQFvWI^B}JBvHB~ZG9XopzZY}#3XA~qn0CTUJO#6 zpHd7NH&0U8kan$p?dq%sRvboY8|0i*W4Jjo3o@Ui_~7N}2UY$fN>2TBkr|$I(ovgz zZX|g)Kj4bBH$QR{Pt{R1m`t)w)iOV+_T$YnDV9Qh>OWmxX#E6n;|-95m(?Vpi(Sq~ zW!-xji3*bVTer->y}d0z`=`sAbe5d4LxDwag>7Y#rE%KEoF^CDg@BQP=m$2#7!^T_ zh)|N?n+#DONEVzgiFV+9KK{CxR0NIk)^)mH!SzVhmkf7_qhJ#{Ha6|6Rt$$J-z;hJ z)!XT6!{-&9{nmpB?5`J;QfiM#R!J(kR#b|0fCuiQKiGnw@g)XTauztUFh3 zUyZ)3KDcjT-(AAko_1aWWp#70m5=ZI5%b$_K5oBqUOXduno&ua5E5Bc$psbZP* z5cbqlmYCGsqEw}Q$svnvbQGQ0s*^`;;3t>1HWBh`T!qM444`dP`&v?m*MUWA>_;$b zHZb>2X3i3?2uPG&gjIVs+sopm%!fRZVUhsu(y8XHUtGh)aJ&7Sd(E#(`?YIF?l?O_ z&m>zsyqD8wJ_?@z*t)@V?8x)iJwEd@yoIuvTfjd47cE%kyHnU(NdKG0zo*6&OI?${ z`smO*{wr(01F49s4FWva{7zQErbUn|QUt?~*a?`ie!i zu7C%QadF8YfcQBgHa~SG>Awe&)>hF3Vvq#81 z1G3bgn{`F~zUK#LZdJvfz5SoYxm0KKXo}-Tk~9+71CUq<@MS3dCQO2&suu=*^5tu> zkVL$pb|GIf&NT^<{O2V?-)y(73beTvIjJ^jiFsiwwk8ZtUASRmu;X0pri77Vwp5r7 zDG2=<{jF4e>KXq&Aq9|F1cEoKqf`iPN1ys^S@Y`@CDTRP_MAz~46R9MB04lisgIa= zkH5IH(nco2O?W(Q`lg<(e8TMXyQYr@LU?|prrER4HR(~{kJ53n(!W!3`G0eT&y)OP zMcELUJxZC{6IeEjnY>|#V@n!Yw*c)mJA+qr25bCWWhVxEbwRcO$}OI}f=R22DPnFT zh+kRb^W!e1+{a=AK?=$NbsBwWaKvz-JhQ=g&2D6>jvr=js6L^XXcS$!?PyA-D>R(V zf#*sv>%oo#06mffp~M2=L)2Bkm@#gaC?WoFi76pV_SRJE_bymm7O4ing$ zBo9!oMKj=DrA9AeC*q1@?M0Iwdc>6UyJ28}BdR5!YFHFB_D^8HZ*oow3BpfH98 zf%K2w#xk?W9M`x_=Yu?b)pV{raoL_3meJ(%H2Ny@i6w^JWe^VOIuAy#(I)l*E$*az z5mf!8#(|T#PtFl*mmpED$(pRp%`2mr%Gb;?krA?bS?eSk<*xoCB*tPtCT(KvfQP#0 zCfDSZP?t`%dAJAEa@JaDASJP@ym&7$Vz z-Wp2%f=RP}wvABgG8V~6pl3BSY4Htb&M0HNDq8;kFt!f>1{x2I6!N{mZ-j#hzmI(a zGNnMmivkKru}r5=D-5X=XkgX8;4ObzYbU7hV3Ia89_^}p)zjKRu_<52_J*6g?Y1AX znB81L@iWVFM&I#@H@B59-{~227H@df9;g1{E%|(*b~ap6yy3M-9O5Qe&kvXp*Znu{ z2XN1eY0Qt{Lt^}k%G{?z*g1N>z9b5GW;yYTBc0^43}?7^UX*@eRNCUJ@9JcV2=ISd zsxP&yXILa&W^rkda8Fe?wzx%xbYZftV7X=UZX0$<@s6AAX(wK`0Xn~qMA!T9o(V8uv!rJhx0WIZrIJG^z_R8cF%LJ8p{ANCr{eaRJV6V)j_x{bihk)oE7%tRjz%Cftcdli^dfT8D*m!DNx>%W@c zd_1&y>N1?~`C-T#B=F|c`p37G|BNK2E?iyFn(iMnKe^49){J=Y?)prBY@uXH_d$sC z&Hc7T>rS$d(InUt9cO9F<-kyK&BzjZXHBvGjd<0kDWeBw4T77Vs?o+Hb*ucw;^tYO z(vx7w$BRGxu07p)uw+eWm@x6iv6Q2q+Vtv;1YkG^J!})$22rMi>o=3yx^i5D^H2r4 ziEf3rvh1x=X#8NoAHStLQ6Im7^#z93SA>N5w`nx7N3$a%(9X=}$aQ`uH?E+<7s8GM z@pr{;8SC2?B}?Uk1`)5M|i~= z59baXLOb@LN%CJ~J(;?hVriBSH(kZ_l-Ows&0?h$(uMh*Xfs)#LERNZOcEwwtk2S& z_C0l3V_F3Hbe$h^Fl1fjUS+{uR;F2^{&L4419DbS{{O@?Q6;FX^;2G7SqU}imk#so zE4ZMGNfda#ff$bf8lgop`6yir>Jaf!gv+*do{x~T7(As!b^N{5HYQ(RrDD?T1n|u& z2bcNhuJhUEspAVT20e=*I#!ByV(aMXj-dg?(b~lAiZwk9w<|N@xEPaf<8Bc5}R-Yx&RHO}CV;39NRy z({&R?A7{wB-L6$b6@m^g^B{@rh*4>`O{LTd5F`d;leC44C}g~r8PSmGCQ({_pT8o~ zC$r;|2An6>YXrx4a-6eSl9?QLbetc>*#5zoIU8CZ)90H1oeiTh^>gaQq&I7zODyBcm)E2WE z2#MPiT;Y1pcM#ZDg%%?#%$RHR6drp~7Ki4S3@p|U{`XS&0!oB zdDWYGG4ta3Fym!OvhGDs?A#_%O+*bew{}C%3y(xxfzY3mUzCU3yX5r(7+`s_uD{x5 z6u2MNWnHBK75$bF>!RQR`h!n-F_{aqoZ{S2p}{znMq^K z%AQ`GIOhY3_5~$L=*(WHKW_WY&T2-1vR9nm?ZX-Y3e&z+=QkwH2LOTvP^(l!7bc*% zxpWHh0S7aBSUDMKK~>M(mFP1|Rj`tWxSE|xGx@*M7!RORrVYL=oaxiQ%;#E>iOs`} z$7bUiPtr~!3!?j_D|b&=y`|<`Jp%XmI|^k|S>9xRb)n1?D_SH*7P?0?J-I!$+gbA) zZ0T;tKrNZrUxDtv(usni9o=1}ebba(3lSa$I-tp~v32*W~!FR!x4cwhN#; zo~ETGIG7OmMZPLAlXqbcYA(@?E9@-*qwm`N|M*&>FwOB7uMS{tXmElgk1JtxkLC#cO`Srhgt+%q~F3gHo1RmW~7Q=@zKB z^;6)V(?e|NhR|l~<#xd~z`eL1*0R|FidhfyR#j1~X3$+OT`4?@|wW z-7l{XYh}NUUldV9I^TnvHGjxj1H1I7w8>GmDS1~MnEC)6b!_7Kl){_V%LnmZ<#F90 zm#BQa6SB@RiZDENYqpaU;!RK}>K>oWkS-!r{1>-vBcVBb#a)t5%({_S?p5AdWC1qH z2F38|M(wg^TZHkAFV~BRJP}LTF0$aLL)>$SZvcccB@^?TbjLq=aAP)j4v-Un?!wNk zl@FU8ICSis!_hpt=?3T2 zF6&d&^3b0TI*5VDWH+ON#Zx8|$*-|L`c>!0M_kU{f}Sg8S2hT`Q6*xc{!4?1JXu|c zczHu8eWWuw>!=v&ooV3q#-#o@L5J;RH6u&vJc_>Cw`;XZPDl5)F{%NnO|}4l4UU~| zy2sY0c5<_QBbQAItlY;l&Xx=r ze)*~O(uOpk`)dEnh)2W)5}~a;>8RA~dQwfma;!bHd{H2dyzQIM9YWJDlI2=xHx%9T zvYcMRS4D_sco0JC#q2VvIvcH=Tg8S87bWlr50i&*WbK!yY)B8l_($uEY`h)C!d_nx zHj+pY^bsBxa&}X_a=OSVBF$;=g9cO_KUt!hNjW;;xf!#+84Tm}IWaV_>iyM7s5Bcs zm&!9LL7!Q;4H$Kbb3JKwPD4wyd;Pv1{5()k%(1I)fjO#+Coo=Kr0cdfq3W1_9ztOh z(;AP9iJE6m_;D1#QO#CeZYjhPBeJ5(njN88I26^Mu1eY#tV#3~r-UfYp0>5H$HQ2I z6MoDjUZHG3=p;r1QdvhxNEYrLpqCv@7>Ut_K{r}nF5PL4lB_z@F?YYv6mHzb_M^{= zTC-%kD4D%_{gk`08lhIJBgn9_^+7PtCRhE~I5tr`30++R3tt7{`48mr89Dd{Ra~K- z$rDVo3h8)!Y`q)VR_d-WQSC+FEXuxRHAuA-zS0%`{>O#dQf&!M9CI;jZ3?`wr~T4j zOt`C5ZauvtV)AUU10z%gxpQ!MR^@0E!4Ppf5#uWt9Dg<7wTDl23g~oy*+_ag( z*z%adn(0wVLvGwV+f*t2s6(FVnjgv(4Sro@UoqDX7A(%mza_q>S{pw5);6!AZxcX7v)OtN7@J_2tQxBs}YsU(aJ!DJwU( z9pTz(GW_t>ErSM_;SW#ve|pzNoI1INe*=F7@{2Wg6W;&-@d5B=$x|bia1VG%Xw3Hh zd|P0T`dda*HTK`mGGMJ{zbo|(hLicUQdw+mW%^NM0Nvq?*9K$mhLskRGz` zqIMJeEU8d28|~`!eoC9Fa6Z$Nq=A|@Vn#2!z19j9c91-m81Xk{jVKYqrjZrL-{XCW zU2D#&rqczDxFiYv65ehvf%{b=;F;2JZC0CN5v@Y4<40B;xkkgm2JwSyoPXXr!<2z- zgG}?u9~I~%`^EjUm&teIHa~GB_1}xJz$-0F>Of?5d+3C!bcZGmD{IchyNBx*3&4&sWYtYF6sZtK@VqhE>*02D|r-o&fG8f5S(Ry$jAXxuNCGJZ@6 zVAiw|!NC^JZ;KVB@4G3GORSrnUOsL;aZ|uonn)DS??cM`DnRqaFj3WGJg@vIxn z)=_}ct$C*RI5K-~g$tGj?}eAEcw6fqSml^iSNWvAcwy)L<8LdZZlt4yYi-KCVWGxw zDIJhb6*kPjW3!e*rY3J1d#WN-P`ooUM9+TIYPPv(L%~=PIRt3QE7{B z8Y}kAFEy-T_x?LhDxFl4IS!ccf8Ws>Rhs|@{BV}E>U6=z?(igRn^yhm*N>?o6Ps_y z81?R}vL@#e^(G)#dX%;E2}Yof!=75>C6*-(i%#J=%POX?!9;I~SBYFGGPJguY$?Fa1&) zn*u6{9T%c5gmIL8y)=$37m>r=3vL6kE<<(6*)Llg{zpnEF>vBMo_(R`9;KaMCh_ZA zo%DJ~)rC8pkX@g^#vTS6F(c8b%5KNN`biO&@>qH%v;T?0=afV}PYo&Z{WAdcd)}=p zw}sfKr_9a;LuZ|3mX}`-D$m#{-v6;kRXS~us1ngYd;WxIT1|%e50ZU--R;@qV!Ut> zdM)x2`cQ02!4kfXzrGNDzSpk&(l!e-nwHAWQsW!KyKDSW`DBvg1#8yPSOn+rHg&QC z^Sxy<(g|5lt|A0K+B-fPuZ_Rs zcrV|W>@sQV^RS~UAd(3fy9;e_FHZ(XI(bz7Q~&mk(yxy1sv(K^g_C|c_X0^d85f3! z(*F5X#m|Z{x=mr1`1aG{Pv;)eyI!QQg_W#VGi#pB_gc@hZ>NoJ9~F)cU*j)&3LSCq zT#)0AbPYVHlmnU#Sk`@VY~4hMGJ-EE{WrxeZjuX|*@Tp|*pp+6F+W~jr{pN@x_;SS zavca72GaN5KGis$A${`;K)h82@I?4i{l$O7vCb6R`Ti=oqyD_83x2$mhHDDNAM0Xw*_PF!8p7`vNQa6?{YyHabtt?+vsJp~mT!I2Z43rr$vARKGK^MBP zn%94asQ&erf+YS;=DRWyo(9o}#H^;|j@RKD#j_|y47yQ2F{BE5(Zk%t-b9x*O+H$D zW)AGVoq?2&vw~m>e5YD$XF~0iu+6V~sy3Tz$nTh4n>`f1*&Bbip5%wyf@rIj?zNT6 z)VU;uPLHp)*{3Ok2Pm~NE#QH5YSDa8_A63$y?=n^VULUPc5X!xI}#BL-ia@>;Nip1aX#L3wlRSMm$o zFOCj}%}1tF*;HpyQ57fdLz#(jX@j81-7}T2uur~FpLNAYbJXT)S#hI-Q>yF~b6Q@{ zc8yW?L+|}seLrKvA5gCXu22JOqXabNKrWtXDJJ!Ye*T_Mr%`qIGvl(R^x@8BDRuIi zhAtr!;H_;2+@KJGQp)^)#cOZ=DIk2_0->S6& zN;|Dye(Qt}!AuV$0|xX17p3{y-rcO3$8z|-!Yl~teP%YSbv0d<4HCy=24N`(l+WNc z@O^)Xk|a(fwt%j@8!khW-2inHZ_~ro#c17s1aOn3+XYjkkI`clhTb#{1Y$wDiLt=d zB-iY{eTf)HW?be1MJFo}{{SH#2%$+3x2Q9+75UOrun+$rDzS4CY|&HC;7SasfJ){9 zPgghUjUFA=GEBVL)z5`#hGUaf#pWM!&DTi|P7eLxk{iUa!Kr%l99BKaM^3+}wWgnW zj^=W^U4C&cmB^*7vfw3*=i+2njp7}YIQ1{Q?58UJpU}9+5dYZYm64pW|EBMoa_^6= z!ZOs4%v)cF%@p7BG;8%hk1V-}3kxbFjHWFbN#Mu9J)1&!2o-peAU@|5tzfQ zFb{0kad#>#`A9H6Sc`V|N7phi{T=%eyrvk-mW@kC>VM`AvY5*B8x(346L zx-JJ*O-Lhmdd3zlE9~FTg`jk7)vZKBIxvJ~h{i)|faQ3wha6kk&q`?Y6Ur;`VLNic zvvasu7G;_;xdd=UR;G)7**MY5^{bheot$kBQnZ=E5K7gIe7J1ti914?5}9!dyKO2d zS$9V?LhhCiFvzNU){s>x;C-<@LwfqB5uLsbA}e2-^Pq8~BCtCRT^wx_ zM&VKFn{J4u@DE2z_NgcbnQkdUd!{hSqD3aek+?*$o(YZom8@5QrO`HPtn<&L=0`qX zK=taFv-&X^1+K+7R1f}jFy^`CR@&6v(kyY;>5WWH_g1u`=UTq#5-qdRo~oA&+MK~A zpDCKZzL-R}welwjK$n@!yFdZOr zjFNiFu+;U}RY0+t-5jTCXgpn>L*c&$L9UbMVkd-dSBwQZ$dl)m(OmgHXQs8Z7d!ex z=*-;?`Ec=ET=}Yf7kf??OT=`%l%3g~#d>qzJgo=>;mQ*0QigMNj<0bBRZyzdC93uA z-Gm&;Xhu5>^LE7blz_%U%~|Y#RaZ@9xkwhv_j9qO;e^zgRG1)D#DBc4LSf;PhP0NS zS)Wh0Dr3w0QMfItZXo2# zdkl%i?@Dr3ckRok0A8-+Gdp?py`D~oq$KA~n2U1MW3<0YgVm@{9>tsGJ}rRt#PQUs z{oL$jc2N!~H1b~=RSgS)$Uje{+T+#PnezI(|Bt8ZifW>3yQz>sfDl^f1VV423Wyp) zFGA==kkG427f>{m0HH~5g3_CSbOBKV1f+>{0UID4R8&;3@$-Hc|J=;1S#vRSX3d^` z&aFImV!0Xet^DY75#r%m6yk_0T{BuoMUmLqIT^-}VkY##f+krKW zrZb(jAc)BuN&+`4P0ybWhLekjI94y>d~IK4^4S2jcsOoCjX}dQp)g9I`g?aP#>ZGlVlzk%X2Qpe>2AS@%`xb? ze@)KH%=O3hK+3)-448{yf-H>X`dRs#Dd7g@Lw%@*dgfRbdpN9&D7a@1A39uJa4QIJ zr7zTL*lsX6QrQB}q*BkHd(D|Vvh7!PHFJ=@6rGr3_rV`kd~Q}$C_#*mJc+db*ozdee>Sv;!DQ?Hq)`>5Oe;T2WxvD1Q> z1J=uX-PmUH1Y9Q!8HczE;jqUT%KETUj)_ha;=*`Vs2pM2n34USIXto)76OS7Veawg zsuy88?V~P}r+b#EQ3>*d%K#apB6z>oh4D2rd#dleuCZf;=F8YUGENLdD9Hq;wY1+^ zy(TF(07zk$#r!#wfn{He8Pl(NQR^irT=?5Tad#t{kQ6y?BJIZw^& z7Ohu!JD1n$0++|iMRxOz0-LC>8b(W|q$oFvV><1ID`OIVQA@9!`oiGGzoD9l_Z5gV zAn!4|sFKRH*{>fhR9{`$A@l#pzFWm`x35>t392V#GPi0fAaO5eBFn7OjDf+ISzI@P z!TB?~zVO%O{LI)Ej_nTXo}++9qw=Y-q2n$u-rzY$PYr7KvR%wuPnun8H5(Y4IWE2L zGPS|?i$sXyOieK%AOzwHvjoIpN9L<~r3%&i@&c{A7e@z=e)+`ZXtCJoQZKI<&CV!^ zF=g7__qM#3)Fhqzz-zsYFt5kO;%L+_=SO(25BB#e_YYg!nC1KUP1~MY9r#UV%D+?P z(MSNkb-)7kA1LgkF)p8ifRM`Qol4~E=$@(ltPwo)?s-uStFPVU8p;t0IB`kQ|ZUsNO-?5hX!%Bh!3qTY*yD%n>*3wb-{`$B~9~=-sS$km>63X6;(+KM!tqqyZ35cx58tywg&sN7bNYJ zD@XZ@7DqnSnlMc_`ttAkrV@aB><4w)$TKkUphJ3d;0TEGRncN{h&cKIAIx-AGC3I^ z6LQxk%HGQd$oKxs;mT?XM+Ud(Wv9y>xp9frqJ*{1Mo9x2goXjqOkpoJGJidKd~GeQ zqEXJ_qfov|h+E^ieAUG)oI6~iC7Hp5^W&}Tozzw?IR(@clJuuRFJHT~1Y;Xx&o3R+ z1lDX34{I|c-h;HqSq2R87a%hBr8h*x4PQ^gN;vP?6c^X6SS|JS);q1C#roWY zk~&XJ89p^RM7W_qNnP0U&$>am_+N@d#5suoGbD4?p^Hgq)5MO-0;|Edk&+^hrcUMM zJjuGKe-3kchhy9-ccJq#ln$kqLSyBtl@hfcTPkx;^~tyIf3ZnGywbM(3;~``pO#py z-7sBRt|YI32(>WrB%9IVy{W_c;&s1PQ4$>~)Wa^AU!U^BxGM~#%`v#X>Y<&!DmEf* zUT#~ZX>_YlR1_S=!W$3h=2$I^DG?pHCvDa~5y~~D3*)UAX=Ezb0|A~ebo-|(aXE4T zzb@yX0DmBwe5%RDxmVVWnLwLLgMDJYheR6zKZ-F-I=iZcVADvLlutOYXKV}l1IP$P zY(fM4CeG6g( z=$Lp}-Zp$#`(i=&KTtR#C%gNcO^v)6%q;gaIDkz-@IN!QCk65ERPGhk_5tSQ9>n3f z;{L2^u*RoF2^`$XmE;OLcu6oV+Cy}6h&%qtv$kfi=AM9JudGkqWKMNVQ!9)yzyI6?_a?8ZiCXeFQOp%ad@dziY%JEQ#g|A}#t?>a zdf{K5Hd;Jt&ejdG%9e?Ov>aokD)D2IQjYF+&o!9cq9Z8}`Nny&P zw6F~6#>vavHxv%s_F{{Ge&-vw;)W0#hihllE5eKpF$t|&Nm#B_(ZO@XIi)p?EhokJ z-jqhGkiy#{ed|0}_U9;g9Qp9)moHm!?)oOrx2@!n(@EkjRpE$xvRt-xDhc5llBkZM z5Ifkl4)I5D6qH5uU6$d+3~_eP;ms&PEK(*m&TzskTR&a(E`gN9Ow4Y-OMSkYcn)L) z!t;5bI@%VqBtQ-BOX@Bf3zd5%Kalh<{|huSUVPrCOytnPDUFA+6SiKPPPy_!zp^h@ zsJu=^Ik5Hzz-I&fF~DA`s-CB=>2Zh&_mIwr0wU=PMB6ywv-NZKnIuV;>!R<2d(Bf8 z>D|BVrTJ{2f3Jw<@F!OEHg5E#-)~r>6{3v6o z$rX!91AA=Lz?-Qu3F9ACP96I`70G`h>-~sgss76=GnU=T52j^oG~xaVX5XcI^R66f z@JPYoj`K;%1a!6$MlAZsiHfVJv}mUZ-1F|1Ck?l{!7l6tZY{j$0bMO|G}f z$)E0UC}ynM5M2F7QdrLEN0{&&;<7lB#mNN~ugCR&PWU(>DV4^+_01G7Y2?g$Ny6pJ z&#uIxqfHv{$qtv4Rj@1|{810fC9%Ro0glvDAL3}f!@lE1BXe7cH?#g!StV~vf(3DQ}?>!$?Rru5PR#T_j6d$uaZwb zq0UJ$!{4!gy-aBjh54_J=Y>d_zrOyjX)L1^Xmg4{kEt(?2 z>TzPT{veRA)G)h;mV1Tu#{P(XzBo7}p`aeFRi5>PBF$pw-Yf2O&bEoVA;ZN^%(|-R zn-`z<&-pnaT_vIHY}Jl>iM1xb ztCN*Ni&WDI6B_~9#%P)=mn4tBDTc>H=Nv6(=jx+7jb2MmS2T5I;F2Ty;Kw2}cKsOw zbL@<2hu;!0hy5v|wQsmD8PzoFhM7ZWQ9jU*=5~Nx-Er30EUw>f9|xgxx%N&s!U$Z8 zllH&a^u-tMjgGThbRRB{mDWv&rw^wF=ptGr{nqw#3Ldv5e_i!E zfsPIkkJ(@`UcF^Y72n8YsqPrJ((hK{JS1gn_+s|YJFMw4$MlX$11L^c-2NGEuJjfJ zlpIKy=`T7>tFM2M*)(-R6)W%|p!8p519`O}CFRG7*pav&&XAxIrP5e2^O9|+@Glrp z2%wg{&-r}yj0q}L(3F*_;=s6&{ff^o{IqTMO34im%nR&&OEnEW`J@WDbtwg!4qGL8 z$gb-7_7A&?55@Kvv(4zHuzY1=M}yhYg*VGt&ogrWYm-t@P{QFF8X5oqrd*)m)U(kP z$L?<_C)%yaz^~3q_Wu-@xQ@);s>$(3+p_eg*@Z-_58Iw4CrxU#b_WctS`{3dab0!>_WdD(xM&5jq^7uU)fXeX9rv#K+SO}TO=tZQrc#JPNsmp&wIbvA)24VfqpLLd z8n!s!6*Ig4b|(O@*xnBqJ=BxjF;ITJe7~8?V)bg#X^nXO!5+pDP=q@Sp>^WEh7>mkiw({qJ$J!n7{;!S0W5Bj5Fry30G0d zfFjcUFkdZ!9IecpQDrJSD%!E`txV3iOoZRd+}0y611;inajUdv4`9j{gZwhAI}A-j z?4Hl8lKW)gV`V=S7y?505)1vlFZaW=EMB4PmHzo5ts8$Xmo!<5T`sC!hU^-0#=ZF{ z<*utGW!F9^3h;TpUOtNF zj{TiMM}GF!tmV?DO!5({T*bAZ@OLG74_?UaDJ;&9cbvcZf~$Z>UzVpU^s#qjd`hqG zya@x$to2@n_~&dBo516M|3Kj_AaUCJ{J5gI)k@=5tM5yYkY&kC<;MTq8uvgE}t1MlCr8s z)acudRV~93WKKU}8$qwRr-laTJxYjkPj|-L3^KRUmh;+%lXUCXTOy9S*SqGtUPzdK z=(7JZe|5Tg^nxxr!lQ$&ih4u&k&I9in3tTzT3o>M{V<~}-Aftn7xfOxoiNOML)S-2 z!bpFu4ZY6Y@$1!EuztpbbNFtyIIt{`n~TYJPEPFR@ilF8pqoN#tqX$i?!sWWn#zZ1 z^UzGRJ0AcS!;_;>3KVhwg7yC3XgTY}2gV-2 z^`>*sC4+mmnktQaW9+*wicJ&iBw?Q5Qi;a9wt$X01oI&0)n>B+?F;5IojPL!)oBe3 zNJcw@w{P83DoWvZMO(g~OMXWyx-r=};)W0vb0Nuf>q(lyLgpJaRK*+RD|OtuYKVr4 zg@?Q@)QW=KDN?rWjK92R5Vz@Jf98sO86?cWOsp&)5#&+2W>&{b`Q!goLNugSqW_oJ z2Sl~1GldpZ+7zlPI6NvQQrlmFLt%Ltp$Ih=ov*p);xo6nl?iFgMlH-b;ih?}mWYb5 zt#a$hk+|t6t$=$3W^)LD$~%KTEr615Emij)Jbuf z)}t1fSm$AxJ65E6LYNyy?GK|+`ot9ZwH}}SX0+Ww_iOf|29alCUqpZB>u@<{k&N=! zZAUy~GrtMmp_;jSUjON1%0FgR)(uW(VLwQhNwtO=g%(U@ zppYlx8?wbMVTn80jbIwN5><=qdO+1Vs*_|i?$GBah*n7^um03rZzXTxaT8u#Rona*%ia^>Z6Yb89+A5c8?EQQlJqgo8vH{G^yyOyz1p(pu(=#!eWRzvHhd?`np35a7=)j> z;%mO3zj zsI#RzY~&bZ0$;2~hVpZ%Uz$eBF->q?x5~UU0D#}l0?;Tk>bYyT^#~?^i9Lt_&@lZs z%pYd%@lY4*ouNj3q=0dAZ_Cqg@ZPUZasR**RaT(GSg3r;7zBZ|g|k{?8Vy(D4M`s{ z%?;HCY(VU92Lo{$RsnL|DR@PrpV)|hBEG5I$|RL=G>c9iaNy63X6gZKm(k)@0N1T1R%wLrSm(-)2grFQ)6lb~a^C;Co7&J57Z5n(GS-q0PBaE8MYtXZxh<8z!#-Y+vKOX>1!88#csk3>j#G zEr%skyDNX$AK^z6yYxhIg5Bqb!!A3Zi>an?B>KEKS5hRZ$>?Tu)#4vhMQWgcFfSOd zlarXAqeALuiFwIP|9<_f1O}J%QU6B1If~UITPjC7N=513y{D@UzaMJeV19+XW5HF5 zw+_mGbMf@&OK-|2CH#{xJihww#|mT}yP9d%ZJ=R{>5XDk<|Co^hiH*}upwy->)_LG zLdIJjF#9<@$9*sU2cMp2f4sRDc>YcYFm7^r@piVlu2hd^acaj6&P}+2CiB+~gFf0N zXY&Y5g!n^thG|dd^f}dMvROkC4mEP1k=q60BiTHIw0z9ioIC!>J$jSGy-T6z;mj%F zrrI86tvR8z-V(_`_Fqw$v=^oopIK~-Ub_aKT%Z@FwM&T&d3neW+RANiab194Y3&7r zV!T8~9^QVZDJU+q;AvlOWw90P86zZ9)Umd^XK-CmsH)?lw5yupaM&*^K=VL<8_&9k z2^QQ%1+PyW5z}diT_u6(cLMKAG<5cU3RfTnTNH z8i~rwZK*!a9Oo8fU`~jwQ*a%EU5p57&B~IYF|qMoj78~p9xP?E`-_v-9o8_F%y=Ce zgitiLtalm0p3+%0q;U6ukT4lE_72@z#ziPH9+x^55c+CRZ^hwT3da&_Qtz{3#AONP zD)4_6Il)$+n36v1Pcx+EcU)Ik@}|S8+IA5YkqXo)B`=`D7XpzRtp~5u2+3@Tto!t_%7#gG0n~jL+%UZ8lvLLE z)V1rFdco*kUta9bq#VCt7&9*bdcWn-$43@J>rB(I)j4OssJ6r|ZqOOIT>eYfLgMR9 z{#pJw@C4Y;G-*AkYu|wlUJjQwo0l_P1zzd}hz^xyYP6~?JJYiic8x{UGz({qjMjM_ z!b9kS;_VEWx$Z}s_M++S>s|gvgnbd6#9X3zlOwe&Rcwk+D z8%*ybV9)NwSwG&(!p$m-vxOJ&<#+ZJ1lP)eMx8U_?X2xxE-Q3!oRMT-s|vU(P)hTX z@?CmuTesE2p6v83obPV(LIvXOOyi(fL>bdATqbWiybSieDTsSIsuVav3=TgB{NulGv+jMNrbu5 zZ8G701)ZL3bVejEh?zIB(n2=BC^g^akN{fEiiwrh;BtmygzvBe;5Q2+9OMLi^CKI$ zycs+fnc);4Ps!QSSc97rzqm6hovh5oy0J0|s~T9-zz%UqIWeIe?i@d-5kK3zjg5Vb z4V=DdOAZFk2{GJw@6K%Zj-ESU%5g+=S!A%14EjyTLK@MWJ{KvIE57}#*05Il%%F7i{@oKFYT;|<{V5i zTtAq7>74hVJ=DkFXZ4_vy>;||#fP=zBsQOOsfwNlZzr}EyzaonfF=7)?I1{?N-6cx z3JffS-)6^0#VpM}6+p+seN9*KP9HvHkLUf65RpL=teUy|h0}GBGff$@y{Nnnr}d*e zQ2ukP>Q-rP5xcloa@CQo;~&`G*cq|c$%#HkCPbR;P))d)9?U-KLJmD{Sq%OiUX+)G zm)Z3FRV#y$iX%Q|Ime#A98+d2Vbh&VOsp7loqJ|9XW=(8QF6uIYGlf$PGaimgrJA3 z)v<2!U6?za?^mMa1DSwrj8|QR)y(RXz_v^oo}hBskM|_nA}iXZ-NW{~92S%uq|`q6 zEfmGGIF0)EE;DCr-S8M~q}wHEN(C*?KN9zSc>#U{QF~TAiFbXFJm%nu`XvjLF5Wmx ze!`PF(L1eHQ?7K9@OaMpUo~Xft_08 zw8>DY`O3QT4@99n1z=3LY`=AC-8(e(m@kS`O=taOLumIwRP@qC6=9R%KH?!IAQ|YZ z@?z*uqj7w49!aqM^Ije*^6q+G+1}PV81RJZ}EL`hW~kA@8N;xnhB4A z-x*#lx2KB54_b;%Ck&hy@-Iye=d8xGbuN@;C(Hz}6@T+(wi8aB?RnYz<>F?_PwkzF zH#4hLWyy0im((YJ^Xu9GZ@L&t8g*78XW3hyUN;3rzFo}OJ|3<@?m}!X?b#*I*59nq zyBoLp7FjA$F`w>Cl=YODvd_5D!L$>|5sKfsz`7~nE4_da-#E_+ zj|Yr9*$bG6NB7q9dH8@bXEl;V%B(xo+vIZw-i0@|5rQGxONfo{dg6PK530V#FUL~N zJX^wy(*nCpLaNAar@!+ytFLe=1hp#642MLYe#cIWFrL3c+{{G+iUO8T&d*GuyS zK?R3juM6@GJR>4Ik9dQ{*}@-9y1PF&6|eArNqS(aKHzy)M5I-gcOZUkuUT|K{1dqA z*OQFBR>0V@v+|yvqM`HBvi&H zny#r3u~6^02u*lOB-EZ$n``Vmlvu>D^t^Pxn$Y3R#Hl` zT8bB)lkt)|LKGamZ0cHzzi^U^Lnw&6)dP0jf> z+jXNe>I3L9p_LI?WG1KKs0hZBR>3r5W~Ng!V-9URQOa-&7f**sE$I&SU1YK@nU)$v zqCEN=9}6@X=mfhec*0UtC?kdWgWC@kD#MqWJ=ie4O4jjdp=aen>)_Kh{@I{Wz6;|e z>g5TRnU!1y*!adjJX@ss06Hp&~?z)#X@qXv+|LY;?2sBKRIC zC5}+>5zxUpgL=bRqo+5ZYtT`%zbNJHyCxOt>e#$vgWQvHqnt?0{cNV} zE8mhdasrsh)mD6tS5L8XyWzXSZt!VD%z{PhTBGfKKprX?-d7mbxGR#G3=6ls#bi(e zsvhT7ePU@T!~PH9qcFfElI31rL4KA7ZRwK=L|FX}rzDrMhKv(YL|IwJ+y|qmx7UkV zAWwccy-Y>=J&Df$dzAmX!03ol0lMfwqJSPKPd6<6L+ zSP9~jjPo0I97UNeI#2z;)=FnwZQ(WDo~`T713i^6@Z9KD7_)MCEMYi(RZ@TG>}fF| z+k3wALl4?~$zH~ro~r$#_zpbmp?u1~N~u}RG90lb{mJAmvRuX0zOzZeVr?@4F1mZ& zaQRo0Wlmjqn`pM0`wWx371mOkO1@IY{ZY+mx9?+>?Ym&1g%8jt)}LMoyr^b&{hG`K zP3wBd5RuyW%n8MTdK)^%^4gRge=CIShG*oXUDB$2Wx%ilj}mXZS?C9;EOY zu?K)(u}n-G7vwmWJX7FJ=X4}j>vPbh1!&ENLWy$)f_21>;!^?lMf2-ZB_+FsdsDb-O#OKu2_$`*H%Ai5W2KnZ}XwL3V2mH%gDsfs4YS|PqzKb zfQt1<00pFSCqHUK!z4akTg@=K-t0l7!hfK!lgv1D>ZTwOMLv|ir|ihn+$;v!c~r3cNt(j0R23pskeZ^T>3ia$eZi zbT*f8C)=ge}kQhbas4g%1|H?Lm#ZsY#9EmQ0XyC;!ooSCtqTk)N1OR)xMX zrk700kE&GVDX`?M=X7#dik(f`Aq!EGU!uzCEV|v-M2FJgM}cwOK%=-jYB_c8D5X7_ zxif{27?qe1KwdQqoAQWdV=D>02{TrdH~%IRZc~0Ms0fvnR*BJpBJ_&R$k6E*`7>$v zjTy+tib3y9MT$W)Q)w#~e_AF2tz$D>zbZe<$W&{aPnT8df z1xeqbhH#5tik57i?3A6}K4b1_%;RAM7`dNI-c;p^4>oXt2g?HcI_wIojF0-tjT(p} zlzAq1i)vFoKTfU8>0OJQSxaU`y-ShVqO)SQdKU9rJz}z~(8~UjOH7c~KuMT8?zfE9 zZsVI>&B+n3R*3?Svl)8+kq4o2FhbRShR(7TMfAA4zCuX}`K+L-A?Ue|l(jJy`{V3{ z6x?vn-vA`wTQao1ufoEhyj^}9j;{A6-fd7daV9^oE3|Xx$^FW`kf-}Dr!vdE0qxTu z>RH1-=_!9fY;A3E@dazS8n5ml4X}#yhUCQRI~LTS9X_kp{r03A>G-lsX zk<=ZPDO)^JLezi6E&1SXQu&_p9SlG+sbzy{!&u6SXU++wCkyE>FHLrFwyY0zs8fWD zIJ|7v=*nTR`HH=L&vdv|UCG?KfBT5AqC@0ZH&N~PHDp#5Dc^#l zf-3b|3f9(c$?>R(P;sT#tZPHiF1`tO$Ndl8AM5`qDy1fbK`n1C$L!Ee1=8xgMxGms zBD2n%&5|>qhF;*#aCgtpvfk^cJEVJ(v^fsX5`R)eQ@K8vRJ{mzSV4METGQ>d@?f0jq@<-<{e{cJ$QE&pmxW}<+(RVvKWQ8*UICS`BRPipB_!%} z+~X1zs9&O>IvGcwF6K4lHpms{Nz->aaOHwttK{bbJ1SAQ?r7K4^dh5y?QV5ULdmuw z1*rE(WZk7zupR`ukA_Zs6=&|W!mgK^-)wuRd!tAO5LSl}vYd;tGeQbO8I8bG62%J5aowHTG3xuoi#j}@1ik`Ch?=MuOu~)_J)t=|P zlg^;Nj?oxCXL3lzVaGz7E_oDDwAGgE?`YGsZR-+d&=wYhBKK?A&WQS7)z*jLTExb` zTo;f8#|Z_qag=4Ui5Um^s-U;K4|Hzv#SIh;Wp^;Y{2GLj>fNOv^4ruL9fS$2-(-ejH9d$Y*3T|O z@1U7Or_4|YMvg5>{OZ_R_)qbb^Nj3}tlxj2unl{@{6A300wcD9{PutF7nS^)c#=0* z)qamsqYcxvR#hA@tDTimn!_V?P_bt2eM>rN{5BFDG8LpqFKJuzfqI*&&I@f zFXuj!EX?zzVD0>naT#0G%zGCv_&QjX1hi+FZ%+O(xbrHBZ_s1l3u29At6R!&(Xp|< z$k|`g&V0?uepxeo1N!N#UEk9RcZak2mOOtq8q6{+sD7%vSJ1QTaAt%n564*ulpe{^(>$qLu2Gkv0F8j-M@kj1=J$~;(y4RTzE9awR zRa5dCk%uM~thW{3WD#Z@hCM{Td^M#b@*h|yd}&!yhUMs+-Nby@VRI8Wqm(JOp?!`S zG!@n5mS&tNz0lw-JH7|&5odY@8?(HXVkhMN0d|zz0;68nT6~FGZ?wm8^mmwM4H#X2 zU_(_d%q*^*tJh@tRxU*E=R$YT%QUjT5H~4vVJNd_=K{`cUaH(aicWWyx|#nSnUW192Bm`)RPoZ;&qyZz}cY)igGX8|Lw^Tl_iOdMme zQr(V5+(~gSYQRvnIOGr6p%KR)p4A_oJ2!UH^ld112gXjnbg|ufsicfiiBF>4_?c-x z$r~_pShUgoeds(&%tcDqf{2dEsNGGazx9kZGhl6)*a7c1b+y#8I0QZ9_ly-NbEE2W zDJKS7Jdj)zkg{;UCLO<$8)=ZbBlYD-l;=Om%_{bYH+R!=B4Fn=K^Pa zQV3QlFV}jn<>_-2xoG7U1frmAFBUm`7w4b2as!ju<08zVB~fY0dK`Y>oe^Xjq4a7-R~>C+n@dGibJ{!g!KZ1?zVi-2;cwyjYr z_u&O?-OB61RHb*?P&qQ6`26vCy&Oh;r_4?9WUGVs%I4Yo!9C4%0Z&X-aEwsC@=A|v z*#kuGSL}sEb}fwmVb-&*k5W*(tI^()P}lZ|bKJMfq;2-gKSb<3%Rx^){&-a%LEp2w zEs6bH_+7{&91sLMrdI}Ax7DVt4X=HNX}X*IVqY+a@p8M5lt{f2-zmJOPS6&xscv~^ z@XUvR5!Cl<#1Si-%x{lm>pBYOJmTq6pPd*VGj?kzJh;Sa5S}kpw@Lq=ITw&3opLr* zJL$s!u=O?ANafdl_d5zDv9|N^JTRxC3Wdpn%jg!7^7* zZyc6oPAF!oFw>6L>-Tz1NEUI69ZIb*qxxS}w zlIm*EVCC>&BX>{fpKpeG1hc_;lCHVdxK6^q-N<03PXq4c#x4til$~hI&jQQJ8Xkj~ zxKIrho08Vr_-VJw4~%9LxfAYH+=g6|4F0N%V2NeJcFnS9FQnZ3^NRPvDL3dV1-(AkF0^U4FzLR}=<4&7%HZ*ZYoP z30eNfrE6(8g59=F?&tUA+n0^crhV)DZSyd6W?OYE#gB!SRd}91L1K(wN@aKIo)p(D zy*aOYnk-IS;HNDgHdw9CA0%g37JB{7AH;o>Z9BOX3{WT3L zz7$ z%G>57Z|J6LrqFuuWujb^<=UB6g&)1q)Bz+Xuc^(_ss;PhE8d&aewXZ2(_yx1$!I2a zsV@dbM0iy3Ow9SFwQv^XsHIoR6ZrYhtjPsb&WF}{N6swN$?iv-=UkgQmvhAkTAv2r zjM_$jHL~lQb6WM!uhNtW2r10|T%oJ)=EG9#{vRlukYO=CPc8-kfS8G&woU5*`PL$y zo_}QMM7!Aa3sZo-!5k}0@Z z<1kot?IZZF!l)f96cjr`3zFq!&TAb*1Jazy$Q*_$zMvL%Zv;Sj=nW1EV8C(F_;D$5 z{5VCOP@Iv;9|&2Ugd&67qf*-3R^k?}y-;=bY)gO$2m)fkJ08|pTIH@680@M7q205&?Ln(2^hVN(wImzd1)g4K}^mEe7B_z!4d6XwJ(Sf7+@`d@9-K z6npFuo>dznT16VPas=bOlnDe?|ovG{f z?R`D=iN}*39XUhvD~;{f2`|Ji{QLI#*}&-!NB{t$Bwn(RTVXsmX&!Xodj_{n%7r!PaX>(f(zV_^v5Z2e`Q7SeBBxQ& z?Umf|gZfFj5>ufnR51poX-Ug`G!~=~@n#5FHJCLw9E2EHArA%@4)SFFRn&M{L4RT~ z*1`w~Il$rEG_1_vg}3+%-MP~EHaTL~!K+DbJF#(j=TbD{_LdS>G^BLplqe2E{{m~{0S5K8iBUC=nV zU=hf1ddWvJ0ALWF2EfEF5(;^NI`Ix{$-oiXHa}UUm!u^@6Uo8-g^F=0aVk+YKWJqi zo-d_yoELLb7GhC>O|9c9Sv@%PLb>Q3AiO0$4S_7=1F{22cryoS98MOu2xgBRW{LyR z*kJ%TC`}p$Px^o~tQ0lY6|($bWfl5ePYg_*WzqctLsmeEsx-2y6etV8s`jfv;6?7J zaG`YYHP+ZfBskgW3t9kGXvUV2v5C2Z0qxwuSW2NuWNtY`8)YPpFsWWT5B|$KXr9-Y z&2A(qlhm>jr0^O@)>-)v6s|#xt4JfyZj=G_PkjwPhXF|PNg@_s)9J95YUxkv8km-* zVY?y{DG#o2v83tx37^A+w@UQ7>cEcT+}ZVtJ6tAJ z?s{?Yg5&MeA>6xN_kAy|z3=q!J6RCr;3bX@fY`!7{VKvYWJTnZvEBlWroPM1zKvszmbeFcB63 zpyj-kf<{grn`)htpT-NWD-?hSkem!GmHhzK(S`Jr$ZrM?Jjcqqajxb-G!K;LCX4|P zmk4+vXHz4O7J-;1Ko}q(G8u;81aKF-78ucjf@sqM!$^n#D+j=U0l>L|M+@+DsNd&L z9u8bcH}H$fYkan+=V}er`G)B4dMm%E{ZwMT)i=~apy}c4*25#U>tnkL>PCYFdae8m zx3By>k!w47rxxwr+MVCyHq# zZ$u^u8nK54u==#$z3F8GziYhKe|<-AG}b@}BBqqdWB}n~Wth0CsPT|5cm)POlHXC!TN(@b-7{_ znOL$#E>apb-C%lak$u90Kqr=Ve1Dmo93q5hDWx8y5NV}X_Vv!mcdj|%WdA8T{g+k$ zhj|X=hohF$_As z0*7)KFXvs zV$szwF7$lscG{y)wE25noVpt9pYuf)@nK=C-tN?jByS~lO1~B1SlyO##pjCC*yG+W z#^qbPf92);@>&fiwLpCFact2~>DTisPX48PQ{2OhK{ufX{XA*ot1kqq=jBdDD&6$% z36&TaO0TSlprlUzRfZ#zG*5pRrK&-vBLK{=1d#ksb8SFG85|h;WlEcw>=u8z!UN!> zc`Br_bo7nvtFH1C?6rvW@wJxqi+>%akFeHw4gg%eUynrNo z;{7NhS@E$NL`IxksZuvWqa{x{QyIk`2LeOLqpwPzR6p-_-Jd_Zrv$Rn-8ix8Ebqs2 z(#meKzGlVU;V8#htEebRM(H)HREeQ;^pZD_qKhL`vV$=(h=Wx($u0QVziL*nvI8Hk zSyGwc>7TB@K7Fj`;bDo|?%-#SJC7_0zkBj8?7C)b(#c7u!Po%+00Him6A@`#1C6K4 zz-eGwAPvB12GRi_m})>I5mE?*OcR#?e**<^;mp})lXa|tNNVN~fISE;;Nj+EgH~ll zOM}r9m&HK|AoMT@iFRmYmCmLZC2TSx3h@l?L0T6I@iJHxAaO9OhTmS8h0kkRI+-Fy zgI4s2rv$!VuBxhiNrd1|W7MkF0k0p2x#N@)bOBxf9q^V!+Djg5V+BurBkEVrm=w*g zAPli*rK6k~95q~4I`~71Jq&4h@;$8xqDYNQO6$McG2Qg=&{U~c&p7MjnCQZ}4C6!O z$@gr3#oXH`e``%m$YeO3WC9xoh(waC0Ey5t8Il5n0hr`TQedh9b5+9uM+E1%ZPs5EY(595L`g*5BQ&;9q7Q5BL(j zU7`xA9{`DB3;=xz9(LMq1JFyr00UqxzWB0i{_8!dJjc|E3ko?E6G*%czEgx#4jfyM zh!5h1&7GWRCGQJ@WMsg_rnmpK$qQ4Ci}dWr`jZVc7MHkgAL}KXLhhWLbgagZ0iY^; znHVcMj3h)>C8?3SNpj?M5|-SSSpzYG7=XJ0n?O8cB5(?@$*=;FU?8Iza?zp;OeK+k9#UY>nFegE3A?OqF}%&5&_E`AYgJG@qBDLatw@L z!4W&M2)oArIwm;J8%o{GF~FQ4?D)}8AdUn=uKwUQmkwhT8B)Fdy+oAaYZ)lw>m901q)3 zU`m8C7TKtirX1rLhPeUQZ5>OR(y`vae?&nw!Pm*nX#7t*{@ZT-xf`8VMW7TRiy!HO zqqwSzpQh^)Evw-b6dFX7Oee;jQX3mq?Mwix_KLd*BsM;X#uBe500uxD8Lqx`zNo#%d>2i zGfRrd`-RAI$bXL+Xo(VB<3eYM8J_&J$Y`BYjw5wkI@!}tA>2~TsyvDVEfgjgRy{iT zKgQlXDyi*_A3ld!JRm6AamFE1Q#+`Yni)8SN=0dfv*9L+k{XqkO*bn|Gn;KrOV3N+-@AVQy#Ks=EnF^iq0ip?e4gj|JfCOp3Z8*{ z6h$>w297c40I>BENMjq6X+9aAzsX$u~X#3dYM~|gThJK=B8bz-%Jr!#OSU=_=e2Rw*qw6So z{=<5qxv41?o8z$W=vR&98XJ}?q?y7!s}93pv>X!?0C6i&gj>4!xS(UtOI?ZnOR9NS z*Q29%V?%4_+wLj0rg4KN-B1)1`sRE#cPc%DwgW)3WC?bwBnnp`X#_hYi@*%YCgb;1 zU>G4|F`hVP?W7uf7pTW+eOUPHnKdTE%f(mSa7j+qwxc%iQ#1GoMq@*R1RbCcZkzV0o#EG$Ahlc-)Pl8~q~+Hy-xq{Uq5x?0IGDW90HsVzG+=k>vzN!C7g zaO)HeiCK&@CEa{(`}E@O7{1i9l>bi!({kN(bt52@2$O)Y#Co-;m_bbDIeUU2kWKry znpQgdUPphbpG!XN9ML)~iK7JF!7`X~GMX^LuIe~I${81vtn}IOgL6^zl6O3dmsYXk zMaG@NQuI^voEg)NF~Ut*ENmjVB*}Iy#nv-v5Vo1GeaPeohBQ`0sz9wq2be=KZK`Jf zRD+#O`@^}%`Bz&W_J*Fik(}LC0jEpB43ZOIgk~Q8hU@pUDuY6T|L@9dz`K;kc6FctBioml_c5A za>MoB0#7-mT=CqYy9UzcP-RAnbDKN00W!*u-BhM@&J!~))HbHJnS)_A> zb$_D+^|hWK@#ZM{eE7UBE#K`=G7wiF`sR(lI1vFA(L;>E^=E9jahGFiH4p}lHG>Gi zDJ?*dXqCcqL@}XnnJZ;b#}cNK6!^YC5ecL4P20D+8>66y+!skqhk$;b6KEl9@BZjQ zSa$<+;1vDTvNaE^+gMlW4T(aY#%Bn_K4_IFKSURA=F0vD3WV#2MUk`qYp5Srxm#>s zuXnha$GpAaR_hd`N;+}#2Zmq*Dy?m3!j$qqrOHeu!MaVkoO4b3*Y(J=MRnbg1|^;9 zS{N=`P6ni)(3OAzDqtp9A%u8RDU%O|crq|JlDI6~Y|cQ!vZ#Dgv)x`|oV+=!d9AQ_ zq}k~>bdpswxhDtBD0gmY=f~YxSMu!dubN44BXYeH>zbO#w{S#XTr&EJPtrylu!aC? zLxg0ywr?E`RMsOJXGto}icis=Z$3maAhL%oBs0jITYbIS@7AwheXTu-{5jaS&;o@O zXPbzJ7c-nTQ0bW!jyOU~kqn4!*@0CNfW9y+0qi?M05h54beZu+35-eu*bB_H78y5ERmIPow*oWaZN}9$fR~hw~eN8{ZAW+RzV-V2J7ZoSRoEpmKdZo zbc=0JIvZA7CmOFl^YBI|a*F)3jG9)DrAf8#k?9ZXT|y{o{T%ZQiA#BU zTp_8s1M=keP(u1D1fnhuk2lNhmY!mn{fq%<IBPmn2CO&?kZ?HB&T4u#inr zJEB1)H{nTrGhy?-?HUs%42D+G@=7_;4UW-FnKwfi_bG8WIgxiYIbA?9CrJiCOfHpJ zEK!-SglSH2*kX9!dibh*7eR67{)sofipD(zLSDoUnm9(y>}#tyVdlAW%V&v&Ty7G6 zBBhszSL)JLeEfiGUXoA z==!E{wSZ7&BF6VQ`w>NwYp`VmUK%L81+qxZ5gw*uTH;FK53+b#+PBPa;{;KKD(T^j z)oD8uHA|9BvOO>ECMssjB8buJD?-TZ>enN&xNUAf!a|-u69}<~|$@mQlzKXdU zM3K=?ssv+@yLHa_HFm{$t_!y8(%nOn%irH?luI)5Wlnh#t$!ms)yYqEAOOG12M$Mu zG3NM^!G~L&JB!`EgIY$&{1}#@Qhc}_O_NjJX zZbB!@<0Zx!abp7Y8nToID!@4KI1nlUb|Lnhn5Zfs7Ka7C5K6J0)GUx@*G&o;+OJtb zAdr}f%l6#vt;Pc_NI5<@J-f@3E%$`zC5+}~&vs^6>PdF2KbBhMrjV|use-@1=;kDNx| z99@LV9`ZS|b7@ztCjq0E=i+rET0S+az9#}qR&#S!gts{t;s=hEGC%;>U5TS+Xf&_wC z0HBhfEKm(1ZrChrMKp*j$W3Lzi*oywoT-|+-I1z(>`|6Cw}?i9IVu~)JWYLw^)edH zmYWC4nH)LOnF(;W770c90|NLE+l^@s@=bAiSqzXT==aldPBB=eW~^w&&~j-6XSx2c z?NF4Zf@&!?m#dmap|c8()||pD&dnlQ{8-8ZxGtwl1MRY3O*#c62=2>R8{p=BC|XsaMWKLws^c zG5v<<>5SdBITHo6I--%$Y!e!Nf4VWg)gHnbsGJpFov;=F%>%K-Ba*cki2(56TN!h1 zL4+X;8#nZ4B0nl5?0N`EClYEaf?B%~U6&J=xlrKG#7@QJOLTbST`G2QHa5h)2^fN$ zD7KNhKNLzxqBwua0J&B4VAFuQj3IK-;!Kus=Ma0hZ2Jpz3WL@z)N~R~QsO`<&_J8+ zr2YE8)`w_<__`=+mJt-5^4(_`(+9hGc^*beL6?mjPkX|@bP5+$BOW8Yfy4523mkdz|daXL`62a!y5al3q)Eug#1#tc~M zU8WFRtePumcaBTbao!A=V8QwU_%m>Pe*yt#B@ZH~aAIpkgpG2@M&8G1)Q+6eBaPbU zQ0H{dkM*(5XKC6#K$lL7qY3Z_L)SV!%j~>rYI0=r(&ZcgSm$|BIU%Z@PbhW-Xz35L z+SyyDee%Db%krlGiZ@<1CmO-;ruihFN6~5b-!F2m_B&@&dm5eC7(Q4`Zsl#UIl2)& z{w0#^J@kcw6 zXx$uXD(_xDme(11sk8mFF`|RE5YPJ#@Q(UzMB}SYAD*wO zJF{E|vsJ@*Bu!p^8W7X0tmcC_C0FM=3D*j+lW1K$Ek`$L7e?!X#Td-()ASeu6VW!8 zP6qfhrXXpj42>}h`c+~!c|VlCD&l&E!^nkeZ;r08F9XMUJxAlhYSz}^@CG>9M!1PI z2}1}Apj&LUs>pxs5x9HdOl#-Vxz3<+a6b0#>85e<-ikrw;cO`=PhUF6=xz$iGccG? zJSWOUy^49gX(D;mF{20GXR=vv&ggIepCP-2jii{aHfm$o)N(hQZu@df3|(d|bIa8P zk(*0f;x*Ag9LZQ)a1EmLbEbemMFJ505XNyOfQG3iEMDT-S>&b#MM5_K$6+FFv33qv zB1Uo@=<^ZLAPohp_2jtP5kQP2ecci*&TFPa_gG>0%W%eBXQw)ughn&NVx?L=M|fTu z=qm0(7Y3D>B)`HlF}JPa&FyrF1(koJ_u?0u1HoZ$loT#Zh_4u^(tewA(7JnJy@|u7(`^@gbu=BfJ3wJ@@EkEq~BRNNzrMX!!FMh z&(NP|zdM_)gT8sZTb8yu1Mx*jw)sW!Ri;{0c0 ze+8XOl@&jq6ls}*&I)YbGw?PG?>xW!G5U0gG1MGwJw(ul;8>UnNazOY0U<23!4NQg zEIT5B$T6m{covSiD2%1I=2nRQak!2jbV%~BtVtl+#MuQ^Aey)qVOPeFO@RtMiCA-B zu|z30b(Ba&!fpS;I4PDuz<5-ot99G~2RmcmjOcxNUp@72P3jvOJ~2$O!J6*Lc7*XhGid z9CXy(Wq~?zvyZ2{x$syT`qJ)=VGfFx`xv=nz+Fwk@CjO1Esdxm0X!ZRlvedlHL@A6A$2s{1o%VBa9)(kS~zmhSo_5Co?2z@zCLv+O709Y^23K%McR4 za3lQ{e%;O=Qd?oEhd8HtD1A}bN%_*+E+C|Bi~g*h)c_@=V;8q;eQEGSnt92yIsTFrb@u;ku{-;S1qex zMNx1Z^9@OsgyXpPCAW0J_4f(U|4KiRDn!f*7;>BBgXPdL#v64eZTY(Ya!SRe?mdJ@ zgk>0MI?g9zE1*Gx7C};k$OfMn`uZ^DaQ^ay1k-W6$uE%qP5-rCTyUj$~zenKTw+WhIgEh?$(aS$kj@d-!{^?t7?TaC}v3U@a zikAaSvIVfPF}dYw*l=vj#V@9laYZpWrGLk+4E-#~Jgl6xsx#-re#QpD3~L|W4$2ht zS3}^CYxhCZvOg`3uR?ted#pH#qOUndlD>=ua4^Cyi*SxDLjMg4y(;lOQMB!&zv}P5 zbzif6`WB{rp2NoXMoyu=Dtw~*GG`J3N)FnAe%cKnqFo5oYWdh&tt~JDn22(p(%hx| z$>4sHye@wjW0Ds^0AauH!Z!OFvTuJm+f z?N*JVYz5KXdYiwMCniJ9Okl~Ef2YT*>HLK!N}6RflnI^(cwrW9R|KIs!N ze6DR|hM)Js5dy%~nh+|4hvtAz!vun)eNV?nHP`jQsJHUNisW*{s_#ci@l(%Au}#i| zI2bla7~w!@>$XX)fubbW9JF+PFmI9aI_cMDO2$0b{pfx1TaWT}*K^RZ&dCb_P8xy* z;*DlUA|!2y12*q5G84$L2GVV?1yX+;+gL~bD2;MRlbs5wRC!!WlO>uJoPj!u*Ph+u zRJW(vUDgjOWyPxg4yiK<9zxU{yt%@)kTtbX3{%9ELYBL#1}kR@`EA-??X*EpFU?A# zbr9viv5kdd;*`KCOKn(OQjIl8fQS*sChuvKOG^f3*8P3IP}p~?H#3~uBH6*4iiEi# zWohhnOR>f($yM4qxA=a<+c7Y4*Sb5bz%V>DE{BuSq7P})tz~q%F>T3{dQ$h}z97*% zr!N?5*Q@FW&GxFDK>YL0ztPdsQy-ga!-)&&jLTD+#_rZXJ$=IHT8oA}Tz@|W8+8B= zCk3#RfvtI*$%u_)HG<=W(}6@G0(b~TK$*~3k@bVpB&~$4G9ISj*gmLEejm`}d9S-` zqR>a!dtwS-?Y1+<#5fHvu|F+$UIf+&R?LmwocIa`*KWwe>;IsmE#bWV)#^l%BACZ6ofw1S ztp@ddqhFSzs4BG&0CSDzVu4hm1;7U_z&PMDSb@y~!oVyb2+)DGfDTAC$pR5^dDH*NP-VOe^Iup_Z zzd>P4@iJW$8T0F4`q#Ja7$c|Pv_8*f+NYa1r~0an@kbB+&5f=Z8-ejBim`~Lp4d2( z0Axo+KtBS+CZq&CSwmG+OMPl4JtWoK|75pOoFjJnH%}3ssUcBALVODwo3)`P#i|WO zNZ0uXyw6csevJ$J(YhNP$xG`Z8EbNAxxEilDJ^132ypmAcsHwJO+>9R1|yiY{eZ7x z0k@^v7B~(Q5;pUg=bzUum{-|3s1wuwlh(%_2ej>Tuq3B;NV-eSjwN%nJPg(tJ`}QR zUrinh(>`~N9Mp5RPz9&q`2NEroI^Vn%s9mKLO*p>9dh5D#$eEvy~^fh@V$(A&SQ^m z*3Iki?Z41LdHepIP3YLODIvu|$beM?DnLkvaP_VbFoJ_X0fUdFQ4AQS9iK!at1u&5 zph@Yl!A!8-;7$vp9C;pRU<%(EEYu=CCEbB<&Lm^8U6Q_@o13BZxc>+ z#=(uZXiZ1Wj_lQYA|!DsGI6Om`AkJ(yDxCb3QLq#Q>SONAt_@Ha?!JQjnoL70sY?x#UdwRj!oZxIQueH9vx+OghX9x2D4bKHWLYLDkjFof_ zN1H*?p5>DOoP%QW{=67Nn+;EA<3>F$0-VOJLH{nb* zp16zvEIvK`m^j`X7a^7L{d7-k3Di)t&v`m7YZ2td{ju9wqQ(l>B&43_!;^&v)sb-=mNB7)hS)qMs&=gP;D%5FD4x?AJj|wJmLt5XkZ`G2FdRA|MzK%y8|kt~cNh>1>dRG<`chJCJ4ea(OYoE+ z$BH{KkLw~kRR_|n9ww3MEzN;P+7>5l;Z^EKT0Qs~R5|cqi%^G+H(V+{S~XZZu&qlZ zo2nCRYoBZ|?`(rOqOVshU|Y1mr@vZvWX6Swllj5t z@_m=*pr=i^0%8r3v*b4@d?&1yhH&6^lD(9DbAv8yZGu&-7Z-cklmfu>S znFuc@`NJAB&5vntG7ittnYSVJJClUkFmo7&NreJww!WC(N`I&q`nC4^c@&mMxt0@5 z%6YHtonoZKP!uM5&3|CiwH6qGwg_9@Ela+crR}U-cO&DA zmI=40`%=}2;WWF?m)&UN3oJC=iZS~$;!EP)}P=Cgk730r$APb5;(e#~t$#SWQDjb&$+B}SZ#OAZfM zBLT>l^ZPF@{P6NSBaQ1^fN>^-G=>XkB&bVD_}jGHnP}?bAN?48?O6Q^LsQORFDp&U zK|i;b@jIuyUNwwU?Ij@)@3ypXOs(N znu{%*CWML9h)I&3M3!}p@9M&>e+P-QJOT^ylc8VZ)OEQ0C^SF_AXs4jXqm_^^Hh?3AA>AwW}dacx2FQ1bQm;b->@ zB*Sove4)y+S>594421wtGZSaPfx}t^!scc{dA>w#jHMEghh;}2vHl1Ec>*a_Y@8*M zYDTrvnGTpX-wnvKm||MW?kv4K7rPUKCFX__L)n0pkmhLxHgh(!HnR+5Om$##S-p;x z6L0ausA2V6=~OY;isAXULw42gKkxD0nK})fsJnO=x<*cnzPwXfUTO2r4d_n!k#HgZ z&NKA0vp|S>`x_KqDOMl<4GIU-e?ab-?WcD;Nb{H(SakzdNsBRt9C@X@OP~^={{4^e7Eh#_~bieUA2c|=iumaFqfVy z4dbNqLzs{Y3gJweztauDSUlC!gqNx9q2uDE^Gf`3qfm z8uRrx3@ipPI+pR`vKF80`sRWp*5sR++0%7`o-p0U^9y2+_?)FE@vXtqh4K(m1mq;3Elutz}NR@DvR!r%St_VjNo{#K6vgwNygU zP^1A;p)>3%4Ul!s(7+gz-1H!gW3IGN5PTpS{K09|*kFIu$7xIf4$B{-k~NT^eX)c>)fk{OrFiFVG*Y~uDS zzl5BSzcwBi+I<+`R7ZZ6QOlK=r5E(pEDl9q+dcDCou$p-m*k-Kt6w%5J;iIH7Bk|B zO_S=uK9aGxl}>R1wU{JKGU$TwCrJceESxbo#%i4+XfRbzZX~kECQ+?6gdFc{FPg2NTIkq{3fzh`yxl*%c9nb1FA_thpA>G`_+Y=^OSpU^uYh z+d7UkH|o0Y2m1{>v+flXC@VO#4uH5k&Zmx*){T*oE>~pB_jOxV_|XLoU8DqtBSe8! z3C30&NK#*4!N#`?9!)O3+;jFn0jqdM;;WYQe1+0M5@Ht_W{D)54zBQ3b)-&ma|$!$ z?~z; zJso&)0SQV#HqAyz&dBg|EGV`GDwt*daz9mxFaK-s+37?wPFpG09-zQ5rt#GFZ9`4p zgWE0fIJ5OdCojo_p*xMGEC2>x$sF4}m{N|?VeSwPY7Q?x=w>yy{TvPtDOtF>J9Td5 z!pv@#iEi#!i%ko9QklrF0B$?=T-?WJ=&4h`4ml5nC&nrcB z(8=K!PIC_MtD~&vpyl@$%rWv#hg0|fD9Q4Jb-qsOJGdn1FN2?nPlLMaap(@;`EHv6 ze;m5|9gAcp1P^FSrNR^JA!nbf(d;_DU#y=`?I}NK5posJPGz!z<34szd@3$b(urocq zHf9fOi3>D}wLhO4>sWhu5)JW%xt$1yNyVCa*L$Y*iQm51^@Y- zHt*LYBW`#^BV=s$^E>s_qRIm_c-tY$fbZOM{Sj+-uDbnX-l`|nl86 zeV7T%27K~`ocNa1GaP|+iCb}Vhh=@-kBcV5g|tPZJ4yn11--edqOs(W8^xLNVa)_< z;W%Co&X`X0%Zgb0W+K)9(I&IvYDp(0Vw29`*3dFAtdpTSeze1_+@X zq%e^emJBBf{e?p15>ea?k&-1GIVt2ZFjibHdsjbL*y`cfVT z(JH!9GRof~=&#j6{GZlalDd@gO=S=gMngP7Y@R>VjDW7zo9bP1r+lS1zoyE%D=&xD zc3B%coBlQAb=@d#r#kOA5bUEUxOl2@nNRSs>}tNcS?_J$_>dKiqP&{N>Ws1}1%vz! zM|65-?6qgcYFxqykX(zS=>ch!03hHc=Y%9G3*YP`+-8)BRYoM5W5ke1A-qOpxwN_^ zcC97+I9jsqAvCm)d*Dk*+LDZ7l~`a@{tr2lb1@a#{=$5Po2^FeNu8w`L_|VsQdlz( zYDMCc;@H9j-yQ$yXW7g6|Ic0j@-`mdU%Z{SE zvBNo6&8{xE*06tw8da9xk&mKZRwn@99~D;{X2w0PX0U`5TQ2KL<=-!55FY5yxdzIz!6(!)Izah{HP_=8?78|dv)PY2` zoJ&p=F;fmBk_#ur5<*;kDoS)5!$Md@gP7#vry#=fl>cGUhg|oY$<$mY=D84hzpEO- z(hBv5$VZKS>F&T|OS`o7j2jK`mKX0QpE~|&mUZjI2XrgiNZ#}P*0-<+i&rccRJl+3 z{W%{f-{*gL`S|Rx_1C=rB&(;b$w`<%Cv3+`c+YZ12LS*dk{l&|{om>q)&gWps5mNk zJbl-phj3;DC+i3%63j-QWO216V>yXRKpUy!G&h5 z*f1j4Jp_a?6)D5x3iP3Pf~~5?VegQCk$&-=xm}tD!}$o5gMDvx#?WzQ3su-|Wlt^HsOJAgfzkNI31V^}46)9N)Ih z2h#5@tk*VpKEw^*Y)kLRxO($WtG?@Pi@EX!XGdH54lSm_&|h}z7^9uu4o%g}w}#_f z2%|Ka z-_3LZI7}_jEMPK)Y*^+K$6X+#Sxo(-gyOb-?N7z~*2;tP3OMlrGzQx`pmYvBJe zdDo0B^UT^BD&G(1ps`QTD;-mhQ?+k*F;nh0{Wkbr|C8u5|NXT$wfgcj*M{(%m%cAi z^vQj{XXO7oDHA#9_KB|mK{u(Ax|dyD%970p#Fm^0Y}eV^A`eL}n0_jI13kt+qsAvS z=kDH<@boaCDn2RH-eBy)(RY_Mt0lU`d*M(7RcE^SN07J1U;@{YVT7&$=yk^CODsw1 z%iwl9U4__|et*9(2kqG%n$>Y^ zxeE^K18nu|BH}xR5yOw_jbi84lh=i7X#=Bghf>Zje7R=Lw@s8Iq@$;othl-A$+DnP zv~fK0VvSUMW=2Z*Z}Z1mJ_PUHpjd(2f9|)(f^xWYVQ=x0oC7mf{dIoQs?izr=%yFb z0P~d28NwRE5TRm`@GT|6q>m~5fg7>``N9$EAQup-eF)xQu;?6%nS5r>)Kv}s{fCh0 z5SGz(!g$zR#he$G>=&xjF0QFi&`T-8)_PNZrQZ^#sSA{<+S%m|A*r$OKZ>%xv(<^n zrle(ptd^@Oag4-Ne?c53k1fp3hK{In&^hFh;8oKqF1ck`Dct}Bz#wX~sh9&8VpEst z=f91HkP_)!i(@6r^Y_cG9xQ|WpEf!4PfPWkR^Ie&+Qg-!b4vK0!38y|j(tA9=K9g! zrjLuJKP$ODbRtRpYt5Brv0+J3z>4^rA0|%YuP1&n{AK)&Cgbau@pb<1Tf7XUEPY%qx{gpFO!>onQ@jG7|W}kmlJ8y;ST^ePpTg$;) zQNq3m!+ay(=xME5D-iztxsspPR{MM~;W`VaK24`pNZUIkT}I6yjAsWeMQ|BN>KcS2 zM@Gt#unMG)R17DO;Sgs{2vgG+0mIIcvH=r`nypG%NXSt2rda=zSOAHbWRT+6-<8aB z$U<~m-w1;Ld~wOO4`;EYfT)Ypx}KJU#i#VN%W9?_G_siMeVeZz#VPi^y? zIXgI7!MrL<&=<>Tz~;I*f`o`0f@R`&(`KRQqZ99b{_`w!@xaYpmnPf(s;+b1J(3`1At*^L+PG`qL{Lp_w^LUT(ko>P)ZxYv+o& zo=ZtvsU^1o3{;`Lh0nXmX8igef$#jj?OgPLH49O)Z zK3m}KLM?Z#uvlB}-KcXh@sU|l~t(npI2(8uw zOc`dfab{$&S~8X5`QJeuZF27=BjXiR(_;zi{ENO7o09L3+?u%ZKWk6V9Y;sQ+WbhD z4-UQk_UQkefYVzj``#;7SQg*xPB?Mp*$)N!_D+)Ru}gEld{8oeCc}z=;_Ko_;ZD<(D%5*GsLVr`=7N_p;yt;%^nwCPH@Du!kW$_%3j7 z>*?J&MhMv4xBSZ;x9ER8CxZ*ON_+^{acyV*SoPc7EjfpOs&{;jII`Qj)p51D=znjb z=tmE``+q)sgUOs?^BWYtLoa_Uo_jFoHJ$d?kAaQjeh!afjG&+lgAkXS6E`mn9+Az= z9M6uq{V9I7XJR!N&NUrdY`uH+_&t(9HSv0FQBM*9iao>yE?7wF#7WQZ{tQ#)f$%ppy@97&^&w#DNonK$6J_iBpY$9327yc@S0wkuszbutT~98kNOO;wt8^ z8m%?w(j^XL_miNL%B4;NR_4kw@_bluflBH-qn9$vHfBj(j zpXNBYS7RmUnX+jTx`^V4NiHzwZ<{igzQURDT%2iBp8Ux5mVHpwn(~uIbwlq-0CVQ; z3%dU~LtmEQi$nU2a9oVdA%D6aYEdQC+bPTj!bGfHCm620cW~X33e+CKI{r;?6T4PSiH-Q**c4fkUPPrYs_=Pk& zZqewcG*y6b?lYl4t%9@XRpI-yzp|8d}kHE)E zg9Kl{N37I6PV@CDT-h7g_F%;abUb8x?XOwSM#E-77nkh2GO&Ba*4qOgX8&IDu_E*Z zG2AvG&0%%s($2?64_EDriAQh1#8Z1N{*W7WkGT}AA;bykm$xNaSgN5^uJ1xO!y4c0 zd(g``Qg zm=b?K?_^0q5t&KnZc!;bkocgM7P_E3PfCa~*%in&9f*!l8TQglyMULCEws!-9;GW6 zefJ#&FP*8$WWm28`p#-ilH*_R0t;G0E`2T7HF?)l^ry| zZ}hpo(nRXF<{#L>OOBzxV?+?!tP;H5Mnodr#x21P>*Fub zztp+!F?dgRh}Zl&Agr_*V7vJ-0%%5+>uki|(2BhaDVB5>we&5FSGG9o2Yi3YOQST+ zA`84!usN)Jt^8KyK9}uJ85+q!kF+U|iKVWT5TS=rBMb>JnUl{xGHlIRHMTbHEsRaEIG>yy_pF+Zpin1zKk{5$XBiXL4rU;J(;$TNe zyjETNe&x3A$ekx9%1KS14*HgOI!&POF>mKIj46Q~h=JsrGK(FAXU9fbGx!Ar{+rNw zppWYF)LU0)-Te5Mq0iso#r5Myv1|+$5+{h&MKjn72nM2d(oOwQpYnuTLad1fe?m_* z+vBT3Os1EvYmMZ%8E#^_o86VUL#7N3M<&z`1AZc>?)8xD5^%$e_QAJZ-I5zaP?m?% zk#rhj_pXf#UPwbX)Q!~E#GIX{Ny}b>#0Cllsa^0U84kh%6eb63IliX`z2~{pv8L$J z+RR4@`&OPb-Fw1!>6Jjz`I+#`2m2>ZT>Qc~j2_RNstx$6@fh7yv|Wm3Kxh^qC@0*5gDQhs&pvpqK{ zS4URP69VSqG;G9fA1cOeIpHwT%7z3gE^8v#QdKTtZ|L5<&+`nOUdcfnQk=NvTYV9qHc(*gt`WTnjh)X2Ril7uVy+}7?YX!&Ih(yvN?U03wCN(%Q z#ANRx{jN*)NB5D<%1I>^1&qQX;07!4?WeZR$O|5!sk!T(Jt>^MYX=8FU}1C13nm5F z|83=)oZoObK4r?8J6Gm4f04ZLIkA6Q&p%(*E-#M%A)dYwMF(yf+KM*(()~S$)$_#u zRne1|1N+zJ{5NKI`q}ZqM@KH)MqgOHSiCW3V%0Z2mPt6q7c6IUyKc2uOta+klaRA+ zH-!!UO}E7tkh8#T#Hgx6?t@-4Zpx~WKV=THY&~y=g+jFu!xa%GlQ#GUAOdkxN&GHt z1VVwk)+Lsj_%Oo!+!!8x5;wQh#QID55n`ulcopEB(P%aWw1wegBEhyWW_f?=F`7vn zAz7A!2f=XlKj@4?-iTX#D@EN#hLaU1~*$Mwwsj&F}#{d9|gf`i?kk9r{E~Dqoi(m>4xVEGmqhF{QvRMkdDzpAL zyU+c>(Kz1L@`@Te#kvfi)R04W@l}3Q!!kc#4x@EYE3akjums?se-deRmE0QGOv7Al z$M!$e?u@l28AZ~Ve8cl|zIRUP^DPF;cRyW$WczKhxmU_P+_di4lK0mZc6dS7!D!21 z@qeiVtXChCCd#l@$c!>f)cV=yKYwS~nL8EsmHCN+e@=v2HlXO-%U(U`jf=)98ypSV za@6YM-nurcH~(!}6(>LTeW&SI>DXEMKQ6?Dq2_j?8~>ue-i{yqoqr!0U3jY=!1E}; zI-T+3hdh3*y+b&=jG&v@7L#%%prpzgnUDBRZSZT{7Bu-nmX#>hXEDiwA`l`cuo9VW z({grr@la@RFl6oXQCNG7b-*MNh%YhKa7+pmaGxf@-#kI&R1@fy5=A&N0{uJF%NHMn zgs6G5JiVE99(GX}meKX>3?xu$Hk`V5@|u8gx_D;MJzFQ`2vwglgBA002Ey|kUd@S5+K!^%O?zf7bHU8ob>Q2ZUYT&4BRbl2ee)-|oCh5u!DmevpeU%0e*75d9_eC+q%Inq=6 za#l{7}vqK9J=4E9_Yg{YRu}jwRid)=LJLT5w8mP!3*0c3AKZce~4#UaW3;jmYdxaWj zk;pvVr(FcAsiZO!a+U8n_j%qIxwCh%;upnqExA#!vY(0-_6Zty$1a;VGwy2SOuE{! z-f^jgCr=h+Rn`N6!fa&ag|6BsJFX2LOrPfXG^b;A6S{5hwSD%>{;u{lyL0 zPUJLw4ft!7?Op9(9??V2n`<2xpufC!4&@lt{L?VdK8v@ek#Tv&u3Hak zT2|R=j;dcDS#vn8D)9u;*JD+B`;XFCZU5OO$7@ilu!&v6GBnx0-}P5f{lb;f})_JqJk6=8v-gKkQ2YP)_?7D_P#j3 zb92VUm<28}-Z|zw-}*efiFYBNBH^b^9+L-cGNJw5);KEqdTy;+#Lf9aDe6R-`X_3nZIU^38ZYwC@Rc5D6N zOZ6vyH6_Mx<`%+Ey*TV$tPXl=yJj9)UYzu!xa&alLd&Lh>%0EvZyS$nhD7Z>C3!JH z=g0X(UMCi}c6|=m=-{q%_rtf&E!X5^tIaQG6P**TeBgV-0(%_9)rD1=WM|xRSfx>5 zfn)JGhMjAv-5Kb>MTOkR$H27g-Hr7fs`+$P2+rt}L7F2TiNvX!;~F$^X7+gaG2ECc zT$3v%%7p?()(G+_S6Nh$KuRi|63uoy0}-tyrya(TrST*vj-X}eFm5^q#^qsfKGOb; zYXPC6=tEY#Yu`Ljk%H295wp#mPt^g#U;&$FCJFAJtRCN=cl0{6m}{qSTV5IicA%Zy zNH%+P_MX)9Q`fFjUhzB%FX%Qn;N{;}N*2w!x4g(XKd!y_%)}}xif47)YpLi?Fd1?k zP~;FnxbW-JolD7{6)#?I9jG6U0$TN1iKI;b<38|mLsz^VBrh)^x0V_O_?7~u-4_+b zcOQV-v!h+d;qI9uM0{BAV~|x52)D%(Kb>TwBF7^6 zh(P6flPLRr%TYTHD3;OeKs#7c{0v|vvi;o9#aw>RFz>bUJ@<4;Q32aWXnU)^R$QL3 z0Mh{ih32(Cjg05+PPE9K%b41`;)~cdkvF$F=j8C_;C*9ManG%r=bmIZyNZ3TIDPExW-mX(uKdQup7@y)d146!cY&9jid|Z@oZ)ksYkXMl^|4Wni z3-i1Dx#=*Up_`EBI9^ch3GA#wt(ez6Vo3_ zFKLvBW+teUtndgH(1sm@x3CODr3uqhz_M&Z2xx}N?U|n75ZGohQebwaJKcIH72{4L z_|m&$GE?PfRloCnUiQ$cXyi!(RuEuA6Q@rn&_qE1TQ>82>93zPQBvvGcGxZs$jOtu zn-zipHm4J|4`mHvG<&|ohZS01tz;9a^!0fo(55D{CrkR=H_a#@^1H1EJ(b*7R zsyjNuprct0Wnq})eG!{TIsNrp+hyL`uERzLGd?8Ri=BADd*VNZm>q;NmbK+O8%3|>L`2*+P&%L@5u&lQp!v`#A zK67`XCK{`FHC@c`>-=GzqS(hFA3mOr>)0E-Yop}kFJs=1S>1GL&u>JRY5E)z#Vg+a7!1>dogr0;m%>5}Sw!b_{5V*$XGR<$j z5<=+ea$HGL3G4xGC9%gg3&xDT-#1je+<1cKWov7-`HUd)L{B@!(zt^S z{x(h7&}UIX!SlEKLz^E5hYsI13fg_~k;iCoj;Z9;R`J)@KE;&%IQw((N6>g=gY>!k zPxFEwKWm*ESXNA)O&&j0!qyhdN|XC*Dg4MCX!jnJzw`?8MW|Eq^sxjbabMM=f5Pn4 znr0o}eYa`w>p_*8k1NRoDMKRIOa0NsGmLlR!fp+ zD49Y1ar7|jWTlzX4wc-y;w8_W^-7Cky&HFDYoZOlo&Y55Nb+>qd4A?J`d0Ccz~s2X z!h(k`!4}(|ClAaf4%J;Y)_z zIsL|Js3|jQ3dUc?#=;O2JvjFr(9s_lD4fZZun-X8IsuHb5hEsQ(OFD0J3EQgs&t5h zh!D$2)lImAWzc@((IZ2Hsit*t!I9l&-U&DmO5iX680If}KDfQ$hS{)^7%)uL@P=(W zy6!a9^LT5{uE&3RM7h?o_zI?1`Q;lS3>9ass%KMsZeN*-^uE?9bLd$Pc3!{gj`zoQ zzlpxaS8W?dV&GFrKfifCdH(hLmEj-fuWgL@@HhoxThDmk{>NMRZ&5P<;7{%c%u3vG zJm*lfg9R}NnK8d`5T@Y9N{l`l2B=*Ao(+aa>sWjVo0a|EZ#FWUOEz7I3lS5_Volzp zqgL|EZBQGXbRf#w&4)PP&aBYv9Y7(?#(JEdR3dCBs`aWefwQp3mU<6GN1>W@o6>{8 zo$x%{Q7u~jJ?)4iA&m_mwXpLqZ}?0O8ks#*iPl|v&}{vCbs_Mwso!Tqyj~XP$#4?! zy?CVi$4<}Hf#>r&o%?T6mHcF}=$YV&~p;i-o^t36DSl^XKCIX$uO~+vJW< z100j5F!gcuX(yZmC=fzBEq8)eum6dMZ{zjg>|V`Yz{XC!&`A+o3&*g~+2$YijyXt70Y3oj5<<{9Rq*E&BGs zl&^;Sju%?1O4EzXhC8dTwO~Z$<5Y%EK0n$RRbzH2CrLTA;+0d_eWC4HnJ9g=r8mt_ zPAJ_#v^C{@{u1gLfAdc8TISb+6uEQ~`=yEC3)pix+n+J#dY1;(-5>5BiRxVgA6xp6 zGt$K?**^SNNGDu*PkK*67~vvHX`7-u%7gbG1;wP@tTt0=7R2tSUtC+FG-YX$e}duz zfhj`aEB9{&-eo9J-b3@q&0r7m6sY;Q1&sUDSTh_Fin@MO7mMwUaCETUAMvw)r$2Qb zc19v}FF2=vKPs#+F#Ub)UVL<%J@(QGnQ7D1Cy^2hrIfKe@l(D0QiPTHdpTR`_mLU^ zTlnXx;zWQXBNvcI4Fm&4kRrJ$Ms_jo&W~o%j7s11%&%Hzt65Qkl?6RF{F)qVJWzA# zQ!#3>2jg3QHoqL!x*z$pZ!ya9m+ZBxMu(2z9Ut-n_g}Sblf30wv^nx{bF=B!^M$5Q zydS)Ge9<&40?vs z%wY;Sn)RWskO+eHOtloZKCYR|{kx*>a;+<& zKR@QXIh;R;=Kc(nqNKvH&N@s{5<67dwp2<-N78eKK^8v%9La z$wjq*%d{KJtqzaWd3$OywC~GFzDPE!c)c(n4S*F`ckc%cs$m6?m<0$xsG1{zl4Ijo zS~L$7mJo~5qsyUeQV6J{GXX58Igk>Z55CaGevg7zjkDqb4k%=$J?iDu5hDHaAaHbc zZw6`oiE(M=;|R|Z7Q$n}@V$DsLuIArlN1A6^HP@Tu%V!Y2u#7GbCFxnBkE`;<4F~Q zFt4^q>ESdLH2M9W7>NC$f-Cj&Rh4Eq8JHlyOaf@2RL5D5&1_XYyt7OU|JF$YZuC)=v~w@+ zuc5$WET($)3QzeT7bn5(2XZFeJCuc(dTJQOW0c!wwcg61QTEJmDAAPd=b1kmai(laLpRpy&Ba^9NCK2+Fpb+k` zM9Km_t1>@*&hdiI%L}S_GF7af@;IGF4odMLZ>Dq{WomUB zGaeBYgW+UNeA(fQ7-{*tN)aE;`^Oo!a;S#;kznyl0LDXtTxm$8Du8(_9Ey@Vj-Unm zP~3^#t|242`3!}%YG)`U`p zf+r1kL{~($An#|lWV!MiL$AWE+)uklvv%H&zSGQC3PIn*h*O7qQa9ULhMW?fo-T~S ze#sCL``8H@tycf|rM-i8iN7n{6OiEWR3Bk+x|d*hiYmaD7Jzh2BZ$kTOpBJLtiya6 zy>OK*hT8P^*acC3xX{(kdhe2OZ@paDO@>xNPixnYL7GM||tW<*@4BjEZ z0J7DvfIN#{;7OE7r8f+GiL6WSB^%LhlfzP0$hrU;St5l%4y8$vcLQx8U^e>=xPgrT z5!qAV7PcdFv1d^vuX{+G-R%fL*n#P^Jpdm7*l@Nq+!pb5JUY>!NFp5ulR(*(qCLgS zOTPO+Z1xe?B+3diqVF97(D?bJYt5%z9@)m6Di}(Nju0NYlrg5@8cl$b$F7lHO|+Gu z5azn9h(sgD7pnW`h~_6QwN!?xOr5P<>z%CsP1i4!D;e#dnTo$-w-+ryQT^G#5qq|+ z3^~B#)iBixpfKK#>oj1a84O(MMMgoW0I(1rVU?u-gSgWdh2Z=S5{!@?t+zW(nX8tD z>}H?hHn}zQ#A6;?G6@brX@KrHh%8uwrD-z;f&+@#gu2K2i*683kGEm862M-=!;T!T zm6BTu5U1IcG&fm!+pl>068WQ_Gq1nl0@1ydK z(b4b5Dq=I;VXc+p^ZpOt{odWAkB&!xmWTW0OtcvmB7Qv0WEND z>;gWNe5U|7ll*|TPSMU-A@2fBQLM8tlw%o?VEeR`B>n!dpfKSTvT`QBAP{_tDh+fC z=@|@;F$jufkq2!k`Awi15eos*d3nSmJ<`wJIXG>mI1Di)Op@PeSF9#)XDgSf8YI;x zK^~52foCZ6e^=ZGWWC*sGJ~@UL^1)GN{|X@e2gekV!0H3`wNy2*Cqr!r)~#IXKPv1 zlf(%KFHw({mLM_)%WC>@oA^_;Ua!Q$RQ&6a!a4ShjQe{9ye4g`f~$_H4h!UUI_=%7 z>mdO7YMS00nPr(FE`B0QKpr)%@I67_K-4g;kh!$amz-p*Az1MHP`-X$|2^Gk^Qrz45mAERr zvkxeM8+zvKKNfIsb2Ejp{tRw1*Y`~U&Id~E;1q#$dyYdUa@OW#$NE^cgNBQ*RGJ}I z%QA15zV#^8E<~%}D79!UW!j)Oj7pobN>$y;>J#LeJ>>LbOT!@Yd-ln##wwMB$nAer zih-vBQ$;}E2d7^S7=#s@P7-dRaL?2a0fD^@C2o&|4mymDd!%So{%jOS{w{EC?0j2kAb$jmajpX=> zze47nZ;Sfp_|Ig1Lg7w8XxDZv0GY==qSH%H;53Lbr9hwAw}ePQYt3#mF|J%nSl=9u zga#~kv%*Mtu+-@2p7X)Mx)N^v@ahz@B@iY;C^$V+KmC+Sg$6oc62fX>3pT++4o2Ek zFdz61(C;@v2HL-sgQ^G`dU#6XjEZc1oHe>Y7nx~AkdiFJ;PgctTO-CS=Z030O5gQb zZwEW}tE~_UpEkmtrd_js&uvyezzhc7&tOqMfgpJSNbzBt9*y-UR|~%$32z#d?7{C*=ndmjj}w z&dMpkh=Y~rrK#noR;@=qk`vD~7I{o!v~}PJi;x%ecLuYT2QqJ=W*pc z@eiNbYb|eOn&)kF$ASkr7}D@6=7R)s$uqAfM(DXp(8SjXDKtZZfDnKT;NV<*+^t7WK*$|~ z5eC8{h}evDIi$lv(_AXC`0-_}($`l-bo*mpP(B>r_3|ml8fR;G#N*UxtPAk8 ztzKjsl#ScF8`zBNitVP3BV55=!Ttp|NuWA%BF+7zDX3pGlh>!UFVaX@5 zxn4n4y_u|5T{X5$LxpMR^r|q^9At`Idwzj$&ds?;yCu?TI|6SKAXkNJg^bUzQuUJN zM8flk+hz3i(>7e^Ar(F;sF~y}pCs9yk8VCpMDoE)V+4l!KkRD`GFK1T4SJtiw2xJS z7@4h@q$)RzjkQY+xloc-3To6(UDr5G6)4?!}x&0r(l3v z8SVlp!j$ni zi`xhy8Sy`#WLe2A=rB$o8hW>+Qj|!j?e08~z$$zDO$bV@1-{XGDYzj!FwQ^a27h-g<5v;TJvjN(_y7nCH_xua zodu}l1X7?lw2c+cm~$OMzeF~n?;(5B$YcZHLvk8WiOh#vB@coP$d73!$bu=c(PfMk0yyM*@yW`+luFWd<}_FqOR%PJrQH1kpXC z9*6-&AqD)=C-lJ5j1blmwsBH}RnTT2PO-PCiCj_x#RyiSgqIkXd2XN<6ji*@q?8OSRV=Fl79!=y zz!#kr`6{n1GsH?$^RAVq6bUXwd_fD*Uam>YJG^8l=LpMkdxg(|>;1F^<$!=vq#P@Y zrIk+;eb^6EKw*B;v#h&8RgNf(3SJH3W99b#i@L2OUFC>-dY^1j?gWT&Gpga~{$03? zQ=32PF2{5qKMZ{%#N;2a1?HxXq#S6Fcf3q`E~*h=N`r(R{fbHoC@ z(Pnwa+b+Y&Zm=8ZLp| z_dVPo+)W=E;Kp$A?LTq(x|7n5jf2{BPtAwR8oH&MOq4o$ZAWE`3Nvt@^&QTK&igS5 z2d)*Ll|34A5NeS=;?opuo4+1AXDBd)fxTaC|NNTx+UjDe3S)NC4mmY4uXRRAJz@3^ ziTB95$n9`)7tl0Z^1x=`(D^;D?PLF?UAOs%t&kn>{&n?t{{8L`hQ_9fXQl1y?rSsT z(=?GazQcoFLJN1$b1h7aqb+}?6slIAvsyI9RK7u-5ll?YG(`!d_&BUKDGV2hXDj+0 z?FZ(UYgAUTH6k`A1dRanA)wP6`b;Vq5k^VJis#?4J9$SzRUe}4d+MIo$+wM*+VZ)s zp*zExg!PI8gMTFGST_dn&YoS;5b6<|s(aRcLh<6&(+g3vG8_KM_j%=wSCjw#&^3|r zU%NK0IvWQ3TzR(jdanK-GzCL_JP!B&qEhMq_%9&(B-svFMm_|PL5cjP5driRfKXOS zF5Eh85J{)~6#PwZ79UF07sjV;V^uOXMH4q`rB#>!*;ZPv(s$Ys&`b&zQaYZ8&84II zvXB1$UQ|$j(6&t7C~$(4w-@F|MEevWGw@}^A&oYTH0EtOJ^{|IsgVKzx*G^U+8WGO zn5OVplueZqPEFBt1Bq3uMo?|{8l|w1stL;}p!++i>y?U-P!9@FwSQJn`&)HS zv6C#{lBu>r(Z&F##ON}#tS8pZ+5j&SJ~)1)Ua55)c$+U}4f`Yf+05}d`Q3IU$_57k zt_qf>bQdb6X2O8c@yuR<8YO8&j*Fo+d-9N)%mmR;%fL{Cl4O>f+pe~&S<>=}9BxH{ zg0uz%8rk*0q^UwmKu|68oS@fUpz5r(M+c5JO`)-ycDytb)^N1Hn@CD3zdLeLE2%iy zt^0GbMtt)D8R}5Q-I7D+&+m@jZ6d)m&iy?4^;bk}sKTFSt>pNESMBQS2mV%X{Z$I@ z#E6@eUNAqVa6L0@HSU$0x?DO!l-FPjs#g2h6^>jEOukW){AR#+^>Y;O&7Y6>qe^(z z7S3!C&&|VYt{dl8;p8F>z3VK)ADbQ0!I{`8;}Y$B4GsdP_Vf%6;O#ltd&C8er2=r5 zV~oSLOx9{lxQ|Vy{}@Y48+aKQ^zJmWlQoLgHc;@CHX4Am0n^8&`aMBCobo#k+~Bzdu~5kO0cA`Aw&N zrxCOmfP`oqmy3l+?VhRgM4^{H7w?@8dRpD_0;4Uho!&Y8N)-5Vqou?=ad*zAimf4P z&Xb-Tow!vy?#=GVgX_=k%P6I+{@9JZaKc;T+0bOgyJl9OHsOo*}GQ<_0$p7OY$tP}xJ_z5bb z!aZCeVuWrhDDGMMvZMDVp11K~>&07J5qmUuHlR}_>)zGpfMKfOx8TBwj*b^guR0Nr zoZn^EMF^-C7dZQ6+rN2He|huzfiC`U{$p-nm^PF=GDiaZw5X=8xXLRSEY0 zD20DAl0rZv`6{iStO4jIi>3sSPXLaP^}zgQVqgLJF4%{npIStvrDv1v0ZBo5jEO)W zxM)I+I5jXnH-bEqn-ta(GY<+~)`zKa0~~XHArJ%%DOH>#DMD%nkggHA0}4#MBtlxB zt13j&Rv`t5lC)vm9AU1d9`n5k;u?W@Ns?Pw@VEp?iqSzNBjG6v5|2KVo|ErF-+qmM zVHBoXDo*SBL(a)&DhL_|3KJas$^at5D{p_mEiR=nmb>nDLYqFq% z->%mAvojZh5soFr>RPRq=hr>#zF`XSKRUgxenm&dUwV!3Rd#wQqjqVNIdCms*orTe zzhgCB>|ZCm?dPla_8;R-P<nqL z=VZwHgf1LyBg@bPf8eESvR}iuq1*?+ccah3>Fwq8_OhH;krUgH* zTwrj<#X!NtfR-#Lj(9H26cI+aNFWXvGo2)ur!XY#k1n!m%xfad-QtD5Uv^rbJSn&3 zbXhEr;0Ev!P2PWwZr24Qv@b_D7ee0y!9&aB2Heb`#xG^rn~ug(Wj@0W;l%a_>a zNlWSn^~4{FX}nR~7vO`|B5aXH^#8gK>uHNG_?E)f=@?l)!PLnu8?^L3t!t-=wnsL-dVKAJC9Yph5O*h0aLN_fIz1I(mVJ!SK*TRQjR z5$I`2pUX?Cr0Apt8%*{*2hqi8W8w^;(-iYCk zq4Q5VM)ycGp4|Lt71exv|Jx5_XZah>&bj_)Lt|Kt0Vlg+C!o*!%-{WYfm7#s7jAV} zQ#*OC@pGuR^`w~x5=pCN=Ka!?MGQbv0APh*HXc{Lux|M-AVJ*cJ(zU*^8dEJ4Xf>Y z{|}|`-&zHnBTxqC4%Wo!fe1KxP6w_SIEoXs^~IH1N8v`nM{!4N+Hl%g7Wizsg2A3l zG+y;}vZ-q4D{+NwkGps#k zEUstbg2K~&n$$@F#IXYD3t%8DKpX>hdkzBhyN^wzX3jl~e_Ybw$HYyjV?|{;|CDYv z$%;wi1ALyGKUrY!&>wCrAlD*A(@fO_qHXF>9;G#J21q;8F{ufa2ao!pzGsmBjAe(bdAMO6=V9fbq(3l$Xy{ov!8zM{6*ld51~R77LORK?@;;!*UUMPFyi^923g+WP)h^BrsW# zDMgTB3e$FS;WS}8Oe70L&O(W@)mh?|`6$S=7)xQA$kL=Eg;I&se878@m=+xkbfhT& z)GUy)usp2H?FeU+nnf4KpiI2AeMPpgwtzU0P#>N1Ap~Px1D{q%Xz%X!y?H7N1_2)+ zF0$f|-Sswei(QWoSE_qD!FKRA(j=lkd5P_+V5_tb|JHN4`_=aGn|7jJ{~3At8JqXw z@|SY1FJZ4>x;AQ)tW48CT^bSi@Mqwqf!Ql`GDciu}>{{8e_|4JlaSKpgMZks@flh^lMTRfpN}RxpA2HgfNYUM2er+#rS=fx}VwmXQ|BvGM>vL{aC9VFC7Wwl^F!CMm6Pw?8 z6Zo| z!w{(Sq(czVnB$7H(hdO+(@hP^u=ZOE?!86uW@F zv|uV5vQmy!ZgbefaDY!RZu>5@zG5im6LwGlzZuSC_mG*)ORt|MOPXJT)*n2pFu8HW zzzw&#f7zIg8cL}lmvbxc7$#yA1PnS*12wi1Akv_$VLqZqWn5ZuIu(UP^o{N6Y#E^= zacc>=WSVL~N>---=*lDaz01Q<1}|bTb6#s7L;Tgx=0n-SbsQUOf{;MMbM7hM5R(m6 zGi-$jJ~%NI z!+U(3C4cy|bnfTdZljea_B?z3G}15U-qb{!5G(RV&xV3M%g5|}TW>TvApZ%P=DGa! zH^X!zvrka5p#Z_(l)z{(07=4iL)8GtJxD0AL7OF+UYd%rU`c`o0ZL2;h|o<7AQ6P8 z20MQ-my_q3?69$fw^Xw90uXaM2v4We7d)KHEKdchRHXwJDs)*~FB}C2PeX|qigWt{ z`7}MKpR8(-dpeXMA;>ynL9XO5q(2DCqbx;5(J273n`Rjlk*=+A2*(Mh!|Oa%_O9nD zrn~o>=BquZ96O*rG7?UEOY}Y>WRLc~_9|!p_1$B$T4%dY1bI}|Lkv@c@;%I?&XEu~ zy61DG>uS4EByY{N#ORarQPhjENxtv@XbB%sv${~xq8hFw`|s!Y+mJWR0@E~Ds?&ii zAWat~M^IqFr~O&lm-{YU?zj)&ZtYm;cNswtJFo65kL92ppnP;Fyq-bK6RQSsjC^y zFJ4lra+lh9^qZG#OSS#u?@s2K=WX1vd?Lp>zU(wxdx_+?f(vSuPUJKxtPTZ7f%Cz% zR4`O+AXciol4_@qmE=SPI)N9==d-Ek)dARNw+O$E{*%^G)L1_GH`V7v-hzJKiN2Hr z3&b*VKdfFeqL-#4X#>&%8N6@npeZOS{lP^`fz_mOjb?9E*X)Iz6)t$ z{5l#okluUm&f}1Q9iNI%?0@mqz-;J*pla`Z^);Brofp1+N*Xc1i;rDMpUu7Wm#U!r66Yz)UKEgODp)1X^ki zXCMGQb`Tmz8ZyB?3nRP`P}_;lQOL%JwG4DG$4x-@8M<}!+1c7;u}5waO0S7JxC)#% zU?v#h*wP1!2^7oT)EaGu=!m6+ruCv94}(MjAt0a)zS1vV$Cg1RKRJ^{oBss|7%hCg zdkOYK!|kQE#FneCr#k&}ILm;fGjjaI=ib|=4n;))lE{-4;;Pr*6ED7To;NgF?ewj@ zp;=kfd&6a3JuEiyyPE>Vi6k6h~3 z`gRF5D4wfc?jU$u7}dZjERqk<%1MzsC|87<)Z$9iF0*W=~I!hwr`B~i!_f4_I`gPqpYK3Qt#ub>$me~ zfWOYm0|m&p-0c0P&DS1Spnn|u_lmcl{NhdJ0a^@ZSlv{xUIvp3$5#>A0^_EyL~e3$ ze{hdtYT!6STcK&Ntt9SxTUp)h1>*N89)YvNf5-bqpTFpmZ4=D>w2 zRmdJF6j{|bUC+LMM58u5r)JmLVD2U^PB)s&vbo<1Fkl`018#p6ekW%w?^fb&VahD) z=FKRN%n0{gYQxSE56k8!`4IN&Yw7J*9nFUTV`yjbip=4a8%ZH$u&Dxbmw+`V{Nrba zmhTL{@fXhzDXfToV0zgXzCIl+q_bWfw`qfEO_p*^&a{1{RXxfta{kYzcu|u4pHsel zT)R9?SsfZZz}SI;IgMiD3}Sj;>9!rnV1Crc#fNp90{KW6hzX7)f<2|6N$59{M*etc zOZO8EsIl)4~ZvYOYrKrqgI>B}uiRd%2ihy+C4wSP1 zh!12%Ho6t?z~OARs*iUqyiDnad4@M9>fLvHtDe4fkL%NHNczz7`P@je($k)WsQTf zVS?u_UHGK=tr~v`gRGTCTy$mA_p-ZiA0~H$*gh2t8c%ZxB9ODwuHMj3ji=c>)oKiuT&KT`ALG1AtKj~E9OEf(0?Q$`^Zu5kv&(W zR-G9kk(*movY&*&^*xRXc6njUJ>k<047BVAOZW8{BI3kIZH8{EIN0Esp6RIpNdhO3 zAha8GMx4b*c|`1BrHG)S^;kEBQ9fAI8O@R)wgG8jxuVYlf&oK;pEw9~N_l%wRK{~@ zUhz}^P$zEoG(aj7=qV-btp?_pe$RLy?T^w9|CZX|M#=AKW!B_nrrFrN9s2m}in%i{ zaXrs!O!Dq$!udUV44rQ-;1|d#0sa2&-wAi{p$C-i5_iEvc5?%So{Fp(+MbVSA3jp` zwQS-NG9rtm^k1Z!(Kesc=_y0eU_qeUPoj zry_Sy)nPF$0%Np_`W>V&sKq8SFecL@L!8WF8ptAd_{F9I?QHYdK4}Ot8BBV}m?fB% zSJOvN?O|vtUDU%*>Ih$vmrGLB=f=+ZWbf;j*UdnXOO4g5eqGhM{Bp?yl%-<1OWwYptN*EY_$#7k{0g7#ZRM`*WGnvFiA@;*P-{Y}fjtQ& zfq`&#kT4fO%VcYckpwvFO(OL&WG>lNxn8L9E?M2FU!z+!D*Ud4HTyP2U5npryhI*^ zVPWWChJ%wygiVOanMe$Wyo!-Ac&a8ZURY(+m&w%y=pwXn)ERAbb^{6TMk#LNO5oTM z4G?_f%Q~NypH2O@RWJ?}dDq9KZ&d-Bgf0jtA3rFcUB2@&&gv8QhSwrv$bYO|>v^1( zw^3qAu9N9#HrMoO<*oxn&deY~_M-8bb^XgT;Z6HOcAOnObX)9vqtf4H{vAJ}d5iq7 zqd^cUVYzA6$VW4Jh+)*|GBpkKgtnLn^LdgqPqTc_)0q z?k>IZb6?YZAkBAfE>>&sbCgc@V#(Out*(6m_iKt|I(I%6-WT~zI=Sgyv|?F!sdU0r zHKMXzY@Fm^Y>IB&i|*9?vU}iZ*VMP<9sB#|42`X{ypm)6X?3FfUyJ%@7Pi`~ z`@hE&aDx{lm>X$P>nrTvi0z4EHs>9BUqlKQa@&HdIac ztaa;~!s5D4!hmwz;@hnm*14U`c(_8)X-Da zQQ(WU>2EWwpJdhwRD2rVI@X5#lKptDsn~oM)N}9q=!S|rHyd4^T|0K>MNdT;74f1( z{eT9~_EevG#>3G>-n7-{MZWK?(T#urebV^F%bVe871*8P*6)8zLtBKU$%3Q}*fMp!8Y05#`pqOL zHSDS}JU;v>fo;=EgTmN0G`}`Q00^nprfy?r_UvW$Jo!fY@aM7v)Q3`T<4q&x`h<aT@Z_*7r}iw>t=v0E${&QzWwuiz3QD z&SAcBF8})>@pw7B(6|4i6aJfb`2XPy0J9ZLNtMYS$JzF{dSJ*2A>t+!>lLa7G3aS= zU;;a=6CUPqglr=DHi2OLDv%9sCNse}vUh4fIU0B>uKh!edcvPjlS>K69fuT7^}-s0 zjyv|F)kEzZP$tn1^=YSq?Xe1(K5@7wfoNfTTcG(F<4=XgUVyApIhY;D_opJ1t6lVm_LNv6HcYWcOq3LiR4`>IYW?iUN^FiQJ$EI`00r z@BlK#NRc!$*RteCtr@7cD|2kIgJq4o)?oVXpRWEJXS|t&E5;+iGl_FIj1wj-Cl)I|>#%?744F1;zA-X)Jbg3U zap}8-zzD*C$E)XEv$tN_U114PuTdywDrn=%h_9{`<|!cl{9mNKcT`hd_b!@72qA<} z4LzYr6OvG*DWOUUNL4_Tgx*Ao1yC`x&_ZvaNC!nhX%=1!31BD&L_q~brHP1&C@LUm zPV{^4_dDZ`bN{&GtO0AUl`+C#&$ag4b3L;>&St2orCs2fa1scmj8GiUCZYRM4hD)M z5Kj5Y2r?7L0gxrlF&H$q_Ao=Z);EKRmIS$vlaQw491e%Ue1UcRZ8%=Z!T~Vf6G9eK zRGR9*X3}_UX$u-|PTNvwRL{^YN1?yK)MTw78ser-G{g{Y-{cXMH%NIXUqdCID8N~D z`KxXa%Aa*yrN~hI((YpGLq%&}dt7>^B<~IeikxoKq~^P z_V(fQK5$U>fzSG-zI=5_0Kp4GVXIEx3U_N4zr~(ce4;LYL8D~w-Q0!;w{a(ZEb-Fm z3%|$l?)15#c*AHb&U4ZteRgzIo;a6B@;|p0;-uNmva-x+Dpck$Y#i0r-~lmy?8zlb zYZOyhw;a!WUr=Kp&7#EkFn5(y+r5 z_Cbh}HY}<1tZneMtw1lopb71`37->h4nR%0dWW@Xx>B@bm*xSqM!Ax}1lJv_`EMs( zLJ}g6Iz;kPBM)6z?|S|3-upc9=I5VXxcz?!RQx~b1Rg~0Kxf40S3CotZv)G#A?Q|z z3fo8-MTk^@gS2s%>@{yGRs}=z5TnUzqbiF31iHt(kO8Z`jz&@Q&`QigIcX85DD3Ij zj_IhUW0))_Hwn6wxEf>0)~*jMRLy@D(MY4(9A9SJ$5H%24{X#_$pN%n_St?K6^B9{ z%csr}A!rala!p(f0M+s9LIc3(zH~lCSQ(&ac6IV=M#YHvxOk*FpH^iE3H97+H@0YX zpyw3W&E1OMzL*m5b+RvMZn{TlbH({F@uR-Qd&S&|xQ?n50q&&@ZCCHbe^LdXy2i2l zIvMZSLkD~^c2&2^y?RS2u_|lyRMm+8zCmAZp4s<1rCeWbFSkeH-;}uxo&bN3Qb9y} zRD|P_CnUgzt!El^!lt=1g0>VaAFpI13}~m+S}$q8yByg_X;#I43mXiw@7CK1bnu&G zHY8p8V$m-M!&ng7!BBpA9XtisVU#I^#u?7W2iufnC55rwA$vq}VY0Wq;+;p04tFv- z__iTW?v6P3sa!v@ZHeRdiwp_;VoSdbJO6#7u`$cdX35C)^byB2J^ejZ^f~Z@xnbE9 zu7}~WqQVEW5If52i%Y4()xUfj91AEm)+ z1>9LnvE>n}U2&D)W+IoT?^rCEhyzmt$-07Idb6qri=2e}IFK4E z%}0`y#-qvowGcCT{?dzV6e!7htyZmHDT>IkQ56L>3{wFieY+%@1>%PQ157=SJV_ut zCbfWUeAxDo|4M$u9GUWUr6)=`wC3`Nj?qdIxc`TswnT@=Kvi@_MVa0BH>g#Ws&%cI zOS92ea_dD!=>(HOftC)W4vvGE9YV%{bMT|m{J*bP8C>5YXY%O3cM?jtTfc9j5sg7n z#GyD_y?_AElQTnLR)|YuV7;WkmcW5anhdSlZxxBNm(i9K7+Rg0fJV=v7-ATLyiPr~ z5iLXj+h%NT?mgfnwFXO3`^PDI4Q;3jJ3{Cr% zzp?Ky_uc$SU#>Y~WciO0c*Co*XO{Q&&7U#%(fW327!d#vY-GSi9u`S`eN4ZFzCU-@ zsp6;ktLBS*>MI)z{#ipt5Yq@9OIc(z>={Sr*PAd5iSlUmSv`gvz(;O2y5tu6NrH;( zexRXC5lAl8Joh4+QJ1q@`YNj^x7=|0B7zZDp2klq_fn@xpj^w*IWA&mwGPyWw#BUIkW4AA2^!4_seP( z^%8k&>;8qmcl@XOb^X6XF1I5Nb6Y<|05|1;C%(XW7wdVW3>;Ag%HQ^K^7V@I^wpj9 z-k%{XTbQ%Usvjol0v(A$0+qkUo2$XIZlujn z=Z8~4GW9_)a~c=~2RKjiGR6QVr?rMr1Px<;>(lo{y|ORrMci7`?EGZmrU*LksWkbu zP4%d}+ZZDHNW*7;-3Wc2OeRe~k5T*-E z%<}J~V#dSu%WpfWN?%S9tI?XkP6l-#ST+Oxo?*-Sfp)DmApT_V({;DPhs}kn%)@PV^N@IIsU)^WPztdyoh*x{ncQ*nh+sFC%rk zwB#zV3K5EVIEJ{QHe<^l%8{MLu0@=}d^qX1|-}CKDF8(aF_CBAD1br@g8s6oo zfBO3N3DG;5UyeGOMfpVc7@WCzemL8#IM(^35YX)L#y@wW={lD=F%O14u0Z?M{l)V% z2VwE8dlNjNG%u4dcu;hfrgvOShwwc~&EU$HyHBoF)X;{4yPU-1ArD{K4PH z{x6OXKtwIjU}x=Nlaiq6DD1d_nDV#r^}5P2zZ&B^n|*`e@jjnjYs`Insha|}ix2Z8 z0zUj$FYFN_mFTH5#}9&qB{=up4MLm;Pgu$yAQitOU{eRJ78JnrJ~CK`6ha`NF%K-G z`o|}_`CenAI5KiShy2p*ojmL68*kZDWm%c3YuWAqAo51o%u`1Gd>u~ zio8Hix{IigQ8Tt!+yD`02m|x6oDm>+5ulc;{^Jw^0A`ts+VD{eVDNUW4vXo&(k?$D zj%o>m){1{@qG}69| zXorvf#)vJW-b365+a0l%b0XAKuoU%=r7(}Q?ep!=u9+8a4iykOmCW9KJ_#zk;b`#@ zvw-IvAAUn!lAgc?sD`{$X?GAl2@MoUwgQ-^ib9Ms^dzEFp6o7224Tyo<3gE5J5ep4 z>=p`=qF^pBLJKOdxLnchV2hE9s(7U9+sCkL5lI+6n6+y!u!)}({$!HvyP z#{w1_#z2`%-XZo-kONQ_Y$-s6(H<5mTanOYX3O$@esflBkm~)@a0?4XA}cCRUlC;l zJro{U;o4*;edgs=u13PE=U(g!H%IE?_jgU)>^#4fcqTr~Yq;W;%1qgu+ExZcm3OZ{m!kq8PeD^pZJNH6~@%CC010a#OKds4<6M+VJnE^=K5T+bHU zo6ZhQPvevvDDU0G;gDu=uM!y1*UqFX!EoC~?tOE}ug<~WawVqW(uJpw$b^o)OkFpC zee=WbsmSryqT7D7o4c%7`mOHgA}zAC!e{Uu!6)8pxAr3>sjz0tXPl=%j9NN3tqEJ~@O>AUO;= zovbP_mmDLmo@T?>lhiE|pS0vy(1N=?o%$QiN{K zX>23Wr3$_zX9PRRc3^Vyp%R2`agJlDwhY*L>TWfDF5p2E|M)VW!W8=p|IlW>zYogM z%1_sX{`8C(Q9kW*&~s~aYLq`JvwnCf1S*yPJ6v2KDXBRY1kd2m4&zW(89)5Hrl}bg z#MoUeLitukR5e9aWicE%f^A+nPZ$(Yt$ENR7IOTF2>^oymsuHH)D;G;BgL$xm)i-_ z5hGzwYONBFPg_zym8Z6 zMZNST{sQ)Kv!YvV6P{Pk_Ex=nm&hjET|LxNt?>7*|8#G-+J^Ir zzCa4fdCV#2G34pvoNpf&#OQ*Ir`jA8wNr@pB>*8c4kk%4)e$1Ist7Pf5NW0Nc$VWF zHQ1hNe{U3=E}P3hwh?SBg?!`1~D%WF4DgDoLYfvzg5Y6J?7%axmNu) zj57?fR<(A z&_dKch7}OX@WeJUM4E3_@>@ruFJdDZ2g$2w8GtAVFlrLtIJjQK>O?GSg4O6T{c^G8 z```gxQ|Pr&OOax#Dz6eoKAcai!czlx6e(CPo>9(L7SCEhR`mf=fPHHK0DIvvRVG3Y zA<4&xP-R^Ek_-r0G6j{icFtW&MLd-Hr#zQxN7a_@wJ9ylw^w`W{8s(^Yme&hmYVP> zn`EQf3^4*GW{{i{0xzOh^co(Z_R@brBrgZuqjzd{P(-)$?%3T? z$VZL_^H6T8(mRCv>;gv)rHc?IE0e%X%}0>M!RCX%$deEt2s(Z(pkOz~!uogUO=?<- ztuXFnk(C-AJFjNR<5PF82lpkr8KChADd8v{4o!6v@5Y-3~F^QyQ1#a|k}-PM}%&nZ)=P~K4Pp4=X z;M-@~^W3XziWUwReI5I{Q}ZWwX%)Hb?b|Q76aEG8a5Fh}+qJ4gM$~bemJ*?)INBSE z-pBq*-A%X<-F0mDqlA@T!yjIKbc0?0ZN_^ncrBgxdf{ID&-hRO%R>Rt<~jIMC_ZW& zoqOKrGj+5q?pquJ(obf=>`CrJi)>Qls8S(uYuJnPO6c}RZKJjh_>81Whn_|wilBX_i z4oJz4O6Pr(eM91Ig)q*13i5akR-DKF(ewoPUei(=06A+{Tmioj`jd;2c+ z!$!rAJn8)W097ckJLAPMD7C-DC29O&37?`TRFQsqJBer`a4+Ld%Moq3h!XukT@VI80X~>c054?Pi>66mg9AX4h`Y5z{T#FvGgrw*R13t9 zk9ypA0~0u(F8wipN|QwmUs18LuzfB)(IVV`d{6PfD=X1k`u>MIGpqpZuXL-Dzk9juR_9fM`@OI=??=zoUIJ>kjU3ya|uTTo6eHG ztW_6II?qI(oV;{0@a9teiE|SA`Z7s@&O4mCog7y~`VWKeZ+iktzF&S7ToWR%pD10E z))TwO!1s>||F>QE_xdM(aiatP1xr_tjo9jsFrS1hXlMc-Ph7Sg8z0tx+_?4GUlx#~ zi^O&XpW4R7PIjGU-NYXjn~)FW*pg-kwqXnAE_h;UrD0W&Z#aX2Gq5|1mVUJ=pVLbGlB1=Bdj+5{upev1WxGP!%Fg|evmcc&4pxK2H}Ac^hy%hJK{>b5+5$9P zeeR2R9lR`ye0gv$|1pP~{Gj{mU$gVGzbq@DvyV$QG0xO~{%GV~SrXn~#yfN${k!hGclq4E!)t#7 z8o9aep4j$_RnKGLf;>ZE$3iYs38`~DZ$PdcYyPX+koN^{tS1f?ByM3vc>-4jn#)tP zg=xanTFQ_hl+Oz0Zz#E>IX_DYkXRB`O$enweK&Y$;5bJj2nzg7AqoWHFiw#b`~%4F zy*9Sm4ApeyFy)|+u4mqxM_EQF>pcOhsAG(DF@2zQbh%#2f+q%4AZyIJc~>T;pm}#i zbaJc`2d4(D2z(9{s=t%b{)1uhD2MsJI9KH&8kjO&q3;l=W0K!&N9|x}s*^|3rbj2~ zJ)lV%cy`In=9wbczhyCG*ncwci;-P4#pmNM`^96VR4!K3yK0|?$Lk|)w|x(LED61o zylIzJoUFrrJpDTbpa-9TqEHKbJl<3u`*JJ@0_XzWMK(Z}d3gYr(c}ITxuA5XH~wv{2jU= zR)H`2r9!1f0WW>;i&rxeO~!}?uvthZ+4Js{6J#ZaIiPJpu@(~Dua$t4&%?cRv$hIx z)CB;M2&Y3M=};e^rx0Sd_BnI5z0dobdM@F%j0&k%L0Xc!V1f3bjpN5hD*C_coVog{ zI{a4M!R})p{bsjQ9?wqK0}V-5Hp(IIUCxb5o4&)9DE7O2ZA5!2=4FbTU*6oK1>LQ_ ziL7#yq9)<|_`6WVUHVo^4!3bwz~wJ=eq28^QTNN`cJ#>yK#N%$Isi(<;o4z^yU=rJ zHD~b(fG~7VW_$`nIzBU#R0wQIh~HoM6yO@xc&{k%()B@)hsQO|+ILn=9m*HHbKkIK zYSaCYdjH%FntVG&`n4sLH8tw&Rng(9Ywk5kYmEK2<@n&Z{VL_ub`394?drYWgH|Rc z4^R6Q2ohS9|8czAe0lZ$_@yVh4v%)szjcjJ0Zsq`evXH1sxpP1q@F&vC1T~rSPX>G zf}#(_Hds(Z01-bbC^C5=evJeRN?d7S zB)s?Qfx_sL8|Chq8;lmYGK=LeE$FLfqI8vM0fsM2A7C?(cO|ro65U)icG*KuV#`mM z{rBNtIrew>>%yPQufqc@opk_>6fmTpu{f+Hc6JyMQTE4D*g?Jn+CC7geo+Dr-z++_ z?W{O`0pWCkmKuV?0(oUyjg_@ncfii9lQ1+>7#_fUE^5l6@^{a)xblEQaO>##bw>y& zx8b5t&Jkw=M(WV=1b=x>fHSV;8~Xuxadt`|z(5WQoG6m0~sEsq!#& zYi}!f&kUNc){OMb#YS^1cNFnvLdVZ3NdJ?Mq?XclMwyyYRh4Yxf94Va$YQ?6iLuyl=T#CAJzNgi-Z(a<#lCJ!vdqRS2%1R zstkyj)madeb z_F>jds2pQ3VfM1;PXSRh3gw4sNy>Xm6iFX|g2d6v-GLTc1yHEGU~)54TtMq zcsrVa4wxh~zcAlZcAZfiUqy_x3R5!DtO}QSv)pgAm?(UWQ`wew;)L&=I}tgK8@;$8 zsaTWn&?L|~aXvujruyLjpibOpY5$SlUlFcGq3}7JdZH2aFwRx?wXCMqCxjrM9TgqJ zxR~ih8{a~kiDh!*6B!0nqdG$dbGq6Ts!)Y(=`Mri9>}KlM`Ft*l(0#%Qihpn#b`Cf zPyv2PDngsGNE~k#&j_+bNPUG!x-JMq%@3`1Iy62M^yyb|{-LX_1Un%+EpFp0nxkv` z4G;RNFHTb!e!luKF~;n4MdgQ~_km+Mzo%OGe^l(uG+$r&<9v9PyL`>Jzo>UU_43l? zy6~5JN|_g6NFL5;TTy5J=o7jv@|Su#v@Y)wrEWLyBISKfkX;J@ba_~Ooo!2&#MXpH zW{zXso1i+z*AsQ$_G@OQ-PM(w;mUw=>xTS%Wer>k~*R(s+7ZUnrNz*J@j6n;x%1s37j zO_@Lp&Xx$S_Mw0M$6{B8rz#Z9AOTvQdcmD-(N+hCCbWGs`V7I2lFR-1-^c^62&>mLsx5S~woIkB%>3r7itBnWAMshnuJJ)`Y(^`E2OXv7hIbyWcbW+Ht?>3b z@N2~A;WxDXwF7VS&%AGRm>2tRW)#n|y4lO+_Llbc{`?io{rd9E?N$Ex_mZuFB7Ne`(V}-roJ)w*3G3r2ps1$CDmI zTY_Zhs%{xJDF-eASj`{I*u%+7P_h+GGs@Toi#gFOgG;m#l19CI5a*e~zO_}lRX^GNNvQLw0X9$oC82mP#Lg5hsU?rD&|EH`e)pF9d);({Ta2S*u$T)z0{lc8O{pCB^*E@mJ%jyD zxq29;kj%l>0k>-vB(N zuqM0};>!Z}&b8mLnTq0(KI|6a#V&p6=$nzDB=ts&zdb`oV(=tHegp@NOW{Dq9q9aP zh8!pWk5I<+koZx~Bp9`x?&?h9paIWGR=8pkEX_q&O!y>8f!xRuD z(*l!+(*|vh`jk9F*w+#+Tg9Q^&~jOnA7#^%z+IJ$O7S(52htU9V^ng}_#di=) zaXuUlCJh$FN@ON<@ct_>=(gpVm-jITXUW8Dode`#H zo{u^Af*m1h2mS#=O#60}lUiqQi;885yfQ zn2W4i5rR+`W%491Y$tXwRE}_e`N~Ksa4(o=-;s8VPbZWESg)iiq(p9Bl81+;QWem8 zyXttA*QA0)L^4H(YTj+tWrrT9Y>KX{l*$&!_st@fCuiPimvW)-Q0%%DMrGIZHMA6U zIHxuFR(2}fk`P1q&L|LJ004O`DBD#pvLQ%2jyB3fDdu6EDKIJGliKTPdh1qaUs(eW zy-SL0cTkzLc!u~VRL%i4aOz`2uG!~>4YdxT2fqPqm4BWuKBW-0e2j{(``#|@;%=RO zD)C>X@V~no{x8NjB^CsyL)F3=P;c{ymzQxyfKHqy&w!*z) zM&kt8ngkt(39}y`?&8x1DEn^L>}|VfNboW|% zO(0F+1`g_y<_Hl2_>T|qFeJ{<8D@cyK_KLW=x7PVAcX$>JV`=3)f@#lfR9MRwd=AhEAaV#=v2rNI#{jhSeeRr!rbJ)!>DlRUjbUc=?^e+I0ohx2zc+&2 zQ6Ec7J%rx^S$Ue-*V9WrnvbMh*7=Y9@W=X!3f#|o&-`s0+n;yLE^tdWlAvOujJuG) zLIEJGe{n)i9C6ZKmpV12>ZWjuw12=DUB#Laz>Hf+&{+jA80!d#$n*r|Gj9RnKB?`^ z7A|D&f-yqO04udcMhWKVt=~Ujb4BwxfvF>F8XEmhKjHhZ@oC1 zr+@xQCcE)5yyVm1iI z4>t_DJr(?T#P5AT@XAn-qE+;ZCluoWN~JWpJp)dO%^o9j>4}N_5?aAlf}WA|bO&;ypV16UCd zsgRBvqjMf~?T0q8H4tf*4)2X!B;>r`o`Gl!SS`leS{3s1Nfr7PK`JH&rV$7}`>T$_ zq`A(qTPs(EZW>(UYKC1(Y`UgP+qqGGb$whG^qiqAy*V_!BV--A-eUXm*%{yaR*{@Q zyJE`=hmNeh6<@;V^;z#+jqQ5!{5Q6hT=q}c(X%@Lt}O2|{Q0kW{pW)V7q(ltKj~m) zecV$^OSqJ>zQlx)re18Pj?(QxBa;OI=PD4)JS)sn_EQS0AmbDx510i)@DZtRj~#{H zk8g!Xz0Rlc2?F^g+o?ag{auntDd{$J&n_J1sW?K_unJ^4P=@i0q%nt7L{jbvnS4&Y zgqSEiBJa7Xe9V#0VAt!t2$O>dLH>vSu_tweRQBodT$Z_Bt1$@?y7x|$e(irN8C4zk z(eziI(KD|0g;xx2p-J}NC}*Bg07OU<4aFDvtn`LVN3xaN+eUL)`VNLq-}Yy{r^D6) z>6*1uoHNXMN7I-#k~mpkSoax07{+#Muxk+Nqv@BEUtVf3&F5UR(jO*{s;nzz<`_ue z;^IcqaZBb&12%ARhO=ZqI|kP7M`b9VhDVi4YXzF97uq%T0AL7Nz|jeefy%s2D>S#Gxb0?k>;2kO{3_Y+s3KZ zKMVe!Rph$8`OoALFJ6H=4MgaeA=HgYBPdP|!6w;K-=@Lcyvxz5_LTPVnUCR`m{WtQ zluEv@Cv`4~`u)RKOSS`Sl94GplR4q-Fk;G_XUb>=4naS0#kMYfRmg%!wKc*LNRs47Dt&> z97YkGih%%Ht{e&B!%$g6)dfWnhkTAo0y0Uv3o$fG zD`LK&%!-{Zg!ZPB4`I8K*(%p$AG5==qzY;s(1=u*(ig55AL&2NAwOsMWrercrUm)s zt5>kur_2EkOO9R{=1V%}3Hj&sQsZFTd4r3YG67pMILY&tBQL#-&$(nT@&zULLV$5s+ueJ2c7X1`ZwVjX=a@~&z^LfiI@Q2a0VJL_laAKUJD zcZYAtUroCb`jNZ6YmxS8H}{Og_oHzD@mV0*3k-CjG8EInTS@ICFu=LbnU?_>L`ek( zp;=J>ZZr+qkM^@Vb!p=9vLDK>d4aU+fk2FjI5Maff ziAX@uj7=A68UrVll#HVQ)YhGW%A=zK>E&^Tus(o2__?SY99T&(8m?_VqeG{fmLOfF zLW{>=oYKm+o^4iX>JfhFCuO&Av)oA&k*nsG6g9FPP#{$(eDj@1Ow9>W-L{9eXK-@g zu)+Of@9#ZnalYeyjz_|~;Zk04=C{;O&ULeY7k9IFCkFtn1%?bn^b0U@OdWJ@%f7hU z5MYBSso6U;H5*?fRr^)66W#u>*`|09HiZpYgkXUhIUGVAJt$@x`mK z>ULI(r-jv^lKs?^i_a5VPbFA)<_su!`RoYTPS<3FNk<58$DV2az>JxacrtbvX}H?j z@g`z@TwLGwRjBU^*lT3-yj!OcC){nM2JRCay2pMiad6{Et5`aZmL%RuHdBLKI5E0>s!5}J$4Wb}PUBWr=5q_NFgcuHAYw!z}N({>oMH2ui zmk~O%wW4;H4e3}Hb^h~H>5H1RH+PjB3X^<$`<8;tDa9x0kzu(P+w5PjoKvYezuI_f zPjZb~N|)McElcl?pgq_uqDUO)m`aexsqK3@W0t)?L*)JVb~>6H**ghA-?i@RZaMwk z_rGPh&p&g2FWum7?}Y6b6kpMh_5_VHaKY$+pmGgZd9n<{Pk~WwCS7}!5oN@7TkB? zsNTBM;ppL*Bd5_jttM9}&VFI_q7UqEt@4NG1Ri<)&WZ5I=kf>P3xV$~q21dNnJL|S zbT)EYOx&+8ko?6TUpalO#j7hQT6)4M;joW{+AVqW7YXQxZ?)b{n0`u@o5U;h*g+<2 zly2fK-Qm>t{*^~{@5WDF()%Y~dY;e+Zu#7scOSTCyQZHK0ih`nN_nz+cD+#wbxUMF zWi2A;N^-b>ambWsw2^4wx%N=Fs9%DxT9C(84KhEJNp=LUK>=3GUSQRLjj(C=j1NM- z*y^%}1HPim{glDx*SQM$J!Xu>c3AD zn*5=}o^|MHQjW!3p}_%W>8+&cHDaPJMZhvXYNc3egytawzhXe4R^~q zt9J|O80H&JpP5CGll5mU36O9ckJrFz8pjO4<5&jW<+>tpqk+466hWh)a@=NWnBji< zW8ACcW!y7fjd(X^2F{X5!H4)fY;!wMn`0c#^Q#Z{i|Jc%7y#U6ElLq6MEB;A-i45* zm4kTo3NGsfw6|mcdBx(C;&V`JVV*Am(##9G!GM%C!bKUkJ>~CVh8pXJGO*r1-2&*x zESTb!kx5`44MzF{#T#UPzUxN|%#l?V;FEQO345xdXB&fK^CmS+lymJaU;Db_huc2a zsiRq&JEC-0=X`UTon1nV=A$0h8aQGZU)%dl9PP{CZXuuZ@>e>bHZ;}X912*fj4v~9 zD85bAi^|64>rhr~hW{vqU(k0E*8Q5ie5fzWxBp~LW6}=tfX1*?^ERx&qc654!K~Jx zt;eQcvZ{kbx}pOfQ|omEQe^>KsplYHsERN{G`}vymVX`K3~>W>BmG_7bqCfj+3fXC zkwfYNVtb|bp2MN)?#hGivFk@unL|h?y`9mdQJb9)&W{YDkyl<{NgBPG%0?RCGN94jt5)J%uZ8#rzL7GG}`M-0rH$XBuD z4lrJnI1~HBkXC(tAS>oFaFc}ve$(a{CWwz9lytB23DBxA=%L(DEQ=uoMOsLI`{CD) zrCQN=MMGvx`4H%;LjT#8GV8wj6!m;kAKH*(SQ!FG;MPzA1=oX&UpndCTpqr-@%A~< z?S6~1{XAAZEsdGdr~hK8K-$arVyV1<%#%CC*cLn8@D=vG7h$J*#?x>53iXZ)ipK=s z>pMR4BXzr@Y(ybhVJh08$$5!j7x+v>DrUiTYT*&yQo770K%%uP^W02l(e7uF*1C`0 zUHGdS{&uULyo!Nm%0Ap&f7Eo`mZbIvTOb020s@uo1`h@8gEPt@esh#7;=6UTWcwH6 zXzv?yp@K|FC~8Qq8GsjJQw84y$*=8GMMUWY!I^?I$Pg+Wb7=}33>98H7e_EQDYos6^$ng1}c<}eN4`zj04$`&j6_$g>mP1Bw^WJ7p(T$l4#a1mYG^?#<8MYM)T-MBniIR4)GT zgW~~w74NX{-?mc28*X#AdG$fOpP#zNT|aWg-z6b9+bPJ7?&p$Wbq{c09sg2EAFBkA zwv14Sji#mKe)1Ql-?xNkwsfKL4~YqT?wR1D!ux?}j8d9x8jwxYL$7`GN8zv7D_X2$ zYK8J4dZ5&i1Jnh)#>q*`e#LAOZ6D$G?a8!$KssF(fs68-h-o-&Lu!pa<#rS%Ix0Wy z_GNmK6f{f4cmi<3@`8I$tll3W9DDw= z-lW|(w&yLCuRWxjr-NkAD{M;ZB3XL7G=0wc4(t8ajX8K_V;Gw`d^Gb)PvW0|#;w%l z3x55&yeMbEa6=qVDfkG+`j zZAY_p-KQ}H53h{hc71l#=BMMxo7syM+1*`6dp#l| zp3m4ht`z?;^XLgL|N80v`PcqI{brk$mqxDU`p?>fo5)ir`6V#3mh8l@3InK;$9ZuZ zifR-^q>Xa2A!Q6|Bj}$I?4){0=6h;@so0VVrIhT--wdQ$P_$7L9uGnc%nxPA7i7ZZ zeDF7%VO<4c37SH{SP*$c5R$9r6JRF=BrDg8VFLigHWFuT4`-dhRf5ekff*^dGjncM zt|}6wudmf%#hA|l77m-nuNx*V9dPfI3;Pkl^m5wm^u7Q2;Cg_*!``mVuqBw*2~MM{ z_Lzgl1DWJ&p|_xtg`r(EV^rV!j$?CcuWTRtbDq7kjp#aj_xiu9%H8h0zT^5|obg{b zBS0FA(sq1`z;%9m6tZ9>IO=I*)VVy{3-|#XOtnEWtW-tE9ca5;gxK#J;LUq+hY!T8 z$T^Lj%71+E1$$mb8t@E)ltxd55~4GxHknS+=dJ|fd&(ZLu_!?}ViqVN%2;bv7RId= zLkM^xYA9IOQ3R>y&JQ7}%1eOIdh&({99q^&O;S;*E~rB44DXLf!P}#$*hIUeFv-O_ z1meL6=z90#^MllIO7WY(Rk3(J-N2AUw@)kK1)k?SJB{3I0yJ5VL)RQbc3LjpZ%ul5 zXz7H<-S`P0eO+B z2vGn9tMXO?Tp84W)r0~dsEo3Zd^H=$mg=2~_I!x!YKy;p`d}XrVPtNDr$&Na2-V&d z$X{}iV5tDS6de9v+=?m{%gdv5d=I zQQHl`Ef$ITiaP2+bWzEMid34IrH7G?m}myh3!o&$B~dS*%ct^KO4|L1$@ zug&$Z`dUW+zEnC&8u)s#^ick|BTGyuM(@Fg-tKQVjt(BU@U7eE{4o!jk@u&I9wjE+ zj0;;t7?B|ev(1-A?*ZRlYemDslw>L~U7$Q^9Ec`^S$QG*9 zn4=CM(K4Xg?cpYeiZzr<1}4^*hQP-x2!ioR@{EW^>`MUX7{w2U8IBjgWB!e0I3$^G6d& zUcTdp&ZRv6wE%^2;Jk9-W7+dsDbvct$9ku$)a55Bctvq$t5x_2Gfm`4WLU$9 zvH`|Hj~6~8V>!xwYOXniAFh*khwW&db{dmc_LZ;`JT8NgQwP$--?cG zNEN#LBl65=dY4)Ifom=xM_kZljwtDVOO9l4{)K%dmQM_;eDfnJ&Hfi-?-|xq)NPIK z6heT2p@$x-p_)*nYpBvYhzgQWLKP{3Vj~bbp%)WCq=|^2RK-fDQbNaqqBKEJK@;P_@Aep73KXu*E?Th z9Kfg(C|X#MctmW;U1z#BhxiH=^*Vvpqc8Cy2=%I-ra~-0X+Q*NkvTrJVW$$5R+Yo` zi^<{ zv;Bi=Sr{VJT5B#HK^$$=1|oNV_5I7|YiVBbM{3pN&JmyBm6RZ)Gwb)1gc3G=Rk-BH zF9~4qird9N{z~_GV4^CoWMaTHxCflhNjC{8rQN=LGFPt*0NaT3A~hM#1UvydPF|Bu zwx;Rvk=93YO#w7Rfn!j@DT7o`O`22UOp@L#?P9k6 zN6{X701sClMkI%ui$bs~d&vJ>2BJo-VKA6o!Lm-#Dx#b=bW`PI5bE`x>`WL32Lyrj z(lcsJ0HG_Ua1d<%mQ$%qBH04saBvh-QgZ%7^P>qXO8qOTqSVXs*x{H|!I@6#@J(Gs zzMmIuf)1OV72m=;^Fy?fCj7~VF`^Ys$xQ8w1hS+IKL@%{A)m_veyq2qFL9TIi-idxVr-6i$==c(Z?$ZU zKJIIFL>khx?FY>%kV*Wg%;ub#}1^X`A~g{^;OA2R=aKgxQv@$5BtTr7+bX&r}tGIg7R zMNtm*d*Q^MKDuN`d?m|{oIGHnn^#~$dak6Qzjc<#O`X89A7YdFXA--zoJkg^OL>ok zP6WfLqiL>&47=K6l9Dv6xOuG(fzX>O$ku$RkmiQi$?@W>um}y@H)IdNOcPfhnv-`IHnpAR++kR2V&y($9&puVs-nnYRuQKcaT|F&D+NYolxAd_zzqejtNS(GP+qV#~RrflUJpFG-qkMXH51m+UZ&3DC@;h#MTm7?Nvg|D>OVpZ?jGysTw4}7n0Juc&G8g z6<(gj_iDv=guT+;`AcJ#sj%etp&gTBp4+8Lv9!-Od55l^dj1L3v=>lkpssP-QMu;n zX&`%K*f$d1UiXvw80Nx!{{88x8(S#Xmo*Qf_U~Q2JU4yx^IZGU&aet#62%YbCwa<4 zfrZ2fa2m*~+l}AO1Yg$Gt3btBDD+tIAl#D52AVD*%#LCHUgBe__L+YsjGoDT8RC%k zdiszZ(DBnPVS%I(26oib7PL5s{oZt63QZYMW3N10S@)Yx!axHl%nf|b z>fDjy3O!_2rh>2E=xM=$Qm+fK7nh2=w+cX$(+~ZvtLSHvKB2E@#|gbxFUl!rW!SOm zH~)X~F8w!RI(o+Tjf^{aNs;lrb2R9WiVhZ#3wu*Um;dw#@;S?YY&4Fbe zt~UWhio}&PlF8{8tI*?=lP*7*k52`eL0zsXqG-J(n(JMkV1JFi>3*MuE~3GwR5FiU z|9isi*{PU&kqbEv9=DS0hh-l(e!a5Mtt<4D<#@`V zQ;#40d2jm`ixvI#^FI=`-Aj+>971B!$r3P*Bc|a;tp*B(w!2gZi9F8y_<6*o#bH%b~p{X6b_Ie57=3n%f&9`8LH0 zfDqFvQY;Rl2o9ofAgMNvSBw|%BdnzWBok>+ePERlUt;dLA>YYSs0_kJKn@`U2(`Pz z60+W1qya_*fIIqDsa5J1+Tg&iq~HK35uyV@wa1e?p*24Y?9%f(iLY4y5DI9Azy%28guNM-pHucf@e zpRid6>2rQ>izd63mUG{qzqj_gTc&91x3z2Ysz;>Z&(%8Li3>Y*-?}^h8Sm#9>t!qJ zJG&mHVnDy<<4R&!E7L{7Dl!y>I~n zxp2hKB1qX4>cmO8g~h*K6ai|D&S%vZvANx_1ZaA73ugLtk?xx50ghx!T5@V)qF5zN z&pHQ+k_`~HEe)~s)TG~TF&Z<-diwK2_4i==OCEv6(bfeoN**dWJpQU1T{yfv_3&+G zsNt{E7w)_9Tk{(AA<83J`O$g;vA)0B1wQ1!eHH&U8k*^xKXUcM+r}I0H^%2Hj&mD( z8RDl7us*Yv#UP#%ntoGqE?T|OngX~#ORjSI2PnbUj2HzR6>Yd4E_qqGr&>2ktEEji zj89Q)klG?We4hG$DT2m2zf92;%F5Tv_|1}q?Tq{f`Wg6nHGBu5ODqk+iG*8vZ%GQ6 zUKm6L+|B|k`I?LLN~AExQF#FgSGyDSAx+AUY%k3vDKz~3w7S>O-GptQyi+!vFod9SS3IbTSWPcodL^h zp6cy7>M>)BEjIar)hCZ&(-_w=@adNst{j<&K(qU`OGf?7odvDs}{ zB#Hs`XH=$VulTCd;70!PxEfFe`cE>vXSP7?>qr?EZyKGP7~1?E1UMVB&l}1F{~$#$ zw1BJpmi(95Ns~FNi7GT6qjG>JNj#+5E6?K!uPvBCmvR$0=5eQ`DeLjypMAn#4jky4 zaf_tieJ=hzdcxqm$}r}g^3deIX=Dz8vPzI z@<(r=W_3c}Ydo;6H%DiB6n^Pk{|6Yp#~Px*_`^wNNI^QfF8;NNr`5GV6DL$ zHP03OQD>fo0`x9NO9LG-b82>qq8&ZrsvmfK72ns}YL#g>4#vK2cpsv5j1K`lfZbN+ zB%2qAQYeYt*j&8VvtEWDn8VHheF#HvPOmcf?B5nrUpHVv>56)V7OH?MKzzr*s&$Fi zWR>&!UQT|>Yfx?2Fkd^ZlqVZg5d_0Ord>WV`p+r+gs$HI=M)y2#p_p*>^$R1bw>$% zwq~4fRpsE=87pPU&!g9ET84COqS`tOzFwhAG{)~kE(Zs+%%w#&_&F`frheLDak(8Y zoH_Z=e(bTwiod}6q%*7g^w+cZet*PN>gR_(;Xy8!$=}@^Q7Qg!P@W_PC{sGD8WqP$ z$x8-6g0P8fY}WNOeO#L7`O^Mlu^2JgY?#IN7}C`b^~5PLp1~k+JMC1yZsqYFE4}3O zDWmQ#nmc@~Olxpse<(0uQ()LZH`eFf`|^v$3Lfi^-GkP|nZ{D7FQC>5ugIbwWa*}N zpEW!)6S#P=@qTc|`TnTj=`Xreeh)K;)oCv+ht_w(ll`f$g}6>D+x`w6ke3*(X+b=` z(oV~@kpH!_(_Hs7F!jIg?Z4*z^Q@XYoZbZ{so+2+bCd`7ttJE$;0J&T@y`rzdCn)B z;lh}O2>ozq^uA(^H~1r!M`U@ILf!>y*7U&QS8-uFYN1uFgIr~7(>1^}KVzuLAtj!lqELOwb`M13)|BesrH~<2Nnqdc%#c=cOhdEAQ zBm70wD76dR0s$RO=kR&~r&b8o{JFt1eeC80N-fbf`3>P5KqeS~Hi{&K82jY3T2#q;hnY@-SX{~uYda;;K(}D=k>&Uz}GoE;AQ)am&PGX#^6cUvvV1E zJ{A!vcnQ=x^9OnsrT;1W{BOa>a`j6-|9hbyin0UZ<*~0@o9r^p(LF{PTL96VNH#t5 z2TNR?^fS18=5x6Jga=^)6EdI_f=&q<@sDxw^8e25i{ZkbVM@#STBUv>+9q8kyh*%F zkWbJ%3!1r`)}JCLc19$q=NpyJlE8_=i2FmDZ^QZ{KgSkPj zv(MHCh06!4-Y+&qd_av#6&?32crj~%f7G^SS@FTjxg_=`Z}Z^~vz6N+lV7{;9?9+N z_^eSrq%`;B`#-0!3k_-_nDBHi=E)6Xl-N$;#6t;@bvBoC=IsSGpwTJSgV$r36+dq| zKm7NXu9C{P2D&7iHF=-Z2R*rS@9C>Ypo0Hp#bs73inZtWE8@kvi-P{jC`qFP095c0 zC}Pu`+c&ss5gM%kz#rh`dNkz??aj*cw5+T7Dh?e^a+4R~zl@FKkOxJSVh?~JgI3*3 zxN5vAB_%B#OizA8_k%A6CD0-kvXgRX{K;=YoCJ9@bAl`KjW{nr;GmeMfUx+vV*3F5 zlTs3CQ~F2#8c&p7>X(X>cN!_#ntY>owVe4Z+xw|c%GV=>7Dk~L=2V_gRMOB=7fd;0!{A)%3Q9wjtUk&k4%jpMF z{k?jk6*aB%#Abj?pmE#f7u?LemOo(}13mYDc4aTIVs%w7yo=3@O8-p`cOKGMdsi^& zg!gD1{iG!o_Cgu6hAo`V{AFQlsIs0mZ7lgWgf_ku#T*O19o)H3i7pV<|6j|;`hMd~ z%>T+M{2y#HI5$O*UaOa6NfN1zNl$SRfc;TV`Sl)V59`s?GOcpNk z({ZXrOoSfz0H4JAH3q*Qz zSp@FSa-N)8P|Y6pkJy-hXfHZ&)m#0K`taPAh{83$xYr-w-TZjQ^3Q+SWhC0`r4Nf0 zx%_dTwR1Oq|M%R>qb!!CuTwowKU_A0poWBrkv#~K2VgQLLc}M6FqLY8p90Sc8YJZF za117zEE#b4V_=`QmH&`u5;>o+D9|s2FZT5UEAh>55`?&vVDoasRLcgKA~PnPq=*eV zlM)6NRphi2SALkoL7(WNR3sOSoI~{ki50N>`9~^*Jf#J!S_L=(Fegm(iJK7;j@7uC z0z+)QbHGPf$6vdYPmUStE^@!6mF}{bGk4x?aJ%f1LXK^o_d;Pm@m0BZh)=;@h>yz6 z8@V=*CACG%$`XN5%#GrNC@SDKSBNcJ*PRT9&Kx z%j>KpT3NMU3Rhuxjd)GeQY`D2&C_^^qnG|hC48F218z+%vI)gY5TtHXYodqFtF2IO zhzMP8p*^35PfyRJX`rluhtEsPQEM=I8p91`mAIBj(~x-8&mmTIKd1-wjj?8ZI&h5U z+>Z~=HwYL=OHHu614p5RxiOUyNOVjK;NwYMOXI_p{j2~!*V8P@A+M*X=|I(2{+Av~HM2e)ttubxI_~hKR(z3| zxpH6ntUPQ68xR0nTp{_b@M54!aI|F&ql{*RCea*Cl*B`!WLgZl8HFXPq9F64G)_hq z>hnTVBW;$eYFOeT5S9KACpo)1+%?LJdTXT@)CK9K@)r({+MUrh_XS6L_j_c-QZ4Vh zNlE+lTCr=;-69?a7zMXiH6z!!V%4o4i#_*wS(m=?!-fQ;253#B?tMyF=zAa>9Hp)a zf2`@jjj2{kcyn?s{zk_So}@=-s%=gg9bup?gKc>YG={Yb)Fh_g7;LB+5A3wD*!Sxk z|4j6*XS@#I^2IMXG4gFUzKOI>nU`gX{O*9QE&pGg!vAp(|JN%Z1g%^n1;x%>5H`k| z5c-dWCWfz|p)5667OSPO zLD|x>vE!W=LkOEdnTSnM=79=Trba$LU-W%5rY06=f5uPWvTpjL-`V1k`UkouP8>Ah zYZA%$P;v+6FA>^|sT(9AF>Q>cXyIh0fH#LW6X7H+Ev^v6D?oE;W5QhGGM^7`tF_@rim6+T-@}*nHWI;!3Xy{qpo$M=y<5I|2ML1jvFhEUwHIDh+DB z4i}GPh&%On+v({8O42AkESQs1A(4}6qWuwYc$hZK>(b{Se(AGFeChRAx@>5Eiulxv zE2P48^YQ!&)f4aHL{Bvg-_clYU)h+PdBQcbG0Mn4e|9b|H2NIclUcj_UUV%6GDv)| za`l+L+Gu$G57Pz@S1Q+43W|4aM{s+#@b%p8@@e-m@AAT{TCX}MAI{lLMUUL00WMz~ zBPhmPZhIz(5i!$g$+;3k&|7Sf0q#p8O!5{l2_`~@$tM7nXLDxOu;Qjz+`#@gF#l)@Yg_xnc z+nS8^=QQoHZ|G0F-_7iQB}?LpEpXNhnM~1}ZiRNY>SskGd0WliY9&FVRi~z0 zxaD;t3ZP6aL2yIxmZ;>_o{O8Kt^kv_@?i76FlokAJfg)vxU$EtmS$h#^eIG7Ha84b3S7#KrK8XCsiU;PK@HpOeZDKBu>W?Baz?7yAmiU7}Hc1 zyIR&&DKu*7@9ik=@s)oU2XxccHJ12*uEc&=}%?8zUQpW~hO%jOQFiU78^CE-Ox;%a|*OasGe;V;1h& zb@_0^NPhBmPYX|P7Zse;H4d6*B!jm1l(V{wzC(F=?OyDRd`nB8->}LqYgkog25r9* zrV4!s!StDp|zMelah9)V!mifmzdxo2%*Aj z!DzSJ_Q(GMu9K3UO@7JJPTC*rbo(}ZGL)7yY8YM{Z#96KTe_E zrpCEywvX);{8`jLHa=Z~or}otA+I6vXRa!##{+zv;Gdg*b212qv1b&gaJ&zNnMP9uF0TWcv$-DknP2AO$j^;(8rm2DI*s3UGvd&Z7mALjVAl^-o<9bd|MrywP(cUc zQ^_f2;2w>|btu4l-M6mwBZt1t+9P#+LCZ*=7zA6chu6B{4t2)g)LksxE(aBB`F+P- z1oTm{F`@bCleRBr-!4p1l=emgze%$`N$(l|X36}QKipq<7r)>9b%U+G`#>j$on0M{ z=X=chjFTl>H&Zi9YF70L)Ak${rYV+J=S3fC?Lx*faM`-8w&CwIjfDKTBERAIzy(me ztme09R07U&%IO^9zUJX*CjySKrC^RTX*!S9*6Sd_yv)T35PU8tx`iYp2UgP*^F3UF ztw3|hONv$&wpu3jyO&!?Ull&>$Y;7hd;3w~nx#JJ%&!OPZF?t@A1IwiSjb$y`K0vT zC7#!#j^h9R`n{VkzuE?24=}!Bs~CgWT=Fq2r)e5Ch8&39>1xJ40jprcdpxl^T`#fs zlbvxwy*0Q9=sTR$x1}SJ&pNcSQ-0z)y4A6^Nyz~8eH1j7DBv01*B??{7&wr4?xI70 zvECV%t7o3PaT*kF(<%97EJi*`Q!)`VcR-pRv8OH$pXhM!O(!v5r$oK35XI&ey8OH?ahfMKv z*DmuV-XBDNR0d6tIIkR^m>9=IkL(2H{w<3ReORn8d$@K&k5A^x^2Xl1mZr_R=*+I; zow2`JIc(GIpR9Q=&e~po62p@H`)mE((~gfvK8*a$zq1qM`YwLi==V;q0!69PLQoX| z=TM$A7lpd|?2R$|am-~}PY<>1dD(K2ICa(P9HT>@Dw(v~4d-Bv0^Ku+5llZ1^`R#b zV9@P7H@gsk4Jj!MCX93TMJKKZB6&ePM=8t9JdazTLopUJI@HP=B9rEx*#@(^I*cZ06p;{ESMYw zoJcf>PbAf{d7d?a3GxtkFeOQVn5ZFmf^t}CBKfr3ZF0sTv7sVw{elWJ*_05)KPltf z>4}q^xV&UbiXAa26k^zmS`QbNNITi4NW+3u#O~q^vO|=r zT%i~kT5j6?!5Q24yF)jAo{bP3I^Z2FNeR0Un(?N0>WifFx}+%j7-t@txWT6fLYj7M-Y=bq)C zw`?#{ak9+Of0ktJmlxb%{WQ#Bz1&19#a-;{$lbd? zteS$Najz_zszL+ei8slG2AjrluZs}bB^SfnzP{}I+x``@=4d_k*!AGg+jD!VtQ&gm z$uAp~4}NJ3u`@vf07%fIKYXtNgvVM1a~$9xVGWbN1p1RyJ3DN$Mn^o;H z9-Os`26}xldIKkHCjh*?i`UfZtwZ5$u{E9WC@m92Ptp9!FI%9)`S~-k8@J*l)f6VY zl+i)!JSG8~(<{*)k$b;lOTIj6@NoAymAt(#HQXe%%8LKDd>ZllKUu85d%u4(e|A2< zG0f-i#t8~Owo-c(iq0yeXx~}Q;0`0DXMYH6+$anB5KK+4!lo#ot6(2hoBB=hE^OL2 z38}*e4vRT$5RulM1HejG@>`N}EbWU8X%W!=MFg6-9{E=hqZtE&mShlGiz{uAOtRuj zH19{q(B;t4TFr%NDL7u!lBwB~HJmg+fDoao4?jRj0&@9dq$1F20)X$va9KM~UCIyb zbj|#n-6NeR{-*YMb1MZLiagVIF#OF$QsuU++UZvddA)LxCq30CuGGp#mHru!3B%m% z@GPf4`t^ znjD~L7;+6uf%b59iD8fPYw_Vl)gbi5G!9z3EbhjdWJ&U$!SadN624rvN^>JG?1~c2 z9!AVdxNDmdEI^-t5)wff79<5EyIST~@r^C8W>$SD(T+`JyB*Zm?W&cCkTb{9v{m%A z;B~#xt^zP-ArM;kB?*pQ_4g=MOS=8X4ZutS0|D)v%?HRhnUo75DJLTI!O${8gc%N# z@&e&fTO95=8CYJPLqB1^S0!Z<=I9*|9H(|WklZPD;JC%ciyXn%8L5oCjjei<7YAp# z-kGQEi)L~(zI(vlE7VZdw|o1azh1u>_|Yd`Z1(K{0P29-Fktg53zhPYVp`wKoKE1l zTFc((^i?B}c~}~{8l6uwV6F%%`6lD)5oVl><5&zww5zesq?Ra@EiDsmeO&~e0VVp@ znovkdP=ZBb|5C4Y#q@v)!xZ1$1?S4;pjnBLX~i`an?lIt$_Xwqo>l`>;{x@Zsjokz z)ZaLAeeLZ0#UNslu4wmB<<#;A!mY;l_D)JFHx-?~YosK~^n6m!5$Er?*I`~IJ{p^y zXki$Blh654Sj<&tsi;n|E4GDC=dgE}>an+i?s?v7e5?KNwDJ0zRp~gPuq*AJ004Gx z$98F>7m-Q*I1X8k1&T>}a#B;i0ZBPAFfZGeewZYo6q!;OJK~;jjgsT zg4i|7rhO-$u;K8n7}w6x5tLiq^G%uU(D?2+BIuoV3+<<4(_l7vZ+cBwg}id6)jGRI z$NkVWbWvO=#}rAr&tBQB99Cn@{VukJJ~!|+_0TCJwQ(#kNRHe(QX{LJW#mT_jWZex^F?J1{p=_^kW?O~ z;)$0}x8hFNwdl&;D$QpO%hr84a11getJU`Xxo|&kag;AWWH5+rmCe(ZUY<&4bbhYPI=L9hd!FxY8XM1txhMAN5R3+^I@h z1biiC-bg@H9gjCc170R*mk}ktBZuE=^<*EK8uKx+UmC+a( zYUDm4Z#G?Dl=4!?RXf;D^j^sOMs`!+zwu}G?2R1O9iHt|td;4p-uE4ItZu-af&jO= zdHPAN&TT*Abhv^lwz_S7=@!r_Eu8lxtJ=F zzLth^l7%5eIf3azI(h^#oH<&^5Z%>$qEQ z<9=_@o}A(DzI^6^NX>8a3OH}M`DZO!15zX>bv=B>yDwVt(n-zqyI4p>k{kT)BVmXtle+z|47$1 z-b`cu7X5z`j}U?hqje1SHyFg@rv_(aLt@Uj)?$fn=`TYg* zs_Pgx?C`+kwFZN~t|l9h)I+t!Lw=bUz3g<2hGXW=S`Y5@QT~u!3@fjziAc&`Lbc1&kGSLw_;ol!RZmcX9YVxnMp)>ALJ`n+O(Qi3TOBh>fXH26B+E4-^a(Nx^-11 z*{br*88eTYu2WIJuinSKVDkhlnr|iz@SZTqeCzjpIUVkI_Kmreg*>muB^z^&dlh|b zn1a}q@K0tVNPy!a55mq@227zENFwu@46J51bGFJXn^3Nn-;W!?vhqH+b2#q*u1wWmcxu_@?a2qdKO`AMa_v|O zxKUBqU#(}-GQj`&X&v#)t@10i^3jg7DOz&P+Vh45f_#)Mp4%!ZOP9&f#XZ7x>aQQ8 z``10Eb;JvYl_TzKX! z`IoEAUA~~xx)y{NIjxYkZk@R=e&)W?I05czPMirA&oebC$4^H6C6;i}qZgh*6ADMH zEBbkvKk;vpn2`j@Pd8H#UjE7fx3tJx`fyHH+BQasx(h#+o%@6vbANdBWk3Z#|3Xmk zElZ?Bhre&dmpJ!@4`hoFuHR9rkg={qD>ow_lpKClty#bG^X!+a%HkJ1DDp)XH^f!M zo@*YLD|qr_dQz|Ggiw`_)rOs0icGp!@MO-^clqx#mdDj!ztb*R_k3YLIT{spk2&eb ze*Qam+46^>EOyoH8k;+8>=EnLZ{eqoMPDSSc6; zI$nqkDsibrf>(#B1Ab_q4T$5!0%fS8o57SPpAi0sG+8<#?Ss2FxY zW^hO>Ua-uUbI3fx|E<8BS$fy0fcDkQ{5luON&lgQoOC$G*^W~2;nKy&XuHF;TP*I6Lq+Xjp$a}Y zwVLy%*eB^fEb$$dkKVH*o$t3YNMV=b&z9O^_b)7gxV3QZJqlcch!I!iUU@NxR>>S! zbH!-609UyHh+dMs4#X8`>!Jv7#@Zb?NtOXVPLX!UIa zgl3ddPZAKN6Xg6iACfaj_6H&9B$NOu;xyPOpGvLJc8=zE9jU*JjlrG-Ekb=BX{x~S^=cTS6h+&do9JZUMBoW1e6NBW!(-96QQ zlIGJKTY50@`p4p<8r|jR=>Z|mGS`l+)vmj^?D9wzPVI${3|viQ?dvL6wOl#z;e7io zzo*aHyJG*#$D>~VoWdWf71YO6@a?4@1kW}byX54R9Hz@a2H(ZCR?fqR0n_%+EA5K#SuIAxCFJVumqmtmKLi` z_1ACpiX0B>iqVZTT}gabiZ#`^Pog*e$Rlv-I_V14?S$`a4D!GJc&-R~=rYni{W zFF$@h^P-uW^K(!kr%gn+0o#4`{L$@|<6-0H|GhNhukE+KV$&uy7kA#+TWJ~l_9~ji z8jkrC%N;Zhfb<46Wm}DOLD-TCnvVHUX7&X0`4_t|tHC4P3;o1w&6K15o>w>0Esrk< z`F#-T=U_At>_8;KHlpeKl#&{TjU5}+K^X;P6e3L9W3kAWRVoD`8Dtz+DGx;MY$;!nu@tz!@>Sn)U-gkp>h$ig2F>TqN7noEepy4) zdV6N7NYL5+v7br&@}r6UKa;5nQIf1B zy7%?`|J>~7C2NgHL92-F?K{>hp9p|3UKrd81^5I6rXUP4EEv{|6r;tYa#25`Y$9pk^0+Xow}?TN;$@wif7X({!V+r+F-kbUB9KP zzvuRyT;KPlfKt@HoaIg#Pm1D^&#e7H@WY{}v;qnYJ}wEjdTU0&1(`ilYvF+Q4riGRp&S6@T^BTbm5t>~CV_cW)52{fP5^`;J?@MwzzJc_bSXSMK#QdMeX(68P4E~PVo?NN;GgJ3V23atZ-}7VaamPFO7i|IpX2oc-`Fi20$E-I-*_iu!uAwDYkZ>nq}5JbS-i9J{;` zH^=(hvGiZZhmSMf-CAs?09W0XJv(bkEJ_7CMy?O<0LDCqVXR zsOcdT0cICenFFfFhT%-9 zHyO7YMmtdQ90C&yNk|}b5g{i-KcR{T3Nu2Syi!f>=_oyVBF~q&u3J!DX~i+6b5e3C z)o1<&?K#o3$h#$t&~$BD?VT-^W99|#mAESLIEM&ht#XutVt~f`lr>(NhJY^1W^Q*s z_1h#5U162=+%>o7n;tno{e4($9P92`!~Qd@_h(uAC8Gy-ihtZ-EnTs=yU+th5{!5( z0dyk45(?lou+?BcXpger>it}1m}kE zc>!ovsR=z9BW9hO3`}<;dYy*IBgVM^ z-`Q5q^(5F4Y^73pwk&?}Hk}LsC2)}EPh9!~JY(8N*2y^@QVQ#R(~Z~uJ(E9h^X!KN zucvDkDmkqEG8_~SuWsWXF~M-b5(pUvBX*o?IOkw%O+P!7i-7~ZHq^5ElYh^Ovr?)z zpN_q6ek-Ns^RH_HBNF>B>+RixtN9GFl0U0$rx!|Jsl&*~S|4}E><>1o@eQaD(#(heFKUhnp* z`}w>6#9gP+<HLwjn7z?wk$e4q<1b|1U3*pg@$0)z zLO;&P3EBk9#i1*v6PGXuJ5rlwMcT-{EibN7s)k-LV`Nne;t7|B?;v0rlk#tv)jD~lDx4ii59zO=`hUHQ-P0s36> zm>HW*ApuamAQ!!3Dnm>@;CN=e*G#__zEoIg1t1VrOOQLjKsLdlQ(z<%8wYkm zi-D2|T|oz!VqHNDHA^bkl-cX)W2ZgUw12nRF1j~uaT#ybBP(YjXOeQ3FL1SY7*qeT zDr6E{L9WQ%^vyKuhr?kK6exH;uYirHO{CeR4})P+iDp*7+VcCx%#4jVD`lT)_qb)M zyRRw&sF4KC-~5b#1RcL27_BxVB04B9@9cjyQ%Pwd<81qY_JN667sV0O*bAG^=_GmU zw)78v_7eKXV?NLe4PFHcS;uK!D|SDo&y?E;>3>%_WOik^);(a^3OD&RhHV@AgMGFq zSYjLLXZ5``Hd1>xgsbAPS69mDF}_744H4d?sXF@{4EZMLAT(mcL+f$$1LIMxfVM^t zv?J6^Gg;G>%SozwV|R3ANk@hGdfiV1LcJ8I!)Tgf$Rld_^qy(*qq{1nfCI_q&>;w? zG~zo3S3&3@OrcVkcCuJyZG;DQ^IY$PXdU2HdJ1D6P`UCl*y_`@2<>4X%lk#<=DgCJ z*VL_)osk?0AVyM`3VBihll;&A5&)Or8Ty4r6AKwI9Rt@Aev0i%!(3;@T=EY#Sc=hs8O ztc_9Z9`WhIbi0ARBU+iwl&o43LQLmEu>4y26bz;XdA~x1HN+mO z_)g>!tc{sY0?2$jJ{+ge09ls2#gWJq7v)YgNtohG0Ck}Wh+f&0!qQq1#5KIQkQ7Hc z6kpXIY;NfQW^))?*_(cs3oAZmaNB#uQWmICH1>7R>$~dVs?esMk*TH^!R68aW@&oz zw8b4zWqo%Gr*3`mAv507&YV9j#=Rp9?QIh3+JqPFK&d2=4FfCcZJ9@;?3}_z=ap2t z$HOtU-FiCjvFG|eefIo!c_@A?zOZ!j-64I)(Xrz!R_jj9<2@LsFuM+0xdK&5;I0jK z6Q|Dl`kADMSguQ=wgqAz&7=`aOFhxw@`HkD{ZKj?RYc?Fq~B>f*u+DfEXBXA)yVhn zU%7CX7p^H=Ifd*N((>cJE@GZ(N-@DRDr`=XO-CE2;V3mZq|hcN2I3uZibSYr&n_!e zv+!;!o>}$OJ&a?~jxpEz({*4Mqd5R6(I0E&hZpey|zD zjbZ_ZoUnxyNKM%>8A(mku1TNh5g#K5dh{h{`}^4Z-8Z;9dY*yp7^0xEE`E?#*LiRa zBNK{d$N&*+yhq!Mal1jO48RMe|7WbJ47H%%BH|3(mPtnkwWZ5t|(2bPu{kyD1q9 zhx5k5IC;5e!IV^l$n2v+XQ%`g?F$lydYVUD!{3Izq+&RF-90KQcxTgIqFkNFqki9s zgS*^wR4SjeG|8(1^QYpO{KgYO3}EV+xP5zW^+;R7-FhYe_xd6Er{0p00kzvW1zLgm zD?vBny^x3Oy}&-Z|7VV3%Sh~uu>rEXo%@+vkE2;K&tvaA)$9epj5J%#ylNg0KPQTv zZw+%sATNhPp7UM20#CLPb_Gxd)n|s4Ms;s|`ti3;Di<$d-I(UG`oB-2L7*`5VrFX$X zE1J5zUVW7BcC)L{&?}>MpW~_n3*pE$O7w!$wUHDBxJfdSbAlWKL?*0qm<*j%5=f#` z8-iXf#8UNmIRJ#(VNE3VIa!{o(1K%yTTw0uurc7pHuY&U`@<#GXp$nr2Bj4)_we}1 zMe7TLmL?<+SOI*o!Z_C;yz%?4C`piqAi$I=viqx7zsA9{I$3sKRX8k>q075=Ro>yr zRm}c#wI?ybi&TSYjn-H8Bxc-0U6lLUy^y~-}3vL>VJ0E zqK$Uzu|_&xvlP2DGs9t|Gsj-4-S``Gd*@j{kFx%5eBb>VsuuQg=&m;FJ<(O;qYp$p zvINWlS|J>!8(j8W$&l z8Hj!a76BX4Em7L*@eE6icy+6-TeYp!yvYmxUZoE-Kk3|#$@o!R=a+d= zdv0js*Ne5ME)#FE7^SWMp>5qmSatZCXx&(p=T#kG0~*bxZaTu*fJR75lkClP<0ki7 z67jY_<-YRT<9{3c{rNwvXYqT3EY{rlYfC#lYLQRh$Eyr=tOlGXL&=zdAR-!`OKJ|< zv>O5h;Rl#Tty*Zz`=9cs+W#NA&OM&#Km7YUnPHgo2+esUHfM4ga-4Fi9BXqX$tlr+ zZO$w?H;0^wP!5Gq=6sf%i$a8yL#ZUEd*9!E|8YMa_v79l`+NKB^S*X{Uf1<{zBuLN zF=ti4Us+BoYd}k^%r#Y%)ghRjU<8v2LPCUHjYJS%imwp1&n^?9)yl^53sPVh-lyVL z(yj~&foYA$^8nd?5MiPtEglm2Si_k^?Wr^bTENt=_}$nVAlqqXB2w=7ucB?2>w1dC z7tfbk+gT=3HxDVpxbcS;Uj!CmFG72s-rKa;>eY-mx_lb+G0V!ZSvNgZRwQ}YG#uP3 zR++Go9@19zzFI0cQ1E!FJ?M&JZ1vEO=g9vG{{ML$ytL_U5)+@UZ-Fr;lXxaTIB*pJ z;2?y8Q7JmSFk6;F0LGJf7fiCnqzSq~3s0~vjE4r?fZn2ci3F)l?@nha?tQXjNyqzo zK{0^7ab7&+U8!)e@MGYrAGX{auE5Lx(srN5DxxG|BsQ$i6}=X+l*BE6qvjpfRm?AD z>pr6A*_cD2;`QSB4`JzctfDxZI9W$h{H@&IT8Q}Idi8V*2mMdiI3!-CI^VAH+H*XkW&vD_)4vFEYGRKn^LnUqf(9J7@okIkPC3$8>w_YL%_R(03=Ki_k| z;AHP{=e#Yj8C|3+ITS#xji(O{!IYj=9eDe9mkMnDx;$x+9u*8SE zFqbnwH5G`#&*dxksu!MLSH}O&qu>4f_a>80I)))~UPFqfYG)Qt1kC*K@Wew_ax;?>{#5e&=g3CGQot;tHFoS(zxJm1R^ zDa?ylK=oL;jkMrH>Z+kI(pinzO|GFyFWeR8(Y`4z)^Vjgx^MFSc7o@{C_7grpeL8u zB*72dyKLjFw3r1Hd^OMvu#K*{K&lw)#UtzndOOQw0d|!`fa@X(z*1=;5T6*9)MfZe zc`R6uNeUL5=gFEyL2wgiM;u&u%O79tJw5x)$|IPwVQ0|6{Ck#0qnMI9`6KCC=uzs6 z0k-ayd2gTJo_3v=`Ihq|msFB}y?WOE73U?eYR07V@b^D&j`k5%w2~A0@9(hOW%*95 zO!J~ke6QR4D+RRs#998s2F>^DGsg_kY$me(zhC|~C*xTE_xSK9dac{GQ#t(q!&hN z#EV(cLSo$gusdhr9dRR ztVa;eyg@$V5|m!gX!i}2Yv6LQ0NBMCfIx^Nhh4>_(VxQ#%jMLFBx$q=PlS!TJAhSG z1zqcXA>HL!4rk8e%3>8vXkU77hnJ8`tn-*7{;^B7xqarj!23_X29+CP!(7zgeJBeo z89U`fBXGyLD)M#u%32EDtMm)PiErMyalTCX_Nttjr>wfg2Q49UAIofG$7#FSE7OUy6EY3UEr zu*1U-$PnXBW27kLDkdWkIY^+z>uYHA!l=S3kS%R0v1sYpa`8|I00@ZErlW{q7KpO0 zz!x77*6jSsbUgD=6i7JN-v(0^(>-D;Jpc?)=VC_xHTV#Z{(jC{=3lA~pV1^yxL%;2 zb;dkLRpRuShfnHMYF{qBN%e_&6WY(VnKAUS^?KNTOi%r6Pl1g{4g1W<%YuR*d2au% z>m7c(_AmU*Yq#ao*YuqJ{W*!`+W5am6aSm2@c(;<@q$pesMK;7L1b;Tu)mU9*o<5q z*RLZRWq!NSm)x3EdWSAIeQaK=v}*=B)`0^Q(&ri31__Ec0}i8g3=X>(JX~Qz2#y)C(Xz@wCXIsQa`+3UbaHx*Dj@-+Wle4{1?S^-M z=RdnYe5)$&_1|E4hw)cMD1G>ZIEHOoSBNB!(33y#a zWdOSW*{-?RXhs4i0MVfhMt6z=YP;+aA(KXcfG$BO{?`}IGru-eMszU)*%XQgu0#)` z3@{|TQc355TVT>8RIh`?XvO*}rh^ag7>#aH3Q`;^Qj8+u(O+uAThI^FH^}Nw2kS`u6R%mm|mF zyPPMJY>eU8)~EZ=KQ4dt`tvaCE1us;|@Y#?ZDeBMq2%1E-{|&;97Rvv_eK z@=~1EwASO&$;tccWtDCklZW++CbC)nq9v3wME3Fbxi5Wn07FVAIYpzn^$)AA+zLFD z-TpN5^T~0;!P^iN{;bl^^G|2`ur@W{0I&Rv3fbhi9&;%x$CAg5NJ3`%5a}BlmA2+P zo!>3l1My*Wnhada)JXs`KDHt(g0TwVmD<5jg=9q^#|Yylv$@ZPx0}U|P8{htgj=~e z5b4D?*!KbnCdZJpR*c;<=tOXci-2ISAGhZ9!!3H9#xIS*q6&T|blhW&-k{3cZmH8> zWlQr${uIQC>}x9{=bBt$H5L9@!yl`x*P#xN4yQOmK4$o4c?rFYDATF>aBR1|vG9&l z6Par6qj#v}3fB?hS#r612#375O4I&P01RHM;4f&%3P$75H+&`9^OASV`zu87$S zE1nd4PFoEo_Ko2hK8*e73X-2l#u%7E6sIZYW5Sg83!4=d+S=>X*6*>#JM7A4?kPD zO513!m(%;WPb;3F*R>-H$d2t&7+_Q_+f|&y<)hiLrfzG)=lC; zMdL-`${Kc^(Gn;)-VO;u7)h3(dEp!!AS(V-qz1iuxP!#)+(mGQm2|ph?O$5WGY_o- znNMm|LyOmo@ytfky_q-1z0Ub3CJ#Bzy9Tyu@`=SYrDlh$?ArRvpWm)SM|!Bd?amiT zT>RNDWsRI1ZkLtfwK*f3-+r(;$N3s^?Qtct_ncnL-%Z~J6&{zvoxi`2=F`9JGMu3Q z?Jlk7xX~FfHZsTeFs_@2DxzP>P=?NE!PuFOVGJLB9-r*{e+pa5Z~xi(@Z{w2$H%u7 zZt6Ap_ac{qbG8|mZ2K($Prd`tuVsZ8GFbruP%%t6@@%xX2A*mM%Ik$$QGva*4&iBh zN)l!#k4|MVLXLg4q*iPjUwB|Onm#N~TH}JZ{qhwab%vx+qt}NYc0uVGLib<~nCezqdmFQVtdj1#@lMa9)J^8WHki|uygU(JP+lg<0S3!=JBxi|Me|NgZ= z;{y=T+DIM}N(GD;reGi(y`1Dw*DOwB8C;_qnj6YySm-*Am3E7#-g>xG?k5f*Qh3Wb zi=17{0n*>KgEGp|mx(uejnjf=jD^mcyPEXE%0ZEEhx4w0aZqZ?n6(-1!;DgpEvuMP z;eWRSEX`JiP@1@m|;IaeWRxw^+ zfIy2zNzsF`s0LskFt%y zk54Uh$a`Clyb8njy?Qr#++TiO_tNOfH9fnW`LQ^zl33yDYN(?~Ym$9*^{@Jxblu;+ zyKzUBd-k^@s~LjfzmJR~z%a42DbH+&d%Qh5N|QoliW6YKaxQTSp_{dwrBH})mERLm z_*7E3mr38>RTN?@0mvW>Ldx|$tKE`^r7vpvxw|4vq()&(pFs(k^f=h1oIFqWF|in% zSbQ4Uzzwx4o&^s>VC^M435(t&Iv8aw+y}O0iN>p;?oquX&yrIv_kQL;syIsGFIf>( z7frbIy$KvK?`?lyZWw)NL{gPQgW7+T?IL{o3nc&=!;*jN#JeS19!mV6*P(?iZI%YW z-H9DK78|rf@QC-qS8$(J(x`MN|Z0t+Lk20 zO73?W3FSBZyrtq;RI=8D+7ptx^n3FA`zSG0T@wcw8uy(CcYfZG-76{%!6a`s{^~#iT6?i(Al;@*JcKur0(AP&(riYBKN=O5!!+wAq zsy$Ve%<*#HHOP)kJa~Ovkz=(qffCeo`#bSe%QM#IS zJTknPgU*{Ovnt^eL0kYV&FXzzVm8V;6HG(@NMJ{r;Ytw+g0$|An8wq0x$1Zxzy?|K3EZVKF@C%<`F z^e^l#@{8H^A$7Ue=MSfqu83L`sB_NbWZVl<<{0f<@h|n{OdQFgARywbF_6A3nJCK@OYX{i_o*WorzO#EA~^?{WK{o6ef@8)C*ywz;O0Dms}$ zP-bMEa*_MlX*@8D##t&01<{eAfS1FybrqgsL^FKv&_Ln2FSrl<2;v-@GwNUQ#(Bjx zh~LhXF3vEV@7CEIhM>L#jgrj#J-oU ztL`i?>PTkd2TVtayO#?KN0&*SVAX*iEI&{4|9*Rc{}kA!D*A;@EOI>O>%3}G_4=CH z?k%M<>t3X*so6Gc$W7~MO0+54zUoCI@7L#e*s?d8{w4qO{TAaJGyc^$;EdxXMVDtT z^);RmGD4)D^1M@>g!SLW8%@a^me4_dA|kHiK>C9st*pKjKSP>2@Dbghw;GlFT#_b$281wE_;fdQDtmexU@4%O35Du6L z-WxfO)Q{=qzrb#R<*LP+{;13aQy(Gw_bC|wL&gvi5?af!0U9jc-XhYAq933QIF1A` zNJP4&t6CY3#NN?m&9Z6@C~45VW9ML)w33k6nd!#&o6WHFRdj_+e6To~(=O$DElq~| z#Ysn`rbRl>Zy)al#qSE% zeEZsdllkadK#A29N8%U)s!K@o?509DFHl|mAgdCK<^(^4CnqZ6=BDsW>@%NsabIp4pd8Ot zW^Yu=4mU!agDo{k26XVSQZOYMr4TedTaeekOYn`jp?!`y%CfA;bo}ybRQ%vO4p9ys z-f%Q6=eBHO=9866|GcQGo0&}-)tVB|XSx2ySblK75uUqcGwkF&^kjF>E%j;G>z0TP z4DCgIRL1X$h?nsO4fvl`F-G|DdD?F?e0P1>=u(05 z+S;eR{YP?MAD16aZJp$ttnM8iNA5cK{t?y=eac40lE>6(Dp6w5Ff8&MFq`t%1Sv!s zAT`(1Bp_z-g+a*TXw4M5E{)P!)EGX8Jd?y#cPjRR1npg(>kcqW06fUU3#X=NvLYXV z{FPB*!)^gqrrw=I>^hZ$kU}JbrGf0S_JQ|0$`f`ExIT!BXoHuK8xEo`fOf}TwR*^*jQb!)=}Sey+1xz|MqRwGyJCnOt0FtHt^oAM=P{c>oGcm z+{m3J&Ioh2Ys-7hBQMoXhL8WIA0GX4Rk#<#a7r-s(h+cA9NgMUxE5rjdb!Yw_+};N zaX4K9nFIJ5jgg`CSK=DxhiKW+fu&S$17QJUN!B5iUUpwF+FQ%?oaS^0fzGA`5yObn zM;-qxkvjkcR|vQwHV+vi9T)KTJg;}aowskyT>2HLisNJSw3 z(jbyf`1c~@nkUgY+MG}&qC9b!r}vcm7~yGn9LVs{)$iO|1M1!YBXh;-jdx+Jv#^}I zyGOaX0&#uO$5vd3NjW|m;ojFpZBrTT(Fc*-l*O2(1o(Bs3^Jv^$F@xRWOR6JyVzEl zU2QVWE5=IruvV3g^}ZM95J!E#NULq#Oz%*T$9C&$Wmtl9Hr2w_Z}i*L zNPGIvr;k=ePSp<8oU;*rLJ|*J=MTN4sTmw}zi*lEx-C7q=SpZ=cSL04=b(RbKWF_z z?=tR(6NlZ%54mp(+LTX@f-i0D$sPw{NNnIi@G>G(uO4CT@tkI4nKVRWAzizF{H9HYSBRZ!MMjIY;u0 z7Da>gP5p$O#~B$6Jw5`+@La65wD~nWJUn`>(fiHt)w9Fj zhSihub0a>WugvIjxNYpIRSs)*-%=p~Pyop+@wHPOefNrLg&|6+lXrg9M0-2u0F7mU z$!TsnNdIT%MA(*VD!)DtO`Zb^#J`uhYz9LMGnZ@xO9Lr|j(4)+F|gZ$Pvf5V>W{(5 zyyZ})a_*>jr{4ApPWCx{cd2}*%I@2n>6_@giq^V{bIIWF{rR>PmXDOVtaOvpc1FZI z?p@Pj&kB8F?;dQqPk9Qy3PT?0DuOD4lJxthXOQ7VK5{V;1FYf7Fj`h z6{SI-G4CX+j2Yp4{Vei!9D!@!S9yGe*n}rUQL01PU7G zwqardkcZh#xwQ!;y=n%+1ONvFgcOfYKy=eMdJ#Rbc8D&pag;rqxW^3-v973j{d`q4eQ}XPu$1cdGsi&yLV+`;N{{i)Djq z-h0gU*2Z=%TSaXFS2QZ8nq3N76V7M44r?UKT=R{6d*u`sm$<~ZnIG)mbG~~ylK=ff z#T=beyLazg_(7R%OL@86z2oM;d$QEa3`YR|D+*hH)u*OL-(2o2fre>ZcW?R;E7Jjr zH@5N0^#rEPaz>@s7sHEFcompdA;b%WzZ{+bKq9dM0p-R~TsgFi<&6AXThu*?#q;;J zYkHZM9f`agy+RaTLYOF&->7@U1pm3)ktT_5-tgpCQ*N-;w-A(4UTuH^*l3S3gef2| zjO0>EiM1g@{&8VPCQPbUHpaGC`Cr~L%HuT_5Sq`*fr5sz?x^Ums2M|KEGTV9N^d83 z%IU~5u9Tl#t?ZH+o99zE3jH0|%DRE6}u(%4+b7)AX(7+LHjgBn)18>cv+&-3aJY#;>z z#ckbLuS`4M9i**>w)$&Oy2c^rR)zQJc0)ex|UKsCTh^d0Mcx*MKgI?U-iB>3LJ0{aGd>9@_%7`cloy=ECTY!2 zBpAb05K2(&*?j<7#m+r`fH=zNCGkX5Ifz9*a?{52*GEMjnt3Az?6RU_h-VQW0Dfy-q;#fQT_DE~G1DfHeCAd6$*zR}>G8k4cPj zHt!7a0b8yso3?pjE%$_CxNmR#G=OG0K(h9RXy?1*`p2Cng_(dreSwWgnprjljvms# z?_D@#8{Q{FEisF+*Nj|D&VkubGP`YE&RWtunF;scg2C{+&*u7H#NTN=YP#55XK-h;$`bl zW}B~< zh66Ad6=*sbA&QBI1v8JiV@`AI!f_@T4R|^)$`w<@qGTha!X~@?TL^)= z8Ag#yU|)@g>t z6x&VP(zK{%KTGY81r}e_J!@at@&8ps2Ib2{L|NLdAc65#1O!uCTaCKfGi;laiRX!oqifp7VbUHrO%aJmjU7f zq+e~VpPF*XRQ~zSxcJeE&%l{5QFPEL($fCm-Faco=+a{ss~@)<{^8`#s+E5AEWb^v zzNf31Qd?Zs$TXOCF3ge^PAM9gJ3B65^Txdd&ZkJWa11spcryGhJJ+PvZR_ToaE+%= z!^|Bumxy%bg3TMxbKj3$0_p=!3Q6mB8@#8~*8(dWmGte`OwOhBB5CsEa8my(+9lY2 zs$3Uxg2Z(ki>% zPRT&hNqhh#wZ&bxe?C(vNe1BxDlXhD0fx~w}kt{Z+8n8 z#LAm3pZcUkSPh$ujzea}VAD)Zg^pWglj2RI;xoD`z{5Z~@&T{Bv{zhjcb=*pf!R}u z-=l)awhCkQid_MC`tlPBjd@{qFcCCYBF$>7Vv$6MmS3@Ba|W++DKyoeJ;1EyHIPu8Gm?|h{s#Ei7noPU6Afhe0A1~YifBPZCFBv3i~3M0|hf` z6kPh!)CFI83KqrdSjSp(EH*fuN@dpxTz@lHwaY&`?`n;x;jk~i74CQrG}V0QpIl?A zfP;-xPi|h>s67eY~l-(6W3^G`hkWn)}PCp$muc{mz6{s!^uFzwV z!weWIgkhG�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�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 diff --git a/audio/typingbeep.mp3 b/audio/typingbeep.mp3 deleted file mode 100644 index bcbf82c749166f868fd4d892229c6ddcc6a14651..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 260636 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 z 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

    JW$5gT_P{;CTTD*gE2csk2nsFnUSWax%sekE31w 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�ka`xpmwX%kT-Za9p1 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 diff --git a/corpus/__pycache__/customcorpus.cpython-36.pyc b/corpus/__pycache__/customcorpus.cpython-36.pyc deleted file mode 100644 index 54b021dcea02189a338471b2ce35a1e4105275e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 838 zcmZ8fOK;RL5Y8sM+kJ(lTiPPT!8g=PB`D7d6_Aji2e?#RR=IdHLt-_tBRdbR{}F#_ zIr0m*a$=liOVdR5=kJ>tk7w+&Fr560Lt91@P;2#yHHaD3&RJly!H zu+tQ?OtCUWjdqqO1uR!u3Ym~eHH>RyYgO5O!FbLRjl3jhF0YMU5SBYhu@t$s3FvbD|2oN{e7-Kw=25F3>k#!*OnQDB- zR~%pQ86Sxg$8j9z*j%=AI=7R}oz0z1ve|4l$tGUs+{EAiz3P!hfEr=r?Du^?@%vGF zQ(awGSN*HrtM^`Q-nh0rP>SuY^mP{pVkzx7%`micVlhqA7UBQT@xS`d1HxPVfxmhU zJr=o0YdHCHR`gGrH~c#-dVch)*5^S?{F~^3i5{5ffr%cN=z)nInCO9t9+>EXi5{5f zfqz5~$gN)Ag`Jdv`dqRC4Z^>HA9P!1i6>Mwg@Ow=}mj4JVzmZ0jcU*OpxryLn4v%LcAe zxo1~jslT_<(_h*(P#G@dpc=cR8ZO|Vy7!{um7d~oj+ywF)!wkFxutQ_cKW=|2N~3T zlTSE7mm90&44>E-^$qx&kJ3p_JuuM&6Fo4| z0~0+k(E}4bFwp}OJuuM&6Fo4|0~0+k(F6Z?^}s1!kG81TH&EVPhWx54R_+-nb#;|H zNy|LLd z$unCY#s3>&&$PfW|8JrjKNH$To%yrqU!#AB{x15f=+C1+f-b<8qqaD#=bVqb+bbYirx-7alnu{i)^P;n&)1p(N zCq%8NFRDlW8hI)5+sH2?KaKn#^6ki1BVUX>ANg41!;$wzo{YRb@^Iw7$eoc}BR512 zM6QSoMJ|c#iIgI{BHJUIBQ24Yk;cfPNG7r%GB+|aQWu#VnG^{{OzUOq&(@39udQEL zKe4`Nebf4i^?B=4*0a_Jt*5OgthZTjvF@>Mw{Etsv!r#IHE30=vejnow9d6QT5GH( zYl&5`QdYe++nR1owNA34R>1Ov{}%pZ_;=x7g?}FYQTSiNUk|?!{%rUY;g5zt5PmBB zc=*xq1L3>Fw}o#EUlYD6yg%F@?hbc^i{TyNt>N|I=J2xc;&3jU2+s@83Qr4937-(Q z!oIK``fKQ=&~HP(4E;3pgV47_Uk!aR^nB=Jp$~`N7kV=E_Rzzj`$BhyZVlZKIuN=d zG!(idv?o*w?K-!!I54|EHrTsl!>0A?77q3f^cBlJkk};S$z**zQJ*Np63Ks343#q8(OTlA(_f$64HBmKufjMHLjdy4R=FBY&-g5pi)sCp}ta#2U{(T1g^ak&!m#c=7Ctb zKUR$Oc9n|#gMB3$BHa)$j*K<>wQ*)ZTRDw~!1!KpD>zXo(2zH0sFvjt$GT;Sd@dc& ztt!ut^_1I2w+PyPs~2)?NljT-%1}oXX27v4GapR@XRpiPb#2 zJJt>ru8!Cc1iTHgRh6Mw5&ewetni^7YHu{2=`m*AwuPNYL4R9IvBs_EIg`+}&}=-O zNm9nhi>66?WeH_~Un3c)@zGw{G%cXbU834MzBgQpPGnP=T;FK{ZQg>zHJ1lvZ3|s9 zi)Z5b_;}k*Y+H_#fg1VX^$sb3}E4RwWv#E3;x9;EpR~=@{rvlCZ z@Bq;<)3|1zPNwqleW#$&nYzZr5^F`dr!+rS#9~1si9R>c%a*NQw|X2yCZ0^><2+=X zv8cu<=QC>DRfo;CDFH1pGHk~A*4QmdHV_JAGnbx>d@=pdqHU$V{X9wLW6cBN_cu_h zhNlI`xn`J4WV6|t`E|rLO+MyrO6PO=bn$foZSoXu)5=Pvy`cj^tiiSF_#D~H(Nz7U zV_x-mE}KoYpBT_)V*XpAI4X$$R!7{PBBQ5dP>r^$36X9*Y0LQ{4!^ z|I}85-+SsTgx`JYG=%^1l!5Tu?>-;lx86hu%*0 z`QY0rpMQEgoh*Lfu`Yz~du$!T_db?J`1E6^B7Dzdl+ROdy9nWvZ=?8ky^ZSs#9Jw! zcfNHE!pGlQkMJFDrTpLiD8)baDCPgQM>7cD`Y7e|=p$DmeB_ZT}D3)UKN!j3T`00m}cz2dG_dc!1(>cwjQZ>+in`;kEY{5ngluVuT0o zKMtXNUpGQ|ALaA<`=~xw-ADOcc`w!HihHR(m)}eITy`(zbLl;l&;EO;UHk4?j&Sci zRL{XTR}c=oc|F4ZH&gn)H&gzX+bFx{q{Fe`t#n@fbiTmO+vWsHj3YR8`Wp?ZB(C4w^9BZ-?$&)hBs2X*1vHD z!gX(?`n24-7vY*)>3gldbvnZ4TdC%&ZlRuBdCM|{D{i5bO}9||@|)WbF1wlfbLq`V zgpD_!i13`7_90w+(*}fR-9-5;y2(Je@WzV}7H*_`@;9E2Fn1&6lYIl_lX=5Rgy}a> zJyUO>{!iXO^-SDA^Kroqvk^AjK&J2Y*HeAwUr#+S@A_E?&%B=UpL-qk%$(~ee)e_r zeb2a#`fb*=LkLg5b~D16*UmvW<64>*)2``2c-l2oZrwGM&#Bi05Kg_ijPR7Jsb{8K zP3cd*n$k}`(1-AK2QEN((t&djo_L@R;UxPKgvZ&N5JqjPf5fJKuq1uou%vQBGKVlI zryvYSs;!>}osYhas5cRw9PLG@{XF`Y=zm9l6aDw-zec|w{Z{m!qhE-A8d?D#ioQ4c zuIOXYhobjJ?}*+Ky*_G3FOTkx_C|L_w?{WeTcRtYjnPHXOmsnXZggg}E;>0nDH@8J zk(VQXj=UK8b>tV3pG3YF`DWyW$Y;R$e<<>Fu8a4}r_S&3c1n zgU27Rx~-CRp|#CgXRQQ(pSR-HTyXbOtmCbaAeg?hV}*x;}JOXm6-H)E?Rq+7xOIofFE18bY%|r-n`l1w(r9Pr=^? z|1J1~;5UL_41O~B;oy6MZx22gyfb)H@Idg=;3dJ%;I81dU`ud$a8WQBoEwYc8{=gG~M*{Z*-Wa$paAjaH&=qJ4oFCX2SQS_j$Oh^I zrw676jt>L^n*Wdf-}ry-|Gxk0{xA4H;s22TDgR^s2mE*VZ}i*#{r+BmhyOzVR{vW6 zGXFwifO#m%bnSzU}+6?|I)dzW4dw>3i7sX5X#8YkgPv27G&b zt-kHP4ZfAWvwa!geBVspDZWWQzj#^vLHt_$Ongs#O?+N_TzpWxTf9x&FK!oa5K` zoBig+X3;#)TyL&07n^Bwo;kyuVjgGuynpw;&S9=@1dG7-68QwbYiQbUc@ch~HU!Grhe(3q8=S!YXc|PKK z+Vc+2TReApZuVU5xy;k&DSIyRoaS|-0dYCSXkQlgWfViirJQDmu=jHs5c@dI*MvR9X+Z4d zn6C(XkYhj$aLl8^?&lZ~eH5c_680q&Lqsp9`K_=koCZV>$2=_TZjJ%bMKQWh*n233 zh>JPRH-%m1G$1-T&30jTa2gQ1IVL3R632jOrx@)8VYg8X5v?5ah_H(s1L7i%`DbD8 z;usJYQjC6{uy;}n5f^ZbDeN5_1LAy+5yIZiF(A(4n6R+VNZ2i$2EP5V3;OEE9GUrvb5?W157$jAKA7<(L)1ZsZsc=TMCHNntOc7$VN*G>e73 znA3nbi({4xdlAQgSjaKw2)n>BAo3iuMA$iw0g+tPURR~*i$(M z#3>w85%v_00dX?Nq=h}1V?ex)Vzd{9eGG6;k032!%g;gjDzgg7HUB2+8cGo)VJrhX}?W-4K%ThX{o~okA-70ip2cIUyDP zfKd3;A*8||5DI@XLMr?L!T6)^7LxIYh*s{Ol8}r)ItYb7zY|j74+zE|?W006{t%(? zCoiPJ9}tW`+Q)=s{2@Z&PrHx`e?Tz)=t&_Ne~4iG(Vh{K@rMY;AH7XT#vdXS{?rSp z@CO9rj~*A2@rMY7KdnM4`~jixXT6XLe?Tbwc~(e;KOhwTvqDG66m8F6;lFybfe3Zz#iRLVM;)cZVZ?b$fFy5rUdZl#-J&IJGya+DFHjW(PK)W zj&AHRB|t|vhD-^}(T%bx0Xe#Hu_=K#y0P1o036+DGbQjwH#$rSxY3QJrUcsPMyDwO zHoCFXl)xI@xX6@%8r>+F5=f&Py`}`v=tjFKfit?X%ani_-Dou>P)0YpO$m_Ejb)}Z z=H( zGJzhtu|*Je7}{Nepu^DaGl3ksu~`sq7}`B1U_&=H3IYv7d$S45(2W*Bh+$~A3jz#7 zlP2&&H#P`D3qyOO*-AfGn}7=4Xf^>9x{(nC6NYxD36#){b%HR$(C#(?5xTKf5I`8( z9VYNWH&zKk2SdBf1UTr%N)yna8!17+U}!g+zy;k{BM21??M)^?K{wV5f&@c*gCImO zv|CL8f^MV*!GWROBnS-*?G`~`U}!f8!U99PS`ZW%+Kqycz|gJ}1O$e5tsopQv;!t! zKsT-w1OkS3uL%s$jeRB%KsT}`=D%+27fbo!gMuc%pj#plJ8 zcxNM=?L7nG8Qxh4XL(OYc)E8c!kOL~2xoYwBb@GyA&hyaA)Mwt4dH3tI)ruJQxTr( zor-X(_Y{Puc&8u)Bk`Tjq!9k|r${{a`Hz!O=9ydgy6l z+3^4g4Y%C89O2r#HzHhe2MI6EzKuk6 z@mnrNIQ>QvBE+u06yXWi`Vby}AZp=Hy;jnqp9g2ZGdcsD`dv7EKhgSNo3)wU@O=ku^jy^*9nyqS~W6*G{GL`9k9S`AVETU5S%%A{px*Z0l6wWco$&WQrME zJez7rC3A&B=8)3Qn)eE87SAV=$#rK2v}riebZRzIt0UDWS;(ae$wO;1_m$OV;{5** zjfjc!e^v~cIRAIfF^^iaVdDIM;{5+Gnh$Pk%*6RW>!?he|FiZC9aYoLMKlo)%ptYEHtGy90$da$*ixilGG}Ws7aB_7gB|cnxL&02v>X53>Xj{I z^Vx)3y+W_HUQpLf=Q8Vp!}TH+AJXt~tyd+gL(xma$C6~w)@~g_7We6R#Ns}BErOvWzS=o3p zlPwtP1@t_<@A^VI2exmdQ#1Ne_H-tlfWjy7|1-3&Xwj>qDv$J`cwX|!n)QbP^FD2uN{N_q*NNMgv zp|UTwySTT~NB1kVRk|vD*bb~-$kZh*0j(K=gV_mdoNu@moy`?e+2&YVv1j%GRQ`+Y z4XiSY-%2Z(qPo{Yih`b5R%aa{rE5{?3|LAMT#!oM=r*=iDtowzM66pA(3UAx)p4YD zEi#$J;?lMn+QG>M!Q_eIaIVfa~V`y z7u7YkTrr}G?*7V=%O+EV{z_lp{`s+1425P45kj3#nlC6;jZ#j45wLn8rK!~?ud0GG zYt1i_bpc+K>7@a!<%+t-<`kPdycT7Q-MSPs$T#+`sd@@tFIob=G(xk+0|e2^d$jp(QKFRYF`YvzyQnCQ7?|2&b63y0_PR93emF7YbQ*!Xc?qAN`EV7 zfp@@SRlk@QtFe-~7LrV18-5V1k6N{A*NH0^0h<;dZY3D=71zQO8E{lbf$rxoROn9I z`th#`ZdJ$^VE+S)h0b!JFwSj!3Sy3AAz!H3#^;Y}8;=aIIm#s4bFY4on1(o#zXv`m6*7`ztt3PAAilgl&q05gIStnY;T zLXqIrftLeU`tSFz_I=cs5x)_G=8w%@^AzvX-bT-7J)4am8t3cZ)-Te&g%^+FU+12H zwz-i97T(r`V%8Wi-^uwB9QWmYgYRP4d8N^DP0Wk_wqh?06o zKwFQAR^K$d3qA5%t~H3m7C&Fz5+kp!@}AP+_Oi?=)5HGV=!K@b#%ZbADje}Ow@PI4 zxl}ezJ26^T4!2?JD?uv+0EtiTmdv$~9AruPMuq3#Lck+d29_Lbhh1c!3;b+fyZYQq zrddbvmTMKV@pL}Lon0L~hyBbwZ2@fwzH(JCaC<;q~c8vh(!bJ{rkSRTI% zOjvVWD2HF=#;7+{Ec3~SKzOzHJcw!6QY^ zS*DNjeb-t+O*2tw=B)yTMTxijT&?Pof=jl@a|+kVE^ZBJIjr6GY&(QcLbW^cTW;ki zAr#2Qn~8w|JgO6u-pUY0E_G0)wZGK2SKW<9lGMT00VP)LF7Y6zvD;hhE4EkmVOQK0 z>nRS9dmX%4>~|2S8&nC5AVgzBIProEiDv|l=x#XosOfz0IsN6fCHx6$OXdhJ-02Ec zI4vi&h0{!MD!^}`U?;t*0<)c{20t8`QQU`{*`)}VZ?|m;Y1F?s8Cix+@kGzS*$VfJ z>p04#GHC!Yo#|m1^X6L#%7#z*D4K^dZOnT%<46em|N3bd#^Zg-wE`I&hsPUvpaD{f zAo};Hg_WqjP1t~9MNBkVW2SMmOO#e<0X(@(1c>iMlrU#(g)#21xgJ=1R^vwcMtZokwBg%d?xW-SM+5|NuQWoMw071tN_~gbtlZL-i9M$a zGZhS?zu`oTJ=K-=^>)GO-F(_1cEfocP8*9#cwKHU71h||w1hlPV%6`%D>o$^yNfan z@d9L8sWEHP$>+qCSWQg;SH)N>*71=#aH>PZhOHPwoKr3UOFWHLy z!Yj(dwQ^Y;!X?*1&Oy_To$wIS^{8s9ZJTmv=6G~cLd2L_Ubro?@v5M<1iNB6sQ~Wc zRpjJaQRrwUQo}vKq7WR!@-U@!9z(U#x|jH~7=$Fd%YE2?4)%1F`dMj$HnPhH2Vld( zh*3>Rqotjq<;E*9PbL-6h{;n&`uP}_;@UoJzfaDncAa4Q^?V)gaahEPvH9)zt&d4N9}BINEXFasuo^}T9{n6G1&v1>D+;#4R! z_b9Y3VmC}%r|#Br$6$E?C)jAkAoyv*a$MTm>p&2y-hrdme)V;RldFx5^NLz%N8aHN z$#2Oemj|?~z_cuzY5ikM9=j*fINpw@;)$(l2ojt@dN6ax z;M8E_B5QnaxR#vFC)4RBoTp>Y>x?CZI=#4fSyccvQJu|E+_zj8#LH7J4QLw|)irL; zS+6(~*ZM&TH9sT1Q-GJk=#%3#lcGZUHKHw1vjfOeHphxlzKj+LflgglnV^K78Ov>Dvo#9c=2d1?Z%sd)Ku#aQc`^tmsmQ z^R;#9f!Knl=IW7i5Q>v04q}4B!`|jb>uBC{tp&udnbfN~ERm-Us8g5b!fSWxlE=c7 zPi^L1RCTbZu3u!mlJ{MEFPXxM+2r8r!S$lb65bwMv1+_L zz7Izwz_{iG)+^1!wRUmXl*E^oa1VHS_aN>G8@;(2>;U`{DhzL`C`L}Z1l@%}R@h@5 z<*ROW$raM^d~&%u#-ei~C<1iRvRpp&fP)`1NKqO(Swp%JZNkfYq2{y)dg@cHW0Ie1 zwR4dBvPP!jx?4;8D$vxxcBUi4GT>^oYbH26N~f9u-KA3Zu=;E_kgnJV@gKCAXeV+$ z_Tgyf2Iw_adg!xUiU=jR>*Y9keosK_01#m(^{O*-t#3M!DkT50n;6;Bt+r19k$-H- zu04@Vt8b_}RvlajUj287ocEZnI7rf-%5&G}Y=HPR| ziv#}@*yI1Ue-V7aZG^vzYdi_#8RG)|dhMAJp8kK6lB?vDpjN;{kk%z6t*t-@726=} zg4)5i?!{4;67q5c;|Rx&-KCj^3^axc$qik_{UqesTxn}7_05lMfEa?VOPn7&7h6Gk zLK2nk{m_YSZH0*2@yI=_9IbY+{Ic46^*R}-UqenN&QSpJ*e^H8lffTZmjG{@tbcs@ zu6+WR+9~!{P!%NgRU3X7i4x;9^~?U9axwrK@;My0)gE+>?`^jlVXu{ANJrL!ZU8VqJR?46B5@}czhqYRjN<&qvb)$sW|hHJ?wvi3Z1kvuV^ZN}l5J#=86)!dJD0K35=PI;j$g#kw*#y&9Ku}Uv~<9txb z4b%_U{9%oiORX*M=JQxuU2qpjyULNvXfH#hxCiWTeXBE{ha@l|`7 z?IsBV>Vbj>5#I&@PY2F9`bywKDQlA1Iiit~+H#9)YOB6%wZdv%jntQxO;zXW6RNi( zA8)HxTQTiiZ|K=xgn>eXL0m=>7UA32bOFixVZ2dyGz*Dk>lfm63#un!{(-bK~5)Q?iArYuw zNxQS7ec!cG@EViIEibp@h?(WKUFE%{L)3!!2_4?i)AJ0Z=#ulMTnHiqvOXEA0?0K?Vqp$5{zgq-&mJo|8t0b(e}gyf;>oMQQ}7wo(I* zV@PV)j^@*cAkAdPNrlgxj!UBl@;C{j<{?s>hrIn5W$Ie}6t>D$btxd}_VsJmb5j&l zQ=?W%*hgm|JFhN>?UlnPbS($_&_YJWrG?!>0C&377jWR#1(7pY2G%EnVFn+$63av& z4J{)`_}j}JWr(uW4PL3e3z8EpC`RCHmv2Ko$cvx{_*bk5;Ck}tg7*G30w9*t)=5T0uDC;B)yIX(& zJHW!ck{nzsmQCj3&@>sT*nDmtf6Zm{<~h~m;~X{nM%9nnEl-uO6yJeQu`w~Kf=8W` zYeiv?kx|;3&^+lFEOubD*J>kRr;bLb`N4yZXD_05Nf@AS#J;XNQjYR{*IL2pKtA0s zVV6#J!cBA00kCs~!b(Z$9IvZ7>`+mzc|nkoORV3Gz04p<5;-TBV^a_X68#MdrEeGvN19HFg;J7WYo%qO|)<2?1 z*M`UQ*+OE>GvZ@>I8OZkY5M6Jy!p?Hyf;#^{$M>7zCPR-diMNddgd5U8t3Yl;^qI(|815zoH+o`F;li<=h2TdiFUQfE-wxg zovj}<#ndr$JCwA#$Ns|EhBTPIL_%(tSqwX$gbXnS{YDIN2a5W8q2h>pX!es~0TjES zyBDK^NcEr(5?qLq!H)Dohpf`W=TwT_E%)$?YOIgEse}xuRMAt}1>5Dar))zi2i#Zc z!`0Q%y(Zfvtfr1}1E5`$DQuVVfOf)3*ol%odqYpf?UpK399CG+oN!jG{$g(#sy~M; zR!;mT3BxL~V6R!Dj_`_Wk3;7_kp_nbgR5?A#8G3isTpGZ23kOOmr9URuow?E2<6?F zkpmUzKF~AP>Q%f3DL1;76VKrsbKGr&chqCo#$-ML$1u{8^PwAu6J4~?IUJ!q{vO7d zL%Lf%VjvrBeC*cBByR1?C&t~%dB?PsX&hE2vC}>ihXvTjp_Mo+AeILkoL1-Xm@L$> zw_~#evLYqsfQ4TDmEKO0dnrRR7TAo6a&2`omrG{H-Ril=vek(~BArUh%jFy_97Sp3 zlEKAR(_R3eqlv|~vLsrAHxx+V(0=TR93%by!B$e)Cw3b8AEiFbJEadpOyXb<;<1M% z5h_$N=)98phkg;a!^(GxQ>@8`R*#yjxF4$-som8`PHtVA$mSE-;Z1BmsrVlj6PyQI z{uH_RGo041P8Q`g>?dM)y3JoUo3;MC#HbB+`?f47HYZ2EA)=FiS zDj#ek+GDewnzxl^)5vo=jXJ63UH&;D)#X0px78?A&1iG69LY8$aMYX~8G%P?`4&0r z7_Ew-fL&t%`a7byoi)~m2`FntSzirF#tX^3+DOwBz(#4*_)xov)e`sYlJl|Z7#TaMTUn$%QAqVl zT(C=?LuM^dbszD(P}RX;=R#Qdxc}WR?!<{NcHzlXjSmpEt9CqFsrs*yxOjIKq>QM) zYeLuBXOhrHm0^kNcUQs+zCd~-d}NI^6yD)@bmBzWK@-Kvs7KBrN%fIyDKL>Pz<1Yp z&%%}c|G#OGCnAfjcUfnL?eNUdVCZ#$-v@3FSpH}Iy6ad5p#fJlR6C zT%IP^Vtkwg6^6x-W0d+ji@oX)&(ZkidBjskSwqmUV9S9%$am?K27`r6sF>Bp*`Z=K zoQJNh&Zc0JU2U~9s|icFFrK+gwMclRT&x5*M^5cpB396RLQa)%Nm<;=4aNy0@t)L3 zuulXg)E?*u)yUegnJD+DFRD`TE}|v@4{=K5T6iiCZso`gXp!X0@|ZL?2`9?AehF`u zE3sq1=cUs5dt%(~21{AfVlu5>ePoEt#j`l>9ZxIZ+47jQ0wQ&s=*cB=1r5^<_0?1> z)Ykx~%U0ryR`Yp_52+$;(!0vtd~^zXW-x^gbAw%FU+{Fzni z>dSDXk{o?wNwy&ici74Nc)A2`DUVH;z@Kz7CG&DQy2PitWFwz(Qme6RMs>-}BU*IC z!ObiTw{&E|9D9@>iRFMod^SF=ISmJw$EGh5X}JBChJ+K!W-Qv7l~!XvHc`Y?KrRpA z(a7RO8)jy8Da!4W!W&*ZJ!-C27wFnWdw8o+eRzR{OUca2QL8s4sy=sp*|k3TR5G5m zWAYquT4jm-0h&3yI=4Z$jMty)TEnY!U#TAF3IlNcQg)UnwOGS4lMm&<_k%Z{55BiX z)vIP#0GOxaRcEtOUC@S$ph;7czgp2bZ#9dmOe^m+C~?ikpqi;`ld~y^mTG5J^)1(4 zygduYg$bt{ZtS3NO-Z_v1HU#eWiK1 z)iw?5y)1NoB%D^xgHn^zQ8*BEI*GkXJED7HQmErxGo(|3bah_5(kkzfaCG^PXnro9 zjA!hPG7qWUJc*?W2c}zSkpdG1l}wzELKL(XyasgPYYt4=4@>np4;wNZih|#3>#M-- zkk@A5 zt*?gvJ$!4}3cWx0P25eNgcRVez$X9i{ZIJM@_T$A@a+-b7gw4;H?Q-)?0wktch4t0 zD~;b8XXszn{*FvugMT|DOx+UjU&W#$boCIpWM&eEid}nXMc@eT#M+}PdOCJ5mS z_+8D*wQ_(qKUaZ0Ys6C6H%J1oeyE4wL*wi84zkwse$w!7CK)b9K>uK0Z(q5eh7LA} zr0+;*qz(q1cgaMl`nJL&FmbDg za0$IN{hfXBgoA7o4QrPsO{KxPzFcwi6IGFw5?bO>ZV$o$XQ>x z4W|VR&%<{>I45UVt}2SV9ezS1!FlT1*i<@~NLRCGzklVng%WmXb zh|0sC15C-9cEU$@%34o`{5bO-Dv^JJVMQ@w&3U_vM@qq^cAh!O6rK%K+=|4JIFO0! zNQx{a7Qta-R~f>#6X*>8Y`k`Jl*$lMJ0$GER$|Sow(lt3b*&BLr1^~WN;1!aN(nk( zGx=5;!qkU{u-Lh@x>QJvMSE{_0Z(5Q<(e=2F(Q3yi z(8@;TO%n1)KF^9(hI(M_0pCFcr1N=}lHH{SFYHS|G2ihUw9`&_o zHgsbOc_@0o3o4E71v4Ro1yj%876^_V^vH3~z~P*D@)5$p30*q?4#-pSn(y8}FxXpe z=Mk;Ql@bn77htH39?6HKb1fx~Glbk43BRVZAdHzZSprCW>9jfXyU%`p>)_4Y*)-aD6|eW+Ut`C){y z2Ua@z$aF9b2`)S@a(D1KwQGi{9JF{2t;AvpKb^0vib?2q=j0A~0k$iPz$lR4Wj=p^ ze?JIiJNwvIMiCB$2H2M-)M?8Qw8t9z`v)PGBD*#Sp-JG=0gV_X0Id3=7yyLuV>sDs zP)$^?10iwO4dvjR)X}?Y>^twe_5zMjvn=_e8AJU@b>&Uop;L$+ZIf{PNzR?|1&M_l z=WAovA=`jE2;eaCDhVH+v>2k-)}bD7y-|i#d*maN+y;h%?at!Bzg)A$;Xr}KFXOD^ zHo5(nH!T~-u1S{Ud60V5$rAuqO^&uLD%B9%;0Uo<{-xF~9A802pyuRiST=@@0Cp-+ z3fc=5T#Osu6ks;87@XEgq;y0OoQc}TawJbcew`=Ba2~Gxm&qpM@!D_9xsEY5_}O{# zT%csrA%o+HFS^zP=5RRj$VfQqEW_ghdT?`;| zVa#J7mXz~Yc;)i(JQN|~j2N%_Ae;FAY1(~SbaUjT$Q6+~>n+x@@IB$Bp<U;D>_6 zz`FxQ|9Sq9Z@teaPBEYH{;T(DZ^-kcr(pcXxZYT(U!&*n`fKq|o@}3pUF*4UmJP4w zJ+bDcEwK&DV&`oEk4aitw1I6U=?fdzgNK09yraw0+omSozN$QilPE++s z(n_%!s~ULLK4-s73!PflK&-J(fF`XbSyz)dqOTX$EtpiLePF9u9g3t6?Kmu@^#?PjgBPNagk0T`)cn(V#kEpNj4r<9 zf)@6%y8xD@$Dj*v0TOmRZ8mI4XOn4E9XJ%o0?6LHwX%-|nbCFesJf1pb)uRlBbs${xz%{3- z;mZ^tKEblm*NwaNIu8}@j6B<6Tad&nY#*uq$aA-MU2B7jg>%`xHVicB6L5=0a^+7j z^3yFNTr~_(9I4vKhdZ=tBhPl&FycIR1K1U_9U1m|yaC(~(F9F6^1+}q26;R=FEUMUDtMu{c{-|B)T)0ZF&5m` z<2>T%`weECuSLIQAo9z}vhBx?X_3T!5RUr!91kc&+hZ_|v^j#{k4}oAx&|FgTI`3P zk)=6sgKq?JcGP?f*h8)taNQwmZjwhpWnqK-6kZQ!#d`tDj(d0b`G`X(82LI`QPL9S zpMe@%P32kwKr^0@c^f94S3rk6HyyAra;`V5 zlFtkTlu6kf7N=QoiU=_>PTNWUo?YNpH%nD5QZ8M+p@tZ}Roz&QyyjXt2qy}|I=oKv znafunfXUT18H6gv^`JgDIH_w{;EfY;8>WI7JuPyH(-k~8I3H))DYIBLItcCIeiIV* z3Rxcv!WSMfYpjJZ+%Gi!W>7XWX!sNz<>^*(>8`p=<<8wz6-)9DCwJ9(!`bu9tnGKF zONU1tt4O=GGz+wIuH_gRR0ns}YTI)xdKI@H=5rajz&0?vu-ly12$wp5Brs=aD~{qF z$B?W}h`kVL*x?zO{k4(@NK_Daf|SUeAomF=8>$W&PQvjjk!!2b<~S~rLgCnb(kzE; zh7b?G4!)rVPqx@P&MYA$0<${qmt4z-&2=g}WNS(aQPUB-;mcGpaBxlAUu`MVt{LLC z-2%2d<86?<>ex0YQ%J(KJD960u}n?EQ5TxT;7YehC{L+Mc@$98hl6TTmZRfHYzraJ z?2eUo6ZZ*;19pt;YKGhlD@}{qNBoJ%vkpCW>koWi2m_9yKdv~&{ehdwvnhFogdg30 z44eg|q;gO@tBMQU8{h+3`UJ=*^?|=4MHO{o;i#Rk1bg_IYulkdoy9tVu`qnl=nU_} zpEKg&b_sX63zWXj(Y@(f6Bv8tbC*eYzb#;wnOdVdff`Ew#|H+miqbmFvlfJFUh!N$ zi|s{it9FxjZyFPaZx=t_DdF5UwPs}Q4)@7;-gc`I+{ffnxj_lHv-498f%0dBMBDKIi$G=YVmYk=H-0m$e__ z)no8)tDV3(&}?U*VcR#bzn3?O)q`z5FT`5Iol=b)yEpO;SexUJ`uS`aCvRMgJ;-c` z5ZIue&-B%{1Lr$nsj=;F46iwNCsHkr$`sqRpd8HMl)=uyl^#{u78|C_IhQ7mO6^)A z4DsX1%WW7jlQ-hROm5lw&8kg2MM;mLwoUY#_dDZgPZ}q~sy!8OIM|Uwtl+5TtNvj% z{k1l%mJ67=ysYDkxg~aO4PDV%ko)ZU*e=eMU~bW%7FYvR<%_60?B$ek?;(X??_70A zcP`Z6Dnsyov=(mV_VL2dQf!N@-|TD-t6eaXM@@6o-fxskGTib(`8f(bQ2#=v3YDO? z;7}Epg%o2jj-8Ua5ox5*!*wN0qmM;bLf^Ci-%y?Qndr*d(t=l{xnv&Pr*6oGunaQ? zC=17UojCDmSAGDY@`P)L*z0+vXFl!->KZ63t3{Z*!X6mgjdqB;`|(TlWYKw1^;yl! zDq?g7Dz2J=+d#;`F;8+>>Qq*@JEG1s{=l&~$~Z~`q55mP4g2aAh%Bn35Zm1Gz3EyL zSnnq?vS`o2hHUOt+>OoMMKUyGY1oJjD4ZRz6c@WrbQ6A+ASXdb_1D*5JV;lLkw!sR zrGqS~k)X@*gLH@$fb*K_EPjc&TJ<82((0S8)rKuzZdiygzHZoV!|h%j1EqeYeKx$psC57jT$_q(p)$kpgko@WC|-fM z;!>rdK*VYr#?Xb)<8F+ku4TnDd8~;6JBA5_C4Rv&YYWVY$Xc-~W9yF*uG3XXbbQS% z7?zT$NVfu@)mQb+hPlKwB$rsVg4P;kVtRD04a4IF%SO$p@x13+iyRI&({hdtW8{t! z?p2s(Ev*{WkBEzCy<#&>o>E=7u4I6{4?EUzoRD-PYPQNW_f$eg7V<^xS`Qo>B!-cN zTQ#hj$BvALb6Ic0ka^i*zV8_6T}zE;$b;cZ8|KV=;Crk{Y_9S#Sn9dB!g3vU97hWv zM1*QTN00+?4i0@B7T=L{vF-v71GU9-HYiBvRtLD;OeTiKqN7`0n{jpdp^m7HAGJ31 z*|3r>R{3CT39CbExN~Y>9aomFbx*}%U@3Rmu%{lng8R?uB9u$O%vM>|V%SBo0zGtR z&FFGY42N$F8-9V?#&1-8)DBAqd8oP74L8W84+4u<-U)s7lz(Ku;;P{^c0XSGWY|`L zU&*b(tc1EVq(<~b!LGJCKONX{e!2DsMp<(BXpYBOHIp$gr}}u84IkpUstBTHP*oEg z;eEGS#i84ri{qFXZp2%ba7$Ux&c z)mnP!3GQqx_6xQjJoR8TC-15YF~pHYaFfDg|wnBUXE@ z4fFP6(#CiJ%!bU`>%bv}ip~dw(m2qQk(N*b@+yZt2hZ76>cH-n+>8L4$u3&yRYO-$ zX$@AlFnEWXJc<>^%PRH=8ij=hSia<4_%Yaw6 zL}9qKhifR}*4VIZpM`xfad*}Bjgi*1G$@|rl0!Bu+fRb}b8!i&1vZeWj*II>jIlTj zDf7+DgTl=k9aLgnBD|ncJtC^8notl>RRtDm7(4r*9vjx}MZh20aSXC^Ybw-=aRU^V zx)t!3ha=vVvsu9t^#()PKzEg+>a@DknG)+gIC5&-xUdHw#B?Lt9FKS0;{a7w%V|3cSOMBf6KK7*#hKmQrOFpF-8m8ydL*c^i-g` z02Trgd0af(gWD@`n!Ks8#nI(dQH(*TwQK%Z)^W8skAv~G5Z3C)wuPx=CXv3tUaA~$ z@<%;_1I|JN#Ns&QI+|)X9@A>)p<d z1@fAHC`T#L+wi7=W*QDNMU7;uqnZsiePl;`(>LlHQ;S`gFh^WPuO7{Z&qKU|YoA?v1(w~fvR81# znNO$I+c4Uu^(9pY-{PGOJ;hG9^(Ehs&t$Tgpb&E43~YF9sTq_jY?xiAs$Xo(WNyPE z52t&%q?}^s1KNJD?5NuoGH%6DI$I#XeGjfZp%a55O~~?C=kJGCGpL@(8F z*L+?BNt@}i4)#jGnyCa6-6hp}%0i99Y98v>$T3m5wcC-$z&+~7DH5r;x^+N* za^x~l%c=`FUZ1KzT5LGmu02|GP3>AD4l^;2ciQRyH#;l?ElQ<+TJ3`BCsBNqbBNSp z!zMA7`byLAX zr?k$H;nB+AR;`_Dh3L#tsjnY=9DUd`bfy14phcgK>XG+af3x0W%?tl9d{*dpp}OGb zf~x{A1{(eU>CgGTE50O#%-hVR-e=te@6ra2j`z>lm*DD5AR-pk zRS?uxIw?3@t5OS7xrK>j11>?vwI^5FFtR?k9;}DswUW=+NMbPJEp)`J6E_CY&bv0^ za782+rqTvbs4spP zHAYUtrJ&aA7P7t4W5Z&55l$_5ETC?$E<4vc!;KVlSx&QI#NCMRGP)B(Gw>(^{ASmYxB~$B{W%; zYIYa9s&3JEhS!eAnrG+RFqcn301bdT%2!?M0$b%w0v2nn(9Q+?&09=69(5wZB43sR zLaKzXsJ{NbGpXex{@9HjyO6+>a_bx2Bp}!7ZhBtqlp8^3~=!?;g@CPW&dj z2zArNqk7~Bueg;BIe!)gpbhp#5Q2Lk{8e3n(FWnC8f`r|v+e{3H2|X`m>O5lI9T9M zat^xkhh_^DLzP&qnw)zD@2Kv<@j$<;{69?^OT+U2R?;EqJXA*P#BZ|U0N|i*IKnHg z-2m}MCVhnsuK;wt3_1a~z$ghgyZvD)4(y|tuiTBf<6P~^q`1DN@bEb4@lVC@Bt@nRo zY4iutZ%4lx{bKa_=*OZTj=nGYWc2OPhokpJ?~L9Wy&-xadPQ_7dP#Iov=rSH-5%W> zZHcaoHbxgkGtmXnxzU-?y6EKSq-ZE=MqZBmIr3uU*O6aDeiHd!6J zudJV1-?zSDyDCnMcq?Ri!+#6^A^cl-H~dNXyWy{gzZ8Bx{9O2h;rE0e4?hyVFMNCW#_)mgW#Rtt zo^V@uM|g91O?X*&Q8*Qz7oHiO8a^Q$3VT9-4ZRrpRp_Uo?}fe|`eNu)p^t{%7kVP} zXz1S1ZK3N!SB3V5xUuy|+irr?3#rNK*roxxqfZNZk{^5CLiGB`IF3r-G3f@a`c26`GWar^P}c_&Bx7$%)8B7%xj=+(r;dD7R~d__2vq5 zv6(jKnKR5O=5eOa`*-h4-v9Le)calUSG}L}e$4w%-Y30p_1@=wllKPi>%BwX9&gEe zfp@cawYSlm_b%|B;jQzY=nZ)d&!0X2<@tr@hn{bGzU29o=Odn{J@4?m#dDYEX3y20 z%RGIaGVZuI*R#&kS=>V?YRwIZ+%iIR=E6W44F`9*zNl5>eI{#Q~jSh|oCAHep}IX+T`b zF%e;3!7(5%rx@+a!oG}Rh`5x~>=5>TP6J{er}>(&hd2$0y&UruVGnW)hyjjyRM`C- z1EP;&^i9IPgkp&3<&%?VmHTxgk9no5bYGBy&&v1iXozvV;&K9kz+ty#4-OY>|GoK;zEki&lC1eiXq|x zjxmM3gJVFP&oM&S+c^frc^nfK_PHDbVjIP1UlR6KiXmbPr&%rR&720rCQkE5VQ=I# zAU1HCmBL=nX+W&wG!F^8h0}mo%V|~#dkv=nv6^F=h26|CAXZU~_7-8Uq!=PraGGVp zZsIf`mUB##u$OTRh@~8}LfDNQ1L7Qt(LO2cB@{!%*_>vvuorV05NC1Ba$zsx7!V6N z<{V)cI0i(XW0nXz$1xzX6r=rB*cpl;BF$-*3OmJVKqNUv6Lx}QK*T9V`@66gPz(_b zoMxf0>p2aG`JCpzg*}hcfH;%Wc!WKd(}0-6F#Lz_ya=WPew?E zKOh)?^xZ--{t(g1{ZkT>@ka-t@aK0zD*OS#_@jMPNX8!`6#nFeRQLme@kjfZkc>Y> zDEw&`QsEB>#veT?B;yYej6d2lLNfjk!T6)M3CZ|Fgug+I>YX2*w}1C?w+# z5sW|Dr-WquA%gKo`-_l_KSU_}xkyNbKOhwT%oS4M4+w=ne-l#S4+zE|?c+i+{t%(? zXP1x)e?Tz)=nI5o{2@Z&&xJxN`~kuEqpuN?@rMY7KkI~4_ya=W&rTr~{(w;UvsOrj zKOh)?^fQHI{2^inkDm*KWc<-VF#hQCg=GBE=bIAvqZ|FE1pMg6UQ+^nbfaQQfRAo; znG)Ee8!Jo+=+TVl#*3DnVzJ*EWc=*EyKfjPQS zHYFfOH!e0M5Jxw5n-YMd8*Qcp-snb$DFHXSvDB168{OzMCBQ~EcA64cqZ=2Q5>TTX zB~t=vbfedl02Cq8p1%V2f^CU;ZfrGyB)YNP1dixNlL-{jjdM(3h;E#10zq_Ri3$ABjZG%dLpQbv!VW{bOAvGz z+I=RFLpL@H!VN>a#{_KX#zsM)VQ6nQff>5dA_y@I?RG(cVQA6>Ug*XKL1Gif?&eX?lgfCy0K0WMi|=NCLlsL)(Qd$L%YKSKIq0OLFiy;x0wJ3 z-B@V?8gwHi2pA0QW)rxe8*2oif}y?11SsgndO?t2Xm1dN2!?j62|&<|v>-Szw3`H> zfuY?Z2n-DE20>V0Xjcn@0z&B%f=DTiOW@5JM#zGTwT{kW_G1GM;Z(^S7##Mr5xuIR}O?m=)(wjh- zfTDUpk9!v&T;Od$*x;>4Snr*WaK3jQ!g<~^5uWLti*T-Y4#GL!*$8KQ&p>#FcNW4~ z-qR7D?wyHnrgsLy8Q$p#r+Z@vW8P^9r+H69c$&8kVV(C>gr|C^BAn_y1>q^)DF~-{ zPeypMcQV4s-q#^~o%bY!CwWgqc%t_NgeQ29M|iw<62eK|;}9O_jUtSCBM2j23n4gK zgkiYi3+N$l5Mj_8Kp61)5rT_D=<^DM!fPTly1!yDV2?U7$-)HL*3~*2~r(tY2F{v%Y72&HB9cad7nSw%%slZ`}@lURwLCinZI?X>GA!ePR{B%g?q> zvre+YmM8p|@bAFK|0w*e@C)Hjhd&yAFL?Ne!gq&n311Vw931?`;bQo_@cQtI@ZxY9 z{QHdXl<;w3U+C|lmqPyu?)|%=uZBJs`dH|nLQjU?8oDp^CipsheP}4u6Dox+2yG6n z4mF1Ip#`BcLUo}NL!pon{B!WXg1-p<5O*ScDfp@2M}kiW-w}LE@UGy^!K;Ip1^a^K z;6=f6gX@A#!Lx#?;F-bc!IOj0pa}de@ZW)71^zYgFM)p!d^Yf0-~)jt18)mF5V$jN zbKsi572w{x1Es*uz}7%Zpee98kOBWbD^M3WDPRRm|KI#C`F{-#{s;bV`d{!rkGmK@ z;D6HpHt_Iw`fv7MdVfRR0P7AntAalkc~_fAjso z_YL0{eV_Dw*!Lda+kFrE?)2T{JK($2cZsjlx68N9*Wz35TjWdn=K5m3$-aos6#pY$ z6#oHRkMD@Dh|h>;#rwq*;t_F=c%!&ZTqy=cmuM5`i;ZHHSR%5bUYstbisMB0pdy3>ag}o?bA<5w@`fxPTjA+Nf9-DkD@Z8v1|U9$tKxU zQb_OF-6Xr&-E7Hj^8cQ5-W!c<=}E?h-|zqV|MkJVGxyzh+q>_3?mhRE>&=bk6=vML z%v@@oZALLO|7`pbktKg(e8>2z@p+6NC5$^g_Hxz z2H!#o2yiZ>tX4L77g9igdm-gT$_D>J3J7p8q}-xx@Gzu+02f0_i?YGTkOBgn3@NLW zO}tDef|!}1ovCbaGo*kZer9MdR5lnIQa}((Gqjf}8$1muAc(6O+U?3Fwx$ySzJ`?3 zl}(&YCjzVuDQlGt=7tmyU~ih{|Aexc!TJAA+2C+Ud9SjW$N3*qHkcezKBR1BbN)w_ z4L*mIFDsilo&QV92CGBLN0bd_2jYv$W_IWQtg^xHkn#m(Gsp9PRM}v8NO@e@%=G-9 zQ#Nxw|7Vm9wuf7vS2i;~|EHDBoX`I$Wi#vZ|E;o__xV4mY-WD`4=bCwpa1>JX7=a* zxU!l5`9Gj+FhCUeK4mit^nXy<;DJc_n6kkILHtSjqU_6<_=&Pt@GVo>mvYJvlzj=OXv)5rQ{JrX z2DrO#H91 z&tu|AWuME$uatcb6aS;^vzhq5vd?1Tzm$C@6Yo~`8BBaz*{3t{9%V0L;=9T|jfsC# zb`ujnS9T*4Z&!AdiFYYG!o)+$ZeZe_$__K}M`eeY_^PslOgy4&!XM55ugWI;(ft3c zY{DPS|L@8s{L%bhQ#Rp`=Kr&@34b*IJCsfMqxrwCY{DPS|FE(Me>DF$ltuWX`TtW{ zgg=`9TgoE*(fof>7U7TP|9fQ-{%HQUDvR((^Z$#o2!AyHca%l=qxs*aEW#hn{}*Ku z{%HQMnAV6M(){D5HB8rvX${f!m8Nw!U58C;kglVqRivwJS_5=_g=zKE)iSLrvA>NY|H|RySQsrgea>FEOnyx{jDuCtaUoS{-zKv1zr_^#Ri= z(Dg;8bthflWLkI7^?uX3ovtr5t=s7OM$@{LuJ@VNe!9NEv~Hp6-KKRjUEg3@H_`Rk zrnQf*L#DNtuFp5EJ#_sW)7nkfdrfN>U7u%KH`4X>rgZ~d?=h{NbbYRA?V#%s)7nng z*O}Hfx=xwa^>lr$X`m%O$^_Ml|^Wx6G3QV_LKB?`LKDM( zfwBlqbRq~%4BrQoMQEZEaS^BdTv>!Bx(@`QiQ#*CWh}r z$|5w;i6AsFd|yx&p@~iep^4$YOj(2`IuV2>hJS^!2u*Y%2u%$CdCDR*(TN~5F?>H! z7NLnw1fhxH`-rj#O>`m%O$>jtvItFdBJh9Y`K7W5O>`m%O$^_ARGH93CxXz#@cl-W z2~Bh&2u%$CVpS$I(TN~5F?_#JWkM632tpIXf1xT9n&?Cjni#%+RAoXForn=mc|?_m zIR(TJr@T*<@8%Q`gOuVwTa}BHLc{>)d5bFda~=?VoboeO?&TB^cTtM}d{yqD6e13C zo*$}mH|GIyfK$G&%3YiSqLWhmXQ*-qr4Z51d48?R1yE)|@s=SL+K-@?v z{&Q9N21+4fC+GRGD(~PtAhvVL7gc#1r+~PgQ{Jx1*KrDnYdPhus@%pYAhuG9|1?$J zLMcRC!+9Q7<;|Q2#3oL8T$ML+3W%#I#ea?}GyV`E`17PH3;uv${PBlXnem4R!Jj5o z7W@Ih_~ZMIDl`5N!T94}qRNavL@@sNPgiBeA0ilk{AZ~$;|~#xKfZ6NGUE>sfsfBUWZo6c-}yzzyN zo1%Y?J{&DXPm6pZawyV*9rKGCE(`xSd^mhj=+mLz;J*Z46TCF=GwdX

    -uaIJteE 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

    yY0`~{-EsxZSQOQ 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

    R+uzQYmXY&y(u>ZC`4=(Y%Z9j){askSR~e# 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 literal 0 HcmV?d00001 diff --git a/experiments/NER/ner.ipynb b/experiments/NER/ner.ipynb new file mode 100644 index 0000000..6805ada --- /dev/null +++ b/experiments/NER/ner.ipynb @@ -0,0 +1,84 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Named Entity Recognition (NER)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Named Entity Recognition is a technique used to locate and classify named entities in text into categories such as persons, organizations, locations, expressions of times, quantities, monetary values, percentages, etc. It‘s used for optimizing search engine algorithms, recommendation systems, customer support, content classification, etc. Note that `en_core_web_sm` often appears in NLP projects as it is a simple, small English pipeline trained on written text from blogs and news. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Potential\n", + "This method can be used to find what the user wants, ie) meanings, functions, basic talk... It can be used to determine the request of the user such that new functions can be developed" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Biden', 'GPE'), ('Ukrainian', 'NORP'), ('White House', 'ORG'), ('this summer', 'DATE')]\n" + ] + } + ], + "source": [ + "import spacy\n", + "nlp = spacy.load(\"en_core_web_sm\")\n", + "doc = nlp(\"Biden invites Ukrainian president to White House this summer\")\n", + "print([(X.text, X.label_) for X in doc.ents])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Reference\n", + "This is Spacy's classification of entity types:\n", + "\n", + "\n", + "![Fig.1](image.png \"Spacy's entity types\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.7.8 64-bit", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "85cab9e096cbab1951b2d3a14822210bb6543dde301eda19da12202a5ce4203b" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/experiments/NER/ner.py b/experiments/NER/ner.py new file mode 100644 index 0000000..440ce45 --- /dev/null +++ b/experiments/NER/ner.py @@ -0,0 +1,5 @@ +#named entity recognition +import spacy +nlp = spacy.load("en_core_web_sm") +doc = nlp("Biden invites Ukrainian president to White House this summer") +print([(X.text, X.label_) for X in doc.ents]) \ No newline at end of file diff --git a/experiments/SL/stemming.ipynb b/experiments/SL/stemming.ipynb new file mode 100644 index 0000000..0a08abd --- /dev/null +++ b/experiments/SL/stemming.ipynb @@ -0,0 +1,147 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Stemming and Lemmatization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Stemming: It truncates a word to its stem word. For example, the words “friends,” “friendship,” “friendships” will be reduced to “friend.” Stemming may not give us a dictionary, grammatical word for a particular set of words." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.stem import PorterStemmer\n", + "from nltk.stem import LancasterStemmer\n", + "# PorterStemmer\n", + "porter = PorterStemmer()\n", + "# LancasterStemmer\n", + "lancaster = LancasterStemmer()\n", + "print(porter.stem(\"friendship\"))\n", + "print(lancaster.stem(\"friendship\"))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "PorterStemmer algorithm doesn’t follow linguistics, but a set of 5 rules for different cases that are applied in phases to generate stems. The ```print(porter.stem(“friendship”))``` code will print the word friendship\n", + "\n", + "LancasterStemmer is simple, but heavy stemming due to iterations and over-stemming may occur. This causes the stems to be not linguistic, or they may have no meaning. The ```print(lancaster.stem(“friendship”))``` code will print the word friend.\n", + "\n", + "You can try any other word to see how both algorithms differ. In the case of other languages, you can `import SnowballStemme from nltk.stem`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lemmatization: Unlike the stemming technique, lemmatization finds the dictionary word instead of truncating the original word. Lemmatization algorithms extract the correct lemma of each word, so they often require a dictionary of the language to be able to categorize each word correctly." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#prerequisite\n", + "import nltk\n", + "nltk.download(\"wordnet\")\n", + "nltk.download('omw-1.4')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk import WordNetLemmatizer\n", + "lemmatizer = WordNetLemmatizer()\n", + "words = ['articles', 'friendship', 'studies', 'phones']\n", + "for word in words:\n", + " print(lemmatizer.lemmatize(word))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lemmatization generates different outputs for different Part Of Speech (POS) values. Some of the most common POS values are verb (v), noun (n), adjective (a), and adverb (r). The default POS value in lemmatization is a noun, so the printed values for the previous example will be `article`, `friendship`, `study` and `phone`." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "CHANGE POS value to Verb (v)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk import WordNetLemmatizer\n", + "lemmatizer = WordNetLemmatizer()\n", + "words = ['be', 'is', 'are', 'were', 'was']\n", + "for word in words:\n", + " print(lemmatizer.lemmatize(word, pos='v'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "output: print the word `be` for all the values in the list" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploring Possible Implementation\n", + "\n", + "It is possible to break down the string from `query` variable of Alpha to analyse every single word by stemming, and to look for possible definitions by lemmatization of words. " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.7.8 64-bit", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "85cab9e096cbab1951b2d3a14822210bb6543dde301eda19da12202a5ce4203b" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/experiments/SL/test.py b/experiments/SL/test.py new file mode 100644 index 0000000..b5f9a1c --- /dev/null +++ b/experiments/SL/test.py @@ -0,0 +1,6 @@ +#this file is for running code from the ipynb because reasons +from nltk import WordNetLemmatizer +lemmatizer = WordNetLemmatizer() +words = ['be', 'is', 'are', 'were', 'was'] +for word in words: + print(lemmatizer.lemmatize(word, pos='v')) \ No newline at end of file diff --git a/experiments/VADER/avatar.csv b/experiments/VADER/avatar.csv new file mode 100644 index 0000000..34898f9 --- /dev/null +++ b/experiments/VADER/avatar.csv @@ -0,0 +1,13736 @@ +,id,book,book_num,chapter,chapter_num,character,full_text,character_words,writer,director,imdb_rating +1,1,Water,1,The Boy in the Iceberg,1,Katara,"Water. Earth. Fire. Air. My grandmother used to tell me stories about the old days: a time of peace when the Avatar kept balance between the Water Tribes, Earth Kingdom, Fire Nation and Air Nomads. But that all changed when the Fire Nation attacked. Only the Avatar mastered all four elements; only he could stop the ruthless firebenders. But when the world needed him most, he vanished. A hundred years have passed, and the Fire Nation is nearing victory in the war. Two years ago, my father and the men of my tribe journeyed to the Earth Kingdom to help fight against the Fire Nation, leaving me and my brother to look after our tribe. Some people believe that the Avatar was never reborn into the Air Nomads and that the cycle is broken, but I haven't lost hope. I still believe that, somehow, the Avatar will return to save the world.","Water. Earth. Fire. Air. My grandmother used to tell me stories about the old days: a time of peace when the Avatar kept balance between the Water Tribes, Earth Kingdom, Fire Nation and Air Nomads. But that all changed when the Fire Nation attacked. Only the Avatar mastered all four elements; only he could stop the ruthless firebenders. But when the world needed him most, he vanished. A hundred years have passed, and the Fire Nation is nearing victory in the war. Two years ago, my father and the men of my tribe journeyed to the Earth Kingdom to help fight against the Fire Nation, leaving me and my brother to look after our tribe. Some people believe that the Avatar was never reborn into the Air Nomads and that the cycle is broken, but I haven't lost hope. I still believe that, somehow, the Avatar will return to save the world.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +2,2,Water,1,The Boy in the Iceberg,1,Scene Description,"As the title card fades, the scene opens onto a shot of an icy sea before panning slowly to the left, revealing more towering icebergs drifting in the water as the shot rotates, moving over a large snow-covered area where the untouched blanket of snow is broken by two tracks of footsteps. The shot fades to another shot of the sea and of icebergs in blue water contrasted by the paleness of the sky beyond. As the shot once again pans to the left and rotates likewise, a small canoe comes into view, its motion through the water indicated by the wake left behind it. The shot zooms slightly on the canoe before cutting down to it, providing a side angle of the canoe and of the walls of ice rising on either side of the vessel. Two people, a boy and a girl, are sitting in the boat; the boy holds a spear at the ready, while the girl simply stares into the water on the other side of the boat. The shot cuts to an overhead view, revealing that a fish is swimming close to the surface right in front of the boy, who is focused on it, following its every movement. Cut to a frontal view of him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +3,3,Water,1,The Boy in the Iceberg,1,Sokka,"It's not getting away from me this time. [Close-up of the boy as he grins confidently over his shoulder in the direction of the girl.] Watch and learn, Katara. This is how you catch a fish.","It's not getting away from me this time. Watch and learn, Katara. This is how you catch a fish.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +4,4,Water,1,The Boy in the Iceberg,1,Scene Description,"The shot pans quickly from the boy to Katara, who seems indifferent to his claim and turns back to her side of the boat again. Her expression changes to surprise; as the shot jumps behind her, looking down into the water over her shoulder, another fish quickly swims by her, close to where she sits. She shoots a quick glance toward her brother, removing the glove from her left hand. She stretches her arm out in the direction of the fish, taking a deep breath. Her look is a mixture of concentration and apprehension as she starts making a wavy motion with her wrist, moving her hand up and down. +The shot widens out; Sokka, still focused wholly on the fish in front of him, is completely unaware of what is happening behind his back. As Katara continues to move her hand, the water in front of Katara, just in front of the shot, starts to ripple. Suddenly, a bubble of water rises up from the ocean containing the newly trapped fish.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +5,5,Water,1,The Boy in the Iceberg,1,Katara,"[Happily surprised.] Sokka, look!","Sokka, look!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +6,6,Water,1,The Boy in the Iceberg,1,Sokka,"[Close-up of Sokka; whispering.] Sshh! Katara, you're going to scare it away. [A look of bliss adorns his face. He licks his lips and wiggles his fingers, not taking his eyes off the fish.] Mmmm ... I can already smell it cookin'.","Sshh! Katara, you're going to scare it away. Mmmm ... I can already smell it cookin'.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +7,7,Water,1,The Boy in the Iceberg,1,Scene Description,"Behind Sokka, Katara is still making circular movements with both her arms, suspending the bubble of water that holds the fish in the air and moving back and forth. The camera cuts to her face, contorted slightly by the focus it takes to control the water.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +8,8,Water,1,The Boy in the Iceberg,1,Katara,"[Struggling with the water that passes right in front of her.] But, Sokka! I caught one!","But, Sokka! I caught one!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +9,9,Water,1,The Boy in the Iceberg,1,Scene Description,"The bubble containing her fish slowly drifts around her to hang over Sokka, who is still oblivious. As the bubble hovers over his head, Sokka raises his spear to strike the fish he was following. He bursts the bubble of water with the blunt end of his weapon, causing Katara to lose control of the water; it rains down on Sokka, soaking him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +10,10,Water,1,The Boy in the Iceberg,1,Katara,[Exclaims indignantly.] Hey!,Hey!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +11,11,Water,1,The Boy in the Iceberg,1,Scene Description,"As Sokka lets out a gasp of discomfort, the fish tumbles through the air and Katara follows its arc with her eyes as it flies over her head and splashes back into the sea. Sokka rounds on his sister, placing his spear perpendicular to the rim of the boat as he yells irately. The shot cuts to a close-up of him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +12,12,Water,1,The Boy in the Iceberg,1,Sokka,"Why is it that every time you play with magic water, I get soaked?","Why is it that every time you play with magic water, I get soaked?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +13,13,Water,1,The Boy in the Iceberg,1,Scene Description,Sokka clenches his fists and a few drops of water fall from his soaked gloves.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +14,14,Water,1,The Boy in the Iceberg,1,Katara,"[Cut to her face; she sighs lightly before answering in slight annoyance.] It's not ""magic"", it's waterbending! And it's ...","It's not ""magic"", it's waterbending! And it's ...","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +15,15,Water,1,The Boy in the Iceberg,1,Sokka,"Yeah, yeah, ""an ancient art unique to our culture"", blah, blah, blah. Look, I'm just saying [Grabbing his warrior's wolf knot with his left hand as he turns away from her, wringing the water out of it. Meanwhile, Katara has crossed her arms.] that if I had weird powers, I'd keep my weirdness to myself.","Yeah, yeah, ""an ancient art unique to our culture"", blah, blah, blah. Look, I'm just saying that if I had weird powers, I'd keep my weirdness to myself.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +16,16,Water,1,The Boy in the Iceberg,1,Katara,"[Cut to her face as she raises an eyebrow skeptically, arms still crossed.] You're calling me weird? I'm not the one who makes muscles at myself every time I see my reflection in the water!",You're calling me weird? I'm not the one who makes muscles at myself every time I see my reflection in the water!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +17,17,Water,1,The Boy in the Iceberg,1,Scene Description,"Near the end of her response, Katara smiles smugly at her brother; as the shot cuts to him, he is flexing at his reflection in the water and grinning confidently. His happy look vanishes upon hearing his sister's remark and he turns around slowly, meaning to face her. Before he can say anything, however, the canoe suddenly shudders. As they both try to keep from falling over, Sokka whirls around toward his end of the canoe, a frantic look on his face. +The camera cuts to a far view of the canoe, which pans up as the boat moves away from it. The boat is caught in a rapid current, which is pulling it swiftly toward a jumble of large icebergs which block the end of the narrow passage formed by the towering walls of ice. Sokka paddles the boat in an attempt to stay clear of any floating chunks of ice. He manages to gain just enough speed to keep the boat from being crushed by two icebergs which slam together behind the boat. A series of shots follows: the canoe moving through the water as Sokka rows furiously; a close-up of Sokka's head; and a frontal shot of the canoe as it is nearly pinned by a number of smaller chunks of ice. Cut to Katara's face, both her face and voice full of panic as she yells commands to Sokka.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +18,18,Water,1,The Boy in the Iceberg,1,Katara,Watch out! Go left! Go left!,Watch out! Go left! Go left!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +19,19,Water,1,The Boy in the Iceberg,1,Scene Description,"The shot shows an overview of the ice floes moving closer together in front of the boat, narrowing their path. The boat manages to stay clear of some of the icebergs, but it veers to the right with the current and becomes pinned by three large chunks of ice. As the canoe is completely crushed by the ice, Katara and Sokka throw themselves from the canoe and onto one of the floes; Katara nearly slides off the other side into the water, but comes to a halt at the floe's very edge. As she raises her head, looking around, the shot zooms out to reveal the siblings are floating on one floe among dozens. +Katara, shuffling on her hands and knees, moves away from the rim toward the middle of the floe, sitting next to her brother. His spear is embedded point-first in the ice just behind him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +20,20,Water,1,The Boy in the Iceberg,1,Katara,[A touch of bitterness in her voice.] You call that left?,You call that left?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +21,21,Water,1,The Boy in the Iceberg,1,Sokka,"You don't like my steering? Well, maybe you should've [He waves his hands, mockingly imitating waterbending.] waterbended us out of the ice.","You don't like my steering? Well, maybe you should've waterbended us out of the ice.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +22,22,Water,1,The Boy in the Iceberg,1,Scene Description,"The shot cuts to a wide shot of the two on their floe; among the large icebergs and tiny floes surrounding them stands a massive, towering shard of ice, its craggy peak rising high above the siblings. Katara gets on her feet again, facing Sokka so that the pointed iceberg is behind her.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +23,23,Water,1,The Boy in the Iceberg,1,Katara,[Indignantly.] So it's my fault?,So it's my fault?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +24,24,Water,1,The Boy in the Iceberg,1,Sokka,[Annoyed.] I knew I should've left you home! [Cut to a close-up of the siblings; Katara is staring down at her brother in anger while he rants calmly.] Leave it to a girl to screw things up!,I knew I should've left you home! Leave it to a girl to screw things up!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +25,25,Water,1,The Boy in the Iceberg,1,Scene Description,"Cut to a close-up of Katara's face as it contorts with fury. The shot cuts to a side view as Katara points accusingly at her brother, who makes no movement as she screams her disgust at him, the floe bobbing lightly up and down.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +26,26,Water,1,The Boy in the Iceberg,1,Katara,"You are the most sexist, [She brings her hands up to her head and swings them back down and behind her in her rage; the movement creates a small wave of water behind her.] immature, [Hands raised back to her head.] nut brained ... [Swings her arms back down again, creating a slightly larger wave; she raises her hands back to her head during a brief loss for words.] I'm embarrassed [Throwing a hand upward, a short jet of water shoots upward as well.] to be related to you!","You are the most sexist, immature, nut brained ... I'm embarrassed to be related to you!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +27,27,Water,1,The Boy in the Iceberg,1,Scene Description,"She swings both her hands back forcefully once again and her unconscious waterbending hurls a wave directly into the towering iceberg behind her; with a loud, splitting crack, a hooklike fissure arcs up its surface and out its side, leaving a spray of ice where it ends. Sokka, who wears a somewhat disinterested expression, glances briefly in his sister's direction and sees the iceberg; after a short moment, he does a double-take, his expression morphing into one of terror. The shot cuts to show Katara's outburst from behind Sokka; as she continues with her verbal outburst and arm movements, little chunks of ice from the iceberg splash into the water, unheard and unnoticed by Katara.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +28,28,Water,1,The Boy in the Iceberg,1,Katara,"Ever since mom died, [Points to herself.] I've been doing all the work around camp while you've been off playing soldier!","Ever since mom died, I've been doing all the work around camp while you've been off playing soldier!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +29,29,Water,1,The Boy in the Iceberg,1,Scene Description,"She emphasizes the last words with a strong swing of her hand, waterbending and deepening the crack in the iceberg. Sokka's terror deepens.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +30,30,Water,1,The Boy in the Iceberg,1,Sokka,"[Pointing to the iceberg behind her, his voice subdued by fright.] Uh ... Katara ...",Uh ... Katara ...,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +31,31,Water,1,The Boy in the Iceberg,1,Katara,"[Close-up of a rage-fueled Katara as she continues her outburst, a finger pointed in Sokka's face.] I even wash all the clothes! Have you ever smelled your dirty socks? Let me tell you, not pleasant!","I even wash all the clothes! Have you ever smelled your dirty socks? Let me tell you, not pleasant!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +32,32,Water,1,The Boy in the Iceberg,1,Scene Description,"As she yells out that last word, she unconsciously waterbends once again, causing two new splits in the chunk of ice.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +33,33,Water,1,The Boy in the Iceberg,1,Sokka,"[In a screeching voice, his eyes open wide in fear.] Katara, settle down!","Katara, settle down!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +34,34,Water,1,The Boy in the Iceberg,1,Katara,"No that's it! I'm done helping you! From now on, you're on your own!","No that's it! I'm done helping you! From now on, you're on your own!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +35,35,Water,1,The Boy in the Iceberg,1,Scene Description,"Her last movement is her most agitated and it creates a huge wave which, when it impacts the  iceberg, sends a number of fissures to snake their way up the iceberg; one of them reaches the top of the iceberg, splitting it completely in half. Petrified, Sokka gasps for air, and it is only now that Katara turns to look behind her. She gasps and the shot cuts to the iceberg; the two halves begin to fall away from each other and the siblings can be seen through the widening space between them. The shot jumps to the siblings' backs as the two halves collapse into the water; a wave larger than any Katara cast at it radiates outward toward them and they are thrown to the ice as it pushes their floe backward. +As the waves subside, the shot cuts to a head-on close-up of the siblings, their heads slightly over the edge of the ice. Sokka, holding a protective arm over Katara, turns his head toward her.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +36,36,Water,1,The Boy in the Iceberg,1,Sokka,"Okay, you've gone from ""weird"" to ""freakish"", [He releases her.] Katara.","Okay, you've gone from ""weird"" to ""freakish"", Katara.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +37,37,Water,1,The Boy in the Iceberg,1,Katara,[Astonished.] You mean I did that?,You mean I did that?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +38,38,Water,1,The Boy in the Iceberg,1,Sokka,"[Sarcastically, glancing at her and smirking.] Yep. [Nudging her with his elbow.] Congratulations.",Yep. Congratulations.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +39,39,Water,1,The Boy in the Iceberg,1,Scene Description,"Several small bubbles appear on the surface of the water directly in front of them and a small spot of water begins to glow with a bright bluish hue. An overhead shot shows the spread of the brilliant glow and the bubbles within. Cut to the head-on close-up as the two siblings scramble back in renewed terror from the edge, just as a large, roughly spherical iceberg breaks the surface of the water. +The shot jumps behind Katara and Sokka as an iceberg rises above the surface, revealing its massive form to be the source of the glow. The crashing waves generated by the iceberg's rising push the floe backward as the berg itself rocks to one side, before coming to rest with its rounded dome exposed above the water. Mesmerized by the iceberg, Katara strays closer and stares at the iceberg; behind her, Sokka halfheartedly stretches out his hand, as if to hold her back. A few cuts ensue: the iceberg from behind Sokka and Katara; Katara's face as she stares at the object; and a shot of the iceberg itself, revealing a human shape within below a larger, indistinguishable mass. The human figure, perched in lotus, has glowing arrows on its head and hands. Close-up of Katara as she raises an eyebrow in confusion. The shot cuts to a closer view of the figure in the ice, its features accentuated by reflected light, revealing it to be a boy. Suddenly, the boy opens his eyes, the same brilliant light emanating from them, eliciting shocked gasps from both of the siblings.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +40,40,Water,1,The Boy in the Iceberg,1,Katara,He's alive! We have to help!,He's alive! We have to help!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +41,41,Water,1,The Boy in the Iceberg,1,Scene Description,"Before Sokka can grab it, Katara grabs Sokka's club out of its sheath on his back and pulls her hood over her head, heading in the direction of the strange boy sealed in the iceberg. Sokka again reaches out his hand in an attempt to hold Katara back, though she is already running across the ice.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +42,42,Water,1,The Boy in the Iceberg,1,Sokka,"Katara, get back here! [He grabs his spear from the ice and runs after Katara, who is already at the ice's edge.] We don't know what that thing is!","Katara, get back here! We don't know what that thing is!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +43,43,Water,1,The Boy in the Iceberg,1,Scene Description,"Katara hops across the short distance between her floe and the iceberg on five tiny chinks of ice; Sokka, close behind her, does the same. Reaching the iceberg first, Katara repeatedly strikes the iceberg with Sokka's club. On her fifth strike, the club breaks through the surface and a great gust of wind, which escapes from within the iceberg, throws her and her brother back from the side of the dome. Fissures quickly snake their way over the whole iceberg and, in a massive outward explosion, the entire orb of ice destroys itself. A beam of light bursts from the core of the iceberg and rockets into the sky. The camera shows the iceberg from the shallow sea bottom as it emits ripples of light. The scene switches to a group of tiger seals, who erect themselves to growl at the distant beam of light. +Cut to a Fire Nation ship, where a boy in a Fire Nation military uniform stands on the deck, gazing at the light. His ponytail flutters in the wind.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +44,44,Water,1,The Boy in the Iceberg,1,Zuko,"Finally! [He turns around to face another person in uniform, who sits at a small table.] Uncle, do you realize what this means?!","Finally! Uncle, do you realize what this means?!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +45,45,Water,1,The Boy in the Iceberg,1,Iroh,[The man is playing some sort of card game. He answers calmly while looking over the tile he's holding toward his nephew.] I won't get to finish my game?,I won't get to finish my game?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +46,46,Water,1,The Boy in the Iceberg,1,Zuko,[Turning around again to face the light.] It means my search is about to come to an end.,It means my search is about to come to an end.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +47,47,Water,1,The Boy in the Iceberg,1,Scene Description,Iroh sighs uninterestedly and places his tile on the table.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +48,48,Water,1,The Boy in the Iceberg,1,Zuko,[Gestures at the light while facing his uncle again.] That light came from an incredibly powerful source! [The light dwindles and disappears.] It has to be him!,That light came from an incredibly powerful source! It has to be him!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +49,49,Water,1,The Boy in the Iceberg,1,Iroh,"[With continuing disinterest and an air of skepticism.] Or it's just the celestial lights. We've been down this road before, Prince Zuko. [He looks at the tile in his hand, depicting the symbol of airbending.] I don't want you to get too excited over nothing. [He places it on a tile carrying the symbol of firebending and gestures toward the open place at the other side of the table while continuing in a relaxed voice.] Please, sit. Why don't you enjoy a cup of calming Jasmine tea?","Or it's just the celestial lights. We've been down this road before, Prince Zuko. I don't want you to get too excited over nothing. Please, sit. Why don't you enjoy a cup of calming Jasmine tea?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +50,50,Water,1,The Boy in the Iceberg,1,Zuko,"[Furiously, still facing Iroh.] I don't need any calming tea! I need to capture the Avatar! Helmsman, head a course for the light!","I don't need any calming tea! I need to capture the Avatar! Helmsman, head a course for the light!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +51,51,Water,1,The Boy in the Iceberg,1,Scene Description,"Zuko points in the direction of where the light once was. Iroh calmly continues with his game, placing another tile bearing the airbending symbol on the previous one. As he does, a gust of wind washes over him, shaking his tiles. +Cut to the iceberg, where the gale has begun to settle. Sokka had protectively clutched Katara, but he now releases her as he looks around. Light still encircles the remains of the former mountain of ice, now reduced to a hollowed-out crater. Sokka looks at his sister and they both get to their feet, Katara holding onto her brother. He points his spear at the crater, ready to defend them, though lowers it in shock as a figure emerges slowly from the depression in the iceberg.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +52,52,Water,1,The Boy in the Iceberg,1,Sokka,[Brandishing his spear in defense once again.] Stop!,Stop!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +53,53,Water,1,The Boy in the Iceberg,1,Scene Description,"Now standing atop the crater, the figure slowly erects himself and looks down at them, and the two siblings stare back in wonder and fear. +The circles of light finally dissipate as the boy stops glowing. The figure is revealed to be nothing more than a young boy, who gives a moan of exhaustion and suddenly faints. Katara gasps and runs forward to catch him before he hits the ground and Sokka begins to poke at the boy's head with the blunt end of his spear.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +54,54,Water,1,The Boy in the Iceberg,1,Katara,[Waves the spear away. Annoyed.] Stop it!,Stop it!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +55,55,Water,1,The Boy in the Iceberg,1,Scene Description,"Katara places the boy gently against the base of the crater. Close-up of the boy as he slowly opens his gray eyes. He gasps in awe as he beholds the Southern Water Tribe girl, who stares at him, in relief, with deep blue eyes. Her hair loopies sway in the wind.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +56,56,Water,1,The Boy in the Iceberg,1,Aang,[In a weak voice.] I need to ask you something ...,I need to ask you something ...,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +57,57,Water,1,The Boy in the Iceberg,1,Katara,What?,What?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +58,58,Water,1,The Boy in the Iceberg,1,Aang,Please ... come closer.,Please ... come closer.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +59,59,Water,1,The Boy in the Iceberg,1,Katara,[Curiously.] What is it?,What is it?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +60,60,Water,1,The Boy in the Iceberg,1,Aang,"[In a clear, happy, hopeful tone.] Will you go penguin sledding with me?",Will you go penguin sledding with me?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +61,61,Water,1,The Boy in the Iceberg,1,Katara,"[Awkwardly.] Uh, sure ... I-I guess.","Uh, sure ... I-I guess.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +62,62,Water,1,The Boy in the Iceberg,1,Scene Description,"The camera moves back again to show the threesome at the base of the iceberg. The boy elegantly rises to his feet in one swift motion, surprising the other two. Katara looks at him in awe while Sokka backs away in shock, aiming his spear at him again. Katara glances at him in disbelief.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +63,63,Water,1,The Boy in the Iceberg,1,Aang,"[Looking around and rubbing his head, while Katara scrambles on her feet.] What's going on here?",What's going on here?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +64,64,Water,1,The Boy in the Iceberg,1,Sokka,[Aggressively.] You tell us! [Points at the top of the crater.] How did you get in the ice? And why aren't you frozen? [He pokes the boy in his side with his spear.],You tell us! How did you get in the ice? And why aren't you frozen?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +65,65,Water,1,The Boy in the Iceberg,1,Aang,[Lazily pushes the spear away.] I'm ... not sure.,I'm ... not sure.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +66,66,Water,1,The Boy in the Iceberg,1,Scene Description,"A low, gruff noise suddenly fills the air, coming from within the crater of the iceberg. Quickly, the boy scrambles up the ridge of ice and happily jumps on the head of a large, furry creature that has the same arrow-shaped marking on his forehead as the boy.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +67,67,Water,1,The Boy in the Iceberg,1,Aang,"[Exclaims happily.] Appa! Are you all right? [He hangs down the side of the beast to look at its eyes, which are still closed.] Wake up, buddy.","Appa! Are you all right? Wake up, buddy.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +68,68,Water,1,The Boy in the Iceberg,1,Scene Description,"He opens an eyelid that immediately closes again once it is released. He jumps down to the front of the bison and tries to lift its enormous head. Sokka and Katara appear around the corner as Appa finally starts to react to Aang, opening his mouth and licking Aang with his giant tongue. Sokka's jaw drops upon seeing the beast.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +69,69,Water,1,The Boy in the Iceberg,1,Aang,"[Laughing cheerfully.] Ha, ha! You're okay!","Ha, ha! You're okay!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +70,70,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang hugs the bison's nose. The camera moves back to reveal that the creature stands up on his six legs and stretches itself. When the picture moves closer again, Aang is petting the bison's nose.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +71,71,Water,1,The Boy in the Iceberg,1,Sokka,What is that thing?,What is that thing?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +72,72,Water,1,The Boy in the Iceberg,1,Aang,"This is Appa, my flying bison.","This is Appa, my flying bison.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +73,73,Water,1,The Boy in the Iceberg,1,Sokka,"[Sarcastically.] Right, and this is Katara, my flying sister. [Katara shoots him an odd look.]","Right, and this is Katara, my flying sister.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +74,74,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang looks questioningly at Sokka for a moment, but his attention is diverted back toward his bison when Appa starts to inhale deeply. Realizing what is about to happen, Aang ducks before Appa sneezes, sending a large blast of green flying directly onto Sokka, who becomes completely covered in it. He squeals in disgust and begins to frantically try clean it off, rubbing his face in the snow under the amused gaze of his sister.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +75,75,Water,1,The Boy in the Iceberg,1,Aang,"[Cheerfully.] Don't worry, it'll wash out. [Green slime is hanging from Sokka's face to his glove, dripping down as he retracts his hand. Katara covers her mouth in disgust.] So do you guys live around here?","Don't worry, it'll wash out. So do you guys live around here?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +76,76,Water,1,The Boy in the Iceberg,1,Sokka,[Pointing his spear accusingly again at Aang who is surprised to see the thing.] Don't answer that! Did you see that crazy bolt of light?! He was probably trying to signal the Fire Navy!,Don't answer that! Did you see that crazy bolt of light?! He was probably trying to signal the Fire Navy!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +77,77,Water,1,The Boy in the Iceberg,1,Katara,"[Pushes Sokka's spear away again and addresses him sarcastically.] Oh yeah, I'm sure he's a spy for the Fire Navy. You can tell by that evil look in his eye. [Aang shoots the two an earnest grin.] The paranoid one is my brother, Sokka. You never told us your name.","Oh yeah, I'm sure he's a spy for the Fire Navy. You can tell by that evil look in his eye. The paranoid one is my brother, Sokka. You never told us your name.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +78,78,Water,1,The Boy in the Iceberg,1,Aang,"I'm A ... a-a-a-Achoo! [The boy sneezes, creating an air blast that sends him soaring into the air. He lands on the ground, unharmed.] I'm Aang. [He sniffles a bit.]",I'm A ... a-a-a-Achoo! I'm Aang.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +79,79,Water,1,The Boy in the Iceberg,1,Sokka,[Total disbelief.] You just sneezed ... [Points to the sky.] and flew ten feet in the air!,You just sneezed ... and flew ten feet in the air!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +80,80,Water,1,The Boy in the Iceberg,1,Aang,[He looks questioningly toward the sky.] Really? It felt higher than that.,Really? It felt higher than that.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +81,81,Water,1,The Boy in the Iceberg,1,Katara,[Gasps for air in comprehension.] You're an airbender!,You're an airbender!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +82,82,Water,1,The Boy in the Iceberg,1,Aang,Sure am!,Sure am!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +83,83,Water,1,The Boy in the Iceberg,1,Sokka,"Giant light beams, flying bison, airbenders ... [Walks away.] I think I got midnight sun madness. I'm going home to where stuff makes sense. [He realizes, however, that he is stranded in the middle of the ocean with no way home.]","Giant light beams, flying bison, airbenders ... I think I got midnight sun madness. I'm going home to where stuff makes sense.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +84,84,Water,1,The Boy in the Iceberg,1,Aang,"Well, if you guys are stuck, Appa and I can give you a lift. [Aang airbends himself onto Appa.]","Well, if you guys are stuck, Appa and I can give you a lift.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +85,85,Water,1,The Boy in the Iceberg,1,Katara,We'd love a ride! Thanks! [Katara runs to the side of the bison.],We'd love a ride! Thanks!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +86,86,Water,1,The Boy in the Iceberg,1,Sokka,Oh no! I'm not getting on that fluffy snot monster!,Oh no! I'm not getting on that fluffy snot monster!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +87,87,Water,1,The Boy in the Iceberg,1,Katara,"[While climbing on top of Appa with the help of Aang.] Are you hoping some other kind of monster will come along and give you a ride home? You know, before you freeze to death?","Are you hoping some other kind of monster will come along and give you a ride home? You know, before you freeze to death?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +88,88,Water,1,The Boy in the Iceberg,1,Scene Description,"Sokka opens his mouth in defiance and point at Katara, ready to retaliate, but he cannot think of anything. He sighs and bows his head in consent and defeat. +The camera switches to a shot where both siblings are sitting on Appa's saddle. Sokka has his arms crossed in front of him with a sulking expression on his face while Katara is full of excitement and anticipation.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +89,89,Water,1,The Boy in the Iceberg,1,Aang,"Okay, first time flyers, hold on tight! Appa, yip-yip!","Okay, first time flyers, hold on tight! Appa, yip-yip!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +90,90,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang whips the reins and Appa growls in response. He moves his tail up and down and takes a huge jump into the air. He soars through the air for mere few seconds, making it appear as though he would fly, before belly-flopping into the water with a splash. The bison begins trudging through the water slowly. Katara crawls to the front of the saddle while Aang tries to get Appa flying, whipping the reins again.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +91,91,Water,1,The Boy in the Iceberg,1,Aang,"Come on, Appa. Yip-yip!","Come on, Appa. Yip-yip!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +92,92,Water,1,The Boy in the Iceberg,1,Sokka,"[Sarcastically.] Wow, that was truly amazing ...","Wow, that was truly amazing ...","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +93,93,Water,1,The Boy in the Iceberg,1,Aang,"[Katara shoots her brother an angry glance.] Appa's just a little tired. A little rest and he'll be soaring through the sky. You'll see. [Katara smiles at Aang, who returns this gesture. When she wants to move back, she realizes that he is still smiling at her.]",Appa's just a little tired. A little rest and he'll be soaring through the sky. You'll see.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +94,94,Water,1,The Boy in the Iceberg,1,Katara,[Uncomfortably.] Why are you smiling at me like that?,Why are you smiling at me like that?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +95,95,Water,1,The Boy in the Iceberg,1,Aang,"Oh, I was smiling? [Surprised, Katara smiles back.]","Oh, I was smiling?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +96,96,Water,1,The Boy in the Iceberg,1,Scene Description,"Sokka throws his head back and sticks his tongue out in disgust while groaning loudly. Katara glares at him while Appa continues to make his way through the icy sea, flapping his tail in the water. +The picture tilts up and fades away to reveal Zuko standing on the helm of his ship, staring into the distance. The young man is approached by his uncle.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +97,97,Water,1,The Boy in the Iceberg,1,Iroh,"I'm going to bed now. [Yawns and stretches.] Yep, a man needs his rest. [After a short pause, he abandons his try at a veiled suggestion and delivers his request more clearly, his tone tired.] Prince Zuko, you need some sleep. Even if you're right, and the Avatar is alive, you won't find him. Your father, grandfather and great-grandfather all tried and failed.","I'm going to bed now. Yep, a man needs his rest. Prince Zuko, you need some sleep. Even if you're right, and the Avatar is alive, you won't find him. Your father, grandfather and great-grandfather all tried and failed.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +98,98,Water,1,The Boy in the Iceberg,1,Zuko,Because their honor didn't hinge on the Avatar's capture. Mine does. This coward's hundred years in hiding are over.,Because their honor didn't hinge on the Avatar's capture. Mine does. This coward's hundred years in hiding are over.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +99,99,Water,1,The Boy in the Iceberg,1,Scene Description,"The scene fades to Appa who is still swimming in the water. Aang now lies lazily on his back, his arms tucked under his head. Katara crawls to the front of the saddle again to have a better look at the boy. She leans on the front of the saddle and rests her head on her arm.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +100,100,Water,1,The Boy in the Iceberg,1,Katara,Hey.,Hey.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +101,101,Water,1,The Boy in the Iceberg,1,Aang,Hey. What'cha thinkin' about?,Hey. What'cha thinkin' about?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +102,102,Water,1,The Boy in the Iceberg,1,Katara,"I guess I was wondering, your being an airbender and all, if you had any idea what happened to the Avatar?","I guess I was wondering, your being an airbender and all, if you had any idea what happened to the Avatar?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +103,103,Water,1,The Boy in the Iceberg,1,Aang,"Oh, no. I didn't know him. I mean, I knew people that knew him, but I didn't. Sorry. [He smiles weakly at Katara.]","Oh, no. I didn't know him. I mean, I knew people that knew him, but I didn't. Sorry.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +104,104,Water,1,The Boy in the Iceberg,1,Katara,Okay. Just curious. [She slants her eyes in disappointment for a second before smiling again at Aang.] Good night.,Okay. Just curious. Good night.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +105,105,Water,1,The Boy in the Iceberg,1,Aang,Sleep tight.,Sleep tight.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +106,106,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang uncomfortably turns around and a look of guilt crosses his face. The camera switches to another wide shot of Appa swimming through the vast sea, reflecting the brilliant sunlight. +The scene switches to a dream of Aang's, colored in various shades of gray. Aang is sleeping on Appa's saddle while clouds build around and ahead of him. Lightning splits the sky and the rumble of the following thunder awakens him. He shoots up and looks around. In the next shot it is raining and Aang is sitting on Appa's head again, holding the reigns and screaming at the top of his lungs in terror while they go down. Appa and Aang splash into the waters of the ocean. Appa resurfaces again, growls, but is quickly subdued anew by another wave. Both Aang and Appa sink unconscious into the water. As Aang releases the reigns and drifts off, his eyes and tattoos suddenly start to glow brightly. He slams his fists together, creating a bluish-white sphere that encases Appa and himself. As the air sphere slowly solidifies into an icy globe, a voice permeates the dream.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +107,107,Water,1,The Boy in the Iceberg,1,Katara,"Aang? Aang! Wake up. [Aang shoots up, throwing the covers of his body and gasping for air. Katara perches beside him and stands up as she sees that Aang is awake.] It's okay, we're in the village now! Come on, get ready. [She points to the door of the tent.] Everyone's waiting to meet you.","Aang? Aang! Wake up. It's okay, we're in the village now! Come on, get ready. Everyone's waiting to meet you.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +108,108,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang happily gets out of bed and starts to dress himself while Katara takes a step toward the door. Before she exits, however, she glances back at Aang and gasps, staring in wonder at the blue, arrow-shaped tattoos that trace his arms and legs and reach up his back and to his head. Before Aang is able to get up, Katara pulls him along by his arm to meet the rest of the village. +Aang is dragged out the tent toward a small congregation of villagers. He passes Sokka, who is sitting at the side of the tent, sharpening his boomerang.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +109,109,Water,1,The Boy in the Iceberg,1,Katara,"Aang, this is the entire village. [Points to the line of villagers in front of them.] Entire village, Aang.","Aang, this is the entire village. Entire village, Aang.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +110,110,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang bows respectfully toward the villages, but they cower away in fear, bringing a surprised look to Katara and Aang's faces. Sokka just watches from a distance.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +111,111,Water,1,The Boy in the Iceberg,1,Aang,"[Uncomfortably.] Uh, why are they all looking at me like that? Did Appa sneeze on me?","Uh, why are they all looking at me like that? Did Appa sneeze on me?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +112,112,Water,1,The Boy in the Iceberg,1,Scene Description,Aang checks his clothing while an elderly woman steps forward out of the line of villagers.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +113,113,Water,1,The Boy in the Iceberg,1,Kanna,"Well, no one has seen an airbender in a hundred years. We thought they were extinct, until my granddaughter and grandson found you.","Well, no one has seen an airbender in a hundred years. We thought they were extinct, until my granddaughter and grandson found you.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +114,114,Water,1,The Boy in the Iceberg,1,Aang,[Shocked disbelief.] Extinct?,Extinct?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +115,115,Water,1,The Boy in the Iceberg,1,Katara,"[Gesturing.] Aang, this is my grandmother.","Aang, this is my grandmother.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +116,116,Water,1,The Boy in the Iceberg,1,Kanna,Call me Gran-Gran.,Call me Gran-Gran.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +117,117,Water,1,The Boy in the Iceberg,1,Scene Description,Sokka walks toward Aang and abruptly snatches his staff out of his hands and starts to examine it.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +118,118,Water,1,The Boy in the Iceberg,1,Sokka,"[Annoyed.] What is this, a weapon? You can't stab anything with this!","What is this, a weapon? You can't stab anything with this!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +119,119,Water,1,The Boy in the Iceberg,1,Aang,"[Aang uses a small air current to get his staff back.] It's not for stabbing! It's for airbending. [He opens his staff into a glider, making Sokka gasp in fright and cover his head with his hands.]",It's not for stabbing! It's for airbending.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +120,120,Water,1,The Boy in the Iceberg,1,Village girl,[Excited.] Magic trick! Do it again!,Magic trick! Do it again!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +121,121,Water,1,The Boy in the Iceberg,1,Aang,"Not magic, airbending. [He moves his glider around him, visually demonstrating what he is talking about.] It lets me control the air currents around my glider and fly.","Not magic, airbending. It lets me control the air currents around my glider and fly.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +122,122,Water,1,The Boy in the Iceberg,1,Sokka,"[Mockingly states his disbelief.] Ya know, last time I checked, humans can't fly!","Ya know, last time I checked, humans can't fly!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +123,123,Water,1,The Boy in the Iceberg,1,Aang,"[Accepting Sokka's challenge, smiling.] Check again!",Check again!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +124,124,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang grabs hold of his glider and pushes himself off the ground, leaving Katara and Sokka to cover their faces against the sudden wind. The village stares in awe as Aang makes some loops and turns in the sky.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +125,125,Water,1,The Boy in the Iceberg,1,Village girl,[In admiration.] He's flying!,He's flying!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +126,126,Water,1,The Boy in the Iceberg,1,Scene Description,Aang makes another loops and speeds up to soar past the gazing villagers.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +127,127,Water,1,The Boy in the Iceberg,1,Village girl,It's amazing!,It's amazing!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +128,128,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang's shadow passes over Katara, who is smiling broadly at him. Aang, intending to further impress the villagers, flies sideways and closes his eyes while grinning broadly. He promptly flies head-on into the village's watchtower, causing his head to be stuck in its side. Katara covers her mouth as she watches Aang struggle to extricate his head from the icy watchtower. Succeeding, he tumbles downward onto a pile of snow at the base of the tower that crumbled from the building. Katara immediately rushes to his side while Sokka stares in shock at the damage inflicted on his watchtower.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +129,129,Water,1,The Boy in the Iceberg,1,Sokka,[Shocked.] My watchtower!,My watchtower!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +130,130,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang lies covered in snow at the base of the partially collapsed tower. Katara and some other girls of the tribe run toward Aang, smiling.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +131,131,Water,1,The Boy in the Iceberg,1,Katara,[Offering her hand to pull him out of the snow.] That was amazing!,That was amazing!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +132,132,Water,1,The Boy in the Iceberg,1,Scene Description,"Sokka runs toward his watchtower and starts to pat it in the hope that he can save it from collapsing any further. While Aang spins his staff around to retract its wings, Sokka is being knocked down by a large pack of snow that falls down.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +133,133,Water,1,The Boy in the Iceberg,1,Sokka,"[Annoyed.] Great. You're an airbender, Katara's a waterbender. Together you can just waste time all day long. [He wedges himself free from underneath the weight of the snow and stalks off.]","Great. You're an airbender, Katara's a waterbender. Together you can just waste time all day long.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +134,134,Water,1,The Boy in the Iceberg,1,Aang,[Surprised and with admiration.] You're a waterbender?,You're a waterbender?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +135,135,Water,1,The Boy in the Iceberg,1,Katara,"[Nervously.] Well, sort of. Not yet.","Well, sort of. Not yet.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +136,136,Water,1,The Boy in the Iceberg,1,Kanna,"All right, no more playing. Come on, Katara, you have chores.","All right, no more playing. Come on, Katara, you have chores.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +137,137,Water,1,The Boy in the Iceberg,1,Scene Description,Kanna leads Katara away from Aang. The surrounding villagers part to let the duo pass.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +138,138,Water,1,The Boy in the Iceberg,1,Katara,"[Excitedly.] I told you, he's the real thing Gran-Gran! I finally found a bender to teach me!","I told you, he's the real thing Gran-Gran! I finally found a bender to teach me!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +139,139,Water,1,The Boy in the Iceberg,1,Kanna,"[Calmly.] Katara, try not to put all your hopes in this boy.","Katara, try not to put all your hopes in this boy.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +140,140,Water,1,The Boy in the Iceberg,1,Katara,But he's special! I can tell! [Clenches her fist and closes her eyes in hope.] I sense he's filled with much wisdom.,But he's special! I can tell! I sense he's filled with much wisdom.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +141,141,Water,1,The Boy in the Iceberg,1,Scene Description,"Katara opens her eyes again and glances back toward Aang, who is surrounded by a bunch of kids. He smiles while his tongue is stuck to his staff.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +142,142,Water,1,The Boy in the Iceberg,1,Aang,[Muffled.] See? Now my tongue is stuck to my staff!,See? Now my tongue is stuck to my staff!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +143,143,Water,1,The Boy in the Iceberg,1,Scene Description,"Much to Aang's discomfort, one of the smaller village boys starts to yank his staff, pulling Aang along with every movement. The village kids laugh and applaud Aang as his tongue remains stuck to his staff. +The scene shifts to Zuko's ship where Zuko is facing two soldiers dressed in the uniforms of a firebending Fire Nation soldier. Iroh is sitting on a small chair next to them.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +144,144,Water,1,The Boy in the Iceberg,1,Iroh,[Sternly.] Again.,Again.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +145,145,Water,1,The Boy in the Iceberg,1,Scene Description,"Zuko opens the fight by spreading his arms in the direction of the two firebenders, showering them with flames. His adversaries block Zuko's attack with ease. Zuko shifts his weight to duck under a retaliation blast of the firebender to his left. The firebender to his right jumps forward to aim a blast at Zuko's feet. The prince propels himself out of the way. He twists around in mid-air and directs another fire blast with his hand to the firebender that retaliated first, and another with his foot to the firebender that aimed for his feet. Both soldiers jump out of the way of Zuko's flames. Zuko lands and stretches his fists out toward his adversaries, ready to face another attack.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +146,146,Water,1,The Boy in the Iceberg,1,Iroh,"[Sighs while he gets up.] No! [Zuko lowers his arms and looks at his uncle.] Power in firebending comes from the breath [Iroh moves his both hand up in front of him to emphasize the breathing motion.], not the muscles. [He stretches his left arm out as if he was sending a fire blast.] The breath becomes energy in the body. The energy extends past your limbs and becomes: fire! [Iroh directs a fire blast at his nephew that evaporates just before it would scorch him.] Get it right this time.","No! Power in firebending comes from the breath , not the muscles. The breath becomes energy in the body. The energy extends past your limbs and becomes: fire! Get it right this time.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +147,147,Water,1,The Boy in the Iceberg,1,Zuko,"[With suppressed anger, he walks toward his uncle and addresses him.] Enough! I've been drilling this sequence all day. Teach me the next set! I'm more than ready!",Enough! I've been drilling this sequence all day. Teach me the next set! I'm more than ready!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +148,148,Water,1,The Boy in the Iceberg,1,Iroh,"No, you are impatient. [He sits down again on his chair.] You have yet to master your basics. [He yells his order.] Drill it again!","No, you are impatient. You have yet to master your basics. Drill it again!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +149,149,Water,1,The Boy in the Iceberg,1,Scene Description,"Zuko clenches his teeth in anger. He turns around and suddenly directs a power fire kick toward one of the soldiers. The firebender attempts to stop the fire blast, but he is unable to and is thrown on his back by its power.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +150,150,Water,1,The Boy in the Iceberg,1,Zuko,"[The suppressed anger is very apparent in his voice.] The sages tell us that the Avatar is the last airbender. [Close-up of Iroh, who does not look pleased with the attitude of his nephew.] He must be over a hundred years old by now. He's had a century to master the four elements! I'll need more than basic firebending to defeat him. [Starts to yell at his uncle.] You will teach me the advanced set!",The sages tell us that the Avatar is the last airbender. He must be over a hundred years old by now. He's had a century to master the four elements! I'll need more than basic firebending to defeat him. You will teach me the advanced set!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +151,151,Water,1,The Boy in the Iceberg,1,Iroh,"[Concedes reluctantly. On a dire tone.] Very well, [His expression changes completely to one of delight as he picks something up from the ground.] but first, I must finish my roast duck. [He quickly munches down the roast duck, much to the dismay of Zuko.]","Very well, but first, I must finish my roast duck.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +152,152,Water,1,The Boy in the Iceberg,1,Scene Description,"The scene shifts back to the Southern Water Tribe, where it pans down to reveal Sokka pacing to and fro, his arms behind his back.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +153,153,Water,1,The Boy in the Iceberg,1,Sokka,"[With a stern expression.] Now men, it's important that you show no fear when you face a firebender. [He brings out his club and holds it proudly.] In the Water Tribe, we fight to the last man standing! For without courage, how can we call ourselves men? [He clutches his fist to emphasize the word ""men"" as he stares down the people in front of him.]","Now men, it's important that you show no fear when you face a firebender. In the Water Tribe, we fight to the last man standing! For without courage, how can we call ourselves men?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +154,154,Water,1,The Boy in the Iceberg,1,Scene Description,The camera shifts positions to reveal that Sokka is talking to six uninterested little boys.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +155,155,Water,1,The Boy in the Iceberg,1,Southern Water Tribe boy,[Waving his hand in the air.] I gotta pee!,I gotta pee!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +156,156,Water,1,The Boy in the Iceberg,1,Sokka,"[Angrily.] Listen! Until your fathers return from the War, they're counting on you to be the men of this tribe, and that means no potty breaks! [He makes some wide arm gestures to emphasize his words again.]","Listen! Until your fathers return from the War, they're counting on you to be the men of this tribe, and that means no potty breaks!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +157,157,Water,1,The Boy in the Iceberg,1,Southern Water Tribe boy,But I really gotta go!,But I really gotta go!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +158,158,Water,1,The Boy in the Iceberg,1,Sokka,"[Sighs.] Okay, who else has to go?","Okay, who else has to go?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +159,159,Water,1,The Boy in the Iceberg,1,Scene Description,"Every child immediately raises his hand. Sokka is surprised for a second, before facepalming in frustration.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +160,160,Water,1,The Boy in the Iceberg,1,Katara,[Runs up to Sokka as the children leave. In a worried tone.] Have you seen Aang? Gran-Gran said he disappeared over an hour ago.,Have you seen Aang? Gran-Gran said he disappeared over an hour ago.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +161,161,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang appears from an outhouse igloo, pulling his pants up a bit higher.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +162,162,Water,1,The Boy in the Iceberg,1,Aang,[Amused.] Wow! Everything freezes in there!,Wow! Everything freezes in there!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +163,163,Water,1,The Boy in the Iceberg,1,Scene Description,"He points toward the bathroom with a smile on his face. Sokka's ""soldiers"" halt beside Aang and laugh with him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +164,164,Water,1,The Boy in the Iceberg,1,Sokka,"[Annoyed.] Uh! [Angrily points at Aang.] Katara, get him out of here! This lesson is for warriors only!","Uh! Katara, get him out of here! This lesson is for warriors only!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +165,165,Water,1,The Boy in the Iceberg,1,Scene Description,Sokka is about to walk away when he hears the sound of playing children.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +166,166,Water,1,The Boy in the Iceberg,1,Village boy,Whee!,Whee!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +167,167,Water,1,The Boy in the Iceberg,1,Scene Description,"He turns around, and the picture follows his gaze to reveal the village children sliding down Appa's tail like a slide. The end of the tail is propped upward, so the children are propelled into the air. They fly over Sokka's spear, now serving as a mark that they need to cross before landing in a soft pile of snow. Katara laughs as a boy lands head-first in the snow, but Sokka rushes forward.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +168,168,Water,1,The Boy in the Iceberg,1,Sokka,"[Yelling angrily.] Stop! Stop it right now! [The laughter of the children is stifled immediately and Appa turns his head to look at Sokka, who accusingly directs his anger to Aang.] What's wrong with you?! We don't have time for fun and games with the War going on!",Stop! Stop it right now! What's wrong with you?! We don't have time for fun and games with the War going on!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +169,169,Water,1,The Boy in the Iceberg,1,Scene Description,Sokka takes back his spear and casts an annoyed glance at the laughing children who run past him.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +170,170,Water,1,The Boy in the Iceberg,1,Aang,[Slides down from Appa's head.] What war? What are you talking about?,What war? What are you talking about?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +171,171,Water,1,The Boy in the Iceberg,1,Sokka,"[Raises one eyebrow in disbelief.] You're kidding, right?","You're kidding, right?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +172,172,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang looks questioningly at Sokka, but the expression on his face changes to enthusiasm when he catches sight of an otter-penguin.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +173,173,Water,1,The Boy in the Iceberg,1,Aang,[Exclaims enthusiastically.] Penguin!,Penguin!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +174,174,Water,1,The Boy in the Iceberg,1,Scene Description,"The animal is startled by Aang's outburst and quickly waddles off. Aang gives chase, racing past Katara and Sokka, enhancing his speed with his airbending. He leaves a deep trail in the snow as he dashes after the penguin.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +175,175,Water,1,The Boy in the Iceberg,1,Sokka,"He's kidding, right?","He's kidding, right?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +176,176,Water,1,The Boy in the Iceberg,1,Scene Description,"The siblings glance at each other, not sure what they need to think of Aang's reaction. +The scene fades away to show the otter-penguin habitat, where hundreds of otter-penguins are walking or sliding down icebergs. Katara approaches the penguins in search for Aang.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +177,177,Water,1,The Boy in the Iceberg,1,Katara,Aang?,Aang?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +178,178,Water,1,The Boy in the Iceberg,1,Aang,"[Chasing the penguins while laughing.] Hey, come on little guy. Wanna go sledding? [He jumps at a penguin, but the animal evades his attempt and Aang belly flops into the snow. He turns on his back and quickly erects himself with his airbending as Katara comes up beside him.] Heh heh. I have a way with animals.","Hey, come on little guy. Wanna go sledding? Heh heh. I have a way with animals.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +179,179,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang stretches his arms wide and imitates the sound and movements of the animals around them, making Katara laugh.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +180,180,Water,1,The Boy in the Iceberg,1,Katara,"[Amused.] Hehehe, Aang, I'll help you catch a penguin if you teach me waterbending.","Hehehe, Aang, I'll help you catch a penguin if you teach me waterbending.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +181,181,Water,1,The Boy in the Iceberg,1,Aang,"[Having grabbed the tail of a penguin, he holds on as it pulls him through the snow for a short way before letting go and looking up at Katara.] You got a deal! Just one little problem ... [He airbends himself into a sitting position.] I'm an airbender, not a waterbender. Isn't there someone in your tribe who can teach you?","You got a deal! Just one little problem ... I'm an airbender, not a waterbender. Isn't there someone in your tribe who can teach you?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +182,182,Water,1,The Boy in the Iceberg,1,Katara,[Sadly.] No. You're looking at the only waterbender in the whole South Pole.,No. You're looking at the only waterbender in the whole South Pole.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +183,183,Water,1,The Boy in the Iceberg,1,Aang,"This isn't right. A waterbender needs to master water. [He thinks for a moment.] What about the North Pole? There's another Water Tribe up there, right? Maybe they have waterbenders who could teach you.","This isn't right. A waterbender needs to master water. What about the North Pole? There's another Water Tribe up there, right? Maybe they have waterbenders who could teach you.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +184,184,Water,1,The Boy in the Iceberg,1,Katara,"Maybe, but we haven't had contact with our sister tribe in a long time. It's not exactly ""turn right at the second glacier"". It's on the other side of the world.","Maybe, but we haven't had contact with our sister tribe in a long time. It's not exactly ""turn right at the second glacier"". It's on the other side of the world.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +185,185,Water,1,The Boy in the Iceberg,1,Aang,"But you forget, I have a flying bison. [He happily points at himself.] Appa and I can personally fly you to the North Pole. Katara, we're going to find you a master!","But you forget, I have a flying bison. Appa and I can personally fly you to the North Pole. Katara, we're going to find you a master!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +186,186,Water,1,The Boy in the Iceberg,1,Katara,"[Unsure.] That's ... I mean, I don't know. I've never left home before.","That's ... I mean, I don't know. I've never left home before.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +187,187,Water,1,The Boy in the Iceberg,1,Aang,"Well, you think about it, but in the meantime, can you teach me catch one of these penguins?","Well, you think about it, but in the meantime, can you teach me catch one of these penguins?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +188,188,Water,1,The Boy in the Iceberg,1,Katara,"[Mockingly imitating a teacher.] Okay, listen closely my young pupil. [Inclines her head toward Aang.] Catching penguins is an ancient and sacred art. [She conjures a fish out of her sleeve.] Observe!","Okay, listen closely my young pupil. Catching penguins is an ancient and sacred art. Observe!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +189,189,Water,1,The Boy in the Iceberg,1,Scene Description,"She tosses Aang the fish. As he catches it with an uncomprehending look on his face, the penguins immediately begin crowding him. He laughs as the penguins swarm over him, pulling him down amidst their ranks.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +190,190,Water,1,The Boy in the Iceberg,1,Aang,"Hi hi hi! Ha, ha, ha!","Hi hi hi! Ha, ha, ha!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +191,191,Water,1,The Boy in the Iceberg,1,Scene Description,"The scene switches to a protruding iceberg that Aang and Katara use as a slide, each sitting atop a penguin. They soar through the air for a moment before landing on the slope and continuing their journey downward. They race down and Aang uses another iceberg as a ramp to propel him into the air and to soar over and past Katara. She in turn uses the next jump to land next to Aang again. The two laugh and shout out as they gleefully ride over snowy bumps.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +192,192,Water,1,The Boy in the Iceberg,1,Katara,[Happily.] I haven't done this since I was a kid!,I haven't done this since I was a kid!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +193,193,Water,1,The Boy in the Iceberg,1,Aang,You still are a kid!,You still are a kid!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +194,194,Water,1,The Boy in the Iceberg,1,Scene Description,"The two ride through a tunnel of ice. Katara is in the lead and tries to hold Aang back by constantly changing her direction when he wants to pass her. Aang solves this problem by increasing his speed with airbending, enabling him to race over the ceiling past Katara. The tunnel levels out on an open plain of ice where the two get off their rides. The plain itself is dominated by a large metal ship, elevated and held in place by a large protrusion of ice with the bow pointing toward the sky. Curious, Aang gazes at it.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +195,195,Water,1,The Boy in the Iceberg,1,Aang,[In awe.] Whoa! What is that?,Whoa! What is that?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +196,196,Water,1,The Boy in the Iceberg,1,Katara,"[On a slightly dark tone.] A Fire Navy ship. And a very bad memory for my people. [Aang begins to approach the wreckage.] Aang, stop! We're not allowed to go near it! The ship could be booby-trapped!","A Fire Navy ship. And a very bad memory for my people. Aang, stop! We're not allowed to go near it! The ship could be booby-trapped!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +197,197,Water,1,The Boy in the Iceberg,1,Aang,"If you want to be a bender, you have to let go of fear.","If you want to be a bender, you have to let go of fear.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +198,198,Water,1,The Boy in the Iceberg,1,Scene Description,Katara ponders over that remark for a moment and walks toward Aang with a scared look upon her face. The two venture closer toward the ship. Aang helps Katara to climb some of the blocks of ice that lay beside the ship and they crawl through a hole in the hull of the ship. The two walk through the silent rooms of the shipwreck. Some white hamsters roam the otherwise deserted ship. Aang enters a room stocked with weapons in various places.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +199,199,Water,1,The Boy in the Iceberg,1,Katara,"[Her voice echoes through the room.] This ship has haunted my tribe since Gran-Gran was a little girl. [The camera shifts through the room, revealing all the weapons more closely.] It was part of the Fire Nation's first attacks.",This ship has haunted my tribe since Gran-Gran was a little girl. It was part of the Fire Nation's first attacks.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +200,200,Water,1,The Boy in the Iceberg,1,Aang,"Okay, back up. I have friends all over the world, even in the Fire Nation. [Aang picks up a Guan Dao to inspect it.] I've never seen any war.","Okay, back up. I have friends all over the world, even in the Fire Nation. I've never seen any war.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +201,201,Water,1,The Boy in the Iceberg,1,Katara,"Aang, how long were you in that iceberg?","Aang, how long were you in that iceberg?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +202,202,Water,1,The Boy in the Iceberg,1,Aang,"[Uncertain.] I don't know. A few days, maybe?","I don't know. A few days, maybe?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +203,203,Water,1,The Boy in the Iceberg,1,Katara,I think it was more like a hundred years!,I think it was more like a hundred years!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +204,204,Water,1,The Boy in the Iceberg,1,Aang,[In full disbelief and slightly accusing.] What?! That's impossible! Do I look like a hundred-twelve-year-old man to you?,What?! That's impossible! Do I look like a hundred-twelve-year-old man to you?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +205,205,Water,1,The Boy in the Iceberg,1,Katara,"Think about it. The War is a century old. You don't know about it because, somehow, you were in there the whole time! [Aang's expression changes to one of comprehension.] It's the only explanation.","Think about it. The War is a century old. You don't know about it because, somehow, you were in there the whole time! It's the only explanation.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +206,206,Water,1,The Boy in the Iceberg,1,Scene Description,Aang backs away and slumps to floor in shock.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +207,207,Water,1,The Boy in the Iceberg,1,Aang,A hundred years! [Saddened by his new discovery.] I can't believe it.,A hundred years! I can't believe it.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +208,208,Water,1,The Boy in the Iceberg,1,Katara,"[Squats beside him.] I'm sorry, Aang. Maybe somehow there's a bright side to all this ...","I'm sorry, Aang. Maybe somehow there's a bright side to all this ...","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +209,209,Water,1,The Boy in the Iceberg,1,Aang,[Cheerfully.] I did get to meet you.,I did get to meet you.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +210,210,Water,1,The Boy in the Iceberg,1,Katara,"[Smiling warmly at him while offering her hand.] Come on, let's get out of here.","Come on, let's get out of here.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +211,211,Water,1,The Boy in the Iceberg,1,Scene Description,Katara smiles and pulls him to his feet and the two exit the room.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +212,212,Water,1,The Boy in the Iceberg,1,Katara,"Aang, let's head back, this place is creepy.","Aang, let's head back, this place is creepy.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +213,213,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang ventures down yet another room with Katara on his trail. There, he trips over a thin rope; as he stumbles, metal bars slide downward over the entrance, barring it and trapping them inside.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +214,214,Water,1,The Boy in the Iceberg,1,Aang,Huh?,Huh?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +215,215,Water,1,The Boy in the Iceberg,1,Scene Description,They both run toward the bars and peek through them.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +216,216,Water,1,The Boy in the Iceberg,1,Aang,What's that you said about booby traps?,What's that you said about booby traps?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +217,217,Water,1,The Boy in the Iceberg,1,Scene Description,"The gears and engines of the shipwreck suddenly power up, beginning to function. In shock, Katara and Aang follow the movements of the machines until suddenly, a flare is fired and explodes high in the sky.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +218,218,Water,1,The Boy in the Iceberg,1,Aang,Uh oh ... [Aang notices a hole in the roof of the ship and takes a surprised Katara into his arms.] Hold on tight!,Uh oh ... Hold on tight!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +219,219,Water,1,The Boy in the Iceberg,1,Katara,Aaah!,Aaah!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +220,220,Water,1,The Boy in the Iceberg,1,Scene Description,"Aang enhances the power of his jump with his airbending to jump several feet into the air through the hole. +The scene switches to Prince Zuko, who is peering through a telescope. He follows every movement the duo makes as Aang, still holding Katara, jumps down the side of the ship.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +221,221,Water,1,The Boy in the Iceberg,1,Zuko,The last airbender! [Aang and Katara reach the ground again and Aang sets Katara down. They start to walk away.] Quite agile for his old age. [He turns and angrily yells to a soldier behind him.] Wake my uncle! Tell him I found the Avatar. [Zuko peeks through his telescope again to see that Katara and Aang are running now. Zuko follows the direction they are running in with his telescope and discovers that they must be headed for the village he spots.] As well as his hiding place ...,The last airbender! Quite agile for his old age. Wake my uncle! Tell him I found the Avatar. As well as his hiding place ...,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +222,222,Water,1,The Boy in the Iceberg,1,Scene Description,Close-up of Zuko's right eye as he squints it to look in the direction of the Southern Water Tribe.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +223,223,Water,1,The Boy in the Iceberg,1,Scene Description,Fade to credits.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.1 +224,224,Water,1,The Avatar Returns,2,Katara,"Water. Earth. Fire. Air. Long ago, the four nations lived together in harmony. Then, everything changed when the Fire Nation attacked. Only the Avatar, master of all four elements, could stop them, but when the world needed him most, he vanished. A hundred years passed, and my brother and I discovered the new Avatar, an airbender named Aang. And although his airbending skills are great, he has a lot to learn before he's ready to save anyone. But I believe Aang can save the world.","Water. Earth. Fire. Air. Long ago, the four nations lived together in harmony. Then, everything changed when the Fire Nation attacked. Only the Avatar, master of all four elements, could stop them, but when the world needed him most, he vanished. A hundred years passed, and my brother and I discovered the new Avatar, an airbender named Aang. And although his airbending skills are great, he has a lot to learn before he's ready to save anyone. But I believe Aang can save the world.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +225,225,Water,1,The Avatar Returns,2,Scene Description,"The episode opens onto the yellowing sky as the flare Aang accidentally launched in the previous episode soars lazily through the air in the distance. The camera pans downward to show the figures of Aang and Katara appearing over the horizon. The Southern Water Tribe villagers have gathered in the snow, waiting for the duo's return. Cut to a shot of Aang and Katara approaching the village and the gathered villagers that stand outside the village walls. The children become overjoyed upon seeing Aang.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +226,226,Water,1,The Avatar Returns,2,Village kids,[Joyfully.] Yay! Aang's back!,Yay! Aang's back!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +227,227,Water,1,The Avatar Returns,2,Scene Description,"Some of them run over to him while the others remain cheerful in the crowd. The camera pans up from the children to the adults, revealing more stern and offended expressions. The children reach Aang and Katara, crowding around him gleefully, and Aang responds kindly. Switch to a shot of Sokka, who breaks from the line of villagers and steps forward toward Aang.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +228,228,Water,1,The Avatar Returns,2,Sokka,"[Angrily.] I knew it! [Accusingly points a finger at Aang as he and Katara draw closer.] You signaled the Fire Navy with that flare! You're leading them straight to us, aren't you?","I knew it! You signaled the Fire Navy with that flare! You're leading them straight to us, aren't you?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +229,229,Water,1,The Avatar Returns,2,Katara,[Protesting.] Aang didn't do anything! It was an accident.,Aang didn't do anything! It was an accident.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +230,230,Water,1,The Avatar Returns,2,Aang,"[Sheepishly, as Katara glares at Sokka.] Yeah. We were on the ship and there was this booby trap, and, well -- [Awkwardly rubs his head.] -- we booby-ed right into it.","Yeah. We were on the ship and there was this booby trap, and, well -- -- we booby-ed right into it.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +231,231,Water,1,The Avatar Returns,2,Kanna,"[Worriedly.] Katara, you shouldn't have gone on that ship! Now we could all be in danger!","Katara, you shouldn't have gone on that ship! Now we could all be in danger!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +232,232,Water,1,The Avatar Returns,2,Aang,[Sorrowfully.] Don't blame Katara. I brought her there. It's my fault.,Don't blame Katara. I brought her there. It's my fault.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +233,233,Water,1,The Avatar Returns,2,Sokka,"[Angry and triumphant, having found an excuse.] Aha! The traitor confesses! Warriors, away from the enemy. [The children begin to sadly walk away.] The foreigner is banished from our village.","Aha! The traitor confesses! Warriors, away from the enemy. The foreigner is banished from our village.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +234,234,Water,1,The Avatar Returns,2,Katara,"[Irritably, clenching her fists.] Sokka, you're making a mistake.","Sokka, you're making a mistake.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +235,235,Water,1,The Avatar Returns,2,Sokka,"[Stubbornly persisting in his anger.] No, I'm keeping my promise to Dad. [Pointing to Aang.] I'm protecting you, from threats like him!","No, I'm keeping my promise to Dad. I'm protecting you, from threats like him!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +236,236,Water,1,The Avatar Returns,2,Katara,"[Angrily.] Aang is not our enemy! [Continues in a calm, soothing voice.] Don't you see? Aang's brought us something we haven't had in a long time: fun.",Aang is not our enemy! Don't you see? Aang's brought us something we haven't had in a long time: fun.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +237,237,Water,1,The Avatar Returns,2,Sokka,[Annoyed.] Fun?! We can't fight firebenders with fun!,Fun?! We can't fight firebenders with fun!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +238,238,Water,1,The Avatar Returns,2,Aang,[Optimistically.] You should try it sometime.,You should try it sometime.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +239,239,Water,1,The Avatar Returns,2,Sokka,[Angrily.] Get out of our village! Now!,Get out of our village! Now!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +240,240,Water,1,The Avatar Returns,2,Katara,"[Pleading.] Grandmother, please. Don't let Sokka do this!","Grandmother, please. Don't let Sokka do this!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +241,241,Water,1,The Avatar Returns,2,Kanna,"[Gravely.] Katara, you knew going on that ship was forbidden. Sokka is right. I think it best if the airbender leaves.","Katara, you knew going on that ship was forbidden. Sokka is right. I think it best if the airbender leaves.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +242,242,Water,1,The Avatar Returns,2,Katara,"[Outraged.] Fine! Then I'm banished, too! [Drags Aang away.] Come on Aang, let's go.","Fine! Then I'm banished, too! Come on Aang, let's go.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +243,243,Water,1,The Avatar Returns,2,Sokka,[Demanding.] Where do you think you're going?,Where do you think you're going?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +244,244,Water,1,The Avatar Returns,2,Katara,[Angrily.] To find a waterbender. Aang is taking me to the North Pole.,To find a waterbender. Aang is taking me to the North Pole.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +245,245,Water,1,The Avatar Returns,2,Aang,[Confusedly.] I am? [Brightening.] Great!,I am? Great!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +246,246,Water,1,The Avatar Returns,2,Sokka,Katara! Would you really choose him over your tribe? [Shows shot of the entire Southern Water Tribe.] Your own family?,Katara! Would you really choose him over your tribe? Your own family?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +247,247,Water,1,The Avatar Returns,2,Scene Description,"A side-view-shot shows that Katara had stopped in her tracks, right between Appa and her tribe. Close-up of Katara, who looks down sorrowfully as Aang approaches her with a sad look upon his face.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +248,248,Water,1,The Avatar Returns,2,Aang,"[Understanding.] Katara, I don't want to come between you and your family.","Katara, I don't want to come between you and your family.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +249,249,Water,1,The Avatar Returns,2,Katara,"[Upset.] So, you're leaving the South Pole? [In a quieter tone.] This is goodbye?","So, you're leaving the South Pole? This is goodbye?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +250,250,Water,1,The Avatar Returns,2,Aang,Thanks for penguin sledding with me.,Thanks for penguin sledding with me.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +251,251,Water,1,The Avatar Returns,2,Katara,[Still in that quiet tone.] Where will you go?,Where will you go?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +252,252,Water,1,The Avatar Returns,2,Aang,"Guess I'll go back home and look for the airbenders. [He places one hand on Appa, but is suddenly struck with realization.] Wow, I haven't cleaned my room in a hundred years. Not looking forward to that. [He uses his airbending to hop onto Appa's head.] It was nice meeting everyone.","Guess I'll go back home and look for the airbenders. Wow, I haven't cleaned my room in a hundred years. Not looking forward to that. It was nice meeting everyone.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +253,253,Water,1,The Avatar Returns,2,Sokka,"[Sarcastically, with arms crossed.] Let's see your bison fly now, air boy.","Let's see your bison fly now, air boy.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +254,254,Water,1,The Avatar Returns,2,Aang,"[Encouragingly.] Come on Appa, you can do it. Yip-yip!","Come on Appa, you can do it. Yip-yip!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +255,255,Water,1,The Avatar Returns,2,Scene Description,"Aang flicks the reins, but Appa merely rises and growls.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +256,256,Water,1,The Avatar Returns,2,Sokka,"[Mockingly.] Yeah, I thought so!","Yeah, I thought so!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +257,257,Water,1,The Avatar Returns,2,Southern Water Tribe girl,"[Runs from crowd to stand next to Katara with tears in her eyes.] Ahhh! [Close-up.] Aang, don't go! I'll miss you!","Ahhh! Aang, don't go! I'll miss you!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +258,258,Water,1,The Avatar Returns,2,Aang,"[Sadly.] I'll miss you, too. [Looks at Katara, who frowns back at him, her eyes saddened while her hair loopies sway in the wind.] Come on, boy.","I'll miss you, too. Come on, boy.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +259,259,Water,1,The Avatar Returns,2,Scene Description,"Appa turns and plods away, disappearing over the hill. The young girl sighs and trudges back to the village, while Katara remains standing in the snow. Kanna walks up to her granddaughter.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +260,260,Water,1,The Avatar Returns,2,Kanna,"[Consoling tone.] Katara, you'll feel better after you- [Katara quickly turns around and cuts her off.]","Katara, you'll feel better after you-","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +261,261,Water,1,The Avatar Returns,2,Katara,"[Rounding on Kanna and interrupting her, her voice full of empassioned rage.] You happy now? [Gestures in the direction Aang took off.] There goes my one chance at becoming a waterbender!",You happy now? There goes my one chance at becoming a waterbender!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +262,262,Water,1,The Avatar Returns,2,Scene Description,"She marches away furiously, leaving Kanna looking saddened. Meanwhile, Sokka coaches the young boys to prepare for battle just outside the village.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +263,263,Water,1,The Avatar Returns,2,Sokka,"All right, ready our defenses! The Fire Nation could be on our shores any moment now!","All right, ready our defenses! The Fire Nation could be on our shores any moment now!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +264,264,Water,1,The Avatar Returns,2,Southern Water Tribe boy,[Stopping and dancing around.] But I gotta ...,But I gotta ...,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +265,265,Water,1,The Avatar Returns,2,Sokka,"[Authoritatively, a twinge of annoyance in his voice; he points onward, ushering the boy in that direction.] And no potty breaks!",And no potty breaks!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +266,266,Water,1,The Avatar Returns,2,Scene Description,"The scene changes to a snowy landscape dotted by several ice formations. The camera pans to the right, where Aang and Appa are resting in an ice formation, Appa lying lazily on his back in the lower section and Aang resting above him. Appa grunts.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +267,267,Water,1,The Avatar Returns,2,Aang,"[Sorrowfully.] Yeah, I liked her too. [Catches sight of Fire Nation ship advancing toward the Southern Water Tribe; gasps.] The village! [He slides off the ice formation onto the ground.] Appa, wait here.","Yeah, I liked her too. The village! Appa, wait here.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +268,268,Water,1,The Avatar Returns,2,Scene Description,"Appa responds by merely grunting lazily. The scene changes to where Sokka prepares for battle inside a Water Tribe tent. He dons gloves, boots, bindings, and applies face paint. After necessary preparations, he puts his boomerang away on his back. +The scene changes to Zuko's ship, where servants are seen helping the Fire Nation prince to put on his Fire Nation outfit, complete with a red helmet ending in a sharp point. Through all this, Zuko never moves a muscle. +Cut back to Sokka kneeling inside the tent, grabbing his club. He glances at a candle that flickers as he exits. +The scene cuts to an overhead shot of the village, the camera panning upward to the low-stooping wall surrounding the town. Sokka is seen standing atop the wall, overlooking the foggy horizon. Cut back to a shot of the village where a mother is seen squatting beside her child, but she suddenly jerks up upon hearing a loud, cracking noise. Her son gasps for air and the surrounding villagers also turn around in fright to see what the source of the noise was. Kanna, sitting on a log by a camp fire, rises and gasps for air. Suddenly, the ground begins to quake and a rumbling sound is heard in the distance. Kanna gasps louder this time and her face contorts in horror. Switch to a shot of Sokka's feet where bits of the wall are cracking and breaking off. A mother carrying her child slowly backs away in fright. A watchtower on the wall is shaking under the pressure of the trembling, and completely collapses.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +269,269,Water,1,The Avatar Returns,2,Sokka,[Disappointed at the tower's collapse.] Oh man!,Oh man!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +270,270,Water,1,The Avatar Returns,2,Scene Description,"Cut to a shot of inside the village where the citizens are beginning to flee from the scene. Katara runs up and looks up at her brother still standing atop the wall, and her look turns to one of horror. Cut to a shot of the wall from her perspective; an enormous shadow of the bow of Zuko's ship comes into view. Camera closes in on Sokka's face.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +271,271,Water,1,The Avatar Returns,2,Sokka,[Horrified.] Oh maaan ...,Oh maaan ...,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +272,272,Water,1,The Avatar Returns,2,Scene Description,"A side-view of the ship approaching the village, cutting through the icy sea. Switch to a shot of Kanna standing in the snow, looking up in terror at the vessel while backing up slightly. Villagers pass her in their haste to get to safety and the shadow of the large ships descends over her. Cut to a close-up of the ship's bow as it plows through the snowy shores, splintering the ground. Sokka looks up, terrified by the large ship. The ship's approach creates a large crack that quickly travels toward the village and over the wall. Cut to Katara helping her grandmother into a tent, when she hears a frightened scream. She gasps in terror when she realizes that the sound came from a small boy, kneeling on the ground. The fissure is rapidly approaching him, but Katara quickly runs over and scoops up the child before the ground splinters underneath. She sets the child down again in front of a tent which he quickly enters, and Katara turns back to view her brother.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +273,273,Water,1,The Avatar Returns,2,Katara,"[Hysterically.] Sokka, get out of the way!","Sokka, get out of the way!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +274,274,Water,1,The Avatar Returns,2,Scene Description,"Cut to a shot of Sokka standing on the wall, the bow of the ship plowing through the snow. Sokka raises his club in defense, ready to strike. Before he can make his move, however, the bow crumbles a large portion of the wall into snowy ruins. The snow slides downward, pushing Sokka several feet back before he lands to a halt. With a loud hiss of steam, the ship has come to a halt as well. Switch to an overview shot of the entire village. +Cut back to the villagers, who now curiously come out of hiding and are staring in complete shock at the large vessel. The camera pans to the right toward Katara, who is looking at the ship with her mouth open; she gasps. Sokka also gasps when he catches sight of the bow of the ship opening and creaking forward in a burst of steam, forming a walkway. He backs up and falls to the ground once the bow hits the ground with a loud thud. The villagers gather closer around for support and several people even cover their eyes. Katara takes a step back upon noticing the shape of three figures cloaked in the mist. +Cut to the top of the walkway, where Prince Zuko emerges from the mist, two guards following close behind him. Cut to the villagers huddled together and Sokka, who kneels in the snow in front of them, ready to defend his tribe. The camera cuts to shot of the top of the walkway and pans downward. Prince Zuko descends from the ship along with the two guards. Sokka lets out a battle cry and charges at the prince with his club to the ready. Switch to a side-view of the walkway, where now even more soldiers trudge down while Sokka is traveling his way upward. When he reaches Zuko, the prince merely kicks the club to his left and, without ever resting his leg on the ground, kicks Sokka over to his right, sending him into the snow, where his head becomes trapped. The warrior desperately tries to free himself as Zuko continues on his way to the village, followed by six more men. Katara covers her mouth in shock upon witnessing her brother's quick defeat. +Shift to a shot of the villagers, as Zuko and his men stand before them. Zuko approaches. He passes to the right when he does not seem to find what he is looking for and stops in front of Katara, who is clutching Kanna.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +275,275,Water,1,The Avatar Returns,2,Zuko,[Angrily.] Where are you hiding him?,Where are you hiding him?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +276,276,Water,1,The Avatar Returns,2,Scene Description,"Zuko surveys the crowd of villagers, who fall completely silent. Without warning, he extends his arm out into the crowd and grabs Kanna, holding her by the hood of her parka.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +277,277,Water,1,The Avatar Returns,2,Zuko,"[Shaking Kanna; annoyed.] He'd be about this age, master of all elements?","He'd be about this age, master of all elements?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +278,278,Water,1,The Avatar Returns,2,Scene Description,"He shoves Kanna forcefully back into the crowd. The elderly woman shudders in fear and embraces Katara, while Katara shoots an angry glare at Zuko. Receiving no response, Zuko swings his arm out and releases an arc of fire that passes just over the heads of the people, causing them to cover their heads and cry out in fear.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +279,279,Water,1,The Avatar Returns,2,Zuko,[Angrily.] I know you're hiding him!,I know you're hiding him!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +280,280,Water,1,The Avatar Returns,2,Scene Description,"Cut to a shot of Sokka's club lying in the snow. Sokka runs over and picks it up, most of his war paint having come off at this point. He lets out another battle cry as he charges toward the prince. Cut to a shot of Zuko, his back facing the camera. He swiftly turns around just as Sokka approaches. He ducks under Sokka's wide swing and hurls the warrior forward. Sokka lands on his rear in the snow and is quickly forced to dart from his spot when Zuko fires a blast at him. He spins to the side and tosses his boomerang at the enemy who barely manages to miss getting hit by the weapon. Zuko growls and glares at Sokka in anger at the near hit; he follows the course of the weapon until it vanishes before looking back at Sokka in anger. One of the village boys tosses Sokka a spear.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +281,281,Water,1,The Avatar Returns,2,Village boy,Show no fear!,Show no fear!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +282,282,Water,1,The Avatar Returns,2,Scene Description,"Sokka handily catches the weapon and charges at Zuko once more. The camera cuts to a shot from Sokka's perspective as he faces him head-on. Zuko breaks of pieces of the spear with his forearms, pulls the remains of the weapon out of Sokka's hands and pokes him thrice in the head with the blunt end. Sokka falls to the ground as Zuko snaps the spear in two and tosses the pieces to the ground on both of his sides. Cut to shot of Sokka, who rubs his head in pain, before switching back to a head shot of Zuko. A sparkle of light shines briefly in the distance and Sokka's boomerang spins into view, unnoticed by Zuko. The weapon strikes Zuko on the back of his helmet with a loud cling; he is momentarily pushed forward by the unexpected blow. Zuko rearranges his helmet and growls at Sokka. The boomerang has plummeted into the ground in front of Sokka's feet. Enraged, Zuko readies two fire daggers. +Cut to shot of Aang, who is seen rapidly riding on a penguin toward the battle scene. He holds his glider horizontal on the animal and he has a determined look on his face. His tongue is out of his mouth in pure concentration. Cut to shot of Zuko's backside. The camera closes in on Zuko as Aang takes his feet out from underneath him, tossing Zuko off his feet; speeding past, Aang soars into the air as the prince lands on his face, his legs in the air. He spins around a few times before coming to a halt in front of his men, his helmet landing on his rear as they watch. +Cut to a shot of cheering villagers, as Aang rides speedily toward them, still mounted on the penguin. Cut to shot of the children, who cheer upon his arrival. They are showered in snow as Aang rides past, however, after giving each other silent, unamused looks for a few seconds, they begin cheering once again, shaking the snow off. Switch to a shot of a group of several other villagers, including Kanna, Katara, and Sokka. Aang comes to a halt before them. The penguin crawls out from under him, tossing him off. Aang falls on his rear, blinking stupidly. Aang smiles at the penguin when the animal quacks at him before waddling away.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +283,283,Water,1,The Avatar Returns,2,Aang,"[Cheerfully, despite the present situation.] Hey, Katara. Hey, Sokka.","Hey, Katara. Hey, Sokka.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +284,284,Water,1,The Avatar Returns,2,Sokka,"[Moodily.] Hi, Aang. Thanks for coming.","Hi, Aang. Thanks for coming.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +285,285,Water,1,The Avatar Returns,2,Scene Description,"Aang looks back at the Fire Nation soldiers, where Zuko just got back on his feet again. Upon his signal, his men spread out, surrounding Aang while Zuko assumes a fighting stance. Shift to an overhead shot of Aang assuming a fighting stance as well, his staff held firmly in front of him as he is being surrounded by the soldiers. He sweeps the ground side-to-side with his staff, showering the men with snow. He subsequently slams the ground, sending a rush of snow at Zuko who braces for the impact. After being sprayed with snow, and heating it up so it would melt off, Zuko looks up angrily.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +286,286,Water,1,The Avatar Returns,2,Aang,Looking for me?,Looking for me?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +287,287,Water,1,The Avatar Returns,2,Zuko,[Shocked.] You're the airbender? You're the Avatar?,You're the airbender? You're the Avatar?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +288,288,Water,1,The Avatar Returns,2,Scene Description,Aang resumes his fighting stance. Switch to a close-up of the siblings.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +289,289,Water,1,The Avatar Returns,2,Katara,[Surprised.] Aang?,Aang?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +290,290,Water,1,The Avatar Returns,2,Sokka,[Bewildered.] No way!,No way!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +291,291,Water,1,The Avatar Returns,2,Scene Description,"Overview shot of Zuko and Aang moving about in a circular pattern, both awaiting the attack of the other.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +292,292,Water,1,The Avatar Returns,2,Zuko,"I've spent years preparing for this encounter. Training, meditating. [Angrily.] You're just a child!","I've spent years preparing for this encounter. Training, meditating. You're just a child!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +293,293,Water,1,The Avatar Returns,2,Aang,"[Calmly, tilting his head to one side with a somewhat confused expression.] Well, you're just a teenager.","Well, you're just a teenager.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +294,294,Water,1,The Avatar Returns,2,Scene Description,"Zuko launches a series of fire blasts at Aang in anger at the remark, who defends himself by twirling his staff, dissipating the flames. Cut to overhead shot of the area, Zuko attacking Aang, the villagers watching directly behind him. Zuko fires another blast at Aang, who twirls his staff once again to ward the attack off. Cut to a shot of the villagers, who cower as the flames stream through the air over their heads. Aang widens his eyes in horror at the sight of the frightened villagers and immediately ceases to defend himself.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +295,295,Water,1,The Avatar Returns,2,Aang,"If I go with you, [He holds his staff in front of him as an offer, making sure Zuko understands that he does not wish to continue fighting.] will you promise to leave everyone alone?","If I go with you, will you promise to leave everyone alone?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +296,296,Water,1,The Avatar Returns,2,Scene Description,"The camera cuts to a side-view of the area, Zuko's men still surrounding him, spears poised. After a brief moment of hesitation, Zuko erects himself and nods in agreement. Aang is apprehended by Zuko's men, who take his staff. Katara runs forward as they lead Aang away.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +297,297,Water,1,The Avatar Returns,2,Katara,"[Sadly.] No! Aang, don't do this!","No! Aang, don't do this!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +298,298,Water,1,The Avatar Returns,2,Aang,"[Surprisingly calm.] Don't worry, Katara. It'll be okay. [He gasps when he is shoved on the walkway. Katara's face contorts with sadness and fright.] Take care of Appa for me until I get back.","Don't worry, Katara. It'll be okay. Take care of Appa for me until I get back.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +299,299,Water,1,The Avatar Returns,2,Zuko,[Boarding the ship up the walkway. Determined.] Head a course for the Fire Nation. I'm going home.,Head a course for the Fire Nation. I'm going home.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +300,300,Water,1,The Avatar Returns,2,Scene Description,"Cut to a shot of the villagers looking up at the ship, Aang standing at the top of walkway. Switch to a more up-close shot of him smiling weakly, surrounded by Fire Nation soldiers. Cut to shot of Katara who looks up, tears in her eyes, before changing back to a shot of Aang who now frowns as the bow rises and closes. The screen blacks out as the bow is locked into place with a thud. +The scene changes to later in the day; an overview shot of the village reveals the wreckage the ship, now gone, has left behind. A woman drops a pile of firewood onto the ground next to a camp fire in a rather melancholy manner. Several villagers surround the collapsed wall, surveying the damage and trying to repair the collapsed watch tower by digging it out. Several others work together to help put up a fallen tent. Cut to shot of the Southern shores where Katara is standing on the edge in the distance. The camera closes in on where she is standing.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +301,301,Water,1,The Avatar Returns,2,Katara,"[Sokka is seen in the background, carrying a pack as she speaks on a determined tone.] We have to go after that ship, Sokka. Aang saved our tribe, now we have to save him.","We have to go after that ship, Sokka. Aang saved our tribe, now we have to save him.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +302,302,Water,1,The Avatar Returns,2,Sokka,"Katara, I --","Katara, I --","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +303,303,Water,1,The Avatar Returns,2,Katara,"[Making arm gestures to emphasize her words while she speaks in an objective tone.] Why can't you realize that he's on our side? [Cuts to shot of her and her brother, her back to the screen.] If we don't help him, no one will. I know you don't like Aang, but we owe him and --","Why can't you realize that he's on our side? If we don't help him, no one will. I know you don't like Aang, but we owe him and --","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +304,304,Water,1,The Avatar Returns,2,Sokka,"[Cutting her off.] Katara! [Slightly annoyed.] Are you gonna talk all day, or are you comin' with me?","Katara! Are you gonna talk all day, or are you comin' with me?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +305,305,Water,1,The Avatar Returns,2,Scene Description,Sokka gestures to a canoe floating in the water. Katara immediately grins and gasps in happiness.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +306,306,Water,1,The Avatar Returns,2,Katara,[Running over to her brother.] Sokka! [She gives him a hug.],Sokka!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +307,307,Water,1,The Avatar Returns,2,Sokka,"[Inviting.] Get in, we're going to save your boyfriend.","Get in, we're going to save your boyfriend.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +308,308,Water,1,The Avatar Returns,2,Katara,[Annoyed.] He's not my --,He's not my --,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +309,309,Water,1,The Avatar Returns,2,Sokka,"[Shrugging, nonchalant.] Whatever.",Whatever.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +310,310,Water,1,The Avatar Returns,2,Kanna,[Accusingly.] What do you two think you're doing?,What do you two think you're doing?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +311,311,Water,1,The Avatar Returns,2,Scene Description,"The two siblings turn around, look at her and try to act as innocently as possible; Sokka grins broadly.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +312,312,Water,1,The Avatar Returns,2,Kanna,"[Smiling warmly.] You'll need these. [Kanna holds up their sleeping bags.] You have a long journey ahead of you. [The siblings glance at each other in surprise. Kanna walks over to face Katara.] It's been so long since I've had hope, but you brought it back to life, my little waterbender. [Hugs Katara and who at the end takes the sleeping back out of her hands; to Sokka.] And you, my brave warrior, be nice to your sister.","You'll need these. You have a long journey ahead of you. It's been so long since I've had hope, but you brought it back to life, my little waterbender. And you, my brave warrior, be nice to your sister.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +313,313,Water,1,The Avatar Returns,2,Sokka,"[Kanna hugs Sokka, who, slightly embarrassed, pats her back.] Yeah, okay Gran. [He smiles broadly when she releases him.]","Yeah, okay Gran.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +314,314,Water,1,The Avatar Returns,2,Kanna,Aang is the Avatar. He's the world's only chance. You both found him for a reason. Now your destinies are intertwined with his.,Aang is the Avatar. He's the world's only chance. You both found him for a reason. Now your destinies are intertwined with his.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +315,315,Water,1,The Avatar Returns,2,Scene Description,The two siblings look at each other uneasily.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +316,316,Water,1,The Avatar Returns,2,Katara,[Pointing at the ready canoe.] There's no way we're going to catch a warship with a canoe.,There's no way we're going to catch a warship with a canoe.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +317,317,Water,1,The Avatar Returns,2,Scene Description,The camera pans up to reveal Appa appearing over an icy hill on the horizon. He makes his presence known by growling.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +318,318,Water,1,The Avatar Returns,2,Katara,[Brightly.] Appa! [Begins running toward the bison.],Appa!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +319,319,Water,1,The Avatar Returns,2,Sokka,"[Annoyed.] You just looove taking me out of my comfort zone, don't you?","You just looove taking me out of my comfort zone, don't you?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +320,320,Water,1,The Avatar Returns,2,Scene Description,"The scene changes, showing a side-view of Zuko's ship as it makes its way through the icy waters. Aang, Zuko, Iroh and some of Zuko's men are standing on deck. Aang's hands are bound behind his back while Zuko holds Aang's staff.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +321,321,Water,1,The Avatar Returns,2,Zuko,"This staff will make an excellent gift for my father. [Inspects the staff further.] I suppose you wouldn't know of fathers, being raised by monks. [To his soldiers.] Take the Avatar to the prison hold, [Handing the staff to Iroh.] and take this to my quarters.","This staff will make an excellent gift for my father. I suppose you wouldn't know of fathers, being raised by monks. Take the Avatar to the prison hold, and take this to my quarters.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +322,322,Water,1,The Avatar Returns,2,Scene Description,Iroh takes the staff and looks at it for a moment while Zuko walks away.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +323,323,Water,1,The Avatar Returns,2,Iroh,"[Turns to one of Zuko's men and gives him the staff; casually.] Hey, you mind taking this to his quarters for me?","Hey, you mind taking this to his quarters for me?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +324,324,Water,1,The Avatar Returns,2,Scene Description,"The firebender accepts the staff and Iroh walks away. Aang is pushed forward by two of the soldiers and he grunts as they roughly shove him ahead. A side-view shows how Aang is being taken below while Iroh and the firebender carrying Aang's staff are walking toward a door leading to the upper decks. A close-up of Aang as his group begins descending a staircase leading to compartment beneath the deck. Cut to a shot from Aang's point of view as he descends the staircase, the outside world disappearing from view. He tries to keep an eye on his staff for as long as possible. +The scene switches for a moment to an overview shot of the ship as it makes its way through the water, flanked by large icebergs, before changing back to the cuffed Aang walking through a corridor on the lower deck. He walks down a corridor, one soldier before him, one following after him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +325,325,Water,1,The Avatar Returns,2,Aang,"[Slyly.] So, I guess you've never fought an airbender before. I bet I could take you both with my hands tied behind my back.","So, I guess you've never fought an airbender before. I bet I could take you both with my hands tied behind my back.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +326,326,Water,1,The Avatar Returns,2,Firebender,[Unamused.] Silence.,Silence.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +327,327,Water,1,The Avatar Returns,2,Scene Description,"The party stops and Aang observes the soldier in front of him preparing to unlock a door. As the guard in front of him begins to unlock the cell, Aang inhales deeply and unleashes a powerful breath, stunning both of them. The firebender before him slams into the door subsequently knocked out from the impact. Aang is sent several feet back, slamming into the guard behind him. They both fly back even further, where they crash into the stairs. The soldier behind Aang is also knocked out by the impact, while Aang propels himself onto the deck and kicks open a door using airbending. He quickly runs down the hallway, panting heavily. He tosses a frightened look over his shoulder, afraid that he is being followed. Cut to a shot of the helmsman overlooking the deck. A soldier emerges from the lower deck and addresses him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +328,328,Water,1,The Avatar Returns,2,Firebender,The Avatar has escaped!,The Avatar has escaped!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +329,329,Water,1,The Avatar Returns,2,Scene Description,"The helmsman immediately turns around and runs off the screen. +The scene changes to on overview shot of the seas where Katara and Sokka sit atop Appa, who still has not gone airborne, but is instead swimming in the water. The camera moves closer and Appa growls. Katara is sitting on top of Appa's head, while Sokka rests in the saddle.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +330,330,Water,1,The Avatar Returns,2,Sokka,[Unamused.] Go. Fly. [Katara glances annoyed at her brother.] Soar.,Go. Fly. Soar.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +331,331,Water,1,The Avatar Returns,2,Katara,"[Pleading as Appa growls again.] Please, Appa. We need your help. Aang needs your help.","Please, Appa. We need your help. Aang needs your help.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +332,332,Water,1,The Avatar Returns,2,Sokka,[Blandly.] Up. Ascend. Elevate.,Up. Ascend. Elevate.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +333,333,Water,1,The Avatar Returns,2,Katara,"Sokka doesn't believe you can fly, but I do, Appa. [Strokes Appa.] Come on, don't you want to save Aang? [Appa grunts.]","Sokka doesn't believe you can fly, but I do, Appa. Come on, don't you want to save Aang?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +334,334,Water,1,The Avatar Returns,2,Sokka,What was it that kid said? Yee-haw? Hup-hup? Wah-hoo? Uh ... Yip-yip?,What was it that kid said? Yee-haw? Hup-hup? Wah-hoo? Uh ... Yip-yip?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +335,335,Water,1,The Avatar Returns,2,Scene Description,"Sokka startles at the sudden movement that last command brought with it as it seemingly prompts Appa. Cut to a shot of his head bobbing in the water as he grunts and beats the water with his tail. After what appears to be a brief running start, he takes flight and soars through the air.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +336,336,Water,1,The Avatar Returns,2,Katara,"[Thrilled.] You did it, Sokka!","You did it, Sokka!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +337,337,Water,1,The Avatar Returns,2,Sokka,"[Ecstatically looking over the rim of the saddle.] He's flying! He's flying! Katara, he's -","He's flying! He's flying! Katara, he's -","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +338,338,Water,1,The Avatar Returns,2,Scene Description,"Cuts to shot of Katara, who smirks at her brother. Seeing this, Sokka tries to play it cool.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +339,339,Water,1,The Avatar Returns,2,Sokka,"[Sheepishly.] I mean, big deal. He's flying. [Brightens quickly.]","I mean, big deal. He's flying.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +340,340,Water,1,The Avatar Returns,2,Scene Description,"Shows a shot of Appa rising higher into the sky. +The scene changes back to the Fire Nation ship, where Aang is frantically running through the corridors. He stops in his tracks and yells when he encounters three soldiers standing with swords drawn in the middle of the corridor.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +341,341,Water,1,The Avatar Returns,2,Aang,"You haven't seen my staff around, have you?","You haven't seen my staff around, have you?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +342,342,Water,1,The Avatar Returns,2,Scene Description,"The three men prepare to attack him, but before they can make a move, Aang sprints across the hallway at the speed of wind, along the floor and the walls, spiraling in circular patterns past the soldiers, through their legs, and manages to escape, leaving the soldiers looking dumbfounded.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +343,343,Water,1,The Avatar Returns,2,Aang,[Off camera.] Thanks anyway!,Thanks anyway!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +344,344,Water,1,The Avatar Returns,2,Scene Description,"He continues racing through the hallways of the ship and encounters a single guard when he rose another deck. The soldier fires a blast at Aang, who leaps forward. A slow-motion shot depicts Aang somersaulting over the soldier and using the sharp tip of his helmet to cut his bindings, thus freeing him. The soldier falls over from the impact and Aang proceeds down the hall. The young Avatar races through the interior, opening two doors leading to various compartments of the ship. Upon opening the third door, he finds Iroh sleeping blissfully, snoring. He begins closing the door, his mouth still visible through the crack.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +345,345,Water,1,The Avatar Returns,2,Aang,[Whispering.] Sorry!,Sorry!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +346,346,Water,1,The Avatar Returns,2,Scene Description,"Cut to the interior of another room, the entranceway open wide. Aang is seen running past the doorway only to slow down and trace his way back upon catching sight of his glider. Close-up of his face that brightens upon recognition of the object, and he dashes through the open door.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +347,347,Water,1,The Avatar Returns,2,Aang,My staff!,My staff!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +348,348,Water,1,The Avatar Returns,2,Scene Description,"Aang enters the room, the door closing behind him. Cut to the interior of the room, where Zuko stands by the door, having clearly waited to corner Aang. Aang looks surprised upon hearing the sound of the closing door. He turns around, his face falling upon seeing the prince standing in the room.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +349,349,Water,1,The Avatar Returns,2,Zuko,Looks like I underestimated you.,Looks like I underestimated you.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +350,350,Water,1,The Avatar Returns,2,Scene Description,"After a slight pause, Zuko assumes a fighting stance and fires a blast at Aang, who yells and narrowly avoids the attack. Zuko fires again, forcing Aang into the corner of the room. Cut to Aang, who pants heavily from alarm. Zuko fires once more; Aang spins around out of the corner and against the back wall. He ducks to avoid another fire blast. Cut to Zuko standing in the middle of the room, Aang managing to roll over directly behind his opponent. Aang deftly manages to stay behind Zuko, utilizing circle-walking. Zuko spins around, desperately attempting to land a blow. +The scene cuts to a shot of the deck and cabin of the ship, the window of the room where the battle is occurring illuminating two consecutive times from the fire blasts. Cut back to inside the room, where Aang uses airbending to try and deter another one of Zuko's attacks by catching his flames in a current of air. After extinguishing yet another one of his attacks, Aang uses Zuko as a stepping stone. He pushes himself off against his head and creates an air scooter in mid-air that he uses to ride around the room and over the walls and ceiling, as Zuko resumes attacking. +He avoids Zuko's repeated attacks; however, the prince manages to dissipate the air scooter by shattering it with a flame arc. Aang is smacked against the wall underneath a hanging tapestry. He quickly pushes himself up under the tapestry to avoid another fire blast. When he emerges at the top, he grabs the tapestry off its hooks and wraps it around Zuko's body, tangling him momentarily. This brief intermission gives Aang enough time to grab his glider and he turns around to face his opponent, pointing the end of the staff at Zuko, who destroys the tapestry with firebending. Zuko assumes a fighting stance, while Aang looks on with alarm. Cut to shot of the entire room, as Aang uses airbending to propel a mattress lying in a corner toward Zuko. The mattress slams into the Fire Nation prince, sending him colliding into the wall, before falling onto the mattress. Aang propels the mattress upward, sending Zuko slamming into the ceiling of the room. Aang makes a break for it before the mattress touches the ground again. Zuko and the mattress fall to the floor, and Zuko remains lying face down upon it. Cut to shot of Zuko, who raises his head and glances around the empty room, fuming. +Cut to the main control room of the ship. The wheel of the hatch located toward the back of the room begins spinning rapidly. The hatch opens with a small tornado of air and Aang emerges. Cut to a shot of the rest of the control room, a man at the helm. Cut to Aang, who leaps from the hatch and runs across the room, leaping over a table and past the man who looks up in surprise. He exits the room and runs onto the upper deck of the ship. Cut to an overhead shot of the upper deck as Aang happily spreads his arms and welcomes the fresh air. He throws his staff over the balcony which opens into a glider and begins soaring away. He appears successful until Zuko appears on screen, leaping forward, his arms extended outward. While yelling, Zuko manages to grab hold of Aang's ankle. Cut to shot of Aang, whose expression of triumph turns into one of despair as he begins losing altitude, struggling to maintain the weight of the extra, unexpected person. +The two plummet down to the lower deck of the ship and land with a crash. They bounce a few times before coming to a halt. Aang's glider closes again to a staff. Both lie on the deck for a moment. Close-up of Zuko's eyes, as they narrow in anger. Zuko begins rising, a look of persistence on his face. Aang rises and assumes a fighting stance, looking very unsure of himself. Before the fight could begin, Appa's growl distracts both fighters. Aang averts his gaze and catches sight of Appa heading toward the ship.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +351,351,Water,1,The Avatar Returns,2,Zuko,[Shocked.] What is that?,What is that?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +352,352,Water,1,The Avatar Returns,2,Scene Description,"The scene cuts to a shot of Appa, Katara and Sokka mounted on his saddle.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +353,353,Water,1,The Avatar Returns,2,Aang,[Ecstatic.] Appa!,Appa!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +354,354,Water,1,The Avatar Returns,2,Scene Description,"He turns around to face Zuko and manages to deflect a firebending attack by spinning his glider around like a baton. However, he propels himself by accident into the air and lands on the ledge of the deck. He leans precariously over the side, unsteadily balancing himself, but manages to regain his balance only for Zuko to fire another blast at him. He twirls his glider again to deflect the attack. Two more blasts are fired his way before he loses his grip on his glider and the object spins away. The staff falls several feet away. Aang ducks, spins and leaps out of the way of blasts and lands on the very ledge, struggling to keep his balance. Zuko hurls more fire blasts his way. Aang holds up his hands in defense, but the last blast seemingly knocks him out cold and he falls backward off the ship into the water, where he slowly sinks. Cuts to shot of Katara riding atop Appa.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +355,355,Water,1,The Avatar Returns,2,Katara,[Horrified.] Aang! No!,Aang! No!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +356,356,Water,1,The Avatar Returns,2,Scene Description,"Cuts to shot of Aang, as he sinks further underwater.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +357,357,Water,1,The Avatar Returns,2,Katara,[Voice-over.] Aang! Aang! Aang!,Aang! Aang! Aang!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +358,358,Water,1,The Avatar Returns,2,Scene Description,"Cuts to close-up of Aang, his eyes closed, seemingly unconscious. Suddenly his eyes open, glowing a bright white, along with his arrow tattoos, and he frowns angrily. He steadies himself in the water and begins swiveling around, a waterspout forming around him. He rockets upward and erupts from the surface, riding a humongous spinning water vortex. +Cut to a shot of Zuko's ship being overshadowed by the waterspout. Switch to a bird's-eye view of the deck, Aang appearing on screen atop the vortex. Zuko looks up in horror. Cut to a shot of the upper deck as Aang lands, summoning the water behind him. Camera closes up on him, his eyes and tattoos still glowing, as he brings his hands around behind his head. The water swirls around him, forming a protective circle, before spreading outward, knocking Zuko and several soldiers off their feet. Cut to a shot of the side of the ship as Zuko falls over the edge and shouts in surprise. Switch to Sokka and Katara leaning over the side of Appa's saddle watching in shock.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +359,359,Water,1,The Avatar Returns,2,Katara,[Shocked.] Did you see what he just did?!,Did you see what he just did?!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +360,360,Water,1,The Avatar Returns,2,Sokka,[Impressed.] Now that was some waterbending!,Now that was some waterbending!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +361,361,Water,1,The Avatar Returns,2,Scene Description,"Cut back to Aang on the deck, as he collapses onto the ground from exhaustion, his eyes and tattoos ceasing to glow. Appa growls and lands on the deck. Katara and Sokka slide down and quickly run toward the unconscious Avatar.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +362,362,Water,1,The Avatar Returns,2,Katara,[Worried.] Aang! Are you okay?,Aang! Are you okay?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +363,363,Water,1,The Avatar Returns,2,Scene Description,"She kneels down, holding Aang with Sokka following close behind.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +364,364,Water,1,The Avatar Returns,2,Aang,"[Weakly.] Hey, Katara. Hey, Sokka. Thanks for coming.","Hey, Katara. Hey, Sokka. Thanks for coming.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +365,365,Water,1,The Avatar Returns,2,Sokka,"Well, I couldn't let you have all the glory.","Well, I couldn't let you have all the glory.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +366,366,Water,1,The Avatar Returns,2,Aang,[Weakly.] I dropped my staff.,I dropped my staff.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +367,367,Water,1,The Avatar Returns,2,Sokka,[Rising.] Got it!,Got it!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +368,368,Water,1,The Avatar Returns,2,Scene Description,"Sokka runs over, grabs a hold of the glider and lifts it only to see Zuko's hand firmly gripping the other end. Sokka appears horrified as Zuko attempts to pull himself upward onto the deck. The two struggle for a bit before Sokka pokes Zuko repeatedly in the head with the end of the staff the way Zuko did earlier with him. Zuko grunts and falls backward as he lets go of the staff. He falls off the side of the ship, but manages to grasp the anchor chain.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +369,369,Water,1,The Avatar Returns,2,Sokka,[Triumphantly.] Ha! That's from the Water Tribe!,Ha! That's from the Water Tribe!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +370,370,Water,1,The Avatar Returns,2,Scene Description,"The scene switches over to Appa, who rises from a puddle of water after Katara helped Aang to climb atop his head. Katara still stands beside the large beast while Aang lies on top of his head. Cut to three soldiers, who rise after being knocked down by Aang's water attack and menacingly approach her. Katara takes a step back and slowly and precariously bends a stream of water from the puddle, causing the men to slow down and gasp in surprise. She swings her arms around in an attempt to whip them, however, only succeeds in freezing a channel of water behind her on the deck, encasing Sokka's legs in ice in the process.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +371,371,Water,1,The Avatar Returns,2,Sokka,[Complaining.] Katara!,Katara!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +372,372,Water,1,The Avatar Returns,2,Scene Description,"The soldiers resume their approach. Katara turns around, her back facing them and draws another stream of water. She closes her eyes tightly, swings her arms behind her and turns around to see one of the soldiers completely frozen in a casing of ice, his arm extended outward to her, still twitching in effort to grab her. She backs away slowly, but turns around and quickly runs toward Appa. She begins mounting Appa, while Sokka is trying to cut himself free by smashing his icy chains with his boomerang.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +373,373,Water,1,The Avatar Returns,2,Katara,"[Urgently.] Hurry up, Sokka!","Hurry up, Sokka!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +374,374,Water,1,The Avatar Returns,2,Sokka,"[Muttering to himself, as he uses his boomerang to chip the ice.] I'm just a guy, with a boomerang. [He frees his left foot.] I didn't ask for all this flying and magic! [He manages to break free and races up Appa's tail.] Yip-yip! Yip-yip!","I'm just a guy, with a boomerang. I didn't ask for all this flying and magic! Yip-yip! Yip-yip!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +375,375,Water,1,The Avatar Returns,2,Scene Description,"Sokka mounts Appa, who grunts and takes flight, flying past the cabin of the ship. Iroh emerges on deck, having just woken up from a nap.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +376,376,Water,1,The Avatar Returns,2,Iroh,[Rubbing eyes and staring up at Appa in surprise.] Duh? Huh?,Duh? Huh?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +377,377,Water,1,The Avatar Returns,2,Scene Description,"Cut to Appa, who soars away from the ship, while Iroh helps Zuko, grunting angrily with effort, to heft himself back onto the deck.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +378,378,Water,1,The Avatar Returns,2,Zuko,[Angrily.] Shoot them down!,Shoot them down!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +379,379,Water,1,The Avatar Returns,2,Scene Description,"Cut to an overview shot of Appa gaining altitude before switching back to Zuko and Iroh standing on deck. Together, they synchronize a firebending move and fire a powerful blast at the bison. Sokka and Katara stare at the incoming attack in horror, while Aang leaps onto the saddle. He opens the small tail wing of his staff and swings his glider around, using a powerful swipe of air to redirect the fireball into a nearby cliff side. The impact causes an avalanche of snow and ice to begin falling. Cut to Zuko, who looks up in horror at the event, raising one arm protectively. The front of the ship becomes buried in a mass of snow and ice, while Appa climbs higher and higher. Switch to a scene of the trio, who laugh as they escape successfully. Aang waves goodbye as Appa disappears around the cliff. +Switch to an overview shot of the ship with its bow stuck in the ice. Close-up of Zuko, who is seen bending over in rage on the deck with Iroh erecting himself in the background.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +380,380,Water,1,The Avatar Returns,2,Iroh,[Calmly.] Good news for the Fire Lord. The Fire Nation's greatest threat is just a little kid.,Good news for the Fire Lord. The Fire Nation's greatest threat is just a little kid.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +381,381,Water,1,The Avatar Returns,2,Scene Description,Zuko lifts his head and rises while his uncle is speaking.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +382,382,Water,1,The Avatar Returns,2,Zuko,"[Holding back rage.] That ""kid"", Uncle, just did this. [Cuts to a shot of the damaged ship, the whole front covered in ice and snow.] I won't underestimate him again. [Yells his order to the soldiers and points at the piles of snow.] Dig the ship out and follow them!","That ""kid"", Uncle, just did this. I won't underestimate him again. Dig the ship out and follow them!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +383,383,Water,1,The Avatar Returns,2,Scene Description,Shift to a shot of three Fire Nation soldiers using their firebending to melt the icy encasings coating the three soldiers who were Katara's victims.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +384,384,Water,1,The Avatar Returns,2,Zuko,[Slightly embarrassed.] As soon as you're done with that.,As soon as you're done with that.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +385,385,Water,1,The Avatar Returns,2,Scene Description,"Camera closes up on Zuko eyes as he looks up in anger and determination. +The scene changes to an overview shot of the clouds. Cut to a side-view of Appa, who soars lazily in the sky while the sun is beginning to set. Aang is perched on the rim of the saddle, while Sokka and Katara sit at the back of it.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +386,386,Water,1,The Avatar Returns,2,Katara,[Bewildered.] How did you do that?! With the water? It was the most amazing thing I've ever seen!,How did you do that?! With the water? It was the most amazing thing I've ever seen!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +387,387,Water,1,The Avatar Returns,2,Aang,"[Quietly, slightly downcast, sitting on the edge of the saddle.] I don't know. I just sort of ... did it.",I don't know. I just sort of ... did it.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +388,388,Water,1,The Avatar Returns,2,Katara,"[Curious, but serious.] Why didn't you tell us you were the Avatar?",Why didn't you tell us you were the Avatar?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +389,389,Water,1,The Avatar Returns,2,Aang,Because ... [Turns away slightly; saddened.] I never wanted to be.,Because ... I never wanted to be.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +390,390,Water,1,The Avatar Returns,2,Scene Description,"Cut to a shot of the entire team sitting on Appa's saddle, as a dark cloud passes overhead, shadowing their figures. Cut to a wider shot of Appa flying in the sky, shafts of sunlight streaming through the clouds. Switch back to a closer shot, showing Aang in front, looking downcast over the side with Sokka and Katara in the background.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +391,391,Water,1,The Avatar Returns,2,Katara,"But Aang, the world's been waiting for the Avatar to return and finally put an end to this war.","But Aang, the world's been waiting for the Avatar to return and finally put an end to this war.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +392,392,Water,1,The Avatar Returns,2,Aang,[Downcast.] And how am I going to do that?,And how am I going to do that?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +393,393,Water,1,The Avatar Returns,2,Katara,"According to legend, you need to first master water, then earth, then fire, right?","According to legend, you need to first master water, then earth, then fire, right?","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +394,394,Water,1,The Avatar Returns,2,Aang,[Looking at Katara.] That's what the monks told me.,That's what the monks told me.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +395,395,Water,1,The Avatar Returns,2,Katara,"[Brightening a bit.] Well, if we go to the North Pole, you can master waterbending!","Well, if we go to the North Pole, you can master waterbending!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +396,396,Water,1,The Avatar Returns,2,Aang,"[Turning to face her, smiling and brightening up completely.] We can learn it together!",We can learn it together!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +397,397,Water,1,The Avatar Returns,2,Katara,"[Faces her brother; cheerfully.] And Sokka, I'm sure you'll get to knock some firebender heads on the way.","And Sokka, I'm sure you'll get to knock some firebender heads on the way.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +398,398,Water,1,The Avatar Returns,2,Sokka,[Content.] I'd like that. I'd reeally like that.,I'd like that. I'd reeally like that.,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +399,399,Water,1,The Avatar Returns,2,Katara,[Optimistically.] Then we're in this together!,Then we're in this together!,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +400,400,Water,1,The Avatar Returns,2,Aang,"[Cheerfully, pulling out a rolled up scroll.] All right, but before I learn waterbending, we have some serious business to attend to. [He uses airbending to situate himself onto the saddle and unrolls the scroll, revealing a map of the Avatar World.] Here, here and here.","All right, but before I learn waterbending, we have some serious business to attend to. Here, here and here.","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +401,401,Water,1,The Avatar Returns,2,Scene Description,"While stating this, he points to three locations, two in the Earth Kingdom, one in Air Nomad territory.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +402,402,Water,1,The Avatar Returns,2,Katara,[Curiously.] What's there? [Points to one of the locations.],What's there?,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +403,403,Water,1,The Avatar Returns,2,Aang,"[Points to the location in Earth Kingdom.] Here, we'll ride the hopping llamas. [Points to the location in Air Nomad territory.] Then waaay over here, we'll surf on the backs of giant koi fish. [Katara and Sokka stare at him in wonder.] Then back over here, we'll ride the hog monkeys. [The siblings glance at each other.] They don't like people riding them, but that's what makes it fun!","Here, we'll ride the hopping llamas. Then waaay over here, we'll surf on the backs of giant koi fish. Then back over here, we'll ride the hog monkeys. They don't like people riding them, but that's what makes it fun!","Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +404,404,Water,1,The Avatar Returns,2,Scene Description,"Close-up of Aang, as he smiles enthusiastically, his eyes widened with excitement. Cut to a wide shot of Appa flying peacefully in the sky, sunbeams breaking through the clouds behind him.",NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +405,405,Water,1,The Avatar Returns,2,Scene Description,Fade to credits.,NA,"Michael Dante DiMartino, Bryan Konietzko, Aaron Ehasz, Peter Goldfinger, Josh Stolberg",Dave Filoni,8.3 +406,406,Water,1,The Southern Air Temple,3,Scene Description,"The episode begins with a beautiful sunrise that just peeks above some cliffs. The beams of the morning sun reflect on the water, bathing the whole scene in yellow light. The camera pans to the left, where the group has made camp on the shore. Appa is seen chewing on some grass while the smoke of the nearby campfire rises to the sky. Sokka is lying in a blue sleeping bag next to the fire. The camera zooms in on Aang and Katara atop Appa. Aang sits on the bison's head and is checking the knots that tie the reins to Appa's horns. Katara is sitting on the saddle, fiddling with their luggage.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +407,407,Water,1,The Southern Air Temple,3,Aang,"[Excitedly.] Wait 'til you see it, Katara! The Air Temple is one of the most beautiful places in the world!","Wait 'til you see it, Katara! The Air Temple is one of the most beautiful places in the world!",Michael Dante DiMartino,Lauren MacMullan,8.5 +408,408,Water,1,The Southern Air Temple,3,Katara,"[Cautiously.] Aang, I know you're excited, [She turns around to face him.] but it's been a hundred years since you've been home.","Aang, I know you're excited, but it's been a hundred years since you've been home.",Michael Dante DiMartino,Lauren MacMullan,8.5 +409,409,Water,1,The Southern Air Temple,3,Aang,[Smiling broadly.] That's why I'm so excited!,That's why I'm so excited!,Michael Dante DiMartino,Lauren MacMullan,8.5 +410,410,Water,1,The Southern Air Temple,3,Katara,[Cautiously.] It's just that ... a lot can change in all that time.,It's just that ... a lot can change in all that time.,Michael Dante DiMartino,Lauren MacMullan,8.5 +411,411,Water,1,The Southern Air Temple,3,Aang,"[Happily.] I know, but I need to see it for myself.","I know, but I need to see it for myself.",Michael Dante DiMartino,Lauren MacMullan,8.5 +412,412,Water,1,The Southern Air Temple,3,Scene Description,"Aang jumps off Appa, landing softly due to his airbending. A side-view shows him as he walks over to a snoring Sokka, who is lying in his sleeping bag. The shot changes to a view from next to Sokka's head, looking up at the approaching airbender.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +413,413,Water,1,The Southern Air Temple,3,Aang,"[Cheerfully.] Wake up, Sokka! Air Temple, here we come! [Sokka awakens, making groggy noises.]","Wake up, Sokka! Air Temple, here we come!",Michael Dante DiMartino,Lauren MacMullan,8.5 +414,414,Water,1,The Southern Air Temple,3,Sokka,[Grunting sleepily.] Uggh! Sleep now. Temple later.,Uggh! Sleep now. Temple later.,Michael Dante DiMartino,Lauren MacMullan,8.5 +415,415,Water,1,The Southern Air Temple,3,Scene Description,"Sokka turns around, showing his back to Aang and falls back asleep, snoring as soon as his eyes close. Close-up of Aang, whose big eyes blink in surprise. He looks discontent with Sokka's attitude, but he quickly smiles mischievously. Aang grabs a small, thin stick.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +416,416,Water,1,The Southern Air Temple,3,Aang,"[Alarmed.] Sokka! Wake up! [Aang moves the stick up and down the sleeping bag, only touching Sokka with the tip of it.] There's a prickle snake in your sleeping bag!",Sokka! Wake up! There's a prickle snake in your sleeping bag!,Michael Dante DiMartino,Lauren MacMullan,8.5 +417,417,Water,1,The Southern Air Temple,3,Sokka,"[He lazily opens one eye before yelling out in horror.] Ahh! [He quickly rises and hops around, still inside the sleeping bag.] Get it off! Get it off! [After two hops, Sokka slams flat to the ground.] Ahh!",Ahh! Get it off! Get it off! Ahh!,Michael Dante DiMartino,Lauren MacMullan,8.5 +418,418,Water,1,The Southern Air Temple,3,Scene Description,"Katara giggles, as Sokka falls over. Close-up of Sokka's angry face.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +419,419,Water,1,The Southern Air Temple,3,Aang,[Happily.] Great! You're awake! Let's go!,Great! You're awake! Let's go!,Michael Dante DiMartino,Lauren MacMullan,8.5 +420,420,Water,1,The Southern Air Temple,3,Scene Description,"The scene slowly fades to a harbor, where several Fire Nation ships are lined up next to each other. The camera pans to the left to reveal a smaller ship docked between all the others, identical mastodons. Its walkway is down and the small figures of two persons are seen leaving the ship. Cut to a closer shot of Zuko and Iroh, as they reach the bottom of the walkway.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +421,421,Water,1,The Southern Air Temple,3,Zuko,"Uncle, I want the repairs made as quickly as possible. I don't want to stay too long and risk losing his trail.","Uncle, I want the repairs made as quickly as possible. I don't want to stay too long and risk losing his trail.",Michael Dante DiMartino,Lauren MacMullan,8.5 +422,422,Water,1,The Southern Air Temple,3,Iroh,[Disinterested.] You mean the Avatar?,You mean the Avatar?,Michael Dante DiMartino,Lauren MacMullan,8.5 +423,423,Water,1,The Southern Air Temple,3,Zuko,"[Turns around sharply to face Iroh, as he slightly backs off.] Don't mention his name on these docks! [Makes some wide arm movements.] Once word gets out that he's alive, every firebender will be out looking for him, and I don't want anyone getting in the way!","Don't mention his name on these docks! Once word gets out that he's alive, every firebender will be out looking for him, and I don't want anyone getting in the way!",Michael Dante DiMartino,Lauren MacMullan,8.5 +424,424,Water,1,The Southern Air Temple,3,Zhao,"[Iroh and Zuko turn, with shocked expressions on their face, toward the camera in the direction the sound came from.] Getting in the way of what, [Close-up of a man with big sideburns dressed in a Fire Nation uniform.] Prince Zuko?","Getting in the way of what, Prince Zuko?",Michael Dante DiMartino,Lauren MacMullan,8.5 +425,425,Water,1,The Southern Air Temple,3,Scene Description,"The man walks over to the duo with his hands held behind his back. Zuko awaits him with his arms crossed with contempt, while Iroh just stares at him.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +426,426,Water,1,The Southern Air Temple,3,Zuko,[With dislike in his voice.] Captain Zhao.,Captain Zhao.,Michael Dante DiMartino,Lauren MacMullan,8.5 +427,427,Water,1,The Southern Air Temple,3,Zhao,[Smirks.] It's commander now. And [Bows slightly in Iroh's direction.] General Iroh. Great hero of our nation.,It's commander now. And General Iroh. Great hero of our nation.,Michael Dante DiMartino,Lauren MacMullan,8.5 +428,428,Water,1,The Southern Air Temple,3,Iroh,[Bows back.] Retired general.,Retired general.,Michael Dante DiMartino,Lauren MacMullan,8.5 +429,429,Water,1,The Southern Air Temple,3,Zhao,The Fire Lord's brother and son are welcome guests anytime. What brings you to my harbor?,The Fire Lord's brother and son are welcome guests anytime. What brings you to my harbor?,Michael Dante DiMartino,Lauren MacMullan,8.5 +430,430,Water,1,The Southern Air Temple,3,Iroh,Our ship is being repaired.,Our ship is being repaired.,Michael Dante DiMartino,Lauren MacMullan,8.5 +431,431,Water,1,The Southern Air Temple,3,Scene Description,"As Iroh gestures toward the ship, the camera moves back to show the severely damaged ship.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +432,432,Water,1,The Southern Air Temple,3,Zhao,That's quite a bit of damage.,That's quite a bit of damage.,Michael Dante DiMartino,Lauren MacMullan,8.5 +433,433,Water,1,The Southern Air Temple,3,Zuko,"Yes. [He holds up one finger, while Iroh stares disinterested in front of him.] You wouldn't believe what happened. [He glances at his uncle, and angrily commands him as he gestures at Zhao.] Uncle! Tell Commander Zhao what happened.",Yes. You wouldn't believe what happened. Uncle! Tell Commander Zhao what happened.,Michael Dante DiMartino,Lauren MacMullan,8.5 +434,434,Water,1,The Southern Air Temple,3,Iroh,"[Iroh's eyes open wide in surprise, as he is addressed by Zuko.] Yes. I will do that. [He happily holds his hand up and relates enthusiastically.] It was incredible! [To Zuko, from the corner of his mouth in a confused tone.] What? Did we crash or something?",Yes. I will do that. It was incredible! What? Did we crash or something?,Michael Dante DiMartino,Lauren MacMullan,8.5 +435,435,Water,1,The Southern Air Temple,3,Zuko,[Looks at his uncle uncomfortably.] Yes! Right into ... an Earth Kingdom ship!,Yes! Right into ... an Earth Kingdom ship!,Michael Dante DiMartino,Lauren MacMullan,8.5 +436,436,Water,1,The Southern Air Temple,3,Zhao,[In disbelief.] Really? You must regale me with all of the thrilling details. [Smirks while he gets into Zuko's face.] Join me for a drink?,Really? You must regale me with all of the thrilling details. Join me for a drink?,Michael Dante DiMartino,Lauren MacMullan,8.5 +437,437,Water,1,The Southern Air Temple,3,Zuko,"[He averts his gaze and begins to walk away.] Sorry, but we have to go.","Sorry, but we have to go.",Michael Dante DiMartino,Lauren MacMullan,8.5 +438,438,Water,1,The Southern Air Temple,3,Scene Description,"Zhao smiles evilly at him as he starts to walk away, but after a few steps, Iroh place his hand on his shoulder to hold him back.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +439,439,Water,1,The Southern Air Temple,3,Iroh,"Prince Zuko, show Commander Zhao your respect. [Removes his hand from Zuko's shoulder as he faces Zhao while Zuko just slants his eyes.] We would be honored to join you. Do you have any ginseng tea? It's my favorite.","Prince Zuko, show Commander Zhao your respect. We would be honored to join you. Do you have any ginseng tea? It's my favorite.",Michael Dante DiMartino,Lauren MacMullan,8.5 +440,440,Water,1,The Southern Air Temple,3,Scene Description,"Iroh and Zhao walk off screen. Zuko grunts in anger upon hearing Iroh's tea comment. He growls angrily and firebends a small arc out of annoyance as he turns to walk after them. +The scene cuts to Appa, who is flying above the clouds in the Patola Mountain range. A closer shot reveals Aang and Katara sitting atop Appa's head, and Sokka is back in the saddle. Switch to a close-up of him clutching his stomach at it growls. Close-up of his face, with a look of dismay all over it.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +441,441,Water,1,The Southern Air Temple,3,Sokka,"[Annoyed.] Hey, stomach? Be quiet, all right? I'm trying to find us some food.","Hey, stomach? Be quiet, all right? I'm trying to find us some food.",Michael Dante DiMartino,Lauren MacMullan,8.5 +442,442,Water,1,The Southern Air Temple,3,Scene Description,"Sokka starts to go through the luggage and gets out a bag. He looks at it for a moment while it sways in the wind. With his tongue out of his mouth full anticipation, he sticks his hand in the bag and starts to go through it. He looks surprised for a moment, but quickly and with anticipation turns the bag upside down to pour the contents into his hand. Close-up of his gloved hand as only a few crumbs of blubbered seal jerky fall into it.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +443,443,Water,1,The Southern Air Temple,3,Sokka,[Accusingly to the two in front of him.] Hey! Who ate all of my blubbered seal jerky?!,Hey! Who ate all of my blubbered seal jerky?!,Michael Dante DiMartino,Lauren MacMullan,8.5 +444,444,Water,1,The Southern Air Temple,3,Aang,[Surprised.] Oh. That was food? [Happily.] I used it to start the campfire last night. [The hint of a smile can be heard.] Sorry.,Oh. That was food? I used it to start the campfire last night. Sorry.,Michael Dante DiMartino,Lauren MacMullan,8.5 +445,445,Water,1,The Southern Air Temple,3,Sokka,[Shocked.] You what?! [Looks up before slanting his eyes and groans. Longing.] No wonder the flames smelled so good.,You what?! No wonder the flames smelled so good.,Michael Dante DiMartino,Lauren MacMullan,8.5 +446,446,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a wider shot, as Appa races past and ascends up to some mountains.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +447,447,Water,1,The Southern Air Temple,3,Aang,[Excitedly.] The Patola Mountain range! We're almost there!,The Patola Mountain range! We're almost there!,Michael Dante DiMartino,Lauren MacMullan,8.5 +448,448,Water,1,The Southern Air Temple,3,Katara,"[Uneasily.] Aang, before we get to the temple, I want to talk to you about the airbenders.","Aang, before we get to the temple, I want to talk to you about the airbenders.",Michael Dante DiMartino,Lauren MacMullan,8.5 +449,449,Water,1,The Southern Air Temple,3,Aang,[Cheerfully.] What about 'em?,What about 'em?,Michael Dante DiMartino,Lauren MacMullan,8.5 +450,450,Water,1,The Southern Air Temple,3,Katara,"[Close-up of Katara.] Well, I just want you to be prepared for what you might see. The Fire Nation is ruthless. [Sadly.] They killed my mother, and they could have done the same to your people.","Well, I just want you to be prepared for what you might see. The Fire Nation is ruthless. They killed my mother, and they could have done the same to your people.",Michael Dante DiMartino,Lauren MacMullan,8.5 +451,451,Water,1,The Southern Air Temple,3,Aang,"[Ponders over her words for a bit. Hopefully.] Just because no one has seen an airbender, doesn't mean the Fire Nation killed them all. They probably escaped!","Just because no one has seen an airbender, doesn't mean the Fire Nation killed them all. They probably escaped!",Michael Dante DiMartino,Lauren MacMullan,8.5 +452,452,Water,1,The Southern Air Temple,3,Katara,[Places one hand on Aang's shoulder.] I know it's hard to accept.,I know it's hard to accept.,Michael Dante DiMartino,Lauren MacMullan,8.5 +453,453,Water,1,The Southern Air Temple,3,Aang,"[Cheerfully, as Katara moves her hand back to her side.] You don't understand, Katara. The only way to get to an airbender temple is on a flying bison, and I doubt the Fire Nation has any flying bison! [Caresses Appa's head.] Right, Appa?","You don't understand, Katara. The only way to get to an airbender temple is on a flying bison, and I doubt the Fire Nation has any flying bison! Right, Appa?",Michael Dante DiMartino,Lauren MacMullan,8.5 +454,454,Water,1,The Southern Air Temple,3,Scene Description,Appa grunts. The camera moves back to show that Appa flies past to begin a last ascent up the side of a mountain.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +455,455,Water,1,The Southern Air Temple,3,Aang,Yip yip!,Yip yip!,Michael Dante DiMartino,Lauren MacMullan,8.5 +456,456,Water,1,The Southern Air Temple,3,Scene Description,"An overview shot follows Appa's flight up the mountain and through the clouds. Appa turns out of sight behind the flank of a mountain. The camera view shifts and Appa is seen emerging from behind that flank and turns further upward. Close-up of his passengers. Aang holds onto the reins tightly as Appa rapidly ascends while Katara, whose eyes are closed, and Sokka hold on tight to Appa's fur and saddle respectively. Aang looks back for a moment to his passengers. The camera switches to a further off view of Appa as he flies over the rocks and into the sky again. He flies over a last ridge that is covered with trees. The camera pans up to reveal a large temple as Appa floats toward it.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +457,457,Water,1,The Southern Air Temple,3,Aang,[Voice-over.] There it is. The Southern Air Temple.,There it is. The Southern Air Temple.,Michael Dante DiMartino,Lauren MacMullan,8.5 +458,458,Water,1,The Southern Air Temple,3,Katara,"Aang, it's amazing!","Aang, it's amazing!",Michael Dante DiMartino,Lauren MacMullan,8.5 +459,459,Water,1,The Southern Air Temple,3,Scene Description,Aang is visibly excited as a close-up shows how his eyes widen upon the sight of the temple.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +460,460,Water,1,The Southern Air Temple,3,Aang,"[To Appa.] We're home, buddy! We're home. [His eyes squint a bit in happiness.]","We're home, buddy! We're home.",Michael Dante DiMartino,Lauren MacMullan,8.5 +461,461,Water,1,The Southern Air Temple,3,Scene Description,"The scene switches back to the Earth Kingdom docks, where several Fire Navy ships are lined up. Something that looks like a railroad stretches out along the shipyard. The camera moves to the right to reveal a number of tents lined up in front of the ships. One of the bigger tents is being guarded by two Fire Nation soldiers. Switch to a shot of Zhao inside the tent, standing in front of a large map of the Avatar World that is hung up on the wall. He holds his hands behind his back. The camera slowly starts to move back.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +462,462,Water,1,The Southern Air Temple,3,Zhao,"... And by the year's end, the Earth Kingdom capital will be under our rule. [Shift to a bird view of the tent, revealing Zuko, sitting at a table, and Iroh, standing in the corner, looking at some weapons that are placed against the wall. Zhao turns around.] The Fire Lord will finally claim victory in this war.","... And by the year's end, the Earth Kingdom capital will be under our rule. The Fire Lord will finally claim victory in this war.",Michael Dante DiMartino,Lauren MacMullan,8.5 +463,463,Water,1,The Southern Air Temple,3,Zuko,"[Close-up. Angrily.] If my father thinks the rest of the world will follow him willingly, then he is a fool!","If my father thinks the rest of the world will follow him willingly, then he is a fool!",Michael Dante DiMartino,Lauren MacMullan,8.5 +464,464,Water,1,The Southern Air Temple,3,Zhao,"[Pulls up alongside Zuko and smirks.] Two years at sea have done little to temper your tongue. So, how is your search for the Avatar going?","Two years at sea have done little to temper your tongue. So, how is your search for the Avatar going?",Michael Dante DiMartino,Lauren MacMullan,8.5 +465,465,Water,1,The Southern Air Temple,3,Scene Description,Iroh knocks over a weapon display behind them. The weapons come crashing down with a lot of noise. The general cowers at the noise and the damage he wrecked. Zhao turns around looking annoyed.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +466,466,Water,1,The Southern Air Temple,3,Iroh,"Eh.. My fault, entirely.","Eh.. My fault, entirely.",Michael Dante DiMartino,Lauren MacMullan,8.5 +467,467,Water,1,The Southern Air Temple,3,Scene Description,Iroh places his hands in his sleeves and walks away backward out of the screen with a faint smile on his face.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +468,468,Water,1,The Southern Air Temple,3,Zuko,[Aggressively.] We haven't found him yet.,We haven't found him yet.,Michael Dante DiMartino,Lauren MacMullan,8.5 +469,469,Water,1,The Southern Air Temple,3,Zhao,"Did you really expect to? The Avatar died a hundred years ago. [Close-up of Zuko, as he slants his eyes.] Along with the rest of the airbenders. [Close-up of Zhao, whose face contorts in an evil expression.] Unless you have found some evidence that the Avatar is alive?",Did you really expect to? The Avatar died a hundred years ago. Along with the rest of the airbenders. Unless you have found some evidence that the Avatar is alive?,Michael Dante DiMartino,Lauren MacMullan,8.5 +470,470,Water,1,The Southern Air Temple,3,Zuko,[Faces Zhao and responds very clearly.] No. [Stares back in front of him.] Nothing.,No. Nothing.,Michael Dante DiMartino,Lauren MacMullan,8.5 +471,471,Water,1,The Southern Air Temple,3,Zhao,"[With an expression of disbelief on his face, as he rises from his chair.] Prince Zuko, the Avatar is the only one who can stop the Fire Nation from winning this war. [Leans in and faces Zuko.] If you have an ounce of loyalty left, you'll tell me what you found.","Prince Zuko, the Avatar is the only one who can stop the Fire Nation from winning this war. If you have an ounce of loyalty left, you'll tell me what you found.",Michael Dante DiMartino,Lauren MacMullan,8.5 +472,472,Water,1,The Southern Air Temple,3,Zuko,"I haven't found [Looks up at Zhao and his tone becomes slightly more aggressive.] anything. [Close-up, as he continues on a softer tone, slightly mockingly.] It's like you said. The Avatar probably died a long time ago. [Gets up.] Come on, Uncle, we're going.","I haven't found anything. It's like you said. The Avatar probably died a long time ago. Come on, Uncle, we're going.",Michael Dante DiMartino,Lauren MacMullan,8.5 +473,473,Water,1,The Southern Air Temple,3,Scene Description,"As Zuko approaches the door, the guards stop him from leaving by crossing their spears while a third soldier enters the room. The camera switches to Zhao's point of view. Zuko and the two soldiers blocking his path can be seen in the background. The camera pans to the right to reveal the soldier that entered walking up to Zhao.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +474,474,Water,1,The Southern Air Temple,3,Soldier,"Commander Zhao, we interrogated the crew as you instructed. They confirmed Prince Zuko had the Avatar in custody, [Close-up of Zuko's head from behind.] but let him escape.","Commander Zhao, we interrogated the crew as you instructed. They confirmed Prince Zuko had the Avatar in custody, but let him escape.",Michael Dante DiMartino,Lauren MacMullan,8.5 +475,475,Water,1,The Southern Air Temple,3,Zhao,"[Smiling evilly.] Now remind me, [Close-up of Zuko's face, as Zhao walks up to him and leans over to talk into Zuko's ear. Zuko slants his eyes.] how, exactly, was your ship damaged?","Now remind me, how, exactly, was your ship damaged?",Michael Dante DiMartino,Lauren MacMullan,8.5 +476,476,Water,1,The Southern Air Temple,3,Scene Description,"The scene fades to a shot of the Southern Air Temple, as the camera slowly moves closer toward it. Cut to Appa, who has landed at the base of snow covered stairs. The camera quickly pans up to reveal three small figures making their way up the mountain trail. The lead figure is running. Close-up of Aang as he runs at the front, excitedly looking back at the two siblings. As the two emerge from behind a corner, Aang runs off the screen.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +477,477,Water,1,The Southern Air Temple,3,Sokka,So where do I get something to eat?,So where do I get something to eat?,Michael Dante DiMartino,Lauren MacMullan,8.5 +478,478,Water,1,The Southern Air Temple,3,Scene Description,Closer shot of the two siblings. Sokka clutches his stomach with both hands. The bags under his eyes are darkened and he has a very annoyed look on his face.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +479,479,Water,1,The Southern Air Temple,3,Katara,"[Irritated.] You're lucky enough to be one of the first outsiders to ever visit an airbender temple, and all you can think about is food?","You're lucky enough to be one of the first outsiders to ever visit an airbender temple, and all you can think about is food?",Michael Dante DiMartino,Lauren MacMullan,8.5 +480,480,Water,1,The Southern Air Temple,3,Scene Description,"The camera switches to a broader view as the two siblings draw level with Aang, who is waiting for them at the next corner.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +481,481,Water,1,The Southern Air Temple,3,Sokka,"I'm just a simple guy, with simple needs.","I'm just a simple guy, with simple needs.",Michael Dante DiMartino,Lauren MacMullan,8.5 +482,482,Water,1,The Southern Air Temple,3,Scene Description,"Switch to a front view of Aang, who points at something in front of him as Katara and Sokka approach.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +483,483,Water,1,The Southern Air Temple,3,Aang,"[Excited.] So that's where my friends and I would play airball, [The camera shifts to a shot of a stadium consisting of many tall poles.] and over there [The camera pans to the right to reveal the trio again.] is where the bison would sleep, and ... [Aang sighs.]","So that's where my friends and I would play airball, and over there is where the bison would sleep, and ...",Michael Dante DiMartino,Lauren MacMullan,8.5 +484,484,Water,1,The Southern Air Temple,3,Scene Description,"Switch to a front view of Aang, with Katara and Sokka in the background. Aang looks sad at the deserted remains of his home.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +485,485,Water,1,The Southern Air Temple,3,Katara,What's wrong?,What's wrong?,Michael Dante DiMartino,Lauren MacMullan,8.5 +486,486,Water,1,The Southern Air Temple,3,Aang,"[A bit saddened.] This place used to be full of monks and lemurs and bison. Now there's just a bunch of weeds. [His eyes squint with sadness. The shot changes to a back view of Aang as he stands on the ledge; his clothes flutter in the wind, a dead tree at each side of him. In a sad tone.] I can't believe how much things have changed.",This place used to be full of monks and lemurs and bison. Now there's just a bunch of weeds. I can't believe how much things have changed.,Michael Dante DiMartino,Lauren MacMullan,8.5 +487,487,Water,1,The Southern Air Temple,3,Scene Description,"The camera moves back to show that Katara and Sokka give each other a look of sympathy. They quickly approach Aang. The camera switches back to a front view of Aang, who still looks sad as Katara and Sokka pull up beside him.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +488,488,Water,1,The Southern Air Temple,3,Sokka,"[Cheerfully trying to distract Aang from his sadness.] So uh, this airball game. How do you play?","So uh, this airball game. How do you play?",Michael Dante DiMartino,Lauren MacMullan,8.5 +489,489,Water,1,The Southern Air Temple,3,Scene Description,"Katara smiles at her brother and Aang's face clears up. He smiles too, as he looks at Sokka from the corners of his eyes. Cut to a shot of Sokka, looking concentrated while standing on a pole and guarding the goal of the airball court. The camera quickly moves back to the other side of the court, where Aang also stands on one of the tall poles, suspending a hollow ball in the air with airbending. He lets the ball roll over his shoulders, tosses it from side to side and lazily tosses it up in the air. He looks and smiles innocently at Sokka with his hands behind his back. Switch to Sokka, who looks surprised at the upward movement of the ball before cutting back to Aang who opens one eye as the ball comes down again. The airbender jumps up and kicks the ball away with a powerful air swipe. It rapidly shoots across the poles, changing direction as it crashes into several poles, but steadily moving closer toward Sokka's goal. Switch to Sokka's point of view as the ball races quickly toward him. Change to a side-view of Sokka, who opens his mouth in shock. He grunts as the ball hits him right in the stomach. The force of impact sends Sokka and the ball flying backward, right through the rotating door of the goal behind him. The camera moves further back to reveal Sokka crashing into the snow behind the goal. Aang laughs as he jumps up in joy. Close-up of Aang as he holds a hand above his eyes to make out where Sokka landed.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +490,490,Water,1,The Southern Air Temple,3,Aang,"[Smiling broadly, he stretches out his arms above his head.] Aang, seven! [He forms a Zero with his hands and makes a circular movement with his whole body.] Sokka, zero!","Aang, seven! Sokka, zero!",Michael Dante DiMartino,Lauren MacMullan,8.5 +491,491,Water,1,The Southern Air Temple,3,Scene Description,Cut to a shot of Sokka lying in the dirt. A twig is lying on his head while he looks a bit miserable. Katara stands in the background looking at her brother.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +492,492,Water,1,The Southern Air Temple,3,Sokka,"[Painfully.] Making him feel better is putting me in a world of hurt. [He erects himself, but before he gets up completely, his eyes widen when he sees something in front of him and he crawls to the front. The camera shifts to reveal an old Fire Nation helmet lying in the snow. It has been battered by the elements, and shows signs of cracks and burns. He looks up at his sister.] Katara, check this out.","Making him feel better is putting me in a world of hurt. Katara, check this out.",Michael Dante DiMartino,Lauren MacMullan,8.5 +493,493,Water,1,The Southern Air Temple,3,Katara,Fire Nation.,Fire Nation.,Michael Dante DiMartino,Lauren MacMullan,8.5 +494,494,Water,1,The Southern Air Temple,3,Sokka,We should tell him.,We should tell him.,Michael Dante DiMartino,Lauren MacMullan,8.5 +495,495,Water,1,The Southern Air Temple,3,Katara,[Yelling.] Aang! There's something you need to see.,Aang! There's something you need to see.,Michael Dante DiMartino,Lauren MacMullan,8.5 +496,496,Water,1,The Southern Air Temple,3,Aang,"[Aang runs to them from the airball court, still playing with the hollow ball. Cheerfully.] Okay!",Okay!,Michael Dante DiMartino,Lauren MacMullan,8.5 +497,497,Water,1,The Southern Air Temple,3,Scene Description,"Close-up of Katara, as her determined look to tell Aang the truth shifts to one of insecurity. She glances at the helmet and back at the approaching Aang. Suddenly she shifts her weight and brings her arms up. With one swift movement she swings her arms back, manipulating the overhanging snow to fall down, obscuring the helmet and Sokka from sight.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +498,498,Water,1,The Southern Air Temple,3,Aang,[Happily runs up.] What is it?,What is it?,Michael Dante DiMartino,Lauren MacMullan,8.5 +499,499,Water,1,The Southern Air Temple,3,Scene Description,Sokka brushes the snow off his head in the background and looks at his sister.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +500,500,Water,1,The Southern Air Temple,3,Katara,[Innocently holds her hands behind her back.] Uh ... Just a new waterbending move I learned.,Uh ... Just a new waterbending move I learned.,Michael Dante DiMartino,Lauren MacMullan,8.5 +501,501,Water,1,The Southern Air Temple,3,Aang,"Nice one! But enough practicing, [Excited as he turns around and start walking away.] we have a whole temple to see!","Nice one! But enough practicing, we have a whole temple to see!",Michael Dante DiMartino,Lauren MacMullan,8.5 +502,502,Water,1,The Southern Air Temple,3,Sokka,"[Brushes the last of the snow from his head and shoulders.] You know, you can't protect him forever.","You know, you can't protect him forever.",Michael Dante DiMartino,Lauren MacMullan,8.5 +503,503,Water,1,The Southern Air Temple,3,Scene Description,"Katara sadly slants her eyes and walks after Aang. The scene switches to a full view of one of the temple's many towers and quickly pans down to reveal that the trio has made it to a courtyard with a fountain in the middle. The water is frozen. Sokka and Katara are standing at the entrance of the courtyard, while Aang runs up ahead excitedly.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +504,504,Water,1,The Southern Air Temple,3,Sokka,"[Arms crossed; stern.] Katara, firebenders were here. You can't pretend they weren't.","Katara, firebenders were here. You can't pretend they weren't.",Michael Dante DiMartino,Lauren MacMullan,8.5 +505,505,Water,1,The Southern Air Temple,3,Scene Description,Katara walks passed her brother. Camera view switches to a side-view. Sokka pulls up beside Katara as she is talking.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +506,506,Water,1,The Southern Air Temple,3,Katara,"I can for Aang's sake. If he finds out that the Fire Nation invaded his home, he'll be devastated.","I can for Aang's sake. If he finds out that the Fire Nation invaded his home, he'll be devastated.",Michael Dante DiMartino,Lauren MacMullan,8.5 +507,507,Water,1,The Southern Air Temple,3,Aang,"[Happily.] Hey guys! [The two look up and see Aang standing in front of a statue of a monk, turning around and pointing toward it.] I want you to meet somebody!",Hey guys! I want you to meet somebody!,Michael Dante DiMartino,Lauren MacMullan,8.5 +508,508,Water,1,The Southern Air Temple,3,Scene Description,Point of view switches to a shot from over the shoulder of the statue.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +509,509,Water,1,The Southern Air Temple,3,Sokka,Who's that?,Who's that?,Michael Dante DiMartino,Lauren MacMullan,8.5 +510,510,Water,1,The Southern Air Temple,3,Aang,[Facing the statue again.] Monk Gyatso! The greatest airbender in the world. [Scene switches to a frontal view of the statue as Aang turns around again toward the siblings while gesturing at the statue.] He taught me everything I know.,Monk Gyatso! The greatest airbender in the world. He taught me everything I know.,Michael Dante DiMartino,Lauren MacMullan,8.5 +511,511,Water,1,The Southern Air Temple,3,Scene Description,"Aang bows to the statue of an elderly man with a mustache and a distinct round necklace sitting in lotus with his fists bumped to each other in front of him, while the camera zooms in on it. When the shot has zoomed in to a close-up of the statue's face, the scene changes to a flashback of Aang's past, the statue's face is replaced by the face of the real Gyatso. The scenery also become much brighter as it is a flashback of a sunny day at the Southern Air Temple.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +512,512,Water,1,The Southern Air Temple,3,Gyatso,"But the true secret, is in the gooey center.","But the true secret, is in the gooey center.",Michael Dante DiMartino,Lauren MacMullan,8.5 +513,513,Water,1,The Southern Air Temple,3,Scene Description,"The camera moves back a bit to reveal that Monk Gyatso is standing in front of an oven. With the use of a long wooden paddle, he retracts an orange, fruit pie out of the oven. With the use of his airbending, he creates a miniature tornado to spin out the fruity center of the pie. +The camera moves back to reveal Aang sitting on the ledge of the balcony, resting his left hand on his knee while staring into nothing. A bison is grazing in the trees on the background.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +514,514,Water,1,The Southern Air Temple,3,Aang,[Distant.] Hmm ...,Hmm ...,Michael Dante DiMartino,Lauren MacMullan,8.5 +515,515,Water,1,The Southern Air Temple,3,Scene Description,Gyatso walk over to the ledge as well and places his newly baked cake next to three others that were already standing there.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +516,516,Water,1,The Southern Air Temple,3,Gyatso,"[With a calm, soothing and understanding voice.] My ancient cake-making technique isn't the only thing on your mind, is it, Aang?","My ancient cake-making technique isn't the only thing on your mind, is it, Aang?",Michael Dante DiMartino,Lauren MacMullan,8.5 +517,517,Water,1,The Southern Air Temple,3,Aang,"[Downcast.] This whole Avatar thing, m-maybe the monks made a mistake.","This whole Avatar thing, m-maybe the monks made a mistake.",Michael Dante DiMartino,Lauren MacMullan,8.5 +518,518,Water,1,The Southern Air Temple,3,Gyatso,"The only mistake they made was telling you before you turned sixteen, but we can't concern ourselves with what was. We must act on what is.","The only mistake they made was telling you before you turned sixteen, but we can't concern ourselves with what was. We must act on what is.",Michael Dante DiMartino,Lauren MacMullan,8.5 +519,519,Water,1,The Southern Air Temple,3,Scene Description,"Gyatso extends his arm and while he does so, the camera moves back to reveal the beauty of the Southern Air Temple. The sky is filled with several sky bison with their calves who are feasting from the nearby trees. Sun beams bathe the scene in bright light.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +520,520,Water,1,The Southern Air Temple,3,Aang,[Voice-over.] But Gyatso? How do I know if I'm ready for this?,But Gyatso? How do I know if I'm ready for this?,Michael Dante DiMartino,Lauren MacMullan,8.5 +521,521,Water,1,The Southern Air Temple,3,Gyatso,"[Cut back to a close shot of Gyatso with Aang sitting on the ledge in the background.] Your questions will be answered when you're old enough to enter the air temple sanctuary. Inside, you will meet someone who will guide you on your journey.","Your questions will be answered when you're old enough to enter the air temple sanctuary. Inside, you will meet someone who will guide you on your journey.",Michael Dante DiMartino,Lauren MacMullan,8.5 +522,522,Water,1,The Southern Air Temple,3,Scene Description,"The camera moves slowly toward Aang whose face clears up. He uses his airbending to shift positions on the ledge, now facing his guardian and teacher.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +523,523,Water,1,The Southern Air Temple,3,Aang,[Excited and curious.] Who is it?,Who is it?,Michael Dante DiMartino,Lauren MacMullan,8.5 +524,524,Water,1,The Southern Air Temple,3,Gyatso,"[Cut back to the close shot of Gyatso with Aang in the background.] When you are ready, he will reveal himself to you. [In the background, Aang, annoyed by this vague answer, grunts softly and looks up to the sky before cupping his face in his hands again. Monk Gyatso continues on a bright, happy tone.] Now, are you going to help me with these cakes, [Close-up of Aang as he smiles lovingly at Gyatso.] or not?","When you are ready, he will reveal himself to you. Now, are you going to help me with these cakes, or not?",Michael Dante DiMartino,Lauren MacMullan,8.5 +525,525,Water,1,The Southern Air Temple,3,Aang,[Happily stands up.] All right.,All right.,Michael Dante DiMartino,Lauren MacMullan,8.5 +526,526,Water,1,The Southern Air Temple,3,Scene Description,"The scene cuts to a close-up of a purple fruit pie with Aang and Gyatso in the background. They take on an airbending stance, bringing their hand back.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +527,527,Water,1,The Southern Air Temple,3,Gyatso,One. [The camera switches to a side-view as the duo conjures a small air ball.] Two. Three!,One. Two. Three!,Michael Dante DiMartino,Lauren MacMullan,8.5 +528,528,Water,1,The Southern Air Temple,3,Scene Description,"They shift their weight to the front, launching their air balls. The balls send the four fruit pies flying high in the air, disappearing in the clouds. The scene of the flying cakes switches to a shot of four monks in lotus, meditating quietly between some trees. Suddenly, the cakes drop out of the sky and each of the monks is hit on the head by one of the colorful desserts. The monk at the far left of the line topples over upon impact. The moment the pies hit their heads, several flying lemurs appear and start to stuff their faces. One of the lemurs jumps up and down on the stomach of the toppled-over monk, while another grabs some cake right of the head of the monk on the far right. One of the lemurs jumps on the head on one of the monks. Cut back to Aang and Gyatso, who are laughing loudly at the scene. Aang is clutching his stomach, while Monk Gyatso is leaning on the railing of the balcony. They both move back from the railing when they are done laughing. The two monks bow at each other",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +529,529,Water,1,The Southern Air Temple,3,Gyatso,"[Full admiration and love.] Your aim has improved greatly, [Caressing Aang's head.] my young pupil.","Your aim has improved greatly, my young pupil.",Michael Dante DiMartino,Lauren MacMullan,8.5 +530,530,Water,1,The Southern Air Temple,3,Scene Description,"The flashback fades back to reveal Aang in the present, bowing the same way before the statue as he had done for the real Gyatso. The camera switches to a frontal view of Aang as he erects himself with a sad look upon his face.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +531,531,Water,1,The Southern Air Temple,3,Katara,[Understandingly places a hand on his shoulder.] You must miss him.,You must miss him.,Michael Dante DiMartino,Lauren MacMullan,8.5 +532,532,Water,1,The Southern Air Temple,3,Aang,[Downcast.] Yeah. [He walks away.],Yeah.,Michael Dante DiMartino,Lauren MacMullan,8.5 +533,533,Water,1,The Southern Air Temple,3,Katara,[Curious.] Where are you going?,Where are you going?,Michael Dante DiMartino,Lauren MacMullan,8.5 +534,534,Water,1,The Southern Air Temple,3,Aang,[Switch to a shot from Katara's point of view. Aang is walking up some stairs that lead to a corridor behind the statue. He looks back while answering.] The air temple sanctuary. There's someone I'm ready to meet.,The air temple sanctuary. There's someone I'm ready to meet.,Michael Dante DiMartino,Lauren MacMullan,8.5 +535,535,Water,1,The Southern Air Temple,3,Scene Description,"Aang enters the hallway. Cut back to Katara; she looks questioningly at Sokka, who just shrugs. They both start walking after Aang. Switch to an overview shot of inside the corridor. The round symbol of intertwined air currents, the national symbol of the Air Nomads is largely embedded in the floor, surrounded by two square shapes that form some sort of sun together. The camera pans up to reveal that the trio has reached the entrance of the air temple sanctuary. The door supports a combination of metal colored pipes and three, blue, rolled up, pipes that are similar looking and arranges like the symbol for airbending. The large wooden door is framed by the branches of an old tree standing on the left of it and the hallway is illuminated by sunlight that falls through little, round windows.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +536,536,Water,1,The Southern Air Temple,3,Katara,"But Aang, no one could have survived in there for a hundred years.","But Aang, no one could have survived in there for a hundred years.",Michael Dante DiMartino,Lauren MacMullan,8.5 +537,537,Water,1,The Southern Air Temple,3,Aang,[Camera changes to show the trio looking up at the door. Hopeful.] It's not impossible. [Opening his arms.] I survived in the iceberg for that long.,It's not impossible. I survived in the iceberg for that long.,Michael Dante DiMartino,Lauren MacMullan,8.5 +538,538,Water,1,The Southern Air Temple,3,Katara,[Touching her chin with a finger.] Good point.,Good point.,Michael Dante DiMartino,Lauren MacMullan,8.5 +539,539,Water,1,The Southern Air Temple,3,Aang,"[Close shot of Aang with Katara visible over his shoulder. He glances hopeful at her over his shoulder. Excited.] Katara, whoever's in there might help figure out this Avatar thing!","Katara, whoever's in there might help figure out this Avatar thing!",Michael Dante DiMartino,Lauren MacMullan,8.5 +540,540,Water,1,The Southern Air Temple,3,Sokka,"[Appears in screen from behind Aang's back. Katara and Aang look surprised at him. Eagerly.] And whoever's in there might have [Katara's look changes to one of annoyance. Close-up of Sokka's determined, anticipating face.] a medley of delicious [He rubs his hands together and practically starts to drool over the thought.] cured meats!",And whoever's in there might have a medley of delicious cured meats!,Michael Dante DiMartino,Lauren MacMullan,8.5 +541,541,Water,1,The Southern Air Temple,3,Scene Description,"Full of anticipation and longing, Sokka charges at the door, but it will not budge and he simply smacks into it, head first. He quickly turns around and puts his back to it, trying to push the giant door open. When the door does not move, he sighs, slides down to the floor, disappointed, and rests against the door.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +542,542,Water,1,The Southern Air Temple,3,Sokka,I don't suppose you have a key?,I don't suppose you have a key?,Michael Dante DiMartino,Lauren MacMullan,8.5 +543,543,Water,1,The Southern Air Temple,3,Aang,"[Shot from over Sokka's shoulder.] The key, Sokka, is airbending.","The key, Sokka, is airbending.",Michael Dante DiMartino,Lauren MacMullan,8.5 +544,544,Water,1,The Southern Air Temple,3,Scene Description,"Close-up of Aang, as he takes a deep breath. He spreads his arms and thrusts them forward, sending an air current into both of the tubes on the door. The camera follows the path of the right air current as it travels through the pipe. The wind makes one of the blue curled tube turn around. When it does, the tube changes colors to purple and the wind blows out like a horn. The process is repeated for the other two blue tubes as well. When the three blue tubes have turned and become purple, the camera moves back to show that Aang has unlocked the door and it slowly starts to open. Switch to a shot from inside the sanctuary, as the door cracks open and light penetrates the dark room. The doors sway open and Aang is seen standing there with Katara and Sokka in the background. The scene switches to a shot from behind Katara and Sokka, as the door cracks open entirely.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +545,545,Water,1,The Southern Air Temple,3,Aang,"[Cut to a front view of Aang, as he brings his hand besides his mouth.] Hello? [Switch back to a shot from behind Sokka and Katara as Aang enters the sanctuary.] Anyone home?",Hello? Anyone home?,Michael Dante DiMartino,Lauren MacMullan,8.5 +546,546,Water,1,The Southern Air Temple,3,Scene Description,"Overview shot as Sokka and Katara walks behind Aang. Cut to a shot from close to the ground, as they enter further into the sanctuary and disappear in the darkness. +The scene fades to Zuko, who is sitting in a chair in Zhao's tent, flanked by two Fire Nation soldiers while Zhao is pacing back and forth.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +547,547,Water,1,The Southern Air Temple,3,Zhao,So a twelve-year-old boy bested you and your firebenders. [Wider shot of the tent as Zhao stops pacing. Iroh can be seen sitting in a corner.] You're more pathetic than I thought.,So a twelve-year-old boy bested you and your firebenders. You're more pathetic than I thought.,Michael Dante DiMartino,Lauren MacMullan,8.5 +548,548,Water,1,The Southern Air Temple,3,Zuko,"[Angrily.] I underestimated him once, but it will not happen again!","I underestimated him once, but it will not happen again!",Michael Dante DiMartino,Lauren MacMullan,8.5 +549,549,Water,1,The Southern Air Temple,3,Zhao,"[Frontal view with Zuko in the background. Aggressively.] No, it will not. Because you won't have a second chance.","No, it will not. Because you won't have a second chance.",Michael Dante DiMartino,Lauren MacMullan,8.5 +550,550,Water,1,The Southern Air Temple,3,Zuko,"[Alarmed.] Commander Zhao, [Closer shot of Zuko.] I've been hunting the Avatar for two years and I -","Commander Zhao, I've been hunting the Avatar for two years and I -",Michael Dante DiMartino,Lauren MacMullan,8.5 +551,551,Water,1,The Southern Air Temple,3,Zhao,"[Cut to a shot from over Zuko's shoulder as Zhao angrily turns around, spreading flames in an arc.] And you failed! [He walks intimidatingly up to Zuko.] Capturing the Avatar is too important to leave in a teenager's hands. He's mine now.",And you failed! Capturing the Avatar is too important to leave in a teenager's hands. He's mine now.,Michael Dante DiMartino,Lauren MacMullan,8.5 +552,552,Water,1,The Southern Air Temple,3,Scene Description,"Close-up of Zuko's face, as it contorts with anger and he jumps at Zhao. Cut to a side-view. Before Zuko can reach the commander, however, he is held back by the two guards.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +553,553,Water,1,The Southern Air Temple,3,Zhao,Keep them here.,Keep them here.,Michael Dante DiMartino,Lauren MacMullan,8.5 +554,554,Water,1,The Southern Air Temple,3,Scene Description,"Zhao walks away, leaving an angrily panting Zuko. Enraged, he kicks the table in front of Iroh, breaking it clean in two, sending the objects that were on it flying through the room.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +555,555,Water,1,The Southern Air Temple,3,Iroh,"[Calmly with a hint of amusement in his voice.] More tea, please.","More tea, please.",Michael Dante DiMartino,Lauren MacMullan,8.5 +556,556,Water,1,The Southern Air Temple,3,Scene Description,"Cut back to the sanctuary. The camera pans to the right to show a frontal view of Aang, Katara, and Sokka who are venturing further down into the sanctuary. The only light comes from the open door behind them and illuminates the scene with bluish light. They stop, and Sokka holds a hand to his brow to look up ahead. Switch to an overview shot of the trio as they stand in the light that comes in through the door. Their shadows are cast over the floor. The camera moves back and pans more to the right to reveal a large amount of statues of people, lined up in a circular pattern. Switch to a side-view from among the statues as the trio walks through them, curiously looking around. Sokka halts before one of them.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +557,557,Water,1,The Southern Air Temple,3,Sokka,[Disappointed.] Statues? That's it? Where's the meat?,Statues? That's it? Where's the meat?,Michael Dante DiMartino,Lauren MacMullan,8.5 +558,558,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a side-view of Aang and Katara, who also have stopped and are looking up at a statue.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +559,559,Water,1,The Southern Air Temple,3,Katara,Who are all these people?,Who are all these people?,Michael Dante DiMartino,Lauren MacMullan,8.5 +560,560,Water,1,The Southern Air Temple,3,Aang,[Pensive.] I'm not sure. [Frontal view of Aang.] But it feels like I know them somehow. Look! [Camera shifts to a point behind Aang and Katara. Aang points at the statue of a man with airbending mastery tattoos in front of him.] That one's an airbender.,I'm not sure. But it feels like I know them somehow. Look! That one's an airbender.,Michael Dante DiMartino,Lauren MacMullan,8.5 +561,561,Water,1,The Southern Air Temple,3,Katara,"[Camera pans to the right. Katara points at the statue of a male dressed in Water Tribe clothes next to the airbender.] And this one's a waterbender. [Looks to the right and back to the left.] They're lined up in a pattern: [Points at the respective statues.] air, water, earth and fire.","And this one's a waterbender. They're lined up in a pattern: air, water, earth and fire.",Michael Dante DiMartino,Lauren MacMullan,8.5 +562,562,Water,1,The Southern Air Temple,3,Aang,That's the Avatar Cycle.,That's the Avatar Cycle.,Michael Dante DiMartino,Lauren MacMullan,8.5 +563,563,Water,1,The Southern Air Temple,3,Katara,"[Understanding.] Of course. They're Avatars. All these people are your past lives, Aang.","Of course. They're Avatars. All these people are your past lives, Aang.",Michael Dante DiMartino,Lauren MacMullan,8.5 +564,564,Water,1,The Southern Air Temple,3,Aang,Wow! There are so many!,Wow! There are so many!,Michael Dante DiMartino,Lauren MacMullan,8.5 +565,565,Water,1,The Southern Air Temple,3,Scene Description,"Aang starts to walk down the circular pattern. Switch to Katara, who is now standing next to Sokka who has his arms crossed.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +566,566,Water,1,The Southern Air Temple,3,Sokka,"[Skeptically.] Past lives? [Aang stops before a statue while Sokka and Katara are still visible in the background.] Katara, you really believe in that stuff?","Past lives? Katara, you really believe in that stuff?",Michael Dante DiMartino,Lauren MacMullan,8.5 +567,567,Water,1,The Southern Air Temple,3,Katara,"It's true. [The picture pans up the reveal Aang staring at the statue of an elderly man with a beard. In the background hundreds of statues can be seen spiraling up.] When the Avatar dies, he's reincarnated into the next nation in the cycle.","It's true. When the Avatar dies, he's reincarnated into the next nation in the cycle.",Michael Dante DiMartino,Lauren MacMullan,8.5 +568,568,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a back view of Aang, who is looking at the elderly man while the camera moves in closer. Quick change to a frontal view of Aang, who stares with wide open eyes at the statue. The camera moves in closer to his face. Switch to the face of the statue. Its eyes gleam for a second. Cut back to a close-up of Aang, who is still mesmerized by the statue. Katara appears behind him, grabs his shoulders and shakes him a bit.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +569,569,Water,1,The Southern Air Temple,3,Katara,Aang! Snap out of it!,Aang! Snap out of it!,Michael Dante DiMartino,Lauren MacMullan,8.5 +570,570,Water,1,The Southern Air Temple,3,Scene Description,Cut to a wider view from over the shoulder of the statue. Aang is smiling at it while Katara looks worried at Aang.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +571,571,Water,1,The Southern Air Temple,3,Aang,[Dazed.] Huh?,Huh?,Michael Dante DiMartino,Lauren MacMullan,8.5 +572,572,Water,1,The Southern Air Temple,3,Katara,[She curiously follows his gaze and looks at the statue as well.] Who is that?,Who is that?,Michael Dante DiMartino,Lauren MacMullan,8.5 +573,573,Water,1,The Southern Air Temple,3,Aang,That's Avatar Roku. The Avatar before me.,That's Avatar Roku. The Avatar before me.,Michael Dante DiMartino,Lauren MacMullan,8.5 +574,574,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a back view of the duo, as Sokka walks up.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +575,575,Water,1,The Southern Air Temple,3,Sokka,You were a firebender? No wonder I didn't trust you when we first met.,You were a firebender? No wonder I didn't trust you when we first met.,Michael Dante DiMartino,Lauren MacMullan,8.5 +576,576,Water,1,The Southern Air Temple,3,Katara,[Looks at the base of the statue.] There's no writing. How do you know his name?,There's no writing. How do you know his name?,Michael Dante DiMartino,Lauren MacMullan,8.5 +577,577,Water,1,The Southern Air Temple,3,Aang,I'm not sure. I just know it somehow.,I'm not sure. I just know it somehow.,Michael Dante DiMartino,Lauren MacMullan,8.5 +578,578,Water,1,The Southern Air Temple,3,Sokka,[Growls irritably while crossing his arms.] You just couldn't get any weirder.,You just couldn't get any weirder.,Michael Dante DiMartino,Lauren MacMullan,8.5 +579,579,Water,1,The Southern Air Temple,3,Scene Description,"The trio startles and stares with big eyes in front of them when they hear something. They turn around. Switch to a scene of the blue light on the floor that comes in through the door. A long-eared shadow of another being that is approaching moves over it. The camera pans to the right toward the statues, but the trio cannot be seen. Overview shot from among the statues where Katara and Aang are hiding behind a statue on the left and Sokka, who is holding his club ready, hides behind a statue to the right. The shadow is creeping closer. Cut to a closer shot of the threesome. Katara has her teeth clutched in fright, while Aang looks in front of him. Sokka holds his hand to his mouth as he addresses them.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +580,580,Water,1,The Southern Air Temple,3,Sokka,[Whispering.] Firebender. Nobody make a sound.,Firebender. Nobody make a sound.,Michael Dante DiMartino,Lauren MacMullan,8.5 +581,581,Water,1,The Southern Air Temple,3,Katara,[Irritably.] You're making a sound!,You're making a sound!,Michael Dante DiMartino,Lauren MacMullan,8.5 +582,582,Water,1,The Southern Air Temple,3,Aang and Sokka,[Putting their finger before their mouths.] Shhhh!,Shhhh!,Michael Dante DiMartino,Lauren MacMullan,8.5 +583,583,Water,1,The Southern Air Temple,3,Scene Description,"Katara looks scared in front of her again. Overview shot of the huddled trio as the shadow creeps closer. Close-up of Sokka, who raises his club.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +584,584,Water,1,The Southern Air Temple,3,Sokka,[Whispering.] That firebender won't know what hit him.,That firebender won't know what hit him.,Michael Dante DiMartino,Lauren MacMullan,8.5 +585,585,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a broader view as Sokka stands up. The shadow has reached the bases of the statues and the camera pans up to reveal a small figure standing in the doorway; it chitters. The camera changes to a view from behind the figure. Sokka appears from behind the statue, his club to the ready, but lowers it as soon as he sees the animal. Aang and Katara peek form behind their statue as well. Frontal view of the erect flying lemur, as it sits down and lowers his ears, blinking at the appeared threesome. Close-up of Aang.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +586,586,Water,1,The Southern Air Temple,3,Aang,[Excitedly.] Lemur!,Lemur!,Michael Dante DiMartino,Lauren MacMullan,8.5 +587,587,Water,1,The Southern Air Temple,3,Sokka,[Quickly pans to a drooling Sokka.] Dinner!,Dinner!,Michael Dante DiMartino,Lauren MacMullan,8.5 +588,588,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a close-up of the lemur, as the animal pricks his ears and slightly tilts his head. Cut back to a close-up of a friendly-looking Aang.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +589,589,Water,1,The Southern Air Temple,3,Aang,[Reassuring.] Don't listen to him. You're going to be my new pet.,Don't listen to him. You're going to be my new pet.,Michael Dante DiMartino,Lauren MacMullan,8.5 +590,590,Water,1,The Southern Air Temple,3,Sokka,"[Aang glares angrily at Sokka, before the scene switches to a close-up of his drooling face. Challenging.] Not if I get him first!",Not if I get him first!,Michael Dante DiMartino,Lauren MacMullan,8.5 +591,591,Water,1,The Southern Air Temple,3,Scene Description,"Sokka stretches his hand while he excitedly lunges himself at the animal from behind the statue. Aang runs up at the lemur as well. Point of view switches to that of the boys. The lemur arcs his back in fright, his ears, hair and tail standing upright as the snatching hands of the boys draw closer. Switch to a back view of the lemur. It startles, quickly turns around and makes a break for it. Sokka barely misses the animal and falls down. Aang nimbly avoids tripping as well by using Sokka's head as a stepping stone. Switch to an overview shot as Sokka quickly gets up and runs behind Aang and the lemur as they exit the sanctuary.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +592,592,Water,1,The Southern Air Temple,3,Aang,Wait! Come back!,Wait! Come back!,Michael Dante DiMartino,Lauren MacMullan,8.5 +593,593,Water,1,The Southern Air Temple,3,Scene Description,Cut to a shot from low in the hallway. The lemur bounces off the wall and chases out of the screen.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +594,594,Water,1,The Southern Air Temple,3,Sokka,I want to eat you!,I want to eat you!,Michael Dante DiMartino,Lauren MacMullan,8.5 +595,595,Water,1,The Southern Air Temple,3,Scene Description,"Aang and Sokka come sliding around the corner and give chase. Sokka passes Aang and shoves him back. Cut to a side-view of Sokka running in the lead. Aang pulls up next to him again, so Sokka takes out his club and takes a swing at Aang's legs. Aang nimbly avoids the club and uses his airbending to run on the side of the wall, laughing loudly with amusement. Cut to a shot from Sokka's point of view as Aang runs up ahead. The airbender runs on the floor again. He quickly turns around and directs on airball at Sokka, which knocks his legs from underneath him. Sokka flips in the air before smacking face first on the ground, his hood falling over his head while he lands. Switch to a frontal view from a balcony as the lemur exits the corridor and sits on the ledge of the balcony, looking back at the approaching Aang. He pricks his ears again and takes flight with a scared look on his face. Cut to a shot from over Aang's shoulder as he is running down the hall. He briefly glances over to see if Sokka is still following. He too exits the hallway and without slowing down, he jumps over the ledge of the balcony, behind the lemur. Cut to a shot from underneath Aang. The airbender turns in the air and uses some of the rocks to break his freefall, jumping from one rock to the other. Cut back to Sokka, who too has reached the balcony, but stops there while looking over the rim.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +596,596,Water,1,The Southern Air Temple,3,Sokka,Hey! No fair!,Hey! No fair!,Michael Dante DiMartino,Lauren MacMullan,8.5 +597,597,Water,1,The Southern Air Temple,3,Scene Description,"Cut back to a close-up of Aang, who's freefalling again. His mouth is wide open in a smile and his eyes are slightly squinted and watering, owing to the speed of his fall. +Cut to the Fire Nation tent at the occupied Earth Kingdom harbor. Zhao is walking toward it. The scene changes from inside the tent, where two guards hold their spears in front of the exit. Zhao pushes the cloths aside that serve as tent doors and enters.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +598,598,Water,1,The Southern Air Temple,3,Zhao,"My search party is ready. Once I'm out to sea, [Cut to a shot from over Zhao's head to reveal Iroh and Zuko sitting in two chairs in front of him in the middle of the tent.] my guards will escort you back to your ship and [Close-up of Zuko, who angrily looks down.] you'll be free to go.","My search party is ready. Once I'm out to sea, my guards will escort you back to your ship and you'll be free to go.",Michael Dante DiMartino,Lauren MacMullan,8.5 +599,599,Water,1,The Southern Air Temple,3,Zuko,[Angrily.] Why? Are you worried I'm going to try and stop you?,Why? Are you worried I'm going to try and stop you?,Michael Dante DiMartino,Lauren MacMullan,8.5 +600,600,Water,1,The Southern Air Temple,3,Scene Description,"Cut to Zhao, who starts to laugh out loud.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +601,601,Water,1,The Southern Air Temple,3,Zhao,[Amused.] You? Stop me? Impossible.,You? Stop me? Impossible.,Michael Dante DiMartino,Lauren MacMullan,8.5 +602,602,Water,1,The Southern Air Temple,3,Zuko,"[Angrily gets up. Enraged.] Don't underestimate me, Zhao! I will capture the Avatar before you!","Don't underestimate me, Zhao! I will capture the Avatar before you!",Michael Dante DiMartino,Lauren MacMullan,8.5 +603,603,Water,1,The Southern Air Temple,3,Iroh,"[Gets up as well; sternly.] Prince Zuko, that's enough.","Prince Zuko, that's enough.",Michael Dante DiMartino,Lauren MacMullan,8.5 +604,604,Water,1,The Southern Air Temple,3,Zhao,"[Confidently.] You can't compete with me. I have hundreds of war ships under my command and you? You're just a banished prince. No home, no allies. Your own father doesn't even want you.","You can't compete with me. I have hundreds of war ships under my command and you? You're just a banished prince. No home, no allies. Your own father doesn't even want you.",Michael Dante DiMartino,Lauren MacMullan,8.5 +605,605,Water,1,The Southern Air Temple,3,Zuko,"[Angrily.] You're wrong! Once I deliver the Avatar to my father, he will welcome me home with honor, and restore my rightful place on the throne!","You're wrong! Once I deliver the Avatar to my father, he will welcome me home with honor, and restore my rightful place on the throne!",Michael Dante DiMartino,Lauren MacMullan,8.5 +606,606,Water,1,The Southern Air Temple,3,Zhao,"[Close-up of Zhao, as the camera pans to the right to slowly reveal his whole face.] If your father really wanted you home, he would have let you return by now, Avatar or no Avatar. But in his eyes you are a failure and a disgrace to the Fire Nation.","If your father really wanted you home, he would have let you return by now, Avatar or no Avatar. But in his eyes you are a failure and a disgrace to the Fire Nation.",Michael Dante DiMartino,Lauren MacMullan,8.5 +607,607,Water,1,The Southern Air Temple,3,Zuko,[Cut to Zuko.] That's not true.,That's not true.,Michael Dante DiMartino,Lauren MacMullan,8.5 +608,608,Water,1,The Southern Air Temple,3,Zhao,You have the scar to prove it.,You have the scar to prove it.,Michael Dante DiMartino,Lauren MacMullan,8.5 +609,609,Water,1,The Southern Air Temple,3,Scene Description,"With a cry of frustration, Zuko jolts up out of his chair and into Zhao's face. Side-view as the two stare at each other in anger.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +610,610,Water,1,The Southern Air Temple,3,Zuko,[Furiously.] Maybe you'd like one to match!,Maybe you'd like one to match!,Michael Dante DiMartino,Lauren MacMullan,8.5 +611,611,Water,1,The Southern Air Temple,3,Zhao,[Slightly mockingly.] Is that a challenge?,Is that a challenge?,Michael Dante DiMartino,Lauren MacMullan,8.5 +612,612,Water,1,The Southern Air Temple,3,Zuko,An Agni Kai. At sunset.,An Agni Kai. At sunset.,Michael Dante DiMartino,Lauren MacMullan,8.5 +613,613,Water,1,The Southern Air Temple,3,Zhao,Very well. [Zhao erects himself.] It's a shame your father won't be here to watch me humiliate you. [Turns around.] I guess your uncle will do.,Very well. It's a shame your father won't be here to watch me humiliate you. I guess your uncle will do.,Michael Dante DiMartino,Lauren MacMullan,8.5 +614,614,Water,1,The Southern Air Temple,3,Scene Description,"Zhao walks away. Front view of Zuko, with Iroh in the background.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +615,615,Water,1,The Southern Air Temple,3,Iroh,"[Camera pans slowly to the right to a full close-up of Zuko. Worried.] Prince Zuko, have you forgotten what happened last time you dueled a master?","Prince Zuko, have you forgotten what happened last time you dueled a master?",Michael Dante DiMartino,Lauren MacMullan,8.5 +616,616,Water,1,The Southern Air Temple,3,Zuko,[Darkly.] I will never forget.,I will never forget.,Michael Dante DiMartino,Lauren MacMullan,8.5 +617,617,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a scenery shot of the Southern Air Temple. Switch to somewhere inside the temple where the lemur lands on the ground. The animal erects his ears as Aang touches down on the ground behind him as well and launches forward. The lemur jumps out of the way. The camera pans to the right to follow the animal's escape as he runs through some ripped drapes, which once formed a tent.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +618,618,Water,1,The Southern Air Temple,3,Aang,"[Follows the lemur.] Hey! Come back! [Cut to a shot from inside the tent, as Aang pushes the decaying curtain of drapes out of the way. Happily looks around.] Come on out, little lemur! That hungry guy won't bother you anymore.","Hey! Come back! Come on out, little lemur! That hungry guy won't bother you anymore.",Michael Dante DiMartino,Lauren MacMullan,8.5 +619,619,Water,1,The Southern Air Temple,3,Scene Description,"Aang walks up to another curtain of drapes. Cut to a frontal view from the other side of the curtain as Aang parts them. He looks in the room, but suddenly takes a sharp breath in shock. Switch to several skeletons dressed in Fire Nation uniforms lying scattered over the floor. The camera slowly pans up to a skeleton lying in the snow, surrounded by many more skeletons of Fire Nation soldiers.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +620,620,Water,1,The Southern Air Temple,3,Aang,[Shocked.] Firebenders? They were here?,Firebenders? They were here?,Michael Dante DiMartino,Lauren MacMullan,8.5 +621,621,Water,1,The Southern Air Temple,3,Scene Description,"Aang enters the room and looks around with a sad expression on his face. The scene switches to a closer shot of the skeleton in the snow and slowly zooms in on it. The skeleton is adorned with a round necklace that supports the symbol of airbending. Close-up of Aang, as he stares at the skeletons. Cut back to a close-up of the skeleton dressed in yellow monk robes. The camera focuses on the round, wooden necklace. Cut back to Aang, whose eyes are trembling with sadness and hold back tears.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +622,622,Water,1,The Southern Air Temple,3,Aang,[Devastated.] Gyatso.,Gyatso.,Michael Dante DiMartino,Lauren MacMullan,8.5 +623,623,Water,1,The Southern Air Temple,3,Scene Description,"The view changes to one from beside the skeleton; its fingers are clearly visible in the front as Aang drops to his knees in the background and lets out a mournful sigh. Cut to Sokka, who pulls the drapes aside and looks around.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +624,624,Water,1,The Southern Air Temple,3,Sokka,"[Happily.] Hey, Aang! You find my dinner yet? [Cut to a side-view of Aang sitting on his knees, his head cupped in his hands. Sokka walks toward him. Reassuring.] Aang, I wasn't really going to eat the lemur, okay? [He approaches Aang with a smile on his face, but shakes his head and does a double take.] Oh, man. [Switch to a shot of the skeleton of the monk, which slowly moves back to reveal that Sokka places a hand on Aang's shoulder.] Come on, Aang. Everything will be all right. Let's get out of here.","Hey, Aang! You find my dinner yet? Aang, I wasn't really going to eat the lemur, okay? Oh, man. Come on, Aang. Everything will be all right. Let's get out of here.",Michael Dante DiMartino,Lauren MacMullan,8.5 +625,625,Water,1,The Southern Air Temple,3,Scene Description,"Suddenly, Aang's arrow tattoos begin to glow a bluish white. Cut to a frontal view of Aang, as he lifts his head, his eyes glowing in the same color. The camera pans up; Sokka retracts his hands and gasps for air in fright. Switch to an overview shot of inside the sanctuary where Katara is walking down the circular pattern of statues. She stops before and looks at the statue of Avatar Roku. Cut to a close-up of the statue's face. The camera's point of view switches to behind Roku's shoulder. Katara suddenly looks surprised as a bluish, white light illuminates her face; it seems to come from the statue. Cut back to a close-up of the statue. Its eyes are gleaming bright. The bright light spreads to the other statues and one by one, their eyes start to gleam. The camera pans up to reveal how the light travels from statue to statue and makes its way up to the top of the sanctuary. The camera's point of view switches again to behind Roku's shoulder to show Katara, who is still staring at Roku in shock.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +626,626,Water,1,The Southern Air Temple,3,Katara,[Worried.] Aang!,Aang!,Michael Dante DiMartino,Lauren MacMullan,8.5 +627,627,Water,1,The Southern Air Temple,3,Scene Description,"Katara turns around and sprints away. +Switch to another temple hidden somewhere in the mountains. Inside the temple is a man, dressed in the typical green of the Earth Kingdom, sitting in front of a painting of past earth Avatars. Their eyes also begin to gleam brightly. Cut to a frontal view of the man's frightened expression. The light is so strong that it casts long shadows on his face. Switch to somewhere on one of the poles, where two Water Tribe civilians are looking at the water temple's roof that glows bright with bluish, white light. Cut to a far-off view of the Fire Temple; its roof glows with a reddish light. Cut to a view from inside the temple, where a Fire Sage is leaning out of the room from which the light emanates.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +628,628,Water,1,The Southern Air Temple,3,Fire Sage,Send word to the Fire Lord immediately! The Avatar has returned!,Send word to the Fire Lord immediately! The Avatar has returned!,Michael Dante DiMartino,Lauren MacMullan,8.5 +629,629,Water,1,The Southern Air Temple,3,Scene Description,"The expression on the recipient Fire Sage's face turns to fright. Cut back to the decaying building Aang is in at the Southern Air Temple. Switch to a close shot of Aang's feet, where a whirlwind begins to form. The wind kicks away a bone. The camera slowly pans up. The wind kicks up and forms a sphere around Aang; his eyes and tattoos still glowing brightly. Aang's clothes flutter heavily in the wind.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +630,630,Water,1,The Southern Air Temple,3,Sokka,[Alarmed.] Aang! Come on! Snap out of it!,Aang! Come on! Snap out of it!,Michael Dante DiMartino,Lauren MacMullan,8.5 +631,631,Water,1,The Southern Air Temple,3,Scene Description,"Sokka holds up his arm to protect himself against the raging winds. Suddenly, the air sphere around Aang expands and sends Sokka flying backward.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +632,632,Water,1,The Southern Air Temple,3,Sokka,Aaaaahh!,Aaaaahh!,Michael Dante DiMartino,Lauren MacMullan,8.5 +633,633,Water,1,The Southern Air Temple,3,Scene Description,"Cut to an overview of the dilapidated building. The roof explodes by the force of the hurricane and debris is catapulted high into the air. Switch back to inside the rubble of the building where Sokka spins through the air and smacks against the wall. The air sphere has expanded to a raging tornado with Aang in its center. Sokka peeks at Aang from behind a rock. Switch to an overview shot as Katara walks up to Sokka, holding her arm protectively before her face.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +634,634,Water,1,The Southern Air Temple,3,Katara,[Shouting above the raging winds. Close-up of the two siblings. Katara looks worried at her brother.] What happened?,What happened?,Michael Dante DiMartino,Lauren MacMullan,8.5 +635,635,Water,1,The Southern Air Temple,3,Sokka,[Shouting.] He found out firebenders killed Gyatso!,He found out firebenders killed Gyatso!,Michael Dante DiMartino,Lauren MacMullan,8.5 +636,636,Water,1,The Southern Air Temple,3,Katara,Oh no! It's his Avatar Spirit! [Raises her hand to protect herself against the winds and the flying debris.] He must have triggered it! I'm going to try and calm him down! [Closes an eye against the wind and starts to make her way toward Aang.],Oh no! It's his Avatar Spirit! He must have triggered it! I'm going to try and calm him down!,Michael Dante DiMartino,Lauren MacMullan,8.5 +637,637,Water,1,The Southern Air Temple,3,Sokka,"[Holds on to the rock in an attempt to keep from being blown away. Alarmed.] Well, do it! Before he blows us off the mountain!","Well, do it! Before he blows us off the mountain!",Michael Dante DiMartino,Lauren MacMullan,8.5 +638,638,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a side-view as Katara fights the storm to get to Aang. Cut to a shot from over her shoulder. The sphere of wind that engulfs slowly starts to rise in the air. Katara is pushed back by the strong wind currents that fill the remains of the building as the sphere ascends higher and higher. +Cut to an overview shot of a Fire Nation arena at the occupied Earth Kingdom harbor at sunset. Switch to a view of the inside. The camera pans to the left to reveal some two figure standing at the right and 5 figures standing at the left of the arena. Close-up of Zhao, as he is squatting down; He is bare-chested and barefoot and wears a cape over his shoulders. Zuko and Iroh can be seen in the background. Switch to a close-up of Zuko, squatting the same way and dressed in the same attire.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +639,639,Water,1,The Southern Air Temple,3,Iroh,"Remember your firebending basics, [Close-up of Iroh's upper body.] Prince Zuko. They are your greatest weapons.","Remember your firebending basics, Prince Zuko. They are your greatest weapons.",Michael Dante DiMartino,Lauren MacMullan,8.5 +640,640,Water,1,The Southern Air Temple,3,Zuko,[Close-up of Zuko's determined face.] I refuse to let him win.,I refuse to let him win.,Michael Dante DiMartino,Lauren MacMullan,8.5 +641,641,Water,1,The Southern Air Temple,3,Scene Description,Zuko stands up and turns around. The cape drops from his shoulder. Switch to Zhao on the other side of the arena who also rises and turns around; his garment swivels down as well.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +642,642,Water,1,The Southern Air Temple,3,Zhao,[Confident whisper.] This will be over quickly.,This will be over quickly.,Michael Dante DiMartino,Lauren MacMullan,8.5 +643,643,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a Fire Nation soldier standing on higher grounds. He sees that the duo has readied themselves for battle, so he rings a large gong. Cut back to a side-view of Zuko and Zhao standing in the middle of the arena, both taking on a firebending stance. Close-up of Zuko, who has his hands stretched out in front of him, glaring at Zhao. Switch to Zhao, who stands the same as Zuko. The screen splits; the upper pane is a close-up of Zhao's eyes and slowly slides to the left, the lower is a close-up of Zuko's eyes and slowly slides to the right. +Cut to a view from behind Zuko, as he starts to lower his arms, leaving a trail of fire behind. Camera moves to a frontal view of Zuko, as he directs a strong fire blast at Zhao. Zhao moves to the left, out of the way of the blast before moving back to the right to avoid another blast. Switch to a shot of Zhao's left foot with Zuko in the background; the camera pans to the right. The prince shoots two more strong blast at Zhao. Frontal view of Zhao, as he crosses his arms in front of him and takes the blasts head on. He moves one arm up and the other down, dissipating the flames. He smirks at Zuko, who is seen panting heavily with his arm still stretched out from his last attack. He angrily grinds his teeth and performs a roundhouse kick, spraying flames toward the camera. The shot switches to a side-view of Zhao, who creates his own flames to push away Zuko's blazing attack. He performs his trick again. Close-up of Zuko, who squints his eyes and directs another powerful flame kick in Zhao's direction. Close-up of a smirking Zhao, who holds his own fire ready. He launches forward. Shot of his feet, showing his strong stance as he swings his arms over the ground, severing Zuko's next attack. The camera switches from Zhao, who seems unfazed by Zuko's attacks to Zuko, who is panting heavily with fatigue. Cut to Iroh, who is holding his fist up while rooting for his nephew.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +644,644,Water,1,The Southern Air Temple,3,Iroh,"Basics, Zuko! [Close-up of Zuko's determined face.] Break his root!","Basics, Zuko! Break his root!",Michael Dante DiMartino,Lauren MacMullan,8.5 +645,645,Water,1,The Southern Air Temple,3,Scene Description,"Side-view of Zhao, who ferociously attacks Zuko with a strong fire blast. Zuko is thrown back a bit by the force of the attack while he diverts the flames to both of his sides. Zhao takes a step forward. Closer shot as he directs another powerful blast at the prince, using both his arms this time. Zuko is thrown back again, but still diverts the fire away from him. Zhao takes another step forward and fires again with the same result on Zuko's side. Shot of Zhao, who firmly plants his foot down; cut to a shot where he holds his both wrists together and fires another strong blast. Zuko is thrown back upon impact and slides back several meters over the ground. He lifts his head while grunting in pain. His expression turns to one of shock as he looks up and sees that Zhao has jumped up and is soaring through the skies toward him. With a loud scream, he lands at Zuko's feet, erects himself and thrusts his fist forward to deliver the final blow. +Cut to Zuko's eyes, which open wide in fright as the fire reflects in them. At the last possible second, a frontal shot of Zuko shows him rolling out of the way and swirling his feet around. The view switches to a side-view of Zuko as he, while getting up in this swirl, swipes Zhao's legs from underneath him. This same move is shown two more times, from a closer side-view and from a close-up angled shot of Zuko's perspective, before cutting to a shot of Zuko's feet as he firmly plants them on the ground. Close-up as he smiles confidently. Switch to a shot from over the ground as Zuko steps forward, sliding fire at Zhao's feet, who steps back. Zhao is caught off balance and wobbles backward. Zuko keeps repeating his move, directing his attacks at Zhao's feet in an attempt to throw him off balance. Switch to Zhao, who falls back in distress and subsequently to Iroh, who smiles approvingly. Cut to Zuko, who directs a powerful kick at his adversary. Zhao barely pushes it out of the way while staggering back ever further. Zuko kicks again and this time he succeeds in knocking the commander over. Zhao falls down and rolls over the ground, where he ends up on his back. Zuko runs up at him and threatens him with an outstretched arm, ready to deliver the final blow. Zhao brings his head up and looks at Zuko. Close-up of Zuko's eyes and back to a shot of Zhao's face.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +646,646,Water,1,The Southern Air Temple,3,Zhao,[Challenging.] Do it!,Do it!,Michael Dante DiMartino,Lauren MacMullan,8.5 +647,647,Water,1,The Southern Air Temple,3,Scene Description,"Zuko grunts and thrusts his fist forward, emitting another fire blast. Smoke appears on screen and Zuko erects himself. Cut to a blackened spot on the ground, next to Zhao's face. The camera moves back to a broader view.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +648,648,Water,1,The Southern Air Temple,3,Zhao,That's it? Your father raised a coward.,That's it? Your father raised a coward.,Michael Dante DiMartino,Lauren MacMullan,8.5 +649,649,Water,1,The Southern Air Temple,3,Zuko,"[Anger clearly audible in his voice.] Next time you get in my way, I promise, I won't hold back.","Next time you get in my way, I promise, I won't hold back.",Michael Dante DiMartino,Lauren MacMullan,8.5 +650,650,Water,1,The Southern Air Temple,3,Scene Description,"Zuko turns his back to Zhao and starts to walk away. Close-up of Zuko's face as he walks; Zhao can be seen erecting himself in the background, his back facing Zuko. He suddenly turns around and aims a powerful kick at Zuko, spreading his flames. Before Zuko notices anything, however, Iroh intervenes and grabs Zhao's foot, dissipating the fire. Iroh tosses Zhao back who slides away on his back. Zuko wants to charge Zhao in anger, but Iroh stops him.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +651,651,Water,1,The Southern Air Temple,3,Iroh,"No, Prince Zuko. Do not taint your victory. [Turns to face Zhao. Condescending.] So this is how the great Commander Zhao acts in defeat? [Close-up of Zhao lying on the floor.] Disgraceful. [Cut back to a closer shot of Zuko and Iroh.] Even in exile, my nephew is more honorable than you. [Zuko looks at Iroh upon hearing those last words. Switch to a shot from over Zhao's shoulders.] Thanks again for the tea. It was delicious.","No, Prince Zuko. Do not taint your victory. So this is how the great Commander Zhao acts in defeat? Disgraceful. Even in exile, my nephew is more honorable than you. Thanks again for the tea. It was delicious.",Michael Dante DiMartino,Lauren MacMullan,8.5 +652,652,Water,1,The Southern Air Temple,3,Scene Description,"Iroh and Zuko turn and walk toward the gate of the arena. Zhao partially erects himself, with his left arm resting on his left knee, and grunts as he watches them go. Overview shot of Iroh and Zuko exiting the arena and a close-up of the duo.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +653,653,Water,1,The Southern Air Temple,3,Zuko,"[Softly.] Did you really mean that, Uncle?","Did you really mean that, Uncle?",Michael Dante DiMartino,Lauren MacMullan,8.5 +654,654,Water,1,The Southern Air Temple,3,Iroh,"[Smiling slyly, while glancing at his nephew.] Of course. I told you ginseng tea is my favorite.",Of course. I told you ginseng tea is my favorite.,Michael Dante DiMartino,Lauren MacMullan,8.5 +655,655,Water,1,The Southern Air Temple,3,Scene Description,"Zuko slightly smiles, before the shot switches to an overview of the harbor as the duo walks toward their ship. +Cut to Aang, who is still suspended in the air in his sphere. Strong winds are rampaging through the rubble of the destroyed building. Katara and Sokka are holding on for dear life on some stones, trying not to get blown away.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +656,656,Water,1,The Southern Air Temple,3,Katara,"[In the background, Sokka is hunched over his rock, clenching his teeth together. Katara shouts calmly with a sad expression on her face. The camera slowly moves in on her.] Aang! I know you're upset and I know how hard it is to lose the people you love. I went through the same thing when I lost my mom. [Diverts her eyes. Shot switches to a frontal view of Aang, his tattoos glowing and wind swirling around him; his clothes flutter in the storm. Sokka runs over to his sister in the background.] Monk Gyatso and the other airbenders may be gone, [Close-up of her as she looks up at him.] but you still have a family. Sokka and I! [Sokka opens his eyes and glances at his sister.] We're your family now!","Aang! I know you're upset and I know how hard it is to lose the people you love. I went through the same thing when I lost my mom. Monk Gyatso and the other airbenders may be gone, but you still have a family. Sokka and I! We're your family now!",Michael Dante DiMartino,Lauren MacMullan,8.5 +657,657,Water,1,The Southern Air Temple,3,Scene Description,"Close-up of Aang's emotionless face, as he begins to descend. The angle changes to a view from behind Sokka and Katara as they watch him lower himself back to the ground; the winds start to die down and the air sphere that surrounded Aang disappears. Close-up of his feet, as he touches the ground. Frontal view of the young Avatar, his eyes and tattoos are still glowing bluish white. Katara and Sokka pull up next to him, one on each side.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +658,658,Water,1,The Southern Air Temple,3,Sokka,[Gently.] Katara and I aren't going to let anything happen to you. Promise.,Katara and I aren't going to let anything happen to you. Promise.,Michael Dante DiMartino,Lauren MacMullan,8.5 +659,659,Water,1,The Southern Air Temple,3,Scene Description,"Close-up of Katara taking Aang's hand. The moment she does, the glowing fades away. Cut to a close-up of his face as his arrow and eyes also stop glowing. He slants his eyes with a saddened expression, before he collapses from exhaustion in Katara's arms.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +660,660,Water,1,The Southern Air Temple,3,Aang,[Sad and tired.] I'm sorry.,I'm sorry.,Michael Dante DiMartino,Lauren MacMullan,8.5 +661,661,Water,1,The Southern Air Temple,3,Katara,It's okay. It wasn't your fault.,It's okay. It wasn't your fault.,Michael Dante DiMartino,Lauren MacMullan,8.5 +662,662,Water,1,The Southern Air Temple,3,Aang,"[Sadly.] But you were right. And if the firebenders found this temple, that means they found the other ones, too. [Close-up of his sad face, as he closes his eyes.] I really am the last airbender.","But you were right. And if the firebenders found this temple, that means they found the other ones, too. I really am the last airbender.",Michael Dante DiMartino,Lauren MacMullan,8.5 +663,663,Water,1,The Southern Air Temple,3,Scene Description,Katara hugs Aang tightly. The camera moves back and Sokka places a hand on Aang's shoulder. Switch to a shot of the statues inside the sanctuary. The camera pans down to reveal Aang standing in front of Roku's statue again. Shot from over Roku's shoulder as Katara pulls up next to Aang.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +664,664,Water,1,The Southern Air Temple,3,Katara,Everything's packed. You ready to go?,Everything's packed. You ready to go?,Michael Dante DiMartino,Lauren MacMullan,8.5 +665,665,Water,1,The Southern Air Temple,3,Aang,[Closer shot of Aang and Katara's faces. Softly.] How is Roku supposed to help me if I can't talk to him?,How is Roku supposed to help me if I can't talk to him?,Michael Dante DiMartino,Lauren MacMullan,8.5 +666,666,Water,1,The Southern Air Temple,3,Katara,Maybe you'll find a way.,Maybe you'll find a way.,Michael Dante DiMartino,Lauren MacMullan,8.5 +667,667,Water,1,The Southern Air Temple,3,Scene Description,"They glance at each other when they hear something behind them. They turn around and see the flying lemur standing on its back legs in the middle of the doorway. Cut to a back view of the animal as it jumps to the right, toward where Sokka is standing. The animal reaches his feet and drops the load he was carrying: a variety of fruits. The lemur quickly dashes away as Sokka sits down and starts to stuff his face with the fruit, taking large bites of two different pieces of fruit. Cut to a shot of Aang and Katara, who smile at Sokka.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +668,668,Water,1,The Southern Air Temple,3,Aang,Looks like you made a new friend Sokka!,Looks like you made a new friend Sokka!,Michael Dante DiMartino,Lauren MacMullan,8.5 +669,669,Water,1,The Southern Air Temple,3,Sokka,[Pushing the food in his mouth with his two hands. Looks up with an exhilarated look upon his face. With a full mouth.] Can't talk! Must eat! [Takes another big bite.],Can't talk! Must eat!,Michael Dante DiMartino,Lauren MacMullan,8.5 +670,670,Water,1,The Southern Air Temple,3,Scene Description,"The flying lemur climbs onto Aang and hides behind his head, his tail curled around Aang's neck",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +671,671,Water,1,The Southern Air Temple,3,Aang,"[Looking at the lemur from the corners of his eye.] Hey, little guy!","Hey, little guy!",Michael Dante DiMartino,Lauren MacMullan,8.5 +672,672,Water,1,The Southern Air Temple,3,Scene Description,Cut to a panoramic view of the Southern Air Temple from a distance. The camera pans down to reveal Aang standing next to Appa with Momo perched on his arm.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +673,673,Water,1,The Southern Air Temple,3,Aang,"[To the winged-lemur.] You, me and Appa; [Frontal view as the camera closes in on them.] we're all that's left of this place. [Looks at the lemur.] We have to stick together. Katara, Sokka, [Switches to a shot of the duo fiddling with their luggage. They turn back to look at Aang as he calls them. Sokka is still eating a peach.] say hello to the newest member of our family.","You, me and Appa; we're all that's left of this place. We have to stick together. Katara, Sokka, say hello to the newest member of our family.",Michael Dante DiMartino,Lauren MacMullan,8.5 +674,674,Water,1,The Southern Air Temple,3,Katara,[Aang approaches the duo.] What are you going to name him?,What are you going to name him?,Michael Dante DiMartino,Lauren MacMullan,8.5 +675,675,Water,1,The Southern Air Temple,3,Scene Description,"Sokka is about to take another bite of the peach he is eating. Cut to a shot of Aang, who looks surprised when the lemur suddenly leaps off his arm and returns, holding the peach. The animal starts to nibble from it.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +676,676,Water,1,The Southern Air Temple,3,Aang,Momo.,Momo.,Michael Dante DiMartino,Lauren MacMullan,8.5 +677,677,Water,1,The Southern Air Temple,3,Scene Description,"Cut to a wider shot. Sokka still stands there, mouth open and hand in front of his mouth, ready to take a bite, however, he has no peach anymore. The others start to laugh upon seeing Sokka's expression. Cut to a panoramic view of the Southern Air Temple at dusk; the camera slowly pans to the right. Cut to Aang, who is sadly staring back at it, leaning on the luggage that is tied at the back on Appa's saddle. Momo chitters quietly as they fly further away from the temple. Dark clouds slowly move in front of the temple, obscuring their view.",NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +678,678,Water,1,The Southern Air Temple,3,Scene Description,Fade to credits.,NA,Michael Dante DiMartino,Lauren MacMullan,8.5 +679,679,Water,1,The Warriors of Kyoshi,4,Scene Description,"The episode opens, depicting a clear, starry night sky, the camera panning downwards to the open sea where Zuko's ship sails through the water. Cut to shot of inside Zuko's bedroom, the camera panning to the right to portray the entirety of the room. Zuko is seen meditating in his cabin, his back to the camera. The glow of the four candles situated on a table steadily increases and decreases in time with the prince's relaxed inhalations and exhalations. Cut to frontal shot of Zuko sitting peacefully with his eyes closed, the four candles in view, continually brightening and dimming. Cut to side-view shot of Zuko's head, the door to his cabin in view. Iroh cracks open the door and peeks through while Zuko opens his eyes.",NA,Nick Malis,Giancarlo Volpe,8.2 +680,680,Water,1,The Warriors of Kyoshi,4,Zuko,"[Calmly.] The only reason you should be interrupting me, is if you have news about the Avatar.","The only reason you should be interrupting me, is if you have news about the Avatar.",Nick Malis,Giancarlo Volpe,8.2 +681,681,Water,1,The Warriors of Kyoshi,4,Iroh,"[Pushes open the door completely and enters the room, holding a rolled up scroll in his hands.] Well, there is news, Prince Zuko, but you might not like it. Don't get too upset.","Well, there is news, Prince Zuko, but you might not like it. Don't get too upset.",Nick Malis,Giancarlo Volpe,8.2 +682,682,Water,1,The Warriors of Kyoshi,4,Zuko,"[Cut to shot of the prince sitting motionless, still assuming his meditative stance, his back to the camera. Calmly.] Uncle, you taught me that keeping a level head is a sign of a great leader. Now, whatever you have to say, I'm sure I can take it.","Uncle, you taught me that keeping a level head is a sign of a great leader. Now, whatever you have to say, I'm sure I can take it.",Nick Malis,Giancarlo Volpe,8.2 +683,683,Water,1,The Warriors of Kyoshi,4,Iroh,"[Frontal view of Zuko, Iroh tugging his small beard in the background.] Okay then. [Hesitatingly.] We have no idea where he is.",Okay then. We have no idea where he is.,Nick Malis,Giancarlo Volpe,8.2 +684,684,Water,1,The Warriors of Kyoshi,4,Scene Description,"The flames of the candles suddenly erupt in a fiery mass, brushing the ceiling and obscuring Zuko from sight.",NA,Nick Malis,Giancarlo Volpe,8.2 +685,685,Water,1,The Warriors of Kyoshi,4,Zuko,[Enraged.] What!?,What!?,Nick Malis,Giancarlo Volpe,8.2 +686,686,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to a wider shot of the room as Zuko rises to his feet, enraged. Iroh shields his face from the flames, and merely withdraws a fan from his robe and begins waving it to cool himself down.",NA,Nick Malis,Giancarlo Volpe,8.2 +687,687,Water,1,The Warriors of Kyoshi,4,Iroh,You really should open a window in here.,You really should open a window in here.,Nick Malis,Giancarlo Volpe,8.2 +688,688,Water,1,The Warriors of Kyoshi,4,Zuko,"[He snatches the scroll from Iroh's hand.] Give me the map! [He unrolls it, scanning over the parchment.]",Give me the map!,Nick Malis,Giancarlo Volpe,8.2 +689,689,Water,1,The Warriors of Kyoshi,4,Iroh,"Well, there have been multiple sightings of the Avatar, but he is impossible to track down.","Well, there have been multiple sightings of the Avatar, but he is impossible to track down.",Nick Malis,Giancarlo Volpe,8.2 +690,690,Water,1,The Warriors of Kyoshi,4,Zuko,"[Desperately.] How am I going to find him, Uncle? [Cut to a shot of the map in Zuko's hand, several locations marked down with zigzagged lines connecting each point; Voice-over.] He is clearly a master of evasive maneuvering.","How am I going to find him, Uncle? He is clearly a master of evasive maneuvering.",Nick Malis,Giancarlo Volpe,8.2 +691,691,Water,1,The Warriors of Kyoshi,4,Scene Description,"The shot of his map fades to a shot of the team's own map, minus the zigzagged lines, Sokka holding it in his hands. Cut to shot of him pouring over the map and questioning Aang's navigational skills.",NA,Nick Malis,Giancarlo Volpe,8.2 +692,692,Water,1,The Warriors of Kyoshi,4,Sokka,"[To Aang.] You have no idea where you're going, do you?","You have no idea where you're going, do you?",Nick Malis,Giancarlo Volpe,8.2 +693,693,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to shot of the entire group mounted on Appa. The siblings are riding in his saddle while Aang sits atop his head, looking back. Appa's fur seems dirty and disordered.",NA,Nick Malis,Giancarlo Volpe,8.2 +694,694,Water,1,The Warriors of Kyoshi,4,Aang,Well ... [Happily.] I know it's near water.,Well ... I know it's near water.,Nick Malis,Giancarlo Volpe,8.2 +695,695,Water,1,The Warriors of Kyoshi,4,Scene Description,Scene cut to overhead view of Appa flying over a vast body of water.,NA,Nick Malis,Giancarlo Volpe,8.2 +696,696,Water,1,The Warriors of Kyoshi,4,Sokka,[Sarcastically.] I guess we're getting close then.,I guess we're getting close then.,Nick Malis,Giancarlo Volpe,8.2 +697,697,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to shot of Katara, who is preoccupied with sewing a hole in Sokka's pants, Aang glancing over at her from atop Appa's head, Momo perched on his shoulder. He concocts an idea to impress her.",NA,Nick Malis,Giancarlo Volpe,8.2 +698,698,Water,1,The Warriors of Kyoshi,4,Aang,"Momo, marbles please. [Close-up of Momo who dives into his shirt and emerges, handing Aang two small, gray marbles.] Hey Katara, check out this airbending trick!","Momo, marbles please. Hey Katara, check out this airbending trick!",Nick Malis,Giancarlo Volpe,8.2 +699,699,Water,1,The Warriors of Kyoshi,4,Scene Description,"Using airbending, Aang manages to spin the two marbles quickly along an equatorial plane as he grins happily. Cut to side-view of Aang and Katara, Katara taking no notice and continues to sew.",NA,Nick Malis,Giancarlo Volpe,8.2 +700,700,Water,1,The Warriors of Kyoshi,4,Katara,"[Nonchalantly, still focusing on her task at hand.] That's great, Aang.","That's great, Aang.",Nick Malis,Giancarlo Volpe,8.2 +701,701,Water,1,The Warriors of Kyoshi,4,Aang,"[Disappointed, stops performing the trick.] You didn't even look.",You didn't even look.,Nick Malis,Giancarlo Volpe,8.2 +702,702,Water,1,The Warriors of Kyoshi,4,Katara,[Looks over Aang and attempts to show enthusiasm.] That's great!,That's great!,Nick Malis,Giancarlo Volpe,8.2 +703,703,Water,1,The Warriors of Kyoshi,4,Aang,[Dismayed.] But I'm not doing it now.,But I'm not doing it now.,Nick Malis,Giancarlo Volpe,8.2 +704,704,Water,1,The Warriors of Kyoshi,4,Sokka,"[Cut to shot of Katara and Sokka seated on Appa's saddle. Sokka waves his arm breezily at Aang as if he is trying to shoo him away.] Stop bugging her, airhead. You need to give girls space when they do their sewing.","Stop bugging her, airhead. You need to give girls space when they do their sewing.",Nick Malis,Giancarlo Volpe,8.2 +705,705,Water,1,The Warriors of Kyoshi,4,Katara,[Close side-view shot of Katara as she casts her brother an annoyed glare; irritably.] What does me being a girl have to do with sewing?,What does me being a girl have to do with sewing?,Nick Malis,Giancarlo Volpe,8.2 +706,706,Water,1,The Warriors of Kyoshi,4,Sokka,[Cut to a shot of Sokka lazily resting with his arms behind his head.] Simple. Girls are better at fixing pants than guys and guys are better at hunting and fighting and stuff like that. [Cut back to an annoyed Katara.] It's just the natural order of things.,Simple. Girls are better at fixing pants than guys and guys are better at hunting and fighting and stuff like that. It's just the natural order of things.,Nick Malis,Giancarlo Volpe,8.2 +707,707,Water,1,The Warriors of Kyoshi,4,Katara,[Suddenly smiles. Sarcastically.] All done with your pants! [Shows that the pants are still ripped.] And look what a great job I did!,All done with your pants! And look what a great job I did!,Nick Malis,Giancarlo Volpe,8.2 +708,708,Water,1,The Warriors of Kyoshi,4,Scene Description,"Katara angrily tosses the pants in his direction. Cut to shot of Sokka as the pair of pants hit him in the face, covering it. He quickly scrambles to free himself.",NA,Nick Malis,Giancarlo Volpe,8.2 +709,709,Water,1,The Warriors of Kyoshi,4,Sokka,"[Protesting and pleading.] Wait! I was just kidding. [Sticks one arm through the large hole in his pants.] I can't wear these! Katara, please!","Wait! I was just kidding. I can't wear these! Katara, please!",Nick Malis,Giancarlo Volpe,8.2 +710,710,Water,1,The Warriors of Kyoshi,4,Aang,"[Cut to a frontal view of Aang with the duo in the background. Enthusiastically.] Relax, Sokka. Where we're going, you won't need any pants.","Relax, Sokka. Where we're going, you won't need any pants.",Nick Malis,Giancarlo Volpe,8.2 +711,711,Water,1,The Warriors of Kyoshi,4,Scene Description,"Aang yanks Appa's reins to the left, his tongue sticking out of the corner of his mouth. Appa picks up speed as he flies right passed the camera. Cut to an overview shot of an island covered with mountains. Switch to a far off shot of a beach, where Appa has landed and Team Avatar has dismounted.",NA,Nick Malis,Giancarlo Volpe,8.2 +712,712,Water,1,The Warriors of Kyoshi,4,Sokka,We just made a pit stop yesterday. Shouldn't we get a little more flying done before we camp out?,We just made a pit stop yesterday. Shouldn't we get a little more flying done before we camp out?,Nick Malis,Giancarlo Volpe,8.2 +713,713,Water,1,The Warriors of Kyoshi,4,Katara,"[Cut to close frontal view of Aang who is looking at something, his hand held against his brow. The siblings stand in the background.] He's right. At this rate, we won't get to the North Pole until spring.","He's right. At this rate, we won't get to the North Pole until spring.",Nick Malis,Giancarlo Volpe,8.2 +714,714,Water,1,The Warriors of Kyoshi,4,Aang,"[Camera moves back to reveal Appa as well. Innocently.] But Appa's tired, aren't you boy?","But Appa's tired, aren't you boy?",Nick Malis,Giancarlo Volpe,8.2 +715,715,Water,1,The Warriors of Kyoshi,4,Scene Description,"Appa does not react at all apart from a mild grunt, which comes across less than convincing.",NA,Nick Malis,Giancarlo Volpe,8.2 +716,716,Water,1,The Warriors of Kyoshi,4,Aang,"[Nudges Appa against his front leg with his elbow.] I said, aren't you boy?","I said, aren't you boy?",Nick Malis,Giancarlo Volpe,8.2 +717,717,Water,1,The Warriors of Kyoshi,4,Scene Description,Appa puts slightly more enthusiasm behind his response the second time by grunting louder and opening up his mouth wide as if he was yawning.,NA,Nick Malis,Giancarlo Volpe,8.2 +718,718,Water,1,The Warriors of Kyoshi,4,Sokka,"[Aang smiles over his shoulder at the duo. Sarcastically.] Yeah, that was real convincing.[Somewhat fearfully.] Still, hard to argue with a ten-ton magical monster.","Yeah, that was real convincing. Still, hard to argue with a ten-ton magical monster.",Nick Malis,Giancarlo Volpe,8.2 +719,719,Water,1,The Warriors of Kyoshi,4,Aang,"[Runs toward the shore, takes a sharp breath and points. Excitedly.] Look!",Look!,Nick Malis,Giancarlo Volpe,8.2 +720,720,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to an overview shot of the bay. Aang is standing on the beach, pointing and looking at the water where an elephant koi jumps out the water and back in, creating a giant splash. Switch to a shot of the two siblings staring in awe at the giant fish. Cut to a view from behind Sokka and Katara with Aang visible between the back of their heads.",NA,Nick Malis,Giancarlo Volpe,8.2 +721,721,Water,1,The Warriors of Kyoshi,4,Aang,"[Excited.] That's why we're here. [Starts to disrobe while more koi fish jump out of the water in the background.] Elephant koi, and I'm gonna ride it. Katara, you've got to watch me!","That's why we're here. Elephant koi, and I'm gonna ride it. Katara, you've got to watch me!",Nick Malis,Giancarlo Volpe,8.2 +722,722,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to a side-view of the coastline as Aang runs up and dives in. As soon as he submerges, he jumps out again.",NA,Nick Malis,Giancarlo Volpe,8.2 +723,723,Water,1,The Warriors of Kyoshi,4,Aang,Cold!,Cold!,Nick Malis,Giancarlo Volpe,8.2 +724,724,Water,1,The Warriors of Kyoshi,4,Scene Description,"Switch to Katara and Sokka, still standing on shore, they exchange glances while Appa walks away, clearly taking interest in something else. Sokka makes a circular motion with his left hand around near his left temple, signaling to his sister that he thinks Aang is crazy. Cut back to Aang who is swimming toward the deep waters of the bay where the koi fish are. He dives under and immediately appears again, now holding on to the back fin of one of these giant animals as it jumps out of the water before diving again. Cut back to the siblings. Katara smiles broadly and impressed at the sight of Aang riding the koi fish while Sokka stares at the scene with an uninterested look upon his face and his arms crossed. Cut to a broader view, Sokka and Katara are with their back toward the camera. Momo is jumping excitedly up and down as Aang's koi fish reappears again.",NA,Nick Malis,Giancarlo Volpe,8.2 +725,725,Water,1,The Warriors of Kyoshi,4,Aang,"[Switch to a close-up of Aang atop the fish's back, waving at his friends.] Hahaha, hahaha!","Hahaha, hahaha!",Nick Malis,Giancarlo Volpe,8.2 +726,726,Water,1,The Warriors of Kyoshi,4,Katara,[Cut to Katara who enthusiastically waves back.] Whooh!,Whooh!,Nick Malis,Giancarlo Volpe,8.2 +727,727,Water,1,The Warriors of Kyoshi,4,Scene Description,Switch to a frontal view of Aang riding the koi. Two other koi jump out of the water behind him to the left and right. Aang is still laughing loud with excitement as they race through the water. Cut to an overview shot of the bay as the three koi playfully jump out the water before diving. Switch to an underwater shot of Aang and the fish. Cut to a shot of Katara and Sokka on the beach. Momo is still excitedly jumping up and down while Katara addresses her brother who still has his arms crossed.,NA,Nick Malis,Giancarlo Volpe,8.2 +728,728,Water,1,The Warriors of Kyoshi,4,Katara,[Smiling.] He looks pretty good out there.,He looks pretty good out there.,Nick Malis,Giancarlo Volpe,8.2 +729,729,Water,1,The Warriors of Kyoshi,4,Sokka,[Unimpressed.] Are you kidding? [Lazily gestures at Aang in the water.] The fish is doing all the work.,Are you kidding? The fish is doing all the work.,Nick Malis,Giancarlo Volpe,8.2 +730,730,Water,1,The Warriors of Kyoshi,4,Katara,"[Notices something behind Sokka and runs off screen.] No, Appa. Don't eat that! [Appa grunts.]","No, Appa. Don't eat that!",Nick Malis,Giancarlo Volpe,8.2 +731,731,Water,1,The Warriors of Kyoshi,4,Scene Description,"Switch back to a widely smiling Aang atop the fish, presumably in an attempt to impress Katara. Switches to off the shore from his perspective as Katara runs off inland. Close-up of Aang's disappointed face.",NA,Nick Malis,Giancarlo Volpe,8.2 +732,732,Water,1,The Warriors of Kyoshi,4,Aang,"[Disappointed, the smile having faded off his face.] Oh man ...",Oh man ...,Nick Malis,Giancarlo Volpe,8.2 +733,733,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cuts to overhead shot of the water, the backs of the three koi fish in view. Two koi fish suddenly change direction, including Aang's, swerving to the bottom-right of the screen, leaving behind one koi fish that continues to race forward. The camera pans up, the dark shadow of a large body appears beneath the water's surface directly behind the koi fish. Switch to a close shot of Sokka.",NA,Nick Malis,Giancarlo Volpe,8.2 +734,734,Water,1,The Warriors of Kyoshi,4,Sokka,[Alarmed.] There's something in the water!,There's something in the water!,Nick Malis,Giancarlo Volpe,8.2 +735,735,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to shot of one koi fish as it attempts to leap out of the water only to be pulled back under the surface by something unknown. Cut to a frontal shot of Aang still surfing on the koi fish's back, smiling widely, unaware of the danger. Katara reappears next to her brother again while Momo is screeching in alarm.",NA,Nick Malis,Giancarlo Volpe,8.2 +736,736,Water,1,The Warriors of Kyoshi,4,Katara,[Worried.] What's wrong?,What's wrong?,Nick Malis,Giancarlo Volpe,8.2 +737,737,Water,1,The Warriors of Kyoshi,4,Sokka,Aang's in trouble. Aang!,Aang's in trouble. Aang!,Nick Malis,Giancarlo Volpe,8.2 +738,738,Water,1,The Warriors of Kyoshi,4,Katara,Get out of there!,Get out of there!,Nick Malis,Giancarlo Volpe,8.2 +739,739,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to Aang who grips the dorsal fin of the fish, his smile having now faded. He looks surprised at the commotion on the shore. Cut to shot of the shore from his perspective, Katara and Sokka motioning for him to exit the water by flailing their arms and calling to him from far away.",NA,Nick Malis,Giancarlo Volpe,8.2 +740,740,Water,1,The Warriors of Kyoshi,4,Sokka,"Get back here, Aang!","Get back here, Aang!",Nick Malis,Giancarlo Volpe,8.2 +741,741,Water,1,The Warriors of Kyoshi,4,Scene Description,"Switch back to a shot of Aang, who, believing them to be cheering him on, waves only to suddenly be hurled off the koi fish, into the water when the koi fish is being pulled under.",NA,Nick Malis,Giancarlo Volpe,8.2 +742,742,Water,1,The Warriors of Kyoshi,4,Aang,[Flailing his arms and legs.] Whaaaahh! Aaaah!,Whaaaahh! Aaaah!,Nick Malis,Giancarlo Volpe,8.2 +743,743,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to wide-open shot of the lake, Aang plunging into the water as the koi fish he was mounted atop disappears under the water. Cut to Aang who resurfaces and gasps for breath as the massive dorsal fin of the unknown creature emerges from the surface directly behind him. Cut a wider shot of entire dorsal fin and a shot of Aang who turns around, suddenly alarmed by the sight.",NA,Nick Malis,Giancarlo Volpe,8.2 +744,744,Water,1,The Warriors of Kyoshi,4,Aang,[Frightened.] Whaaaahh!,Whaaaahh!,Nick Malis,Giancarlo Volpe,8.2 +745,745,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to wide-view shot of the lake, the dorsal fin of the creature swerving off to the side as Aang uses airbending to run across the surface of the lake at lightning speed. Cut to a frontal shot of a heavily panting Aang fleeing the scene, his feet treading water, the creature following him in hot pursuit. Cut to overhead shot of the lake, Aang a mere speck in the water, a trail of white foam behind him, the creature gaining on him. Cut to shot of Sokka and Katara standing on the shore. Sokka suddenly grows alarmed as Aang collides straight into him, having reached the shore safely. Cut to shot of the entire lake and shore as the dorsal fin of the creature disappears beneath the surface. Katara runs to where her brother and Aang have come to a halt. Cut to shot of Sokka leaning against a tree trunk, a trail marking where his body slid across the ground. Aang is seen dressing himself as Katara and Momo approach the two.",NA,Nick Malis,Giancarlo Volpe,8.2 +746,746,Water,1,The Warriors of Kyoshi,4,Katara,What was that thing?,What was that thing?,Nick Malis,Giancarlo Volpe,8.2 +747,747,Water,1,The Warriors of Kyoshi,4,Aang,I don't know.,I don't know.,Nick Malis,Giancarlo Volpe,8.2 +748,748,Water,1,The Warriors of Kyoshi,4,Sokka,"[Stands up and wipes his hands together.] Well, let's not stick around to find out. Time to hit the road.","Well, let's not stick around to find out. Time to hit the road.",Nick Malis,Giancarlo Volpe,8.2 +749,749,Water,1,The Warriors of Kyoshi,4,Scene Description,"The camera pans upward to where several female warriors clad in green kimonos descend from the treetops ambushing the trio. The women quickly encircle the group and take them out. Cut to Sokka who is being pulled back and knocked over. Switch to a shot of Katara with Aang in the background. Katara is pulled by her arm. As she leans in to maintain her balance, someone pulls her parka over her head and pulls her down. Aang is distracted by Katara's struggles, giving the opportunity to another female warrior to grab him by his collar. Momo flies up screeching from his shoulder, only to be quickly caught in a bag, only his head still protruding. Cut to a shot of the ground when a bound and blindfolded Momo, Aang, Katara, and Sokka are thrown on the ground in a line, each grunting when they hit the ground. They are surrounded by the female warriors.",NA,Nick Malis,Giancarlo Volpe,8.2 +750,750,Water,1,The Warriors of Kyoshi,4,Sokka,"Or, we could stay a while.","Or, we could stay a while.",Nick Malis,Giancarlo Volpe,8.2 +751,751,Water,1,The Warriors of Kyoshi,4,Scene Description,"The camera switches to a shot of the beginning of a snowy path. The camera pans up, revealing that the path leads to a village in the distance. Cut to a shot of the back of a man while the scene pans to the left. The man addresses Aang, Sokka, and Katara who are still blindfolded and tied to a large wooden pole. The bagged Momo stands on the ground in front of Aang.",NA,Nick Malis,Giancarlo Volpe,8.2 +752,752,Water,1,The Warriors of Kyoshi,4,Oyaji,[Voice-over.] You three have some explaining to do.,You three have some explaining to do.,Nick Malis,Giancarlo Volpe,8.2 +753,753,Water,1,The Warriors of Kyoshi,4,Scene Description,"The camera moves even further to the left, revealing the back of one of the woman dressed in green that ambushed the group earlier.",NA,Nick Malis,Giancarlo Volpe,8.2 +754,754,Water,1,The Warriors of Kyoshi,4,Suki,"[Voice-over.] And if you don't answer all our questions, we're throwing you back in the water with Unagi.","And if you don't answer all our questions, we're throwing you back in the water with Unagi.",Nick Malis,Giancarlo Volpe,8.2 +755,755,Water,1,The Warriors of Kyoshi,4,Sokka,"[Close-up of the blindfolded Sokka. Challenging.] Show yourselves, cowards!","Show yourselves, cowards!",Nick Malis,Giancarlo Volpe,8.2 +756,756,Water,1,The Warriors of Kyoshi,4,Scene Description,"A gloved hand, the forearm dressed in a leather band with a gold insignia on top of it, removes the blindfold. The scene switches to Sokka's point of view. Five girls in green kimonos and wearing white and red face paint are standing in front of him. Cut to a side-view shot, panning to the right.",NA,Nick Malis,Giancarlo Volpe,8.2 +757,757,Water,1,The Warriors of Kyoshi,4,Sokka,[Aggressively.] Who are you? Where are the men who ambushed us?,Who are you? Where are the men who ambushed us?,Nick Malis,Giancarlo Volpe,8.2 +758,758,Water,1,The Warriors of Kyoshi,4,Suki,"[Stepping forward, gesturing heavily with her clenched fist. Indignantly.] There were no men. We ambushed you. Now tell us, who are you and what are you doing here?","There were no men. We ambushed you. Now tell us, who are you and what are you doing here?",Nick Malis,Giancarlo Volpe,8.2 +759,759,Water,1,The Warriors of Kyoshi,4,Sokka,"[Closer side-view shot of Sokka who stares at them in disbelief.] Wait a second, [He amusingly glance to his right to where Aang stands as if he is looking for confirmation. Mockingly.] there's no way that a bunch of girls took us down.","Wait a second, there's no way that a bunch of girls took us down.",Nick Malis,Giancarlo Volpe,8.2 +760,760,Water,1,The Warriors of Kyoshi,4,Suki,"[Grabs Sokka by his collar. Angrily.] A bunch of girls, huh? Unagi is gonna eat well tonight.","A bunch of girls, huh? Unagi is gonna eat well tonight.",Nick Malis,Giancarlo Volpe,8.2 +761,761,Water,1,The Warriors of Kyoshi,4,Katara,"[Leans forward in her bonds. Pleading and apologetically.] No, don't hurt him! He didn't mean it. My brother is just an idiot sometimes. [Suki released Sokka, but still stares at him in dismay.]","No, don't hurt him! He didn't mean it. My brother is just an idiot sometimes.",Nick Malis,Giancarlo Volpe,8.2 +762,762,Water,1,The Warriors of Kyoshi,4,Aang,It's my fault. [The three teenagers looks surprised at Aang's words. The camera pans the left to reveal a sorrowfully looking Aang.] I'm sorry we came here. I wanted to ride the elephant koi.,It's my fault. I'm sorry we came here. I wanted to ride the elephant koi.,Nick Malis,Giancarlo Volpe,8.2 +763,763,Water,1,The Warriors of Kyoshi,4,Oyaji,[Cut to a frontal view of Oyaji. Angrily.] How do we know you're not [Points at the bound three.] Fire Nation spies? Kyoshi stayed out of the war so far. And we intend to keep it that way!,How do we know you're not Fire Nation spies? Kyoshi stayed out of the war so far. And we intend to keep it that way!,Nick Malis,Giancarlo Volpe,8.2 +764,764,Water,1,The Warriors of Kyoshi,4,Aang,"[Cut back to Aang, a brightened expression on his face.] This island is named for Kyoshi? I know Kyoshi!",This island is named for Kyoshi? I know Kyoshi!,Nick Malis,Giancarlo Volpe,8.2 +765,765,Water,1,The Warriors of Kyoshi,4,Oyaji,[Humorless.] Ha! How could you possibly know her?,Ha! How could you possibly know her?,Nick Malis,Giancarlo Volpe,8.2 +766,766,Water,1,The Warriors of Kyoshi,4,Scene Description,Switch to Oyaji's point of view as the camera pans up. At the top of the wooden pole stands a statue of a tall woman holding two stretched open fans. She is dressed in a similar outfit as the female warriors that ambushed the group.,NA,Nick Malis,Giancarlo Volpe,8.2 +767,767,Water,1,The Warriors of Kyoshi,4,Oyaji,"Avatar Kyoshi was born here four hundred years ago. [Close-up of the face of the statue. The colors have faded away a bit, but it is still clear that Kyoshi wears the same white face paint, with the red accentuated eyes as the modern Kyoshi Warriors wear.] She's been dead for centuries.",Avatar Kyoshi was born here four hundred years ago. She's been dead for centuries.,Nick Malis,Giancarlo Volpe,8.2 +768,768,Water,1,The Warriors of Kyoshi,4,Aang,"[Cut to Aang who looks pensive at the statue before looking at the ground in front of him. He speaks in a soft, calm voice while the camera slowly zooms in on him.] I know her because I'm the Avatar.",I know her because I'm the Avatar.,Nick Malis,Giancarlo Volpe,8.2 +769,769,Water,1,The Warriors of Kyoshi,4,Scene Description,Cut to a shot of Suki and Oyaji with the other Kyoshi Warriors standing in the background. Oyaji looks shocked at Aang's revelation.,NA,Nick Malis,Giancarlo Volpe,8.2 +770,770,Water,1,The Warriors of Kyoshi,4,Suki,[Not convinced by Aang's statement. Shaking her fist to emphasize her words.] That's impossible! The last Avatar was an airbender who disappeared a hundred years ago.,That's impossible! The last Avatar was an airbender who disappeared a hundred years ago.,Nick Malis,Giancarlo Volpe,8.2 +771,771,Water,1,The Warriors of Kyoshi,4,Aang,[Cut to Aang and his friend from a point of view between Suki and Oyaji. Aang smiles sheepishly.] That's me!,That's me!,Nick Malis,Giancarlo Volpe,8.2 +772,772,Water,1,The Warriors of Kyoshi,4,Oyaji,[Cut to frontal view of Suki and Oyaji who angrily points at Aang while looking at Suki.] Throw the impostor to Unagi!,Throw the impostor to Unagi!,Nick Malis,Giancarlo Volpe,8.2 +773,773,Water,1,The Warriors of Kyoshi,4,Scene Description,"Suki and the rest of her warriors immediately retract their metal fans from out of their belts and slid them open. Ready to counter any sudden attack, they threateningly start to move forward and surround the bound friends. Cut to a close shot of Katara as she leans forward in the ropes, glancing to her right where Aang is bound to the pole.",NA,Nick Malis,Giancarlo Volpe,8.2 +774,774,Water,1,The Warriors of Kyoshi,4,Katara,[Nervously.] Aang ... do some airbending.,Aang ... do some airbending.,Nick Malis,Giancarlo Volpe,8.2 +775,775,Water,1,The Warriors of Kyoshi,4,Scene Description,"The camera pans to the left, passing Sokka who is looking at the female warriors, his mouth open in shock and stopping at Aang who looks questioningly at Katara for a moment. Cut to an overview shot of the scene as Aang bends over before pushing himself off the ground. He leaves a large dust cloud as he shoots in the air, stretching out his ropes, using one of the outstretched fans of the statue to snap them in half. Now completely free of his bonds, he tumbles elegantly over the statue.",NA,Nick Malis,Giancarlo Volpe,8.2 +776,776,Water,1,The Warriors of Kyoshi,4,Spectators,[Talking all at once.] Wow! Did you see that? Airbender!,Wow! Did you see that? Airbender!,Nick Malis,Giancarlo Volpe,8.2 +777,777,Water,1,The Warriors of Kyoshi,4,Scene Description,"Aang lands gently on the ground in front of the surprised crowd, his robes still fluttering in the air. Oyaji and the Kyoshi Warriors stare at him in shock. A lot more people have gather around to see what is going on. Unlike the female warriors, Oyaji and the other civilians are dressed in blue.",NA,Nick Malis,Giancarlo Volpe,8.2 +778,778,Water,1,The Warriors of Kyoshi,4,Oyaji,[In awe.] It's true ... you are the Avatar!,It's true ... you are the Avatar!,Nick Malis,Giancarlo Volpe,8.2 +779,779,Water,1,The Warriors of Kyoshi,4,Aang,"[Cut to a frontal view of Aang with a serious look on his face, a relieved Sokka and Katara still tied up in the background to his left.] Now ... [He pulls his marbles out from underneath his robes.] check this out!",Now ... check this out!,Nick Malis,Giancarlo Volpe,8.2 +780,780,Water,1,The Warriors of Kyoshi,4,Scene Description,"He performs his trick again, letting the marbles spins around really fast between his hands. Grinning and blinking like a fool, he looks at the crowd, hoping to impress them. Cut to the cheering crowd. A young man in the front starts to emit a high pitched squeal while widely tossing his hands up in the air in admiration. He gets so overexcited that he starts to foam, fall toward the camera, and faints; the rest of the villagers just keep on cheering. +Cut to a side-view of the harbor of Kyoshi island, where one of the village girls runs up a dock toward a fisherman who is fiddling with his basket of fish.",NA,Nick Malis,Giancarlo Volpe,8.2 +781,781,Water,1,The Warriors of Kyoshi,4,Little girl,[Excited.] Did you hear the news? [The fisherman picks up his basket.] The Avatar's on Kyoshi!,Did you hear the news? The Avatar's on Kyoshi!,Nick Malis,Giancarlo Volpe,8.2 +782,782,Water,1,The Warriors of Kyoshi,4,Fisherman,"[Due to his utter surprise, he drops his basket.] Huh?",Huh?,Nick Malis,Giancarlo Volpe,8.2 +783,783,Water,1,The Warriors of Kyoshi,4,Scene Description,"The fisherman picks his basket up again and turns around. The scene fades over to a scene in a street where the fisherman delivers the basket to the fishmonger while passing on the news of the Avatar's whereabouts. The fishmonger turns around and the scene fades away again to another scene where the fishmonger sells one of the fish to a servant, dressed in Fire Nation red. He too passes on the news. When the servant turns around, the scene fades to inside Zuko's ship where the servant is serving the cooked fish at the table of Zuko and Iroh. Cut to a frontal view of Zuko as he quickly stands up.",NA,Nick Malis,Giancarlo Volpe,8.2 +784,784,Water,1,The Warriors of Kyoshi,4,Zuko,"[Yells on a demanding tone.] The Avatar's on Kyoshi Island? [Cut to a frontal shot of Iroh as Zuko addresses him while leaving the room. Iroh looks at Zuko as he walks away.] Uncle, ready the rhinos. He's not getting away from me this time.","The Avatar's on Kyoshi Island? Uncle, ready the rhinos. He's not getting away from me this time.",Nick Malis,Giancarlo Volpe,8.2 +785,785,Water,1,The Warriors of Kyoshi,4,Iroh,[Casually points at the smoking fish in front of him.] Are you going to finish that?,Are you going to finish that?,Nick Malis,Giancarlo Volpe,8.2 +786,786,Water,1,The Warriors of Kyoshi,4,Zuko,[Turns around and snatches the plate off the table. Aggressively.] I was going to save it for later!,I was going to save it for later!,Nick Malis,Giancarlo Volpe,8.2 +787,787,Water,1,The Warriors of Kyoshi,4,Scene Description,"Zuko leaves the room under the watchful eye of Iroh. As soon as Zuko is out of the screen, Iroh crosses his arms, turns around, and sulks. +The shot switches to a close-up of Kyoshi's statue's wooden face as it is being repainted. The right side of her face is already done and the previous cracks are not visible anymore. The painter carefully reapplies her left eyebrow with black paint. A back view shot of the statue shows the main street of Kyoshi village with houses at both sides and one bigger house at the end of the street. Another villager is cleaning the back of the statue with a broom. The camera pans to the right until the big house becomes the center of the shot before cutting to a shot of Appa who lazily lies on his side, eating hay while two villagers are grooming him. He growls and chews while the camera pans the the left and up to focus on three open windows of the main house on the first floor. Cut to a side-view of inside the house where Aang, Katara, and Momo are sitting at a long table. A villager places another dish on the already richly filled table. Aang and Momo are very excited to see the display of decadent desserts in front of it, but Katara supports an uneasy look.",NA,Nick Malis,Giancarlo Volpe,8.2 +788,788,Water,1,The Warriors of Kyoshi,4,Aang,[Throws his arms in the air while Momo digs in and chitters. Ecstatic.] All right! Dessert for breakfast!,All right! Dessert for breakfast!,Nick Malis,Giancarlo Volpe,8.2 +789,789,Water,1,The Warriors of Kyoshi,4,Scene Description,"Katara pokes one of the squishy looking, orange puffs with a flat top in front of her. Cut to a frontal view of the two as a doubtful Katara picks up and closely investigates the dessert she just pokes. Aang on the other hand does not share her reluctance and starts stuffing his face, two desserts at once.",NA,Nick Malis,Giancarlo Volpe,8.2 +790,790,Water,1,The Warriors of Kyoshi,4,Aang,These people sure know [The rest is kind of muffled out because he is cramming his desserts in his mouth.] how to treat an Avatar!,These people sure know how to treat an Avatar!,Nick Malis,Giancarlo Volpe,8.2 +791,791,Water,1,The Warriors of Kyoshi,4,Scene Description,Katara still is not convinced about the deliciousness of the dessert she is holding. Glances at Aang.,NA,Nick Malis,Giancarlo Volpe,8.2 +792,792,Water,1,The Warriors of Kyoshi,4,Aang,[Impressed.] Mmm ... [Offers one of the desserts he is holding to Katara.] Katara you've got to try these!,Mmm ... Katara you've got to try these!,Nick Malis,Giancarlo Volpe,8.2 +793,793,Water,1,The Warriors of Kyoshi,4,Katara,"[Puts down the orange dessert, accepts the dessert Aang offers her and takes a bit.] Well, maybe just a bite.","Well, maybe just a bite.",Nick Malis,Giancarlo Volpe,8.2 +794,794,Water,1,The Warriors of Kyoshi,4,Scene Description,"Momo sneaks up to Aang and snatches the dessert out of his other hand and quickly dashes away, who smiles at his pet. He does not let the theft bother him and quickly gabs another dessert in front of him while Katara munches down the piece of cake and reaches across the table for the same dessert Aang just took. Aang glances to his left, over the hunched Katara to Sokka. Momo appears between Aang and Katara and quickly snatches another cupcake from the table before vanishing underneath it.",NA,Nick Malis,Giancarlo Volpe,8.2 +795,795,Water,1,The Warriors of Kyoshi,4,Aang,"Sokka, what's your problem? Eat!","Sokka, what's your problem? Eat!",Nick Malis,Giancarlo Volpe,8.2 +796,796,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to Sokka who is sitting in a corner, walking with his arms crossed while staring in front of him.",NA,Nick Malis,Giancarlo Volpe,8.2 +797,797,Water,1,The Warriors of Kyoshi,4,Sokka,Not hungry.,Not hungry.,Nick Malis,Giancarlo Volpe,8.2 +798,798,Water,1,The Warriors of Kyoshi,4,Aang,[Aang leans backward to be able to look past Katara to Sokka; his eyes wide open in surprise.] But you're always hungry!,But you're always hungry!,Nick Malis,Giancarlo Volpe,8.2 +799,799,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to a wide shot of the room, Aang in front, Sokka in the back. It is shown that the amount of desserts has dwindled severely.",NA,Nick Malis,Giancarlo Volpe,8.2 +800,800,Water,1,The Warriors of Kyoshi,4,Katara,[Glancing amusingly at Aang. Slightly mocking.] He's just upset because a bunch of girls kicked his butt yesterday.,He's just upset because a bunch of girls kicked his butt yesterday.,Nick Malis,Giancarlo Volpe,8.2 +801,801,Water,1,The Warriors of Kyoshi,4,Sokka,[Protesting.] They snuck up on me!,They snuck up on me!,Nick Malis,Giancarlo Volpe,8.2 +802,802,Water,1,The Warriors of Kyoshi,4,Katara,[Mockingly looks at her brother.] Right. And then they kicked your butt.,Right. And then they kicked your butt.,Nick Malis,Giancarlo Volpe,8.2 +803,803,Water,1,The Warriors of Kyoshi,4,Scene Description,Cut to a wider shot of the table. Momo is lying underneath the table with his front paws around a bunch a pastries he collected. He is chewing while Sokka angrily stands up in the background.,NA,Nick Malis,Giancarlo Volpe,8.2 +804,804,Water,1,The Warriors of Kyoshi,4,Sokka,[Indignant.] Sneak attacks don't count! [Walks out of the scene with big strides. Mumbling to himself.] Tie me up with ropes! I'll show them a thing or two. [Comes back to the table to face Katara and Aang. Momo grabs some more pastries that lie around him.] I'm not scared of any girls. [Snatches some of the desert of the table.] Who do they think they are anyway? [He shoves one of the deserts in his mouth and stalks off again.] Mmm ... this is tasty.,Sneak attacks don't count! Tie me up with ropes! I'll show them a thing or two. I'm not scared of any girls. Who do they think they are anyway? Mmm ... this is tasty.,Nick Malis,Giancarlo Volpe,8.2 +805,805,Water,1,The Warriors of Kyoshi,4,Scene Description,Front view of Aang and Katara. In the back villagers are still working on beautifying the statue of Kyoshi. Aang is still holding one of the sweets as the looks at Katara.,NA,Nick Malis,Giancarlo Volpe,8.2 +806,806,Water,1,The Warriors of Kyoshi,4,Aang,What's he so angry about? [Excited.] It's great here. They're giving us the royal treatment!,What's he so angry about? It's great here. They're giving us the royal treatment!,Nick Malis,Giancarlo Volpe,8.2 +807,807,Water,1,The Warriors of Kyoshi,4,Katara,"Hey, don't get too comfortable. It's risky for us to stay in one place for very long.","Hey, don't get too comfortable. It's risky for us to stay in one place for very long.",Nick Malis,Giancarlo Volpe,8.2 +808,808,Water,1,The Warriors of Kyoshi,4,Scene Description,Momo's arm comes into view from underneath the table. He scans the table for new pastries to snatch.,NA,Nick Malis,Giancarlo Volpe,8.2 +809,809,Water,1,The Warriors of Kyoshi,4,Aang,"[Lowers his arm with the pastry and offers it to Momo's grasping paw.] I'm sure we'll be fine. [The lemur feels the desert and quickly snatches it out of Aang's hand.] Besides, did you see how happy I'm making this town? [Aang moves closer to Katara and turns around to look out of the window at the statue.] They're even cleaning up that statue in my honor!","I'm sure we'll be fine. Besides, did you see how happy I'm making this town? They're even cleaning up that statue in my honor!",Nick Malis,Giancarlo Volpe,8.2 +810,810,Water,1,The Warriors of Kyoshi,4,Katara,"Well, it's nice to see you excited about being the Avatar. [Slightly concerned.] I just hope it doesn't all go to your head.","Well, it's nice to see you excited about being the Avatar. I just hope it doesn't all go to your head.",Nick Malis,Giancarlo Volpe,8.2 +811,811,Water,1,The Warriors of Kyoshi,4,Aang,"[Reassuring.] Come on, you know me better than that. I'm just a simple monk.","Come on, you know me better than that. I'm just a simple monk.",Nick Malis,Giancarlo Volpe,8.2 +812,812,Water,1,The Warriors of Kyoshi,4,Scene Description,"Aang gets up and leans on the window sill so he can look better outside. As soon as he emerges, the villagers scream with delight and admiration for him. Aang looks down in surprise to see where the sound came from. The camera switches to his point of view and reveals a bunch a little girls cheering for him; Koko is among them in the front row. The camera cuts back to Aang who flashes a broad smile at the girls while blushing. Katara is standing behind him with her arms crossed in disapproval. She rolls her eyes and makes a raspberry. +The shot changes to a side-view of a brownish-red bridge over a small creek. Aang quickly runs over it from the right to the left, trailed by four screaming fangirls. They run out of the picture, but Aang quickly comes back and traverses the bridge again, now from left to right. The girls are still following him, screaming loudly with the same amount of enthusiasm. They run out of the picture again, but once again, Aang runs back in. He runs up the bridge, but halts in the middle, looking from left to right as he sees that hordes of fangirls are trapping him on the bridge as they run up from both sides. Before they can reach him, the airbender leaps in the air. Cut to a closer shot of the girls in the middle of the bridge as they are still creaming and reaching for the sky. They gasp for air in admiration when they see that Aang is suspended in the air by clinging to an airball. The ball, however, slowly reduces in size until it vanishes completely. Aang looks scared as he drops down into the crowd of little girl who happily catch him. +Switch to a shot of Aang and Koko standing serene with a waterfall in the background. A painter is measuring their proportions with his brush. Aang and Koko are obscured from sight as the artist raises his canvas and starts painting the outlines of Koko.",NA,Nick Malis,Giancarlo Volpe,8.2 +813,813,Water,1,The Warriors of Kyoshi,4,Painter,"[Muttering to himself.] Hmmm ... Painting the Avatar ... that's easy enough ... [He lowers the canvas and notices that another girl has pulled up next to Aang. Surprised.] Oh, there's another one ... [He obscures his models again from sight by raising his canvas and painting the outlines of the other girl.] Well, I'll make an adjustment here, and ... [He lowers the canvas to see that three more girls have joined Aang.] There's more ... [He obscures the Avatar and his fangirls from sight again with his canvas while he quickly paints Aang.] well that ...","Hmmm ... Painting the Avatar ... that's easy enough ... Oh, there's another one ... Well, I'll make an adjustment here, and ... There's more ... well that ...",Nick Malis,Giancarlo Volpe,8.2 +814,814,Water,1,The Warriors of Kyoshi,4,Scene Description,"The painter lowers his canvas again and discovers that Aang is now surrounded by sixteen little girls. The camera switches to the annoyed face of the painter. As he stares at his models, his brush drips on his painting. Close shot of Aang and the fangirls as they all push and pull to be as close to Aang as possible. They are all smiling widely and giggling while Aang looks somewhat horrified by all the girls around him. A side-view of the scene shows that some girls are completely leaning on others in order to have a spot on the painting. The painter gets up and walks away without saying a word, while the tower of people crashes under its own weight. +Switch to a shot of Aang and his fangirls back in the village. A frontal shot of the monk shows that he is doing push-ups while Momo is sitting on his back and his fangirls have lined up in a semi-circle behind him. After three push-ups, Aang starts to do one handed push-ups and soon switches to no handed push-ups, but pushing himself up with his airbending. The girls stare at him in admiration. Cut to a wider view as Katara walks past carrying a basket. A look of disapproval dons her face as she keeps on walking without even glancing at the Avatar. +Cut to a shot of a small house surrounded by trees. Sokka walks up to it.",NA,Nick Malis,Giancarlo Volpe,8.2 +815,815,Water,1,The Warriors of Kyoshi,4,Sokka,[Angrily grunting to himself.] I can't believe I got beat up by a bunch of girls.,I can't believe I got beat up by a bunch of girls.,Nick Malis,Giancarlo Volpe,8.2 +816,816,Water,1,The Warriors of Kyoshi,4,Scene Description,"Inside the house, six Kyoshi Warriors are training. They are performing a routing with a fan in perfect unison. Sokka peeks his head around the door to look at them. He smiles smugly and enters.",NA,Nick Malis,Giancarlo Volpe,8.2 +817,817,Water,1,The Warriors of Kyoshi,4,Sokka,"[Condescending.] Sorry ladies, [Suki and the other warriors stop their exercise and close their fans. They stare at Sokka with a serious look on their faces.] didn't mean to interrupt your dance lesson. [The camera moves back, revealing that Sokka was stretching.] I was just looking for somewhere to get a little workout?","Sorry ladies, didn't mean to interrupt your dance lesson. I was just looking for somewhere to get a little workout?",Nick Malis,Giancarlo Volpe,8.2 +818,818,Water,1,The Warriors of Kyoshi,4,Suki,"[Looks at how Sokka continues his warm up.] Well, you're in the right place. [Cut to a side-view while Sokka is loosening up his hips.] Sorry about yesterday. I didn't know that you were friends with the Avatar.","Well, you're in the right place. Sorry about yesterday. I didn't know that you were friends with the Avatar.",Nick Malis,Giancarlo Volpe,8.2 +819,819,Water,1,The Warriors of Kyoshi,4,Sokka,"[Stretching his arms.] It's all right. [Mockingly suppressing a laugh while speaking.] I mean, normally I'd hold a grudge, but seeing as you guys are a bunch of girls, I'll make an exception.","It's all right. I mean, normally I'd hold a grudge, but seeing as you guys are a bunch of girls, I'll make an exception.",Nick Malis,Giancarlo Volpe,8.2 +820,820,Water,1,The Warriors of Kyoshi,4,Suki,[Sarcastically.] I should hope so. A big strong man like you? We wouldn't stand a chance.,I should hope so. A big strong man like you? We wouldn't stand a chance.,Nick Malis,Giancarlo Volpe,8.2 +821,821,Water,1,The Warriors of Kyoshi,4,Sokka,"[Smugly.] True. But don't feel bad. After all, I'm the best warrior in my village.","True. But don't feel bad. After all, I'm the best warrior in my village.",Nick Malis,Giancarlo Volpe,8.2 +822,822,Water,1,The Warriors of Kyoshi,4,Suki,"[Keeps using sarcasm without Sokka catching on to it. Leans slightly toward Sokka.] Wow! Best warrior, huh? [Glances back to the other Kyoshi Warriors.] In your whole village? [Looks back to Sokka.] Maybe you'd be kind enough to give us a little demonstration.","Wow! Best warrior, huh? In your whole village? Maybe you'd be kind enough to give us a little demonstration.",Nick Malis,Giancarlo Volpe,8.2 +823,823,Water,1,The Warriors of Kyoshi,4,Sokka,[Frontal view of Sokka as his eyes widen upon hearing the unexpected request.] Oh ... Well ... I mean ... I ...,Oh ... Well ... I mean ... I ...,Nick Malis,Giancarlo Volpe,8.2 +824,824,Water,1,The Warriors of Kyoshi,4,Suki,"[Turns to the other warriors.] Come on, girls! Wouldn't you like him to show us some moves?","Come on, girls! Wouldn't you like him to show us some moves?",Nick Malis,Giancarlo Volpe,8.2 +825,825,Water,1,The Warriors of Kyoshi,4,Scene Description,The camera switches position and shows the other female warrior giggling and smiling in agreement. Switch back to a side-view of Sokka and Suki.,NA,Nick Malis,Giancarlo Volpe,8.2 +826,826,Water,1,The Warriors of Kyoshi,4,Sokka,"Well, if that's what you want, I'd be happy to. [He places his hands on Suki's shoulder in order to push her back a little, but she does not move a bit.] All right, you stand over there. Now, this may be a little tough, but try to block me.","Well, if that's what you want, I'd be happy to. All right, you stand over there. Now, this may be a little tough, but try to block me.",Nick Malis,Giancarlo Volpe,8.2 +827,827,Water,1,The Warriors of Kyoshi,4,Scene Description,"While he is talking, Sokka takes on a fighting stance while Suki has not moved a muscle from the position Sokka has put her in. Sokka bends through his knees and attacks the female warrior by trying to punch her. Suki does not move, but easily defends herself by bringing up her left arm and thrusting her closed fan against Sokka's shoulder. His cries out in pain and staggers backward.",NA,Nick Malis,Giancarlo Volpe,8.2 +828,828,Water,1,The Warriors of Kyoshi,4,Sokka,"[Rubbing his hurt right shoulder. Impressed.] Aw! Heh heh ... Good. Of course, I was going easy on you.","Aw! Heh heh ... Good. Of course, I was going easy on you.",Nick Malis,Giancarlo Volpe,8.2 +829,829,Water,1,The Warriors of Kyoshi,4,Suki,[Close-up of Suki's confident face.] Of course.,Of course.,Nick Malis,Giancarlo Volpe,8.2 +830,830,Water,1,The Warriors of Kyoshi,4,Scene Description,Cut to a side-view. Sokka is clearly annoyed and angered by Suki's arrogant facial expression.,NA,Nick Malis,Giancarlo Volpe,8.2 +831,831,Water,1,The Warriors of Kyoshi,4,Sokka,"[He starts with a mumble, raising his tone of voice with each word.] Let's see if you can [Shouting while he attempts to hit Suki with a roundhouse kick.] handle this!",Let's see if you can handle this!,Nick Malis,Giancarlo Volpe,8.2 +832,832,Water,1,The Warriors of Kyoshi,4,Scene Description,"Suki quickly dodges under Sokka's outstretched leg and pushes him off balance. When the Water Tribe warrior lands flat on his back with a loud thud, Suki lazily opens her fans to wave herself some air. Sokka, a little shocked by his second failure, loses his temper at the sight of Suki's defiant posture.",NA,Nick Malis,Giancarlo Volpe,8.2 +833,833,Water,1,The Warriors of Kyoshi,4,Sokka,[His voice cracking in anger.] That does it!,That does it!,Nick Malis,Giancarlo Volpe,8.2 +834,834,Water,1,The Warriors of Kyoshi,4,Scene Description,"He gets up and madly charges her again. Suki quickly closes her fan and moves out of Sokka's way. She grabs him by the arm with her right hand, while she pushes against his shoulder with her left hand, quickly spinning him around. After two turns, she switches position and spins Sokka in the other direction. Close-up of Sokka's distressed face as he is powerlessly being tossed around. Switch to a wider shot as Suki suddenly halts Sokka so he topples forward. Before falling down, Suki loosens Sokka's belt and ties his left hand to his right foot behind his back in one swift movement. Sokka tries so maintain his balance for a while by jumping on one leg, but it is not long before he loses footage and smacks down flat on his face.",NA,Nick Malis,Giancarlo Volpe,8.2 +835,835,Water,1,The Warriors of Kyoshi,4,Suki,[Mockingly.] Anything else you want to teach us?,Anything else you want to teach us?,Nick Malis,Giancarlo Volpe,8.2 +836,836,Water,1,The Warriors of Kyoshi,4,Scene Description,"Sokka blushes in humiliation as the Kyoshi Warriors laugh at him. +Switch to an overview of Kyoshi Village where Aang and his fangirls are standing before Kyoshi's statue. The camera slowly moves toward the group before changing to a bird view of Aang and the girls that are looking up at the statue. One girl to the right of Aang is carrying a passed out Momo.",NA,Nick Malis,Giancarlo Volpe,8.2 +837,837,Water,1,The Warriors of Kyoshi,4,Aang,"There she is, girls. Me in a past life.","There she is, girls. Me in a past life.",Nick Malis,Giancarlo Volpe,8.2 +838,838,Water,1,The Warriors of Kyoshi,4,Scene Description,Scene switches to a frog view of the statue.,NA,Nick Malis,Giancarlo Volpe,8.2 +839,839,Water,1,The Warriors of Kyoshi,4,Fangirls,Ooohhh ...,Ooohhh ...,Nick Malis,Giancarlo Volpe,8.2 +840,840,Water,1,The Warriors of Kyoshi,4,Koko,[Admiringly.] You were pretty!,You were pretty!,Nick Malis,Giancarlo Volpe,8.2 +841,841,Water,1,The Warriors of Kyoshi,4,Scene Description,Aang turns to look at her with a wondering look upon his face. He looks at the rest of his fangirls like he is searching for someone.,NA,Nick Malis,Giancarlo Volpe,8.2 +842,842,Water,1,The Warriors of Kyoshi,4,Aang,"[Holding up a finger to draw their attention.] Excuse me for a second, ladies.","Excuse me for a second, ladies.",Nick Malis,Giancarlo Volpe,8.2 +843,843,Water,1,The Warriors of Kyoshi,4,Scene Description,"The girls do not say anything, but there cheerful expression changes to one of disappointment. +The scene switches to a frontal view of Katara who filling a pot with groceries. Aang comes up behind her, smiling, and gives her a gentle poke to get her attention.",NA,Nick Malis,Giancarlo Volpe,8.2 +844,844,Water,1,The Warriors of Kyoshi,4,Katara,"[Turns around in surprise, but is happy to see that the poke came from Aang.] Oh, good! Can you help me carry this back to the room? [She moves the pot toward Aang.] It's a little heavy.","Oh, good! Can you help me carry this back to the room? It's a little heavy.",Nick Malis,Giancarlo Volpe,8.2 +845,845,Water,1,The Warriors of Kyoshi,4,Aang,"[Holding up his hands to fob off with the offered pot.] Actually, I can't right now.","Actually, I can't right now.",Nick Malis,Giancarlo Volpe,8.2 +846,846,Water,1,The Warriors of Kyoshi,4,Katara,"[Slightly irritated.] What do you mean, ""you can't?""","What do you mean, ""you can't?""",Nick Malis,Giancarlo Volpe,8.2 +847,847,Water,1,The Warriors of Kyoshi,4,Aang,I promised the girls I'd give them a ride on Appa. Why don't you come with us? It'll be fun!,I promised the girls I'd give them a ride on Appa. Why don't you come with us? It'll be fun!,Nick Malis,Giancarlo Volpe,8.2 +848,848,Water,1,The Warriors of Kyoshi,4,Katara,[Resumed filling the pot with more vegetables.] Watching you show off for a bunch of girls does not sound like fun.,Watching you show off for a bunch of girls does not sound like fun.,Nick Malis,Giancarlo Volpe,8.2 +849,849,Water,1,The Warriors of Kyoshi,4,Aang,"[Disappointed.] Well, neither does carrying your basket.","Well, neither does carrying your basket.",Nick Malis,Giancarlo Volpe,8.2 +850,850,Water,1,The Warriors of Kyoshi,4,Katara,"[Annoyed.] It's not my basket. These supplies are for our trip. I told you, we have to leave Kyoshi soon.","It's not my basket. These supplies are for our trip. I told you, we have to leave Kyoshi soon.",Nick Malis,Giancarlo Volpe,8.2 +851,851,Water,1,The Warriors of Kyoshi,4,Aang,"[Central focus on Aang.] I don't want to leave Kyoshi yet. I can't put my finger on it, [He puts his hand to his chin in a thinking posture; the camera pans to the right, showing Aang's fangirls better in the background.] but there's something I really like about this place.","I don't want to leave Kyoshi yet. I can't put my finger on it, but there's something I really like about this place.",Nick Malis,Giancarlo Volpe,8.2 +852,852,Water,1,The Warriors of Kyoshi,4,Scene Description,The fangirls giggle. Shot switches to a closer shot of the girls.,NA,Nick Malis,Giancarlo Volpe,8.2 +853,853,Water,1,The Warriors of Kyoshi,4,Koko,"[Stomping her foot in annoyance and puts her hands on her hips, while another girl happily waves at Aang; irritated.] What's taking you so long, Aangy?","What's taking you so long, Aangy?",Nick Malis,Giancarlo Volpe,8.2 +854,854,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut back to Aang and Katara; the former enthusiastically waves back at his awaiting fangirls, while the latter raises an eyebrow at the scene.",NA,Nick Malis,Giancarlo Volpe,8.2 +855,855,Water,1,The Warriors of Kyoshi,4,Katara,[Slightly mocking.] Aangy ...,Aangy ...,Nick Malis,Giancarlo Volpe,8.2 +856,856,Water,1,The Warriors of Kyoshi,4,Aang,"[Enthusiastically.] Just a second, Koko!","Just a second, Koko!",Nick Malis,Giancarlo Volpe,8.2 +857,857,Water,1,The Warriors of Kyoshi,4,Katara,"[Sarcastic.] ""Simple monk"", huh? [Annoyed.] I thought you promised me that this Avatar stuff wouldn't go to your head.","""Simple monk"", huh? I thought you promised me that this Avatar stuff wouldn't go to your head.",Nick Malis,Giancarlo Volpe,8.2 +858,858,Water,1,The Warriors of Kyoshi,4,Aang,It didn't. You know what I think? You just don't want to come because you're jealous.,It didn't. You know what I think? You just don't want to come because you're jealous.,Nick Malis,Giancarlo Volpe,8.2 +859,859,Water,1,The Warriors of Kyoshi,4,Katara,[Close-up; angrily.] Jealous? [More high pitched voice.] Of what?,Jealous? Of what?,Nick Malis,Giancarlo Volpe,8.2 +860,860,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to a broader shot. Aang moves back slightly, when an irritated Katara resumes to ferociously stuff the basket with more fruits.",NA,Nick Malis,Giancarlo Volpe,8.2 +861,861,Water,1,The Warriors of Kyoshi,4,Aang,Jealous that we're having so much fun without you.,Jealous that we're having so much fun without you.,Nick Malis,Giancarlo Volpe,8.2 +862,862,Water,1,The Warriors of Kyoshi,4,Katara,[Irritated.] That's ridiculous.,That's ridiculous.,Nick Malis,Giancarlo Volpe,8.2 +863,863,Water,1,The Warriors of Kyoshi,4,Aang,"It is a little ridiculous, but I understand.","It is a little ridiculous, but I understand.",Nick Malis,Giancarlo Volpe,8.2 +864,864,Water,1,The Warriors of Kyoshi,4,Scene Description,"Katara turns to Aang, towering over him with her hands trust in her sides, like she is about to come down on him, but reconsiders.",NA,Nick Malis,Giancarlo Volpe,8.2 +865,865,Water,1,The Warriors of Kyoshi,4,Katara,[Turning away; irritated.] Urch!,Urch!,Nick Malis,Giancarlo Volpe,8.2 +866,866,Water,1,The Warriors of Kyoshi,4,Scene Description,"She grabs the heavy basket and staggers away, while Aang's fangirls run on screen and crowd around him, pulling him backward out of the screen. +Scene switches to Sokka who is standing outside of the Kyoshi Warriors' training hut. He kicks away a rock before turning toward the dojo. Cut to a shot from inside the dojo where Suki shows a movement that is copied by the eight other warriors behind here. Sokka walks in and the Kyoshi Warriors interrupt their training to face him.",NA,Nick Malis,Giancarlo Volpe,8.2 +867,867,Water,1,The Warriors of Kyoshi,4,Sokka,"[Timidly.] Uh ... Hey, Suki.","Uh ... Hey, Suki.",Nick Malis,Giancarlo Volpe,8.2 +868,868,Water,1,The Warriors of Kyoshi,4,Suki,[Hostile.] Hoping for another dance lesson?,Hoping for another dance lesson?,Nick Malis,Giancarlo Volpe,8.2 +869,869,Water,1,The Warriors of Kyoshi,4,Sokka,"[Cut to a shot of Sokka who does not know how to act.] No ... I ... well, let me explain.","No ... I ... well, let me explain.",Nick Malis,Giancarlo Volpe,8.2 +870,870,Water,1,The Warriors of Kyoshi,4,Suki,[Close-up of Suki; hostile.] Spit it out! What do you want?,Spit it out! What do you want?,Nick Malis,Giancarlo Volpe,8.2 +871,871,Water,1,The Warriors of Kyoshi,4,Sokka,[Sokka looks hurt at Suki's hostility. He humbly drops to his knees in front of her.] I would be honored if you would teach me.,I would be honored if you would teach me.,Nick Malis,Giancarlo Volpe,8.2 +872,872,Water,1,The Warriors of Kyoshi,4,Suki,[Frog view of Suki; hostile.] Even if I'm a girl?,Even if I'm a girl?,Nick Malis,Giancarlo Volpe,8.2 +873,873,Water,1,The Warriors of Kyoshi,4,Sokka,[Averting his eyes.] I'm sorry if I insulted you earlier. I was ... wrong.,I'm sorry if I insulted you earlier. I was ... wrong.,Nick Malis,Giancarlo Volpe,8.2 +874,874,Water,1,The Warriors of Kyoshi,4,Suki,"[Cut to a side-view of the two; Suki has her arms crossed while looking down upon Sokka.] We normally don't teach outsiders, let alone boys.","We normally don't teach outsiders, let alone boys.",Nick Malis,Giancarlo Volpe,8.2 +875,875,Water,1,The Warriors of Kyoshi,4,Sokka,[Raises his head to face her; pleading.] Please make an exception. [Bowing again.] I won't let you down.,Please make an exception. I won't let you down.,Nick Malis,Giancarlo Volpe,8.2 +876,876,Water,1,The Warriors of Kyoshi,4,Suki,[Frog view; on a friendlier tone.] All right. But you have to follow all of our traditions.,All right. But you have to follow all of our traditions.,Nick Malis,Giancarlo Volpe,8.2 +877,877,Water,1,The Warriors of Kyoshi,4,Sokka,[Close-up; eagerly.] Of course!,Of course!,Nick Malis,Giancarlo Volpe,8.2 +878,878,Water,1,The Warriors of Kyoshi,4,Suki,[Smiling.] And I mean all of them.,And I mean all of them.,Nick Malis,Giancarlo Volpe,8.2 +879,879,Water,1,The Warriors of Kyoshi,4,Scene Description,The episode jumps to a few moments later when Sokka is standing in the dojo donned in the typical green dress of the Kyoshi Warriors and sporting the white face paint.,NA,Nick Malis,Giancarlo Volpe,8.2 +880,880,Water,1,The Warriors of Kyoshi,4,Sokka,[Embarrassed looking down at his wardrobe.] Do I really have to wear this? It feels a little ... [Lower his arms in defeat.] girly.,Do I really have to wear this? It feels a little ... girly.,Nick Malis,Giancarlo Volpe,8.2 +881,881,Water,1,The Warriors of Kyoshi,4,Suki,"It's a warrior's uniform, you should be proud. [Closeup of Sokka, the camera pans down to reveal the entire uniform close by.] The silk threads symbolize the brave blood that flows through our veins. The gold insignia represents the honor of the warrior's heart.","It's a warrior's uniform, you should be proud. The silk threads symbolize the brave blood that flows through our veins. The gold insignia represents the honor of the warrior's heart.",Nick Malis,Giancarlo Volpe,8.2 +882,882,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut back to a broader shot, Sokka looking more comfortable wearing ""a dress."" Aang passes by the front door looking in with interest while Sokka proudly erects himself.",NA,Nick Malis,Giancarlo Volpe,8.2 +883,883,Water,1,The Warriors of Kyoshi,4,Sokka,[Proudly.] Bravery and honor.,Bravery and honor.,Nick Malis,Giancarlo Volpe,8.2 +884,884,Water,1,The Warriors of Kyoshi,4,Aang,[Popping in; smiling broadly.] Hey Sokka! [Sokka winces upon hearing his name and slants his eyes and shoulders in embarrassment.] Nice dress!,Hey Sokka! Nice dress!,Nick Malis,Giancarlo Volpe,8.2 +885,885,Water,1,The Warriors of Kyoshi,4,Scene Description,"Suki turns to Aang, who speeds away, and looks back to the embarrassed Sokka with a content and broader smile on her face. +Cut to an outside-view of Aang walking through town. Switch to a close-up of a small cup filled with water. Katara is sitting beside it and moving her left hand over the cup, bending the water inside it. The camera follows the rising of the water and the scene changes to a broader view of the room. Katara is looking concentrated at the water when Aang walks in. She moves the plume of water up and down, right and left.",NA,Nick Malis,Giancarlo Volpe,8.2 +886,886,Water,1,The Warriors of Kyoshi,4,Aang,"[Confidently.] Katara, remember how Unagi almost got me yesterday?","Katara, remember how Unagi almost got me yesterday?",Nick Malis,Giancarlo Volpe,8.2 +887,887,Water,1,The Warriors of Kyoshi,4,Katara,"[Slants up her eyes in annoyance, which Aang can't see while continuing to practice her bending.] Yeah.",Yeah.,Nick Malis,Giancarlo Volpe,8.2 +888,888,Water,1,The Warriors of Kyoshi,4,Aang,"[Bragging.] Well, I'm gonna go ride it now. It's gonna be real dangerous.","Well, I'm gonna go ride it now. It's gonna be real dangerous.",Nick Malis,Giancarlo Volpe,8.2 +889,889,Water,1,The Warriors of Kyoshi,4,Katara,[Still not looking at Aang; disinterested.] Good for you.,Good for you.,Nick Malis,Giancarlo Volpe,8.2 +890,890,Water,1,The Warriors of Kyoshi,4,Aang,[Surprised.] You're not going to stop me?,You're not going to stop me?,Nick Malis,Giancarlo Volpe,8.2 +891,891,Water,1,The Warriors of Kyoshi,4,Katara,[Still disinterested.] Nope. Have fun.,Nope. Have fun.,Nick Malis,Giancarlo Volpe,8.2 +892,892,Water,1,The Warriors of Kyoshi,4,Aang,[Crossing his arms; defiant.] I will.,I will.,Nick Malis,Giancarlo Volpe,8.2 +893,893,Water,1,The Warriors of Kyoshi,4,Katara,[Growing irritated again.] Great.,Great.,Nick Malis,Giancarlo Volpe,8.2 +894,894,Water,1,The Warriors of Kyoshi,4,Aang,[Annoyed at Katara's lack of interest.] I know it's great.,I know it's great.,Nick Malis,Giancarlo Volpe,8.2 +895,895,Water,1,The Warriors of Kyoshi,4,Katara,[Irritated.] I'm glad you know.,I'm glad you know.,Nick Malis,Giancarlo Volpe,8.2 +896,896,Water,1,The Warriors of Kyoshi,4,Aang,[Annoyed.] I'm glad you're glad.,I'm glad you're glad.,Nick Malis,Giancarlo Volpe,8.2 +897,897,Water,1,The Warriors of Kyoshi,4,Katara,[Angry.] Good! [She loses control over the water and it splashed back into the bowl. Katara balls her fists in annoyance.],Good!,Nick Malis,Giancarlo Volpe,8.2 +898,898,Water,1,The Warriors of Kyoshi,4,Aang,[Emphasizing his reacting by swinging his hands.] Fine!,Fine!,Nick Malis,Giancarlo Volpe,8.2 +899,899,Water,1,The Warriors of Kyoshi,4,Scene Description,"Aang angrily turns around to walk out of the door. Before he leaves, however, he already glances back to Katara with a sorrowful expression on his face. Right after he leaves the room, Katara crosses her arms in protection and glances at the door, looking sad as well. She turns her head and raises her eyes in a combination of annoyance and regret. +Cut to a bird view shot of inside the Kyoshi Warriors' training dojo where Sokka is performing some exercises with a fan under the watchful eyes of Suki.",NA,Nick Malis,Giancarlo Volpe,8.2 +900,900,Water,1,The Warriors of Kyoshi,4,Suki,You're not going to master it in one day. Even I'm not that good.,You're not going to master it in one day. Even I'm not that good.,Nick Malis,Giancarlo Volpe,8.2 +901,901,Water,1,The Warriors of Kyoshi,4,Sokka,I think I'm starting to get it.,I think I'm starting to get it.,Nick Malis,Giancarlo Volpe,8.2 +902,902,Water,1,The Warriors of Kyoshi,4,Scene Description,Close-up of Sokka as he performs a series of well executed moves with his fan.,NA,Nick Malis,Giancarlo Volpe,8.2 +903,903,Water,1,The Warriors of Kyoshi,4,Sokka,Tah!,Tah!,Nick Malis,Giancarlo Volpe,8.2 +904,904,Water,1,The Warriors of Kyoshi,4,Scene Description,"As a last move, he closes the fan on throws it out of the dojo. The object flies straight into a tree, knocking down some of snow that had gathered on its branches.",NA,Nick Malis,Giancarlo Volpe,8.2 +905,905,Water,1,The Warriors of Kyoshi,4,Suki,"[Peeks her head around the door to look at the hit tree before turning back to Sokka. Friendly.] It's not about strength. Our technique is about using your opponents' force against them. Loosen up. [Retracts her own fan from her belt and points it at Sokka, who takes on a battle position.] Think of the fan as an extension of your arm. [Close-up of Sokka.] Wait for an opening and then ...",It's not about strength. Our technique is about using your opponents' force against them. Loosen up. Think of the fan as an extension of your arm. Wait for an opening and then ...,Nick Malis,Giancarlo Volpe,8.2 +906,906,Water,1,The Warriors of Kyoshi,4,Scene Description,"Suki charges Sokka, but he manages to evade her attack and uses the momentum of her speed against her, knocking her on her behind, much to her surprise.",NA,Nick Malis,Giancarlo Volpe,8.2 +907,907,Water,1,The Warriors of Kyoshi,4,Sokka,"[Looks surprised, quickly crosses his arms and looks smug.] Hmm ...",Hmm ...,Nick Malis,Giancarlo Volpe,8.2 +908,908,Water,1,The Warriors of Kyoshi,4,Suki,[Quickly gets up; irritated.] I fell on purpose to make you feel better!,I fell on purpose to make you feel better!,Nick Malis,Giancarlo Volpe,8.2 +909,909,Water,1,The Warriors of Kyoshi,4,Sokka,"[Points at Suki, exclaims ecstaticly.] I got you! Admit I got you!",I got you! Admit I got you!,Nick Malis,Giancarlo Volpe,8.2 +910,910,Water,1,The Warriors of Kyoshi,4,Scene Description,"Suki grabs Sokka's pointing finger and twists it, making Sokka twitch and grunt in pain.",NA,Nick Malis,Giancarlo Volpe,8.2 +911,911,Water,1,The Warriors of Kyoshi,4,Suki,"Okay, it was a lucky shot. [Releases the finger while smiling broadly. On a more serious tone.] Let's see if you can do it again.","Okay, it was a lucky shot. Let's see if you can do it again.",Nick Malis,Giancarlo Volpe,8.2 +912,912,Water,1,The Warriors of Kyoshi,4,Scene Description,"Camera moves to an overview shot as the two warriors prepare to battle again. Suki opens her fan threateningly and starts to circle around Sokka. +Cut to a back view scene of Aang swimming in the water, while his troop of fangirls can be seen on the shore in the background. Switch to a close shot of the six girls, either sitting or lying on the shore in boredom.",NA,Nick Malis,Giancarlo Volpe,8.2 +913,913,Water,1,The Warriors of Kyoshi,4,Koko,[Resting her head on her hand. Bored and impatiently.] What's taking so long?,What's taking so long?,Nick Malis,Giancarlo Volpe,8.2 +914,914,Water,1,The Warriors of Kyoshi,4,Aang,[Close-up; reassuring.] I'm sure it will be here any second! [Looking for a way to entertain the girls.] What about this?,I'm sure it will be here any second! What about this?,Nick Malis,Giancarlo Volpe,8.2 +915,915,Water,1,The Warriors of Kyoshi,4,Scene Description,"Aang takes out his marbles and spins them around between his hands with his airbending, smiling hopefully.",NA,Nick Malis,Giancarlo Volpe,8.2 +916,916,Water,1,The Warriors of Kyoshi,4,Little Girl,[Annoyed.] Not that again. Boring!,Not that again. Boring!,Nick Malis,Giancarlo Volpe,8.2 +917,917,Water,1,The Warriors of Kyoshi,4,Koko,[The girls stand up. Waving her arms to emphasize her question.] Where's Unagi? It's getting late.,Where's Unagi? It's getting late.,Nick Malis,Giancarlo Volpe,8.2 +918,918,Water,1,The Warriors of Kyoshi,4,Aang,[Waving from the water to the girls. Pleading.] Where're you going? Don't leave!,Where're you going? Don't leave!,Nick Malis,Giancarlo Volpe,8.2 +919,919,Water,1,The Warriors of Kyoshi,4,Koko,"[Holds her hands to her mouth to emphasize her yelling.] Sorry, Aang! Maybe next time.","Sorry, Aang! Maybe next time.",Nick Malis,Giancarlo Volpe,8.2 +920,920,Water,1,The Warriors of Kyoshi,4,Scene Description,"As the girls leave, the camera moves to a close-up of a disappointed Aang. He lowers himself to be partially under the water and starts blowing bubbles. Switch to a shot of the shore, where the last of the girls is leaving, but their place is taken by Katara who just arrived. Aang jumps up from the water and smiles.",NA,Nick Malis,Giancarlo Volpe,8.2 +921,921,Water,1,The Warriors of Kyoshi,4,Aang,[Happily.] Katara! You showed up!,Katara! You showed up!,Nick Malis,Giancarlo Volpe,8.2 +922,922,Water,1,The Warriors of Kyoshi,4,Katara,[Somewhat concerned.] I wanted to make sure you were safe. You really had me worried.,I wanted to make sure you were safe. You really had me worried.,Nick Malis,Giancarlo Volpe,8.2 +923,923,Water,1,The Warriors of Kyoshi,4,Aang,Back there you acted like you didn't care.,Back there you acted like you didn't care.,Nick Malis,Giancarlo Volpe,8.2 +924,924,Water,1,The Warriors of Kyoshi,4,Katara,[In a regretful voice.] I'm sorry.,I'm sorry.,Nick Malis,Giancarlo Volpe,8.2 +925,925,Water,1,The Warriors of Kyoshi,4,Aang,[Lowering his eyes.] Me too. I did let all that attention go to my head. I was being a jerk.,Me too. I did let all that attention go to my head. I was being a jerk.,Nick Malis,Giancarlo Volpe,8.2 +926,926,Water,1,The Warriors of Kyoshi,4,Katara,"[Smiling. Puts her hands beside her mouth, yelling in a joking manner.] Well, get out of the water before you catch a cold, you big jerk!","Well, get out of the water before you catch a cold, you big jerk!",Nick Malis,Giancarlo Volpe,8.2 +927,927,Water,1,The Warriors of Kyoshi,4,Aang,[Smiling broadly and starts to swing toward the shore.] On my way!,On my way!,Nick Malis,Giancarlo Volpe,8.2 +928,928,Water,1,The Warriors of Kyoshi,4,Scene Description,"Side-view of Aang swimming to the shore, when suddenly a giant dorsal fin appears from out of the water behind him. Close-up of Katara as her eyes open in shock and she draws a sharp breath in horror. Cut back to Aang, who is, still oblivious to the danger behind him, swimming toward her with a smile on his face. Suddenly Aang is swept away by a wave and lifted out of the water, while he is screaming in panic. He looks around to find himself sitting on the back of Unagi as the monstrous eel erects itself before him, and directs a powerful jet of water to him. Aang withstands the water by holding on to one of the smaller dorsal fins of Unagi. The animal charges Aang and tries to eat him, but Aang narrowly escapes by catching one of Unagi's whiskers. Screaming his lungs out, he dangles from side to side in from of the big green eye of Unagi. +Cut to a shot from inside Unagi's mouth, looking out as Aang comes to a halt right in front of him. The enormous tongue moves from side to side in anticipation of the meal. Cut to a broader shot of the two as Unagi suddenly and violently moves his head in all directions, trying to snatch Aang of his whisker.",NA,Nick Malis,Giancarlo Volpe,8.2 +929,929,Water,1,The Warriors of Kyoshi,4,Katara,"[Worried.] Hang on, Aang!","Hang on, Aang!",Nick Malis,Giancarlo Volpe,8.2 +930,930,Water,1,The Warriors of Kyoshi,4,Scene Description,"Close-up of a terrified Aang as he holds on to the whisker for dear life. Unagi tosses him some more from side to side, and Aang finally lets go from the force and speed of the throw. He is thrown through the air, still screaming loudly, and smacks in the water, not so far from where Katara is standing on the shore. He emerges back to the surface, clearly unconscious with his tongue out of his mouth. The camera pans up to show a heavily panting and fully clothed Katara entering the water.",NA,Nick Malis,Giancarlo Volpe,8.2 +931,931,Water,1,The Warriors of Kyoshi,4,Katara,Aang!,Aang!,Nick Malis,Giancarlo Volpe,8.2 +932,932,Water,1,The Warriors of Kyoshi,4,Scene Description,"Unagi shrieks and dives under to get to his unconscious prey. Close-up of a worried Katara who is moving toward Aang through the water as fast as she can. The camera switches between shots of a rapidly approaching shadow underneath the water of Unagi, and a heavily panting Katara in her frantic effort to reach Aang before the eel. The moment Katara reaches Aang and takes him into her arm, Unagi emerges right in front of them. In an attempt to get away, Katara violently pushes the water, propelling herself and Aang backward with her waterbending; at the same time, Unagi snatches the water where they were just moments before. Although missing the duo, the impact of Unagi's attack creates a giant wave that slams Katara and Aang back to the rocks on shore. Angered, the animal spews power streams of water to the rocks before submerging again.",NA,Nick Malis,Giancarlo Volpe,8.2 +933,933,Water,1,The Warriors of Kyoshi,4,Katara,[Carefully peeking over the rock.] Zuko!,Zuko!,Nick Malis,Giancarlo Volpe,8.2 +934,934,Water,1,The Warriors of Kyoshi,4,Scene Description,"Close-up of the fast approaching ship of the banished prince. A side-view shows that the ship reaches shore at the same moment Unagi's large dorsal fin submerges completely underneath the water. Closer shot when the ship's walkway is lowered; a frontal shot of three riders mounted on komodo rhino's, with Zuko in the lead.",NA,Nick Malis,Giancarlo Volpe,8.2 +935,935,Water,1,The Warriors of Kyoshi,4,Zuko,I want the Avatar alive.,I want the Avatar alive.,Nick Malis,Giancarlo Volpe,8.2 +936,936,Water,1,The Warriors of Kyoshi,4,Scene Description,"Katara crawls up some rocks to have a better view of the approaching prince and his soldiers. Switch to a scene of the sky that quickly pans down to reveal how Zuko and his man ride past Katara and Aang's hiding place. Katara protectively covers the body of the still unconscious Aang, while worriedly looking up and hearing the riders move past. When she is certain the riders have past, Katara lays Aang on his back.",NA,Nick Malis,Giancarlo Volpe,8.2 +937,937,Water,1,The Warriors of Kyoshi,4,Katara,"[Worriedly.] Wake up, Aang!","Wake up, Aang!",Nick Malis,Giancarlo Volpe,8.2 +938,938,Water,1,The Warriors of Kyoshi,4,Scene Description,"She looks around for a while before starting to move her left hand over his chest, while supporting his head with her right. She moves her hand from his chest to his mouth, and bends out the water he had swallowed.",NA,Nick Malis,Giancarlo Volpe,8.2 +939,939,Water,1,The Warriors of Kyoshi,4,Aang,[Coughing out the last of the water. In a weak voice.] Katara ... [Katara lovingly smiles at him with relief written all over her face.] don't ride Unagi. Not fun.,Katara ... don't ride Unagi. Not fun.,Nick Malis,Giancarlo Volpe,8.2 +940,940,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to an outside shot of the Kyoshi Warriors' dojo. Inside Suki and Sokka are still training. Momo is hanging by his tail on one of the support beams of the roof. He has a collection of sweets with him which he is eating while watching the duo below him train. The camera moves closer to the duo on the ground, where Suki thrusts her hand, holding the fan forward, only to have it blocked by Sokka.",NA,Nick Malis,Giancarlo Volpe,8.2 +941,941,Water,1,The Warriors of Kyoshi,4,Suki,[Smiling while impressed.] Not bad.,Not bad.,Nick Malis,Giancarlo Volpe,8.2 +942,942,Water,1,The Warriors of Kyoshi,4,Scene Description,"Sokka smiles back at her with confidence, when suddenly Oyaji appears in the door.",NA,Nick Malis,Giancarlo Volpe,8.2 +943,943,Water,1,The Warriors of Kyoshi,4,Oyaji,"[Sokka and Suki worriedly turn to him. Alarmed.] Firebenders have landed on our shores! [Suki immediately runs to him while he turns to head back to the town.] Girls, come quickly!","Firebenders have landed on our shores! Girls, come quickly!",Nick Malis,Giancarlo Volpe,8.2 +944,944,Water,1,The Warriors of Kyoshi,4,Sokka,"[Protesting.] Hey, I'm not a ... [Momo jumps on his shoulder and pushes himself off toward the door. Conceding.] oh, whatever!","Hey, I'm not a ... oh, whatever!",Nick Malis,Giancarlo Volpe,8.2 +945,945,Water,1,The Warriors of Kyoshi,4,Scene Description,"Sokka runs out of the room. +The camera pans up to show the deserted main street of the village. Zuko and three other soldiers mounted on komodo rhinos are standing at the base of the Kyoshi statue.",NA,Nick Malis,Giancarlo Volpe,8.2 +946,946,Water,1,The Warriors of Kyoshi,4,Zuko,"[Frog view close-up.] Come out, Avatar! [Camera pans from left to right, revealing how several villagers are hiding in the nearby houses.] You can't hide from me forever! [Camera focuses on the four riders while moving away from them over the main street, showing that there is not any movement in the village. Side-view of Zuko.] Find him.","Come out, Avatar! You can't hide from me forever! Find him.",Nick Malis,Giancarlo Volpe,8.2 +947,947,Water,1,The Warriors of Kyoshi,4,Scene Description,"As Zuko gives the command, the camera follows how the other three rhinos move into town. Cut to a shot of a fan being opened on a nearby roof. Cut to a side shot of two rhinos with their riders as one of the Kyoshi Warriors quickly passes them by behind some houses. Cut to a frontal view of the three rhinos, before switching to a shot of the running feet of a Kyoshi Warrior atop a snowy roof. When she pushes herself off, the scene switches to a frog view of the three rhinos and there riders as three Kyoshi Warriors come jumping toward them from atop nearby roofs, knocking off some of the riders. A Kyoshi Warriors lands in front of the lead rhino and opens her fans. The rider stabs at her with his spear. She moves to the right, disarms the rider, and jumps up to knock him off his steed with a spinning kick. Suki can be seen running past in the background. +Cut to a frontal view of a concentrated Suki while she runs toward Zuko. Switch to a back view of Suki, who moves to the left to avoid a fire blast of the prince. She jumps over another blast and tries to attack Zuko from the air, but he turns his rhino. The beast slams Suki away with a might sweep of his tail, knocking her down. Zuko shoots a fire blast at the downed warrior, but right before it would have burned her, Sokka jumps before her and decimates the flames with a sweep of his fan. Sokka prepares to fight Zuko, but before he can do anything, another Kyoshi Warrior jumps of a nearby roof and knocks a surprised Zuko of his rhino; the beast dashes away.",NA,Nick Malis,Giancarlo Volpe,8.2 +948,948,Water,1,The Warriors of Kyoshi,4,Sokka,I guess training's over.,I guess training's over.,Nick Malis,Giancarlo Volpe,8.2 +949,949,Water,1,The Warriors of Kyoshi,4,Scene Description,"Sokka glances at Suki before running to the downed prince. Close-up of Zuko angrily opening his eyes. The camera moves back to reveal how Sokka, Suki, and the other Kyoshi Warrior all take on a fighting stance. Zuko pushes himself up and rapidly spins around on his hand while shooting fire out of his feet, knocking the Kyoshi Warrior back into the house and slamming Suki against a wooden pole, where she collapses in pain. Zuko proceeds with a low fire kick in Sokka's direction. The Water Tribe Warrior jumps over the fire, but as soon as he lands again, Zuko sweeps his feet from underneath him. Sokka falls in his back, and Zuko jumps over him to the middle of the street. He angrily looks around. Camera moves back to reveal the completely deserted street.",NA,Nick Malis,Giancarlo Volpe,8.2 +950,950,Water,1,The Warriors of Kyoshi,4,Zuko,"Nice try, Avatar! But these little girls can't save you.","Nice try, Avatar! But these little girls can't save you.",Nick Malis,Giancarlo Volpe,8.2 +951,951,Water,1,The Warriors of Kyoshi,4,Aang,[Close-up of Zuko.] Hey! Over here!,Hey! Over here!,Nick Malis,Giancarlo Volpe,8.2 +952,952,Water,1,The Warriors of Kyoshi,4,Scene Description,"Zuko turns around. Close-up of a determined Aang standing at the beginning of the main street, holding his staff in front of him like he is challenging the prince.",NA,Nick Malis,Giancarlo Volpe,8.2 +953,953,Water,1,The Warriors of Kyoshi,4,Zuko,Finally!,Finally!,Nick Malis,Giancarlo Volpe,8.2 +954,954,Water,1,The Warriors of Kyoshi,4,Scene Description,"Zuko commences by sending two fire balls in Aang's direction. Back view of Aang as he prepares to face the incoming, burning projectiles. He ducks underneath the first and uses his staff to decimate the next fire ball. He rapidly spins the staff over his head, propelling himself in the air. He lands in front of Zuko, who immediately kicks the staff out of his hands. Aang jumps up and lands between two fans of a Kyoshi Warrior that are lying on the ground. He stands up and picks us the fan with his airbending. Close-up of Zuko, who madly charges Aang with his fist already held stretched out before him. Aang spins around a few times to create a bigger momentum and uses the extra power of his swirl to blast Zuko in a nearby house with a strong blast of air. Aang looks sad and lowers the fans. He runs down the main street and picks up his staff along the way. Aang tosses the object in the air, where it snaps open into his glider and jumps on. A close-up of a saddened Aang, switches to the scene he is seeing: a lot of burning houses and the Fire Nation troops among them. Aang looks back to see the burning statue of Avatar Kyoshi, which saddens Aang even more. +Cut to an overview shot of Katara as she is leading Koko and another village girl into a house.",NA,Nick Malis,Giancarlo Volpe,8.2 +955,955,Water,1,The Warriors of Kyoshi,4,Katara,Get inside.,Get inside.,Nick Malis,Giancarlo Volpe,8.2 +956,956,Water,1,The Warriors of Kyoshi,4,Scene Description,Aang lands and Katara turns to face him as he walks over to her.,NA,Nick Malis,Giancarlo Volpe,8.2 +957,957,Water,1,The Warriors of Kyoshi,4,Aang,[Sorrowful.] Look what I brought to this place.,Look what I brought to this place.,Nick Malis,Giancarlo Volpe,8.2 +958,958,Water,1,The Warriors of Kyoshi,4,Katara,It's not your fault.,It's not your fault.,Nick Malis,Giancarlo Volpe,8.2 +959,959,Water,1,The Warriors of Kyoshi,4,Aang,"[Close-up. Upset.] Yes, it is. These people got their town destroyed trying to protect me.","Yes, it is. These people got their town destroyed trying to protect me.",Nick Malis,Giancarlo Volpe,8.2 +960,960,Water,1,The Warriors of Kyoshi,4,Scene Description,"Camera turns to Katara. Five little girls can be seen behind her in the house. Koko stands in the doorway holding Momo, whole the girl next to her peeks around the door frame with a worried look upon her face.",NA,Nick Malis,Giancarlo Volpe,8.2 +961,961,Water,1,The Warriors of Kyoshi,4,Katara,"Then let's get out of here. Zuko will leave Kyoshi to follow us. I know it feels wrong to run, but I think it's the only way.","Then let's get out of here. Zuko will leave Kyoshi to follow us. I know it feels wrong to run, but I think it's the only way.",Nick Malis,Giancarlo Volpe,8.2 +962,962,Water,1,The Warriors of Kyoshi,4,Aang,[Sad.] I'll call Appa.,I'll call Appa.,Nick Malis,Giancarlo Volpe,8.2 +963,963,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to a Kyoshi Warrior who deflects a fire blast with her fan, and retaliates by throwing her other closed fan to the firebender. With a load clung, the object makes contact with the bender's helmet, knocking him on his behind. The camera moves backward through an ally. Two retreating Warriors can be soon, deflecting fire balls left and right, before the camera pans to the left, revealing Sokka and Suki squatting behind a house.",NA,Nick Malis,Giancarlo Volpe,8.2 +964,964,Water,1,The Warriors of Kyoshi,4,Suki,There's no time to say goodbye.,There's no time to say goodbye.,Nick Malis,Giancarlo Volpe,8.2 +965,965,Water,1,The Warriors of Kyoshi,4,Sokka,"What about, ""I'm sorry?""","What about, ""I'm sorry?""",Nick Malis,Giancarlo Volpe,8.2 +966,966,Water,1,The Warriors of Kyoshi,4,Suki,[Surprised.] For what?,For what?,Nick Malis,Giancarlo Volpe,8.2 +967,967,Water,1,The Warriors of Kyoshi,4,Sokka,[Close-up. Regretful.] I treated you like a girl when I should've treated you like a warrior.,I treated you like a girl when I should've treated you like a warrior.,Nick Malis,Giancarlo Volpe,8.2 +968,968,Water,1,The Warriors of Kyoshi,4,Suki,"[Side-view.] I am a warrior. [She leans over and kisses Sokka on the cheek, before continuing again. A surprised Sokka touches his cheek where Suki just kissed him.] But I'm a girl, too. [Cut to shot of Sokka who blushes; cut to Suki who stands in the alleyway, her fan slid open to fight.] Now get out of here! We'll hold them off.","I am a warrior. But I'm a girl, too. Now get out of here! We'll hold them off.",Nick Malis,Giancarlo Volpe,8.2 +969,969,Water,1,The Warriors of Kyoshi,4,Scene Description,Sokka stands up and runs to Appa who was lying ready a few meters further. Both Momo and Sokka run up Appa's tale.,NA,Nick Malis,Giancarlo Volpe,8.2 +970,970,Water,1,The Warriors of Kyoshi,4,Aang,"[Pulling the reins.] Appa, yip yip!","Appa, yip yip!",Nick Malis,Giancarlo Volpe,8.2 +971,971,Water,1,The Warriors of Kyoshi,4,Scene Description,Appa groans and takes off. A frog view shows how the bison flies over the burning buildings.,NA,Nick Malis,Giancarlo Volpe,8.2 +972,972,Water,1,The Warriors of Kyoshi,4,Zuko,Back to the ship! Don't lose sight of them!,Back to the ship! Don't lose sight of them!,Nick Malis,Giancarlo Volpe,8.2 +973,973,Water,1,The Warriors of Kyoshi,4,Scene Description,"Zuko and his men turn and run toward the coast where their ship is docked. +Cut to shot of the group flying away on Appa. Katara and Sokka are in the saddle, Aang on his head, and the burning village of Kyoshi is behind them.",NA,Nick Malis,Giancarlo Volpe,8.2 +974,974,Water,1,The Warriors of Kyoshi,4,Katara,"[Peeking over the rim of the saddle to address a saddened Aang. Sokka is wiping of the face paint with his sleeve.] I know it's hard, but you did the right thing. [Gesturing toward the town.] Zuko would have destroyed the whole place if we had stayed. [Comforting.] They're going to be okay, Aang.","I know it's hard, but you did the right thing. Zuko would have destroyed the whole place if we had stayed. They're going to be okay, Aang.",Nick Malis,Giancarlo Volpe,8.2 +975,975,Water,1,The Warriors of Kyoshi,4,Scene Description,"Aang looks up with a determined look on his face. The camera zooms in on him, when he suddenly jumps off Appa, the camera following his free fall.",NA,Nick Malis,Giancarlo Volpe,8.2 +976,976,Water,1,The Warriors of Kyoshi,4,Katara,[Shocked; off-camera.] What are you doing?,What are you doing?,Nick Malis,Giancarlo Volpe,8.2 +977,977,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to shot of the surface of the ocean as Aang plunges into the water. Switches back to a shot of Katara and Sokka, his face cleaned of the warrior make-up, peering over the edge of the saddle, wide-eyed in chock. Momo peeks over the rim as well beside Katara. Cut back to a shot of the surface, where a few ripples betray the nearing emerging of something. The water bubbles and suddenly Unagi shoots out of the water with Aang on top of his head, holding his whiskers. After swaying about a few times, he sturdies himself atop Unagi's head and pulls the creature's barbels. Unagi opens its mouth wide and begins gushing water which rains over the town. Cut to shot of the village houses as the fires are put out by the rain. Cut to shot of a drenched Zuko and his men mounted on the rhinos, Zuko looking angered and his men looking surprised. Unagi ceases to gush water and launches Aang into the air, who is subsequently caught by an overflying Appa. +Cut to shot of Oyaji viewing the spectacle from a building, his back to the camera. Switch to a frontal shot.",NA,Nick Malis,Giancarlo Volpe,8.2 +978,978,Water,1,The Warriors of Kyoshi,4,Oyaji,"[Gratefully smiling.] Thank you, Avatar.","Thank you, Avatar.",Nick Malis,Giancarlo Volpe,8.2 +979,979,Water,1,The Warriors of Kyoshi,4,Aang,"[Side-view of Aang mounting Appa's saddle.] I know, I know. That was stupid and dangerous.","I know, I know. That was stupid and dangerous.",Nick Malis,Giancarlo Volpe,8.2 +980,980,Water,1,The Warriors of Kyoshi,4,Katara,"[Smiling as Aang sits down.] Yes, it was.","Yes, it was.",Nick Malis,Giancarlo Volpe,8.2 +981,981,Water,1,The Warriors of Kyoshi,4,Scene Description,"Cut to Aang whom Katara suddenly hugs. Aang smiles and inhales deeply before sighing and closing his eyes, happily. Cut to shot of the ocean, Unagi disappearing below the surface of the water.",NA,Nick Malis,Giancarlo Volpe,8.2 +982,982,Water,1,The Warriors of Kyoshi,4,Scene Description,Fade to credits.,NA,Nick Malis,Giancarlo Volpe,8.2 +983,983,Water,1,The King of Omashu,5,Scene Description,"The episode opens with a close-up of a snow-covered patch of grass. The scene pans up to reveal Aang, with Katara, Sokka, Appa and Momo in his trail, reaching the top of a hill. Aang spreads his arms wide while the camera shifts to a back view of the group to reveal their view.",NA,John O'Bryan,Anthony Lioi,8.2 +984,984,Water,1,The King of Omashu,5,Aang,The Earth Kingdom city of Omashu! [Camera pans up from the group to show the entire pyramid structured city of Omashu. Close-up of an excited Aang.] I used to always come here to visit my friend Bumi.,The Earth Kingdom city of Omashu! I used to always come here to visit my friend Bumi.,John O'Bryan,Anthony Lioi,8.2 +985,985,Water,1,The King of Omashu,5,Katara,[Close-up; impressed.] Wow. We don't have buildings like this in the South Pole!,Wow. We don't have buildings like this in the South Pole!,John O'Bryan,Anthony Lioi,8.2 +986,986,Water,1,The King of Omashu,5,Sokka,[Close-up; overwhelmed.] They have buildings here that don't melt!,They have buildings here that don't melt!,John O'Bryan,Anthony Lioi,8.2 +987,987,Water,1,The King of Omashu,5,Aang,"[Back view of the siblings, with Aang and the city visible between them. Excitedly.] Well let's go, slow pokes. The real fun's inside the city!","Well let's go, slow pokes. The real fun's inside the city!",John O'Bryan,Anthony Lioi,8.2 +988,988,Water,1,The King of Omashu,5,Scene Description,Aang leaps off the top of the hill with his airbending. The camera position shifts to show that he had landed a few meters below and in the snow and is starting to slide down.,NA,John O'Bryan,Anthony Lioi,8.2 +989,989,Water,1,The King of Omashu,5,Katara,"[Stretching her arm out to him, halting Aang with her cry.] Wait, Aang! It could be dangerous if people find out you're the Avatar.","Wait, Aang! It could be dangerous if people find out you're the Avatar.",John O'Bryan,Anthony Lioi,8.2 +990,990,Water,1,The King of Omashu,5,Sokka,[Somewhat seriously.] You need a disguise.,You need a disguise.,John O'Bryan,Anthony Lioi,8.2 +991,991,Water,1,The King of Omashu,5,Aang,[Shot of Aang looking up.] So what am I supposed to do? [In a slightly sarcastic tone.] Grow a mustache?,So what am I supposed to do? Grow a mustache?,John O'Bryan,Anthony Lioi,8.2 +992,992,Water,1,The King of Omashu,5,Scene Description,"Cut to a shot of Aang wiggling his nose under which is now a patch of Appa's fur, serving as a mustache. The camera zooms back to show that Aang is also wearing a tall wig made of the same material.",NA,John O'Bryan,Anthony Lioi,8.2 +993,993,Water,1,The King of Omashu,5,Aang,[Scratching underneath the wig.] Ugh. This is so itchy. [Cut to a broader shot; Aang is standing beside Appa. To Appa.] How do you live in this stuff?,Ugh. This is so itchy. How do you live in this stuff?,John O'Bryan,Anthony Lioi,8.2 +994,994,Water,1,The King of Omashu,5,Scene Description,"Appa slowly turns his head toward Aang and snorts at him as if he was scoffing. Cut to a shot of Sokka sitting on a rock with Katara standing beside him, arms crossed.",NA,John O'Bryan,Anthony Lioi,8.2 +995,995,Water,1,The King of Omashu,5,Sokka,Great! Now you look just like my grandfather.,Great! Now you look just like my grandfather.,John O'Bryan,Anthony Lioi,8.2 +996,996,Water,1,The King of Omashu,5,Katara,"[Glancing at Sokka.] Technically, Aang is 112 years old.","Technically, Aang is 112 years old.",John O'Bryan,Anthony Lioi,8.2 +997,997,Water,1,The King of Omashu,5,Scene Description,Aang nimbly kicks up his staff and spins it rapidly around before placing it upright on the ground to be used as a walking stick. He hunches his back and leans heavily on his staff like an old person.,NA,John O'Bryan,Anthony Lioi,8.2 +998,998,Water,1,The King of Omashu,5,Aang,"[In an old man's voice.] Now let's get to skippin', young whipper-snappers. The big city awaits!","Now let's get to skippin', young whipper-snappers. The big city awaits!",John O'Bryan,Anthony Lioi,8.2 +999,999,Water,1,The King of Omashu,5,Scene Description,"Aang shuffles out of the frame, while Sokka and Katara questioningly look at each other. The scene fades to shot of the chasm, panning upward to show Aang, Katara, and Sokka walking down the long path to Omashu. The shot changes to an overview of the path while the camera pans down, before shifting to an upward panning shot of the back of the trio to end with a center shot of the city.",NA,John O'Bryan,Anthony Lioi,8.2 +1000,1000,Water,1,The King of Omashu,5,Aang,You guys are going to love Omashu. [Cut to front view shot as the three friends walk toward the gate. Aang looks over his shoulder at Sokka.] The people here are the friendliest in the world.,You guys are going to love Omashu. The people here are the friendliest in the world.,John O'Bryan,Anthony Lioi,8.2 +1001,1001,Water,1,The King of Omashu,5,Scene Description,Aang's eyes widen in surprise as he hears the harsh voice of the sentry. The trio stops walking.,NA,John O'Bryan,Anthony Lioi,8.2 +1002,1002,Water,1,The King of Omashu,5,Gate guard,[Angrily.] Rotten cabbages?! [Far off shot of three guards and a cabbage merchant with his cart in front of the closed gate of Omashu; harshly.] What kind of slum do you think this is?!,Rotten cabbages?! What kind of slum do you think this is?!,John O'Bryan,Anthony Lioi,8.2 +1003,1003,Water,1,The King of Omashu,5,Scene Description,"Closer shot of the talking guard as he squishes the cabbage he is holding and knocks another two cabbages out of the merchant's hands. He proceeds by earthbending a rock under the cart, catapulting it high in the air, making it tumble down the chasm with all the cabbages.",NA,John O'Bryan,Anthony Lioi,8.2 +1004,1004,Water,1,The King of Omashu,5,Cabbage merchant,[Leaning over the rim of the path. Dramatically waving his arms in despair.] No! My cabbages!,No! My cabbages!,John O'Bryan,Anthony Lioi,8.2 +1005,1005,Water,1,The King of Omashu,5,Scene Description,"The camera shifts to the left, where Katara, Sokka, and Aang appear and look over the rim, their mouths open in shock, as a loud crash is heard.",NA,John O'Bryan,Anthony Lioi,8.2 +1006,1006,Water,1,The King of Omashu,5,Aang,"[Close-up, broadly smiling; somewhat nervously.] Just keep smiling!",Just keep smiling!,John O'Bryan,Anthony Lioi,8.2 +1007,1007,Water,1,The King of Omashu,5,Scene Description,"While Aang walks over to the guards, Katara and Sokka give each other an uneasy look. Katara flashes her teeth in an awkward way and chuckles uncomfortably, while Sokka merely raises a doubtful eyebrow. Side-view as Aang approaches the sentries at the gate. The earthbender steps to the front and raises a boulder out of the ground before Aang and levitates it above his head.",NA,John O'Bryan,Anthony Lioi,8.2 +1008,1008,Water,1,The King of Omashu,5,Gate guard,[Aggressively with a glare.] State your business!,State your business!,John O'Bryan,Anthony Lioi,8.2 +1009,1009,Water,1,The King of Omashu,5,Scene Description,Aang quickly runs from underneath the boulder and toward the guard; he halts right in front of the surprised man.,NA,John O'Bryan,Anthony Lioi,8.2 +1010,1010,Water,1,The King of Omashu,5,Aang,"[In old man voice, poking the chest of the sentry.] My business is my business, young man, [Shot of the boulder crashing down due to the guards lack of concentration beside Katara and Sokka as they jump up slightly from the impact; close-up of Aang pointing a finger at the camera.] and none of yours! [Close-up of the guard, taken aback by the threateningly pointing finger just centimeters from his face.] I've got half a mind to [Close-up of Sokka, eyes and mouth wide open in shock at Aang's audacity to talk to the sentry like that, and Katara, shaking her head with eyes wide open in shock.] bend you over my knee and paddle your backside!","My business is my business, young man, and none of yours! I've got half a mind to bend you over my knee and paddle your backside!",John O'Bryan,Anthony Lioi,8.2 +1011,1011,Water,1,The King of Omashu,5,Gate guard,"[In a calmer voice.] Settle down, old timer! Just tell me who you are.","Settle down, old timer! Just tell me who you are.",John O'Bryan,Anthony Lioi,8.2 +1012,1012,Water,1,The King of Omashu,5,Aang,"[Sokka and Katara are still in shock in the background; in old man voice.] Name's Bonzu Pippinpaddleopsicopolis, the Third, [Sokka raises a questioningly eyebrow while Katara walks up, smiling friendly.] and these are my grandkids.","Name's Bonzu Pippinpaddleopsicopolis, the Third, and these are my grandkids.",John O'Bryan,Anthony Lioi,8.2 +1013,1013,Water,1,The King of Omashu,5,Katara,[Waving.] Hi. June Pippinpaddleopsicopolis. Nice to meet you.,Hi. June Pippinpaddleopsicopolis. Nice to meet you.,John O'Bryan,Anthony Lioi,8.2 +1014,1014,Water,1,The King of Omashu,5,Gate guard,"[Pensively rubbing his beard, while eying the two children before him. Pointing at Katara.] You seem like a responsible young lady. See that your grandfather stays out of trouble. Enjoy Omashu!",You seem like a responsible young lady. See that your grandfather stays out of trouble. Enjoy Omashu!,John O'Bryan,Anthony Lioi,8.2 +1015,1015,Water,1,The King of Omashu,5,Scene Description,The guard steps aside and motions at the city's entrance.,NA,John O'Bryan,Anthony Lioi,8.2 +1016,1016,Water,1,The King of Omashu,5,Katara,[Lightheartedly.] We will!,We will!,John O'Bryan,Anthony Lioi,8.2 +1017,1017,Water,1,The King of Omashu,5,Scene Description,"Switch to side-view as Katara, Aang, and Sokka start walking toward the gate. Sokka passes the guard with an uneasy look on his face, never letting the guard out of sight.",NA,John O'Bryan,Anthony Lioi,8.2 +1018,1018,Water,1,The King of Omashu,5,Gate guard,"[Eying Sokka as he passes.] Wait a minute! [Close-up of Sokka as he halts, eyes widening in fear as the guard grasps his shoulder. Aang and Katara turn around to see what the holdup is. The guard turns Sokka around; sternly.] You're a strong young boy! Show some respect for the elderly and carry your grandfather's bag!",Wait a minute! You're a strong young boy! Show some respect for the elderly and carry your grandfather's bag!,John O'Bryan,Anthony Lioi,8.2 +1019,1019,Water,1,The King of Omashu,5,Scene Description,Sokka's eyes change from fright to disbelief and annoyance while Aang removes his shoulder bag.,NA,John O'Bryan,Anthony Lioi,8.2 +1020,1020,Water,1,The King of Omashu,5,Aang,[In old man voice.] Good idea!,Good idea!,John O'Bryan,Anthony Lioi,8.2 +1021,1021,Water,1,The King of Omashu,5,Scene Description,"Aang throws the bag at Sokka; the bag bounces off his head to drop into his arms. Sokka shoots Aang an annoyed glare over his shoulder. Overview shot as the trio resumes walking to the gate once more. Back shot view of the trio standing before a big Earth Kingdom emblem on the wall before them. The giant earthen wall splits open in the middle of the emblem, opening up to let any passengers through. The guard opens up the gate walls. As the first wall slides open, a second and third are bent aside as well. Upward panning shot of Katara and Sokka watching in awe at the spectacle while Aang is smiling behind them. They walk through as the walls already start to move again to close right after them. A back view of Aang as he walks through the opened gates, when suddenly Momo's ears pop out of his wig. Close-up of the guard that granted them entrance, as his eyes widen in surprise. He tries to keep an eye on Aang as long as he can, but the airbender is obscured from his view by the closing gates. +Switch to an overview shot from inside the city as the trio pulls up at the parapet at the rim of a nearby chasm. Closer shot of Sokka and Katara, excitedly taking in the city spread out before them as Aang pulls up next to them, Momo's head now entirely popped out of his wig. He leans on the rim as well and joins the siblings in mouth open gazing at Omashu's scenery. Cut to a shot of the streets filled with people. The camera pans up, revealing an intricate system of chutes. The aqueduct like structures are built over and beside the houses with typical green roofs.",NA,John O'Bryan,Anthony Lioi,8.2 +1022,1022,Water,1,The King of Omashu,5,Aang,[Back to regular voice; voice-over.] This is the Omashu delivery system. [Camera shows the top of the city.] Miles and miles of tubes and chutes.,This is the Omashu delivery system. Miles and miles of tubes and chutes.,John O'Bryan,Anthony Lioi,8.2 +1023,1023,Water,1,The King of Omashu,5,Scene Description,"Cut to four earthbenders standing beside a platform where one earthen cart slides out of the picture and another one filled with vegetables comes into view. As the cart passed one earthbender, he uses his bending to change the cart's directing and pushes it to the front, where another earthbender bends it up a tube to two other earthbenders standing at the ready to receive it. One earthbender quickly bends stone lintels underneath the cart so it would not fall down again, while the other one thrusts it off the platform, where it slides down a chute at high speed.",NA,John O'Bryan,Anthony Lioi,8.2 +1024,1024,Water,1,The King of Omashu,5,Aang,"[Voice-over.] Earthbending brings the packages up, and gravity brings them down.","Earthbending brings the packages up, and gravity brings them down.",John O'Bryan,Anthony Lioi,8.2 +1025,1025,Water,1,The King of Omashu,5,Sokka,"[Cut back to the trio; unimpressed.] Great, so they get their mail on time.","Great, so they get their mail on time.",John O'Bryan,Anthony Lioi,8.2 +1026,1026,Water,1,The King of Omashu,5,Aang,"[Excitedly.] They do get their mail on time, [Close-up of Aang.] but my friend Bumi found [Squints eyes mischievously.] a better use for these chutes.","They do get their mail on time, but my friend Bumi found a better use for these chutes.",John O'Bryan,Anthony Lioi,8.2 +1027,1027,Water,1,The King of Omashu,5,Scene Description,"Scene fades to a flashback to a hundred years ago, when Aang visited the city before. Back shot of a young Bumi watching over the city. When Aang walks up, he excitedly jumps around.",NA,John O'Bryan,Anthony Lioi,8.2 +1028,1028,Water,1,The King of Omashu,5,Bumi,[Excitedly.] Look around you! What do you see?,Look around you! What do you see?,John O'Bryan,Anthony Lioi,8.2 +1029,1029,Water,1,The King of Omashu,5,Aang,[Unsurely.] Um ... The mail system?,Um ... The mail system?,John O'Bryan,Anthony Lioi,8.2 +1030,1030,Water,1,The King of Omashu,5,Bumi,"[Pointing his finger in the air and waving it around while Aang walks up to him.] Instead of seeing what they want you to see, [Leaning toward Aang.] you got to open your brain to the possibilities.","Instead of seeing what they want you to see, you got to open your brain to the possibilities.",John O'Bryan,Anthony Lioi,8.2 +1031,1031,Water,1,The King of Omashu,5,Aang,[Uncomprehending.] A package-sending system?,A package-sending system?,John O'Bryan,Anthony Lioi,8.2 +1032,1032,Water,1,The King of Omashu,5,Bumi,[Excitedly; camera moves back to show the start of one of the chutes.] The world's greatest superslide!,The world's greatest superslide!,John O'Bryan,Anthony Lioi,8.2 +1033,1033,Water,1,The King of Omashu,5,Aang,"[Close-up of a crazed smiling Bumi, and a broadly smiling Aang.] Bumi, you're a mad genius!","Bumi, you're a mad genius!",John O'Bryan,Anthony Lioi,8.2 +1034,1034,Water,1,The King of Omashu,5,Scene Description,"Bumi chuckles with an odd snort as the camera slowly moves to a close-up. Cut to a shot of Aang and Bumi riding down the ""superslide"", happily laughing. Bumi throws his hands in the air as they hurtle out of the scene. +Slowly, the scene fades back to present day; the lush, green tree the duo passed, now old, snow-covered and without leaves. The camera moves up the slope, where the heads of Aang, with Momo in his wig, Katara and Sokka can be seen above the rim. Scene switches to a closer shot, revealing that they are sitting in a mail cart. Aang looks excited, while the siblings look around them, unsure and slightly frightened.",NA,John O'Bryan,Anthony Lioi,8.2 +1035,1035,Water,1,The King of Omashu,5,Aang,"[Raising one finger to emphasize his words; the cart rocking back and forth, creaking.] One ride. Then we're off to the North Pole. Airbender's honor.",One ride. Then we're off to the North Pole. Airbender's honor.,John O'Bryan,Anthony Lioi,8.2 +1036,1036,Water,1,The King of Omashu,5,Katara,"[Uneasy.] It sounded like fun at first, [Shot switches to a bird's eye view, fully revealing the steepness of the chute.] but now that I'm here, I'm starting to have second [Aang leans forward, tipping the balance of the box, sending it down the slope at a tremendous speed, making Katara scream out her last word.] th-o-o-oughts!","It sounded like fun at first, but now that I'm here, I'm starting to have second th-o-o-oughts!",John O'Bryan,Anthony Lioi,8.2 +1037,1037,Water,1,The King of Omashu,5,Scene Description,"Close-up of a happily laughing Aang. The camera moves up to reveal Momo in Aang's wig, holding on to the hair, squinting his eyes due to the wind. Camera shifts to the Water Tribe siblings, Katara screaming in fear, Sokka gritting his teeth in terror. Camera moves back as the cart makes a turn, and follows it down the slope. The chute they are riding pulls up next to a parallel one, where a cart with a rack of six spears is racing down. Switch to a side-view as the cart of the trio pulls up next to the cart with the spears and they all stare at it, no one making a sound. They race past it and both tracks join together. Sokka and Katara scream as the two chutes merge into one chute with the spear-cart behind them, but quickly gaining. Sokka hears it coming and turn around. He gasps and ducks just in time to avoid being skewered by the spears. Katara turns around, and screams in fear as she sees the weapons so close. Aang, smiling excitedly, turns as well to see what the commotion is all about.",NA,John O'Bryan,Anthony Lioi,8.2 +1038,1038,Water,1,The King of Omashu,5,Aang,[Excitedly.] I'm on it!,I'm on it!,John O'Bryan,Anthony Lioi,8.2 +1039,1039,Water,1,The King of Omashu,5,Scene Description,"Switch to a frontal view of the cart, as Aang begins to rock it. Hitting each side once, the cart flies out of the chute and onto a roof, where it continues its descent. +Cut to a shot of a soldier talking to his men.",NA,John O'Bryan,Anthony Lioi,8.2 +1040,1040,Water,1,The King of Omashu,5,Soldier,"Men, you'll be going off to combat soon. It's important that you be prepared for anything.","Men, you'll be going off to combat soon. It's important that you be prepared for anything.",John O'Bryan,Anthony Lioi,8.2 +1041,1041,Water,1,The King of Omashu,5,Scene Description,"Aang, Katara, and Sokka come in riding the cart between the soldier and the warriors. The scene freezes for a second at that shot as the sound of a little bell can be heard, before continuing. The warriors gasp in surprise as the cart ricochets and continues moving. Switch to a scene of other carts moving over a chute. The cart with the trio breaks through the railing closing off the other chute and crosses the track, knocking over one of the supply carts, spilling a load of pumpkins all over the ground. The knocked over cart lies on the track, where another incoming cart crashes into it. +Switch to a shot of a chute as the trio enters it. Switch to a front view of the speeding cart.",NA,John O'Bryan,Anthony Lioi,8.2 +1042,1042,Water,1,The King of Omashu,5,Katara,"[Scared.] Aang, do something! Use your airbending!","Aang, do something! Use your airbending!",John O'Bryan,Anthony Lioi,8.2 +1043,1043,Water,1,The King of Omashu,5,Aang,[Excitedly.] Yeah! Good idea! That'll make us go even faster!,Yeah! Good idea! That'll make us go even faster!,John O'Bryan,Anthony Lioi,8.2 +1044,1044,Water,1,The King of Omashu,5,Scene Description,"Aang airbends behind him. They pass by a restaurant, where a couple is eating together. They look up in surprise at the kids flashing by while the waiter dashes over to see what is going on. The scene switches to an earthbender soldier waiting for the arrival of the next cart. As a cart of scrolls stops in front of him, the camera tilts to the right, showing how the cart with the trio is flying down an incredibly steep slope. As the slope flattens out, the kids cry out in alarm as they are moments from colliding with the motionless cart in front of the bender. The earthbender on duty at that station sends it on its way, briefly relieving the trio in the speeding cart. Much to the riders' horror, another cart instantly pops up from the tube below the bender. Before it can be moved, the kids' cart crashes into it, catapulting them and their cart into the air, high above a lower level of the city. Aang airbends the cart in front of them as they fall, making them drop back into the cart. The kids ride down several roofs, leaving damaged tiles in their wake. The scene switches to inside a craftsman's home, where he whistles serenely as he puts the final touches on a vase. The cart flies through one window, ricochets off of the floor where the vase is, smashing it and making the riders grunt, and flying out the window opposite. The craftsman peers out the ruined window as a dust cloud emerges, revealing that the cart has crashed against something else.",NA,John O'Bryan,Anthony Lioi,8.2 +1045,1045,Water,1,The King of Omashu,5,Aang,Sorry!,Sorry!,John O'Bryan,Anthony Lioi,8.2 +1046,1046,Water,1,The King of Omashu,5,Scene Description,"They land on a balcony and slide through another house. Emerging on the other side, a bearded cat chases Momo around Aang's wig until the lemur pushes it off. The cart smashes through a parapet and drops vertically out of sight. The view changes to the same cabbage merchant that had his cabbage cart thrown into the abyss earlier, now cuddling a cabbage at a replacement cart. Alerted by something coming from up above, he walks from underneath the cart's roof to check it out, and gasps in horror as the kids' cart drops on it, smashing the replacement cart to pieces and scattering what intact cabbages are left all over. Aang, Katara, and Sokka are in a tangled heap by the remains, while Momo elegantly floats down.",NA,John O'Bryan,Anthony Lioi,8.2 +1047,1047,Water,1,The King of Omashu,5,Cabbage merchant,[Grasping his head in despair.] My cabbages! [Angrily.] You're gonna pay for this!,My cabbages! You're gonna pay for this!,John O'Bryan,Anthony Lioi,8.2 +1048,1048,Water,1,The King of Omashu,5,Scene Description,"Guards walk up, surrounding the still dazed trio. Close-up of Aang as he sits up, his disguise pretty much gone, revealing his youthful face and airbending arrow.",NA,John O'Bryan,Anthony Lioi,8.2 +1049,1049,Water,1,The King of Omashu,5,Aang,[Sheepishly.] Two cabbages please.,Two cabbages please.,John O'Bryan,Anthony Lioi,8.2 +1050,1050,Water,1,The King of Omashu,5,Scene Description,"The scene fades to the ceiling of the palace of Omashu. The camera pans down, revealing a watch guard in the front, and the King of Omashu sitting on his throne, flanked by two guards, in the back of an enormous room. The first watch guard slightly moves aside to let the three children pass. Sokka looks very uneasy, Katara slants her eyes up in an attempt to look sympathetic, and glances to the side. As she gazes at the king, the scene switches to a close-up of the elderly king, who looks at them questioningly, arching an eyebrow and grunting in wonder. The scene switches to a frontal view of the ""visitors"" as they are being pushed into a kneeling position by two guards.",NA,John O'Bryan,Anthony Lioi,8.2 +1051,1051,Water,1,The King of Omashu,5,Guard,"Your majesty, these juveniles were arrested for vandalism, traveling under false pretenses, and malicious destruction of cabbages.","Your majesty, these juveniles were arrested for vandalism, traveling under false pretenses, and malicious destruction of cabbages.",John O'Bryan,Anthony Lioi,8.2 +1052,1052,Water,1,The King of Omashu,5,Cabbage merchant,"[Jumping agitatedly up and down, waving his left fist in the air.] Off with their heads! One for each head of cabbage!",Off with their heads! One for each head of cabbage!,John O'Bryan,Anthony Lioi,8.2 +1053,1053,Water,1,The King of Omashu,5,Guard,"[Gesturing at the merchant.] Silence! Only the king can pass down judgment. What is your judgment, sire?","Silence! Only the king can pass down judgment. What is your judgment, sire?",John O'Bryan,Anthony Lioi,8.2 +1054,1054,Water,1,The King of Omashu,5,Scene Description,"The camera slowly moves in on the king who squints his eyes and grunts pensively. Switch to a close-up of the trio, who uneasily eye each other. A close-up of a whimpering Sokka, moves to one of a smiling Katara, her hands folded in front of her and her eyes twinkling hopefully. Aang is the only one who keeps staring at the side, one eyebrow arched and pouting. Switch to a close-up of the dissimilar eyes of the elderly king, before going back to a shot of Aang who now whistles nonchalantly.",NA,John O'Bryan,Anthony Lioi,8.2 +1055,1055,Water,1,The King of Omashu,5,Bumi,"[Raising his hand.] Throw them ... [Sokka, Katara, and Aang gasp.] a feast!",Throw them ... a feast!,John O'Bryan,Anthony Lioi,8.2 +1056,1056,Water,1,The King of Omashu,5,Scene Description,"The guard gasps and the merchant grasps his head with both hands in dismay upon hearing the king's verdict. Sokka is smiling, while Katara darts a questioningly look toward Aang, who arches his eyebrows in wonder. Cut to a richly-filled dining table. The camera pans to the right, revealing all sorts of different dishes and teapots. Camera zooms in on Momo as he eats a lot of the food, chittering contently. Switch to a frontal view of the children sitting at the table, the king standing behind their chairs.",NA,John O'Bryan,Anthony Lioi,8.2 +1057,1057,Water,1,The King of Omashu,5,Bumi,"[To Aang.] The people in my city have gotten fat from too many feasts, [Leaning in over Aang, grabbing the chicken leg that is on his plate, holding it in front of him.] so I hope you like your chicken with no skin.","The people in my city have gotten fat from too many feasts, so I hope you like your chicken with no skin.",John O'Bryan,Anthony Lioi,8.2 +1058,1058,Water,1,The King of Omashu,5,Aang,"Thanks, but I don't eat meat.","Thanks, but I don't eat meat.",John O'Bryan,Anthony Lioi,8.2 +1059,1059,Water,1,The King of Omashu,5,Bumi,[To Sokka.] How about you? I bet you like meat.,How about you? I bet you like meat.,John O'Bryan,Anthony Lioi,8.2 +1060,1060,Water,1,The King of Omashu,5,Scene Description,"Bumi stuffs the chicken into Sokka's mouth, who eats it appreciatively, and walks over to his own seat.",NA,John O'Bryan,Anthony Lioi,8.2 +1061,1061,Water,1,The King of Omashu,5,Katara,"[Quietly to Aang.] Is it just me, or [Turns circles with her index finger beside her temple, implying the king is crazy.] is this guy's crown a little crooked?","Is it just me, or is this guy's crown a little crooked?",John O'Bryan,Anthony Lioi,8.2 +1062,1062,Water,1,The King of Omashu,5,Bumi,"[Aerial shot of the dining table as Bumi pulls up to his seat.] So tell me, young bald one, [Sitting down.] where are you from?","So tell me, young bald one, where are you from?",John O'Bryan,Anthony Lioi,8.2 +1063,1063,Water,1,The King of Omashu,5,Aang,[Close-up.] I'm from ... Kangaroo Island!,I'm from ... Kangaroo Island!,John O'Bryan,Anthony Lioi,8.2 +1064,1064,Water,1,The King of Omashu,5,Bumi,"[Cut to the King, two guards standing watch behind him.] Oh, Kangaroo Island, eh? I hear that place is really hopping!","Oh, Kangaroo Island, eh? I hear that place is really hopping!",John O'Bryan,Anthony Lioi,8.2 +1065,1065,Water,1,The King of Omashu,5,Scene Description,"A moment of silence occurs, someone coughs off camera. Cut to a frontal shot of the three children, looking straight at the king with blank faces. Sokka bursts out laughing. Katara and Aang look at him, still with a blank expression.",NA,John O'Bryan,Anthony Lioi,8.2 +1066,1066,Water,1,The King of Omashu,5,Sokka,[Stops laughing; unsure.] What? It was pretty funny.,What? It was pretty funny.,John O'Bryan,Anthony Lioi,8.2 +1067,1067,Water,1,The King of Omashu,5,Bumi,"[Cut back to the king, who lazily stretches his arms, and yawns.] Well, all these good jokes are making me tired. Guess it's time to hit the hay.","Well, all these good jokes are making me tired. Guess it's time to hit the hay.",John O'Bryan,Anthony Lioi,8.2 +1068,1068,Water,1,The King of Omashu,5,Scene Description,"Bumi eyes the children with a weird expression as he leans to the left on his chair. Suddenly, he hurls a chicken leg at them. Close-up of the meat as it flies through the air. Cut to a side shot of the three children, as Aang nearly tumbles off his chair in reflex of catching the chicken leg in a small airball. Switch to guards gasping in surprise. Cut to a side shot of the entire table. Aang is still suspending the chicken leg in the airball.",NA,John O'Bryan,Anthony Lioi,8.2 +1069,1069,Water,1,The King of Omashu,5,Bumi,"[Gesturing at Aang.] There's an airbender in our presence, and not just any airbender. [Close-up as he decisively stands up.] The Avatar!","There's an airbender in our presence, and not just any airbender. The Avatar!",John O'Bryan,Anthony Lioi,8.2 +1070,1070,Water,1,The King of Omashu,5,Scene Description,"Close-up of a shocked Aang, who quickly stops bending and puts his hands behind his back. The chicken leg falls on his plate. Back shot of the three children, as Bumi continues.",NA,John O'Bryan,Anthony Lioi,8.2 +1071,1071,Water,1,The King of Omashu,5,Bumi,"[Sits down again.] Now, what do you have to say for yourself, [Close-up, smiling satisfied.] Mr. Pippinpaddleopsicopolis?","Now, what do you have to say for yourself, Mr. Pippinpaddleopsicopolis?",John O'Bryan,Anthony Lioi,8.2 +1072,1072,Water,1,The King of Omashu,5,Scene Description,"Camera fades to black before cutting to a frontal shot of the entire city of Omashu. Cut back to an overview shot from inside the dining room from behind Aang, Katara, and Sokka. Momo is still sitting in the middle of the table, eating.",NA,John O'Bryan,Anthony Lioi,8.2 +1073,1073,Water,1,The King of Omashu,5,Aang,"[Standing up, throwing his hands in the air.] Okay, you caught me. [Frontal shot of the three friends.] I'm the Avatar. Doing my Avatar thing, keeping the world safe. Everything checks out. [Aang looks underneath table.] No firebenders here. So, good work, everybody! [Pulling Katara and Sokka into a hug.] Love each other, [Cut to a dismayed looking king.] respect all life, [Cut to a shot of the threesome walking backward toward the exit.] and don't run with your spears. We'll see you next time!","Okay, you caught me. I'm the Avatar. Doing my Avatar thing, keeping the world safe. Everything checks out. No firebenders here. So, good work, everybody! Love each other, respect all life, and don't run with your spears. We'll see you next time!",John O'Bryan,Anthony Lioi,8.2 +1074,1074,Water,1,The King of Omashu,5,Scene Description,"As they near the guard at the exit door, the two men cross their spears, effectively blocking their paths. Camera zooms back to a back shot of the king.",NA,John O'Bryan,Anthony Lioi,8.2 +1075,1075,Water,1,The King of Omashu,5,Katara,[Accusingly.] You can't keep us here! Let us leave!,You can't keep us here! Let us leave!,John O'Bryan,Anthony Lioi,8.2 +1076,1076,Water,1,The King of Omashu,5,Scene Description,Frontal shot of the king as he questioningly picks up a lettuce leaf from his plate and waves it in the air.,NA,John O'Bryan,Anthony Lioi,8.2 +1077,1077,Water,1,The King of Omashu,5,Bumi,Lettuce leaf?,Lettuce leaf?,John O'Bryan,Anthony Lioi,8.2 +1078,1078,Water,1,The King of Omashu,5,Scene Description,Switch to a side shot of Bumi's mouth as he takes a bite out of a lettuce leaf and chews it slowly.,NA,John O'Bryan,Anthony Lioi,8.2 +1079,1079,Water,1,The King of Omashu,5,Sokka,[Cut to the threesome. Sokka holds his hand for his mouth; whispering.] We're in serious trouble. This guy is nuts.,We're in serious trouble. This guy is nuts.,John O'Bryan,Anthony Lioi,8.2 +1080,1080,Water,1,The King of Omashu,5,Bumi,"[Close-up.] Tomorrow, the Avatar will [Slowly zooming in close-up of Aang.] face three deadly challenges. [Back to Bumi.] But for now, the guards will show you to your chamber.","Tomorrow, the Avatar will face three deadly challenges. But for now, the guards will show you to your chamber.",John O'Bryan,Anthony Lioi,8.2 +1081,1081,Water,1,The King of Omashu,5,Chamberlain,"[Leaning in toward Bumi.] My liege, do you mean the good chamber or the bad chamber?","My liege, do you mean the good chamber or the bad chamber?",John O'Bryan,Anthony Lioi,8.2 +1082,1082,Water,1,The King of Omashu,5,Bumi,[Turning to the guard.] The newly refurbished chamber.,The newly refurbished chamber.,John O'Bryan,Anthony Lioi,8.2 +1083,1083,Water,1,The King of Omashu,5,Chamberlain,"[Putting finger in the air.] Wait, which one are we talking about?","Wait, which one are we talking about?",John O'Bryan,Anthony Lioi,8.2 +1084,1084,Water,1,The King of Omashu,5,Bumi,"The one that used to be the bad chamber, until the recent refurbishing, that is. Of course, we've been calling it the new chamber, but we really should number them. [Switch to a frontal shot of the three children as they are being led out of the room, flanked by two guards. Commanding.] Uh, take them to the refurbished chamber that was once bad!","The one that used to be the bad chamber, until the recent refurbishing, that is. Of course, we've been calling it the new chamber, but we really should number them. Uh, take them to the refurbished chamber that was once bad!",John O'Bryan,Anthony Lioi,8.2 +1085,1085,Water,1,The King of Omashu,5,Scene Description,"As the children and their guards walk out of the room, the camera rapidly zooms in on Bumi's face. He stares at them before chewing on a new lettuce leaf. The scene changes to inside a room. A wall cracks and moves down, revealing Aang with Momo perched on his shoulders, Katara, and Sokka. They are roughly pushed inside, and the wall is immediately bent up again after them. Switch to a scene of the room, panning to the left, revealing the content of the room, and the fact that there is no door anywhere. The room has three green beds in the center with three green drapes hanging from the ceiling above them. The scene stops on the children.",NA,John O'Bryan,Anthony Lioi,8.2 +1086,1086,Water,1,The King of Omashu,5,Katara,This is a prison cell? But it's so nice.,This is a prison cell? But it's so nice.,John O'Bryan,Anthony Lioi,8.2 +1087,1087,Water,1,The King of Omashu,5,Aang,[Momo jumps off Aang's shoulders and onto a bed.] He did say it was newly refurbished.,He did say it was newly refurbished.,John O'Bryan,Anthony Lioi,8.2 +1088,1088,Water,1,The King of Omashu,5,Sokka,"Nice or not, we're prisoners!","Nice or not, we're prisoners!",John O'Bryan,Anthony Lioi,8.2 +1089,1089,Water,1,The King of Omashu,5,Aang,[Close-up; worried.] I wonder what these challenges are gonna to be.,I wonder what these challenges are gonna to be.,John O'Bryan,Anthony Lioi,8.2 +1090,1090,Water,1,The King of Omashu,5,Katara,[Determined.] We're not sticking around to find out. There's got to be some way out of here.,We're not sticking around to find out. There's got to be some way out of here.,John O'Bryan,Anthony Lioi,8.2 +1091,1091,Water,1,The King of Omashu,5,Aang,[Excitedly pointing at something at the other side of the room.] The air vents!,The air vents!,John O'Bryan,Anthony Lioi,8.2 +1092,1092,Water,1,The King of Omashu,5,Scene Description,"Scene quickly moves around the room and halts at a hole in the wall. Cut back to the trio. Aang smiles happily, staring at the hole, while Katara and Sokka eye each other in wonder.",NA,John O'Bryan,Anthony Lioi,8.2 +1093,1093,Water,1,The King of Omashu,5,Sokka,"[Harshly.] If you think we're going to fit through there, you're crazier than that king.","If you think we're going to fit through there, you're crazier than that king.",John O'Bryan,Anthony Lioi,8.2 +1094,1094,Water,1,The King of Omashu,5,Aang,"[Turning to Sokka.] We can't, but Momo can!","We can't, but Momo can!",John O'Bryan,Anthony Lioi,8.2 +1095,1095,Water,1,The King of Omashu,5,Scene Description,"Happily points in front of him. Cut to Momo lazily lying on the bed, licking a half-eaten apple. His belly protrudes from eating so much. Aang appears at the side of the bed.",NA,John O'Bryan,Anthony Lioi,8.2 +1096,1096,Water,1,The King of Omashu,5,Aang,"[Hopeful.] Momo, I need you to find Appa and bust us outta here!","Momo, I need you to find Appa and bust us outta here!",John O'Bryan,Anthony Lioi,8.2 +1097,1097,Water,1,The King of Omashu,5,Scene Description,"Momo looks up surprised to his friend, blinking and chittering softly. Cut to a shot from inside the air vent looking out. Momo's head appears and the animal is pushed inside the tube. The animal is shoved back and forth a few times, much to its displeasure. Cut to Aang standing on a chair, trying to push Momo into the air vent without success.",NA,John O'Bryan,Anthony Lioi,8.2 +1098,1098,Water,1,The King of Omashu,5,Aang,"Go on, boy, get Appa!","Go on, boy, get Appa!",John O'Bryan,Anthony Lioi,8.2 +1099,1099,Water,1,The King of Omashu,5,Scene Description,"Aang quits trying, looking down discouraged, leaving Momo stuck in the vent. Cut to Sokka who is relaxing on a bed.",NA,John O'Bryan,Anthony Lioi,8.2 +1100,1100,Water,1,The King of Omashu,5,Sokka,"Eh, how was Appa supposed to save us anyway?","Eh, how was Appa supposed to save us anyway?",John O'Bryan,Anthony Lioi,8.2 +1101,1101,Water,1,The King of Omashu,5,Scene Description,Cut to Momo trying to free himself by pushing against the wall with his hind legs.,NA,John O'Bryan,Anthony Lioi,8.2 +1102,1102,Water,1,The King of Omashu,5,Aang,[Voice-over.] Appa's a ten-ton flying bison; I think he could figure something out.,Appa's a ten-ton flying bison; I think he could figure something out.,John O'Bryan,Anthony Lioi,8.2 +1103,1103,Water,1,The King of Omashu,5,Scene Description,"Momo was unsuccessful and gives up, his hind legs hanging down in defeat. Cut to an overview shot of the three beds.",NA,John O'Bryan,Anthony Lioi,8.2 +1104,1104,Water,1,The King of Omashu,5,Katara,"[Climbing into her bed.] Well, no point arguing about it now. Get some rest, Aang. [Aang walks toward his bed.] Looks like you'll need it for tomorrow.","Well, no point arguing about it now. Get some rest, Aang. Looks like you'll need it for tomorrow.",John O'Bryan,Anthony Lioi,8.2 +1105,1105,Water,1,The King of Omashu,5,Scene Description,"Aang sadly sits on the side of his bed, looking down. Switch to the next scene of Aang lying on his bed, snoring loudly and drooling on his pillow. The room is only dimly lit, casting a somewhat green glow. The wall behind Aang opens, revealing a guard. The crunching sound of the earth being moved wakes Aang, who quickly raises his head and glances around.",NA,John O'Bryan,Anthony Lioi,8.2 +1106,1106,Water,1,The King of Omashu,5,Aang,[Alarmed.] Sokka? [Switch to Aang's point of view; the other beds are empty.] Katara? [Frontal shot as Aang turns toward the guard.] Where are my friends?,Sokka? Katara? Where are my friends?,John O'Bryan,Anthony Lioi,8.2 +1107,1107,Water,1,The King of Omashu,5,Guard,[Frontal shot.] The king will free them if you complete your challenges.,The king will free them if you complete your challenges.,John O'Bryan,Anthony Lioi,8.2 +1108,1108,Water,1,The King of Omashu,5,Aang,[Frontal shot; unsure.] And if I fail?,And if I fail?,John O'Bryan,Anthony Lioi,8.2 +1109,1109,Water,1,The King of Omashu,5,Guard,"[Frontal shot.] He didn't say. [Extending his arm; switch back to a shot of the guard.] Your staff, please?","He didn't say. Your staff, please?",John O'Bryan,Anthony Lioi,8.2 +1110,1110,Water,1,The King of Omashu,5,Scene Description,"Aang lifts his staff with his foot, grabs it, and spins it around, places it upright next to him, before tossing it to the guard. Switch to a frontal shot of Aang, flanked by two guards, entering the large throne room. The scene slightly pans to the left, showing a bit of King Bumi's back.",NA,John O'Bryan,Anthony Lioi,8.2 +1111,1111,Water,1,The King of Omashu,5,Bumi,"[Serious.] First, Avatar, [Frontal shot as Bumi spread his arms, showing off his purple outfit; lighthearted.] what do you think of my new outfit? I want your honest opinion. [Frontal shot of Aang who blankly stares at the king. Someone coughs during the ensuing silence. Switch back to a frontal shot of Bumi.] I'm waiting.","First, Avatar, what do you think of my new outfit? I want your honest opinion. I'm waiting.",John O'Bryan,Anthony Lioi,8.2 +1112,1112,Water,1,The King of Omashu,5,Aang,[Scratching his head.] I ... guess it's fine.,I ... guess it's fine.,John O'Bryan,Anthony Lioi,8.2 +1113,1113,Water,1,The King of Omashu,5,Bumi,Excellent! You passed the first test.,Excellent! You passed the first test.,John O'Bryan,Anthony Lioi,8.2 +1114,1114,Water,1,The King of Omashu,5,Aang,Really?,Really?,John O'Bryan,Anthony Lioi,8.2 +1115,1115,Water,1,The King of Omashu,5,Bumi,"[Upbeat.] Well, not one of the deadly tests. [Waving his finger from side to side, emphasizing his words.] The real challenges are much more, uh, challenging.","Well, not one of the deadly tests. The real challenges are much more, uh, challenging.",John O'Bryan,Anthony Lioi,8.2 +1116,1116,Water,1,The King of Omashu,5,Scene Description,"Cut to a side shot of Aang as he suddenly dashes forward to the surprise of his two guards. Using his airbending, his speed is enhanced. Close-up of his feet as he quickly crosses the distance between him and King Bumi. Cut to a back shot of Bumi as Aang halts in front of him, the wind passing over them.",NA,John O'Bryan,Anthony Lioi,8.2 +1117,1117,Water,1,The King of Omashu,5,Aang,[Aggressively.] I don't have time for your crazy games! [Close-up of King Bumi.] Give me my friends back! We're leaving!,I don't have time for your crazy games! Give me my friends back! We're leaving!,John O'Bryan,Anthony Lioi,8.2 +1118,1118,Water,1,The King of Omashu,5,Bumi,"Oh, I thought you might refuse, [Side shot of the two. A wall opens, revealing Katara and Sokka struggling in the grasp of a guard. Aang turns to them.] so I will give your friends some special souvenirs.","Oh, I thought you might refuse, so I will give your friends some special souvenirs.",John O'Bryan,Anthony Lioi,8.2 +1119,1119,Water,1,The King of Omashu,5,Scene Description,"Aang looks back at Bumi. Cut to a frightened Katara as her guard slides a green ring over her finger. Close-up of the ring being put on. The moment the guard retracts his hand, the ring glows and tightens around her finger. The scene broadens, showing Sokka has gotten a ring as well, his being blue, and is now frantically trying to remove it from his finger. Katara tries to pull it off as well, both are unsuccessful.",NA,John O'Bryan,Anthony Lioi,8.2 +1120,1120,Water,1,The King of Omashu,5,Bumi,"[Voice-over.] Those delightful rings are made of pure jennamite, also known as creeping crystal. It's a crystal that grows remarkably fast. [Close-up of Bumi; sinister.] By nightfall your friends will be completely covered in it. [Slightly sympathetic.] Terrible thing, really. [Serious.] I can stop it, but only if you cooperate.","Those delightful rings are made of pure jennamite, also known as creeping crystal. It's a crystal that grows remarkably fast. By nightfall your friends will be completely covered in it. Terrible thing, really. I can stop it, but only if you cooperate.",John O'Bryan,Anthony Lioi,8.2 +1121,1121,Water,1,The King of Omashu,5,Scene Description,Bumi glances toward the siblings. Cut to a shot of Sokka's finger now donning a blue jennamite ring. The ring glows and expands toward his hand.,NA,John O'Bryan,Anthony Lioi,8.2 +1122,1122,Water,1,The King of Omashu,5,Sokka,[Panicking.] Ah! It's already creeping!,Ah! It's already creeping!,John O'Bryan,Anthony Lioi,8.2 +1123,1123,Water,1,The King of Omashu,5,Aang,[Cut back to a side shot of Aang and Bumi; serious.] I'll do what you want.,I'll do what you want.,John O'Bryan,Anthony Lioi,8.2 +1124,1124,Water,1,The King of Omashu,5,Scene Description,"Close-up of an evil grinning Bumi. Scene changes to a cave filled with stalagmites and stalactites. Camera pans to the left where Aang stands on a flat rock with a waterfall in front of him. In the waterfall, there is a ladder, and above the ladder hangs a rope. Sokka, Katara, and Bumi are on a balcony cut into the wall to the left of the waterfall. King Bumi is laughing. Cut to a frontal shot of the king looking over the balcony rim. Katara and Sokka are guarded behind him. The jennamite ring has already expanded to engulf part of their right forearm. Bumi glances back at the siblings with a grin on his face. Close-up of the jennamite as it glows and creeps a bit further on the arms of Sokka and Katara. Switch to a back shot of Bumi as he is looking out toward where Aang is standing.",NA,John O'Bryan,Anthony Lioi,8.2 +1125,1125,Water,1,The King of Omashu,5,Bumi,"It seems I've lost my lunch box key and I'm hungry. Ooh, there it is! [Bumi points to inside the waterfall.] Would you mind fetching it for me?","It seems I've lost my lunch box key and I'm hungry. Ooh, there it is! Would you mind fetching it for me?",John O'Bryan,Anthony Lioi,8.2 +1126,1126,Water,1,The King of Omashu,5,Scene Description,"The key hanging from a chain and a vertical iron ladder are dimly visible behind the waterfall. Aang airbends to the base of the fall and plunges into the waterfall. He manages to climb up the rock face to the base of the ladder and grasp it with one hand. Before he can get any further, the torrent of water pushes him away and out.",NA,John O'Bryan,Anthony Lioi,8.2 +1127,1127,Water,1,The King of Omashu,5,Bumi,"[Sarcastically.] Ooh, climbing the ladder. No one's ever done that before.","Ooh, climbing the ladder. No one's ever done that before.",John O'Bryan,Anthony Lioi,8.2 +1128,1128,Water,1,The King of Omashu,5,Scene Description,"Panting, Aang rests a moment between two stalagmites, leaps from them to the stalactites above, and closer to the waterfall still high by the roof of the cavern. He dives into the fall above the key and tries to grab the key as he falls with the water; the rush of the water carries him past and in a moment he shoots out again, keyless.",NA,John O'Bryan,Anthony Lioi,8.2 +1129,1129,Water,1,The King of Omashu,5,Bumi,That's right. Keep diving head in. I'm sure it'll work eventually.,That's right. Keep diving head in. I'm sure it'll work eventually.,John O'Bryan,Anthony Lioi,8.2 +1130,1130,Water,1,The King of Omashu,5,Scene Description,"Aang cuts a stalagmite with airbending and throws it like a spear at the key, accelerating it with another air blast. The stone spear snags the chain suspending the key, and carries it out of the waterfall. The spear pierces the stone wall above the King's balcony, the key now dangling right in front of Bumi.",NA,John O'Bryan,Anthony Lioi,8.2 +1131,1131,Water,1,The King of Omashu,5,Aang,There! Enjoy your lunch! I want my friends back now!,There! Enjoy your lunch! I want my friends back now!,John O'Bryan,Anthony Lioi,8.2 +1132,1132,Water,1,The King of Omashu,5,Bumi,"Ah, not yet. I need help with another matter. It seems I've lost my pet, Flopsie.","Ah, not yet. I need help with another matter. It seems I've lost my pet, Flopsie.",John O'Bryan,Anthony Lioi,8.2 +1133,1133,Water,1,The King of Omashu,5,Scene Description,"Scene changes to Aang in a large sunken enclosure in a new room, with Bumi, Katara, and Sokka up above. Aang finds a lop-eared bunny.",NA,John O'Bryan,Anthony Lioi,8.2 +1134,1134,Water,1,The King of Omashu,5,Aang,Okay! Found him!,Okay! Found him!,John O'Bryan,Anthony Lioi,8.2 +1135,1135,Water,1,The King of Omashu,5,Bumi,Bring him to me. Daddy wants a kiss from Flopsie!,Bring him to me. Daddy wants a kiss from Flopsie!,John O'Bryan,Anthony Lioi,8.2 +1136,1136,Water,1,The King of Omashu,5,Aang,"Come here, Flopsie. [Flopsie jumps down behind Aang, startling both him and the bunny.] Huh?","Come here, Flopsie. Huh?",John O'Bryan,Anthony Lioi,8.2 +1137,1137,Water,1,The King of Omashu,5,Scene Description,"Squealing with terror, the bunny bolts across the arena with Aang in pursuit until it goes into a hole. Aang puts his arm in the hole up to the shoulder trying to grab hold of the frightened rabbit. The light dawns on his face.",NA,John O'Bryan,Anthony Lioi,8.2 +1138,1138,Water,1,The King of Omashu,5,Aang,"Flopsie, wait! Flopsie! [Cut to Bumi laughing. Back to Aang chasing the bunny.] Flopsie!","Flopsie, wait! Flopsie! Flopsie!",John O'Bryan,Anthony Lioi,8.2 +1139,1139,Water,1,The King of Omashu,5,Scene Description,"Aang puts his arm in the hole up to the shoulder trying to grab hold of the frightened rabbit. The light dawns on his face. The snarling goat gorilla bounds toward Aang but instead of attacking, picks him up and licks him.",NA,John O'Bryan,Anthony Lioi,8.2 +1140,1140,Water,1,The King of Omashu,5,Aang,Wait a minute. [Close-up of Flopsie snarling. Cut to behind Aang.] Flopsie?,Wait a minute. Flopsie?,John O'Bryan,Anthony Lioi,8.2 +1141,1141,Water,1,The King of Omashu,5,Scene Description,"The snarling goat gorilla bounds toward Aang but instead of attacking, picks him up and licks him.",NA,John O'Bryan,Anthony Lioi,8.2 +1142,1142,Water,1,The King of Omashu,5,Aang,Flopsie!,Flopsie!,John O'Bryan,Anthony Lioi,8.2 +1143,1143,Water,1,The King of Omashu,5,Scene Description,"Flopsie puts Aang down and, obeying a whistle from the king, climbs up from the arena to him and rolls onto his back, offering his belly.",NA,John O'Bryan,Anthony Lioi,8.2 +1144,1144,Water,1,The King of Omashu,5,Bumi,"[Rubbing Flopsie's belly.] Oh, that's a good boy. Yes, who has a soft belly?","Oh, that's a good boy. Yes, who has a soft belly?",John O'Bryan,Anthony Lioi,8.2 +1145,1145,Water,1,The King of Omashu,5,Aang,"[Aang jumps up to where Katara and Sokka. Both are encased in crystal to their shoulders.] Guys, are you okay?","Guys, are you okay?",John O'Bryan,Anthony Lioi,8.2 +1146,1146,Water,1,The King of Omashu,5,Katara,"Other than the crystals slowly encasing my entire body, doing great!","Other than the crystals slowly encasing my entire body, doing great!",John O'Bryan,Anthony Lioi,8.2 +1147,1147,Water,1,The King of Omashu,5,Scene Description,"At that moment, a crystal grows on one side of Sokka's body, making him become unbalanced and fall. Aang walks over to Bumi.",NA,John O'Bryan,Anthony Lioi,8.2 +1148,1148,Water,1,The King of Omashu,5,Bumi,"[Rubbing Flopsie's belly.] Oh, yes.","Oh, yes.",John O'Bryan,Anthony Lioi,8.2 +1149,1149,Water,1,The King of Omashu,5,Aang,Come on! I'm ready for the next challenge.,Come on! I'm ready for the next challenge.,John O'Bryan,Anthony Lioi,8.2 +1150,1150,Water,1,The King of Omashu,5,Scene Description,"The king gives an evil laugh and the scene dissolves to an earthbending arena. Aang and the king are on a balcony overlooking the arena, Sokka and Katara along with a guard are on an adjacent balcony. The crystals are past their heads, leaving their faces exposed.",NA,John O'Bryan,Anthony Lioi,8.2 +1151,1151,Water,1,The King of Omashu,5,Bumi,"Your final test is a duel. And as a special treat, you may choose your opponent.","Your final test is a duel. And as a special treat, you may choose your opponent.",John O'Bryan,Anthony Lioi,8.2 +1152,1152,Water,1,The King of Omashu,5,Scene Description,"Two tough-looking men come out, standing next to the king. Aang looks at them uncertainly.",NA,John O'Bryan,Anthony Lioi,8.2 +1153,1153,Water,1,The King of Omashu,5,Bumi,Point and choose.,Point and choose.,John O'Bryan,Anthony Lioi,8.2 +1154,1154,Water,1,The King of Omashu,5,Aang,"So ... you're saying whoever I point to, that's the person I get to fight?","So ... you're saying whoever I point to, that's the person I get to fight?",John O'Bryan,Anthony Lioi,8.2 +1155,1155,Water,1,The King of Omashu,5,Bumi,Choose wisely!,Choose wisely!,John O'Bryan,Anthony Lioi,8.2 +1156,1156,Water,1,The King of Omashu,5,Aang,I ... choose ... you. [Aang points to the king.],I ... choose ... you.,John O'Bryan,Anthony Lioi,8.2 +1157,1157,Water,1,The King of Omashu,5,Bumi,Wrong choice!,Wrong choice!,John O'Bryan,Anthony Lioi,8.2 +1158,1158,Water,1,The King of Omashu,5,Scene Description,"The king straightens up and removes his outer robe, proving himself to be a powerfully built old man. He earthbends Aang off of the balcony, making him fly into the arena. The king jumps down right in front of Aang, and laughs.",NA,John O'Bryan,Anthony Lioi,8.2 +1159,1159,Water,1,The King of Omashu,5,Bumi,"You thought I was a frail old man, but I'm the most powerful earthbender you'll ever see.","You thought I was a frail old man, but I'm the most powerful earthbender you'll ever see.",John O'Bryan,Anthony Lioi,8.2 +1160,1160,Water,1,The King of Omashu,5,Aang,Can I fight the guy with the axe instead?,Can I fight the guy with the axe instead?,John O'Bryan,Anthony Lioi,8.2 +1161,1161,Water,1,The King of Omashu,5,Bumi,There are no take-backsies in my kingdom. You might need this. [Points to the guard standing near Katara and Sokka.],There are no take-backsies in my kingdom. You might need this.,John O'Bryan,Anthony Lioi,8.2 +1162,1162,Water,1,The King of Omashu,5,Scene Description,The guard tosses Aang his staff. The king bends several rocks at Aang who just avoids and evades the attacks.,NA,John O'Bryan,Anthony Lioi,8.2 +1163,1163,Water,1,The King of Omashu,5,Bumi,Typical airbender tactic: avoid and evade. I hoped the Avatar would be less predictable.,Typical airbender tactic: avoid and evade. I hoped the Avatar would be less predictable.,John O'Bryan,Anthony Lioi,8.2 +1164,1164,Water,1,The King of Omashu,5,Scene Description,The king attacks Aang some more. Aang just keeps avoiding and evading.,NA,John O'Bryan,Anthony Lioi,8.2 +1165,1165,Water,1,The King of Omashu,5,Bumi,Don't you have any surprises for me? Sooner or later you'll have to strike back!,Don't you have any surprises for me? Sooner or later you'll have to strike back!,John O'Bryan,Anthony Lioi,8.2 +1166,1166,Water,1,The King of Omashu,5,Scene Description,"Aang uses his staff to helicopter into the air. The king bends a large boulder into the ceiling, raining rocks onto Aang, knocking him from the air. He charges at the king on foot, but a series of bending attacks leaves him flat atop a large rock pile",NA,John O'Bryan,Anthony Lioi,8.2 +1167,1167,Water,1,The King of Omashu,5,Bumi,You'll have to be a little more creative than that!,You'll have to be a little more creative than that!,John O'Bryan,Anthony Lioi,8.2 +1168,1168,Water,1,The King of Omashu,5,Scene Description,"Aang bends an air scooter and charges forward on it, throwing a huge air blast at the king as he comes. The king throws up a stone barrier and the blast deflects to both sides of it.",NA,John O'Bryan,Anthony Lioi,8.2 +1169,1169,Water,1,The King of Omashu,5,Bumi,Did someone leave the windows open? It feels a little drafty in here. Are you hoping I'll catch a cold?,Did someone leave the windows open? It feels a little drafty in here. Are you hoping I'll catch a cold?,John O'Bryan,Anthony Lioi,8.2 +1170,1170,Water,1,The King of Omashu,5,Scene Description,"The king bends more attacks at Aang, leading him across half of the arena.",NA,John O'Bryan,Anthony Lioi,8.2 +1171,1171,Water,1,The King of Omashu,5,Bumi,How are you going to get me from way over there?,How are you going to get me from way over there?,John O'Bryan,Anthony Lioi,8.2 +1172,1172,Water,1,The King of Omashu,5,Scene Description,"Aang charges forward on foot again, using airbending to accelerate but the king softens the arena floor, leaving him sunk to the waist. The king bends two stones to collide on the spot but Aang pops out at the top of them when they meet. Visibly angry now, he bends the slab the king is standing on all the way to the back of the arena. The king bends the largest boulder yet to come at Aang from behind but he does an air-assisted back flip over it. The king makes more bending moves, cracking the floors and walls of the arena, tearing out a huge chunk of the wall and balcony they had been standing on. Seeing what is coming, Aang gasps and runs in tight circles, conjuring a tornado. When the king flings the huge piece at Aang, it is caught in the tornado and instantly whips around right back at the king. The king bends it to sand before it can smash him, but before he can recover, Aang attacks from the top of the tornado, landing at the king's feet with his staff poised to strike. The king's arms are raised as if surrendering but a small pebble strikes Aang's head, drawing his attention to the large boulder suspended over the both of them.",NA,John O'Bryan,Anthony Lioi,8.2 +1173,1173,Water,1,The King of Omashu,5,Bumi,"Well done, Avatar. You fight with much fire in your heart. [He tosses the boulder aside and bends up to the balcony where the two siblings are almost completely encased. Aang joins him.] You've passed all my tests. Now, you must answer one question.","Well done, Avatar. You fight with much fire in your heart. You've passed all my tests. Now, you must answer one question.",John O'Bryan,Anthony Lioi,8.2 +1174,1174,Water,1,The King of Omashu,5,Aang,That's not fair! You said you would release my friends if I finished your tests.,That's not fair! You said you would release my friends if I finished your tests.,John O'Bryan,Anthony Lioi,8.2 +1175,1175,Water,1,The King of Omashu,5,Bumi,"Oh, but what's the point of tests if you don't learn anything?","Oh, but what's the point of tests if you don't learn anything?",John O'Bryan,Anthony Lioi,8.2 +1176,1176,Water,1,The King of Omashu,5,Sokka,"Oh, come on!","Oh, come on!",John O'Bryan,Anthony Lioi,8.2 +1177,1177,Water,1,The King of Omashu,5,Bumi,Answer this one question and I will set your friends free. What ... is my name? From the looks of your friends I'd say you only have a few minutes.,Answer this one question and I will set your friends free. What ... is my name? From the looks of your friends I'd say you only have a few minutes.,John O'Bryan,Anthony Lioi,8.2 +1178,1178,Water,1,The King of Omashu,5,Scene Description,Bumi walks out of frame. Aang confers with Katara and Sokka.,NA,John O'Bryan,Anthony Lioi,8.2 +1179,1179,Water,1,The King of Omashu,5,Aang,How am I supposed to know his name?,How am I supposed to know his name?,John O'Bryan,Anthony Lioi,8.2 +1180,1180,Water,1,The King of Omashu,5,Katara,Think about the challenges. Maybe it's some kind of riddle.,Think about the challenges. Maybe it's some kind of riddle.,John O'Bryan,Anthony Lioi,8.2 +1181,1181,Water,1,The King of Omashu,5,Sokka,I got it!,I got it!,John O'Bryan,Anthony Lioi,8.2 +1182,1182,Water,1,The King of Omashu,5,Aang,Yeah?,Yeah?,John O'Bryan,Anthony Lioi,8.2 +1183,1183,Water,1,The King of Omashu,5,Sokka,"He's an earthbender, right? Rocky. You know, because of all the rocks.","He's an earthbender, right? Rocky. You know, because of all the rocks.",John O'Bryan,Anthony Lioi,8.2 +1184,1184,Water,1,The King of Omashu,5,Katara,"We're going to keep trying, but that is a good back-up.","We're going to keep trying, but that is a good back-up.",John O'Bryan,Anthony Lioi,8.2 +1185,1185,Water,1,The King of Omashu,5,Aang,"Okay. So back to the challenges. I got a key from the waterfall, I saved his pet, and I had a duel.","Okay. So back to the challenges. I got a key from the waterfall, I saved his pet, and I had a duel.",John O'Bryan,Anthony Lioi,8.2 +1186,1186,Water,1,The King of Omashu,5,Katara,And what did you learn?,And what did you learn?,John O'Bryan,Anthony Lioi,8.2 +1187,1187,Water,1,The King of Omashu,5,Aang,"Well, everything was different than I expected.","Well, everything was different than I expected.",John O'Bryan,Anthony Lioi,8.2 +1188,1188,Water,1,The King of Omashu,5,Katara,[The jennamite grows as she talks with anxiety.] And?,And?,John O'Bryan,Anthony Lioi,8.2 +1189,1189,Water,1,The King of Omashu,5,Aang,"Well, they weren't straight forward. To solve each test, I had to think differently than I usually would. I know his name.","Well, they weren't straight forward. To solve each test, I had to think differently than I usually would. I know his name.",John O'Bryan,Anthony Lioi,8.2 +1190,1190,Water,1,The King of Omashu,5,Scene Description,Cut to Aang confronting Bumi.,NA,John O'Bryan,Anthony Lioi,8.2 +1191,1191,Water,1,The King of Omashu,5,Aang,"I solved the question the same way I solved the challenges. As you said a long time ago, I had to open my brain to the possibilities. [The king laughs with the same odd snort Bumi did a hundred years ago.] Bumi, you're a mad genius.","I solved the question the same way I solved the challenges. As you said a long time ago, I had to open my brain to the possibilities. Bumi, you're a mad genius.",John O'Bryan,Anthony Lioi,8.2 +1192,1192,Water,1,The King of Omashu,5,Scene Description,Aang and Bumi hug like old friends.,NA,John O'Bryan,Anthony Lioi,8.2 +1193,1193,Water,1,The King of Omashu,5,Bumi,"Oh Aang, it's good to see you. You haven't changed a bit. Literally.","Oh Aang, it's good to see you. You haven't changed a bit. Literally.",John O'Bryan,Anthony Lioi,8.2 +1194,1194,Water,1,The King of Omashu,5,Katara,"Uh, over here!","Uh, over here!",John O'Bryan,Anthony Lioi,8.2 +1195,1195,Water,1,The King of Omashu,5,Sokka,Little help?,Little help?,John O'Bryan,Anthony Lioi,8.2 +1196,1196,Water,1,The King of Omashu,5,Scene Description,"Bumi breaks the crystals using earthbending, making pieces fly everywhere. He catches one of them.",NA,John O'Bryan,Anthony Lioi,8.2 +1197,1197,Water,1,The King of Omashu,5,Bumi,Jennamite is made of rock candy. [He takes a bite into the crystal.] Delicious!,Jennamite is made of rock candy. Delicious!,John O'Bryan,Anthony Lioi,8.2 +1198,1198,Water,1,The King of Omashu,5,Katara,So this crazy king is your old friend Bumi?,So this crazy king is your old friend Bumi?,John O'Bryan,Anthony Lioi,8.2 +1199,1199,Water,1,The King of Omashu,5,Bumi,"Who are you calling old? Okay, I'm old.","Who are you calling old? Okay, I'm old.",John O'Bryan,Anthony Lioi,8.2 +1200,1200,Water,1,The King of Omashu,5,Sokka,Why did you do all of this instead of just telling Aang who you were?,Why did you do all of this instead of just telling Aang who you were?,John O'Bryan,Anthony Lioi,8.2 +1201,1201,Water,1,The King of Omashu,5,Bumi,"First of all, it's pretty fun messing with people. [Snorts.] But I do have a reason. Aang, you have a difficult task ahead. The world has changed in the hundred years that you've been gone. It's the duty of the Avatar to restore balance to the world by defeating Fire Lord Ozai. You have much to learn. You must master the four elements and confront the Fire Lord. And when you do, I hope you will think like a mad genius. And it looks like you're in good hands. You'll need your friends to help defeat the Fire Nation. [Momo climbs up on Aang.] And you'll need Momo, too.","First of all, it's pretty fun messing with people. But I do have a reason. Aang, you have a difficult task ahead. The world has changed in the hundred years that you've been gone. It's the duty of the Avatar to restore balance to the world by defeating Fire Lord Ozai. You have much to learn. You must master the four elements and confront the Fire Lord. And when you do, I hope you will think like a mad genius. And it looks like you're in good hands. You'll need your friends to help defeat the Fire Nation. And you'll need Momo, too.",John O'Bryan,Anthony Lioi,8.2 +1202,1202,Water,1,The King of Omashu,5,Aang,"Thank you for your wisdom, but before we leave, I have a challenge for you.","Thank you for your wisdom, but before we leave, I have a challenge for you.",John O'Bryan,Anthony Lioi,8.2 +1203,1203,Water,1,The King of Omashu,5,Scene Description,Scene changes to show Bumi and Aang riding down the mail system. Cut to view of the entire city. A cloud of dust is raised as a crash is heard.,NA,John O'Bryan,Anthony Lioi,8.2 +1204,1204,Water,1,The King of Omashu,5,Cabbage merchant,My cabbages!,My cabbages!,John O'Bryan,Anthony Lioi,8.2 +1205,1205,Water,1,The King of Omashu,5,Scene Description,Fade to credits.,NA,John O'Bryan,Anthony Lioi,8.2 +1206,1206,Water,1,Imprisoned,6,Scene Description,"The scene opens up in a forest. Katara and Aang are on a raised, grassy plateau. A gentle stream is running out beneath it. Katara is folding one of their sleeping blankets. Aang is lying on the root of a tree. Momo screeches and lands on the plateau as Sokka approaches.",NA,Matthew Hubbard,Dave Filoni,8 +1207,1207,Water,1,Imprisoned,6,Aang,"[Enthusiastically.] Great, you're back!","Great, you're back!",Matthew Hubbard,Dave Filoni,8 +1208,1208,Water,1,Imprisoned,6,Scene Description,"Aang leaps off the root with his airbending, landing beside the Water Tribe siblings as Sokka digs in his bag.",NA,Matthew Hubbard,Dave Filoni,8 +1209,1209,Water,1,Imprisoned,6,Aang,What's for dinner?,What's for dinner?,Matthew Hubbard,Dave Filoni,8 +1210,1210,Water,1,Imprisoned,6,Sokka,"[Digs nuts from his bag.] We've got a few options. First; round nuts. And some kind of oval shaped nuts? And some rock-shaped nuts, that might just be rocks. [Throws the rock-shaped nut toward Momo.] Dig in! [Aang and Katara look at each other then back at Sokka.]","We've got a few options. First; round nuts. And some kind of oval shaped nuts? And some rock-shaped nuts, that might just be rocks. Dig in!",Matthew Hubbard,Dave Filoni,8 +1211,1211,Water,1,Imprisoned,6,Katara,Seriously ... what else you got?,Seriously ... what else you got?,Matthew Hubbard,Dave Filoni,8 +1212,1212,Water,1,Imprisoned,6,Scene Description,"Momo coos, and sniffs the rock-shaped nut, before taking it with one of his paws and slapping it against a stone twice. Attempting to break it, he takes it with both paws and slams it down on the big rock. The moment he does so, however, the entire earth quakes, making Momo shriek and his hair stand up on end.",NA,Matthew Hubbard,Dave Filoni,8 +1213,1213,Water,1,Imprisoned,6,Sokka,What was that?,What was that?,Matthew Hubbard,Dave Filoni,8 +1214,1214,Water,1,Imprisoned,6,Scene Description,"Momo, believing he may have caused the quake, cautiously drops the rock to the ground in test. The quake returns, causing Momo to leap away.",NA,Matthew Hubbard,Dave Filoni,8 +1215,1215,Water,1,Imprisoned,6,Aang,It's coming from over there!,It's coming from over there!,Matthew Hubbard,Dave Filoni,8 +1216,1216,Water,1,Imprisoned,6,Sokka,[Aang and Katara run off-camera.] Shouldn't we run away from huge booms? Not toward them?,Shouldn't we run away from huge booms? Not toward them?,Matthew Hubbard,Dave Filoni,8 +1217,1217,Water,1,Imprisoned,6,Scene Description,"The three, joined by Momo, hide behind a fallen tree and spy on a young boy bending boulders into the air and punching them into the side of the ravine.",NA,Matthew Hubbard,Dave Filoni,8 +1218,1218,Water,1,Imprisoned,6,Katara,An earthbender!,An earthbender!,Matthew Hubbard,Dave Filoni,8 +1219,1219,Water,1,Imprisoned,6,Aang,Let's go meet him!,Let's go meet him!,Matthew Hubbard,Dave Filoni,8 +1220,1220,Water,1,Imprisoned,6,Sokka,"He looks dangerous, so we better approach cautiously.","He looks dangerous, so we better approach cautiously.",Matthew Hubbard,Dave Filoni,8 +1221,1221,Water,1,Imprisoned,6,Katara,"[Suddenly Katara is a few feet in front of them, excitedly addressing the earthbender.] Hello there! I'm Katara! What's your name?",Hello there! I'm Katara! What's your name?,Matthew Hubbard,Dave Filoni,8 +1222,1222,Water,1,Imprisoned,6,Scene Description,"The young boy gasps in surprise, dropping the boulder he was bending to the ground. He flees quickly, bringing down an avalanche of boulders with his bending to block his exit.",NA,Matthew Hubbard,Dave Filoni,8 +1223,1223,Water,1,Imprisoned,6,Aang,[Sokka and Aang approach Katara; yelling.] Nice to meet you!,Nice to meet you!,Matthew Hubbard,Dave Filoni,8 +1224,1224,Water,1,Imprisoned,6,Katara,[Shrugging.] I just wanted to say hi.,I just wanted to say hi.,Matthew Hubbard,Dave Filoni,8 +1225,1225,Water,1,Imprisoned,6,Aang,Hey! That guy's gotta be running somewhere. Maybe we're near a village? And I bet that village has a market!,Hey! That guy's gotta be running somewhere. Maybe we're near a village? And I bet that village has a market!,Matthew Hubbard,Dave Filoni,8 +1226,1226,Water,1,Imprisoned,6,Katara,[Excitedly.] Which means no nuts for dinner!,Which means no nuts for dinner!,Matthew Hubbard,Dave Filoni,8 +1227,1227,Water,1,Imprisoned,6,Sokka,"[Katara and Aang chase after Haru.] Hey! I worked hard to get those nuts! [Momo flies overhead, chasing Katara and Aang.] Yeah, I hate 'em too. [Slowly follows Katara and Aang.]","Hey! I worked hard to get those nuts! Yeah, I hate 'em too.",Matthew Hubbard,Dave Filoni,8 +1228,1228,Water,1,Imprisoned,6,Scene Description,Katara and Sokka stroll through the mining village's streets while Aang speaks with a shopkeeper under a terrace.,NA,Matthew Hubbard,Dave Filoni,8 +1229,1229,Water,1,Imprisoned,6,Aang,Great hat! [Tries on the hat.] I'll trade you some nuts for it.,Great hat! I'll trade you some nuts for it.,Matthew Hubbard,Dave Filoni,8 +1230,1230,Water,1,Imprisoned,6,Katara,[Notices the boy enter a shop. Speaks to herself in surprise.] Hey ...,Hey ...,Matthew Hubbard,Dave Filoni,8 +1231,1231,Water,1,Imprisoned,6,Scene Description,"The boy enters into the dark, wooden building and approaches a woman.",NA,Matthew Hubbard,Dave Filoni,8 +1232,1232,Water,1,Imprisoned,6,Haru,"Hi, Mom.","Hi, Mom.",Matthew Hubbard,Dave Filoni,8 +1233,1233,Water,1,Imprisoned,6,Haru's mother,"Where have you been, Haru? You're late! Get started on your chores.","Where have you been, Haru? You're late! Get started on your chores.",Matthew Hubbard,Dave Filoni,8 +1234,1234,Water,1,Imprisoned,6,Katara,"[Enters the shop's front door, startling Haru.] Hey. You're that kid. Why did you run away before?",Hey. You're that kid. Why did you run away before?,Matthew Hubbard,Dave Filoni,8 +1235,1235,Water,1,Imprisoned,6,Haru,"Uh, you must have me confused with some other kid.","Uh, you must have me confused with some other kid.",Matthew Hubbard,Dave Filoni,8 +1236,1236,Water,1,Imprisoned,6,Aang,"[Aang and Sokka enter the shop.] No, she doesn't. We saw you earthbending.","No, she doesn't. We saw you earthbending.",Matthew Hubbard,Dave Filoni,8 +1237,1237,Water,1,Imprisoned,6,Scene Description,Haru and his mother gasps in horror at his secret being revealed and both the door and window to the small shop are promptly slammed shut.,NA,Matthew Hubbard,Dave Filoni,8 +1238,1238,Water,1,Imprisoned,6,Haru's mother,[Standing by the window.] They saw you doing what?!,They saw you doing what?!,Matthew Hubbard,Dave Filoni,8 +1239,1239,Water,1,Imprisoned,6,Haru,"They're crazy, Mom! I mean, look at how they're dressed.","They're crazy, Mom! I mean, look at how they're dressed.",Matthew Hubbard,Dave Filoni,8 +1240,1240,Water,1,Imprisoned,6,Scene Description,"Aang gazes to his conical hat, shifting it about in confusion. Katara awkwardly grasps at her dress, looking with astonishment at herself. Sokka quirks an eyebrow and smooths out his sleeve.",NA,Matthew Hubbard,Dave Filoni,8 +1241,1241,Water,1,Imprisoned,6,Haru's mother,You know how dangerous that is! You know what would happen if they caught you earthbending!,You know how dangerous that is! You know what would happen if they caught you earthbending!,Matthew Hubbard,Dave Filoni,8 +1242,1242,Water,1,Imprisoned,6,Tax collector,[Heavy knocks on the door.] Open up!,Open up!,Matthew Hubbard,Dave Filoni,8 +1243,1243,Water,1,Imprisoned,6,Sokka,[Sokka peeks through the window's blinds.] Fire Nation! Act natural!,Fire Nation! Act natural!,Matthew Hubbard,Dave Filoni,8 +1244,1244,Water,1,Imprisoned,6,Scene Description,"Haru's mother opens the door, allowing the Fire Nation tax collector to walk inside. He stares awkwardly at the four children in front of him. Haru grasps his chin and stares toward Katara, cross-eyed. Sokka eyeballs an apple. Katara hunches forward with her eyes wide open, having stuffed her mouth with berries. Aang has his hand atop a barrel, beaming an immense toothy smile. His pose is short-lived as the barrel's lid spins, dunking Aang's hand into the barrel of water and causes him to fall down.",NA,Matthew Hubbard,Dave Filoni,8 +1245,1245,Water,1,Imprisoned,6,Haru's mother,[The tax collector stares sourly toward the four children; aggressively.] What do you want? I've already paid you this week!,What do you want? I've already paid you this week!,Matthew Hubbard,Dave Filoni,8 +1246,1246,Water,1,Imprisoned,6,Tax collector,"The tax just doubled. [Arrogantly.] And we wouldn't want an accident now would we? [Creates a ball of fire between his hands, making everyone slightly back away.] Fire is sometimes so hard to control.",The tax just doubled. And we wouldn't want an accident now would we? Fire is sometimes so hard to control.,Matthew Hubbard,Dave Filoni,8 +1247,1247,Water,1,Imprisoned,6,Scene Description,"Haru's mother and the tax collector approach the store's counter, where she opens a small chest and passes a meager handful of Earth Kingdom currency to the tax collector. Haru leans against the counter, staring with contempt toward the Fire Nation man.",NA,Matthew Hubbard,Dave Filoni,8 +1248,1248,Water,1,Imprisoned,6,Tax collector,"You can keep the copper ones. [Walks away, dropping four copper pieces to the floor, exits.]",You can keep the copper ones.,Matthew Hubbard,Dave Filoni,8 +1249,1249,Water,1,Imprisoned,6,Sokka,[Door slams.] Nice guy. How long has the Fire Nation been here?,Nice guy. How long has the Fire Nation been here?,Matthew Hubbard,Dave Filoni,8 +1250,1250,Water,1,Imprisoned,6,Haru's mother,Five years. Fire Lord Ozai uses our town's coal mines to fuel his ships.,Five years. Fire Lord Ozai uses our town's coal mines to fuel his ships.,Matthew Hubbard,Dave Filoni,8 +1251,1251,Water,1,Imprisoned,6,Haru,They're thugs. They steal from us. And everyone here's too much of a coward to do anything about it.,They're thugs. They steal from us. And everyone here's too much of a coward to do anything about it.,Matthew Hubbard,Dave Filoni,8 +1252,1252,Water,1,Imprisoned,6,Haru's mother,"[Angered.] Quiet, Haru! Don't talk like that.","Quiet, Haru! Don't talk like that.",Matthew Hubbard,Dave Filoni,8 +1253,1253,Water,1,Imprisoned,6,Katara,"[Curiously.] But, Haru's an earthbender? He can help!","But, Haru's an earthbender? He can help!",Matthew Hubbard,Dave Filoni,8 +1254,1254,Water,1,Imprisoned,6,Haru's mother,Earthbending is forbidden. It's caused nothing but misery for this village! [Casts a meaningful glance toward her son.] He must never use his abilities.,Earthbending is forbidden. It's caused nothing but misery for this village! He must never use his abilities.,Matthew Hubbard,Dave Filoni,8 +1255,1255,Water,1,Imprisoned,6,Katara,How can you say that? Haru has a gift! Asking him not to earthbend is like asking me not to waterbend. It's a part of who we are.,How can you say that? Haru has a gift! Asking him not to earthbend is like asking me not to waterbend. It's a part of who we are.,Matthew Hubbard,Dave Filoni,8 +1256,1256,Water,1,Imprisoned,6,Haru's mother,[Shakes head in dismay.] You don't understand.,You don't understand.,Matthew Hubbard,Dave Filoni,8 +1257,1257,Water,1,Imprisoned,6,Katara,I understand that Haru can help you fight back. What can the Fire Nation do to you that they haven't done already?,I understand that Haru can help you fight back. What can the Fire Nation do to you that they haven't done already?,Matthew Hubbard,Dave Filoni,8 +1258,1258,Water,1,Imprisoned,6,Haru's mother,They could take Haru away! Like they took his father.,They could take Haru away! Like they took his father.,Matthew Hubbard,Dave Filoni,8 +1259,1259,Water,1,Imprisoned,6,Scene Description,"Scene changes to late evening, viewing farmland and a barn. Appa walks into the barn. Cut to a closer view of Sokka, Katara, Haru, and Aang standing inside the barn.",NA,Matthew Hubbard,Dave Filoni,8 +1260,1260,Water,1,Imprisoned,6,Haru,My mom said you can sleep here tonight. But you should leave in the morning.,My mom said you can sleep here tonight. But you should leave in the morning.,Matthew Hubbard,Dave Filoni,8 +1261,1261,Water,1,Imprisoned,6,Aang,Thanks. I'll make sure Appa doesn't eat all your hay.,Thanks. I'll make sure Appa doesn't eat all your hay.,Matthew Hubbard,Dave Filoni,8 +1262,1262,Water,1,Imprisoned,6,Scene Description,"Appa engulfs a mouthful of hay. Appa pauses, turning to stare dubiously toward Aang before continuing to chew hay. The scene switches to Katara and Haru taking a walk into the woods outside under the setting sun.",NA,Matthew Hubbard,Dave Filoni,8 +1263,1263,Water,1,Imprisoned,6,Katara,I'm sorry about what I said earlier. I didn't know about your father.,I'm sorry about what I said earlier. I didn't know about your father.,Matthew Hubbard,Dave Filoni,8 +1264,1264,Water,1,Imprisoned,6,Haru,"That's okay. It's funny, the way you were talking back in the store? It reminded me of him.","That's okay. It's funny, the way you were talking back in the store? It reminded me of him.",Matthew Hubbard,Dave Filoni,8 +1265,1265,Water,1,Imprisoned,6,Katara,[Flattered.] Thanks.,Thanks.,Matthew Hubbard,Dave Filoni,8 +1266,1266,Water,1,Imprisoned,6,Haru,"My father was very courageous. When the Fire Nation invaded, he and the other earthbenders were outnumbered ten to one. But they fought back anyway.","My father was very courageous. When the Fire Nation invaded, he and the other earthbenders were outnumbered ten to one. But they fought back anyway.",Matthew Hubbard,Dave Filoni,8 +1267,1267,Water,1,Imprisoned,6,Katara,He sounds like a great man.,He sounds like a great man.,Matthew Hubbard,Dave Filoni,8 +1268,1268,Water,1,Imprisoned,6,Scene Description,"The two approach the top of a steep cliff, gazing out to the setting sun beyond.",NA,Matthew Hubbard,Dave Filoni,8 +1269,1269,Water,1,Imprisoned,6,Haru,"[Stops.] After the attack, they rounded up my father and every other earthbender, and took them away. [Kneels.] We haven't seen them since.","After the attack, they rounded up my father and every other earthbender, and took them away. We haven't seen them since.",Matthew Hubbard,Dave Filoni,8 +1270,1270,Water,1,Imprisoned,6,Katara,So that's why you hide your earthbending.,So that's why you hide your earthbending.,Matthew Hubbard,Dave Filoni,8 +1271,1271,Water,1,Imprisoned,6,Haru,"Yeah. Problem is ... [Close-up, earthbends two stones in a circle above his hand.] the only way I can feel close to my father now [Crushes the stones to sand with his hands. The sand blows away.] is when I practice my bending. He taught me everything I know.",Yeah. Problem is ... the only way I can feel close to my father now is when I practice my bending. He taught me everything I know.,Matthew Hubbard,Dave Filoni,8 +1272,1272,Water,1,Imprisoned,6,Katara,"[Sits beside Haru, sets her fingertips on her necklace.] See this necklace? My mother gave it to me.",See this necklace? My mother gave it to me.,Matthew Hubbard,Dave Filoni,8 +1273,1273,Water,1,Imprisoned,6,Haru,It's beautiful.,It's beautiful.,Matthew Hubbard,Dave Filoni,8 +1274,1274,Water,1,Imprisoned,6,Katara,"I lost my mother in a Fire Nation raid. [Hangs her head, turning away.] This necklace is all I have left of her.",I lost my mother in a Fire Nation raid. This necklace is all I have left of her.,Matthew Hubbard,Dave Filoni,8 +1275,1275,Water,1,Imprisoned,6,Haru,"It's not enough, is it?","It's not enough, is it?",Matthew Hubbard,Dave Filoni,8 +1276,1276,Water,1,Imprisoned,6,Katara,No. [Hangs her head and turns away.],No.,Matthew Hubbard,Dave Filoni,8 +1277,1277,Water,1,Imprisoned,6,Scene Description,The scene switches to Katara and Haru who have continued their walk along the dirt trail. A loud boom sounds and rock and dust blasts from a distant mine entrance. An old man cries out.,NA,Matthew Hubbard,Dave Filoni,8 +1278,1278,Water,1,Imprisoned,6,Old man,"Help, help!","Help, help!",Matthew Hubbard,Dave Filoni,8 +1279,1279,Water,1,Imprisoned,6,Haru,The mine!,The mine!,Matthew Hubbard,Dave Filoni,8 +1280,1280,Water,1,Imprisoned,6,Scene Description,"Katara and Haru run quickly to the entrance, which has caved in and left a tremendous pile of rocks pinning the old man to the ground on his stomach. Sand continues to pour down, rocks intermittently falling.",NA,Matthew Hubbard,Dave Filoni,8 +1281,1281,Water,1,Imprisoned,6,Old man,Help me!,Help me!,Matthew Hubbard,Dave Filoni,8 +1282,1282,Water,1,Imprisoned,6,Katara,[Haru braces his back against the mine entrance. Katara pulls the old man.] Ugh! It's not working! We have to get help!,Ugh! It's not working! We have to get help!,Matthew Hubbard,Dave Filoni,8 +1283,1283,Water,1,Imprisoned,6,Haru,"There's no time, pull harder!","There's no time, pull harder!",Matthew Hubbard,Dave Filoni,8 +1284,1284,Water,1,Imprisoned,6,Katara,[Getting an idea.] Haru. There's a way you can help him.,Haru. There's a way you can help him.,Matthew Hubbard,Dave Filoni,8 +1285,1285,Water,1,Imprisoned,6,Haru,[Guilty fear.] I can't.,I can't.,Matthew Hubbard,Dave Filoni,8 +1286,1286,Water,1,Imprisoned,6,Katara,"Please, there's no one around to see you. It's the only way!","Please, there's no one around to see you. It's the only way!",Matthew Hubbard,Dave Filoni,8 +1287,1287,Water,1,Imprisoned,6,Scene Description,"Haru leaps away from the falling debris, spinning back to face it as he assumes an earthbending form. With a sudden and strong move, he blasts all the rocks down the tunnel, freeing the old man.",NA,Matthew Hubbard,Dave Filoni,8 +1288,1288,Water,1,Imprisoned,6,Katara,[Excitedly.] Haru! You did it! [The two take place beside the old man and aid him walking away from the mine.],Haru! You did it!,Matthew Hubbard,Dave Filoni,8 +1289,1289,Water,1,Imprisoned,6,Scene Description,"At the barn, Katara is sitting up in her bedroll with a lamp in her lap. Sokka is lying on a square bale of hay with his blanket over him, and Aang is sprawled out on Appa's head with Momo lying on his back.",NA,Matthew Hubbard,Dave Filoni,8 +1290,1290,Water,1,Imprisoned,6,Katara,It was so brave of Haru to use his earthbending to help that old man.,It was so brave of Haru to use his earthbending to help that old man.,Matthew Hubbard,Dave Filoni,8 +1291,1291,Water,1,Imprisoned,6,Aang,You must have really inspired him.,You must have really inspired him.,Matthew Hubbard,Dave Filoni,8 +1292,1292,Water,1,Imprisoned,6,Katara,I guess so.,I guess so.,Matthew Hubbard,Dave Filoni,8 +1293,1293,Water,1,Imprisoned,6,Sokka,"Everyone should get some sleep, we're leaving at dawn.","Everyone should get some sleep, we're leaving at dawn.",Matthew Hubbard,Dave Filoni,8 +1294,1294,Water,1,Imprisoned,6,Katara,[Unhappily.] Dawn?! Can't we sleep in for once?,Dawn?! Can't we sleep in for once?,Matthew Hubbard,Dave Filoni,8 +1295,1295,Water,1,Imprisoned,6,Sokka,"[Commandingly.] Absolutely not! This village is crawling with Fire Nation troops. If they discover you're here, Aang, we'll be eating fireballs for breakfast. Goodnight.","Absolutely not! This village is crawling with Fire Nation troops. If they discover you're here, Aang, we'll be eating fireballs for breakfast. Goodnight.",Matthew Hubbard,Dave Filoni,8 +1296,1296,Water,1,Imprisoned,6,Katara,"[Slyly, with a wry smirk.] I'd rather eat fireballs than nuts.",I'd rather eat fireballs than nuts.,Matthew Hubbard,Dave Filoni,8 +1297,1297,Water,1,Imprisoned,6,Sokka,[With finality.] Goodnight!,Goodnight!,Matthew Hubbard,Dave Filoni,8 +1298,1298,Water,1,Imprisoned,6,Scene Description,"Katara and Aang share a few playful chuckles with each other before she blows out the lamplight to get some rest. +Fire Nation troops march on a mission through the dead of night. The man in the lead raps on a wooden door. Haru answers the door, suddenly gasping in shock as he sees the troops.",NA,Matthew Hubbard,Dave Filoni,8 +1299,1299,Water,1,Imprisoned,6,Old man,[Points accusingly.] That's him! That's the earthbender!,That's him! That's the earthbender!,Matthew Hubbard,Dave Filoni,8 +1300,1300,Water,1,Imprisoned,6,Scene Description,"The Fire Nation leader shoves the old man out of the way and approaches Haru. Haru screams as the man forces Haru into his grip and hauls him away. +In the morning, Katara carries a jar outside of the barn. She sets it down beside a water pump and proceeds to waterbend, drawing water out of the spigot and into the waiting pot. Picking it up, she spots Haru's mother standing with her back to her, gazing toward the distant ocean. Haru's mother slowly turns around, laying a tearful gaze upon Katara. Katara realizes Haru has been taken and drops the pot, as it shatters to pieces at her feet.",NA,Matthew Hubbard,Dave Filoni,8 +1301,1301,Water,1,Imprisoned,6,Katara,[Enters barn to see Aang and Sokka folding blankets; emotionally.] They took him! They took Haru away!,They took him! They took Haru away!,Matthew Hubbard,Dave Filoni,8 +1302,1302,Water,1,Imprisoned,6,Aang,[Surprised.] What?,What?,Matthew Hubbard,Dave Filoni,8 +1303,1303,Water,1,Imprisoned,6,Katara,[Hurriedly.] The old man turned him in to the Fire Nation - it's all my fault - I forced him into earthbending!,The old man turned him in to the Fire Nation - it's all my fault - I forced him into earthbending!,Matthew Hubbard,Dave Filoni,8 +1304,1304,Water,1,Imprisoned,6,Sokka,"[Steps beside her, taking her hand in his and laying his other hand supportively behind her shoulder.] Slow down, Katara. When did this happen?","Slow down, Katara. When did this happen?",Matthew Hubbard,Dave Filoni,8 +1305,1305,Water,1,Imprisoned,6,Katara,Haru's mother said they came for him at midnight.,Haru's mother said they came for him at midnight.,Matthew Hubbard,Dave Filoni,8 +1306,1306,Water,1,Imprisoned,6,Sokka,"Then it's too late to track him, he's long gone.","Then it's too late to track him, he's long gone.",Matthew Hubbard,Dave Filoni,8 +1307,1307,Water,1,Imprisoned,6,Katara,"[Turns defiantly to the open door, clenches fists.] We don't need to track him. The Fire Nation is going to take me right to Haru.",We don't need to track him. The Fire Nation is going to take me right to Haru.,Matthew Hubbard,Dave Filoni,8 +1308,1308,Water,1,Imprisoned,6,Aang,[Confused.] And ... why would they do that?,And ... why would they do that?,Matthew Hubbard,Dave Filoni,8 +1309,1309,Water,1,Imprisoned,6,Katara,[Determined.] Because they're going to arrest me for earthbending. [Aang and Sokka share a horrified look.],Because they're going to arrest me for earthbending.,Matthew Hubbard,Dave Filoni,8 +1310,1310,Water,1,Imprisoned,6,Scene Description,Scene changes to Sokka and Katara working together to push a boulder overtop an air vent on a rocky road.,NA,Matthew Hubbard,Dave Filoni,8 +1311,1311,Water,1,Imprisoned,6,Sokka,"I thought you were crazy at first, Katara, but this might work. There are ventilation shafts throughout these mines. All Aang has to do is send an air current from that vent to this one right here. The boulder levitates and ta-da! Fake earthbending.","I thought you were crazy at first, Katara, but this might work. There are ventilation shafts throughout these mines. All Aang has to do is send an air current from that vent to this one right here. The boulder levitates and ta-da! Fake earthbending.",Matthew Hubbard,Dave Filoni,8 +1312,1312,Water,1,Imprisoned,6,Katara,"[Props hands off hips, turns to Aang.] Aang? Did you get all that?",Aang? Did you get all that?,Matthew Hubbard,Dave Filoni,8 +1313,1313,Water,1,Imprisoned,6,Aang,"[Snapping small puffs of air at a sooty copper fritillary butterfly; dismissively.] Sure, sure. I got it.","Sure, sure. I got it.",Matthew Hubbard,Dave Filoni,8 +1314,1314,Water,1,Imprisoned,6,Sokka,Do you remember your cue?,Do you remember your cue?,Matthew Hubbard,Dave Filoni,8 +1315,1315,Water,1,Imprisoned,6,Aang,"[Continues snapping puffs of air; still dismissive.] Yeah, yeah. Just relax. You're taking all the fun out of this.","Yeah, yeah. Just relax. You're taking all the fun out of this.",Matthew Hubbard,Dave Filoni,8 +1316,1316,Water,1,Imprisoned,6,Sokka,"[Aggravated.] By this, do you mean intentionally being captured by a group of ruthless firebenders?","By this, do you mean intentionally being captured by a group of ruthless firebenders?",Matthew Hubbard,Dave Filoni,8 +1317,1317,Water,1,Imprisoned,6,Aang,[Humored.] Exactly! That's fun stuff!,Exactly! That's fun stuff!,Matthew Hubbard,Dave Filoni,8 +1318,1318,Water,1,Imprisoned,6,Sokka,[Group of firebenders with spears approach.] Here they come! Get in your places!,Here they come! Get in your places!,Matthew Hubbard,Dave Filoni,8 +1319,1319,Water,1,Imprisoned,6,Scene Description,"Aang stops playing with the butterfly and Momo tries catching it as it flies away. As the group of spear-wielding guards approach, Katara and Sokka make a show of walking into one another by their stomachs before emphatically shouting.",NA,Matthew Hubbard,Dave Filoni,8 +1320,1320,Water,1,Imprisoned,6,Sokka,"[While angrily pointing at Katara.] Get out of my way, pipsqueak! [The soldiers watch in confusion. One of them even raises an eyebrow.]","Get out of my way, pipsqueak!",Matthew Hubbard,Dave Filoni,8 +1321,1321,Water,1,Imprisoned,6,Katara,"[Angrily hunched over.] How dare you call me pipsqueak, you giant-eared cretin!","How dare you call me pipsqueak, you giant-eared cretin!",Matthew Hubbard,Dave Filoni,8 +1322,1322,Water,1,Imprisoned,6,Sokka,[Just as angrily hunched over.] What did you call me?,What did you call me?,Matthew Hubbard,Dave Filoni,8 +1323,1323,Water,1,Imprisoned,6,Katara,[Far too dramatically as her hair loopies move with her motion.] A giant-eared cretin! Look at those things! Do herds of animals use them for shade?! [Imitates an elephant's ears.],A giant-eared cretin! Look at those things! Do herds of animals use them for shade?!,Matthew Hubbard,Dave Filoni,8 +1324,1324,Water,1,Imprisoned,6,Sokka,"[Towers over his sister.] You better back off! [Slips his hand by his mouth and mutters.] Seriously, back off.","You better back off! Seriously, back off.",Matthew Hubbard,Dave Filoni,8 +1325,1325,Water,1,Imprisoned,6,Katara,"[More determined, heightens above her now-cowering brother.] I will not back off! I bet elephants get together and make fun of how large your ears are!",I will not back off! I bet elephants get together and make fun of how large your ears are!,Matthew Hubbard,Dave Filoni,8 +1326,1326,Water,1,Imprisoned,6,Sokka,That's it! You're going down!,That's it! You're going down!,Matthew Hubbard,Dave Filoni,8 +1327,1327,Water,1,Imprisoned,6,Katara,"I'll show you who's boss! [Angrily points at Sokka.] Earthbending style! [Over-dramatically leaps toward the boulder, clenching her fist upward to which there is no reaction. Angrily.] I said, earthbending style!","I'll show you who's boss! Earthbending style! I said, earthbending style!",Matthew Hubbard,Dave Filoni,8 +1328,1328,Water,1,Imprisoned,6,Scene Description,"At Katara's shout, Aang gasps quietly as he realizes his mistake by missing his cue. The young airbender ceases playing with the butterfly, leaps up, and blasts a strong jet of air into the ventilation duct, suddenly sending the boulder levitating into the air. This reveals Momo behind the boulder, who has his arms raised, licking himself.",NA,Matthew Hubbard,Dave Filoni,8 +1329,1329,Water,1,Imprisoned,6,Guard,[Points a finger to the lemur; surprised.] That lemur! He's earthbending!,That lemur! He's earthbending!,Matthew Hubbard,Dave Filoni,8 +1330,1330,Water,1,Imprisoned,6,Sokka,"[Katara and Momo each remain in their positions. Katara eyes the man in surprise. Sokka, angrily, waves his arms toward her.] No, you idiot, it's the girl!","No, you idiot, it's the girl!",Matthew Hubbard,Dave Filoni,8 +1331,1331,Water,1,Imprisoned,6,Guard,Oh. [Blushes shamefully.] Of course.,Oh. Of course.,Matthew Hubbard,Dave Filoni,8 +1332,1332,Water,1,Imprisoned,6,Scene Description,"Sokka steps beside Katara, laying his hands on her shoulders as the boulder falls to the ground. Katara stands patiently.",NA,Matthew Hubbard,Dave Filoni,8 +1333,1333,Water,1,Imprisoned,6,Sokka,I'll hold her. [Close-up. Whispers to Katara.] You've got twelve hours to find Haru. We'll be right behind you.,I'll hold her. You've got twelve hours to find Haru. We'll be right behind you.,Matthew Hubbard,Dave Filoni,8 +1334,1334,Water,1,Imprisoned,6,Scene Description,"The guards escort Katara away, leaving Aang, Sokka, and Momo to watch as she takes a final glance back. Sokka unhappily tugs at his ears, testing their sizes.",NA,Matthew Hubbard,Dave Filoni,8 +1335,1335,Water,1,Imprisoned,6,Sokka,"[Eyeballs Momo perched off of Aang's shoulder. Points accusingly.] Momo, you have some big ears! [Momo folds his ears back, hunches down, and coos in protest.]","Momo, you have some big ears!",Matthew Hubbard,Dave Filoni,8 +1336,1336,Water,1,Imprisoned,6,Scene Description,"Katara is in the back of a Fire Nation transport with other earthbender prisoners. She wears a brown, tattered prison garb over her blue Water Tribe outfit and stares glumly downward. Sokka and Aang each have conical yellow hats in a crowd, attempting to stealthily observe her travel. Katara looks longingly over shoulder as the cart bobs along a pier, heading toward a waiting barge on the ocean. +Aang and Sokka chase the barge, riding Appa through the clouds. The immense, smoking, off-shore Fire Nation prison rig is seen just ahead. Close-up of the rig.",NA,Matthew Hubbard,Dave Filoni,8 +1337,1337,Water,1,Imprisoned,6,Sokka,"[Aang stares nervously at the barge carrying Katara to the prison.] She'll be fine, Aang. Katara knows what she's doing.","She'll be fine, Aang. Katara knows what she's doing.",Matthew Hubbard,Dave Filoni,8 +1338,1338,Water,1,Imprisoned,6,Scene Description,"After the barge arrives, six prisoners, including Katara, line up on the deck of the prison. Spear-wielding guards stand at either side. A prison warden approaches.",NA,Matthew Hubbard,Dave Filoni,8 +1339,1339,Water,1,Imprisoned,6,Warden,"[Smugly.] Earthbenders. It is my pleasure to welcome you aboard my modest shipyard. I am your warden. I prefer to think of you not as prisoners, [Quips smartly.] but as honored guests. And I hope you come to think of me as your humble and caring host. [Paces nonchalantly.] You will succeed here, if you simply abide-","Earthbenders. It is my pleasure to welcome you aboard my modest shipyard. I am your warden. I prefer to think of you not as prisoners, but as honored guests. And I hope you come to think of me as your humble and caring host. You will succeed here, if you simply abide-",Matthew Hubbard,Dave Filoni,8 +1340,1340,Water,1,Imprisoned,6,Scene Description,"The warden pauses, suddenly interrupted by a prisoner in line coughing. With no forewarning, the warden leaps into the air and aims a blast of fire at the prisoner's legs in anger. The prisoner cowers away for safety as the warden stands defiantly toward the man.",NA,Matthew Hubbard,Dave Filoni,8 +1341,1341,Water,1,Imprisoned,6,Warden,[Very angrily.] What kind of guest dishonors his host by interrupting him?! Take him below! [Swings his arms. Some guards escort the man away. Mutters.] One week in solitary will improve his manners. [Continues smug gait.] Simply treat me with the courtesy that I give you-,What kind of guest dishonors his host by interrupting him?! Take him below! One week in solitary will improve his manners. Simply treat me with the courtesy that I give you-,Matthew Hubbard,Dave Filoni,8 +1342,1342,Water,1,Imprisoned,6,Scene Description,"Approaches Katara, kneeling to stare into her obstinate expression. She crosses her eyebrows, scowling coarsely at the man.",NA,Matthew Hubbard,Dave Filoni,8 +1343,1343,Water,1,Imprisoned,6,Warden,And we'll get along famously.,And we'll get along famously.,Matthew Hubbard,Dave Filoni,8 +1344,1344,Water,1,Imprisoned,6,Scene Description,"The prisoners are taken on a tour of the facility. Below, fellow prisoners are seen laboring.",NA,Matthew Hubbard,Dave Filoni,8 +1345,1345,Water,1,Imprisoned,6,Warden,"You will notice, earthbenders, that this rig is made entirely of metal. You are miles away from any rock or earth. [Katara pauses, glancing over the expansive ocean to the land far away.] So, if you have any illusions about employing that brutish savagery that passes for bending among you people ... [Lowly.] forget them. It is impossible. Good day.","You will notice, earthbenders, that this rig is made entirely of metal. You are miles away from any rock or earth. So, if you have any illusions about employing that brutish savagery that passes for bending among you people ... forget them. It is impossible. Good day.",Matthew Hubbard,Dave Filoni,8 +1346,1346,Water,1,Imprisoned,6,Scene Description,"A guard escorts the prisoners into the prison courtyard. Katara enters last and the metal gates close behind her. Among many earthbender prisoners, Haru takes notice of Katara. Above the courtyard, a watchman and the warden monitor the scene.",NA,Matthew Hubbard,Dave Filoni,8 +1347,1347,Water,1,Imprisoned,6,Haru,[Surprised.] Katara?,Katara?,Matthew Hubbard,Dave Filoni,8 +1348,1348,Water,1,Imprisoned,6,Katara,[Excitedly. Runs and hugs Haru.] Haru!,Haru!,Matthew Hubbard,Dave Filoni,8 +1349,1349,Water,1,Imprisoned,6,Haru,[Confused.] What are you doing here?,What are you doing here?,Matthew Hubbard,Dave Filoni,8 +1350,1350,Water,1,Imprisoned,6,Katara,[Somewhat apologetically.] It's my fault you were captured. I came to rescue you.,It's my fault you were captured. I came to rescue you.,Matthew Hubbard,Dave Filoni,8 +1351,1351,Water,1,Imprisoned,6,Haru,"[Shocked.] So, you got yourself arrested?","So, you got yourself arrested?",Matthew Hubbard,Dave Filoni,8 +1352,1352,Water,1,Imprisoned,6,Katara,It was the only way to find you.,It was the only way to find you.,Matthew Hubbard,Dave Filoni,8 +1353,1353,Water,1,Imprisoned,6,Haru,"You've got guts, Katara. I'll give you that. [Places hand on her shoulder.] Come on. There's someone I want you to meet.","You've got guts, Katara. I'll give you that. Come on. There's someone I want you to meet.",Matthew Hubbard,Dave Filoni,8 +1354,1354,Water,1,Imprisoned,6,Scene Description,"The two approach an old, gray-bearded man eating dinner among other prisoners.",NA,Matthew Hubbard,Dave Filoni,8 +1355,1355,Water,1,Imprisoned,6,Haru,"Katara. This is my father, Tyro. [The older man looks up.] Dad. This is Katara.","Katara. This is my father, Tyro. Dad. This is Katara.",Matthew Hubbard,Dave Filoni,8 +1356,1356,Water,1,Imprisoned,6,Katara,[Slightly bows.] It's an honor to meet you.,It's an honor to meet you.,Matthew Hubbard,Dave Filoni,8 +1357,1357,Water,1,Imprisoned,6,Tyro,"[Hands Katara a bowl.] Have some dinner, Katara. [Katara accepts the bowl, but grimaces.] It's not as bad as it looks. [Katara tries a spoonful, but becomes further disgusted. He finds humor in this with a small chuckle.] It's still pretty bad though.","Have some dinner, Katara. It's not as bad as it looks. It's still pretty bad though.",Matthew Hubbard,Dave Filoni,8 +1358,1358,Water,1,Imprisoned,6,Prisoner,[Walks up and lays a hand on Tyro's shoulder.] Tyro. The prisoners are complaining there aren't enough blankets to go around.,Tyro. The prisoners are complaining there aren't enough blankets to go around.,Matthew Hubbard,Dave Filoni,8 +1359,1359,Water,1,Imprisoned,6,Tyro,"I'll talk to the guards. In the meantime, make sure the elderly are taken care of. The rest of us will simply have to hope for warmer weather.","I'll talk to the guards. In the meantime, make sure the elderly are taken care of. The rest of us will simply have to hope for warmer weather.",Matthew Hubbard,Dave Filoni,8 +1360,1360,Water,1,Imprisoned,6,Katara,"If you don't mind me asking, what's your escape plan?","If you don't mind me asking, what's your escape plan?",Matthew Hubbard,Dave Filoni,8 +1361,1361,Water,1,Imprisoned,6,Tyro,Excuse me?,Excuse me?,Matthew Hubbard,Dave Filoni,8 +1362,1362,Water,1,Imprisoned,6,Katara,"You know, the plan to get everyone off the rig? What is it? Mutiny, sabotage?","You know, the plan to get everyone off the rig? What is it? Mutiny, sabotage?",Matthew Hubbard,Dave Filoni,8 +1363,1363,Water,1,Imprisoned,6,Tyro,The plan? The plan is to survive. Wait out this war. Hope that one day some of us can get back home and forget this ever happened.,The plan? The plan is to survive. Wait out this war. Hope that one day some of us can get back home and forget this ever happened.,Matthew Hubbard,Dave Filoni,8 +1364,1364,Water,1,Imprisoned,6,Katara,[Shocked.] How can you say that? You sound like you've already given up!,How can you say that? You sound like you've already given up!,Matthew Hubbard,Dave Filoni,8 +1365,1365,Water,1,Imprisoned,6,Tyro,"Katara, I admire your courage. And I envy your youth. But people's lives are at stake here. The warden is a ruthless man, and he won't stand for any rebellion. I'm sorry, but we're powerless.","Katara, I admire your courage. And I envy your youth. But people's lives are at stake here. The warden is a ruthless man, and he won't stand for any rebellion. I'm sorry, but we're powerless.",Matthew Hubbard,Dave Filoni,8 +1366,1366,Water,1,Imprisoned,6,Katara,[Obstinately.] We'll see about that.,We'll see about that.,Matthew Hubbard,Dave Filoni,8 +1367,1367,Water,1,Imprisoned,6,Scene Description,"Katara stands up and carries a trash can lid and a ladle, climbing on top of a wooden table. From there, she bangs the ladle against the lid to draw attention.",NA,Matthew Hubbard,Dave Filoni,8 +1368,1368,Water,1,Imprisoned,6,Katara,"Earthbenders! You don't know me, but I know of you. Every child in my Water Tribe village was rocked to sleep with stories of the brave Earth Kingdom, and the courageous earthbenders who guard its borders. [The watchman walks up to talk the warden, but the warden stops him and listens.] Some of you may think that the Fire Nation has made you powerless. Yes, they have taken away your ability to bend. But they can't take away your courage. And it is your courage they should truly fear! Because it runs deeper than any mine you've been forced to dig, any ocean that keeps you far from home! It is the strength of your hearts that make you who you are. Hearts that will remain unbroken when all rock and stone has eroded away. The time to fight back is now! I can tell you the Avatar has returned! So remember your courage earthbenders, [Shouts clearly.] let us fight for our freedom!","Earthbenders! You don't know me, but I know of you. Every child in my Water Tribe village was rocked to sleep with stories of the brave Earth Kingdom, and the courageous earthbenders who guard its borders. Some of you may think that the Fire Nation has made you powerless. Yes, they have taken away your ability to bend. But they can't take away your courage. And it is your courage they should truly fear! Because it runs deeper than any mine you've been forced to dig, any ocean that keeps you far from home! It is the strength of your hearts that make you who you are. Hearts that will remain unbroken when all rock and stone has eroded away. The time to fight back is now! I can tell you the Avatar has returned! So remember your courage earthbenders, let us fight for our freedom!",Matthew Hubbard,Dave Filoni,8 +1369,1369,Water,1,Imprisoned,6,Scene Description,"Katara's speech is met with utter silence and a small cough in the background, leaving her to fall into sorrow as she realizes the muted answer she receives. The warden walks away from the courtyard. Later that night while she is sleeping, Aang sneaks into the prison and taps his hand to her shoulder, waking her. Urging her to be quiet, he leads her to the perimeter where Sokka and Appa are waiting to make their escape.",NA,Matthew Hubbard,Dave Filoni,8 +1370,1370,Water,1,Imprisoned,6,Sokka,Your twelve hours are up; where's Haru? We've gotta get outta here!,Your twelve hours are up; where's Haru? We've gotta get outta here!,Matthew Hubbard,Dave Filoni,8 +1371,1371,Water,1,Imprisoned,6,Katara,I can't.,I can't.,Matthew Hubbard,Dave Filoni,8 +1372,1372,Water,1,Imprisoned,6,Sokka,[Hurriedly.] We don't have much time. There are guards everywhere. Get on!,We don't have much time. There are guards everywhere. Get on!,Matthew Hubbard,Dave Filoni,8 +1373,1373,Water,1,Imprisoned,6,Aang,"[Concerned.] Katara, what's wrong?","Katara, what's wrong?",Matthew Hubbard,Dave Filoni,8 +1374,1374,Water,1,Imprisoned,6,Katara,I'm not leaving. [Aang and Sokka share a questionable look.] I'm not giving up on these people.,I'm not leaving. I'm not giving up on these people.,Matthew Hubbard,Dave Filoni,8 +1375,1375,Water,1,Imprisoned,6,Scene Description,"Fade to black. Cut to Sokka, Aang, and Katara on the metal perimeter.",NA,Matthew Hubbard,Dave Filoni,8 +1376,1376,Water,1,Imprisoned,6,Sokka,What do you mean you're not leaving?,What do you mean you're not leaving?,Matthew Hubbard,Dave Filoni,8 +1377,1377,Water,1,Imprisoned,6,Katara,We can't abandon these people! There has to be a way to help them.,We can't abandon these people! There has to be a way to help them.,Matthew Hubbard,Dave Filoni,8 +1378,1378,Water,1,Imprisoned,6,Aang,"Maybe she's right. What do you say, Sokka?","Maybe she's right. What do you say, Sokka?",Matthew Hubbard,Dave Filoni,8 +1379,1379,Water,1,Imprisoned,6,Sokka,"I say you're both crazy! [The trio ducks a searching spotlight.] Last chance! We need to leave, now!","I say you're both crazy! Last chance! We need to leave, now!",Matthew Hubbard,Dave Filoni,8 +1380,1380,Water,1,Imprisoned,6,Katara,[Sternly.] No!,No!,Matthew Hubbard,Dave Filoni,8 +1381,1381,Water,1,Imprisoned,6,Sokka,"[Shakes his head dismally.] I hate when you get like this. Come on, we better hide.","I hate when you get like this. Come on, we better hide.",Matthew Hubbard,Dave Filoni,8 +1382,1382,Water,1,Imprisoned,6,Aang,[Katara and Sokka flee. Aang whispers to Appa before joining them.] Go hide.,Go hide.,Matthew Hubbard,Dave Filoni,8 +1383,1383,Water,1,Imprisoned,6,Captain,[Appa soars overhead to fly away and hide.] Look!,Look!,Matthew Hubbard,Dave Filoni,8 +1384,1384,Water,1,Imprisoned,6,Scene Description,The two guards who witnessed Appa take to the skies approach the warden on a catwalk.,NA,Matthew Hubbard,Dave Filoni,8 +1385,1385,Water,1,Imprisoned,6,Warden,Tell me exactly what you saw.,Tell me exactly what you saw.,Matthew Hubbard,Dave Filoni,8 +1386,1386,Water,1,Imprisoned,6,Captain,"Well, sir, it looked like a flying bison.","Well, sir, it looked like a flying bison.",Matthew Hubbard,Dave Filoni,8 +1387,1387,Water,1,Imprisoned,6,Warden,[Surprised.] What?,What?,Matthew Hubbard,Dave Filoni,8 +1388,1388,Water,1,Imprisoned,6,Guard,"It was a giant flying buffalo, sir. With an empty saddle.","It was a giant flying buffalo, sir. With an empty saddle.",Matthew Hubbard,Dave Filoni,8 +1389,1389,Water,1,Imprisoned,6,Warden,Which was it? A buffalo or a bison?,Which was it? A buffalo or a bison?,Matthew Hubbard,Dave Filoni,8 +1390,1390,Water,1,Imprisoned,6,Captain,"Uh, I'm not sure what the difference is, but that's not really the point, is it, sir?","Uh, I'm not sure what the difference is, but that's not really the point, is it, sir?",Matthew Hubbard,Dave Filoni,8 +1391,1391,Water,1,Imprisoned,6,Warden,"[Furiously.] I'll decide what the point is, fool!","I'll decide what the point is, fool!",Matthew Hubbard,Dave Filoni,8 +1392,1392,Water,1,Imprisoned,6,Scene Description,The warden throws the first guard overboard. The man screams in horror before finally being silenced by a splash below.,NA,Matthew Hubbard,Dave Filoni,8 +1393,1393,Water,1,Imprisoned,6,Warden,[To the second guard as he straightens up.] You! Wake up the captain. Search the entire rig! [Turns to walk away.],You! Wake up the captain. Search the entire rig!,Matthew Hubbard,Dave Filoni,8 +1394,1394,Water,1,Imprisoned,6,Guard,"Uh, sir.","Uh, sir.",Matthew Hubbard,Dave Filoni,8 +1395,1395,Water,1,Imprisoned,6,Warden,[Annoyed.] What?,What?,Matthew Hubbard,Dave Filoni,8 +1396,1396,Water,1,Imprisoned,6,Guard,"[Somewhat timidly.] That was ... the captain you just threw overboard, so ...","That was ... the captain you just threw overboard, so ...",Matthew Hubbard,Dave Filoni,8 +1397,1397,Water,1,Imprisoned,6,Warden,[Still quite annoyed.] Then wake up someone I haven't thrown overboard and search the rig! There's something going on here and I don't like it.,Then wake up someone I haven't thrown overboard and search the rig! There's something going on here and I don't like it.,Matthew Hubbard,Dave Filoni,8 +1398,1398,Water,1,Imprisoned,6,Scene Description,Cut scene; Momo peeps over a wooden crate where the trio is safely hiding behind numerous boxes. Scene opens up to show the three huddled together seated on the metal ground in the darkness.,NA,Matthew Hubbard,Dave Filoni,8 +1399,1399,Water,1,Imprisoned,6,Sokka,We don't have much time. What are we gonna do?,We don't have much time. What are we gonna do?,Matthew Hubbard,Dave Filoni,8 +1400,1400,Water,1,Imprisoned,6,Aang,I wish I knew how to make a hurricane!,I wish I knew how to make a hurricane!,Matthew Hubbard,Dave Filoni,8 +1401,1401,Water,1,Imprisoned,6,Scene Description,Both Sokka and Katara provide Aang with assuredly un-entertained facial expressions.,NA,Matthew Hubbard,Dave Filoni,8 +1402,1402,Water,1,Imprisoned,6,Aang,The warden would run away and we'd steal his keys!,The warden would run away and we'd steal his keys!,Matthew Hubbard,Dave Filoni,8 +1403,1403,Water,1,Imprisoned,6,Sokka,Wouldn't he just take his keys with him?,Wouldn't he just take his keys with him?,Matthew Hubbard,Dave Filoni,8 +1404,1404,Water,1,Imprisoned,6,Aang,I'm just tossing ideas around.,I'm just tossing ideas around.,Matthew Hubbard,Dave Filoni,8 +1405,1405,Water,1,Imprisoned,6,Katara,"I tried talking the earthbenders into fighting back but, it didn't work! If there was just a way to help them help themselves.","I tried talking the earthbenders into fighting back but, it didn't work! If there was just a way to help them help themselves.",Matthew Hubbard,Dave Filoni,8 +1406,1406,Water,1,Imprisoned,6,Sokka,"For that they'd need some kind of earth, or some rock. Something they can bend.","For that they'd need some kind of earth, or some rock. Something they can bend.",Matthew Hubbard,Dave Filoni,8 +1407,1407,Water,1,Imprisoned,6,Katara,[Lays her palm to the surface.] But this entire place is made of metal!,But this entire place is made of metal!,Matthew Hubbard,Dave Filoni,8 +1408,1408,Water,1,Imprisoned,6,Aang,"No, it's not. [Points to smokestacks.] Look at the smoke! I bet they're burning coal. In other words, earth.","No, it's not. Look at the smoke! I bet they're burning coal. In other words, earth.",Matthew Hubbard,Dave Filoni,8 +1409,1409,Water,1,Imprisoned,6,Scene Description,"Morning arrives, the scene gaining light. Sokka and Katara are alone by an air duct. Sokka is peering down into it, while Katara kneels beside it with her hands on its rim.",NA,Matthew Hubbard,Dave Filoni,8 +1410,1410,Water,1,Imprisoned,6,Katara,It's almost dawn. We're running out of time! You sure this is gonna work?,It's almost dawn. We're running out of time! You sure this is gonna work?,Matthew Hubbard,Dave Filoni,8 +1411,1411,Water,1,Imprisoned,6,Sokka,"It should. These vents reminded me of our little trick back at the village. We're gonna do the same thing, but on a much bigger scale. [The camera zooms through a visual walkthrough of Sokka's explanation.] There's a huge deposit of coal at the base of the silo. And the whole system is ventilated. Aang closed off all the vents except one. When he does his airbending the coal only has one place to go, right back here.","It should. These vents reminded me of our little trick back at the village. We're gonna do the same thing, but on a much bigger scale. There's a huge deposit of coal at the base of the silo. And the whole system is ventilated. Aang closed off all the vents except one. When he does his airbending the coal only has one place to go, right back here.",Matthew Hubbard,Dave Filoni,8 +1412,1412,Water,1,Imprisoned,6,Guard,There's the intruder!,There's the intruder!,Matthew Hubbard,Dave Filoni,8 +1413,1413,Water,1,Imprisoned,6,Scene Description,"The two siblings are suddenly surrounded by a number of spear-wielding Fire Nation guards. The prisoners have gathered a safe distance away from this spectacle, observing what is happening.",NA,Matthew Hubbard,Dave Filoni,8 +1414,1414,Water,1,Imprisoned,6,Sokka,"Stay back! I'm warning you! [Pulls out his boomerang, turning back-to-back with his sister.]",Stay back! I'm warning you!,Matthew Hubbard,Dave Filoni,8 +1415,1415,Water,1,Imprisoned,6,Tyro,"[Roughly.] Katara, stop! You can't win this fight!","Katara, stop! You can't win this fight!",Matthew Hubbard,Dave Filoni,8 +1416,1416,Water,1,Imprisoned,6,Warden,"Listen to him well, child. You're one mistake away from dying where you stand.","Listen to him well, child. You're one mistake away from dying where you stand.",Matthew Hubbard,Dave Filoni,8 +1417,1417,Water,1,Imprisoned,6,Scene Description,"A sudden rush of air fills their ears as the facility shakes. The ventilation shaft bursts off its hinges as an immense blast of coal soars into the air, crashing down into a gathered pile. Everyone present is silent, staring in stark surprise at this turn of events. Lastly, Aang leaps out from the barren ventilation shaft, landing atop the coal pile and coughing, covered in soot and dirt. Momo follows him and Katara runs up to the coal, turning to face the earthbenders.",NA,Matthew Hubbard,Dave Filoni,8 +1418,1418,Water,1,Imprisoned,6,Katara,"[Lifting up a piece of coal.] Here's your chance, earthbenders! Take it! Your fate is in your own hands!","Here's your chance, earthbenders! Take it! Your fate is in your own hands!",Matthew Hubbard,Dave Filoni,8 +1419,1419,Water,1,Imprisoned,6,Scene Description,"Haru bolts ahead without hesitation, prepared to bend the waiting coal as a weapon. Tyro throws his hand up, bracing his son's chest to halt his advance.",NA,Matthew Hubbard,Dave Filoni,8 +1420,1420,Water,1,Imprisoned,6,Warden,"[Bursts out into highly amused laughter.] Foolish girl. You thought a few inspirational words and some coal would change these people? Look at these blank, hopeless faces. Their spirits were broken a long time ago. [Katara's expression dims as she does as instructed, staring at the forlorn prisoners.] Oh, but you still believe in them. How sweet. They're a waste of your energy little girl. You failed.","Foolish girl. You thought a few inspirational words and some coal would change these people? Look at these blank, hopeless faces. Their spirits were broken a long time ago. Oh, but you still believe in them. How sweet. They're a waste of your energy little girl. You failed.",Matthew Hubbard,Dave Filoni,8 +1421,1421,Water,1,Imprisoned,6,Scene Description,"The warden finishes his speech by turning to take leave of the facility. As he does so, a single piece of coal sails through the air and pelts the back of his head. Outraged, the warden spins back to see who dared to attack him. Haru stands defiantly levitating three pieces of coal above his hand. The warden sends a blast of fire toward Haru, but the fire is blocked, as Tyro raises a wall of coal in his defense.",NA,Matthew Hubbard,Dave Filoni,8 +1422,1422,Water,1,Imprisoned,6,Warden,[Guards line up and prepare for battle.] Show no mercy! [The guards send a blast of fire as one toward the rebelling prisoners.],Show no mercy!,Matthew Hubbard,Dave Filoni,8 +1423,1423,Water,1,Imprisoned,6,Tyro,"[The earthbenders work together to haul a sizable mass of coal to block the fire.] For the Earth Kingdom, attack!","For the Earth Kingdom, attack!",Matthew Hubbard,Dave Filoni,8 +1424,1424,Water,1,Imprisoned,6,Scene Description,"Slamming the coal to the ground; chunks of rock assault the guards. The battle immediately flares, prisoners ducking blasts of fire and countering with fists of coal. Katara and Aang chase after Sokka as he snaps soldiers spears in two with his boomerang, tossing the broken shafts to Momo overhead. Momo continues to collect other pieces of broken spears that are thrown up to him. +Tyro and Haru work in unison to compress gathered coal into one lump, slinging this through the doors to make way for their escape. The guards on top fall down.",NA,Matthew Hubbard,Dave Filoni,8 +1425,1425,Water,1,Imprisoned,6,Tyro,Get to the ships! We'll hold them off!,Get to the ships! We'll hold them off!,Matthew Hubbard,Dave Filoni,8 +1426,1426,Water,1,Imprisoned,6,Warden,Do not let them escape!,Do not let them escape!,Matthew Hubbard,Dave Filoni,8 +1427,1427,Water,1,Imprisoned,6,Aang,[Generates an air funnel and holds it between his hands; to Katara and Sokka.] Guys! Throw me some coal!,Guys! Throw me some coal!,Matthew Hubbard,Dave Filoni,8 +1428,1428,Water,1,Imprisoned,6,Scene Description,"Katara and Sokka drop heaps of coal into his funnel, firing the material rapidly at the warden and his fellow benders, knocking them to the ground. Following this, Tyro and two other earthbenders work together to lift coal beneath these adversaries, moving them away from the rig and over the ocean.",NA,Matthew Hubbard,Dave Filoni,8 +1429,1429,Water,1,Imprisoned,6,Warden,"[Pleading.] No, please! I can't swim!","No, please! I can't swim!",Matthew Hubbard,Dave Filoni,8 +1430,1430,Water,1,Imprisoned,6,Tyro,Don't worry. I hear cowards float. [Drops their enemies into the ocean.],Don't worry. I hear cowards float.,Matthew Hubbard,Dave Filoni,8 +1431,1431,Water,1,Imprisoned,6,Scene Description,"On the barge headed to their homes, Haru and Tyro approach Katara on its deck.",NA,Matthew Hubbard,Dave Filoni,8 +1432,1432,Water,1,Imprisoned,6,Haru,I want to thank you for saving me. For saving us.,I want to thank you for saving me. For saving us.,Matthew Hubbard,Dave Filoni,8 +1433,1433,Water,1,Imprisoned,6,Katara,[Turning to face Haru. Denying.] All it took was a little coal.,All it took was a little coal.,Matthew Hubbard,Dave Filoni,8 +1434,1434,Water,1,Imprisoned,6,Haru,"It wasn't the coal, Katara. It was you. [Katara blushes.]","It wasn't the coal, Katara. It was you.",Matthew Hubbard,Dave Filoni,8 +1435,1435,Water,1,Imprisoned,6,Tyro,"Thank you for helping me find my courage, Katara of the Water Tribe. My family and everyone here owes you much.","Thank you for helping me find my courage, Katara of the Water Tribe. My family and everyone here owes you much.",Matthew Hubbard,Dave Filoni,8 +1436,1436,Water,1,Imprisoned,6,Katara,"So, I guess you're going home now.","So, I guess you're going home now.",Matthew Hubbard,Dave Filoni,8 +1437,1437,Water,1,Imprisoned,6,Tyro,Yes. To take back my village. [Raises his voice to the crowd on the lower deck.] To take back all of our villages! The Fire Nation will regret the day they set foot on our land! [Crowd cheers at Tyro's bravado.],Yes. To take back my village. To take back all of our villages! The Fire Nation will regret the day they set foot on our land!,Matthew Hubbard,Dave Filoni,8 +1438,1438,Water,1,Imprisoned,6,Haru,[To Katara.] Come with us.,Come with us.,Matthew Hubbard,Dave Filoni,8 +1439,1439,Water,1,Imprisoned,6,Katara,"I can't. Your mission is to take back your home. Ours is to get Aang to the North Pole. [Gazes over the rail to see Momo join Aang atop Appa's head, floating in the ocean.]",I can't. Your mission is to take back your home. Ours is to get Aang to the North Pole.,Matthew Hubbard,Dave Filoni,8 +1440,1440,Water,1,Imprisoned,6,Haru,"That's him, isn't it? The Avatar. [Aang airbends an encased piece of coal. Momo jumps into his lap.] Katara, thank you for bringing my father back to me. I never thought I'd see him again. I only wish there was some way ...","That's him, isn't it? The Avatar. Katara, thank you for bringing my father back to me. I never thought I'd see him again. I only wish there was some way ...",Matthew Hubbard,Dave Filoni,8 +1441,1441,Water,1,Imprisoned,6,Katara,"I know. [Reaches for her necklace wistfully, but realizes it is not around her neck and panics.] My mother's necklace! It's gone!",I know. My mother's necklace! It's gone!,Matthew Hubbard,Dave Filoni,8 +1442,1442,Water,1,Imprisoned,6,Scene Description,"Back on the prison rig, Zuko stands alone facing the sunset amid coal lying sparsely on the deck. He seizes Katara's necklace in his fingers, lifting it to stare at it grimly.",NA,Matthew Hubbard,Dave Filoni,8 +1443,1443,Water,1,Imprisoned,6,Scene Description,Fade to credits.,NA,Matthew Hubbard,Dave Filoni,8 +1444,1444,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"The episode opens to a cloudy sky, looking toward the ground. The point of view switches to one above the clouds as they pass by. A messenger hawk floats into view, emitting a cry. When Appa overshadows the bear and roars, it shrieks again and stoops down, swiveling out of view. The camera shifts to a side-view of Appa soaring along with Aang, Katara and Sokka in his saddle.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1445,1445,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"[Voice-over; somewhat dreamily.] Those clouds look so soft, [Cut to Aang sitting lazily atop Appa's head, a twig in his mouth; the view pans to the left, showing Sokka carving something with an uninterested look on his face, Katara lying on her stomach, popped up on her elbows, staring dreamingly over the rim of Appa's saddle, and Momo sleeping on the luggage.] don't they? Like you could just jump down and you'd land in a big, soft, cottony heap?","Those clouds look so soft, don't they? Like you could just jump down and you'd land in a big, soft, cottony heap?",Aaron Ehasz,Lauren MacMullan,8.2 +1446,1446,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,[Turns to Katara; mockingly with a smile.] Maybe you should give it a try.,Maybe you should give it a try.,Aaron Ehasz,Lauren MacMullan,8.2 +1447,1447,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,[Looks at Sokka with annoyance; sarcastically as she looks away from him.] You're hilarious.,You're hilarious.,Aaron Ehasz,Lauren MacMullan,8.2 +1448,1448,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"[Frontal shot; excitedly.] I'll try it! [Carrying his staff, he jumps off Appa with a big smile on his face. As he begins to fall, he turns once around his axis, winking at the camera as he passes. He falls down spreadeagled, laughing joyously.] Yeah!",I'll try it! Yeah!,Aaron Ehasz,Lauren MacMullan,8.2 +1449,1449,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Cut to a side-view of Appa's saddle as Katara and Sokka pop their heads over the rim, looking down in the direction Aang went. Cut to an upward looking shot following Aang falling down, still smiling broadly. As he passes the camera, it tilts down, following him as he vanishes in a cloud. Cut back to the siblings; Katara looks somewhat worried, while Sokka gazes wide-eyed at the point where Aang vanished. When he leans over to search the sky, Aang comes back up from behind them on his glider. The siblings turn around as they hear the snapping noise of Aang's glider being closed, and they watch how the airbender plops down on the saddle, his legs spread apart and a big smile on his face. Cut to a side-view of an unimpressed looking Sokka, before switching back to a frontal shot of Aang who is dripping wet.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1450,1450,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"[Looking at himself.] Turns out, clouds are made of water.","Turns out, clouds are made of water.",Aaron Ehasz,Lauren MacMullan,8.2 +1451,1451,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"He breaths in deeply and slams his balled, right fist against his stretched left hand, creating an expanding air ball around him in the process, drying himself off. As Aang leans back to rest on both his hands, he contently looks at Momo, whose fur got all fluffed by Aang's airbending. Cut to a side-view of Sokka, who is still looking at Aang unimpressed. Katara glances at her brother, but her attention is drawn to something over his shoulder.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1452,1452,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Hey, what is that?","Hey, what is that?",Aaron Ehasz,Lauren MacMullan,8.2 +1453,1453,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Sokka looks over his right shoulder in the direction Katara is looking as well. Katara gets up and walks to the front of Appa's saddle. Cut to a shot of the landscape in front of them, a large, dark patch of burned land standing out among the lush green of the forest. Cut to a frontal view of the trio now all looking over the front rim of Appa's saddle, surprised looks on their faces.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1454,1454,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,[Camera zooms in.] It's like a scar ...,It's like a scar ...,Aaron Ehasz,Lauren MacMullan,8.2 +1455,1455,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"The scene fades to a ground view of the scorched forest. The camera pans to the right, showing many burned trees, and Team Avatar standing in the middle of a gray, barren patch.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1456,1456,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"[Voice-over.] Listen. [Cut to a frontal shot of a sad-looking Aang, his friends behind him.] It's so quiet. There's no life anywhere.",Listen. It's so quiet. There's no life anywhere.,Aaron Ehasz,Lauren MacMullan,8.2 +1457,1457,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,Aang? Are you okay?,Aang? Are you okay?,Aaron Ehasz,Lauren MacMullan,8.2 +1458,1458,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,[Noticing footprints; angrily.] Fire Nation! Those evil savages make me sick! They have no respect for -,Fire Nation! Those evil savages make me sick! They have no respect for -,Aaron Ehasz,Lauren MacMullan,8.2 +1459,1459,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,Shhh!,Shhh!,Aaron Ehasz,Lauren MacMullan,8.2 +1460,1460,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,[Whispering angrily.] What? I'm not allowed to be angry?,What? I'm not allowed to be angry?,Aaron Ehasz,Lauren MacMullan,8.2 +1461,1461,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Katara points to Aang with a somewhat concerned look on her face as he slumps over, downcast at the sight.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1462,1462,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,[Kneels down and sighs. He picks up some ash as it slowly seeps through his hand and drops to the ground; sadly.] Why would anyone do this? How could I let this happen?,Why would anyone do this? How could I let this happen?,Aaron Ehasz,Lauren MacMullan,8.2 +1463,1463,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Aang, you didn't let this happen. It has nothing to do with you.","Aang, you didn't let this happen. It has nothing to do with you.",Aaron Ehasz,Lauren MacMullan,8.2 +1464,1464,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"[Sadly.] Yes, it does. It's the Avatar's job to protect nature. But I don't know how to do my job.","Yes, it does. It's the Avatar's job to protect nature. But I don't know how to do my job.",Aaron Ehasz,Lauren MacMullan,8.2 +1465,1465,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,That's why we're going to the North Pole. [Smiling softly.] To find you a teacher.,That's why we're going to the North Pole. To find you a teacher.,Aaron Ehasz,Lauren MacMullan,8.2 +1466,1466,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,Yeah. A waterbending teacher. But there's no one who can teach me how to be the Avatar. Monk Gyatso said that Avatar Roku would help me.,Yeah. A waterbending teacher. But there's no one who can teach me how to be the Avatar. Monk Gyatso said that Avatar Roku would help me.,Aaron Ehasz,Lauren MacMullan,8.2 +1467,1467,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,The Avatar before you? He died over a hundred years ago; how are you supposed to talk to him?,The Avatar before you? He died over a hundred years ago; how are you supposed to talk to him?,Aaron Ehasz,Lauren MacMullan,8.2 +1468,1468,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,I don't know. [Momo comes up to Aang and settles in his lap.],I don't know.,Aaron Ehasz,Lauren MacMullan,8.2 +1469,1469,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"In another area, Zuko comes looking for Iroh.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1470,1470,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,Uncle! It's time to leave! Where are you? Uncle Iroh!,Uncle! It's time to leave! Where are you? Uncle Iroh!,Aaron Ehasz,Lauren MacMullan,8.2 +1471,1471,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,[Relaxing in a hot spring.] Over here!,Over here!,Aaron Ehasz,Lauren MacMullan,8.2 +1472,1472,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,Uncle? We need to move on. We're closing in on the Avatar's trail and I don't want to lose him.,Uncle? We need to move on. We're closing in on the Avatar's trail and I don't want to lose him.,Aaron Ehasz,Lauren MacMullan,8.2 +1473,1473,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"You look tired, Prince Zuko. Why don't you join me in these hot springs and soak away your troubles?","You look tired, Prince Zuko. Why don't you join me in these hot springs and soak away your troubles?",Aaron Ehasz,Lauren MacMullan,8.2 +1474,1474,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,My troubles cannot be soaked away. It's time to go!,My troubles cannot be soaked away. It's time to go!,Aaron Ehasz,Lauren MacMullan,8.2 +1475,1475,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,You should take your teacher's advice and relax a little. The temperature's just right. I heated it myself. [He breathes steam through his nose.],You should take your teacher's advice and relax a little. The temperature's just right. I heated it myself.,Aaron Ehasz,Lauren MacMullan,8.2 +1476,1476,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,Enough! We need to leave now. Get out of the water!,Enough! We need to leave now. Get out of the water!,Aaron Ehasz,Lauren MacMullan,8.2 +1477,1477,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Very well! [He gets up, exposing himself.]",Very well!,Aaron Ehasz,Lauren MacMullan,8.2 +1478,1478,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,"[Shielding his eyes.] On second thought, why don't you take another few minutes? But be back at the ship in a half-hour or I'm leaving without you!","On second thought, why don't you take another few minutes? But be back at the ship in a half-hour or I'm leaving without you!",Aaron Ehasz,Lauren MacMullan,8.2 +1479,1479,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Iroh sighs as he slumps back into the water. +The scene returns to the forest.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1480,1480,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"[Approaches Aang.] Hey, Aang! You ready to be cheered up?","Hey, Aang! You ready to be cheered up?",Aaron Ehasz,Lauren MacMullan,8.2 +1481,1481,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"[Sadly.] No. [An acorn is thrown at him.] Ow! Hey, how is that cheering me up?","No. Ow! Hey, how is that cheering me up?",Aaron Ehasz,Lauren MacMullan,8.2 +1482,1482,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"[Chuckles.] Cheered me up. [An acorn gets thrown at him.] Ow. Yeah, I probably deserved that.","Cheered me up. Ow. Yeah, I probably deserved that.",Aaron Ehasz,Lauren MacMullan,8.2 +1483,1483,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"These acorns are everywhere, Aang. That means the forest will grow back! Every one of these will be a tall oak tree someday, and all the birds and animals that lived here will come back. [She places the acorn in his hand and closes it.]","These acorns are everywhere, Aang. That means the forest will grow back! Every one of these will be a tall oak tree someday, and all the birds and animals that lived here will come back.",Aaron Ehasz,Lauren MacMullan,8.2 +1484,1484,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Thanks, Katara.","Thanks, Katara.",Aaron Ehasz,Lauren MacMullan,8.2 +1485,1485,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Katara smiles at him before gasping at the sight of an old man approaching.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1486,1486,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"Hey, who are you?","Hey, who are you?",Aaron Ehasz,Lauren MacMullan,8.2 +1487,1487,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,"When I saw the flying bison, I thought it was impossible! [Approaches Aang.] But, those markings ... are you the Avatar, child? [Aang look to Katara, who nods. He nods himself.] My village desperately needs your help!","When I saw the flying bison, I thought it was impossible! But, those markings ... are you the Avatar, child? My village desperately needs your help!",Aaron Ehasz,Lauren MacMullan,8.2 +1488,1488,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The scene cuts to them at Senlin Village at sunset. The village has been partially destroyed. The wanderer leads them into the center building.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1489,1489,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,This young person is the Avatar!,This young person is the Avatar!,Aaron Ehasz,Lauren MacMullan,8.2 +1490,1490,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,"So, the rumors of your return are true! It is the greatest honor of a lifetime to be in your presence.","So, the rumors of your return are true! It is the greatest honor of a lifetime to be in your presence.",Aaron Ehasz,Lauren MacMullan,8.2 +1491,1491,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,Nice to meet you too! So ... is there something I can help you with?,Nice to meet you too! So ... is there something I can help you with?,Aaron Ehasz,Lauren MacMullan,8.2 +1492,1492,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,I'm not sure ...,I'm not sure ...,Aaron Ehasz,Lauren MacMullan,8.2 +1493,1493,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,"Our village is in crisis, he's our only hope! [To Aang.] For the last few days at sunset, a spirit monster comes and attacks our village. He is Hei Bai, the black and white spirit.","Our village is in crisis, he's our only hope! For the last few days at sunset, a spirit monster comes and attacks our village. He is Hei Bai, the black and white spirit.",Aaron Ehasz,Lauren MacMullan,8.2 +1494,1494,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,Why is it attacking you?,Why is it attacking you?,Aaron Ehasz,Lauren MacMullan,8.2 +1495,1495,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,"We do not know, but each of the last three nights, he has abducted one of our own. We are especially fearful because the winter solstice draws near.","We do not know, but each of the last three nights, he has abducted one of our own. We are especially fearful because the winter solstice draws near.",Aaron Ehasz,Lauren MacMullan,8.2 +1496,1496,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,What happens then?,What happens then?,Aaron Ehasz,Lauren MacMullan,8.2 +1497,1497,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,"As the solstice approaches, the natural world and the Spirit World grow closer and closer until the line between them is blurred completely.","As the solstice approaches, the natural world and the Spirit World grow closer and closer until the line between them is blurred completely.",Aaron Ehasz,Lauren MacMullan,8.2 +1498,1498,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,"Hei Bai is already causing devastation and destruction. Once the solstice is here, there's no telling what will happen.","Hei Bai is already causing devastation and destruction. Once the solstice is here, there's no telling what will happen.",Aaron Ehasz,Lauren MacMullan,8.2 +1499,1499,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"So, what do you want me to do, exactly?","So, what do you want me to do, exactly?",Aaron Ehasz,Lauren MacMullan,8.2 +1500,1500,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,Who better to resolve a crisis between our world and the Spirit World than the Avatar himself? You are the great bridge between man and spirits.,Who better to resolve a crisis between our world and the Spirit World than the Avatar himself? You are the great bridge between man and spirits.,Aaron Ehasz,Lauren MacMullan,8.2 +1501,1501,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,Right ... that's me.,Right ... that's me.,Aaron Ehasz,Lauren MacMullan,8.2 +1502,1502,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Hey great bridge guy, could I talk to you over here for a second? [She leads him toward a window.] Aang, you seem a little unsure about all of this.","Hey great bridge guy, could I talk to you over here for a second? Aang, you seem a little unsure about all of this.",Aaron Ehasz,Lauren MacMullan,8.2 +1503,1503,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Yeah, that might be because I don't know anything at all about the Spirit World. It's not like there's someone to teach me this stuff!","Yeah, that might be because I don't know anything at all about the Spirit World. It's not like there's someone to teach me this stuff!",Aaron Ehasz,Lauren MacMullan,8.2 +1504,1504,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,So ... can you help these people?,So ... can you help these people?,Aaron Ehasz,Lauren MacMullan,8.2 +1505,1505,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"I have to try, don't I? Maybe whatever I have to do will just ... come to me. [Momo lands on his shoulder.]","I have to try, don't I? Maybe whatever I have to do will just ... come to me.",Aaron Ehasz,Lauren MacMullan,8.2 +1506,1506,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"[With a kind and reassuring smile.] I think you can do it, Aang.","I think you can do it, Aang.",Aaron Ehasz,Lauren MacMullan,8.2 +1507,1507,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,[With a similar expression.] Yeah. [Brief pause.] We're all going to get eaten by a spirit monster.,Yeah. We're all going to get eaten by a spirit monster.,Aaron Ehasz,Lauren MacMullan,8.2 +1508,1508,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Cut back to the hot spring. A sleeping Iroh is awoken by nearby stirring in the trees.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1509,1509,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Who's there? [He sees a rat-like animal.] A meadow vole! I should have known. [He takes the creature into the palm of his hand.] You startled me, little one. [Sighs.] It seems I dozed off and missed my nephew's deadline, but it was a very sweet nap.","Who's there? A meadow vole! I should have known. You startled me, little one. It seems I dozed off and missed my nephew's deadline, but it was a very sweet nap.",Aaron Ehasz,Lauren MacMullan,8.2 +1510,1510,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"The meadow vole leaps up and down. This is followed by shaking and the ground moving toward Iroh. Suddenly, the rock at the bottom of the spring jumps up, capturing him. Three Earth Kingdom soldiers surround him.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1511,1511,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Soldier,[Picks up Iroh's clothes.] He's a Fire Nation soldier.,He's a Fire Nation soldier.,Aaron Ehasz,Lauren MacMullan,8.2 +1512,1512,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,"He's no ordinary soldier. This is the Fire Lord's brother, the Dragon of the West. The once-great General Iroh, but now, he's our prisoner.","He's no ordinary soldier. This is the Fire Lord's brother, the Dragon of the West. The once-great General Iroh, but now, he's our prisoner.",Aaron Ehasz,Lauren MacMullan,8.2 +1513,1513,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Iroh gives the captain a stern look. +Cut back to Senlin, near sunset. Aang steps outside the center building and awaits the Hei Bai.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1514,1514,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"[Walking toward the village entrance.] Hello, Spirit? Can you hear me? This is the Avatar speaking. I'm here to try to help stuff.","Hello, Spirit? Can you hear me? This is the Avatar speaking. I'm here to try to help stuff.",Aaron Ehasz,Lauren MacMullan,8.2 +1515,1515,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Cut to the building interior. Sokka and Katara watch.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1516,1516,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,This isn't right. We can't sit here and cower while Aang waits for some monster to show up.,This isn't right. We can't sit here and cower while Aang waits for some monster to show up.,Aaron Ehasz,Lauren MacMullan,8.2 +1517,1517,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,"If anyone can save us, he can.","If anyone can save us, he can.",Aaron Ehasz,Lauren MacMullan,8.2 +1518,1518,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,He still shouldn't have to face this alone.,He still shouldn't have to face this alone.,Aaron Ehasz,Lauren MacMullan,8.2 +1519,1519,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The sun sets and night falls. Cut back to Aang.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1520,1520,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"The sun has set. Where are you, Hei Bai? Well ... spirit ... uhhh ... I hereby ask you to please leave this village in peace. [He spins his staff and sticks it down, in apparent authority.] Okay ... well ... I guess that's settled, then.","The sun has set. Where are you, Hei Bai? Well ... spirit ... uhhh ... I hereby ask you to please leave this village in peace. Okay ... well ... I guess that's settled, then.",Aaron Ehasz,Lauren MacMullan,8.2 +1521,1521,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"He walks away. Behind him, however, the Hei Bai fades into the real world. He walks right behind Aang, who turns to see him.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1522,1522,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,You must be the Hei Bai spirit. My name is–,You must be the Hei Bai spirit. My name is–,Aaron Ehasz,Lauren MacMullan,8.2 +1523,1523,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The spirit releases a burst of energy at him. It moves past him.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1524,1524,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"My name's Aang! I'm the Avatar and I would like to help. Hey, wait up! [Hei Bai wreaks havoc, smashing buildings and destroying a tower with energy.] Uhhh.","My name's Aang! I'm the Avatar and I would like to help. Hey, wait up! Uhhh.",Aaron Ehasz,Lauren MacMullan,8.2 +1525,1525,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,The Avatar's methods are ... unusual.,The Avatar's methods are ... unusual.,Aaron Ehasz,Lauren MacMullan,8.2 +1526,1526,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,It doesn't seem too interested in what he's saying. Maybe we should go help him.,It doesn't seem too interested in what he's saying. Maybe we should go help him.,Aaron Ehasz,Lauren MacMullan,8.2 +1527,1527,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,No. Only the Avatar stands a chance against the Hei Bai.,No. Only the Avatar stands a chance against the Hei Bai.,Aaron Ehasz,Lauren MacMullan,8.2 +1528,1528,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Aang will figure out the right thing to do, Sokka.","Aang will figure out the right thing to do, Sokka.",Aaron Ehasz,Lauren MacMullan,8.2 +1529,1529,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Hei Bai smashes another building.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1530,1530,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Please, would you stop destroying things and listen? I'm trying to do my job as spirit bridge! Excuse me, would please turn around? I command you to turn around now!","Please, would you stop destroying things and listen? I'm trying to do my job as spirit bridge! Excuse me, would please turn around? I command you to turn around now!",Aaron Ehasz,Lauren MacMullan,8.2 +1531,1531,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The spirit hits Aang and sends him flying to the roof of another building.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1532,1532,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,That's it. He needs help. [Exits the building.],That's it. He needs help.,Aaron Ehasz,Lauren MacMullan,8.2 +1533,1533,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Sokka, wait! [Starts to follow him.]","Sokka, wait!",Aaron Ehasz,Lauren MacMullan,8.2 +1534,1534,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,[Stops her.] It's not safe!,It's not safe!,Aaron Ehasz,Lauren MacMullan,8.2 +1535,1535,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"Hei Bai, over here! [He throws his boomerang at him, but it barely affects the monster. He runs toward it.]","Hei Bai, over here!",Aaron Ehasz,Lauren MacMullan,8.2 +1536,1536,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Sokka, go back!","Sokka, go back!",Aaron Ehasz,Lauren MacMullan,8.2 +1537,1537,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"We'll fight him together, Aang.","We'll fight him together, Aang.",Aaron Ehasz,Lauren MacMullan,8.2 +1538,1538,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"I don't want to fight him unless I– [Sokka is taken by the Hei Bai, and the spirit flees. Aang chases it.]",I don't want to fight him unless I–,Aaron Ehasz,Lauren MacMullan,8.2 +1539,1539,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,[Running to the village entrance.] Sokka! [The villagers go the entrance as well. Katara is left standing fearful.],Sokka!,Aaron Ehasz,Lauren MacMullan,8.2 +1540,1540,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Back near the hot spring. Two soldiers and Zuko look for Iroh.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1541,1541,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,"Uncle! Uncle, where are you?","Uncle! Uncle, where are you?",Aaron Ehasz,Lauren MacMullan,8.2 +1542,1542,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Fire Nation Soldier,"Sir, maybe he thought you left without him.","Sir, maybe he thought you left without him.",Aaron Ehasz,Lauren MacMullan,8.2 +1543,1543,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,Something's not right here. That pile of rocks.,Something's not right here. That pile of rocks.,Aaron Ehasz,Lauren MacMullan,8.2 +1544,1544,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Fire Nation Soldier,"It looks like there's been a landslide, sir.","It looks like there's been a landslide, sir.",Aaron Ehasz,Lauren MacMullan,8.2 +1545,1545,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,Land doesn't slide uphill. Those rocks didn't move naturally. [Stands up straight.] My Uncle's been captured by earthbenders!,Land doesn't slide uphill. Those rocks didn't move naturally. My Uncle's been captured by earthbenders!,Aaron Ehasz,Lauren MacMullan,8.2 +1546,1546,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Back to the forest. Aang continues to pursue the Hei Bai, looking for Sokka.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1547,1547,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,Aang! Over here! Help!,Aang! Over here! Help!,Aaron Ehasz,Lauren MacMullan,8.2 +1548,1548,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Hang on, Sokka!","Hang on, Sokka!",Aaron Ehasz,Lauren MacMullan,8.2 +1549,1549,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Aang pulls out his hand, trying to free Sokka. However, before he can grab him, the spirit fades away, taking Sokka with it. Aang falls in front of a bear-like statue, knocked out. +A couple of hours later, Aang awakens.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1550,1550,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,Sokka! [He realizes Sokka is nowhere to be seen.] I failed.,Sokka! I failed.,Aaron Ehasz,Lauren MacMullan,8.2 +1551,1551,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The next scene cuts back to the soldiers who captured Iroh. They are riding ostrich horses. One soldier carries a torch with him for light.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1552,1552,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,Where are you taking me?,Where are you taking me?,Aaron Ehasz,Lauren MacMullan,8.2 +1553,1553,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,We're taking you to face justice.,We're taking you to face justice.,Aaron Ehasz,Lauren MacMullan,8.2 +1554,1554,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Right, but where, specifically?","Right, but where, specifically?",Aaron Ehasz,Lauren MacMullan,8.2 +1555,1555,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,"A place you're quite familiar with, actually. You once laid siege to it for 600 days, but it would not yield to you.","A place you're quite familiar with, actually. You once laid siege to it for 600 days, but it would not yield to you.",Aaron Ehasz,Lauren MacMullan,8.2 +1556,1556,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Ah, the great city of Ba Sing Se.","Ah, the great city of Ba Sing Se.",Aaron Ehasz,Lauren MacMullan,8.2 +1557,1557,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,"It was greater than you were, apparently.","It was greater than you were, apparently.",Aaron Ehasz,Lauren MacMullan,8.2 +1558,1558,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"I acknowledge my defeat at Ba Sing Se. After 600 days away from home, my men were tired, and I was tired. [Yawns.] And I'm still tired. [He falls off one of the horses. He is quickly picked back up. However, he leaves one of his sandals behind and smiles cleverly.]","I acknowledge my defeat at Ba Sing Se. After 600 days away from home, my men were tired, and I was tired. And I'm still tired.",Aaron Ehasz,Lauren MacMullan,8.2 +1559,1559,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Cut back to Senlin Village. Katara awaits at the village entrance for Sokka and Aang. The Old wanderer approaches her.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1560,1560,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,I'm sure they'll be back.,I'm sure they'll be back.,Aaron Ehasz,Lauren MacMullan,8.2 +1561,1561,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,I know.,I know.,Aaron Ehasz,Lauren MacMullan,8.2 +1562,1562,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,[Places a blanket around her.] You should get some rest.,You should get some rest.,Aaron Ehasz,Lauren MacMullan,8.2 +1563,1563,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,Everything's going to be okay ...,Everything's going to be okay ...,Aaron Ehasz,Lauren MacMullan,8.2 +1564,1564,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,"Your brother is in good hands. I would be shocked if the Avatar returned without him. [As he is speaking, Aang approaches.]",Your brother is in good hands. I would be shocked if the Avatar returned without him.,Aaron Ehasz,Lauren MacMullan,8.2 +1565,1565,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Katara? Katara, I lost him.","Katara? Katara, I lost him.",Aaron Ehasz,Lauren MacMullan,8.2 +1566,1566,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The sun rises.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1567,1567,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Old wanderer,The sun is rising. Perhaps he will return soon.,The sun is rising. Perhaps he will return soon.,Aaron Ehasz,Lauren MacMullan,8.2 +1568,1568,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"[His appearance is blue.] What? No, I'm right here! [He waves his hand in the Wanderer's face, only to notice his own appearance.] I'm in the Spirit World!","What? No, I'm right here! I'm in the Spirit World!",Aaron Ehasz,Lauren MacMullan,8.2 +1569,1569,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Cut back to the forest. Zuko comes up on Iroh's sandal.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1570,1570,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,"[Sniffs and gets a disgusted look.] Yeah, that's Uncle Iroh. [He re-mounts his rhino.]","Yeah, that's Uncle Iroh.",Aaron Ehasz,Lauren MacMullan,8.2 +1571,1571,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Back at the Village.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1572,1572,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"I'll figure this out, Katara. I promise. Like they said, I'm the bridge between the worlds, right? All I have to do is ... figure out what I have to do. But once I do that, no problem. [Appa approaches.] Appa! Hey buddy, I'm right here! [He breathes on Katara.] But, I guess you can't see me either.","I'll figure this out, Katara. I promise. Like they said, I'm the bridge between the worlds, right? All I have to do is ... figure out what I have to do. But once I do that, no problem. Appa! Hey buddy, I'm right here! But, I guess you can't see me either.",Aaron Ehasz,Lauren MacMullan,8.2 +1573,1573,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"It's okay, Appa, don't worry. I'm sure they're on their way back. I bet they even found you a bunch of moon peaches for a treat. [The two return the village.]","It's okay, Appa, don't worry. I'm sure they're on their way back. I bet they even found you a bunch of moon peaches for a treat.",Aaron Ehasz,Lauren MacMullan,8.2 +1574,1574,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"What am I supposed to do? Avatar Roku, how can I talk to you? [He hears something.] Sokka? [He notices a dragon coming toward him.] That's definitely not Sokka. [He tries to fly away but cannot. He notices his airbending is not working at all.] What? I can't airbend in the Spirit World. [The dragon lands just before him.] You don't know where Sokka is, do you? [The dragon touches him. He sees a vision of Roku flying on this dragon.] You're Avatar Roku's animal guide! Like Appa is to me! I need to save my friend and I don't know how! Is there some way for me to talk to Roku? [The dragon curls around him, and he gets on him.] I'll be back, Katara. [It gets up.] Take me to Roku! [The dragon flies away.]","What am I supposed to do? Avatar Roku, how can I talk to you? Sokka? That's definitely not Sokka. What? I can't airbend in the Spirit World. You don't know where Sokka is, do you? You're Avatar Roku's animal guide! Like Appa is to me! I need to save my friend and I don't know how! Is there some way for me to talk to Roku? I'll be back, Katara. Take me to Roku!",Aaron Ehasz,Lauren MacMullan,8.2 +1575,1575,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Cut to a mountain the earthbenders are leading Iroh through. Iroh looks at the skies and notices the dragon and Aang. He gasps in wonder.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1576,1576,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,What's the problem?,What's the problem?,Aaron Ehasz,Lauren MacMullan,8.2 +1577,1577,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Nothing. [Pauses.] Actually, there is a bit of a problem. My old joints are sore and aching, and these shackles are too loose.","Nothing. Actually, there is a bit of a problem. My old joints are sore and aching, and these shackles are too loose.",Aaron Ehasz,Lauren MacMullan,8.2 +1578,1578,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,Too loose?,Too loose?,Aaron Ehasz,Lauren MacMullan,8.2 +1579,1579,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,That's right. The cuffs move and jangle around and bump my wrists. It would help me if you tighten them so they wouldn't shake around so much.,That's right. The cuffs move and jangle around and bump my wrists. It would help me if you tighten them so they wouldn't shake around so much.,Aaron Ehasz,Lauren MacMullan,8.2 +1580,1580,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,"Very well. Corporal, tighten the prisoner's handcuffs.","Very well. Corporal, tighten the prisoner's handcuffs.",Aaron Ehasz,Lauren MacMullan,8.2 +1581,1581,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"They all stop. The corporal dismounts and moves to Iroh. As he touches his handcuffs, Iroh breathes deeply and heats them up. He pushes the corporal's hand to the cuffs, causing him to scream in pain. Iroh jumps free and blasts fire at the soldiers. He rolls down the hill as the soldiers try to get control of their ostrich horses. +Cut back to Aang and Fang. Fang takes him to a temple on an unknown island. He flies into the temple and toward the roof.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1582,1582,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Hey, what are you doing? [He screams, but they fly right through the roof and into a mysterious room. Within is a celestial calendar and a statue of Roku.] I don't understand, this is just a statue of Roku. [Fang presses one of his feelers to Aang's forehead. A vision of a comet appears to him.] Is that what Roku wants to talk to me about? A comet? When can I talk to him? [Fang moves his head, allowing a light beam to appear. This is just to the right of Roku's statue. With another feeler press, he sees a vision of the sun setting and rising repeatedly, and the light closing in on Roku.] It's a calendar, and the light will reach Roku on the solstice! So, that's when I'll be able to speak to Roku? [The dragon breathes an apparent yes.] But I can't wait that long! I need to save Sokka now! [The dragon takes Aang from the temple.]","Hey, what are you doing? I don't understand, this is just a statue of Roku. Is that what Roku wants to talk to me about? A comet? When can I talk to him? It's a calendar, and the light will reach Roku on the solstice! So, that's when I'll be able to speak to Roku? But I can't wait that long! I need to save Sokka now!",Aaron Ehasz,Lauren MacMullan,8.2 +1583,1583,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Cut back to Iroh rolling down the hill. One of the soldiers hits him with a rockslide. All of the soldiers chase after him, reaching him at the bottom of the hill.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1584,1584,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Soldier,"He's too dangerous, Captain! We just can't just carry him to the Capital! We have to do something now!","He's too dangerous, Captain! We just can't just carry him to the Capital! We have to do something now!",Aaron Ehasz,Lauren MacMullan,8.2 +1585,1585,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,I agree. He must be dealt with immediately and severely.,I agree. He must be dealt with immediately and severely.,Aaron Ehasz,Lauren MacMullan,8.2 +1586,1586,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Iroh spits a rock out. +Meanwhile, Katara is flying on Appa over the forest.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1587,1587,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"It's no use, Appa. I don't seem them anywhere. Our best hope is to go back to the village and wait. [She re-directs Appa to the village's direction.]","It's no use, Appa. I don't seem them anywhere. Our best hope is to go back to the village and wait.",Aaron Ehasz,Lauren MacMullan,8.2 +1588,1588,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"While following the ostrich horse footprints, Zuko notices Appa.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1589,1589,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,"The Avatar! [He turns slightly, but looks back at the footprints.]",The Avatar!,Aaron Ehasz,Lauren MacMullan,8.2 +1590,1590,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Fang takes Aang back to the statue at fast speed. Aang notices his body is there and also prepares for impact. Suddenly, Fang disappears into the statue and Aang is returned to his body. He looks around at the statue, opens his glider, and flies back to the village. +Cut to the village, sunset. Katara stands outside the center building and notices Aang's return. Aang lands and Katara runs to him.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1591,1591,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,You're back! [She embraces Aang.] Where's Sokka?,You're back! Where's Sokka?,Aaron Ehasz,Lauren MacMullan,8.2 +1592,1592,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,I'm not sure ...,I'm not sure ...,Aaron Ehasz,Lauren MacMullan,8.2 +1593,1593,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"The evening gives way to night. +Back to Iroh, who is surrounded by the soldiers.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1594,1594,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,"These dangerous hands must be crushed. [He brings up and prepares to drop it. However, Zuko jumps in and kicks the rock away before breaking Iroh's chain with his boot.]",These dangerous hands must be crushed.,Aaron Ehasz,Lauren MacMullan,8.2 +1595,1595,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Excellent form, Prince Zuko.","Excellent form, Prince Zuko.",Aaron Ehasz,Lauren MacMullan,8.2 +1596,1596,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,You taught me well.,You taught me well.,Aaron Ehasz,Lauren MacMullan,8.2 +1597,1597,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Earthbender captain,Surrender yourselves. It's five against two. You're clearly outnumbered.,Surrender yourselves. It's five against two. You're clearly outnumbered.,Aaron Ehasz,Lauren MacMullan,8.2 +1598,1598,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Iroh,"Yeah, that's true, but you are clearly outmatched.","Yeah, that's true, but you are clearly outmatched.",Aaron Ehasz,Lauren MacMullan,8.2 +1599,1599,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"The solders fire rocks, but Iroh destroys them with the chains. Zuko takes out two soldiers with fire. A rock is fired at him, but Iroh catches it and throws it back at the soldiers, knocking them down. The Captain fires three rocks at Zuko, which he dodges. Zuko counters with fire blasts that are dodged. The captain brings up a large mass of rock, however, Iroh throws his chains around his ankles, knocking him and causing the rocks to fall on top of him. The soldiers are heard groaning underneath the rocks.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1600,1600,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Zuko,Now would you please put on some clothes?,Now would you please put on some clothes?,Aaron Ehasz,Lauren MacMullan,8.2 +1601,1601,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,"Cut back to Senlin. Aang awaits at the entrance for the Hei Bai. After some time, he gives up and returns to the center building. Just as he exits, however, the spirit appears to his left. He throws up an air shield to stop its attack.",NA,Aaron Ehasz,Lauren MacMullan,8.2 +1602,1602,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Aang, what are you doing?! Run!","Aang, what are you doing?! Run!",Aaron Ehasz,Lauren MacMullan,8.2 +1603,1603,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The spirit prepares to resume its attack when Aang jumps in front of it. He feels its forehead and notices that a panda lurks below it.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1604,1604,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"You're the spirit of this forest! Now I understand. You're upset and angry because your home was burned down. When I saw the forest had burned, I was sad and upset, but my friend gave me hope that the forest would grow back. [He shows it the acorn and leaves it at his feet. The spirit picks it up and reverts to the panda form. It walks away peacefully. As it exits, a series of branches grow, and three villagers and Sokka emerge from it.]","You're the spirit of this forest! Now I understand. You're upset and angry because your home was burned down. When I saw the forest had burned, I was sad and upset, but my friend gave me hope that the forest would grow back.",Aaron Ehasz,Lauren MacMullan,8.2 +1605,1605,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"Sokka! [She runs to him and embraces him, while other villagers embrace their loved ones.]",Sokka!,Aaron Ehasz,Lauren MacMullan,8.2 +1606,1606,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,What happened?,What happened?,Aaron Ehasz,Lauren MacMullan,8.2 +1607,1607,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,You were trapped in the Spirit World for 24 hours! How are you feeling?,You were trapped in the Spirit World for 24 hours! How are you feeling?,Aaron Ehasz,Lauren MacMullan,8.2 +1608,1608,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,Like I seriously need to use the bathroom. [Katara gives Sokka a somewhat disgusted look.],Like I seriously need to use the bathroom.,Aaron Ehasz,Lauren MacMullan,8.2 +1609,1609,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,"Thank you, Avatar. If only there were a way to repay you for what you've done.","Thank you, Avatar. If only there were a way to repay you for what you've done.",Aaron Ehasz,Lauren MacMullan,8.2 +1610,1610,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"You could give us some supplies, and some money.","You could give us some supplies, and some money.",Aaron Ehasz,Lauren MacMullan,8.2 +1611,1611,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,Sokka!,Sokka!,Aaron Ehasz,Lauren MacMullan,8.2 +1612,1612,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,What? We need stuff.,What? We need stuff.,Aaron Ehasz,Lauren MacMullan,8.2 +1613,1613,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Senlin Village leader,It would be an honor to help you prepare for your journey.,It would be an honor to help you prepare for your journey.,Aaron Ehasz,Lauren MacMullan,8.2 +1614,1614,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,"I'm so proud of you, Aang. You figured out what to do, all on your own.","I'm so proud of you, Aang. You figured out what to do, all on your own.",Aaron Ehasz,Lauren MacMullan,8.2 +1615,1615,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Actually, I did have a little help and there's something else.","Actually, I did have a little help and there's something else.",Aaron Ehasz,Lauren MacMullan,8.2 +1616,1616,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,What is it?,What is it?,Aaron Ehasz,Lauren MacMullan,8.2 +1617,1617,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,I need to talk to Roku and I think I found a way to contact his spirit.,I need to talk to Roku and I think I found a way to contact his spirit.,Aaron Ehasz,Lauren MacMullan,8.2 +1618,1618,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,That's great!,That's great!,Aaron Ehasz,Lauren MacMullan,8.2 +1619,1619,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Sokka,"Creepy, but great.","Creepy, but great.",Aaron Ehasz,Lauren MacMullan,8.2 +1620,1620,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"There's a temple on a crescent-shaped island and if I go there on the solstice, I'll be able to speak with him.","There's a temple on a crescent-shaped island and if I go there on the solstice, I'll be able to speak with him.",Aaron Ehasz,Lauren MacMullan,8.2 +1621,1621,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Katara,But the solstice is tomorrow!,But the solstice is tomorrow!,Aaron Ehasz,Lauren MacMullan,8.2 +1622,1622,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Aang,"Yeah, and there's one more problem. The island is in the Fire Nation.","Yeah, and there's one more problem. The island is in the Fire Nation.",Aaron Ehasz,Lauren MacMullan,8.2 +1623,1623,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,The siblings grow fearful. The shot slowly moves up to the moon over the hills.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1624,1624,Water,1,"Winter Solstice, Part 1: The Spirit World",7,Scene Description,Fade to credits.,NA,Aaron Ehasz,Lauren MacMullan,8.2 +1625,1625,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"The scene opens to a full moon in the sky. The camera pans down and shows Senlin Village during early morning hours. Cut to a view from among the houses, slowly zooming in on Aang who tries to get Appa to move, yanking on the reins, though the bison continually refuses and sits down.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1626,1626,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Strained voice.] Let's go, Appa! Come on, boy! [Appa roars in protest and sits down. Cut to a close side-view; Aang sadly addresses his pet.] Look I'm sorry, but Katara and Sokka aren't coming to the Fire Nation with us. [Frontal shot; looks down and away, sadly.] If they got hurt, I'd never forgive myself. [Cut back to the side-shot; sternly, emphasizing his command by straightening himself.] So get your big butt off the ground and let's go!","Let's go, Appa! Come on, boy! Look I'm sorry, but Katara and Sokka aren't coming to the Fire Nation with us. If they got hurt, I'd never forgive myself. So get your big butt off the ground and let's go!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1627,1627,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"He jerks at the reins, stretching them out, but is flung to the ground when the ropes pull him back as Appa did not move a muscle. Cut to a forlorn looking Aang, sitting spread-legged on the ground.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1628,1628,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Voice-over; Aang gasps in surprise and looks over his right shoulder and over his left, turning around in search for the origins of the voice.] I think his big butt is trying to tell ya something.",I think his big butt is trying to tell ya something.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1629,1629,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Cut to a frontal shot of Appa as the camera swiftly pans to the right to reveal a collection of Senlin villagers, with Katara and Sokka standing in the front.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1630,1630,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Desperately.] Please don't go Aang. The world can't afford to lose you to the Fire Nation. [Closer shot of Katara's pleading face.] Neither can I.,Please don't go Aang. The world can't afford to lose you to the Fire Nation. Neither can I.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1631,1631,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Looks away sadly and recalls an image of Sozin's Comet.] But I have to talk to Avatar Roku to find out what my vision means! [Side-shot as he approaches his friends.] I need to get to the Fire Temple before the sun sets on the solstice. That's today!,But I have to talk to Avatar Roku to find out what my vision means! I need to get to the Fire Temple before the sun sets on the solstice. That's today!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1632,1632,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Aang airbends himself atop Appa's head. Close shot of him looking back with a sad expression on his face as he prepares to leave. As Appa stands up, the shot changes to a frontal view, and Katara and Sokka run to stand before the bison, preventing him from moving any further.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1633,1633,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"We're not letting you go into the Fire Nation, Aang.","We're not letting you go into the Fire Nation, Aang.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1634,1634,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Aang stares curiously.] At least, not without your friends. We got your back. [Momo soars up and perches atop Aang's shoulder, and Appa licks Sokka, who angrily looks at the bison.] Ew!","At least, not without your friends. We got your back. Ew!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1635,1635,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Senlin Village leader,It's a long journey to the Crescent Island. [Hands Aang a small bundle.] You'll have to fly fast to have any chance of making it before sundown. Good luck.,It's a long journey to the Crescent Island. You'll have to fly fast to have any chance of making it before sundown. Good luck.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1636,1636,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Thank you for your-,Thank you for your-,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1637,1637,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Senlin Village leader,"[Interrupts sharply, yelling. Points toward the ocean.] Go!",Go!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1638,1638,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Appa takes off with Aang, Momo, Katara, and Sokka. Later that morning, the Senlin Village leader exits a building, but he stops in his track upon finding Zuko standing in his path. In the background, Iroh is sitting on a komodo rhino.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1639,1639,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[The Senlin Village leader gasps.] Having trouble sleeping? [Pushes the man back through the door, knocking him down. Frontal shot as he approaches him.] Seen the Avatar lately?",Having trouble sleeping? Seen the Avatar lately?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1640,1640,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Day has come. Appa soars over the ocean. Aang, Katara, and Sokka all watch the ocean fearfully.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1641,1641,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"Come on boy, we've got a long way to go. Faster!","Come on boy, we've got a long way to go. Faster!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1642,1642,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,"[Close-up.] Sailing into Fire Nation waters ... Of all the foolish things you've done in your sixteen years, Prince Zuko, this is the most foolish!","Sailing into Fire Nation waters ... Of all the foolish things you've done in your sixteen years, Prince Zuko, this is the most foolish!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1643,1643,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"I have no choice, Uncle.","I have no choice, Uncle.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1644,1644,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,[Angrily.] Have you completely forgotten that the Fire Lord banished you? [Fearfully.] What if you're caught?,Have you completely forgotten that the Fire Lord banished you? What if you're caught?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1645,1645,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,[Breaks away from telescope to talk to his uncle.] I'm chasing the Avatar! My father will understand why I am returning home!,I'm chasing the Avatar! My father will understand why I am returning home!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1646,1646,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,You give him too much credit. My brother is not the understanding type!,You give him too much credit. My brother is not the understanding type!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1647,1647,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,[Looks back into his telescope. Dark scope view reveals Appa mid-flight.] There they are. Helmsman! Full steam ahead!,There they are. Helmsman! Full steam ahead!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1648,1648,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Looking back to Zuko's ship.] Aang. We've got trouble!,Aang. We've got trouble!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1649,1649,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Panicked.] Yeah! And it's gaining, fast!","Yeah! And it's gaining, fast!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1650,1650,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,A Fire Nation catapult is raised to the deck of Zuko's ship. It is loaded with a steaming projectile.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1651,1651,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,"[Waving a fan at his face.] Uh, really Prince Zuko, couldn't you shoot them down with something more fragrant?","Uh, really Prince Zuko, couldn't you shoot them down with something more fragrant?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1652,1652,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,[Lights the stinking ball with a fire punch.] On my mark! Fire!,On my mark! Fire!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1653,1653,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,A guard beside him slices the rope holding back the catapult. The flaming projectile races toward Appa.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1654,1654,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Yelling.] Fireball!,Fireball!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1655,1655,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,I'm on it!,I'm on it!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1656,1656,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"[Aang, Katara, and Sokka all make faces and grasp their noses.] We have to get out of Zuko's range, before he shoots another hot stinker at us!","We have to get out of Zuko's range, before he shoots another hot stinker at us!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1657,1657,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,Can't you make Appa go any faster?,Can't you make Appa go any faster?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1658,1658,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Yeah. But there's just one little problem.,Yeah. But there's just one little problem.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1659,1659,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,[Close-up. Eyes widening.] A blockade.,A blockade.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1660,1660,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,Birds-eye view of a two-row line of Fire Nation ships stretching across the ocean as far as the eye can see. Brief glimpse of numerous Fire Nation catapults prepared to fire.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1661,1661,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,Technically you are still in Earth Kingdom waters. Turn back now and they cannot arrest you.,Technically you are still in Earth Kingdom waters. Turn back now and they cannot arrest you.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1662,1662,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"If we fly north, we can go around the Fire Nation ships and avoid the blockade! It's the only way.","If we fly north, we can go around the Fire Nation ships and avoid the blockade! It's the only way.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1663,1663,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,There's no time!,There's no time!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1664,1664,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,This is exactly why I didn't want you to come! It's too dangerous!,This is exactly why I didn't want you to come! It's too dangerous!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1665,1665,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,And that's exactly why we're here.,And that's exactly why we're here.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1666,1666,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Boldly.] Let's run this blockade! [Both Katara and Sokka grin confidently.],Let's run this blockade!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1667,1667,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"Appa, yip-yip! [Appa roars readily, sailing forward even quicker.]","Appa, yip-yip!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1668,1668,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,He's not turning around!,He's not turning around!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1669,1669,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,"Please Prince Zuko! If the Fire Nation captures you, there is nothing I can do! Do not follow the Avatar.","Please Prince Zuko! If the Fire Nation captures you, there is nothing I can do! Do not follow the Avatar.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1670,1670,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Lowers his head, closes his eyes, and clenches his hands into fists. Sorrowfully.] I'm sorry, Uncle. [Raises his head, opens his eyes, and thrusts his right hand forward commandingly.] Run the blockade!","I'm sorry, Uncle. Run the blockade!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1671,1671,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,[Gazing through telescope.] The Avatar. [Lowers telescope lens to spot Zuko's ship.] And the banished prince. [Lowers telescope.] This must be my lucky day.,The Avatar. And the banished prince. This must be my lucky day.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1672,1672,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Captain,Commander Zhao. What are your orders?,Commander Zhao. What are your orders?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1673,1673,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"Shoot the bison down, captain.","Shoot the bison down, captain.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1674,1674,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Captain,"[Surprised.] But there's a Fire Navy ship out there, sir! One of our own! What if it's hit?","But there's a Fire Navy ship out there, sir! One of our own! What if it's hit?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1675,1675,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,So be it. [Captain backs up in shock. Zhao continues coolly.] It belongs to a traitor. [Command.] Ignite. Launch!,So be it. It belongs to a traitor. Ignite. Launch!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1676,1676,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"The sky becomes littered with flaming fireballs fired from the blockade. View from Zuko's ship as the fireballs fill the sky. Close-up of a screaming Aang, Sokka, and Katara. Zoom out as Appa evades numerous fireballs, some exploding mid-air. Camera switch to forward view, close-up, as they fly through a blanket of fireballs. The team flies directly through one that exploded before them, Appa's fur darkened from the explosion. Katara, Sokka, and Momo all slap out embers on Appa's fur.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1677,1677,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"Appa, are you okay? [Appa roars a reply. They soar higher into the clouds.]","Appa, are you okay?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1678,1678,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"On the ocean surface, Zuko's ship is narrowly missing many falling fireballs. Sheets of ocean water crash over the ship, and crew members run for safety. A single fireball explodes on the aft side of the vessel.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1679,1679,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Engineer,Prince Zuko! The engines are damaged! We need to stop and make repairs!,Prince Zuko! The engines are damaged! We need to stop and make repairs!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1680,1680,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Spins away from the man, facing the blockade.] Do not stop this ship.",Do not stop this ship.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1681,1681,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,Launch!,Launch!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1682,1682,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Close-up of Aang's view. Just over a cloud; fireballs burst through everywhere and smoke fills the screen. Aang, Katara, and Sokka scream and duck away, while Katara and Sokka grip Appa's saddle. Appa dodges many fireballs before two collide and explode in front of him. Sokka is thrown from the saddle and begins to plunge for the ocean, screaming anew.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1683,1683,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Cries out desperately.] Sokka! [Whips the reins down and begins a speedy descent in chase of Sokka.],Sokka!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1684,1684,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Appa reaches Sokka just in time. Katara grabs his hand, pulling him back into saddle. Appa skims the ocean surface. A fish appears out of nowhere and slaps Sokka square in the face, knocking him into the saddle. Momo leaps up and grabs the fish as Appa continues his swift flight mere feet above the ocean. Fireballs crash into the water all around them.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1685,1685,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"Ready ... [Holds hand up, issuing his command.]",Ready ...,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1686,1686,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Close-up of Appa's view, approaching the ships. Camera switch once to Zhao, moving to prepare the signal. Back to Aang, a look of obstinate determination overcomes him.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1687,1687,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,Fire!,Fire!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1688,1688,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"A single catapult launches a fire blast directly toward Appa. Close-up of Aang's eye as it snaps open, unafraid. Aang airbends forward off of Appa's head. He uses a powerful airbending kick, and the flaming boulder explodes in a large smoky blast. Aang falls back to Appa's head, Katara and Sokka grabbing him. Appa soars safely over the blockade, passing them.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1689,1689,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Ecstatic.] We made it!,We made it!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1690,1690,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Katara and Sokka each grimacing in terror.] We got into the Fire Nation. [Meekly.] Great.,We got into the Fire Nation. Great.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1691,1691,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Captain,"Where do you think the Avatar is headed, sir?","Where do you think the Avatar is headed, sir?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1692,1692,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"I'm not sure. [Turns aside, gazes at Zuko's smoking ship.] But I bet a certain banished prince will know.",I'm not sure. But I bet a certain banished prince will know.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1693,1693,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Scene switch to just overhead Zuko's ship. His small vessel approaches two ships in the blockade. These two ships sail opposite directions, in a moment they will close off Zuko's ship's path.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1694,1694,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,We're on a collision course!,We're on a collision course!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1695,1695,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,[Confidently.] We can make it!,We can make it!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1696,1696,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Captain,"[Captain stands ahead of a squad of nine firebenders.] The boarding party is ready to apprehend Prince Zuko, sir.","The boarding party is ready to apprehend Prince Zuko, sir.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1697,1697,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"[Swiftly.] Wait! Cut the engines, and let them pass.","Wait! Cut the engines, and let them pass.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1698,1698,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Captain,Sir?,Sir?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1699,1699,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Each ship in the blockade halts, allowing Zuko's ship to glide by beneath their deck, untouched. Zhao stands high, sharing an interlocked gaze with the banished prince below. Zuko and Iroh look behind them in silence as they sail safely through. Iroh strokes his gray beard curiously.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1700,1700,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"The scene cuts back to Appa, flying among blue skies. Sokka and Katara sit up in the saddle, while Aang sits on Appa's head. +The scene changes to Sokka slumped in the back of the saddle. Katara is leaning her arms over the front of the saddle, and Aang is lounging against Appa's neck. +The sky has changed to a darker, sunset-filled evening. Appa is visibly tired. Aang is sprawled over Appa's head with Momo equally sprawled over Aang's head. Katara and Sokka have each collapsed into the saddle.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1701,1701,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Close-up. Momo is shown bouncing about in eager surprise.] There it is! [Sokka and Katara pop up in the saddle.] The island where Roku's dragon took me. [Full view of Crescent Island and its smoking volcano as Appa descends.],There it is! The island where Roku's dragon took me.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1702,1702,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Appa is lying at the base of a stone bridge leading up to the island's mountain. The bridge ends at an elegant, multi-story Fire Temple. Lava is flowing beneath the bridge. The air is thick with steam. Aang stands by Appa's head, and Katara stands to Appa's side. Sokka is stretching further away.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1703,1703,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Rubs against Appa's head.] You did it buddy. Nice flying. [Appa bellows in satisfaction, rolling to his side to wave his three legs into the air lazily. Appa's tongue lolls out.]",You did it buddy. Nice flying.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1704,1704,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"[Smiles sweetly and approaches Appa. Rubs his belly.] Aww, you must be tired.","Aww, you must be tired.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1705,1705,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Joyous. Katara's expresses dumbfounded interest.] No! I'm good. Refreshed and ready to fight some firebenders! [Continues to work out and flex his body.],No! I'm good. Refreshed and ready to fight some firebenders!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1706,1706,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Props hand off hip. Responds dryly.] I was talking to Appa.,I was talking to Appa.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1707,1707,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Instantly halts exercise.] Well ... I was talking to Momo. [Points to the lemur clinging to a dead tree's branch.],Well ... I was talking to Momo.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1708,1708,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Scene cut to Katara, Sokka, Aang, and Momo walking along the stone bridge to approach a multi-story Fire Temple.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1709,1709,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Close-up, top-to-bottom view of the Fire Temple.] I don't see any guards.",I don't see any guards.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1710,1710,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Camera drops to show the group taking cover behind a lower wall below steps.] The Fire Nation must have abandoned the temple when Avatar Roku died.,The Fire Nation must have abandoned the temple when Avatar Roku died.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1711,1711,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,It's almost sundown. We better hurry! [The group leaps over the wall and charges for the front door.],It's almost sundown. We better hurry!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1712,1712,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[The group tip-toes through an enormous chamber with fire-decor columns.] Wait. I think I heard something.,Wait. I think I heard something.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1713,1713,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,"[Turning around, they see five men standing in the hallway dressed in red with tall hats.] We are the Fire Sages. Guardians of the temple of the Avatar.",We are the Fire Sages. Guardians of the temple of the Avatar.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1714,1714,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Great! I am the Avatar!,Great! I am the Avatar!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1715,1715,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,We know. [Inhales briskly before punching a blast of fire their direction.],We know.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1716,1716,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Deflects three balls of fire with his airbending. Close-up. Shouts over his shoulder.] I'll hold them off. Run!,I'll hold them off. Run!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1717,1717,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Aang leaps forward and spins his leg across the ground, sending a low air blade that sweeps the Fire Sages' legs out from beneath them, and they all fall to the ground. Aang flees after his friends.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1718,1718,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,"If the Avatar contacts Roku, there's no telling how powerful the boy will become! Split up and find him.","If the Avatar contacts Roku, there's no telling how powerful the boy will become! Split up and find him.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1719,1719,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Hallway view; Aang skids in front of Katara and Sokka and continues running.] Follow me!,Follow me!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1720,1720,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,Do you know where you're going? [The two follow Aang.],Do you know where you're going?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1721,1721,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Rounds a corner and disappears from sight.] Nope! [A moment passes, Katara and Sokka stop when Aang skids into view again. Fearfully.] Wrong way! [Runs past them.]",Nope! Wrong way!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1722,1722,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"[Rounds the corner, frightening Sokka and Katara to chase after Aang.] Come back!",Come back!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1723,1723,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"The trio turns another corner and charges down the hallway. However, they reach a dead-end as Aang skids to an immediate halt. Turning around, they face Shyu, who raises a hand in peace.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1724,1724,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,I don't want to fight you! I am a friend.,I don't want to fight you! I am a friend.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1725,1725,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"Firebenders aren't our friends! [Aang steps ahead of his friends, assuming an airbending posture.]",Firebenders aren't our friends!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1726,1726,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"[Steps toward the Avatar, before dropping to his knees and pressing his palms to the floor in submission. This startles Aang, Katara, and Sokka.] I know why you're here, Avatar.","I know why you're here, Avatar.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1727,1727,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Surprised.] You do?,You do?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1728,1728,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,Yes. [Rises from the floor to stand again.] You wish to speak to Avatar Roku. I can take you to him.,Yes. You wish to speak to Avatar Roku. I can take you to him.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1729,1729,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Skeptically.] How?,How?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1730,1730,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"[Slides back a lamplight on the wall. Places palm on wall, focuses firebending into this location to open a secret passage.] This way.",This way.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1731,1731,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,[Echoes in the distance.] Find him.,Find him.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1732,1732,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Briefly glances down the hall.] Time is running out! Quickly!,Time is running out! Quickly!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1733,1733,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Aang and Katara exchange a look with one another, asserting each other's belief to trust this firebender. The group enters the passage and descends the steps into the cave. Shyu enters behind them and closes the passageway.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1734,1734,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Close-up. Tightens knuckles on ship's railing. Smoke billows behind his ship.] What's he up to, Uncle? Why didn't Commander Zhao arrest me?","What's he up to, Uncle? Why didn't Commander Zhao arrest me?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1735,1735,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Iroh,Because he wants to follow you. He knows you'll lead him to the prize you're both after: the Avatar.,Because he wants to follow you. He knows you'll lead him to the prize you're both after: the Avatar.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1736,1736,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Close-up.] If Zhao wants to follow a trail of smoke, then that's exactly what I'll let him do.","If Zhao wants to follow a trail of smoke, then that's exactly what I'll let him do.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1737,1737,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Brief scene cut to show the sun nearly setting. Far overhead view of Shyu leading the group through caverns.] Avatar Roku once called this temple his home. He formed these secret passages out of the magma.,Avatar Roku once called this temple his home. He formed these secret passages out of the magma.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1738,1738,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Did you know Avatar Roku?,Did you know Avatar Roku?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1739,1739,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,No. But my grandfather knew him. Many generations of Fire Sages guarded this Fire Temple long before me. We all have a strong spiritual connection to this place.,No. But my grandfather knew him. Many generations of Fire Sages guarded this Fire Temple long before me. We all have a strong spiritual connection to this place.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1740,1740,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Is that how you knew I was coming?,Is that how you knew I was coming?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1741,1741,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"A few weeks ago, an amazing thing occurred. The statue of Avatar Roku; its eyes began to glow!","A few weeks ago, an amazing thing occurred. The statue of Avatar Roku; its eyes began to glow!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1742,1742,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"That's when we were at the Air Temple. Avatar Roku's eyes were glowing there, too!","That's when we were at the Air Temple. Avatar Roku's eyes were glowing there, too!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1743,1743,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"At that moment, we knew you had returned to the world.","At that moment, we knew you had returned to the world.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1744,1744,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"If this is the Avatar's temple, why did the sages attack me?","If this is the Avatar's temple, why did the sages attack me?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1745,1745,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"Things have changed. In the past, the sages were loyal only to the Avatar. When Roku died, the sages eagerly awaited for the next Avatar to return. But he never came.","Things have changed. In the past, the sages were loyal only to the Avatar. When Roku died, the sages eagerly awaited for the next Avatar to return. But he never came.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1746,1746,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Looking down, guiltily.] They were waiting for me.",They were waiting for me.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1747,1747,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Humorously mocking.] Hey don't feel bad. You're only a hundred years late! [Aang scowls heavily at Sokka.],Hey don't feel bad. You're only a hundred years late!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1748,1748,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"They lost hope the Avatar would ever return. When Fire Lord Sozin began the War, my grandfather and the other sages were forced to follow him. [Shakes head sadly.] I never wanted to serve the Fire Lord. When I learned you were coming, I knew I would have to betray the other sages.","They lost hope the Avatar would ever return. When Fire Lord Sozin began the War, my grandfather and the other sages were forced to follow him. I never wanted to serve the Fire Lord. When I learned you were coming, I knew I would have to betray the other sages.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1749,1749,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Thank you for helping me. [Close-up as Shyu smiles to Aang.],Thank you for helping me.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1750,1750,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"[Continues leading the group up a spiraling flight of stairs.] We'll follow these stairs to the sanctuary. [Time skip, Shyu continues talking as they near the top of the stairs.] Once you're inside, wait for the light to hit Avatar Roku's statue. Only then will you be able to speak with him.","We'll follow these stairs to the sanctuary. Once you're inside, wait for the light to hit Avatar Roku's statue. Only then will you be able to speak with him.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1751,1751,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,Slides back a secret tile and climbs into the outer sanctuary. Massive columns with dragon statues atop them line the room. An immense door is before them with a device holding five open-mouthed dragons.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1752,1752,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Gasps.] No!,No!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1753,1753,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Approaches door.] Shyu, what's wrong?","Shyu, what's wrong?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1754,1754,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"The sanctuary doors, they're closed!","The sanctuary doors, they're closed!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1755,1755,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Aang tugs at the door uselessly.] Can't you just open them with firebending? Like you opened that other door?,Can't you just open them with firebending? Like you opened that other door?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1756,1756,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"No. Only a fully realized Avatar is powerful enough to open this door alone. Otherwise, the sages must open this door together, [Sokka shown in deep thought.] with five simultaneous fire blasts.","No. Only a fully realized Avatar is powerful enough to open this door alone. Otherwise, the sages must open this door together, with five simultaneous fire blasts.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1757,1757,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Ponderously states.] Five fire blasts, huh? [Zoom out to show a lamplight above him.] I think I can help you out.","Five fire blasts, huh? I think I can help you out.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1758,1758,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,The scene switches to Zuko's smoke-billowing ship. Close-up to show a small vessel holding Zuko being slid into the waters.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1759,1759,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"Uncle, keep heading north. Zhao will follow the smoke trail, while I use it as a cover.","Uncle, keep heading north. Zhao will follow the smoke trail, while I use it as a cover.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1760,1760,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Iroh grunts in doubt, stroking his beard in deep thought. Zuko's boat settles on the ocean's surface and disappears in the smoke. Switch to a telescope view of nothing but smoke. Zhao lowers telescope, staring with determination. +Switch to view of sanctuary door.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1761,1761,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Kneeling. Pours oil into a bag.] This is a little trick I picked up from my father. I seal the lamp oil inside an animal skin casing, Shyu lights the oil soaked twine and, [Picks up bag, holds it proudly before him.] ta-da! Fake firebending!","This is a little trick I picked up from my father. I seal the lamp oil inside an animal skin casing, Shyu lights the oil soaked twine and, ta-da! Fake firebending!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1762,1762,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"[Impressed.] You've really outdone yourself this time, Sokka.","You've really outdone yourself this time, Sokka.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1763,1763,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,This might actually work.,This might actually work.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1764,1764,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"[Time skip. Sokka places his last bag into the dragon's mouth.] The sages will hear the explosion, so as soon as they go off, you rush in!","The sages will hear the explosion, so as soon as they go off, you rush in!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1765,1765,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Hides behind a column with her brother. Holds Momo. Glances to the next column where Aang hides.] It's almost sunset. Are you ready?,It's almost sunset. Are you ready?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1766,1766,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,Definitely.,Definitely.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1767,1767,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Shyu thrusts his finger forward, sending a small flare racing across the door to light all five bags at once. Shyu hurries to take cover. There is an intense explosion, producing a lot of smoke. Aang bursts forward and runs for the door. Aang strains to open the door, which has not budged.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1768,1768,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Surprised.] They're still locked!,They're still locked!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1769,1769,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Sadly sighs. Sokka rises from hiding behind his sister.] It didn't work. [Aang falls to his knees.],It didn't work.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1770,1770,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Time skip. Everyone stands in front of the door. Aang beats upon it furiously with consecutive airbending slices.] Why, won't, it, open?!","Why, won't, it, open?!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1771,1771,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"[Presses forward. Seizes Aang's arm.] Aang! Stop! [Relaxes, releasing his arm.] There's nothing else we can do ...",Aang! Stop! There's nothing else we can do ...,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1772,1772,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Glumly.] I'm sorry I put you through all of this for nothing.,I'm sorry I put you through all of this for nothing.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1773,1773,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Examining the explosion. Runs his finger across the black soot.] I don't get it. That firebending looked as strong as any firebending I've seen.,I don't get it. That firebending looked as strong as any firebending I've seen.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1774,1774,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"[A moment passes. Sudden excitement.] Sokka, you're a genius!","Sokka, you're a genius!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1775,1775,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Confused.] Wait. How is Sokka a genius? His plan didn't even work.,Wait. How is Sokka a genius? His plan didn't even work.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1776,1776,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,[Pleasantly.] Come on Aang. Let her dream.,Come on Aang. Let her dream.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1777,1777,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,You're right. Sokka's plan didn't work. But it looks like it did.,You're right. Sokka's plan didn't work. But it looks like it did.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1778,1778,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Dubiously.] Did the definition of genius change over the last hundred years? [Katara grasps her chin, slyly grinning toward Aang.]",Did the definition of genius change over the last hundred years?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1779,1779,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Time skip. Fire Sages run toward Shyu in front of the door.] Come quickly! The Avatar has entered the sanctuary!,Come quickly! The Avatar has entered the sanctuary!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1780,1780,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,How did he get in?,How did he get in?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1781,1781,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,I don't know. But look at the scorch marks! And down there! [Points to a shadow visible at the bottom of the door.],I don't know. But look at the scorch marks! And down there!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1782,1782,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,"He's inside! Open the doors, immediately! Before he contacts Avatar Roku!","He's inside! Open the doors, immediately! Before he contacts Avatar Roku!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1783,1783,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Aang slides into position behind a nearby column as the five sages firebend the doors locks open. As the door opens, a sooty Momo is revealed sitting on the floor. Momo sneezes, blowing the soot off himself.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1784,1784,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,It's the Avatar's lemur. He must have crawled through the pipes! We've been tricked!,It's the Avatar's lemur. He must have crawled through the pipes! We've been tricked!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1785,1785,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Momo springs into action, leaping atop the Great Fire Sage's head and clinging to his hat. Katara charged forward, pulling a nearby sage's tunic over his head to blind him. Sokka grabs the lower skirt of a sage's outfit, lifting it completely over his body to cover his face.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1786,1786,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,"[Grabs the last free sage and hauls him into his grip, pinning him.] Now, Aang!","Now, Aang!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1787,1787,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[A moment of silence.] Aang! Now's your chance!,Aang! Now's your chance!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1788,1788,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Steps out from behind column. Grips Aang from behind, pinning Aang's arms behind him.] The Avatar's coming with me! [The captured sages use their captors' surprise to reclaim the upper hand, pinning their captors down. Momo flies off with the Great Fire Sage's hat.] Close the doors! Quickly!",The Avatar's coming with me! Close the doors! Quickly!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1789,1789,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Walking down steps, Aang glances over his shoulders to see Sokka and Katara being chained to a column. He breaks free, spinning behind Zuko to send him down the stairs with an airbending blast. Aang runs for Katara and Sokka.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1790,1790,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Chained. Sees him coming toward her. Turns head toward the closing door.] Go!,Go!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1791,1791,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Aang listens without hesitation, turning to charge for the door guarded by two sages. He leaps into the air to avoid the Great Fire Sage's fire punch. Aang bounces off his hands from each of the two sage's heads before sailing through the door just as it closes.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1792,1792,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Pleased.] He made it!,He made it!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1793,1793,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Everyone looks away as the door seals with a blinding flash of white light. Inside, Aang is kneeling and looks up to a tall statue of Avatar Roku. A beam of red sunlight enters the room and strikes a glistening red jewel held by the statue.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1794,1794,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Stands. Confused.] The light hits the statue and I talk to Roku. So why isn't anything happening?,The light hits the statue and I talk to Roku. So why isn't anything happening?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1795,1795,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[He and four sages launch fire blasts into the door's locks. Nothing happens. Frustrated.] Why isn't it working, it's sealed shut?","Why isn't it working, it's sealed shut?",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1796,1796,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,It must have been the light. Avatar Roku doesn't want us inside.,It must have been the light. Avatar Roku doesn't want us inside.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1797,1797,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Exasperated. Standing in the middle of the room, facing the statue.] Why isn't anything happening? I don't know what I'm doing! All I know is airbending! Please Avatar Roku, talk to me!","Why isn't anything happening? I don't know what I'm doing! All I know is airbending! Please Avatar Roku, talk to me!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1798,1798,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Roku's statue turns red as sunlight engulfs it. Its eyes glow white. View of Aang as smoke fills the room. When the white smoke dissipates Avatar Roku is standing before him, they are on a mountaintop and only clouds are visible below.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1799,1799,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"It's good to see you Aang. What took you so long? [Aang respectfully places a fist into his palm, bowing his head to the Avatar before him.]",It's good to see you Aang. What took you so long?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1800,1800,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Firmly to Shyu, who is kneeling before him with his hands behind his back.] Why did you help the Avatar?",Why did you help the Avatar?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1801,1801,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Sadly and proudly.] Because it was once the sages' duty. It is still our duty.,Because it was once the sages' duty. It is still our duty.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1802,1802,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"[Claps. Interrupts interrogation. Approaches with six firebender guards.] What a moving and heartfelt performance. I'm certain the Fire Lord will understand, when you explain why you betrayed him.","What a moving and heartfelt performance. I'm certain the Fire Lord will understand, when you explain why you betrayed him.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1803,1803,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,[Places palms together. Bows head forward.] Commander Zhao.,Commander Zhao.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1804,1804,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"And Prince Zuko. It was a noble effort, but your little smokescreen didn't work. [Zuko scowls sharply. Firebenders step behind him, seizing his arms.] Two traitors in one day, the Fire Lord will be pleased.","And Prince Zuko. It was a noble effort, but your little smokescreen didn't work. Two traitors in one day, the Fire Lord will be pleased.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1805,1805,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zuko,"[Strains against his captor, snaps at Zhao.] You're too late, Zhao! The Avatar's inside and the doors are sealed.","You're too late, Zhao! The Avatar's inside and the doors are sealed.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1806,1806,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"No matter. [Grins confidently.] Sooner or later, he has to come out. [Katara and Sokka share a worried glance.]","No matter. Sooner or later, he has to come out.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1807,1807,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"I have something very important to tell you, Aang. That is why, when you were in the Spirit World, I sent my dragon to find you.","I have something very important to tell you, Aang. That is why, when you were in the Spirit World, I sent my dragon to find you.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1808,1808,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,"[Interested, curious.] Is it about that vision? The one of the comet?",Is it about that vision? The one of the comet?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1809,1809,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,Yes.,Yes.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1810,1810,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,What does it mean?,What does it mean?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1811,1811,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"One hundred years ago, [Viewers see a visual of a comet in the dark sky.] Fire Lord Sozin used that comet to begin the War. He and his firebending army harnessed its incredible power, and dealt a deadly first strike against the other nations.","One hundred years ago, Fire Lord Sozin used that comet to begin the War. He and his firebending army harnessed its incredible power, and dealt a deadly first strike against the other nations.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1812,1812,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Close-up.] So the comet made them stronger?,So the comet made them stronger?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1813,1813,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,[Close-up.] Yes. Stronger than you could even imagine.,Yes. Stronger than you could even imagine.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1814,1814,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Close-up.] But that happened a hundred years ago. What does the comet have to do with the War now?,But that happened a hundred years ago. What does the comet have to do with the War now?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1815,1815,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"Listen carefully. [Viewers see silhouette of Fire Lord Ozai standing amid flames, fists taut.] Sozin's Comet will return by the end of the summer, and Fire Lord Ozai will use its power to finish the War, once and for all. [Visual and audio of Ozai's silhouette roaring upward, fire streaming from his mouth.] If he succeeds, even the Avatar won't be able to restore balance to the world. Aang. You must defeat the Fire Lord, before the comet arrives.","Listen carefully. Sozin's Comet will return by the end of the summer, and Fire Lord Ozai will use its power to finish the War, once and for all. If he succeeds, even the Avatar won't be able to restore balance to the world. Aang. You must defeat the Fire Lord, before the comet arrives.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1816,1816,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Counters anxiously.] But I haven't even started learning waterbending! Not to mention earth and fire!,But I haven't even started learning waterbending! Not to mention earth and fire!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1817,1817,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"Mastering the elements takes years of discipline and practice. But if the world is to survive, you must do it by summer's end. [Close-up of a shocked Aang.]","Mastering the elements takes years of discipline and practice. But if the world is to survive, you must do it by summer's end.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1818,1818,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Firebenders, including Zhao and his crew, circle around the door's perimeter, assuming a firebending form. A monk chant begins for the audience only. They wait patiently for the door to open.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1819,1819,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"When those doors open, [Shouts.] unleash all your firepower!","When those doors open, unleash all your firepower!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1820,1820,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Worried.] How's Aang gonna make it out of this?,How's Aang gonna make it out of this?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1821,1821,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Troubled, questioning.] How are we gonna make it out of this?",How are we gonna make it out of this?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1822,1822,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Terrified.] What if I can't master all the elements in time? What if I fail?,What if I can't master all the elements in time? What if I fail?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1823,1823,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"I know you can do it Aang. [Close-up of half his face.] For you have done it before. [Close-up of half of Aang's now-smiling face.] The solstice is ending. We must go our separate ways, for now.","I know you can do it Aang. For you have done it before. The solstice is ending. We must go our separate ways, for now.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1824,1824,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,But I won't be able to come back to the temple. What if I have questions? How will I talk to you?,But I won't be able to come back to the temple. What if I have questions? How will I talk to you?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1825,1825,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Roku,"I am a part of you. When you need to talk to me again, you will find a way. [Closes his eyes, providing Aang a vision of Fire Navy ships surrounding the island. Speaks to his mind without words.] A great danger awaits you at the temple. [Provides a vision of the awaiting firebenders on the other side of the door.] I can help you face the threat. But only if you are ready.","I am a part of you. When you need to talk to me again, you will find a way. A great danger awaits you at the temple. I can help you face the threat. But only if you are ready.",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1826,1826,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Eyes and arrows glow.] I'm ready.,I'm ready.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1827,1827,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Scene switches to the guard surrounding the door. The door glows bright white once again. Smoke streams come through into the room. The door unlocks itself, beginning to open. As it opens, a blinding white light forces all present to look away.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1828,1828,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"Ready ... [Light fades, revealing a pair of glowing white eyes in the darkness.]",Ready ...,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1829,1829,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,[Sokka struggles against his chains. Katara is terrified.] No! Aang!,No! Aang!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1830,1830,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,Fire! [He and his guards cooperate in blasting fire onto the unseen target.],Fire!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1831,1831,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"The wall of fire amasses, circling its new host as Avatar Roku, eyes aglow, is revealed behind the flames, untouched. Close-up of a shocked and horror-stricken Zhao.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1832,1832,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[In awe.] Avatar Roku ...,Avatar Roku ...,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1833,1833,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Avatar Roku draws the circling fire together in one motion. He sends it forward in one powerful wave that sears the room, blasting the offenders off their feet and melting the chains binding Katara, Sokka, Shyu, and Zuko with precision. View of outside the temple as the blast destroys the outer wall. Close-up of ghostly Avatar Roku, turning his glowing glare upon the offending sages. The sages panic, all turning to run from his wrath.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1834,1834,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Shyu,[Implores.] Avatar Roku is going to destroy the temple! We have to get out of here!,Avatar Roku is going to destroy the temple! We have to get out of here!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1835,1835,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,Not without Aang!,Not without Aang!,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1836,1836,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Roku kneels into a forward strike, melting the floor with a molten firebending trail. He steadily lifts his hand, causing the stream of lava below to erupt into maddened explosions. The lava soars through the temple, tearing it apart. Zhao and his firebenders are shown fleeing for the temple's exit. +Katara and Sokka huddle together, arm-in-arm, behind a column. Sokka kneels over his sister, protecting her in a brotherly fashion. The destruction ceases momentarily as Roku lowers his hands, exhaling soundly. The solstice' beam of sunlight is shown leaving his statue; its eyes no longer glow. As this happens all smoke in the room draws in upon Avatar Roku, his form disappearing to leave behind a weary Aang.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1837,1837,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Sokka,"[Aang sighs weakly and drops to his knees. Sokka and Katara approach Aang's sides, supportively lifting him back to his feet.] We got your back.",We got your back.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1838,1838,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Aang,[Weakly.] Thanks. Where's Shyu?,Thanks. Where's Shyu?,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1839,1839,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Katara,"[ Walking away with Sokka, helping Aang.] I don't know.",I don't know.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1840,1840,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"Visual of the temple as it begins to lean, due to the destruction caused. Aang, Katara and Sokka stare in horror upon seeing the stairwell leading to the exit filled with lava. They quickly turn to the only exit; the hole in the wall Roku had created. There is no escaping, as they are on the top level of the temple. +All three gasp in surprise as they notice Appa and Momo swiftly closing in. They run out of the temple, leaping into Appa's saddle. Scene of them flying away on Appa, gazing back at the destruction. Momo pops up wearing the Great Fire Sage's hat. Scene of Zhao watching the bison fly away.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1841,1841,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"[Turns angrily, snapping.] No Prince, no Avatar! Apparently, the only thing I do have is five traitors!","No Prince, no Avatar! Apparently, the only thing I do have is five traitors!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1842,1842,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Great Fire Sage,[Interjects.] But Commander! Only Shyu helped the Avatar.,But Commander! Only Shyu helped the Avatar.,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1843,1843,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Zhao,"[Close-up.] Save your stories for the Fire Lord. As far as I'm concerned, you are all guilty! [Orders.] Take them to the prison hold!","Save your stories for the Fire Lord. As far as I'm concerned, you are all guilty! Take them to the prison hold!",Michael Dante DiMartino,Giancarlo Volpe,8.9 +1844,1844,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,"The scene changes to show Zuko spying with his telescope toward Appa flying away. He lowers the telescope and sails off in his vessel. +Night time falls. Appa flies through the clouds. Scene from behind, a mourning Aang with his head hung. Katara and Sokka stand and approach their friend, kneeling behind him to support him. Katara puts her hand around Aang's shoulders.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1845,1845,Water,1,"Winter Solstice, Part 2: Avatar Roku",8,Scene Description,Fades to credits.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.9 +1846,1846,Water,1,The Waterbending Scroll,9,Scene Description,"Scene opens with the camera zoomed out showing Appa flying in above the mountains with a few viewable trees, carrying Aang, Katara, Sokka, and Momo.",NA,John O'Bryan,Anthony Lioi,8 +1847,1847,Water,1,The Waterbending Scroll,9,Sokka,"[Aang is pacing around on Appa's saddle, breathing heavily.] Would you sit down? [Turns around from his perch on Appa's head.] If we hit a bump, you'll go flying off. What's bugging you anyway?","Would you sit down? If we hit a bump, you'll go flying off. What's bugging you anyway?",John O'Bryan,Anthony Lioi,8 +1848,1848,Water,1,The Waterbending Scroll,9,Aang,[Worriedly.] It's what Avatar Roku said. I'm supposed to master all four elements before that comet arrives.,It's what Avatar Roku said. I'm supposed to master all four elements before that comet arrives.,John O'Bryan,Anthony Lioi,8 +1849,1849,Water,1,The Waterbending Scroll,9,Sokka,"[In a sarcastic, amused tone while facing Aang.] Well, let's see. You pretty much mastered airbending and that only took you a hundred and twelve years. I'm sure you can master three more elements by next summer.","Well, let's see. You pretty much mastered airbending and that only took you a hundred and twelve years. I'm sure you can master three more elements by next summer.",John O'Bryan,Anthony Lioi,8 +1850,1850,Water,1,The Waterbending Scroll,9,Aang,[Frightfully.] I haven't even started waterbending and we're still weeks away from the North Pole. What am I gonna do?,I haven't even started waterbending and we're still weeks away from the North Pole. What am I gonna do?,John O'Bryan,Anthony Lioi,8 +1851,1851,Water,1,The Waterbending Scroll,9,Katara,"[Grabs Aang's arm.] Calm down, it's going to be okay. [Aang sits down in front of her.] If you want, I can try to teach you some of the stuff I know.","Calm down, it's going to be okay. If you want, I can try to teach you some of the stuff I know.",John O'Bryan,Anthony Lioi,8 +1852,1852,Water,1,The Waterbending Scroll,9,Aang,[Smiling.] You'd do that?,You'd do that?,John O'Bryan,Anthony Lioi,8 +1853,1853,Water,1,The Waterbending Scroll,9,Katara,[Nods and looks over the side of Appa's saddle.] We'll need to find a good source of water first.,We'll need to find a good source of water first.,John O'Bryan,Anthony Lioi,8 +1854,1854,Water,1,The Waterbending Scroll,9,Sokka,[Grinning; sarcastically.] Maybe we can find a puddle for you to splash in.,Maybe we can find a puddle for you to splash in.,John O'Bryan,Anthony Lioi,8 +1855,1855,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts to Aang, Katara, Sokka, and Momo standing in front of a large waterfall and river.",NA,John O'Bryan,Anthony Lioi,8 +1856,1856,Water,1,The Waterbending Scroll,9,Sokka,[Frowning beside Aang and Katara's ecstatic faces.] Nice puddle.,Nice puddle.,John O'Bryan,Anthony Lioi,8 +1857,1857,Water,1,The Waterbending Scroll,9,Scene Description,"Appa flies down into the river and creates a huge splash that soaks and almost knocks Momo of the rock he is standing on, turns over, and floats on his back.",NA,John O'Bryan,Anthony Lioi,8 +1858,1858,Water,1,The Waterbending Scroll,9,Aang,"[Takes off his shirt, smiling.] Yeah! Don't start without me, boy! [Begins to run toward the water.]","Yeah! Don't start without me, boy!",John O'Bryan,Anthony Lioi,8 +1859,1859,Water,1,The Waterbending Scroll,9,Katara,[Somewhat blankly.] Remember the reason we're here.,Remember the reason we're here.,John O'Bryan,Anthony Lioi,8 +1860,1860,Water,1,The Waterbending Scroll,9,Aang,[Stops short and looks at Katara.] Oh right. Time to practice waterbending. [Puts his clothes back on.],Oh right. Time to practice waterbending.,John O'Bryan,Anthony Lioi,8 +1861,1861,Water,1,The Waterbending Scroll,9,Sokka,[Sarcastically.] Great. So what am I supposed to do?,Great. So what am I supposed to do?,John O'Bryan,Anthony Lioi,8 +1862,1862,Water,1,The Waterbending Scroll,9,Aang,You could ... clean the gunk out of Appa's toes. [Hands Sokka a branch with a bushel of leaves at the end.],You could ... clean the gunk out of Appa's toes.,John O'Bryan,Anthony Lioi,8 +1863,1863,Water,1,The Waterbending Scroll,9,Sokka,"[Frowns and crosses his arms.] So, while you guys are playing in the water, I'm supposed to be hard at work picking mud out of a giant bison's feet?","So, while you guys are playing in the water, I'm supposed to be hard at work picking mud out of a giant bison's feet?",John O'Bryan,Anthony Lioi,8 +1864,1864,Water,1,The Waterbending Scroll,9,Aang,[Smiles; somewhat cheerfully.] Mud and bugs!,Mud and bugs!,John O'Bryan,Anthony Lioi,8 +1865,1865,Water,1,The Waterbending Scroll,9,Sokka,Okay. [Takes stick and walks over to Appa who is floating in the water.],Okay.,John O'Bryan,Anthony Lioi,8 +1866,1866,Water,1,The Waterbending Scroll,9,Scene Description,"Scene changes to Zuko's ship in the ocean. On the deck, Zuko is practicing firebending with his  Lieutenant Lee when the boat turns and they are thrown to one side on their backs.",NA,John O'Bryan,Anthony Lioi,8 +1867,1867,Water,1,The Waterbending Scroll,9,Zuko,[Close-up of his face; he glares at the tower.] Someone's changing our course.,Someone's changing our course.,John O'Bryan,Anthony Lioi,8 +1868,1868,Water,1,The Waterbending Scroll,9,Scene Description,Cuts to a crew member steering the ship at the top of the boat.,NA,John O'Bryan,Anthony Lioi,8 +1869,1869,Water,1,The Waterbending Scroll,9,Zuko,"[Storming in, yelling.] What is the meaning of this mutiny? No one told you to change course! [Shows Iroh and the rest of the crew playing Pai Sho behind them.]",What is the meaning of this mutiny? No one told you to change course!,John O'Bryan,Anthony Lioi,8 +1870,1870,Water,1,The Waterbending Scroll,9,Iroh,"Actually, someone did. I assure you, it is a matter of utmost importance, Prince Zuko. [Scratches beard.]","Actually, someone did. I assure you, it is a matter of utmost importance, Prince Zuko.",John O'Bryan,Anthony Lioi,8 +1871,1871,Water,1,The Waterbending Scroll,9,Zuko,[Hopefully.] Is it something to do with the Avatar?,Is it something to do with the Avatar?,John O'Bryan,Anthony Lioi,8 +1872,1872,Water,1,The Waterbending Scroll,9,Iroh,"Even more urgent. It seems, I- [Rubs forehead in stress.] -I have lost my lotus tile. [Moves a piece of his across the Pai Sho board.]","Even more urgent. It seems, I- -I have lost my lotus tile.",John O'Bryan,Anthony Lioi,8 +1873,1873,Water,1,The Waterbending Scroll,9,Zuko,[Confused.] Lotus tile?,Lotus tile?,John O'Bryan,Anthony Lioi,8 +1874,1874,Water,1,The Waterbending Scroll,9,Iroh,"For my Pai Sho game. Most people think the lotus tile insignificant, but it is essential for the unusual strategy that I employ.","For my Pai Sho game. Most people think the lotus tile insignificant, but it is essential for the unusual strategy that I employ.",John O'Bryan,Anthony Lioi,8 +1875,1875,Water,1,The Waterbending Scroll,9,Zuko,[In disbelief.] You've changed our course for a stupid lotus tile?,You've changed our course for a stupid lotus tile?,John O'Bryan,Anthony Lioi,8 +1876,1876,Water,1,The Waterbending Scroll,9,Iroh,"See, you, like most people, underestimate it's value. Just give me ten minutes to check the merchants at this port of call. [Excitedly.] Hopefully, they will have the lotus tile in stock and I can get on with my life. [Zuko breathes fire up at the ceiling in anger and Iroh smiles.] I'm lucky to have such an understanding nephew.","See, you, like most people, underestimate it's value. Just give me ten minutes to check the merchants at this port of call. Hopefully, they will have the lotus tile in stock and I can get on with my life. I'm lucky to have such an understanding nephew.",John O'Bryan,Anthony Lioi,8 +1877,1877,Water,1,The Waterbending Scroll,9,Scene Description,"The room fills with smoke of Zuko's outburst, clouding the scene from view. +Cut to a scene of a content Appa floating in the river while Sokka stands on his stomach and brushes in between his toes with the branch.",NA,John O'Bryan,Anthony Lioi,8 +1878,1878,Water,1,The Waterbending Scroll,9,Sokka,"Yeah, don't get too happy. You've got to do me next. [Appa moans happily.]","Yeah, don't get too happy. You've got to do me next.",John O'Bryan,Anthony Lioi,8 +1879,1879,Water,1,The Waterbending Scroll,9,Scene Description,Shows Katara and Aang by the shore.,NA,John O'Bryan,Anthony Lioi,8 +1880,1880,Water,1,The Waterbending Scroll,9,Katara,"This is a pretty basic move, but is still took me months to perfect. So don't get frustrated if you don't get it right away. [She moves her hands back and forth and makes small waves in the water, while Aang looks up, smiling.] Just push and pull the water like this. The key is getting the wrist movement right.","This is a pretty basic move, but is still took me months to perfect. So don't get frustrated if you don't get it right away. Just push and pull the water like this. The key is getting the wrist movement right.",John O'Bryan,Anthony Lioi,8 +1881,1881,Water,1,The Waterbending Scroll,9,Aang,"[Stands up.] Like this? [Does the hand movements Katara is doing, but nothing is happening yet.]",Like this?,John O'Bryan,Anthony Lioi,8 +1882,1882,Water,1,The Waterbending Scroll,9,Katara,[Kindly.] That's almost right. If you keep practicing I'm sure eventually—,That's almost right. If you keep practicing I'm sure eventually—,John O'Bryan,Anthony Lioi,8 +1883,1883,Water,1,The Waterbending Scroll,9,Aang,"Hey, I'm bending it already! [Shows Aang making much bigger waves than Katara's on his first try.]","Hey, I'm bending it already!",John O'Bryan,Anthony Lioi,8 +1884,1884,Water,1,The Waterbending Scroll,9,Katara,"[Surprised.] Wow, I can't believe you got that so quickly. It took me two months to learn that move.","Wow, I can't believe you got that so quickly. It took me two months to learn that move.",John O'Bryan,Anthony Lioi,8 +1885,1885,Water,1,The Waterbending Scroll,9,Aang,"[Shrugs shoulders.] Well, you had to figure it all on your own. I'm lucky enough to have a great teacher.","Well, you had to figure it all on your own. I'm lucky enough to have a great teacher.",John O'Bryan,Anthony Lioi,8 +1886,1886,Water,1,The Waterbending Scroll,9,Katara,[Smiles.] Thanks.,Thanks.,John O'Bryan,Anthony Lioi,8 +1887,1887,Water,1,The Waterbending Scroll,9,Aang,"So, what's next?","So, what's next?",John O'Bryan,Anthony Lioi,8 +1888,1888,Water,1,The Waterbending Scroll,9,Katara,"This is a more difficult move. I call it streaming the water. [She moves her hands and raises a stream of water from the river into the air and moves it around.] It's harder than it looks, so don't be disappointed if- [Shows Aang already controlling a stream of water, moving it around and above his body and neatly coiling it back into the river, much to Katara's dismay.] Nice work. [She frowns.] Though the over-the-head flare was unnecessary.","This is a more difficult move. I call it streaming the water. It's harder than it looks, so don't be disappointed if- Nice work. Though the over-the-head flare was unnecessary.",John O'Bryan,Anthony Lioi,8 +1889,1889,Water,1,The Waterbending Scroll,9,Aang,"Sorry. [Excited.] Well, don't stop now! Keep 'em coming!","Sorry. Well, don't stop now! Keep 'em coming!",John O'Bryan,Anthony Lioi,8 +1890,1890,Water,1,The Waterbending Scroll,9,Katara,"[Looks up sadly.] Well I kind of know this one other move, but it's pretty hard. I haven't even totally figured it out yet. The idea is to create a big, powerful wave. [She moves her hands up, shaking, and starts to get a big mass of water to rise out of the river, but it pops before forming into anything substantial.]","Well I kind of know this one other move, but it's pretty hard. I haven't even totally figured it out yet. The idea is to create a big, powerful wave.",John O'Bryan,Anthony Lioi,8 +1891,1891,Water,1,The Waterbending Scroll,9,Aang,"So, like this? [He raises his hands and creates a massive wave that towers over their heads.]","So, like this?",John O'Bryan,Anthony Lioi,8 +1892,1892,Water,1,The Waterbending Scroll,9,Sokka,"[Still working on cleaning up Appa, he looks up and stares at Aang's wave crashing toward him in fear.] Aang?! [The wave throws Sokka off into the water and his head slowly rises out, annoyed.]",Aang?!,John O'Bryan,Anthony Lioi,8 +1893,1893,Water,1,The Waterbending Scroll,9,Aang,[Smiling.] Looks like I got the hang of that move! What else do you got?,Looks like I got the hang of that move! What else do you got?,John O'Bryan,Anthony Lioi,8 +1894,1894,Water,1,The Waterbending Scroll,9,Katara,[Angry at Aang's quick success.] That's enough practicing for today.,That's enough practicing for today.,John O'Bryan,Anthony Lioi,8 +1895,1895,Water,1,The Waterbending Scroll,9,Sokka,"[Head still sticking out of the water.] Yeah, I'll say! [Points to the left.] You just ""practiced"" our supplies down the river. [Shows a group of bags floating away.]","Yeah, I'll say! You just ""practiced"" our supplies down the river.",John O'Bryan,Anthony Lioi,8 +1896,1896,Water,1,The Waterbending Scroll,9,Aang,"[Looking guilty.] Uh, sorry. [Smiles worriedly.] I'm sure we can find somewhere to replace all this stuff.","Uh, sorry. I'm sure we can find somewhere to replace all this stuff.",John O'Bryan,Anthony Lioi,8 +1897,1897,Water,1,The Waterbending Scroll,9,Sokka,My life was hard enough when you were just an airbender. [Sinks back underwater.],My life was hard enough when you were just an airbender.,John O'Bryan,Anthony Lioi,8 +1898,1898,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts to Katara, Sokka, and Aang walking through the streets of a city market and port. Shows many armed men staring at the trio. Sokka and Katara look nervous while Aang looks around in wonder.",NA,John O'Bryan,Anthony Lioi,8 +1899,1899,Water,1,The Waterbending Scroll,9,Sokka,[Walking back from alleyway with a bag over his shoulders.] We've got exactly three copper pieces left from the money that King Bumi gave us. Let's spend it wisely.,We've got exactly three copper pieces left from the money that King Bumi gave us. Let's spend it wisely.,John O'Bryan,Anthony Lioi,8 +1900,1900,Water,1,The Waterbending Scroll,9,Aang,"Uh, make that two copper pieces, Sokka. I couldn't say no to this whistle! [Pulls out a white whistle that looks like a bison, takes a huge breath and blows into it, but it barely makes a sound.]","Uh, make that two copper pieces, Sokka. I couldn't say no to this whistle!",John O'Bryan,Anthony Lioi,8 +1901,1901,Water,1,The Waterbending Scroll,9,Sokka,[Pulls out fingers over his ears after expecting a loud noise.] It doesn't even work. [Aang stops blowing when Momo squawks at him.] See? Even Momo thinks it's a piece of junk.,It doesn't even work. See? Even Momo thinks it's a piece of junk.,John O'Bryan,Anthony Lioi,8 +1902,1902,Water,1,The Waterbending Scroll,9,Katara,"No offense Aang, but I'll hold the money from now on. [Aang hands her the two copper coins.]","No offense Aang, but I'll hold the money from now on.",John O'Bryan,Anthony Lioi,8 +1903,1903,Water,1,The Waterbending Scroll,9,Scene Description,Cuts to the other side of the port where a man is talking in front of his boat docked in the water.,NA,John O'Bryan,Anthony Lioi,8 +1904,1904,Water,1,The Waterbending Scroll,9,Oh,"[Moving hands and shouting excitedly.] Earth Nation! Fire Nation! Water Nation! So long as bargains are your inclination, you're welcome here! Don't be shy, come on by! [Sokka, Katara, and Aang walk by and he runs up to them.] Oh! You there, I can see from your clothing that you're world-traveling types. Perhaps I can interest you in some exotic curios?","Earth Nation! Fire Nation! Water Nation! So long as bargains are your inclination, you're welcome here! Don't be shy, come on by! Oh! You there, I can see from your clothing that you're world-traveling types. Perhaps I can interest you in some exotic curios?",John O'Bryan,Anthony Lioi,8 +1905,1905,Water,1,The Waterbending Scroll,9,Aang,[Walks back to the man.] Sure! What are curios?,Sure! What are curios?,John O'Bryan,Anthony Lioi,8 +1906,1906,Water,1,The Waterbending Scroll,9,Oh,"[Looks confused and thinks.] I'm not entirely sure. But we got 'em! [Puts his hand on Aang's shoulder and smiles, walking him into the ship.]",I'm not entirely sure. But we got 'em!,John O'Bryan,Anthony Lioi,8 +1907,1907,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts to the inside of the boat where strange collectibles are lined up on shelves on the walls. Aang, Katara, and Sokka walk in.",NA,John O'Bryan,Anthony Lioi,8 +1908,1908,Water,1,The Waterbending Scroll,9,Aang,"[Looks up close at an item on a shelf, confused.] Huh?",Huh?,John O'Bryan,Anthony Lioi,8 +1909,1909,Water,1,The Waterbending Scroll,9,Scene Description,Katara stares at an ornate monkey statue on one of the shelves eerily.,NA,John O'Bryan,Anthony Lioi,8 +1910,1910,Water,1,The Waterbending Scroll,9,Pirate captain,"[Standing in a dark doorway as Aang passes by with Momo on his back.] I've never seen such a fine specimen of lemur. [Walks into the light, an iguana parrot on his shoulder.] That beast would fetch me a hefty sum if you'd be interested in bartering. [The iguana parrot squawks at them.]",I've never seen such a fine specimen of lemur. That beast would fetch me a hefty sum if you'd be interested in bartering.,John O'Bryan,Anthony Lioi,8 +1911,1911,Water,1,The Waterbending Scroll,9,Aang,[Grabbing Momo.] Momo's not for sale.,Momo's not for sale.,John O'Bryan,Anthony Lioi,8 +1912,1912,Water,1,The Waterbending Scroll,9,Scene Description,Shows Katara walking over to a shelf where a number of scrolls are kept. She grabs one with the waterbending symbol on it and opens it to see lines of waterbending diagrams and writing.,NA,John O'Bryan,Anthony Lioi,8 +1913,1913,Water,1,The Waterbending Scroll,9,Katara,"[Smiling.] Look at this, Aang. It's a waterbending scroll! [Aang walks over.] Check out these crazy moves.","Look at this, Aang. It's a waterbending scroll! Check out these crazy moves.",John O'Bryan,Anthony Lioi,8 +1914,1914,Water,1,The Waterbending Scroll,9,Aang,"[Turns to the captain, excited.] Where did you get a waterbending scroll?",Where did you get a waterbending scroll?,John O'Bryan,Anthony Lioi,8 +1915,1915,Water,1,The Waterbending Scroll,9,Pirate captain,"[Slams his hand onto the scroll and pulls it away.] Let's just say I got it up North, at a most reasonable price, free. [Rolls the scroll back up and puts it away back in its shelf.]","Let's just say I got it up North, at a most reasonable price, free.",John O'Bryan,Anthony Lioi,8 +1916,1916,Water,1,The Waterbending Scroll,9,Sokka,"[Turns around and looks at the captain from the other side of the room.] Wait a minute ... Sea loving traders, with suspiciously acquired merchandise, [Raises eyebrows, almost yelling.] and pet reptile birds? [Turns around to Oh, almost spitting in his face.] You guys are pirates!","Wait a minute ... Sea loving traders, with suspiciously acquired merchandise, and pet reptile birds? You guys are pirates!",John O'Bryan,Anthony Lioi,8 +1917,1917,Water,1,The Waterbending Scroll,9,Oh,"[Puts his arm around a terrified Sokka's shoulders.] We prefer to think of ourselves as ""high risk traders.""","We prefer to think of ourselves as ""high risk traders.""",John O'Bryan,Anthony Lioi,8 +1918,1918,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts to Katara holding their two copper pieces next to Aang, with the captain on the other side of the counter they are leaning on.",NA,John O'Bryan,Anthony Lioi,8 +1919,1919,Water,1,The Waterbending Scroll,9,Katara,"So, how much for the, uh, traded scroll?","So, how much for the, uh, traded scroll?",John O'Bryan,Anthony Lioi,8 +1920,1920,Water,1,The Waterbending Scroll,9,Pirate captain,"I've already got a buyer, a nobleman in the Earth Kingdom. [Voice turns less serious.] Unless of course, you kids have two hundred gold pieces on you right now.","I've already got a buyer, a nobleman in the Earth Kingdom. Unless of course, you kids have two hundred gold pieces on you right now.",John O'Bryan,Anthony Lioi,8 +1921,1921,Water,1,The Waterbending Scroll,9,Aang,"[Turns around and whispers to Katara.] I know how to deal with these guys, Katara. Pirates love to haggle. [Katara drops the final coins in his hand.] Watch and learn. [Walks over to the counter, leans against it, and talks in a pirate voice.] Let's say to the price of, one copper piece! [Smiles, and dramatically presents the single coin.]","I know how to deal with these guys, Katara. Pirates love to haggle. Watch and learn. Let's say to the price of, one copper piece!",John O'Bryan,Anthony Lioi,8 +1922,1922,Water,1,The Waterbending Scroll,9,Pirate captain,[Laughs hysterically.] The price is two hundred gold pieces. I don't haggle on items this rare.,The price is two hundred gold pieces. I don't haggle on items this rare.,John O'Bryan,Anthony Lioi,8 +1923,1923,Water,1,The Waterbending Scroll,9,Aang,"[Still smirking and talking like a pirate.] Okay, two copper pieces!","Okay, two copper pieces!",John O'Bryan,Anthony Lioi,8 +1924,1924,Water,1,The Waterbending Scroll,9,Pirate captain,"[Aggravated.] It's not as amusing the second time, boy!","It's not as amusing the second time, boy!",John O'Bryan,Anthony Lioi,8 +1925,1925,Water,1,The Waterbending Scroll,9,Katara,"[Whispering.] Aang, can we get out of here? I feel like we're getting weird looks.","Aang, can we get out of here? I feel like we're getting weird looks.",John O'Bryan,Anthony Lioi,8 +1926,1926,Water,1,The Waterbending Scroll,9,Aang,"Aye, we be casting off now! [Walks away.]","Aye, we be casting off now!",John O'Bryan,Anthony Lioi,8 +1927,1927,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts back to outside, Aang, Katara, and Sokka are walking off the boat and back down the street.",NA,John O'Bryan,Anthony Lioi,8 +1928,1928,Water,1,The Waterbending Scroll,9,Aang,"What was that all about, Katara?","What was that all about, Katara?",John O'Bryan,Anthony Lioi,8 +1929,1929,Water,1,The Waterbending Scroll,9,Sokka,"Yeah, I was just starting to browse through their boomerang collection.","Yeah, I was just starting to browse through their boomerang collection.",John O'Bryan,Anthony Lioi,8 +1930,1930,Water,1,The Waterbending Scroll,9,Katara,"[Worried, holding her arms.] I'll just feel a lot better once we get away from here.",I'll just feel a lot better once we get away from here.,John O'Bryan,Anthony Lioi,8 +1931,1931,Water,1,The Waterbending Scroll,9,Scene Description,Cuts back to the pirate ship. Oh is running across the deck looking for them.,NA,John O'Bryan,Anthony Lioi,8 +1932,1932,Water,1,The Waterbending Scroll,9,Oh,Hey you! Get back here!,Hey you! Get back here!,John O'Bryan,Anthony Lioi,8 +1933,1933,Water,1,The Waterbending Scroll,9,Aang,"[Calmly turns around.] Well, well. Look who's come to their senses. Told you the haggling would pay off.","Well, well. Look who's come to their senses. Told you the haggling would pay off.",John O'Bryan,Anthony Lioi,8 +1934,1934,Water,1,The Waterbending Scroll,9,Scene Description,"Suddenly, the group of armed pirates jump out of the boat and run to Aang, Katara, and Sokka, whispering menacingly and swinging their weapons.",NA,John O'Bryan,Anthony Lioi,8 +1935,1935,Water,1,The Waterbending Scroll,9,Katara,"[Scared.] I don't think these pirates are here to trade with us. [Turns around and runs, Aang and Sokka follow and the pirates chase behind them. Half of the group runs down one street while the other goes down the one next to it.]",I don't think these pirates are here to trade with us.,John O'Bryan,Anthony Lioi,8 +1936,1936,Water,1,The Waterbending Scroll,9,Oh,This way. Let's cut 'em off!,This way. Let's cut 'em off!,John O'Bryan,Anthony Lioi,8 +1937,1937,Water,1,The Waterbending Scroll,9,Sokka,[Turning a corner with Aang and Katara.] Whoa! [Katara freezes a puddle behind them that a pirate slips on.],Whoa!,John O'Bryan,Anthony Lioi,8 +1938,1938,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts to peaceful scene of the cabbage merchant with his cart of cabbages in an alleyway. Sokka, Katara, and Aang run past him and almost knock his cart over. Aang sends a blast of wind that throws the cart into the group of pirates behind them.",NA,John O'Bryan,Anthony Lioi,8 +1939,1939,Water,1,The Waterbending Scroll,9,Cabbage merchant,[Angry.] My cabbages! This place is worse than Omashu!,My cabbages! This place is worse than Omashu!,John O'Bryan,Anthony Lioi,8 +1940,1940,Water,1,The Waterbending Scroll,9,Scene Description,"Group of pirates jump out of another street and chase Aang, Sokka, Katara, and Momo.",NA,John O'Bryan,Anthony Lioi,8 +1941,1941,Water,1,The Waterbending Scroll,9,Pirate,I hope that lemur of yours has nine lives!,I hope that lemur of yours has nine lives!,John O'Bryan,Anthony Lioi,8 +1942,1942,Water,1,The Waterbending Scroll,9,Oh,"[Him and the pirates corner them in the dead end of a street.] Now, who gets to taste the steel of my blade first?","Now, who gets to taste the steel of my blade first?",John O'Bryan,Anthony Lioi,8 +1943,1943,Water,1,The Waterbending Scroll,9,Aang,"No thanks. [Spins and hurls a blast of air at the pirates that send them backward, and runs toward them with his glider out.] Grab on tight!",No thanks. Grab on tight!,John O'Bryan,Anthony Lioi,8 +1944,1944,Water,1,The Waterbending Scroll,9,Katara,Aang! I thought we were running away from the pirates! [Jumps on to Aang's glider with Sokka and they lift off into the air.],Aang! I thought we were running away from the pirates!,John O'Bryan,Anthony Lioi,8 +1945,1945,Water,1,The Waterbending Scroll,9,Aang,Just hang on! [Flies over the pirates' heads and into the distance.],Just hang on!,John O'Bryan,Anthony Lioi,8 +1946,1946,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts back to their camp by the river, where Aang, Sokka, and Katara stand by the shore.",NA,John O'Bryan,Anthony Lioi,8 +1947,1947,Water,1,The Waterbending Scroll,9,Aang,"[Putting his glider away.] I used to kind of look up to pirates, but those guys are terrible.","I used to kind of look up to pirates, but those guys are terrible.",John O'Bryan,Anthony Lioi,8 +1948,1948,Water,1,The Waterbending Scroll,9,Katara,[Mischievously.] I know. That's why I took this. [Holds out the waterbending scroll they saw in the shop.],I know. That's why I took this.,John O'Bryan,Anthony Lioi,8 +1949,1949,Water,1,The Waterbending Scroll,9,Aang,[Surprised.] No way!,No way!,John O'Bryan,Anthony Lioi,8 +1950,1950,Water,1,The Waterbending Scroll,9,Katara,[Excited.] Isn't it great?,Isn't it great?,John O'Bryan,Anthony Lioi,8 +1951,1951,Water,1,The Waterbending Scroll,9,Sokka,No wonder they were trying to hack us up! You stole their waterbending scroll!,No wonder they were trying to hack us up! You stole their waterbending scroll!,John O'Bryan,Anthony Lioi,8 +1952,1952,Water,1,The Waterbending Scroll,9,Katara,[Jokingly.] I prefer to think of it as high risk trading.,I prefer to think of it as high risk trading.,John O'Bryan,Anthony Lioi,8 +1953,1953,Water,1,The Waterbending Scroll,9,Aang,"[Laughs.] Good one, Katara.","Good one, Katara.",John O'Bryan,Anthony Lioi,8 +1954,1954,Water,1,The Waterbending Scroll,9,Katara,"Sokka, where do you think they got it? They stole it from a waterbender!","Sokka, where do you think they got it? They stole it from a waterbender!",John O'Bryan,Anthony Lioi,8 +1955,1955,Water,1,The Waterbending Scroll,9,Sokka,"It doesn't matter. You put all of our lives in danger just so you could learn some stupid, fancy splashes.","It doesn't matter. You put all of our lives in danger just so you could learn some stupid, fancy splashes.",John O'Bryan,Anthony Lioi,8 +1956,1956,Water,1,The Waterbending Scroll,9,Katara,These are real waterbending forms. You know how crucial it is for Aang to learn waterbending!,These are real waterbending forms. You know how crucial it is for Aang to learn waterbending!,John O'Bryan,Anthony Lioi,8 +1957,1957,Water,1,The Waterbending Scroll,9,Sokka,[Walks away.] Whatever.,Whatever.,John O'Bryan,Anthony Lioi,8 +1958,1958,Water,1,The Waterbending Scroll,9,Aang,"Well, what's done is done. We have it, we might as well learn from it.","Well, what's done is done. We have it, we might as well learn from it.",John O'Bryan,Anthony Lioi,8 +1959,1959,Water,1,The Waterbending Scroll,9,Scene Description,The scene cuts to show Zuko and Iroh standing in the market place.,NA,John O'Bryan,Anthony Lioi,8 +1960,1960,Water,1,The Waterbending Scroll,9,Iroh,I've checked all the shops on this pier. Not a lotus tile in the entire marketplace.,I've checked all the shops on this pier. Not a lotus tile in the entire marketplace.,John O'Bryan,Anthony Lioi,8 +1961,1961,Water,1,The Waterbending Scroll,9,Zuko,It's good to know this trip was a complete waste of time for everyone!,It's good to know this trip was a complete waste of time for everyone!,John O'Bryan,Anthony Lioi,8 +1962,1962,Water,1,The Waterbending Scroll,9,Iroh,"Quite the contrary. I always say, the only thing better than finding something you are looking for [Crew members begin to walk past carrying Iroh's purchases.] is finding something you weren't looking for at a great bargain! [A crew member walks past the two playing a tsungi horn.]","Quite the contrary. I always say, the only thing better than finding something you are looking for is finding something you weren't looking for at a great bargain!",John O'Bryan,Anthony Lioi,8 +1963,1963,Water,1,The Waterbending Scroll,9,Zuko,You bought a tsungi horn?,You bought a tsungi horn?,John O'Bryan,Anthony Lioi,8 +1964,1964,Water,1,The Waterbending Scroll,9,Iroh,"For music night on the ship. Now, if we only had some woodwinds. [Pointing to the ship.] Oh, this place looks promising! [The monkey statue is shown again.] Oh, that is handsome! Wouldn't it look magnificent in the galley?","For music night on the ship. Now, if we only had some woodwinds. Oh, this place looks promising! Oh, that is handsome! Wouldn't it look magnificent in the galley?",John O'Bryan,Anthony Lioi,8 +1965,1965,Water,1,The Waterbending Scroll,9,Oh,[To pirate captain.] We lost the Water Tribe girl and the little bald monk she was traveling with.,We lost the Water Tribe girl and the little bald monk she was traveling with.,John O'Bryan,Anthony Lioi,8 +1966,1966,Water,1,The Waterbending Scroll,9,Zuko,"[Turning.] This monk, did he have an arrow on his head? [Iroh turns around, making a face similar to the monkey's.]","This monk, did he have an arrow on his head?",John O'Bryan,Anthony Lioi,8 +1967,1967,Water,1,The Waterbending Scroll,9,Scene Description,The camera cuts show Katara looking at the scroll.,NA,John O'Bryan,Anthony Lioi,8 +1968,1968,Water,1,The Waterbending Scroll,9,Katara,"I just want to try this one move first and then it's all yours. [Gives it to Aang.] Here, hold it open for me. The single water whip. Looks doable. [Attempts the move, but ends up hitting herself in the forehead.] Ow!","I just want to try this one move first and then it's all yours. Here, hold it open for me. The single water whip. Looks doable. Ow!",John O'Bryan,Anthony Lioi,8 +1969,1969,Water,1,The Waterbending Scroll,9,Sokka,"Ha, ha, ha!","Ha, ha, ha!",John O'Bryan,Anthony Lioi,8 +1970,1970,Water,1,The Waterbending Scroll,9,Katara,[Glaring at Sokka.] What's so funny?,What's so funny?,John O'Bryan,Anthony Lioi,8 +1971,1971,Water,1,The Waterbending Scroll,9,Sokka,"I'm sorry, but you deserved that. [To Aang.] You've been duped; she's only interested in teaching herself.","I'm sorry, but you deserved that. You've been duped; she's only interested in teaching herself.",John O'Bryan,Anthony Lioi,8 +1972,1972,Water,1,The Waterbending Scroll,9,Katara,"[Angrily.] Aang will get his turn once I figure out the water whip. [She tries again, but hits Momo instead, who screeches.] Ugh, why can't I get this stupid move?","Aang will get his turn once I figure out the water whip. Ugh, why can't I get this stupid move?",John O'Bryan,Anthony Lioi,8 +1973,1973,Water,1,The Waterbending Scroll,9,Aang,"You'll get it. [Katara glares at him.] You just gotta shift your weight through the stances. [He tries and does it perfectly on the first try.] There, see, the key to bending is—","You'll get it. You just gotta shift your weight through the stances. There, see, the key to bending is—",John O'Bryan,Anthony Lioi,8 +1974,1974,Water,1,The Waterbending Scroll,9,Katara,"[Screaming.] Will you please shut your air hole? Believe it or not your infinite wisdom gets a little old sometimes! Why don't we just throw the scroll away since you're so naturally gifted! [Sokka glares at her.] What? [She looks back at Aang, who has tears in his eyes.] Oh my gosh, Aang, I am so sorry, I don't know what came over me. But you know what, it won't happen again. [She gives the scroll to Aang.] Here, this is yours. I don't want to have anything to do with it anymore.","Will you please shut your air hole? Believe it or not your infinite wisdom gets a little old sometimes! Why don't we just throw the scroll away since you're so naturally gifted! What? Oh my gosh, Aang, I am so sorry, I don't know what came over me. But you know what, it won't happen again. Here, this is yours. I don't want to have anything to do with it anymore.",John O'Bryan,Anthony Lioi,8 +1975,1975,Water,1,The Waterbending Scroll,9,Aang,It's okay Katara.,It's okay Katara.,John O'Bryan,Anthony Lioi,8 +1976,1976,Water,1,The Waterbending Scroll,9,Sokka,What about Momo? He's the real victim here.,What about Momo? He's the real victim here.,John O'Bryan,Anthony Lioi,8 +1977,1977,Water,1,The Waterbending Scroll,9,Katara,"[Bends down to pet Momo as he rubs his hind end.] I'm sorry, Momo.","I'm sorry, Momo.",John O'Bryan,Anthony Lioi,8 +1978,1978,Water,1,The Waterbending Scroll,9,Sokka,And what about me? There was that time you—,And what about me? There was that time you—,John O'Bryan,Anthony Lioi,8 +1979,1979,Water,1,The Waterbending Scroll,9,Katara,No more apologies!,No more apologies!,John O'Bryan,Anthony Lioi,8 +1980,1980,Water,1,The Waterbending Scroll,9,Scene Description,The camera fades to show a much smaller boat being launched out of Zuko's ship. The camera fades again to show the boat and the pirate ship sailing down a river.,NA,John O'Bryan,Anthony Lioi,8 +1981,1981,Water,1,The Waterbending Scroll,9,Pirate captain,Shouldn't we stop to search the woods?,Shouldn't we stop to search the woods?,John O'Bryan,Anthony Lioi,8 +1982,1982,Water,1,The Waterbending Scroll,9,Zuko,"We don't need to stop. They stole a waterbending scroll, right?","We don't need to stop. They stole a waterbending scroll, right?",John O'Bryan,Anthony Lioi,8 +1983,1983,Water,1,The Waterbending Scroll,9,Pirate captain,Mm-hm.,Mm-hm.,John O'Bryan,Anthony Lioi,8 +1984,1984,Water,1,The Waterbending Scroll,9,Zuko,Then they'll be on the water.,Then they'll be on the water.,John O'Bryan,Anthony Lioi,8 +1985,1985,Water,1,The Waterbending Scroll,9,Scene Description,"The scene fades to show Katara, Sokka, and Aang sleeping by the campfire. Katara quietly takes the scroll and sneaks away from the camp. However, when she turns around she comes face-to-face with Momo, who starts chattering.",NA,John O'Bryan,Anthony Lioi,8 +1986,1986,Water,1,The Waterbending Scroll,9,Katara,"[Whispering.] Shhh, Momo! Go back to sleep. Shh! [The camera fades to show her standing by the river, attempting but failing to perfect the water whip, frustrated.] Ugh, ugh, ugh! Shoot! Come on water, work with me here! Okay, what if I just, ow! Stupid scroll! [The pirate captain and Zuko are shown hearing her.] Okay Katara, shift your weight through the stances. [She drops the water again and hears the ship pulling up onto the river bank. She peaks through the bushes to see what the noise was, and gasps upon seeing the pirates. She turns to run, but it grabbed by a pirate.] No! Let go of me! [She bends water up into the pirate's face, and he releases her, she runs but is grabbed again on the wrists by Zuko.]","Shhh, Momo! Go back to sleep. Shh! Ugh, ugh, ugh! Shoot! Come on water, work with me here! Okay, what if I just, ow! Stupid scroll! Okay Katara, shift your weight through the stances. No! Let go of me!",John O'Bryan,Anthony Lioi,8 +1987,1987,Water,1,The Waterbending Scroll,9,Zuko,[He glares at her as she looks frightfully at him.] I'll save you from the pirates.,I'll save you from the pirates.,John O'Bryan,Anthony Lioi,8 +1988,1988,Water,1,The Waterbending Scroll,9,Scene Description,The scene cuts to show Katara tied to a tree with Zuko standing in front of her.,NA,John O'Bryan,Anthony Lioi,8 +1989,1989,Water,1,The Waterbending Scroll,9,Zuko,Tell me where he is and I won't hurt you or your brother.,Tell me where he is and I won't hurt you or your brother.,John O'Bryan,Anthony Lioi,8 +1990,1990,Water,1,The Waterbending Scroll,9,Katara,[Furiously.] Go jump in the river!,Go jump in the river!,John O'Bryan,Anthony Lioi,8 +1991,1991,Water,1,The Waterbending Scroll,9,Zuko,"Try to understand. I need to capture him to restore something I've lost, my honor. [Katara jerks her head away from Zuko.] Perhaps in exchange I can restore something you've lost. [He holds her mother's necklace up to her neck.]","Try to understand. I need to capture him to restore something I've lost, my honor. Perhaps in exchange I can restore something you've lost.",John O'Bryan,Anthony Lioi,8 +1992,1992,Water,1,The Waterbending Scroll,9,Katara,My mother's necklace! How did you get that?,My mother's necklace! How did you get that?,John O'Bryan,Anthony Lioi,8 +1993,1993,Water,1,The Waterbending Scroll,9,Zuko,"I didn't steal it, if that's what you're wondering. Tell me where he is. [Points at Katara.]","I didn't steal it, if that's what you're wondering. Tell me where he is.",John O'Bryan,Anthony Lioi,8 +1994,1994,Water,1,The Waterbending Scroll,9,Katara,No!,No!,John O'Bryan,Anthony Lioi,8 +1995,1995,Water,1,The Waterbending Scroll,9,Pirate captain,Enough of this necklace garbage! You promised a scroll!,Enough of this necklace garbage! You promised a scroll!,John O'Bryan,Anthony Lioi,8 +1996,1996,Water,1,The Waterbending Scroll,9,Zuko,"I wonder how much this is worth ... [The pirates gasp as he takes it out and holds it over a fire in his hand.] A lot, apparently. Now you help me find what I want, you'll get this back, and everyone goes home happy. Search the woods for the boy and meet back here!","I wonder how much this is worth ... A lot, apparently. Now you help me find what I want, you'll get this back, and everyone goes home happy. Search the woods for the boy and meet back here!",John O'Bryan,Anthony Lioi,8 +1997,1997,Water,1,The Waterbending Scroll,9,Pirate captain,Fine.,Fine.,John O'Bryan,Anthony Lioi,8 +1998,1998,Water,1,The Waterbending Scroll,9,Scene Description,"The scene cuts to the campsite, where Sokka is waking up.",NA,John O'Bryan,Anthony Lioi,8 +1999,1999,Water,1,The Waterbending Scroll,9,Sokka,[Notices Katara's missing.] Huh? Where did she go? [Looks through the bag.] I don't believe it.,Huh? Where did she go? I don't believe it.,John O'Bryan,Anthony Lioi,8 +2000,2000,Water,1,The Waterbending Scroll,9,Aang,[Yawns.] What's wrong?,What's wrong?,John O'Bryan,Anthony Lioi,8 +2001,2001,Water,1,The Waterbending Scroll,9,Sokka,She took the scroll! She's obsessed with that thing. It's just a matter of time before she gets us all in deep- [Yells as a pirate throws a rope around his arms and drags him forward. He rolls away and charges at the pirate while another pirate captures Aang in a net and drags him away.],She took the scroll! She's obsessed with that thing. It's just a matter of time before she gets us all in deep-,John O'Bryan,Anthony Lioi,8 +2002,2002,Water,1,The Waterbending Scroll,9,Pirate,"I got him, come on!","I got him, come on!",John O'Bryan,Anthony Lioi,8 +2003,2003,Water,1,The Waterbending Scroll,9,Sokka,"Oh, what? I'm not good enough to kidnap? Ah! [The pirate shoots another net at Sokka and drags him away too.]","Oh, what? I'm not good enough to kidnap? Ah!",John O'Bryan,Anthony Lioi,8 +2004,2004,Water,1,The Waterbending Scroll,9,Scene Description,"Cuts back to the place where Zuko and the pirates are gathered. The pirates are holding Aang and Sokka, who are tied up. Sokka is struggling with the ropes.",NA,John O'Bryan,Anthony Lioi,8 +2005,2005,Water,1,The Waterbending Scroll,9,Zuko,Nice work.,Nice work.,John O'Bryan,Anthony Lioi,8 +2006,2006,Water,1,The Waterbending Scroll,9,Katara,"Aang, this is all my fault.","Aang, this is all my fault.",John O'Bryan,Anthony Lioi,8 +2007,2007,Water,1,The Waterbending Scroll,9,Aang,"No Katara, it isn't.","No Katara, it isn't.",John O'Bryan,Anthony Lioi,8 +2008,2008,Water,1,The Waterbending Scroll,9,Iroh,"Yeah, it kind of is. [Katara glares at Iroh.]","Yeah, it kind of is.",John O'Bryan,Anthony Lioi,8 +2009,2009,Water,1,The Waterbending Scroll,9,Zuko,[To the pirate captain.] Give me the boy.,Give me the boy.,John O'Bryan,Anthony Lioi,8 +2010,2010,Water,1,The Waterbending Scroll,9,Pirate captain,You give us the scroll.,You give us the scroll.,John O'Bryan,Anthony Lioi,8 +2011,2011,Water,1,The Waterbending Scroll,9,Sokka,You're really gonna hand over the Avatar for a stupid piece of parchment?,You're really gonna hand over the Avatar for a stupid piece of parchment?,John O'Bryan,Anthony Lioi,8 +2012,2012,Water,1,The Waterbending Scroll,9,Zuko,"Don't listen to him, he's trying to turn us against each other!","Don't listen to him, he's trying to turn us against each other!",John O'Bryan,Anthony Lioi,8 +2013,2013,Water,1,The Waterbending Scroll,9,Pirate captain,[Turns to Aang.] Your friend is the Avatar?,Your friend is the Avatar?,John O'Bryan,Anthony Lioi,8 +2014,2014,Water,1,The Waterbending Scroll,9,Sokka,"Sure is, and I'll bet he'll fetch a lot more on the black market than that fancy scroll.","Sure is, and I'll bet he'll fetch a lot more on the black market than that fancy scroll.",John O'Bryan,Anthony Lioi,8 +2015,2015,Water,1,The Waterbending Scroll,9,Zuko,"Shut your mouth, you Water Tribe peasant!","Shut your mouth, you Water Tribe peasant!",John O'Bryan,Anthony Lioi,8 +2016,2016,Water,1,The Waterbending Scroll,9,Aang,"Yeah, Sokka, you really should shut your mouth.","Yeah, Sokka, you really should shut your mouth.",John O'Bryan,Anthony Lioi,8 +2017,2017,Water,1,The Waterbending Scroll,9,Sokka,I'm just sayin' it's bad business sense. Think how much the Fire Lord would pay for the Avatar. You guys would be set for life.,I'm just sayin' it's bad business sense. Think how much the Fire Lord would pay for the Avatar. You guys would be set for life.,John O'Bryan,Anthony Lioi,8 +2018,2018,Water,1,The Waterbending Scroll,9,Pirate captain,[To Zuko.] Keep the scroll; we can buy a hundred with the reward we'll get for the kid. [The pirates turn to leave.],Keep the scroll; we can buy a hundred with the reward we'll get for the kid.,John O'Bryan,Anthony Lioi,8 +2019,2019,Water,1,The Waterbending Scroll,9,Zuko,"You'll regret breaking a deal with me. [He and two of his soldiers send a blast of fire at the pirates. The pirates jump back and Oh runs out, throwing smoke bombs and jumping into the cloud as the fight ensues. Some of the soldiers run out to Sokka and Aang, who are struggling with their ropes, but are stopped by several pirates. Momo runs down the tree and frees Katara.]",You'll regret breaking a deal with me.,John O'Bryan,Anthony Lioi,8 +2020,2020,Water,1,The Waterbending Scroll,9,Katara,"Thanks, Momo. I owe you a bushel of apples. [She runs to join the fight. Aang is shown lost in the smoke, a thrown knife narrowly misses him and cuts through his ropes. Zuko finds his way out of the smoke cloud and hides the scroll behind his back, but the pirate captain sees him and the two begin to fight. The scroll flies into the air and his caught by Momo, the iguana parrot sees him and hits Momo. The scroll flies back down to the ground. A knife narrowly misses Sokka's head, and he uses it to cuts the ropes on his hands.]","Thanks, Momo. I owe you a bushel of apples.",John O'Bryan,Anthony Lioi,8 +2021,2021,Water,1,The Waterbending Scroll,9,Sokka,"[Shouting.] Aang, are you there?","Aang, are you there?",John O'Bryan,Anthony Lioi,8 +2022,2022,Water,1,The Waterbending Scroll,9,Aang,I'm over here! Follow my voice!,I'm over here! Follow my voice!,John O'Bryan,Anthony Lioi,8 +2023,2023,Water,1,The Waterbending Scroll,9,Sokka,Where? I can't find you!,Where? I can't find you!,John O'Bryan,Anthony Lioi,8 +2024,2024,Water,1,The Waterbending Scroll,9,Aang,"I'm right here! [Airbends the dust away, revealing the pirates surrounding him, and immediately airbends it back around himself.] Never mind! I'll find you! [Sokka climbs out of the dust cloud on his hands and knees. Aang vaults over him in a full sprint.] Run! [They find Katara, who is trying to push the pirate boat back into the water.] Katara, you're okay!","I'm right here! Never mind! I'll find you! Run! Katara, you're okay!",John O'Bryan,Anthony Lioi,8 +2025,2025,Water,1,The Waterbending Scroll,9,Katara,"Help me get this boat back in the water so we can get outta here. [They join her in trying to push the boat, but can't.]",Help me get this boat back in the water so we can get outta here.,John O'Bryan,Anthony Lioi,8 +2026,2026,Water,1,The Waterbending Scroll,9,Sokka,We'd need a team of rhinos to budge this ship.,We'd need a team of rhinos to budge this ship.,John O'Bryan,Anthony Lioi,8 +2027,2027,Water,1,The Waterbending Scroll,9,Aang,"A team of rhinos, or two waterbenders.","A team of rhinos, or two waterbenders.",John O'Bryan,Anthony Lioi,8 +2028,2028,Water,1,The Waterbending Scroll,9,Scene Description,Cuts to Aang and Katara pushing and pulling the water until the boat rises up.,NA,John O'Bryan,Anthony Lioi,8 +2029,2029,Water,1,The Waterbending Scroll,9,Katara,Everybody in!,Everybody in!,John O'Bryan,Anthony Lioi,8 +2030,2030,Water,1,The Waterbending Scroll,9,Scene Description,Cuts to show Iroh breaking up the fight between the pirate captain and Zuko.,NA,John O'Bryan,Anthony Lioi,8 +2031,2031,Water,1,The Waterbending Scroll,9,Iroh,Are you so busy fighting you cannot see your own ship has set sail?,Are you so busy fighting you cannot see your own ship has set sail?,John O'Bryan,Anthony Lioi,8 +2032,2032,Water,1,The Waterbending Scroll,9,Zuko,"We have no time for your proverbs, Uncle!","We have no time for your proverbs, Uncle!",John O'Bryan,Anthony Lioi,8 +2033,2033,Water,1,The Waterbending Scroll,9,Iroh,It's no proverb! [Points to Team Avatar who has hijacked the pirate ship.],It's no proverb!,John O'Bryan,Anthony Lioi,8 +2034,2034,Water,1,The Waterbending Scroll,9,Pirate captain,Bleeding hog monkeys! [Zuko laughs while pointing at him. His laughter dissipates as the pirates hijack his own boat. The pirates taunt him and the screen pans to a steaming Zuko.],Bleeding hog monkeys!,John O'Bryan,Anthony Lioi,8 +2035,2035,Water,1,The Waterbending Scroll,9,Zuko,[Angrily.] Hey! That's my boat! [Goes chasing after the hijacked boat.],Hey! That's my boat!,John O'Bryan,Anthony Lioi,8 +2036,2036,Water,1,The Waterbending Scroll,9,Iroh,[Pondering.] Maybe it should be a proverb ...,Maybe it should be a proverb ...,John O'Bryan,Anthony Lioi,8 +2037,2037,Water,1,The Waterbending Scroll,9,Zuko,"[Off camera.] C'mon, Uncle! [Iroh runs after Zuko.]","C'mon, Uncle!",John O'Bryan,Anthony Lioi,8 +2038,2038,Water,1,The Waterbending Scroll,9,Aang,"Sokka, can't you make it go any faster?","Sokka, can't you make it go any faster?",John O'Bryan,Anthony Lioi,8 +2039,2039,Water,1,The Waterbending Scroll,9,Sokka,I don't know how. This thing wasn't made by the Water Tribe!,I don't know how. This thing wasn't made by the Water Tribe!,John O'Bryan,Anthony Lioi,8 +2040,2040,Water,1,The Waterbending Scroll,9,Scene Description,"Several of the pirates jump onto the ship, but are quickly swept away by Aang's waterbending. Determined, Katara performs a perfect water whip to throw the last pirate off.",NA,John O'Bryan,Anthony Lioi,8 +2041,2041,Water,1,The Waterbending Scroll,9,Aang,"Hey, you did the water whip!","Hey, you did the water whip!",John O'Bryan,Anthony Lioi,8 +2042,2042,Water,1,The Waterbending Scroll,9,Katara,I couldn't have done it without your help.,I couldn't have done it without your help.,John O'Bryan,Anthony Lioi,8 +2043,2043,Water,1,The Waterbending Scroll,9,Scene Description,Sokka is shown being held in place by two pirates.,NA,John O'Bryan,Anthony Lioi,8 +2044,2044,Water,1,The Waterbending Scroll,9,Sokka,Would you two quit congratulating each other and help me out?,Would you two quit congratulating each other and help me out?,John O'Bryan,Anthony Lioi,8 +2045,2045,Water,1,The Waterbending Scroll,9,Scene Description,Momo is shown still being chased by the iguana parrot; he flies up to the top mast and entangles the bird in the ship's flag. Sokka is shown being thrown by one of the pirates.,NA,John O'Bryan,Anthony Lioi,8 +2046,2046,Water,1,The Waterbending Scroll,9,Oh,That's good ... [Aang lands behind him and airbends him and the other pirate off the ship before jumping down to Sokka.],That's good ...,John O'Bryan,Anthony Lioi,8 +2047,2047,Water,1,The Waterbending Scroll,9,Katara,"[Pointing.] Aang, look! [The ship is shown headed toward a huge waterfall.]","Aang, look!",John O'Bryan,Anthony Lioi,8 +2048,2048,Water,1,The Waterbending Scroll,9,Aang,Oh no ...,Oh no ...,John O'Bryan,Anthony Lioi,8 +2049,2049,Water,1,The Waterbending Scroll,9,Scene Description,"Oh comes up behind him with a knife, Aang turns and blows the bison whistle. Oh stands confused while Sokka comes up behind him and pushes him off the ship.",NA,John O'Bryan,Anthony Lioi,8 +2050,2050,Water,1,The Waterbending Scroll,9,Sokka,Have you lost your mind? This is no time for flute practice! [Katara and Aang stare in horror at the approaching waterfall.],Have you lost your mind? This is no time for flute practice!,John O'Bryan,Anthony Lioi,8 +2051,2051,Water,1,The Waterbending Scroll,9,Katara,"We can stop the boat! Aang, together, push and pull the water! [They create a small Whirlpool that stops the boat.] It's working, it's slowing down! We're doing it!","We can stop the boat! Aang, together, push and pull the water! It's working, it's slowing down! We're doing it!",John O'Bryan,Anthony Lioi,8 +2052,2052,Water,1,The Waterbending Scroll,9,Sokka,"But we have another problem. [Zuko's boat is shown sailing straight toward their ship. The boat rams into the ship and Sokka, Aang, and Katara are forced to jump as the boat goes over the falls.]",But we have another problem.,John O'Bryan,Anthony Lioi,8 +2053,2053,Water,1,The Waterbending Scroll,9,Together,Jump! [Appa is shown flying toward them. They land on him and fly to safety.],Jump!,John O'Bryan,Anthony Lioi,8 +2054,2054,Water,1,The Waterbending Scroll,9,Aang,[Holding up the whistle.] I knew a bison whistle would come in handy! Thanks Appa.,I knew a bison whistle would come in handy! Thanks Appa.,John O'Bryan,Anthony Lioi,8 +2055,2055,Water,1,The Waterbending Scroll,9,Sokka,"Yeah, we owe you one. [Appa roars and the scene cuts to show Zuko running to the cliff in horror at the fact that his boat has gone over the falls.]","Yeah, we owe you one.",John O'Bryan,Anthony Lioi,8 +2056,2056,Water,1,The Waterbending Scroll,9,Zuko,My boat!,My boat!,John O'Bryan,Anthony Lioi,8 +2057,2057,Water,1,The Waterbending Scroll,9,Iroh,"[Chuckles.] Prince Zuko, you're really going to get a kick out of this. That lotus tile was in my sleeve the whole time! [Has a big smile on his face.]","Prince Zuko, you're really going to get a kick out of this. That lotus tile was in my sleeve the whole time!",John O'Bryan,Anthony Lioi,8 +2058,2058,Water,1,The Waterbending Scroll,9,Scene Description,Zuko snatches the lotus tile and furiously throws it down the waterfall.,NA,John O'Bryan,Anthony Lioi,8 +2059,2059,Water,1,The Waterbending Scroll,9,Scene Description,Cuts back to Appa flying through the clouds.,NA,John O'Bryan,Anthony Lioi,8 +2060,2060,Water,1,The Waterbending Scroll,9,Katara,"Aang, I still owe you an apology. You were just so good at waterbending without really trying. I got so competitive that I put us all in danger, I'm sorry.","Aang, I still owe you an apology. You were just so good at waterbending without really trying. I got so competitive that I put us all in danger, I'm sorry.",John O'Bryan,Anthony Lioi,8 +2061,2061,Water,1,The Waterbending Scroll,9,Aang,That's okay Katara.,That's okay Katara.,John O'Bryan,Anthony Lioi,8 +2062,2062,Water,1,The Waterbending Scroll,9,Katara,"Besides, who needs that stupid scroll anyway?","Besides, who needs that stupid scroll anyway?",John O'Bryan,Anthony Lioi,8 +2063,2063,Water,1,The Waterbending Scroll,9,Sokka,[Holding the scroll. Sarcastically.] Is that really how you feel?,Is that really how you feel?,John O'Bryan,Anthony Lioi,8 +2064,2064,Water,1,The Waterbending Scroll,9,Katara,The scroll!,The scroll!,John O'Bryan,Anthony Lioi,8 +2065,2065,Water,1,The Waterbending Scroll,9,Sokka,"[Puts his hand in front to keep Katara from grabbing it.] First, what did you learn?","First, what did you learn?",John O'Bryan,Anthony Lioi,8 +2066,2066,Water,1,The Waterbending Scroll,9,Katara,Stealing is wrong. [Snatches scroll.] Unless it's from pirates.,Stealing is wrong. Unless it's from pirates.,John O'Bryan,Anthony Lioi,8 +2067,2067,Water,1,The Waterbending Scroll,9,Aang,"[Laughing.] Good one, Katara.","Good one, Katara.",John O'Bryan,Anthony Lioi,8 +2068,2068,Water,1,The Waterbending Scroll,9,Scene Description,Fades to credits.,NA,John O'Bryan,Anthony Lioi,8 +2069,2069,Water,1,Jet,10,Scene Description,"The episode opens in a forest. Momo is chasing a bug through the trees. In his pursuit he lands on the ground to see a neatly stacked pile of lychee nuts. When he runs toward it, Momo is pulled into the air by a cage trap, joining two other caged animals. Camera changes focus to find the rest of Team Avatar camping.",NA,James Eagan,Dave Filoni,7.8 +2070,2070,Water,1,Jet,10,Aang,"Where's Momo? [Camera zooms in to close-up shot of Aang, Katara, and Sokka, the siblings sitting next to each other with bored faces, and Aang standing with his back to the camera. Momo screeches and the gang looks around.]",Where's Momo?,James Eagan,Dave Filoni,7.8 +2071,2071,Water,1,Jet,10,Scene Description,Camera fades to find Aang as he spots the three animals in their cage traps hanging by rope on tree limbs.,NA,James Eagan,Dave Filoni,7.8 +2072,2072,Water,1,Jet,10,Aang,"Hang on, Momo! [Aang uses his airbending to fly to the top of the tree, jumping from trunk-to-trunk to get higher. He finds the traps' mechanisms, undoes them, and carefully lowers Momo to the ground where Katara and Sokka are waiting. They open the trap together and the lemur runs out with one of the lychee nuts in his mouth. Katara and Sokka look on as Momo gets on his hind legs and eats it as though nothing has happened. Sokka grunts in frustration and facepalms. When Aang lands, he looks up to see the other two animals seemingly crying out to him for help.] All right, you too. [Jumps up to them.]","Hang on, Momo! All right, you too.",James Eagan,Dave Filoni,7.8 +2073,2073,Water,1,Jet,10,Sokka,This is gonna take forever. [Throws his boomerang to simply cut the animals free.],This is gonna take forever.,James Eagan,Dave Filoni,7.8 +2074,2074,Water,1,Jet,10,Aang,[Inching his way upside-down to the traps on the tree branch. They fall before he can reach them.] That works.,That works.,James Eagan,Dave Filoni,7.8 +2075,2075,Water,1,Jet,10,Scene Description,"The hog monkeys run up the tree and out of the camera's view and Aang jumps back down, dirt flying from the ground as he lands. Everyone gathers around two of the traps and Sokka kneels down to examine them.",NA,James Eagan,Dave Filoni,7.8 +2076,2076,Water,1,Jet,10,Sokka,"These are Fire Nation traps, [Camera zooms to upward shot of the gang looking at the trap.] you can tell from the metalwork. We better pack up camp, and get moving.","These are Fire Nation traps, you can tell from the metalwork. We better pack up camp, and get moving.",James Eagan,Dave Filoni,7.8 +2077,2077,Water,1,Jet,10,Scene Description,They gather their things and begin to pack them onto Appa's saddle.,NA,James Eagan,Dave Filoni,7.8 +2078,2078,Water,1,Jet,10,Sokka,Uh uh. No flying this time.,Uh uh. No flying this time.,James Eagan,Dave Filoni,7.8 +2079,2079,Water,1,Jet,10,Aang,[Confused.] What? Why wouldn't we fly?,What? Why wouldn't we fly?,James Eagan,Dave Filoni,7.8 +2080,2080,Water,1,Jet,10,Sokka,"[Takes the sleeping bag from Aang's hands.] Think about it: Somehow Prince Zuko and the Fire Nation keep finding us. It's because they spot Appa, he's just too noticeable.","Think about it: Somehow Prince Zuko and the Fire Nation keep finding us. It's because they spot Appa, he's just too noticeable.",James Eagan,Dave Filoni,7.8 +2081,2081,Water,1,Jet,10,Katara,What? Appa's not too noticeable!,What? Appa's not too noticeable!,James Eagan,Dave Filoni,7.8 +2082,2082,Water,1,Jet,10,Sokka,[Points dramatically at Appa; condescendingly.] He's a gigantic fluffy monster with an arrow on his head! It's kinda hard to miss him! [The bison yawns and the camera flashes to Aang sitting comfortably on the animal's head.],He's a gigantic fluffy monster with an arrow on his head! It's kinda hard to miss him!,James Eagan,Dave Filoni,7.8 +2083,2083,Water,1,Jet,10,Aang,[To Appa.] Sokka's just jealous 'cause he doesn't have an arrow.,Sokka's just jealous 'cause he doesn't have an arrow.,James Eagan,Dave Filoni,7.8 +2084,2084,Water,1,Jet,10,Sokka,"[Camera closes in on Sokka and Katara next to each other.] I know you all wanna fly, but my instincts tell me we should play it safe this time and walk.","I know you all wanna fly, but my instincts tell me we should play it safe this time and walk.",James Eagan,Dave Filoni,7.8 +2085,2085,Water,1,Jet,10,Katara,[Leans forward at her brother and smiles.] Who made you the boss?,Who made you the boss?,James Eagan,Dave Filoni,7.8 +2086,2086,Water,1,Jet,10,Sokka,"[Points his finger at his chest; to Katara.] I'm not the boss, I'm the leader.","I'm not the boss, I'm the leader.",James Eagan,Dave Filoni,7.8 +2087,2087,Water,1,Jet,10,Katara,[Amused.] You're the leader? But your voice still cracks!,You're the leader? But your voice still cracks!,James Eagan,Dave Filoni,7.8 +2088,2088,Water,1,Jet,10,Sokka,"[Voice cracks.] I'm the oldest, and I'm a warrior, so [Deepens voice.] I'm the leader!","I'm the oldest, and I'm a warrior, so I'm the leader!",James Eagan,Dave Filoni,7.8 +2089,2089,Water,1,Jet,10,Katara,"[Close-up shot of Katara's face.] If anyone's the leader, it's Aang. I mean he is the Avatar. [Pan back to Sokka.]","If anyone's the leader, it's Aang. I mean he is the Avatar.",James Eagan,Dave Filoni,7.8 +2090,2090,Water,1,Jet,10,Sokka,"Are you kidding, he's just a goofy kid!","Are you kidding, he's just a goofy kid!",James Eagan,Dave Filoni,7.8 +2091,2091,Water,1,Jet,10,Aang,[While hanging upside-down from Appa's right horn with feet sticking out in the air.] He's right.,He's right.,James Eagan,Dave Filoni,7.8 +2092,2092,Water,1,Jet,10,Katara,Why do boys always think someone has to be the leader? I bet you wouldn't be so bossy if you kissed a girl.,Why do boys always think someone has to be the leader? I bet you wouldn't be so bossy if you kissed a girl.,James Eagan,Dave Filoni,7.8 +2093,2093,Water,1,Jet,10,Sokka,"[Close-up on Sokka; defensively.] I've kissed a girl, you just haven't met her.","I've kissed a girl, you just haven't met her.",James Eagan,Dave Filoni,7.8 +2094,2094,Water,1,Jet,10,Katara,[Back to Sokka.] Who? Gran-Gran? I've met Gran-Gran.,Who? Gran-Gran? I've met Gran-Gran.,James Eagan,Dave Filoni,7.8 +2095,2095,Water,1,Jet,10,Sokka,"[Throws arms into the air.] No! Besides Gran-Gran. Look, my instincts tell me we have a better chance of slipping through on foot, and a leader has to trust his instincts.","No! Besides Gran-Gran. Look, my instincts tell me we have a better chance of slipping through on foot, and a leader has to trust his instincts.",James Eagan,Dave Filoni,7.8 +2096,2096,Water,1,Jet,10,Katara,"[Sarcastically.] Okay, we'll try it your way, oh wise leader.","Okay, we'll try it your way, oh wise leader.",James Eagan,Dave Filoni,7.8 +2097,2097,Water,1,Jet,10,Aang,"[Aang steps over, now wearing a backpack. Momo is sitting on the top.] Who knows? Walking might be fun. [Cut to the forest at a later time. Between trees the group trudges along, with Sokka in front, followed by Aang and Momo, Katara, and Appa.] Walking stinks! How do people go anywhere without a flying bison?",Who knows? Walking might be fun. Walking stinks! How do people go anywhere without a flying bison?,James Eagan,Dave Filoni,7.8 +2098,2098,Water,1,Jet,10,Katara,"[Sarcastically.] Well I don't know, Aang. Why don't you ask Sokka's instincts? They seem to know everything.","Well I don't know, Aang. Why don't you ask Sokka's instincts? They seem to know everything.",James Eagan,Dave Filoni,7.8 +2099,2099,Water,1,Jet,10,Sokka,"[Sarcastically.] Ha, ha, very funny.","Ha, ha, very funny.",James Eagan,Dave Filoni,7.8 +2100,2100,Water,1,Jet,10,Aang,[Complaining.] I'm tired of carrying this pack.,I'm tired of carrying this pack.,James Eagan,Dave Filoni,7.8 +2101,2101,Water,1,Jet,10,Katara,You know who you should ask to carry it for a while? Sokka's instincts. [Sokka's eyes turn to her in irritation.],You know who you should ask to carry it for a while? Sokka's instincts.,James Eagan,Dave Filoni,7.8 +2102,2102,Water,1,Jet,10,Aang,"That's a great idea. Hey, Sokka's instincts, would you mind-","That's a great idea. Hey, Sokka's instincts, would you mind-",James Eagan,Dave Filoni,7.8 +2103,2103,Water,1,Jet,10,Sokka,"Okay, okay, I get it. Look guys, I'm tired too. But the important thing is that we're safe from the [Walks through a bush and sees something in front of him.] Fire ... Nation.","Okay, okay, I get it. Look guys, I'm tired too. But the important thing is that we're safe from the Fire ... Nation.",James Eagan,Dave Filoni,7.8 +2104,2104,Water,1,Jet,10,Scene Description,"Sokka sees a Fire Nation campsite with a lot of soldiers; most of them are seated or crouched near the fire with bowls in hand and a couple of them sit close to the tents, which have the Fire Nation emblem on the doorflap. One of these soldiers has a patch over his left eye. They all notice the group and get up.",NA,James Eagan,Dave Filoni,7.8 +2105,2105,Water,1,Jet,10,Sokka,Run! [They turn to run but a firebender blocks them off by setting the plants behind them on fire.] We're cut off!,Run! We're cut off!,James Eagan,Dave Filoni,7.8 +2106,2106,Water,1,Jet,10,Aang,"Sokka, your shirt! [Sokka yells; Katara clears a fire on Sokka's shirt with waterbending.]","Sokka, your shirt!",James Eagan,Dave Filoni,7.8 +2107,2107,Water,1,Jet,10,Sokka,"If you let us pass, we promise not to hurt you.","If you let us pass, we promise not to hurt you.",James Eagan,Dave Filoni,7.8 +2108,2108,Water,1,Jet,10,Katara,[Whispers.] What are you doing?,What are you doing?,James Eagan,Dave Filoni,7.8 +2109,2109,Water,1,Jet,10,Sokka,[Whispers.] Bluffing?,Bluffing?,James Eagan,Dave Filoni,7.8 +2110,2110,Water,1,Jet,10,Eye-patch soldier,You promise not to hurt us? [He's somehow knocked out.],You promise not to hurt us?,James Eagan,Dave Filoni,7.8 +2111,2111,Water,1,Jet,10,Aang,"Nice work, Sokka! How'd you do that?","Nice work, Sokka! How'd you do that?",James Eagan,Dave Filoni,7.8 +2112,2112,Water,1,Jet,10,Sokka,"Uh, instinct?","Uh, instinct?",James Eagan,Dave Filoni,7.8 +2113,2113,Water,1,Jet,10,Katara,[Points up a tree.] Look!,Look!,James Eagan,Dave Filoni,7.8 +2114,2114,Water,1,Jet,10,Scene Description,"In a tree, a man with hook swords, Jet, jumps and takes down two soldiers. He runs forward and takes down two more using his hook swords.",NA,James Eagan,Dave Filoni,7.8 +2115,2115,Water,1,Jet,10,Jet,"Down you go. [Katara looks amazed, Aang shocked, and Sokka confused.]",Down you go.,James Eagan,Dave Filoni,7.8 +2116,2116,Water,1,Jet,10,Scene Description,"Another soldier charges at Jet, but he is defeated.",NA,James Eagan,Dave Filoni,7.8 +2117,2117,Water,1,Jet,10,Fire Nation soldier,They're in the trees!,They're in the trees!,James Eagan,Dave Filoni,7.8 +2118,2118,Water,1,Jet,10,Scene Description,"A young boy lands on top of the soldier and turns his helmet around to blind him, before riding him around while laughing. Another boy launches arrows at the soldiers while more boys come out of the trees. Aang and Katara are shown fighting the soldiers. Sokka holds up his boomerang and yells as one approaches him, but stops when Jet takes him down first.",NA,James Eagan,Dave Filoni,7.8 +2119,2119,Water,1,Jet,10,Sokka,"Hey, he was mine!","Hey, he was mine!",James Eagan,Dave Filoni,7.8 +2120,2120,Water,1,Jet,10,Jet,Gotta be quicker next time.,Gotta be quicker next time.,James Eagan,Dave Filoni,7.8 +2121,2121,Water,1,Jet,10,Scene Description,"Sokka looks dismayed and the camera cuts to show a huge boy fall out of the trees and easily take down two soldiers as Jet skillfully takes down one more, causing this soldier's weapon to hit another soldier, who was going to battle Sokka, in the head, making that soldier also fall down.",NA,James Eagan,Dave Filoni,7.8 +2122,2122,Water,1,Jet,10,Sokka,[Angrily.] Man!,Man!,James Eagan,Dave Filoni,7.8 +2123,2123,Water,1,Jet,10,Scene Description,Jet disarms another soldier and runs up to Katara.,NA,James Eagan,Dave Filoni,7.8 +2124,2124,Water,1,Jet,10,Jet,Hey.,Hey.,James Eagan,Dave Filoni,7.8 +2125,2125,Water,1,Jet,10,Katara,Hi.,Hi.,James Eagan,Dave Filoni,7.8 +2126,2126,Water,1,Jet,10,Scene Description,They look around to see a now empty camp,NA,James Eagan,Dave Filoni,7.8 +2127,2127,Water,1,Jet,10,Aang,[Amazed.] You just took out a whole army almost single-handed.,You just took out a whole army almost single-handed.,James Eagan,Dave Filoni,7.8 +2128,2128,Water,1,Jet,10,Sokka,"[Disdainfully.] Army? There were only like, twenty guys.","Army? There were only like, twenty guys.",James Eagan,Dave Filoni,7.8 +2129,2129,Water,1,Jet,10,Jet,"My name is Jet, and these are my Freedom Fighters, Sneers, Longshot, Smellerbee, The Duke, and Pipsqueak.","My name is Jet, and these are my Freedom Fighters, Sneers, Longshot, Smellerbee, The Duke, and Pipsqueak.",James Eagan,Dave Filoni,7.8 +2130,2130,Water,1,Jet,10,Aang,"[Laughing; looking at The Duke.] Ha, ha, Pipsqueak, that's a funny name. [The Duke sniffs his nose, as the camera pans upward to Pipsqueak.]","Ha, ha, Pipsqueak, that's a funny name.",James Eagan,Dave Filoni,7.8 +2131,2131,Water,1,Jet,10,Pipsqueak,"[Looming over Aang in a threatening manner; in a low, growling tone of voice.] You think my name is funny?",You think my name is funny?,James Eagan,Dave Filoni,7.8 +2132,2132,Water,1,Jet,10,Aang,[Side-shot; Aang looks taken aback for a second before replying in an upbeat tone.] It's hilarious!,It's hilarious!,James Eagan,Dave Filoni,7.8 +2133,2133,Water,1,Jet,10,Scene Description,"Facial shot of Pipsqueak, still looming forward with a frown on his face. He suddenly starts laughing. The camera moves back, showing Aang and The Duke following suit. Pipsqueak pats the Avatar on the back in a friendly manner, though the hit was hard enough to knock Aang flat on the ground. The Duke stops laughing and looks down at Aang sprawled on the ground before his feet, face flat in the dirt, though when Aang raises his head and continues laughing, so does The Duke. +The scene fades to the Fire Nation camp, and the camera cuts to show the Freedom Fighters raiding the empty camp.",NA,James Eagan,Dave Filoni,7.8 +2134,2134,Water,1,Jet,10,Katara,"[Approaching Jet.] Umm, thanks for saving us Jet. We're lucky you were there.","Umm, thanks for saving us Jet. We're lucky you were there.",James Eagan,Dave Filoni,7.8 +2135,2135,Water,1,Jet,10,Jet,"I should be thanking you. We were waiting to ambush those soldiers all morning, we just needed the right distraction, and then you guys stumbled in.","I should be thanking you. We were waiting to ambush those soldiers all morning, we just needed the right distraction, and then you guys stumbled in.",James Eagan,Dave Filoni,7.8 +2136,2136,Water,1,Jet,10,Katara,[Eyeing Sokka.] We were relying on instincts.,We were relying on instincts.,James Eagan,Dave Filoni,7.8 +2137,2137,Water,1,Jet,10,Jet,You'll get yourself killed doing that.,You'll get yourself killed doing that.,James Eagan,Dave Filoni,7.8 +2138,2138,Water,1,Jet,10,Scene Description,Sokka looks at them disdainfully as The Duke and Pipsqueak look through the barrels.,NA,James Eagan,Dave Filoni,7.8 +2139,2139,Water,1,Jet,10,The Duke,"Hey Jet, these barrels are filled of blasting jelly.","Hey Jet, these barrels are filled of blasting jelly.",James Eagan,Dave Filoni,7.8 +2140,2140,Water,1,Jet,10,Jet,That's a great score.,That's a great score.,James Eagan,Dave Filoni,7.8 +2141,2141,Water,1,Jet,10,Pipsqueak,And these boxes are filled with jelly candy!,And these boxes are filled with jelly candy!,James Eagan,Dave Filoni,7.8 +2142,2142,Water,1,Jet,10,Jet,"Also good, let's not get those mixed up.","Also good, let's not get those mixed up.",James Eagan,Dave Filoni,7.8 +2143,2143,Water,1,Jet,10,The Duke,We'll take this stuff back to the hideout.,We'll take this stuff back to the hideout.,James Eagan,Dave Filoni,7.8 +2144,2144,Water,1,Jet,10,Aang,You guys have a hideout?,You guys have a hideout?,James Eagan,Dave Filoni,7.8 +2145,2145,Water,1,Jet,10,Jet,You wanna see it?,You wanna see it?,James Eagan,Dave Filoni,7.8 +2146,2146,Water,1,Jet,10,Katara,"[Very excitedly.] Yes, we wanna see it!","Yes, we wanna see it!",James Eagan,Dave Filoni,7.8 +2147,2147,Water,1,Jet,10,Scene Description,Jet smiles at her and the camera fades to show them standing on the forest floor.,NA,James Eagan,Dave Filoni,7.8 +2148,2148,Water,1,Jet,10,Jet,We're here.,We're here.,James Eagan,Dave Filoni,7.8 +2149,2149,Water,1,Jet,10,Sokka,Where? There's nothing here.,Where? There's nothing here.,James Eagan,Dave Filoni,7.8 +2150,2150,Water,1,Jet,10,Jet,Hold this. [Gives a rope to Sokka.],Hold this.,James Eagan,Dave Filoni,7.8 +2151,2151,Water,1,Jet,10,Sokka,[Skeptically.] Why? What's this do? [Screams as he is pulled up into the branches.],Why? What's this do?,James Eagan,Dave Filoni,7.8 +2152,2152,Water,1,Jet,10,Jet,Aang? [Offers Aang another rope.],Aang?,James Eagan,Dave Filoni,7.8 +2153,2153,Water,1,Jet,10,Aang,I'll get up on my own. [Leaps up into the trees with airbending.],I'll get up on my own.,James Eagan,Dave Filoni,7.8 +2154,2154,Water,1,Jet,10,Jet,"Grab hold of me, Katara.","Grab hold of me, Katara.",James Eagan,Dave Filoni,7.8 +2155,2155,Water,1,Jet,10,Scene Description,"Katara blushes as she takes his hand and they rise up through the tree together in a romantic setting. They come to a landing on a wooden platform in the trees. Once up there, Aang is seen zip lining through the trees.",NA,James Eagan,Dave Filoni,7.8 +2156,2156,Water,1,Jet,10,Aang,[While passing through with Momo.] Nice place you got!,Nice place you got!,James Eagan,Dave Filoni,7.8 +2157,2157,Water,1,Jet,10,Katara,It's beautiful up here!,It's beautiful up here!,James Eagan,Dave Filoni,7.8 +2158,2158,Water,1,Jet,10,Jet,It's beautiful ... and more importantly the Fire Nation can't find us. [Smellerbee lands near the two.],It's beautiful ... and more importantly the Fire Nation can't find us.,James Eagan,Dave Filoni,7.8 +2159,2159,Water,1,Jet,10,Smellerbee,"They would love to find you. Wouldn't they, Jet?","They would love to find you. Wouldn't they, Jet?",James Eagan,Dave Filoni,7.8 +2160,2160,Water,1,Jet,10,Jet,"It's not gonna happen, Smellerbee.","It's not gonna happen, Smellerbee.",James Eagan,Dave Filoni,7.8 +2161,2161,Water,1,Jet,10,Katara,[As Aang zips by again.] Why does the Fire Nation want to find you?,Why does the Fire Nation want to find you?,James Eagan,Dave Filoni,7.8 +2162,2162,Water,1,Jet,10,Jet,"I guess you could say I've been causing them a little trouble. See, they took over a nearby Earth Kingdom town a few years back.","I guess you could say I've been causing them a little trouble. See, they took over a nearby Earth Kingdom town a few years back.",James Eagan,Dave Filoni,7.8 +2163,2163,Water,1,Jet,10,Pipsqueak,"We've been ambushin' their troops, cutting off their supply lines, and doing anything we can to mess with 'em. [Sokka is now seen comically hopping around trying to get past Pipsqueak.]","We've been ambushin' their troops, cutting off their supply lines, and doing anything we can to mess with 'em.",James Eagan,Dave Filoni,7.8 +2164,2164,Water,1,Jet,10,Jet,"One day, we'll drive the Fire Nation out of here for good and free that town.","One day, we'll drive the Fire Nation out of here for good and free that town.",James Eagan,Dave Filoni,7.8 +2165,2165,Water,1,Jet,10,Katara,That's so brave. [Sokka manages to get by Pipsqueak.],That's so brave.,James Eagan,Dave Filoni,7.8 +2166,2166,Water,1,Jet,10,Sokka,"[Sarcastically.] Yeah, nothing's braver than a guy in a tree house.","Yeah, nothing's braver than a guy in a tree house.",James Eagan,Dave Filoni,7.8 +2167,2167,Water,1,Jet,10,Katara,Don't pay any attention to my brother.,Don't pay any attention to my brother.,James Eagan,Dave Filoni,7.8 +2168,2168,Water,1,Jet,10,Jet,No problem. He probably had a rough day.,No problem. He probably had a rough day.,James Eagan,Dave Filoni,7.8 +2169,2169,Water,1,Jet,10,Katara,"So, you all live here? [Sokka who is being ignored comically sinks back behind them.]","So, you all live here?",James Eagan,Dave Filoni,7.8 +2170,2170,Water,1,Jet,10,Jet,That's right. Longshot over there? [The screen cuts to Longshot and The Duke walking not making a sound.] His town got burned down by the Fire Nation. And we found The Duke trying to steal our food. I don't think he ever really had a home.,That's right. Longshot over there? His town got burned down by the Fire Nation. And we found The Duke trying to steal our food. I don't think he ever really had a home.,James Eagan,Dave Filoni,7.8 +2171,2171,Water,1,Jet,10,Katara,What about you?,What about you?,James Eagan,Dave Filoni,7.8 +2172,2172,Water,1,Jet,10,Jet,[Katara and Jet come to a halt as the rest pass.] The Fire Nation killed my parents. I was only eight years old. That day changed me forever.,The Fire Nation killed my parents. I was only eight years old. That day changed me forever.,James Eagan,Dave Filoni,7.8 +2173,2173,Water,1,Jet,10,Katara,Sokka and I lost our mother to the Fire Nation.,Sokka and I lost our mother to the Fire Nation.,James Eagan,Dave Filoni,7.8 +2174,2174,Water,1,Jet,10,Jet,"I'm so sorry, Katara.","I'm so sorry, Katara.",James Eagan,Dave Filoni,7.8 +2175,2175,Water,1,Jet,10,Scene Description,"The screen fades from the two of them alone on the suspension bridge to the blue sky above the canopy. A cloud of cawing birds is disturbed as Appa raises his head with a roar. In the hideout, ropes with lanterns hang between branches. Sentries keep watch on several upper platforms while the group sits at a banquet table. While the group eats, Jet stands on the table.",NA,James Eagan,Dave Filoni,7.8 +2176,2176,Water,1,Jet,10,Jet,"Today, we struck another blow against the Fire Nation swine. [Everyone cheers. Katara and Aang smile while Sokka cops an attitude and a scowling face.] I got a special joy from the look on one soldier's face, when The Duke dropped down on his helmet and rode him like a wild hog monkey. [The Duke, without his helmet, climbs up the table. He marches on the table with his arms in the air.] Now, the Fire Nation thinks they don't have to worry about a couple of kids hiding in the trees. [He prepares to take a drink from his wooden cup.] Maybe they're right. [A very loud and long boo is heard; with an angry face.] Or maybe ... they're dead wrong. [A loud and long cheer is heard.]","Today, we struck another blow against the Fire Nation swine. I got a special joy from the look on one soldier's face, when The Duke dropped down on his helmet and rode him like a wild hog monkey. Now, the Fire Nation thinks they don't have to worry about a couple of kids hiding in the trees. Maybe they're right. Or maybe ... they're dead wrong.",James Eagan,Dave Filoni,7.8 +2177,2177,Water,1,Jet,10,Katara,"Hey Jet, nice speech.","Hey Jet, nice speech.",James Eagan,Dave Filoni,7.8 +2178,2178,Water,1,Jet,10,Jet,"Thanks. By the way, I was really impressed with you and Aang. That was some great bending I saw out there today.","Thanks. By the way, I was really impressed with you and Aang. That was some great bending I saw out there today.",James Eagan,Dave Filoni,7.8 +2179,2179,Water,1,Jet,10,Katara,"Well, he's great. He's the Avatar. [Blushes.] I could use some more training.","Well, he's great. He's the Avatar. I could use some more training.",James Eagan,Dave Filoni,7.8 +2180,2180,Water,1,Jet,10,Jet,Avatar huh? Very nice.,Avatar huh? Very nice.,James Eagan,Dave Filoni,7.8 +2181,2181,Water,1,Jet,10,Aang,Thanks Jet.,Thanks Jet.,James Eagan,Dave Filoni,7.8 +2182,2182,Water,1,Jet,10,Jet,So I might know a way that you and Aang can help in our struggle.,So I might know a way that you and Aang can help in our struggle.,James Eagan,Dave Filoni,7.8 +2183,2183,Water,1,Jet,10,Sokka,"Unfortunately, we have to leave tonight. [Sokka starts walking away.]","Unfortunately, we have to leave tonight.",James Eagan,Dave Filoni,7.8 +2184,2184,Water,1,Jet,10,Jet,"Sokka, you're kidding me! I needed you on an important mission tomorrow. [Sokka turns around.]","Sokka, you're kidding me! I needed you on an important mission tomorrow.",James Eagan,Dave Filoni,7.8 +2185,2185,Water,1,Jet,10,Sokka,What mission?,What mission?,James Eagan,Dave Filoni,7.8 +2186,2186,Water,1,Jet,10,Scene Description,The scene changes to the top of the forest the next day. Jet and Sokka are in branches of the same tree. Jet cups his hands and makes a birdcall; several trees down Pipsqueak and Smellerbee step into view from their branches. They reply with another birdcall. Sokka jams his jawbone knife into the trunk of the tree,NA,James Eagan,Dave Filoni,7.8 +2187,2187,Water,1,Jet,10,Jet,What are you doing?,What are you doing?,James Eagan,Dave Filoni,7.8 +2188,2188,Water,1,Jet,10,Sokka,Shh ... It amplifies vibrations.,Shh ... It amplifies vibrations.,James Eagan,Dave Filoni,7.8 +2189,2189,Water,1,Jet,10,Jet,[Impressed.] Good trick.,Good trick.,James Eagan,Dave Filoni,7.8 +2190,2190,Water,1,Jet,10,Sokka,"[Sokka puts his ear to the handle of his knife.] Nothing yet. [Whispers.] Wait! Yes, someone's approaching.","Nothing yet. Wait! Yes, someone's approaching.",James Eagan,Dave Filoni,7.8 +2191,2191,Water,1,Jet,10,Jet,[Whispers.] How many?,How many?,James Eagan,Dave Filoni,7.8 +2192,2192,Water,1,Jet,10,Sokka,I think there's just one.,I think there's just one.,James Eagan,Dave Filoni,7.8 +2193,2193,Water,1,Jet,10,Jet,"[Does a another birdcall.] Good work, Sokka. Ready your weapon. [Sokka takes his knife out of the tree. His eyes spot an old man.]","Good work, Sokka. Ready your weapon.",James Eagan,Dave Filoni,7.8 +2194,2194,Water,1,Jet,10,Sokka,"[Whispers.] Wait, false alarm ... He's just an old man.","Wait, false alarm ... He's just an old man.",James Eagan,Dave Filoni,7.8 +2195,2195,Water,1,Jet,10,Scene Description,"Jet ignores Sokka and prepares to attack the old man, leaping to the ground in front of the traveler. Sokka watches with horror.",NA,James Eagan,Dave Filoni,7.8 +2196,2196,Water,1,Jet,10,Jet,"What are you doing in our woods, you leech?","What are you doing in our woods, you leech?",James Eagan,Dave Filoni,7.8 +2197,2197,Water,1,Jet,10,Old Fire Nation civilian,"Please sir, I'm just a traveler.","Please sir, I'm just a traveler.",James Eagan,Dave Filoni,7.8 +2198,2198,Water,1,Jet,10,Scene Description,"Jet takes a step, and with one swipe, sends the man's cane flying from his hand. The old man backs away, but when he tries to flee the way he came, he runs face first into Pipsqueak's chest. The force of the impact knocks him to the ground; Pipsqueak looms over him. He tries to crawl away, but Pipsqueak's foot on his backside effectively pins him.",NA,James Eagan,Dave Filoni,7.8 +2199,2199,Water,1,Jet,10,Jet,Do you like destroying towns? Do you like destroying families? Do you?,Do you like destroying towns? Do you like destroying families? Do you?,James Eagan,Dave Filoni,7.8 +2200,2200,Water,1,Jet,10,Old Fire Nation civilian,Oh ... Please let me go ... have mercy ...,Oh ... Please let me go ... have mercy ...,James Eagan,Dave Filoni,7.8 +2201,2201,Water,1,Jet,10,Jet,Does the Fire Nation let people go? Does the Fire Nation have mercy?,Does the Fire Nation let people go? Does the Fire Nation have mercy?,James Eagan,Dave Filoni,7.8 +2202,2202,Water,1,Jet,10,Scene Description,"Jet is about to kick the man, but his foot is snagged by Sokka's club before it can be delivered. Sokka releases him.",NA,James Eagan,Dave Filoni,7.8 +2203,2203,Water,1,Jet,10,Sokka,"Jet, he's just an old man!","Jet, he's just an old man!",James Eagan,Dave Filoni,7.8 +2204,2204,Water,1,Jet,10,Jet,He's Fire Nation! Search him! [Pipsqueak holds the prisoner and Smellerbee steps up to search the poor man.],He's Fire Nation! Search him!,James Eagan,Dave Filoni,7.8 +2205,2205,Water,1,Jet,10,Sokka,But he's not hurting anyone!,But he's not hurting anyone!,James Eagan,Dave Filoni,7.8 +2206,2206,Water,1,Jet,10,Jet,Have you forgotten that the Fire Nation killed your mother? Remember why you fight!,Have you forgotten that the Fire Nation killed your mother? Remember why you fight!,James Eagan,Dave Filoni,7.8 +2207,2207,Water,1,Jet,10,Smellerbee,"We've got his stuff, Jet. [She holds up the old man's bag. The old man is thrown back on the ground.]","We've got his stuff, Jet.",James Eagan,Dave Filoni,7.8 +2208,2208,Water,1,Jet,10,Sokka,This doesn't feel right.,This doesn't feel right.,James Eagan,Dave Filoni,7.8 +2209,2209,Water,1,Jet,10,Jet,"It's what has to be done, now let's get outta here.","It's what has to be done, now let's get outta here.",James Eagan,Dave Filoni,7.8 +2210,2210,Water,1,Jet,10,Scene Description,Jet pushes past Sokka. Pipsqueak and Smellerbee follow. Sokka looks at the old man still on his hands and knees in pity.,NA,James Eagan,Dave Filoni,7.8 +2211,2211,Water,1,Jet,10,Jet,"Come on, Sokka!","Come on, Sokka!",James Eagan,Dave Filoni,7.8 +2212,2212,Water,1,Jet,10,Scene Description,"Sokka slowly turns and runs to catch up with the others. At the hideout, Aang and Momo are playing with the ziplines again. He leaps near Sokka.",NA,James Eagan,Dave Filoni,7.8 +2213,2213,Water,1,Jet,10,Aang,"Sokka! Look what the Duke gave me! [Aang is wearing a bag and pulls a small pellet from it. With a sly grin, he tosses it next to Momo, where it explodes with a pop. Momo puffs up like a startled cat. He hisses and lunges for the bag. Momo sits on Aang's shoulder and tosses several pellets at his feet. Aang dances about wildly.] Ow! Quit it!",Sokka! Look what the Duke gave me! Ow! Quit it!,James Eagan,Dave Filoni,7.8 +2214,2214,Water,1,Jet,10,Scene Description,"Sokka is oblivious of it all. He's sitting with his back to the trunk and staring at the ground, glaring. Katara walks up.",NA,James Eagan,Dave Filoni,7.8 +2215,2215,Water,1,Jet,10,Katara,"Hey, Sokka. Is Jet back?","Hey, Sokka. Is Jet back?",James Eagan,Dave Filoni,7.8 +2216,2216,Water,1,Jet,10,Sokka,Yeah he's back. But we're leaving.,Yeah he's back. But we're leaving.,James Eagan,Dave Filoni,7.8 +2217,2217,Water,1,Jet,10,Aang,What?,What?,James Eagan,Dave Filoni,7.8 +2218,2218,Water,1,Jet,10,Katara,But I made him this hat. [She shows a cap made out of stitched leaves with a flower on top.],But I made him this hat.,James Eagan,Dave Filoni,7.8 +2219,2219,Water,1,Jet,10,Sokka,Your boyfriend Jet's a thug.,Your boyfriend Jet's a thug.,James Eagan,Dave Filoni,7.8 +2220,2220,Water,1,Jet,10,Katara,"What? No, he's not.","What? No, he's not.",James Eagan,Dave Filoni,7.8 +2221,2221,Water,1,Jet,10,Sokka,He's messed up Katara.,He's messed up Katara.,James Eagan,Dave Filoni,7.8 +2222,2222,Water,1,Jet,10,Aang,"He's not messed up, he's just got a different way of life, a really fun way of life.","He's not messed up, he's just got a different way of life, a really fun way of life.",James Eagan,Dave Filoni,7.8 +2223,2223,Water,1,Jet,10,Sokka,He beat and robbed a harmless old man!,He beat and robbed a harmless old man!,James Eagan,Dave Filoni,7.8 +2224,2224,Water,1,Jet,10,Katara,I wanna hear Jet's side of the story. [The scene changes to Jet in a room.],I wanna hear Jet's side of the story.,James Eagan,Dave Filoni,7.8 +2225,2225,Water,1,Jet,10,Jet,"Sokka, you told them what happened, but you didn't mention that the guy was Fire Nation?","Sokka, you told them what happened, but you didn't mention that the guy was Fire Nation?",James Eagan,Dave Filoni,7.8 +2226,2226,Water,1,Jet,10,Scene Description,"Jet is sitting on a hammock-bed, the others stand. Sokka stands grumpily as far away as he can get. Aang is wearing the hat Katara made; he looks ridiculous and goofy.",NA,James Eagan,Dave Filoni,7.8 +2227,2227,Water,1,Jet,10,Katara,"No, he conveniently left that part out.","No, he conveniently left that part out.",James Eagan,Dave Filoni,7.8 +2228,2228,Water,1,Jet,10,Sokka,"Fine! But even if he was Fire Nation, he was a harmless civilian!","Fine! But even if he was Fire Nation, he was a harmless civilian!",James Eagan,Dave Filoni,7.8 +2229,2229,Water,1,Jet,10,Jet,"He was an assassin, Sokka.","He was an assassin, Sokka.",James Eagan,Dave Filoni,7.8 +2230,2230,Water,1,Jet,10,Scene Description,"Jet pulls out a knife and thrusts it into a nearby stump. It is a sinister looking curved blade. There are four spikes evenly spaced along the grip, with enough space for fingers to go between them. There is a ring on the butt of the knife.",NA,James Eagan,Dave Filoni,7.8 +2231,2231,Water,1,Jet,10,Jet,"See? There's a compartment for poison in the knife. [He pulls on the ring and removes a small glass tube filled with red liquid.]. He was sent to eliminate me; you helped save my life, Sokka.","See? There's a compartment for poison in the knife. . He was sent to eliminate me; you helped save my life, Sokka.",James Eagan,Dave Filoni,7.8 +2232,2232,Water,1,Jet,10,Katara,I knew there was an explanation.,I knew there was an explanation.,James Eagan,Dave Filoni,7.8 +2233,2233,Water,1,Jet,10,Sokka,I didn't see any knife!,I didn't see any knife!,James Eagan,Dave Filoni,7.8 +2234,2234,Water,1,Jet,10,Jet,That's because he was concealing it.,That's because he was concealing it.,James Eagan,Dave Filoni,7.8 +2235,2235,Water,1,Jet,10,Katara,"See, Sokka? I'm sure you just didn't notice the knife.","See, Sokka? I'm sure you just didn't notice the knife.",James Eagan,Dave Filoni,7.8 +2236,2236,Water,1,Jet,10,Sokka,There was no knife! I'm going back to the hut and packing my things. [Sokka stomps away.],There was no knife! I'm going back to the hut and packing my things.,James Eagan,Dave Filoni,7.8 +2237,2237,Water,1,Jet,10,Jet,Tell me you guys aren't leaving yet. I really need your help.,Tell me you guys aren't leaving yet. I really need your help.,James Eagan,Dave Filoni,7.8 +2238,2238,Water,1,Jet,10,Aang,What can we do?,What can we do?,James Eagan,Dave Filoni,7.8 +2239,2239,Water,1,Jet,10,Jet,"The Fire Nation is planning on burning down our forest. If you both use waterbending to fill the reservoir, we could fight the fires. But if you leave now, they'll destroy the whole valley.","The Fire Nation is planning on burning down our forest. If you both use waterbending to fill the reservoir, we could fight the fires. But if you leave now, they'll destroy the whole valley.",James Eagan,Dave Filoni,7.8 +2240,2240,Water,1,Jet,10,Scene Description,Aang and Katara look at each other. Fade to them entering their hut. Sokka is tying up a mat on the floor.,NA,James Eagan,Dave Filoni,7.8 +2241,2241,Water,1,Jet,10,Katara,We can't leave now with the Fire Nation about to burn down a forest!,We can't leave now with the Fire Nation about to burn down a forest!,James Eagan,Dave Filoni,7.8 +2242,2242,Water,1,Jet,10,Sokka,"I'm sorry Katara. Jet's very smooth, but we can't trust him.","I'm sorry Katara. Jet's very smooth, but we can't trust him.",James Eagan,Dave Filoni,7.8 +2243,2243,Water,1,Jet,10,Katara,You know what I think? You're jealous that he's a better warrior and a better leader!,You know what I think? You're jealous that he's a better warrior and a better leader!,James Eagan,Dave Filoni,7.8 +2244,2244,Water,1,Jet,10,Sokka,"Katara, I'm not jealous of Jet. It's just that my instinct—","Katara, I'm not jealous of Jet. It's just that my instinct—",James Eagan,Dave Filoni,7.8 +2245,2245,Water,1,Jet,10,Katara,Well my instincts tell me we need to stay here a little longer and help Jet. Come on Aang.,Well my instincts tell me we need to stay here a little longer and help Jet. Come on Aang.,James Eagan,Dave Filoni,7.8 +2246,2246,Water,1,Jet,10,Aang,"Sorry, Sokka.","Sorry, Sokka.",James Eagan,Dave Filoni,7.8 +2247,2247,Water,1,Jet,10,Scene Description,"They leave the hut. Fade to the night sky above the canopy. A full moon shines on Appa, who is on his back and snoring extremely loud as he sleeps. Inside the Trio's hut, Sokka sleeps propped up against his still-packed gear while the others sleep in their sleeping bags.",NA,James Eagan,Dave Filoni,7.8 +2248,2248,Water,1,Jet,10,Jet,Let's go.,Let's go.,James Eagan,Dave Filoni,7.8 +2249,2249,Water,1,Jet,10,Scene Description,"Sokka wakes up. He pulls the door flap aside enough to see some of Jet's followers descending on the rope lines. Sokka grabs a rope line down to a lower branch. On the ground below him, Jet's Freedom Fighters are quietly pushing the loaded wagon as Jet leads them out of the camp. Sokka stealthily follows. In the dark valley. Upstream, and up toward the wall of the valley there is an old falls, and beyond that a man-made dam. A bare cliff off to the reservoir's left provides the view. Jet and his boys emerge from the forest. He goes to the edge and looks down on the dam below. The reservoir behind it is low. He turns back to the wagon.",NA,James Eagan,Dave Filoni,7.8 +2250,2250,Water,1,Jet,10,Jet,"Now listen, you are not to blow the dam until I give the signal. If the reservoir isn't full, the Fire Nation troops could survive. [The Duke jumps off the wagon.]","Now listen, you are not to blow the dam until I give the signal. If the reservoir isn't full, the Fire Nation troops could survive.",James Eagan,Dave Filoni,7.8 +2251,2251,Water,1,Jet,10,The Duke,"But what about the people in the town, won't they get wiped out too? [Jet places a hand on The Duke's shoulder.]","But what about the people in the town, won't they get wiped out too?",James Eagan,Dave Filoni,7.8 +2252,2252,Water,1,Jet,10,Jet,"Look Duke, that's the price of ridding this area of the Fire Nation. [To Longshot.] Now don't blow the dam until I give the signal—got it? [Longshot nods.]","Look Duke, that's the price of ridding this area of the Fire Nation. Now don't blow the dam until I give the signal—got it?",James Eagan,Dave Filoni,7.8 +2253,2253,Water,1,Jet,10,Scene Description,"Sokka watches incredulously from the bushes. He frowns, and hears rustling just before Pipsqueak drags him out by his wolf-tail. Smellerbee's knife is instantly at his throat.",NA,James Eagan,Dave Filoni,7.8 +2254,2254,Water,1,Jet,10,Smellerbee,"[Sneering.] Where do you think you're going, ponytail?","Where do you think you're going, ponytail?",James Eagan,Dave Filoni,7.8 +2255,2255,Water,1,Jet,10,Scene Description,"Jet, standing near the edge of the cliff. As he watches, Pipsqueak and Smellerbee drag Sokka between them. Pipsqueak still has a handful of Sokka's wolf-tail.",NA,James Eagan,Dave Filoni,7.8 +2256,2256,Water,1,Jet,10,Jet,"Sokka, I'm glad you decided to join us. [Pipsqueak and Smellerbee send Sokka to his knees. He rubs his shoulder.]","Sokka, I'm glad you decided to join us.",James Eagan,Dave Filoni,7.8 +2257,2257,Water,1,Jet,10,Sokka,I heard your plan to destroy the Earth Kingdom town.,I heard your plan to destroy the Earth Kingdom town.,James Eagan,Dave Filoni,7.8 +2258,2258,Water,1,Jet,10,Jet,Our plan is to rid the valley of the Fire Nation.,Our plan is to rid the valley of the Fire Nation.,James Eagan,Dave Filoni,7.8 +2259,2259,Water,1,Jet,10,Sokka,"There are people living there, Jet; mothers and fathers and children.","There are people living there, Jet; mothers and fathers and children.",James Eagan,Dave Filoni,7.8 +2260,2260,Water,1,Jet,10,Jet,We can't win without making some sacrifices. [Sokka points an accusing finger at Jet.],We can't win without making some sacrifices.,James Eagan,Dave Filoni,7.8 +2261,2261,Water,1,Jet,10,Sokka,You lied to Aang and Katara about the forest fire!,You lied to Aang and Katara about the forest fire!,James Eagan,Dave Filoni,7.8 +2262,2262,Water,1,Jet,10,Jet,Because they don't understand the demands of war. Not like you and I do.,Because they don't understand the demands of war. Not like you and I do.,James Eagan,Dave Filoni,7.8 +2263,2263,Water,1,Jet,10,Sokka,I do understand. I understand that there's nothing you won't do to get what you want.,I do understand. I understand that there's nothing you won't do to get what you want.,James Eagan,Dave Filoni,7.8 +2264,2264,Water,1,Jet,10,Jet,"I was hoping you'd have an open mind, but I can see you've made your choice.","I was hoping you'd have an open mind, but I can see you've made your choice.",James Eagan,Dave Filoni,7.8 +2265,2265,Water,1,Jet,10,Scene Description,"Pipsqueak and Smellerbee grab for Sokka. Before he can even react, Jet has his wrist pinned with the hooks of his shuang gou. Sokka's other hand is forced behind his back.",NA,James Eagan,Dave Filoni,7.8 +2266,2266,Water,1,Jet,10,Jet,"I can't let you warn Katara and Aang. [Jet releases Sokka's hand; it is immediately forced behind his back.] Take him for a walk, a long walk.","I can't let you warn Katara and Aang. Take him for a walk, a long walk.",James Eagan,Dave Filoni,7.8 +2267,2267,Water,1,Jet,10,Sokka,You can't do this!,You can't do this!,James Eagan,Dave Filoni,7.8 +2268,2268,Water,1,Jet,10,Jet,"Cheer up, Sokka. We're gonna win a great victory against the Fire Nation today.","Cheer up, Sokka. We're gonna win a great victory against the Fire Nation today.",James Eagan,Dave Filoni,7.8 +2269,2269,Water,1,Jet,10,Scene Description,"The screen pans to the riverside upriver from the dam. The collected water behind it is much less than the larger cavity of the reservoir. The river leading to down to it is a thread compared to its 'rainy season' gully. Jet, Katara, and Aang are seen walking upriver along its west bank.",NA,James Eagan,Dave Filoni,7.8 +2270,2270,Water,1,Jet,10,Katara,"Jet, I'm sorry about how Sokka's been acting.","Jet, I'm sorry about how Sokka's been acting.",James Eagan,Dave Filoni,7.8 +2271,2271,Water,1,Jet,10,Jet,"No worries, he already apologized.","No worries, he already apologized.",James Eagan,Dave Filoni,7.8 +2272,2272,Water,1,Jet,10,Aang,Really? [Aang and Katara stop and look at one another.] Sokka apologized?,Really? Sokka apologized?,James Eagan,Dave Filoni,7.8 +2273,2273,Water,1,Jet,10,Jet,"Yeah, I was surprised too. I got the sense that maybe you talked to him or something.","Yeah, I was surprised too. I got the sense that maybe you talked to him or something.",James Eagan,Dave Filoni,7.8 +2274,2274,Water,1,Jet,10,Katara,"Yeah, I did.","Yeah, I did.",James Eagan,Dave Filoni,7.8 +2275,2275,Water,1,Jet,10,Jet,"I guess something you said got through to him. Anyhow, he went out on a scouting mission with Pipsqueak and Smellerbee.","I guess something you said got through to him. Anyhow, he went out on a scouting mission with Pipsqueak and Smellerbee.",James Eagan,Dave Filoni,7.8 +2276,2276,Water,1,Jet,10,Katara,I'm glad he cooled off. He's so stubborn sometimes.,I'm glad he cooled off. He's so stubborn sometimes.,James Eagan,Dave Filoni,7.8 +2277,2277,Water,1,Jet,10,Scene Description,"They are now walking in the gully, beside the 'river'. Aang pauses after noticing something strange, and is launched into the air by a blast from the geyser he was standing on.",NA,James Eagan,Dave Filoni,7.8 +2278,2278,Water,1,Jet,10,Jet,"All right, we're here. Underground water's trying to escape through these vents. I need you guys to help it along.","All right, we're here. Underground water's trying to escape through these vents. I need you guys to help it along.",James Eagan,Dave Filoni,7.8 +2279,2279,Water,1,Jet,10,Katara,I've never used bending on water I can't see. I don't know ... [Jet stands behind her and places his hands on her shoulders.],I've never used bending on water I can't see. I don't know ...,James Eagan,Dave Filoni,7.8 +2280,2280,Water,1,Jet,10,Jet,Katara. You can do this.,Katara. You can do this.,James Eagan,Dave Filoni,7.8 +2281,2281,Water,1,Jet,10,Aang,[Airbends himself back on the ground.] What about me?,What about me?,James Eagan,Dave Filoni,7.8 +2282,2282,Water,1,Jet,10,Jet,I know the Avatar can do this.,I know the Avatar can do this.,James Eagan,Dave Filoni,7.8 +2283,2283,Water,1,Jet,10,Scene Description,"Aang and Katara stand on one of the many geysers in the gully. While Jet looks on, they bend the water up. After a few minutes, a stream of water emerges from the hole. They pull it to their height and send it toward the river where it continues to flow like a waterfall. The water quickly joins the river.",NA,James Eagan,Dave Filoni,7.8 +2284,2284,Water,1,Jet,10,Jet,Yes! Good job! This river empties into the reservoir--a few more geysers and it'll be full.,Yes! Good job! This river empties into the reservoir--a few more geysers and it'll be full.,James Eagan,Dave Filoni,7.8 +2285,2285,Water,1,Jet,10,Aang,"Look, there's another steam vent. [Aang and Katara walk off in its direction.]","Look, there's another steam vent.",James Eagan,Dave Filoni,7.8 +2286,2286,Water,1,Jet,10,Jet,"Okay. You two keep it up, I'll go check on things at the reservoir. [He turns and walks away.]","Okay. You two keep it up, I'll go check on things at the reservoir.",James Eagan,Dave Filoni,7.8 +2287,2287,Water,1,Jet,10,Katara,When we're done we'll meet you over there.,When we're done we'll meet you over there.,James Eagan,Dave Filoni,7.8 +2288,2288,Water,1,Jet,10,Jet,Actually ... probably better if you meet me back at the hideout when you're done. [Jet resumes walking away Aang and Katara bend the next geyser into another fountain.],Actually ... probably better if you meet me back at the hideout when you're done.,James Eagan,Dave Filoni,7.8 +2289,2289,Water,1,Jet,10,Aang,"[Later.] I bet that's enough, and I'm not just saying that to be lazy. [Around them, over a dozen geysers flow into the river.]","I bet that's enough, and I'm not just saying that to be lazy.",James Eagan,Dave Filoni,7.8 +2290,2290,Water,1,Jet,10,Katara,Let's catch up with Jet at the reservoir.,Let's catch up with Jet at the reservoir.,James Eagan,Dave Filoni,7.8 +2291,2291,Water,1,Jet,10,Aang,I thought we agreed to meet Jet back at the hideout.,I thought we agreed to meet Jet back at the hideout.,James Eagan,Dave Filoni,7.8 +2292,2292,Water,1,Jet,10,Katara,"Well, we finished early. I'm sure he'll be happy to see us.","Well, we finished early. I'm sure he'll be happy to see us.",James Eagan,Dave Filoni,7.8 +2293,2293,Water,1,Jet,10,Scene Description,"The screen changes to a path in the forest. Pipsqueak and Smellerbee follow Sokka, who has his hands tied behind his back. Smellerbee gives Sokka a shove; Sokka stumbles but remains on his feet.",NA,James Eagan,Dave Filoni,7.8 +2294,2294,Water,1,Jet,10,Smellerbee,"Come on, move along!","Come on, move along!",James Eagan,Dave Filoni,7.8 +2295,2295,Water,1,Jet,10,Sokka,How can you stand by and do nothing while Jet wipes out a whole town?,How can you stand by and do nothing while Jet wipes out a whole town?,James Eagan,Dave Filoni,7.8 +2296,2296,Water,1,Jet,10,Pipsqueak,"Hey listen Sokka, Jet's a great leader. We follow what he says, and things always turn out okay. [Sokka notices a couple of snare leaf-piles nearby identical to the one that enticed Momo, right down to the pile of nuts.]","Hey listen Sokka, Jet's a great leader. We follow what he says, and things always turn out okay.",James Eagan,Dave Filoni,7.8 +2297,2297,Water,1,Jet,10,Sokka,"If that's how Jet leads, then he's got a lot to learn. [Sokka sprints off in the direction of the snares. Smellerbee makes a grab for him, but misses.]","If that's how Jet leads, then he's got a lot to learn.",James Eagan,Dave Filoni,7.8 +2298,2298,Water,1,Jet,10,Smellerbee,"Hey! [They give chase. Sokka leaps over the leaf piles. Pipsqueak and Smellerbee don't, and end up snared and hanging many feet up in the air.]",Hey!,James Eagan,Dave Filoni,7.8 +2299,2299,Water,1,Jet,10,Sokka,"While you two are up there, you might want to practice your knot work. [He holds up his now-worthless bindings, turns, and walks away.]","While you two are up there, you might want to practice your knot work.",James Eagan,Dave Filoni,7.8 +2300,2300,Water,1,Jet,10,Pipsqueak,"Hey Smellerbee, you gonna eat your lychee nuts? [Smellerbee hits him in the head with a lychee nut and it lands in the pile he's holding.] Ooh. [He picks one up and licks his lips.]","Hey Smellerbee, you gonna eat your lychee nuts? Ooh.",James Eagan,Dave Filoni,7.8 +2301,2301,Water,1,Jet,10,Scene Description,"Katara and Aang are standing on the edge of the cliff. At the base of the dam, four of Jet's people are unloading barrels from the wagon and arranging them.",NA,James Eagan,Dave Filoni,7.8 +2302,2302,Water,1,Jet,10,Katara,What are they doing?,What are they doing?,James Eagan,Dave Filoni,7.8 +2303,2303,Water,1,Jet,10,Aang,"Hey, those are the red barrels he got from the Fire Nation.","Hey, those are the red barrels he got from the Fire Nation.",James Eagan,Dave Filoni,7.8 +2304,2304,Water,1,Jet,10,Katara,"Why would they need blasting jelly? [Zooms on Aang, who is horrified.]",Why would they need blasting jelly?,James Eagan,Dave Filoni,7.8 +2305,2305,Water,1,Jet,10,Aang,Because Jet's gonna blow up the dam.,Because Jet's gonna blow up the dam.,James Eagan,Dave Filoni,7.8 +2306,2306,Water,1,Jet,10,Katara,"What? No, that would destroy the town. Jet wouldn't do that. [Aang opens his glider.]","What? No, that would destroy the town. Jet wouldn't do that.",James Eagan,Dave Filoni,7.8 +2307,2307,Water,1,Jet,10,Aang,I've gotta stop him. [He takes off.],I've gotta stop him.,James Eagan,Dave Filoni,7.8 +2308,2308,Water,1,Jet,10,Katara,[Less convinced.] Jet wouldn't do that.,Jet wouldn't do that.,James Eagan,Dave Filoni,7.8 +2309,2309,Water,1,Jet,10,Scene Description,"Before Aang can reach the edge, Jet crosses his path from behind and snatches the glider. Aang is left wobbling precariously on the edge, and uses airbending to get himself back on stable footing.",NA,James Eagan,Dave Filoni,7.8 +2310,2310,Water,1,Jet,10,Jet,Yes I would.,Yes I would.,James Eagan,Dave Filoni,7.8 +2311,2311,Water,1,Jet,10,Katara,"Jet, why?","Jet, why?",James Eagan,Dave Filoni,7.8 +2312,2312,Water,1,Jet,10,Jet,"Katara, you would too if you just stopped to think. Think about what the Fire Nation did to your mother, we can't let them do that to anyone else, ever again.","Katara, you would too if you just stopped to think. Think about what the Fire Nation did to your mother, we can't let them do that to anyone else, ever again.",James Eagan,Dave Filoni,7.8 +2313,2313,Water,1,Jet,10,Katara,This isn't the answer!,This isn't the answer!,James Eagan,Dave Filoni,7.8 +2314,2314,Water,1,Jet,10,Jet,"I want you to understand me Katara. I thought your brother would understand, but—","I want you to understand me Katara. I thought your brother would understand, but—",James Eagan,Dave Filoni,7.8 +2315,2315,Water,1,Jet,10,Katara,Where's Sokka? [Tears fall from her eyes. Jet reaches out and touches her face.],Where's Sokka?,James Eagan,Dave Filoni,7.8 +2316,2316,Water,1,Jet,10,Jet,Katara.,Katara.,James Eagan,Dave Filoni,7.8 +2317,2317,Water,1,Jet,10,Scene Description,"She lowers her head, and with a shout, sends Jet flying with the water from her waterskin. She draws it back into the skin when she's done.",NA,James Eagan,Dave Filoni,7.8 +2318,2318,Water,1,Jet,10,Aang,I need to get to the dam.,I need to get to the dam.,James Eagan,Dave Filoni,7.8 +2319,2319,Water,1,Jet,10,Scene Description,"Aang's closed glider is on the ground. As he reaches for it, one of Jet's hook swords pins it. Jet has the two swords hook to hook; with a yank he pulls Aang's glider to him.",NA,James Eagan,Dave Filoni,7.8 +2320,2320,Water,1,Jet,10,Jet,You're not going anywhere without your glider.,You're not going anywhere without your glider.,James Eagan,Dave Filoni,7.8 +2321,2321,Water,1,Jet,10,Scene Description,Jet swings the swords at Aang. Aang somersaults backward to avoid the extra reach. Aang finishes his retreat in a nearby tree.,NA,James Eagan,Dave Filoni,7.8 +2322,2322,Water,1,Jet,10,Aang,"I'm not gonna fight you, Jet.","I'm not gonna fight you, Jet.",James Eagan,Dave Filoni,7.8 +2323,2323,Water,1,Jet,10,Jet,[Taunting.] You'll have to if you want your glider back.,You'll have to if you want your glider back.,James Eagan,Dave Filoni,7.8 +2324,2324,Water,1,Jet,10,Scene Description,"Aang retreats back into the forest, as Jet hooks the branch and pulls himself up. Katara follows on the ground. Jet attacks; Aang defends himself with balls of air, which Jet ducks. Jet attacks head on, but Aang blocks with his arms and sends his opponent flying into a tree trunk with an air kick. Jet combines his swords again and advances. Aang avoids the flail-like move and sends another air blast. Jet stoops down and lets the air flow over and past him before lunging.",NA,James Eagan,Dave Filoni,7.8 +2325,2325,Water,1,Jet,10,Scene Description,"They continue the chase through the many levels of the forest. Jet catches up to Aang and sends them both freefalling, attacking as they go. They both end up on a branch. Jet continues his attack. Aang avoids it all. Jet charges again, but Aang hits him with a jetstream of air. Jet falls. He recovers, but loses the glider in the process. Before Aang can get to the ground Jet kicks him into a trunk. He lands with a thud next to his glider.",NA,James Eagan,Dave Filoni,7.8 +2326,2326,Water,1,Jet,10,Scene Description,"A small tributary flows past him. Aang is slow to get up. Before Jet can take more than a step however, he his hit by a large water strike. Katara is there; she uses water from the river to throw Jet against the trunk of the tree. Over and over she attacks; Jet is unable to cut the water and its force plasters him against the trunk. She freezes Jet from toe to neck.",NA,James Eagan,Dave Filoni,7.8 +2327,2327,Water,1,Jet,10,Katara,"Why, Jet? I can't believe I trusted you. You lied to me, you're sick and I trusted you! [A birdcall is heard. Katara and Aang are startled, and look to the valley beyond where it's coming from. Jet gives an answering birdcall.] What are you doing?","Why, Jet? I can't believe I trusted you. You lied to me, you're sick and I trusted you! What are you doing?",James Eagan,Dave Filoni,7.8 +2328,2328,Water,1,Jet,10,Jet,You're too late.,You're too late.,James Eagan,Dave Filoni,7.8 +2329,2329,Water,1,Jet,10,Katara,[Horrified.] No!,No!,James Eagan,Dave Filoni,7.8 +2330,2330,Water,1,Jet,10,Scene Description,"Aang opens his glider and runs for the nearby cliff. His glider's wings are damaged to the point that he has no lift, and slams back into the ground near the edge. Katara runs over to help him.",NA,James Eagan,Dave Filoni,7.8 +2331,2331,Water,1,Jet,10,Aang,"[In pain from the fall.] Sokka's still out there, he's our only chance.","Sokka's still out there, he's our only chance.",James Eagan,Dave Filoni,7.8 +2332,2332,Water,1,Jet,10,Katara,"Come on, Sokka. I'm sorry I ever doubted you, please.","Come on, Sokka. I'm sorry I ever doubted you, please.",James Eagan,Dave Filoni,7.8 +2333,2333,Water,1,Jet,10,Scene Description,"Longshot stands on a branch, his bow pulled. He has a flaming arrow on the string. He takes aim and fires. It arcs down to the base of the dam. Katara watches in horror.",NA,James Eagan,Dave Filoni,7.8 +2334,2334,Water,1,Jet,10,Katara,[Whispers.] No ...,No ...,James Eagan,Dave Filoni,7.8 +2335,2335,Water,1,Jet,10,Scene Description,"The center of the dam explodes in a cloud of smoke and fire. Katara and Aang watch a massive wall of water go to the town. Inside the town the streets are empty except for the occasional barrels and the Cabbage Merchant's cabbage cart. The water rushes through the open gate, as a cresting wave dwarfs it. The wall and gate are swallowed as the wave strikes the town. The flotsam carried away includes a smiling doll in a purple dress.",NA,James Eagan,Dave Filoni,7.8 +2336,2336,Water,1,Jet,10,Aang,Sokka didn't make it in time.,Sokka didn't make it in time.,James Eagan,Dave Filoni,7.8 +2337,2337,Water,1,Jet,10,Katara,"All those people ... [She turns in rage back to Jet.] Jet, you monster!","All those people ... Jet, you monster!",James Eagan,Dave Filoni,7.8 +2338,2338,Water,1,Jet,10,Jet,"This was a victory, Katara. Remember that. The Fire Nation is gone and this valley will be safe.","This was a victory, Katara. Remember that. The Fire Nation is gone and this valley will be safe.",James Eagan,Dave Filoni,7.8 +2339,2339,Water,1,Jet,10,Sokka,"It will be safe, without you. [In shock, Jet looks up to see Sokka, Appa, and Momo rise from below the level of the cliff.]","It will be safe, without you.",James Eagan,Dave Filoni,7.8 +2340,2340,Water,1,Jet,10,Katara,Sokka!,Sokka!,James Eagan,Dave Filoni,7.8 +2341,2341,Water,1,Jet,10,Sokka,"I warned the villagers of your plan, just in time.","I warned the villagers of your plan, just in time.",James Eagan,Dave Filoni,7.8 +2342,2342,Water,1,Jet,10,Jet,What?!,What?!,James Eagan,Dave Filoni,7.8 +2343,2343,Water,1,Jet,10,Sokka,"[Cuts to an illustrated set of flashback stills each being panned through.] At first they didn't believe me. The Fire Nation soldiers assumed I was a spy. But one man vouched for me, the old man you attacked. He urged them to trust me, and we got everyone out in time. [The flashback ends and the townsfolk are seen on high ground above the river, on the bank opposite the town. A little girl, who was seen in the flashback, runs down to the water's edge as the doll floats by. She retrieves it.]","At first they didn't believe me. The Fire Nation soldiers assumed I was a spy. But one man vouched for me, the old man you attacked. He urged them to trust me, and we got everyone out in time.",James Eagan,Dave Filoni,7.8 +2344,2344,Water,1,Jet,10,Little girl,[Happily.] Misses Pretty! [She hugs her doll.],Misses Pretty!,James Eagan,Dave Filoni,7.8 +2345,2345,Water,1,Jet,10,Jet,"Sokka, you fool! We could've freed this valley!","Sokka, you fool! We could've freed this valley!",James Eagan,Dave Filoni,7.8 +2346,2346,Water,1,Jet,10,Sokka,Who would be free? Everyone would be dead.,Who would be free? Everyone would be dead.,James Eagan,Dave Filoni,7.8 +2347,2347,Water,1,Jet,10,Jet,You traitor!,You traitor!,James Eagan,Dave Filoni,7.8 +2348,2348,Water,1,Jet,10,Sokka,"No, Jet. You became the traitor when you stopped protecting innocent people.","No, Jet. You became the traitor when you stopped protecting innocent people.",James Eagan,Dave Filoni,7.8 +2349,2349,Water,1,Jet,10,Jet,"Katara. Please, help me.","Katara. Please, help me.",James Eagan,Dave Filoni,7.8 +2350,2350,Water,1,Jet,10,Katara,Goodbye Jet. [Sokka gives Appa's reigns a flick.],Goodbye Jet.,James Eagan,Dave Filoni,7.8 +2351,2351,Water,1,Jet,10,Sokka,"Yip yip. [Jet is left behind, still frozen to the tree.]",Yip yip.,James Eagan,Dave Filoni,7.8 +2352,2352,Water,1,Jet,10,Scene Description,"The sky they fly in is empty, save a few wispy clouds.",NA,James Eagan,Dave Filoni,7.8 +2353,2353,Water,1,Jet,10,Aang,We thought you were going to the dam. How come you went to the town instead?,We thought you were going to the dam. How come you went to the town instead?,James Eagan,Dave Filoni,7.8 +2354,2354,Water,1,Jet,10,Katara,"Let me guess, your instincts told you.","Let me guess, your instincts told you.",James Eagan,Dave Filoni,7.8 +2355,2355,Water,1,Jet,10,Sokka,"[Shrugs his right shoulder.] Hey, sometimes they're right.","Hey, sometimes they're right.",James Eagan,Dave Filoni,7.8 +2356,2356,Water,1,Jet,10,Aang:,"Um ... Sokka? You know we're going the wrong way, right? [Sokka is surprised, but quickly recovers.]","Um ... Sokka? You know we're going the wrong way, right?",James Eagan,Dave Filoni,7.8 +2357,2357,Water,1,Jet,10,Sokka,"And sometimes they're wrong. [With a grin, he pulls Appa's reigns. They fly off screen before reappearing, going in the opposite direction.]",And sometimes they're wrong.,James Eagan,Dave Filoni,7.8 +2358,2358,Water,1,Jet,10,Scene Description,Fades to credits.,NA,James Eagan,Dave Filoni,7.8 +2359,2359,Water,1,The Great Divide,11,Scene Description,"Opening shot of the sun setting behind some tall rock outcroppings. The sky is mostly cloudy and the clouds reflect the light of the dying sun. Pan down to show a patched up tent being jostled about from the inside. A rolled up tarp lies next to the tent. Sokka is inside a tent, trying to assemble it. Sokka can be heard grunting and fussing about as he tries to finish setting up the shelter. Katara walks in the frame, her back to the camera, with a pile of fire wood in her arms.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2360,2360,Water,1,The Great Divide,11,Katara,"Um, aren't you forgetting the tarp?","Um, aren't you forgetting the tarp?",John O'Bryan,Giancarlo Volpe,7.1 +2361,2361,Water,1,The Great Divide,11,Sokka,"Right, got it ... [Tosses the wrapped up tarp inside the tent.]","Right, got it ...",John O'Bryan,Giancarlo Volpe,7.1 +2362,2362,Water,1,The Great Divide,11,Katara,"Sokka, you're supposed to put the tarp on top of the tent. You know, so we don't get rained on? [Cut to an overhead shot of the two, Sokka gesturing widely as he replies to his sister.]","Sokka, you're supposed to put the tarp on top of the tent. You know, so we don't get rained on?",John O'Bryan,Giancarlo Volpe,7.1 +2363,2363,Water,1,The Great Divide,11,Sokka,"Ordinarily, you'd be right, but seeing how it's the dry season, you're not. Besides that tarp makes a pretty warm blanket.","Ordinarily, you'd be right, but seeing how it's the dry season, you're not. Besides that tarp makes a pretty warm blanket.",John O'Bryan,Giancarlo Volpe,7.1 +2364,2364,Water,1,The Great Divide,11,Katara,But what if it does rain?,But what if it does rain?,John O'Bryan,Giancarlo Volpe,7.1 +2365,2365,Water,1,The Great Divide,11,Sokka,[Spreading his arms wide in exasperation.] What if it doesn't? Then I would have put up the tarp for nothing.,What if it doesn't? Then I would have put up the tarp for nothing.,John O'Bryan,Giancarlo Volpe,7.1 +2366,2366,Water,1,The Great Divide,11,Katara,You're infuriating!,You're infuriating!,John O'Bryan,Giancarlo Volpe,7.1 +2367,2367,Water,1,The Great Divide,11,Sokka,"Katara, why don't you worry about gathering firewood, because that kindling is looking pretty sorry.","Katara, why don't you worry about gathering firewood, because that kindling is looking pretty sorry.",John O'Bryan,Giancarlo Volpe,7.1 +2368,2368,Water,1,The Great Divide,11,Katara,"[Angrily.] Well, if you don't like my firewood- [Throws the sticks at Sokka who shields himself from the wood. He stands in anger after the hail of sticks subsides.]","Well, if you don't like my firewood-",John O'Bryan,Giancarlo Volpe,7.1 +2369,2369,Water,1,The Great Divide,11,Sokka,"[Angrily.] Fine by me, if you're not gonna do your job- [He tears the tent down and the two stare at each other angrily as Aang approaches.]","Fine by me, if you're not gonna do your job-",John O'Bryan,Giancarlo Volpe,7.1 +2370,2370,Water,1,The Great Divide,11,Aang,"Okay, I got the grub if you guys got the- [The siblings turn away from each other in anger with their arms folded.] hey, where's the campfire? And what happened to the tent?","Okay, I got the grub if you guys got the- hey, where's the campfire? And what happened to the tent?",John O'Bryan,Giancarlo Volpe,7.1 +2371,2371,Water,1,The Great Divide,11,Sokka,"Why don't you ask Miss Know-It-All, Queen of the Twigs.","Why don't you ask Miss Know-It-All, Queen of the Twigs.",John O'Bryan,Giancarlo Volpe,7.1 +2372,2372,Water,1,The Great Divide,11,Katara,"Oh yeah? Well, you're Mister Lazy Bum, King of the [Picks up and throws a twig at Sokka's head.] Tents! [Sokka turns around, looking angrily at her.]","Oh yeah? Well, you're Mister Lazy Bum, King of the Tents!",John O'Bryan,Giancarlo Volpe,7.1 +2373,2373,Water,1,The Great Divide,11,Aang,"[Laughs.] Okay, listen guys, harsh words won't solve problems, action will. Why don't you just switch jobs?","Okay, listen guys, harsh words won't solve problems, action will. Why don't you just switch jobs?",John O'Bryan,Giancarlo Volpe,7.1 +2374,2374,Water,1,The Great Divide,11,Katara,Sounds good.,Sounds good.,John O'Bryan,Giancarlo Volpe,7.1 +2375,2375,Water,1,The Great Divide,11,Sokka,[At the same time.] Whatever.,Whatever.,John O'Bryan,Giancarlo Volpe,7.1 +2376,2376,Water,1,The Great Divide,11,Aang,"[Grinning while gloating.] You see that? Settling feuds and making peace, all in a day's work for the Avatar. [Turns his head to see Momo and Appa fighting over a watermelon. Momo continuously tries to fly away with it, while Appa pins it down. Aang takes the melon and uses airbending to slice it. Momo seems to be complaining about how he got the much smaller half and Appa got the bigger half.] Come on, Momo, that's fair. Appa's got five stomachs. [Appa eats his half of the melon.]","You see that? Settling feuds and making peace, all in a day's work for the Avatar. Come on, Momo, that's fair. Appa's got five stomachs.",John O'Bryan,Giancarlo Volpe,7.1 +2377,2377,Water,1,The Great Divide,11,Scene Description,The scene fades to show the group standing on the edge of a huge canyon.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2378,2378,Water,1,The Great Divide,11,Aang,"There it is, guys, The Great Divide.","There it is, guys, The Great Divide.",John O'Bryan,Giancarlo Volpe,7.1 +2379,2379,Water,1,The Great Divide,11,Katara,"[In awe.] Wow, I could just stare at it forever. [Zoom backward to show Sokka in the foreground.]","Wow, I could just stare at it forever.",John O'Bryan,Giancarlo Volpe,7.1 +2380,2380,Water,1,The Great Divide,11,Sokka,"Okay, I've seen enough.","Okay, I've seen enough.",John O'Bryan,Giancarlo Volpe,7.1 +2381,2381,Water,1,The Great Divide,11,Katara,How can you not be fascinated Sokka? This is the largest canyon in the entire world.,How can you not be fascinated Sokka? This is the largest canyon in the entire world.,John O'Bryan,Giancarlo Volpe,7.1 +2382,2382,Water,1,The Great Divide,11,Sokka,Then I'm sure we'll be able to see it very clearly from the air while we fly away.,Then I'm sure we'll be able to see it very clearly from the air while we fly away.,John O'Bryan,Giancarlo Volpe,7.1 +2383,2383,Water,1,The Great Divide,11,Gan Jin tribesman,"[Shoving past Sokka.] If you're looking for the canyon guide, I was here first!","If you're looking for the canyon guide, I was here first!",John O'Bryan,Giancarlo Volpe,7.1 +2384,2384,Water,1,The Great Divide,11,Katara,"Ooh, canyon guide? Sounds informative.","Ooh, canyon guide? Sounds informative.",John O'Bryan,Giancarlo Volpe,7.1 +2385,2385,Water,1,The Great Divide,11,Gan Jin tribesman,"Believe me, he's more than a tour guide, he's an earthbender, [Oblivious to the fact that Sokka is behind him, mocking him.] and the only way in and out of the canyon is with his help, and he's taking my tribe across next.","Believe me, he's more than a tour guide, he's an earthbender, and the only way in and out of the canyon is with his help, and he's taking my tribe across next.",John O'Bryan,Giancarlo Volpe,7.1 +2386,2386,Water,1,The Great Divide,11,Sokka,"Calm down, we know you're next.","Calm down, we know you're next.",John O'Bryan,Giancarlo Volpe,7.1 +2387,2387,Water,1,The Great Divide,11,Gan Jin tribesman,You wouldn't be so calm if the Fire Nation destroyed your home and forced you to flee! My whole tribe has to walk thousands of miles to the capital city of Ba Sing Se.,You wouldn't be so calm if the Fire Nation destroyed your home and forced you to flee! My whole tribe has to walk thousands of miles to the capital city of Ba Sing Se.,John O'Bryan,Giancarlo Volpe,7.1 +2388,2388,Water,1,The Great Divide,11,Katara,You're a refugee!,You're a refugee!,John O'Bryan,Giancarlo Volpe,7.1 +2389,2389,Water,1,The Great Divide,11,Gan Jin tribesman,"Huh, tell me something I don't know.","Huh, tell me something I don't know.",John O'Bryan,Giancarlo Volpe,7.1 +2390,2390,Water,1,The Great Divide,11,Scene Description,A large group of poorly dressed people is shown walking toward them.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2391,2391,Water,1,The Great Divide,11,Katara,Is that your tribe?,Is that your tribe?,John O'Bryan,Giancarlo Volpe,7.1 +2392,2392,Water,1,The Great Divide,11,Gan Jin tribesman,"It most certainly is not! That's the Zhang tribe, a bunch of low-life thieves. They've been the enemies of my tribe for a hundred years. [Whistles to them.] Hey, Zhangs! I'm saving a spot for my tribe so don't even think about stealing it!","It most certainly is not! That's the Zhang tribe, a bunch of low-life thieves. They've been the enemies of my tribe for a hundred years. Hey, Zhangs! I'm saving a spot for my tribe so don't even think about stealing it!",John O'Bryan,Giancarlo Volpe,7.1 +2393,2393,Water,1,The Great Divide,11,Zhang leader,Where are the rest of the Gan Jin? Still tidying up their camp site?,Where are the rest of the Gan Jin? Still tidying up their camp site?,John O'Bryan,Giancarlo Volpe,7.1 +2394,2394,Water,1,The Great Divide,11,Gan Jin tribesman,"Yes, but they sent me ahead of them to hold a spot.","Yes, but they sent me ahead of them to hold a spot.",John O'Bryan,Giancarlo Volpe,7.1 +2395,2395,Water,1,The Great Divide,11,Zhang leader,I didn't know the canyon guide took reservations.,I didn't know the canyon guide took reservations.,John O'Bryan,Giancarlo Volpe,7.1 +2396,2396,Water,1,The Great Divide,11,Gan Jin tribesman,"Ha, of course you didn't! That's the ignorance I'd expect from a messy Zhang. So unorganized and ill-prepared for a journey. [The Zhang tribe members yell out in protest behind them. Katara and Aang look at each other worriedly, but turn around to see a large pile of rocks being levitated up and thrown away. The canyon guide stands behind where the rocks used to be.]","Ha, of course you didn't! That's the ignorance I'd expect from a messy Zhang. So unorganized and ill-prepared for a journey.",John O'Bryan,Giancarlo Volpe,7.1 +2397,2397,Water,1,The Great Divide,11,Canyon guide,"Sorry about the wait, youngsters. Who's ready to cross this here canyon?","Sorry about the wait, youngsters. Who's ready to cross this here canyon?",John O'Bryan,Giancarlo Volpe,7.1 +2398,2398,Water,1,The Great Divide,11,Katara,"Uh, one of them, I think. [Camera pans left to reveal the Zhang and the scout.]","Uh, one of them, I think.",John O'Bryan,Giancarlo Volpe,7.1 +2399,2399,Water,1,The Great Divide,11,Gan Jin tribesman,"[Rushing forward.] I was here first, my party's on their way.","I was here first, my party's on their way.",John O'Bryan,Giancarlo Volpe,7.1 +2400,2400,Water,1,The Great Divide,11,Canyon guide,I can't guide people who aren't here. [Cut to a wider shot showing the Zhang filing past the three kids and the fuming Gan Jin scout.],I can't guide people who aren't here.,John O'Bryan,Giancarlo Volpe,7.1 +2401,2401,Water,1,The Great Divide,11,Zhang leader,[Mockingly.] Guess you guys will have to make the trip tomorrow.,Guess you guys will have to make the trip tomorrow.,John O'Bryan,Giancarlo Volpe,7.1 +2402,2402,Water,1,The Great Divide,11,Scene Description,"The shot shifts to a close-up the scout, whose eyes twitch in anger. The camera zooms backward and pans left to reveal another tribe entering the canyon entrance area. The scout points to them in triumph.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2403,2403,Water,1,The Great Divide,11,Gan Jin tribesman,"Wait, here they come! [A group of clean, finely dressed people are shown coming toward them.]","Wait, here they come!",John O'Bryan,Giancarlo Volpe,7.1 +2404,2404,Water,1,The Great Divide,11,Zhang leader,[To the canyon guide.] You're not seriously gonna cave into these spoiled Gan Jins? I mean we're refugees too! And we've got sick people that need shelter.,You're not seriously gonna cave into these spoiled Gan Jins? I mean we're refugees too! And we've got sick people that need shelter.,John O'Bryan,Giancarlo Volpe,7.1 +2405,2405,Water,1,The Great Divide,11,Canyon guide,I ... uh ... well ...,I ... uh ... well ...,John O'Bryan,Giancarlo Volpe,7.1 +2406,2406,Water,1,The Great Divide,11,Gan Jin tribesman,We've got old people who are weary from traveling.,We've got old people who are weary from traveling.,John O'Bryan,Giancarlo Volpe,7.1 +2407,2407,Water,1,The Great Divide,11,Zhang leader,Sick people get priority over old people.,Sick people get priority over old people.,John O'Bryan,Giancarlo Volpe,7.1 +2408,2408,Water,1,The Great Divide,11,Gan Jin leader,Maybe you Zhangs wouldn't have so many sick people if you weren't such slobs.,Maybe you Zhangs wouldn't have so many sick people if you weren't such slobs.,John O'Bryan,Giancarlo Volpe,7.1 +2409,2409,Water,1,The Great Divide,11,Zhang leader,"If you Gan Jins weren't so clean, you wouldn't live to be so old.","If you Gan Jins weren't so clean, you wouldn't live to be so old.",John O'Bryan,Giancarlo Volpe,7.1 +2410,2410,Water,1,The Great Divide,11,Katara,"[Over the two arguing tribes.] Well Aang, ready to put your peace-making skills to the test?","Well Aang, ready to put your peace-making skills to the test?",John O'Bryan,Giancarlo Volpe,7.1 +2411,2411,Water,1,The Great Divide,11,Aang,"I don't know, a fight over chores is one thing, but these people have been feuding for a hundred years.","I don't know, a fight over chores is one thing, but these people have been feuding for a hundred years.",John O'Bryan,Giancarlo Volpe,7.1 +2412,2412,Water,1,The Great Divide,11,Katara,"[Stepping forward.] Everybody listen up! This is the Avatar, and if you give him a chance, I'm sure he can come up with a compromise that will make everyone happy.","Everybody listen up! This is the Avatar, and if you give him a chance, I'm sure he can come up with a compromise that will make everyone happy.",John O'Bryan,Giancarlo Volpe,7.1 +2413,2413,Water,1,The Great Divide,11,Aang,"Uh, you could share the earthbender and travel together?","Uh, you could share the earthbender and travel together?",John O'Bryan,Giancarlo Volpe,7.1 +2414,2414,Water,1,The Great Divide,11,Gan Jin leader,Absolutely not! We'd rather be taken by the Fire Nation than travel with those stinking thieves!,Absolutely not! We'd rather be taken by the Fire Nation than travel with those stinking thieves!,John O'Bryan,Giancarlo Volpe,7.1 +2415,2415,Water,1,The Great Divide,11,Zhang leader,We wouldn't travel with those pompous fools anyway! [The two tribes begin to shout at each other again.],We wouldn't travel with those pompous fools anyway!,John O'Bryan,Giancarlo Volpe,7.1 +2416,2416,Water,1,The Great Divide,11,Aang,"[Shouting.] All right here's the deal, you're all going down together and Appa here will fly your sick and elderly across! Does that seem fair? [Both leaders nod in agreement, and the scene fades to show the sick and elderly boarding Appa.]","All right here's the deal, you're all going down together and Appa here will fly your sick and elderly across! Does that seem fair?",John O'Bryan,Giancarlo Volpe,7.1 +2417,2417,Water,1,The Great Divide,11,Aang,"[To Appa.] Sorry, Appa, you'll have to do this on your own.","Sorry, Appa, you'll have to do this on your own.",John O'Bryan,Giancarlo Volpe,7.1 +2418,2418,Water,1,The Great Divide,11,Sokka,"Aang, this feuding tribe stuff is serious business. Are you sure it's a good idea getting involved in this?","Aang, this feuding tribe stuff is serious business. Are you sure it's a good idea getting involved in this?",John O'Bryan,Giancarlo Volpe,7.1 +2419,2419,Water,1,The Great Divide,11,Aang,"[Grinning broadly.] To tell you the truth, I'm not sure. But when have I ever been?","To tell you the truth, I'm not sure. But when have I ever been?",John O'Bryan,Giancarlo Volpe,7.1 +2420,2420,Water,1,The Great Divide,11,Katara,"He's the Avatar, Sokka, making peace between people is his job.","He's the Avatar, Sokka, making peace between people is his job.",John O'Bryan,Giancarlo Volpe,7.1 +2421,2421,Water,1,The Great Divide,11,Sokka,[Dismayed.] His job's gonna make us cross this whole canyon on foot isn't it? [Cut to an overhead wide shot of the two tribes and the others.],His job's gonna make us cross this whole canyon on foot isn't it?,John O'Bryan,Giancarlo Volpe,7.1 +2422,2422,Water,1,The Great Divide,11,Canyon guide,"Okay, now comes the bad news. [Cut to a frontal shot of the guide.] No food allowed in the canyon, it attracts [He makes motions with his hands to illustrate the skittery monsters that might lurk in the canyon.] dangerous predators. [Both tribes yell out in protest.]","Okay, now comes the bad news. No food allowed in the canyon, it attracts dangerous predators.",John O'Bryan,Giancarlo Volpe,7.1 +2423,2423,Water,1,The Great Divide,11,Gan Jin Leader,No food?! This is ridiculous.,No food?! This is ridiculous.,John O'Bryan,Giancarlo Volpe,7.1 +2424,2424,Water,1,The Great Divide,11,Canyon guide,"Oh, you babies can go a day without food? Would you rather be hungry, or dead? [He raises an earth pillar to tower over the rest. He continues, cupping his hands to his mouth to amplify his voice.] Now, we're heading down in ten minutes. All food better be in your gut or in the garbage!","Oh, you babies can go a day without food? Would you rather be hungry, or dead? Now, we're heading down in ten minutes. All food better be in your gut or in the garbage!",John O'Bryan,Giancarlo Volpe,7.1 +2425,2425,Water,1,The Great Divide,11,Scene Description,"The Zhang tribe quickly whips out and shoves food into their mouths, which stands in stark contrast to the Gan Jin tribe, who eat slowly with chopsticks.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2426,2426,Water,1,The Great Divide,11,Aang,"[To the people on Appa.] Appa's going to take good care of you 'till we get there. [To Appa.] See you on the other side, buddy! Yip yip! [Appa roars and takes off. The camera fades to show both groups of people climbing down into the canyon. The tour guide earthbends to form a bridge in a gap in the path.]","Appa's going to take good care of you 'till we get there. See you on the other side, buddy! Yip yip!",John O'Bryan,Giancarlo Volpe,7.1 +2427,2427,Water,1,The Great Divide,11,Aang,Nice bending!,Nice bending!,John O'Bryan,Giancarlo Volpe,7.1 +2428,2428,Water,1,The Great Divide,11,Canyon guide,"The job's much more than bending, kid. Folks want information. [Turns to the travelers.] Many of you are probably wondering how canyons are formed. Experts tell us this canyon was most likely carved into the ground by earth spirits who were angry at local farmers for not offering them a proper sacrifice.","The job's much more than bending, kid. Folks want information. Many of you are probably wondering how canyons are formed. Experts tell us this canyon was most likely carved into the ground by earth spirits who were angry at local farmers for not offering them a proper sacrifice.",John O'Bryan,Giancarlo Volpe,7.1 +2429,2429,Water,1,The Great Divide,11,Scene Description,"Katara and Sokka look up in fear as an avalanche of rocks comes falling toward them, and the canyon guide earthbends it away from them.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2430,2430,Water,1,The Great Divide,11,Canyon guide,"He he he, guess the spirits are still angry! Hope you all brought sacrifices.","He he he, guess the spirits are still angry! Hope you all brought sacrifices.",John O'Bryan,Giancarlo Volpe,7.1 +2431,2431,Water,1,The Great Divide,11,Scene Description,"Cut to a wide shot of the canyon floor and the canyon wall on the right side of the screen. The view pans slowly rightward before cutting to a closer, overhead shot of the group now at the bottom of the switchback trail. They have just entered the canyon floor. The guide stands in front of the two tribes and the kids. Katara, Aang, and Sokka look at each other in exasperation and the scene fades to show them standing at the bottom of the canyon next to a huge boulder.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2432,2432,Water,1,The Great Divide,11,Canyon guide,"Okay, everyone stand clear of the wall. [He throws the boulder and destroys the bridge he had made earlier.]","Okay, everyone stand clear of the wall.",John O'Bryan,Giancarlo Volpe,7.1 +2433,2433,Water,1,The Great Divide,11,Aang,Why'd you do that?,Why'd you do that?,John O'Bryan,Giancarlo Volpe,7.1 +2434,2434,Water,1,The Great Divide,11,Canyon guide,"These people are fleeing the Fire Nation, aren't they? Gotta make sure we can't be followed. We'll be safe now. [Yells out, as he is picked up by a huge animal. Aang blows away the dust to reveal a canyon crawler.]","These people are fleeing the Fire Nation, aren't they? Gotta make sure we can't be followed. We'll be safe now.",John O'Bryan,Giancarlo Volpe,7.1 +2435,2435,Water,1,The Great Divide,11,Sokka,"We gotta help him! [He throws his boomerang at the crawler, which drops the canyon guide and comes after Sokka instead.] Okay, now we gotta help me! [Katara comes to his aid and does a water whip on the crawler, but she is quickly thrown aside. Aang jumps down and sends a multiple blasts of air at the crawler and drives it away.]","We gotta help him! Okay, now we gotta help me!",John O'Bryan,Giancarlo Volpe,7.1 +2436,2436,Water,1,The Great Divide,11,Aang,[To the canyon guide.] What was that?,What was that?,John O'Bryan,Giancarlo Volpe,7.1 +2437,2437,Water,1,The Great Divide,11,Canyon guide,[On the ground.] Canyon crawler. [Groans in pain.] And there's sure to be more!,Canyon crawler. And there's sure to be more!,John O'Bryan,Giancarlo Volpe,7.1 +2438,2438,Water,1,The Great Divide,11,Katara,"Your arms, they're broken!","Your arms, they're broken!",John O'Bryan,Giancarlo Volpe,7.1 +2439,2439,Water,1,The Great Divide,11,Canyon guide,"Without my arms, I got no bending. In other words-","Without my arms, I got no bending. In other words-",John O'Bryan,Giancarlo Volpe,7.1 +2440,2440,Water,1,The Great Divide,11,Aang,We're trapped in this canyon.,We're trapped in this canyon.,John O'Bryan,Giancarlo Volpe,7.1 +2441,2441,Water,1,The Great Divide,11,Scene Description,The camera fades to show them grouped together.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2442,2442,Water,1,The Great Divide,11,Sokka,I thought the whole point of ditching our food was so we wouldn't have to deal with things like canyon crawlers.,I thought the whole point of ditching our food was so we wouldn't have to deal with things like canyon crawlers.,John O'Bryan,Giancarlo Volpe,7.1 +2443,2443,Water,1,The Great Divide,11,Gan Jin leader,It's the Zhangs! They took food down here even after the canyon guide told them not to.,It's the Zhangs! They took food down here even after the canyon guide told them not to.,John O'Bryan,Giancarlo Volpe,7.1 +2444,2444,Water,1,The Great Divide,11,Zhang leader,"What? If there's anyone who can't go without food for a day, it's you pampered Gan Jins!","What? If there's anyone who can't go without food for a day, it's you pampered Gan Jins!",John O'Bryan,Giancarlo Volpe,7.1 +2445,2445,Water,1,The Great Divide,11,Gan Jin leader,I hope you're happy. We're stuck in this canyon with no way out.,I hope you're happy. We're stuck in this canyon with no way out.,John O'Bryan,Giancarlo Volpe,7.1 +2446,2446,Water,1,The Great Divide,11,Zhang leader,"Why don't you thank yourself, food hider?","Why don't you thank yourself, food hider?",John O'Bryan,Giancarlo Volpe,7.1 +2447,2447,Water,1,The Great Divide,11,Aang,"Look, sticking together is the only way to-","Look, sticking together is the only way to-",John O'Bryan,Giancarlo Volpe,7.1 +2448,2448,Water,1,The Great Divide,11,Zhang leader,I'm not walking another step with the likes of them!,I'm not walking another step with the likes of them!,John O'Bryan,Giancarlo Volpe,7.1 +2449,2449,Water,1,The Great Divide,11,Gan Jin leader,Now there's something we can agree on.,Now there's something we can agree on.,John O'Bryan,Giancarlo Volpe,7.1 +2450,2450,Water,1,The Great Divide,11,Aang,[To the canyon guide.] Any ideas?,Any ideas?,John O'Bryan,Giancarlo Volpe,7.1 +2451,2451,Water,1,The Great Divide,11,Canyon guide,No bendng ... we need to get out of this canyon ... I won't die down here! I won't become part of the food chain!,No bendng ... we need to get out of this canyon ... I won't die down here! I won't become part of the food chain!,John O'Bryan,Giancarlo Volpe,7.1 +2452,2452,Water,1,The Great Divide,11,Gan Jin leader,See! We're going to become part of the food chain because of you! [Points to Zhangs.],See! We're going to become part of the food chain because of you!,John O'Bryan,Giancarlo Volpe,7.1 +2453,2453,Water,1,The Great Divide,11,Zhang leader,"Sure, unjustly blame the Zhangs like you always do!","Sure, unjustly blame the Zhangs like you always do!",John O'Bryan,Giancarlo Volpe,7.1 +2454,2454,Water,1,The Great Divide,11,Gan Jin leader,Gladly.,Gladly.,John O'Bryan,Giancarlo Volpe,7.1 +2455,2455,Water,1,The Great Divide,11,Aang,"[Angrily.] Enough! I thought I could help you guys get along, but I guess that's not gonna happen. [Jumps onto a tall rock.] We should split up, Gan Jins on this side and Zhangs on that side. We'll travel in two separate lines. [The two leaders nod at each other and start walking. Aang jumps down to Sokka and Katara.] Sokka, you go with the Zhangs and Katara, you go with the Gan Jins. See if you can find out why they hate each other so much.","Enough! I thought I could help you guys get along, but I guess that's not gonna happen. We should split up, Gan Jins on this side and Zhangs on that side. We'll travel in two separate lines. Sokka, you go with the Zhangs and Katara, you go with the Gan Jins. See if you can find out why they hate each other so much.",John O'Bryan,Giancarlo Volpe,7.1 +2456,2456,Water,1,The Great Divide,11,Scene Description,They split up and the camera pans to show them walking separately. The scene changes to show Sokka in the Zhang camp.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2457,2457,Water,1,The Great Divide,11,Sokka,"So, you guys aren't going to put up your tarps?","So, you guys aren't going to put up your tarps?",John O'Bryan,Giancarlo Volpe,7.1 +2458,2458,Water,1,The Great Divide,11,Zhang leader,What for? Its the dry season.,What for? Its the dry season.,John O'Bryan,Giancarlo Volpe,7.1 +2459,2459,Water,1,The Great Divide,11,Sokka,Exactly!,Exactly!,John O'Bryan,Giancarlo Volpe,7.1 +2460,2460,Water,1,The Great Divide,11,Zhang leader,"Besides, we like to use the tarp as a blanket.","Besides, we like to use the tarp as a blanket.",John O'Bryan,Giancarlo Volpe,7.1 +2461,2461,Water,1,The Great Divide,11,Sokka,"[Smiling.] Finally, someone gets it!","Finally, someone gets it!",John O'Bryan,Giancarlo Volpe,7.1 +2462,2462,Water,1,The Great Divide,11,Scene Description,"Katara is shown at the Gan Jin camp, where they are putting up tarps over their tents.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2463,2463,Water,1,The Great Divide,11,Katara,You really think it'll rain?,You really think it'll rain?,John O'Bryan,Giancarlo Volpe,7.1 +2464,2464,Water,1,The Great Divide,11,Gan Jin leader,"No, but you can never be too careful, right?","No, but you can never be too careful, right?",John O'Bryan,Giancarlo Volpe,7.1 +2465,2465,Water,1,The Great Divide,11,Scene Description,"Katara smiles and the camera fades to nightfall, where they are sitting around their campfire. The Gan Jin leader looks around and pulls a piece of bread out of his sleeve. Katara looks stunned to see all the other tribe members doing the same.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2466,2466,Water,1,The Great Divide,11,Gan Jin leader,"Would you care for some bread, Katara?","Would you care for some bread, Katara?",John O'Bryan,Giancarlo Volpe,7.1 +2467,2467,Water,1,The Great Divide,11,Katara,So it was you guys who had food!,So it was you guys who had food!,John O'Bryan,Giancarlo Volpe,7.1 +2468,2468,Water,1,The Great Divide,11,Gan Jin leader,"Oh come now, you really think that tribe of thieves isn't smuggling food? Why should my people go hungry when the sneaky Zhangs are stuffing their faces?","Oh come now, you really think that tribe of thieves isn't smuggling food? Why should my people go hungry when the sneaky Zhangs are stuffing their faces?",John O'Bryan,Giancarlo Volpe,7.1 +2469,2469,Water,1,The Great Divide,11,Katara,"[Hesitates.] Well, I guess it's okay if everyone's doing it. [Takes the bread and eats it.] So, why does your tribe hate the Zhangs so much?","Well, I guess it's okay if everyone's doing it. So, why does your tribe hate the Zhangs so much?",John O'Bryan,Giancarlo Volpe,7.1 +2470,2470,Water,1,The Great Divide,11,Gan Jin leader,"You seem like a smart girl Katara, I bet you would enjoy hearing some history. [Fades to show a large gate with a finely dressed man running toward it. Voice-over.] The patriarch of our tribe, Jin Wei, was an earthbender warrior who was assigned an important duty, transporting our sacred orb from the great eastern gate, to the great western gate. Taking the orb from the east to the west represents the sun's rising and setting. It was our tribe's ancient redemption ritual. But as he approached the gate, Jin Wei was attacked by one of the Zhang, a vermin named Wei Jin, who looked at the orb with envy. That coward Wei Jin knocked Jin Wei to the ground, and stole our sacred orb. [Camera goes back to the Gan Jin leader's face.] Our people have never forgotten. You can never trust a Zhang.","You seem like a smart girl Katara, I bet you would enjoy hearing some history. The patriarch of our tribe, Jin Wei, was an earthbender warrior who was assigned an important duty, transporting our sacred orb from the great eastern gate, to the great western gate. Taking the orb from the east to the west represents the sun's rising and setting. It was our tribe's ancient redemption ritual. But as he approached the gate, Jin Wei was attacked by one of the Zhang, a vermin named Wei Jin, who looked at the orb with envy. That coward Wei Jin knocked Jin Wei to the ground, and stole our sacred orb. Our people have never forgotten. You can never trust a Zhang.",John O'Bryan,Giancarlo Volpe,7.1 +2471,2471,Water,1,The Great Divide,11,Scene Description,Katara glares at the Zhang's camp and the scene fades to show the Zhang tribe and Sokka sitting around the campfire.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2472,2472,Water,1,The Great Divide,11,Zhang leader,[To Sokka.] Care for some meat?,Care for some meat?,John O'Bryan,Giancarlo Volpe,7.1 +2473,2473,Water,1,The Great Divide,11,Sokka,Would I! [Takes the meat and bites down hungrily.],Would I!,John O'Bryan,Giancarlo Volpe,7.1 +2474,2474,Water,1,The Great Divide,11,Zhang leader,"I know what you must be thinking, we're horrible for endangering everybody by bringing food down here.","I know what you must be thinking, we're horrible for endangering everybody by bringing food down here.",John O'Bryan,Giancarlo Volpe,7.1 +2475,2475,Water,1,The Great Divide,11,Sokka,Hm-hmm.,Hm-hmm.,John O'Bryan,Giancarlo Volpe,7.1 +2476,2476,Water,1,The Great Divide,11,Zhang leader,"The Gan Jin think so badly of us, they probably assumed we brought food in and decided to bring food in themselves. That's why we brought food in.","The Gan Jin think so badly of us, they probably assumed we brought food in and decided to bring food in themselves. That's why we brought food in.",John O'Bryan,Giancarlo Volpe,7.1 +2477,2477,Water,1,The Great Divide,11,Sokka,[Still eating.] Hmm.,Hmm.,John O'Bryan,Giancarlo Volpe,7.1 +2478,2478,Water,1,The Great Divide,11,Zhang leader,"Our conflict with the Gan Jin goes back over a hundred years. [Fades to show a poorly-dressed man running through a large gate. Voice-over.] Our forefather Wei Jin was leaving the western gate of our village, when he saw a figure in the distance. It was a man of the Gan Jin tribe, Jin Wei, collapsed on the ground. Noble Wei Jin stopped to help him. Jin Wei was transporting a sacred orb, a very powerful relic used in his tribe's redemption ritual. Wei Jin tried to tend to the man's wounds but Jin Wei insisted the orb was more important, and asked him to take it back to his tribe. Kind Wei Jin promised to send help for the man as soon as he could, but as Wei Jin crossed the border to return the orb into Gan Jin territory, he was arrested. Instead of thanking him for his kind and selfless deed, they sentenced him to twenty long years in prison. [Back to Zhang leader.] We Zhangs will never forget that injustice.","Our conflict with the Gan Jin goes back over a hundred years. Our forefather Wei Jin was leaving the western gate of our village, when he saw a figure in the distance. It was a man of the Gan Jin tribe, Jin Wei, collapsed on the ground. Noble Wei Jin stopped to help him. Jin Wei was transporting a sacred orb, a very powerful relic used in his tribe's redemption ritual. Wei Jin tried to tend to the man's wounds but Jin Wei insisted the orb was more important, and asked him to take it back to his tribe. Kind Wei Jin promised to send help for the man as soon as he could, but as Wei Jin crossed the border to return the orb into Gan Jin territory, he was arrested. Instead of thanking him for his kind and selfless deed, they sentenced him to twenty long years in prison. We Zhangs will never forget that injustice.",John O'Bryan,Giancarlo Volpe,7.1 +2479,2479,Water,1,The Great Divide,11,Sokka,That's just terrible. [Looks at her piece of meat.] You gonna finish that?,That's just terrible. You gonna finish that?,John O'Bryan,Giancarlo Volpe,7.1 +2480,2480,Water,1,The Great Divide,11,Scene Description,Fades to show Aang sitting with Momo far from both camps.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2481,2481,Water,1,The Great Divide,11,Aang,"Sure would be nice to be sitting around one of those campfires, telling stories and laughing. Its okay Momo, we'll be out of here soon enough, and then we can eat our weight in leechi nuts! [Momo jumps up and snatches a bug out of the air, he eats part of it before offering the rest to Aang.] Nah, I'll wait for the leechi nuts.","Sure would be nice to be sitting around one of those campfires, telling stories and laughing. Its okay Momo, we'll be out of here soon enough, and then we can eat our weight in leechi nuts! Nah, I'll wait for the leechi nuts.",John O'Bryan,Giancarlo Volpe,7.1 +2482,2482,Water,1,The Great Divide,11,Canyon guide,"[Slowly approaching Aang.] Lonely isn't it, being impartial?","Lonely isn't it, being impartial?",John O'Bryan,Giancarlo Volpe,7.1 +2483,2483,Water,1,The Great Divide,11,Aang,"I wish I could help these people get along, but it just seems impossible. Anyhow, I guess our biggest problem is getting out of here.","I wish I could help these people get along, but it just seems impossible. Anyhow, I guess our biggest problem is getting out of here.",John O'Bryan,Giancarlo Volpe,7.1 +2484,2484,Water,1,The Great Divide,11,Canyon guide,I'm not so sure the two problems are unrelated.,I'm not so sure the two problems are unrelated.,John O'Bryan,Giancarlo Volpe,7.1 +2485,2485,Water,1,The Great Divide,11,Scene Description,Aang looks away sadly and the scene fades to show the two tribes traveling again in daylight.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2486,2486,Water,1,The Great Divide,11,Canyon guide,"All clear, we're almost to the other side.","All clear, we're almost to the other side.",John O'Bryan,Giancarlo Volpe,7.1 +2487,2487,Water,1,The Great Divide,11,Aang,"[Jumps down to Katara and Sokka.] Katara, Sokka, will these people cooperate long enough to get out of the canyon?","Katara, Sokka, will these people cooperate long enough to get out of the canyon?",John O'Bryan,Giancarlo Volpe,7.1 +2488,2488,Water,1,The Great Divide,11,Katara,"I don't think so, Aang, the Zhangs really wronged the Gan Jins. They ambushed Jin Wei and stole the sacred orb.","I don't think so, Aang, the Zhangs really wronged the Gan Jins. They ambushed Jin Wei and stole the sacred orb.",John O'Bryan,Giancarlo Volpe,7.1 +2489,2489,Water,1,The Great Divide,11,Aang,What are you talking about?,What are you talking about?,John O'Bryan,Giancarlo Volpe,7.1 +2490,2490,Water,1,The Great Divide,11,Sokka,"Yeah Katara, what are you talking about? Wei Jin didn't steal the orb, he was returning it to their village gate and was wrongfully punished by the Gan Jin.","Yeah Katara, what are you talking about? Wei Jin didn't steal the orb, he was returning it to their village gate and was wrongfully punished by the Gan Jin.",John O'Bryan,Giancarlo Volpe,7.1 +2491,2491,Water,1,The Great Divide,11,Katara,Not punished enough if you ask me.,Not punished enough if you ask me.,John O'Bryan,Giancarlo Volpe,7.1 +2492,2492,Water,1,The Great Divide,11,Aang,"[Over Sokka's frustrated growls.] Okay, okay I get it! Now I need your help, I need everyone together at the base of the canyon wall. [He takes off on his glider and the scene fades to show him landing between the two tribes.] Please everyone, as soon as we get out of here we can eat and then go our separate ways, but I need you all to put your heads together and figure out a way up this cliff.","Okay, okay I get it! Now I need your help, I need everyone together at the base of the canyon wall. Please everyone, as soon as we get out of here we can eat and then go our separate ways, but I need you all to put your heads together and figure out a way up this cliff.",John O'Bryan,Giancarlo Volpe,7.1 +2493,2493,Water,1,The Great Divide,11,Gan Jin leader,Maybe the Zhang can climb the wall with their long disgusting fingernails.,Maybe the Zhang can climb the wall with their long disgusting fingernails.,John O'Bryan,Giancarlo Volpe,7.1 +2494,2494,Water,1,The Great Divide,11,Zhang leader,"Oh sorry, I forgot that to the Gan Jin unclipped fingernails is a crime punishable by twenty years in jail!","Oh sorry, I forgot that to the Gan Jin unclipped fingernails is a crime punishable by twenty years in jail!",John O'Bryan,Giancarlo Volpe,7.1 +2495,2495,Water,1,The Great Divide,11,Gan Jin leader,"Why, you dirty thief!","Why, you dirty thief!",John O'Bryan,Giancarlo Volpe,7.1 +2496,2496,Water,1,The Great Divide,11,Zhang leader,You pompous fool!,You pompous fool!,John O'Bryan,Giancarlo Volpe,7.1 +2497,2497,Water,1,The Great Divide,11,Scene Description,"The tribes began to argue loudly again, accompanied by Katara and Sokka.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2498,2498,Water,1,The Great Divide,11,Aang,"[Shouting.] Guys, focus! How many times do I have to say it? Harsh words won't solve problems, action will!","Guys, focus! How many times do I have to say it? Harsh words won't solve problems, action will!",John O'Bryan,Giancarlo Volpe,7.1 +2499,2499,Water,1,The Great Divide,11,Zhang leader,Perhaps the Avatar is right.,Perhaps the Avatar is right.,John O'Bryan,Giancarlo Volpe,7.1 +2500,2500,Water,1,The Great Divide,11,Gan Jin leader,"Yes, perhaps he is. [Aang grins happily at this.]","Yes, perhaps he is.",John O'Bryan,Giancarlo Volpe,7.1 +2501,2501,Water,1,The Great Divide,11,Zhang leader,Harsh words will never solve our problems.,Harsh words will never solve our problems.,John O'Bryan,Giancarlo Volpe,7.1 +2502,2502,Water,1,The Great Divide,11,Gan Jin leader,Action will!,Action will!,John O'Bryan,Giancarlo Volpe,7.1 +2503,2503,Water,1,The Great Divide,11,Scene Description,"They both draw their swords and Aang yells in surprise, as they clash their swords.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2504,2504,Water,1,The Great Divide,11,Gan Jin leader,To the death! And let this be the end of this rivalry!,To the death! And let this be the end of this rivalry!,John O'Bryan,Giancarlo Volpe,7.1 +2505,2505,Water,1,The Great Divide,11,Aang,"You know, I take it back. Harsh words aren't so bad!","You know, I take it back. Harsh words aren't so bad!",John O'Bryan,Giancarlo Volpe,7.1 +2506,2506,Water,1,The Great Divide,11,Scene Description,"The two leaders ignore him as they begin to fight. They are evenly matched, and continue until Aang blows them apart with a strong gust of air. The two tribes go flying backward, revealing a large amount of hidden food.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2507,2507,Water,1,The Great Divide,11,Aang,"[Shocked.] Is that ... food? Everyone smuggled food down here? Unbelievable! You guys put our lives in danger because you couldn't go without a snack for a day? You're all awful! [He looks in wonder at a custard tart, and his stomach growls.] So hungry. Is that an egg custard in that tart? [He turns to see dozens of canyon crawlers approaching, and they all try to flee.]",Is that ... food? Everyone smuggled food down here? Unbelievable! You guys put our lives in danger because you couldn't go without a snack for a day? You're all awful! So hungry. Is that an egg custard in that tart?,John O'Bryan,Giancarlo Volpe,7.1 +2508,2508,Water,1,The Great Divide,11,Katara,"Oh no, that's a lot of canyon crawlers.","Oh no, that's a lot of canyon crawlers.",John O'Bryan,Giancarlo Volpe,7.1 +2509,2509,Water,1,The Great Divide,11,Sokka,[Taking out his boomerang.] We barely survived one!,We barely survived one!,John O'Bryan,Giancarlo Volpe,7.1 +2510,2510,Water,1,The Great Divide,11,Canyon guide,They're coming back for me! They've had a taste and they're coming back for me!,They're coming back for me! They've had a taste and they're coming back for me!,John O'Bryan,Giancarlo Volpe,7.1 +2511,2511,Water,1,The Great Divide,11,Katara,"Sokka, wait. [Stops him as he runs forward.] I don't care about this stupid feud, I just want us to get out of here alive.","Sokka, wait. I don't care about this stupid feud, I just want us to get out of here alive.",John O'Bryan,Giancarlo Volpe,7.1 +2512,2512,Water,1,The Great Divide,11,Sokka,Me too. I only took their side 'cause they fed me.,Me too. I only took their side 'cause they fed me.,John O'Bryan,Giancarlo Volpe,7.1 +2513,2513,Water,1,The Great Divide,11,Scene Description,"The camera cuts to show Aang fighting off the canyon crawlers, and soon has them all in a pile. The crawlers pick themselves up and target the refugees. Though Aang, Katara, Sokka, and the tribe leaders fight hard to hold them off, they are vastly out numbered. Aang looks around to see the crawlers eating the food out of the bags.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2514,2514,Water,1,The Great Divide,11,Aang,"[Shouting.] Everybody, watch me and do what I do! [He distracts a crawler with a piece of food, leaps on its back, and throws a bag over its snout. The two tribes mimic him, working together.] Now follow me! We're riding out of this hole! [Aang ties a huge bag of food onto a stick and uses it to guide the crawlers up the canyon wall.] Everyone, get off!","Everybody, watch me and do what I do! Now follow me! We're riding out of this hole! Everyone, get off!",John O'Bryan,Giancarlo Volpe,7.1 +2515,2515,Water,1,The Great Divide,11,Zhang leader,[Jumping off a crawler.] We made it!,We made it!,John O'Bryan,Giancarlo Volpe,7.1 +2516,2516,Water,1,The Great Divide,11,Scene Description,"As soon as all the people have made it up the cliff, Aang throws the bag back down, and the crawlers follow.",NA,John O'Bryan,Giancarlo Volpe,7.1 +2517,2517,Water,1,The Great Divide,11,Zhang leader,I never thought a Gan Jin could get his hands dirty like that.,I never thought a Gan Jin could get his hands dirty like that.,John O'Bryan,Giancarlo Volpe,7.1 +2518,2518,Water,1,The Great Divide,11,Gan Jin leader,And I never knew you Zhangs were so reliable in a pinch.,And I never knew you Zhangs were so reliable in a pinch.,John O'Bryan,Giancarlo Volpe,7.1 +2519,2519,Water,1,The Great Divide,11,Zhang leader,Perhaps we're not so different after all. [They both smile at each other and Aang sighs in relief.],Perhaps we're not so different after all.,John O'Bryan,Giancarlo Volpe,7.1 +2520,2520,Water,1,The Great Divide,11,Gan Jin leader,Too bad we can't rewrite history. You thieves stole our sacred orb from Jin Wei! [Draws his sword.],Too bad we can't rewrite history. You thieves stole our sacred orb from Jin Wei!,John O'Bryan,Giancarlo Volpe,7.1 +2521,2521,Water,1,The Great Divide,11,Zhang leader,[Draws her sword.] You tyrants unjustly imprisoned Wei Jin for twenty long years!,You tyrants unjustly imprisoned Wei Jin for twenty long years!,John O'Bryan,Giancarlo Volpe,7.1 +2522,2522,Water,1,The Great Divide,11,Aang,[Sighs in frustration.] Wait a second ... Jin Wei? Wei Jin? I know those guys!,Wait a second ... Jin Wei? Wei Jin? I know those guys!,John O'Bryan,Giancarlo Volpe,7.1 +2523,2523,Water,1,The Great Divide,11,Gan Jin leader,"Yes, yes, we're all aware of the story.","Yes, yes, we're all aware of the story.",John O'Bryan,Giancarlo Volpe,7.1 +2524,2524,Water,1,The Great Divide,11,Aang,"No, I mean I really knew them. I might not look it, but I'm a hundred and twelve years old. I was there one hundred years ago on the day you're talking about. [Scene fades to show the two men facing each other. Voice-over.] There seems to be a lot of confusion about what happened. First of all, Jin Wei and Wei Jin weren't enemies. They were brothers, twins in fact, and they were eight; and most importantly, they were just playing a game! The sacred orb from the legend, that was the ball! And the eastern and western gates were the goal posts. Jin Wei had the ball and was running toward the goal when he fell and fumbled it. Wei Jin didn't steal the ball, he picked it up and started running it toward the other goal, but he stepped out of bounds, so the official put him in the penalty box. Not for twenty long years but for two short minutes. [Fades back to Aang.] There was no stealing and no putting anyone in imprison, it was just a game.","No, I mean I really knew them. I might not look it, but I'm a hundred and twelve years old. I was there one hundred years ago on the day you're talking about. There seems to be a lot of confusion about what happened. First of all, Jin Wei and Wei Jin weren't enemies. They were brothers, twins in fact, and they were eight; and most importantly, they were just playing a game! The sacred orb from the legend, that was the ball! And the eastern and western gates were the goal posts. Jin Wei had the ball and was running toward the goal when he fell and fumbled it. Wei Jin didn't steal the ball, he picked it up and started running it toward the other goal, but he stepped out of bounds, so the official put him in the penalty box. Not for twenty long years but for two short minutes. There was no stealing and no putting anyone in imprison, it was just a game.",John O'Bryan,Giancarlo Volpe,7.1 +2525,2525,Water,1,The Great Divide,11,Zhang leader,You're saying the sacred orb was actually a sacred ball?,You're saying the sacred orb was actually a sacred ball?,John O'Bryan,Giancarlo Volpe,7.1 +2526,2526,Water,1,The Great Divide,11,Aang,"Nope, just a regular ball.","Nope, just a regular ball.",John O'Bryan,Giancarlo Volpe,7.1 +2527,2527,Water,1,The Great Divide,11,Gan Jin man,What about our tribe's redemption ritual?,What about our tribe's redemption ritual?,John O'Bryan,Giancarlo Volpe,7.1 +2528,2528,Water,1,The Great Divide,11,Aang,"That's what the game was called, redemption. As soon as you got the ball from one end to the other, everyone would yell ""redemption""! [The tribe leaders look at each other skeptically.] Don't get me wrong, Wei Jin was kind of a slob and Jin Wei was a little stuffy, that much is true. But they respected each other's differences enough to share the same playing field.","That's what the game was called, redemption. As soon as you got the ball from one end to the other, everyone would yell ""redemption""! Don't get me wrong, Wei Jin was kind of a slob and Jin Wei was a little stuffy, that much is true. But they respected each other's differences enough to share the same playing field.",John O'Bryan,Giancarlo Volpe,7.1 +2529,2529,Water,1,The Great Divide,11,Zhang leader,[To the Gan Jin leader.] I suppose it's time we forget the past.,I suppose it's time we forget the past.,John O'Bryan,Giancarlo Volpe,7.1 +2530,2530,Water,1,The Great Divide,11,Gan Jin leader,[Bowing.] And look to the future.,And look to the future.,John O'Bryan,Giancarlo Volpe,7.1 +2531,2531,Water,1,The Great Divide,11,Scene Description,The Zhang leader bows back and Aang looks at them happily. The scene fades to show them standing with Appa.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2532,2532,Water,1,The Great Divide,11,Aang,"Good to see you, boy. Did you miss me? [Appa licks Aang as the Gan Jin leader approaches.]","Good to see you, boy. Did you miss me?",John O'Bryan,Giancarlo Volpe,7.1 +2533,2533,Water,1,The Great Divide,11,Gan Jin leader,"I cannot thank you enough, Avatar.","I cannot thank you enough, Avatar.",John O'Bryan,Giancarlo Volpe,7.1 +2534,2534,Water,1,The Great Divide,11,Aang,"[Covered in Appa's slobber.] Well, you know I try.","Well, you know I try.",John O'Bryan,Giancarlo Volpe,7.1 +2535,2535,Water,1,The Great Divide,11,Gan Jin leader,[Recoils in disgust.] Ugh!,Ugh!,John O'Bryan,Giancarlo Volpe,7.1 +2536,2536,Water,1,The Great Divide,11,Scene Description,Fades to show the two tribes standing together.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2537,2537,Water,1,The Great Divide,11,Zhang leader,Let us travel to the Earth Kingdom capital as one tribe. [Both tribes cheer as they start walking.],Let us travel to the Earth Kingdom capital as one tribe.,John O'Bryan,Giancarlo Volpe,7.1 +2538,2538,Water,1,The Great Divide,11,Canyon guide,[Running forward.] I'm going too! I'm sick of this place!,I'm going too! I'm sick of this place!,John O'Bryan,Giancarlo Volpe,7.1 +2539,2539,Water,1,The Great Divide,11,Sokka,That's some luck you knew Jin Wei and Wei Jin.,That's some luck you knew Jin Wei and Wei Jin.,John O'Bryan,Giancarlo Volpe,7.1 +2540,2540,Water,1,The Great Divide,11,Aang,You could call it luck. Or you could call it lying.,You could call it luck. Or you could call it lying.,John O'Bryan,Giancarlo Volpe,7.1 +2541,2541,Water,1,The Great Divide,11,Sokka,[Flabbergasted.] What?,What?,John O'Bryan,Giancarlo Volpe,7.1 +2542,2542,Water,1,The Great Divide,11,Aang,I made the whole thing up.,I made the whole thing up.,John O'Bryan,Giancarlo Volpe,7.1 +2543,2543,Water,1,The Great Divide,11,Katara,[Shocked.] You did not! [In devilish admiration.] That is so wrong.,You did not! That is so wrong.,John O'Bryan,Giancarlo Volpe,7.1 +2544,2544,Water,1,The Great Divide,11,Aang,Now where is that custard tart? I'm starving!,Now where is that custard tart? I'm starving!,John O'Bryan,Giancarlo Volpe,7.1 +2545,2545,Water,1,The Great Divide,11,Scene Description,Fades to credits.,NA,John O'Bryan,Giancarlo Volpe,7.1 +2546,2546,Water,1,The Storm,12,Scene Description,"The episode begins in Aang's dream. The scene itself, dominated by a tinge of warm yellow, is filled with clouds for a moment before Aang slides into the frame of the shot, his face happy as he flicks the reins. The shot switches to a far view, showing that he is riding Appa, who is flapping his six legs in unison up and down as if he were a bird. The camera pans to the right, revealing Sokka as he pulls alongside Appa, using Aang's glider to fly with the Avatar. The shot cuts to a close-up of the Water Tribe warrior as he turns his head toward Aang, grinning broadly and contentedly at him. Cut to Aang as his face exhibits the same contented grin. He turns his attention to his right and the camera follows his gaze, revealing Katara sitting atop the head of an enormous Momo; she waves at Aang. Camera moves back to a wide frontal shot of the group coursing leisurely through the open sky.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2547,2547,Water,1,The Storm,12,Katara,"[Voice-over.] We need you, Aang.","We need you, Aang.",Aaron Ehasz,Lauren MacMullan,9.1 +2548,2548,Water,1,The Storm,12,Aang,"[Close-up as he is looking toward Katara; contentedly.] I need you, too.","I need you, too.",Aaron Ehasz,Lauren MacMullan,9.1 +2549,2549,Water,1,The Storm,12,Scene Description,"Aang notices something out of the corner of his eyes. As he turns toward it, his expression changes to shock. Focusing on Aang's face, the camera turns 180 degrees and switches to his point of view as the sky's coloring changes to a dark, ominous gray, revealing a churning storm cloud before him. Cut back to Aang, who yanks Appa's reins in fright.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2550,2550,Water,1,The Storm,12,Aang,"[Alarmed.] Be careful, guys! [He looks to his left and right, uneasy.] Guys?","Be careful, guys! Guys?",Aaron Ehasz,Lauren MacMullan,9.1 +2551,2551,Water,1,The Storm,12,Scene Description,"The scene rapidly zooms out, revealing that Aang and Appa are alone, surrounded by nothing but the darkening sky. Cut back to Aang's point of view as Gyatso, in lotus, floats downward, positioning himself in front of Aang.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2552,2552,Water,1,The Storm,12,Aang,[Surprised.] Gyatso?,Gyatso?,Aaron Ehasz,Lauren MacMullan,9.1 +2553,2553,Water,1,The Storm,12,Gyatso,"[Whispering, his tone sad.] Why did you disappear?",Why did you disappear?,Aaron Ehasz,Lauren MacMullan,9.1 +2554,2554,Water,1,The Storm,12,Aang,[Frontal shot; his voice soft and sad.] I didn't mean to.,I didn't mean to.,Aaron Ehasz,Lauren MacMullan,9.1 +2555,2555,Water,1,The Storm,12,Scene Description,"Cut to a side-view of the two monks, not a meter apart from one another. Aang reaches out to Gyatso, but before he can touch him, Gyatso turns gray and dissipates into smoke; it blows over Aang, causing him to raise his left arm in front of his face and turn away to shield himself from it. Frontal shot of Aang as the last of the smoke washes over him. He peeks over his arm, but instantly raises his head, his eyes growing big in shock; a dark shadow passes over him as the shot cuts to a distant side-view of Appa being swallowed by the dark cloud.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2556,2556,Water,1,The Storm,12,Gyatso,"[Voice-over.] We need you, Aang.","We need you, Aang.",Aaron Ehasz,Lauren MacMullan,9.1 +2557,2557,Water,1,The Storm,12,Scene Description,"A bolt of lightning splits the shot for an instant before cutting to a frontal shot of a screaming and frightened Aang, wrestling with the reins, as he and Appa are caught in the belly of the storm with rain beating down on them. Cut to an underwater shot as Aang and Appa plummet into the ocean. The duo floats for a moment. Cut to a close-up of Aang's hand as his grip on Appa's reins loosens and they slip from his limp grasp.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2558,2558,Water,1,The Storm,12,Gyatso and Katara,"[Echoing voice-over.] We need you, Aang. [Cut to a downward view of an unconscious Aang sinking.] We need you. We need you, Aang. We need you.","We need you, Aang. We need you. We need you, Aang. We need you.",Aaron Ehasz,Lauren MacMullan,9.1 +2559,2559,Water,1,The Storm,12,Scene Description,"Unmoving, Aang sinks and disappears into the darkness of the ocean. For a fraction of a second, lightning splits the shot once again and the silhouette of the Fire Lord surrounded by flames appears. +The scene cuts to reality as Aang, gasping for air and shooting upright, startles Momo, who was curled up on top of Aang. Momo leaps onto Katara's stomach, causing her to shoot up with a startled look on her face, before jumping on Sokka's, who shoots up, still sleepy, halfheartedly wielding his dagger and boomerang.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2560,2560,Water,1,The Storm,12,Sokka,[Drowsily.] What's going on? [He looks around.] Did we get captured again?,What's going on? Did we get captured again?,Aaron Ehasz,Lauren MacMullan,9.1 +2561,2561,Water,1,The Storm,12,Aang,"[Shot looking down, sliding right; Aang turns to his friends.] It's nothing. I just had a bad dream. [He curls up, facing away from them.] Go back to sleep.",It's nothing. I just had a bad dream. Go back to sleep.,Aaron Ehasz,Lauren MacMullan,9.1 +2562,2562,Water,1,The Storm,12,Sokka,"[Curls up, facing away from Aang.] Don't have to tell me twice.",Don't have to tell me twice.,Aaron Ehasz,Lauren MacMullan,9.1 +2563,2563,Water,1,The Storm,12,Katara,"[Frontal shot of Aang with Katara behind him, looking at him in concern.] Are you all right, Aang?","Are you all right, Aang?",Aaron Ehasz,Lauren MacMullan,9.1 +2564,2564,Water,1,The Storm,12,Aang,[Looking lost.] I'm okay.,I'm okay.,Aaron Ehasz,Lauren MacMullan,9.1 +2565,2565,Water,1,The Storm,12,Katara,You seem to be having a lot of nightmares lately. You want to tell me about it?,You seem to be having a lot of nightmares lately. You want to tell me about it?,Aaron Ehasz,Lauren MacMullan,9.1 +2566,2566,Water,1,The Storm,12,Aang,[Briefly closing his eyes.] I think I just need some rest.,I think I just need some rest.,Aaron Ehasz,Lauren MacMullan,9.1 +2567,2567,Water,1,The Storm,12,Sokka,"[Sitting up behind Katara; upbeat.] You guys want to hear about my dream? [Katara glares at him, an expression Sokka returns.] That's okay. I didn't want to talk about it anyway.",You guys want to hear about my dream? That's okay. I didn't want to talk about it anyway.,Aaron Ehasz,Lauren MacMullan,9.1 +2568,2568,Water,1,The Storm,12,Scene Description,"Sokka lies down, disappearing from view; Katara does the same. +Scene changes to waves crashing on a sandy shore under a blue sky. Cut to a wide frontal shot of Katara as she carries their packs toward Appa, who yawns. As the animal closes its mouth again, Aang is revealed sitting on his head, while Sokka sits on the saddle.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2569,2569,Water,1,The Storm,12,Aang,"Look at those clear skies, buddy! [Pets Appa's head. Cut to a close shot as he looks up at a flock of birds arranged in a ""V"" flying overhead, their goose-like honking audible.] Should be some smooth flying.","Look at those clear skies, buddy! Should be some smooth flying.",Aaron Ehasz,Lauren MacMullan,9.1 +2570,2570,Water,1,The Storm,12,Scene Description,"Cut to an overhead shot looking down of Katara looking into a bag before holding it upside down, sprinkling the ground with crumbs; Momo instantly eats them. Sokka walks past her toward Appa, carrying some of their luggage.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2571,2571,Water,1,The Storm,12,Katara,"[Looking from the contents of the bag up to Aang.] Well, we better smoothly fly [She steps onto Appa's tail and walks to the saddle.] ourselves to a market, 'cause we're out of food.","Well, we better smoothly fly ourselves to a market, 'cause we're out of food.",Aaron Ehasz,Lauren MacMullan,9.1 +2572,2572,Water,1,The Storm,12,Sokka,"[Side-shot as he suddenly straightens up, his tone serious.] Guys, wait. This was in my dream. [Momo lands on the pack behind him.] We shouldn't go to the market.","Guys, wait. This was in my dream. We shouldn't go to the market.",Aaron Ehasz,Lauren MacMullan,9.1 +2573,2573,Water,1,The Storm,12,Katara,"[Shot cuts beside Sokka, facing out toward Katara and Aang, who turn to look at him; curious.] What happened in your dream?",What happened in your dream?,Aaron Ehasz,Lauren MacMullan,9.1 +2574,2574,Water,1,The Storm,12,Sokka,"[Frontal shot; his eyes are bugged out in terror and the camera zooms in on him, rolling slightly as the shot takes on a greenish tint and alien music dubs the scene.] Food eats people! [The colors return to normal as the shot cuts to Katara's face as she shakes her head. Behind her, Aang goes back to adjusting the reins. Cut to Sokka again as he points at Momo.] Also, Momo could talk. [He glares at Momo while crossing his arms.] You said some very unkind things.","Food eats people! Also, Momo could talk. You said some very unkind things.",Aaron Ehasz,Lauren MacMullan,9.1 +2575,2575,Water,1,The Storm,12,Scene Description,"Momo's ears droop as Sokka speaks. Cut to downward looking shot of a flock of birds in V-formation flying over the open ocean. As the scene pans to the left, Zuko's ship sails into view. Cut to the deck, where Iroh stands on the deck, with Zuko looking through a spyglass behind him. As the flight of birds passes over Iroh's head in the distance, he sniffs the air and Zuko lowers the spyglass to turn to his uncle, who speaks.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2576,2576,Water,1,The Storm,12,Iroh,There is a storm coming. A big one.,There is a storm coming. A big one.,Aaron Ehasz,Lauren MacMullan,9.1 +2577,2577,Water,1,The Storm,12,Zuko,"You're out of your mind, Uncle. [Walking up to Iroh.] The weather's perfect. There's not a cloud in sight.","You're out of your mind, Uncle. The weather's perfect. There's not a cloud in sight.",Aaron Ehasz,Lauren MacMullan,9.1 +2578,2578,Water,1,The Storm,12,Scene Description,"The shot cuts behind the two, facing the prow of the ship and showing a clear sea and sky.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2579,2579,Water,1,The Storm,12,Iroh,A storm is approaching from the north. [He turns to face Zuko.] I suggest we alter our course and head southwest.,A storm is approaching from the north. I suggest we alter our course and head southwest.,Aaron Ehasz,Lauren MacMullan,9.1 +2580,2580,Water,1,The Storm,12,Zuko,"[Taking a few steps in Iroh's direction, pointing briefly northward.] We know the Avatar is traveling northward, so we will do the same.","We know the Avatar is traveling northward, so we will do the same.",Aaron Ehasz,Lauren MacMullan,9.1 +2581,2581,Water,1,The Storm,12,Iroh,"[Cut to his face; stern.] Prince Zuko, consider the safety of the crew.","Prince Zuko, consider the safety of the crew.",Aaron Ehasz,Lauren MacMullan,9.1 +2582,2582,Water,1,The Storm,12,Zuko,[Cut to his face as he advances on his uncle angrily.] The safety of the crew doesn't matter!,The safety of the crew doesn't matter!,Aaron Ehasz,Lauren MacMullan,9.1 +2583,2583,Water,1,The Storm,12,Scene Description,"Behind them, Lieutenant Jee walks onto deck, inadvertently overhearing the conversation. As Zuko realizes Jee is behind him and turns to face him, his expression briefly loses its raging intensity. A quick close-up shows Jee raising an eyebrow as Zuko walks over to him; another cut shifts the view to the lieutenant's side as Zuko, addressing Jee directly, struts up to him, dominantly looking him right in the eyes from a close distance as he finishes speaking.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2584,2584,Water,1,The Storm,12,Zuko,Finding the Avatar is far more important than any individual's safety.,Finding the Avatar is far more important than any individual's safety.,Aaron Ehasz,Lauren MacMullan,9.1 +2585,2585,Water,1,The Storm,12,Scene Description,"As Zuko walks away, Jee glares after him. The shot switches, showing Zuko leaving the deck through the door at the base of the superstructure. Cut to a frontal shot of Jee, who looks slightly enraged as Iroh walks over to him.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2586,2586,Water,1,The Storm,12,Iroh,"[Reassuringly, a twinge of uncertainty in his voice, almost as if he does not fully believe what he is saying.] He doesn't mean that. He's just all worked up.",He doesn't mean that. He's just all worked up.,Aaron Ehasz,Lauren MacMullan,9.1 +2587,2587,Water,1,The Storm,12,Scene Description,"The scene changes to a seaside hamlet built on the side of a cliff face, the roofs all teal-green; a collection of houses sits back from the waterfront, where a row of warehouses adjoins the docks. Among the several ships moored on the town's four piers is Appa, floating in the water by himself. Cut to Katara, who stands in front of a small merchants' stand, suspiciously eying a watermelon.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2588,2588,Water,1,The Storm,12,Merchant woman,"[Scowling.] Ahhh, it's good. It's perfect, I'm telling you!","Ahhh, it's good. It's perfect, I'm telling you!",Aaron Ehasz,Lauren MacMullan,9.1 +2589,2589,Water,1,The Storm,12,Katara,"[Shaking the watermelon, which emits an audible sloshing sound.] I don't know if I like the sound of that swishing.",I don't know if I like the sound of that swishing.,Aaron Ehasz,Lauren MacMullan,9.1 +2590,2590,Water,1,The Storm,12,Merchant woman,"[As the shot zooms out, the merchant moves around the stand where Katara stands. Sokka and Aang, staff in hand, stand beside them; the former is filling a basket with fruit.] Swishing means it's ripe! It's the ripe juices swishing around, eh?","Swishing means it's ripe! It's the ripe juices swishing around, eh?",Aaron Ehasz,Lauren MacMullan,9.1 +2591,2591,Water,1,The Storm,12,Aang,"[Taking a step toward Katara.] I think it's true, Katara. Swishing means it's ripe.","I think it's true, Katara. Swishing means it's ripe.",Aaron Ehasz,Lauren MacMullan,9.1 +2592,2592,Water,1,The Storm,12,Katara,"[As the shot cuts to a frontal view of her, she puts the melon back on the stand.] I just realized we're out of money anyway.",I just realized we're out of money anyway.,Aaron Ehasz,Lauren MacMullan,9.1 +2593,2593,Water,1,The Storm,12,Shopkeeper,"[Annoyed, grabbing a basket full of fruits from Sokka.] Awww!",Awww!,Aaron Ehasz,Lauren MacMullan,9.1 +2594,2594,Water,1,The Storm,12,Scene Description,"As Sokka walks past the merchant, she indignantly kicks him in the rear, drawing a cry of pain from Sokka. Cut to Sokka, Katara, and Aang on the docks. Sokka is rubbing where the lady kicked him and seems downcast.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2595,2595,Water,1,The Storm,12,Sokka,Out of food and out of money. Now what are we supposed to do?,Out of food and out of money. Now what are we supposed to do?,Aaron Ehasz,Lauren MacMullan,9.1 +2596,2596,Water,1,The Storm,12,Katara,"You could get a job, smart guy.","You could get a job, smart guy.",Aaron Ehasz,Lauren MacMullan,9.1 +2597,2597,Water,1,The Storm,12,Scene Description,"A fisherman and his wife are walking behind the gang. As Katara finishes, they begin a loud, heated conversation, which is overheard easily by Aang, Katara, and Sokka.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2598,2598,Water,1,The Storm,12,Fisherman's wife,"We shouldn't go out there! Please, the fish can wait. There's going to be a terrible storm. [Camera cuts to show Aang, who appears alarmed by the prediction.]","We shouldn't go out there! Please, the fish can wait. There's going to be a terrible storm.",Aaron Ehasz,Lauren MacMullan,9.1 +2599,2599,Water,1,The Storm,12,Fisherman,"You're crazy. It's a nice day: [Gesturing to the sky with both arms.] No clouds, no winds, no nothing. So quit your nagging, woman.","You're crazy. It's a nice day: No clouds, no winds, no nothing. So quit your nagging, woman.",Aaron Ehasz,Lauren MacMullan,9.1 +2600,2600,Water,1,The Storm,12,Aang,[Nervously suggesting to Katara and Sokka.] Maybe we should find some shelter?,Maybe we should find some shelter?,Aaron Ehasz,Lauren MacMullan,9.1 +2601,2601,Water,1,The Storm,12,Sokka,[Indicating the fair weather.] Are you kidding? Shelter from what?,Are you kidding? Shelter from what?,Aaron Ehasz,Lauren MacMullan,9.1 +2602,2602,Water,1,The Storm,12,Fisherman's wife,My joints say there's going to be a storm! A bad one.,My joints say there's going to be a storm! A bad one.,Aaron Ehasz,Lauren MacMullan,9.1 +2603,2603,Water,1,The Storm,12,Fisherman,"Well, it's your joints against my brain.","Well, it's your joints against my brain.",Aaron Ehasz,Lauren MacMullan,9.1 +2604,2604,Water,1,The Storm,12,Fisherman's wife,"Then I hope your brain can find someone else to haul that fish, 'cause I ain't comin'.","Then I hope your brain can find someone else to haul that fish, 'cause I ain't comin'.",Aaron Ehasz,Lauren MacMullan,9.1 +2605,2605,Water,1,The Storm,12,Fisherman,"Then I'll find a new fish hauler and pay him double what you get! [Cut to a side shot of the couple, showing Sokka running up to them.] How do you like that?",Then I'll find a new fish hauler and pay him double what you get! How do you like that?,Aaron Ehasz,Lauren MacMullan,9.1 +2606,2606,Water,1,The Storm,12,Sokka,"[Interrupting, raising his hand.] I'll go.",I'll go.,Aaron Ehasz,Lauren MacMullan,9.1 +2607,2607,Water,1,The Storm,12,Fisherman,"You're hired! [Shoots a triumphant look at his wife, who scowls back.]",You're hired!,Aaron Ehasz,Lauren MacMullan,9.1 +2608,2608,Water,1,The Storm,12,Sokka,"[After a short pause, to Katara and Aang.] What? You said get a job ... and he's paying double.",What? You said get a job ... and he's paying double.,Aaron Ehasz,Lauren MacMullan,9.1 +2609,2609,Water,1,The Storm,12,Fisherman,"[Rounding on Sokka, his expression wild.] Double? Who told you that nonsense?",Double? Who told you that nonsense?,Aaron Ehasz,Lauren MacMullan,9.1 +2610,2610,Water,1,The Storm,12,Scene Description,"The scene changes to Zuko's ship on the open ocean. As the shot pans right, a massive bank of darkening clouds, having appeared seemingly out of nowhere, rolls into view, looming in front of the ship. Cut to the deck, where Lieutenant Jee and several other soldiers stand a short distance from the shot, staring at the clouds. Zuko walks into the foreground, regarding the clouds as Jee and the others turn to face him. Iroh walks between Zuko and Jee as the latter taunts the former.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2611,2611,Water,1,The Storm,12,Lieutenant Jee,Looks like your uncle was right about the storm after all.,Looks like your uncle was right about the storm after all.,Aaron Ehasz,Lauren MacMullan,9.1 +2612,2612,Water,1,The Storm,12,Iroh,[Pleasantly.] Lucky guess.,Lucky guess.,Aaron Ehasz,Lauren MacMullan,9.1 +2613,2613,Water,1,The Storm,12,Zuko,"[Whirling around and walking toward Jee; angry.] Lieutenant! You'd better learn some respect [Jabs two fingers into Jee's chest.] – or I will teach it to you. [Begins to walk away from Jee, who follows Zuko with his eyes, continuing his taunting after a short pause.]",Lieutenant! You'd better learn some respect – or I will teach it to you.,Aaron Ehasz,Lauren MacMullan,9.1 +2614,2614,Water,1,The Storm,12,Jee,"What do you know about respect? [Behind Jee, Iroh's expression turns to panic and he makes a cutting motion at his throat with his hand, trying to signal Lieutenant Jee to stop. Cut to Zuko's back as he stops walking before switching to his face as he listens to Jee's words.] The way you talk to everyone around here, from your hard-working crew to your esteemed uncle, shows you know nothing about respect! [Cut to a close-up of Iroh's face as he gasps slightly, reaching out a hand in desperation before moving it to his forehead in resignation, believing Jee has gone too far. Cut back to Zuko's face, contorted with rage.] You don't care about anyone but yourself! Then again, what should I expect from a spoiled prince?","What do you know about respect? The way you talk to everyone around here, from your hard-working crew to your esteemed uncle, shows you know nothing about respect! You don't care about anyone but yourself! Then again, what should I expect from a spoiled prince?",Aaron Ehasz,Lauren MacMullan,9.1 +2615,2615,Water,1,The Storm,12,Scene Description,Zuko turns around and extends his right arm as if preparing to firebend. Lieutenant Jee does the same.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2616,2616,Water,1,The Storm,12,Iroh,"Easy now. [Both Zuko and Jee wrist-block the other's arm; smoke rises from a furious Zuko's hand. Interrupting the staredown, Iroh extends an arm and pulls theirs apart; the smoke fades.] Enough! We're all a bit tired from being at sea so long. I'm sure after a bowl of noodles, everyone will feel much better.","Easy now. Enough! We're all a bit tired from being at sea so long. I'm sure after a bowl of noodles, everyone will feel much better.",Aaron Ehasz,Lauren MacMullan,9.1 +2617,2617,Water,1,The Storm,12,Scene Description,Lieutenant Jee walks away.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2618,2618,Water,1,The Storm,12,Zuko,I don't need your help keeping order on my ship.,I don't need your help keeping order on my ship.,Aaron Ehasz,Lauren MacMullan,9.1 +2619,2619,Water,1,The Storm,12,Scene Description,"Iroh puts a comforting hand on Zuko's right shoulder, but Zuko shrugs it off and walks away. Scene changes back to a dock at the fishing town, where Team Avatar stands. Sokka is carrying supplies onto the fisherman's boat.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2620,2620,Water,1,The Storm,12,Aang,"Sokka, maybe this isn't such a good idea. Look at the sky.","Sokka, maybe this isn't such a good idea. Look at the sky.",Aaron Ehasz,Lauren MacMullan,9.1 +2621,2621,Water,1,The Storm,12,Sokka,I said I was going to do this job. I can't back out just because of some bad weather.,I said I was going to do this job. I can't back out just because of some bad weather.,Aaron Ehasz,Lauren MacMullan,9.1 +2622,2622,Water,1,The Storm,12,Fisherman's wife,The boy with the tattoos has some sense. You should listen to him!,The boy with the tattoos has some sense. You should listen to him!,Aaron Ehasz,Lauren MacMullan,9.1 +2623,2623,Water,1,The Storm,12,Fisherman,"Boy with tattoos? [The fisherman turns around to look at Aang.] Airbender tattoos. Well, I'll be a hog monkey's uncle. You're the Avatar, ain't ya?","Boy with tattoos? Airbender tattoos. Well, I'll be a hog monkey's uncle. You're the Avatar, ain't ya?",Aaron Ehasz,Lauren MacMullan,9.1 +2624,2624,Water,1,The Storm,12,Katara,That's right. [Katara and Aang smile.],That's right.,Aaron Ehasz,Lauren MacMullan,9.1 +2625,2625,Water,1,The Storm,12,Fisherman,"Well, don't be so smiley about it. [Katara and Aang frown now.] The Avatar disappeared for a hundred years! You turned your back on the world!","Well, don't be so smiley about it. The Avatar disappeared for a hundred years! You turned your back on the world!",Aaron Ehasz,Lauren MacMullan,9.1 +2626,2626,Water,1,The Storm,12,Katara,Don't yell at him! Aang would never turn his back on anyone.,Don't yell at him! Aang would never turn his back on anyone.,Aaron Ehasz,Lauren MacMullan,9.1 +2627,2627,Water,1,The Storm,12,Fisherman,"Oh, he wouldn't, huh? Then I guess I just have imagined the last hundred years of war and suffering. [Aang's eyes widen.]","Oh, he wouldn't, huh? Then I guess I just have imagined the last hundred years of war and suffering.",Aaron Ehasz,Lauren MacMullan,9.1 +2628,2628,Water,1,The Storm,12,Katara,"Aang is the bravest person I know. He's done nothing but help people and save lives since I met him. [Behind Katara's back, Aang slowly begins to backpedal away from her.] It's not his fault he disappeared, right Aang? [Katara turns around to see Aang backing away.] Aang, what's wrong?","Aang is the bravest person I know. He's done nothing but help people and save lives since I met him. It's not his fault he disappeared, right Aang? Aang, what's wrong?",Aaron Ehasz,Lauren MacMullan,9.1 +2629,2629,Water,1,The Storm,12,Scene Description,"A look of shock and horrified guilt on his face, Aang opens his glider and vaults into the air, rapidly disappearing into the distance.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2630,2630,Water,1,The Storm,12,Fisherman,That's right! Keep flying!,That's right! Keep flying!,Aaron Ehasz,Lauren MacMullan,9.1 +2631,2631,Water,1,The Storm,12,Katara,"You're a horrible old man! [She gets on Appa, who is floating beside the dock.] Appa, yip yip!","You're a horrible old man! Appa, yip yip!",Aaron Ehasz,Lauren MacMullan,9.1 +2632,2632,Water,1,The Storm,12,Scene Description,"As Appa flies out of the water, a big wave splashes the fisherman. Sokka walks out from below deck on the boat.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2633,2633,Water,1,The Storm,12,Sokka,Hey! They left without saying good-bye!,Hey! They left without saying good-bye!,Aaron Ehasz,Lauren MacMullan,9.1 +2634,2634,Water,1,The Storm,12,Fisherman,"Your friends ain't too polite, are they?","Your friends ain't too polite, are they?",Aaron Ehasz,Lauren MacMullan,9.1 +2635,2635,Water,1,The Storm,12,Sokka,"I know! This one time, I was ...","I know! This one time, I was ...",Aaron Ehasz,Lauren MacMullan,9.1 +2636,2636,Water,1,The Storm,12,Fisherman,"[Hands Sokka a crate, interrupting him impolitely.] Yeah, yeah, yeah, yeah. Get below deck!","Yeah, yeah, yeah, yeah. Get below deck!",Aaron Ehasz,Lauren MacMullan,9.1 +2637,2637,Water,1,The Storm,12,Scene Description,"Scene changes to show Katara riding on Appa in the rain, trying to find Aang. The shot cuts to show a cave in the side of a cliff face. Camera changes to a view of Katara outside the cave and Aang sitting alone inside, surrounded by darkness.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2638,2638,Water,1,The Storm,12,Aang,[Quietly.] I'm sorry for running away.,I'm sorry for running away.,Aaron Ehasz,Lauren MacMullan,9.1 +2639,2639,Water,1,The Storm,12,Katara,It's okay. That fisherman was way out of line.,It's okay. That fisherman was way out of line.,Aaron Ehasz,Lauren MacMullan,9.1 +2640,2640,Water,1,The Storm,12,Aang,"Actually, he wasn't.","Actually, he wasn't.",Aaron Ehasz,Lauren MacMullan,9.1 +2641,2641,Water,1,The Storm,12,Katara,[Surprised.] What do you mean?,What do you mean?,Aaron Ehasz,Lauren MacMullan,9.1 +2642,2642,Water,1,The Storm,12,Aang,[Speaks in a sad voice.] I don't want to talk about it.,I don't want to talk about it.,Aaron Ehasz,Lauren MacMullan,9.1 +2643,2643,Water,1,The Storm,12,Katara,"It has to do with your dream, doesn't it? [Puts her hand on his shoulder.] Talk to me.","It has to do with your dream, doesn't it? Talk to me.",Aaron Ehasz,Lauren MacMullan,9.1 +2644,2644,Water,1,The Storm,12,Aang,"Well, it's kind of a long story.","Well, it's kind of a long story.",Aaron Ehasz,Lauren MacMullan,9.1 +2645,2645,Water,1,The Storm,12,Scene Description,"Suddenly, Momo leaps past Aang and Katara, startling them. Appa has also entered the cave. He nuzzles Aang's head with his nose, making Aang smile. Aang pats Appa's chin.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2646,2646,Water,1,The Storm,12,Katara,I'm going to try to get a little fire going.,I'm going to try to get a little fire going.,Aaron Ehasz,Lauren MacMullan,9.1 +2647,2647,Water,1,The Storm,12,Scene Description,Next scene shows Katara and Aang sitting around a fire. Momo is lying on Aang's lap.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2648,2648,Water,1,The Storm,12,Aang,I'll never forget the day the monks told me I was the Avatar. I was playing with some other kids just outside the South Wall. I was trying to teach them how to do the air scooter.,I'll never forget the day the monks told me I was the Avatar. I was playing with some other kids just outside the South Wall. I was trying to teach them how to do the air scooter.,Aaron Ehasz,Lauren MacMullan,9.1 +2649,2649,Water,1,The Storm,12,Scene Description,Scene changes to a flashback when Aang is with some other Air Nomads.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2650,2650,Water,1,The Storm,12,Aang,"First you got to form the ball, then you got to get on quick.","First you got to form the ball, then you got to get on quick.",Aaron Ehasz,Lauren MacMullan,9.1 +2651,2651,Water,1,The Storm,12,Scene Description,Aang is seen riding around on the scooter in the court. One of the boys tries it.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2652,2652,Water,1,The Storm,12,Air Nomad boy #1,"Okay, here goes.","Okay, here goes.",Aaron Ehasz,Lauren MacMullan,9.1 +2653,2653,Water,1,The Storm,12,Scene Description,"The boy forms it and tries getting on, but spins and falls off. Aang gently gets off his.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2654,2654,Water,1,The Storm,12,Aang,You kind of have to balance on it like it's a top.,You kind of have to balance on it like it's a top.,Aaron Ehasz,Lauren MacMullan,9.1 +2655,2655,Water,1,The Storm,12,Air Nomad boy #1,"Man, that's hard.","Man, that's hard.",Aaron Ehasz,Lauren MacMullan,9.1 +2656,2656,Water,1,The Storm,12,Air Nomad boy #2,"Where'd you learn that trick, Aang?","Where'd you learn that trick, Aang?",Aaron Ehasz,Lauren MacMullan,9.1 +2657,2657,Water,1,The Storm,12,Aang,I made it up.,I made it up.,Aaron Ehasz,Lauren MacMullan,9.1 +2658,2658,Water,1,The Storm,12,Air Nomad boy #2,Wow!,Wow!,Aaron Ehasz,Lauren MacMullan,9.1 +2659,2659,Water,1,The Storm,12,Scene Description,The Council of Elders shows up at that moment.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2660,2660,Water,1,The Storm,12,Gyatso,"Aang, come with us. We need to speak with you.","Aang, come with us. We need to speak with you.",Aaron Ehasz,Lauren MacMullan,9.1 +2661,2661,Water,1,The Storm,12,Scene Description,Scene changes to when Aang and the elder monks are in the meeting room.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2662,2662,Water,1,The Storm,12,Aang,How do you know it's me?,How do you know it's me?,Aaron Ehasz,Lauren MacMullan,9.1 +2663,2663,Water,1,The Storm,12,Tashi,We have known you were the Avatar for some time. Do you remember these?,We have known you were the Avatar for some time. Do you remember these?,Aaron Ehasz,Lauren MacMullan,9.1 +2664,2664,Water,1,The Storm,12,Scene Description,"Monk Tashi airbends a wrapped-up mat to Aang. It opens up, revealing four toys.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2665,2665,Water,1,The Storm,12,Aang,Those were some of my favorite toys when I was little! [He picks up the propeller toy.],Those were some of my favorite toys when I was little!,Aaron Ehasz,Lauren MacMullan,9.1 +2666,2666,Water,1,The Storm,12,Tashi,"You chose them from among thousands of toys, Aang. The toys you picked were the four Avatar relics. These items belonged to Avatars past. Your own past lives.","You chose them from among thousands of toys, Aang. The toys you picked were the four Avatar relics. These items belonged to Avatars past. Your own past lives.",Aaron Ehasz,Lauren MacMullan,9.1 +2667,2667,Water,1,The Storm,12,Aang,I just chose them because they seemed fun.,I just chose them because they seemed fun.,Aaron Ehasz,Lauren MacMullan,9.1 +2668,2668,Water,1,The Storm,12,Scene Description,"He smiles and pulls the cord on the propeller toy, sending the propeller spinning into the air. It spins through the air and the scene cuts back to a close view of the five monks. The toy goes over Monk Tashi's head.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2669,2669,Water,1,The Storm,12,Tashi,You chose them because they were familiar.,You chose them because they were familiar.,Aaron Ehasz,Lauren MacMullan,9.1 +2670,2670,Water,1,The Storm,12,Gyatso,"Normally we would have told you of your identity when you turned sixteen, but there are troubling signs. Storm clouds are gathering.","Normally we would have told you of your identity when you turned sixteen, but there are troubling signs. Storm clouds are gathering.",Aaron Ehasz,Lauren MacMullan,9.1 +2671,2671,Water,1,The Storm,12,Pasang,"I fear that war may be upon us, young Avatar.","I fear that war may be upon us, young Avatar.",Aaron Ehasz,Lauren MacMullan,9.1 +2672,2672,Water,1,The Storm,12,Gyatso,"We need you, Aang.","We need you, Aang.",Aaron Ehasz,Lauren MacMullan,9.1 +2673,2673,Water,1,The Storm,12,Scene Description,"Aang lowers his head, his responsibility crushing him. His head stays lowered as the flashback ends and his head remains lowered in the present as well. Cut to a wider shot of Aang on the left, Katara on the right, the fire between them. Katara looks upon him with concern and sympathy. The scene changes back to Zuko's ship. Jee is talking about Zuko to a couple other men.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2674,2674,Water,1,The Storm,12,Jee,"I'm sick of taking his orders! I'm tired of chasing his Avatar! I mean, who does Zuko think he is?","I'm sick of taking his orders! I'm tired of chasing his Avatar! I mean, who does Zuko think he is?",Aaron Ehasz,Lauren MacMullan,9.1 +2675,2675,Water,1,The Storm,12,Iroh,Do you really want to know?,Do you really want to know?,Aaron Ehasz,Lauren MacMullan,9.1 +2676,2676,Water,1,The Storm,12,Scene Description,Jee is shown standing up at the sound of Iroh's voice.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2677,2677,Water,1,The Storm,12,Jee,General Iroh. We were just- [Iroh cuts him off.],General Iroh. We were just-,Aaron Ehasz,Lauren MacMullan,9.1 +2678,2678,Water,1,The Storm,12,Iroh,It's okay. May I join you?,It's okay. May I join you?,Aaron Ehasz,Lauren MacMullan,9.1 +2679,2679,Water,1,The Storm,12,Jee,"Of course, sir.","Of course, sir.",Aaron Ehasz,Lauren MacMullan,9.1 +2680,2680,Water,1,The Storm,12,Scene Description,Iroh is shown sitting down.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2681,2681,Water,1,The Storm,12,Iroh,[Massages his beard.] Try to understand. My nephew is a complicated young man. He has been through much.,Try to understand. My nephew is a complicated young man. He has been through much.,Aaron Ehasz,Lauren MacMullan,9.1 +2682,2682,Water,1,The Storm,12,Scene Description,"Scene changes to a flashback. Zuko walks up to the curtains to get in the war room, but the guard on the left moves in front of the curtain to stop him.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2683,2683,Water,1,The Storm,12,Young Zuko,Let me in!,Let me in!,Aaron Ehasz,Lauren MacMullan,9.1 +2684,2684,Water,1,The Storm,12,Iroh,"[Places his hands on Zuko's shoulders.] Prince Zuko, what's wrong?","Prince Zuko, what's wrong?",Aaron Ehasz,Lauren MacMullan,9.1 +2685,2685,Water,1,The Storm,12,Young Zuko,I want to go into the war chamber [Points to the guard.] but the guard won't let me pass!,I want to go into the war chamber  but the guard won't let me pass!,Aaron Ehasz,Lauren MacMullan,9.1 +2686,2686,Water,1,The Storm,12,Iroh,"[Leads Zuko away with his left hand still on his shoulder.] You're not missing anything, trust me. These meetings are dreadfully boring.","You're not missing anything, trust me. These meetings are dreadfully boring.",Aaron Ehasz,Lauren MacMullan,9.1 +2687,2687,Water,1,The Storm,12,Young Zuko,"If I'm going to rule this nation one day, don't you think I need to start learning as much as I can?","If I'm going to rule this nation one day, don't you think I need to start learning as much as I can?",Aaron Ehasz,Lauren MacMullan,9.1 +2688,2688,Water,1,The Storm,12,Iroh,"Very well. But you must promise not to speak. [Another elder soldier walks by them into the war chamber.] These old folks are a bit sensitive, you know?","Very well. But you must promise not to speak.  These old folks are a bit sensitive, you know?",Aaron Ehasz,Lauren MacMullan,9.1 +2689,2689,Water,1,The Storm,12,Young Zuko,"[Bows to Iroh.] Thank you, Uncle.","Thank you, Uncle.",Aaron Ehasz,Lauren MacMullan,9.1 +2690,2690,Water,1,The Storm,12,Scene Description,Zuko and Iroh walk into the war room. The meeting starts.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2691,2691,Water,1,The Storm,12,Bujing,The Earth Kingdom defenses are concentrated here. [Bujing shows the place on the map.] A dangerous battalion of their strongest earthbenders and fiercest warriors. So I am recommending the forty-first division.,The Earth Kingdom defenses are concentrated here. A dangerous battalion of their strongest earthbenders and fiercest warriors. So I am recommending the forty-first division.,Aaron Ehasz,Lauren MacMullan,9.1 +2692,2692,Water,1,The Storm,12,Elder soldier,But the forty-first is entirely new recruits. How do you expect them to defeat a powerful Earth Kingdom battalion?,But the forty-first is entirely new recruits. How do you expect them to defeat a powerful Earth Kingdom battalion?,Aaron Ehasz,Lauren MacMullan,9.1 +2693,2693,Water,1,The Storm,12,Bujing,I don't. They'll be used as a distraction while we mount an attack from the rear. What better to use as bait than fresh meat?,I don't. They'll be used as a distraction while we mount an attack from the rear. What better to use as bait than fresh meat?,Aaron Ehasz,Lauren MacMullan,9.1 +2694,2694,Water,1,The Storm,12,Young Zuko,[Zuko is shown standing up.] You can't sacrifice an entire division like that! Those soldiers love and defend our nation! How can you betray them?,You can't sacrifice an entire division like that! Those soldiers love and defend our nation! How can you betray them?,Aaron Ehasz,Lauren MacMullan,9.1 +2695,2695,Water,1,The Storm,12,Scene Description,"Camera shows everyone in the war room staring at Zuko, save for Iroh, who is kneeling behind his nephew. The scene changes back to the present time.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2696,2696,Water,1,The Storm,12,Iroh,"Zuko was right, you see, [Massages his beard again.] but it was not his place to speak out. And there were dire consequences. [Slightly bows his head.]","Zuko was right, you see,  but it was not his place to speak out. And there were dire consequences.",Aaron Ehasz,Lauren MacMullan,9.1 +2697,2697,Water,1,The Storm,12,Scene Description,Scene changes back to Aang and Katara.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2698,2698,Water,1,The Storm,12,Katara,So you were upset that you were the Avatar? Why wouldn't you be excited about it?,So you were upset that you were the Avatar? Why wouldn't you be excited about it?,Aaron Ehasz,Lauren MacMullan,9.1 +2699,2699,Water,1,The Storm,12,Aang,"Well, I didn't know how to feel about it. All I knew was that after I found out, everything began changing.","Well, I didn't know how to feel about it. All I knew was that after I found out, everything began changing.",Aaron Ehasz,Lauren MacMullan,9.1 +2700,2700,Water,1,The Storm,12,Scene Description,Scene changes back to flashback. Aang enters into the South Wall again. The Air Nomad kids are shown on air scooters.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2701,2701,Water,1,The Storm,12,Aang,"Hey, not bad! You guys have been practicing!","Hey, not bad! You guys have been practicing!",Aaron Ehasz,Lauren MacMullan,9.1 +2702,2702,Water,1,The Storm,12,Air Nomad boy #2,Not only that! We made up a game you can play with the air scooters!,Not only that! We made up a game you can play with the air scooters!,Aaron Ehasz,Lauren MacMullan,9.1 +2703,2703,Water,1,The Storm,12,Aang,Great! [Aang is shown making his own. But everyone else makes theirs vanish.] What's going on?,Great! What's going on?,Aaron Ehasz,Lauren MacMullan,9.1 +2704,2704,Water,1,The Storm,12,Air Nomad boy #1,"Now that you're the Avatar, it's kind of an unfair advantage for whichever team you're on.","Now that you're the Avatar, it's kind of an unfair advantage for whichever team you're on.",Aaron Ehasz,Lauren MacMullan,9.1 +2705,2705,Water,1,The Storm,12,Aang,"But I'm still the same! Nothing's changed! So, what? I can't play?","But I'm still the same! Nothing's changed! So, what? I can't play?",Aaron Ehasz,Lauren MacMullan,9.1 +2706,2706,Water,1,The Storm,12,Air Nomad boy #1,That's the only fair way.,That's the only fair way.,Aaron Ehasz,Lauren MacMullan,9.1 +2707,2707,Water,1,The Storm,12,Aang,"Oh, okay.","Oh, okay.",Aaron Ehasz,Lauren MacMullan,9.1 +2708,2708,Water,1,The Storm,12,Air Nomad boy #2,"Sorry, Aang.","Sorry, Aang.",Aaron Ehasz,Lauren MacMullan,9.1 +2709,2709,Water,1,The Storm,12,Scene Description,Aang is shown leaving the South Wall.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2710,2710,Water,1,The Storm,12,Air Nomad boy #1,"Okay. Now, who wants Jinju on their team?","Okay. Now, who wants Jinju on their team?",Aaron Ehasz,Lauren MacMullan,9.1 +2711,2711,Water,1,The Storm,12,Scene Description,"Jinju is shown in the corner with a gas around him, laughing. Scene changes to Aang and Gyatso playing a game of Pai Sho. Aang is shown moving a piece.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2712,2712,Water,1,The Storm,12,Gyatso,"Very interesting move, young one.","Very interesting move, young one.",Aaron Ehasz,Lauren MacMullan,9.1 +2713,2713,Water,1,The Storm,12,Aang,What do you mean?,What do you mean?,Aaron Ehasz,Lauren MacMullan,9.1 +2714,2714,Water,1,The Storm,12,Scene Description,"Gyatso is shown using airbending to make a spiral, flipping a part of Aang's clothing. Gyatso quickly moves two pieces around. Aang is shown flipping his clothing back into place.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2715,2715,Water,1,The Storm,12,Aang,Hey!,Hey!,Aaron Ehasz,Lauren MacMullan,9.1 +2716,2716,Water,1,The Storm,12,Scene Description,Gyatso and Aang laugh. Monk Tashi appears.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2717,2717,Water,1,The Storm,12,Tashi,You're playing games with him? The Avatar should be training!,You're playing games with him? The Avatar should be training!,Aaron Ehasz,Lauren MacMullan,9.1 +2718,2718,Water,1,The Storm,12,Gyatso,Aang has already trained enough for today.,Aang has already trained enough for today.,Aaron Ehasz,Lauren MacMullan,9.1 +2719,2719,Water,1,The Storm,12,Tashi,Time is short. [To Aang.] Come with me. I must test you on some high level techniques.,Time is short. Come with me. I must test you on some high level techniques.,Aaron Ehasz,Lauren MacMullan,9.1 +2720,2720,Water,1,The Storm,12,Gyatso,"No. As long as I'm his guardian, I will decide when he trains ... and when he gets his butt kicked at Pai Sho.","No. As long as I'm his guardian, I will decide when he trains ... and when he gets his butt kicked at Pai Sho.",Aaron Ehasz,Lauren MacMullan,9.1 +2721,2721,Water,1,The Storm,12,Tashi,Hmph.,Hmph.,Aaron Ehasz,Lauren MacMullan,9.1 +2722,2722,Water,1,The Storm,12,Scene Description,"Monk Tashi is shown walking away. The flashback ends, and the scene changes to on Zuko's ship. A flashback appears of the fire in front of the Fire Lord's throne rising.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2723,2723,Water,1,The Storm,12,Iroh,"After Zuko's outburst in the meeting, the Fire Lord became very angry with him. [Flashback quickly ends.] He said the challenge against the general was an act of complete disrespect! And there was only one way to resolve this.","After Zuko's outburst in the meeting, the Fire Lord became very angry with him. He said the challenge against the general was an act of complete disrespect! And there was only one way to resolve this.",Aaron Ehasz,Lauren MacMullan,9.1 +2724,2724,Water,1,The Storm,12,Jee,Agni Kai. A fire duel.,Agni Kai. A fire duel.,Aaron Ehasz,Lauren MacMullan,9.1 +2725,2725,Water,1,The Storm,12,Iroh,"That's right. Zuko looked upon the old general he had insulted and declared that he was not afraid. But Zuko misunderstood. [Flashback shows an overview of the chamber; the camera cuts to show Zuko preparing for the Agni Kai.] When he turned to face his opponent, he was surprised to see it was not the general. [Flashback shows the tippet that was on Zuko's shoulders fall down to the ground.] Zuko had spoken out against the general's plan, but by doing so in the Fire Lord's war room, it was the Fire Lord whom he had disrespected. [Frontal shot of a surprised Zuko; as the camera zooms in on him, his expression changes to one of fear.] Zuko would have to duel his own father.","That's right. Zuko looked upon the old general he had insulted and declared that he was not afraid. But Zuko misunderstood. When he turned to face his opponent, he was surprised to see it was not the general. Zuko had spoken out against the general's plan, but by doing so in the Fire Lord's war room, it was the Fire Lord whom he had disrespected. Zuko would have to duel his own father.",Aaron Ehasz,Lauren MacMullan,9.1 +2726,2726,Water,1,The Storm,12,Scene Description,"Cut to a wall of the cave. The shot pans down to show Katara and a sad-looking Aang around their campfire. While Momo is asleep in his lap, Aang stares off into the fire with unseeing eyes as he continues his story.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2727,2727,Water,1,The Storm,12,Aang,"Then, just when I was feeling better, something worse happened.","Then, just when I was feeling better, something worse happened.",Aaron Ehasz,Lauren MacMullan,9.1 +2728,2728,Water,1,The Storm,12,Scene Description,Scene changes to flashback of Monk Tashi and Monk Gyatso speaking to Monk Pasang.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2729,2729,Water,1,The Storm,12,Gyatso,Aang needs to have freedom and fun. He needs to grow up as a normal boy.,Aang needs to have freedom and fun. He needs to grow up as a normal boy.,Aaron Ehasz,Lauren MacMullan,9.1 +2730,2730,Water,1,The Storm,12,Tashi,You cannot keep protecting him from his destiny.,You cannot keep protecting him from his destiny.,Aaron Ehasz,Lauren MacMullan,9.1 +2731,2731,Water,1,The Storm,12,Pasang,"Gyatso, I know you mean well, but you are letting your affection for the boy cloud your judgment.","Gyatso, I know you mean well, but you are letting your affection for the boy cloud your judgment.",Aaron Ehasz,Lauren MacMullan,9.1 +2732,2732,Water,1,The Storm,12,Gyatso,All I want is what is best for him.,All I want is what is best for him.,Aaron Ehasz,Lauren MacMullan,9.1 +2733,2733,Water,1,The Storm,12,Pasang,But what we need is what's best for the world. You and Aang must be separated! The Avatar will be sent away to the Eastern Air Temple to complete his training.,But what we need is what's best for the world. You and Aang must be separated! The Avatar will be sent away to the Eastern Air Temple to complete his training.,Aaron Ehasz,Lauren MacMullan,9.1 +2734,2734,Water,1,The Storm,12,Scene Description,"Aang is shown looking through a hole in the ceiling, shocked at the news that he just heard.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2735,2735,Water,1,The Storm,12,Katara,"That's awful, Aang. I don't know what to say.","That's awful, Aang. I don't know what to say.",Aaron Ehasz,Lauren MacMullan,9.1 +2736,2736,Water,1,The Storm,12,Aang,[Stands up.] How could they do that to me? They wanted to take away everything I knew and everyone I loved! [He activates the Avatar State.],How could they do that to me? They wanted to take away everything I knew and everyone I loved!,Aaron Ehasz,Lauren MacMullan,9.1 +2737,2737,Water,1,The Storm,12,Katara,Whoa! Hot cinders!,Whoa! Hot cinders!,Aaron Ehasz,Lauren MacMullan,9.1 +2738,2738,Water,1,The Storm,12,Scene Description,"Aang comes out of the Avatar State, walks to the fire, and sits down again.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2739,2739,Water,1,The Storm,12,Aang,I'm sorry I got so mad.,I'm sorry I got so mad.,Aaron Ehasz,Lauren MacMullan,9.1 +2740,2740,Water,1,The Storm,12,Katara,You have the right to be angry after the monks sent you away like that.,You have the right to be angry after the monks sent you away like that.,Aaron Ehasz,Lauren MacMullan,9.1 +2741,2741,Water,1,The Storm,12,Aang,"Well, that's not exactly what happened. [Flashback starts again, showing Aang looking out the window of his bedroom.] I was afraid and confused. I didn't know what to do.","Well, that's not exactly what happened. I was afraid and confused. I didn't know what to do.",Aaron Ehasz,Lauren MacMullan,9.1 +2742,2742,Water,1,The Storm,12,Scene Description,Flashback shows Aang lying on his bed before changing to Gyatso walking to Aang's room.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2743,2743,Water,1,The Storm,12,Gyatso,"Aang, I'm not going to let them take you away from me. Aang? [Gyatso is shown opening the door more, spotting the scroll, and opening it up. He gasps, and sees a storm coming outside the window.]","Aang, I'm not going to let them take you away from me. Aang?",Aaron Ehasz,Lauren MacMullan,9.1 +2744,2744,Water,1,The Storm,12,Aang,"[Still in present, but flashback playing still.] I never saw Gyatso again. [Flashback shows Aang and Appa through the storm, and how Aang got into the iceberg.] Next thing I knew, I was waking up in your arms after you found me in the iceberg.","I never saw Gyatso again. Next thing I knew, I was waking up in your arms after you found me in the iceberg.",Aaron Ehasz,Lauren MacMullan,9.1 +2745,2745,Water,1,The Storm,12,Scene Description,"Flashback shows Katara's face that was seen in ""The Boy in the Iceberg"". The flashback ends.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2746,2746,Water,1,The Storm,12,Katara,You ran away.,You ran away.,Aaron Ehasz,Lauren MacMullan,9.1 +2747,2747,Water,1,The Storm,12,Aang,And then the Fire Nation attacked our temple. My people needed me and I wasn't there to help.,And then the Fire Nation attacked our temple. My people needed me and I wasn't there to help.,Aaron Ehasz,Lauren MacMullan,9.1 +2748,2748,Water,1,The Storm,12,Katara,You don't know what would have-.,You don't know what would have-.,Aaron Ehasz,Lauren MacMullan,9.1 +2749,2749,Water,1,The Storm,12,Aang,The world needed me and I wasn't there to help.,The world needed me and I wasn't there to help.,Aaron Ehasz,Lauren MacMullan,9.1 +2750,2750,Water,1,The Storm,12,Katara,Aang ...,Aang ...,Aaron Ehasz,Lauren MacMullan,9.1 +2751,2751,Water,1,The Storm,12,Aang,The fisherman was right! I did turn my back on the world!,The fisherman was right! I did turn my back on the world!,Aaron Ehasz,Lauren MacMullan,9.1 +2752,2752,Water,1,The Storm,12,Katara,"You're being too hard on yourself, even if you did run away. I think it was meant to be. If you had stayed, you would have been killed along with all the other airbenders.","You're being too hard on yourself, even if you did run away. I think it was meant to be. If you had stayed, you would have been killed along with all the other airbenders.",Aaron Ehasz,Lauren MacMullan,9.1 +2753,2753,Water,1,The Storm,12,Aang,You don't know that.,You don't know that.,Aaron Ehasz,Lauren MacMullan,9.1 +2754,2754,Water,1,The Storm,12,Katara,I know it was meant to be this way. The world needs you now. You give people hope.,I know it was meant to be this way. The world needs you now. You give people hope.,Aaron Ehasz,Lauren MacMullan,9.1 +2755,2755,Water,1,The Storm,12,Scene Description,Scene changes back to Zuko's ship.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2756,2756,Water,1,The Storm,12,Iroh,"When Prince Zuko saw that it was his father who had come to duel him, he begged for mercy.","When Prince Zuko saw that it was his father who had come to duel him, he begged for mercy.",Aaron Ehasz,Lauren MacMullan,9.1 +2757,2757,Water,1,The Storm,12,Scene Description,Flashback shows a side overview of the Agni Kai chamber where Ozai is advancing on Zuko.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2758,2758,Water,1,The Storm,12,Young Zuko,"[Cut to a side-view of Zuko.] Please, Father. I only had the Fire Nation's best interest at heart. I'm sorry I spoke out of turn! [Slightly lowers his head.]","Please, Father. I only had the Fire Nation's best interest at heart. I'm sorry I spoke out of turn!",Aaron Ehasz,Lauren MacMullan,9.1 +2759,2759,Water,1,The Storm,12,Scene Description,Cut to a frontal shot from a worm's eye perspective of Ozai's silhouette walking up to Zuko.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2760,2760,Water,1,The Storm,12,Ozai,You will fight for your honor.,You will fight for your honor.,Aaron Ehasz,Lauren MacMullan,9.1 +2761,2761,Water,1,The Storm,12,Young Zuko,"[Frontal shot; kneels on his knees and forearms, while looking at the floor.] I meant you no disrespect. [Gazes up at his father, tears shimmering in his eyes as his voice starts to waiver.] I am your loyal son.",I meant you no disrespect. I am your loyal son.,Aaron Ehasz,Lauren MacMullan,9.1 +2762,2762,Water,1,The Storm,12,Ozai,"[Far off frontal shot of Zuko as Ozai's shadow and eventually his head come into view.] Rise and fight, Prince Zuko!","Rise and fight, Prince Zuko!",Aaron Ehasz,Lauren MacMullan,9.1 +2763,2763,Water,1,The Storm,12,Scene Description,Cut to a side-view from behind some of the spectators as Ozai reaches Zuko who lowers his head to the floor again.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2764,2764,Water,1,The Storm,12,Young Zuko,I won't fight you.,I won't fight you.,Aaron Ehasz,Lauren MacMullan,9.1 +2765,2765,Water,1,The Storm,12,Ozai,"You will learn respect, [Zuko pushes himself up on his knees and hands. Cut to a frontal shot of Zuko as he starts to shake.] and suffering will be your [Zuko looks up at Ozai, tears streaming down his face.] teacher.","You will learn respect,  and suffering will be your teacher.",Aaron Ehasz,Lauren MacMullan,9.1 +2766,2766,Water,1,The Storm,12,Scene Description,"Cut to a frontal view of Zhao, Iroh, and Azula in the crowd. While Iroh clenches his teeth and looks fearful and worried on Zuko's behalf, Zhao looks on with a smirk on his face, while Azula smiles and raises her left fist in front of her chest in anticipation.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2767,2767,Water,1,The Storm,12,Iroh,[Voice-over; Iroh closes his eyes and averts his head to the left.] I looked away.,I looked away.,Aaron Ehasz,Lauren MacMullan,9.1 +2768,2768,Water,1,The Storm,12,Scene Description,"As the sound of a fire blast is heard, Zuko is screaming ""no"", which echoes. While the faces of the spectators are brightened by the flames, the camera slowly zooms in on Iroh's averted face. The scene switches from the past to the present, where Iroh is sitting in the same manner.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2769,2769,Water,1,The Storm,12,Jee,I always thought that Prince Zuko was in a training accident.,I always thought that Prince Zuko was in a training accident.,Aaron Ehasz,Lauren MacMullan,9.1 +2770,2770,Water,1,The Storm,12,Iroh,"It was no accident. After the duel, the Fire Lord said that by refusing to fight, Zuko had shown shameful weakness. As punishment, he was banished and sent to capture the Avatar. Only then could he return with his honor.","It was no accident. After the duel, the Fire Lord said that by refusing to fight, Zuko had shown shameful weakness. As punishment, he was banished and sent to capture the Avatar. Only then could he return with his honor.",Aaron Ehasz,Lauren MacMullan,9.1 +2771,2771,Water,1,The Storm,12,Jee,So that's why he's so obsessed. Capturing the Avatar is the only chance he has of things returning to normal.,So that's why he's so obsessed. Capturing the Avatar is the only chance he has of things returning to normal.,Aaron Ehasz,Lauren MacMullan,9.1 +2772,2772,Water,1,The Storm,12,Iroh,Things will never return to normal. But the important thing is the Avatar gives Zuko hope.,Things will never return to normal. But the important thing is the Avatar gives Zuko hope.,Aaron Ehasz,Lauren MacMullan,9.1 +2773,2773,Water,1,The Storm,12,Scene Description,"Scene changes to show Zuko meditating, while having flashbacks of his younger life. He is stopped by a hit on the ship. Scene changes to Aang and Katara. The fisherman's wife appears.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2774,2774,Water,1,The Storm,12,Fisherman's wife,"Help! Oh, please help!","Help! Oh, please help!",Aaron Ehasz,Lauren MacMullan,9.1 +2775,2775,Water,1,The Storm,12,Katara,[Grabs lady and brings her near the fire.] It's okay. You're safe.,It's okay. You're safe.,Aaron Ehasz,Lauren MacMullan,9.1 +2776,2776,Water,1,The Storm,12,Fisherman's wife,But my husband isn't.,But my husband isn't.,Aaron Ehasz,Lauren MacMullan,9.1 +2777,2777,Water,1,The Storm,12,Katara,What do you mean? Where's Sokka?,What do you mean? Where's Sokka?,Aaron Ehasz,Lauren MacMullan,9.1 +2778,2778,Water,1,The Storm,12,Fisherman's wife,They haven't returned! They should have been back by now! And this storm is becoming a typhoon! They're caught out at sea!,They haven't returned! They should have been back by now! And this storm is becoming a typhoon! They're caught out at sea!,Aaron Ehasz,Lauren MacMullan,9.1 +2779,2779,Water,1,The Storm,12,Aang,I'm going to find him!,I'm going to find him!,Aaron Ehasz,Lauren MacMullan,9.1 +2780,2780,Water,1,The Storm,12,Katara,I'm going with you!,I'm going with you!,Aaron Ehasz,Lauren MacMullan,9.1 +2781,2781,Water,1,The Storm,12,Fisherman's wife,I'm staying here.,I'm staying here.,Aaron Ehasz,Lauren MacMullan,9.1 +2782,2782,Water,1,The Storm,12,Scene Description,The fisherman's wife is shown sitting down by the fire. Aang and Katara are shown about to leave on Appa.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2783,2783,Water,1,The Storm,12,Aang,We'll be back soon. I promise.,We'll be back soon. I promise.,Aaron Ehasz,Lauren MacMullan,9.1 +2784,2784,Water,1,The Storm,12,Scene Description,"Aang and Katara fly out. Scene changes to Zuko's ship, with Zuko on the deck.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2785,2785,Water,1,The Storm,12,Zuko,Where were we hit?,Where were we hit?,Aaron Ehasz,Lauren MacMullan,9.1 +2786,2786,Water,1,The Storm,12,Jee,I don't know!,I don't know!,Aaron Ehasz,Lauren MacMullan,9.1 +2787,2787,Water,1,The Storm,12,Iroh,Look!,Look!,Aaron Ehasz,Lauren MacMullan,9.1 +2788,2788,Water,1,The Storm,12,Zuko,The helmsman!,The helmsman!,Aaron Ehasz,Lauren MacMullan,9.1 +2789,2789,Water,1,The Storm,12,Scene Description,"Zuko and Lieutenant Jee are shown climbing up a ladder to help a man who is about to fall. Lightning goes down to the middle of the ship, where Iroh is. He uses redirection so it does not damage the ship. Scene changes to Katara and Aang looking for the fisherman and Sokka.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2790,2790,Water,1,The Storm,12,Katara,Where are they?,Where are they?,Aaron Ehasz,Lauren MacMullan,9.1 +2791,2791,Water,1,The Storm,12,Scene Description,"Appa is shown descending, hitting the water.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2792,2792,Water,1,The Storm,12,Aang,"Come on, Appa! The boat! There!","Come on, Appa! The boat! There!",Aaron Ehasz,Lauren MacMullan,9.1 +2793,2793,Water,1,The Storm,12,Scene Description,Zuko is shown spotting Appa.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2794,2794,Water,1,The Storm,12,Zuko,The Avatar!,The Avatar!,Aaron Ehasz,Lauren MacMullan,9.1 +2795,2795,Water,1,The Storm,12,Jee,"What do you want to do, sir?","What do you want to do, sir?",Aaron Ehasz,Lauren MacMullan,9.1 +2796,2796,Water,1,The Storm,12,Zuko,Let him go. We need to get this ship to safety.,Let him go. We need to get this ship to safety.,Aaron Ehasz,Lauren MacMullan,9.1 +2797,2797,Water,1,The Storm,12,Iroh,Then we must head directly into the eye of the storm.,Then we must head directly into the eye of the storm.,Aaron Ehasz,Lauren MacMullan,9.1 +2798,2798,Water,1,The Storm,12,Scene Description,Scene changes to show Sokka and the fisherman rocking back and forth on the boat.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2799,2799,Water,1,The Storm,12,Sokka,I'm too young to die!,I'm too young to die!,Aaron Ehasz,Lauren MacMullan,9.1 +2800,2800,Water,1,The Storm,12,Fisherman,"I'm not, but I still don't wanna!","I'm not, but I still don't wanna!",Aaron Ehasz,Lauren MacMullan,9.1 +2801,2801,Water,1,The Storm,12,Scene Description,"Aang shows up. He jumps down onto the boat. As a pole is falling down, Aang brings up fours pouts of water, splitting the pole in half. After the pole splits in half, Sokka and the fisherman are shown hugging each other. A rope is seen.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2802,2802,Water,1,The Storm,12,Aang,Hang onto the rope.,Hang onto the rope.,Aaron Ehasz,Lauren MacMullan,9.1 +2803,2803,Water,1,The Storm,12,Scene Description,"The fisherman and Sokka do so. Appa starts flying again. The rope swings up, making Sokka and the fisherman land on the saddle. A big wave hits the gang underwater. Everyone is shown floating away from Appa. Aang goes into the Avatar State and saves everyone. They all go back to the cave where the fisherman's wife is. Scene changes to Zuko and Iroh together.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2804,2804,Water,1,The Storm,12,Zuko,"Uncle, I'm sorry.","Uncle, I'm sorry.",Aaron Ehasz,Lauren MacMullan,9.1 +2805,2805,Water,1,The Storm,12,Iroh,Your apology is accepted.,Your apology is accepted.,Aaron Ehasz,Lauren MacMullan,9.1 +2806,2806,Water,1,The Storm,12,Scene Description,"Scene changes to Appa, Katara, Aang, Sokka, and the fisherman at the cave. The fisherman's wife runs up to the fisherman and hugs him.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2807,2807,Water,1,The Storm,12,Fisherman's wife,"Oh, you're alive! You owe this boy an apology!","Oh, you're alive! You owe this boy an apology!",Aaron Ehasz,Lauren MacMullan,9.1 +2808,2808,Water,1,The Storm,12,Aang,He doesn't have to apologize.,He doesn't have to apologize.,Aaron Ehasz,Lauren MacMullan,9.1 +2809,2809,Water,1,The Storm,12,Fisherman,"What if, instead of an apology, I give him a free fish and we call it even?","What if, instead of an apology, I give him a free fish and we call it even?",Aaron Ehasz,Lauren MacMullan,9.1 +2810,2810,Water,1,The Storm,12,Aang,"Actually, I don't eat meat.","Actually, I don't eat meat.",Aaron Ehasz,Lauren MacMullan,9.1 +2811,2811,Water,1,The Storm,12,Fisherman,Fish ain't meat!,Fish ain't meat!,Aaron Ehasz,Lauren MacMullan,9.1 +2812,2812,Water,1,The Storm,12,Sokka,"Seriously, you're still going to pay me, right?","Seriously, you're still going to pay me, right?",Aaron Ehasz,Lauren MacMullan,9.1 +2813,2813,Water,1,The Storm,12,Scene Description,The fisherman hands Sokka a fish. Katara and Aang are shown in a corner of the cave.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2814,2814,Water,1,The Storm,12,Aang,"Katara, I think you were right before. I'm done dwelling on the past.","Katara, I think you were right before. I'm done dwelling on the past.",Aaron Ehasz,Lauren MacMullan,9.1 +2815,2815,Water,1,The Storm,12,Katara,Really?,Really?,Aaron Ehasz,Lauren MacMullan,9.1 +2816,2816,Water,1,The Storm,12,Aang,I can't make guesses about what would have turned out if I hadn't run away. I'm here now and I'm going to make the most out of it.,I can't make guesses about what would have turned out if I hadn't run away. I'm here now and I'm going to make the most out of it.,Aaron Ehasz,Lauren MacMullan,9.1 +2817,2817,Water,1,The Storm,12,Katara,I don't think you're gonna have those nightmares anymore.,I don't think you're gonna have those nightmares anymore.,Aaron Ehasz,Lauren MacMullan,9.1 +2818,2818,Water,1,The Storm,12,Fisherman,"And if you weren't here now, well, I guess I wouldn't be either. Thank you for saving my life, Avatar.","And if you weren't here now, well, I guess I wouldn't be either. Thank you for saving my life, Avatar.",Aaron Ehasz,Lauren MacMullan,9.1 +2819,2819,Water,1,The Storm,12,Sokka,Do you hear that? It stopped raining.,Do you hear that? It stopped raining.,Aaron Ehasz,Lauren MacMullan,9.1 +2820,2820,Water,1,The Storm,12,Scene Description,"Everyone goes outside. Appa shakes raindrops off himself, splashing everyone.",NA,Aaron Ehasz,Lauren MacMullan,9.1 +2821,2821,Water,1,The Storm,12,Aang,Appa!,Appa!,Aaron Ehasz,Lauren MacMullan,9.1 +2822,2822,Water,1,The Storm,12,Scene Description,Fade to credits.,NA,Aaron Ehasz,Lauren MacMullan,9.1 +2823,2823,Water,1,The Blue Spirit,13,Scene Description,"The scene opens on a messenger hawk flying toward an imposing Fire Nation fortress as the scene changes to its tower. The camera pans across the tri-level fortress and it's tall balconies before settling on a courtyard where a group of archers stand at the ready. Switch to a closer shot of a single archer. The archer draws his bow and releases three times in succession, sharply and accurately. Switch to a shot of the bowman's target. The first arrow strikes dead center, the second arrow splits the first arrow in half, and the third arrow splits the second arrow in half and completely impales the target. Switch back to a shot of the archers as they draw their bows. The camera pans up to a balcony where Colonel Shinu is arguing heatedly with Commander Zhao.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2824,2824,Water,1,The Blue Spirit,13,Shinu,"[In response to Zhao; somewhat angrily.] Absolutely not! The Yuyan Archers stay here. Your request is denied, Commander Zhao.","Absolutely not! The Yuyan Archers stay here. Your request is denied, Commander Zhao.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2825,2825,Water,1,The Blue Spirit,13,Zhao,"Colonel Shinu, please reconsider ... Their precision is legendary. The Yuyan can pin a fly to a tree from one hundred yards away ... without killing it. [Annoyed.] You're wasting their talents using them as mere security guards.","Colonel Shinu, please reconsider ... Their precision is legendary. The Yuyan can pin a fly to a tree from one hundred yards away ... without killing it. You're wasting their talents using them as mere security guards.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2826,2826,Water,1,The Blue Spirit,13,Shinu,"I can do whatever I want with their talents, they're my archers, and what I say goes.","I can do whatever I want with their talents, they're my archers, and what I say goes.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2827,2827,Water,1,The Blue Spirit,13,Scene Description,"Zhao turns to face the colonel, frustrated and angry.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2828,2828,Water,1,The Blue Spirit,13,Zhao,But my search for the Avatar is-,But my search for the Avatar is-,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2829,2829,Water,1,The Blue Spirit,13,Shinu,"[Cutting Zhao off mid-sentence while getting close to him and scoffing angrily.] Is nothing but a vanity project! We're fighting a real war here, and I need every man I've got, commander.","Is nothing but a vanity project! We're fighting a real war here, and I need every man I've got, commander.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2830,2830,Water,1,The Blue Spirit,13,Zhao,But-!,But-!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2831,2831,Water,1,The Blue Spirit,13,Shinu,[Furiously.] That's final! I don't wanna hear another word about it!,That's final! I don't wanna hear another word about it!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2832,2832,Water,1,The Blue Spirit,13,Scene Description,"Zhao fumes. In the background, the cry of a messenger hawk is heard. Camera shifts to an above view and follows a messenger hawk as it reaches Colonel Shinu. Shinu opens the container on the hawk's back and reads the message inside with a puzzled expression.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2833,2833,Water,1,The Blue Spirit,13,Zhao,[Intrigued.] News from Fire Lord Ozai?,News from Fire Lord Ozai?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2834,2834,Water,1,The Blue Spirit,13,Scene Description,"Shinu hands Zhao the message with irritation. Zhao takes the message, rudely brushing past the Colonel as he reads the news. Zhao smiles smugly.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2835,2835,Water,1,The Blue Spirit,13,Zhao,[Pleased.] It appears I've been promoted to Admiral. My request ... is now an order.,It appears I've been promoted to Admiral. My request ... is now an order.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2836,2836,Water,1,The Blue Spirit,13,Scene Description,"Colonel Shinu bows respectfully, and leaves. +Shot of the Yuyan archers practicing. Zhao surveys their work with a glad expression playing on his face. The camera pans up to the roof of the tower where a mysterious figure in a blue mask is perched, seemingly for the entire conversation. The masked man disappears into the shadows. Switch to a shot of a vast mountain range. The landscape is blanketed with a ruined city. +The scene changes to a shot inside one of the ruined buildings where Team Avatar has set up camp. Sokka is lying against Appa, huddled in his sleeping bag. He is coughing, and there is sweat on his face.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2837,2837,Water,1,The Blue Spirit,13,Katara,[Pressing a wet rag onto Sokka's forehead.] This should bring your fever down.,This should bring your fever down.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2838,2838,Water,1,The Blue Spirit,13,Sokka,You know what I love about Appa the most? His sense of humor.,You know what I love about Appa the most? His sense of humor.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2839,2839,Water,1,The Blue Spirit,13,Katara,That's nice. I'll tell him.,That's nice. I'll tell him.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2840,2840,Water,1,The Blue Spirit,13,Scene Description,Appa growls.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2841,2841,Water,1,The Blue Spirit,13,Sokka,[Laughs.] Classic Appa.,Classic Appa.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2842,2842,Water,1,The Blue Spirit,13,Aang,How's Sokka doing?,How's Sokka doing?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2843,2843,Water,1,The Blue Spirit,13,Katara,"Not so good, being out in that storm really did a number on him.","Not so good, being out in that storm really did a number on him.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2844,2844,Water,1,The Blue Spirit,13,Scene Description,Sokka starts sniffing pitifully.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2845,2845,Water,1,The Blue Spirit,13,Aang,I couldn't find any ginger root for the tea. But I found a map. There's an herbalist institute on top of that mountain. We could probably find a cure for Sokka there.,I couldn't find any ginger root for the tea. But I found a map. There's an herbalist institute on top of that mountain. We could probably find a cure for Sokka there.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2846,2846,Water,1,The Blue Spirit,13,Katara,"Aang, he's in no condition for travel. Sokka just needs more rest. I'm sure he'll be better by tomorrow. [Starts coughing.]","Aang, he's in no condition for travel. Sokka just needs more rest. I'm sure he'll be better by tomorrow.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2847,2847,Water,1,The Blue Spirit,13,Aang,Not you too!,Not you too!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2848,2848,Water,1,The Blue Spirit,13,Katara,"Relax, it was just a little cough. I'm fi- [She coughs again, this time with greater force, and lightly groans after.]","Relax, it was just a little cough. I'm fi-","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2849,2849,Water,1,The Blue Spirit,13,Aang,[Shielding his face.] That's how Sokka started yesterday. Now look at him! He thinks he's an earthbender!,That's how Sokka started yesterday. Now look at him! He thinks he's an earthbender!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2850,2850,Water,1,The Blue Spirit,13,Sokka,"[Delirious.] Take that, you rock! [He flails his arms as if he is hitting something.]","Take that, you rock!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2851,2851,Water,1,The Blue Spirit,13,Aang,"A few more hours and you'll be talking nonsense, too. I'm going to go find some medicine! [He grabs his glider and begins to head out just as a flash of lightning strikes.] Uh, maybe it's safer if I go on foot. [To Appa and Momo.] Keep an eye on them guys. [Appa groans while Momo chitters.]","A few more hours and you'll be talking nonsense, too. I'm going to go find some medicine! Uh, maybe it's safer if I go on foot. Keep an eye on them guys.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2852,2852,Water,1,The Blue Spirit,13,Sokka,"Ha, ha! You guys are killing me!","Ha, ha! You guys are killing me!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2853,2853,Water,1,The Blue Spirit,13,Scene Description,"Aang jumps, and uses airbending to help him run faster. The scene switches to Prince Zuko's ship.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2854,2854,Water,1,The Blue Spirit,13,Captain,"We haven't been able to pick up the Avatar's trail since the storm, but if we continue heading northeast ... [A larger Fire Nation ship pulls up next to theirs.]","We haven't been able to pick up the Avatar's trail since the storm, but if we continue heading northeast ...","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2855,2855,Water,1,The Blue Spirit,13,Zuko,What do they want?,What do they want?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2856,2856,Water,1,The Blue Spirit,13,Iroh,"Perhaps, a sporting game of Pai Sho!","Perhaps, a sporting game of Pai Sho!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2857,2857,Water,1,The Blue Spirit,13,Scene Description,A soldier from the other ship walks in.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2858,2858,Water,1,The Blue Spirit,13,Soldier,[To Zuko.] The hunt for the Avatar has been given prime importance. All information regarding the Avatar must be reported directly to Admiral Zhao.,The hunt for the Avatar has been given prime importance. All information regarding the Avatar must be reported directly to Admiral Zhao.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2859,2859,Water,1,The Blue Spirit,13,Iroh,"Zhao has been promoted? Well, good for him! [As Iroh makes a move in his Pai Sho game, another player slaps his hand against his own forehead as if he lost.]","Zhao has been promoted? Well, good for him!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2860,2860,Water,1,The Blue Spirit,13,Zuko,[Looking down.] I've got nothing to report to Admiral Zhao. Now get off my ship and let us pass.,I've got nothing to report to Admiral Zhao. Now get off my ship and let us pass.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2861,2861,Water,1,The Blue Spirit,13,Soldier,Admiral Zhao is not allowing ships in or out of this area.,Admiral Zhao is not allowing ships in or out of this area.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2862,2862,Water,1,The Blue Spirit,13,Zuko,Off my ship!,Off my ship!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2863,2863,Water,1,The Blue Spirit,13,Iroh,[Iroh wins his game.] Excellent! I take the pot! [A crew member punches himself.] But you're all improving! I'm certain you will win if we play again.,Excellent! I take the pot! But you're all improving! I'm certain you will win if we play again.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2864,2864,Water,1,The Blue Spirit,13,Scene Description,The scene switches to a hidden outpost. One soldier is looking at Aang's wanted poster while the other is on watch duty.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2865,2865,Water,1,The Blue Spirit,13,Scout #1,[Reading Aang's wanted poster out loud.] Says here that the Avatar can create tornadoes and run faster than the wind. Pretty amazing!,Says here that the Avatar can create tornadoes and run faster than the wind. Pretty amazing!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2866,2866,Water,1,The Blue Spirit,13,Scout #2,"Ah, that's just a bunch of Fire Lord propaganda! There's no way that's true!","Ah, that's just a bunch of Fire Lord propaganda! There's no way that's true!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2867,2867,Water,1,The Blue Spirit,13,Scene Description,"The scout returns to his task and sees a cloud moving swiftly along the ground which turns out to be Aang. Aang runs by wrecking the outpost on accident. One of the scouts blows a horn signaling that Aang has been spotted. +The scene changes back to the gang's camp.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2868,2868,Water,1,The Blue Spirit,13,Sokka,"[Weakly.] Katara, please, water.","Katara, please, water.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2869,2869,Water,1,The Blue Spirit,13,Katara,"[Also weak.] Listen carefully, Momo. [Holds up a water skin.] I need you to take this to the river, and fill it with water. [She is shown through Momo's eyes, speaking gibberish.] Got it? [Momo takes the skin and flies off.]","Listen carefully, Momo. I need you to take this to the river, and fill it with water. Got it?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2870,2870,Water,1,The Blue Spirit,13,Scene Description,Aang runs up the stairs and enters the green house.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2871,2871,Water,1,The Blue Spirit,13,Aang,"[Speaking fast.] Hello, I'm sorry to barge in like this, but I need some medicine for my friends, they have fevers and they were coughing- [Gets cut off by the herbalist.]","Hello, I'm sorry to barge in like this, but I need some medicine for my friends, they have fevers and they were coughing-","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2872,2872,Water,1,The Blue Spirit,13,Herbalist,"Settle down, young man. Your friends are going to be fine. I've been up here for over forty years you know, used to be others, but they all left years ago. [She pets Miyuki who begins to purr.] Now it's just me and Miyuki.","Settle down, young man. Your friends are going to be fine. I've been up here for over forty years you know, used to be others, but they all left years ago. Now it's just me and Miyuki.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2873,2873,Water,1,The Blue Spirit,13,Aang,That's nice.,That's nice.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2874,2874,Water,1,The Blue Spirit,13,Herbalist,"Wounded Earth Kingdom troops still come by now and again, brave boys, and thanks to my remedies they always leave in better shape they when they arrive.","Wounded Earth Kingdom troops still come by now and again, brave boys, and thanks to my remedies they always leave in better shape they when they arrive.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2875,2875,Water,1,The Blue Spirit,13,Aang,That's nice. Are you almost done?,That's nice. Are you almost done?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2876,2876,Water,1,The Blue Spirit,13,Herbalist,"Hold on, I just need to add one last ingredient. [Walking among the shrubbery, looking around and muttering to herself.] Oh, sandalwood ... oh, er, uh, that won't do, banana leaf? Ah, nope, uh, ginger root, uh uh, oh where is that pesky little plant?","Hold on, I just need to add one last ingredient. Oh, sandalwood ... oh, er, uh, that won't do, banana leaf? Ah, nope, uh, ginger root, uh uh, oh where is that pesky little plant?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2877,2877,Water,1,The Blue Spirit,13,Scene Description,"Aang looks exasperated in the background and face-palms himself. Cut to Zuko's ship steaming by the shore, the sunset in its last stages in the background. Cut to Zuko practicing firebending on the foredeck in the background. Iroh's arm comes into the frame.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2878,2878,Water,1,The Blue Spirit,13,Iroh,Is everything okay? It's been almost an hour and you haven't given the men an order.,Is everything okay? It's been almost an hour and you haven't given the men an order.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2879,2879,Water,1,The Blue Spirit,13,Zuko,I don't care what they do.,I don't care what they do.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2880,2880,Water,1,The Blue Spirit,13,Iroh,Don't give up hope yet. You can still find the Avatar before Zhao.,Don't give up hope yet. You can still find the Avatar before Zhao.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2881,2881,Water,1,The Blue Spirit,13,Zuko,"[Turning back, desperation and fear on his face.] How, Uncle? With Zhao's resources, it's just a matter of time before he captures the Avatar. [Turns back out to sea and whispers.] My honor, my throne, my country, I'm about to lose them all.","How, Uncle? With Zhao's resources, it's just a matter of time before he captures the Avatar. My honor, my throne, my country, I'm about to lose them all.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2882,2882,Water,1,The Blue Spirit,13,Scene Description,"Cut back to an exterior shot of the herbalist institute, followed by a shot of the old woman in front of some bushes.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2883,2883,Water,1,The Blue Spirit,13,Herbalist,Ah! Plum blossom! [She plucks a flower from the tree.],Ah! Plum blossom!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2884,2884,Water,1,The Blue Spirit,13,Aang,"[He lifts up his head off the table.] Finally! [Close-up of the mixing bowl as the herbalist drops the flower into the mixture, and Aang grabs for the bowl.] Thanks for all your help!",Finally! Thanks for all your help!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2885,2885,Water,1,The Blue Spirit,13,Scene Description,"The scene moves back, just as Aang wants to yank the bowl out of the herbalist's hands, and she slaps his hands roughly away with her spoon.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2886,2886,Water,1,The Blue Spirit,13,Herbalist,Hands off!,Hands off!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2887,2887,Water,1,The Blue Spirit,13,Aang,Ow!,Ow!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2888,2888,Water,1,The Blue Spirit,13,Herbalist,"[Close-up, holding her spoon at the ready for a new attack.] What do you think you're doing?",What do you think you're doing?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2889,2889,Water,1,The Blue Spirit,13,Aang,"[Rubs his hand, flinching.] Taking the cure to my friends.",Taking the cure to my friends.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2890,2890,Water,1,The Blue Spirit,13,Herbalist,[Lowers her spoon; laughs.] This isn't a cure! It's Miyuki's dinner. Plum blossom is her favorite.,This isn't a cure! It's Miyuki's dinner. Plum blossom is her favorite.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2891,2891,Water,1,The Blue Spirit,13,Aang,What about my friends?,What about my friends?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2892,2892,Water,1,The Blue Spirit,13,Herbalist,"Well, all they need are some frozen wood frogs. There's plenty down in the valley swamp.","Well, all they need are some frozen wood frogs. There's plenty down in the valley swamp.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2893,2893,Water,1,The Blue Spirit,13,Aang,[Confused.] What am I supposed to do with frozen frogs?,What am I supposed to do with frozen frogs?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2894,2894,Water,1,The Blue Spirit,13,Herbalist,"Why, suck on them of course!","Why, suck on them of course!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2895,2895,Water,1,The Blue Spirit,13,Aang,[Shocked and disgusted; his eye twitches.] Suck on them?,Suck on them?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2896,2896,Water,1,The Blue Spirit,13,Herbalist,"The frog skin excretes a substance that will cure your friends. Be sure to get plenty because once those little critters thaw out, they're useless!","The frog skin excretes a substance that will cure your friends. Be sure to get plenty because once those little critters thaw out, they're useless!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2897,2897,Water,1,The Blue Spirit,13,Aang,"You're insane, aren't you?","You're insane, aren't you?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2898,2898,Water,1,The Blue Spirit,13,Herbalist,"[Crazily.] That's right! Well, don't stand there all day! Go!","That's right! Well, don't stand there all day! Go!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2899,2899,Water,1,The Blue Spirit,13,Scene Description,Aang runs out and the storm gets worse; he wipes his face from the excessive rainfall. Several arrows comes out of nowhere and pins Aang's pants to the ground; he airbends a shield sending some off them away. Aang removes one.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2900,2900,Water,1,The Blue Spirit,13,Aang,"Uh ... I think you dropped this ... [Screams as he sees the Yuyan Archers taking aim at him. Panicking, he frees himself from the arrow that had pinned his foot to the ground and runs. He falls off a cliff into a swamp and finds the frozen frogs.] A frog!",Uh ... I think you dropped this ... A frog!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2901,2901,Water,1,The Blue Spirit,13,Scene Description,"Aang sticks the frog in his shirt and manages to get four more before getting one of his sleeves pinned to a rock. Aang waterbends an ice wall in front of himself. An arrow strikes the wall before two more land in the same spot and slice the arrows that came before it. The ice cracks and another set of arrows pin his other sleeve before a net is launched at him. +The scene cuts to show Aang bounded at his legs and arms with chains, barely able to move. He looks angry and struggles against the chains.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2902,2902,Water,1,The Blue Spirit,13,Zhao,"So this is the great Avatar. Master of all the elements. I don't know how you've managed to elude the Fire Nation for a hundred years, but your little game of hide and seek is over.","So this is the great Avatar. Master of all the elements. I don't know how you've managed to elude the Fire Nation for a hundred years, but your little game of hide and seek is over.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2903,2903,Water,1,The Blue Spirit,13,Aang,[Angry.] I've never hidden from you! Untie me and I'll fight you right now!,I've never hidden from you! Untie me and I'll fight you right now!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2904,2904,Water,1,The Blue Spirit,13,Zhao,"Uhh, no. Tell me, how does it feel to be the only airbender left? Do you miss your people? [Aang looks down sadly.] Don't worry, you won't be killed like they were. [Aang looks angry again.] See, if you die you will just be reborn and the Fire Nation would have to start searching all over again. So I'll keep you alive, but just barely. [Aang takes a deep breath and blows at gale force at Zhao, who falls over.] Blow all the wind you want, but your situation is futile. There is no escaping this fortress, and no one is coming to rescue you.","Uhh, no. Tell me, how does it feel to be the only airbender left? Do you miss your people? Don't worry, you won't be killed like they were. See, if you die you will just be reborn and the Fire Nation would have to start searching all over again. So I'll keep you alive, but just barely. Blow all the wind you want, but your situation is futile. There is no escaping this fortress, and no one is coming to rescue you.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2905,2905,Water,1,The Blue Spirit,13,Scene Description,Zhao exits the room with the door slamming behind him. Back to Katara and Sokka snuggled up in their sleeping bags which lie between Appa's feet. Sokka has a coughing fit.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2906,2906,Water,1,The Blue Spirit,13,Sokka,[Weakly.] Water ...,Water ...,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2907,2907,Water,1,The Blue Spirit,13,Katara,[Weakly.] Momo should be back any minute.,Momo should be back any minute.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2908,2908,Water,1,The Blue Spirit,13,Scene Description,"Momo jumps into the shot, chittering happily. He jumps up close to Katara. He drops a dead mouse on to her chest. She looks at it in disgust.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2909,2909,Water,1,The Blue Spirit,13,Katara,"[Weakly; in disgust.] Ugh! No, Momo, water. Wa-ter! [Momo's ear go straight up. He jumps off her and scampers.] Aang, what in the world is taking you so long?","Ugh! No, Momo, water. Wa-ter! Aang, what in the world is taking you so long?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2910,2910,Water,1,The Blue Spirit,13,Scene Description,"The scene changes to an overhead shot of Aang still bound between the pillars, still trying to get out of the chains. The scene changes again, to several exterior night shots of the fortress, culminating in a long shot of the Blue Spirit. The camera zooms in three step changes to a close-up of the Blue Spirit, who moves left. Cut to a view of the road leading to the fortress where a wagon is making its way toward the gate. Cut to a view of the undercarriage of the wagon as it passes. The Blue Spirit is holding on to the underside of the wagon. The wagon reaches the gate.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2911,2911,Water,1,The Blue Spirit,13,Guard,All clear.,All clear.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2912,2912,Water,1,The Blue Spirit,13,Scene Description,"A gate guard looks at the wagon and walks around it. When the guard checks the undercarriage, the Blue Spirit is gone. The guard gets back up. Cut to a wider shot of the wagon and the guards around it.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2913,2913,Water,1,The Blue Spirit,13,Guard,All clear. Go on in.,All clear. Go on in.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2914,2914,Water,1,The Blue Spirit,13,Scene Description,Shift to a view from inside the wagon where the Blue Spirit has hidden himself; cut to an overhead shot of the wagon as it enters the first of the fortress' three gates. The shot pans up to rest on the massive central tower where Aang is held prisoner. Cut to a view of the first courtyard where the boxes in the wagon have been unloaded. The Blue Spirit runs from them and ducks into the shadows. Cut to a shot of an ornate balcony with bonfire pots on either side. The balcony is festooned with gold and red spades. Admiral Zhao appears flanked by attendants. During his speech the view cuts to show the innermost courtyard full of Fire Nation soldiers standing at attention.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2915,2915,Water,1,The Blue Spirit,13,Zhao,"We are the sons and daughters of fire, the superior element! Until today only one thing stood our path to victory, the Avatar. I am here to tell you that he is now my prisoner! [The crowd cheers.] This is the year Sozin's Comet returns to grant us its power! [The crowd cheers.] This is the year the Fire Nation breaks through the walls of Ba Sing Se and burns the city to the ground!","We are the sons and daughters of fire, the superior element! Until today only one thing stood our path to victory, the Avatar. I am here to tell you that he is now my prisoner! This is the year Sozin's Comet returns to grant us its power! This is the year the Fire Nation breaks through the walls of Ba Sing Se and burns the city to the ground!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2916,2916,Water,1,The Blue Spirit,13,Scene Description,"As Zhao speaks, various shots are seen of the Blue Spirit steadily and stealthily infiltrating the fortress. Cut back to Aang, still struggling fruitlessly against his chains. He finally stops, breathing heavily. It's useless. Suddenly, frogs start leaping out of his shirt.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2917,2917,Water,1,The Blue Spirit,13,Aang,"[To the frogs.] What? No! Don't leave, frogs! My friends are sick and they need you! Please go back to being frozen!","What? No! Don't leave, frogs! My friends are sick and they need you! Please go back to being frozen!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2918,2918,Water,1,The Blue Spirit,13,Scene Description,"He begins to struggle again as the frogs hop away toward the door, croaking. Cut to the four guards standing outside the chamber. They begin to look confused when they hear croaking. They look down to see the frogs coming from underneath the door. Suddenly they look up as a Fire Nation soldier's helmet comes bouncing down the corridor toward them. One of the guards walks up the corridor and turns right at the first junction, disappearing from view. A gout of flame erupts from the cross hallway as well as the sound of a brief scuffle. Two more guards go up to the junction and turn right, firebending stances at the ready. Cut to a view looking down the cross hallway. The first guard who went is hanging from the ceiling, tied up. Shift to the hanging soldier and pan up to reveal the Blue Spirit on the ceiling above the two new combatants. He drops down and melee begins, but it is over quickly. Cut back to the last guards, where they now see the Blue Spirit at the junction. +Cut to a view of the door to Aang's chamber. The lone guard grabs the alarm horn next to him, but a knife knocks it out of his hand. The guard lets loose a gout of flame at the Blue Spirit as he runs down the hall toward the door, but the intruder extinguishes the blast with a bucket of water, and proceeds to sweeps the guard's feet out from under him with the empty bucket. Cut to Aang still struggling inside the chamber. He stops and looks at the noises of violence coming from through door. These stop abruptly and are replaced by the sound of the lock turning in the door. The door opens and the Blue Spirit enters. He brandishes two curved swords and runs forward to Aang, who screams in fear. The Blue Spirit approaches and two sword cuts are heard. Aang pulls his arms back in surprise – the Blue Spirit has freed him. He looks at his liberator in wonder. The Blue Spirit comes closer and cuts his remaining bonds, turns and walks back toward the door.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2919,2919,Water,1,The Blue Spirit,13,Aang,"Who are you? What's going on? Are you here to rescue me? [The Blue Spirit opens the door and motions for him to follow.] I'll take that as a ""yes.""","Who are you? What's going on? Are you here to rescue me? I'll take that as a ""yes.""","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2920,2920,Water,1,The Blue Spirit,13,Scene Description,Aang follows him out past the gagged and tied guard at the door to his chamber. He hears frog noises and turns to see his half-frozen frogs crawling on the floor.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2921,2921,Water,1,The Blue Spirit,13,Aang,"My frogs! Come back! And stop thawing out! [The Blue Spirit comes back, picks him up by the collar and carries him out.] Wait! My friends need to suck on those frogs!",My frogs! Come back! And stop thawing out! Wait! My friends need to suck on those frogs!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2922,2922,Water,1,The Blue Spirit,13,Scene Description,"Meanwhile, back at the run-down temple, Momo has succeeded in piling up mountains of junk around Katara, but no water. Momo returns again with a crown.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2923,2923,Water,1,The Blue Spirit,13,Katara,"[With a weak, sickly voice.] How many times do I have to tell you, Momo? We need water, wa-ter. Oh forget it. Aang, please, hurry.","How many times do I have to tell you, Momo? We need water, wa-ter. Oh forget it. Aang, please, hurry.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2924,2924,Water,1,The Blue Spirit,13,Sokka,"[Delirious.] Who's this ""Aang"" kid you keep talking about, Your Highness? [Katara gets an annoyed look on her face.]","Who's this ""Aang"" kid you keep talking about, Your Highness?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2925,2925,Water,1,The Blue Spirit,13,Scene Description,"Scene shifts back to a few exterior shots of the fortress before switching to Aang and the Blue Spirit walking silently in the sewer system underneath the fortress. Soldiers walk back and forth above them. They hope out of a grate and into one of the courtyards. Cut to Zhao walking in one of the torch-lit corridors of the fortress, followed by a scribe.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2926,2926,Water,1,The Blue Spirit,13,Zhao,"I want a full transcription of my speech sent to the Fire Lord, along with glowing testimonials from all of the ranking officers present, and –","I want a full transcription of my speech sent to the Fire Lord, along with glowing testimonials from all of the ranking officers present, and –","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2927,2927,Water,1,The Blue Spirit,13,Scene Description,"He cuts himself off as he hears moans. Cut to Zhao's right, where the soldiers that the Blue Spirit tied still lie. Zhao, upset, slams open the door to Aang's prison cell. It is empty, except for a frog which croaks at him from the floor. Zhao turns in anger and leaves, the scribe in tow.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2928,2928,Water,1,The Blue Spirit,13,Scribe,"Sir, should I hold off sending that speech to the Fire Lord?","Sir, should I hold off sending that speech to the Fire Lord?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2929,2929,Water,1,The Blue Spirit,13,Scene Description,Cut back to the two would-be escapees who are now scaling a rope on the innermost wall of the fortress. They are spotted and the view zooms out as one of the guards shouts.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2930,2930,Water,1,The Blue Spirit,13,Soldier,"There, on the wall!","There, on the wall!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2931,2931,Water,1,The Blue Spirit,13,Scene Description,"A soldier appears at the top of the wall they are climbing. He cuts the rope and the pair fall down the wall, Aang screaming. Cut to side-view where Aang airbends them to a soft landing. When the dust clears, the Blue Spirit unsheathes his swords and they run. Cut to Zhao on the ornate balcony.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2932,2932,Water,1,The Blue Spirit,13,Zhao,"[Shouting.] The Avatar has escaped! Close all the gates immediately! [Cut to the escapees running, Aang passes the Blue Spirit.]",The Avatar has escaped! Close all the gates immediately!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2933,2933,Water,1,The Blue Spirit,13,Aang,Stay close to me!,Stay close to me!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2934,2934,Water,1,The Blue Spirit,13,Scene Description,"The third gate is closing in front of them, as are the two beyond it, and it is blocked by many soldiers. Aang airbends a blast of air that blows them out of the way. Aang makes for the gate, but the Blue Spirit gets involved in melee and has to stop and fend them off. Aang turns to see the Blue Spirit in trouble. He grabs a spear from a guard near him, airbends him out of the way, spins it around and breaks the head off the spear on the ground and launches back into battle to save his new friend. The gate closes behind him. The Blue Spirit is surrounded, but Aang airbends them all out of the way. With a mighty effort, he catapults the Blue Spirit to the top of the third wall. +He is instantly surrounded, but Aang appears using the stick as a helicopter blade. He plucks the Blue Spirit off the wall and heads into the next courtyard. Cut to a close-up of Aang struggling to keep them aloft. The Blue Spirit uses his swords to knock the spears sent up at them by the guards. They barely next the top of the next wall as they crash unceremoniously onto the battlement. Aang's stick goes spinning away as guards instantly rush them. Aang runs for his stick, but a guard stops him, taking several swings at Aang with his sword. The Blue Spirit throws the guard over the wall. Aang airbends the other guards off the wall. +Cut to a wide shot of the second wall, where more soldiers are scaling ladders. Aang and the Blue Spirit knock off the soldiers as they reach the top. With two mighty blasts, Aang depopulates the two scaling ladders nearest him as the Blue Spirit knocks the one final soldier off his. Aang brings over his two scaling ladders and steps onto the one the Blue Spirit has just emptied. He hands one ladder to the Blue Spirit.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2935,2935,Water,1,The Blue Spirit,13,Aang,Take this. Jump on my back!,Take this. Jump on my back!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2936,2936,Water,1,The Blue Spirit,13,Scene Description,"The Blue Spirit complies and Aang begins to use the ladders as massive stilts, shedding one each time a step is taken. Cut to a wide shot of the second courtyard, where dawn is approaching in the background. The first ladder shed still has some Fire Nation soldiers on it, but it falls into the dust.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2937,2937,Water,1,The Blue Spirit,13,Aang,Give me the next one!,Give me the next one!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2938,2938,Water,1,The Blue Spirit,13,Scene Description,"The Blue Spirit again complies. Cut to the bottom of their final stilt where a Fire Nation soldier sends a gout of flame up the ladder. It is too late though, as Aang and the masked man jump from the last stilt and just manage to grab the edge of the final wall. They are unable to hold on, however, and fall to the ground. The Blue Spirit draws his swords. Four firebenders unleash their flame on them, but Aang puts the masked man behind him and airbends the flames away.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2939,2939,Water,1,The Blue Spirit,13,Zhao,Hold your fire! The Avatar must be captured alive!,Hold your fire! The Avatar must be captured alive!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2940,2940,Water,1,The Blue Spirit,13,Scene Description,"The Blue Spirit instantly comes up behind Aang and crosses his swords in front of Aang's throat, surprising him. Cut to a view behind the escapees that pans right slowly, accenting the stand-off, before cutting to the implacable blue mask of the intruder. Cut back to a close of Zhao's eyes.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2941,2941,Water,1,The Blue Spirit,13,Zhao,[Through gritted teeth.] Open the gate.,Open the gate.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2942,2942,Water,1,The Blue Spirit,13,Officer,"Admiral, what are you doing?","Admiral, what are you doing?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2943,2943,Water,1,The Blue Spirit,13,Zhao,"Let them out, now!","Let them out, now!","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2944,2944,Water,1,The Blue Spirit,13,Scene Description,"The gate is opened and the Blue Spirit backs out with his captives, swords still at his throat. Cut back to Zhao, the officer questioning him still visible over his left shoulder.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2945,2945,Water,1,The Blue Spirit,13,Officer,How could you let them go?,How could you let them go?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2946,2946,Water,1,The Blue Spirit,13,Zhao,A situation like this requires ... precision.,A situation like this requires ... precision.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2947,2947,Water,1,The Blue Spirit,13,Scene Description,"The Blue Spirit continues backing away from the fortress. Zhao now looks on from the top of the main gate. Cut to an arrow being strung on a bow by an unseen soldier; cut back to Zhao, who looks to his right as he speaks.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2948,2948,Water,1,The Blue Spirit,13,Zhao,Do you have a clear shot?,Do you have a clear shot?,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2949,2949,Water,1,The Blue Spirit,13,Scene Description,"Cut to a Yuyan Archer, who is silent, but aims.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2950,2950,Water,1,The Blue Spirit,13,Zhao,Knock out the thief. I'll deliver him to the Fire Lord along with the Avatar.,Knock out the thief. I'll deliver him to the Fire Lord along with the Avatar.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2951,2951,Water,1,The Blue Spirit,13,Scene Description,"The archer releases his arrow, which the camera follows across the field to its impact point on the Blue Spirits masks. Cut to a side-view of Aang and the Blue Spirit as the masked man collapses backward in slow motion. Aang turns in horror, his eyes glazed. He recovers, turns around and airbends up a huge cloud of dust around him and the Blue Spirit.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2952,2952,Water,1,The Blue Spirit,13,Zhao,Quick! Recover the Avatar!,Quick! Recover the Avatar!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2953,2953,Water,1,The Blue Spirit,13,Scene Description,"Cut to the main gate opening and a crowd Fire Nation soldiers emerging and running toward the dust cloud. Cut to inside the dust cloud, where Aang removes the Blue Spirit's mask to reveal Zuko. Aang starts back in horror and falls backward on the ground. He jumps up and runs away, but turns to look at Zuko, his eyes huge and full of compassion. He sees the Fire Nation soldiers getting close through the smoke. Still, he hesitates. When the dust clears, however, the soldiers find nothing. Cut back to Zhao, looking insanely angry. A frog hops up onto the railing, croaks, and hops off. Fade to white, followed by a blurry shot of a forest looking straight up into the canopy overhead. It is morning. The screen pans down to Aang sitting on a nearby root, the view is still blurry. He looks forlorn. Cut to Zuko, whose view we were clearly just seeing. He looks a bit dazed still.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2954,2954,Water,1,The Blue Spirit,13,Aang,"[To Zuko.] You know what the worst part of being born over a hundred years ago is? I miss all the friends I used to hang out with. Before the war started, I used to always visit my friend Kuzon. The two of us, we'd get in and out of so much trouble together. He was one of the best friends I ever had, and he was from the Fire Nation, just like you. If we knew each other back then, do you think we could have been friends, too?","You know what the worst part of being born over a hundred years ago is? I miss all the friends I used to hang out with. Before the war started, I used to always visit my friend Kuzon. The two of us, we'd get in and out of so much trouble together. He was one of the best friends I ever had, and he was from the Fire Nation, just like you. If we knew each other back then, do you think we could have been friends, too?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2955,2955,Water,1,The Blue Spirit,13,Scene Description,"Cut to a wide shot of Zuko lying on the ground, Aang next to him, perched a large tree root. After a pause, Zuko lets loose a huge fireball at him, but Aang dodges and flies away on a current of air. Zuko watches him hop away from tree branch to tree branch and out sight. Cut to Zuko as the camera slowly zooms backward. Zuko raises his eye in consideration. Fade to a close-up of the swamp, where Aang is collecting frozen frogs once again. Cut back to a wide shot of Zuko's ship reeling in the cutter vessel back into the mother ship. Shift to Zuko, sullen, walking past his Uncle on the main deck.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2956,2956,Water,1,The Blue Spirit,13,Iroh,"Where have you been, Prince Zuko? You missed music night! Lieutenant Jee sang a stirring love song.","Where have you been, Prince Zuko? You missed music night! Lieutenant Jee sang a stirring love song.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2957,2957,Water,1,The Blue Spirit,13,Zuko,I'm going to bed. No disturbances.,I'm going to bed. No disturbances.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2958,2958,Water,1,The Blue Spirit,13,Scene Description,"Iroh rubs his head and begins to blow his horn again. Fade back to the ruins. Aang returns, downcast. He puts frogs in his friends' mouths.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2959,2959,Water,1,The Blue Spirit,13,Aang,Suck on these. They'll make you feel better.,Suck on these. They'll make you feel better.,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2960,2960,Water,1,The Blue Spirit,13,Scene Description,Aang collapse backward onto Appa's tail with a sigh. Cut to Sokka with a frog in his mouth.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2961,2961,Water,1,The Blue Spirit,13,Sokka,"[With his mouth full; still spouting out nonsense.] Aang, how was your trip? Did you make any new friends?","Aang, how was your trip? Did you make any new friends?","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2962,2962,Water,1,The Blue Spirit,13,Aang,"No, I don't think I did.","No, I don't think I did.","Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2963,2963,Water,1,The Blue Spirit,13,Scene Description,"Aang rolls over. Fade to Prince Zuko lying awake in his own chamber, lost in thought. He looks at the Fire Nation symbol hanging on his wall, and rolls over himself. Cut back to the ruins and to Sokka, a happy expression on his face, still sucking on the frog in his mouth.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2964,2964,Water,1,The Blue Spirit,13,Sokka,Mmmm! This is tasty! Mmm!,Mmmm! This is tasty! Mmm!,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2965,2965,Water,1,The Blue Spirit,13,Scene Description,"It thaws out and begins moving around and croaking. Sokka realizes what it is and spits it out in disgust. Cut to Katara where her frog has also thawed. She cries out and it hops out of her mouth. Both Katara and Sokka begin spitting and coughing, Sokka rubs his tongue in panic against Appa's fur.",NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2966,2966,Water,1,The Blue Spirit,13,Scene Description,Fades to credits.,NA,"Bryan Konietzko, Michael Dante DiMartino",Dave Filoni,9.1 +2967,2967,Water,1,The Fortuneteller,14,Scene Description,"The episode opens to a sunny lake scene; Aang, Katara, and Sokka are sitting around a bundle of sticks with a blue tent behind Katara and are surrounded by trees and rocks. A large se tu suddenly bursts from the surface, leaps through the air, and lands with a splash into the water. Katara rises and points at it.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2968,2968,Water,1,The Fortuneteller,14,Katara,[Excitedly.] Look!,Look!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2969,2969,Water,1,The Fortuneteller,14,Scene Description,"Sokka rises to view the spectacle. The fish, a se tu, leaps into the air again, facing the group in mid-jump in slow-motion before landing in the water again. The camera cuts to Sokka and Katara.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2970,2970,Water,1,The Fortuneteller,14,Sokka,He is taunting us! [Camera zooms out to the lake and the group's camp site.] You are so going to be dinner!,He is taunting us! You are so going to be dinner!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2971,2971,Water,1,The Fortuneteller,14,Scene Description,He grabs his fishing pole from his tent set up nearby and attempts to cast the pole into the water unsuccessfully.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2972,2972,Water,1,The Fortuneteller,14,Sokka,"[Observes the fishing pole.] Hey, where's the fishing line?","Hey, where's the fishing line?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2973,2973,Water,1,The Fortuneteller,14,Aang,"[Sheepishly.] Oh, I didn't think you would need it, Sokka. [He holds up an intricately woven necklace decorated with a red flower.]","Oh, I didn't think you would need it, Sokka.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2974,2974,Water,1,The Fortuneteller,14,Sokka,"[Walks over and examines the necklace.] Aw, it's all tangled!","Aw, it's all tangled!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2975,2975,Water,1,The Fortuneteller,14,Aang,"[Rises to his feet.] Not tangled. Woven! I made you a necklace, Katara. I thought since you lost your other one ...","Not tangled. Woven! I made you a necklace, Katara. I thought since you lost your other one ...","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2976,2976,Water,1,The Fortuneteller,14,Scene Description,"He pauses in mid-sentence and displays the necklace, holding it between his hands as he flashes a toothy grin.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2977,2977,Water,1,The Fortuneteller,14,Katara,"[Smiling and approaching him.] Thanks, Aang. [Takes the necklace.] I love it.","Thanks, Aang. I love it.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2978,2978,Water,1,The Fortuneteller,14,Sokka,"[Sarcastically.] Great, Aang. Maybe instead of saving the world, you can go into the jewelry-making business.","Great, Aang. Maybe instead of saving the world, you can go into the jewelry-making business.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2979,2979,Water,1,The Fortuneteller,14,Aang,I don't see why I can't do both.,I don't see why I can't do both.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2980,2980,Water,1,The Fortuneteller,14,Scene Description,"While saying this, Katara can be seen in the background, trying on her new necklace. Sokka turns back to the lake, where the se tu continues its acrobatic display. Sokka tosses the fishing line into the water in an attempt to spear the fish. He only grows more frustrated when he sees the se tu leap from the water, unharmed.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2981,2981,Water,1,The Fortuneteller,14,Sokka,Stop taunting me!,Stop taunting me!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2982,2982,Water,1,The Fortuneteller,14,Scene Description,"He runs into the water, holding his jawbone dagger. Aang watches him run off.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2983,2983,Water,1,The Fortuneteller,14,Katara,"[Off-camera.] So, how do I look?","So, how do I look?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2984,2984,Water,1,The Fortuneteller,14,Scene Description,"Aang turns to look at her, a bored expression on his face. His uninterested expression, however, soon transforms into one of awe and amazement. The camera focuses on Katara, panning upward from her feet to her head. The background around her has become colored with shades of pink and purple, sparkles of light glistening every now and then. The panshot reveals her smiling sweetly, blushing slightly with one hand behind her back and the other touching her necklace in a pose. The scene cuts to Aang, who nervously pulls at his collar with his hand, smiling awkwardly.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2985,2985,Water,1,The Fortuneteller,14,Aang,"[Nervously.] You mean, all of you or just your neck? [Puts his right hand behind his head in embarrassment.] I mean, because both look great!","You mean, all of you or just your neck? I mean, because both look great!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2986,2986,Water,1,The Fortuneteller,14,Sokka,"[Emerges from the water, holding the se tu.] Smoochie, smoochie, someone's in love! [Makes kissing noises before the se tu breaks free from his grasp, slapping Sokka in the face with its tail and disappearing under the water.]","Smoochie, smoochie, someone's in love!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2987,2987,Water,1,The Fortuneteller,14,Aang,"[Embarrassed.] I ... well, uh ...","I ... well, uh ...","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2988,2988,Water,1,The Fortuneteller,14,Katara,"[Annoyed.] Stop teasing him, Sokka. Aang's just a good friend. [Pats the side of his head.] A sweet, little guy! Just like Momo. [Pets Momo, who lands on Aang's shoulder.]","Stop teasing him, Sokka. Aang's just a good friend. A sweet, little guy! Just like Momo.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2989,2989,Water,1,The Fortuneteller,14,Aang,[Dismayed.] Thanks.,Thanks.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2990,2990,Water,1,The Fortuneteller,14,Scene Description,"Sokka emerges empty-handed from the lake, soaking wet and cross. Momo suddenly flies off Aang's shoulder upon hearing a loud noise in the distance. He leaps onto a rock followed by Aang, who observes the scene. He points to the source of the commotion.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2991,2991,Water,1,The Fortuneteller,14,Aang,[Urgently.] Someone's being attacked by a platypus bear!,Someone's being attacked by a platypus bear!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2992,2992,Water,1,The Fortuneteller,14,Scene Description,"The camera focuses on a large, ferocious creature having dark brown fur, the body and head of a bear, the tail and bill of a platypus and bearing a white ""V"" across its chest. The creature stands upright on its hind legs and swings at a man clad in blue, who smiles merrily, his hands behind his back. The man manages to avoid the bear's swing by calmly stepping backward. The creature continues its attacks as Aang leaps onto a rock directly behind it. The camera focuses on the calm man, who continues to smile as though nothing is occurring.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2993,2993,Water,1,The Fortuneteller,14,Calm man,"Well, hello there! [Dodges another swift swing of the bear's claws.] Nice day, isn't it?","Well, hello there! Nice day, isn't it?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2994,2994,Water,1,The Fortuneteller,14,Aang,Make noise! He'll run off!,Make noise! He'll run off!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2995,2995,Water,1,The Fortuneteller,14,Scene Description,Sokka and Katara approach the scene.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2996,2996,Water,1,The Fortuneteller,14,Sokka,"No, play dead! He'll lose interest!","No, play dead! He'll lose interest!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2997,2997,Water,1,The Fortuneteller,14,Scene Description,The bear swings its claws only to miss striking the man once again.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2998,2998,Water,1,The Fortuneteller,14,Calm man,"[Happily.] Whoa, close one! [Laughs bemusedly.]","Whoa, close one!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +2999,2999,Water,1,The Fortuneteller,14,Katara,"[Cups a hand to her mouth and makes gestures with her other hand.] Run downhill, then climb a tree!","Run downhill, then climb a tree!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3000,3000,Water,1,The Fortuneteller,14,Sokka,"No, punch him in the bill! [Swings a fist upward.]","No, punch him in the bill!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3001,3001,Water,1,The Fortuneteller,14,Aang,And then run in zig-zags!,And then run in zig-zags!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3002,3002,Water,1,The Fortuneteller,14,Calm man,"No need, it's going to be fine!","No need, it's going to be fine!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3003,3003,Water,1,The Fortuneteller,14,Scene Description,"The platypus bear attempts to land a blow, cutting a large chunk of wood from the trunk of a nearby tree, the calm dodging the attack. Aang leaps into the air and lands onto the ground, placing himself between the calm man and the platypus bear. He sends the creature back slightly with an air blast.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3004,3004,Water,1,The Fortuneteller,14,Aang,[Holding his hands out in front of him and assuming a fighting stance.] Whoa there!,Whoa there!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3005,3005,Water,1,The Fortuneteller,14,Scene Description,"The platypus bear only rears up on its hind legs further, letting out a loud cry. Appa suddenly appears from behind the bear and bellows, causing the animal to bristle in fear. The bear lays a large, spotted egg and escapes the scene, swimming down the river.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3006,3006,Water,1,The Fortuneteller,14,Sokka,"[Joyfully picks up the egg.] Mmm, lunch! [He sniffs it.] Lucky for you, we came along.","Mmm, lunch! Lucky for you, we came along.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3007,3007,Water,1,The Fortuneteller,14,Calm man,"Thanks, but everything was already under control. Not to worry. Aunt Wu predicted I'd have a safe journey. [Folds hands together and bows slightly.]","Thanks, but everything was already under control. Not to worry. Aunt Wu predicted I'd have a safe journey.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3008,3008,Water,1,The Fortuneteller,14,Aang,Aunt who?,Aunt who?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3009,3009,Water,1,The Fortuneteller,14,Calm man,"No, Aunt Wu. She's the fortuneteller from my village. Awful nice knowing your future.","No, Aunt Wu. She's the fortuneteller from my village. Awful nice knowing your future.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3010,3010,Water,1,The Fortuneteller,14,Katara,"[Looks off to the side as she ponders this.] Wow, it must be. [Faces the man with a bright expression on her face.] That explains why you were so calm!","Wow, it must be. That explains why you were so calm!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3011,3011,Water,1,The Fortuneteller,14,Sokka,But the fortuneteller was wrong! You didn't have a safe journey; you were almost killed!,But the fortuneteller was wrong! You didn't have a safe journey; you were almost killed!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3012,3012,Water,1,The Fortuneteller,14,Calm man,"[Cheerfully.] But I wasn't! All right, have a good one! [He bids them a farewell and begins to walk away only to turn back again.] Oh, and Aunt Wu said if I met any travelers to give them this.","But I wasn't! All right, have a good one! Oh, and Aunt Wu said if I met any travelers to give them this.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3013,3013,Water,1,The Fortuneteller,14,Scene Description,"He hands Aang a wrapped parcel seemingly containing a long, thin object and leaves mysteriously. Sokka eyes the man suspiciously.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3014,3014,Water,1,The Fortuneteller,14,Katara,[Excitedly.] Maybe we should go see Aunt Wu and learn our fortunes. It could be fun.,Maybe we should go see Aunt Wu and learn our fortunes. It could be fun.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3015,3015,Water,1,The Fortuneteller,14,Sokka,"Oh, come on. Fortune telling is nonsense!","Oh, come on. Fortune telling is nonsense!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3016,3016,Water,1,The Fortuneteller,14,Scene Description,"Aang quickly unwraps the mysterious parcel, which turns out to be a red umbrella. He opens it and holds it over his head.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3017,3017,Water,1,The Fortuneteller,14,Aang,What do you know? An umbrella!,What do you know? An umbrella!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3018,3018,Water,1,The Fortuneteller,14,Scene Description,"At that moment, the sky darkens and it begins to rain. A low rumble of thunder can be heard. Katara bends an arched shield of water over her head to shelter herself from the weather.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3019,3019,Water,1,The Fortuneteller,14,Katara,That proves it! [She ducks under the umbrella.],That proves it!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3020,3020,Water,1,The Fortuneteller,14,Sokka,"[Holding egg above his head to shield himself from the rain.] No, it doesn't! You can't really tell the future!","No, it doesn't! You can't really tell the future!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3021,3021,Water,1,The Fortuneteller,14,Katara,[Smugly.] I guess you're not really getting wet then.,I guess you're not really getting wet then.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3022,3022,Water,1,The Fortuneteller,14,Scene Description,"Sokka suddenly loses his grip on the platypus egg as it flies through the air. He attempts to catch it, however, it merely flies a few feet into the air and lands on his head, cracking and causing the egg to run down his face. Cut to the group walking along the path; as the rain continues, Aang and Katara are sheltered under the umbrella, while Sokka stays away from them, drenched by the downpour.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3023,3023,Water,1,The Fortuneteller,14,Sokka,[Crossly.] Of course she predicted it was going to rain. The sky's been gray all day!,Of course she predicted it was going to rain. The sky's been gray all day!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3024,3024,Water,1,The Fortuneteller,14,Katara,"Just admit you might be wrong, and you can come under the umbrella.","Just admit you might be wrong, and you can come under the umbrella.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3025,3025,Water,1,The Fortuneteller,14,Sokka,"Look, I'm going to predict the future now. [Stops walking and hops from foot to foot in an exaggerated way.] It's going to keep drizzling. [The rain continues to fall.] See?","Look, I'm going to predict the future now. It's going to keep drizzling. See?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3026,3026,Water,1,The Fortuneteller,14,Scene Description,"Suddenly, the rain stops falling and sky lightens up slightly. Cut to a shot of Aang and Katara, Aang titling the umbrella back to observe the dramatic change in weather.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3027,3027,Water,1,The Fortuneteller,14,Aang,"Not everyone has the gift, Sokka.","Not everyone has the gift, Sokka.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3028,3028,Water,1,The Fortuneteller,14,Scene Description,"The camera cuts to a side-view of the entire team walking along the path in a strong, yet calm, breeze which rustles the grass on the side of the path. Aang and Katara continue to stroll leisurely under the umbrella ahead of Sokka. Appa plods behind, pausing briefly to shake his wet fur out, soaking Sokka in the process and causing him to flinch.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3029,3029,Water,1,The Fortuneteller,14,Sokka,[Disgusted.] Agh!,Agh!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3030,3030,Water,1,The Fortuneteller,14,Scene Description,"The scene changes to a view of a large mountain, its peak covered in snow. The camera pans down to a small village, which lies at the mountain's very base. The team walks through the entrance into the village, turkey ducks quacking as they pass. The camera cuts to a strange man dressed in a black robe standing by a round doorway.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3031,3031,Water,1,The Fortuneteller,14,Strange Man,Aunt Wu is expecting you.,Aunt Wu is expecting you.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3032,3032,Water,1,The Fortuneteller,14,Katara,[Excitedly.] Really?,Really?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3033,3033,Water,1,The Fortuneteller,14,Scene Description,"The trio walks through the doorway, Sokka expressing his disgust. They enter a room, three pillows situated on the floor to the right of the room. The strange man closes the door. A young girl walks into the room clad in a pink robe and wearing her hair in braids that stick out from the sides of her head.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3034,3034,Water,1,The Fortuneteller,14,Meng,My name is Meng and I'm Aunt Wu's assistant.,My name is Meng and I'm Aunt Wu's assistant.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3035,3035,Water,1,The Fortuneteller,14,Scene Description,"Her eyes suddenly widen. The camera cuts to a shot of Aang, panning upward from his feet to his head. The background is similar to that of Aang's romanticized shot of Katara. The pan shot reveals him to be quite bored and slumped over. Cuts to close-up of Meng.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3036,3036,Water,1,The Fortuneteller,14,Meng,"[Pleased.] Well, hello there.","Well, hello there.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3037,3037,Water,1,The Fortuneteller,14,Aang,[Rubs nose in disinterest.] Hello.,Hello.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3038,3038,Water,1,The Fortuneteller,14,Meng,[Aang and Katara seat themselves on the pillows.] Can I get you some tea or some of Aunt Wu's special bean curd puffs?,Can I get you some tea or some of Aunt Wu's special bean curd puffs?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3039,3039,Water,1,The Fortuneteller,14,Sokka,[Brightening.] I'll try a curd puff.,I'll try a curd puff.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3040,3040,Water,1,The Fortuneteller,14,Meng,[Holds up index finger in gesture.] Just a second. [To Aang.] So what's your name?,Just a second. So what's your name?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3041,3041,Water,1,The Fortuneteller,14,Aang,[Flatly.] Aang.,Aang.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3042,3042,Water,1,The Fortuneteller,14,Meng,"[Delighted.] That rhymes with Meng! And you've got some pretty big ears, don't you?","That rhymes with Meng! And you've got some pretty big ears, don't you?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3043,3043,Water,1,The Fortuneteller,14,Scene Description,"The camera cuts to a shot of Aang, somewhat exaggerating the size of his ears.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3044,3044,Water,1,The Fortuneteller,14,Aang,[Awkwardly.] I guess.,I guess.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3045,3045,Water,1,The Fortuneteller,14,Sokka,[Waves hand in dismissal and jokes.] Don't be modest! [Spreads arms outward in emphasis.] They're huge!,Don't be modest! They're huge!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3046,3046,Water,1,The Fortuneteller,14,Scene Description,"The camera cuts to a shot of the entire group, Aang covering his ears in embarrassment and glaring at Sokka.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3047,3047,Water,1,The Fortuneteller,14,Meng,"[Begins walking away.] Well, Aang, it was very nice to meet you. [Smiles slyly.] Very nice. [Turns and leaves.]","Well, Aang, it was very nice to meet you. Very nice.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3048,3048,Water,1,The Fortuneteller,14,Aang,Likewise.,Likewise.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3049,3049,Water,1,The Fortuneteller,14,Sokka,I can't believe we're here in the house of nonsense.,I can't believe we're here in the house of nonsense.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3050,3050,Water,1,The Fortuneteller,14,Katara,"Try to keep an open mind, Sokka. There are things in this world that just can't be explained. Wouldn't it be nice to have some insight into your future?","Try to keep an open mind, Sokka. There are things in this world that just can't be explained. Wouldn't it be nice to have some insight into your future?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3051,3051,Water,1,The Fortuneteller,14,Sokka,[Nonchalantly.] It would be nice to have some bean curd puffs.,It would be nice to have some bean curd puffs.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3052,3052,Water,1,The Fortuneteller,14,Scene Description,Cuts to where Meng is shown approaching the room through a nearby hallway with a tray of bean curd puffs. A door in the hallway opens and a woman clad in green exits. She approaches Meng excitedly.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3053,3053,Water,1,The Fortuneteller,14,Woman,"Oh, Meng! Aunt Wu says I'm going to meet my true love. He's going to give me a rare panda lily.","Oh, Meng! Aunt Wu says I'm going to meet my true love. He's going to give me a rare panda lily.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3054,3054,Water,1,The Fortuneteller,14,Meng,"That's so romantic! [Dreamily, while casting Aang a flirtatious look.] I wonder if my true love will give me a rare flower.",That's so romantic! I wonder if my true love will give me a rare flower.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3055,3055,Water,1,The Fortuneteller,14,Aang,[Breezily.] Good luck with that!,Good luck with that!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3056,3056,Water,1,The Fortuneteller,14,Woman,[Trying to contain her laughter.] Is that the big-eared guy who Aunt Wu predicted you'd marry?,Is that the big-eared guy who Aunt Wu predicted you'd marry?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3057,3057,Water,1,The Fortuneteller,14,Scene Description,"Embarrassed by this statement, Meng pushes the woman aside and continues on her way to the other room. She approaches the team, her eyes fixated hopefully on Aang, who stares off into space, unaware of her presence. She suddenly trips; Aang attempts to help her recover, accidentally holding her hands in his in the process. The two stare at each other for a moment; Meng blushes.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3058,3058,Water,1,The Fortuneteller,14,Meng,[Nervously.] Enjoy your snack! [Leaves in a hurry.],Enjoy your snack!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3059,3059,Water,1,The Fortuneteller,14,Scene Description,"Sokka takes the tray of curd puffs from Aang; he prepares to sample one only to be interrupted by an elderly woman, clad in a yellow robe, who enters the room.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3060,3060,Water,1,The Fortuneteller,14,Wu,"Welcome, young travelers. Now, who's next? Don't be shy.","Welcome, young travelers. Now, who's next? Don't be shy.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3061,3061,Water,1,The Fortuneteller,14,Scene Description,Cuts to a shot of the team. Sokka looks away uninterested and Aang casts a look at Katara.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3062,3062,Water,1,The Fortuneteller,14,Katara,[Rising in anticipation.] I guess that's me.,I guess that's me.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3063,3063,Water,1,The Fortuneteller,14,Scene Description,"The two exit. Aang and Sokka sit idly on the floor, Sokka tasting the curd puffs.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3064,3064,Water,1,The Fortuneteller,14,Sokka,"[Delighted; with his mouth full.] Mm, not bad, not bad! [Holding out bowl to Aang.] Mhm?","Mm, not bad, not bad! Mhm?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3065,3065,Water,1,The Fortuneteller,14,Aang,"[Refusing the bowl.] I'm good on puffs. [Sokka shrugs and continues eating the puffs; trying to act casual.] So, what do you think they're talking about back there?","I'm good on puffs. So, what do you think they're talking about back there?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3066,3066,Water,1,The Fortuneteller,14,Sokka,"[Causally, holding up puff.] Boring stuff I'm sure. Love, who she's going to marry, how many babies she's going to have.","Boring stuff I'm sure. Love, who she's going to marry, how many babies she's going to have.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3067,3067,Water,1,The Fortuneteller,14,Aang,"[Trying to act cool.] Yeah, dumb stuff like that ... [Tenses a bit and bites his fingers nervously.] Well, I've got to find a bathroom.","Yeah, dumb stuff like that ... Well, I've got to find a bathroom.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3068,3068,Water,1,The Fortuneteller,14,Scene Description,"He rises and walks away off-screen. Sokka lies down, relaxed and samples another puff. While eating it, Momo comes on-screen and sneakily takes the bowl away for himself. Sokka places his hand down to grab another curd puff, only to open his eyes and realize the bowl is gone. Cuts to Aang, who tiptoes down the hallway to where Aunt Wu had led Katara into another room, clearly ready to eavesdrop on their conversation. Cuts to shot of Aang pressing his ear to the doorway. The following conversation between Aunt Wu and Katara occurs off-screen from behind the wall.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3069,3069,Water,1,The Fortuneteller,14,Wu,Your palms are so smooth. Do you use moisturizer?,Your palms are so smooth. Do you use moisturizer?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3070,3070,Water,1,The Fortuneteller,14,Katara,"Actually, I have this special seaweed lotion. I can get you some if you want. [Aang sticks out his tongue; slight pause.] So, do you see anything interesting in my love line? [Aang immediately perks up upon hearing this.]","Actually, I have this special seaweed lotion. I can get you some if you want. So, do you see anything interesting in my love line?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3071,3071,Water,1,The Fortuneteller,14,Wu,[Somewhat dramatically.] I feel a great romance for you. The man you are going to marry.,I feel a great romance for you. The man you are going to marry.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3072,3072,Water,1,The Fortuneteller,14,Katara,[Excitedly.] Tell me more!,Tell me more!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3073,3073,Water,1,The Fortuneteller,14,Wu,I can see that he's a very powerful bender.,I can see that he's a very powerful bender.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3074,3074,Water,1,The Fortuneteller,14,Scene Description,"Upon hearing this statement, Aang smiles mischievously and leaps in the hallway, delighted upon hearing this. Cuts to the room where Sokka sits, picking his teeth. Aang struts into the room happily.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3075,3075,Water,1,The Fortuneteller,14,Sokka,Looks like someone had a pretty good bathroom break.,Looks like someone had a pretty good bathroom break.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3076,3076,Water,1,The Fortuneteller,14,Aang,Yeah ... when I was in there ...,Yeah ... when I was in there ...,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3077,3077,Water,1,The Fortuneteller,14,Sokka,"[Disgusted, looking away and holding up a hand to signal Aang to stop.] I don't even want to know!",I don't even want to know!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3078,3078,Water,1,The Fortuneteller,14,Wu,[Entering the room with Katara.] Who's next?,Who's next?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3079,3079,Water,1,The Fortuneteller,14,Sokka,"[Rising.] Okay, let's get this over with.","Okay, let's get this over with.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3080,3080,Water,1,The Fortuneteller,14,Wu,"[Dryly.] Your future is full of struggle and anguish. Most of it, self-inflicted.","Your future is full of struggle and anguish. Most of it, self-inflicted.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3081,3081,Water,1,The Fortuneteller,14,Sokka,[Holding up his hands in protest.] But you didn't read my palms or anything!,But you didn't read my palms or anything!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3082,3082,Water,1,The Fortuneteller,14,Wu,"I don't need to. It's written all over your face. [Sokka resumes picking his teeth in disgust; to Aang.] You there, come with me.","I don't need to. It's written all over your face. You there, come with me.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3083,3083,Water,1,The Fortuneteller,14,Scene Description,"Aang follows Aunt Wu out of the room and into her chamber. The chamber is a fairly spacious, dimly lit room. Four pillars support the ceiling and four cushions are situated in the center of the room, surrounding a small fire. Off to the side is a jug of bones. Aunt Wu and Aang approach the jug.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3084,3084,Water,1,The Fortuneteller,14,Wu,"This is the most reliable method of telling your fortune. The bones never lie. [Urging Aang to pick a bone.] Go on, pick one. [Aang takes one bone and they sit down.] Now throw it on the fire. [Aang tosses the bone into the fire.] The heat makes cracks in the bone and I read the bone cracks to tell your destiny.","This is the most reliable method of telling your fortune. The bones never lie. Go on, pick one. Now throw it on the fire. The heat makes cracks in the bone and I read the bone cracks to tell your destiny.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3085,3085,Water,1,The Fortuneteller,14,Scene Description,Cuts to a shot of the bone sitting in the fire. The camera zooms in on the bone as a large crack splinters down its side.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3086,3086,Water,1,The Fortuneteller,14,Aang,"Wow, that's a big crack.","Wow, that's a big crack.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3087,3087,Water,1,The Fortuneteller,14,Wu,[Surprised.] I've never seen this before!,I've never seen this before!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3088,3088,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of the bone, camera panning to the right to show more cracks forming. The bone explodes and sends a burst of flames up to the ceiling.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3089,3089,Water,1,The Fortuneteller,14,Wu,"[Her and Aang shielding their faces in surprise.] Oh my! [Cuts to shot of the bone lying in the fire and back to Aunt Wu who is fascinated.] Your destiny! This is incredible. You will be involved in a great battle, an awesome conflict between the forces of good and evil. A battle whose outcome will determine the fate of the whole world!","Oh my! Your destiny! This is incredible. You will be involved in a great battle, an awesome conflict between the forces of good and evil. A battle whose outcome will determine the fate of the whole world!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3090,3090,Water,1,The Fortuneteller,14,Aang,"[Casually.] Yeah, yeah, I knew that already. But did it say anything about a girl?","Yeah, yeah, I knew that already. But did it say anything about a girl?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3091,3091,Water,1,The Fortuneteller,14,Wu,[Surprised.] A girl? You want to know about love?,A girl? You want to know about love?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3092,3092,Water,1,The Fortuneteller,14,Aang,[Excited.] Yes!,Yes!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3093,3093,Water,1,The Fortuneteller,14,Wu,"I'm sorry, but I didn't see anything.","I'm sorry, but I didn't see anything.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3094,3094,Water,1,The Fortuneteller,14,Scene Description,"Aang looks down, disappointed at this. Aunt Wu realizes this.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3095,3095,Water,1,The Fortuneteller,14,Wu,"[Trying to cheer him up.] Well, look! [Holding her hand against her face in mock forgetfulness.] I must've missed something. [Cuts to a bone piece lying on the floor; Wu picks it up.] Right here. [Holds bone up to examine it.] It says ""trust your heart and you will be with the one you love.""","Well, look! I must've missed something. Right here. It says ""trust your heart and you will be with the one you love.""","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3096,3096,Water,1,The Fortuneteller,14,Aang,"Really? [Rises to his feet joyfully.] Thank you, Aunt Wu!","Really? Thank you, Aunt Wu!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3097,3097,Water,1,The Fortuneteller,14,Scene Description,"He runs out of the room gleefully. Aunt Wu hold her hand to her forehead and shakes her head in dismay. The scene changes to an overhead view of outside Wu's building, the three gathered together with Appa standing behind them. The three begin walking down a street.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3098,3098,Water,1,The Fortuneteller,14,Sokka,"Well, now you got to see for yourselves how fortune telling is just a big, stupid hoax.","Well, now you got to see for yourselves how fortune telling is just a big, stupid hoax.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3099,3099,Water,1,The Fortuneteller,14,Katara,You're just saying that because you're going to make yourself unhappy your whole life.,You're just saying that because you're going to make yourself unhappy your whole life.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3100,3100,Water,1,The Fortuneteller,14,Sokka,[Voice rising in anger.] That woman is crazy! My life will calm and happy and joyful!,That woman is crazy! My life will calm and happy and joyful!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3101,3101,Water,1,The Fortuneteller,14,Scene Description,"He roughly kicks a nearby stone, which soars into the air and comically ends up ricocheting off a hanging metal sign and striking the warrior, who had been standing breezily with his arms crossed. He covers his head in pain and falls to the ground, off-camera. Hunched over out of view, he raises a finger into the frame in protest, his tone agitated.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3102,3102,Water,1,The Fortuneteller,14,Sokka,That doesn't prove anything!,That doesn't prove anything!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3103,3103,Water,1,The Fortuneteller,14,Katara,"[Satisfied.] Well, I liked my predictions. [Clasps her hands together anxiously.] Certain things are going to turn out very well.","Well, I liked my predictions. Certain things are going to turn out very well.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3104,3104,Water,1,The Fortuneteller,14,Aang,"[Slyly, crossing his arms and leaning in toward her.] They sure are ...",They sure are ...,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3105,3105,Water,1,The Fortuneteller,14,Katara,Why? What did she tell you?,Why? What did she tell you?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3106,3106,Water,1,The Fortuneteller,14,Aang,[Ambiguously.] Some stuff. You'll find out.,Some stuff. You'll find out.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3107,3107,Water,1,The Fortuneteller,14,Scene Description,"Katara exits along with Aang, who folds his hands contentedly behind his head. Cuts to an overhead shot of the village courtyard, a pagoda-like structure lying centered in the middle. Cuts to shot of the villagers looking up at the sky before switching to a shot of the ground where the team approaches.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3108,3108,Water,1,The Fortuneteller,14,Katara,[Looking at the sky.] What's with the sky?,What's with the sky?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3109,3109,Water,1,The Fortuneteller,14,Calm man,[Also viewing the sky.] We are waiting for Aunt Wu to come and read the clouds to predict the fate of the whole village.,We are waiting for Aunt Wu to come and read the clouds to predict the fate of the whole village.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3110,3110,Water,1,The Fortuneteller,14,Aang,[Pointing upward.] That cloud kind of looks like a fluffy bunny.,That cloud kind of looks like a fluffy bunny.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3111,3111,Water,1,The Fortuneteller,14,Calm man,[Slightly worried.] You better hope that's not a bunny! The fluffy bunny cloud forecasts doom and destruction.,You better hope that's not a bunny! The fluffy bunny cloud forecasts doom and destruction.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3112,3112,Water,1,The Fortuneteller,14,Sokka,[Disgusted.] Do you even hear yourself?,Do you even hear yourself?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3113,3113,Water,1,The Fortuneteller,14,Village Woman,[Gesturing to the mountain in the background.] The cloud reading will tell us if Mt. Makapu will remain dormant for another year or if it will erupt.,The cloud reading will tell us if Mt. Makapu will remain dormant for another year or if it will erupt.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3114,3114,Water,1,The Fortuneteller,14,Calm man,"We used to have a tradition once a year of going up the mountain to check the volcano ourselves. [Smiles.] But every since Aunt Wu moved to the village twenty years ago, we have a tradition of not doing that.","We used to have a tradition once a year of going up the mountain to check the volcano ourselves. But every since Aunt Wu moved to the village twenty years ago, we have a tradition of not doing that.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3115,3115,Water,1,The Fortuneteller,14,Sokka,"I can't believe you would trust your lives to that crazy, old woman's superstition!","I can't believe you would trust your lives to that crazy, old woman's superstition!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3116,3116,Water,1,The Fortuneteller,14,Katara,[Laying a hand on Sokka's shoulder.] Shhh! She's coming!,Shhh! She's coming!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3117,3117,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot from in between Katara and Sokka's heads. The camera zooms in to show Aunt Wu and her guard appearing on-screen, ascending a stairwell. Cuts to an overhead shot of the entire courtyard, the crowd having formed an aisle to allow for the two figures to pass by. Cuts to shot of Aang and Katara standing next to each other, smiling widely as Aunt Wu and the guard walk by them. The crowd is clapping for the fortuneteller. Meng appears on-screen next to Aang.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3118,3118,Water,1,The Fortuneteller,14,Meng,"[Trying to impress him.] Hey, Aang. [Pointing upward.] Don't you think that cloud looks like a flower?","Hey, Aang. Don't you think that cloud looks like a flower?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3119,3119,Water,1,The Fortuneteller,14,Aang,"[Awkwardly.] Huh? Sure, I guess. [He pushes Meng away as the camera pans to the right; to Katara.] Hey, Katara, don't you think that cloud look like a flower?","Huh? Sure, I guess. Hey, Katara, don't you think that cloud look like a flower?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3120,3120,Water,1,The Fortuneteller,14,Katara,[Annoyed.] Shhh!,Shhh!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3121,3121,Water,1,The Fortuneteller,14,Scene Description,"Aang shows clear disappointment at being hushed. Cuts to the pagoda, where Aunt Wu approaches. She spreads her arms outward dramatically. Cuts to shot of the sky, an arrow-shaped cloud hovering above. Cuts to Aunt Wu who studies a cloud reading book in her hand.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3122,3122,Water,1,The Fortuneteller,14,Wu,[Thoughtfully.] Bending arrow cloud ... good crops this year. Nice big harvest.,Bending arrow cloud ... good crops this year. Nice big harvest.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3123,3123,Water,1,The Fortuneteller,14,Farmer,[Hugs elderly woman happily.] Darn good news!,Darn good news!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3124,3124,Water,1,The Fortuneteller,14,Wu,"Wavy, moon-shaped cloud ... let's see. [Smiling.] Gonna be a great year for twins!","Wavy, moon-shaped cloud ... let's see. Gonna be a great year for twins!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3125,3125,Water,1,The Fortuneteller,14,Poi and Ping,[High-five each other joyfully.] Yes!,Yes!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3126,3126,Water,1,The Fortuneteller,14,Wu,[Thoughtfully.] And a cumulus cloud with a twisted nob coming off the end of it ... [Spreads arms outward again.] The village will not be destroyed by the volcano this year!,And a cumulus cloud with a twisted nob coming off the end of it ... The village will not be destroyed by the volcano this year!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3127,3127,Water,1,The Fortuneteller,14,Scene Description,"Cuts to an overhead shot of the courtyard, where the crowd cheers ecstatically. Cuts to shot of Aang and Katara standing among the crowds, their backs facing the camera.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3128,3128,Water,1,The Fortuneteller,14,Aang,"[Slightly nervous.] Since I got you here, uh, there's something I want to tell you. I like you, but more than normal.","Since I got you here, uh, there's something I want to tell you. I like you, but more than normal.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3129,3129,Water,1,The Fortuneteller,14,Scene Description,"Katara, enthralled with Aunt Wu and her predictions, runs off to follow the fortuneteller, clearly paying no attention to Aang. Aang becomes upset at this.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3130,3130,Water,1,The Fortuneteller,14,Aang,[Crushed.] Never mind.,Never mind.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3131,3131,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of the upper levels of Aunt Wu's building, the camera panning downward to its entrance. Cuts to the hallway leading to Aunt Wu's chamber, where Katara stands before the doorway and knocks. Aunt Wu slides open the door.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3132,3132,Water,1,The Fortuneteller,14,Katara,"Hi, Aunt Wu! Sorry to bother you.","Hi, Aunt Wu! Sorry to bother you.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3133,3133,Water,1,The Fortuneteller,14,Wu,Any time.,Any time.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3134,3134,Water,1,The Fortuneteller,14,Katara,"About this man I'm supposed to marry ... [Looks down awkwardly and blushes.] Is he going to be handsome? [Clasps her hands together hopefully.] Oh, I hope he's tall!","About this man I'm supposed to marry ... Is he going to be handsome? Oh, I hope he's tall!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3135,3135,Water,1,The Fortuneteller,14,Wu,Ah ... You want another reading?,Ah ... You want another reading?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3136,3136,Water,1,The Fortuneteller,14,Katara,"Yes, please!","Yes, please!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3137,3137,Water,1,The Fortuneteller,14,Scene Description,"The two enter the room with the door sliding closed behind them. Cuts to shot of upper portion of Sokka's head, an angered expression on his face as he marches past in the courtyard.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3138,3138,Water,1,The Fortuneteller,14,Sokka,"I can't believe all these saps! [Cuts to side-view of Sokka walking forward, Aang following close behind.] Someone really needs to scream some sense into them.",I can't believe all these saps! Someone really needs to scream some sense into them.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3139,3139,Water,1,The Fortuneteller,14,Aang,"They seem happy, Sokka.","They seem happy, Sokka.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3140,3140,Water,1,The Fortuneteller,14,Sokka,"Not for long. I'm going to prove Aunt Wu's predictions are nonsense. [Pulls over a man standing nearby.] Hey you, I bet Aunt Wu told you to wear those red shoes, didn't she? [Cuts to shot of the man's red shoes.]","Not for long. I'm going to prove Aunt Wu's predictions are nonsense. Hey you, I bet Aunt Wu told you to wear those red shoes, didn't she?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3141,3141,Water,1,The Fortuneteller,14,Man,Yeah. She said I'd be wearing red shoes when I met my true love.,Yeah. She said I'd be wearing red shoes when I met my true love.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3142,3142,Water,1,The Fortuneteller,14,Sokka,Uh huh ... And how many times have you worn those shoes since you got that fortune?,Uh huh ... And how many times have you worn those shoes since you got that fortune?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3143,3143,Water,1,The Fortuneteller,14,Man,[Smiles sheepishly.] Everyday.,Everyday.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3144,3144,Water,1,The Fortuneteller,14,Sokka,[Background becomes a spiral of swirling orange and yellow flames; angry.] Then of course it's gonna come true!,Then of course it's gonna come true!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3145,3145,Water,1,The Fortuneteller,14,Man,[Delighted.] Really? You think so? [Begins walking away.] I'm so excited!,Really? You think so? I'm so excited!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3146,3146,Water,1,The Fortuneteller,14,Scene Description,"In a fit of anger, Sokka kicks a nearby stone; it flies off-screen and ends up comically hitting a turkey duck, which flies on-screen and begins attacking Sokka. The warrior crouches over and tries to ward of the bird. The scene changes to Aunt Wu's chamber, shot from the view of outside the doorway. Cuts to shot of Katara's hand outstretched as Aunt Wu traces her finger across her palm.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3147,3147,Water,1,The Fortuneteller,14,Wu,"And then you will have your third great-grandchild before quietly passing away in your sleep. [Cuts to shot of Aunt Wu, who does not seem particularly happy.] Is that enough information for you?",And then you will have your third great-grandchild before quietly passing away in your sleep. Is that enough information for you?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3148,3148,Water,1,The Fortuneteller,14,Katara,"[Lifts her palm in wonder.] Wow, thanks, Aunt Wu. [She rises and prepares to leave, but suddenly turns back.] Oh wait, one more thing. How warmly should I dress tomorrow?","Wow, thanks, Aunt Wu. Oh wait, one more thing. How warmly should I dress tomorrow?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3149,3149,Water,1,The Fortuneteller,14,Wu,You want me to do a reading for that?,You want me to do a reading for that?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3150,3150,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of Katara, who nods almost crazily, a huge grin spread across her face. Cuts to outside in the courtyard where Aang stands behind Sokka, who is clearly ready to lose his mind, holding his hands up to his head in frustration.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3151,3151,Water,1,The Fortuneteller,14,Sokka,[Crazed.] I don't care what Aunt Wu told you! You have to take a bath sometime!,I don't care what Aunt Wu told you! You have to take a bath sometime!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3152,3152,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of a middle-aged man, covered in dirt and grime from head to toe. The man shrugs, grunts a bit and walks off smiling.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3153,3153,Water,1,The Fortuneteller,14,Aang,"So, Sokka, you know some stuff about ladies, right?","So, Sokka, you know some stuff about ladies, right?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3154,3154,Water,1,The Fortuneteller,14,Sokka,[Pleased.] Some stuff? [Places an arm around Aang's shoulders.] You've come to the right place. What can I do you for?,Some stuff? You've come to the right place. What can I do you for?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3155,3155,Water,1,The Fortuneteller,14,Aang,"Well, there's this girl.","Well, there's this girl.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3156,3156,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of Aang, Meng in the background, standing behind a barrel. She laughs.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3157,3157,Water,1,The Fortuneteller,14,Sokka,[Thinking of Meng rather than Katara.] I think I know who you mean.,I think I know who you mean.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3158,3158,Water,1,The Fortuneteller,14,Aang,[Surprised.] You do? And you're okay with it?,You do? And you're okay with it?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3159,3159,Water,1,The Fortuneteller,14,Sokka,"Of course I am. And to tell you the truth, I've been picking up a subtle vibe that she likes you, too.","Of course I am. And to tell you the truth, I've been picking up a subtle vibe that she likes you, too.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3160,3160,Water,1,The Fortuneteller,14,Aang,[Growing anxious; Meng tries to catch Aang's attention in the background.] She does?,She does?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3161,3161,Water,1,The Fortuneteller,14,Sokka,"Oh yeah, she's crazy about you. All you have to do now is not mess it up.","Oh yeah, she's crazy about you. All you have to do now is not mess it up.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3162,3162,Water,1,The Fortuneteller,14,Aang,"Well, how do I do that?","Well, how do I do that?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3163,3163,Water,1,The Fortuneteller,14,Sokka,The number once mistake nice guys like you make: being too nice.,The number once mistake nice guys like you make: being too nice.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3164,3164,Water,1,The Fortuneteller,14,Aang,You can be too nice?,You can be too nice?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3165,3165,Water,1,The Fortuneteller,14,Sokka,"Yep. If you want to keep her interested, you have to act aloof, like you don't really care one way or the other.","Yep. If you want to keep her interested, you have to act aloof, like you don't really care one way or the other.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3166,3166,Water,1,The Fortuneteller,14,Aang,"Well, okay ...","Well, okay ...","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3167,3167,Water,1,The Fortuneteller,14,Scene Description,The camera shifts to show Meng approaching Aang shyly.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3168,3168,Water,1,The Fortuneteller,14,Meng,"Hey, Aang, I was wondering ...","Hey, Aang, I was wondering ...","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3169,3169,Water,1,The Fortuneteller,14,Aang,See you later ... [Walks away casually and waves hand breezily.],See you later ...,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3170,3170,Water,1,The Fortuneteller,14,Scene Description,"Meng sighs and her ears droop downward, like dog ears.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3171,3171,Water,1,The Fortuneteller,14,Sokka,"[Impressed.] Wow, that kid is good.","Wow, that kid is good.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3172,3172,Water,1,The Fortuneteller,14,Scene Description,"Cuts to overhead shot of the entranceway to Aunt Wu's building, where a clearly impatient Wu is shoving Katara out the door. A couple of idle Turkey ducks scramble away.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3173,3173,Water,1,The Fortuneteller,14,Wu,And you'll be fine as long as you've got a scarf. Bye-bye now.,And you'll be fine as long as you've got a scarf. Bye-bye now.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3174,3174,Water,1,The Fortuneteller,14,Katara,"Okay, okay, but one more thing.","Okay, okay, but one more thing.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3175,3175,Water,1,The Fortuneteller,14,Wu,"[Stares horrified at Katara before sighing and leaning forward slightly in surrender.] All right, what is it?","All right, what is it?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3176,3176,Water,1,The Fortuneteller,14,Katara,[Puts a hand to her chin thoughtfully.] Should I eat a mango or a papaya for breakfast tomorrow?,Should I eat a mango or a papaya for breakfast tomorrow?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3177,3177,Water,1,The Fortuneteller,14,Wu,[Angrily.] Papaya! [Slams the door shut.],Papaya!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3178,3178,Water,1,The Fortuneteller,14,Katara,"[Kicks the ground, sending up a small cloud of dust.] Aww, I hate papaya.","Aww, I hate papaya.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3179,3179,Water,1,The Fortuneteller,14,Scene Description,"The view widens to where Aang can be seen slumped against the wall of the building, trying to act aloof on Sokka's advice.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3180,3180,Water,1,The Fortuneteller,14,Aang,"[Breezily.] Oh, hey, Katara. I didn't see you there.","Oh, hey, Katara. I didn't see you there.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3181,3181,Water,1,The Fortuneteller,14,Katara,"[Half-heartedly.] Hey, Aang. [Walks away.]","Hey, Aang.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3182,3182,Water,1,The Fortuneteller,14,Aang,[Trying to catch her attention.] That's okay. I'm busy with my own stuff.,That's okay. I'm busy with my own stuff.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3183,3183,Water,1,The Fortuneteller,14,Scene Description,"Aang stands idly before a turkey duck flies over and lands near him. After a brief moment of looking at each other, the duck quacks. Cuts to shot from slightly behind the pagoda in the courtyard, where Katara is seen in the background standing by a fruit stand.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3184,3184,Water,1,The Fortuneteller,14,Katara,"[Less than pleased.] Ugh, papaya please.","Ugh, papaya please.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3185,3185,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot from behind the stand, where Katara is seen on the opposite side of the vendor, taking a papaya from the seller's hands. Aang casually walks up to her, Momo perched on his shoulder.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3186,3186,Water,1,The Fortuneteller,14,Aang,[Aloof.] So ... papaya.,So ... papaya.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3187,3187,Water,1,The Fortuneteller,14,Katara,Uh huh. Would you like some?,Uh huh. Would you like some?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3188,3188,Water,1,The Fortuneteller,14,Aang,"[Causally, picking an apple from the stand.] You know me. I don't really care what I eat.",You know me. I don't really care what I eat.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3189,3189,Water,1,The Fortuneteller,14,Katara,[Begins walking away.] Okay then. See you later.,Okay then. See you later.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3190,3190,Water,1,The Fortuneteller,14,Scene Description,She exits the scene as Aang bites into the apple only to spit out the contents afterward in disgust.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3191,3191,Water,1,The Fortuneteller,14,Aang,[Slightly downcast.] Maybe aloof isn't my style.,Maybe aloof isn't my style.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3192,3192,Water,1,The Fortuneteller,14,Scene Description,"He casts his gaze over to a man and the woman seen in Aunt Wu's building earlier, who stand in the background, the man having just offered something to the woman.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3193,3193,Water,1,The Fortuneteller,14,Woman,"[From afar; delighted.] Oh, a panda lily!","Oh, a panda lily!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3194,3194,Water,1,The Fortuneteller,14,Scene Description,"The couple embraces. Cuts to shot of Aang, who looks impressed by this display.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3195,3195,Water,1,The Fortuneteller,14,Aang,[To Momo.] Did you see that?,Did you see that?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3196,3196,Water,1,The Fortuneteller,14,Scene Description,"Cuts to close-up of the panda lily, the camera zooming out to show the couple still embracing. Aang suddenly appears between the two, pushing them away from each other and startling both.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3197,3197,Water,1,The Fortuneteller,14,Aang,Excuse me. [Pointing to the flower.] Where can a guy find one of those things?,Excuse me. Where can a guy find one of those things?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3198,3198,Water,1,The Fortuneteller,14,Scene Description,"The scene cuts to an area outside the village, a forested landscape in the background, Mt. Makapu standing magnificently behind the trees. Cuts to the side of the mountain, Aang leaping upward along the rocky outcrops.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3199,3199,Water,1,The Fortuneteller,14,Sokka,[Off-camera.] I can't believe you're dragging me all the way up here for a stupid flower.,I can't believe you're dragging me all the way up here for a stupid flower.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3200,3200,Water,1,The Fortuneteller,14,Aang,"Not just any flower, a panda lily. I've seen it in action and boy, does it work.","Not just any flower, a panda lily. I've seen it in action and boy, does it work.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3201,3201,Water,1,The Fortuneteller,14,Scene Description,Cuts to shot of Sokka scaling the mountain.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3202,3202,Water,1,The Fortuneteller,14,Sokka,"Flowers are fine once you're married, but at this early stage, it's critical that you maintain maximum aloofness.","Flowers are fine once you're married, but at this early stage, it's critical that you maintain maximum aloofness.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3203,3203,Water,1,The Fortuneteller,14,Aang,"But my heart is telling me to get this flower, [Looks up toward the rim of the mountain.] and Aunt Wu said if I trusted in my heart, I will be with the one I love.","But my heart is telling me to get this flower, and Aunt Wu said if I trusted in my heart, I will be with the one I love.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3204,3204,Water,1,The Fortuneteller,14,Sokka,"[Irritated.] What? Don't tell me you believe in that stuff, too.","What? Don't tell me you believe in that stuff, too.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3205,3205,Water,1,The Fortuneteller,14,Aang,"[Cuts to shot of Aang perched on one boulder, Sokka appearing on-screen.] Well, Aunt Wu hasn't been wrong yet. Why should she be wrong about love? [Leaps upward and points in delight at the rim.] There! On the rim!","Well, Aunt Wu hasn't been wrong yet. Why should she be wrong about love? There! On the rim!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3206,3206,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of the rim from the center of the volcano's peak, several lilies growing. Aang appears on-screen, picks a panda lily and smells it. He opens his eyes and gasps in horror. Cuts to a view of the crater, which is nearly filled to the brim with lava. Sokka appears beside Aang and also looks horrified.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3207,3207,Water,1,The Fortuneteller,14,Aang,[Shocked.] Oh no. [Cuts to overhead shot of the volcano.] Aunt Wu was wrong.,Oh no. Aunt Wu was wrong.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3208,3208,Water,1,The Fortuneteller,14,Scene Description,"He drops the panda lily which floats down into the lava, a flame appearing in its wake. Cuts to an overhead shot of the volcano, the camera shifting downward to show Aang and Sokka on the rim, clearly shocked at the view. Cuts to shot from inside the volcano, Aang and Sokka looking downward at the sight.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3209,3209,Water,1,The Fortuneteller,14,Sokka,Those people all think they're safe! We've got to warn them!,Those people all think they're safe! We've got to warn them!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3210,3210,Water,1,The Fortuneteller,14,Aang,"There's no time to walk! [Whips out his glider.] Grab on! [He pulls Sokka forward, who shouts in surprise and the two take off.]",There's no time to walk! Grab on!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3211,3211,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of rim as they disappear over the edge, mounted on the glider. Cuts to shot of the treetops, Aang and Sokka appearing on-screen. Cuts to overhead shot of the village, as they fly toward it rapidly. Cuts to shot of Katara standing before the entrance of Wu's building clearly irritated. Aang and Sokka walk up to her, having now landed.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3212,3212,Water,1,The Fortuneteller,14,Aang,"[Shyly, raises hand slightly.] Hi, Katara.","Hi, Katara.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3213,3213,Water,1,The Fortuneteller,14,Katara,[Annoyed.] Can you believe she won't let me in? And after all the business I've given her?,Can you believe she won't let me in? And after all the business I've given her?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3214,3214,Water,1,The Fortuneteller,14,Aang,But she doesn't even charge.,But she doesn't even charge.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3215,3215,Water,1,The Fortuneteller,14,Katara,"I know, but still ...","I know, but still ...","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3216,3216,Water,1,The Fortuneteller,14,Sokka,"Well, we have other things to worry about. Aunt Wu was wrong about the volcano.","Well, we have other things to worry about. Aunt Wu was wrong about the volcano.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3217,3217,Water,1,The Fortuneteller,14,Katara,"[Slightly irked, raises finger accusingly.] Sokka, you tried to convince me she was wrong before. It's going to take an awful lot to change my mind -","Sokka, you tried to convince me she was wrong before. It's going to take an awful lot to change my mind -","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3218,3218,Water,1,The Fortuneteller,14,Scene Description,"Her eyes widen in surprise, and she lurches forward as an explosion is heard and the volcano rumbles violently. Cuts to shot of the entire group, who is slightly shaken. Cuts to shot of her and Aang looking up at the volcano, both their backs turned, gray smoke is emitting from the peak of the mountain.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3219,3219,Water,1,The Fortuneteller,14,Katara,[Worriedly.] Oh no.,Oh no.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3220,3220,Water,1,The Fortuneteller,14,Scene Description,"Cuts to overhead shot of the villagers mingling about in the courtyard, Aang, Katara and Sokka among them.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3221,3221,Water,1,The Fortuneteller,14,Sokka,"[Urgently.] Everyone, that volcano is gonna blow any second! Aunt Wu was wrong!","Everyone, that volcano is gonna blow any second! Aunt Wu was wrong!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3222,3222,Water,1,The Fortuneteller,14,Village Woman,"[Not buying his claim.] Yeah, yeah, we know you don't believe in Aunt Wu, Mr. science and reason lover.","Yeah, yeah, we know you don't believe in Aunt Wu, Mr. science and reason lover.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3223,3223,Water,1,The Fortuneteller,14,Katara,"[Stepping forward.] If you won't listen to him, maybe you'll listen to me. I want to believe Aunt Wu and her predictions as much as you do, but my brother and Aang saw the lava with their own eyes.","If you won't listen to him, maybe you'll listen to me. I want to believe Aunt Wu and her predictions as much as you do, but my brother and Aang saw the lava with their own eyes.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3224,3224,Water,1,The Fortuneteller,14,Calm man,"[Unmoved.] Well, I heard Aunt Wu's prediction with my own ears.","Well, I heard Aunt Wu's prediction with my own ears.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3225,3225,Water,1,The Fortuneteller,14,Aang,"[Leaps onto the awning of a nearby building; urgently.] Please listen to us! You are all in danger! And we have to get out of here! You can't rely on Aunt Wu's prediction, [Cuts to shot of villagers who gaze up at him, seemingly listening.] you have to take fate into your own hands!","Please listen to us! You are all in danger! And we have to get out of here! You can't rely on Aunt Wu's prediction, you have to take fate into your own hands!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3226,3226,Water,1,The Fortuneteller,14,Scene Description,Another explosion is heard from the volcano. The villagers seem mildly alarmed.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3227,3227,Water,1,The Fortuneteller,14,Sokka,Look! [Points to the volcano.] Can your fortune telling explain that?,Look! Can your fortune telling explain that?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3228,3228,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of the volcano, smoke rising from the top in great plumes.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3229,3229,Water,1,The Fortuneteller,14,Man with Red Shoes,[Amused.] Can your science explain why it rains?,Can your science explain why it rains?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3230,3230,Water,1,The Fortuneteller,14,Sokka,"[Turns to him; yells angrily.] Yes! Yes, it can!","Yes! Yes, it can!","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3231,3231,Water,1,The Fortuneteller,14,Scene Description,"Cuts to overhead shot of the courtyard as the villagers walk away, oblivious to the danger. Cuts to shot of Katara and Sokka.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3232,3232,Water,1,The Fortuneteller,14,Katara,[Dismayed.] They just won't listen to reason. [Aang leaps down from the awning.],They just won't listen to reason.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3233,3233,Water,1,The Fortuneteller,14,Aang,[Brightening.] But they will listen to Aunt Wu!,But they will listen to Aunt Wu!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3234,3234,Water,1,The Fortuneteller,14,Sokka,I know that's the problem.,I know that's the problem.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3235,3235,Water,1,The Fortuneteller,14,Aang,"Well, it's about to become the solution. We're taking fate in our own hands. First, I need to borrow Aunt Wu's cloud reading book.","Well, it's about to become the solution. We're taking fate in our own hands. First, I need to borrow Aunt Wu's cloud reading book.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3236,3236,Water,1,The Fortuneteller,14,Scene Description,"The scene cuts to Sokka and Katara, who stand in front of Aunt Wu's building, trying to act casual. Sokka flashes an innocent smile. The camera pans upward to the top of the building. Aang appears over the rooftop, along with Momo, and and climbs downward onto the porch of the highest story. Cuts to overhead shot of Aunt Wu's chamber. Cuts to shot of one corner of the room, where Aang is peering in various drawers for the book. Momo chirps.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3237,3237,Water,1,The Fortuneteller,14,Aang,[Whispering.] Shhh! We don't want anyone to hear us.,Shhh! We don't want anyone to hear us.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3238,3238,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot of him as he continues to snoop about, his back facing the camera. Meng's reflection appears in the mirror hanging over the dresser. Aang sees this reflection and turns around, startled. He stands up straight, Momo hiding behind his back.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3239,3239,Water,1,The Fortuneteller,14,Aang,"Oh, I didn't see you there.","Oh, I didn't see you there.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3240,3240,Water,1,The Fortuneteller,14,Meng,"[Sadly.] You don't like me, do you? [Her ears droop down.]","You don't like me, do you?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3241,3241,Water,1,The Fortuneteller,14,Aang,Of course I like you.,Of course I like you.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3242,3242,Water,1,The Fortuneteller,14,Meng,[Downcast.] But not the way I like you.,But not the way I like you.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3243,3243,Water,1,The Fortuneteller,14,Aang,"Oh, I guess not.","Oh, I guess not.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3244,3244,Water,1,The Fortuneteller,14,Meng,"It's okay. It's just really hard when you like someone, but they don't think of you that way.","It's okay. It's just really hard when you like someone, but they don't think of you that way.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3245,3245,Water,1,The Fortuneteller,14,Aang,[Casting sad glance to the side.] I know what you mean.,I know what you mean.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3246,3246,Water,1,The Fortuneteller,14,Meng,"[Off-camera.] She's beautiful, by the way.","She's beautiful, by the way.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3247,3247,Water,1,The Fortuneteller,14,Aang,"[Blushes and looks at her, surprised.] Huh?",Huh?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3248,3248,Water,1,The Fortuneteller,14,Meng,"[Cuts to shot of the two standing in the room.] That Water Tribe girl. I can see why you like her so much. [Clasps hands together, counts on her fingers.] She's sweet, she's a bender [Cuts to shot of Meng.] and her hair seems so manageable. [While saying this last part, she tries to smooth down her braids only for them to immediately stick up again.]","That Water Tribe girl. I can see why you like her so much. She's sweet, she's a bender and her hair seems so manageable.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3249,3249,Water,1,The Fortuneteller,14,Aang,Don't worry. You're going to meet a great guy who's going to completely fall for you. I know it. [Places a hand on her shoulder comfortingly; turns to leave.],Don't worry. You're going to meet a great guy who's going to completely fall for you. I know it.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3250,3250,Water,1,The Fortuneteller,14,Meng,"Thanks. [Holds up hand in alert.] Wait! Don't you want this? [Aang looks surprised; Meng hands him the cloud reading book, revealing she had had it in her possession the whole time.]",Thanks. Wait! Don't you want this?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3251,3251,Water,1,The Fortuneteller,14,Aang,How did you know?,How did you know?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3252,3252,Water,1,The Fortuneteller,14,Meng,[Nervously playing with her fingers.] I've kind of been stalking you. [Smiles sheepishly.] Heh ...,I've kind of been stalking you. Heh ...,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3253,3253,Water,1,The Fortuneteller,14,Aang,"[Blushing.] Oh, thanks ... I guess.","Oh, thanks ... I guess.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3254,3254,Water,1,The Fortuneteller,14,Scene Description,"Cuts to shot to shot of Appa flying through the clouds with Aang and Katara on his back, Aang at the reins, Katara seated in his saddle.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3255,3255,Water,1,The Fortuneteller,14,Aang,"Clouds are made of water and air, so between the two of us, we ought to be able to bend them into any shape we want.","Clouds are made of water and air, so between the two of us, we ought to be able to bend them into any shape we want.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3256,3256,Water,1,The Fortuneteller,14,Katara,[Reading Aunt Wu's book.] I found it. The symbol for volcanic doom.,I found it. The symbol for volcanic doom.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3257,3257,Water,1,The Fortuneteller,14,Scene Description,"She turns the book around, but keeps her hand placed on the image for volcanic doom, obscuring the person's view of the symbol. A cloud passes over the screen, signaling the change of scene. The cloud cover clears, depicting both Aang and Katara standing on Appa's saddle. In synchronization, they raise their arms upward, preparing to shape the clouds. Cuts to shot of Appa sailing through the sky; he leans over on his side and sprawls out his legs, dipping into the clouds below. Cuts to shot of the villagers below, viewing the changing cloud formations. Cuts to shot of the clouds; Appa appears from beneath one of the clouds and flies upward, Aang and Katara seen mounted on his saddle. The bison emerges from the top of a cloud. Cuts to Katara, who swivels around, a smile spread across her face. Cuts to Aang, who swings his arms in a circular motion, using airbending to shape the formation. Cuts to shot of Appa flying in the sky that is now rapidly changing. Below, the villagers look up to see the clouds shifting. Sokka brings Aunt Wu over to her stage. He points to the sky.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3258,3258,Water,1,The Fortuneteller,14,Sokka,"Aunt Wu, look! Something is happening in the clouds.","Aunt Wu, look! Something is happening in the clouds.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3259,3259,Water,1,The Fortuneteller,14,Wu,[Quizzically.] That's very strange. It shouldn't ... [A shadow falls over her face as the sky darkens; suddenly terrified.] Oh my!,That's very strange. It shouldn't ... Oh my!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3260,3260,Water,1,The Fortuneteller,14,Scene Description,Cut to a view of the new skull-shaped cloud that Aang and Katara formed. Cut to a view of a mountain spewing smoke into the air. The screen pans down to the village before cutting to a shot where Aang is addressing the crowds.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3261,3261,Water,1,The Fortuneteller,14,Aang,"We still can save the village if we act fast. [Gesturing toward Sokka, who stands on the pagoda.] Sokka has a plan.",We still can save the village if we act fast. Sokka has a plan.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3262,3262,Water,1,The Fortuneteller,14,Sokka,[Making motions with his arm.] Lava is gonna flow downhill to this spot. If we can dig a deep enough trench we can channel all the lava away from the village to the river.,Lava is gonna flow downhill to this spot. If we can dig a deep enough trench we can channel all the lava away from the village to the river.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3263,3263,Water,1,The Fortuneteller,14,Aang,"If any of you are earthbenders, come with me.","If any of you are earthbenders, come with me.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3264,3264,Water,1,The Fortuneteller,14,Scene Description,Cut to the Twins from earlier in the episode.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3265,3265,Water,1,The Fortuneteller,14,Poi,[Raising hand.] I'm an earthbender!,I'm an earthbender!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3266,3266,Water,1,The Fortuneteller,14,Ping,[Raising hand.] I'm not!,I'm not!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3267,3267,Water,1,The Fortuneteller,14,Sokka,"Everybody else grab a shovel [As another explosion resonates over the village, everyone stumbles before regaining balance.] Come on! We've gotta hurry!",Everybody else grab a shovel Come on! We've gotta hurry!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3268,3268,Water,1,The Fortuneteller,14,Scene Description,"The crowd disperses very fast, now desperate to put Sokka's plan into action. A few cries of urgency are uttered. Cut to overhead shot of the ground outside the town during twilight, a deep trench is beginning to form. Team Avatar and the town's people labor to dig the trench, using both earthbending and manual means. Cuts to shot of two earthbenders, who make motions with their arms and legs. Cuts to overhead shot of a portion of the trench as two large boulders are cleared out of the way. Cuts to shot from inside the trench as villagers continue their labor; Appa is seen transporting loose boulders from the scene, using a net attached to his body. Another explosion makes a cut to the mountain again, now lava is spewing out.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3269,3269,Water,1,The Fortuneteller,14,Sokka,[Resuming work.] Dig faster! Dig faster!,Dig faster! Dig faster!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3270,3270,Water,1,The Fortuneteller,14,Scene Description,"As lava begins to flow down the volcano in the background, the shot cuts to Poi as he runs and sweeps his arms forward. Cuts to overhead shot of the trench, the bank of the river lying just ahead. A torrent of boulders is cleared and sent down the river as Poi creates a channel toward the river. Cuts to shot of the villagers standing inside the trench. Aang leaps onto the edge of the trench. In the background, the lava steadily creeps further down the mountain toward the village.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3271,3271,Water,1,The Fortuneteller,14,Aang,Everyone needs to evacuate! We'll come for you when it's safe!,Everyone needs to evacuate! We'll come for you when it's safe!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3272,3272,Water,1,The Fortuneteller,14,Scene Description,"Everyone runs. Momo arrives and puts a small rock on the edge of the trench and lands on Aang, who pets him before also running away from the edge. Cut to the volcano as lava is erupting from its peak. A stream of stream of the burning liquid is coursing down the mountain and into the forest. The scene cuts to Aang, Sokka, and Katara; their faces illuminated by the approaching lava as they watch anxiously, ash falling down upon them. The scene switches to a view of the village gate. An eerie reddish light emerges from the forest with its source, the approaching lava, close behind. As it passes the gate, the burning substance causes the structure to catch fire and crumble down. Unwavering and all-consuming, the lava continuous its descent through the cemetery, destroying several headstones as it passes. Reaching the trench, the lava falls in the ditch, though the steady incoming river of lava quickly threatens to overflow the trench. Cut to the group on the safe side of the trench.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3273,3273,Water,1,The Fortuneteller,14,Katara,It's too much! It's gonna overflow!,It's too much! It's gonna overflow!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3274,3274,Water,1,The Fortuneteller,14,Scene Description,"Another explosion rocks the village. Cut to the volcano, where a huge column of lava and smoke explodes out of the peak. Burning rocks begin to rain down in addition to the ash. Katara and Sokka begin to run for safety but turn to see Aang has not moved. A huge boulder falls out of the sky and lands in the trench, throwing up a fountain of lava. A massive wave of lava begins to head toward the village. Cut to Aang, who is rushing forward with a furious face. He propels himself into the air and begins to airbend. As the lava begins to overflow, Aang blows the lava straight up, not allowing it to advance on the village. Finally, he draws in a mighty intake of breath and expels it, airbending it as it exits, cooling all the lava to stone. Aang relaxes and assumes a meditation pose. Cut to Katara and Sokka watching in surprise, their backs to the camera.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3275,3275,Water,1,The Fortuneteller,14,Sokka,"Man, sometimes I forget what a powerful bender that kid is. [Katara's expression changes at this, remembering Aunt Wu's words about her future marriage.]","Man, sometimes I forget what a powerful bender that kid is.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3276,3276,Water,1,The Fortuneteller,14,Katara,"Wait, what did you just say?","Wait, what did you just say?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3277,3277,Water,1,The Fortuneteller,14,Sokka,"[Casually.] Nothing, just that Aang is one powerful bender.","Nothing, just that Aang is one powerful bender.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3278,3278,Water,1,The Fortuneteller,14,Scene Description,Cut to Katara's and Sokka's view of Aang and back to shot of Katara.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3279,3279,Water,1,The Fortuneteller,14,Katara,[Slowly widens her eyes in realization; as if having an epiphany.] I suppose he is.,I suppose he is.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3280,3280,Water,1,The Fortuneteller,14,Scene Description,"Cuts to the volcano, smoking, but no longer erupting. Cuts to a view of the square where Aunt Wu and the town's people, including the Calm man, have assembled. A tall, jagged wall-like formation of cooled lava towers over the square. Aang stands in front of Aunt Wu, offering her back the cloud book he took.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3281,3281,Water,1,The Fortuneteller,14,Aang,"[Sheepishly.] By the way, we kind of borrowed your book.","By the way, we kind of borrowed your book.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3282,3282,Water,1,The Fortuneteller,14,Wu,"So you messed with the clouds, did you?","So you messed with the clouds, did you?","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3283,3283,Water,1,The Fortuneteller,14,Scene Description,"Wu grabs the book in anger while Katara looks guilty and Sokka smiles and points at her, indicating that she had a part in the cloud manipulation, too.",NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3284,3284,Water,1,The Fortuneteller,14,Wu,[Laughs in amusement.] Very clever!,Very clever!,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3285,3285,Water,1,The Fortuneteller,14,Sokka,"No offense, but I hope this taught everyone a lesson about not relying too much on fortune telling.","No offense, but I hope this taught everyone a lesson about not relying too much on fortune telling.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3286,3286,Water,1,The Fortuneteller,14,Calm man,"[Cheerfully.] But Aunt Wu predicted the village wouldn't be destroyed and it wasn't. She was right, after all.","But Aunt Wu predicted the village wouldn't be destroyed and it wasn't. She was right, after all.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3287,3287,Water,1,The Fortuneteller,14,Sokka,"[Gets near the Calm man's face, through gritted teeth.] I hate you.",I hate you.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3288,3288,Water,1,The Fortuneteller,14,Katara,"[Holding Sokka by the shoulders and leading him away.] It's okay, Sokka. Everything's going to be all right.","It's okay, Sokka. Everything's going to be all right.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3289,3289,Water,1,The Fortuneteller,14,Scene Description,Cuts to a shot of Aang and Wu.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3290,3290,Water,1,The Fortuneteller,14,Aang,Can I ask you something?,Can I ask you something?,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3291,3291,Water,1,The Fortuneteller,14,Wu,"Of course, honey.","Of course, honey.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3292,3292,Water,1,The Fortuneteller,14,Aang,"[Disappointed.] You didn't really see love in my fortune, did you? You just told me what I wanted to hear.","You didn't really see love in my fortune, did you? You just told me what I wanted to hear.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3293,3293,Water,1,The Fortuneteller,14,Wu,"I'll tell you a little secret, young airbender. [Gestures to the sky.] Just as you reshaped those clouds, [Cuts to shot of Aang, who smiles; off-camera.] you have the power to shape your own destiny.","I'll tell you a little secret, young airbender. Just as you reshaped those clouds, you have the power to shape your own destiny.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3294,3294,Water,1,The Fortuneteller,14,Scene Description,Aang smiles. Cut to shot of Appa and Team Avatar. Meng stands in front of Appa. Aang airbends himself onto Appa's saddles; Katara is at the reins.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3295,3295,Water,1,The Fortuneteller,14,Katara,"[Brightly.] Goodbye everyone! It was so nice to meet you! [To Meng.] Take care, Meng.","Goodbye everyone! It was so nice to meet you! Take care, Meng.","John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3296,3296,Water,1,The Fortuneteller,14,Meng,"[Waving.] Take care! [Appa turns away. Cuts to Meng's face, whose smile disappears and is replaced by a frown.] Floozy.",Take care! Floozy.,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3297,3297,Water,1,The Fortuneteller,14,Scene Description,Fades to credits.,NA,"John O'Bryan, Aaron Ehasz",Dave Filoni,7.9 +3298,3298,Water,1,Bato of the Water Tribe,15,Scene Description,"The episode opens up to a body of water, waves crashing against the rocks. The camera cuts to grass and sticks, before slowly panning up to reveal a whale tooth scimitar standing upright in the ground. Aang's hand comes into view as he grasps the weapon's hilt and yanks it out of the ground. Cut to a shot of him holding it up while Sokka slides down a dirt slope.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3299,3299,Water,1,Bato of the Water Tribe,15,Aang,"Hey, look! [Examines the sword.] A sword made out of a whale's tooth.","Hey, look! A sword made out of a whale's tooth.",Ian Wilcox,Giancarlo Volpe,7.9 +3300,3300,Water,1,Bato of the Water Tribe,15,Scene Description,"While Aang draws the weapon free from the ground, Sokka slides down the slope and pulls up behind the Avatar, snatching the weapon from his hands as Aang turned to show it to him.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3301,3301,Water,1,Bato of the Water Tribe,15,Sokka,Let me see that.,Let me see that.,Ian Wilcox,Giancarlo Volpe,7.9 +3302,3302,Water,1,Bato of the Water Tribe,15,Scene Description,"Sokka walks on for a little while, before he stops, not too far from Aang, to study the weapon closely. Cut to a shot of the scimitar in his hand. The scene switches into a flashback; Southern Water Tribe warriors are preparing their ships, loading them with supplies. The camera pans to the left as a warrior walks past, carrying a bundle, revealing that a younger Sokka is observing them, his back to the camera. Cuts to frontal shot of him as he looks at the scene wistfully, cradling his battle club. Flashback fades to present-day, where Sokka bears the same wistful expression while holding the whale's tooth scimitar in the same way as his club.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3303,3303,Water,1,Bato of the Water Tribe,15,Sokka,"This is a Water Tribe weapon. [Turns to Aang, his expression serious.] See if you can find anything else.",This is a Water Tribe weapon. See if you can find anything else.,Ian Wilcox,Giancarlo Volpe,7.9 +3304,3304,Water,1,Bato of the Water Tribe,15,Scene Description,"Cuts to shot of Aang and Sokka searching the wooded area for more weapons. Katara walks toward them, curious.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3305,3305,Water,1,Bato of the Water Tribe,15,Katara,[Curiously.] Did someone lose something?,Did someone lose something?,Ian Wilcox,Giancarlo Volpe,7.9 +3306,3306,Water,1,Bato of the Water Tribe,15,Aang,"[Rummaging through the bushes; somewhat cheerfully.] No, we found something!","No, we found something!",Ian Wilcox,Giancarlo Volpe,7.9 +3307,3307,Water,1,Bato of the Water Tribe,15,Scene Description,"Cut to shot of a spearhead lying on the ground beneath a few fallen leaves. Sokka kneels before it, brushes aside the debris and picks up the spearhead, examining it and running his fingers along its point, noticing ash on it.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3308,3308,Water,1,Bato of the Water Tribe,15,Sokka,"It's burned. [Cut to shot of a tree trunk, scorch marks and sharp cuts running across its bark. Cut to shot of Sokka and the others.] There was a battle! Water Tribe warriors ambushed a group of firebenders. [He turns away from the tree and looking down the slope of the hill seeing a black spot on the ground.] The firebenders fought back, but the warriors drove them down this hill.","It's burned. There was a battle! Water Tribe warriors ambushed a group of firebenders. The firebenders fought back, but the warriors drove them down this hill.",Ian Wilcox,Giancarlo Volpe,7.9 +3309,3309,Water,1,Bato of the Water Tribe,15,Scene Description,"Cut to shot of Sokka racing down the hill along a dirt path, the camera panning downward. He leaps over a few large rocks in his way and continues forward. Cuts to shot of a sandy beach. Sokka appears on screen followed closely by Aang and Katara.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3310,3310,Water,1,Bato of the Water Tribe,15,Aang,"[Intrigued.] So, then what happened?","So, then what happened?",Ian Wilcox,Giancarlo Volpe,7.9 +3311,3311,Water,1,Bato of the Water Tribe,15,Sokka,[Disappointed.] I don't know. The trail ends here.,I don't know. The trail ends here.,Ian Wilcox,Giancarlo Volpe,7.9 +3312,3312,Water,1,Bato of the Water Tribe,15,Katara,"[Pointing at something in the distance.] Wait, look! [Cut to shot of a Water Tribe ship, half obscured behind large rocks, sitting idly on the shore.]","Wait, look!",Ian Wilcox,Giancarlo Volpe,7.9 +3313,3313,Water,1,Bato of the Water Tribe,15,Sokka,[Happily.] It's one of our boats!,It's one of our boats!,Ian Wilcox,Giancarlo Volpe,7.9 +3314,3314,Water,1,Bato of the Water Tribe,15,Katara,Is this dad's boat? [She and Sokka run toward it. Cut to shot of entire ship as they approach.],Is this dad's boat?,Ian Wilcox,Giancarlo Volpe,7.9 +3315,3315,Water,1,Bato of the Water Tribe,15,Sokka,"No, but it's from his fleet. [Strokes the boat off, while Aang appears behind them.] Dad was here. [Turns to Katara.]","No, but it's from his fleet. Dad was here.",Ian Wilcox,Giancarlo Volpe,7.9 +3316,3316,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene changes to a close-up of Iroh sipping a cup of tea, with a relaxed expression on his face.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3317,3317,Water,1,Bato of the Water Tribe,15,Iroh,"[Exhaling.] Aahh! [Cuts to shot of entire room where he and Zuko are seated at a low-lying table.] See Prince Zuko, a moment of quiet is good for your mental well-being. [Pours Zuko a cup of tea.]","Aahh! See Prince Zuko, a moment of quiet is good for your mental well-being.",Ian Wilcox,Giancarlo Volpe,7.9 +3318,3318,Water,1,Bato of the Water Tribe,15,Scene Description,"Zuko raises the cup to take a sip, but the ship suddenly jerks; the vibrations cause the tea in the cup to go flying, soaking Zuko's face and hair. Zuko grunts in frustration, pushes his ponytail back, and rises to see what the commotion is about. Cut to the deck of the ship, several firebenders stand poised, ready to attack. A large beast, called a shirshu, suddenly leaps onto the deck, a young woman mounted on its back. The firebenders flee from the beast. Cuts to closer-up shot of the woman, who slows down the beast's progress.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3319,3319,Water,1,Bato of the Water Tribe,15,Firebenders,Look out! Argh!,Look out! Argh!,Ian Wilcox,Giancarlo Volpe,7.9 +3320,3320,Water,1,Bato of the Water Tribe,15,June,[Holding a rolled up whip.] Get back! We're after a stowaway! [Cut to overhead shot of the ship's deck.],Get back! We're after a stowaway!,Ian Wilcox,Giancarlo Volpe,7.9 +3321,3321,Water,1,Bato of the Water Tribe,15,Zuko,[Arrives with Iroh.] There are no stowaways on my ship.,There are no stowaways on my ship.,Ian Wilcox,Giancarlo Volpe,7.9 +3322,3322,Water,1,Bato of the Water Tribe,15,Scene Description,"Cuts to shot of Nyla, the shirshu, who tears off a chunk of the metal deck flooring and hurls it in Zuko's direction. Alarmed, the prince ducks for cover, the firebenders and Iroh move to the side, and the metal piece hits the doorway leading to the main compartments of the ship with a clang as they turn around to watch it hit the door. Zuko looks on in frustration while the firebenders and Iroh take a firebending stance. +Cut to shot of the interior of the ship, a gaping hole present where the metal flooring once was. Nyla sticks his head inside and begins sniffing around. Cut to shot from his point of view, the scenery slightly warped and in black-and-white to reflect how he envisions things. A stream of green is visible, drifting through the air. The camera pans right and left as the beast surveys the entire room. It focuses on a single barrel which topples over, revealing that a strange man has been hiding in there. Cut to a shot above the deck where Nyla raises his head out of the hole. The stowaway appears, dashing away from the scene. Nyla shoots forward in hot pursuit of him. Cut to side-view of the man trying to flee; Nyla appears on-camera and lashes out his elongated tongue. Close-up of the tongue striking the man who falls onto the deck, paralyzed, and with a terrified look on his face.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3323,3323,Water,1,Bato of the Water Tribe,15,Zuko,[Shocked.] He's paralyzed.,He's paralyzed.,Ian Wilcox,Giancarlo Volpe,7.9 +3324,3324,Water,1,Bato of the Water Tribe,15,June,"Only temporarily. [Lifts the man and slings him over her shoulder.] The toxins will wear off in about an hour. But by then, he'll be in jail and I'll have my money. [Walks to Nyla.]","Only temporarily. The toxins will wear off in about an hour. But by then, he'll be in jail and I'll have my money.",Ian Wilcox,Giancarlo Volpe,7.9 +3325,3325,Water,1,Bato of the Water Tribe,15,Zuko,But how did you find him on my ship?,But how did you find him on my ship?,Ian Wilcox,Giancarlo Volpe,7.9 +3326,3326,Water,1,Bato of the Water Tribe,15,June,"[Prepares to mount Nyla, the stowaway already slung onto his back.] My shirshu can smell a rat a continent away. [Mounts her shirshu.]",My shirshu can smell a rat a continent away.,Ian Wilcox,Giancarlo Volpe,7.9 +3327,3327,Water,1,Bato of the Water Tribe,15,Iroh,"Well, I'm impressed. [June cracks her whip. Cuts to shot of the shirshu bolting off the ship and racing down the dock.] Very impressed. [Leaning over the ledge of the ship with Zuko, stroking his beard thoughtfully; Zuko look at him, disgusted.]","Well, I'm impressed. Very impressed.",Ian Wilcox,Giancarlo Volpe,7.9 +3328,3328,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene changes to that night, the camera panning downward to show that Team Avatar has settled down for the night beside the Water Tribe ship. Cut to shot of Appa. Aang and Momo are lying on his right paw, all three fast asleep. The camera pans left, showing Katara having also drifted off in her sleeping bag. Sokka remains awake, poking a stick into a blazing campfire, looking worried. Cut to side-shot of him; the scene fades to the flashback seen earlier. A younger Sokka is seen walking by, carrying a large bundle in his arms, wearing face-paint. Cut to a shot of Hakoda standing beside a ship, having handed a bundle to a man in the ship. He turns and walks forward. Cut to a shot of Sokka who has halted in his tracks, his father approaching him and standing before his son.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3329,3329,Water,1,Bato of the Water Tribe,15,Hakoda,Sokka.,Sokka.,Ian Wilcox,Giancarlo Volpe,7.9 +3330,3330,Water,1,Bato of the Water Tribe,15,Sokka,I'm coming with you.,I'm coming with you.,Ian Wilcox,Giancarlo Volpe,7.9 +3331,3331,Water,1,Bato of the Water Tribe,15,Hakoda,"You're not old enough to go to war, Sokka, you know that.","You're not old enough to go to war, Sokka, you know that.",Ian Wilcox,Giancarlo Volpe,7.9 +3332,3332,Water,1,Bato of the Water Tribe,15,Sokka,"[Desperately.] I'm strong, I'm brave, I can fight! Please, Dad!","I'm strong, I'm brave, I can fight! Please, Dad!",Ian Wilcox,Giancarlo Volpe,7.9 +3333,3333,Water,1,Bato of the Water Tribe,15,Hakoda,"[Lays a hand on his son's shoulder; grimly and sadly.] Being a man is knowing where you're needed the most. And for you right now, that's here, protecting your sister.","Being a man is knowing where you're needed the most. And for you right now, that's here, protecting your sister.",Ian Wilcox,Giancarlo Volpe,7.9 +3334,3334,Water,1,Bato of the Water Tribe,15,Sokka,I don't understand. [His eyes glisten.],I don't understand.,Ian Wilcox,Giancarlo Volpe,7.9 +3335,3335,Water,1,Bato of the Water Tribe,15,Hakoda,Someday you will. [Sokka throws aside his bag and throws himself into his father's arms. Cut to close-up of him as he sobs and buries his face in his father's parka.] I'm gonna miss you so much.,Someday you will. I'm gonna miss you so much.,Ian Wilcox,Giancarlo Volpe,7.9 +3336,3336,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene fades back to present day, Sokka still looking sullenly into the fire. Suddenly a strange noise can be heard, its source originating from somewhere off-camera.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3337,3337,Water,1,Bato of the Water Tribe,15,Sokka,"[Alert.] Who's there? [Stands up, boomerang in hand.]",Who's there?,Ian Wilcox,Giancarlo Volpe,7.9 +3338,3338,Water,1,Bato of the Water Tribe,15,Scene Description,"Cut to a shot of the campsite from several feet away. A pair of boots appears in front of the camera. Cut to shot of a man, hailing from the Water Tribe with white bandages wrapped around the upper left portion of his torso, stepping out of the shadows. He is clearly surprised to see them.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3339,3339,Water,1,Bato of the Water Tribe,15,Bato,Sokka?,Sokka?,Ian Wilcox,Giancarlo Volpe,7.9 +3340,3340,Water,1,Bato of the Water Tribe,15,Sokka,"[Quizzically, raising an eyebrow.] Bato? [Spirited.]",Bato?,Ian Wilcox,Giancarlo Volpe,7.9 +3341,3341,Water,1,Bato of the Water Tribe,15,Aang,"[Having awoken, along with Katara.] Who the what now?",Who the what now?,Ian Wilcox,Giancarlo Volpe,7.9 +3342,3342,Water,1,Bato of the Water Tribe,15,Katara,[Cheerfully.] Bato!,Bato!,Ian Wilcox,Giancarlo Volpe,7.9 +3343,3343,Water,1,Bato of the Water Tribe,15,Bato,"[Cuts to side-shot of Bato, Sokka running over to him, followed closely by Katara.] Sokka! Katara! It is so good to see you two. [Hugs Katara and Sokka.] You've grown so much! [Aang follows them, but remains standing a few feet away.]",Sokka! Katara! It is so good to see you two. You've grown so much!,Ian Wilcox,Giancarlo Volpe,7.9 +3344,3344,Water,1,Bato of the Water Tribe,15,Aang,"[Bows in greeting.] Hi, I'm Aang.","Hi, I'm Aang.",Ian Wilcox,Giancarlo Volpe,7.9 +3345,3345,Water,1,Bato of the Water Tribe,15,Sokka,Where's Dad?,Where's Dad?,Ian Wilcox,Giancarlo Volpe,7.9 +3346,3346,Water,1,Bato of the Water Tribe,15,Katara,Is he here?,Is he here?,Ian Wilcox,Giancarlo Volpe,7.9 +3347,3347,Water,1,Bato of the Water Tribe,15,Bato,"No, he and the other warriors should be in the Eastern Earth Kingdom by now. [Both siblings look crestfallen at this news. A gust of wind blows, causing them to shiver. Cut to a shot of Bato who shivers as well.] This is no place for a reunion. Let's get inside.","No, he and the other warriors should be in the Eastern Earth Kingdom by now. This is no place for a reunion. Let's get inside.",Ian Wilcox,Giancarlo Volpe,7.9 +3348,3348,Water,1,Bato of the Water Tribe,15,Scene Description,"He turns and slings his arms around Sokka and Katara, leading them away. After a moment, he looks back at Aang and gestures for him to follow. Cut to an overhead shot of the shore, the campsite in the distance, as the group begins walking away. The scene cuts to a different location altogether, the moon hanging in a purplish-blue night sky. The camera pans downward to show the roof over of the entrance to an open courtyard. Cut to a shot inside the courtyard, a few nuns milling about, Appa and the group approaching.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3349,3349,Water,1,Bato of the Water Tribe,15,Bato,"After I was wounded, your father carried me to this abbey. The sisters have cared for me ever since. Superior, [A woman turns around.] these are Hakoda's children. They've been traveling with the Avatar. I found them by my boat.","After I was wounded, your father carried me to this abbey. The sisters have cared for me ever since. Superior, these are Hakoda's children. They've been traveling with the Avatar. I found them by my boat.",Ian Wilcox,Giancarlo Volpe,7.9 +3350,3350,Water,1,Bato of the Water Tribe,15,Mother Superior,"Young Avatar, it gives me great joy to be in your presence. Welcome to our abbey.","Young Avatar, it gives me great joy to be in your presence. Welcome to our abbey.",Ian Wilcox,Giancarlo Volpe,7.9 +3351,3351,Water,1,Bato of the Water Tribe,15,Aang,"Thank you, it's truly an honor to be here. If there's anything- [Sokka abruptly cuts him off.]","Thank you, it's truly an honor to be here. If there's anything-",Ian Wilcox,Giancarlo Volpe,7.9 +3352,3352,Water,1,Bato of the Water Tribe,15,Sokka,"What smells so good, Bato?","What smells so good, Bato?",Ian Wilcox,Giancarlo Volpe,7.9 +3353,3353,Water,1,Bato of the Water Tribe,15,Bato,[Sniffs.] The sisters craft ointments and perfumes.,The sisters craft ointments and perfumes.,Ian Wilcox,Giancarlo Volpe,7.9 +3354,3354,Water,1,Bato of the Water Tribe,15,Sokka,"Perfume? [Pointing his thumbs at Appa.] Maybe we can dump some on Appa, because he stinks so much. [Waves his hand in front of his face.] Am I right? [Everyone is silent, a single person coughs.]","Perfume? Maybe we can dump some on Appa, because he stinks so much. Am I right?",Ian Wilcox,Giancarlo Volpe,7.9 +3355,3355,Water,1,Bato of the Water Tribe,15,Bato,You have your father's wit.,You have your father's wit.,Ian Wilcox,Giancarlo Volpe,7.9 +3356,3356,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene cuts to the hut in which Bato is staying, with a tent on the opposite side of the door being the bed chamber, a fire with cousins in the middle, and various pelts placed and hung everywhere.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3357,3357,Water,1,Bato of the Water Tribe,15,Katara,"Bato, it looks like home! [Bato, Katara, Sokka, and Aang file inside.]","Bato, it looks like home!",Ian Wilcox,Giancarlo Volpe,7.9 +3358,3358,Water,1,Bato of the Water Tribe,15,Sokka,"Everything's here, even the pelts!","Everything's here, even the pelts!",Ian Wilcox,Giancarlo Volpe,7.9 +3359,3359,Water,1,Bato of the Water Tribe,15,Aang,"[Sarcastically.] Yeah, nothing's cozier than dead animal skins.","Yeah, nothing's cozier than dead animal skins.",Ian Wilcox,Giancarlo Volpe,7.9 +3360,3360,Water,1,Bato of the Water Tribe,15,Scene Description,"Momo leaps from Aang's arms and starts hitting the head of a bear pelt. The bear's mouth closes, Momo is alarmed a retreats back to Aang. Katara and Sokka are by the fire. Katara opens the lid of a pot cooking over the fire as Bato joins them.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3361,3361,Water,1,Bato of the Water Tribe,15,Katara,[Surprised and delighted.] No way! Stewed sea prunes!,No way! Stewed sea prunes!,Ian Wilcox,Giancarlo Volpe,7.9 +3362,3362,Water,1,Bato of the Water Tribe,15,Bato,Help yourself!,Help yourself!,Ian Wilcox,Giancarlo Volpe,7.9 +3363,3363,Water,1,Bato of the Water Tribe,15,Sokka,Dad could eat a whole barrel of these things!,Dad could eat a whole barrel of these things!,Ian Wilcox,Giancarlo Volpe,7.9 +3364,3364,Water,1,Bato of the Water Tribe,15,Scene Description,"Aang takes a bowl of stewed sea prunes and sniffs it, but looks away in disgust and sets it to the side.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3365,3365,Water,1,Bato of the Water Tribe,15,Katara,"Bato, is it true that you and dad lassoed an arctic hippo?","Bato, is it true that you and dad lassoed an arctic hippo?",Ian Wilcox,Giancarlo Volpe,7.9 +3366,3366,Water,1,Bato of the Water Tribe,15,Bato,"It was your father's idea, he just dragged me along. Well, the hippo did the dragging! [Momo, sitting by Aang, starts to eat the stewed sea prunes that Aang set aside, but ends up spitting it out.]","It was your father's idea, he just dragged me along. Well, the hippo did the dragging!",Ian Wilcox,Giancarlo Volpe,7.9 +3367,3367,Water,1,Bato of the Water Tribe,15,Aang,"[Sokka and Katara are slurping their stewed sea prunes as Aang speaks.] Hey, I ride animals, too! There was this one time when I rode a giant eel and I-","Hey, I ride animals, too! There was this one time when I rode a giant eel and I-",Ian Wilcox,Giancarlo Volpe,7.9 +3368,3368,Water,1,Bato of the Water Tribe,15,Sokka,"[Cutting Aang off.] So, who was it that came up with the Great Blubber Fiasco?","So, who was it that came up with the Great Blubber Fiasco?",Ian Wilcox,Giancarlo Volpe,7.9 +3369,3369,Water,1,Bato of the Water Tribe,15,Bato,[Chuckles to himself.] You knew about that?,You knew about that?,Ian Wilcox,Giancarlo Volpe,7.9 +3370,3370,Water,1,Bato of the Water Tribe,15,Katara,Everyone does!,Everyone does!,Ian Wilcox,Giancarlo Volpe,7.9 +3371,3371,Water,1,Bato of the Water Tribe,15,Aang,[Curiously.] What's that story?,What's that story?,Ian Wilcox,Giancarlo Volpe,7.9 +3372,3372,Water,1,Bato of the Water Tribe,15,Sokka,"[Waving Aang off.] It's a long one Aang, some other time.","It's a long one Aang, some other time.",Ian Wilcox,Giancarlo Volpe,7.9 +3373,3373,Water,1,Bato of the Water Tribe,15,Katara,[To Bato.] You and Dad had so many hilarious adventures.,You and Dad had so many hilarious adventures.,Ian Wilcox,Giancarlo Volpe,7.9 +3374,3374,Water,1,Bato of the Water Tribe,15,Bato,"Not all of which were hilarious at the time, but everything's funny in hindsight. [Chuckling.] Hey, Aang! Please put that down, [Aang is shown wearing a fur pelt on his head.] it's ceremonial and very fragile. [Aang puts the pelt back on the wall, and sits in the back of the room.]","Not all of which were hilarious at the time, but everything's funny in hindsight. Hey, Aang! Please put that down, it's ceremonial and very fragile.",Ian Wilcox,Giancarlo Volpe,7.9 +3375,3375,Water,1,Bato of the Water Tribe,15,Sokka,Was it you or Dad that put an octopus on your head and convinced Gran-Gran you were a water spirit?,Was it you or Dad that put an octopus on your head and convinced Gran-Gran you were a water spirit?,Ian Wilcox,Giancarlo Volpe,7.9 +3376,3376,Water,1,Bato of the Water Tribe,15,Bato,"Your dad wore the octopus, [Lowers his voice.] but I did the spooky voice.","Your dad wore the octopus, but I did the spooky voice.",Ian Wilcox,Giancarlo Volpe,7.9 +3377,3377,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene cuts to a seedy tavern in the Earth Kingdom. A man is thrown through the roof and land of the ground. Cut to a snake tattoo on a woman's arm. The camera zooms out, showing that it is June's tattoo. She calmly arm-wrestles a man, who gnashes his teeth and sweats. The shot changes to the back of the crowd where Zuko arrives.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3378,3378,Water,1,Bato of the Water Tribe,15,Zuko,"[Annoyed.] Out of my way! [Pushing a man out of the way.] Step aside, filth!","Out of my way! Step aside, filth!",Ian Wilcox,Giancarlo Volpe,7.9 +3379,3379,Water,1,Bato of the Water Tribe,15,Iroh,[Apologetically.] He means no offense! I'm certain you bathe regularly!,He means no offense! I'm certain you bathe regularly!,Ian Wilcox,Giancarlo Volpe,7.9 +3380,3380,Water,1,Bato of the Water Tribe,15,Scene Description,"Zuko approaches June, who is still arm wrestling. Iroh reaches her as well.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3381,3381,Water,1,Bato of the Water Tribe,15,Zuko,I need to talk to you!,I need to talk to you!,Ian Wilcox,Giancarlo Volpe,7.9 +3382,3382,Water,1,Bato of the Water Tribe,15,June,"Well, if it isn't my new friends: Angry Boy and Uncle Lazy.","Well, if it isn't my new friends: Angry Boy and Uncle Lazy.",Ian Wilcox,Giancarlo Volpe,7.9 +3383,3383,Water,1,Bato of the Water Tribe,15,Scene Description,Her opponent strains to get the upper hand. Iroh laughs at her remark and June wins her match without breaking a sweat. The crowd cheers and throws money at the winner.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3384,3384,Water,1,Bato of the Water Tribe,15,Zuko,Your beast trashed my ship. You have to pay me back!,Your beast trashed my ship. You have to pay me back!,Ian Wilcox,Giancarlo Volpe,7.9 +3385,3385,Water,1,Bato of the Water Tribe,15,June,"[As she collects her winnings.] Well, I'd love to help you out, but I'm a little short on money. [To the crowd.] Drinks on me! [The crowd cheers.]","Well, I'd love to help you out, but I'm a little short on money. Drinks on me!",Ian Wilcox,Giancarlo Volpe,7.9 +3386,3386,Water,1,Bato of the Water Tribe,15,Scene Description,"June moves to take sip of her drink, but Zuko grabs her wrist in anger.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3387,3387,Water,1,Bato of the Water Tribe,15,Zuko,Money isn't what I had in mind.,Money isn't what I had in mind.,Ian Wilcox,Giancarlo Volpe,7.9 +3388,3388,Water,1,Bato of the Water Tribe,15,Scene Description,Cut to moths flying around a lantern.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3389,3389,Water,1,Bato of the Water Tribe,15,Zuko,I need you to find someone. [Cut to Katara's necklace.],I need you to find someone.,Ian Wilcox,Giancarlo Volpe,7.9 +3390,3390,Water,1,Bato of the Water Tribe,15,Scene Description,Shot changes to show June leaning on Nyla while Iroh and Zuko stand in front of June.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3391,3391,Water,1,Bato of the Water Tribe,15,June,"[Sarcastically.] What happened, your girlfriend run off on you?","What happened, your girlfriend run off on you?",Ian Wilcox,Giancarlo Volpe,7.9 +3392,3392,Water,1,Bato of the Water Tribe,15,Zuko,"It's not the girl I'm after, it's the bald monk she's traveling with.","It's not the girl I'm after, it's the bald monk she's traveling with.",Ian Wilcox,Giancarlo Volpe,7.9 +3393,3393,Water,1,Bato of the Water Tribe,15,June,[Unamused.] Whatever you say.,Whatever you say.,Ian Wilcox,Giancarlo Volpe,7.9 +3394,3394,Water,1,Bato of the Water Tribe,15,Zuko,"If you find them, I'll consider the damage to my ship paid for.","If you find them, I'll consider the damage to my ship paid for.",Ian Wilcox,Giancarlo Volpe,7.9 +3395,3395,Water,1,Bato of the Water Tribe,15,June,"[Scoffs.] Heh, forget it. [She starts to climb her saddle.]","Heh, forget it.",Ian Wilcox,Giancarlo Volpe,7.9 +3396,3396,Water,1,Bato of the Water Tribe,15,Iroh,"Plus, we'll pay your weight in gold.","Plus, we'll pay your weight in gold.",Ian Wilcox,Giancarlo Volpe,7.9 +3397,3397,Water,1,Bato of the Water Tribe,15,June,"[Stops and widens her eyes in surprise. She smiles. Cut to a side-shot of June walking over to Iroh.] Make it your [Pokes his stomach.] weight, and we gotta deal.","Make it your weight, and we gotta deal.",Ian Wilcox,Giancarlo Volpe,7.9 +3398,3398,Water,1,Bato of the Water Tribe,15,Iroh,[Laughs with his hand on his stomach.] You got it!,You got it!,Ian Wilcox,Giancarlo Volpe,7.9 +3399,3399,Water,1,Bato of the Water Tribe,15,June,[As she turns back to Nyla.] Get on!,Get on!,Ian Wilcox,Giancarlo Volpe,7.9 +3400,3400,Water,1,Bato of the Water Tribe,15,Scene Description,"June takes Katara's necklace from Zuko, and shows it to Nyla. The camera shows the surroundings through Nyla's sight. As the shirshu looks around, the colored scents of humans are shown. Nyla soon finds Katara's purple scent on the necklace, and the threesome head off. The scene changes to an aerial shot of the abbey, and cuts to inside Bato's room.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3401,3401,Water,1,Bato of the Water Tribe,15,Bato,"There's something I should tell you kids. I'm expecting a message from your father. [Aang is shown with his eyes closed, excluded from the group.]",There's something I should tell you kids. I'm expecting a message from your father.,Ian Wilcox,Giancarlo Volpe,7.9 +3402,3402,Water,1,Bato of the Water Tribe,15,Katara,[Excited.] Really?,Really?,Ian Wilcox,Giancarlo Volpe,7.9 +3403,3403,Water,1,Bato of the Water Tribe,15,Sokka,[Slightly demanding.] When?,When?,Ian Wilcox,Giancarlo Volpe,7.9 +3404,3404,Water,1,Bato of the Water Tribe,15,Bato,"Any day now. Your father said he'd send a message when they found the rendezvous point. If you wait until the message arrives, you can come with me, and see your father again.","Any day now. Your father said he'd send a message when they found the rendezvous point. If you wait until the message arrives, you can come with me, and see your father again.",Ian Wilcox,Giancarlo Volpe,7.9 +3405,3405,Water,1,Bato of the Water Tribe,15,Scene Description,Aang looks toward his friends with a sad and worried look.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3406,3406,Water,1,Bato of the Water Tribe,15,Sokka,It's been over two years since we've seen Dad. That would be so incredible! Katara!,It's been over two years since we've seen Dad. That would be so incredible! Katara!,Ian Wilcox,Giancarlo Volpe,7.9 +3407,3407,Water,1,Bato of the Water Tribe,15,Katara,"I do really miss him, it would be great to see Dad. [Aang gets up to leave, but no one notices him.]","I do really miss him, it would be great to see Dad.",Ian Wilcox,Giancarlo Volpe,7.9 +3408,3408,Water,1,Bato of the Water Tribe,15,Bato,"It's been far too long, hasn't it? [As Aang leaves.] I'm not sure when word will arrive, but when it does-","It's been far too long, hasn't it? I'm not sure when word will arrive, but when it does-",Ian Wilcox,Giancarlo Volpe,7.9 +3409,3409,Water,1,Bato of the Water Tribe,15,Scene Description,Aang closes the door and heads toward the abbey gate. Cut back to inside Bato's room.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3410,3410,Water,1,Bato of the Water Tribe,15,Sokka,"It would be great, but we can't. We have to take Aang to the North Pole first.","It would be great, but we can't. We have to take Aang to the North Pole first.",Ian Wilcox,Giancarlo Volpe,7.9 +3411,3411,Water,1,Bato of the Water Tribe,15,Katara,"Even if we do have time to wait for the message, who knows how far we'd have to travel. We don't have time for a long detour.","Even if we do have time to wait for the message, who knows how far we'd have to travel. We don't have time for a long detour.",Ian Wilcox,Giancarlo Volpe,7.9 +3412,3412,Water,1,Bato of the Water Tribe,15,Bato,"I'm sure your father would understand, and be proud that his children are helping the Avatar.","I'm sure your father would understand, and be proud that his children are helping the Avatar.",Ian Wilcox,Giancarlo Volpe,7.9 +3413,3413,Water,1,Bato of the Water Tribe,15,Scene Description,The scene cuts to footprints on the beach at night. The camera pans upward to reveal Aang sitting on the bow of Bato's boat.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3414,3414,Water,1,Bato of the Water Tribe,15,Aang,I can't believe they would leave me.,I can't believe they would leave me.,Ian Wilcox,Giancarlo Volpe,7.9 +3415,3415,Water,1,Bato of the Water Tribe,15,Scene Description,An ostrich horse can be heard coming. A messenger arrives.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3416,3416,Water,1,Bato of the Water Tribe,15,Messenger,I'm looking for Bato of the Water Tribe.,I'm looking for Bato of the Water Tribe.,Ian Wilcox,Giancarlo Volpe,7.9 +3417,3417,Water,1,Bato of the Water Tribe,15,Aang,"Uhhh, I know Bato!","Uhhh, I know Bato!",Ian Wilcox,Giancarlo Volpe,7.9 +3418,3418,Water,1,Bato of the Water Tribe,15,Messenger,Make sure he gets this! [Hands Aang the scroll and rides away.],Make sure he gets this!,Ian Wilcox,Giancarlo Volpe,7.9 +3419,3419,Water,1,Bato of the Water Tribe,15,Scene Description,"Aang curiously unravels at the message, finding that it is actually a map.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3420,3420,Water,1,Bato of the Water Tribe,15,Aang,It's the map to Sokka and Katara's dad!,It's the map to Sokka and Katara's dad!,Ian Wilcox,Giancarlo Volpe,7.9 +3421,3421,Water,1,Bato of the Water Tribe,15,Scene Description,Aang's curious look changes to frustration as he crumples the map and stuffs it inside his clothes. Shot changes to a further distance of Aang sitting on the boat. Cut to an aerial shot of the abbey. Cut to a door which Aang opens.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3422,3422,Water,1,Bato of the Water Tribe,15,Aang,Hey everyone! Sorry I was gone so long.,Hey everyone! Sorry I was gone so long.,Ian Wilcox,Giancarlo Volpe,7.9 +3423,3423,Water,1,Bato of the Water Tribe,15,Katara,"[Turns to face him.] Hey, Aang, I didn't notice you left.","Hey, Aang, I didn't notice you left.",Ian Wilcox,Giancarlo Volpe,7.9 +3424,3424,Water,1,Bato of the Water Tribe,15,Aang,"Yup, but now I'm back. [Sitting down.] Sure could go for some delicious sea prunes!","Yup, but now I'm back. Sure could go for some delicious sea prunes!",Ian Wilcox,Giancarlo Volpe,7.9 +3425,3425,Water,1,Bato of the Water Tribe,15,Scene Description,"Aang quickly takes some bites of sea prunes, but chokes them back up, yet he pretends to enjoy them. Katara, Bato, and Sokka look at him strangely. The scene changes to the herbalist's home that Aang visited to find a cure to Katara and Sokka's sickness in the past. Nyla growl can be heard, to which Miyuki hisses. The herbalist turns around to find Nyla, June, Zuko, and Iroh.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3426,3426,Water,1,Bato of the Water Tribe,15,Herbalist,"Out for a bit of fresh air, are we?","Out for a bit of fresh air, are we?",Ian Wilcox,Giancarlo Volpe,7.9 +3427,3427,Water,1,Bato of the Water Tribe,15,Zuko,We're looking for someone.,We're looking for someone.,Ian Wilcox,Giancarlo Volpe,7.9 +3428,3428,Water,1,Bato of the Water Tribe,15,Herbalist,"I hope it's not Miyuki [To Miyuki.] Miyuki, did you get in trouble with the Fire Nation, again? [Miyuki meows.]","I hope it's not Miyuki Miyuki, did you get in trouble with the Fire Nation, again?",Ian Wilcox,Giancarlo Volpe,7.9 +3429,3429,Water,1,Bato of the Water Tribe,15,June,The Avatar's been through here. Let's keep moving.,The Avatar's been through here. Let's keep moving.,Ian Wilcox,Giancarlo Volpe,7.9 +3430,3430,Water,1,Bato of the Water Tribe,15,Scene Description,"Cut to an aerial shot of the abbey. The shot changes to show Aang airbending a pile of hay to Appa. As he finishes his form, the map falls out of his sleeve.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3431,3431,Water,1,Bato of the Water Tribe,15,Mother Superior,Aha! I caught you. [Picks up the crumpled paper as Aang looks at her nervously.] You should be ashamed of yourself ... Littering in the courtyard.,Aha! I caught you. You should be ashamed of yourself ... Littering in the courtyard.,Ian Wilcox,Giancarlo Volpe,7.9 +3432,3432,Water,1,Bato of the Water Tribe,15,Aang,"[Takes back the crumpled paper.] I'm sorry, I'll take care of this. [Bows. As Mother Superior walks away, Aang stuffs the map back up his sleeve.]","I'm sorry, I'll take care of this.",Ian Wilcox,Giancarlo Volpe,7.9 +3433,3433,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene cuts to Bato's ship the next day. Bato, Sokka, Katara, and Aang are seen walking toward it.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3434,3434,Water,1,Bato of the Water Tribe,15,Bato,This ship is sentimental to me. It was built by my father.,This ship is sentimental to me. It was built by my father.,Ian Wilcox,Giancarlo Volpe,7.9 +3435,3435,Water,1,Bato of the Water Tribe,15,Scene Description,"Aang looks down at the ground, noticing the tracks from the messenger's ostrich horse are still visible. He airbends the sand to cover the tracks and whistles nonchalantly. Aang walks up to Bato.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3436,3436,Water,1,Bato of the Water Tribe,15,Sokka,[To Bato.] Is this the boat he took you ice dodging in?,Is this the boat he took you ice dodging in?,Ian Wilcox,Giancarlo Volpe,7.9 +3437,3437,Water,1,Bato of the Water Tribe,15,Bato,Yep! It's got the scar to prove it. Ha. How 'bout you Sokka? You must have some good stories from your first time ice dodging. [Sokka begins to look saddened.],Yep! It's got the scar to prove it. Ha. How 'bout you Sokka? You must have some good stories from your first time ice dodging.,Ian Wilcox,Giancarlo Volpe,7.9 +3438,3438,Water,1,Bato of the Water Tribe,15,Katara,He never got to go. Dad left before he was old enough.,He never got to go. Dad left before he was old enough.,Ian Wilcox,Giancarlo Volpe,7.9 +3439,3439,Water,1,Bato of the Water Tribe,15,Bato,"Oh, I forgot you were too young.","Oh, I forgot you were too young.",Ian Wilcox,Giancarlo Volpe,7.9 +3440,3440,Water,1,Bato of the Water Tribe,15,Aang,What's ice dodging?,What's ice dodging?,Ian Wilcox,Giancarlo Volpe,7.9 +3441,3441,Water,1,Bato of the Water Tribe,15,Bato,"It's a rite of passage for young Water Tribe members. When you turn fourteen, your dad takes you- [Bato smile and puts his hand on Sokka's shoulder with a new thought.] You know what, you're about to find out!","It's a rite of passage for young Water Tribe members. When you turn fourteen, your dad takes you- You know what, you're about to find out!",Ian Wilcox,Giancarlo Volpe,7.9 +3442,3442,Water,1,Bato of the Water Tribe,15,Scene Description,"June, Zuko, and Iroh followed Katara's trail to the Makapu Village. As citizens flee from Nyla in terror, he stops in front of Aunt Wu's shop. Wu remains outside her shop, completely calm.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3443,3443,Water,1,Bato of the Water Tribe,15,Zuko,[Annoyed.] Why are we stopping?,Why are we stopping?,Ian Wilcox,Giancarlo Volpe,7.9 +3444,3444,Water,1,Bato of the Water Tribe,15,June,Because the girl must have spent a lot of time here.,Because the girl must have spent a lot of time here.,Ian Wilcox,Giancarlo Volpe,7.9 +3445,3445,Water,1,Bato of the Water Tribe,15,Zuko,We have no time for this!,We have no time for this!,Ian Wilcox,Giancarlo Volpe,7.9 +3446,3446,Water,1,Bato of the Water Tribe,15,Scene Description,"Zuko gets off Nyla and hangs the necklace in front of his face. Nyla appears agitated and he snaps at Zuko, who swiftly ducks down.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3447,3447,Water,1,Bato of the Water Tribe,15,Zuko,Hey! Watch it!,Hey! Watch it!,Ian Wilcox,Giancarlo Volpe,7.9 +3448,3448,Water,1,Bato of the Water Tribe,15,June,"[As Iroh laughs from behind her.] Oh look, he likes you!","Oh look, he likes you!",Ian Wilcox,Giancarlo Volpe,7.9 +3449,3449,Water,1,Bato of the Water Tribe,15,Scene Description,"Aunt Wu approaches Iroh, still calm.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3450,3450,Water,1,Bato of the Water Tribe,15,Aunt Wu,"Care to hear your fortune, handsome?","Care to hear your fortune, handsome?",Ian Wilcox,Giancarlo Volpe,7.9 +3451,3451,Water,1,Bato of the Water Tribe,15,Iroh,"At my age, there's really only one big surprise left, and I'd just as soon leave it a mystery.","At my age, there's really only one big surprise left, and I'd just as soon leave it a mystery.",Ian Wilcox,Giancarlo Volpe,7.9 +3452,3452,Water,1,Bato of the Water Tribe,15,Scene Description,"The threesome leave on Nyla, and the scene cuts back to Bato's ship, which is now sailing close to shore.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3453,3453,Water,1,Bato of the Water Tribe,15,Bato,"Ice dodging is a ceremonial test of wisdom, bravery, and trust. [Shot changes to on the boat.] In our village, ice dodging was done by weaving a boat through a field of icebergs.","Ice dodging is a ceremonial test of wisdom, bravery, and trust. In our village, ice dodging was done by weaving a boat through a field of icebergs.",Ian Wilcox,Giancarlo Volpe,7.9 +3454,3454,Water,1,Bato of the Water Tribe,15,Sokka,How are we supposed to ice dodge without ice?,How are we supposed to ice dodge without ice?,Ian Wilcox,Giancarlo Volpe,7.9 +3455,3455,Water,1,Bato of the Water Tribe,15,Bato,"You'll be dodging those. [Points to a group of tall, sharp, jagged rocks near the shore. Katara and Sokka appear nervous.] Sokka, you steer and call the shots, lead wisely. Katara, you secure the main sail. [Katara grabs a rope.] The winds can be brutal, so be brave. Aang, you control the jib. Without your steady hand, we all go down. Your position is about trust.","You'll be dodging those. Sokka, you steer and call the shots, lead wisely. Katara, you secure the main sail. The winds can be brutal, so be brave. Aang, you control the jib. Without your steady hand, we all go down. Your position is about trust.",Ian Wilcox,Giancarlo Volpe,7.9 +3456,3456,Water,1,Bato of the Water Tribe,15,Aang,"[Blinks. Defensively.] I know that. Why wouldn't I know that? [Folds his arms.] I'm the Avatar; I know about trust. [He crosses his arms and looks away, but gives Bato a second glance.]",I know that. Why wouldn't I know that? I'm the Avatar; I know about trust.,Ian Wilcox,Giancarlo Volpe,7.9 +3457,3457,Water,1,Bato of the Water Tribe,15,Bato,"For this is to be done right, I cannot help. [Sits cross-legged at the front of the boat.] You pass or fail on your own.","For this is to be done right, I cannot help. You pass or fail on your own.",Ian Wilcox,Giancarlo Volpe,7.9 +3458,3458,Water,1,Bato of the Water Tribe,15,Sokka,"[Studies the rocky shores.] Aang, ease up on the jib. Katara, steady. [Katara looks at the shore with concern.] Aang, less sail. Katara, give him room. [The ship moves to the side and sails between some rocks.] Aang, helm to lee. Helm to lee!","Aang, ease up on the jib. Katara, steady. Aang, less sail. Katara, give him room. Aang, helm to lee. Helm to lee!",Ian Wilcox,Giancarlo Volpe,7.9 +3459,3459,Water,1,Bato of the Water Tribe,15,Aang,What does that even mean?,What does that even mean?,Ian Wilcox,Giancarlo Volpe,7.9 +3460,3460,Water,1,Bato of the Water Tribe,15,Scene Description,The waves knock Bato around. Sokka struggles while Katara and Aang close their eyes. The shot changes to show the boat pass between more rocks.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3461,3461,Water,1,Bato of the Water Tribe,15,Sokka,Great job!,Great job!,Ian Wilcox,Giancarlo Volpe,7.9 +3462,3462,Water,1,Bato of the Water Tribe,15,Scene Description,Katara and Aang smile. Aerial shot of the boat heading toward a large bundle of rocks.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3463,3463,Water,1,Bato of the Water Tribe,15,Katara,There's no way through!,There's no way through!,Ian Wilcox,Giancarlo Volpe,7.9 +3464,3464,Water,1,Bato of the Water Tribe,15,Sokka,We can make it.,We can make it.,Ian Wilcox,Giancarlo Volpe,7.9 +3465,3465,Water,1,Bato of the Water Tribe,15,Bato,"[Stands up and grabs the side of the boat.] Sokka, you've already proven yourself. Maybe we should-","Sokka, you've already proven yourself. Maybe we should-",Ian Wilcox,Giancarlo Volpe,7.9 +3466,3466,Water,1,Bato of the Water Tribe,15,Sokka,"Aang, I'm gonna need air in that sail. [Aang nods.] Katara, I want you to bend as much water as you can between us and those rocks. Now!","Aang, I'm gonna need air in that sail. Katara, I want you to bend as much water as you can between us and those rocks. Now!",Ian Wilcox,Giancarlo Volpe,7.9 +3467,3467,Water,1,Bato of the Water Tribe,15,Scene Description,"Katara bends the water below the boat while Aang fires airbending blasts at the sail. Sokka groans nervously as the boat clears the rocks. When they reach clear water, Sokka sighs and relaxes. The rest of the group smiles at him. Fade to an aerial shot of Bato's boat beached on the shore. Shot changes to Bato carrying a small cup of purple paint.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3468,3468,Water,1,Bato of the Water Tribe,15,Bato,"[Dips his fingers in the paint.] The spirits of water bear witness to these marks. For Sokka, the Mark of the Wise. [Uses his thumb to put an arc and small dot on Sokka's forehead.] The same mark your father earned. For Katara, [Uses his thumb to put a crescent moon mark on Katara's forehead.] the Mark of the Brave. Your courage inspires us. [Using his thumb to put an arc on Aang's forehead.] And for Aang, the Mark of the Trusted. You are now an honorary member of the Water Tribe.","The spirits of water bear witness to these marks. For Sokka, the Mark of the Wise. The same mark your father earned. For Katara, the Mark of the Brave. Your courage inspires us. And for Aang, the Mark of the Trusted. You are now an honorary member of the Water Tribe.",Ian Wilcox,Giancarlo Volpe,7.9 +3469,3469,Water,1,Bato of the Water Tribe,15,Aang,I can't. [Looks down.],I can't.,Ian Wilcox,Giancarlo Volpe,7.9 +3470,3470,Water,1,Bato of the Water Tribe,15,Katara,Of course you can!,Of course you can!,Ian Wilcox,Giancarlo Volpe,7.9 +3471,3471,Water,1,Bato of the Water Tribe,15,Aang,"[Rubbing off his mark and backing away.] No, you can't trust me.","No, you can't trust me.",Ian Wilcox,Giancarlo Volpe,7.9 +3472,3472,Water,1,Bato of the Water Tribe,15,Katara,"[Concerned.] Aang, what are you talking about?","Aang, what are you talking about?",Ian Wilcox,Giancarlo Volpe,7.9 +3473,3473,Water,1,Bato of the Water Tribe,15,Aang,[Takes the crumpled map out of his sleeve.] A messenger gave this to me for Bato. [Katara takes it from him.] You have to understand. I was afraid you would-,A messenger gave this to me for Bato. You have to understand. I was afraid you would-,Ian Wilcox,Giancarlo Volpe,7.9 +3474,3474,Water,1,Bato of the Water Tribe,15,Sokka,"[Angrily.] This is the map to our father! You had it the whole time? How could you? [Aang shrugs his shoulders.] Well, you can go to the North Pole on your own. I'm going to find Dad. [Walks away.]","This is the map to our father! You had it the whole time? How could you? Well, you can go to the North Pole on your own. I'm going to find Dad.",Ian Wilcox,Giancarlo Volpe,7.9 +3475,3475,Water,1,Bato of the Water Tribe,15,Bato,"Well, Sokka. I think you should-","Well, Sokka. I think you should-",Ian Wilcox,Giancarlo Volpe,7.9 +3476,3476,Water,1,Bato of the Water Tribe,15,Sokka,"[Turns back.] Katara, are you with me?","Katara, are you with me?",Ian Wilcox,Giancarlo Volpe,7.9 +3477,3477,Water,1,Bato of the Water Tribe,15,Katara,[Turns to look at Aang and closes her eyes.] I'm with you Sokka.,I'm with you Sokka.,Ian Wilcox,Giancarlo Volpe,7.9 +3478,3478,Water,1,Bato of the Water Tribe,15,Scene Description,"Aang sadly looks at Sokka, Katara, and Bato as they walk away. Cut to an aerial shot of the abbey. The shot changes to show Bato helping Katara secure her pack as Sokka puts on his own pack. Sokka and Bato off camera. Cut to Aang sitting on Appa with Momo next to him. Shot changes to show Katara walking in front of the camera.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3479,3479,Water,1,Bato of the Water Tribe,15,Katara,Good luck.,Good luck.,Ian Wilcox,Giancarlo Volpe,7.9 +3480,3480,Water,1,Bato of the Water Tribe,15,Aang,Okay. You too.,Okay. You too.,Ian Wilcox,Giancarlo Volpe,7.9 +3481,3481,Water,1,Bato of the Water Tribe,15,Scene Description,"Katara joins Sokka and Bato at the abbey gate. Mother Superior, in front of Appa, stares at Aang.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3482,3482,Water,1,Bato of the Water Tribe,15,Aang,Guess I should be moving on.,Guess I should be moving on.,Ian Wilcox,Giancarlo Volpe,7.9 +3483,3483,Water,1,Bato of the Water Tribe,15,Mother Superior,That would be best.,That would be best.,Ian Wilcox,Giancarlo Volpe,7.9 +3484,3484,Water,1,Bato of the Water Tribe,15,Scene Description,Appa growls. The shot changes to outside the abbey. Appa walks out and Aang notices three figures walk away in the distance.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3485,3485,Water,1,Bato of the Water Tribe,15,Aang,"I'm an idiot, Momo. [Momo chitters.]","I'm an idiot, Momo.",Ian Wilcox,Giancarlo Volpe,7.9 +3486,3486,Water,1,Bato of the Water Tribe,15,Scene Description,"Cut to an aerial view of the abbey. The shot cuts to three nuns stirring perfume. The sound of rumbling alerts the nuns as they stare in fright as Nyla enters the abbey holding June, Iroh, and Zuko. The shot cuts to Nyla's point of view, who sees the purple scent and turns his head to follow it.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3487,3487,Water,1,Bato of the Water Tribe,15,June,"We're getting close. [Whips Nyla, who runs out of the abbey and into the woods.]",We're getting close.,Ian Wilcox,Giancarlo Volpe,7.9 +3488,3488,Water,1,Bato of the Water Tribe,15,Scene Description,"Cut to a view of the sky amidst some trees and the camera pans down to show Bato, Katara, and Sokka walking through the woods. A wolf's howl can be heard in the distance.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3489,3489,Water,1,Bato of the Water Tribe,15,Katara,[To Sokka.] That wolf sounds so sad.,That wolf sounds so sad.,Ian Wilcox,Giancarlo Volpe,7.9 +3490,3490,Water,1,Bato of the Water Tribe,15,Sokka,It's probably wounded.,It's probably wounded.,Ian Wilcox,Giancarlo Volpe,7.9 +3491,3491,Water,1,Bato of the Water Tribe,15,Bato,"[Turns back to them.] No, it's been separated from the pack. I understand that pain. It's how I felt when the Water Tribe warriors had to leave me behind. They were my family, [Shot of Sokka, who looks sadly at the camera.] and being apart from them was more painful than my wounds.","No, it's been separated from the pack. I understand that pain. It's how I felt when the Water Tribe warriors had to leave me behind. They were my family, and being apart from them was more painful than my wounds.",Ian Wilcox,Giancarlo Volpe,7.9 +3492,3492,Water,1,Bato of the Water Tribe,15,Scene Description,"Fade to another one of Sokka's flashbacks. The young Sokka stands at the end of an ice pier as eight ships travel away, fading into the fog. Frontal shot of the young Sokka fades to Sokka wearing a similar expression from the flashback as he stares at the camera.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3493,3493,Water,1,Bato of the Water Tribe,15,Katara,Sokka?,Sokka?,Ian Wilcox,Giancarlo Volpe,7.9 +3494,3494,Water,1,Bato of the Water Tribe,15,Sokka,"We need to go back. I wanna see Dad, but, helping Aang is where we're needed the most.","We need to go back. I wanna see Dad, but, helping Aang is where we're needed the most.",Ian Wilcox,Giancarlo Volpe,7.9 +3495,3495,Water,1,Bato of the Water Tribe,15,Katara,[Smiles.] You're right.,You're right.,Ian Wilcox,Giancarlo Volpe,7.9 +3496,3496,Water,1,Bato of the Water Tribe,15,Bato,"[Walks up to Katara and Sokka and puts his arms on their shoulders.] Your father will understand, and I know he's proud of you.","Your father will understand, and I know he's proud of you.",Ian Wilcox,Giancarlo Volpe,7.9 +3497,3497,Water,1,Bato of the Water Tribe,15,Sokka,"Thanks, Bato.","Thanks, Bato.",Ian Wilcox,Giancarlo Volpe,7.9 +3498,3498,Water,1,Bato of the Water Tribe,15,Bato,I know where to go from here. [Takes the map from out of his Water Tribe outfit.] Take this in case you want to find us. I'll leave a message at the rendezvous point.,I know where to go from here. Take this in case you want to find us. I'll leave a message at the rendezvous point.,Ian Wilcox,Giancarlo Volpe,7.9 +3499,3499,Water,1,Bato of the Water Tribe,15,Scene Description,The camera pans up and cuts to Aang and Momo sitting on Appa with the abandoned Water Tribe ship behind them.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3500,3500,Water,1,Bato of the Water Tribe,15,Aang,"Looks like we're going alone, guys.","Looks like we're going alone, guys.",Ian Wilcox,Giancarlo Volpe,7.9 +3501,3501,Water,1,Bato of the Water Tribe,15,Mother Superior,"[Runs on camera. Desperately.] Avatar, you must leave!","Avatar, you must leave!",Ian Wilcox,Giancarlo Volpe,7.9 +3502,3502,Water,1,Bato of the Water Tribe,15,Aang,"[Annoyed.] Okay, I get it. Everybody wants me gone.","Okay, I get it. Everybody wants me gone.",Ian Wilcox,Giancarlo Volpe,7.9 +3503,3503,Water,1,Bato of the Water Tribe,15,Mother Superior,A group of people came to the abbey looking for you.,A group of people came to the abbey looking for you.,Ian Wilcox,Giancarlo Volpe,7.9 +3504,3504,Water,1,Bato of the Water Tribe,15,Aang,Who?,Who?,Ian Wilcox,Giancarlo Volpe,7.9 +3505,3505,Water,1,Bato of the Water Tribe,15,Mother Superior,"A fierce looking woman with a horrible monster, and a young man with a scar.","A fierce looking woman with a horrible monster, and a young man with a scar.",Ian Wilcox,Giancarlo Volpe,7.9 +3506,3506,Water,1,Bato of the Water Tribe,15,Aang,Zuko.,Zuko.,Ian Wilcox,Giancarlo Volpe,7.9 +3507,3507,Water,1,Bato of the Water Tribe,15,Mother Superior,The beast was using the scent of a necklace to follow you.,The beast was using the scent of a necklace to follow you.,Ian Wilcox,Giancarlo Volpe,7.9 +3508,3508,Water,1,Bato of the Water Tribe,15,Aang,A necklace? [Gasps.] Katara!,A necklace? Katara!,Ian Wilcox,Giancarlo Volpe,7.9 +3509,3509,Water,1,Bato of the Water Tribe,15,Scene Description,Cut to a long path heading toward the abbey and the camera pans down to two figures walking toward the abbey. The shot changes to show Sokka and Katara walking down the path. Sokka hears a rumbling noise and puts his hand up to stop his sister from walking. Nyla jumps behind them and they both turn around in fear. Nyla looks at Katara.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3510,3510,Water,1,Bato of the Water Tribe,15,June,"[To Zuko.] So this is your girlfriend. [Zuko jumps down.] No wonder she left, she's way too pretty for you.","So this is your girlfriend. No wonder she left, she's way too pretty for you.",Ian Wilcox,Giancarlo Volpe,7.9 +3511,3511,Water,1,Bato of the Water Tribe,15,Zuko,[To Sokka and Katara.] Where is he? Where is the Avatar?,Where is he? Where is the Avatar?,Ian Wilcox,Giancarlo Volpe,7.9 +3512,3512,Water,1,Bato of the Water Tribe,15,Sokka,We split up. He's long gone.,We split up. He's long gone.,Ian Wilcox,Giancarlo Volpe,7.9 +3513,3513,Water,1,Bato of the Water Tribe,15,Zuko,How stupid do you think I am?,How stupid do you think I am?,Ian Wilcox,Giancarlo Volpe,7.9 +3514,3514,Water,1,Bato of the Water Tribe,15,Sokka,Pretty stupid. [Grabs his sister.] Run!,Pretty stupid. Run!,Ian Wilcox,Giancarlo Volpe,7.9 +3515,3515,Water,1,Bato of the Water Tribe,15,Scene Description,"They start running, but Nyla uses his tongue to paralyze them.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3516,3516,Water,1,Bato of the Water Tribe,15,Zuko,What are we supposed to do now?,What are we supposed to do now?,Ian Wilcox,Giancarlo Volpe,7.9 +3517,3517,Water,1,Bato of the Water Tribe,15,June,[Nyla walks closer to Sokka and Katara.] It's seeking a different scent. Perhaps something that the Avatar held.,It's seeking a different scent. Perhaps something that the Avatar held.,Ian Wilcox,Giancarlo Volpe,7.9 +3518,3518,Water,1,Bato of the Water Tribe,15,Scene Description,"Nyla knocks the map off Sokka's pack and smells its blue scent and follows the trail. Cut to the gates of the abbey as Nyla breaks them down. Nuns scatter and the shot shows Nyla holding June, Iroh, Zuko, Katara, and Sokka. Nyla walks around in a circle.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3519,3519,Water,1,Bato of the Water Tribe,15,Zuko,What's it doing? It's just going in a circle.,What's it doing? It's just going in a circle.,Ian Wilcox,Giancarlo Volpe,7.9 +3520,3520,Water,1,Bato of the Water Tribe,15,Scene Description,"The camera shows Nyla's point of view as he follows the blue scent trail up into the air and sees Aang flying down. The shot changes to Aang flying over Nyla, who stands on his hind legs and attempts to paralyze the Avatar with his tongue, throwing off his riders. Nyla falls down, too.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3521,3521,Water,1,Bato of the Water Tribe,15,Katara,[Looks up.] Aang!,Aang!,Ian Wilcox,Giancarlo Volpe,7.9 +3522,3522,Water,1,Bato of the Water Tribe,15,June,Up! [June cracks her whip. Nyla stands up and June mounts him.],Up!,Ian Wilcox,Giancarlo Volpe,7.9 +3523,3523,Water,1,Bato of the Water Tribe,15,Scene Description,"June and Nyla charge at Aang, but Appa knocks down Nyla by leaping on the shirshu's side. Appa growls and snorts at June and Nyla. Cut to Zuko and Aang facing each other. In the background, two nuns drag Sokka and Katara to the side of the abbey. Shot changes from Zuko to Aang to Zuko. Zuko firebends a blast at Aang, who stops it by waving his glider. Aang sends a blast of air at Zuko, who sidesteps it and sends a fire blast at Aang, who spins his staff to stop the blast. Aang sends an airbending blast at Zuko, who sidesteps it and sends another fire blast at Aang. Aang jumps to avoid the blast. Zuko moves in closer to Aang and sends two fire blasts at Aang's head and feet. Aang throws his staff and both jump and duck at the blasts. Zuko punches and kicks at Aang, sending fire blasts at him. Aang avoids these blasts and sends an air blast at Zuko's head. Zuko ducks and sends more fire blasts at Aang. Zuko and Aang both firebend and airbend, respectively, at each other at the same time, creating large explosion that forms a mushroom cloud. The shot changes to show Zuko and Aang fall on different roofs. Cut to Nyla and June lying on the ground. Iroh runs up to June and puts his hand on her cheek. June wakes up and stands up.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3524,3524,Water,1,Bato of the Water Tribe,15,June,[Whips Nyla.] Come on! Get up!,Come on! Get up!,Ian Wilcox,Giancarlo Volpe,7.9 +3525,3525,Water,1,Bato of the Water Tribe,15,Scene Description,"Nyla gets up. Shot of Iroh smiling. Cut to Nyla running across the abbey with June riding him. Cut to Appa's paw as Nyla lashes his tongue at it. Appa lands and falls down, paralyzed. Cut to a shot of June looking at Appa, who opens his eyes and slowly gets back up to his feet and growls. Nyla growls back and they charge at each other when June cracks her whip. The collision between the two beasts sends June flying over Appa, and she takes the opportunity to whip the sky bison. She lands on the ground and quickly rolls to the side before Appa stomps on the ground behind him where June had landed, cracking the floor. +Cut to Aang on the roof as he lifts his head and groans and gasps. Cut to Zuko running across the roof and sending a fire blast at the camera. Aang jumps into the air. Zuko sends a fire blast at Aang's feet. Aang jumps up and sends an airbending blast at Zuko. When Aang lands, Zuko sends a fire blast at him. Aang uses an air shield to stop it. Aang gets up and sends a stream of air at Zuko, sending him to an abbey corner tower. Aang runs toward Zuko and attacks him with an air blast. Zuko jumps off the roof and Nyla jumps on. As Aang runs away from the shirshu, Appa uses his tail to send an airbending blast at the roof. Cut to Sokka and Katara sitting by a wall.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3526,3526,Water,1,Bato of the Water Tribe,15,Sokka,I'm ... starting to get some feeling back! [Rubble from the roof falls on him.] Ow.,I'm ... starting to get some feeling back! Ow.,Ian Wilcox,Giancarlo Volpe,7.9 +3527,3527,Water,1,Bato of the Water Tribe,15,Scene Description,Cut to Aang jumping in the abbey courtyard stream and Nyla follows him. Cut to June and Nyla on the roof. They run to the side as a part of the abbey roof explodes. The dust clears to show Appa. Cut to Iroh examining some perfume bottles. He sniffs one and sneaks it into his sleeves. Cut to Aang standing by a well. Zuko sends him three firebending blasts. Aang jumps to the other side of the well to dodge them. Zuko sends another fire blast at him. Aang ducks and notices Zuko is carrying Katara's necklace.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3528,3528,Water,1,Bato of the Water Tribe,15,Aang,You've got something I want.,You've got something I want.,Ian Wilcox,Giancarlo Volpe,7.9 +3529,3529,Water,1,Bato of the Water Tribe,15,Scene Description,"Aang jumps between the four beams of the well. He dodges Zuko's fire blasts by moving on all sides of the well. Zuko breaks two of the well's beams and sends the wooden structure away. Zuko jumps on the well's circular stone structure to join Aang. Zuko sends two fire blasts at Aang, who dodges them by stepping around the well. Aang sends two air blasts at Zuko. The shot focuses on well as the two opponents walk on top of the well. Aang snatches at Katara's stole necklace, but misses. Zuko lunges at Aang, who jumps onto his back. Cut to a shot of Aang flying through the air as he grabs Katara's necklace off his foot. Aang lands in the well. Zuko sends a fire blast down the well. The water from the well rises out and sends Zuko flying. Aang jumps out with the water, which rains a little before Zuko falls down. Zuko stands up. +Cut to Appa, who walks toward Zuko. Nyla's tongue lashes out at Appa from off-camera. Appa growls and the shot changes to show June riding Nyla. June cracks her whip and Nyla's tongue lashes out at Appa again. Appa falls down and Nyla looks toward Sokka and Katara. Mother Superior makes both of them smell a vial of perfume.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3530,3530,Water,1,Bato of the Water Tribe,15,Sokka,That thing sees with its nose. Let's give him something to look at.,That thing sees with its nose. Let's give him something to look at.,Ian Wilcox,Giancarlo Volpe,7.9 +3531,3531,Water,1,Bato of the Water Tribe,15,Mother Superior,The perfume?,The perfume?,Ian Wilcox,Giancarlo Volpe,7.9 +3532,3532,Water,1,Bato of the Water Tribe,15,Scene Description,Sokka nods. Cut to four pots of perfume. The nuns and Sokka push the pots. Cut to Nyla and Zuko cornering Aang. Zuko attacks Aang with a two fire blasts. Sokka and the nuns pour the perfume pots onto the ground. Katara waterbends the perfume into the air and pours it on Nyla. The shot changes to show Nyla's point of view as the perfume scents cloud his vision of Aang.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3533,3533,Water,1,Bato of the Water Tribe,15,Iroh,"[Nyla paralyzes Zuko as Iroh looks at Nyla in concern.] June! No! [Nyla tongue lashes out and hits June, who falls back into Iroh's arms.]",June! No!,Ian Wilcox,Giancarlo Volpe,7.9 +3534,3534,Water,1,Bato of the Water Tribe,15,Scene Description,Shot cuts to Nyla running around in a circle and bumps into more perfume pots. Nyla jumps over the abbey wall. Shot cuts to Aang picking up his staff and wiping his brow. Katara and Sokka stand next to Aang and smile at him. Cut to Zuko and Iroh lying down on the ground. Iroh cradles June in one hand.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3535,3535,Water,1,Bato of the Water Tribe,15,Zuko,Uncle? I didn't see you get hit with the tongue.,Uncle? I didn't see you get hit with the tongue.,Ian Wilcox,Giancarlo Volpe,7.9 +3536,3536,Water,1,Bato of the Water Tribe,15,Iroh,Shhh.,Shhh.,Ian Wilcox,Giancarlo Volpe,7.9 +3537,3537,Water,1,Bato of the Water Tribe,15,Scene Description,"Iroh goes back to his position, smiling. June opens her eyes angrily upon learning this. +Cut to Appa flying with Team Avatar on his back. Cut to a closer shot of Sokka and Katara as Aang steers the bison.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3538,3538,Water,1,Bato of the Water Tribe,15,Aang,So ... where do we go?,So ... where do we go?,Ian Wilcox,Giancarlo Volpe,7.9 +3539,3539,Water,1,Bato of the Water Tribe,15,Katara,We're getting you to the North Pole.,We're getting you to the North Pole.,Ian Wilcox,Giancarlo Volpe,7.9 +3540,3540,Water,1,Bato of the Water Tribe,15,Sokka,"Yeah, we've lost too much time as it is.","Yeah, we've lost too much time as it is.",Ian Wilcox,Giancarlo Volpe,7.9 +3541,3541,Water,1,Bato of the Water Tribe,15,Aang,[Turns to the group.] Don't you want to see your father?,Don't you want to see your father?,Ian Wilcox,Giancarlo Volpe,7.9 +3542,3542,Water,1,Bato of the Water Tribe,15,Sokka,"Of course we do, Aang. But, you're our family, too. And right now, you need us more.","Of course we do, Aang. But, you're our family, too. And right now, you need us more.",Ian Wilcox,Giancarlo Volpe,7.9 +3543,3543,Water,1,Bato of the Water Tribe,15,Katara,And we need you.,And we need you.,Ian Wilcox,Giancarlo Volpe,7.9 +3544,3544,Water,1,Bato of the Water Tribe,15,Aang,"I wish I could give you a little piece of home, Katara. Something to remind you ...","I wish I could give you a little piece of home, Katara. Something to remind you ...",Ian Wilcox,Giancarlo Volpe,7.9 +3545,3545,Water,1,Bato of the Water Tribe,15,Katara,I'll be okay.,I'll be okay.,Ian Wilcox,Giancarlo Volpe,7.9 +3546,3546,Water,1,Bato of the Water Tribe,15,Aang,"Still, just a little trinket. Maybe something like ... [Holds up Katara's necklace.] this? [Closer shot of the necklace.]","Still, just a little trinket. Maybe something like ... this?",Ian Wilcox,Giancarlo Volpe,7.9 +3547,3547,Water,1,Bato of the Water Tribe,15,Katara,"[Takes the necklace.] Aang, how'd you get that?","Aang, how'd you get that?",Ian Wilcox,Giancarlo Volpe,7.9 +3548,3548,Water,1,Bato of the Water Tribe,15,Aang,Zuko asked me to be sure I got it to you.,Zuko asked me to be sure I got it to you.,Ian Wilcox,Giancarlo Volpe,7.9 +3549,3549,Water,1,Bato of the Water Tribe,15,Katara,"Aw, that's so sweet of Zuko. Could you give him a kiss for me when you see him?","Aw, that's so sweet of Zuko. Could you give him a kiss for me when you see him?",Ian Wilcox,Giancarlo Volpe,7.9 +3550,3550,Water,1,Bato of the Water Tribe,15,Aang,Sure.,Sure.,Ian Wilcox,Giancarlo Volpe,7.9 +3551,3551,Water,1,Bato of the Water Tribe,15,Scene Description,Katara kisses Aang on the cheek and Aang blushes and twiddles his thumbs. Further shot of Appa flying toward the horizon.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3552,3552,Water,1,Bato of the Water Tribe,15,Scene Description,Fade to credits.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3553,3553,Water,1,Bato of the Water Tribe,15,Scene Description,"The scene opens with a shot of the full moon. The camera pans down to reveal the Water Tribe ship and Team Avatar, who decided to make camp next to the boat.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3554,3554,Water,1,Bato of the Water Tribe,15,Katara,"So, how long do you think it's been since someone was here?","So, how long do you think it's been since someone was here?",Ian Wilcox,Giancarlo Volpe,7.9 +3555,3555,Water,1,Bato of the Water Tribe,15,Scene Description,"Sokka is standing by the boat, while Aang and Katara huddle around a campfire. The camera cuts to a side shot, showing Sokka inspecting the boat.",NA,Ian Wilcox,Giancarlo Volpe,7.9 +3556,3556,Water,1,Bato of the Water Tribe,15,Sokka,Long enough for moss to grow on the hull. [He turns to Katara; unsure.] About three months.,Long enough for moss to grow on the hull. About three months.,Ian Wilcox,Giancarlo Volpe,7.9 +3557,3557,Water,1,Bato of the Water Tribe,15,Katara,"[Close-up of Katara; disappointed.] Oh. [She looks down, saddened.] So dad's probably long gone.",Oh. So dad's probably long gone.,Ian Wilcox,Giancarlo Volpe,7.9 +3558,3558,Water,1,Bato of the Water Tribe,15,Sokka,[Cut to a shot from behind Aang.] I wonder why they left this boat? There's nothing wrong with it.,I wonder why they left this boat? There's nothing wrong with it.,Ian Wilcox,Giancarlo Volpe,7.9 +3559,3559,Water,1,Bato of the Water Tribe,15,Aang,When was the last time you saw your dad?,When was the last time you saw your dad?,Ian Wilcox,Giancarlo Volpe,7.9 +3560,3560,Water,1,Bato of the Water Tribe,15,Sokka,[He turns away.] I don't want to talk about it.,I don't want to talk about it.,Ian Wilcox,Giancarlo Volpe,7.9 +3561,3561,Water,1,Bato of the Water Tribe,15,Aang,[The camera cuts to a frontal of Aang.] Sorry. [He looks down in guilt.] I didn't mean to bring that up.,Sorry. I didn't mean to bring that up.,Ian Wilcox,Giancarlo Volpe,7.9 +3562,3562,Water,1,Bato of the Water Tribe,15,Katara,"[Shot of Katara and Aang around the campfire.] It's okay Aang. Our dad left about two years ago, with all the other Water Tribe men.","It's okay Aang. Our dad left about two years ago, with all the other Water Tribe men.",Ian Wilcox,Giancarlo Volpe,7.9 +3563,3563,Water,1,Bato of the Water Tribe,15,Sokka,[Sokka enters the shot and proceeds to lay down in front of the campfire; interrupting Katara.] Maybe we should all get some sleep.,Maybe we should all get some sleep.,Ian Wilcox,Giancarlo Volpe,7.9 +3564,3564,Water,1,Bato of the Water Tribe,15,Scene Description,Sokka pulls a blanket over himself. Fade to a shot of Aang lying on one of Appa's legs.,NA,Ian Wilcox,Giancarlo Volpe,7.9 +3565,3565,Water,1,The Deserter,16,Scene Description,"The episode opens in a forest while Momo suddenly appears, jumping from a tree to another tree. A mysterious figure is seen following him, and Momo lands on a roadside kiosk, while Team Avatar is arriving at it.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3566,3566,Water,1,The Deserter,16,Katara,"[Walking toward a poster on the kiosk, present in the middle of a crossroad.] This should give us a good idea of what's around here.",This should give us a good idea of what's around here.,Tim Hedrick,Lauren MacMullan,8.5 +3567,3567,Water,1,The Deserter,16,Sokka,"[Flips a small pouch to find it empty aside from a few crumbs.] See if you can find a menu, I'm starving! [Wipes his mouth.]","See if you can find a menu, I'm starving!",Tim Hedrick,Lauren MacMullan,8.5 +3568,3568,Water,1,The Deserter,16,Aang,"I bet we'll find something to eat here, [Pointing at the poster.] the Fire Day's Festival. [Momo jumps down. Aang begins reading-out the poster.] Fire Nation cultural exhibits, jugglers, benders, magicians ... [Turns to Katara.] This would be a great place for me to study some real firebenders.","I bet we'll find something to eat here, the Fire Day's Festival. Fire Nation cultural exhibits, jugglers, benders, magicians ... This would be a great place for me to study some real firebenders.",Tim Hedrick,Lauren MacMullan,8.5 +3569,3569,Water,1,The Deserter,16,Sokka,[Looking at another poster on the other side of the kiosk; seriously.] You might wanna rethink that. Look at this.,You might wanna rethink that. Look at this.,Tim Hedrick,Lauren MacMullan,8.5 +3570,3570,Water,1,The Deserter,16,Aang,"[Comes over to at the poster.] Hey, a poster of me!","Hey, a poster of me!",Tim Hedrick,Lauren MacMullan,8.5 +3571,3571,Water,1,The Deserter,16,Sokka,A wanted poster! This is bad. [Aang removes the poster from the wall and starts reading it.],A wanted poster! This is bad.,Tim Hedrick,Lauren MacMullan,8.5 +3572,3572,Water,1,The Deserter,16,Katara,[Stares at the wanted poster.] I think we better keep moving.,I think we better keep moving.,Tim Hedrick,Lauren MacMullan,8.5 +3573,3573,Water,1,The Deserter,16,Aang,[Looking at Katara.] I have to learn firebending at some point and this could be my only chance to watch a master's up close.,I have to learn firebending at some point and this could be my only chance to watch a master's up close.,Tim Hedrick,Lauren MacMullan,8.5 +3574,3574,Water,1,The Deserter,16,Katara,[Swayed by Aang; while her head is bowed.] I guess we could go check it out. [Aang begins rejoicing.],I guess we could go check it out.,Tim Hedrick,Lauren MacMullan,8.5 +3575,3575,Water,1,The Deserter,16,Sokka,"[Moves in front of Katara; in an opposing tone.] What? You wanna walk into a Fire Nation town where they're all fired-up with their ... you know, fire? [Aang becomes serious again.]","What? You wanna walk into a Fire Nation town where they're all fired-up with their ... you know, fire?",Tim Hedrick,Lauren MacMullan,8.5 +3576,3576,Water,1,The Deserter,16,Katara,"[Starts walking toward Appa and is followed by Aang.] We'll wear disguises and if it looks like trouble, we'll leave.","We'll wear disguises and if it looks like trouble, we'll leave.",Tim Hedrick,Lauren MacMullan,8.5 +3577,3577,Water,1,The Deserter,16,Sokka,[Not convinced; sarcastically.] Yeah! Because we always leave before we get into trouble.,Yeah! Because we always leave before we get into trouble.,Tim Hedrick,Lauren MacMullan,8.5 +3578,3578,Water,1,The Deserter,16,Aang,[To Appa and Momo.] You guys stay out of sight here while we go to the festival. [To Katara and Sokka.] Ready disguises!,You guys stay out of sight here while we go to the festival. Ready disguises!,Tim Hedrick,Lauren MacMullan,8.5 +3579,3579,Water,1,The Deserter,16,Scene Description,Sokka and Katara put on their black cloaks while Aang pulls his orange shawl over his head with a smile on his face making him look ridiculous.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3580,3580,Water,1,The Deserter,16,Sokka,[Sarcastically at Aang's goofy disguise.] It's like you're a whole different person ... [Katara giggles.],It's like you're a whole different person ...,Tim Hedrick,Lauren MacMullan,8.5 +3581,3581,Water,1,The Deserter,16,Aang,Let's go.,Let's go.,Tim Hedrick,Lauren MacMullan,8.5 +3582,3582,Water,1,The Deserter,16,Scene Description,The gang looks around seeing everyone in masks.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3583,3583,Water,1,The Deserter,16,Katara,I think we need some new disguises.,I think we need some new disguises.,Tim Hedrick,Lauren MacMullan,8.5 +3584,3584,Water,1,The Deserter,16,Sokka,Where are we gonna get masks like that?,Where are we gonna get masks like that?,Tim Hedrick,Lauren MacMullan,8.5 +3585,3585,Water,1,The Deserter,16,Mask dealer,Get your genuine Fire Festival masks here!,Get your genuine Fire Festival masks here!,Tim Hedrick,Lauren MacMullan,8.5 +3586,3586,Water,1,The Deserter,16,Sokka,That was surprisingly easy.,That was surprisingly easy.,Tim Hedrick,Lauren MacMullan,8.5 +3587,3587,Water,1,The Deserter,16,Scene Description,"The gang chooses three masks. Katara chooses a lady with makeup, Sokka a blue smiling mask with petals around the rim, and Aang who chooses a red mask with a frown on it. Katara removes Sokka's mask, revealing him to be frowning, and Aang's mask, revealing him to be the one smiling. She places Sokka's original mask over Aang's face and Aang's over Sokka.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3588,3588,Water,1,The Deserter,16,Aang,"Hey, there's some food.","Hey, there's some food.",Tim Hedrick,Lauren MacMullan,8.5 +3589,3589,Water,1,The Deserter,16,Sokka,Finally! [To the shop keeper.] What do you have?,Finally! What do you have?,Tim Hedrick,Lauren MacMullan,8.5 +3590,3590,Water,1,The Deserter,16,Shop keeper,Flaming fire flakes! Best in town.,Flaming fire flakes! Best in town.,Tim Hedrick,Lauren MacMullan,8.5 +3591,3591,Water,1,The Deserter,16,Sokka,I'll take'em!,I'll take'em!,Tim Hedrick,Lauren MacMullan,8.5 +3592,3592,Water,1,The Deserter,16,Scene Description,"Sokka gobbles down the fire flakes, but has a spasm from the spiciness.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3593,3593,Water,1,The Deserter,16,Sokka,Aaahhh! Hot! Hot!,Aaahhh! Hot! Hot!,Tim Hedrick,Lauren MacMullan,8.5 +3594,3594,Water,1,The Deserter,16,Katara,"[Sarcastically.] ""Flaming fire flakes"", hot? What do you know?","""Flaming fire flakes"", hot? What do you know?",Tim Hedrick,Lauren MacMullan,8.5 +3595,3595,Water,1,The Deserter,16,Aang,"Hey, look at this.","Hey, look at this.",Tim Hedrick,Lauren MacMullan,8.5 +3596,3596,Water,1,The Deserter,16,Puppet Fire Lord,Don't worry loyal citizens! No one can surprise the Fire Lord!,Don't worry loyal citizens! No one can surprise the Fire Lord!,Tim Hedrick,Lauren MacMullan,8.5 +3597,3597,Water,1,The Deserter,16,Fire Nation kids,"[As an Earth Kingdom general puppet pops up behind the Fire Lord's puppet, with a rock ready to attack.] Oh no! Look out! [The puppet breaths fire, burning the other puppet.]",Oh no! Look out!,Tim Hedrick,Lauren MacMullan,8.5 +3598,3598,Water,1,The Deserter,16,Katara,"Aang, hold on! Where are we going?","Aang, hold on! Where are we going?",Tim Hedrick,Lauren MacMullan,8.5 +3599,3599,Water,1,The Deserter,16,Aang,"I don't know, but there's a big crowd so it must be good.","I don't know, but there's a big crowd so it must be good.",Tim Hedrick,Lauren MacMullan,8.5 +3600,3600,Water,1,The Deserter,16,Sokka,"[Sarcastically.] Knowing the Fire Nation, it's probably an execution.","Knowing the Fire Nation, it's probably an execution.",Tim Hedrick,Lauren MacMullan,8.5 +3601,3601,Water,1,The Deserter,16,Aang,I gotta learn that trick!,I gotta learn that trick!,Tim Hedrick,Lauren MacMullan,8.5 +3602,3602,Water,1,The Deserter,16,Malu,Thank you! For my next trick I need a volunteer from the audience!,Thank you! For my next trick I need a volunteer from the audience!,Tim Hedrick,Lauren MacMullan,8.5 +3603,3603,Water,1,The Deserter,16,Aang,[Waving his hand up in the air all around childishly.] Oh! Oh! Me! Me!,Oh! Oh! Me! Me!,Tim Hedrick,Lauren MacMullan,8.5 +3604,3604,Water,1,The Deserter,16,Sokka,[In a stern tone while pulling his arm down.] What do you think you're doing?,What do you think you're doing?,Tim Hedrick,Lauren MacMullan,8.5 +3605,3605,Water,1,The Deserter,16,Aang,I want to get a closer look.,I want to get a closer look.,Tim Hedrick,Lauren MacMullan,8.5 +3606,3606,Water,1,The Deserter,16,Katara,It's better that we don't attract any attention to ourselves.,It's better that we don't attract any attention to ourselves.,Tim Hedrick,Lauren MacMullan,8.5 +3607,3607,Water,1,The Deserter,16,Malu,"How about you, little lady?","How about you, little lady?",Tim Hedrick,Lauren MacMullan,8.5 +3608,3608,Water,1,The Deserter,16,Katara,[While backing away.] Uh.,Uh.,Tim Hedrick,Lauren MacMullan,8.5 +3609,3609,Water,1,The Deserter,16,Malu,"Awww, she's shy. Leeet's give her some encouragement, folks!","Awww, she's shy. Leeet's give her some encouragement, folks!",Tim Hedrick,Lauren MacMullan,8.5 +3610,3610,Water,1,The Deserter,16,Aang,[In a jealous tone while folding his arms.] Awww! That could've been me.,Awww! That could've been me.,Tim Hedrick,Lauren MacMullan,8.5 +3611,3611,Water,1,The Deserter,16,Malu,"This next trick is called ""Taming the Dragon."" [While sitting her down in a chair and tying her to it.] You will be my captured princess! Don't worry, young maiden! I will tame this fiery beast! It's too strong, I can't hold it!","This next trick is called ""Taming the Dragon."" You will be my captured princess! Don't worry, young maiden! I will tame this fiery beast! It's too strong, I can't hold it!",Tim Hedrick,Lauren MacMullan,8.5 +3612,3612,Water,1,The Deserter,16,Aang,We gotta help her!,We gotta help her!,Tim Hedrick,Lauren MacMullan,8.5 +3613,3613,Water,1,The Deserter,16,Sokka,"No, we don't want to make a scene!","No, we don't want to make a scene!",Tim Hedrick,Lauren MacMullan,8.5 +3614,3614,Water,1,The Deserter,16,Malu,"The rope, it's breaking! [Aang saves Katara with his airbending, dispersing the flames is a ray of colors while he loses his mask in the process.] Hey, you tryin' to upstage me, kid?","The rope, it's breaking! Hey, you tryin' to upstage me, kid?",Tim Hedrick,Lauren MacMullan,8.5 +3615,3615,Water,1,The Deserter,16,Scene Description,Aang starts doing a goofy dance as everyone boos at him for ruining the trick.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3616,3616,Water,1,The Deserter,16,Citizen,Hey! That kid's the Avatar! [Aang stops dancing and runs.],Hey! That kid's the Avatar!,Tim Hedrick,Lauren MacMullan,8.5 +3617,3617,Water,1,The Deserter,16,Sokka,I think it's time to go.,I think it's time to go.,Tim Hedrick,Lauren MacMullan,8.5 +3618,3618,Water,1,The Deserter,16,Chey,Follow me! I can get you outta here! [The kids follow Chey.],Follow me! I can get you outta here!,Tim Hedrick,Lauren MacMullan,8.5 +3619,3619,Water,1,The Deserter,16,Guard,There they are!,There they are!,Tim Hedrick,Lauren MacMullan,8.5 +3620,3620,Water,1,The Deserter,16,Scene Description,Chey throws a series of explosives at the Fire Nation soldiers that are chasing them.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3621,3621,Water,1,The Deserter,16,Guard,Over there!,Over there!,Tim Hedrick,Lauren MacMullan,8.5 +3622,3622,Water,1,The Deserter,16,Aang,I'm calling Appa. [Aang blows his whistle.],I'm calling Appa.,Tim Hedrick,Lauren MacMullan,8.5 +3623,3623,Water,1,The Deserter,16,Sokka,I hope he can really hear that bison whistle!,I hope he can really hear that bison whistle!,Tim Hedrick,Lauren MacMullan,8.5 +3624,3624,Water,1,The Deserter,16,Chey,[Making a sharp turn down one of the several alleys.] This way! [Comes running back.] Okay! Not this way!,This way! Okay! Not this way!,Tim Hedrick,Lauren MacMullan,8.5 +3625,3625,Water,1,The Deserter,16,Scene Description,"They make another turn, but the way they came is blocked by guards. Chey throws another smoke bomb and runs past them into another alley. They group comes across another dead end where there is an enormous supply of fireworks. Cut to an overhead shot that reveals Appa has arrived in the nick of time.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3626,3626,Water,1,The Deserter,16,Aang,Appa! Down here!,Appa! Down here!,Tim Hedrick,Lauren MacMullan,8.5 +3627,3627,Water,1,The Deserter,16,Scene Description,"Appa lands between the kids and the guards, with his backside facing the guards. Appa airbends a gale force wind which results in the guards getting blown out of sight. As the guards run back into the alley, Appa has already taken off. Cut to Chey, he bites the top off a bomb to light it. He throws it at the fireworks supply and it blows up creating a beautiful display of fireworks. Cut to Chey removing his hood as they cruise away.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3628,3628,Water,1,The Deserter,16,Aang,Nice touch setting off the fireworks.,Nice touch setting off the fireworks.,Tim Hedrick,Lauren MacMullan,8.5 +3629,3629,Water,1,The Deserter,16,Sokka,[Impressed.] You really know your explosives ...,You really know your explosives ...,Tim Hedrick,Lauren MacMullan,8.5 +3630,3630,Water,1,The Deserter,16,Chey,I'm familiar.,I'm familiar.,Tim Hedrick,Lauren MacMullan,8.5 +3631,3631,Water,1,The Deserter,16,Sokka,You're a Fire Nation Soldier!,You're a Fire Nation Soldier!,Tim Hedrick,Lauren MacMullan,8.5 +3632,3632,Water,1,The Deserter,16,Chey,Was. My name's Chey.,Was. My name's Chey.,Tim Hedrick,Lauren MacMullan,8.5 +3633,3633,Water,1,The Deserter,16,Scene Description,The group lands and makes camp.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3634,3634,Water,1,The Deserter,16,Chey,"I serve a man. More than a man really, he's a myth, but he's real, a living legend, Jeong Jeong the Deserter. He was a Fire Nation general, or wait, was he an admiral?","I serve a man. More than a man really, he's a myth, but he's real, a living legend, Jeong Jeong the Deserter. He was a Fire Nation general, or wait, was he an admiral?",Tim Hedrick,Lauren MacMullan,8.5 +3635,3635,Water,1,The Deserter,16,Sokka,"[Not amused.] He was very highly ranked, we get it.","He was very highly ranked, we get it.",Tim Hedrick,Lauren MacMullan,8.5 +3636,3636,Water,1,The Deserter,16,Chey,"Yeah! Way up there! But he couldn't take the madness any more. He's the first person ever to leave the army - and live. I'm the second, but you don't get to be a legend for that. That's okay though. Jeong Jeong's a firebending genius. Some say he's mad - but he's not! He's enlightened.","Yeah! Way up there! But he couldn't take the madness any more. He's the first person ever to leave the army - and live. I'm the second, but you don't get to be a legend for that. That's okay though. Jeong Jeong's a firebending genius. Some say he's mad - but he's not! He's enlightened.",Tim Hedrick,Lauren MacMullan,8.5 +3637,3637,Water,1,The Deserter,16,Aang,You mean there's a firebender out here who's not with the Fire Lord? [Gets up in excitement.] We've gotta go see him! He can train me!,You mean there's a firebender out here who's not with the Fire Lord? We've gotta go see him! He can train me!,Tim Hedrick,Lauren MacMullan,8.5 +3638,3638,Water,1,The Deserter,16,Sokka,[Snaps at Aang.] We're not gonna go find some crazy firebender!,We're not gonna go find some crazy firebender!,Tim Hedrick,Lauren MacMullan,8.5 +3639,3639,Water,1,The Deserter,16,Chey,[Annoyed; Stands up to gesture.] He's not crazy! He's a genius! And he's the perfect person to train the Avatar! That's why I followed you into the festival.,He's not crazy! He's a genius! And he's the perfect person to train the Avatar! That's why I followed you into the festival.,Tim Hedrick,Lauren MacMullan,8.5 +3640,3640,Water,1,The Deserter,16,Sokka,"Look, thanks for the help, but we're leaving for the North Pole in the morning.","Look, thanks for the help, but we're leaving for the North Pole in the morning.",Tim Hedrick,Lauren MacMullan,8.5 +3641,3641,Water,1,The Deserter,16,Aang,"Sokka, this could be my only chance to meet a firebending master who would actually be willing to teach me.","Sokka, this could be my only chance to meet a firebending master who would actually be willing to teach me.",Tim Hedrick,Lauren MacMullan,8.5 +3642,3642,Water,1,The Deserter,16,Katara,It can't hurt just to talk to him.,It can't hurt just to talk to him.,Tim Hedrick,Lauren MacMullan,8.5 +3643,3643,Water,1,The Deserter,16,Sokka,[Very annoyed.] That's what you said about going to the festival! Why doesn't anyone ever listen to me?,That's what you said about going to the festival! Why doesn't anyone ever listen to me?,Tim Hedrick,Lauren MacMullan,8.5 +3644,3644,Water,1,The Deserter,16,Scene Description,"As Sokka turns to pout, he almost runs right into a spear. In a flash, they are surrounded by men wearing straw hats, light armor, wearing tribal make up, and wielding spears.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3645,3645,Water,1,The Deserter,16,Lin Yee,Don't move!,Don't move!,Tim Hedrick,Lauren MacMullan,8.5 +3646,3646,Water,1,The Deserter,16,Scene Description,The tribal folks escort them to their settlement.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3647,3647,Water,1,The Deserter,16,Lin Yee,[Angry.] Jeong Jeong told you not to look for Avatar!,Jeong Jeong told you not to look for Avatar!,Tim Hedrick,Lauren MacMullan,8.5 +3648,3648,Water,1,The Deserter,16,Sokka,"Hold on, you know these guys?","Hold on, you know these guys?",Tim Hedrick,Lauren MacMullan,8.5 +3649,3649,Water,1,The Deserter,16,Chey,"Oh yeh! Lin Yee's an old buddy! Right, Lin Yee?","Oh yeh! Lin Yee's an old buddy! Right, Lin Yee?",Tim Hedrick,Lauren MacMullan,8.5 +3650,3650,Water,1,The Deserter,16,Lin Yee,[Not amused with Chey.] Shut up! Keep moving.,Shut up! Keep moving.,Tim Hedrick,Lauren MacMullan,8.5 +3651,3651,Water,1,The Deserter,16,Scene Description,"Down the hill, there is a little cottage with leaves and logs.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3652,3652,Water,1,The Deserter,16,Lin Yee,Go on. He sees you only.,Go on. He sees you only.,Tim Hedrick,Lauren MacMullan,8.5 +3653,3653,Water,1,The Deserter,16,Chey,"Oh that's okay, we can chat later.","Oh that's okay, we can chat later.",Tim Hedrick,Lauren MacMullan,8.5 +3654,3654,Water,1,The Deserter,16,Aang,Is that where Jeong Jeong is? I need to talk to him right away.,Is that where Jeong Jeong is? I need to talk to him right away.,Tim Hedrick,Lauren MacMullan,8.5 +3655,3655,Water,1,The Deserter,16,Scene Description,"Aang tries to move forward, but it stopped by a spear shaft.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3656,3656,Water,1,The Deserter,16,Lin Yee,No! You wait there. [Pushes Chey forward.] Go now!,No! You wait there. Go now!,Tim Hedrick,Lauren MacMullan,8.5 +3657,3657,Water,1,The Deserter,16,Chey,"Don't worry! Everything'll be fine. He's a great man, great man!","Don't worry! Everything'll be fine. He's a great man, great man!",Tim Hedrick,Lauren MacMullan,8.5 +3658,3658,Water,1,The Deserter,16,Scene Description,Chey walks toward Jeong Jeong's cottage. Back in the Fire Days Festival in the now deserted central square of the town where some guards are being interrogated by Admiral Zhao who is accompanied by a few guards himself.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3659,3659,Water,1,The Deserter,16,Zhao,"So, the Avatar was here and you let him slip away?","So, the Avatar was here and you let him slip away?",Tim Hedrick,Lauren MacMullan,8.5 +3660,3660,Water,1,The Deserter,16,Guard captain,"[Anxiously.] Yes, sir, but other than that the festival went off without a hitch! [A huge piece of burning planks of wood falls in the background with a massive crash making the guards twitch.] No fights. Theft was way down.","Yes, sir, but other than that the festival went off without a hitch! No fights. Theft was way down.",Tim Hedrick,Lauren MacMullan,8.5 +3661,3661,Water,1,The Deserter,16,Zhao,[Irritated.] I don't care about your local crime rates! Which way did they go?,I don't care about your local crime rates! Which way did they go?,Tim Hedrick,Lauren MacMullan,8.5 +3662,3662,Water,1,The Deserter,16,Guard captain,"They headed into the forest, up the river I suspect.","They headed into the forest, up the river I suspect.",Tim Hedrick,Lauren MacMullan,8.5 +3663,3663,Water,1,The Deserter,16,Zhao,Ready the river boats. We're going after the Avatar.,Ready the river boats. We're going after the Avatar.,Tim Hedrick,Lauren MacMullan,8.5 +3664,3664,Water,1,The Deserter,16,Scene Description,"Back in the settlement, Chey exits Jeong Jeong's cottage. He arrives back where Aang and the others are fast asleep. Everyone wakes up instantly as Chey approaches.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3665,3665,Water,1,The Deserter,16,Aang,What happened? Can I see Jeong Jeong now?,What happened? Can I see Jeong Jeong now?,Tim Hedrick,Lauren MacMullan,8.5 +3666,3666,Water,1,The Deserter,16,Chey,[Looking downcast.] He won't see you. He's very angry that I brought you here. He wants you to leave immediately.,He won't see you. He's very angry that I brought you here. He wants you to leave immediately.,Tim Hedrick,Lauren MacMullan,8.5 +3667,3667,Water,1,The Deserter,16,Sokka,Finally! Let's hit the road. [He stretches back out again.],Finally! Let's hit the road.,Tim Hedrick,Lauren MacMullan,8.5 +3668,3668,Water,1,The Deserter,16,Aang,Why won't he see me?,Why won't he see me?,Tim Hedrick,Lauren MacMullan,8.5 +3669,3669,Water,1,The Deserter,16,Chey,He says you're not ready. Says you haven't mastered waterbending and earthbending yet.,He says you're not ready. Says you haven't mastered waterbending and earthbending yet.,Tim Hedrick,Lauren MacMullan,8.5 +3670,3670,Water,1,The Deserter,16,Aang,"[Shocked.] Wait, how does he know that?","Wait, how does he know that?",Tim Hedrick,Lauren MacMullan,8.5 +3671,3671,Water,1,The Deserter,16,Chey,He saw the way you walked into camp. He could tell.,He saw the way you walked into camp. He could tell.,Tim Hedrick,Lauren MacMullan,8.5 +3672,3672,Water,1,The Deserter,16,Aang,"I'm going in, anyway!","I'm going in, anyway!",Tim Hedrick,Lauren MacMullan,8.5 +3673,3673,Water,1,The Deserter,16,Scene Description,"Aang walks to Jeong Jeong's cottage. He takes a deep breath, parts the curtain, and walks into the darkness. Cut to a dark figure seated cross legged amidst a semicircle of candles, his back to Aang.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3674,3674,Water,1,The Deserter,16,Jeong Jeong,Get out.,Get out.,Tim Hedrick,Lauren MacMullan,8.5 +3675,3675,Water,1,The Deserter,16,Aang,"Master, I need to learn firebending.","Master, I need to learn firebending.",Tim Hedrick,Lauren MacMullan,8.5 +3676,3676,Water,1,The Deserter,16,Jeong Jeong,Only a fool seeks his own destruction.,Only a fool seeks his own destruction.,Tim Hedrick,Lauren MacMullan,8.5 +3677,3677,Water,1,The Deserter,16,Aang,"[To Jeong Jeong.] I'm the Avatar, it's my destiny to— [Gets interrupted.]","I'm the Avatar, it's my destiny to—",Tim Hedrick,Lauren MacMullan,8.5 +3678,3678,Water,1,The Deserter,16,Jeong Jeong,"Destiny? What would a boy know of destiny? If a fish lives its whole life in this river, does he know the river's destiny? No! Only that it runs on and on out of his control! He may follow where it flows, but he cannot see the end. He cannot imagine the ocean.","Destiny? What would a boy know of destiny? If a fish lives its whole life in this river, does he know the river's destiny? No! Only that it runs on and on out of his control! He may follow where it flows, but he cannot see the end. He cannot imagine the ocean.",Tim Hedrick,Lauren MacMullan,8.5 +3679,3679,Water,1,The Deserter,16,Aang,"Okay, but it's the Avatar's duty to master all of the bending disciplines.","Okay, but it's the Avatar's duty to master all of the bending disciplines.",Tim Hedrick,Lauren MacMullan,8.5 +3680,3680,Water,1,The Deserter,16,Jeong Jeong,"To master the bending disciplines, you must first master discipline itself. But you have no interest in this, so I have no interest in you! Now, get out.","To master the bending disciplines, you must first master discipline itself. But you have no interest in this, so I have no interest in you! Now, get out.",Tim Hedrick,Lauren MacMullan,8.5 +3681,3681,Water,1,The Deserter,16,Aang,"Please, I have to learn. This could be my only chance.","Please, I have to learn. This could be my only chance.",Tim Hedrick,Lauren MacMullan,8.5 +3682,3682,Water,1,The Deserter,16,Jeong Jeong,"Are you deaf? How can I teach you if you refuse to listen? Before learning firebending you must learn water and earth. Water is cool and soothing, earth is steady and stable, but fire, fire is alive! It breathes, it grows. Without the bender, a rock will not throw itself! But fire will spread and destroy everything in its path if one does not have the will to control it! That is its destiny! You are not ready! You are too weak!","Are you deaf? How can I teach you if you refuse to listen? Before learning firebending you must learn water and earth. Water is cool and soothing, earth is steady and stable, but fire, fire is alive! It breathes, it grows. Without the bender, a rock will not throw itself! But fire will spread and destroy everything in its path if one does not have the will to control it! That is its destiny! You are not ready! You are too weak!",Tim Hedrick,Lauren MacMullan,8.5 +3683,3683,Water,1,The Deserter,16,Scene Description,"At this final gesture the candles around Jeong Jeong violently flame up to illuminate the entire hut before quickly going out. A vision in front of Jeong Jeong begins, as one candle is seen lit in front of the firebender. A tree is in the background behind the Deserter. In front of him, stands Avatar Roku.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3684,3684,Water,1,The Deserter,16,Roku,You think I am weak?,You think I am weak?,Tim Hedrick,Lauren MacMullan,8.5 +3685,3685,Water,1,The Deserter,16,Jeong Jeong,"Avatar Roku! No, No! I did not mean that.","Avatar Roku! No, No! I did not mean that.",Tim Hedrick,Lauren MacMullan,8.5 +3686,3686,Water,1,The Deserter,16,Roku,"I have mastered the elements a thousand times in a thousand lifetimes. Now, I must do it once again. You will teach the Avatar [He raises his hand and ignites the tree behind Jeong Jeong.] firebending.","I have mastered the elements a thousand times in a thousand lifetimes. Now, I must do it once again. You will teach the Avatar firebending.",Tim Hedrick,Lauren MacMullan,8.5 +3687,3687,Water,1,The Deserter,16,Jeong Jeong,"Yes, yes, I will teach you.","Yes, yes, I will teach you.",Tim Hedrick,Lauren MacMullan,8.5 +3688,3688,Water,1,The Deserter,16,Aang,Really? That's great! [Raises his hands happily; Jeong Jeong groans in dismay fearing this may not end well.],Really? That's great!,Tim Hedrick,Lauren MacMullan,8.5 +3689,3689,Water,1,The Deserter,16,Scene Description,"In the morning outside of Jeong Jeong's cottage. Sokka is sitting on a boulder by the river, fishing. The screen pans up the river where Katara is practicing waterbending before switching to Aang and Jeong Jeong in front of the cottage. Aang stands, bandy legged, on a flat stone in the river. Jeong Jeong stands a foot or two away on the bank in front of his cottage.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3690,3690,Water,1,The Deserter,16,Jeong Jeong,"Widen your stance. Wider! Bend your knees. Now, concentrate. [Aang expresses his concentration.] Good, good!","Widen your stance. Wider! Bend your knees. Now, concentrate. Good, good!",Tim Hedrick,Lauren MacMullan,8.5 +3691,3691,Water,1,The Deserter,16,Aang,Wait! What do I do now?,Wait! What do I do now?,Tim Hedrick,Lauren MacMullan,8.5 +3692,3692,Water,1,The Deserter,16,Jeong Jeong,"[Turns around.] Silence! Talking is not concentrating! Look at your friend, is she talking? [Points at Sokka.] Even that oaf knows to concentrate on what he's doing!","Silence! Talking is not concentrating! Look at your friend, is she talking? Even that oaf knows to concentrate on what he's doing!",Tim Hedrick,Lauren MacMullan,8.5 +3693,3693,Water,1,The Deserter,16,Sokka,[Annoyed.] Hey!,Hey!,Tim Hedrick,Lauren MacMullan,8.5 +3694,3694,Water,1,The Deserter,16,Aang,But what am I concentrating on?,But what am I concentrating on?,Tim Hedrick,Lauren MacMullan,8.5 +3695,3695,Water,1,The Deserter,16,Jeong Jeong,"Feel the heat of the sun. It is the greatest source of fire. Yet, it is in complete balance with nature!","Feel the heat of the sun. It is the greatest source of fire. Yet, it is in complete balance with nature!",Tim Hedrick,Lauren MacMullan,8.5 +3696,3696,Water,1,The Deserter,16,Aang,So when do I get to make some fire?,So when do I get to make some fire?,Tim Hedrick,Lauren MacMullan,8.5 +3697,3697,Water,1,The Deserter,16,Jeong Jeong,Concentrate!,Concentrate!,Tim Hedrick,Lauren MacMullan,8.5 +3698,3698,Water,1,The Deserter,16,Scene Description,"Aang breathes and is embarrassed as his friends laugh at him from behind. He turns to look at them, but they stop instantly, as he tries to innocent. Cut to a long shot of the figures in the distance climbing the slope of a mountain. Cut to a close-up shot of Aang and Jeong Jeong walking up the path to the mountain's summit.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3699,3699,Water,1,The Deserter,16,Aang,Are we coming up here so I don't burn anything with my fire blasts?,Are we coming up here so I don't burn anything with my fire blasts?,Tim Hedrick,Lauren MacMullan,8.5 +3700,3700,Water,1,The Deserter,16,Jeong Jeong,No fire yet.,No fire yet.,Tim Hedrick,Lauren MacMullan,8.5 +3701,3701,Water,1,The Deserter,16,Aang,What?,What?,Tim Hedrick,Lauren MacMullan,8.5 +3702,3702,Water,1,The Deserter,16,Jeong Jeong,Power in firebending comes from the breath. That is why you must master proper breath control.,Power in firebending comes from the breath. That is why you must master proper breath control.,Tim Hedrick,Lauren MacMullan,8.5 +3703,3703,Water,1,The Deserter,16,Aang,You brought me up here to breathe?,You brought me up here to breathe?,Tim Hedrick,Lauren MacMullan,8.5 +3704,3704,Water,1,The Deserter,16,Jeong Jeong,Assume your stance.,Assume your stance.,Tim Hedrick,Lauren MacMullan,8.5 +3705,3705,Water,1,The Deserter,16,Scene Description,Aang assumes the proper stance.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3706,3706,Water,1,The Deserter,16,Jeong Jeong,[Faces the opposite direction of Aang.] Wider.,Wider.,Tim Hedrick,Lauren MacMullan,8.5 +3707,3707,Water,1,The Deserter,16,Aang,You're not even look— [Interrupted by Jeong Jeong.],You're not even look—,Tim Hedrick,Lauren MacMullan,8.5 +3708,3708,Water,1,The Deserter,16,Jeong Jeong,"Wider! Now, inhale through the nose and exhale through the mouth - without talking. Good. Keep going.","Wider! Now, inhale through the nose and exhale through the mouth - without talking. Good. Keep going.",Tim Hedrick,Lauren MacMullan,8.5 +3709,3709,Water,1,The Deserter,16,Scene Description,"Jeong Jeong walks down the path and out of the frame as Aang continues to breathe, a look of fierce concentration on his face. Cut to a view of Aang's lower body as he parts the curtain into Jeong Jeong's cottage.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3710,3710,Water,1,The Deserter,16,Jeong Jeong,What are you doing here? I did not tell you to stop!,What are you doing here? I did not tell you to stop!,Tim Hedrick,Lauren MacMullan,8.5 +3711,3711,Water,1,The Deserter,16,Aang,I've been breathing for hours!,I've been breathing for hours!,Tim Hedrick,Lauren MacMullan,8.5 +3712,3712,Water,1,The Deserter,16,Jeong Jeong,You want to stop breathing?,You want to stop breathing?,Tim Hedrick,Lauren MacMullan,8.5 +3713,3713,Water,1,The Deserter,16,Aang,I want you to stop wasting my time! I already know how to squat and breathe and feel the sun! [Wiggles fingers to the ceiling to gesture this.] I wanna know how to shoot fire out of my fingertips!,I want you to stop wasting my time! I already know how to squat and breathe and feel the sun! I wanna know how to shoot fire out of my fingertips!,Tim Hedrick,Lauren MacMullan,8.5 +3714,3714,Water,1,The Deserter,16,Jeong Jeong,"[Sighs gruffly.] I had a pupil once who had no interest in learning discipline. He was only concerned with the power of fire - how he could use it to destroy his opponents and wipe out the obstacles in his path, but fire is a horrible burden to bear. Its nature is to consume and without control it destroys everything around it. [While he was speaking, the camera cuts to Zhao on his boat; several men attack him, but he fends them off easily, leaving a fire in his wake. Cuts back to Jeong Jeong.]","I had a pupil once who had no interest in learning discipline. He was only concerned with the power of fire - how he could use it to destroy his opponents and wipe out the obstacles in his path, but fire is a horrible burden to bear. Its nature is to consume and without control it destroys everything around it.",Tim Hedrick,Lauren MacMullan,8.5 +3715,3715,Water,1,The Deserter,16,Jeong Jeong,"Learn restraint, or risk destroying yourself and everything you love.","Learn restraint, or risk destroying yourself and everything you love.",Tim Hedrick,Lauren MacMullan,8.5 +3716,3716,Water,1,The Deserter,16,Scene Description,After several hours Jeong Jeong finds Aang in front of the hut meditating.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3717,3717,Water,1,The Deserter,16,Aang,"I thought about what you said, I promise I'll be more patient.","I thought about what you said, I promise I'll be more patient.",Tim Hedrick,Lauren MacMullan,8.5 +3718,3718,Water,1,The Deserter,16,Jeong Jeong,We're going to work with fire now.,We're going to work with fire now.,Tim Hedrick,Lauren MacMullan,8.5 +3719,3719,Water,1,The Deserter,16,Aang,"Oh yeah! [Aang gets excited and airbends himself into the air. He quickly gets serious again.] I mean, let us begin.","Oh yeah! I mean, let us begin.",Tim Hedrick,Lauren MacMullan,8.5 +3720,3720,Water,1,The Deserter,16,Scene Description,Jeong Jeong grabs a falling leaf and burns the center.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3721,3721,Water,1,The Deserter,16,Jeong Jeong,Concentrate on the fire. I want you to keep the flame from reaching the edges of the leaf for as long as you can.,Concentrate on the fire. I want you to keep the flame from reaching the edges of the leaf for as long as you can.,Tim Hedrick,Lauren MacMullan,8.5 +3722,3722,Water,1,The Deserter,16,Tribal man,Master! There is trouble.,Master! There is trouble.,Tim Hedrick,Lauren MacMullan,8.5 +3723,3723,Water,1,The Deserter,16,Aang,What's going on?,What's going on?,Tim Hedrick,Lauren MacMullan,8.5 +3724,3724,Water,1,The Deserter,16,Jeong Jeong,Concentrate on your leaf!,Concentrate on your leaf!,Tim Hedrick,Lauren MacMullan,8.5 +3725,3725,Water,1,The Deserter,16,Aang,[Annoyed.] This is the worst firebending instruction ever! All he does is leave me for hours to concentrate or breathe!,This is the worst firebending instruction ever! All he does is leave me for hours to concentrate or breathe!,Tim Hedrick,Lauren MacMullan,8.5 +3726,3726,Water,1,The Deserter,16,Katara,I'm sure there's a good reason.,I'm sure there's a good reason.,Tim Hedrick,Lauren MacMullan,8.5 +3727,3727,Water,1,The Deserter,16,Aang,But I'm ready to do so much more.,But I'm ready to do so much more.,Tim Hedrick,Lauren MacMullan,8.5 +3728,3728,Water,1,The Deserter,16,Scene Description,"Aang remembers to concentrate on his leaf and gets into a stance and breaths. Moments later, the leaf burns up creating a small flame.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3729,3729,Water,1,The Deserter,16,Aang,[Excited.] I did it! I made fire!,I did it! I made fire!,Tim Hedrick,Lauren MacMullan,8.5 +3730,3730,Water,1,The Deserter,16,Katara,"Aang, that's great, but you should take it slow.","Aang, that's great, but you should take it slow.",Tim Hedrick,Lauren MacMullan,8.5 +3731,3731,Water,1,The Deserter,16,Scene Description,Aang starts playing with it by tossing it back and forth from in front to behind himself. He makes a blast go in the opposite direction.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3732,3732,Water,1,The Deserter,16,Aang,Now that's some firebending!,Now that's some firebending!,Tim Hedrick,Lauren MacMullan,8.5 +3733,3733,Water,1,The Deserter,16,Katara,"Aang, you'll hurt yourself!","Aang, you'll hurt yourself!",Tim Hedrick,Lauren MacMullan,8.5 +3734,3734,Water,1,The Deserter,16,Aang,I wonder how that juggler did it.,I wonder how that juggler did it.,Tim Hedrick,Lauren MacMullan,8.5 +3735,3735,Water,1,The Deserter,16,Scene Description,"Aang tosses it into the air and spreads his arms out. For a second, he has a smile on his face, but it vanishes as he accidentally burns Katara's hands. Katara shrieks in pain.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3736,3736,Water,1,The Deserter,16,Aang,Katara! I'm so sorry!,Katara! I'm so sorry!,Tim Hedrick,Lauren MacMullan,8.5 +3737,3737,Water,1,The Deserter,16,Scene Description,Sokka comes running to Katara's side.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3738,3738,Water,1,The Deserter,16,Sokka,"[Concerned.] Katara, what's wrong? [Angrily.] What did you do!?","Katara, what's wrong? What did you do!?",Tim Hedrick,Lauren MacMullan,8.5 +3739,3739,Water,1,The Deserter,16,Aang,I'm sorry! It was an accident!,I'm sorry! It was an accident!,Tim Hedrick,Lauren MacMullan,8.5 +3740,3740,Water,1,The Deserter,16,Scene Description,Sokka tackles Aang.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3741,3741,Water,1,The Deserter,16,Sokka,I told you we shouldn't mess around with this! Look what you did! You burned my sister! [Katara runs away.] You burned my sister! [As Jeong Jeong walks in.] This is all your fault!,I told you we shouldn't mess around with this! Look what you did! You burned my sister! You burned my sister! This is all your fault!,Tim Hedrick,Lauren MacMullan,8.5 +3742,3742,Water,1,The Deserter,16,Jeong Jeong,I know! Now pack your things. You must leave immediately.,I know! Now pack your things. You must leave immediately.,Tim Hedrick,Lauren MacMullan,8.5 +3743,3743,Water,1,The Deserter,16,Scene Description,Katara runs off.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3744,3744,Water,1,The Deserter,16,Aang,"I'm sorry, I didn't ... [Sokka runs off.] I'm sorry! [Jeong Jeong looks at Aang, displeased.]","I'm sorry, I didn't ... I'm sorry!",Tim Hedrick,Lauren MacMullan,8.5 +3745,3745,Water,1,The Deserter,16,Scene Description,"The scene cuts to Katara who is sulking by a creek due to the pain of her burns. She dips her hands in; they glow briefly, and a few seconds later her hands are healed.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3746,3746,Water,1,The Deserter,16,Jeong Jeong,You have healing abilities. The great benders of the Water Tribe sometimes have this ability. I've always wished I were blessed like you - free from this burning curse.,You have healing abilities. The great benders of the Water Tribe sometimes have this ability. I've always wished I were blessed like you - free from this burning curse.,Tim Hedrick,Lauren MacMullan,8.5 +3747,3747,Water,1,The Deserter,16,Katara,But you're a great master. You have powers that I will never know.,But you're a great master. You have powers that I will never know.,Tim Hedrick,Lauren MacMullan,8.5 +3748,3748,Water,1,The Deserter,16,Jeong Jeong,"Water brings healing and life. But fire brings only destruction and pain. It forces those of us burdened with its care to walk a razor's edge between humanity and savagery. Eventually, we are torn apart.","Water brings healing and life. But fire brings only destruction and pain. It forces those of us burdened with its care to walk a razor's edge between humanity and savagery. Eventually, we are torn apart.",Tim Hedrick,Lauren MacMullan,8.5 +3749,3749,Water,1,The Deserter,16,Scene Description,Suddenly the water is front of them is blasted with flames. Jeong Jeong gets up and gets into a defensive bending stance and breaks the flames that wash over him and Katara. The screen changes to a frontal shot of Zhao's riverboats coming toward them before switching back to Katara and Jeong Jeong.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3750,3750,Water,1,The Deserter,16,Jeong Jeong,Go get your friends and flee! Do not come back here or you will all be destroyed. Hurry!,Go get your friends and flee! Do not come back here or you will all be destroyed. Hurry!,Tim Hedrick,Lauren MacMullan,8.5 +3751,3751,Water,1,The Deserter,16,Scene Description,Jeong Jeong faces the boats that land harmlessly around him. The screen shows Zhao looking ahead through a telescope from the main deck of his ship. He lowers it and smiles. The screen goes back to Jeong Jeong produces a large wall of fire in front of the ships. An overhead shot of the ships is shown; the boats turn to land on the beach. The screen goes back to the front of the beach. Zhao comes into view.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3752,3752,Water,1,The Deserter,16,Zhao,"Don't worry, men. My old teacher gave up fighting a long time ago. [The screen pans to Jeong Jeong. Suddenly, Zhao parts through the wall.] Haven't you, Master Jeong Jeong?","Don't worry, men. My old teacher gave up fighting a long time ago. Haven't you, Master Jeong Jeong?",Tim Hedrick,Lauren MacMullan,8.5 +3753,3753,Water,1,The Deserter,16,Scene Description,"[The screen goes for a close of Jeong Jeong's face, and a wide shot as he drops the wall of fire. Cut to Katara running up to where Sokka is preparing Appa to leave.]",NA,Tim Hedrick,Lauren MacMullan,8.5 +3754,3754,Water,1,The Deserter,16,Sokka,Katara! Are you all right?,Katara! Are you all right?,Tim Hedrick,Lauren MacMullan,8.5 +3755,3755,Water,1,The Deserter,16,Katara,"I'm fine, we've got to get out of here. Where's Aang? [Sokka gestures to the cottage.]","I'm fine, we've got to get out of here. Where's Aang?",Tim Hedrick,Lauren MacMullan,8.5 +3756,3756,Water,1,The Deserter,16,Scene Description,Katara enters the cottage to find Aang sulking.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3757,3757,Water,1,The Deserter,16,Aang,Jeong Jeong tried to tell me that I wasn't ready. I wouldn't listen. I'm never going to firebend again.,Jeong Jeong tried to tell me that I wasn't ready. I wouldn't listen. I'm never going to firebend again.,Tim Hedrick,Lauren MacMullan,8.5 +3758,3758,Water,1,The Deserter,16,Katara,You'll have to eventually.,You'll have to eventually.,Tim Hedrick,Lauren MacMullan,8.5 +3759,3759,Water,1,The Deserter,16,Aang,"No, never again.","No, never again.",Tim Hedrick,Lauren MacMullan,8.5 +3760,3760,Water,1,The Deserter,16,Katara,"It's okay, Aang. I'm healed.","It's okay, Aang. I'm healed.",Tim Hedrick,Lauren MacMullan,8.5 +3761,3761,Water,1,The Deserter,16,Aang,[Surprised.] What? How?,What? How?,Tim Hedrick,Lauren MacMullan,8.5 +3762,3762,Water,1,The Deserter,16,Katara,"I'll explain later. But right now, we have to get out here. Zhao and his soldiers are attacking!","I'll explain later. But right now, we have to get out here. Zhao and his soldiers are attacking!",Tim Hedrick,Lauren MacMullan,8.5 +3763,3763,Water,1,The Deserter,16,Aang,[Gets on his feet.] Where?,Where?,Tim Hedrick,Lauren MacMullan,8.5 +3764,3764,Water,1,The Deserter,16,Katara,By the river. They captured Jeong Jeong.,By the river. They captured Jeong Jeong.,Tim Hedrick,Lauren MacMullan,8.5 +3765,3765,Water,1,The Deserter,16,Aang,I have to help him!,I have to help him!,Tim Hedrick,Lauren MacMullan,8.5 +3766,3766,Water,1,The Deserter,16,Scene Description,"[The screen switches to an overhead shot of the beach. Zhao and his men stand against Jeong Jeong, before cutting to a closer shot.]",NA,Tim Hedrick,Lauren MacMullan,8.5 +3767,3767,Water,1,The Deserter,16,Zhao,Look at you. You were once so great. I can't believe my former master has become nothing more than a simple savage.,Look at you. You were once so great. I can't believe my former master has become nothing more than a simple savage.,Tim Hedrick,Lauren MacMullan,8.5 +3768,3768,Water,1,The Deserter,16,Jeong Jeong,"It is you who have embraced savagery, Zhao.","It is you who have embraced savagery, Zhao.",Tim Hedrick,Lauren MacMullan,8.5 +3769,3769,Water,1,The Deserter,16,Zhao,"It's Admiral Zhao, now.","It's Admiral Zhao, now.",Tim Hedrick,Lauren MacMullan,8.5 +3770,3770,Water,1,The Deserter,16,Jeong Jeong,That title will not help you against the Avatar. Do not try to fight him! You are no match!,That title will not help you against the Avatar. Do not try to fight him! You are no match!,Tim Hedrick,Lauren MacMullan,8.5 +3771,3771,Water,1,The Deserter,16,Zhao,[Amused.] I think I can handle a child.,I think I can handle a child.,Tim Hedrick,Lauren MacMullan,8.5 +3772,3772,Water,1,The Deserter,16,Jeong Jeong,I have never seen such raw power ...,I have never seen such raw power ...,Tim Hedrick,Lauren MacMullan,8.5 +3773,3773,Water,1,The Deserter,16,Aang,Jeong Jeong!,Jeong Jeong!,Tim Hedrick,Lauren MacMullan,8.5 +3774,3774,Water,1,The Deserter,16,Zhao,We'll see. Men! Take the deserter!,We'll see. Men! Take the deserter!,Tim Hedrick,Lauren MacMullan,8.5 +3775,3775,Water,1,The Deserter,16,Scene Description,Cut to overhead shot of Jeong Jeong surrounded by five firebenders. Aang tops short in horror as they close in. Jeong Jeong smirks and wraps himself in a ball of flames. When the flames completely dissipates Jeong Jeong is nowhere to be seen.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3776,3776,Water,1,The Deserter,16,Zhao,[Angry.] It's a trick! He's run off into the woods. Find him! [Faces Aang.] Let's find out what my old master has taught you.,It's a trick! He's run off into the woods. Find him! Let's find out what my old master has taught you.,Tim Hedrick,Lauren MacMullan,8.5 +3777,3777,Water,1,The Deserter,16,Aang,[Shocked.] You were Jeong Jeong's student?!,You were Jeong Jeong's student?!,Tim Hedrick,Lauren MacMullan,8.5 +3778,3778,Water,1,The Deserter,16,Zhao,Until I got bored.,Until I got bored.,Tim Hedrick,Lauren MacMullan,8.5 +3779,3779,Water,1,The Deserter,16,Scene Description,Zhao throws a fireball at Aang.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3780,3780,Water,1,The Deserter,16,Zhao,I see he taught you how to duck and run like a coward. But I doubt he showed you what a firebender is truly capable of! [Throws another intense fireball.],I see he taught you how to duck and run like a coward. But I doubt he showed you what a firebender is truly capable of!,Tim Hedrick,Lauren MacMullan,8.5 +3781,3781,Water,1,The Deserter,16,Aang,Whoa! Wild shot!,Whoa! Wild shot!,Tim Hedrick,Lauren MacMullan,8.5 +3782,3782,Water,1,The Deserter,16,Zhao,[Roars with rage.] I'll show you wild!,I'll show you wild!,Tim Hedrick,Lauren MacMullan,8.5 +3783,3783,Water,1,The Deserter,16,Scene Description,Aang looks over to the side where Zhao just burned.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3784,3784,Water,1,The Deserter,16,Aang,No self-control ... [Gets an idea.],No self-control ...,Tim Hedrick,Lauren MacMullan,8.5 +3785,3785,Water,1,The Deserter,16,Zhao,"Stand and fight, Avatar!","Stand and fight, Avatar!",Tim Hedrick,Lauren MacMullan,8.5 +3786,3786,Water,1,The Deserter,16,Aang,"[Mockingly.] Oh, were we fighting? I thought you were just getting warmed up!","Oh, were we fighting? I thought you were just getting warmed up!",Tim Hedrick,Lauren MacMullan,8.5 +3787,3787,Water,1,The Deserter,16,Zhao,[Burns in anger at the remark.] I was ... [Shoots another fireball.],I was ...,Tim Hedrick,Lauren MacMullan,8.5 +3788,3788,Water,1,The Deserter,16,Scene Description,Zhao fires many more fireballs which all miss.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3789,3789,Water,1,The Deserter,16,Aang,"Is that all you got? Man, they'll make anyone an admiral these days! [Nearly gets blasted.] [Aang cups his hands over his to sound louder.] Ahoy! [Moons Zhao with pants up.] I'm Admiral Zhao! [Zhao gets even angrier and Aang nearly gets blasted again.] I don't know why, but I thought you'd be better than Zuko. [Aang looks disappointed when he says this. His eyes go wide and he lies down on the deck fast enough to avoid being burnt. Mocking Zhao's firebending.] Sloppy. Very sloppy.","Is that all you got? Man, they'll make anyone an admiral these days! Ahoy! I'm Admiral Zhao! I don't know why, but I thought you'd be better than Zuko. Sloppy. Very sloppy.",Tim Hedrick,Lauren MacMullan,8.5 +3790,3790,Water,1,The Deserter,16,Zhao,"Nowhere to run now, you little smart mouth!","Nowhere to run now, you little smart mouth!",Tim Hedrick,Lauren MacMullan,8.5 +3791,3791,Water,1,The Deserter,16,Aang,[Having dodged a series of blasts from Zhao on several ships.] You've lost this battle.,You've lost this battle.,Tim Hedrick,Lauren MacMullan,8.5 +3792,3792,Water,1,The Deserter,16,Zhao,[Enraged disbelief.] Are you crazy? You haven't thrown a single blow!,Are you crazy? You haven't thrown a single blow!,Tim Hedrick,Lauren MacMullan,8.5 +3793,3793,Water,1,The Deserter,16,Aang,"No, but you have. [He gestures around, all the boats are on fire and sinking.] Jeong Jeong said you had no restraint. [Jumps in the water.] Have a nice walk home!","No, but you have. Jeong Jeong said you had no restraint. Have a nice walk home!",Tim Hedrick,Lauren MacMullan,8.5 +3794,3794,Water,1,The Deserter,16,Sokka,"Aang, come on! Let's go!","Aang, come on! Let's go!",Tim Hedrick,Lauren MacMullan,8.5 +3795,3795,Water,1,The Deserter,16,Scene Description,"Cut a shot from behind Aang, who is now looking at the river bank beach. Aang hops on Appa and they fly away.",NA,Tim Hedrick,Lauren MacMullan,8.5 +3796,3796,Water,1,The Deserter,16,Aang,Wait! Where's Jeong Jeong?,Wait! Where's Jeong Jeong?,Tim Hedrick,Lauren MacMullan,8.5 +3797,3797,Water,1,The Deserter,16,Sokka,He disappeared. They all did.,He disappeared. They all did.,Tim Hedrick,Lauren MacMullan,8.5 +3798,3798,Water,1,The Deserter,16,Chey,"[Walks into the now abandoned village; not amused.] Hey, where did everybody go? [Sarcastically.] Very funny guys","Hey, where did everybody go? Very funny guys",Tim Hedrick,Lauren MacMullan,8.5 +3799,3799,Water,1,The Deserter,16,Katara,"Aang, you're burned! Let me help you. [Katara heals the burn on Aang's arm.]","Aang, you're burned! Let me help you.",Tim Hedrick,Lauren MacMullan,8.5 +3800,3800,Water,1,The Deserter,16,Aang,"Wow, that's good water.","Wow, that's good water.",Tim Hedrick,Lauren MacMullan,8.5 +3801,3801,Water,1,The Deserter,16,Sokka,When did you learn that?,When did you learn that?,Tim Hedrick,Lauren MacMullan,8.5 +3802,3802,Water,1,The Deserter,16,Katara,I guess I always knew.,I guess I always knew.,Tim Hedrick,Lauren MacMullan,8.5 +3803,3803,Water,1,The Deserter,16,Sokka,[Sarcastically.] Oh ... Well then thanks for all the first aid over the years. Like when I fell into the greaseberry bramble. [Angrily.] Or that time I had two fishhooks in my thumb!,Oh ... Well then thanks for all the first aid over the years. Like when I fell into the greaseberry bramble. Or that time I had two fishhooks in my thumb!,Tim Hedrick,Lauren MacMullan,8.5 +3804,3804,Water,1,The Deserter,16,Aang,[Shocked.] Two?,Two?,Tim Hedrick,Lauren MacMullan,8.5 +3805,3805,Water,1,The Deserter,16,Katara,[Amused.] He tried to get the first fishhook out with another fishhook.,He tried to get the first fishhook out with another fishhook.,Tim Hedrick,Lauren MacMullan,8.5 +3806,3806,Water,1,The Deserter,16,Sokka,"[Still being sarcastic.] Oh, and the time that mink snake bit me! Thanks for healing that up. That was great. Really helpful.","Oh, and the time that mink snake bit me! Thanks for healing that up. That was great. Really helpful.",Tim Hedrick,Lauren MacMullan,8.5 +3807,3807,Water,1,The Deserter,16,Scene Description,Fade to credits.,NA,Tim Hedrick,Lauren MacMullan,8.5 +3808,3808,Water,1,The Northern Air Temple,17,Scene Description,"The episode begins with the gang sitting around a camp site with several other groups, listening to a man telling a story of 'airbenders'.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3809,3809,Water,1,The Northern Air Temple,17,Storyteller,"[Dramatically; out of view.] So, travelers. The next time you think you hear a strange, large bird talking, take a closer look. It might not be a giant parrot, but a flying man. A member of a secret group of air walkers, who laugh at gravity, and laugh at those bound to the earth by it!","So, travelers. The next time you think you hear a strange, large bird talking, take a closer look. It might not be a giant parrot, but a flying man. A member of a secret group of air walkers, who laugh at gravity, and laugh at those bound to the earth by it!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3810,3810,Water,1,The Northern Air Temple,17,Aang,"[Cuts to a wide shot, showing the gang and the other travelers surrounding a small campfire. The Storyteller, having finished his story, is going around collecting coins from the other travelers.] Aren't airbender stories the greatest? [Talking to Katara and Sokka, who are sitting next to him.]",Aren't airbender stories the greatest?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3811,3811,Water,1,The Northern Air Temple,17,Katara,[Excitedly.] Was it realistic? Is that how it was back then?,Was it realistic? Is that how it was back then?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3812,3812,Water,1,The Northern Air Temple,17,Scene Description,Cuts to the three kids.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3813,3813,Water,1,The Northern Air Temple,17,Aang,I laugh at gravity all the time. [Chuckling to himself.] Gravity.,I laugh at gravity all the time. Gravity.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3814,3814,Water,1,The Northern Air Temple,17,Storyteller,"[Arrives in front of the gang, having already collected money from the rest of the audience.] Jingle, jingle! [Jingles the hat in front of Sokka, asking for money.]","Jingle, jingle!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3815,3815,Water,1,The Northern Air Temple,17,Scene Description,"Sokka searches inside his heavy cloak, and manages to pull out a bug, a worm and a few crumbs.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3816,3816,Water,1,The Northern Air Temple,17,Sokka,Sorry ...,Sorry ...,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3817,3817,Water,1,The Northern Air Temple,17,Storyteller,"[Upset and somewhat downcast.] Aww, cheapskates! [Walks away as Sokka puts the bugs back in his pocket.]","Aww, cheapskates!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3818,3818,Water,1,The Northern Air Temple,17,Scene Description,"Aang stands up and runs after the storyteller, who is kneeling in front of an old man.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3819,3819,Water,1,The Northern Air Temple,17,Aang,[Happily.] Hey! Thanks for the story.,Hey! Thanks for the story.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3820,3820,Water,1,The Northern Air Temple,17,Storyteller,"[Holds out his cap.] Tell it to the cap, boy.","Tell it to the cap, boy.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3821,3821,Water,1,The Northern Air Temple,17,Scene Description,"The Storyteller shakes his cap behind him as he kneels in front of an old man. The shaking causes a coin to come loose and fall from the cap. As Aang searches his clothes for some money, Momo picks up the coin and puts it in the cap as the Storyteller turns around.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3822,3822,Water,1,The Northern Air Temple,17,Storyteller,"Aww, much obliged, little bat-thing. [He pets Momo on the head.]","Aww, much obliged, little bat-thing.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3823,3823,Water,1,The Northern Air Temple,17,Aang,[Having given up trying to find a coin.] It means a lot to hear airbender stories. It must have been a hundred years ago your great grandpa met them.,It means a lot to hear airbender stories. It must have been a hundred years ago your great grandpa met them.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3824,3824,Water,1,The Northern Air Temple,17,Storyteller,"[Confused.] What are you prattling about, child? Great Grandpappy saw the air walkers last week. [He indicates to the old man he was kneeling in front of before. The old man makes a sound in his throat akin to a laugh, and waves a greeting to Aang. The shot cuts to Aang, who has a shocked and disbelieving expression.]","What are you prattling about, child? Great Grandpappy saw the air walkers last week.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3825,3825,Water,1,The Northern Air Temple,17,Scene Description,"The scene changes from the campsite to a shot of clouds, and Appa flying above them.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3826,3826,Water,1,The Northern Air Temple,17,Aang,"[Sitting on Appa's neck, steering. He is talking to Katara and Sokka, who are riding in Appa's saddle.] Hey, we're almost at the Northern Air Temple. This is where they had the championships for Sky Bison polo.","Hey, we're almost at the Northern Air Temple. This is where they had the championships for Sky Bison polo.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3827,3827,Water,1,The Northern Air Temple,17,Katara,[Moving to sit at the back of the saddle with her brother.] Do you think we'll really find airbenders?,Do you think we'll really find airbenders?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3828,3828,Water,1,The Northern Air Temple,17,Sokka,"[He is whittling a piece of wood. The design is indecipherable.] You want me to be like you, or totally honest?","You want me to be like you, or totally honest?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3829,3829,Water,1,The Northern Air Temple,17,Katara,"[Crossing her arms, obviously angry with him.] Are you saying I'm a liar?",Are you saying I'm a liar?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3830,3830,Water,1,The Northern Air Temple,17,Sokka,"[He shrugs, unconcerned with her mood.] I'm saying you're an optimist. Same thing, basically.","I'm saying you're an optimist. Same thing, basically.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3831,3831,Water,1,The Northern Air Temple,17,Aang,"[Excitedly.] Hey, guys, look at this!","Hey, guys, look at this!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3832,3832,Water,1,The Northern Air Temple,17,Scene Description,"The camera moves to show Appa, who is flying toward a mountain with a large structure on top. It looks very similar to the Southern Air Temple, with obvious spires reminiscent of a temple's architecture. Around them are several dark specks. The camera zooms in, and the specks are revealed to be people, flying around the temple in plane-shaped contraptions.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3833,3833,Water,1,The Northern Air Temple,17,Katara,[Amazed.] They really are airbenders!,They really are airbenders!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3834,3834,Water,1,The Northern Air Temple,17,Aang,"[His face falls as he sees the 'airbenders', and after Katara's excited outburst, he leans back and scowls while crossing his arms.] No, they're not.","No, they're not.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3835,3835,Water,1,The Northern Air Temple,17,Sokka,"[Exuberantly.] What do you mean ""they're not""? Those guys are flying!","What do you mean ""they're not""? Those guys are flying!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3836,3836,Water,1,The Northern Air Temple,17,Aang,"[Bitterly. He is glaring at the direction of the people flying around the temple.] Gliding maybe, but not flying. You can tell by the way they move, they're not airbending. Those people have no spirit.","Gliding maybe, but not flying. You can tell by the way they move, they're not airbending. Those people have no spirit.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3837,3837,Water,1,The Northern Air Temple,17,Scene Description,"Suddenly, a boy sitting in an oddly shaped chair flies right above them, nearly hitting them, and laughing as he does so.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3838,3838,Water,1,The Northern Air Temple,17,Katara,"I don't know, Aang.[Katara points to the boy.] That kid seemed pretty spirited. [Katara indicates to the boy, who is flying dangerously close, but still laughing.]","I don't know, Aang. That kid seemed pretty spirited.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3839,3839,Water,1,The Northern Air Temple,17,Scene Description,"The boy begins to fly away, shooting Aang one more look back as he does so while grinning. Aang grins devilishly, and opens up his glider to follow the boy. He leaves Katara and Sokka on Appa, and they quickly become surrounded by gliders as they get closer to the temple. Several gliders almost hit Appa, which causes Katara to knock into her brother and shout in pain as Appa moves sharply to avoid them.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3840,3840,Water,1,The Northern Air Temple,17,Sokka,"We better find some solid ground, before it finds us. [The siblings land Appa on the temple courtyard, out of the hazardous sky. Aang is still flying with the boy, and seems to be having fun at the surprise competition.]","We better find some solid ground, before it finds us.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3841,3841,Water,1,The Northern Air Temple,17,Colonists,"[Several children are on the ground, cheering on their friend.] Go Teo! Show that bald kid how it's done!",Go Teo! Show that bald kid how it's done!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3842,3842,Water,1,The Northern Air Temple,17,Scene Description,Teo and Aang do two loop-de-loops as they fly around the air temple. The two boys do a spiral downwards.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3843,3843,Water,1,The Northern Air Temple,17,Teo,"[The boy doesn't seem upset at Aang, and seems happy that he isn't angry for nearly flying into him.] Hey there, you're pretty good!","Hey there, you're pretty good!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3844,3844,Water,1,The Northern Air Temple,17,Aang,"[Nonchalantly, but with a smirk.] Yeah, I know. But I can do more than fancy gliding.","Yeah, I know. But I can do more than fancy gliding.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3845,3845,Water,1,The Northern Air Temple,17,Scene Description,"Aang begins flying closer to the temple, under a bridge. Cut to a scene of Aang jumping off his glider and allowing it to fly forward on its own. He begins running along a wall, switching to an air scooter halfway, before jumping off onto his glider again.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3846,3846,Water,1,The Northern Air Temple,17,Teo,"[He is looking amazed, before thinking of his own plan.] Wow, I don't think I can do that. But here's a good one.","Wow, I don't think I can do that. But here's a good one.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3847,3847,Water,1,The Northern Air Temple,17,Scene Description,"Teo turns on a small canister that is positioned under his glider. White smoke begins to stream from the strange contraption, and Teo flies around in the sky. The camera pans to show the sight from the ground, where it is revealed that he has created an image of Aang's face, complete with an annoyed expression. The crowd below cheers.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3848,3848,Water,1,The Northern Air Temple,17,Teo,What do you think?,What do you think?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3849,3849,Water,1,The Northern Air Temple,17,Aang,[Annoyed; his face mimics the one Teo has just drawn.] It's great.,It's great.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3850,3850,Water,1,The Northern Air Temple,17,Scene Description,Aang lands beside Katara and Sokka. Teo lands soon after and pulls on the brakes. Other children take the glider off of the top of his wheel chair. Teo rolls up to Aang.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3851,3851,Water,1,The Northern Air Temple,17,Teo,"Hey, you're a real airbender. You must be the Avatar! That's amazing! I-I've heard stories about you!","Hey, you're a real airbender. You must be the Avatar! That's amazing! I-I've heard stories about you!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3852,3852,Water,1,The Northern Air Temple,17,Aang,"[Rubs his head, embarrassed.] Thanks.",Thanks.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3853,3853,Water,1,The Northern Air Temple,17,Sokka,"[Sokka ignores all formalities, instead going over to Teo's chair and examining the strange shape and design.] Wow! This glider chair is incredible!",Wow! This glider chair is incredible!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3854,3854,Water,1,The Northern Air Temple,17,Teo,"You think this is good, wait until you see the other stuff my dad designed.","You think this is good, wait until you see the other stuff my dad designed.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3855,3855,Water,1,The Northern Air Temple,17,Scene Description,"All four walk inside the building. They enter a room filled with pipes and machinery. Aang looks around worriedly. Beneath the pipes, an original mural can be seen, although it has been destroyed by the pipes, which are sticking into the walls.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3856,3856,Water,1,The Northern Air Temple,17,Sokka,Wow! [Runs up to machines.],Wow!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3857,3857,Water,1,The Northern Air Temple,17,Teo,"Yeah, my dad is the mastermind behind this whole place. Everything's powered by hot air. [Shows women using an elevator like contraption.] It even pumps hot air currents outside to give us a lift while we're gliding.","Yeah, my dad is the mastermind behind this whole place. Everything's powered by hot air. It even pumps hot air currents outside to give us a lift while we're gliding.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3858,3858,Water,1,The Northern Air Temple,17,Aang,[Monotonously.] This place is unbelievable.,This place is unbelievable.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3859,3859,Water,1,The Northern Air Temple,17,Teo,"Yeah, it's great, isn't it?","Yeah, it's great, isn't it?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3860,3860,Water,1,The Northern Air Temple,17,Aang,"No, just unbelievable. [Walks away.]","No, just unbelievable.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3861,3861,Water,1,The Northern Air Temple,17,Katara,"[Katara approaches Teo, who seems disappointed at Aang's reaction.] Aang used to come here a long time ago. I think he's a little shocked it's so ... different.",Aang used to come here a long time ago. I think he's a little shocked it's so ... different.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3862,3862,Water,1,The Northern Air Temple,17,Sokka,So better!,So better!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3863,3863,Water,1,The Northern Air Temple,17,Scene Description,"Katara walks up to Aang, who is looking at a painted wall with pipes going through it.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3864,3864,Water,1,The Northern Air Temple,17,Aang,This is supposed to be the history of my people.,This is supposed to be the history of my people.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3865,3865,Water,1,The Northern Air Temple,17,Scene Description,"Katara puts her hand on his shoulder. He walks over to a fountain with an air bison statue on it. He looks at his reflection in the dirty green water, Aang looks at it squeamishly. The sky bison statue suddenly has black smoke coming out of it's mouth.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3866,3866,Water,1,The Northern Air Temple,17,Aang,Ugh!,Ugh!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3867,3867,Water,1,The Northern Air Temple,17,Katara,[Walks up and puts her hand on his shoulder.] I'm sure some parts of the temple are still the same.,I'm sure some parts of the temple are still the same.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3868,3868,Water,1,The Northern Air Temple,17,Scene Description,"Screen pans off to show Aang, Katara, Sokka and Teo walking across a bridge to a large room that looks well kept. The room has no roof, although around the walls there are statues of monks, mostly meditating.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3869,3869,Water,1,The Northern Air Temple,17,Aang,It's nice to see that at least one part of the temple that isn't ruined.,It's nice to see that at least one part of the temple that isn't ruined.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3870,3870,Water,1,The Northern Air Temple,17,Scene Description,Katara and Aang look at a statue of a long-bearded airbender meditating.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3871,3871,Water,1,The Northern Air Temple,17,Man,[Off-screen.] Look out!,Look out!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3872,3872,Water,1,The Northern Air Temple,17,Scene Description,"The statue is knocked down by a wrecking ball and all four cover their heads. Dust is coming from the statue, so all four cough. The dust clears to show six men standing where the statue used to be.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3873,3873,Water,1,The Northern Air Temple,17,Mechanist,"What the doodle? Don't you know enough to stay away from construction sites? We have to make room for the bathhouse! [He has approached Aang and the group, looking more surprised than upset.]",What the doodle? Don't you know enough to stay away from construction sites? We have to make room for the bathhouse!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3874,3874,Water,1,The Northern Air Temple,17,Aang,[He turns to the mechanist and yells angrily at him.] Do you know what you did!? You just destroyed something sacred! For a stupid bathhouse!,Do you know what you did!? You just destroyed something sacred! For a stupid bathhouse!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3875,3875,Water,1,The Northern Air Temple,17,Mechanist,"Well, people around here are starting to stink. [Waves his hand in front of his face, as though trying to dissipate a bad smell.]","Well, people around here are starting to stink.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3876,3876,Water,1,The Northern Air Temple,17,Aang,"[Points at the mechanist.] This whole place stinks! [Using his airbending, Aang flips the crane contraption off of the edge of the building.]",This whole place stinks!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3877,3877,Water,1,The Northern Air Temple,17,Scene Description,"Cut to exterior shot, showing the crane falling and landing heavily against the side of the cliff the temple is situated on. It is covered by a cloud of dirt and snow as it is utterly destroyed.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3878,3878,Water,1,The Northern Air Temple,17,Aang,This is a sacred temple! You can't treat it this way! [Walks closer to the mechanist.] I've seen it when the monks were here! I know what it's supposed to be like!,This is a sacred temple! You can't treat it this way! I've seen it when the monks were here! I know what it's supposed to be like!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3879,3879,Water,1,The Northern Air Temple,17,Mechanist,"The monks? But, [Scratches his beard.] you're twelve.","The monks? But, you're twelve.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3880,3880,Water,1,The Northern Air Temple,17,Teo,"[Teo rolls up.] Dad, he's the Avatar. He used to come here a hundred years ago.","Dad, he's the Avatar. He used to come here a hundred years ago.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3881,3881,Water,1,The Northern Air Temple,17,Scene Description,"Aang takes a menacing step closer to the mechanist, who takes a step back.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3882,3882,Water,1,The Northern Air Temple,17,Aang,What are you doing? Who said you could be here?,What are you doing? Who said you could be here?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3883,3883,Water,1,The Northern Air Temple,17,Mechanist,"[Turns away from Aang.] Hmm, doing here ... A long time ago, [Points finger up.] but not a hundred years, my people became refugees [Walks behind his son's wheelchair.] after a terrible flood. My infant son, [Teo looks down sadly.] Teo, was badly hurt and lost his mother. [Sniffles.] I needed somewhere to rebuild and I stumbled across this place. Couldn't believe it! Everywhere! Pictures of flying people! But empty, [Looks around.] nobody home. Then, [Does a airplane like gesture, like he's flying up to Aang.] I came across these fan-like contraptions!","Hmm, doing here ... A long time ago, but not a hundred years, my people became refugees after a terrible flood. My infant son, Teo, was badly hurt and lost his mother. I needed somewhere to rebuild and I stumbled across this place. Couldn't believe it! Everywhere! Pictures of flying people! But empty, nobody home. Then, I came across these fan-like contraptions!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3884,3884,Water,1,The Northern Air Temple,17,Aang,Our gliders.,Our gliders.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3885,3885,Water,1,The Northern Air Temple,17,Mechanist,"Yes! Little, light flying machines! [Waves his hands up and down.] They gave me an idea. Build a new life for my son, in the air! Then everyone will be on equal ground! So to speak. We're just in the process of improving upon what's already here. [Katara wipes her tears on Aang's shirt, and Sokka looks like he's holding back tears.] And, after all, isn't that what nature does?","Yes! Little, light flying machines! They gave me an idea. Build a new life for my son, in the air! Then everyone will be on equal ground! So to speak. We're just in the process of improving upon what's already here. And, after all, isn't that what nature does?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3886,3886,Water,1,The Northern Air Temple,17,Aang,Nature knows where to stop.,Nature knows where to stop.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3887,3887,Water,1,The Northern Air Temple,17,Mechanist,"I suppose that's true. Unfortunately, progress has a way of getting away from us. Look at the time! [Points at candles.] Come! [To other workers.] The pulley system must be oiled before dark.","I suppose that's true. Unfortunately, progress has a way of getting away from us. Look at the time! Come! The pulley system must be oiled before dark.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3888,3888,Water,1,The Northern Air Temple,17,Sokka,"Wait, how can you tell the time from that thing? The notches all look the same.","Wait, how can you tell the time from that thing? The notches all look the same.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3889,3889,Water,1,The Northern Air Temple,17,Mechanist,The candle will tell us. Watch. [Candle pops four times.],The candle will tell us. Watch.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3890,3890,Water,1,The Northern Air Temple,17,Sokka,You put spark powder in the candle!,You put spark powder in the candle!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3891,3891,Water,1,The Northern Air Temple,17,Mechanist,"Four flashes. So it's exactly four hours past mid-day. Or, as I call it: four o'candle. [Sokka laughs. Cut to a frontal shot of the mechanist, pleased that Sokka is interested.] If you like that, wait till you see my finger-safe knife sharpener. [He holds up his left hand, revealing that three of the fingers are made of wood.] Only took me three tries to get it right. [He pulls off the three wooden fingers, and throws them into Sokka's hand.]","Four flashes. So it's exactly four hours past mid-day. Or, as I call it: four o'candle. If you like that, wait till you see my finger-safe knife sharpener. Only took me three tries to get it right.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3892,3892,Water,1,The Northern Air Temple,17,Sokka,[Horrified.] Aaah!,Aaah!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3893,3893,Water,1,The Northern Air Temple,17,Mechanist,[Pokes Sokka in the back with his one remaining finger and gestures for him to come.] Follow me! [Sokka runs after him.],Follow me!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3894,3894,Water,1,The Northern Air Temple,17,Teo,"Hey, Aang. I want to show you something.","Hey, Aang. I want to show you something.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3895,3895,Water,1,The Northern Air Temple,17,Scene Description,"Screen fades to black before reappearing with Katara, Teo and Aang walking inside a building.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3896,3896,Water,1,The Northern Air Temple,17,Aang,I just can't get over it. There's not a single thing that's the same.,I just can't get over it. There's not a single thing that's the same.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3897,3897,Water,1,The Northern Air Temple,17,Teo,I don't know about that. The temple might be different [Picks up hermit crab from the ground.] but the creatures that live here [Hands it to Katara.] are probably direct descendants of the ones who lived here a long time ago.,I don't know about that. The temple might be different but the creatures that live here are probably direct descendants of the ones who lived here a long time ago.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3898,3898,Water,1,The Northern Air Temple,17,Katara,[Pokes hermit crab.] You're right. They're kind of keepers of the temple's origins. [Katara hands it to Aang. It moves around in his hand and he smiles.],You're right. They're kind of keepers of the temple's origins.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3899,3899,Water,1,The Northern Air Temple,17,Teo,"Besides, there's one part of the temple that hasn't changed at all.","Besides, there's one part of the temple that hasn't changed at all.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3900,3900,Water,1,The Northern Air Temple,17,Scene Description,Screen fades slightly and reappears at a long hallway with airbending symbols through it. Shows all three looking at a door with an airbending contraption on it.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3901,3901,Water,1,The Northern Air Temple,17,Katara,"Hey, it's just like the one in the other temple!","Hey, it's just like the one in the other temple!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3902,3902,Water,1,The Northern Air Temple,17,Teo,"[Confidently, with a matter-of-fact tone.] Only an airbender can open it, so inside it's completely untouched. Just the way the monks left it. I've always wondered what it's like in there ...","Only an airbender can open it, so inside it's completely untouched. Just the way the monks left it. I've always wondered what it's like in there ...",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3903,3903,Water,1,The Northern Air Temple,17,Katara,"[She looks at him, as though slightly scared of his reaction. Her tone is gentle and questioning.] Aang?",Aang?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3904,3904,Water,1,The Northern Air Temple,17,Aang,[He turns away from the door and his friends.] I'm sorry. This is the last part of the temple that's the same as it was. I want it to stay that way.,I'm sorry. This is the last part of the temple that's the same as it was. I want it to stay that way.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3905,3905,Water,1,The Northern Air Temple,17,Teo,"[Somewhat disappointed, although he tries not to let it show.] I completely understand. I just wanted you to know that it's here.",I completely understand. I just wanted you to know that it's here.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3906,3906,Water,1,The Northern Air Temple,17,Aang,Thanks. [All three start to walk away.],Thanks.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3907,3907,Water,1,The Northern Air Temple,17,Scene Description,Screen cuts to Sokka and the mechanist walking down a dark stairway holding lanterns.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3908,3908,Water,1,The Northern Air Temple,17,Sokka,These lanterns are terrible. I can't see! [Opens the top of his lantern only to find them filled with fireflies.] Why would you want to use fireflies for light? [One flies out.],These lanterns are terrible. I can't see! Why would you want to use fireflies for light?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3909,3909,Water,1,The Northern Air Temple,17,Mechanist,Hey! Close that up! They'll get loose! [Sokka closes it.] Fireflies are a non-flammable light source. [Both begin to walk again.],Hey! Close that up! They'll get loose! Fireflies are a non-flammable light source.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3910,3910,Water,1,The Northern Air Temple,17,Scene Description,They continue for a while until they arrive at a wooden door.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3911,3911,Water,1,The Northern Air Temple,17,Mechanist,"Cover your nose [Both plug their noses.] and hold your breath. [The mechanist opens an eye slot in the door, both look inside a pitch-black room.]",Cover your nose and hold your breath.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3912,3912,Water,1,The Northern Air Temple,17,Sokka,"[Nasally, due to his nose being blocked.] Okay ... so you brought me all the way down here to see an empty room.",Okay ... so you brought me all the way down here to see an empty room.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3913,3913,Water,1,The Northern Air Temple,17,Mechanist,"[Closes eye slot.] Wrong. It's filled to the brim with natural gas. Came across it my first time here. Unfortunately, I was carrying a torch at the time. Nearly blew my self and the whole place even more sky high! Thought my eyebrows would never grow back. [Pans up to his eyebrows.] Anyway, there's a vital problem that needs solving. From time to time, we have gas leaks. And they're nearly impossible to find.","Wrong. It's filled to the brim with natural gas. Came across it my first time here. Unfortunately, I was carrying a torch at the time. Nearly blew my self and the whole place even more sky high! Thought my eyebrows would never grow back. Anyway, there's a vital problem that needs solving. From time to time, we have gas leaks. And they're nearly impossible to find.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3914,3914,Water,1,The Northern Air Temple,17,Sokka,"So, this place is an explosion waiting to happen.","So, this place is an explosion waiting to happen.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3915,3915,Water,1,The Northern Air Temple,17,Mechanist,"Yes, until I figure out how to locate something I can't see, hear, smell, or touch.","Yes, until I figure out how to locate something I can't see, hear, smell, or touch.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3916,3916,Water,1,The Northern Air Temple,17,Scene Description,"Cut to a exterior of temple with people flying in the sky. Aang, Katara and Teo are on the ground.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3917,3917,Water,1,The Northern Air Temple,17,Teo,The wind will carry you. It supports something inside you. Something even lighter than air. [Shows Katara holding a glider and standing at the edge of a building.] And that something takes over when you fly. [Katara puts down her glider and looks up at the other people flying.],The wind will carry you. It supports something inside you. Something even lighter than air. And that something takes over when you fly.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3918,3918,Water,1,The Northern Air Temple,17,Katara,[Nervously.] I've changed my mind. I think I was born without that something.,I've changed my mind. I think I was born without that something.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3919,3919,Water,1,The Northern Air Temple,17,Teo,[Laughs.] Impossible! Everybody has it!,Impossible! Everybody has it!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3920,3920,Water,1,The Northern Air Temple,17,Aang,Spirit.,Spirit.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3921,3921,Water,1,The Northern Air Temple,17,Teo,What?,What?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3922,3922,Water,1,The Northern Air Temple,17,Aang,Spirit. That's the something you're talking about.,Spirit. That's the something you're talking about.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3923,3923,Water,1,The Northern Air Temple,17,Teo,"[Thoughtfully.] Yeah, I suppose it is.","Yeah, I suppose it is.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3924,3924,Water,1,The Northern Air Temple,17,Scene Description,Shows Katara with the glider in her hands again.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3925,3925,Water,1,The Northern Air Temple,17,Teo,Are you ready?,Are you ready?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3926,3926,Water,1,The Northern Air Temple,17,Katara,"No! [Jumps off anyway.] Aaaaah! [Starts to fall down wards, but eventually starts to fly straight. Her scream peters off as she begins laughing.] I can't believe I'm flying!",No! Aaaaah! I can't believe I'm flying!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3927,3927,Water,1,The Northern Air Temple,17,Scene Description,Aang and Momo fly up beside her.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3928,3928,Water,1,The Northern Air Temple,17,Aang,Just make sure you keep your mouth closed so you don't swallow a bug! [Shows Momo flying by and eating a bug.],Just make sure you keep your mouth closed so you don't swallow a bug!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3929,3929,Water,1,The Northern Air Temple,17,Katara,"Teo was right about the air. All I had to do was trust it, let it carry me.","Teo was right about the air. All I had to do was trust it, let it carry me.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3930,3930,Water,1,The Northern Air Temple,17,Aang,"Even though Teo's not an airbender, he really does have the spirit of one! [Aang lands beside him on the building.] I've been thinking. If you want to see what's in that room, I'd be happy to open the door for you.","Even though Teo's not an airbender, he really does have the spirit of one! I've been thinking. If you want to see what's in that room, I'd be happy to open the door for you.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3931,3931,Water,1,The Northern Air Temple,17,Teo,Great!,Great!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3932,3932,Water,1,The Northern Air Temple,17,Katara,"Wait! [Katara flies by.] How do I land this thing? What if I land over a-ack-ack-bleck! Bug! Bug! Ack, that was a bug!","Wait! How do I land this thing? What if I land over a-ack-ack-bleck! Bug! Bug! Ack, that was a bug!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3933,3933,Water,1,The Northern Air Temple,17,Scene Description,"Back to Sokka and the mechanist. The mechanist is drawing on a large piece of paper and Sokka is looking through shelves. Sokka drops various things, including seven scrolls, four pieces of paper, a hard-boiled egg and a model of a hot air balloon.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3934,3934,Water,1,The Northern Air Temple,17,Mechanist,"I said don't touch anything! [Comes over to help Sokka pick things up.] Oh, don't worry. That experiment's old, [Referring to the hot air balloon.] and that egg was just part of last week's lunch.","I said don't touch anything! Oh, don't worry. That experiment's old, and that egg was just part of last week's lunch.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3935,3935,Water,1,The Northern Air Temple,17,Sokka,[He sniffs the air before wincing.] Ugh! Week old egg smell!,Ugh! Week old egg smell!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3936,3936,Water,1,The Northern Air Temple,17,Mechanist,"Quick, find that egg! [Both crawl around the floor looking for it.]","Quick, find that egg!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3937,3937,Water,1,The Northern Air Temple,17,Scene Description,"Shows Aang, Teo and Katara at the door of the airbending room.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3938,3938,Water,1,The Northern Air Temple,17,Teo,I can't believe I'm finally going to see what's inside!,I can't believe I'm finally going to see what's inside!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3939,3939,Water,1,The Northern Air Temple,17,Scene Description,"Aang airbends into the door's contraption, flipping three dials so air comes out of them. Cut to Sokka and the mechanist searching for the egg.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3940,3940,Water,1,The Northern Air Temple,17,Sokka,How can something so small that you can't even see it make such a big stink!?,How can something so small that you can't even see it make such a big stink!?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3941,3941,Water,1,The Northern Air Temple,17,Scene Description,The mechanist looks up from searching.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3942,3942,Water,1,The Northern Air Temple,17,Mechanist,That's the solution to our problem!,That's the solution to our problem!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3943,3943,Water,1,The Northern Air Temple,17,Sokka,Yeah ... [Both turn toward each other.] if we put a whole mess of rotten eggs in the cellar where the gas seeps up ...,Yeah ... if we put a whole mess of rotten eggs in the cellar where the gas seeps up ...,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3944,3944,Water,1,The Northern Air Temple,17,Mechanist,... The gas will mix with the smell of rotten eggs!,... The gas will mix with the smell of rotten eggs!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3945,3945,Water,1,The Northern Air Temple,17,Sokka,"Then, if there's a leak ...","Then, if there's a leak ...",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3946,3946,Water,1,The Northern Air Temple,17,Mechanist,"... You smell rotten eggs! Then, you just follow your nose to the place where the smell is coming from ...","... You smell rotten eggs! Then, you just follow your nose to the place where the smell is coming from ...",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3947,3947,Water,1,The Northern Air Temple,17,Sokka,And plug up the hole where the gas is escaping!,And plug up the hole where the gas is escaping!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3948,3948,Water,1,The Northern Air Temple,17,Scene Description,Both throw up their hands.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3949,3949,Water,1,The Northern Air Temple,17,Both,You're a genius! [Bell rings on one of his desks.],You're a genius!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3950,3950,Water,1,The Northern Air Temple,17,Mechanist,Something's wrong. [Stands up.] I've go to go! [Runs out the door and Sokka follows.],Something's wrong. I've go to go!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3951,3951,Water,1,The Northern Air Temple,17,Scene Description,"Shows Aang, Teo, and Katara walking into the large room. It's filled with Fire Nation weapons, tools and a red hot air balloon with the Fire Nation insignia on it.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3952,3952,Water,1,The Northern Air Temple,17,Aang,This is a nightmare.,This is a nightmare.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3953,3953,Water,1,The Northern Air Temple,17,Mechanist,[Walks in with Sokka behind him.] You don't understand!,You don't understand!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3954,3954,Water,1,The Northern Air Temple,17,Aang,[Accusingly.] You're making weapons for the Fire Nation!,You're making weapons for the Fire Nation!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3955,3955,Water,1,The Northern Air Temple,17,Sokka,[Angrily.] You make weapons for the Fire Nation?!,You make weapons for the Fire Nation?!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3956,3956,Water,1,The Northern Air Temple,17,Teo,Explain all this! Now!,Explain all this! Now!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3957,3957,Water,1,The Northern Air Temple,17,Mechanist,"[He is hesitant, but resigned as he begins to explain.] It was about a year after we moved here. Fire Nation soldiers found our settlement. You were too young to remember this, Teo. They were going to destroy everything! Burn it to the ground! I pleaded with them, I begged them to spare us! They asked what I had to offer. I offered ... my services. You must understand. I did this for you!","It was about a year after we moved here. Fire Nation soldiers found our settlement. You were too young to remember this, Teo. They were going to destroy everything! Burn it to the ground! I pleaded with them, I begged them to spare us! They asked what I had to offer. I offered ... my services. You must understand. I did this for you!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3958,3958,Water,1,The Northern Air Temple,17,Scene Description,"Teo looks away in shame and the mechanist leaves. The scene cuts to him in his workshop, placing two eggs with smiley faces in his hot air balloon model, along with a candle to make it float. He looks rather depressed. He lets go of the bottom and it starts to float. As this happens, the door opens, with Aang and Teo standing in the doorway.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3959,3959,Water,1,The Northern Air Temple,17,Aang,When are they coming?,When are they coming?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3960,3960,Water,1,The Northern Air Temple,17,Mechanist,Soon. [Candle pops once.] Very soon.,Soon. Very soon.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3961,3961,Water,1,The Northern Air Temple,17,Aang,You can't give them more weapons.,You can't give them more weapons.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3962,3962,Water,1,The Northern Air Temple,17,Mechanist,"If I don't give them what they want, they will destroy this place! [The model of the hot air balloon catches fire and crashes. The mechanist puts the fire out with a cloth.]","If I don't give them what they want, they will destroy this place!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3963,3963,Water,1,The Northern Air Temple,17,Teo,How can I be proud of you when your inventions are being used for murder?,How can I be proud of you when your inventions are being used for murder?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3964,3964,Water,1,The Northern Air Temple,17,Mechanist,I need some time to think. [Bell rings on his desk.] You need to leave! Go!,I need some time to think. You need to leave! Go!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3965,3965,Water,1,The Northern Air Temple,17,Teo,We're not leaving!,We're not leaving!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3966,3966,Water,1,The Northern Air Temple,17,Mechanist,"Then hide! Quickly! [They hide behind some of his inventions. the mechanist pulls a rope that opens a trapdoor, and a war minister from the Fire Nation is lifted into the room.]",Then hide! Quickly!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3967,3967,Water,1,The Northern Air Temple,17,Qin,You know better than to keep me waiting. Give me what you owe us so we can be on our way. [The mechanist looks down.] Well? Is there a problem?,You know better than to keep me waiting. Give me what you owe us so we can be on our way. Well? Is there a problem?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3968,3968,Water,1,The Northern Air Temple,17,Mechanist,"[Hurredly.] No, right this way. [Gestures toward the door.]","No, right this way.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3969,3969,Water,1,The Northern Air Temple,17,Scene Description,"Qin is about to go out the door, but Aang airbends it shut. He jumps in front of the door.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3970,3970,Water,1,The Northern Air Temple,17,Aang,The deal's off.,The deal's off.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3971,3971,Water,1,The Northern Air Temple,17,Qin,The Avatar ...,The Avatar ...,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3972,3972,Water,1,The Northern Air Temple,17,Mechanist,"Aang, don't get involved!","Aang, don't get involved!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3973,3973,Water,1,The Northern Air Temple,17,Qin,"If I don't get what I came here for, the Fire Nation will burn this place to rubble!","If I don't get what I came here for, the Fire Nation will burn this place to rubble!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3974,3974,Water,1,The Northern Air Temple,17,Aang,Get out of here! [Slaps him in the face with an air swipe; continues off screen.] You're leaving empty-handed!,Get out of here! You're leaving empty-handed!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3975,3975,Water,1,The Northern Air Temple,17,Qin,Then the destruction of this temple [Pointing at Aang.] will be on your head! [He leaves through the trap door and Aang airbends it shut.],Then the destruction of this temple will be on your head!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3976,3976,Water,1,The Northern Air Temple,17,Scene Description,The four children are now talking on the tall bridge.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3977,3977,Water,1,The Northern Air Temple,17,Teo,This is bad.,This is bad.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3978,3978,Water,1,The Northern Air Temple,17,Sokka,Very bad!,Very bad!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3979,3979,Water,1,The Northern Air Temple,17,Katara,"Aang, what are we going to do? How can we possibly keep them all away?","Aang, what are we going to do? How can we possibly keep them all away?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3980,3980,Water,1,The Northern Air Temple,17,Aang,I'll tell you how. We have something they don't. [Points to the sky.] Air power. We control the sky. That's something the Fire Nation can't do. We can win!,I'll tell you how. We have something they don't. Air power. We control the sky. That's something the Fire Nation can't do. We can win!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3981,3981,Water,1,The Northern Air Temple,17,Mechanist,I want to help. [He appears at the door.],I want to help.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3982,3982,Water,1,The Northern Air Temple,17,Aang,Good. We'll need it.,Good. We'll need it.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3983,3983,Water,1,The Northern Air Temple,17,Scene Description,"Cuts to an aerial shot of the temple, before cutting to the mechanist's workshop. He is standing behind a table with Sokka. The model hot air balloon, a few plans, and a candle are resting on the table. Aang, Katara, and Teo are on the other side, surrounded by other colonists.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3984,3984,Water,1,The Northern Air Temple,17,Mechanist,"We finally got the war balloon working, thanks to Sokka. This boy's a genius!","We finally got the war balloon working, thanks to Sokka. This boy's a genius!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3985,3985,Water,1,The Northern Air Temple,17,Sokka,Thank you. You're a genius!,Thank you. You're a genius!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3986,3986,Water,1,The Northern Air Temple,17,Mechanist,Thank you! [Katara and Aang exchange unamused glances.],Thank you!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3987,3987,Water,1,The Northern Air Temple,17,Sokka,"See, the problem with the old war balloon was you could get it air-borne, [Places the candle in the model.] but once it did, it just kept going. [He pulls a string connected to the model, putting it on the table.] You could put a hole in the top, but then all the hot air would escape. So the question became, how do you keep a lid on hot air?","See, the problem with the old war balloon was you could get it air-borne, but once it did, it just kept going. You could put a hole in the top, but then all the hot air would escape. So the question became, how do you keep a lid on hot air?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3988,3988,Water,1,The Northern Air Temple,17,Katara,"Ugh, if only we knew. [Teo, Katara, and Aang laugh.]","Ugh, if only we knew.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3989,3989,Water,1,The Northern Air Temple,17,Sokka,"A lid is actually the answer. If you control the hot air, you control the war balloon.","A lid is actually the answer. If you control the hot air, you control the war balloon.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3990,3990,Water,1,The Northern Air Temple,17,Katara,"Huh, that's actually pretty smart.","Huh, that's actually pretty smart.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3991,3991,Water,1,The Northern Air Temple,17,Sokka,"Okay, we've got four kinds of bombs: [He begins listing them off on his fingers.] smoke, slime, fire, and ...","Okay, we've got four kinds of bombs: smoke, slime, fire, and ...",Elizabeth Welch Ehasz,Dave Filoni,8.1 +3992,3992,Water,1,The Northern Air Temple,17,Mechanist,Stink! Never underestimate the power of stink!,Stink! Never underestimate the power of stink!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3993,3993,Water,1,The Northern Air Temple,17,Scene Description,"Cut to exterior shot of temple. Everyone is outside, watching anxiously for any sign of the Fire Nation.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3994,3994,Water,1,The Northern Air Temple,17,Girl,[Looking over a ledge.] They're coming!,They're coming!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3995,3995,Water,1,The Northern Air Temple,17,Teo,Are we ready?,Are we ready?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3996,3996,Water,1,The Northern Air Temple,17,Katara,[Worriedly.] Yes. But where's Sokka with the war balloon?,Yes. But where's Sokka with the war balloon?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3997,3997,Water,1,The Northern Air Temple,17,Aang,[Jumping off Appa.] We'll have to start without it.,We'll have to start without it.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3998,3998,Water,1,The Northern Air Temple,17,Scene Description,Cut to shot of people readying their flying machines for take off. They begin the assault as their gliders fly off into the air. Cheers from the crowd below. Cut to Fire Nation troops climbing the cliff path. They are attacked by the various bombs thrown at them. Cut back to Aang and the other flyers going down through the clouds. The gliders fly over the Fire Nation troops dropping bombs below. Cut to Fire Nation troops on the cliff edge.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +3999,3999,Water,1,The Northern Air Temple,17,Fire Nation soldier,Take them out of the sky. Now!,Take them out of the sky. Now!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4000,4000,Water,1,The Northern Air Temple,17,Scene Description,"Cut to more gliders dropping bombs. Fire Nation soldiers cough and some fall off the cliff. Cut to Aang jumping onto an air scooter, moving across a ledge, causing snow to fall onto soldiers below before jumping back onto his glider. Cut to the soldiers retreating.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4001,4001,Water,1,The Northern Air Temple,17,Aang,We've got them on the run! We need more slime!,We've got them on the run! We need more slime!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4002,4002,Water,1,The Northern Air Temple,17,Scene Description,Cut to gliders flying up through the clouds to Appa and receiving more bombs from Katara. Hooks fly through the clouds nearly hitting Appa and latching onto the cliff. Cut to tanks scaling the cliffs via the chains. Aang sees this and manages to remove one hook. The tank falls before sending out another hook. Cut to distance shot of temple with tanks closing in. Gliders continue to fly dropping bombs in an attempt to slow the tanks down. Many cuts to interiors of tanks showing soldiers firebending out of them. Aang lands and airbends the tanks away. The tanks flip over and readjust themselves before continuing on. Cut to Katara and Teo in sky.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4003,4003,Water,1,The Northern Air Temple,17,Katara,Those things are unstoppable!,Those things are unstoppable!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4004,4004,Water,1,The Northern Air Temple,17,Teo,"[Thoughtfully, trying to remember what he knew.] I think I know how they work. I remember my dad tinkering with the counterbalancing system. Something to do with water. Works great, huh?","I think I know how they work. I remember my dad tinkering with the counterbalancing system. Something to do with water. Works great, huh?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4005,4005,Water,1,The Northern Air Temple,17,Katara,Water? Can you get me close to one?,Water? Can you get me close to one?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4006,4006,Water,1,The Northern Air Temple,17,Teo,No problem!,No problem!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4007,4007,Water,1,The Northern Air Temple,17,Scene Description,"Cut to aerial view of Aang fending off firebending blasts. Cut to Katara landing next to him. Katara freezes multiple tanks with waterbending. Camera zooms out to show more tanks. Aang defends Katara from fire blasts before Appa drops in front and knocks the tanks away. Cut to behind Appa showing Katara and Aang climbing up his tail. Cut to Aang and Katara looking down at the oncoming force. Cut to the temple balcony with Katara, Aang and Teo.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4008,4008,Water,1,The Northern Air Temple,17,Teo,We're out of bombs!,We're out of bombs!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4009,4009,Water,1,The Northern Air Temple,17,Katara,Come on Sokka. [Side-view of Katara.] Where's that war balloon?,Come on Sokka. Where's that war balloon?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4010,4010,Water,1,The Northern Air Temple,17,Scene Description,The war balloon appears behind Katara. Cut to wide-view of temple balcony with war balloon in background. Cut to view of soldiers and tanks advancing forward with war balloon above. Cut to view of Sokka and the mechanist on the war balloon.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4011,4011,Water,1,The Northern Air Temple,17,Sokka,"Hey, why aren't they shooting at us?","Hey, why aren't they shooting at us?",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4012,4012,Water,1,The Northern Air Temple,17,Mechanist,The insignia! [Close-up of Fire Nation insignia.] They think we're on their side.,The insignia! They think we're on their side.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4013,4013,Water,1,The Northern Air Temple,17,Sokka,[Close-up of Sokka on war balloon.] Then I guess they won't see this coming. [Slices rope attached to a large bomb.],Then I guess they won't see this coming.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4014,4014,Water,1,The Northern Air Temple,17,Mechanist,[Cut to view of both balloon and advancing army.] Bombs away!,Bombs away!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4015,4015,Water,1,The Northern Air Temple,17,Scene Description,Cut to ground view of soldiers being washed away by slime. Cut to above war balloon showing Sokka cut another rope. Cut back to view of soldiers and balloon showing the bombs stopping some of soldiers and tanks. Cut to shot under balloon showing Sokka and the mechanist looking down.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4016,4016,Water,1,The Northern Air Temple,17,Sokka,"Oh no, that was the last one. [Cut to tanks beginning to scale the cliffs.]","Oh no, that was the last one.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4017,4017,Water,1,The Northern Air Temple,17,Mechanist,[Cut back to Sokka and the mechanist.] Wait a second. You smell that?,Wait a second. You smell that?,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4018,4018,Water,1,The Northern Air Temple,17,Sokka,Rotten eggs! [Cut to a view of the balloon and a large crevice in the ground below.] There! That's were the gas is escaping.,Rotten eggs! There! That's were the gas is escaping.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4019,4019,Water,1,The Northern Air Temple,17,Scene Description,Cut to close-up of Sokka with the expression of having an idea. Cut to tanks scaling cliff side. Cut to Earth Kingdom civilians trying to knock the hooks away. Cut to Sokka and the mechanist on the balloon. Sokka is levering the engine away from the bottom of the balloon in an attempt to get it free.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4020,4020,Water,1,The Northern Air Temple,17,Mechanist,What are you doing? That's our fuel source.,What are you doing? That's our fuel source.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4021,4021,Water,1,The Northern Air Temple,17,Sokka,It's the only bomb we've got.,It's the only bomb we've got.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4022,4022,Water,1,The Northern Air Temple,17,Scene Description,"Cut to view below the balloon as the engine drops to the crevice below. Cut to exterior of temple as the army advances on the temple. Cut to a view of Katara, Aang and Teo looking down. Cut to Sokka and the mechanist on balloon. Cut to wide-view of the temple and the war balloon in distance. An explosion goes off and the temple is blocked from view. Cut to Sokka and the mechanist on war balloon, smoke covers the view. Cut to Katara, Aang and Teo with smoke again covering the view. Cut to wide shot of temple with smoke dissipating. Cut to chains hanging off the cliffs, no tanks in sight. Cut to balcony and view of cliffs below.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4023,4023,Water,1,The Northern Air Temple,17,Aang,Look! They're retreating! [Cheers from crowd.],Look! They're retreating!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4024,4024,Water,1,The Northern Air Temple,17,Sokka,[War balloon flies past.] We're going down!,We're going down!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4025,4025,Water,1,The Northern Air Temple,17,Katara,"[Cut to Aang and Katara on balcony.] No, Sokka! Hold on! [Aang jumps on his glider and flies toward them.]","No, Sokka! Hold on!",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4026,4026,Water,1,The Northern Air Temple,17,Scene Description,Cut to view of war balloon falling.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4027,4027,Water,1,The Northern Air Temple,17,Sokka,"[Cut to close-up of Sokka swinging his boomerang around with a rope attached, the mechanist behind him.] Get ready!",Get ready!,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4028,4028,Water,1,The Northern Air Temple,17,Scene Description,Cut to Aang flying toward them. Cut to behind the war balloon as Aang circles it. Sokka throws the boomerang toward Aang which latches onto his glider. Cut to Sokka and the mechanist being pulled out of the balloon and dragged away with the mechanist moaning in fright. Cut to show war balloon floating away. The scene ends and cuts to the temple.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4029,4029,Water,1,The Northern Air Temple,17,Aang,"You know what? [Cut to close-up panning shot of Sokka, Katara, Aang, Teo, and the mechanist.] I'm really glad you guys all live here now. [Cut to shot above Aang picking up a hermit crab.] I realized, it's like the hermit crab. [Cut to close-up of Aang's hands surrounding the hermit crab.] Maybe you weren't born here, but you found this empty shell and made it your home. And now you protect each other.","You know what? I'm really glad you guys all live here now. I realized, it's like the hermit crab. Maybe you weren't born here, but you found this empty shell and made it your home. And now you protect each other.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4030,4030,Water,1,The Northern Air Temple,17,Teo,"That means a lot, coming from you.","That means a lot, coming from you.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4031,4031,Water,1,The Northern Air Temple,17,Sokka,"[Cut to Aang, Sokka and Katara.] Aang you were right about air power. As long as we've got the skies, we'll have the Fire Nation on the run. [Cut to wide-view of temple grounds, crowd cheering.]","Aang you were right about air power. As long as we've got the skies, we'll have the Fire Nation on the run.",Elizabeth Welch Ehasz,Dave Filoni,8.1 +4032,4032,Water,1,The Northern Air Temple,17,Scene Description,"Cut to panning shot of the people, with the mechanist turning away from the crowd and looking down as though sad. Cut to snowy trees in a forest below the temple. The Fire Nation capturing and figuring out how to use the war balloon.",NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4033,4033,Water,1,The Northern Air Temple,17,Qin,"[Cut to Qin, surrounded by two other ministers.] This defeat is the gateway to many victories.",This defeat is the gateway to many victories.,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4034,4034,Water,1,The Northern Air Temple,17,Scene Description,Cut to behind the Fire Nation soldiers as they begin inflating the balloon up with firebending. Cut to close-up of Fire Nation insignia.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4035,4035,Water,1,The Northern Air Temple,17,Scene Description,Scene fades to credits.,NA,Elizabeth Welch Ehasz,Dave Filoni,8.1 +4036,4036,Water,1,The Waterbending Master,18,Scene Description,"The episode opens to show a koala otter calmly floating on its back on the water, purring slightly. Noticing something approach to its right, it turns its head, chirps, and dives under water as a large shadow passes it by. It turns out to be Appa flying overhead.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4037,4037,Water,1,The Waterbending Master,18,Sokka,"[Hanging lazily over the back of Appa's saddle; grumpily.] I'm not one to complain, [Side-view shows Appa flying just above the water.] but can't Appa fly any higher?","I'm not one to complain, but can't Appa fly any higher?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4038,4038,Water,1,The Waterbending Master,18,Scene Description,"Sokka's words barely left his lips as Appa loses more altitude and his paws drag through the water momentarily, before rising slightly again. Cut to a shot from Appa's saddle, showing a bored Katara popping herself up on her elbows, staring into nothingness in front of her, and a peeved Aang looking back from atop Appa's head.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4039,4039,Water,1,The Waterbending Master,18,Aang,"[Irritably.] I have an idea! Why don't we all get on your [Points angrily at Sokka; Katara briefly looks at Aang, but resumes her stare in front of her.] back and you could fly us to the North Pole?!",I have an idea! Why don't we all get on your back and you could fly us to the North Pole?!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4040,4040,Water,1,The Waterbending Master,18,Sokka,"[Back-view of Sokka looking over his shoulder; sarcastically.] I'd love to. [Points to his back.] Climb on everyone, [Shakes his rear.] Sokka's ready for take off.","I'd love to. Climb on everyone, Sokka's ready for take off.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4041,4041,Water,1,The Waterbending Master,18,Scene Description,"A chirping Momo hops on his back, making Sokka shoot an angry glare at the animal. Cut back to the shot of Katara and Aang, with the latter still staring angrily at Sokka.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4042,4042,Water,1,The Waterbending Master,18,Katara,"[Waving her hands up and down while shifting looks between Aang and Sokka.] Look, we're all just a little tired and cranky because we've been flying for two days straight.","Look, we're all just a little tired and cranky because we've been flying for two days straight.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4043,4043,Water,1,The Waterbending Master,18,Sokka,"[Frontal shot, Momo is now on his lap; annoyed.] And for what? We can't even find the Northern Water Tribe. [Cut to a wide side-shot, revealing Appa floating along a vast ocean of only water and ice.] There's nothing up here.",And for what? We can't even find the Northern Water Tribe. There's nothing up here.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4044,4044,Water,1,The Waterbending Master,18,Scene Description,"Cut to Katara and Aang, with the former having laid down her head in boredom, letting it rest on her hands. She looks up in wonder when a slushing sound can be heard. Cut to a frontal shot of Appa, while the water in front of him suddenly rises and solidifies to ice spikes. Cut to a frontal shot of Aang screaming in fright, his eyes wide in horror, as he violently yanks the reins to this right in an attempt to avoid the sudden obstacle. Cut to a side-view of a growling and turning Appa. Cut to the siblings yelling in fright as they hold on for dear life to the sides of the saddle. Cut to a back-shot of a swerving Appa, who suddenly shoots up as another ice spike manifests right in from of him. A close-up shot of his underside shows that he was not quick enough, and part of the ice attaches itself to his leg, freezing instantly. His momentum causes the ice to break, but he is thrown off balance and catapulted away. Frontal shot of Katara and Sokka who loudly scream in fright. Cut to a wider shot of Appa spiraling toward the camera, before switching to an overview shot of him landing into the water, throwing it up high. As he turns upright again, the water around him instantly freezes, and he is locked in place. Cut to the surrounding ice spikes from which Water Tribe boats appear, each carrying several waterbenders, surrounding the team. Cut to a surprised looking Katara and an alarmed looking Sokka who is reaching for his boomerang atop the saddle.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4045,4045,Water,1,The Waterbending Master,18,Katara,They're waterbenders! [Happily.] We found the Water Tribe!,They're waterbenders! We found the Water Tribe!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4046,4046,Water,1,The Waterbending Master,18,Scene Description,"Cut to a more far-off shot of the scene, revealing Appa to be frozen in the water, with six Water Tribe boats surrounding him. +The scene switches to a Fire Navy base in the Fire Nation harbor. The camera cuts to inside a guarded tent, where Zhao is standing before a map of the Avatar World.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4047,4047,Water,1,The Waterbending Master,18,Zhao,He's heading north. The Northern Water Tribe. The Avatar needs to master waterbending. He's looking for a teacher.,He's heading north. The Northern Water Tribe. The Avatar needs to master waterbending. He's looking for a teacher.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4048,4048,Water,1,The Waterbending Master,18,Li,[Impatiently.] Then what are we waiting for? Let's go get him!,Then what are we waiting for? Let's go get him!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4049,4049,Water,1,The Waterbending Master,18,Zhao,"Patience, Captain Li. This isn't some little earth village we can just march into. The Water Tribe is a great nation. There's a reason they've survived a hundred years of war. The frozen tundra is treacherous, the landscape itself is an icy fortress. We'll need a massive invasion force.","Patience, Captain Li. This isn't some little earth village we can just march into. The Water Tribe is a great nation. There's a reason they've survived a hundred years of war. The frozen tundra is treacherous, the landscape itself is an icy fortress. We'll need a massive invasion force.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4050,4050,Water,1,The Waterbending Master,18,Scene Description,The scene changes to the North Pole where the group is being escorted to the Northern Water Tribe. The magnificent wall of the city comes into view much to everyone's amazement.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4051,4051,Water,1,The Waterbending Master,18,Aang,[Pointing excitedly.] There it is!,There it is!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4052,4052,Water,1,The Waterbending Master,18,Katara,[In awe.] The Northern Water Tribe.,The Northern Water Tribe.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4053,4053,Water,1,The Waterbending Master,18,Sokka,[Surprised.] We're finally here.,We're finally here.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4054,4054,Water,1,The Waterbending Master,18,Scene Description,"A portion of the icy wall is lowered, allowing them to enter into the city. Canal workers use waterbending to transport the group into the city.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4055,4055,Water,1,The Waterbending Master,18,Katara,[Fascinated.] I can't believe how many waterbenders live up here!,I can't believe how many waterbenders live up here!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4056,4056,Water,1,The Waterbending Master,18,Aang,"[To Katara.] We'll find a master to teach us, no problem.","We'll find a master to teach us, no problem.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4057,4057,Water,1,The Waterbending Master,18,Scene Description,"The team passes through the channels of the city, catching the attention of several civilians who run over to spectate them. Aang waves happily at the people. As they continue their trek inward, Sokka notices a young lady going by on a boat, capturing his attention. He blushes at the sight of her and leaps onto Appa's tail as she pulls away from view.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4058,4058,Water,1,The Waterbending Master,18,Katara,This place is beautiful.,This place is beautiful.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4059,4059,Water,1,The Waterbending Master,18,Sokka,Yeah ... she is ...,Yeah ... she is ...,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4060,4060,Water,1,The Waterbending Master,18,Scene Description,"The scene changes to nightfall, where Zuko's ship is docked in a port. Members of the crew have gathered for music night on the ship. Lieutenant Jee plays a lute as Iroh sings. Several other crew members play instruments or dance.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4061,4061,Water,1,The Waterbending Master,18,Iroh,"[Singing.] Winter, spring ... Summer, and fall ... Winter, spring ... Summer, and fall ... Four seasons ... four loves ... Four seasons ... for love.","Winter, spring ... Summer, and fall ... Winter, spring ... Summer, and fall ... Four seasons ... four loves ... Four seasons ... for love.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4062,4062,Water,1,The Waterbending Master,18,Scene Description,"The music stops as they notice Admiral Zhao boarding the ship, along with two soldiers. The crew looks in surprise at the admiral. A high-pitched chord emits from the lute. The scene switches back to the Northern Water Tribe, where Team Avatar is being honored with a feast, hosted by the tribe's chief. Men play drums and a giant crab is set in a pool of water.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4063,4063,Water,1,The Waterbending Master,18,Arnook,"Tonight, we celebrate the arrival of our brother and sister from the Southern Tribe. And they have brought with them, someone very special, someone whom many of us believed disappeared from the world until now ... the Avatar! [Crowd applauds and cheers.] We also celebrate my daughter's sixteenth birthday. Princess Yue is now of marrying age!","Tonight, we celebrate the arrival of our brother and sister from the Southern Tribe. And they have brought with them, someone very special, someone whom many of us believed disappeared from the world until now ... the Avatar! We also celebrate my daughter's sixteenth birthday. Princess Yue is now of marrying age!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4064,4064,Water,1,The Waterbending Master,18,Yue,"Thank you, Father. May the great Ocean and Moon Spirits watch over us during these troubled times!","Thank you, Father. May the great Ocean and Moon Spirits watch over us during these troubled times!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4065,4065,Water,1,The Waterbending Master,18,Arnook,"Now, Master Pakku and his students will perform!","Now, Master Pakku and his students will perform!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4066,4066,Water,1,The Waterbending Master,18,Scene Description,"Pakku and two students bend significant blobs of water, captivating Aang and Katara. They merge the three blobs into one stream, bending it around each other. Yue approaches Sokka.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4067,4067,Water,1,The Waterbending Master,18,Sokka,"Hi there. Sokka, Southern Water Tribe.","Hi there. Sokka, Southern Water Tribe.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4068,4068,Water,1,The Waterbending Master,18,Yue,[Smiling and bowing slightly.] Very nice to meet you. [They nervously share an awkward silence for a moment.],Very nice to meet you.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4069,4069,Water,1,The Waterbending Master,18,Sokka,"[Nervously.] So ... uhhh ... you're a princess, huh? [She nods and smiles.] You know, back in my tribe, I'm kind of like a prince, myself. [Shot pans left to reveal Katara.]","So ... uhhh ... you're a princess, huh? You know, back in my tribe, I'm kind of like a prince, myself.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4070,4070,Water,1,The Waterbending Master,18,Katara,"[Hopping in on the conversation; teasingly.] Ha, prince of what?","Ha, prince of what?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4071,4071,Water,1,The Waterbending Master,18,Sokka,A lot of things! Do you mind? I'm trying to have a conversation here.,A lot of things! Do you mind? I'm trying to have a conversation here.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4072,4072,Water,1,The Waterbending Master,18,Katara,"[Sarcastically.] My apologies, Prince Sokka.","My apologies, Prince Sokka.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4073,4073,Water,1,The Waterbending Master,18,Sokka,"So, it looks like I'm going to be in town for a while. I'm thinking ... maybe we could ... do an activity, together?","So, it looks like I'm going to be in town for a while. I'm thinking ... maybe we could ... do an activity, together?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4074,4074,Water,1,The Waterbending Master,18,Yue,[Slightly confused; laughs.] Do an activity?,Do an activity?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4075,4075,Water,1,The Waterbending Master,18,Scene Description,"Embarrassed while sweating, Sokka stuffs food in his mouth. Screens widens to the left to show Katara clearly enjoying her brother's attempt at courting.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4076,4076,Water,1,The Waterbending Master,18,Katara,Very smooth ...,Very smooth ...,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4077,4077,Water,1,The Waterbending Master,18,Scene Description,"Cut to a long shot of the plaza fountain. In front of it stand the Chief, Master Pakku and Aang. Arnook and Aang go to Pakku.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4078,4078,Water,1,The Waterbending Master,18,Arnook,"Master Pakku, meet your newest student, the Avatar. [Aang bows.]","Master Pakku, meet your newest student, the Avatar.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4079,4079,Water,1,The Waterbending Master,18,Pakku,"Just because you're destined to save the world, don't expect any special treatment.","Just because you're destined to save the world, don't expect any special treatment.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4080,4080,Water,1,The Waterbending Master,18,Aang,My friend and I can't wait to start training with you! After we relax for a couple of days.,My friend and I can't wait to start training with you! After we relax for a couple of days.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4081,4081,Water,1,The Waterbending Master,18,Pakku,"If you want to relax, then I suggest visiting a tropical island. If not, I'll see you both at sunrise. Good night.","If you want to relax, then I suggest visiting a tropical island. If not, I'll see you both at sunrise. Good night.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4082,4082,Water,1,The Waterbending Master,18,Scene Description,Back on Zuko's ship. Iroh enters Zuko's room.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4083,4083,Water,1,The Waterbending Master,18,Zuko,"For the last time, I'm not playing the tsungi horn!","For the last time, I'm not playing the tsungi horn!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4084,4084,Water,1,The Waterbending Master,18,Iroh,"No, it's about our plans. There's a bit of a problem.","No, it's about our plans. There's a bit of a problem.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4085,4085,Water,1,The Waterbending Master,18,Scene Description,Zhao enters.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4086,4086,Water,1,The Waterbending Master,18,Zhao,I'm taking your crew.,I'm taking your crew.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4087,4087,Water,1,The Waterbending Master,18,Zuko,[Cut to a shocked Zuko.] What?! [Turns around to face Zhao.],What?!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4088,4088,Water,1,The Waterbending Master,18,Zhao,I've recruited them for a little expedition to the North Pole.,I've recruited them for a little expedition to the North Pole.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4089,4089,Water,1,The Waterbending Master,18,Zuko,"Uncle, is that true?","Uncle, is that true?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4090,4090,Water,1,The Waterbending Master,18,Iroh,I'm afraid so. He's taking everyone ... [Putting his arm over his face in woe.] even the cook.,I'm afraid so. He's taking everyone ... even the cook.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4091,4091,Water,1,The Waterbending Master,18,Zhao,Sorry you won't be there to watch me capture the Avatar. But I can't have you getting in my way again.,Sorry you won't be there to watch me capture the Avatar. But I can't have you getting in my way again.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4092,4092,Water,1,The Waterbending Master,18,Iroh,"[Cuts to a furious Zuko. Zuko charges at Zhao in anger, but Iroh cuts him off.] No!",No!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4093,4093,Water,1,The Waterbending Master,18,Scene Description,"Zhao notices a pair of swords on the wall. Cut to a close-up of Zhao's face, swollen in anger as he recognizes the blades. He flashes back to the Rescue in Pohuai Stronghold, where the same swords were wielded by the previously-unknown Blue Spirit. He takes one off the wall; cut to Zuko's face, his eyes wide and mouth open, clearly recognizing the danger he is in. Iroh, visible over Zuko's shoulder, does not. Cut back to Zhao, who begins practicing with the sword he has removed from the wall.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4094,4094,Water,1,The Waterbending Master,18,Zhao,"I didn't know you were skilled with broadswords, Prince Zuko.","I didn't know you were skilled with broadswords, Prince Zuko.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4095,4095,Water,1,The Waterbending Master,18,Zuko,I'm not. They're antiques. Just decorative.,I'm not. They're antiques. Just decorative.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4096,4096,Water,1,The Waterbending Master,18,Zhao,"Have you heard of the Blue Spirit, General Iroh?","Have you heard of the Blue Spirit, General Iroh?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4097,4097,Water,1,The Waterbending Master,18,Iroh,Just rumors. I don't think he is real.,Just rumors. I don't think he is real.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4098,4098,Water,1,The Waterbending Master,18,Zhao,"He's real, all right. [He hands the broad sword to Iroh.] He's a criminal, and an enemy of the Fire Nation. But I have a feeling justice will catch up with him soon. [Zhao moves to exit the cabin.] General Iroh, the offer to join my mission still stands ... if you change your mind.","He's real, all right. He's a criminal, and an enemy of the Fire Nation. But I have a feeling justice will catch up with him soon. General Iroh, the offer to join my mission still stands ... if you change your mind.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4099,4099,Water,1,The Waterbending Master,18,Scene Description,"The next morning, at the Northern Water Tribe.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4100,4100,Water,1,The Waterbending Master,18,Katara,[Excitedly.] I've waited for this day my whole life. I finally get to learn from a real waterbending master!,I've waited for this day my whole life. I finally get to learn from a real waterbending master!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4101,4101,Water,1,The Waterbending Master,18,Scene Description,Pakku is bending a stream of water.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4102,4102,Water,1,The Waterbending Master,18,Aang,"Good morning, Master Pakku!","Good morning, Master Pakku!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4103,4103,Water,1,The Waterbending Master,18,Pakku,"[Drops the water, and speaks in an annoyed tone.] No, please, march right in. I'm not concentrating or anything.","No, please, march right in. I'm not concentrating or anything.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4104,4104,Water,1,The Waterbending Master,18,Aang,"Uhhh ... This is my friend, Katara. The one I told you about?","Uhhh ... This is my friend, Katara. The one I told you about?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4105,4105,Water,1,The Waterbending Master,18,Pakku,"I'm sorry, I think there's been a misunderstanding. You didn't tell me your friend was a girl. In our tribe, it is forbidden for women to learn waterbending.","I'm sorry, I think there's been a misunderstanding. You didn't tell me your friend was a girl. In our tribe, it is forbidden for women to learn waterbending.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4106,4106,Water,1,The Waterbending Master,18,Scene Description,"Cut to a shot panning up Katara's body, her face clearly reflecting the anger she feels. +Cut to a long, overhead shot of the Northern Water Tribe city, looking back from the main wall to the citadel. Cut back to a close up of Katara.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4107,4107,Water,1,The Waterbending Master,18,Katara,[Angrily.] What do you mean you won't teach me? I didn't travel across the entire world so you could tell me no!,What do you mean you won't teach me? I didn't travel across the entire world so you could tell me no!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4108,4108,Water,1,The Waterbending Master,18,Pakku,No.,No.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4109,4109,Water,1,The Waterbending Master,18,Katara,But there must be other female waterbenders in your tribe!,But there must be other female waterbenders in your tribe!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4110,4110,Water,1,The Waterbending Master,18,Pakku,"Here, the women learn from Yugoda to use their waterbending to heal. I'm sure she would be happy to take you as her student, despite your bad attitude.","Here, the women learn from Yugoda to use their waterbending to heal. I'm sure she would be happy to take you as her student, despite your bad attitude.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4111,4111,Water,1,The Waterbending Master,18,Katara,"I don't want to heal, I want to fight!","I don't want to heal, I want to fight!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4112,4112,Water,1,The Waterbending Master,18,Pakku,"I can see that. But our tribe has customs, rules.","I can see that. But our tribe has customs, rules.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4113,4113,Water,1,The Waterbending Master,18,Katara,"[Furious.] Well, your rules stink!","Well, your rules stink!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4114,4114,Water,1,The Waterbending Master,18,Aang,"[Also just as angry.] Yeah, they're not fair! If you won't teach Katara, then ...","Yeah, they're not fair! If you won't teach Katara, then ...",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4115,4115,Water,1,The Waterbending Master,18,Pakku,Then what?,Then what?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4116,4116,Water,1,The Waterbending Master,18,Aang,Then I won't learn from you!,Then I won't learn from you!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4117,4117,Water,1,The Waterbending Master,18,Pakku,"Well, have fun teaching yourself! I'm sure you'll do a great job.","Well, have fun teaching yourself! I'm sure you'll do a great job.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4118,4118,Water,1,The Waterbending Master,18,Katara,"Wait! Aang didn't mean that! [Goes to Aang.] You can't risk your training for me. You have to learn from Master Pakku, even if he is a big jerk.","Wait! Aang didn't mean that! You can't risk your training for me. You have to learn from Master Pakku, even if he is a big jerk.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4119,4119,Water,1,The Waterbending Master,18,Scene Description,Aang nods. Katara exits.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4120,4120,Water,1,The Waterbending Master,18,Pakku,"Why don't we get started, then? [Aang gets hit with a water blast from him.]","Why don't we get started, then?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4121,4121,Water,1,The Waterbending Master,18,Scene Description,In another part of the city. Sokka catches up with Princess Yue.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4122,4122,Water,1,The Waterbending Master,18,Sokka,"Princess Yue, good morning! How about that picnic last night? Boy, your dad sure does know how to throw a party.","Princess Yue, good morning! How about that picnic last night? Boy, your dad sure does know how to throw a party.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4123,4123,Water,1,The Waterbending Master,18,Yue,I'm happy you enjoyed yourself.,I'm happy you enjoyed yourself.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4124,4124,Water,1,The Waterbending Master,18,Sokka,"Well, it wasn't as much fun after you left. [They both blush.] So, I'm still hoping we can see more of each other.","Well, it wasn't as much fun after you left. So, I'm still hoping we can see more of each other.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4125,4125,Water,1,The Waterbending Master,18,Yue,"Do an activity, you mean?","Do an activity, you mean?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4126,4126,Water,1,The Waterbending Master,18,Sokka,Yes ... at a place ... for some time.,Yes ... at a place ... for some time.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4127,4127,Water,1,The Waterbending Master,18,Yue,[Laughs.] I'd love to. I'll meet you on that bridge tonight. [Points at a bridge.],I'd love to. I'll meet you on that bridge tonight.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4128,4128,Water,1,The Waterbending Master,18,Sokka,Great! I'll see you– Ah! [Falls into the water.],Great! I'll see you– Ah!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4129,4129,Water,1,The Waterbending Master,18,Yue,[Laughs.] Sorry.,Sorry.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4130,4130,Water,1,The Waterbending Master,18,Sokka,"[Climbs out of the water.] That's okay, it was worth it. See you tonight.","That's okay, it was worth it. See you tonight.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4131,4131,Water,1,The Waterbending Master,18,Scene Description,Back at the Fire Navy base.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4132,4132,Water,1,The Waterbending Master,18,Zhao,I'm very impressed. You all seem highly qualified for the mission I have in mind.,I'm very impressed. You all seem highly qualified for the mission I have in mind.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4133,4133,Water,1,The Waterbending Master,18,Scene Description,"The pirate captain pulls a small chest toward him and opens it, a dim glow radiating from within. Pirate Barker Oh takes a piece of gold from the chest and bites down on it.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4134,4134,Water,1,The Waterbending Master,18,Oh,That's some tasty gold.,That's some tasty gold.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4135,4135,Water,1,The Waterbending Master,18,Pirate captain,What do you need us to do?,What do you need us to do?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4136,4136,Water,1,The Waterbending Master,18,Zhao,I believe you're acquainted with Prince Zuko.,I believe you're acquainted with Prince Zuko.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4137,4137,Water,1,The Waterbending Master,18,Scene Description,"Back to the Northern Water Tribe, where Katara enters the healing hut.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4138,4138,Water,1,The Waterbending Master,18,Katara,Uhhh ... Hi. Are you Yugoda?,Uhhh ... Hi. Are you Yugoda?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4139,4139,Water,1,The Waterbending Master,18,Yugoda,Are you here for the healing lesson?,Are you here for the healing lesson?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4140,4140,Water,1,The Waterbending Master,18,Katara,"[Looks at all the young girls, and speaks in a disappointed tone.] I guess I am.",I guess I am.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4141,4141,Water,1,The Waterbending Master,18,Yugoda,Welcome ... welcome!,Welcome ... welcome!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4142,4142,Water,1,The Waterbending Master,18,Scene Description,Back at Pakku's class. Aang is working with a stream of water.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4143,4143,Water,1,The Waterbending Master,18,Pakku,"You're moving the water around, but you're not feeling the push and pull.","You're moving the water around, but you're not feeling the push and pull.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4144,4144,Water,1,The Waterbending Master,18,Aang,I'm trying ...,I'm trying ...,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4145,4145,Water,1,The Waterbending Master,18,Pakku,[Slurps some tea.] Maybe that move is too advanced for you. Why don't you try an easier one?,Maybe that move is too advanced for you. Why don't you try an easier one?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4146,4146,Water,1,The Waterbending Master,18,Scene Description,"Aang slams down the water in frustration. Back at the healing hut, Katara starts a conversation with Yugoda.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4147,4147,Water,1,The Waterbending Master,18,Katara,Thanks for the lesson.,Thanks for the lesson.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4148,4148,Water,1,The Waterbending Master,18,Yugoda,"So, who's the lucky boy?","So, who's the lucky boy?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4149,4149,Water,1,The Waterbending Master,18,Katara,Huh?,Huh?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4150,4150,Water,1,The Waterbending Master,18,Yugoda,"Your betrothal necklace. You're getting married, right?","Your betrothal necklace. You're getting married, right?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4151,4151,Water,1,The Waterbending Master,18,Katara,[Shocked.] Ah ... No. I don't think I'm ready for that yet. My grandmother gave my mother this necklace and my mother passed it down to me.,Ah ... No. I don't think I'm ready for that yet. My grandmother gave my mother this necklace and my mother passed it down to me.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4152,4152,Water,1,The Waterbending Master,18,Yugoda,I recognize this carving! I don't know why I didn't realize sooner; you're the spitting image of Kanna!,I recognize this carving! I don't know why I didn't realize sooner; you're the spitting image of Kanna!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4153,4153,Water,1,The Waterbending Master,18,Katara,"[Confused.] Wait, how do you know my Gran-Gran's name?","Wait, how do you know my Gran-Gran's name?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4154,4154,Water,1,The Waterbending Master,18,Yugoda,"When I was about your age, I was friends with Kanna. She was born here in the Northern Tribe.","When I was about your age, I was friends with Kanna. She was born here in the Northern Tribe.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4155,4155,Water,1,The Waterbending Master,18,Katara,She never told me.,She never told me.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4156,4156,Water,1,The Waterbending Master,18,Yugoda,Your grandmother had an arranged marriage with a young waterbender. He carved that necklace for her.,Your grandmother had an arranged marriage with a young waterbender. He carved that necklace for her.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4157,4157,Water,1,The Waterbending Master,18,Katara,"If Gran-Gran was engaged, why did she leave?","If Gran-Gran was engaged, why did she leave?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4158,4158,Water,1,The Waterbending Master,18,Yugoda,I don't know. That's always been a mystery to me. She left without saying goodbye.,I don't know. That's always been a mystery to me. She left without saying goodbye.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4159,4159,Water,1,The Waterbending Master,18,Scene Description,"Later that night, at Zuko's ship.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4160,4160,Water,1,The Waterbending Master,18,Crew member,Good luck!,Good luck!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4161,4161,Water,1,The Waterbending Master,18,Scene Description,Inside Zuko's room.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4162,4162,Water,1,The Waterbending Master,18,Iroh,[Cut to a shot of Prince Zuko lying in bed in the foreground of his cabin. The door opens and Iroh sticks his head in. Entering.] The crew wanted me to wish you safe travels.,The crew wanted me to wish you safe travels.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4163,4163,Water,1,The Waterbending Master,18,Zuko,[Bitterly.] Good riddance to those traitors.,Good riddance to those traitors.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4164,4164,Water,1,The Waterbending Master,18,Iroh,It's a lovely night for a walk. Why don't you join me? It would clear your head. [No response.] Or just stay in your room and sit in the dark. Whatever makes you happy.,It's a lovely night for a walk. Why don't you join me? It would clear your head. Or just stay in your room and sit in the dark. Whatever makes you happy.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4165,4165,Water,1,The Waterbending Master,18,Scene Description,"The pirates make their way onto Zuko's ship, bringing up blasting jelly.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4166,4166,Water,1,The Waterbending Master,18,Oh,Careful with the blasting jelly!,Careful with the blasting jelly!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4167,4167,Water,1,The Waterbending Master,18,Zuko,"[Hearing the noise.] Uncle? Uncle, is that you? [Walks around the ship.]","Uncle? Uncle, is that you?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4168,4168,Water,1,The Waterbending Master,18,Scene Description,The fuse to the blasting jelly is lit. The ship explodes.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4169,4169,Water,1,The Waterbending Master,18,Iroh,Zuko! [Runs back to see the ship destroyed.] Zuko ...,Zuko! Zuko ...,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4170,4170,Water,1,The Waterbending Master,18,Scene Description,"Back to the North Pole. Sokka goes to meet Yue, who is looking out over the bridge.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4171,4171,Water,1,The Waterbending Master,18,Sokka,"Hi, Princess Yue. I made you something. I carved it myself.","Hi, Princess Yue. I made you something. I carved it myself.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4172,4172,Water,1,The Waterbending Master,18,Scene Description,Shows her a roughly-crafted creature.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4173,4173,Water,1,The Waterbending Master,18,Yue,It's a bear.,It's a bear.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4174,4174,Water,1,The Waterbending Master,18,Sokka,"Actually, it's supposed to be a fish. [Flips the carved creature around.] See, it has a fin.","Actually, it's supposed to be a fish. See, it has a fin.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4175,4175,Water,1,The Waterbending Master,18,Yue,"Oh. I'm sorry, I made a mistake. I shouldn't have asked you to come here. [Runs away.]","Oh. I'm sorry, I made a mistake. I shouldn't have asked you to come here.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4176,4176,Water,1,The Waterbending Master,18,Scene Description,Sokka is left stunned. He throws the fish into the water. Cut to the team's place of stay.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4177,4177,Water,1,The Waterbending Master,18,Katara,How's warrior training going? [Sokka kicks his bag.],How's warrior training going?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4178,4178,Water,1,The Waterbending Master,18,Aang,That bad?,That bad?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4179,4179,Water,1,The Waterbending Master,18,Sokka,"No, it's Princess Yue. I don't get it, one minute she wants to go out with me, and the next, she's telling me to get lost. [Changing the topic.] So, how's waterbending training?","No, it's Princess Yue. I don't get it, one minute she wants to go out with me, and the next, she's telling me to get lost. So, how's waterbending training?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4180,4180,Water,1,The Waterbending Master,18,Aang,Master Poophead won't teach her because she's a girl.,Master Poophead won't teach her because she's a girl.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4181,4181,Water,1,The Waterbending Master,18,Sokka,"Why don't you just teach her, Aang?","Why don't you just teach her, Aang?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4182,4182,Water,1,The Waterbending Master,18,Katara,"[Excited.] Why didn't I think of that? At night, you can teach me whatever moves you learn from Master Pakku! That way, you have someone to practice with, and I get to learn waterbending! Everyone's happy!","Why didn't I think of that? At night, you can teach me whatever moves you learn from Master Pakku! That way, you have someone to practice with, and I get to learn waterbending! Everyone's happy!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4183,4183,Water,1,The Waterbending Master,18,Sokka,I'm not happy.,I'm not happy.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4184,4184,Water,1,The Waterbending Master,18,Katara,"But you're never happy. Come on, Aang.","But you're never happy. Come on, Aang.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4185,4185,Water,1,The Waterbending Master,18,Scene Description,"Outside, near the water.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4186,4186,Water,1,The Waterbending Master,18,Aang,[Bending up some water.] Master Pakku said this move is all about sinking and floating. [Sends the water to her.],Master Pakku said this move is all about sinking and floating.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4187,4187,Water,1,The Waterbending Master,18,Katara,[Bending the water.] I got it!,I got it!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4188,4188,Water,1,The Waterbending Master,18,Scene Description,The water suddenly shoots upward.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4189,4189,Water,1,The Waterbending Master,18,Aang,That was amazing!,That was amazing!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4190,4190,Water,1,The Waterbending Master,18,Katara,That wasn't me.,That wasn't me.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4191,4191,Water,1,The Waterbending Master,18,Scene Description,"Master Pakku has caught them. He takes the water, freezes it, and sticks the ice crystals into the ground.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4192,4192,Water,1,The Waterbending Master,18,Aang,I was just showing Katara a few moves.,I was just showing Katara a few moves.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4193,4193,Water,1,The Waterbending Master,18,Pakku,"You have disrespected me, my teachings, and my entire culture.","You have disrespected me, my teachings, and my entire culture.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4194,4194,Water,1,The Waterbending Master,18,Aang,"I'm sorry, I ...","I'm sorry, I ...",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4195,4195,Water,1,The Waterbending Master,18,Pakku,You are no longer welcome as my student.,You are no longer welcome as my student.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4196,4196,Water,1,The Waterbending Master,18,Scene Description,"The next morning, the three meet with Chief Arnook, Master Pakku, and Arnook's family members.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4197,4197,Water,1,The Waterbending Master,18,Arnook,What do you want me to do? Force Master Pakku to take Aang back as his student?,What do you want me to do? Force Master Pakku to take Aang back as his student?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4198,4198,Water,1,The Waterbending Master,18,Katara,Yes ... please!,Yes ... please!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4199,4199,Water,1,The Waterbending Master,18,Arnook,"I suspect he might change his mind, if you swallow your pride and apologize to him.","I suspect he might change his mind, if you swallow your pride and apologize to him.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4200,4200,Water,1,The Waterbending Master,18,Katara,Fine.,Fine.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4201,4201,Water,1,The Waterbending Master,18,Pakku,"I'm waiting, little girl.","I'm waiting, little girl.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4202,4202,Water,1,The Waterbending Master,18,Katara,No. [Begins cracking the ice inadvertently.] No way am I apologizing to a sour old man like you! [Two pots shatter.],No. No way am I apologizing to a sour old man like you!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4203,4203,Water,1,The Waterbending Master,18,Aang,Uhhh ... Katara?,Uhhh ... Katara?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4204,4204,Water,1,The Waterbending Master,18,Katara,I'll be outside if you're man enough to fight me.,I'll be outside if you're man enough to fight me.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4205,4205,Water,1,The Waterbending Master,18,Scene Description,Yue gasps. Katara angrily walks out.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4206,4206,Water,1,The Waterbending Master,18,Aang,I'm sure she didn't mean that.,I'm sure she didn't mean that.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4207,4207,Water,1,The Waterbending Master,18,Sokka,"Yeah, I think she did.","Yeah, I think she did.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4208,4208,Water,1,The Waterbending Master,18,Scene Description,Back at the Fire Navy base. Zhao meets with Iroh over tea.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4209,4209,Water,1,The Waterbending Master,18,Zhao,I'm devastated to hear about Prince Zuko. Just ... devastated.,I'm devastated to hear about Prince Zuko. Just ... devastated.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4210,4210,Water,1,The Waterbending Master,18,Iroh,The Fire Lord will not be pleased when he learns who was responsible.,The Fire Lord will not be pleased when he learns who was responsible.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4211,4211,Water,1,The Waterbending Master,18,Zhao,You know who was behind the attack?,You know who was behind the attack?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4212,4212,Water,1,The Waterbending Master,18,Iroh,Yes ... pirates. We had a run-in with them a while back. They wanted revenge.,Yes ... pirates. We had a run-in with them a while back. They wanted revenge.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4213,4213,Water,1,The Waterbending Master,18,Zhao,"[Sips his tea.] So, have you reconsidered my offer?","So, have you reconsidered my offer?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4214,4214,Water,1,The Waterbending Master,18,Iroh,"Yes, I accept. It will be an honor to serve as your general. To the Fire Nation!","Yes, I accept. It will be an honor to serve as your general. To the Fire Nation!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4215,4215,Water,1,The Waterbending Master,18,Zhao,To victory!,To victory!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4216,4216,Water,1,The Waterbending Master,18,Scene Description,"Back to the Northern Tribe. The three head outside, looking for Pakku.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4217,4217,Water,1,The Waterbending Master,18,Sokka,"Are you crazy, Katara? You're not going to win this fight!","Are you crazy, Katara? You're not going to win this fight!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4218,4218,Water,1,The Waterbending Master,18,Katara,[Takes off her coat.] I know! I don't care!,I know! I don't care!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4219,4219,Water,1,The Waterbending Master,18,Aang,You don't have to do this for me. I can find another teacher.,You don't have to do this for me. I can find another teacher.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4220,4220,Water,1,The Waterbending Master,18,Katara,"I'm not doing it for you! Someone needs to slap some sense into that guy! [Pakku comes down.] So, you decided to show up? [Pakku walks away.] Aren't you going to fight?","I'm not doing it for you! Someone needs to slap some sense into that guy! So, you decided to show up? Aren't you going to fight?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4221,4221,Water,1,The Waterbending Master,18,Pakku,"Go back to the healing huts with the other women where you belong. [Katara tightens her fist and sends water whips at him. Pakku halts.] Fine. You want to learn to fight so bad? Study closely! [He bends two streams of water from nearby pools and sends them both at a charging Katara, who falls back. He joins the two streams together, encircling both Katara and himself in a forceful ring of water.] Don't worry, I'm not going to hurt you!","Go back to the healing huts with the other women where you belong. Fine. You want to learn to fight so bad? Study closely! Don't worry, I'm not going to hurt you!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4222,4222,Water,1,The Waterbending Master,18,Scene Description,"Katara edges away from the ring and redirects the water away. The resulting blast hits Sokka. Pakku builds an ice wall in defense, which Katara slides up. She lands onto a nearby post. He melts the ice and directs the full blast at her. However, Katara freezes her feet down and is able to direct the blast away.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4223,4223,Water,1,The Waterbending Master,18,Katara,[Determined.] You can't knock me down!,You can't knock me down!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4224,4224,Water,1,The Waterbending Master,18,Scene Description,Some of the crowd cheers.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4225,4225,Water,1,The Waterbending Master,18,Aang,"Go, Katara!","Go, Katara!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4226,4226,Water,1,The Waterbending Master,18,Scene Description,"Katara charges at him; Pakku draws up a wall of ice, which she quickly liquefies. She attempts to land blows, but Pakku ducks them all. He whips water and throws her into a pool, earning the approval of other members of the crowd. +Katara emerges from pool, shakes out her hair, and summons a small pillar of ice, where she proceeds to send a series of ice discs at her opponent. Pakku breaks up most of them using his wrists. The camera closes up to a slow-motion shot of one coming very close to hitting him. He looks at her in irritation. Katara, now back on the ground, attacks by sending a stream of water at him. However, Pakku generates it into a larger stream of water and sends it full force at her. Katara is sent back several feet. A close-up shot of her shows her bent over, breathing hard. She rises suddenly and sends two snow pillars down at him which Pakku turns to a dusty mist of snow. The mist clears.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4227,4227,Water,1,The Waterbending Master,18,Pakku,"Well, I'm impressed. You are an excellent waterbender.","Well, I'm impressed. You are an excellent waterbender.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4228,4228,Water,1,The Waterbending Master,18,Katara,"But you still won't teach me, will you?","But you still won't teach me, will you?",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4229,4229,Water,1,The Waterbending Master,18,Pakku,No.,No.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4230,4230,Water,1,The Waterbending Master,18,Scene Description,"Katara bends over sharply, sending a wave of ice at Pakku, who merely raises himself onto an ice pillar. He proceeds to liquefy the pillar, charging straight at Katara, who sends a powerful stream of water his way. Pakku avoids the attack, instead managing to freeze Katara's stream of water which he slides across. He surges past her and strikes her down, knocking her necklace off in the process. Katara falls roughly to the ground as Pakku lands onto the rim of a pool, bends a tower of water and manipulates the stream overhead his opponent. He deftly freezes the water into several ice shards, which he sends down at Katara. She becomes trapped in the flurry of frozen daggers and appears still for a moment. The crowd gasps in horror; one child looks away in fear. Katara lifts her head and begins to struggle, attempting to break free as Pakku casually strolls away.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4231,4231,Water,1,The Waterbending Master,18,Pakku,This fight is over.,This fight is over.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4232,4232,Water,1,The Waterbending Master,18,Katara,Come back here. I'm not finished yet!,Come back here. I'm not finished yet!,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4233,4233,Water,1,The Waterbending Master,18,Pakku,"Yes, you are. [Notices the necklace.] This is my necklace ...","Yes, you are. This is my necklace ...",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4234,4234,Water,1,The Waterbending Master,18,Katara,"No, it's not. It's mine! Give it back!","No, it's not. It's mine! Give it back!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4235,4235,Water,1,The Waterbending Master,18,Pakku,I made this sixty years ago for the love of my life ... for Kanna.,I made this sixty years ago for the love of my life ... for Kanna.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4236,4236,Water,1,The Waterbending Master,18,Katara,[Unfreezing the ice; surprised.] My Gran-Gran was supposed to marry you?,My Gran-Gran was supposed to marry you?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4237,4237,Water,1,The Waterbending Master,18,Scene Description,"Back at the Fire Navy base. The ships are set to begin the trek north. On board, Iroh meets up with Zuko, who is disguised as a shipman.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4238,4238,Water,1,The Waterbending Master,18,Iroh,Our plan is working perfectly. Zhao doesn't suspect a thing.,Our plan is working perfectly. Zhao doesn't suspect a thing.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4239,4239,Water,1,The Waterbending Master,18,Zuko,You didn't have to do this.,You didn't have to do this.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4240,4240,Water,1,The Waterbending Master,18,Iroh,No nephew of mine is going to stow away on a ship without some backup.,No nephew of mine is going to stow away on a ship without some backup.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4241,4241,Water,1,The Waterbending Master,18,Zuko,"Thank you, Uncle.","Thank you, Uncle.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4242,4242,Water,1,The Waterbending Master,18,Scene Description,A door opens.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4243,4243,Water,1,The Waterbending Master,18,Iroh,Someone's coming. Stay hidden until we get to the North Pole and the Avatar will be yours. Good luck. [The two head their separate ways.],Someone's coming. Stay hidden until we get to the North Pole and the Avatar will be yours. Good luck.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4244,4244,Water,1,The Waterbending Master,18,Scene Description,The scene changes back to the North Pole.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4245,4245,Water,1,The Waterbending Master,18,Pakku,"I carved this necklace for your grandmother when we got engaged. I thought we would have a long, happy life together. I loved her.","I carved this necklace for your grandmother when we got engaged. I thought we would have a long, happy life together. I loved her.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4246,4246,Water,1,The Waterbending Master,18,Katara,"But she didn't love you, did she? It was an arranged marriage. Gran-Gran wouldn't let your tribe's stupid customs run her life. That's why she left. It must have taken a lot of courage.","But she didn't love you, did she? It was an arranged marriage. Gran-Gran wouldn't let your tribe's stupid customs run her life. That's why she left. It must have taken a lot of courage.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4247,4247,Water,1,The Waterbending Master,18,Scene Description,Yue cries and runs away.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4248,4248,Water,1,The Waterbending Master,18,Aang,[To Sokka.] Go get her.,Go get her.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4249,4249,Water,1,The Waterbending Master,18,Scene Description,"Sokka exits. Later that night, he catches up with her on the bridge.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4250,4250,Water,1,The Waterbending Master,18,Yue,What do you want from me?,What do you want from me?,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4251,4251,Water,1,The Waterbending Master,18,Sokka,"Nothing. I just want you to know, I think you're beautiful, and, I never thought a girl like you would even notice a guy like me.","Nothing. I just want you to know, I think you're beautiful, and, I never thought a girl like you would even notice a guy like me.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4252,4252,Water,1,The Waterbending Master,18,Yue,You don't understand.,You don't understand.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4253,4253,Water,1,The Waterbending Master,18,Sokka,"No, no. See, that's the thing. I think I do understand now. You're a Princess, and I'm ... I'm just a Southern peasant.","No, no. See, that's the thing. I think I do understand now. You're a Princess, and I'm ... I'm just a Southern peasant.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4254,4254,Water,1,The Waterbending Master,18,Yue,"No, Sokka ...","No, Sokka ...",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4255,4255,Water,1,The Waterbending Master,18,Sokka,"It's okay. You don't have to say anything. I'll see you around, okay? [Yue grabs him and kisses him.] Okay, now I'm really confused. Happy, but confused.","It's okay. You don't have to say anything. I'll see you around, okay? Okay, now I'm really confused. Happy, but confused.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4256,4256,Water,1,The Waterbending Master,18,Yue,"I do like you, a lot. But we can't be together, and not for the reason you think. It's because ... I'm engaged. [She pulls down the collar of her coat and shows him her betrothal necklace.] I'm sorry. [Runs off.]","I do like you, a lot. But we can't be together, and not for the reason you think. It's because ... I'm engaged. I'm sorry.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4257,4257,Water,1,The Waterbending Master,18,Scene Description,"The next morning, at Pakku's class. Aang turns a blob of water into a stream and awkwardly sends it off.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4258,4258,Water,1,The Waterbending Master,18,Pakku,"Not bad, not bad. [Laughs.] Keep practicing and maybe you'll get it by the time you're my age.","Not bad, not bad. Keep practicing and maybe you'll get it by the time you're my age.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4259,4259,Water,1,The Waterbending Master,18,Scene Description,"Aang turns around, annoyed, but quickly smiles when he notices Katara coming up.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4260,4260,Water,1,The Waterbending Master,18,Aang,"Hey, Katara!","Hey, Katara!",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4261,4261,Water,1,The Waterbending Master,18,Pakku,What do you think you're doing? [Pause as Katara looks up.] It's past sunrise. You're late.,What do you think you're doing? It's past sunrise. You're late.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4262,4262,Water,1,The Waterbending Master,18,Aang,Good to see you here.,Good to see you here.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4263,4263,Water,1,The Waterbending Master,18,Katara,"You, too.","You, too.",Michael Dante DiMartino,Giancarlo Volpe,8.6 +4264,4264,Water,1,The Waterbending Master,18,Scene Description,Back at the Fire Navy fleet. Zhao and Iroh stand on top of the lead ship.,NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4265,4265,Water,1,The Waterbending Master,18,Zhao,My fleet is ready. Set a course for the Northern Water Tribe.,My fleet is ready. Set a course for the Northern Water Tribe.,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4266,4266,Water,1,The Waterbending Master,18,Scene Description,"Cut to a panning overhead shot, which reveals dozens of Fire Navy ships firing up their engines in preparation to launch the final assault on the Northern Water Tribe.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4267,4267,Water,1,The Waterbending Master,18,Scene Description,"Fade to white, followed by credits.",NA,Michael Dante DiMartino,Giancarlo Volpe,8.6 +4268,4268,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The episode opens to under the water. The camera pans upward to sea level, and higher up into the city. The scene changes to where Katara is set to spar with a young boy named Sangok. She eyes her opponent with a look of determination. Sangok looks at her with a frightened expression on his face, shaking slightly. He summons a globule of water, freezes it into an iceball, and fires it at her. Katara, however, is quick to melt the iceball and, turning around swiftly, bends a wave of water at him, which she proceeds to freeze, thus suspending Sangok in an icy trap.",NA,John O'Bryan,Lauren MacMullan,9.4 +4269,4269,Water,1,"The Siege of the North, Part 1",19,Pakku,"[Displeased.] Nice try, Pupil Sangok. [Shows Sangok trying to break free.] A couple of more years and you might be ready to fight a sea sponge. [He unfreezes the ice; Sangok falls to the ground dazed.] Would anyone care for a rematch with Katara? [The scene cuts to several students sitting by the sidelines, the camera panning to the right showing all of them to be tired and unamused.] Katara, you've advanced more quickly than any student I've ever trained. [Cuts to a shot of Katara, who smiles brightly.] You have proven that with fierce determination, passion and hard work, you can accomplish anything. [Turns to Aang irritably.] Raw talent alone is not enough. [Cut to Aang who is lying on the ground with a lazy smile, floating Momo around on an airball above him.] Pupil Aang!","Nice try, Pupil Sangok. A couple of more years and you might be ready to fight a sea sponge. Would anyone care for a rematch with Katara? Katara, you've advanced more quickly than any student I've ever trained. You have proven that with fierce determination, passion and hard work, you can accomplish anything. Raw talent alone is not enough. Pupil Aang!",John O'Bryan,Lauren MacMullan,9.4 +4270,4270,Water,1,"The Siege of the North, Part 1",19,Aang,"[Stops bending at the sound of his name; Momo lands on his head.] Yes, Master Pakku?","Yes, Master Pakku?",John O'Bryan,Lauren MacMullan,9.4 +4271,4271,Water,1,"The Siege of the North, Part 1",19,Pakku,"[Sarcastically.] Care to step into the sparring circle? I figure since you've found time to play with house pets, you must have already mastered waterbending.","Care to step into the sparring circle? I figure since you've found time to play with house pets, you must have already mastered waterbending.",John O'Bryan,Lauren MacMullan,9.4 +4272,4272,Water,1,"The Siege of the North, Part 1",19,Aang,"[Jumps off the ground with airbending.] I wouldn't say mastered, but check this out.","I wouldn't say mastered, but check this out.",John O'Bryan,Lauren MacMullan,9.4 +4273,4273,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He twists around, bending some snow around him to make a snowman of himself, which Momo knocks over. Cut to Pakku and Katara who wear similar expressions of disdain. Pakku shakes his head in disappointment, while Katara looks on in irritation. The scene changes to another part of the city where Sokka and Yue are taking a walk along a bridge. Sokka is walking along the top of bridge's wall while balancing.",NA,John O'Bryan,Lauren MacMullan,9.4 +4274,4274,Water,1,"The Siege of the North, Part 1",19,Yue,So they don't have palaces in the Southern Tribe?,So they don't have palaces in the Southern Tribe?,John O'Bryan,Lauren MacMullan,9.4 +4275,4275,Water,1,"The Siege of the North, Part 1",19,Sokka,[Sitting down on the ledge.] Are you kidding? I grew up in a block of ice. It's not exactly a cultural hub.,Are you kidding? I grew up in a block of ice. It's not exactly a cultural hub.,John O'Bryan,Lauren MacMullan,9.4 +4276,4276,Water,1,"The Siege of the North, Part 1",19,Yue,"[Laughs and places her hand on Sokka's shoulder; when Sokka smiles at her, she gets a little upset and looks at him seriously.] Sokka, this is wrong.","Sokka, this is wrong.",John O'Bryan,Lauren MacMullan,9.4 +4277,4277,Water,1,"The Siege of the North, Part 1",19,Sokka,[Protesting.] What's wrong? We're taking a walk!,What's wrong? We're taking a walk!,John O'Bryan,Lauren MacMullan,9.4 +4278,4278,Water,1,"The Siege of the North, Part 1",19,Yue,[Unsurely.] I'm engaged. It just feels ...,I'm engaged. It just feels ...,John O'Bryan,Lauren MacMullan,9.4 +4279,4279,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Brightens.] I know what you need. [He hops off the rail to stand by her side.] You need to meet my good friend, Appa.","I know what you need. You need to meet my good friend, Appa.",John O'Bryan,Lauren MacMullan,9.4 +4280,4280,Water,1,"The Siege of the North, Part 1",19,Yue,[Curiously.] Who?,Who?,John O'Bryan,Lauren MacMullan,9.4 +4281,4281,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The scene changes to where the two approach the stables, where Appa is resting.",NA,John O'Bryan,Lauren MacMullan,9.4 +4282,4282,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Opening his arms out in enthusiasm.] Appa and I go way back, don't we, boy? [The thunder of Appa's shifting bulk is heard and Sokka's features turn to surprise. Appa enters from the left and lands on top of him and licks him, much to Sokka's dismay.] Ah, ah, easy! Down boy! Agh! No, up!","Appa and I go way back, don't we, boy? Ah, ah, easy! Down boy! Agh! No, up!",John O'Bryan,Lauren MacMullan,9.4 +4283,4283,Water,1,"The Siege of the North, Part 1",19,Yue,Looks like you haven't been giving Appa enough attention!,Looks like you haven't been giving Appa enough attention!,John O'Bryan,Lauren MacMullan,9.4 +4284,4284,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Yue laughs. Sokka attempts to pull himself free of Appa, who continues to lick his face. The scene changes to the two sitting on Appa's saddle, Sokka holding the reins in his hand.",NA,John O'Bryan,Lauren MacMullan,9.4 +4285,4285,Water,1,"The Siege of the North, Part 1",19,Yue,"[Excitedly.] So, how does this work?","So, how does this work?",John O'Bryan,Lauren MacMullan,9.4 +4286,4286,Water,1,"The Siege of the North, Part 1",19,Sokka,You holding on tight? [Yue nods; in a cool tone.] Yip ... [Cut to a close up of Sokka's face.] yip.,You holding on tight? Yip ... yip.,John O'Bryan,Lauren MacMullan,9.4 +4287,4287,Water,1,"The Siege of the North, Part 1",19,Scene Description,The camera zooms out to a shot of the entire city as Appa takes off.,NA,John O'Bryan,Lauren MacMullan,9.4 +4288,4288,Water,1,"The Siege of the North, Part 1",19,Yue,"[Impressed.] Oh ... my ... goodness! [Cuts to where Appa is soaring over the ocean; Yue is looking over the saddle.] Wow, I can't believe you do this every day.","Oh ... my ... goodness! Wow, I can't believe you do this every day.",John O'Bryan,Lauren MacMullan,9.4 +4289,4289,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Stretches.] Yeah, we pretty much live up here.","Yeah, we pretty much live up here.",John O'Bryan,Lauren MacMullan,9.4 +4290,4290,Water,1,"The Siege of the North, Part 1",19,Yue,Is it always this cold in the sky? [Moves closer to Sokka.],Is it always this cold in the sky?,John O'Bryan,Lauren MacMullan,9.4 +4291,4291,Water,1,"The Siege of the North, Part 1",19,Sokka,[Happily.] Not when you're with someone.,Not when you're with someone.,John O'Bryan,Lauren MacMullan,9.4 +4292,4292,Water,1,"The Siege of the North, Part 1",19,Yue,"[Turning to face Sokka, blushing.] It's beautiful up here.",It's beautiful up here.,John O'Bryan,Lauren MacMullan,9.4 +4293,4293,Water,1,"The Siege of the North, Part 1",19,Sokka,"Yeah ... [The two turn to each other and slowly begin to lean in, but at the very last moment, Sokka widens his eyes, turns away and pretends to act cool again.] Woo, yeah! Ahhh, good times, good times. [Snow and black soot start to fall from the sky.] Hey, look!","Yeah ... Woo, yeah! Ahhh, good times, good times. Hey, look!",John O'Bryan,Lauren MacMullan,9.4 +4294,4294,Water,1,"The Siege of the North, Part 1",19,Yue,[Camera zooms out to Appa flying through the gray snowfall; worried.] What's happening?,What's happening?,John O'Bryan,Lauren MacMullan,9.4 +4295,4295,Water,1,"The Siege of the North, Part 1",19,Sokka,[Nervous.] Oh no ...,Oh no ...,John O'Bryan,Lauren MacMullan,9.4 +4296,4296,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The scene cuts to where civilians have stopped to observe the sooty snow. Cuts to Aang, who laughs as he gleefully rolls around in the snow in a circular pattern. Cuts to Momo, who opens his mouth and catches a sooty snowflake only to bristle and spit out the contents. Aang stops playing around and looks up at the snowfall with a concerned face. Cuts to civilians standing near a fountain. Camera pans down to show the fountain's water turning black.",NA,John O'Bryan,Lauren MacMullan,9.4 +4297,4297,Water,1,"The Siege of the North, Part 1",19,Sokka,[Picking up handful of black snow.] Soot.,Soot.,John O'Bryan,Lauren MacMullan,9.4 +4298,4298,Water,1,"The Siege of the North, Part 1",19,Yue,What?,What?,John O'Bryan,Lauren MacMullan,9.4 +4299,4299,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Scene reveals Sokka, Yue, and Appa having landed right outside the outskirts of the city, near the shores of the North Pole seas. Sokka is kneeling down, observing the snow.",NA,John O'Bryan,Lauren MacMullan,9.4 +4300,4300,Water,1,"The Siege of the North, Part 1",19,Sokka,"I've seen this before, right before my village was attacked. It's soot mixed with snow. [Rises.]","I've seen this before, right before my village was attacked. It's soot mixed with snow.",John O'Bryan,Lauren MacMullan,9.4 +4301,4301,Water,1,"The Siege of the North, Part 1",19,Yue,"But, why?","But, why?",John O'Bryan,Lauren MacMullan,9.4 +4302,4302,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Looking out over the horizon.] It's the Fire Nation. [Looks at Yue concerned.] They've closed in on the North Pole and from the looks of this stuff, [Camera zooms out to show the enormity of the sooty snowfall.] I'd say there's a lot of them.","It's the Fire Nation. They've closed in on the North Pole and from the looks of this stuff, I'd say there's a lot of them.",John O'Bryan,Lauren MacMullan,9.4 +4303,4303,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Cuts to the lead ship sailing toward the Water Tribe, under the command of Admiral Zhao and Iroh.",NA,John O'Bryan,Lauren MacMullan,9.4 +4304,4304,Water,1,"The Siege of the North, Part 1",19,Zhao,"[Voice-over.] This will truly be one for the history books, General Iroh. [Cuts to Zhao and Iroh standing on deck.] Just think, centuries from now, people will study the great Admiral Zhao, who destroyed the last of the Water Tribe civilization. You're lucky you're here to see it.","This will truly be one for the history books, General Iroh. Just think, centuries from now, people will study the great Admiral Zhao, who destroyed the last of the Water Tribe civilization. You're lucky you're here to see it.",John O'Bryan,Lauren MacMullan,9.4 +4305,4305,Water,1,"The Siege of the North, Part 1",19,Iroh,"[Tersely.] Be careful what you wish for, Admiral. History is not always kind to its subjects.","Be careful what you wish for, Admiral. History is not always kind to its subjects.",John O'Bryan,Lauren MacMullan,9.4 +4306,4306,Water,1,"The Siege of the North, Part 1",19,Zhao,"I suppose you speak from experience, but rest assured. This will be nothing like your legendary failure at Ba Sing Se. [Walks forward.]","I suppose you speak from experience, but rest assured. This will be nothing like your legendary failure at Ba Sing Se.",John O'Bryan,Lauren MacMullan,9.4 +4307,4307,Water,1,"The Siege of the North, Part 1",19,Iroh,"[Sadly.] I hope not, for your sake.","I hope not, for your sake.",John O'Bryan,Lauren MacMullan,9.4 +4308,4308,Water,1,"The Siege of the North, Part 1",19,Zhao,Tell the captains to prepare for first strike.,Tell the captains to prepare for first strike.,John O'Bryan,Lauren MacMullan,9.4 +4309,4309,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Iroh walks away. Cuts to the bow of the lead ship breaking through thick ice floes floating in the water. Cuts to the interior of the ship, where Iroh is confronting Zuko disguised as a Fire Nation soldier. Zuko is forced to wear the disguise to keep the secret from Zhao that he survived an attempted assassination.",NA,John O'Bryan,Lauren MacMullan,9.4 +4310,4310,Water,1,"The Siege of the North, Part 1",19,Iroh,[Secretly.] We'll be landing soon. Do you have a plan?,We'll be landing soon. Do you have a plan?,John O'Bryan,Lauren MacMullan,9.4 +4311,4311,Water,1,"The Siege of the North, Part 1",19,Zuko,"[Removes face covering to reveal his face covered in cuts.] I'm working on it, Uncle. [Puts covering back in place.]","I'm working on it, Uncle.",John O'Bryan,Lauren MacMullan,9.4 +4312,4312,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The two head off in separate directions. Back at the Northern Water Tribe, citizens flee to the town hall, as two watchmen hit a drum to signal the Fire Nation's approach. Sokka and Yue make their way up the steps, but Yue stops the approach.",NA,John O'Bryan,Lauren MacMullan,9.4 +4313,4313,Water,1,"The Siege of the North, Part 1",19,Sokka,[Trying to drag her along.] What's wrong? [Pointing up to the citadel.] We have to go!,What's wrong? We have to go!,John O'Bryan,Lauren MacMullan,9.4 +4314,4314,Water,1,"The Siege of the North, Part 1",19,Yue,"[Sadly; lets go of Sokka's hand.] No, Sokka, wait, I can't see you anymore. Not at all.","No, Sokka, wait, I can't see you anymore. Not at all.",John O'Bryan,Lauren MacMullan,9.4 +4315,4315,Water,1,"The Siege of the North, Part 1",19,Sokka,[Protesting.] What? We're just friends.,What? We're just friends.,John O'Bryan,Lauren MacMullan,9.4 +4316,4316,Water,1,"The Siege of the North, Part 1",19,Yue,"I wish we could just be friends, but I like you too much and it's too confusing to be around you. I'm marrying someone else! [Turns away sorrowfully.]","I wish we could just be friends, but I like you too much and it's too confusing to be around you. I'm marrying someone else!",John O'Bryan,Lauren MacMullan,9.4 +4317,4317,Water,1,"The Siege of the North, Part 1",19,Sokka,"You don't love him, do you? You don't even seem to like him.","You don't love him, do you? You don't even seem to like him.",John O'Bryan,Lauren MacMullan,9.4 +4318,4318,Water,1,"The Siege of the North, Part 1",19,Yue,But I do love my people.,But I do love my people.,John O'Bryan,Lauren MacMullan,9.4 +4319,4319,Water,1,"The Siege of the North, Part 1",19,Sokka,[Objecting.] You're not marrying them.,You're not marrying them.,John O'Bryan,Lauren MacMullan,9.4 +4320,4320,Water,1,"The Siege of the North, Part 1",19,Yue,"[Turns to face Sokka.] You don't understand. I have duties to my father, to my tribe. I have to do this. Goodbye.","You don't understand. I have duties to my father, to my tribe. I have to do this. Goodbye.",John O'Bryan,Lauren MacMullan,9.4 +4321,4321,Water,1,"The Siege of the North, Part 1",19,Scene Description,"She runs past Sokka up the stairs quickly. Closes up on Sokka, who looks on with dismay. The scene cuts to inside the chief's Royal Palace.",NA,John O'Bryan,Lauren MacMullan,9.4 +4322,4322,Water,1,"The Siege of the North, Part 1",19,Arnook,"The day we have feared for so long has arrived. The Fire Nation is on our doorstep. It is with great sadness I call my family here before me, knowing well that some of these faces are about to vanish from our tribe, [While saying this line, the scene flashes from Yue to Pakku to Hahn.] but they will never vanish from our hearts. Now, as we approach the battle for our existence, I call upon the great spirits. Spirit of the Ocean! Spirit of the Moon! Be with us! I'm going to need volunteers for a dangerous mission.","The day we have feared for so long has arrived. The Fire Nation is on our doorstep. It is with great sadness I call my family here before me, knowing well that some of these faces are about to vanish from our tribe, but they will never vanish from our hearts. Now, as we approach the battle for our existence, I call upon the great spirits. Spirit of the Ocean! Spirit of the Moon! Be with us! I'm going to need volunteers for a dangerous mission.",John O'Bryan,Lauren MacMullan,9.4 +4323,4323,Water,1,"The Siege of the North, Part 1",19,Sokka,[Rising from his seat.] Count me in!,Count me in!,John O'Bryan,Lauren MacMullan,9.4 +4324,4324,Water,1,"The Siege of the North, Part 1",19,Katara,Sokka ...,Sokka ...,John O'Bryan,Lauren MacMullan,9.4 +4325,4325,Water,1,"The Siege of the North, Part 1",19,Arnook,"Be warned, many of you will not return. [Several Water Tribe men rise and walk forward.] Come forward to receive my mark, if you accept the task.","Be warned, many of you will not return. Come forward to receive my mark, if you accept the task.",John O'Bryan,Lauren MacMullan,9.4 +4326,4326,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Arnook paints three red line marks with his fingers on one man's forehead. The man walks away, slightly sorrowful. Sokka steps forward and Arnook paints the same three marks. He begins walking away sadly and turns to look at Yue. After staring at each other for a few moments, Sokka continues walking. Yue averts her gaze, closes her eyes and begins crying. +The scene changes to outside the city where Aang is perched on a snow mound, holding his staff. Arnook approaches him.",NA,John O'Bryan,Lauren MacMullan,9.4 +4327,4327,Water,1,"The Siege of the North, Part 1",19,Arnook,The stillness before battle is unbearable. Such a quiet dread.,The stillness before battle is unbearable. Such a quiet dread.,John O'Bryan,Lauren MacMullan,9.4 +4328,4328,Water,1,"The Siege of the North, Part 1",19,Scene Description,Katara joins them.,NA,John O'Bryan,Lauren MacMullan,9.4 +4329,4329,Water,1,"The Siege of the North, Part 1",19,Aang,I wasn't there when the Fire Nation attacked my people. [Determined.] I'm going to make a difference this time.,I wasn't there when the Fire Nation attacked my people. I'm going to make a difference this time.,John O'Bryan,Lauren MacMullan,9.4 +4330,4330,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He rises and holds his staff behind his back in a similar pose as seen in the opening sequence. The camera pans upward to the sky. The scene changes to where Aang, Katara, Sokka, Appa and all the warriors are gathered at the wall. Something distant can be seen soaring toward the city from the horizon. Aang squints his eyes before realizing the object is a fireball. Cuts to Sokka and Katara, who look on in terror. The fireball collides into the wall of the city, sending Team Avatar and several warriors flying back. Cuts to the wall of the city, damaged and beginning to fall apart. +Cuts to another fireball being launched into the air. The fireball disintegrates a bridge within the city. Cuts to a trebuchet operator launching another fireball into the air, which hits the wall.",NA,John O'Bryan,Lauren MacMullan,9.4 +4331,4331,Water,1,"The Siege of the North, Part 1",19,Aang,Yip-yip!,Yip-yip!,John O'Bryan,Lauren MacMullan,9.4 +4332,4332,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He and Appa take flight, heading toward the fleet. Cuts to the warriors who regather themselves, helping each other up.",NA,John O'Bryan,Lauren MacMullan,9.4 +4333,4333,Water,1,"The Siege of the North, Part 1",19,Sokka,[Pulls his arm free from the snow.] Katara!,Katara!,John O'Bryan,Lauren MacMullan,9.4 +4334,4334,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Katara uses waterbending to free herself from a snow mound she became buried underneath. Sokka smiles and hoists his sister onto her feet. The two cast their eyes upward, catching sight of two fireballs that soar overhead. Cuts to Appa who grunts, Aang guiding him, a determined look on his face. Cuts to bird's-eyes view of the ocean, Aang flying toward a single Fire Navy ship. Two fireballs are launched. Cuts to the deck of the ship, where trebuchet operators launch another fireball back to Appa and Aang. Cuts to fireball soaring straight toward Aang, who uses his glider to direct it into an icy cliff side near the city.",NA,John O'Bryan,Lauren MacMullan,9.4 +4335,4335,Water,1,"The Siege of the North, Part 1",19,Aang,"I'll take it from here, boy.","I'll take it from here, boy.",John O'Bryan,Lauren MacMullan,9.4 +4336,4336,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He jumps down from Appa and flies downward on his glider onto the first ship. Using airbending, he sweeps several trebuchet operators off their feet and leaps onto one trebuchet. An operator comes forward and slams a sledgehammer onto the machine, nearly striking Aang who manages to back-flip away. Cuts to where he stands on top of the contraption, two more operators approaching him from opposite directions, each holding a sledgehammer. The one on his right brings the sledgehammer down proceeded by the one on his left. He jumps into the air, avoiding both blows and completely collapses the trebuchet with his glider and the use of airbending. He lands onto the deck, triumphant. +He runs over to an unoccupied trebuchet, already loaded with a flaming boulder. He sticks a sledgehammer in another launcher's chain. When a soldier approaches him, Aang blasts him away, activating the catapult which launches the fireball straight into the deck, leaving a large hole. The camera zooms out on the damage. +Cuts to Aang, who runs past two operators who quickly chase after him. He arrives at two trebuchets, one before him and one behind him, and tangles their chains together. He leaps onto the machine before him as the soldiers approach and slams his foot onto the pedal that activates the catapult. The catapult lunges forward, causing the second trebuchet to collide into the first, destroying both. +Smiling happily, Aang proceeds to another machine. Cuts to a burly man, who observes him evilly. Aang prepares to strike the machine with a sledgehammer only to turn around and catch sight of the man who attempts to land blows from afar with two sledgehammers, each attached to long chains. Aang jumps out of the way of several blows. Cuts to the man who swings the chains around. Aang leans against a beam only for the two chains to wrap around the beam thus trapping him. He struggles to break free. +Cuts to the soldier, who is suddenly knocked over by Appa's paw. The chains snap and Aang breaks free.",NA,John O'Bryan,Lauren MacMullan,9.4 +4337,4337,Water,1,"The Siege of the North, Part 1",19,Aang,[Brightening.] Appa!,Appa!,John O'Bryan,Lauren MacMullan,9.4 +4338,4338,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Appa leans over the deck of the ship and tosses the man overboard before turning to Aang, who runs over and embraces him.",NA,John O'Bryan,Lauren MacMullan,9.4 +4339,4339,Water,1,"The Siege of the North, Part 1",19,Aang,"Thanks for the rescue, buddy!","Thanks for the rescue, buddy!",John O'Bryan,Lauren MacMullan,9.4 +4340,4340,Water,1,"The Siege of the North, Part 1",19,Scene Description,"His expression of relief becomes one of alarm when the ship begins to rumble. Cuts to an undamaged trebuchet that collapses when a gigantic spike of ice pierces straight through the hull and deck of the ship. Cuts to dozens of Water Tribe warriors riding on boats, who are using waterbending to suspend the ship. Cuts to the entire ship being uprooted. Cuts to Appa, who stands on the sloping deck, the ruins of machinery sliding downward past them. He and Aang take off. Cuts to the horizon, where an entire fleet comes into view, the ships large in quantity.",NA,John O'Bryan,Lauren MacMullan,9.4 +4341,4341,Water,1,"The Siege of the North, Part 1",19,Aang,[Shocked.] You've got to be kidding me ...,You've got to be kidding me ...,John O'Bryan,Lauren MacMullan,9.4 +4342,4342,Water,1,"The Siege of the North, Part 1",19,Scene Description,The scene cuts to the training for the mission.,NA,John O'Bryan,Lauren MacMullan,9.4 +4343,4343,Water,1,"The Siege of the North, Part 1",19,Arnook,"Men, you'll be infiltrating the Fire Nation Navy. That means you'll all need one of these uniforms.","Men, you'll be infiltrating the Fire Nation Navy. That means you'll all need one of these uniforms.",John O'Bryan,Lauren MacMullan,9.4 +4344,4344,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The camera pans upward, revealing a young man, Hahn, who appears in the uniform that will be used. Sokka laughs. The rest of the warriors turn to stare at him.",NA,John O'Bryan,Lauren MacMullan,9.4 +4345,4345,Water,1,"The Siege of the North, Part 1",19,Hahn,[Angrily.] What's your problem?,What's your problem?,John O'Bryan,Lauren MacMullan,9.4 +4346,4346,Water,1,"The Siege of the North, Part 1",19,Sokka,Fire Navy uniforms don't look like that.,Fire Navy uniforms don't look like that.,John O'Bryan,Lauren MacMullan,9.4 +4347,4347,Water,1,"The Siege of the North, Part 1",19,Hahn,[Irritably.] Of course they do. These are real uniforms captured from actual Fire Navy soldiers.,Of course they do. These are real uniforms captured from actual Fire Navy soldiers.,John O'Bryan,Lauren MacMullan,9.4 +4348,4348,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Sarcastically.] When, like, a hundred years ago?","When, like, a hundred years ago?",John O'Bryan,Lauren MacMullan,9.4 +4349,4349,Water,1,"The Siege of the North, Part 1",19,Arnook,Eighty-five.,Eighty-five.,John O'Bryan,Lauren MacMullan,9.4 +4350,4350,Water,1,"The Siege of the North, Part 1",19,Sokka,[Walks over and flings one of the shoulder spikes with his finger.] The Fire Nation doesn't wear shoulder spikes anymore. The newer uniforms are more streamlined.,The Fire Nation doesn't wear shoulder spikes anymore. The newer uniforms are more streamlined.,John O'Bryan,Lauren MacMullan,9.4 +4351,4351,Water,1,"The Siege of the North, Part 1",19,Scene Description,Sokka bends the tip of one of the shoulder spikes back with the tip of his finger and lets go. It bounces back to its original shape with a little comic sound effect.,NA,John O'Bryan,Lauren MacMullan,9.4 +4352,4352,Water,1,"The Siege of the North, Part 1",19,Hahn,"How do we know we can trust this guy? [Turns to growl at Sokka, who glares at him in return.] Such bold talk for a new recruit.",How do we know we can trust this guy? Such bold talk for a new recruit.,John O'Bryan,Lauren MacMullan,9.4 +4353,4353,Water,1,"The Siege of the North, Part 1",19,Arnook,"Sokka is from our sister tribe, Hahn. He's a capable warrior and I value his input. [Sokka shoots Hahn a smug look; Arnook turns to the rest of the regiment.] Now, our first objective is to determine the identity of their commanding officer.","Sokka is from our sister tribe, Hahn. He's a capable warrior and I value his input. Now, our first objective is to determine the identity of their commanding officer.",John O'Bryan,Lauren MacMullan,9.4 +4354,4354,Water,1,"The Siege of the North, Part 1",19,Sokka,"His name is Zhao. Middle-aged, [Tracing imaginary sideburns with his fingers.] big sideburns, bigger temper ...","His name is Zhao. Middle-aged, big sideburns, bigger temper ...",John O'Bryan,Lauren MacMullan,9.4 +4355,4355,Water,1,"The Siege of the North, Part 1",19,Arnook,"Sokka, I want you to tell everything you know to Hahn. He's leading this mission. Hahn, show Sokka your respect. [Beginning to walk away.] I expect nothing less from my future son-in-law.","Sokka, I want you to tell everything you know to Hahn. He's leading this mission. Hahn, show Sokka your respect. I expect nothing less from my future son-in-law.",John O'Bryan,Lauren MacMullan,9.4 +4356,4356,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Stares at Hahn, mouth agape; points at him and narrows his eyes.] Princess Yue's marrying you?",Princess Yue's marrying you?,John O'Bryan,Lauren MacMullan,9.4 +4357,4357,Water,1,"The Siege of the North, Part 1",19,Hahn,"[Irritated.] Yeah, what of it?","Yeah, what of it?",John O'Bryan,Lauren MacMullan,9.4 +4358,4358,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Turns away from Hahn, upset.] Nothing. Congratulations.",Nothing. Congratulations.,John O'Bryan,Lauren MacMullan,9.4 +4359,4359,Water,1,"The Siege of the North, Part 1",19,Scene Description,Scene fades to sunset where fireballs are continually launched. A bird's-eye view is shown of the fleet attacking the city. Cuts to several fireballs; camera pans downward to show them hitting the city.,NA,John O'Bryan,Lauren MacMullan,9.4 +4360,4360,Water,1,"The Siege of the North, Part 1",19,Pakku,[Pointing to the sky.] Stop those fireballs!,Stop those fireballs!,John O'Bryan,Lauren MacMullan,9.4 +4361,4361,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Cuts to shot of oncoming fireball. The waterbenders bend up a column of water and freeze it, capturing the fireball. Cuts to side-view of the leading ships of the fleet, the uprooted ship in view. The scene cuts to the interior of Zhao's ship.",NA,John O'Bryan,Lauren MacMullan,9.4 +4362,4362,Water,1,"The Siege of the North, Part 1",19,Iroh,"It's almost twilight, Admiral. As your military consultant, I must advise you to halt your attack. [Cuts to shot of the ship, sailing past a rising moon.] The waterbenders draw their power from the moon, and it is nearly full tonight. You should wait and resume the attack at daybreak. [Cuts back to Iroh and Zhao.]","It's almost twilight, Admiral. As your military consultant, I must advise you to halt your attack. The waterbenders draw their power from the moon, and it is nearly full tonight. You should wait and resume the attack at daybreak.",John O'Bryan,Lauren MacMullan,9.4 +4363,4363,Water,1,"The Siege of the North, Part 1",19,Zhao,"Oh, I'm well aware of the moon problem and I am working on a solution. But for now, daybreak it is.","Oh, I'm well aware of the moon problem and I am working on a solution. But for now, daybreak it is.",John O'Bryan,Lauren MacMullan,9.4 +4364,4364,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The lead ship drops its anchor, followed by the rest of the ships, who drop their anchors and cease the attack. Cuts to a shot of the city, smoke billowing from several spots. Yue can be seen looking out over the horizon.",NA,John O'Bryan,Lauren MacMullan,9.4 +4365,4365,Water,1,"The Siege of the North, Part 1",19,Yue,They've stopped firing.,They've stopped firing.,John O'Bryan,Lauren MacMullan,9.4 +4366,4366,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Yue and Katara stand side by side, viewing the city. Appa appears over the horizon, flying toward them.",NA,John O'Bryan,Lauren MacMullan,9.4 +4367,4367,Water,1,"The Siege of the North, Part 1",19,Katara,Aang!,Aang!,John O'Bryan,Lauren MacMullan,9.4 +4368,4368,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Aang lands on the ground, exasperated. Katara and Yue approach him.",NA,John O'Bryan,Lauren MacMullan,9.4 +4369,4369,Water,1,"The Siege of the North, Part 1",19,Aang,"[Clearly exhausted, placing his hands on his head.] I can't do it ... I can't do it.",I can't do it ... I can't do it.,John O'Bryan,Lauren MacMullan,9.4 +4370,4370,Water,1,"The Siege of the North, Part 1",19,Katara,What happened?,What happened?,John O'Bryan,Lauren MacMullan,9.4 +4371,4371,Water,1,"The Siege of the North, Part 1",19,Aang,"[Dimly.] I must have taken out a dozen Fire Navy ships, but there's just too many of them. I can't fight them all.","I must have taken out a dozen Fire Navy ships, but there's just too many of them. I can't fight them all.",John O'Bryan,Lauren MacMullan,9.4 +4372,4372,Water,1,"The Siege of the North, Part 1",19,Yue,"[Pleadingly.] But, you have to. You're the Avatar.","But, you have to. You're the Avatar.",John O'Bryan,Lauren MacMullan,9.4 +4373,4373,Water,1,"The Siege of the North, Part 1",19,Aang,[Solemnly.] I'm just one kid.,I'm just one kid.,John O'Bryan,Lauren MacMullan,9.4 +4374,4374,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He buries his face in his arms. Katara kneels down beside him in an attempt to comfort him. The scene changes to nightfall on the lead ship. Cuts inside a room where Zuko prepares a boat, winding up some rope. Iroh enters.",NA,John O'Bryan,Lauren MacMullan,9.4 +4375,4375,Water,1,"The Siege of the North, Part 1",19,Iroh,"If you're fishing for an octopus my nephew, you need a tightly woven net, or he will squeeze through the tiniest hole and escape.","If you're fishing for an octopus my nephew, you need a tightly woven net, or he will squeeze through the tiniest hole and escape.",John O'Bryan,Lauren MacMullan,9.4 +4376,4376,Water,1,"The Siege of the North, Part 1",19,Zuko,"I don't need your wisdom right now, Uncle.","I don't need your wisdom right now, Uncle.",John O'Bryan,Lauren MacMullan,9.4 +4377,4377,Water,1,"The Siege of the North, Part 1",19,Iroh,"I'm sorry. I just nag you, because ... well, [Voice breaking slightly.] ever since I lost my son ...","I'm sorry. I just nag you, because ... well, ever since I lost my son ...",John O'Bryan,Lauren MacMullan,9.4 +4378,4378,Water,1,"The Siege of the North, Part 1",19,Zuko,"Uncle, you don't have to say it.","Uncle, you don't have to say it.",John O'Bryan,Lauren MacMullan,9.4 +4379,4379,Water,1,"The Siege of the North, Part 1",19,Iroh,... I think of you as my own.,... I think of you as my own.,John O'Bryan,Lauren MacMullan,9.4 +4380,4380,Water,1,"The Siege of the North, Part 1",19,Zuko,"[Faces his uncle, a softer expression on his face.] I know, Uncle. We'll meet again. [Iroh hugs him.] After I have the Avatar. [He turns away and gets on the boat.]","I know, Uncle. We'll meet again. After I have the Avatar.",John O'Bryan,Lauren MacMullan,9.4 +4381,4381,Water,1,"The Siege of the North, Part 1",19,Iroh,Remember your breath of fire. It could save your life out there.,Remember your breath of fire. It could save your life out there.,John O'Bryan,Lauren MacMullan,9.4 +4382,4382,Water,1,"The Siege of the North, Part 1",19,Zuko,"I will. [Lowers the boat, suspended by ropes, down the side of the ship into the water.]",I will.,John O'Bryan,Lauren MacMullan,9.4 +4383,4383,Water,1,"The Siege of the North, Part 1",19,Iroh,And put your hood up. Keep your ears warm!,And put your hood up. Keep your ears warm!,John O'Bryan,Lauren MacMullan,9.4 +4384,4384,Water,1,"The Siege of the North, Part 1",19,Zuko,I'll be fine!,I'll be fine!,John O'Bryan,Lauren MacMullan,9.4 +4385,4385,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The shot cuts to the city, several ships lying stationery ahead of him. Back inside the warriors' base. Hahn and Sokka sharpen their axes against grindstones.",NA,John O'Bryan,Lauren MacMullan,9.4 +4386,4386,Water,1,"The Siege of the North, Part 1",19,Hahn,"[Smugly.] Let me tell you Sokka, I've courted a lot of girls, but Yue is the finest and she comes with the most perks.","Let me tell you Sokka, I've courted a lot of girls, but Yue is the finest and she comes with the most perks.",John O'Bryan,Lauren MacMullan,9.4 +4387,4387,Water,1,"The Siege of the North, Part 1",19,Sokka,[Annoyed.] Perks? What does that mean?,Perks? What does that mean?,John O'Bryan,Lauren MacMullan,9.4 +4388,4388,Water,1,"The Siege of the North, Part 1",19,Hahn,"I mean, Yue's nice and everything, but the points I'll gain with the chief aren't bad either.","I mean, Yue's nice and everything, but the points I'll gain with the chief aren't bad either.",John O'Bryan,Lauren MacMullan,9.4 +4389,4389,Water,1,"The Siege of the North, Part 1",19,Sokka,[Angered.] Princess Yue is wasted on a self-absorbed weasel like you!,Princess Yue is wasted on a self-absorbed weasel like you!,John O'Bryan,Lauren MacMullan,9.4 +4390,4390,Water,1,"The Siege of the North, Part 1",19,Hahn,"[Camera begins closing up on Hahn.] Whoa, hang on. What do you care? [Sokka closes his eyes sorrowfully.] You're just a simple rube from the Southern Tribe. What would you know of the political complexities of our life? [Smirking.] No offense.","Whoa, hang on. What do you care? You're just a simple rube from the Southern Tribe. What would you know of the political complexities of our life? No offense.",John O'Bryan,Lauren MacMullan,9.4 +4391,4391,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Shouts and tackles Hahn; the two begin rolling around on the floor in a struggle.] You're just a jerk without a soul, no offense!","You're just a jerk without a soul, no offense!",John O'Bryan,Lauren MacMullan,9.4 +4392,4392,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The two continue to roll about on the floor. Cuts to a shot of Sokka and Hahn, each pulling the other's ponytail in fury. They are suddenly separated by Arnook.",NA,John O'Bryan,Lauren MacMullan,9.4 +4393,4393,Water,1,"The Siege of the North, Part 1",19,Arnook,"That's enough! Sokka, you're off the mission!","That's enough! Sokka, you're off the mission!",John O'Bryan,Lauren MacMullan,9.4 +4394,4394,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Sokka, his hair loose and hanging in locks, appears stunned before crossing his arms in anger.",NA,John O'Bryan,Lauren MacMullan,9.4 +4395,4395,Water,1,"The Siege of the North, Part 1",19,Hahn,"All right, fall in men! Everybody listen to what I say and we'll take out this Admiral Cho in no time!","All right, fall in men! Everybody listen to what I say and we'll take out this Admiral Cho in no time!",John O'Bryan,Lauren MacMullan,9.4 +4396,4396,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Irritated, waves arms in gesture.] It's Admiral Zhao!",It's Admiral Zhao!,John O'Bryan,Lauren MacMullan,9.4 +4397,4397,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The scene changes to outside on the water where Zuko rows past, navigating his way through the path of ice spikes. Cuts to a view of a Water Tribe guard on patrol, pausing and looking out over the horizon just as Zuko's canoe disappears behind an ice spike. The guard continues walking. Cuts back to Zuko who continues to paddle toward the wall, before switching to a shot of him peering from behind an ice spike, his canoe pulled up onto the ice. Camera cuts to and zooms in on a shot of several Water Tribe guards marching atop the wall. Zuko turns around and sees a group of turtle seals resting by a hole in the ice. One seal plunges head first into the icy water. Zuko looks back up to the wall and begins approaching the hole.",NA,John O'Bryan,Lauren MacMullan,9.4 +4398,4398,Water,1,"The Siege of the North, Part 1",19,Zuko,"[Peering down into the hole.] Where are they going? [Cuts to a shot of the hole, his face reflected in the water.] They're coming up for air somewhere.",Where are they going? They're coming up for air somewhere.,John O'Bryan,Lauren MacMullan,9.4 +4399,4399,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He pulls down the mask covering his mouth and nose and inhales deeply. Cuts to shot of Zuko from beneath the water; he plunges into the water. The scene changes, cutting to a shot of the waxing gibbous moon hanging in the sky.",NA,John O'Bryan,Lauren MacMullan,9.4 +4400,4400,Water,1,"The Siege of the North, Part 1",19,Yue,"[Off camera.] The legends say the moon was the first waterbender. [Cuts to shot of her, Katara and Aang standing on a balcony, looking up at the sky.] Our ancestors saw how it pushed and pulled the tides and learned how to do it themselves.",The legends say the moon was the first waterbender. Our ancestors saw how it pushed and pulled the tides and learned how to do it themselves.,John O'Bryan,Lauren MacMullan,9.4 +4401,4401,Water,1,"The Siege of the North, Part 1",19,Katara,I've always noticed my waterbending is stronger at night.,I've always noticed my waterbending is stronger at night.,John O'Bryan,Lauren MacMullan,9.4 +4402,4402,Water,1,"The Siege of the North, Part 1",19,Yue,"Our strength comes from the spirit of the moon. Our life comes from the spirit of the ocean. [Camera pans slightly downward, showing Aang with a dull expression on his face.] They work together to keep balance.",Our strength comes from the spirit of the moon. Our life comes from the spirit of the ocean. They work together to keep balance.,John O'Bryan,Lauren MacMullan,9.4 +4403,4403,Water,1,"The Siege of the North, Part 1",19,Aang,"[Brightening.] The spirits! [Raises head, startling Momo.] Maybe I can find them and get their help!",The spirits! Maybe I can find them and get their help!,John O'Bryan,Lauren MacMullan,9.4 +4404,4404,Water,1,"The Siege of the North, Part 1",19,Yue,How can you do that?,How can you do that?,John O'Bryan,Lauren MacMullan,9.4 +4405,4405,Water,1,"The Siege of the North, Part 1",19,Katara,[Approaching her.] The Avatar is the bridge between our world and the Spirit World! Aang can talk to them!,The Avatar is the bridge between our world and the Spirit World! Aang can talk to them!,John O'Bryan,Lauren MacMullan,9.4 +4406,4406,Water,1,"The Siege of the North, Part 1",19,Yue,[To Aang.] Maybe they'll give you the wisdom to win this battle!,Maybe they'll give you the wisdom to win this battle!,John O'Bryan,Lauren MacMullan,9.4 +4407,4407,Water,1,"The Siege of the North, Part 1",19,Aang,"[Waves arms out in gesture.] Or maybe they'll unleash a crazy amazing spirit attack on the Fire Nation! [The two girls look at him oddly; Aang looks at them and straightens up.] Or wisdom. That's good, too.","Or maybe they'll unleash a crazy amazing spirit attack on the Fire Nation! Or wisdom. That's good, too.",John O'Bryan,Lauren MacMullan,9.4 +4408,4408,Water,1,"The Siege of the North, Part 1",19,Katara,"The only problem is, last time you got to the Spirit World by accident. How are you going to get there this time?","The only problem is, last time you got to the Spirit World by accident. How are you going to get there this time?",John O'Bryan,Lauren MacMullan,9.4 +4409,4409,Water,1,"The Siege of the North, Part 1",19,Yue,I have an idea. Follow me.,I have an idea. Follow me.,John O'Bryan,Lauren MacMullan,9.4 +4410,4410,Water,1,"The Siege of the North, Part 1",19,Scene Description,"She begins walking away. Cuts to a shot of the chief's Royal Palace, the camera panning downward to the ground where Yue walks by, followed by Aang and Katara. Cuts to shot of Yue standing by a small, round wooden door, Aang approaching close behind.",NA,John O'Bryan,Lauren MacMullan,9.4 +4411,4411,Water,1,"The Siege of the North, Part 1",19,Aang,"[Walking up to the door.] So, is this the way to the Spirit World?","So, is this the way to the Spirit World?",John O'Bryan,Lauren MacMullan,9.4 +4412,4412,Water,1,"The Siege of the North, Part 1",19,Yue,[Laughs.] No. You'll have to get there on your own. [Leans inward.] But I can take you to the most spiritual place in the entire North Pole. [Opens the door.],No. You'll have to get there on your own. But I can take you to the most spiritual place in the entire North Pole.,John O'Bryan,Lauren MacMullan,9.4 +4413,4413,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Aang steps inside. The camera pans upward and zooms in to reveal a small verdant oasis lying ahead, a waterfall flowing directly behind it. Zooms in on Aang, who gasps in amazement.",NA,John O'Bryan,Lauren MacMullan,9.4 +4414,4414,Water,1,"The Siege of the North, Part 1",19,Aang,[Runs to the back of the oasis and rolls around on the ground.] I never thought I'd miss grass this much!,I never thought I'd miss grass this much!,John O'Bryan,Lauren MacMullan,9.4 +4415,4415,Water,1,"The Siege of the North, Part 1",19,Katara,[Approaching the oasis.] It's so warm here! How is that possible?,It's so warm here! How is that possible?,John O'Bryan,Lauren MacMullan,9.4 +4416,4416,Water,1,"The Siege of the North, Part 1",19,Yue,It's the center of all spiritual energy in our land.,It's the center of all spiritual energy in our land.,John O'Bryan,Lauren MacMullan,9.4 +4417,4417,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The two girls remove their coats. Cuts to view of two fish, one black and one white, swimming about in the pond. Momo sticks his hand in the pond and tries to grab the two fish in the water. Cuts to shot of the two girls standing over him, looking rather irritated.",NA,John O'Bryan,Lauren MacMullan,9.4 +4418,4418,Water,1,"The Siege of the North, Part 1",19,Aang,"You're right, Yue. I can feel ... something. It's so tranquil. [Positions himself to meditate.]","You're right, Yue. I can feel ... something. It's so tranquil.",John O'Bryan,Lauren MacMullan,9.4 +4419,4419,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Meanwhile, Zuko emerges from the water through another hole in the ice. He lies on his back on the ice and catches his breath. He rolls over onto his side, begins shivering and breathes fire to warm himself.",NA,John O'Bryan,Lauren MacMullan,9.4 +4420,4420,Water,1,"The Siege of the North, Part 1",19,Zuko,[To the barking turtle seals.] Be quiet!,Be quiet!,John O'Bryan,Lauren MacMullan,9.4 +4421,4421,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The pack of seals quiets down. Cuts to shot of several seals, who watch as Zuko walks past, pushing aside the heads of two of them. They resume barking. He makes his way through another opening where water is pouring out. Cuts to shot of his foot boring into the wall as he tries to steady himself and make his way through the channel of water. Cuts to inside the channel, where he slowly crawls his way through. Cut back to the warriors' base. Sokka is crouched on the floor, sharpening his boomerang when he is approached.",NA,John O'Bryan,Lauren MacMullan,9.4 +4422,4422,Water,1,"The Siege of the North, Part 1",19,Arnook,"Is something wrong, Sokka?","Is something wrong, Sokka?",John O'Bryan,Lauren MacMullan,9.4 +4423,4423,Water,1,"The Siege of the North, Part 1",19,Sokka,"[Sarcastically.] Oh, no. Hahn's out there on the top-secret mission while I'm here sharpening my boomerang. Everything's fine.","Oh, no. Hahn's out there on the top-secret mission while I'm here sharpening my boomerang. Everything's fine.",John O'Bryan,Lauren MacMullan,9.4 +4424,4424,Water,1,"The Siege of the North, Part 1",19,Arnook,Listen to me. I took you off the mission for selfish reasons. I have a special task in mind for you.,Listen to me. I took you off the mission for selfish reasons. I have a special task in mind for you.,John O'Bryan,Lauren MacMullan,9.4 +4425,4425,Water,1,"The Siege of the North, Part 1",19,Sokka,"What, you want me to scrub the barracks?","What, you want me to scrub the barracks?",John O'Bryan,Lauren MacMullan,9.4 +4426,4426,Water,1,"The Siege of the North, Part 1",19,Arnook,"I want you to guard my daughter, Princess Yue.","I want you to guard my daughter, Princess Yue.",John O'Bryan,Lauren MacMullan,9.4 +4427,4427,Water,1,"The Siege of the North, Part 1",19,Sokka,[Rises and tries to act cool.] Oh ... Sure. That ... shouldn't be too hard.,Oh ... Sure. That ... shouldn't be too hard.,John O'Bryan,Lauren MacMullan,9.4 +4428,4428,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Arnook exits the scene; Sokka's face falls. Zuko continues to make his way through the channel of water. He exits from the channel and floats to the surface of the water. He emerges from the surface and inhales deeply several times. He proceeds to duck his head under the water, surveying the area. The camera zooms in on another channel. Zuko swims toward the channel and upward. As he attempts to resurface, however, the surface of the water had frozen into a thick ice patch. Zuko tries to break through the ice. He suddenly exhales, signaling his need for air. He heats his hands using firebending and melts a hole in the ice. Cuts to a tunnel way in the city, the ice steaming and finally melting away. Zuko emerges and catches his breath. He relaxes against the wall of the tunnel. The scene changes back to the Spirit Oasis, where Aang is meditating, Katara and Yue watching him.",NA,John O'Bryan,Lauren MacMullan,9.4 +4429,4429,Water,1,"The Siege of the North, Part 1",19,Yue,Why is he sitting like that?,Why is he sitting like that?,John O'Bryan,Lauren MacMullan,9.4 +4430,4430,Water,1,"The Siege of the North, Part 1",19,Katara,"He's meditating, trying to cross over into the Spirit World. [Aang scrunches up his face in concentration.] It takes all his concentration.","He's meditating, trying to cross over into the Spirit World. It takes all his concentration.",John O'Bryan,Lauren MacMullan,9.4 +4431,4431,Water,1,"The Siege of the North, Part 1",19,Yue,Is there any way we can help?,Is there any way we can help?,John O'Bryan,Lauren MacMullan,9.4 +4432,4432,Water,1,"The Siege of the North, Part 1",19,Aang,"[Angrily.] How about some quiet? Come on guys, I can hear every word you're saying!","How about some quiet? Come on guys, I can hear every word you're saying!",John O'Bryan,Lauren MacMullan,9.4 +4433,4433,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The camera zooms in on the pond, where the two koi fish are shown circling each other. Cuts to shot of beneath the pond, showing an underside-view of the two fish. Cuts to shot of Aang staring at the fish, seemingly mesmerized. Cuts back to two fish circling each other before switching back to Aang. Cuts back to image of the two fish, which morphs into an image of the symbols for yin and yang. Cuts back to Aang, as his eyes and tattoos to light up.",NA,John O'Bryan,Lauren MacMullan,9.4 +4434,4434,Water,1,"The Siege of the North, Part 1",19,Yue,[Worried.] Is he okay?,Is he okay?,John O'Bryan,Lauren MacMullan,9.4 +4435,4435,Water,1,"The Siege of the North, Part 1",19,Katara,He's crossing into the Spirit World. He'll be fine as long as we don't move his body. [Cuts to overhead shot of the pond.] That's his way back to the physical world.,He's crossing into the Spirit World. He'll be fine as long as we don't move his body. That's his way back to the physical world.,John O'Bryan,Lauren MacMullan,9.4 +4436,4436,Water,1,"The Siege of the North, Part 1",19,Yue,Maybe we should get some help.,Maybe we should get some help.,John O'Bryan,Lauren MacMullan,9.4 +4437,4437,Water,1,"The Siege of the North, Part 1",19,Katara,"[Smiling.] No, he's my friend. I'm perfectly capable of protecting him.","No, he's my friend. I'm perfectly capable of protecting him.",John O'Bryan,Lauren MacMullan,9.4 +4438,4438,Water,1,"The Siege of the North, Part 1",19,Zuko,"[Sarcastically.] Well, aren't you a big girl now.","Well, aren't you a big girl now.",John O'Bryan,Lauren MacMullan,9.4 +4439,4439,Water,1,"The Siege of the North, Part 1",19,Katara,[Alarmed and dismayed.] No ...,No ...,John O'Bryan,Lauren MacMullan,9.4 +4440,4440,Water,1,"The Siege of the North, Part 1",19,Zuko,[Determined.] Yes. Hand him over and I won't have to hurt you.,Yes. Hand him over and I won't have to hurt you.,John O'Bryan,Lauren MacMullan,9.4 +4441,4441,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Yue runs from the scene as Katara assumes a defensive stance, Zuko appearing on screen. Cuts to Zuko, who kicks up his leg, sending a fire blast Katara's way. He fires more blasts from his hands. Cuts to shot of Zuko and Katara, Zuko continually firing as Katara conjures up water shields to deflect the attacks. Cuts to Katara, who draws water from the pond and sends the stream at Zuko, who is preparing another attack. The blast pushes Zuko back several feet and knocks him to the ground.",NA,John O'Bryan,Lauren MacMullan,9.4 +4442,4442,Water,1,"The Siege of the North, Part 1",19,Zuko,"[Rising.] I see you've learned a new trick, but I didn't come this far to lose to you.","I see you've learned a new trick, but I didn't come this far to lose to you.",John O'Bryan,Lauren MacMullan,9.4 +4443,4443,Water,1,"The Siege of the North, Part 1",19,Scene Description,"He turns around and fires another blast which Katara blocks by summoning another shield of water. Cuts to shot of Zuko, Katara, and Aang as Katara sends a powerful jet of water at her opponent. The jet collides into Zuko, who is sent farther back. As he attempts to steady himself from the impact, small juts of ice form around his feet. Cuts to close-up of Katara, a determined look on her face. Water begins rising around Zuko and encircling him. Katara waves her arms about wildly, forming a ball of water around him which she freezes solid. Cuts to close-up of her as she smiles triumphantly. Cuts to Zuko imprisoned in the ice.",NA,John O'Bryan,Lauren MacMullan,9.4 +4444,4444,Water,1,"The Siege of the North, Part 1",19,Zuko,"You little peasant. You've found a master, haven't you?","You little peasant. You've found a master, haven't you?",John O'Bryan,Lauren MacMullan,9.4 +4445,4445,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The globule of ice begins glowing bright orange with heat and the ground rumbles. Cuts to view of entire globule as it heats up intensely before melting. He fires repeated attacks at Katara, who draws water from the oasis to deflect the attacks. She prepares to strike him with a water blast, however, Zuko manages to slip away and head toward Aang. Just as his fingers grasp Aang's collar, Katara fires a water blast, throwing Zuko to the other wall. She whips up a large wave and sends the attack at Zuko. The rush of water sends Zuko up the side of the cliff; she freezes the water, encasing him in ice. Cuts to Pakku who looks over the horizon in the city as the sun rises. The scene cuts to Zhao's ship.",NA,John O'Bryan,Lauren MacMullan,9.4 +4446,4446,Water,1,"The Siege of the North, Part 1",19,Zhao,It's daybreak at last. Let's write history.,It's daybreak at last. Let's write history.,John O'Bryan,Lauren MacMullan,9.4 +4447,4447,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Back to the Spirit Oasis, rays of sunlight beam down on Zuko, who remains imprisoned in the ice, his head bent down. He feels the heat and sharply raises his head. With a determined look on his face, he breathes steam from his nose, melting the ice quickly. He lands on the ground and fires a blast at Katara, who had her back turned to him at that moment. She turns around swiftly and attempts to deflect the blast by conjuring a water shield; however, she creates the shield too late. The blast sends her slamming into the gate to the Spirit World, knocking her out. Smoke from the impact fills the screen. Cuts to shot of Zuko standing over her, holding Aang by the collar.",NA,John O'Bryan,Lauren MacMullan,9.4 +4448,4448,Water,1,"The Siege of the North, Part 1",19,Zuko,You rise with the moon ... I rise with the sun.,You rise with the moon ... I rise with the sun.,John O'Bryan,Lauren MacMullan,9.4 +4449,4449,Water,1,"The Siege of the North, Part 1",19,Scene Description,"The scene changes to where Fire Navy ships break through the city wall, their bows crumbling the wall, allowing soldiers armed with spears to rush in.",NA,John O'Bryan,Lauren MacMullan,9.4 +4450,4450,Water,1,"The Siege of the North, Part 1",19,Zhao,"The Water Tribe can try to resist the inevitable, but their city will fall today.","The Water Tribe can try to resist the inevitable, but their city will fall today.",John O'Bryan,Lauren MacMullan,9.4 +4451,4451,Water,1,"The Siege of the North, Part 1",19,Scene Description,"Cuts back to the oasis. Camera focuses on a close-up of Katara, whose eyes suddenly snap open as she regains consciousness, only to realize Aang is gone. She crawls around, desperately searching for him.",NA,John O'Bryan,Lauren MacMullan,9.4 +4452,4452,Water,1,"The Siege of the North, Part 1",19,Katara,Aang!,Aang!,John O'Bryan,Lauren MacMullan,9.4 +4453,4453,Water,1,"The Siege of the North, Part 1",19,Scene Description,Sokka and Yue enter on Appa.,NA,John O'Bryan,Lauren MacMullan,9.4 +4454,4454,Water,1,"The Siege of the North, Part 1",19,Sokka,What happened? Where's Zuko?,What happened? Where's Zuko?,John O'Bryan,Lauren MacMullan,9.4 +4455,4455,Water,1,"The Siege of the North, Part 1",19,Katara,[Dismayed.] He took Aang. He took him right out from under me.,He took Aang. He took him right out from under me.,John O'Bryan,Lauren MacMullan,9.4 +4456,4456,Water,1,"The Siege of the North, Part 1",19,Scene Description,Cuts to shot of Momo looking sorrowfully from the edge of the pond.,NA,John O'Bryan,Lauren MacMullan,9.4 +4457,4457,Water,1,"The Siege of the North, Part 1",19,Sokka,[Off-camera.] Where did they go ...,Where did they go ...,John O'Bryan,Lauren MacMullan,9.4 +4458,4458,Water,1,"The Siege of the North, Part 1",19,Scene Description,The camera pans upward to above the oasis where Zuko is seen walking through a blizzard with Aang in tow. Cuts to shot of them walking away. The camera pans upward to show the snow falling.,NA,John O'Bryan,Lauren MacMullan,9.4 +4459,4459,Water,1,"The Siege of the North, Part 1",19,Scene Description,Fades to credits.,NA,John O'Bryan,Lauren MacMullan,9.4 +4460,4460,Water,1,"The Siege of the North, Part 2",20,Scene Description,"The episode opens to the Northern Water Tribe as the siege continues. Four fireballs streak past the screen. Cuts to overhead shot of the city as the fireballs strike various locations. The camera pans downward past the Tribal Chief's palace to the Spirit Oasis where Appa can be seen presiding by the pond. Cuts to shot of the two koi fish, the Moon and Ocean Spirits, swimming in their usual circular pattern.",NA,Aaron Ehasz,Dave Filoni,NA +4461,4461,Water,1,"The Siege of the North, Part 2",20,Katara,[Off-screen; sorrowfully.] I can't believe I lost him.,I can't believe I lost him.,Aaron Ehasz,Dave Filoni,NA +4462,4462,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Cut to full shot of the pond, Sokka and Yue standing beside Katara, who is kneeling on the ground.",NA,Aaron Ehasz,Dave Filoni,NA +4463,4463,Water,1,"The Siege of the North, Part 2",20,Sokka,"You did everything you could, and now we need to do everything we can to get him back. [Cuts to shot of Katara who looks up at her brother, tears in her eyes.] Zuko can't have gotten far. We'll find him. Aang's gonna be fine.","You did everything you could, and now we need to do everything we can to get him back. Zuko can't have gotten far. We'll find him. Aang's gonna be fine.",Aaron Ehasz,Dave Filoni,NA +4464,4464,Water,1,"The Siege of the North, Part 2",20,Katara,"Okay. [Closes eyes and gets up. Camera pans over to where Momo remains motionless on the ground. Cuts to shot of Appa, Katara having mounted the bison.] It's all right. You stay here, Momo, in case Aang comes back.","Okay. It's all right. You stay here, Momo, in case Aang comes back.",Aaron Ehasz,Dave Filoni,NA +4465,4465,Water,1,"The Siege of the North, Part 2",20,Sokka,"Yip, yip.","Yip, yip.",Aaron Ehasz,Dave Filoni,NA +4466,4466,Water,1,"The Siege of the North, Part 2",20,Scene Description,"The camera pans upward as Appa takes off, heading upward to a location above the oasis, a vast frozen tundra where a blizzard is raging. Cuts to shot of the icy terrain of the tundra as the bison progresses. Cuts to shot of the ground, a path visible in the snow where someone has clearly been trudging along; the camera pans upward. Cuts to shot of Zuko plodding through the snow, his face partially covered to protect him from the cold, Aang slung across his back. Cuts to shot of an unconscious Aang, his tattooed arrows glowing. +The scene changes suddenly, zooming out on Aang who is sitting in a meditating position on a small wooden platform in an unknown location in the Spirit World. Cuts to shot of his surroundings which are not that of the icy tundra, but a mystical swamp dotted with trees. A large white bird of some sort flies past. Cuts to shot of Aang as the bird flies over the screen; he stands and begins wandering about. Cuts to shot of a figure in the distance sitting beneath a simple wooden entranceway. The figure can be heard uttering the sound ""Ohm"". Aang appears on-screen, turns his head in the direction of the sound and begins making his way toward the figure. Cuts to side-view of the figure, a monkey-like creature, as Aang approaches him, before cutting to a shot of the two with the figure's back to the camera.",NA,Aaron Ehasz,Dave Filoni,NA +4467,4467,Water,1,"The Siege of the North, Part 2",20,Aang,Hello? I'm sorry to disturb you. I just really need to find the Moon and the Ocean Spirits.,Hello? I'm sorry to disturb you. I just really need to find the Moon and the Ocean Spirits.,Aaron Ehasz,Dave Filoni,NA +4468,4468,Water,1,"The Siege of the North, Part 2",20,Baboon spirit,[Cut to a frontal shot of the baboon spirit.] Go. Away. [Opens one eye. Cut back to the side-shot.] You're still here?,Go. Away. You're still here?,Aaron Ehasz,Dave Filoni,NA +4469,4469,Water,1,"The Siege of the North, Part 2",20,Aang,"Yes, I need -","Yes, I need -",Aaron Ehasz,Dave Filoni,NA +4470,4470,Water,1,"The Siege of the North, Part 2",20,Baboon spirit,"[Cut to close-up of the baboon spirit who shuts his eyes tightly. Louder, trying to distract himself.] Ohm! [A firefly flies past; points at the insect.] Perhaps that thing will help you. Chase it. [Aang runs after it. The mystical monkey keeps his eyes shut for a second more before opening one to confirm Aang's departure. He shakes his head and breathes a sigh of relief.] Finally.",Ohm! Perhaps that thing will help you. Chase it. Finally.,Aaron Ehasz,Dave Filoni,NA +4471,4471,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Cuts to a shot of Aang chasing the insect throughout the swamp and up a tree. He leaps up and manages to grasp hold of it and is delighted in doing so. Cuts to zoomed out shot of him as he lands on a tree branch which instantly shrivels up and disappears entirely, causing him to fall. Cuts briefly to close-up shot of an alarmed Aang before switching to a shot of him falling into the water. Aang is shown lying on his back in the water, the firefly having escaped his grip. It flies away as he tries to reach it again.",NA,Aaron Ehasz,Dave Filoni,NA +4472,4472,Water,1,"The Siege of the North, Part 2",20,Aang,Come back!,Come back!,Aaron Ehasz,Dave Filoni,NA +4473,4473,Water,1,"The Siege of the North, Part 2",20,Scene Description,"He stands up. Cuts to shot of him looking down at the water, when Roku suddenly appears before Aang in a reflection in the water.",NA,Aaron Ehasz,Dave Filoni,NA +4474,4474,Water,1,"The Siege of the North, Part 2",20,Roku,"Hello, Aang.","Hello, Aang.",Aaron Ehasz,Dave Filoni,NA +4475,4475,Water,1,"The Siege of the North, Part 2",20,Aang,[Looking at him; surprised.] Roku!,Roku!,Aaron Ehasz,Dave Filoni,NA +4476,4476,Water,1,"The Siege of the North, Part 2",20,Scene Description,"The scene cuts back to the real world, where Zuko continues his trek through the icy tundra. Cuts to close-up of him before a shot of the ground where he steps on ice that begins cracking beneath his feet; his eyes widen in surprise at this. Cuts to overhead shot of him, the camera zooming out, as the ice begins to splinter and cave in. Cuts to shot of him on high alert as he begins running, before switching to an overhead shot of him as he races through the snow. Cuts to shot of him as the impact of the ice caving in throws him off-balance. +Zuko is thrown several feet away and lands roughly in the snow, losing his grip on Aang and kicking up a cloud of snow. The cloud dissipates, showing Zuko and Aang lying in the snow. Cuts to shot of Zuko, as he raises his head and looks at the scene. Cuts to shot of the aftermath of the cave-in, the ground severely disrupted, and a shot of Zuko once more. He spots a cave off in the distance.",NA,Aaron Ehasz,Dave Filoni,NA +4477,4477,Water,1,"The Siege of the North, Part 2",20,Zuko,Shelter. [Drags Aang into the cave and ties him up.],Shelter.,Aaron Ehasz,Dave Filoni,NA +4478,4478,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Back in the Spirit World, Aang is speaking with Roku.",NA,Aaron Ehasz,Dave Filoni,NA +4479,4479,Water,1,"The Siege of the North, Part 2",20,Aang,"Roku, the Water Tribe's under attack. I need to find the Ocean and the Moon Spirits.","Roku, the Water Tribe's under attack. I need to find the Ocean and the Moon Spirits.",Aaron Ehasz,Dave Filoni,NA +4480,4480,Water,1,"The Siege of the North, Part 2",20,Roku,[Pops out of the reflection in front of Aang.] The Ocean and the Moon are ancient spirits. They crossed over the Spirit World to the mortal world very near the beginning. There is only one spirit I know of who is old enough to remember.,The Ocean and the Moon are ancient spirits. They crossed over the Spirit World to the mortal world very near the beginning. There is only one spirit I know of who is old enough to remember.,Aaron Ehasz,Dave Filoni,NA +4481,4481,Water,1,"The Siege of the North, Part 2",20,Aang,Who?,Who?,Aaron Ehasz,Dave Filoni,NA +4482,4482,Water,1,"The Siege of the North, Part 2",20,Roku,"The spirit's name is Koh, but he is very dangerous. They call him the Face Stealer. [Aang looks horrified.] When you speak with him, you must be very careful to show no emotion at all. Not the slightest expression, or he will steal your face. [Aang looks even more horrified but calmly nods, understanding the situation.]","The spirit's name is Koh, but he is very dangerous. They call him the Face Stealer. When you speak with him, you must be very careful to show no emotion at all. Not the slightest expression, or he will steal your face.",Aaron Ehasz,Dave Filoni,NA +4483,4483,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Meanwhile, in the real world, Katara, Sokka, and Yue arrive to where the ice broke earlier. In the cave, Zuko is keeping warm with Breath of Fire while Aang, now tied up, remains in the Spirit World.",NA,Aaron Ehasz,Dave Filoni,NA +4484,4484,Water,1,"The Siege of the North, Part 2",20,Zuko,"I finally have you, but I can't get you home because of this blizzard. [Stands up and looks outside the cave.] There's always something. Not that you would understand. You're like my sister. Everything always came easy to her. She's a firebending prodigy, and everyone adores her. My father says she was born lucky. He says I was lucky to be born. I don't need luck, though. I don't want it. I've always had to struggle and fight and that's made me strong. It's made me who I am.","I finally have you, but I can't get you home because of this blizzard. There's always something. Not that you would understand. You're like my sister. Everything always came easy to her. She's a firebending prodigy, and everyone adores her. My father says she was born lucky. He says I was lucky to be born. I don't need luck, though. I don't want it. I've always had to struggle and fight and that's made me strong. It's made me who I am.",Aaron Ehasz,Dave Filoni,NA +4485,4485,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Meanwhile, back at the invasion, the Fire Nation has breached part of the wall. On the lead ship, Zhao and Iroh are speaking.",NA,Aaron Ehasz,Dave Filoni,NA +4486,4486,Water,1,"The Siege of the North, Part 2",20,Iroh,"I don't need to remind you we have a time limit. If we don't defeat the Water Tribe before the full moon rises, they will be undefeatable.","I don't need to remind you we have a time limit. If we don't defeat the Water Tribe before the full moon rises, they will be undefeatable.",Aaron Ehasz,Dave Filoni,NA +4487,4487,Water,1,"The Siege of the North, Part 2",20,Zhao,I assure you I have everything under control. I intend to remove the moon as a factor.,I assure you I have everything under control. I intend to remove the moon as a factor.,Aaron Ehasz,Dave Filoni,NA +4488,4488,Water,1,"The Siege of the North, Part 2",20,Iroh,[Shocked.] Remove the moon? How?,Remove the moon? How?,Aaron Ehasz,Dave Filoni,NA +4489,4489,Water,1,"The Siege of the North, Part 2",20,Scene Description,Hahn appears behind them and points his spear at Zhao.,NA,Aaron Ehasz,Dave Filoni,NA +4490,4490,Water,1,"The Siege of the North, Part 2",20,Hahn,Admiral Choi! Prepare to meet your fate!,Admiral Choi! Prepare to meet your fate!,Aaron Ehasz,Dave Filoni,NA +4491,4491,Water,1,"The Siege of the North, Part 2",20,Scene Description,"He charges at Zhao, who casually tosses him overboard as he is still screaming. A loud splash is heard, while Iroh shakes his head in disappointment.",NA,Aaron Ehasz,Dave Filoni,NA +4492,4492,Water,1,"The Siege of the North, Part 2",20,Zhao,"[Continuing as if nothing happened.] As I was saying, years ago I stumble upon a great and powerful secret: the identity of the Moon Spirit's mortal form.","As I was saying, years ago I stumble upon a great and powerful secret: the identity of the Moon Spirit's mortal form.",Aaron Ehasz,Dave Filoni,NA +4493,4493,Water,1,"The Siege of the North, Part 2",20,Iroh,What?,What?,Aaron Ehasz,Dave Filoni,NA +4494,4494,Water,1,"The Siege of the North, Part 2",20,Zhao,"I was a young lieutenant serving under General Shu in the Earth Kingdom. [Fade to a flashback of a young Zhao tearing through scrolls in a library.] I discovered a hidden library. Underground, in fact. I tore through scroll after scroll. One of them contained a detailed illustration, and the words ""moon"" and ""ocean"". I knew then that these spirits could be found and killed. [The memory ends with a close up of Zhao's eyes, fade to the present.] And that it was my destiny to do so.","I was a young lieutenant serving under General Shu in the Earth Kingdom. I discovered a hidden library. Underground, in fact. I tore through scroll after scroll. One of them contained a detailed illustration, and the words ""moon"" and ""ocean"". I knew then that these spirits could be found and killed. And that it was my destiny to do so.",Aaron Ehasz,Dave Filoni,NA +4495,4495,Water,1,"The Siege of the North, Part 2",20,Iroh,"[Somewhat angrily.] Zhao, the spirits are not to be trifled with!","Zhao, the spirits are not to be trifled with!",Aaron Ehasz,Dave Filoni,NA +4496,4496,Water,1,"The Siege of the North, Part 2",20,Zhao,"Yes, yes ... I know you fear the spirits, Iroh. I've heard rumors about your journey into the Spirit World. But the Ocean and Moon gave up their immortality to become a part of our world. And now they will face the consequences.","Yes, yes ... I know you fear the spirits, Iroh. I've heard rumors about your journey into the Spirit World. But the Ocean and Moon gave up their immortality to become a part of our world. And now they will face the consequences.",Aaron Ehasz,Dave Filoni,NA +4497,4497,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Back in the Spirit World, Aang walks up a giant tree, seeing the entrance to the cave Koh can be found in. Aang stares and slightly steps toward the cave hearing creepy noises. He glances to his left noticing that the noise wasn't coming from the cave. Aang sighs in relief.",NA,Aaron Ehasz,Dave Filoni,NA +4498,4498,Water,1,"The Siege of the North, Part 2",20,Aang,You're just a curly tailed blue nose.,You're just a curly tailed blue nose.,Aaron Ehasz,Dave Filoni,NA +4499,4499,Water,1,"The Siege of the North, Part 2",20,Scene Description,"The monkey turns its head toward Aang, exposing that he has no face.",NA,Aaron Ehasz,Dave Filoni,NA +4500,4500,Water,1,"The Siege of the North, Part 2",20,Aang,[Startled.] Aaahhh! [Aang takes a deep breath and speaks with his and Avatar Roku's voices combined.] Show no fear. Show no emotion at all.,Aaahhh! Show no fear. Show no emotion at all.,Aaron Ehasz,Dave Filoni,NA +4501,4501,Water,1,"The Siege of the North, Part 2",20,Scene Description,Aang steps into the cave with a straight face.,NA,Aaron Ehasz,Dave Filoni,NA +4502,4502,Water,1,"The Siege of the North, Part 2",20,Aang,Hello? I-I'm looking for a spirit named 'Koh'.,Hello? I-I'm looking for a spirit named 'Koh'.,Aaron Ehasz,Dave Filoni,NA +4503,4503,Water,1,"The Siege of the North, Part 2",20,Scene Description,"As Aang says the spirit's name, some ""roots"" on the ceiling begin to move. Aang looks around, sensing movement, but sees nothing. Cut to a close-up of Aang's face that pans slightly left, leaving the right hand portion of the screen over his shoulder momentarily empty. A moment later, a white face appears with gray patches around its eyes and luscious, blood-red lips. Cut to a close-up of the lips, which smile. Cut to a profile of Aang, his face emotionless. Suddenly, a huge centipede-like body arcs around Aang and appears in front of his face. The white, clown-like face of Koh is inches away from Aang. Around the spirit's face are eight additional legs.",NA,Aaron Ehasz,Dave Filoni,NA +4504,4504,Water,1,"The Siege of the North, Part 2",20,Koh,"[Creepily, circling Aang.] Welcome!",Welcome!,Aaron Ehasz,Dave Filoni,NA +4505,4505,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Aang keeps his face straight. Cut to a long shot; the spirit hangs from the ceiling in front of Aang, who bows with his hands clasped in front of him in a gesture of honor.",NA,Aaron Ehasz,Dave Filoni,NA +4506,4506,Water,1,"The Siege of the North, Part 2",20,Aang,"[Emotionlessly.] Thank you. [Koh wheels around Aang to look at him from behind. His voice is low and melodic, almost purring.]",Thank you.,Aaron Ehasz,Dave Filoni,NA +4507,4507,Water,1,"The Siege of the North, Part 2",20,Koh,"My old friend, the Avatar. It's been a long time.","My old friend, the Avatar. It's been a long time.",Aaron Ehasz,Dave Filoni,NA +4508,4508,Water,1,"The Siege of the North, Part 2",20,Aang,You know me?,You know me?,Aaron Ehasz,Dave Filoni,NA +4509,4509,Water,1,"The Siege of the North, Part 2",20,Koh,"[Now facing the camera, away from Aang.] How could I forget [He switches with a ""winking"" effect, as if some sort of nictitating membrane closes briefly over the old face to reveal a new one, to a mad face of a middle-aged, mustached man with thick eyebrows, long mustache, and beard; angrily.] you? One of your previous incarnations tried to slay me! Nearly eight or nine hundred years ago.",How could I forget you? One of your previous incarnations tried to slay me! Nearly eight or nine hundred years ago.,Aaron Ehasz,Dave Filoni,NA +4510,4510,Water,1,"The Siege of the North, Part 2",20,Aang,"[Confused, yet seriously.] I didn't know that. Why did he, or I, try to kill you?","I didn't know that. Why did he, or I, try to kill you?",Aaron Ehasz,Dave Filoni,NA +4511,4511,Water,1,"The Siege of the North, Part 2",20,Koh,"[Switches to Ummi's scared, sad face.] Oh, it was something about stealing the face of someone you loved. [Cut to a close-up of Aang with the camera slowing, zooming in on his face. Cut back to Koh, whose face turns malicious and switches to a baboon's while laughing. Switch to a side-shot; Aang keeps a straight face while not taking his eyes off Koh as he circles around him.] Of course, that's all behind us. Why should I hold a grudge against you for something in a past life? After all, you're a different person now. [Speaks into Aang's ear from behind.] You've come to me ... with a new face.","Oh, it was something about stealing the face of someone you loved. Of course, that's all behind us. Why should I hold a grudge against you for something in a past life? After all, you're a different person now. You've come to me ... with a new face.",Aaron Ehasz,Dave Filoni,NA +4512,4512,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Aang closes his eyes and takes a deep breath to the words into his ear, crossing the scene to the real world, Zuko seeing his breath.",NA,Aaron Ehasz,Dave Filoni,NA +4513,4513,Water,1,"The Siege of the North, Part 2",20,Zuko,Guess we'll be here awhile.,Guess we'll be here awhile.,Aaron Ehasz,Dave Filoni,NA +4514,4514,Water,1,"The Siege of the North, Part 2",20,Scene Description,Cut to exterior of the cave. Cut to Appa in the blizzard.,NA,Aaron Ehasz,Dave Filoni,NA +4515,4515,Water,1,"The Siege of the North, Part 2",20,Yue,"Don't worry, Prince Zuko can't be getting too far in this weather.","Don't worry, Prince Zuko can't be getting too far in this weather.",Aaron Ehasz,Dave Filoni,NA +4516,4516,Water,1,"The Siege of the North, Part 2",20,Katara,I'm not worried they'll get away in the blizzard. I'm worried that they won't.,I'm not worried they'll get away in the blizzard. I'm worried that they won't.,Aaron Ehasz,Dave Filoni,NA +4517,4517,Water,1,"The Siege of the North, Part 2",20,Sokka,"They're not going to die in this blizzard. If we know anything, it's that Zuko never gives up. They'll survive, and we'll find them.","They're not going to die in this blizzard. If we know anything, it's that Zuko never gives up. They'll survive, and we'll find them.",Aaron Ehasz,Dave Filoni,NA +4518,4518,Water,1,"The Siege of the North, Part 2",20,Scene Description,"The screen flashes white back to the Spirit World to Aang's talk with the face stealer, Koh circling loosely around Aang.",NA,Aaron Ehasz,Dave Filoni,NA +4519,4519,Water,1,"The Siege of the North, Part 2",20,Koh,[Continues to circle around Aang.] It's been a long time since I've added a child's face to my collection. [His face is now that of an owl.] So ... how may I help you?,It's been a long time since I've added a child's face to my collection. So ... how may I help you?,Aaron Ehasz,Dave Filoni,NA +4520,4520,Water,1,"The Siege of the North, Part 2",20,Aang,I need to find the moon and the ocean.,I need to find the moon and the ocean.,Aaron Ehasz,Dave Filoni,NA +4521,4521,Water,1,"The Siege of the North, Part 2",20,Koh,"Their spirit names are Tui and La, push and pull. And that has been the nature of their relationship for all time.","Their spirit names are Tui and La, push and pull. And that has been the nature of their relationship for all time.",Aaron Ehasz,Dave Filoni,NA +4522,4522,Water,1,"The Siege of the North, Part 2",20,Aang,[Side-view of Aang.] Please. Help me find them. An entire culture could be destroyed if I don't get their help. [Top-down view of Koh who changes his face to that of an old man. Aang is visible below him.],Please. Help me find them. An entire culture could be destroyed if I don't get their help.,Aaron Ehasz,Dave Filoni,NA +4523,4523,Water,1,"The Siege of the North, Part 2",20,Koh,"Oh, you think you need their help. [Koh looks to the side.] Actually it's quite the other way round. [In an instant, Koh turns and bolts to Aang, stopping just short of the young Avatar; with an angry blue ogre-like face with red eyes and upright fangs.] Someone's going to kill them! [Aang closes his eyes briefly before opening them to look at Koh.]","Oh, you think you need their help. Actually it's quite the other way round. Someone's going to kill them!",Aaron Ehasz,Dave Filoni,NA +4524,4524,Water,1,"The Siege of the North, Part 2",20,Aang,What do you mean? How can I find them and protect them?,What do you mean? How can I find them and protect them?,Aaron Ehasz,Dave Filoni,NA +4525,4525,Water,1,"The Siege of the North, Part 2",20,Koh,"[Flipping back to his white face.] You've already met them, actually. [View of Koh from behind Aang as Koh moves to look away, turning his back on Aang.] Tui and La, your moon and ocean, have always circled each other in an eternal dance. They balance each other, push and pull, life and death, [Close-up of Aang's face.] good and evil, yin and yang.","You've already met them, actually. Tui and La, your moon and ocean, have always circled each other in an eternal dance. They balance each other, push and pull, life and death, good and evil, yin and yang.",Aaron Ehasz,Dave Filoni,NA +4526,4526,Water,1,"The Siege of the North, Part 2",20,Scene Description,Aang's eyes open wide as he experiences a flashback of the white and black fish circling each other in the pond and the vision he had of them as they turned into the yin and yang symbol just before he entered the Spirit World. Back to Aang.,NA,Aaron Ehasz,Dave Filoni,NA +4527,4527,Water,1,"The Siege of the North, Part 2",20,Aang,"[Excitedly.] The koi fish! [Hearing the emotion in Aang's voice, Koh quickly reels around to stare at the now expressionless face of Aang.] I must be going now.",The koi fish! I must be going now.,Aaron Ehasz,Dave Filoni,NA +4528,4528,Water,1,"The Siege of the North, Part 2",20,Koh,"[Flipping to the face of a bald, young man.] We'll meet again.",We'll meet again.,Aaron Ehasz,Dave Filoni,NA +4529,4529,Water,1,"The Siege of the North, Part 2",20,Scene Description,Koh recedes into the shadows as Aang walks out of his cave. Cut to Aang running in front of the tree that is Koh's lair. He stops and talks to the ground.,NA,Aaron Ehasz,Dave Filoni,NA +4530,4530,Water,1,"The Siege of the North, Part 2",20,Aang,"The spirits are in trouble, I need to get back to the physical world.","The spirits are in trouble, I need to get back to the physical world.",Aaron Ehasz,Dave Filoni,NA +4531,4531,Water,1,"The Siege of the North, Part 2",20,Roku,"[Cut to Roku's image on the ground.] A friend is here, to guide you back.","A friend is here, to guide you back.",Aaron Ehasz,Dave Filoni,NA +4532,4532,Water,1,"The Siege of the North, Part 2",20,Aang,[Aang turns around; excitedly.] Hei Bai!,Hei Bai!,Aaron Ehasz,Dave Filoni,NA +4533,4533,Water,1,"The Siege of the North, Part 2",20,Scene Description,"The spirit groans as Aang jumps onto him and sets off. Cut back to the physical world. Two fireballs hit the city. Cut to two Water Tribe members fleeing as a tank destroys a totem pole behind them. Cut to two Water Tribe members trying to stop a tank. Cut to a view of the ocean with many fire navy ships and the moon looming behind. Cut to a bridge as two fire navy soldiers move in front of the camera as a waterbender drops down to move the bridge back from where the fire navy soldiers came from, taking the soldiers with it. Cut to a waterbender facing a tank, submerging the tank in the snow and ice around it. Cut to waterbenders attacking fire navy soldiers with shards of ice, who use shields to protect themselves. Cut to a shot behind Pakku who freezes and takes down eight oncoming soldiers. Pakku dodges a fire blast, having become surrounded with tanks and soldiers. Unleashing a wave of water he slices tanks wheels off and freezes soldiers behind him in ice. Pakku lifts himself into the air with water while being fired upon by firebenders. Avoiding the blasts, he knocks the firebenders away using his water cyclone as a wave. Cut to waterbenders sending a tank flying toward Zhao.",NA,Aaron Ehasz,Dave Filoni,NA +4534,4534,Water,1,"The Siege of the North, Part 2",20,Zhao,"We'll be following this map to a very special location. And when we get there, we're going fishing. [He smirks.]","We'll be following this map to a very special location. And when we get there, we're going fishing.",Aaron Ehasz,Dave Filoni,NA +4535,4535,Water,1,"The Siege of the North, Part 2",20,Scene Description,Cut back to the Spirit World. Aang arrives at his starting location and jumps off Hei Bai.,NA,Aaron Ehasz,Dave Filoni,NA +4536,4536,Water,1,"The Siege of the North, Part 2",20,Aang,"This is where I came in, but how do I get back?","This is where I came in, but how do I get back?",Aaron Ehasz,Dave Filoni,NA +4537,4537,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Hei Bai stands on his hind legs and sends a beam of energy at Aang, who disappears to the physical world.",NA,Aaron Ehasz,Dave Filoni,NA +4538,4538,Water,1,"The Siege of the North, Part 2",20,Baboon spirit,[Cut to baboon spirit sitting on a rock. Opening his eyes.] Good riddance.,Good riddance.,Aaron Ehasz,Dave Filoni,NA +4539,4539,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Hei Bai, having assumed his monstrous form, shoots an intense beam from his mouth at the baboon spirit sending it flying, before reverting to his original form. Back in the physical world, cut to a view of the arch way and water.",NA,Aaron Ehasz,Dave Filoni,NA +4540,4540,Water,1,"The Siege of the North, Part 2",20,Aang,"Momo! [Walking toward Momo. Closer view of Aang with Momo.] Momo. Oh no, where's my body?","Momo! Momo. Oh no, where's my body?",Aaron Ehasz,Dave Filoni,NA +4541,4541,Water,1,"The Siege of the North, Part 2",20,Scene Description,Aang is surrounded by energy and flies into the air. Cut to a wide-view of the entire Water Tribe city as Aang continues to fly toward the cave. Cut to close shot of Katara. Noticing Aang she turns around. Cut to shot of Appa flying in the sky as Aang shoots past overhead to the cave.,NA,Aaron Ehasz,Dave Filoni,NA +4542,4542,Water,1,"The Siege of the North, Part 2",20,Katara,"Look, that's gotta be Aang! Yip-yip!","Look, that's gotta be Aang! Yip-yip!",Aaron Ehasz,Dave Filoni,NA +4543,4543,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Cut to Aang entering the cave, filling it with light. Cut to Aang waking up, attempting to get out of his restraints and noticing Zuko.",NA,Aaron Ehasz,Dave Filoni,NA +4544,4544,Water,1,"The Siege of the North, Part 2",20,Zuko,Welcome back.,Welcome back.,Aaron Ehasz,Dave Filoni,NA +4545,4545,Water,1,"The Siege of the North, Part 2",20,Aang,[Cut to close-up of Aang as he narrows his eyes.] It's good to be back.,It's good to be back.,Aaron Ehasz,Dave Filoni,NA +4546,4546,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Aang airbends Zuko into a wall and propelling himself backward out of the cave. Cut to cave exterior. Close-up of Aang wriggling like a worm in an attempt to get away, only to be caught by Zuko.",NA,Aaron Ehasz,Dave Filoni,NA +4547,4547,Water,1,"The Siege of the North, Part 2",20,Zuko,[Zuko pulls Aang up by his collar as seen from behind Aang.] That won't be enough to escape.,That won't be enough to escape.,Aaron Ehasz,Dave Filoni,NA +4548,4548,Water,1,"The Siege of the North, Part 2",20,Aang,[On seeing Appa.] Appa!,Appa!,Aaron Ehasz,Dave Filoni,NA +4549,4549,Water,1,"The Siege of the North, Part 2",20,Scene Description,Appa lands. Katara slides off. Close-up of Zuko.,NA,Aaron Ehasz,Dave Filoni,NA +4550,4550,Water,1,"The Siege of the North, Part 2",20,Zuko,[Throwing the tied-up Aang aside who yelps.] Here for a rematch?,Here for a rematch?,Aaron Ehasz,Dave Filoni,NA +4551,4551,Water,1,"The Siege of the North, Part 2",20,Katara,"[Confidently while countering his fire blasts.] Trust me Zuko, it's not going to be much of a match.","Trust me Zuko, it's not going to be much of a match.",Aaron Ehasz,Dave Filoni,NA +4552,4552,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Katara uses waterbending to launch Zuko into the air before plummeting him down to the ground, knocking him out. Close-up shot of Sokka running toward Aang to untie him with Zuko lying unconscious.",NA,Aaron Ehasz,Dave Filoni,NA +4553,4553,Water,1,"The Siege of the North, Part 2",20,Sokka,"Hey, this is some quality rope!","Hey, this is some quality rope!",Aaron Ehasz,Dave Filoni,NA +4554,4554,Water,1,"The Siege of the North, Part 2",20,Aang,We need to get to the oasis; the spirits are in trouble!,We need to get to the oasis; the spirits are in trouble!,Aaron Ehasz,Dave Filoni,NA +4555,4555,Water,1,"The Siege of the North, Part 2",20,Scene Description,Switch to a wide-view of the area with Aang airbending himself atop Appa. Close-up shot of Aang landing on Appa.,NA,Aaron Ehasz,Dave Filoni,NA +4556,4556,Water,1,"The Siege of the North, Part 2",20,Aang,"Wait, we can't just leave him here.","Wait, we can't just leave him here.",Aaron Ehasz,Dave Filoni,NA +4557,4557,Water,1,"The Siege of the North, Part 2",20,Sokka,Sure we can. Let's go.,Sure we can. Let's go.,Aaron Ehasz,Dave Filoni,NA +4558,4558,Water,1,"The Siege of the North, Part 2",20,Aang,"No, if we leave him he'll die.","No, if we leave him he'll die.",Aaron Ehasz,Dave Filoni,NA +4559,4559,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Aang airbends himself off Appa and retrieves Zuko, bringing him to Appa.",NA,Aaron Ehasz,Dave Filoni,NA +4560,4560,Water,1,"The Siege of the North, Part 2",20,Sokka,"[Sarcastically.] Yeah, this makes a lot of sense. Let's bring the guy who's constantly trying to kill us.","Yeah, this makes a lot of sense. Let's bring the guy who's constantly trying to kill us.",Aaron Ehasz,Dave Filoni,NA +4561,4561,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Appa takes off. Cut to Tui and La in the oasis lake. Zhao grabs Tui from the water, placing it in a sack. The moon goes red, followed by everything else. Cut to close-up of the now red moon. Cut to a view of the entire city turning red. Cut to Pakku who loses his waterbending and falls to the ground. Cut to a waterbender attempting to waterbend but loses his bending. Cut to three more waterbenders, bending water, but they too lose their bending. Cut to Fire Navy soldiers firebending. Cut to Appa flying with the red moon behind him. Appa groans as it cuts to the saddle.",NA,Aaron Ehasz,Dave Filoni,NA +4562,4562,Water,1,"The Siege of the North, Part 2",20,Sokka,[Yue grabs her head as if in pain.] Are you okay?,Are you okay?,Aaron Ehasz,Dave Filoni,NA +4563,4563,Water,1,"The Siege of the North, Part 2",20,Yue,I feel faint.,I feel faint.,Aaron Ehasz,Dave Filoni,NA +4564,4564,Water,1,"The Siege of the North, Part 2",20,Aang,"[Cut to Aang. Holding his head with one hand.] I feel it, too. The Moon Spirit is in trouble.","I feel it, too. The Moon Spirit is in trouble.",Aaron Ehasz,Dave Filoni,NA +4565,4565,Water,1,"The Siege of the North, Part 2",20,Yue,[Cut back to the saddle.] I owe the Moon Spirit my life.,I owe the Moon Spirit my life.,Aaron Ehasz,Dave Filoni,NA +4566,4566,Water,1,"The Siege of the North, Part 2",20,Sokka,What do you mean?,What do you mean?,Aaron Ehasz,Dave Filoni,NA +4567,4567,Water,1,"The Siege of the North, Part 2",20,Yue,"[Close-up of Yue.] When I was born I was very sick and very weak. [Flashback to Yue as a baby.] Most babies cry when they're born, but I was born as if I was asleep, my eyes closed. [Cut to waterbenders attempting to heal Yue as a baby.] Our healers did everything they could. [Panning shot of Yue and the waterbenders, along with Yue's parents.] They told my mother and father I was going to die. [Cut to Arnook staring at the moon.] My father pleaded with the spirits to save me. [Cut to shot panning down from the moon to the oasis.] That night, beneath the full moon, he brought me to the oasis and placed me in the pond. [Cut to Yue being placed into the pond.] My dark hair turned white. [Close-up of Yue in the oasis.] I opened my eyes and began to cry, and they knew I would live. [Cut to Yue in her parents arms with the archway and moon behind them.] That's why my mother named me Yue. [Cut back to Appa's saddle.] For the moon.","When I was born I was very sick and very weak. Most babies cry when they're born, but I was born as if I was asleep, my eyes closed. Our healers did everything they could. They told my mother and father I was going to die. My father pleaded with the spirits to save me. That night, beneath the full moon, he brought me to the oasis and placed me in the pond. My dark hair turned white. I opened my eyes and began to cry, and they knew I would live. That's why my mother named me Yue. For the moon.",Aaron Ehasz,Dave Filoni,NA +4568,4568,Water,1,"The Siege of the North, Part 2",20,Zhao,"[Cut to Zhao at the oasis.] I am ... a legend, now! [Cut to panning shot from Zhao's hand, grasping the bag with Tui in it, down to his head.] The Fire Nation will, for generations, tell stories about the great Zhao, who darkened the moon. They will call me, Zhao the Conqueror, Zhao the Moon Slayer, Zhao the Invincible! [Momo jumps on top of Zhao's head.] Ugh ... Get it off! Get it off!","I am ... a legend, now! The Fire Nation will, for generations, tell stories about the great Zhao, who darkened the moon. They will call me, Zhao the Conqueror, Zhao the Moon Slayer, Zhao the Invincible! Ugh ... Get it off! Get it off!",Aaron Ehasz,Dave Filoni,NA +4569,4569,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Cut to wide-view of oasis as Momo flies away toward the camera. Panning view of Momo landing on Aang's arm and running to his shoulder, with Katara and Sokka are behind him. Cut to Zhao and his soldiers, readying themselves for battle. Cut to Aang, Sokka and Katara readying themselves. Panning shot of the oasis.",NA,Aaron Ehasz,Dave Filoni,NA +4570,4570,Water,1,"The Siege of the North, Part 2",20,Zhao,Don't bother. [Close-up of Zhao as he lifts the sack up threatening to kill Tui.],Don't bother.,Aaron Ehasz,Dave Filoni,NA +4571,4571,Water,1,"The Siege of the North, Part 2",20,Aang,"[Cut to Aang and the others surrendering.] Zhao, don't!","Zhao, don't!",Aaron Ehasz,Dave Filoni,NA +4572,4572,Water,1,"The Siege of the North, Part 2",20,Zhao,"[Cut to panning side-view.] It's my destiny, to destroy the moon and the Water Tribe.","It's my destiny, to destroy the moon and the Water Tribe.",Aaron Ehasz,Dave Filoni,NA +4573,4573,Water,1,"The Siege of the North, Part 2",20,Aang,"[Close-up side-view of Aang.] Destroying the moon won't hurt just the Water Tribe. [Close-up panning shot of the sack with Tui inside and Zhao.] It will hurt everyone, including you. [Cut to panning shot of the oasis.] Without the moon, everything would fall out of balance. You have no idea what kind of chaos that would unleash on the world. [Cut to Zhao.]","Destroying the moon won't hurt just the Water Tribe. It will hurt everyone, including you. Without the moon, everything would fall out of balance. You have no idea what kind of chaos that would unleash on the world.",Aaron Ehasz,Dave Filoni,NA +4574,4574,Water,1,"The Siege of the North, Part 2",20,Iroh,[Off-screen.] He is right Zhao.,He is right Zhao.,Aaron Ehasz,Dave Filoni,NA +4575,4575,Water,1,"The Siege of the North, Part 2",20,Zhao,"[Cut to wide shot of oasis; calmly to Iroh.] General Iroh, why am I not surprised to discover your treachery?","General Iroh, why am I not surprised to discover your treachery?",Aaron Ehasz,Dave Filoni,NA +4576,4576,Water,1,"The Siege of the North, Part 2",20,Iroh,"[Close-up of Iroh while he takes off his hood.] I'm no traitor, Zhao, the Fire Nation needs the moon, too; we all depend on the balance. Whatever you do to that spirit I'll unleash on you ten-fold. Let it go, now!","I'm no traitor, Zhao, the Fire Nation needs the moon, too; we all depend on the balance. Whatever you do to that spirit I'll unleash on you ten-fold. Let it go, now!",Aaron Ehasz,Dave Filoni,NA +4577,4577,Water,1,"The Siege of the North, Part 2",20,Scene Description,Zhao releases the koi fish into the oasis. Cut to close-up of Zhao as he hesitates before striking the koi fish with a fire slice out of anger. Cut to wide-view of the oasis. Cut to Iroh recoiling from the flames. Cut to Aang looking on and up at the moon. Cut to a view from the oasis to the sky as the moon fades out and the world goes gray. Cut to Zhao looking up until Iroh begins firebending at him. Zhao dodges and counters his firebending while retreating toward his firebending soldiers. They are swiftly defeated as Zhao escapes. Cut to show La circling the now dead Tui. Cut to Aang and the others looking on in disbelief and moving toward the water. Yue is seen looking on; her forward movement reveals that Zuko has escaped from behind her. Iroh picks up the dead koi fish.,NA,Aaron Ehasz,Dave Filoni,NA +4578,4578,Water,1,"The Siege of the North, Part 2",20,Yue,"[Close-up of Yue and Sokka.] There's no hope now, it's over.","There's no hope now, it's over.",Aaron Ehasz,Dave Filoni,NA +4579,4579,Water,1,"The Siege of the North, Part 2",20,Aang,"[Close-up of Aang entering the Avatar State.] No, it's not over.","No, it's not over.",Aaron Ehasz,Dave Filoni,NA +4580,4580,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Cut to wide shot of oasis as Aang enters the water. Cut back to the others looking on. Aang stands in a meditative stance as La circles him. Close-up shot of Aang and La as the latter's eyes light up. Side-view of Aang as he descends into the water. Wide shot of the whole oasis as blue lightning-like energy expands from the oasis island into the water. Wide shot of the Water Tribe city as the oasis begins to light up in the same blue color. Cut back to Katara and the others watching. The energy moves to the edge of the oasis, rising up to form a giant amphibious-like creature, facing out toward the sea, with Aang in the center, controlling it. Cut to the Fire Nation soldiers in the city looking on at this creature's sudden appearance. Cut briefly to Pakku and other Northern Water Tribe members before changing to a view of Aang moving past a river, Fire Nation soldiers on one side, Pakku and his group on the other. The Water Tribe all bow down as the Fire Nation soldiers prepare to attack. Aang, controlling the massive creature, begins to head to the ocean, laying waste to any Fire Nation soldiers on the way. +Cut back to Zhao who continues to flee only to be attacked by Zuko.",NA,Aaron Ehasz,Dave Filoni,NA +4581,4581,Water,1,"The Siege of the North, Part 2",20,Zhao,You're alive?,You're alive?,Aaron Ehasz,Dave Filoni,NA +4582,4582,Water,1,"The Siege of the North, Part 2",20,Zuko,[Angrily.] You tried to have me killed! [Zuko attacks Zhao.],You tried to have me killed!,Aaron Ehasz,Dave Filoni,NA +4583,4583,Water,1,"The Siege of the North, Part 2",20,Zhao,"[Close-up of Zhao's face.] Yes I did. [Zuko approaches Zhao as we see the giant energy form make its way toward the ocean.] You're the Blue Spirit, an enemy of the Fire Nation! You freed the Avatar.","Yes I did. You're the Blue Spirit, an enemy of the Fire Nation! You freed the Avatar.",Aaron Ehasz,Dave Filoni,NA +4584,4584,Water,1,"The Siege of the North, Part 2",20,Zuko,"I had no choice. [Zuko continues his attacks, but they are blocked by Zhao.]",I had no choice.,Aaron Ehasz,Dave Filoni,NA +4585,4585,Water,1,"The Siege of the North, Part 2",20,Zhao,"You should have chosen to accept your failure; you're a disgrace. Then, at least, you could have lived! [Zuko and Zhao begin to fight.]","You should have chosen to accept your failure; you're a disgrace. Then, at least, you could have lived!",Aaron Ehasz,Dave Filoni,NA +4586,4586,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Back at the oasis, Iroh places the dead koi fish in the water.",NA,Aaron Ehasz,Dave Filoni,NA +4587,4587,Water,1,"The Siege of the North, Part 2",20,Katara,"It's too late, it's dead.","It's too late, it's dead.",Aaron Ehasz,Dave Filoni,NA +4588,4588,Water,1,"The Siege of the North, Part 2",20,Iroh,[Iroh notices Yue.] You have been touched by the Moon Spirit. [Close-up of Yue.] Some of its life is in you.,You have been touched by the Moon Spirit. Some of its life is in you.,Aaron Ehasz,Dave Filoni,NA +4589,4589,Water,1,"The Siege of the North, Part 2",20,Yue,"Yes, you're right. It gave me life, maybe I can give it back.","Yes, you're right. It gave me life, maybe I can give it back.",Aaron Ehasz,Dave Filoni,NA +4590,4590,Water,1,"The Siege of the North, Part 2",20,Sokka,No! You don't have to do that. [Sokka reached to stop her.],No! You don't have to do that.,Aaron Ehasz,Dave Filoni,NA +4591,4591,Water,1,"The Siege of the North, Part 2",20,Yue,"It's my duty, Sokka.","It's my duty, Sokka.",Aaron Ehasz,Dave Filoni,NA +4592,4592,Water,1,"The Siege of the North, Part 2",20,Sokka,I won't let you! [Close-up of him holding her hand.] Your father told me to protect you.,I won't let you! Your father told me to protect you.,Aaron Ehasz,Dave Filoni,NA +4593,4593,Water,1,"The Siege of the North, Part 2",20,Yue,[Close-up of Yue.] I have to do this.,I have to do this.,Aaron Ehasz,Dave Filoni,NA +4594,4594,Water,1,"The Siege of the North, Part 2",20,Scene Description,Yue's hand slips out of Sokka's as she places her hands on the koi fish. The koi begins to glow and Yue closes her eyes.,NA,Aaron Ehasz,Dave Filoni,NA +4595,4595,Water,1,"The Siege of the North, Part 2",20,Sokka,"[Yue falls as Sokka catches her.] No! She's gone, she's gone.","No! She's gone, she's gone.",Aaron Ehasz,Dave Filoni,NA +4596,4596,Water,1,"The Siege of the North, Part 2",20,Scene Description,Cut to Aang as he approaches the sea and sends the fire navy ships back out into the ocean. Aang continues to destroy ships and drive the rest back out. Cut back to Sokka holding Yue. Yue fades and disappears as the koi begins the light up and glow. Iroh places the koi back into the oasis water. The entire lake begins to light up until energy floats up into the air forming an image of Yue. Side-view of the oasis.,NA,Aaron Ehasz,Dave Filoni,NA +4597,4597,Water,1,"The Siege of the North, Part 2",20,Yue,"Goodbye, Sokka. [Close-up of Sokka and Yue as she comes to kiss him.] I'll always be with you.","Goodbye, Sokka. I'll always be with you.",Aaron Ehasz,Dave Filoni,NA +4598,4598,Water,1,"The Siege of the North, Part 2",20,Scene Description,"They kiss and Yue disappears as Sokka looks up to the moon as it reappears in the sky, bringing the color back. Cut to Aang, still fused with the Ocean Spirit, in front of the Water Tribe city. Aang looks up and notices the moon has returned. The Ocean Spirit fades into the water and moves back to the city, dropping Aang off on a wall as he leaves the Avatar State. +Cut to Zuko and Zhao fighting on a bridge. Zuko gains the upper hand and Zhao notices the moon has returned.",NA,Aaron Ehasz,Dave Filoni,NA +4599,4599,Water,1,"The Siege of the North, Part 2",20,Zhao,[Shot of the moon over Zhao's shoulder.] It can't be!,It can't be!,Aaron Ehasz,Dave Filoni,NA +4600,4600,Water,1,"The Siege of the North, Part 2",20,Scene Description,Zhao is consumed by the energy in the shape of a hand and dragged toward the water.,NA,Aaron Ehasz,Dave Filoni,NA +4601,4601,Water,1,"The Siege of the North, Part 2",20,Zuko,Take my hand!,Take my hand!,Aaron Ehasz,Dave Filoni,NA +4602,4602,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Zhao considers it for a moment before retracting his hand. The energy plummets into the water, Zhao dragged along with it, and dissipates. Cut to Pakku and others on a ledge overlooking the city. Cut to a close-up shot of Pakku, Katara stands behind him.",NA,Aaron Ehasz,Dave Filoni,NA +4603,4603,Water,1,"The Siege of the North, Part 2",20,Pakku,I've decide to go to the South Pole. Some other benders and healers want to join me. It's time we helped rebuild our sister tribe.,I've decide to go to the South Pole. Some other benders and healers want to join me. It's time we helped rebuild our sister tribe.,Aaron Ehasz,Dave Filoni,NA +4604,4604,Water,1,"The Siege of the North, Part 2",20,Katara,What about Aang? He still needs to learn waterbending.,What about Aang? He still needs to learn waterbending.,Aaron Ehasz,Dave Filoni,NA +4605,4605,Water,1,"The Siege of the North, Part 2",20,Pakku,"Well, then he better get used to calling you Master Katara.","Well, then he better get used to calling you Master Katara.",Aaron Ehasz,Dave Filoni,NA +4606,4606,Water,1,"The Siege of the North, Part 2",20,Scene Description,Cut to Arnook and Sokka standing on the ledge looking at the moon.,NA,Aaron Ehasz,Dave Filoni,NA +4607,4607,Water,1,"The Siege of the North, Part 2",20,Arnook,"The spirits gave me a vision when Yue was born. I saw a beautiful, brave, young woman become the Moon Spirit. [Sighs.] I knew this day would come.","The spirits gave me a vision when Yue was born. I saw a beautiful, brave, young woman become the Moon Spirit. I knew this day would come.",Aaron Ehasz,Dave Filoni,NA +4608,4608,Water,1,"The Siege of the North, Part 2",20,Sokka,You must be proud.,You must be proud.,Aaron Ehasz,Dave Filoni,NA +4609,4609,Water,1,"The Siege of the North, Part 2",20,Arnook,So proud ... and sad.,So proud ... and sad.,Aaron Ehasz,Dave Filoni,NA +4610,4610,Water,1,"The Siege of the North, Part 2",20,Scene Description,Cut to Zuko and Iroh on a raft floating away from the city.,NA,Aaron Ehasz,Dave Filoni,NA +4611,4611,Water,1,"The Siege of the North, Part 2",20,Iroh,"I'm surprised Prince Zuko, surprised that you are not at this moment trying to capture the Avatar.","I'm surprised Prince Zuko, surprised that you are not at this moment trying to capture the Avatar.",Aaron Ehasz,Dave Filoni,NA +4612,4612,Water,1,"The Siege of the North, Part 2",20,Zuko,I'm tired.,I'm tired.,Aaron Ehasz,Dave Filoni,NA +4613,4613,Water,1,"The Siege of the North, Part 2",20,Iroh,Then you should rest. A man needs his rest.,Then you should rest. A man needs his rest.,Aaron Ehasz,Dave Filoni,NA +4614,4614,Water,1,"The Siege of the North, Part 2",20,Scene Description,Cut to Aang looking out on the ledge in the city. Katara stands behind him. He realizes she's there and turns around. They embrace. Momo chitters.,NA,Aaron Ehasz,Dave Filoni,NA +4615,4615,Water,1,"The Siege of the North, Part 2",20,Katara,"You too, Momo.","You too, Momo.",Aaron Ehasz,Dave Filoni,NA +4616,4616,Water,1,"The Siege of the North, Part 2",20,Aang,Come here.,Come here.,Aaron Ehasz,Dave Filoni,NA +4617,4617,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Momo leaps on to Aang's shoulders as we see Sokka place his hand on Aang's shoulder. All four of them look out to the ocean and the moon as Appa rises up in front of them. +Cut to Fire Lord Ozai's chambers. Cut to panning shot of Azula.",NA,Aaron Ehasz,Dave Filoni,NA +4618,4618,Water,1,"The Siege of the North, Part 2",20,Ozai,"Iroh is a traitor, and your brother Zuko is a failure. I have a task for you.","Iroh is a traitor, and your brother Zuko is a failure. I have a task for you.",Aaron Ehasz,Dave Filoni,NA +4619,4619,Water,1,"The Siege of the North, Part 2",20,Scene Description,"Close-up of Azula, looking up and smiling.",NA,Aaron Ehasz,Dave Filoni,NA +4620,4620,Water,1,"The Siege of the North, Part 2",20,Scene Description,Fades to credits.,NA,Aaron Ehasz,Dave Filoni,NA +4621,4621,Earth,2,The Avatar State,1,Scene Description,"The episode opens to show a gray sky as the camera moves back and down toward the Southern Air Temple where Aang is caught in a dream. In it, he is running about the Southern Air Temple. He comes across the room where he had found Monk Gyatso's skeleton in real life and instead sees his own self in the Avatar State. The personage of himself turns to glare at him angrily. Camera cuts to a terrified Aang, wind blowing past him. Cuts to a view of Sokka and Katara huddled behind a rock, watching the Avatar State Aang as he sends a forceful gust of wind that blows the real Aang back. He falls into the room in the Fire Temple he had visited to speak to Roku. The doors to the room open and reveal the personage of Aang in the Avatar State, who breathes fire and splits the floor in half. The real Aang falls through and lands on a Fire Navy ship in the Northern seas. The monstrous koi fish, called Koizilla, created when he and La had fused together during the Siege of the North appears before him, the personage of him inside. The Kozilla makes a downward cutting motion, and the personage does the same before a blinding white appears and the dream ends. Aang awakes from it and leaves the room where the gang is sleeping, exiting through a stairway. Katara awakens and catches sight of him leaving.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4622,4622,Earth,2,The Avatar State,1,Katara,[Confused.] Aang ...,Aang ...,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4623,4623,Earth,2,The Avatar State,1,Scene Description,The camera cuts to a shot of Aang standing by the ledge of the Water Tribe ship on which they are sailing. Katara approaches him.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4624,4624,Earth,2,The Avatar State,1,Katara,Do you want to talk about it?,Do you want to talk about it?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4625,4625,Earth,2,The Avatar State,1,Aang,"Nah, just a nightmare. I was in the Avatar State, but I was outside my body watching myself. It was scary. I was scary. [Closes eyes and bows his head; Katara puts her hand on his shoulder.]","Nah, just a nightmare. I was in the Avatar State, but I was outside my body watching myself. It was scary. I was scary.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4626,4626,Earth,2,The Avatar State,1,Scene Description,The scene changes to daybreak. Pakku is on the ship with two Water Tribe members and the gang.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4627,4627,Earth,2,The Avatar State,1,Pakku,"[Holds up flask.] Katara, I want you to have this. [Closes up on flask.] This amulet contains water from the Spirit Oasis. The water has unique properties. Don't lose it.","Katara, I want you to have this. This amulet contains water from the Spirit Oasis. The water has unique properties. Don't lose it.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4628,4628,Earth,2,The Avatar State,1,Katara,"[Accepts amulet and hugs Pakku.] Thank you, Master Pakku.","Thank you, Master Pakku.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4629,4629,Earth,2,The Avatar State,1,Pakku,"[Hands Aang box of scrolls.] Aang, these scrolls will help you master waterbending. But remember, they're no substitute for a real master. [Aang looks up at Katara, who is sitting on Appa and looks back.] Sokka ... [Pats him on shoulder, leaving him dismayed.] take care, son. [To the entire gang while pointing out in a direction.] Fly straight to the Earth Kingdom base to the east of here. General Fong will provide you with an escort to Omashu. There, you will be safe to begin your earthbending training with King Bumi.","Aang, these scrolls will help you master waterbending. But remember, they're no substitute for a real master. Sokka ... take care, son. Fly straight to the Earth Kingdom base to the east of here. General Fong will provide you with an escort to Omashu. There, you will be safe to begin your earthbending training with King Bumi.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4630,4630,Earth,2,The Avatar State,1,Aang,"Appa, yip yip!","Appa, yip yip!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4631,4631,Earth,2,The Avatar State,1,Katara,[As they fly away.] Say hi to Gran-Gran for me!,Say hi to Gran-Gran for me!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4632,4632,Earth,2,The Avatar State,1,Scene Description,"Scene switches to a village. Iroh is lying on a table, getting a relaxing massage at a resort.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4633,4633,Earth,2,The Avatar State,1,Iroh,"This is what I've been missing. Who knew floating on a piece of driftwood for three weeks with no food or water, and sea vultures waiting to pluck out your liver could make one so tense? [Looks at the clearly unhappy Zuko, walks over to him, and sits down on the ground.] I see. It's the anniversary, isn't it?","This is what I've been missing. Who knew floating on a piece of driftwood for three weeks with no food or water, and sea vultures waiting to pluck out your liver could make one so tense? I see. It's the anniversary, isn't it?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4634,4634,Earth,2,The Avatar State,1,Zuko,"[In a brooding tone.] Three years ago today, I was banished. I lost it all. [Looks up.] I want it back. I want the Avatar, I want my honor, my throne. I want my father not to think I'm worthless. [Looks on regretfully.]","Three years ago today, I was banished. I lost it all. I want it back. I want the Avatar, I want my honor, my throne. I want my father not to think I'm worthless.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4635,4635,Earth,2,The Avatar State,1,Iroh,"I'm sure he doesn't. Why would he banish you if he didn't care? [Zuko gets up and walks away; he grimaces soon after; to the massagers.] Uh, that came out wrong, didn't it? [They look at each other in confusion.]","I'm sure he doesn't. Why would he banish you if he didn't care? Uh, that came out wrong, didn't it?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4636,4636,Earth,2,The Avatar State,1,Scene Description,"The scene switches to a Fire Nation ship. Several men bow as a royal carriage is brought out. Within the carriage is Princess Azula, the daughter of Ozai, niece of Iroh, and sister of Zuko.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4637,4637,Earth,2,The Avatar State,1,Azula,"[Stepping out of the carriage and walking down the line of soldiers.] My brother and my uncle have disgraced the Fire Lord, and have brought shame on all of us. You might have mixed feelings about attacking members of the Royal Family. I understand. But I assure you, if you hesitate, I will not hesitate to bring you down. Dismissed.","My brother and my uncle have disgraced the Fire Lord, and have brought shame on all of us. You might have mixed feelings about attacking members of the Royal Family. I understand. But I assure you, if you hesitate, I will not hesitate to bring you down. Dismissed.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4638,4638,Earth,2,The Avatar State,1,Scene Description,The soldiers leave. The captain runs up to Azula.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4639,4639,Earth,2,The Avatar State,1,Captain,"Princess, I'm afraid the tides will not allow us to bring the ship into port before nightfall.","Princess, I'm afraid the tides will not allow us to bring the ship into port before nightfall.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4640,4640,Earth,2,The Avatar State,1,Azula,"I'm sorry, captain, but I do not know much about the tides. Could you explain something to me?","I'm sorry, captain, but I do not know much about the tides. Could you explain something to me?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4641,4641,Earth,2,The Avatar State,1,Captain,"Of course, Your Highness.","Of course, Your Highness.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4642,4642,Earth,2,The Avatar State,1,Azula,Do the tides command this ship?,Do the tides command this ship?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4643,4643,Earth,2,The Avatar State,1,Captain,I'm afraid I don't understand.,I'm afraid I don't understand.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4644,4644,Earth,2,The Avatar State,1,Azula,You said the tides would not allow us to bring the ship in. [In a sharper tone.] Do the tides command this ship?,You said the tides would not allow us to bring the ship in. Do the tides command this ship?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4645,4645,Earth,2,The Avatar State,1,Captain,"No, princess.","No, princess.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4646,4646,Earth,2,The Avatar State,1,Azula,"And if I were to have you thrown overboard, would the tides think twice about smashing you against the rocky shore?","And if I were to have you thrown overboard, would the tides think twice about smashing you against the rocky shore?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4647,4647,Earth,2,The Avatar State,1,Captain,"[Worried.] No, princess.","No, princess.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4648,4648,Earth,2,The Avatar State,1,Azula,"[Runs fingers through her bangs.] Well then, maybe you should worry less about the tides who have already made up their mind about killing you, and worry more about me, who's still mulling it over. [Turns to face the captain angrily.]","Well then, maybe you should worry less about the tides who have already made up their mind about killing you, and worry more about me, who's still mulling it over.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4649,4649,Earth,2,The Avatar State,1,Captain,I'll pull us in.,I'll pull us in.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4650,4650,Earth,2,The Avatar State,1,Scene Description,"He leaves. Cuts to a close-up of Azula, who glares and narrows her eyes in suspicion. The scene switches to the team flying on Appa.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4651,4651,Earth,2,The Avatar State,1,Sokka,[Rises to view their destination.] There it is!,There it is!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4652,4652,Earth,2,The Avatar State,1,Scene Description,"The gang arrives at General Fong's base, where he and his soldiers are waiting.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4653,4653,Earth,2,The Avatar State,1,Fong,"Welcome, Avatar Aang! [Cuts to shot of the team stretching after riding on Appa.] I am General Fong, and welcome, to all of you great heroes! Appa, Momo, brave Sokka, the mighty Katara ...","Welcome, Avatar Aang! I am General Fong, and welcome, to all of you great heroes! Appa, Momo, brave Sokka, the mighty Katara ...","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4654,4654,Earth,2,The Avatar State,1,Katara,[Pleased.] Mighty Katara? I like that.,Mighty Katara? I like that.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4655,4655,Earth,2,The Avatar State,1,Scene Description,"Fireworks go off, launched by the soldiers using earthbending.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4656,4656,Earth,2,The Avatar State,1,Sokka,"[Viewing the display.] Not bad, not bad.","Not bad, not bad.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4657,4657,Earth,2,The Avatar State,1,Scene Description,"The scene cuts to inside the base, where General Fong and the team are sitting in a spacious discussion room.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4658,4658,Earth,2,The Avatar State,1,Fong,"[Camera view depicts entire room.] Avatar Aang, we were all amazed at the stories of how you singlehandedly wiped out an entire Fire Navy fleet at the North Pole. [Closes up to Fong, stroking his beard.] I can't imagine what it feels like to wield such devastating power. It's an awesome responsibility.","Avatar Aang, we were all amazed at the stories of how you singlehandedly wiped out an entire Fire Navy fleet at the North Pole. I can't imagine what it feels like to wield such devastating power. It's an awesome responsibility.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4659,4659,Earth,2,The Avatar State,1,Aang,[Casually.] I try not to think about it too much.,I try not to think about it too much.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4660,4660,Earth,2,The Avatar State,1,Fong,"[Calmly.] Avatar, you're ready to face the Fire Lord now.","Avatar, you're ready to face the Fire Lord now.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4661,4661,Earth,2,The Avatar State,1,Aang,[Shocked.] What? No I'm not!,What? No I'm not!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4662,4662,Earth,2,The Avatar State,1,Katara,[Holds out her hand in reasoning.] Aang still needs to master all four elements.,Aang still needs to master all four elements.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4663,4663,Earth,2,The Avatar State,1,Fong,"Why? With the kind of power he possesses, power enough to destroy hundreds of battle ships in a matter of minutes, he could defeat the Fire Lord now!","Why? With the kind of power he possesses, power enough to destroy hundreds of battle ships in a matter of minutes, he could defeat the Fire Lord now!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4664,4664,Earth,2,The Avatar State,1,Sokka,"But sir, the thing is, Aang can only do those things when he's in the Avatar State.","But sir, the thing is, Aang can only do those things when he's in the Avatar State.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4665,4665,Earth,2,The Avatar State,1,Aang,"See, it's this special state where-","See, it's this special state where-","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4666,4666,Earth,2,The Avatar State,1,Fong,"[Sharply.] I'm well aware! Your eyes and tattoos glow and you're able to summon unbelievable power. Without you, we'd be slaughtered before we even reach their shores. [Looks at map and guides finger from the location of the base to the location of the Fire Nation Capital.] But with you leading the way, as the ultimate weapon, we could cut a swath right through to the heart of the Fire Nation.","I'm well aware! Your eyes and tattoos glow and you're able to summon unbelievable power. Without you, we'd be slaughtered before we even reach their shores. But with you leading the way, as the ultimate weapon, we could cut a swath right through to the heart of the Fire Nation.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4667,4667,Earth,2,The Avatar State,1,Aang,"[Doubtfully.] Right, but, I don't know how to get in or out of the Avatar State, much less what to do once I'm there.","Right, but, I don't know how to get in or out of the Avatar State, much less what to do once I'm there.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4668,4668,Earth,2,The Avatar State,1,Fong,"So, it's decided then. I'll help you figure out how to get into the Avatar State and then you'll face your destiny.","So, it's decided then. I'll help you figure out how to get into the Avatar State and then you'll face your destiny.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4669,4669,Earth,2,The Avatar State,1,Katara,"[The group rises; angrily.] No, nothing's decided. We already have a plan. Aang's pursuing his destiny his way.","No, nothing's decided. We already have a plan. Aang's pursuing his destiny his way.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4670,4670,Earth,2,The Avatar State,1,Fong,"Well, while you take your time learning the elements, the War goes on. May I show you something? [Leads Aang to a window.] That's the infirmary, and those soldiers are the lucky ones. [Several soldiers are injured and walking slowly.] They came back. Every day, the Fire Nation takes lives. People are dying, Aang! You could end it, now. Think about it.","Well, while you take your time learning the elements, the War goes on. May I show you something? That's the infirmary, and those soldiers are the lucky ones. They came back. Every day, the Fire Nation takes lives. People are dying, Aang! You could end it, now. Think about it.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4671,4671,Earth,2,The Avatar State,1,Scene Description,"Aang averts his eyes to the side, looking unsure. The scene changes to Azula's ship, where she is training. She stands perfectly straight, holding her fingers in her hand. The camera cuts to where Lo and Li are sitting, overseeing her training. Cuts to shot of Azula, as she moves her arms in a circular motion, generating lightning and firing the bolt into the sky.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4672,4672,Earth,2,The Avatar State,1,Lo,Almost perfect.,Almost perfect.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4673,4673,Earth,2,The Avatar State,1,Li,One hair out of place.,One hair out of place.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4674,4674,Earth,2,The Avatar State,1,Azula,[Close-up of her face as she pushes a loose strand of hair away.] Almost isn't good enough!,Almost isn't good enough!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4675,4675,Earth,2,The Avatar State,1,Scene Description,"She repeats her actions, generating lightning again and firing it off into the distance. Cuts to a shot of Iroh, who suddenly awakens from a nap, sits up and peers in curiosity. The scene changes to nightfall at Fong's base.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4676,4676,Earth,2,The Avatar State,1,Aang,General Fong?,General Fong?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4677,4677,Earth,2,The Avatar State,1,Fong,"Come in, Aang. Have you thought about our discussion?","Come in, Aang. Have you thought about our discussion?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4678,4678,Earth,2,The Avatar State,1,Aang,I'm in. I'll fight the Fire Lord.,I'm in. I'll fight the Fire Lord.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4679,4679,Earth,2,The Avatar State,1,Scene Description,"The scene changes to where Aang has entered a room with several plain beds, where the team is resting for the night.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4680,4680,Earth,2,The Avatar State,1,Aang,"[Sits on his bed.] I told the general I'd help him, by going into the Avatar State.","I told the general I'd help him, by going into the Avatar State.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4681,4681,Earth,2,The Avatar State,1,Katara,"[Sits up.] Aang, no! This is not the right way!","Aang, no! This is not the right way!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4682,4682,Earth,2,The Avatar State,1,Sokka,[Resting on his bed with his arms behind his head.] Why not? Remember when he took out the Fire Navy? [Widens his eyes.] He was incredible!,Why not? Remember when he took out the Fire Navy? He was incredible!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4683,4683,Earth,2,The Avatar State,1,Katara,"There's a right way to do this. Practice, study, and discipline!","There's a right way to do this. Practice, study, and discipline!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4684,4684,Earth,2,The Avatar State,1,Sokka,[Casually.] Or just glow it up and stop that Fire Lord!,Or just glow it up and stop that Fire Lord!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4685,4685,Earth,2,The Avatar State,1,Katara,"[Rises and throws her hands up in surrender.] If you two meat heads want to throw away everything we've worked for, fine, go ahead and glow it up! [Exits.]","If you two meat heads want to throw away everything we've worked for, fine, go ahead and glow it up!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4686,4686,Earth,2,The Avatar State,1,Aang,"Katara, I'm just being realistic! I don't have time to do this the right way!","Katara, I'm just being realistic! I don't have time to do this the right way!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4687,4687,Earth,2,The Avatar State,1,Scene Description,"Aang casts a mournful look. The scene changes to the next day where Fong, the team, and another soldier are sitting in an outdoor room. The soldier is pouring tea in a cup.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4688,4688,Earth,2,The Avatar State,1,Soldier,"[Drops white food item into the teapot.] This rare chi-enhancing tea is a natural stimulant. In an ordinary warrior, it improves strength and energy ten-fold. In you, it may induce the Avatar State.","This rare chi-enhancing tea is a natural stimulant. In an ordinary warrior, it improves strength and energy ten-fold. In you, it may induce the Avatar State.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4689,4689,Earth,2,The Avatar State,1,Aang,"Ten-fold energy, huh?","Ten-fold energy, huh?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4690,4690,Earth,2,The Avatar State,1,Scene Description,"Aang drinks the tea, causing his eyebrows to twitch slightly. The camera pans downward to the same scene where Aang is riding rapidly on an air scooter, hyper from the energy boost.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4691,4691,Earth,2,The Avatar State,1,Aang,[Quickly in a high-pitched voice.] Is it working? Is it working? I can't tell! Somebody tell me if I'm in the Avatar State 'cause I don't have a good view of myself! Am I talking too loud?,Is it working? Is it working? I can't tell! Somebody tell me if I'm in the Avatar State 'cause I don't have a good view of myself! Am I talking too loud?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4692,4692,Earth,2,The Avatar State,1,Sokka,"[Sitting on the floor, tired out by Aang's actions.] I guess he could talk the Fire Lord to death.",I guess he could talk the Fire Lord to death.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4693,4693,Earth,2,The Avatar State,1,Scene Description,"Aang hits a pillar and falls backward. The scene switches to where Aang is sitting on the ground, Sokka standing a few feet away.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4694,4694,Earth,2,The Avatar State,1,Sokka,Maybe I can shock you into the Avatar State.,Maybe I can shock you into the Avatar State.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4695,4695,Earth,2,The Avatar State,1,Aang,I love surprises!,I love surprises!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4696,4696,Earth,2,The Avatar State,1,Scene Description,"Camera cuts to view from Aang's perspective, Katara covering his eye with her hands. She uncovers his eyes to reveal Sokka towering over Aang, his head instead replaced with Momo's, who screeches. Aang screams and glances at his arrow tattoos.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4697,4697,Earth,2,The Avatar State,1,Aang,[Holding up hands.] Still not glowing.,Still not glowing.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4698,4698,Earth,2,The Avatar State,1,Scene Description,"Cuts to view of the entire team as Sokka steps backward, loses his balance and falls to the ground off camera. Fong shakes his head in dismay. The scene changes to a dimly lit room where Aang is standing, wearing an outfit consisting of a Water Tribe cloak, an Earth Kingdom hat with leaves coming out of the top, part of a Fire Nation soldier outfit and what appears to be a belt.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4699,4699,Earth,2,The Avatar State,1,Oracle,"You are wearing a ceremonial piece of clothing from each of the bending nations. Now I will join the four elements into one! Water [Pours jug of water into the bowl.], earth [Pours in bowl of dirt.], fire [Takes nearby torch and throws it in.], air! [Releases air gust from wooden contraption.] Four elements together as one!","You are wearing a ceremonial piece of clothing from each of the bending nations. Now I will join the four elements into one! Water , earth , fire , air! Four elements together as one!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4700,4700,Earth,2,The Avatar State,1,Scene Description,"The oracle raises the bowl and flings the contents at Aang, coating him in mud.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4701,4701,Earth,2,The Avatar State,1,Aang,[Annoyed.] This is just mud!,This is just mud!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4702,4702,Earth,2,The Avatar State,1,Oracle,[Quizzically.] So ... do you feel anything?,So ... do you feel anything?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4703,4703,Earth,2,The Avatar State,1,Scene Description,"Aang raises his finger, catching everyone's interest, only to sneeze, causing mud to fly everywhere, coating Fong, Katara, and Sokka.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4704,4704,Earth,2,The Avatar State,1,Fong,[Rubs mud from face.] We have to find a way.,We have to find a way.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4705,4705,Earth,2,The Avatar State,1,Scene Description,"The scene changes to Zuko and Iroh's place of stay, the room dark inside. Several various shells fall from a bag onto the table. The camera pans up to where Iroh is standing at the table, picking up and examining the different shells.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4706,4706,Earth,2,The Avatar State,1,Iroh,[Holds up one shell.] Look at these magnificent shells! [Picks up a conch.] I'll enjoy these keepsakes for years to come.,Look at these magnificent shells! I'll enjoy these keepsakes for years to come.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4707,4707,Earth,2,The Avatar State,1,Zuko,"We don't need any more useless things! You forget, we have to carry everything ourselves now!","We don't need any more useless things! You forget, we have to carry everything ourselves now!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4708,4708,Earth,2,The Avatar State,1,Azula,"[From the corner, sitting at the table; calmly.] Hello, brother. Uncle.","Hello, brother. Uncle.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4709,4709,Earth,2,The Avatar State,1,Zuko,[Angrily.] What are you doing here?,What are you doing here?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4710,4710,Earth,2,The Avatar State,1,Azula,"[Holds up a shell in her hand.] In my country, we exchange a pleasant hello before asking questions. [Rises and walks toward Zuko and Iroh.] Have you become uncivilized so soon, Zuzu?","In my country, we exchange a pleasant hello before asking questions. Have you become uncivilized so soon, Zuzu?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4711,4711,Earth,2,The Avatar State,1,Zuko,[Angrily.] Don't call me that!,Don't call me that!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4712,4712,Earth,2,The Avatar State,1,Iroh,[Clearly upset.] To what do we owe this honor?,To what do we owe this honor?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4713,4713,Earth,2,The Avatar State,1,Azula,"Hmmm ... must be a family trait. Both of you so quick to get to the point. [Breaks the shell she was holding with her fingertips, leaving Iroh angry.] I've come with a message from home. Father's changed his mind. Family is suddenly very important to him. He's heard rumors of plans to overthrow him; treacherous plots. Family are the only ones you can really trust. [Pauses briefly.] Father regrets your banishment. He wants you home. [Silence.] Did you hear me? You should be happy. Excited. Grateful. I just gave you great news.",Hmmm ... must be a family trait. Both of you so quick to get to the point. I've come with a message from home. Father's changed his mind. Family is suddenly very important to him. He's heard rumors of plans to overthrow him; treacherous plots. Family are the only ones you can really trust. Father regrets your banishment. He wants you home. Did you hear me? You should be happy. Excited. Grateful. I just gave you great news.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4714,4714,Earth,2,The Avatar State,1,Iroh,I'm sure your brother simply needs a moment.,I'm sure your brother simply needs a moment.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4715,4715,Earth,2,The Avatar State,1,Azula,"[Furiously.] Don't interrupt, Uncle! [To Zuko.] I still haven't heard my thank you. [Annoyed.] I'm not a messenger. I didn't have to come all this way.","Don't interrupt, Uncle! I still haven't heard my thank you. I'm not a messenger. I didn't have to come all this way.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4716,4716,Earth,2,The Avatar State,1,Zuko,[Surprised.] Father regrets? He ... wants me back?,Father regrets? He ... wants me back?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4717,4717,Earth,2,The Avatar State,1,Azula,I can see you need time to take this in. I'll come to call on you tomorrow. Good evening.,I can see you need time to take this in. I'll come to call on you tomorrow. Good evening.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4718,4718,Earth,2,The Avatar State,1,Scene Description,"She exits, leaving Zuko to ponder what has just been said. Meanwhile, at Fong's base, Aang and Katara stand on a balcony, the sun setting over the horizon.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4719,4719,Earth,2,The Avatar State,1,Katara,Can we talk about something?,Can we talk about something?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4720,4720,Earth,2,The Avatar State,1,Aang,Sure.,Sure.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4721,4721,Earth,2,The Avatar State,1,Katara,"[Cuts to side-shot of Aang and Katara.] Do you remember when we were at the air temple and you found Monk Gyatso's skeleton? It must have been so horrible and traumatic for you. I saw you get so upset that you weren't even you anymore. [Closes up to Katara.] I'm not saying the Avatar State doesn't have incredible and helpful power ... but you have to understand ... for the people who love you, watching you be in that much rage and pain is really scary.","Do you remember when we were at the air temple and you found Monk Gyatso's skeleton? It must have been so horrible and traumatic for you. I saw you get so upset that you weren't even you anymore. I'm not saying the Avatar State doesn't have incredible and helpful power ... but you have to understand ... for the people who love you, watching you be in that much rage and pain is really scary.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4722,4722,Earth,2,The Avatar State,1,Aang,I'm really glad you told me that. But I still need to do this.,I'm really glad you told me that. But I still need to do this.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4723,4723,Earth,2,The Avatar State,1,Katara,[Upset.] I don't understand.,I don't understand.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4724,4724,Earth,2,The Avatar State,1,Aang,"[Cuts to overall view of Aang and Katara.] No, you don't. Every day, more and more people die. I'm already one hundred years late. Defeating the Fire Lord is the only way to stop this war. I have to try it!","No, you don't. Every day, more and more people die. I'm already one hundred years late. Defeating the Fire Lord is the only way to stop this war. I have to try it!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4725,4725,Earth,2,The Avatar State,1,Katara,[Sadly.] I can't watch you do this to yourself. I'm not coming tomorrow. [Begins to exit.] Good night.,I can't watch you do this to yourself. I'm not coming tomorrow. Good night.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4726,4726,Earth,2,The Avatar State,1,Aang,[Sadly.] Good night.,Good night.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4727,4727,Earth,2,The Avatar State,1,Scene Description,The scene changes to nightfall at Zuko and Iroh's house. Cuts to inside the house.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4728,4728,Earth,2,The Avatar State,1,Zuko,"[Packing belongings.] We're going home! After three long years, it's unbelievable!","We're going home! After three long years, it's unbelievable!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4729,4729,Earth,2,The Avatar State,1,Iroh,[Staring out the window thoughtfully.] It is unbelievable. I have never known my brother to regret anything.,It is unbelievable. I have never known my brother to regret anything.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4730,4730,Earth,2,The Avatar State,1,Zuko,Did you listen to Azula? Father's realized how important family is to him! [Irritated.] He cares about me!,Did you listen to Azula? Father's realized how important family is to him! He cares about me!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4731,4731,Earth,2,The Avatar State,1,Iroh,"[Turns to face Zuko and holds out arms in gesture.] I care about you! And if Ozai wants you back, well, I think it may not be for the reasons you imagine.","I care about you! And if Ozai wants you back, well, I think it may not be for the reasons you imagine.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4732,4732,Earth,2,The Avatar State,1,Zuko,[Turns his back to Iroh.] You don't know how my father feels about me. You don't know anything!,You don't know how my father feels about me. You don't know anything!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4733,4733,Earth,2,The Avatar State,1,Iroh,"Zuko, I only meant that in our family, things are not always what they seem.","Zuko, I only meant that in our family, things are not always what they seem.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4734,4734,Earth,2,The Avatar State,1,Zuko,"[Turns to face Iroh.] I think you are exactly what you seem! A lazy, mistrustful, shallow old man who's always been jealous of his brother!","I think you are exactly what you seem! A lazy, mistrustful, shallow old man who's always been jealous of his brother!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4735,4735,Earth,2,The Avatar State,1,Scene Description,"Zuko walks away, leaving Iroh saddened. Meanwhile, Aang is caught in another dream. The dream takes place in the Southern seas on Zuko's ship, where the Avatar State Aang rises from the water, riding a water vortex, similar to the way Aang did in the beginning of the series. The personage lands on deck and sweeps away the real Aang with waterbending. The personage turns to Zuko and performs the same downward, cutting motion as seen in previous dreams before the dream abruptly ends and Aang awakens.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4736,4736,Earth,2,The Avatar State,1,Aang,"[Sits up in his bed.] Sokka! Sokka, wake up.","Sokka! Sokka, wake up.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4737,4737,Earth,2,The Avatar State,1,Sokka,Huh?,Huh?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4738,4738,Earth,2,The Avatar State,1,Aang,I don't think we should be trying to bring on the Avatar State.,I don't think we should be trying to bring on the Avatar State.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4739,4739,Earth,2,The Avatar State,1,Sokka,You sure?,You sure?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4740,4740,Earth,2,The Avatar State,1,Aang,Yes.,Yes.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4741,4741,Earth,2,The Avatar State,1,Sokka,[Nonchalantly.] Okay.,Okay.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4742,4742,Earth,2,The Avatar State,1,Aang,Do you think the general will be mad?,Do you think the general will be mad?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4743,4743,Earth,2,The Avatar State,1,Sokka,What can he say? You're the Avatar. Who knows better than you?,What can he say? You're the Avatar. Who knows better than you?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4744,4744,Earth,2,The Avatar State,1,Scene Description,"Aang lies back on his bed, resting his head on his arms. The next morning, we cut back to Zuko, who is getting ready to return home. He descends a stone staircase, carrying his bags.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4745,4745,Earth,2,The Avatar State,1,Iroh,[Holding up his hand in motion and running down the staircase after Zuko.] Wait! Don't leave without me!,Wait! Don't leave without me!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4746,4746,Earth,2,The Avatar State,1,Zuko,"[Turns around, smiles and sets down pack.] Uncle! You've changed your mind!",Uncle! You've changed your mind!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4747,4747,Earth,2,The Avatar State,1,Iroh,"Family sticks together, right? [Lays hand on Zuko's shoulder.]","Family sticks together, right?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4748,4748,Earth,2,The Avatar State,1,Scene Description,"The scene flashes back to a shot of Zuko's father, Ozai, resting his hand on his son's shoulder years ago. Flashes back to present day.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4749,4749,Earth,2,The Avatar State,1,Zuko,We're finally going home!,We're finally going home!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4750,4750,Earth,2,The Avatar State,1,Scene Description,"He resumes his descent. The camera closes up on Azula's ship sitting in the harbor. Closes up to Iroh, looking on with suspicion. The scene switches to the discussion room in Fong's base.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4751,4751,Earth,2,The Avatar State,1,Aang,"[Humbly.] The thing is, I don't think we'll ever be able to trigger it on purpose. So I guess that's it.","The thing is, I don't think we'll ever be able to trigger it on purpose. So I guess that's it.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4752,4752,Earth,2,The Avatar State,1,Fong,[Calmly.] You sure I can't change your mind?,You sure I can't change your mind?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4753,4753,Earth,2,The Avatar State,1,Aang,I'm sure. I can only reach the Avatar State when I'm in genuine danger.,I'm sure. I can only reach the Avatar State when I'm in genuine danger.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4754,4754,Earth,2,The Avatar State,1,Fong,I see. I was afraid you'd say that.,I see. I was afraid you'd say that.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4755,4755,Earth,2,The Avatar State,1,Scene Description,"He blasts his entire desk at Aang using earthbending, sending him soaring across the room.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4756,4756,Earth,2,The Avatar State,1,Sokka,"Aang! [Attempts to come to his aid, only to be held down by two soldiers.]",Aang!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4757,4757,Earth,2,The Avatar State,1,Scene Description,The impact sends Aang crashing through the wall and flying out of the building. He breaks his fall with airbending.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4758,4758,Earth,2,The Avatar State,1,Fong,[Walks over toward the hole that was created from the impact and points to Aang.] Men! Attack the Avatar!,Men! Attack the Avatar!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4759,4759,Earth,2,The Avatar State,1,Scene Description,"The scene cuts to a shot of Aang being surrounded by several earthbending soldiers, some riding on ostrich horses. Fong jumps out of the building and hits the ground, sending a rock wave at Aang which sends him back further.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4760,4760,Earth,2,The Avatar State,1,Aang,[Alarmed.] What are you doing?,What are you doing?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4761,4761,Earth,2,The Avatar State,1,Fong,[Slyly.] I believe we're about to get results.,I believe we're about to get results.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4762,4762,Earth,2,The Avatar State,1,Scene Description,"The camera focuses on soldiers, who prepare to fire large earth coins at Aang using earthbending. Cuts to a shot of Aang, looking nervously about him. The camera zooms out to a shot of him and his attackers before switching to a soldier, who sends an earth coin at him. Aang avoids two oncoming coins and soars in the air parallel to the ground between two more coins that are thrown at him. He lands safely to the ground.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4763,4763,Earth,2,The Avatar State,1,Aang,[Looking about cautiously.] I'm not your enemy! I won't fight you!,I'm not your enemy! I won't fight you!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4764,4764,Earth,2,The Avatar State,1,Scene Description,"He jumps into the air as four earth coins are sent his way, crashing into each other. As Aang begins his descent, another earth coin is sent skidding toward him; the coin crashes into one of the four stationery coins. Aang lands on the ground where the coin was standing just moments ago. Two of the other stationery coins are closed together. The camera cuts to a shot of Aang trapped inside the holes of the earth coins, rolling speedily away. An earthbender breaks the coins, crumbling them to bits. Aang lands on the ground, rises and faces the rest of the soldiers. +Meanwhile, Sokka, who was being held down by the two soldiers, raises his feet and steps on their bare feet forcefully. The two soldiers release their grip and fall forward onto the ground in pain while Sokka runs away to aid Aang. +Outside, Aang narrowly avoids two earth coins sent at him, one flying above him, one flying below him. Two more earth coins are sent from opposite sides of the ring, threatening to crush him. Aang manages to escape by dodging through the holes in the coins just as they collide together and fall to the ground. +Riding an air scooter, Aang zigzags past several soldiers who attempt to slow him down by conjuring up rock walls in his path. Two soldiers riding ostrich horses chase after him as Aang rides past and scales up the wall of the base. As he is seen riding up the wall on the air scooter, the two soldiers use earthbending to propel themselves upward. Aang's air scooter runs out of air and he begins running up the wall, the two soldiers following him in hot pursuit. Cuts to a top view of Aang scaling the wall, only to narrowly dodge two spears coming his way. +He falls to the ground. The two soldiers land on the wall and descend to the ground after him. Aang somersaults forward as he avoids their spear attacks yet again. He lands onto the ground, an earth coin embedded into it. The earth coin is suddenly sent upward and dragged forward, Aang being trapped in its hole. The earth coin lands in front of Fong.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4765,4765,Earth,2,The Avatar State,1,Fong,You can't run forever!,You can't run forever!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4766,4766,Earth,2,The Avatar State,1,Aang,You can't fight forever!,You can't fight forever!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4767,4767,Earth,2,The Avatar State,1,Scene Description,"Fong leaps forward and crushes the earth coin, just as Aang jumps to avoid the attack. Dust from the impact is sent flying toward the screen. The scene changes to where Zuko and Iroh are approaching Azula's ship. The camera pans upward and focuses on a shot of Azula standing quietly on top of a ramp leading up to the ship. Royal Procession guards stand on either side of them as they walk, forming an aisle. Iroh averts his eyes suspiciously between the guards. They reach the ship and bow; the guards behind them walk forward and close the aisle.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4768,4768,Earth,2,The Avatar State,1,Azula,Brother! Uncle! Welcome! I'm so glad you decided to come.,Brother! Uncle! Welcome! I'm so glad you decided to come.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4769,4769,Earth,2,The Avatar State,1,Scene Description,"The camera cuts to a side-shot of Iroh, opening his eyes slightly and casting a suspicious glance at the guards.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4770,4770,Earth,2,The Avatar State,1,Captain,"Are we ready to depart, Your Highness?","Are we ready to depart, Your Highness?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4771,4771,Earth,2,The Avatar State,1,Azula,"[Sweetly.] Set our course for home, captain.","Set our course for home, captain.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4772,4772,Earth,2,The Avatar State,1,Zuko,[Wistfully.] Home.,Home.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4773,4773,Earth,2,The Avatar State,1,Captain,[He walks up the ramp with Zuko and Iroh following him and raises his hand in gesture.] You heard the princess! Raise the anchors! We're taking the prisoners home!,You heard the princess! Raise the anchors! We're taking the prisoners home!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4774,4774,Earth,2,The Avatar State,1,Scene Description,"The captain widens his eyes in realization at his mistake and looks at Azula. Zuko and Iroh stop, looking surprised. Cut to Azula with a look of surprise on her face. The camera rushes to her face as her expression turns to fury. Cut back to the captain, his eyes wide.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4775,4775,Earth,2,The Avatar State,1,Captain,"[Nervously.] Your Highness, I ...","Your Highness, I ...","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4776,4776,Earth,2,The Avatar State,1,Scene Description,"Cut to Zuko, his eyes widening. Cuts to a close-up of Iroh, who narrows his eyes to the left and suddenly begins attacking the guards. He pushes them off the edge of the walkway and sends fire blasts their way. Cuts to a side-shot of Zuko, as he stomps furiously up the ramp and throws the captain off.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4777,4777,Earth,2,The Avatar State,1,Zuko,"You lied to me! [Cut to Azula, who appears confident.]",You lied to me!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4778,4778,Earth,2,The Avatar State,1,Azula,[Smugly.] Like I've never done that before.,Like I've never done that before.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4779,4779,Earth,2,The Avatar State,1,Scene Description,"She turns her back to him and walks away, as two guards standing near her shoot fire blasts at Zuko. Zuko crosses his arms and spreads them outward, deflecting the attacks and shouts as he charges onto the ship. The scene changes to Aang, who avoids three earth coins that slam onto the ground, threatening to crush him. He runs to the left of the screen as another coin rolls his way. The scene changes to the team's bedroom, where Katara is lying on her bed, listening to the noises outside.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4780,4780,Earth,2,The Avatar State,1,Katara,"I wonder what crazy thing they're trying to do now. [Momo, who is sleeping on a pillow, raises his head before going back to sleep. Katara hears another rumble outside and grows worried.] Maybe we should just make sure Aang's okay.",I wonder what crazy thing they're trying to do now. Maybe we should just make sure Aang's okay.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4781,4781,Earth,2,The Avatar State,1,Scene Description,She rises from her bed. The camera cuts to a shot of the base tower and pans downward to show Katara and Sokka running down opposite stairways. They meet up at the bottom of the base.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4782,4782,Earth,2,The Avatar State,1,Katara,[Frantically.] What's going on?,What's going on?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4783,4783,Earth,2,The Avatar State,1,Sokka,The general's gone crazy! He's trying to force Aang into the Avatar State!,The general's gone crazy! He's trying to force Aang into the Avatar State!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4784,4784,Earth,2,The Avatar State,1,Scene Description,"Sokka pulls out his boomerang and throws it as Katara runs off. Cuts to a shot of a soldier, who is hit by the boomerang and falls to the ground in a daze, knocking over the earth coin in the process. Cuts to Aang, who is being chased by another soldier mounted on an ostrich horse. The head of the spear the soldier was holding is suddenly snapped off. He slows down, stunned at this. Cuts to a shot of Katara summoning a water whip.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4785,4785,Earth,2,The Avatar State,1,Sokka,[Approaching the ostrich horse carefully.] Good ... bird ... horse thingy ...,Good ... bird ... horse thingy ...,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4786,4786,Earth,2,The Avatar State,1,Scene Description,"Sokka mounts it and the animal begins galloping away, leaving Katara standing in the arena. The camera zooms out to Fong. Several earth coins are summoned, rolling toward Katara before coming to a standstill.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4787,4787,Earth,2,The Avatar State,1,Fong,"[Looking back at Aang, who has managed to escape up a stairway.] Maybe you can avoid me ... but she can't.",Maybe you can avoid me ... but she can't.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4788,4788,Earth,2,The Avatar State,1,Scene Description,"The soldiers rotate the earth coins so that their flat sides face Katara. The camera zooms out to the entire arena, the coins forming a triangular pattern around Katara. The waterbender sends a water whip at Fong, who summons up dust pillars that deflect the water and turn it to mud. He uses earthbending to begin sinking her into the ground. She twists around, buried knee deep.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4789,4789,Earth,2,The Avatar State,1,Katara,[Struggling to break free.] I can't move!,I can't move!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4790,4790,Earth,2,The Avatar State,1,Aang,[Worried; clenches his fists.] Don't hurt her!,Don't hurt her!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4791,4791,Earth,2,The Avatar State,1,Scene Description,"He leaps onto the ground and sends a gust of wind at Fong, who summons an earth wall to block the attack. Fong brings down the earth wall and sinks Katara into the ground further, this time burying her waist deep.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4792,4792,Earth,2,The Avatar State,1,Sokka,[Riding the ostrich horse.] Katara! No!,Katara! No!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4793,4793,Earth,2,The Avatar State,1,Scene Description,"He gallops toward her, but Fong sinks the animal's feet into the ground, flinging Sokka off the ostrich horse. Sokka slams into the hole of an earth coin, leaving him dangling.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4794,4794,Earth,2,The Avatar State,1,Aang,[Desperately and clutching onto Fong's arm.] Stop this! You have to let her go!,Stop this! You have to let her go!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4795,4795,Earth,2,The Avatar State,1,Fong,You could save her if you were in the Avatar State!,You could save her if you were in the Avatar State!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4796,4796,Earth,2,The Avatar State,1,Aang,[Tears forming around his eyes.] I'm trying ... I'm trying!,I'm trying ... I'm trying!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4797,4797,Earth,2,The Avatar State,1,Katara,"[Frantically.] Aang, I'm sinking! [Twists around again and is buried chest deep.]","Aang, I'm sinking!","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4798,4798,Earth,2,The Avatar State,1,Fong,[Demanding.] I don't see glowing! [Lowers his right arm and begins closing his hand into a fist; Katara becomes buried neck deep.],I don't see glowing!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4799,4799,Earth,2,The Avatar State,1,Katara,[Desperately.] Please!,Please!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4800,4800,Earth,2,The Avatar State,1,Aang,"[Falling to his knees, begging.] You don't need to do this!",You don't need to do this!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4801,4801,Earth,2,The Avatar State,1,Fong,"[Scornfully.] Apparently, I do.","Apparently, I do.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4802,4802,Earth,2,The Avatar State,1,Scene Description,"He clenches his fist tight, sinking Katara completely. She cries out in fear before being completely buried in the ground. Aang leaps forward and attempts to save her, however, he falls short. Closes up on Aang, as his arrow tattoo begins to glow a bright white. He turns his head to face Fong, the Avatar State now triggered.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4803,4803,Earth,2,The Avatar State,1,Fong,[Triumphantly.] It worked! It worked!,It worked! It worked!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4804,4804,Earth,2,The Avatar State,1,Scene Description,"An air blast is sent his way and his triumphant expression soon becomes one of fear as he realizes the situation. Cuts to Aang, who performs the downward cutting motion as seen in his previous dreams and pushes Fong back with a powerful air blast. Fong lands roughly on the ground. Cuts to Aang, who begins rising on an earth vortex. +The scene changes to Zuko, who leaps onto the deck of the ship and blasts the two guards off the ship with two fire blasts. He lands on deck. The camera zooms out to where Azula is standing patiently several feet away, her back turned to him. Focuses on Azula, who smirks. Cuts to Zuko, who clenches his fists and prepares fire daggers. Cuts to Iroh, who continues to attack the guards on the walkway.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4805,4805,Earth,2,The Avatar State,1,Iroh,[Pushes several guards away; grabs one and wrestles him.] Zuko! Let's go!,Zuko! Let's go!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4806,4806,Earth,2,The Avatar State,1,Scene Description,"He hurls the guard over the edge and steps to the side to avoid another guard's attack and push him aside. Cuts back to Zuko, who charges at Azula with fire daggers. Zooms out to where he attempts to strike Azula, only for the princess to acutely dodge all of his blows. Cuts to close-up of her as she smirks at her brother. Zooms out to both siblings as Zuko keeps attacking and Azula keeps avoiding. Zuko brings down his right hand to land another blow, however, Azula manages to push him away.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4807,4807,Earth,2,The Avatar State,1,Azula,"You know, Father blames Uncle for the loss of the North Pole. And he considers you a miserable failure for not finding the Avatar! [Cuts to Zuko, who is panting heavily.] Why would he want you back home, except to lock you up [Cuts back to Azula.] where you can no longer embarrass him?","You know, Father blames Uncle for the loss of the North Pole. And he considers you a miserable failure for not finding the Avatar! Why would he want you back home, except to lock you up where you can no longer embarrass him?","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4808,4808,Earth,2,The Avatar State,1,Scene Description,"Zuko conjures up two fire daggers again. He leaps into the air and sends a powerful fire blast at Azula using his foot. She jumps and lands safely on the deck several feet away. Zuko charges at her as she rises to her feet. After dodging several more attacks, she manages to scrape his forehead with her fingernails, leaving three scratch marks on his temple. Zuko falls back a few feet from the impact and yells as he charges at her again. +The two continue to duel, eventually making their way up a stairway that leads to the central control area of the ship. Azula manages grab hold of Zuko's arm. A few seconds pause as the two stand silently, Zuko widening his eyes in alarm. Cuts to a side-shot of the stairway where Azula knocks him to his feet with a blue fire blast. Zuko lands roughly at the bottom of the stairwell. Cuts to a shot from Zuko's perspective, the screen slightly blurred to show the effects of the blow. The camera travels upward from side to side before landing on Azula, who moves both her arms in a circular motion, generating lightning. Cuts to shot of her readying the attack and firing the bolt at her brother, only for Iroh to step in suddenly, grab hold of her right hand and redirect the lightning, causing it to strike a far-off cliff side. He bends her downward and kicks her off the ship. Azula lands in the water below with a splash. Cuts to Zuko and Iroh, who run away from the ship. +The scene changes to Fong's base, where Aang is rising on the earth vortex, still under the control of the Avatar State.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4809,4809,Earth,2,The Avatar State,1,Fong,"[Pleading.] Avatar Aang! Can you hear me? Your friend is safe! [Brings Katara back above ground; cuts to close-up of her as she looks up at Aang in misery.] It was just a trick to trigger the Avatar State ... [Cuts back to Fong, who smiles maniacally.] and it worked!",Avatar Aang! Can you hear me? Your friend is safe! It was just a trick to trigger the Avatar State ... and it worked!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4810,4810,Earth,2,The Avatar State,1,Scene Description,"Aang swivels about on the vortex and lands on the ground forcefully, causing a flurry of dust to spread. Fong is sent back several feet while Katara remains rooted to the ground where she was. Cuts to the left of the arena where several soldiers are standing, a torrent of dust rumbling their way. The dust clears to reveal the ground broken and in ruins. Cuts to right of the arena, where several soldiers on ostrich horses stand. The dust torrent passes over them and clears, revealing that side in ruins. Cuts to another area of the base, where several houses lie. Again, the torrent passes over, leaving the houses considerably damaged. +Cuts to Aang, who is still under the influence of the Avatar State. His spirit is seen leaving his body and rising into the air. Cuts to bird's-eye view of the base as Roku's dragon, Fang passes by, Avatar Roku and Aang riding atop the beast.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4811,4811,Earth,2,The Avatar State,1,Roku,[Looking at Aang.] It's time you learned.,It's time you learned.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4812,4812,Earth,2,The Avatar State,1,Scene Description,"They fly higher above the dusty clouds. Cuts to side shot of the dragon, many small figures seen floating in the distance.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4813,4813,Earth,2,The Avatar State,1,Roku,"[Cuts to Roku.] The Avatar State is a defense mechanism, designed to empower you with the skills and knowledge of all the past Avatars.","The Avatar State is a defense mechanism, designed to empower you with the skills and knowledge of all the past Avatars.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4814,4814,Earth,2,The Avatar State,1,Scene Description,"Cuts to Avatar Kyoshi, who stands surrounded by rocky mountain terrain. Her eyes glow for a moment and she assumes a fighting stance. The camera zooms out to reveal two large earthen statues, somewhat resembling badgermoles. She performs a series of moves which cause the statues to rise into the air, and send them past toward the camera.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4815,4815,Earth,2,The Avatar State,1,Roku,"The glow is the combination of all your past lives, focusing their energy through your body.","The glow is the combination of all your past lives, focusing their energy through your body.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4816,4816,Earth,2,The Avatar State,1,Scene Description,"Cuts to a shot of Avatar Kuruk, riding atop a raft in the middle of the ocean. His eyes glow momentarily before he raises his arms and summons a gigantic tsunami-like wave. He is seen rapidly riding atop the wave toward the screen. Cuts to Avatar Yangchen, who stands in a grassy field surrounded by a forest area. Her eyes glow briefly as she swings her arms and swivels around, conjuring powerful winds. The camera zooms out to the entire field and the forest blown violently by the wind.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4817,4817,Earth,2,The Avatar State,1,Roku,"In the Avatar State, you are at your most powerful, [Cuts to an unnamed fire Avatar, who summons lava spouts from four volcanoes; the lava washes over the screen and the scene cuts back to Roku and Aang.] but you are also at your most vulnerable.","In the Avatar State, you are at your most powerful, but you are also at your most vulnerable.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4818,4818,Earth,2,The Avatar State,1,Aang,What do you mean?,What do you mean?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4819,4819,Earth,2,The Avatar State,1,Roku,"If you are killed in the Avatar State, [The figures of him and the Avatars in the background are blown away like dust.] the reincarnation cycle will be broken [Shows the line of Avatars with Aang standing at the end; the Avatars begin to fade away in succession down the line.] and the Avatar will cease to exist.","If you are killed in the Avatar State, the reincarnation cycle will be broken and the Avatar will cease to exist.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4820,4820,Earth,2,The Avatar State,1,Scene Description,"Aang is shown with a worried look on his face. The scene cuts to the base where Fang flies over Fong's base. Cuts to Aang's body, surrounded by a dome of air. Fang flies downward, head first, passing through Aang's body and into the ground. Aang's spirit is brought back to his physical self and he exits the Avatar State. +He falls to the ground weak and surveys the damage he caused to the base. Cuts to the ruins of the arena, houses destroyed and earth coins flung about. Cuts to Katara, completely unharmed from the whole ordeal, who approaches Aang and hugs him.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4821,4821,Earth,2,The Avatar State,1,Aang,"[Embracing her; regretfully.] I'm sorry, Katara. I hope you never have to see me like that again.","I'm sorry, Katara. I hope you never have to see me like that again.","Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4822,4822,Earth,2,The Avatar State,1,Fong,[Triumphantly.] Ha! Are you joking? That was almost perfect! [Thoughtfully.] We just have to find out a way to control you when you're like that.,Ha! Are you joking? That was almost perfect! We just have to find out a way to control you when you're like that.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4823,4823,Earth,2,The Avatar State,1,Aang,[Slightly angry.] You're out of your mind.,You're out of your mind.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4824,4824,Earth,2,The Avatar State,1,Fong,I guess we'll figure it out on the way to the Fire Nation.,I guess we'll figure it out on the way to the Fire Nation.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4825,4825,Earth,2,The Avatar State,1,Scene Description,"Sokka appears behind the general, riding the ostrich horse. He raises his club and strikes the general on the head, which knocks him out cold.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4826,4826,Earth,2,The Avatar State,1,Sokka,Anybody got a problem with that?,Anybody got a problem with that?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4827,4827,Earth,2,The Avatar State,1,Scene Description,"The soldiers shake their heads. Zooms out to the gang, several soldiers and Fong, who lies on the ground motionless.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4828,4828,Earth,2,The Avatar State,1,Soldier,Do you still want an escort to Omashu?,Do you still want an escort to Omashu?,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4829,4829,Earth,2,The Avatar State,1,Katara,[Casts the group a look of annoyance.] I think we're all set.,I think we're all set.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4830,4830,Earth,2,The Avatar State,1,Scene Description,The group leaves the base on Appa. The scene changes to the village resort. Azula is seen standing on the balcony of one of the residential buildings. Two Royal Procession guards stand in the background to protect her.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4831,4831,Earth,2,The Avatar State,1,Azula,"[Holds up wanted poster of her brother and uncle.] Anyone who harbors these traitors will face the wrath of the Fire Lord! [She lays a hand on the balcony, causing the two massagers to cower in fear; cuts to close-up of her.] There will be no place left to hide!",Anyone who harbors these traitors will face the wrath of the Fire Lord! There will be no place left to hide!,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4832,4832,Earth,2,The Avatar State,1,Scene Description,"The scene changes to a riverside. The shadowy reflections of two figures on the run can be seen in the water. Cuts to view of the river bank and the area nearby as Zuko and Iroh run frantically. Cuts to riverbank as the two stop and fall to the ground, catching their breath.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4833,4833,Earth,2,The Avatar State,1,Iroh,I think we're safe here.,I think we're safe here.,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4834,4834,Earth,2,The Avatar State,1,Scene Description,"Cuts to shot from Zuko's perspective as he pulls out a small dagger. Cuts to close-up of Zuko holding the dagger, its blade reflecting the sunlight. Cuts briefly to Iroh, who closes his eyes, seemingly aware of his nephew's actions. He casts a look at Zuko, who holds the knife under his ponytail. Cuts to close-up of his ponytail, as he slices it off with the knife. He holds it in his hand and looks at it for a moment before passing the knife to Iroh, who cuts off his topknot. Cuts to Zuko's hand, as he releases his ponytail. Cuts to the surface of the river, as the two topknots are released and float down the river. The camera zooms out to where Zuko and Iroh stand quietly on the bank of the river.",NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4835,4835,Earth,2,The Avatar State,1,Scene Description,Fades to credits.,NA,"Elizabeth Welch Ehasz, Tim Hedrick, Aaron Ehasz, John O'Bryan",Giancarlo Volpe,8.7 +4836,4836,Earth,2,The Cave of Two Lovers,2,Scene Description,"The episode opens to show a cliff with a small body of water, where Team Avatar is residing. The camera pans downward and cuts to where Sokka is relaxing peacefully, floating on a large leaf in the water with Momo sleeping on his stomach, while Katara and Aang are facing each other while practicing waterbending.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4837,4837,Earth,2,The Cave of Two Lovers,2,Sokka,"[With his hair covering his eyes.] You guys are going to be done soon, right? We have a lot of ground to cover if we're going to make it to Omashu today.","You guys are going to be done soon, right? We have a lot of ground to cover if we're going to make it to Omashu today.",Joshua Hamilton,Lauren MacMullan,8.2 +4838,4838,Earth,2,The Cave of Two Lovers,2,Katara,"[Rises from her hunched-over position; turns to face Sokka smugly.] What? Like you're ready to go right now, naked guy? [Smiles at him smugly.]","What? Like you're ready to go right now, naked guy?",Joshua Hamilton,Lauren MacMullan,8.2 +4839,4839,Earth,2,The Cave of Two Lovers,2,Sokka,"I could be ready in two minutes. Seriously, [Pulls back the hair covering his eyes.] whenever.","I could be ready in two minutes. Seriously, whenever.",Joshua Hamilton,Lauren MacMullan,8.2 +4840,4840,Earth,2,The Cave of Two Lovers,2,Aang,So you were showing me the octopus form?,So you were showing me the octopus form?,Joshua Hamilton,Lauren MacMullan,8.2 +4841,4841,Earth,2,The Cave of Two Lovers,2,Katara,"[Turns her attention back to Aang.] Right, let me see your stance.","Right, let me see your stance.",Joshua Hamilton,Lauren MacMullan,8.2 +4842,4842,Earth,2,The Cave of Two Lovers,2,Scene Description,"Aang assumes a defensive stance. After careful consideration, Katara walks over to him.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4843,4843,Earth,2,The Cave of Two Lovers,2,Katara,"[Walks under his right arm.] Your arms are too far apart. [Positions his arms closer together.] See, if you move them closer together, you protect your center. You got it?","Your arms are too far apart. See, if you move them closer together, you protect your center. You got it?",Joshua Hamilton,Lauren MacMullan,8.2 +4844,4844,Earth,2,The Cave of Two Lovers,2,Aang,"[Blushing.] Oh, yea ... thanks.","Oh, yea ... thanks.",Joshua Hamilton,Lauren MacMullan,8.2 +4845,4845,Earth,2,The Cave of Two Lovers,2,Katara,"[Walks away and assumes a fighting stance.] Okay, let's see what you got.","Okay, let's see what you got.",Joshua Hamilton,Lauren MacMullan,8.2 +4846,4846,Earth,2,The Cave of Two Lovers,2,Scene Description,"Aang bends the water, creating a globule which eventually transforms into eight whip-like water tentacles. He carefully maneuvers them, fending off shards of ice that Katara repeatedly sends at him by throwing them away or dodging them. At length, he manipulates one of the tentacles, curling it around her leg, gripping it firmly and pulling on it.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4847,4847,Earth,2,The Cave of Two Lovers,2,Katara,"[Proudly.] You make a fine octopus, Pupil Aang.","You make a fine octopus, Pupil Aang.",Joshua Hamilton,Lauren MacMullan,8.2 +4848,4848,Earth,2,The Cave of Two Lovers,2,Scene Description,"The camera cuts to where Aang dances playfully, suspended in a globule of water shaped like an actual octopus. Suddenly, music can be heard in the distance. The group witnesses a strange group of nomads playing music on instruments and singing, approaching them.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4849,4849,Earth,2,The Cave of Two Lovers,2,Chong,"[Singing.] Da, da, da. Don't fall in love with the traveling girl. She'll leave you broke and brokenhearted. [Cuts to shot of the team standing in the lake. Sokka unexpectedly falls off his leaf into the water. Cuts to nomads. Chong stops singing and points at the group.] Hey, river people!","Da, da, da. Don't fall in love with the traveling girl. She'll leave you broke and brokenhearted. Hey, river people!",Joshua Hamilton,Lauren MacMullan,8.2 +4850,4850,Earth,2,The Cave of Two Lovers,2,Katara,We're not river people.,We're not river people.,Joshua Hamilton,Lauren MacMullan,8.2 +4851,4851,Earth,2,The Cave of Two Lovers,2,Chong,[Puzzled.] You're not? Well then what kind of people are you?,You're not? Well then what kind of people are you?,Joshua Hamilton,Lauren MacMullan,8.2 +4852,4852,Earth,2,The Cave of Two Lovers,2,Aang,Just ... people.,Just ... people.,Joshua Hamilton,Lauren MacMullan,8.2 +4853,4853,Earth,2,The Cave of Two Lovers,2,Chong,"Aren't we all, brother?","Aren't we all, brother?",Joshua Hamilton,Lauren MacMullan,8.2 +4854,4854,Earth,2,The Cave of Two Lovers,2,Sokka,[Walks over and says accusingly.] Who are you?,Who are you?,Joshua Hamilton,Lauren MacMullan,8.2 +4855,4855,Earth,2,The Cave of Two Lovers,2,Chong,"I'm Chong and this is my wife, Lily. We're nomads, happy to go wherever the wind takes us! [He suddenly strums his lute-like instrument in a crazy fashion much like a rock star strums crazily on their guitar.]","I'm Chong and this is my wife, Lily. We're nomads, happy to go wherever the wind takes us!",Joshua Hamilton,Lauren MacMullan,8.2 +4856,4856,Earth,2,The Cave of Two Lovers,2,Aang,"[Starts out with a somewhat puzzled tone, but changes it to an excited one.] You guys are nomads? That's great! I'm a nomad!",You guys are nomads? That's great! I'm a nomad!,Joshua Hamilton,Lauren MacMullan,8.2 +4857,4857,Earth,2,The Cave of Two Lovers,2,Chong,"[Just as excitedly.] Hey, me too!","Hey, me too!",Joshua Hamilton,Lauren MacMullan,8.2 +4858,4858,Earth,2,The Cave of Two Lovers,2,Aang,[Blankly.] I know ... you just said that.,I know ... you just said that.,Joshua Hamilton,Lauren MacMullan,8.2 +4859,4859,Earth,2,The Cave of Two Lovers,2,Chong,Oh. [Noticing Sokka.] Nice underwear ...,Oh. Nice underwear ...,Joshua Hamilton,Lauren MacMullan,8.2 +4860,4860,Earth,2,The Cave of Two Lovers,2,Scene Description,"Cut to close shot of Sokka, who is only wearing his swimsuit; Aang and Katara are standing behind him. Sokka's eyes bulge at the sudden realization that he is wearing very little in front of complete strangers. He grabs Momo and places him strategically over his underwear and slides rapidly off the screen. The scene switches to a forest landscape, where Zuko and Iroh are now living as fugitives. The camera shows a close-up of Iroh's face, as he gasps and stares in awe at a red and white flower. Cuts to full view of him and an area behind him.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4861,4861,Earth,2,The Cave of Two Lovers,2,Zuko,"[Emerging from the bushes, now sporting short, black hair.] I didn't find anything to eat! I can't live like this! I wasn't meant to be a fugitive. [Raises fists in the air and yells at the sky.] This is impossible! [Looking over at Iroh.] Uncle, what are you doing?","I didn't find anything to eat! I can't live like this! I wasn't meant to be a fugitive. This is impossible! Uncle, what are you doing?",Joshua Hamilton,Lauren MacMullan,8.2 +4862,4862,Earth,2,The Cave of Two Lovers,2,Iroh,"[Cuts to Iroh who dotes over the flower. Zuko appears behind him.] You're looking at the rare white dragon bush. Its leaves make a tea so delicious, it's heartbreaking. That, or it's the white jade, which is poisonous.","You're looking at the rare white dragon bush. Its leaves make a tea so delicious, it's heartbreaking. That, or it's the white jade, which is poisonous.",Joshua Hamilton,Lauren MacMullan,8.2 +4863,4863,Earth,2,The Cave of Two Lovers,2,Zuko,"We need food, not tea. I'm going fishing. [Walks away.]","We need food, not tea. I'm going fishing.",Joshua Hamilton,Lauren MacMullan,8.2 +4864,4864,Earth,2,The Cave of Two Lovers,2,Iroh,[Dreamily.] Hmm ... delectable tea? [More suspiciously.] Or deadly poison?,Hmm ... delectable tea? Or deadly poison?,Joshua Hamilton,Lauren MacMullan,8.2 +4865,4865,Earth,2,The Cave of Two Lovers,2,Scene Description,"The scene switches to where Team Avatar and the band of nomads are lounging nearby Appa, whose fur is braided. Chong is casually strumming his lute. Sokka approaches.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4866,4866,Earth,2,The Cave of Two Lovers,2,Aang,"[Wearing a wreath of pink flowers on his head.] Hey, Sokka, you should hear some of these stories. These guys have been everywhere!","Hey, Sokka, you should hear some of these stories. These guys have been everywhere!",Joshua Hamilton,Lauren MacMullan,8.2 +4867,4867,Earth,2,The Cave of Two Lovers,2,Chong,"[Stops playing.] Well not everywhere, Little Arrowhead. But where we haven't been, we've heard about through stories and songs.","Well not everywhere, Little Arrowhead. But where we haven't been, we've heard about through stories and songs.",Joshua Hamilton,Lauren MacMullan,8.2 +4868,4868,Earth,2,The Cave of Two Lovers,2,Aang,They said they'll take us to see a giant night crawler!,They said they'll take us to see a giant night crawler!,Joshua Hamilton,Lauren MacMullan,8.2 +4869,4869,Earth,2,The Cave of Two Lovers,2,Moku,"[Lying on the ground; in a dreamy voice.] On the way, there's a waterfall that creates a never-ending rainbow!","On the way, there's a waterfall that creates a never-ending rainbow!",Joshua Hamilton,Lauren MacMullan,8.2 +4870,4870,Earth,2,The Cave of Two Lovers,2,Sokka,"Look, I hate to be the wet blanket here, but since Katara is busy, I guess it's up to me.","Look, I hate to be the wet blanket here, but since Katara is busy, I guess it's up to me.",Joshua Hamilton,Lauren MacMullan,8.2 +4871,4871,Earth,2,The Cave of Two Lovers,2,Scene Description,Katara shoots him a glare as Lily braids her hair.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4872,4872,Earth,2,The Cave of Two Lovers,2,Sokka,"We need to get to Omashu. No sidetracks, no worms and definitely no rainbows.","We need to get to Omashu. No sidetracks, no worms and definitely no rainbows.",Joshua Hamilton,Lauren MacMullan,8.2 +4873,4873,Earth,2,The Cave of Two Lovers,2,Chong,"Wow, sounds like someone has a case of destination fever. You're worried too much about where you're going.","Wow, sounds like someone has a case of destination fever. You're worried too much about where you're going.",Joshua Hamilton,Lauren MacMullan,8.2 +4874,4874,Earth,2,The Cave of Two Lovers,2,Lily,"You got to focus less on the ""where"" and more on the ""going"". [She makes gestures with her hand, accidentally tugging on Katara's braid.]","You got to focus less on the ""where"" and more on the ""going"".",Joshua Hamilton,Lauren MacMullan,8.2 +4875,4875,Earth,2,The Cave of Two Lovers,2,Sokka,[Impatiently.] O. Ma. Shu!,O. Ma. Shu!,Joshua Hamilton,Lauren MacMullan,8.2 +4876,4876,Earth,2,The Cave of Two Lovers,2,Katara,"Sokka's right. We need to find King Bumi, so Aang can learn earthbending somewhere safe.","Sokka's right. We need to find King Bumi, so Aang can learn earthbending somewhere safe.",Joshua Hamilton,Lauren MacMullan,8.2 +4877,4877,Earth,2,The Cave of Two Lovers,2,Chong,Sounds like you're headed to Omashu.,Sounds like you're headed to Omashu.,Joshua Hamilton,Lauren MacMullan,8.2 +4878,4878,Earth,2,The Cave of Two Lovers,2,Scene Description,Sokka smacks his forehead in frustration.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4879,4879,Earth,2,The Cave of Two Lovers,2,Chong,There's an old story about a secret pass right through the mountains.,There's an old story about a secret pass right through the mountains.,Joshua Hamilton,Lauren MacMullan,8.2 +4880,4880,Earth,2,The Cave of Two Lovers,2,Katara,Is this real or a legend?,Is this real or a legend?,Joshua Hamilton,Lauren MacMullan,8.2 +4881,4881,Earth,2,The Cave of Two Lovers,2,Chong,"Oh, it's a real legend. And it's as old as earthbending itself. [Begins strumming his lute and singing.] Two lovers, forbidden from one another, the war divides their people and the mountain divides them apart! Built a path to be together! [Stops playing.] Yeah, I forget the next couple of lines, but then it goes ... [Resumes singing.] Secret tunnel! Secret tunnel! Through the mountains, secret, secret, secret, secret tunnel! Yeah!","Oh, it's a real legend. And it's as old as earthbending itself. Two lovers, forbidden from one another, the war divides their people and the mountain divides them apart! Built a path to be together! Yeah, I forget the next couple of lines, but then it goes ... Secret tunnel! Secret tunnel! Through the mountains, secret, secret, secret, secret tunnel! Yeah!",Joshua Hamilton,Lauren MacMullan,8.2 +4882,4882,Earth,2,The Cave of Two Lovers,2,Scene Description,"A shot showing everyone around Appa, including the nomads. who had been dancing and clapping.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4883,4883,Earth,2,The Cave of Two Lovers,2,Sokka,[Unamused while folding his arms.] I think we'll just stick with flying. We've dealt with the Fire Nation before. We'll be fine.,I think we'll just stick with flying. We've dealt with the Fire Nation before. We'll be fine.,Joshua Hamilton,Lauren MacMullan,8.2 +4884,4884,Earth,2,The Cave of Two Lovers,2,Aang,"Yeah, thanks for the help, but Appa hates going underground. [Flashing a smile.] And we need to do whatever makes Appa most comfortable ...","Yeah, thanks for the help, but Appa hates going underground. And we need to do whatever makes Appa most comfortable ...",Joshua Hamilton,Lauren MacMullan,8.2 +4885,4885,Earth,2,The Cave of Two Lovers,2,Scene Description,The scene changes to a mountainous cliffside where Fire Nation soldiers are attacking the team by launching fireballs at them as they desperately try to escape on Appa.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4886,4886,Earth,2,The Cave of Two Lovers,2,Commander,[Pointing at the trio on Appa.] Launch!,Launch!,Joshua Hamilton,Lauren MacMullan,8.2 +4887,4887,Earth,2,The Cave of Two Lovers,2,Scene Description,"Several catapults are activated, launching an assault of fireballs at the team, who manages to narrowly avoid them.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4888,4888,Earth,2,The Cave of Two Lovers,2,Team Avatar,Ahhhh!,Ahhhh!,Joshua Hamilton,Lauren MacMullan,8.2 +4889,4889,Earth,2,The Cave of Two Lovers,2,Scene Description,"The scene cuts to the trio, covered in ash and scorch marks, casually strolling past the nomads.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4890,4890,Earth,2,The Cave of Two Lovers,2,Sokka,"[Pointing forward.] Secret love cave, let's go.","Secret love cave, let's go.",Joshua Hamilton,Lauren MacMullan,8.2 +4891,4891,Earth,2,The Cave of Two Lovers,2,Scene Description,"The scene switches to the forest, where Zuko has arrived from his fishing expedition. When the camera pans upward, it is revealed that he has only managed to spear a single, tiny fish which flaps about helplessly on the large branch he used for a fishing pole. Cuts to Iroh hunched over, his back to the camera.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4892,4892,Earth,2,The Cave of Two Lovers,2,Iroh,"Zuko, [Cut to a wide, overhead shot of Zuko standing behind Iroh.] remember that plant I thought might be tea?","Zuko, remember that plant I thought might be tea?",Joshua Hamilton,Lauren MacMullan,8.2 +4893,4893,Earth,2,The Cave of Two Lovers,2,Zuko,[Shocked.] You didn't ...,You didn't ...,Joshua Hamilton,Lauren MacMullan,8.2 +4894,4894,Earth,2,The Cave of Two Lovers,2,Iroh,I did ... [Turns around.] and it wasn't. [Reveals himself to be swollen and covered in red marks.],I did ... and it wasn't.,Joshua Hamilton,Lauren MacMullan,8.2 +4895,4895,Earth,2,The Cave of Two Lovers,2,Zuko,[Cut back to Zuko who drops the branch out of shock.] Ahh!,Ahh!,Joshua Hamilton,Lauren MacMullan,8.2 +4896,4896,Earth,2,The Cave of Two Lovers,2,Iroh,"[Surprisingly calmly.] When the rash spreads to my throat, I will stop breathing. [Excitedly.] But look what I found. [Iroh holds out his arm to reveal berries.] These are bacui berries, known to cure the poison of the white jade. [Unenthusiastically.] That, or maka'ole berries that cause blindness.","When the rash spreads to my throat, I will stop breathing. But look what I found. These are bacui berries, known to cure the poison of the white jade. That, or maka'ole berries that cause blindness.",Joshua Hamilton,Lauren MacMullan,8.2 +4897,4897,Earth,2,The Cave of Two Lovers,2,Zuko,[Grabbing branch of berries and hurling it into the bushes.] We're not taking any more chances with these plants! We need to get help.,We're not taking any more chances with these plants! We need to get help.,Joshua Hamilton,Lauren MacMullan,8.2 +4898,4898,Earth,2,The Cave of Two Lovers,2,Iroh,But where are we going to go? [Kneeling down and scratching his rash vigorously.] We're enemies of the Earth Kingdom and fugitives from the Fire Nation. [Camera zooms in on his reddened leg.],But where are we going to go? We're enemies of the Earth Kingdom and fugitives from the Fire Nation.,Joshua Hamilton,Lauren MacMullan,8.2 +4899,4899,Earth,2,The Cave of Two Lovers,2,Zuko,"If the Earth Kingdom discovers us, they'll have us killed.","If the Earth Kingdom discovers us, they'll have us killed.",Joshua Hamilton,Lauren MacMullan,8.2 +4900,4900,Earth,2,The Cave of Two Lovers,2,Iroh,"[Rises.] But if the Fire Nation discovers us, we'll be turned over to Azula.","But if the Fire Nation discovers us, we'll be turned over to Azula.",Joshua Hamilton,Lauren MacMullan,8.2 +4901,4901,Earth,2,The Cave of Two Lovers,2,Scene Description,They look at each other and pause briefly.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4902,4902,Earth,2,The Cave of Two Lovers,2,Zuko,[Nodding and walking away with Iroh.] Earth Kingdom it is.,Earth Kingdom it is.,Joshua Hamilton,Lauren MacMullan,8.2 +4903,4903,Earth,2,The Cave of Two Lovers,2,Scene Description,The scene changes to where Team Avatar and the band of nomads are journeying to the tunnels along a wide street surrounded by the ruins of a temple.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4904,4904,Earth,2,The Cave of Two Lovers,2,Sokka,How far are we from the tunnel?,How far are we from the tunnel?,Joshua Hamilton,Lauren MacMullan,8.2 +4905,4905,Earth,2,The Cave of Two Lovers,2,Chong,"Actually, it's not just one tunnel. The lovers didn't want anyone to find out about their love, so they built a whole labyrinth!","Actually, it's not just one tunnel. The lovers didn't want anyone to find out about their love, so they built a whole labyrinth!",Joshua Hamilton,Lauren MacMullan,8.2 +4906,4906,Earth,2,The Cave of Two Lovers,2,Sokka,[Halts in his tracks; in shock.] Labyrinth?,Labyrinth?,Joshua Hamilton,Lauren MacMullan,8.2 +4907,4907,Earth,2,The Cave of Two Lovers,2,Chong,"[Casually.] Oh, I'm sure we'll figure it out.","Oh, I'm sure we'll figure it out.",Joshua Hamilton,Lauren MacMullan,8.2 +4908,4908,Earth,2,The Cave of Two Lovers,2,Lily,All you need to do is trust in love ... according to the curse.,All you need to do is trust in love ... according to the curse.,Joshua Hamilton,Lauren MacMullan,8.2 +4909,4909,Earth,2,The Cave of Two Lovers,2,Scene Description,"Sokka, who had resumed walking, halts once more. The others pass by him. After several moments, he flinches in terror.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4910,4910,Earth,2,The Cave of Two Lovers,2,Sokka,[In a somewhat whining voice.] Curse!,Curse!,Joshua Hamilton,Lauren MacMullan,8.2 +4911,4911,Earth,2,The Cave of Two Lovers,2,Scene Description,Camera pans to the dark entrance of the cave.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4912,4912,Earth,2,The Cave of Two Lovers,2,Chong,Hey-hey! We're here!,Hey-hey! We're here!,Joshua Hamilton,Lauren MacMullan,8.2 +4913,4913,Earth,2,The Cave of Two Lovers,2,Sokka,[Cuts to shot of inscription on the side of the cave entrance.] What exactly is this curse?,What exactly is this curse?,Joshua Hamilton,Lauren MacMullan,8.2 +4914,4914,Earth,2,The Cave of Two Lovers,2,Chong,"The curse says that only those who trust in love can make it through the caves. Otherwise, you'll be trapped in them forever.","The curse says that only those who trust in love can make it through the caves. Otherwise, you'll be trapped in them forever.",Joshua Hamilton,Lauren MacMullan,8.2 +4915,4915,Earth,2,The Cave of Two Lovers,2,Lily,And die.,And die.,Joshua Hamilton,Lauren MacMullan,8.2 +4916,4916,Earth,2,The Cave of Two Lovers,2,Chong,"Oh yeah, and die. [Brightening.] Hey, I just remembered the rest of that song! [Stands before the entrance and strums lute, while singing an ominous line in a low voice.] And die!","Oh yeah, and die. Hey, I just remembered the rest of that song! And die!",Joshua Hamilton,Lauren MacMullan,8.2 +4917,4917,Earth,2,The Cave of Two Lovers,2,Sokka,That's it! There's no way we're going through some cursed hole!,That's it! There's no way we're going through some cursed hole!,Joshua Hamilton,Lauren MacMullan,8.2 +4918,4918,Earth,2,The Cave of Two Lovers,2,Moku,"[Turns head to observe gray smoke rising from the horizon, which he proceeds to point at.] Hey, someone's making a big campfire!","Hey, someone's making a big campfire!",Joshua Hamilton,Lauren MacMullan,8.2 +4919,4919,Earth,2,The Cave of Two Lovers,2,Katara,"[In a serious tone.] That's no campfire, Moku.","That's no campfire, Moku.",Joshua Hamilton,Lauren MacMullan,8.2 +4920,4920,Earth,2,The Cave of Two Lovers,2,Sokka,[Grimly.] It's Fire Nation. They're tracking us.,It's Fire Nation. They're tracking us.,Joshua Hamilton,Lauren MacMullan,8.2 +4921,4921,Earth,2,The Cave of Two Lovers,2,Aang,[Making sure he understands.] So all you need to do is trust in love to get through these caves?,So all you need to do is trust in love to get through these caves?,Joshua Hamilton,Lauren MacMullan,8.2 +4922,4922,Earth,2,The Cave of Two Lovers,2,Chong,"That is correct, Master Arrowhead.","That is correct, Master Arrowhead.",Joshua Hamilton,Lauren MacMullan,8.2 +4923,4923,Earth,2,The Cave of Two Lovers,2,Scene Description,"Aang turns to stare at Katara, who has her back to him. Her clothes and hair sway slightly as a breeze passes by. The camera closes up to his face, his eyes shining in adoration.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4924,4924,Earth,2,The Cave of Two Lovers,2,Aang,[Smiling.] We can make it.,We can make it.,Joshua Hamilton,Lauren MacMullan,8.2 +4925,4925,Earth,2,The Cave of Two Lovers,2,Sokka,[Gesturing to the cave; somewhat commanding.] Everyone into the hole!,Everyone into the hole!,Joshua Hamilton,Lauren MacMullan,8.2 +4926,4926,Earth,2,The Cave of Two Lovers,2,Scene Description,They all begin to enter the cave. Cuts to a close-up of Appa as he groans. Several Fire Nation tanks rumble across the terrain toward the entrance of the tunnel and pause once they reach the mouth of the cave.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4927,4927,Earth,2,The Cave of Two Lovers,2,Commander,Hold on! It's too dangerous. Haven't you heard the song? Just close them in. The mountain will take care of the rest.,Hold on! It's too dangerous. Haven't you heard the song? Just close them in. The mountain will take care of the rest.,Joshua Hamilton,Lauren MacMullan,8.2 +4928,4928,Earth,2,The Cave of Two Lovers,2,Scene Description,"The tanks fire rotating grappling hooks from canisters into the tunnel and release them after a few moments, unleashing a myriad of boulders. The scene switches to where the group has begun navigating their way through the tunnels only to turn and witness the entrance being closed off. Appa begins to frantically paw the walls of the tunnel.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4929,4929,Earth,2,The Cave of Two Lovers,2,Katara,"It's okay, Appa. We'll be fine. I hope.","It's okay, Appa. We'll be fine. I hope.",Joshua Hamilton,Lauren MacMullan,8.2 +4930,4930,Earth,2,The Cave of Two Lovers,2,Sokka,"We will be fine. All we need is a plan. Chong, how long do those torches last?","We will be fine. All we need is a plan. Chong, how long do those torches last?",Joshua Hamilton,Lauren MacMullan,8.2 +4931,4931,Earth,2,The Cave of Two Lovers,2,Chong,"[Casually.] Uh, about two hours each.","Uh, about two hours each.",Joshua Hamilton,Lauren MacMullan,8.2 +4932,4932,Earth,2,The Cave of Two Lovers,2,Lily,"[Lighting the rest of the torches in her hand.] And we have five torches, so that's ten hours!","And we have five torches, so that's ten hours!",Joshua Hamilton,Lauren MacMullan,8.2 +4933,4933,Earth,2,The Cave of Two Lovers,2,Sokka,[Grabbing torches and stomping out the fire.] It doesn't work like that if they're all lit at the same time!,It doesn't work like that if they're all lit at the same time!,Joshua Hamilton,Lauren MacMullan,8.2 +4934,4934,Earth,2,The Cave of Two Lovers,2,Lily,"Oh, right.","Oh, right.",Joshua Hamilton,Lauren MacMullan,8.2 +4935,4935,Earth,2,The Cave of Two Lovers,2,Sokka,I'm going to make a map to keep track of exactly where we've been. Then we should be able to solve it like a maze and get through.,I'm going to make a map to keep track of exactly where we've been. Then we should be able to solve it like a maze and get through.,Joshua Hamilton,Lauren MacMullan,8.2 +4936,4936,Earth,2,The Cave of Two Lovers,2,Scene Description,Katara and Aang look at each other with unsure expressions. The scene changes to a village. Camera cuts to a hospital before switching to the inside of the building. One doctor is treating a man with what appears to be a cupping treatment. The man grits his teeth in pain. The camera pans over to where a girl is treating Iroh's allergic reaction. Zuko is seated on a bench.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4937,4937,Earth,2,The Cave of Two Lovers,2,Song,"[Wringing cloth.] You two must not be from around here. We know better than to touch the White Jade, much less make it into tea and drink it. [Flicks Iroh's hand away when he scratches his rash.]","You two must not be from around here. We know better than to touch the White Jade, much less make it into tea and drink it.",Joshua Hamilton,Lauren MacMullan,8.2 +4938,4938,Earth,2,The Cave of Two Lovers,2,Iroh,"[The girl moves away from the camera's eye, revealing Iroh to be in an even worse condition than before with the rash having spread to his face and his cheeks swollen.] Whoops!",Whoops!,Joshua Hamilton,Lauren MacMullan,8.2 +4939,4939,Earth,2,The Cave of Two Lovers,2,Song,So where are you traveling from?,So where are you traveling from?,Joshua Hamilton,Lauren MacMullan,8.2 +4940,4940,Earth,2,The Cave of Two Lovers,2,Zuko,"[Nervously; rises from his seat as she moves his hand down so she could wash it.] Yes, we're travelers.","Yes, we're travelers.",Joshua Hamilton,Lauren MacMullan,8.2 +4941,4941,Earth,2,The Cave of Two Lovers,2,Song,Do you have names?,Do you have names?,Joshua Hamilton,Lauren MacMullan,8.2 +4942,4942,Earth,2,The Cave of Two Lovers,2,Zuko,"Names? Of course we have names. [Song turns to see Iroh scratching and glares at him, before slapping his hand away.] I'm, uh ... Lee and this is my Uncle, uh ... Mushi?","Names? Of course we have names. I'm, uh ... Lee and this is my Uncle, uh ... Mushi?",Joshua Hamilton,Lauren MacMullan,8.2 +4943,4943,Earth,2,The Cave of Two Lovers,2,Iroh,"[Shoots him angry look. Cuts to shot of Song taking a lotion from a jar. She begins slathering it over the inflamed areas.] Yes, my nephew was named after his father, so we just call him Junior. [Leans over to the side to give Zuko a pleased smile.]","Yes, my nephew was named after his father, so we just call him Junior.",Joshua Hamilton,Lauren MacMullan,8.2 +4944,4944,Earth,2,The Cave of Two Lovers,2,Scene Description,"Zuko glares angrily at Iroh and moves his finger across his neck signaling that he's dead meat, but abruptly halts and puts his hands behind his back when Song turns to look at him.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4945,4945,Earth,2,The Cave of Two Lovers,2,Song,"Mushi and Junior, huh. My name is Song. You two look like you could use a good meal. [Slaps Iroh's hand away when he goes to scratch his rash.] Why don't you stay for dinner?","Mushi and Junior, huh. My name is Song. You two look like you could use a good meal. Why don't you stay for dinner?",Joshua Hamilton,Lauren MacMullan,8.2 +4946,4946,Earth,2,The Cave of Two Lovers,2,Zuko,"[Looking away.] Sorry, but we need to be moving on.","Sorry, but we need to be moving on.",Joshua Hamilton,Lauren MacMullan,8.2 +4947,4947,Earth,2,The Cave of Two Lovers,2,Song,[Screwing the cap back on the lid.] That's too bad. [Gives an innocent smile.] My mom always makes too much roast duck.,That's too bad. My mom always makes too much roast duck.,Joshua Hamilton,Lauren MacMullan,8.2 +4948,4948,Earth,2,The Cave of Two Lovers,2,Iroh,[Excitedly.] Where do you live exactly?,Where do you live exactly?,Joshua Hamilton,Lauren MacMullan,8.2 +4949,4949,Earth,2,The Cave of Two Lovers,2,Scene Description,"The scene changes to the dark tunnel where Sokka is standing with a map in his hands, the map taking up most of the screen. He tilts it to the side a few times before drawing it closer to him.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4950,4950,Earth,2,The Cave of Two Lovers,2,Katara,"Sokka, this is the tenth dead end you've led us to.","Sokka, this is the tenth dead end you've led us to.",Joshua Hamilton,Lauren MacMullan,8.2 +4951,4951,Earth,2,The Cave of Two Lovers,2,Sokka,This doesn't make sense. We already came through this way.,This doesn't make sense. We already came through this way.,Joshua Hamilton,Lauren MacMullan,8.2 +4952,4952,Earth,2,The Cave of Two Lovers,2,Chong,We don't need a map. [Sokka passes by him.] We just need love. The little guy knows it.,We don't need a map. We just need love. The little guy knows it.,Joshua Hamilton,Lauren MacMullan,8.2 +4953,4953,Earth,2,The Cave of Two Lovers,2,Aang,"Yeah, but I wouldn't mind a map also.","Yeah, but I wouldn't mind a map also.",Joshua Hamilton,Lauren MacMullan,8.2 +4954,4954,Earth,2,The Cave of Two Lovers,2,Sokka,[Cuts to an overhead shot of the group standing in the dark cave before switching to Sokka who looks up from the map.] There's something strange here. There's only one explanation. [Cuts to shot of the rest of the group before switching to Sokka who turns to face the camera.] The tunnels are changing.,There's something strange here. There's only one explanation. The tunnels are changing.,Joshua Hamilton,Lauren MacMullan,8.2 +4955,4955,Earth,2,The Cave of Two Lovers,2,Scene Description,A wave of surprise passes over everyone as the tunnels shake. The scene cuts to nighttime to a house. Cuts to a shot of an open-wall dining room where Zuko and Iroh are sitting around Song's kitchen table.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4956,4956,Earth,2,The Cave of Two Lovers,2,Song's mother,[Setting down a platter of roast duck and taking a seat.] My daughter tells me you're refugees. We were once refugees ourselves.,My daughter tells me you're refugees. We were once refugees ourselves.,Joshua Hamilton,Lauren MacMullan,8.2 +4957,4957,Earth,2,The Cave of Two Lovers,2,Song,"[Sadly.] When I was a little girl, the Fire Nation raided our farming village. All the men were taken away. That was the last time I saw my father.","When I was a little girl, the Fire Nation raided our farming village. All the men were taken away. That was the last time I saw my father.",Joshua Hamilton,Lauren MacMullan,8.2 +4958,4958,Earth,2,The Cave of Two Lovers,2,Zuko,[Close-up of the prince.] I haven't seen my father in many years.,I haven't seen my father in many years.,Joshua Hamilton,Lauren MacMullan,8.2 +4959,4959,Earth,2,The Cave of Two Lovers,2,Song,"[Sorrowfully.] Oh, is he fighting in the War?","Oh, is he fighting in the War?",Joshua Hamilton,Lauren MacMullan,8.2 +4960,4960,Earth,2,The Cave of Two Lovers,2,Scene Description,Zuko hesitates. Iroh is seen slurping up a bowl of noodles.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4961,4961,Earth,2,The Cave of Two Lovers,2,Zuko,[Sets down dish.] Yeah. [Looks away in dismay.],Yeah.,Joshua Hamilton,Lauren MacMullan,8.2 +4962,4962,Earth,2,The Cave of Two Lovers,2,Scene Description,The scene changes to the cave.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4963,4963,Earth,2,The Cave of Two Lovers,2,Chong,"[Frantically.] The tunnels, they're a-changin'. It must be the curse! I knew we shouldn't have come down here!","The tunnels, they're a-changin'. It must be the curse! I knew we shouldn't have come down here!",Joshua Hamilton,Lauren MacMullan,8.2 +4964,4964,Earth,2,The Cave of Two Lovers,2,Sokka,"[Sarcastically.] Right, if only we listened to you.","Right, if only we listened to you.",Joshua Hamilton,Lauren MacMullan,8.2 +4965,4965,Earth,2,The Cave of Two Lovers,2,Katara,[Hold up a hand in warning.] Everyone be quiet. Listen.,Everyone be quiet. Listen.,Joshua Hamilton,Lauren MacMullan,8.2 +4966,4966,Earth,2,The Cave of Two Lovers,2,Scene Description,"Cuts to shot of Sokka looking into the dark tunnel, his back to the camera. A low snarl can be heard from within the darkness of the tunnel. Momo flees from his shoulder. Sokka suspiciously holds the torch up to the tunnel to inspect the strange sound. Suddenly, a wolfbat flies from the darkness of the cave toward the camera, causing everyone to panic.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4967,4967,Earth,2,The Cave of Two Lovers,2,Chong,It's a giant flying thing with teeth!,It's a giant flying thing with teeth!,Joshua Hamilton,Lauren MacMullan,8.2 +4968,4968,Earth,2,The Cave of Two Lovers,2,Moku,[The creature lands. Off-camera.] No! It's a wolfbat!,No! It's a wolfbat!,Joshua Hamilton,Lauren MacMullan,8.2 +4969,4969,Earth,2,The Cave of Two Lovers,2,Scene Description,"The wolfbat takes off again. In a frenzy, Sokka swats at the creature with the lit torch. Several hot cinders are thrown about and land on Appa's skin. Yelping in pain, the bison begins running around the tunnel, releasing a discharge of rocks and debris. Aang quickly airbends Sokka and the band of nomads out of the way of the falling rocks. He races toward Katara and pushes her out of the way. The camera cuts to where he and Katara rise from the impact and witness the division of the tunnel. Meanwhile, Sokka attempts to dig his way through the barrier that divides the two groups.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4970,4970,Earth,2,The Cave of Two Lovers,2,Chong,"Yeah, it's no use. We're separated. But at least you have us!","Yeah, it's no use. We're separated. But at least you have us!",Joshua Hamilton,Lauren MacMullan,8.2 +4971,4971,Earth,2,The Cave of Two Lovers,2,Sokka,[Horrified.] Nooooo!,Nooooo!,Joshua Hamilton,Lauren MacMullan,8.2 +4972,4972,Earth,2,The Cave of Two Lovers,2,Scene Description,He resumes digging through the rocks only to have a pile of debris fall on him. The scene changes to where Zuko is sitting on Song's front porch. Song comes outside and sits beside him.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4973,4973,Earth,2,The Cave of Two Lovers,2,Song,Can I join you? I know what you've been through. We've all been through it. [Witnessing Zuko's scar.] The Fire Nation has hurt you.,Can I join you? I know what you've been through. We've all been through it. The Fire Nation has hurt you.,Joshua Hamilton,Lauren MacMullan,8.2 +4974,4974,Earth,2,The Cave of Two Lovers,2,Scene Description,She reaches out to touch his scar only to have Zuko push her hand away.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4975,4975,Earth,2,The Cave of Two Lovers,2,Song,"[Compassionately.] It's okay. They've hurt me, too. [Pulls up pants leg to reveal burn scars on her leg.]","It's okay. They've hurt me, too.",Joshua Hamilton,Lauren MacMullan,8.2 +4976,4976,Earth,2,The Cave of Two Lovers,2,Scene Description,Zuko casts her a surprised look upon seeing this. The scene cuts to where Chong and his group are singing much to Sokka's annoyance.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4977,4977,Earth,2,The Cave of Two Lovers,2,Chong,"[Singing as he and the nomads pass the angry warrior.] Oh, don't let the cave-in get you down! [Cuts to shot of him.] Don't let the falling rocks turn your smile into a frown! [He goes off-screen and Moku passes by, nudging Sokka.] When the tunnels are darkest, that's when you need a clown, hey! [Re-enters.] Don't let the cave-in get you down, Sokka!","Oh, don't let the cave-in get you down! Don't let the falling rocks turn your smile into a frown! When the tunnels are darkest, that's when you need a clown, hey! Don't let the cave-in get you down, Sokka!",Joshua Hamilton,Lauren MacMullan,8.2 +4978,4978,Earth,2,The Cave of Two Lovers,2,Scene Description,Sokka scowls at this. The scene changes to Aang and Katara who are making their way through the tunnels.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4979,4979,Earth,2,The Cave of Two Lovers,2,Katara,"[Cheerfully.] Aang, look!","Aang, look!",Joshua Hamilton,Lauren MacMullan,8.2 +4980,4980,Earth,2,The Cave of Two Lovers,2,Aang,[Running up to a solid rock door.] We found the exit!,We found the exit!,Joshua Hamilton,Lauren MacMullan,8.2 +4981,4981,Earth,2,The Cave of Two Lovers,2,Scene Description,"The two struggle to open it. Appa is seen in the background, snorting and preparing to charge. The two look at each other in alarm before running away as Appa charges at the door forcefully. Cuts to the opposite side of the entrance as the door creaks open and to a wider shot of the room as the stone doorway loosens and rolls off to the side. Katara jumps into the room only to have her look of hope change into one of disappointment.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4982,4982,Earth,2,The Cave of Two Lovers,2,Katara,This isn't the exit.,This isn't the exit.,Joshua Hamilton,Lauren MacMullan,8.2 +4983,4983,Earth,2,The Cave of Two Lovers,2,Aang,[Walking to her side.] No. It's a tomb.,No. It's a tomb.,Joshua Hamilton,Lauren MacMullan,8.2 +4984,4984,Earth,2,The Cave of Two Lovers,2,Scene Description,"The camera zooms out on the ominous looking tomb, Appa grunting behind the duo.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4985,4985,Earth,2,The Cave of Two Lovers,2,Aang,It must be the two lovers from the legend; that's who's buried here.,It must be the two lovers from the legend; that's who's buried here.,Joshua Hamilton,Lauren MacMullan,8.2 +4986,4986,Earth,2,The Cave of Two Lovers,2,Katara,These pictures tell their story.,These pictures tell their story.,Joshua Hamilton,Lauren MacMullan,8.2 +4987,4987,Earth,2,The Cave of Two Lovers,2,Scene Description,"Katara gestures with the torch toward at the panels along the tomb, speaking about each one in turn. Aang and Katara exchanged glances and Katara narrates the story. The first image is that of a mountain.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4988,4988,Earth,2,The Cave of Two Lovers,2,Katara,[Voice-over.] They met on top of the mountain that divided their two villages ...,They met on top of the mountain that divided their two villages ...,Joshua Hamilton,Lauren MacMullan,8.2 +4989,4989,Earth,2,The Cave of Two Lovers,2,Scene Description,"Two figures, a man dressed in red and a woman in blue, meet atop the mountain. They take each other's hands, though they swiftly let go, and a Chinese character appears.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4990,4990,Earth,2,The Cave of Two Lovers,2,Katara,"[Voice-over.] The villages were enemies, so they could not be together ... [Character flashes red as the background turns grim and dark.] but their love was strong and they found a way.","The villages were enemies, so they could not be together ... but their love was strong and they found a way.",Joshua Hamilton,Lauren MacMullan,8.2 +4991,4991,Earth,2,The Cave of Two Lovers,2,Scene Description,"Two hills appear; on the closer one is the man, while the woman kneels on the one farther away. Though their faces cannot be seen in detail, it is obvious that they long for the other.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4992,4992,Earth,2,The Cave of Two Lovers,2,Katara,[Voice-over.] The two lovers learned earthbending from the badgermoles; they became the first earthbenders.,The two lovers learned earthbending from the badgermoles; they became the first earthbenders.,Joshua Hamilton,Lauren MacMullan,8.2 +4993,4993,Earth,2,The Cave of Two Lovers,2,Scene Description,"The painting of a badgermole is shown, as well as that of the young couple beginning to create the labyrinth.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4994,4994,Earth,2,The Cave of Two Lovers,2,Katara,"[Voice-over.] They built elaborate tunnels, so they could meet secretly. [The pattern of a labyrinth appears.] Anyone who tried to follow them would be forever in the labyrinth. [The couple kisses.] But, one day, the man didn't come [Cuts to a shot of the woman alone, looking startled.] - he'd died in the war between the two villages. [Arrows fly by the screen. The woman is seen weeping by a grave.] Devastated, the woman unleashed a terrible display of her earthbending power - she could have destroyed them all ... [The woman is seen displaying her immense earthbending power.] but, instead, she declared the war over. [Cuts to shot of the woman standing on a hill surrounded by the two villages.] Both villages helped her build a new city where they would live together in peace. [Shows picture of the current-day Omashu.] The woman's name was Oma and the man's name was Shu. [The characters for ""Oma"" appear followed by the character for ""Shu"". Flashback ends.] The great city was named Omashu as a monument to their love.","They built elaborate tunnels, so they could meet secretly. Anyone who tried to follow them would be forever in the labyrinth. But, one day, the man didn't come - he'd died in the war between the two villages. Devastated, the woman unleashed a terrible display of her earthbending power - she could have destroyed them all ... but, instead, she declared the war over. Both villages helped her build a new city where they would live together in peace. The woman's name was Oma and the man's name was Shu. The great city was named Omashu as a monument to their love.",Joshua Hamilton,Lauren MacMullan,8.2 +4995,4995,Earth,2,The Cave of Two Lovers,2,Scene Description,The two look at each other momentarily before turning around.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +4996,4996,Earth,2,The Cave of Two Lovers,2,Katara,[Reading the inscription on the relief in the wall.] Love is brightest [Cuts to shot of a carving of the couple kissing.] in the dark.,Love is brightest in the dark.,Joshua Hamilton,Lauren MacMullan,8.2 +4997,4997,Earth,2,The Cave of Two Lovers,2,Scene Description,"Meanwhile, on the other side of the cave, Sokka glares at the map while Momo comically perches on the top of his head. The map takes up most of the shot until Sokka lowers it.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +4998,4998,Earth,2,The Cave of Two Lovers,2,Moku,"Oh, great! Your plans have led us to another dead end!","Oh, great! Your plans have led us to another dead end!",Joshua Hamilton,Lauren MacMullan,8.2 +4999,4999,Earth,2,The Cave of Two Lovers,2,Scene Description,"Cuts to overhead shot of the entire group standing before a wall of rubble, before switching to Sokka and Moku, with Sokka glaring accusingly at the nomad.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5000,5000,Earth,2,The Cave of Two Lovers,2,Sokka,"[Defensively.] At least I'm thinking of ideas and trying to get us out of here, Moku.","At least I'm thinking of ideas and trying to get us out of here, Moku.",Joshua Hamilton,Lauren MacMullan,8.2 +5001,5001,Earth,2,The Cave of Two Lovers,2,Chong,"Whoa, whoa, wait a minute. We're thinking of ideas? Because I've had an idea for, like, an hour now.","Whoa, whoa, wait a minute. We're thinking of ideas? Because I've had an idea for, like, an hour now.",Joshua Hamilton,Lauren MacMullan,8.2 +5002,5002,Earth,2,The Cave of Two Lovers,2,Sokka,[Angrily; spreads arms out dramatically.] Yes! We're all thinking of ideas!,Yes! We're all thinking of ideas!,Joshua Hamilton,Lauren MacMullan,8.2 +5003,5003,Earth,2,The Cave of Two Lovers,2,Chong,"Well, then listen to this: If love is the key out of here, then all we need to do is play a love song! [Begins playing song much to Sokka's dismay.]","Well, then listen to this: If love is the key out of here, then all we need to do is play a love song!",Joshua Hamilton,Lauren MacMullan,8.2 +5004,5004,Earth,2,The Cave of Two Lovers,2,Scene Description,"Meanwhile, in the tomb of the two lovers, Katara studies the portrait of the two lovers and the inscription while Aang stands off to side.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5005,5005,Earth,2,The Cave of Two Lovers,2,Aang,How are we going to find our way out of these tunnels?,How are we going to find our way out of these tunnels?,Joshua Hamilton,Lauren MacMullan,8.2 +5006,5006,Earth,2,The Cave of Two Lovers,2,Katara,I have a crazy idea.,I have a crazy idea.,Joshua Hamilton,Lauren MacMullan,8.2 +5007,5007,Earth,2,The Cave of Two Lovers,2,Aang,[Curiously.] What?,What?,Joshua Hamilton,Lauren MacMullan,8.2 +5008,5008,Earth,2,The Cave of Two Lovers,2,Katara,"[Hesitant. Walks away, slightly embarrassed.] Never mind. It's too crazy.",Never mind. It's too crazy.,Joshua Hamilton,Lauren MacMullan,8.2 +5009,5009,Earth,2,The Cave of Two Lovers,2,Aang,"Katara, what is it?","Katara, what is it?",Joshua Hamilton,Lauren MacMullan,8.2 +5010,5010,Earth,2,The Cave of Two Lovers,2,Katara,I was thinking ... the curse says we'll be trapped in here forever unless we trust in love ...,I was thinking ... the curse says we'll be trapped in here forever unless we trust in love ...,Joshua Hamilton,Lauren MacMullan,8.2 +5011,5011,Earth,2,The Cave of Two Lovers,2,Aang,Right ...,Right ...,Joshua Hamilton,Lauren MacMullan,8.2 +5012,5012,Earth,2,The Cave of Two Lovers,2,Katara,"[Turns to face him and gestures to the portrait.] And here, it says, ""Love is brightest in the dark,"" and has a picture of them kissing.","And here, it says, ""Love is brightest in the dark,"" and has a picture of them kissing.",Joshua Hamilton,Lauren MacMullan,8.2 +5013,5013,Earth,2,The Cave of Two Lovers,2,Aang,[Utterly confused and lost.] Where are you going with this?,Where are you going with this?,Joshua Hamilton,Lauren MacMullan,8.2 +5014,5014,Earth,2,The Cave of Two Lovers,2,Katara,"[Shyly, blushing.] Well, what if we ... kissed?","Well, what if we ... kissed?",Joshua Hamilton,Lauren MacMullan,8.2 +5015,5015,Earth,2,The Cave of Two Lovers,2,Aang,[Very surprised.] Us ... kissing?,Us ... kissing?,Joshua Hamilton,Lauren MacMullan,8.2 +5016,5016,Earth,2,The Cave of Two Lovers,2,Katara,See? It was a crazy idea.,See? It was a crazy idea.,Joshua Hamilton,Lauren MacMullan,8.2 +5017,5017,Earth,2,The Cave of Two Lovers,2,Aang,[Dreamily.] Us ... kissing ...,Us ... kissing ...,Joshua Hamilton,Lauren MacMullan,8.2 +5018,5018,Earth,2,The Cave of Two Lovers,2,Katara,[Fake-jokingly.] Us kissing. What was I thinking? Can you imagine that?,Us kissing. What was I thinking? Can you imagine that?,Joshua Hamilton,Lauren MacMullan,8.2 +5019,5019,Earth,2,The Cave of Two Lovers,2,Aang,[Fake-jokingly.] Yeah. [Awkwardly laughs.] I definitely wouldn't want to kiss you! [Beat.],Yeah. I definitely wouldn't want to kiss you!,Joshua Hamilton,Lauren MacMullan,8.2 +5020,5020,Earth,2,The Cave of Two Lovers,2,Katara,"[Insulted.] Oh, well! I didn't realize it was such a horrible option. [Angrily.] Sorry I suggested it!","Oh, well! I didn't realize it was such a horrible option. Sorry I suggested it!",Joshua Hamilton,Lauren MacMullan,8.2 +5021,5021,Earth,2,The Cave of Two Lovers,2,Aang,"[Realizing his mistake.] No, no, I mean ... if there was a choice between kissing you and dying ...","No, no, I mean ... if there was a choice between kissing you and dying ...",Joshua Hamilton,Lauren MacMullan,8.2 +5022,5022,Earth,2,The Cave of Two Lovers,2,Katara,[Disgusted.] Ugh!,Ugh!,Joshua Hamilton,Lauren MacMullan,8.2 +5023,5023,Earth,2,The Cave of Two Lovers,2,Aang,[Desperately.] What? I'm saying is I would rather kiss you than die - that's a compliment.,What? I'm saying is I would rather kiss you than die - that's a compliment.,Joshua Hamilton,Lauren MacMullan,8.2 +5024,5024,Earth,2,The Cave of Two Lovers,2,Katara,"[Enraged.] Well, I'm not sure which I'd rather do! [Slams the torch into his hand and storms away.]","Well, I'm not sure which I'd rather do!",Joshua Hamilton,Lauren MacMullan,8.2 +5025,5025,Earth,2,The Cave of Two Lovers,2,Aang,[Miserably.] What is wrong with me ...,What is wrong with me ...,Joshua Hamilton,Lauren MacMullan,8.2 +5026,5026,Earth,2,The Cave of Two Lovers,2,Scene Description,"He walks away, the screen darkening in his wake. The scene changes to where Chong and his nomads are playing love songs, the camera panning down to show the group walking past.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5027,5027,Earth,2,The Cave of Two Lovers,2,Chong,"[Singing.] Even if you're lost, you can't lose the love because it's in your heart ...","Even if you're lost, you can't lose the love because it's in your heart ...",Joshua Hamilton,Lauren MacMullan,8.2 +5028,5028,Earth,2,The Cave of Two Lovers,2,Scene Description,"Sokka slaps his forehead once more. The scene changes where we now see Zuko and Iroh preparing to depart from Song's house. They stand outside, dozens of fireflies in the air.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5029,5029,Earth,2,The Cave of Two Lovers,2,Iroh,Thank you for the duck. It was excellent.,Thank you for the duck. It was excellent.,Joshua Hamilton,Lauren MacMullan,8.2 +5030,5030,Earth,2,The Cave of Two Lovers,2,Song's mother,You're welcome. It brings me pleasure to see someone eat my cooking with such ... gusto.,You're welcome. It brings me pleasure to see someone eat my cooking with such ... gusto.,Joshua Hamilton,Lauren MacMullan,8.2 +5031,5031,Earth,2,The Cave of Two Lovers,2,Iroh,[Pats his stomach in a contented manner.] Much practice.,Much practice.,Joshua Hamilton,Lauren MacMullan,8.2 +5032,5032,Earth,2,The Cave of Two Lovers,2,Scene Description,Zuko turns to leave.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +5033,5033,Earth,2,The Cave of Two Lovers,2,Iroh,"Junior, where are your manners? You need to thank these nice people.","Junior, where are your manners? You need to thank these nice people.",Joshua Hamilton,Lauren MacMullan,8.2 +5034,5034,Earth,2,The Cave of Two Lovers,2,Zuko,[Turns and bows.] Thank you.,Thank you.,Joshua Hamilton,Lauren MacMullan,8.2 +5035,5035,Earth,2,The Cave of Two Lovers,2,Song,"I know you don't think there's any hope left in the world, but there is hope. The Avatar has returned.","I know you don't think there's any hope left in the world, but there is hope. The Avatar has returned.",Joshua Hamilton,Lauren MacMullan,8.2 +5036,5036,Earth,2,The Cave of Two Lovers,2,Zuko,[Bitterly.] I know.,I know.,Joshua Hamilton,Lauren MacMullan,8.2 +5037,5037,Earth,2,The Cave of Two Lovers,2,Scene Description,"He leaves, but stops as he comes across an ostrich horse. Quietly, he walks over to the animal, unfastens it from its post and leads it away. The camera cuts to a shot from Song's front yard. Zuko appears on screen, riding the animal.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5038,5038,Earth,2,The Cave of Two Lovers,2,Iroh,What are you doing? These people just showed you great kindness.,What are you doing? These people just showed you great kindness.,Joshua Hamilton,Lauren MacMullan,8.2 +5039,5039,Earth,2,The Cave of Two Lovers,2,Zuko,They're about to show us a little more kindness. Well?,They're about to show us a little more kindness. Well?,Joshua Hamilton,Lauren MacMullan,8.2 +5040,5040,Earth,2,The Cave of Two Lovers,2,Scene Description,"Disappointed and reluctant, Iroh mounts the ostrich horse and the two ride away, leaving Song upset. She quietly closes the screen door to the house. The scene switches to the cave where Aang and Katara are still wandering about hopelessly, their torch ready to burn out at any moment.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5041,5041,Earth,2,The Cave of Two Lovers,2,Aang,"We're going to run out of light any second now, aren't we?","We're going to run out of light any second now, aren't we?",Joshua Hamilton,Lauren MacMullan,8.2 +5042,5042,Earth,2,The Cave of Two Lovers,2,Katara,I think so ...,I think so ...,Joshua Hamilton,Lauren MacMullan,8.2 +5043,5043,Earth,2,The Cave of Two Lovers,2,Aang,"Then, what are we going to do?","Then, what are we going to do?",Joshua Hamilton,Lauren MacMullan,8.2 +5044,5044,Earth,2,The Cave of Two Lovers,2,Katara,What can we do?,What can we do?,Joshua Hamilton,Lauren MacMullan,8.2 +5045,5045,Earth,2,The Cave of Two Lovers,2,Scene Description,"She silently walks over and grabs hold of his hand. Aang smiles up at her. The camera cuts to a close-up of Katara's face. The two are seen leaning into one another as the last of the torch light fades. Suddenly, the ceiling of the cave lights up revealing thousands of glowing crystals gleaming overhead. Meanwhile, Sokka and the band of nomads are journeying through the cave when they hear low growls. The camera zooms in on a dark tunnel where several wolfbats come into the light, racing toward them. Sokka waves his hands frantically in an attempt to scare them off. The creatures fly straight past him.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5046,5046,Earth,2,The Cave of Two Lovers,2,Chong,"Hey! You saved us, Sokka!","Hey! You saved us, Sokka!",Joshua Hamilton,Lauren MacMullan,8.2 +5047,5047,Earth,2,The Cave of Two Lovers,2,Sokka,"No, they were trying to get away from something!","No, they were trying to get away from something!",Joshua Hamilton,Lauren MacMullan,8.2 +5048,5048,Earth,2,The Cave of Two Lovers,2,Chong,From what?,From what?,Joshua Hamilton,Lauren MacMullan,8.2 +5049,5049,Earth,2,The Cave of Two Lovers,2,Scene Description,"The caves rumble. Cuts to an overhead shot of the group as a wall of rock crumbles. Without warning, two giant badgermoles burst through the caves, causing the group to panic. One badgermole closes its hands together in a prayerful manner, closing off a tunnel behind it with earthbending. The camera shifts right across the group and cuts to the other badgermole which pounds the ground with its paws and raises a wall of earth, blocking off the exits. Cuts to an overhead shot of the cave where one badgermole is seen using earthbending to create a split in the earth between the nomads and Sokka. +Cuts to Sokka who tries to avoid the badgermole's swipes. He is blown back several feet and starts hastily backing away, his fingers hitting a string on the lute in the process, producing a musical note. Cuts to a close-up of a badgermole who cocks its head curiously. The creatures quiet down as he picks up the lute and begins playing a tune.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5050,5050,Earth,2,The Cave of Two Lovers,2,Chong,"Hey, those things are music lovers!","Hey, those things are music lovers!",Joshua Hamilton,Lauren MacMullan,8.2 +5051,5051,Earth,2,The Cave of Two Lovers,2,Sokka,"[Singing nervously.] Badgermoles coming toward me. Come on guys, help me out!","Badgermoles coming toward me. Come on guys, help me out!",Joshua Hamilton,Lauren MacMullan,8.2 +5052,5052,Earth,2,The Cave of Two Lovers,2,Chong,"[Singing.] The big, bad badgermoles who earthbend the tunnels, hate the wolfbats, but love the sounds!","The big, bad badgermoles who earthbend the tunnels, hate the wolfbats, but love the sounds!",Joshua Hamilton,Lauren MacMullan,8.2 +5053,5053,Earth,2,The Cave of Two Lovers,2,Scene Description,"The scene switches to Aang and Katara who are standing underneath the ceiling of glowing crystals, their hands linked.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5054,5054,Earth,2,The Cave of Two Lovers,2,Aang,They're made of some kind of crystal. They must only light up in the dark.,They're made of some kind of crystal. They must only light up in the dark.,Joshua Hamilton,Lauren MacMullan,8.2 +5055,5055,Earth,2,The Cave of Two Lovers,2,Katara,That's how the two lovers found each other. [Gestures with her hand along the ceiling.] They just put out their lights and followed the crystals. [Sees the exit.] That must be the way out! [The two hug.],That's how the two lovers found each other. They just put out their lights and followed the crystals. That must be the way out!,Joshua Hamilton,Lauren MacMullan,8.2 +5056,5056,Earth,2,The Cave of Two Lovers,2,Aang,"So, uh ...","So, uh ...",Joshua Hamilton,Lauren MacMullan,8.2 +5057,5057,Earth,2,The Cave of Two Lovers,2,Katara,Let's go!,Let's go!,Joshua Hamilton,Lauren MacMullan,8.2 +5058,5058,Earth,2,The Cave of Two Lovers,2,Scene Description,"She runs toward the exit. Aang stares after her before shaking his head and smiling. He and Appa follow close behind. They make their way out of the cave and into the outdoors. Appa bounds out of the tunnel and flops onto his back, tongue lolling out in content.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5059,5059,Earth,2,The Cave of Two Lovers,2,Aang,What about Sokka?,What about Sokka?,Joshua Hamilton,Lauren MacMullan,8.2 +5060,5060,Earth,2,The Cave of Two Lovers,2,Scene Description,"The two seem a bit concerned at first, but a rumbling is heard. Cuts to an overhead shot of the exit where at that moment, Sokka and the band of nomads emerge from the cave, riding atop badgermoles. Debris flies everywhere and Aang and Katara shield themselves from the rubble. The camera pans upward to Sokka riding atop one of the creatures, waving, Momo flying about.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5061,5061,Earth,2,The Cave of Two Lovers,2,Katara,Sokka!,Sokka!,Joshua Hamilton,Lauren MacMullan,8.2 +5062,5062,Earth,2,The Cave of Two Lovers,2,Scene Description,"Cuts to overhead shot of the cave, the camera panning to the left. Sokka dismounts the badgermole and approaches Katara.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5063,5063,Earth,2,The Cave of Two Lovers,2,Sokka,How did you guys get out?,How did you guys get out?,Joshua Hamilton,Lauren MacMullan,8.2 +5064,5064,Earth,2,The Cave of Two Lovers,2,Aang,"Just like the legend said, we let love lead the way. [Smiles sheepishly.]","Just like the legend said, we let love lead the way.",Joshua Hamilton,Lauren MacMullan,8.2 +5065,5065,Earth,2,The Cave of Two Lovers,2,Sokka,"Really? We let huge, ferocious beasts lead our way.","Really? We let huge, ferocious beasts lead our way.",Joshua Hamilton,Lauren MacMullan,8.2 +5066,5066,Earth,2,The Cave of Two Lovers,2,Scene Description,"He turns to the badgermoles and waves to them as they slowly plod their way into the cave again. Two walls of rock rise up where the badgermoles re-entered the cave. The camera pans to where Momo is seemingly communicating with Appa, telling him of his journey through the caves. Appa seemingly roars in response to the lemur. Katara is seen hugging her brother.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5067,5067,Earth,2,The Cave of Two Lovers,2,Katara,Why is your forehead all red?,Why is your forehead all red?,Joshua Hamilton,Lauren MacMullan,8.2 +5068,5068,Earth,2,The Cave of Two Lovers,2,Chong,[Talking about Aang.] Nobody react to what I'm about to tell you: I think that kid might be the Avatar!,Nobody react to what I'm about to tell you: I think that kid might be the Avatar!,Joshua Hamilton,Lauren MacMullan,8.2 +5069,5069,Earth,2,The Cave of Two Lovers,2,Scene Description,"Sokka smacks his forehead, enlarging the red spot while Chong looks at him in curiosity. Meanwhile, Aang confronts the other nomads.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5070,5070,Earth,2,The Cave of Two Lovers,2,Aang,So are you guys going to come to Omashu with us?,So are you guys going to come to Omashu with us?,Joshua Hamilton,Lauren MacMullan,8.2 +5071,5071,Earth,2,The Cave of Two Lovers,2,Moku,Nope.,Nope.,Joshua Hamilton,Lauren MacMullan,8.2 +5072,5072,Earth,2,The Cave of Two Lovers,2,Aang,"Okay. Thanks for everything, Moku.","Okay. Thanks for everything, Moku.",Joshua Hamilton,Lauren MacMullan,8.2 +5073,5073,Earth,2,The Cave of Two Lovers,2,Scene Description,The band of nomads begins walking away. The camera pans to where Chong is seen placing a necklace of flowers around Sokka's neck.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +5074,5074,Earth,2,The Cave of Two Lovers,2,Chong,"Sokka, I hope you learned a little something about not letting the plans get in the way of the journey. [Hugs him.]","Sokka, I hope you learned a little something about not letting the plans get in the way of the journey.",Joshua Hamilton,Lauren MacMullan,8.2 +5075,5075,Earth,2,The Cave of Two Lovers,2,Sokka,[Irritated yet blushing.] Just play your songs.,Just play your songs.,Joshua Hamilton,Lauren MacMullan,8.2 +5076,5076,Earth,2,The Cave of Two Lovers,2,Chong,"Hey! Good plan! [Begins playing his lute and singing. Cuts to shot of Team Avatar.] Even if you're lost, you can't lose the love because it's in your heart. Da, da, da ...","Hey! Good plan! Even if you're lost, you can't lose the love because it's in your heart. Da, da, da ...",Joshua Hamilton,Lauren MacMullan,8.2 +5077,5077,Earth,2,The Cave of Two Lovers,2,Scene Description,"While Chong is singing, Aang shoots a look at Katara, Sokka crosses his arms and Katara blushes. The camera pans upward and fades to a scene later in the day where the trio is heading up the mountainside to Omashu.",NA,Joshua Hamilton,Lauren MacMullan,8.2 +5078,5078,Earth,2,The Cave of Two Lovers,2,Sokka,"[From afar.] The journey was long and annoying, but now you get to see what it's really about: the destination. [Close-up of him.] I present to you the Earth Kingdom city of O- [Pauses abruptly.] Oh no ...","The journey was long and annoying, but now you get to see what it's really about: the destination. I present to you the Earth Kingdom city of O- Oh no ...",Joshua Hamilton,Lauren MacMullan,8.2 +5079,5079,Earth,2,The Cave of Two Lovers,2,Scene Description,The camera shifts to behind him where they soon discover that Omashu has been captured and placed under Fire Nation rule. Ominous music is heard as a close-up of the entrance draped with a Fire Nation flag is shown.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +5080,5080,Earth,2,The Cave of Two Lovers,2,Scene Description,Fades to credits.,NA,Joshua Hamilton,Lauren MacMullan,8.2 +5081,5081,Earth,2,Return to Omashu,3,Scene Description,"The episode opens to a bright, blue sky, the sun shining. The camera zooms out quickly to reveal a red Fire Nation flag waving in the wind. Cuts to shot of the Earth Kingdom city of Omashu having been captured by the Fire Nation. A bold red flag bearing the Fire Nation insignia is proudly hung; gray plumes of smoke fill the air surrounding the fallen city.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5082,5082,Earth,2,Return to Omashu,3,Aang,"[Viewing the city, his back to the camera; in a somewhat shocked tone.] I can't believe it. I know the War has spread far, [Turning toward the camera sadly.] but Omashu always seemed ... untouchable.","I can't believe it. I know the War has spread far, but Omashu always seemed ... untouchable.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5083,5083,Earth,2,Return to Omashu,3,Sokka,Up until now it was. [Crosses arms over chest.] Now Ba Sing Se is the only great Earth Kingdom stronghold left.,Up until now it was. Now Ba Sing Se is the only great Earth Kingdom stronghold left.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5084,5084,Earth,2,Return to Omashu,3,Katara,"[Cuts to shot of entire group standing on the cliffside overlooking the city.] This is horrible, [Approaches Aang; cuts to side-view of the two standing next to each other.] but we have to move on.","This is horrible, but we have to move on.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5085,5085,Earth,2,Return to Omashu,3,Aang,"No, I'm going in to find Bumi.","No, I'm going in to find Bumi.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5086,5086,Earth,2,Return to Omashu,3,Sokka,"Aang, stop. We don't even know if Bumi's still ...","Aang, stop. We don't even know if Bumi's still ...",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5087,5087,Earth,2,Return to Omashu,3,Aang,[Angrily.] What? If he's still what?,What? If he's still what?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5088,5088,Earth,2,Return to Omashu,3,Sokka,[Unsurely.] A-around.,A-around.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5089,5089,Earth,2,Return to Omashu,3,Katara,"I know you had your heart set on Bumi, but there are other people who can teach you earthbending.","I know you had your heart set on Bumi, but there are other people who can teach you earthbending.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5090,5090,Earth,2,Return to Omashu,3,Aang,This isn't about finding a teacher. This is about finding my friend.,This isn't about finding a teacher. This is about finding my friend.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5091,5091,Earth,2,Return to Omashu,3,Scene Description,Scene changes to below Omashu's gate where Aang is attempting to open the entrance to a secret tunnel.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5092,5092,Earth,2,Return to Omashu,3,Sokka,A secret passage? Why didn't we just use this last time?,A secret passage? Why didn't we just use this last time?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5093,5093,Earth,2,Return to Omashu,3,Scene Description,"Aang opens the tunnel, revealing it to be filled with sewage.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5094,5094,Earth,2,Return to Omashu,3,Sokka,Ugh!,Ugh!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5095,5095,Earth,2,Return to Omashu,3,Aang,That answer your question?,That answer your question?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5096,5096,Earth,2,Return to Omashu,3,Sokka,Eww!,Eww!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5097,5097,Earth,2,Return to Omashu,3,Scene Description,"The group proceeds through the tunnel to the inside of Omashu. Aang conjures an air ball with his staff to clear the path while Katara uses waterbending to maneuver the sewage carefully around her. Sokka, on the other hand, is continually soaked in the foul substance.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5098,5098,Earth,2,Return to Omashu,3,Katara,That wasn't as bad as I thought.,That wasn't as bad as I thought.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5099,5099,Earth,2,Return to Omashu,3,Scene Description,Sokka emerges covered in slime. Katara spots water nearby and splashes Sokka with it using waterbending to wash off the sewage followed by Aang who uses airbending to dry him off while he screams which reveals that three pentapi have attached themselves to his skin.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5100,5100,Earth,2,Return to Omashu,3,Sokka,[In a panicking tone while trying to yank the pentapox off.] Ahh! They won't let go! Help!,Ahh! They won't let go! Help!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5101,5101,Earth,2,Return to Omashu,3,Aang,[Quickly tackles Sokka into a wall in order to slience him; in a somewhat cheerful tone.] Shh! Stop making so much noise. It's just a purple pentapus.,Shh! Stop making so much noise. It's just a purple pentapus.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5102,5102,Earth,2,Return to Omashu,3,Scene Description,"Sokka looks at the pentapuses in fear. Aang removes the first pentapus by lightly rubbing its head as Sokka watches. Sokka rubs the spot where the creature was attached, and does the same procedure to get the second one off. Several guards suddenly approach them as Aang takes the third one off.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5103,5103,Earth,2,Return to Omashu,3,Guard one,Hey! What are you kids doing out past curfew?,Hey! What are you kids doing out past curfew?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5104,5104,Earth,2,Return to Omashu,3,Katara,Sorry. We were just on our way home.,Sorry. We were just on our way home.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5105,5105,Earth,2,Return to Omashu,3,Scene Description,"The kids turn and walk away, Sokka bringing up the rear. The guard notices the red welts on the back of Sokka's neck.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5106,5106,Earth,2,Return to Omashu,3,Guard one,"[Notices the spots where the pentapus was attached to Sokka.] Wait, what's the matter with him?","Wait, what's the matter with him?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5107,5107,Earth,2,Return to Omashu,3,Katara,"Uh, he has pentapox, sir. [As he approaches.] Umm, it's highly contagious.","Uh, he has pentapox, sir. Umm, it's highly contagious.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5108,5108,Earth,2,Return to Omashu,3,Sokka,"[Exaggerating.] Oh, it's so awful. I'm dying.","Oh, it's so awful. I'm dying.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5109,5109,Earth,2,Return to Omashu,3,Katara,And deadly.,And deadly.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5110,5110,Earth,2,Return to Omashu,3,Guard two,"Hey, I think I heard of pentapox! Didn't your cousin Chang die of it?","Hey, I think I heard of pentapox! Didn't your cousin Chang die of it?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5111,5111,Earth,2,Return to Omashu,3,Guard one,"We'd better go wash our hands, and burn our clothes.","We'd better go wash our hands, and burn our clothes.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5112,5112,Earth,2,Return to Omashu,3,Scene Description,The guards run away in fear.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5113,5113,Earth,2,Return to Omashu,3,Aang,"Thank you, sewer friends.","Thank you, sewer friends.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5114,5114,Earth,2,Return to Omashu,3,Scene Description,"Scene switches to on board Azula's ship. She is consulting her assistants, Li and Lo.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5115,5115,Earth,2,Return to Omashu,3,Li,"When tracking your brother and uncle, traveling with the royal procession may no longer be an option.","When tracking your brother and uncle, traveling with the royal procession may no longer be an option.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5116,5116,Earth,2,Return to Omashu,3,Lo,May no longer be wise.,May no longer be wise.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5117,5117,Earth,2,Return to Omashu,3,Lo and Li,If you hope to keep the element of surprise.,If you hope to keep the element of surprise.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5118,5118,Earth,2,Return to Omashu,3,Azula,"You're right. The Royal Procession is dead weight. If I want to catch my prey, I must be agile, nimble. I need a small, elite team. It's time to visit some old friends.","You're right. The Royal Procession is dead weight. If I want to catch my prey, I must be agile, nimble. I need a small, elite team. It's time to visit some old friends.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5119,5119,Earth,2,Return to Omashu,3,Scene Description,"Scene switches to Omashu by twilight, where Aang, Katara and Sokka with Momo on his shoulder are sneaking around. They hide behind some metal bars used for construction as a patrol passes.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5120,5120,Earth,2,Return to Omashu,3,Katara,Let's find Bumi and get out of here.,Let's find Bumi and get out of here.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5121,5121,Earth,2,Return to Omashu,3,Sokka,Where would they be keeping him?,Where would they be keeping him?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5122,5122,Earth,2,Return to Omashu,3,Aang,Somewhere he can't earthbend. Somewhere made of metal.,Somewhere he can't earthbend. Somewhere made of metal.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5123,5123,Earth,2,Return to Omashu,3,Scene Description,The foursome goes on. The picture switches to a close-up of a young woman with black hair and an emotionless expression named Mai. Behind her walk two Fire Nation guards.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5124,5124,Earth,2,Return to Omashu,3,Mai,There really is no fathoming the depths of my hatred for this place.,There really is no fathoming the depths of my hatred for this place.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5125,5125,Earth,2,Return to Omashu,3,Scene Description,Cut to a wider shot to show Mai walking next to an older woman carrying a baby. They are being escorted by Fire Nation guards.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5126,5126,Earth,2,Return to Omashu,3,Michi,"Mai, your father was appointed governor. We're like royalty here. Be happy and enjoy it.","Mai, your father was appointed governor. We're like royalty here. Be happy and enjoy it.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5127,5127,Earth,2,Return to Omashu,3,Scene Description,"The picture widens as the camera zooms up to show some rocks, ready to be pushed down one of Omashu's mail delivery chutes which ends near where Mai's party is walking. You can clearly see the light of the torches from up above.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5128,5128,Earth,2,Return to Omashu,3,Resistance fighter,The targets are approaching.,The targets are approaching.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5129,5129,Earth,2,Return to Omashu,3,Scene Description,Close-up of a bearded man wearing an Earth Kingdom military uniform.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5130,5130,Earth,2,Return to Omashu,3,Yung,Take them out.,Take them out.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5131,5131,Earth,2,Return to Omashu,3,Scene Description,Cut back to Mai's party walking down below.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5132,5132,Earth,2,Return to Omashu,3,Mai,"[In a dull tone.] I thought my life was boring in the Fire Nation, but this place is unbearably bleak. Nothing ever happens.","I thought my life was boring in the Fire Nation, but this place is unbearably bleak. Nothing ever happens.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5133,5133,Earth,2,Return to Omashu,3,Scene Description,"Cut to the resistance fighter at the beginning of the chute, who pushes the rocks down the chute with earthbending. Aang and his friends walk by and they see the rocks crumbling down at high speed. Aang looks in distress at Mai's party. He raises his staff and pulverizes the rock with a blast of air as it passes. Mai's party is alerted by the sound and looks up to see what caused it. Close-up of Mai who squints her eyes to make out who is standing above her before the picture shows Aang again. Cut back to the party.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5134,5134,Earth,2,Return to Omashu,3,Michi,[Pointing at Aang.] The resistance!,The resistance!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5135,5135,Earth,2,Return to Omashu,3,Scene Description,"Close-up of Mai, who is seen for the first time with a faint smile on her face. She spreads her arms at Aang, causing tiny arrows to fly toward him. Aang quickly jumps up, avoiding the arrows which bury themselves in the stack of construction material Aang lands on. Aang, Katara, Sokka and Momo run away as two of the Fire Nation guards are climbing up ladders to get to them. +Katara quickly turns around and uses the water from her pouch to form a water whip and send the two guards flying off into the deep. As you see them falling, we see Mai reaching the top. While she is running toward Katara, she stretches out her right hand, shooting off some more arrows. Katara raises a shield of ice to protect herself as the arrows embed themselves in it. Mai keeps charging Katara, who runs away. Mai jumps over the icy wall in hot pursuit of Katara. Aang awaits Katara and lets her pass as he awaits the arrival of Mai. With a spinning sweep of wind, he causes some of the construction scaffolding to collapse. Mai sees the scaffolding collapse and directs a throwing star right at Aang. He twirls his staff in front of him and catches the flying star with it. Mai stands on one side of the collapsed scaffolding and has a clear shot on Aang, Katara, Sokka and Momo. As she throws more arrows at them, the ground beneath the team opens up, making them disappear and rapidly closes again. Mai looks at the place where her targets disappeared, letting out a deep sigh. She turns around and walks away. +Cut to a tunnel scene. The image shows the rectangle where the kids fell through. Green sewage waste drips from the ceiling. The camera moves down, revealing a group of people who are looking at the three kids. Aang and Sokka are rubbing their heads, while Katara just sits there a bit disorientated. Cut to a shot of Yung, flanked by two other men. +The picture switches to an upside down shot of some grass. When the view pans up, we see mountains, circus tents and some people working in the background. Azula, also upside down, walks in.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5136,5136,Earth,2,Return to Omashu,3,Azula,"Ty Lee, could that possibly be you?","Ty Lee, could that possibly be you?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5137,5137,Earth,2,Return to Omashu,3,Scene Description,"The camera moves to show a close-up of a girl, Ty Lee, standing on her index fingers. She smiles when she sees Azula.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5138,5138,Earth,2,Return to Omashu,3,Ty Lee,Azula!,Azula!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5139,5139,Earth,2,Return to Omashu,3,Scene Description,Ty Lee flips from her stance and spins around in a graceful twirl to bow down before Azula. She runs forward to embrace Azula.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5140,5140,Earth,2,Return to Omashu,3,Ty Lee,It is so good to see you!,It is so good to see you!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5141,5141,Earth,2,Return to Omashu,3,Azula,"Please, don't let me interrupt your ... [Raises an eyebrow in wonder.] whatever it is you were doing.","Please, don't let me interrupt your ... whatever it is you were doing.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5142,5142,Earth,2,Return to Omashu,3,Scene Description,"Ty Lee, still smiling, does a back flip and ends up lying on her chest with one leg stretched out over her head and the other straight up to the sky.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5143,5143,Earth,2,Return to Omashu,3,Azula,"[Glances around.] Tell me, what is the daughter of a nobleman doing here? [Looks back at Ty Lee.] Certainly our parents didn't send us to the Royal Fire Academy for Girls to end up in ... [Looks to her side.] places like this.","Tell me, what is the daughter of a nobleman doing here? Certainly our parents didn't send us to the Royal Fire Academy for Girls to end up in ... places like this.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5144,5144,Earth,2,Return to Omashu,3,Scene Description,"Azula looks as three men are trying to move a platypus bear. The Bear groans and moves up to reveal that it has laid an egg. Azula looks at this in disgust and turns her attention back to Ty Lee, grinning once more.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5145,5145,Earth,2,Return to Omashu,3,Azula,I have a proposition for you.,I have a proposition for you.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5146,5146,Earth,2,Return to Omashu,3,Scene Description,"Cut to Ty Lee who is still lying on the ground, watching the same Platypus bear as Azula, but she looks happy to see what has happened. When Azula addresses her, she diverts her attention away from the bear and looks at Azula in a wondering gaze.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5147,5147,Earth,2,Return to Omashu,3,Azula,"I'm hunting a traitor. [While looking casually at her nails.] You remember my old fuddy-duddy uncle, don't you?","I'm hunting a traitor. You remember my old fuddy-duddy uncle, don't you?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5148,5148,Earth,2,Return to Omashu,3,Ty Lee,"[Resting on her chest and elbows, but now with her both feet resting on her head.] Oh yeah. He was so funny.",Oh yeah. He was so funny.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5149,5149,Earth,2,Return to Omashu,3,Azula,I would be honored if you would join me on my mission.,I would be honored if you would join me on my mission.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5150,5150,Earth,2,Return to Omashu,3,Ty Lee,"Oh ... I ... uh ... would love to. [She stands up in a fluid elegant movement.] But the truth is, I'm really happy here. [Smiling sincerely.] I mean, my aura has never been pinker!","Oh ... I ... uh ... would love to. But the truth is, I'm really happy here. I mean, my aura has never been pinker!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5151,5151,Earth,2,Return to Omashu,3,Azula,"[Raising up her hand in a ""stop"" motion to Ty Lee.] I'll take your word for it. Well, I wouldn't want you to give up the life you love just to please me.","I'll take your word for it. Well, I wouldn't want you to give up the life you love just to please me.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5152,5152,Earth,2,Return to Omashu,3,Ty Lee,"[Bows in respect.] Thank you, Azula. [Continues stretching.]","Thank you, Azula.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5153,5153,Earth,2,Return to Omashu,3,Azula,"[While walking away.] Of course, before I leave, I'm going to catch your show.","Of course, before I leave, I'm going to catch your show.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5154,5154,Earth,2,Return to Omashu,3,Scene Description,"Ty Lee's accidentally breaks her stance, as she gasps in panic. She continues her stretch once more and the expression of panic changes to one of worry.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5155,5155,Earth,2,Return to Omashu,3,Ty Lee,[Hesitantly.] Uh ... yeah ... sure ... uh ... of course ...,Uh ... yeah ... sure ... uh ... of course ...,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5156,5156,Earth,2,Return to Omashu,3,Scene Description,"Cut back to Omashu, where a lot of people have gathered in some sort of underground cave. At the other side of the room, Aang, Sokka, and Katara enter the large space through a tunnel; they are talking to three other men.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5157,5157,Earth,2,Return to Omashu,3,Aang,"So, is King Bumi with you guys? Is he leading the resistance?","So, is King Bumi with you guys? Is he leading the resistance?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5158,5158,Earth,2,Return to Omashu,3,Scene Description,Cut to a close-up of Yung who angrily balls his fist as he answers Aang's question.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5159,5159,Earth,2,Return to Omashu,3,Yung,"Of course not! The day of the invasion, we readied ourselves for battle. We were prepared to defend our city ... to fight for our lives and for our freedom. But before we even had a chance, King Bumi surrendered.","Of course not! The day of the invasion, we readied ourselves for battle. We were prepared to defend our city ... to fight for our lives and for our freedom. But before we even had a chance, King Bumi surrendered.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5160,5160,Earth,2,Return to Omashu,3,Scene Description,"The camera moves slowly toward Aang, who is clearly disconcerted by the news. Katara gives Aang a look of concern.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5161,5161,Earth,2,Return to Omashu,3,Yung,"The day of the invasion, I asked King Bumi what he wanted to do. [Cut to his close-up.] He looked me in the eye and said ...","The day of the invasion, I asked King Bumi what he wanted to do. He looked me in the eye and said ...",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5162,5162,Earth,2,Return to Omashu,3,Scene Description,"A flashback shows the day Omashu was under attack. King Bumi and Yung stand atop one of the city's walls, looking down while fire balls decorate the sky.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5163,5163,Earth,2,Return to Omashu,3,King Bumi,I'm going to do ... nothing! [He starts to laugh and snort like the mad lunatic he is.],I'm going to do ... nothing!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5164,5164,Earth,2,Return to Omashu,3,Scene Description,The flashback fades away to make room for another close-up of Yung.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5165,5165,Earth,2,Return to Omashu,3,Yung,It doesn't matter now. [Cut to Aang who sadly lowers his eyes as the resistance leader continues.] Fighting the Fire Nation is the only path to freedom. [Switch to a close-up of Yung again.] And freedom is worth dying for.,It doesn't matter now. Fighting the Fire Nation is the only path to freedom. And freedom is worth dying for.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5166,5166,Earth,2,Return to Omashu,3,Scene Description,"As Yung ends his speech, a smile plays on his face. Aang sadly leans on his staff. He raises his eyes as while he addresses Yung.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5167,5167,Earth,2,Return to Omashu,3,Aang,"Actually there's another path to freedom. You could leave Omashu. You're directing all your energy to fight the Fire Nation. [The camera pans to the right, showing several Earth Kingdom soldiers.] But you're outnumbered. You can't win. Now's the time to retreat, so you can live to fight another day.","Actually there's another path to freedom. You could leave Omashu. You're directing all your energy to fight the Fire Nation. But you're outnumbered. You can't win. Now's the time to retreat, so you can live to fight another day.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5168,5168,Earth,2,Return to Omashu,3,Yung,"You don't understand. They've taken our home, and we have to fight them at any cost! [He makes some powerful hand gestures to make his point more clear.]","You don't understand. They've taken our home, and we have to fight them at any cost!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5169,5169,Earth,2,Return to Omashu,3,Resistance fighter #1,"[In a soft tone.] I don't know, Yung, living to fight another day is startin' to sound pretty good to me.","I don't know, Yung, living to fight another day is startin' to sound pretty good to me.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5170,5170,Earth,2,Return to Omashu,3,Resistance fighter #2,"[He takes a step forward and points toward himself. He addresses Yung with a decisive tone.] Yeah, I'm with the kid!","Yeah, I'm with the kid!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5171,5171,Earth,2,Return to Omashu,3,Scene Description,Yung looks at all the people who have taken refuge under ground and now are living in the sewer tunnels while they whisper among themselves. He looks back at Aang.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5172,5172,Earth,2,Return to Omashu,3,Yung,Fine. But there's thousands of citizens that need to leave. How're we going to get them all out?,Fine. But there's thousands of citizens that need to leave. How're we going to get them all out?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5173,5173,Earth,2,Return to Omashu,3,Scene Description,Switch to Sokka whose hand is on his chin as he is cooking up a plan. He points at Yung as he exclaims his idea.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5174,5174,Earth,2,Return to Omashu,3,Sokka,Suckers!,Suckers!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5175,5175,Earth,2,Return to Omashu,3,Scene Description,"Katara raises one eyebrow and just stares at Sokka. The rest of the group follows her example. Momo chirps questionably. Sokka blinks, shifting his eyes right and left, smiling broadly.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5176,5176,Earth,2,Return to Omashu,3,Sokka,You're all about to come down with a nasty case of pentapox.,You're all about to come down with a nasty case of pentapox.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5177,5177,Earth,2,Return to Omashu,3,Scene Description,"Cut to a shot of a bucket of water filled with pentapi. A hand reaches in and takes one out. The civilian, whose face is already covered with the marks of removed pentapi, places it on his exposed left arm. Its jellylike body moves up and down a bit. After a few seconds, someone else removes the pentapus by gently rubbing its head. We see several shots of people placing and removing pentapi from their face, shoulders and arms. +Switch to a top view of the people as Sokka walks over to them to address them. While he speaks, the camera pans out, showing a close-up of all the inhabitants of Omashu covered with the suction spots of the pentapi.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5178,5178,Earth,2,Return to Omashu,3,Sokka,"The marks make ya look sick, but you gotta act sick too. Ya gotta sell it!","The marks make ya look sick, but you gotta act sick too. Ya gotta sell it!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5179,5179,Earth,2,Return to Omashu,3,Scene Description,"An old man hobbles into view, leaning heavily on his cane. He clutches his back while moaning in pain.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5180,5180,Earth,2,Return to Omashu,3,Sokka,[Grabs the guy who is standing next to him and points at the old man.] Now that's what I'm talkin' about.,Now that's what I'm talkin' about.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5181,5181,Earth,2,Return to Omashu,3,Scene Description,"The man turns around, smiling. He taps his wooden leg with his cane.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5182,5182,Earth,2,Return to Omashu,3,Old man,Years of practice.,Years of practice.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5183,5183,Earth,2,Return to Omashu,3,Sokka,Okay everyone! Into sick formation.,Okay everyone! Into sick formation.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5184,5184,Earth,2,Return to Omashu,3,Scene Description,"Sokka and the other civilians start walking toward the gates of Omashu. Just as Katara wants to join them, she notices that Aang is walking off in the other direction.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5185,5185,Earth,2,Return to Omashu,3,Katara,"Aang, what are you doing? Aren't you coming with us?","Aang, what are you doing? Aren't you coming with us?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5186,5186,Earth,2,Return to Omashu,3,Aang,[He turns around.] No. I'm not leaving until I find Bumi.,No. I'm not leaving until I find Bumi.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5187,5187,Earth,2,Return to Omashu,3,Scene Description,"Momo jumps on Aang's shoulders, tugging Aang's lips. He grabs Momo by his neck and places him back on the ground.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5188,5188,Earth,2,Return to Omashu,3,Aang,"Sorry Momo, I'll feed you later.","Sorry Momo, I'll feed you later.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5189,5189,Earth,2,Return to Omashu,3,Scene Description,"Aang uses airbending to propel him unto the air. He whizzes away, jumping from one rooftop to the other. +Switch to some Fire Nation soldiers with spears who are guarding the gates of Omashu. A moaning crowd of 'sick' people walks toward them from every direction. They move like zombies, swaying back and forth. One of them even falls down. The guards back away as the sick crowd reaches them. Sokka theatrically grabs his face and moans painfully, before stretching out his hands toward the frightened guards.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5190,5190,Earth,2,Return to Omashu,3,Soldier,Plague! Plague!,Plague! Plague!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5191,5191,Earth,2,Return to Omashu,3,Scene Description,"The guards on the ground start to retreat into the citadel behind them, away from the sick, while another guard rings the gong to alert everyone of the problem at hand. +Switch to the governor of Omashu and his family, including Mai, who is eating a bowl of fire flakes, watching on one of his balconies, looking out over the city.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5192,5192,Earth,2,Return to Omashu,3,Ukano,What is going on down there?,What is going on down there?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5193,5193,Earth,2,Return to Omashu,3,Guard,I saw some kids yesterday who were sick with pentapox. It must have spread!,I saw some kids yesterday who were sick with pentapox. It must have spread!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5194,5194,Earth,2,Return to Omashu,3,Ukano,"Pentapox! [He pulls his beard.] Hmm, I'm pretty sure I've heard of that.","Pentapox! Hmm, I'm pretty sure I've heard of that.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5195,5195,Earth,2,Return to Omashu,3,Michi,"Oh, this is terrible.","Oh, this is terrible.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5196,5196,Earth,2,Return to Omashu,3,Guard,What should we do?,What should we do?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5197,5197,Earth,2,Return to Omashu,3,Ukano,Drive them out of the city [He points toward the gates.] ... but don't touch them! We have to rid the city of this disease!,Drive them out of the city ... but don't touch them! We have to rid the city of this disease!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5198,5198,Earth,2,Return to Omashu,3,Scene Description,The guard bows in respect before leaving to spread the governor's orders. Mai calmly offers her dad the bowl of fire flakes.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5199,5199,Earth,2,Return to Omashu,3,Mai,"Fire flakes, Dad?","Fire flakes, Dad?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5200,5200,Earth,2,Return to Omashu,3,Michi,[Gasping.] How awful!,How awful!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5201,5201,Earth,2,Return to Omashu,3,Scene Description,"The governor's family is shown from behind. As his wife hugs her husband, the little baby beside her, Mai's brother Tom-Tom toddles away from the group. +Switch to Aang running through the streets of the city. He nimbly climbs a house and balances on the railing, before landing on a flat rooftop. He spots a giant, white creature below, sadly pushing forth a turnstile. Aang jumps down to discover that the creature is Flopsie, King Bumi's pet goat gorilla.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5202,5202,Earth,2,Return to Omashu,3,Aang,Flopsie!,Flopsie!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5203,5203,Earth,2,Return to Omashu,3,Scene Description,"As Aang calls his name, Flopsie turns around and happily tries to reach his friend. His chains hold him back, so he sadly ceases his attempts. Aang jumps over him and uses the water from his drinking bowl to freeze the lock on his chains. With one swing of his staff, Aang destroys the lock, freeing Flopsie. The happy animal hugs and licks Aang's face.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5204,5204,Earth,2,Return to Omashu,3,Aang,"Come on, Flopsie. [He climbs on top of Flopsie.] You gotta help me find Bumi. Yip Yip! [Flopsie does not move a muscle.] Oh ... I guess that doesn't work with you. Let's go!","Come on, Flopsie. You gotta help me find Bumi. Yip Yip! Oh ... I guess that doesn't work with you. Let's go!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5205,5205,Earth,2,Return to Omashu,3,Scene Description,"Flopsie races off at great speed. Meanwhile Momo is soaring through the city. He lands on a balcony and peeks through a window. We see a cluttered room with dressing panels at the back. A teddy bear is thrown repeatedly in the air by someone behind the panels. Momo spots a full scale of berries and starts to drool. He quickly enters the chamber through the window and starts to stuff his face. He rapidly spits out the seeds. Some of them land behind the panels. Cut to Tom-Tom who is playing with the stuffed animal behind the panels. He notices the seeds and crawls away, following their path. The trail of seeds leads right back to Momo, who is still sitting on the table, his tail dangling over the edge. Tom-Tom sits up in wonder as he examines the tail before pulling it. Cut to a surprised Momo who is pulled down to the ground in mid bite. He pulls a giggling Tom-Tom along as he tries to get away from his grasp. Momo pulls free and jumps out of the window on to the railing. As he looks back, he sees that the baby stumbles toward him with his arms spread out wide. Momo backs away, leaping of the railing and flying away.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5206,5206,Earth,2,Return to Omashu,3,Scene Description,"The baby is too late to grab Momo, so he tumbles off the railing. While he is sliding down the roof, he cannot stop giggling. He lands in a box of berries sliding down one of Omashu's chutes. Momo lands on the same box and starts to stuff his face again. His eyes open wide as Tom-Tom emerges behind him. The baby grabs Momo's tail and bites it. The lemur jumps in the air and frantically flaps his wings in an attempt to get away once more. As the slope becomes steeper, Momo is able to lift himself as well as Tom-Tom who is still clinging on to his tail. The lemur cannot bear the weight and they start to descend. Tom-Tom is being dragged over the ground as they crash-land. Tom-Tom rolls over the ground and lands on top of Momo, pinning him to the ground, and causing him to screech and shake around desperately.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5207,5207,Earth,2,Return to Omashu,3,Scene Description,"The moaning crowd passes them by, diverting Tom-Tom attention away from Momo. Momo escapes into the crowd. The baby pushes himself to his feet and staggers after the crowd, out of the gates.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5208,5208,Earth,2,Return to Omashu,3,Scene Description,"Cut to the Fire Nation circus at night. Upon entering, performers in two Chinese dragon's costumes are dancing. As they move out of the frame, the circus master, Shuzumu, stands before the circus' main ring, addressing the crowd.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5209,5209,Earth,2,Return to Omashu,3,Shuzumu,We're deeply honored to have the Fire Lord's daughter at our humble circus.,We're deeply honored to have the Fire Lord's daughter at our humble circus.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5210,5210,Earth,2,Return to Omashu,3,Scene Description,"Switch to a shot from the back, revealing Azula sitting in high box seat with two guards at her side.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5211,5211,Earth,2,Return to Omashu,3,Shuzumu,Uh ... tell us if there is anything we can do to make the show more enjoyable.,Uh ... tell us if there is anything we can do to make the show more enjoyable.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5212,5212,Earth,2,Return to Omashu,3,Scene Description,Cut to a close-up of Azula.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5213,5213,Earth,2,Return to Omashu,3,Azula,I will.,I will.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5214,5214,Earth,2,Return to Omashu,3,Scene Description,"Cut to a shot of the circus ring. The camera moves up, revealing a net spanned under an acrobat who is balancing on a rope, high up in the air on one hand. The camera zooms in. The acrobat is Ty Lee, who is wearing very colorful clothing. +Switch to a shot of Azula and Shuzumu, who are both looking up, fascinated by Ty Lee's performance.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5215,5215,Earth,2,Return to Omashu,3,Azula,Incredible. Do you think she'll fall?,Incredible. Do you think she'll fall?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5216,5216,Earth,2,Return to Omashu,3,Shuzumu,Of course not.,Of course not.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5217,5217,Earth,2,Return to Omashu,3,Azula,Then wouldn't it make it more interesting if you removed the net?,Then wouldn't it make it more interesting if you removed the net?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5218,5218,Earth,2,Return to Omashu,3,Scene Description,Azula looks directly at Shuzumu. Close-up of the concerned look upon his face.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5219,5219,Earth,2,Return to Omashu,3,Shuzumu,[Concerned.] Uh ... the thing is ... the performers ...,Uh ... the thing is ... the performers ...,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5220,5220,Earth,2,Return to Omashu,3,Azula,"You're right, you're right. That's been done. [After a short pause, she continues with a tone of dark pleasure.] I know. Set the net on fire.","You're right, you're right. That's been done. I know. Set the net on fire.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5221,5221,Earth,2,Return to Omashu,3,Shuzumu,"[Worried.] Of course, Princess.","Of course, Princess.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5222,5222,Earth,2,Return to Omashu,3,Scene Description,"With a worried look upon his face, Shuzumu leaves the box to set the net of fire. Ty Lee looks down in concern at the consuming flames beneath her. She continues with her act. +Cut back to the box seat, where Shuzumu is balling his fist and clenching his teeth, hoping that Ty Lee will not fall off.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5223,5223,Earth,2,Return to Omashu,3,Azula,"[Ecstatic.] Brilliant, just brilliant! [She looks down at Shuzumu and asks happily.] Ooh, what kind of dangerous animals do you have?","Brilliant, just brilliant! Ooh, what kind of dangerous animals do you have?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5224,5224,Earth,2,Return to Omashu,3,Scene Description,"Shuzumu looks up, hopeful that he can change the subject to the animals and save Ty Lee from her burning peril.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5225,5225,Earth,2,Return to Omashu,3,Shuzumu,"Well, our circus boasts the most exotic assortment-","Well, our circus boasts the most exotic assortment-",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5226,5226,Earth,2,Return to Omashu,3,Azula,Release them all!,Release them all!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5227,5227,Earth,2,Return to Omashu,3,Scene Description,"Shuzumu looks utterly shocked by Azula's command. Close-up again of Ty Lee's worried face, as she is still balancing on one hand above the flames. Cut to an outside-view of the circus. As the camera pans up, several animal noises fill the night. +Switch to an overview shot of a campsite in the surrounding mountains of Omashu. People are sitting around several campfires. Cut to Aang and Flopsie who are walking into the camp. Katara and Sokka move to greet a sad looking Aang.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5228,5228,Earth,2,Return to Omashu,3,Aang,[Sadly.] We looked everywhere. No Bumi.,We looked everywhere. No Bumi.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5229,5229,Earth,2,Return to Omashu,3,Scene Description,"Katara hugs him. Flopsie moans sadly, so Sokka turns around and hugs Flopsie's face. +The arrival of Yung interrupts their hugs.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5230,5230,Earth,2,Return to Omashu,3,Yung,We've got a problem. We just did a head count.,We've got a problem. We just did a head count.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5231,5231,Earth,2,Return to Omashu,3,Katara,"[Worried, turns back to Yung.] Oh no. Did someone get left behind?",Oh no. Did someone get left behind?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5232,5232,Earth,2,Return to Omashu,3,Yung,"No, we have an extra.","No, we have an extra.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5233,5233,Earth,2,Return to Omashu,3,Scene Description,Yung points to something to the left. Katara gazes in that direction and sees Momo staggering forward with the Tom-Tom clamped around his neck. Team Avatar and Yung just stare for a second at the poor animal and the baby.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5234,5234,Earth,2,Return to Omashu,3,Scene Description,"Cut to the governor's house in Omashu. The governor's wife is sobbing on the balcony. Her daughter Mai slowly reaches into her robe and pulls out a handkerchief and gives it to her mother with a bored expression on her face. The governor rests his hands on the railing of the balcony as he stares out over his city. His sobbing wife, apathetic daughter and two guards stand behind him. Zoom toward the governor as he speaks.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5235,5235,Earth,2,Return to Omashu,3,Ukano,"So, the resistance has kidnapped my son. Everything so clever, so tricky. Just like their King Bumi.","So, the resistance has kidnapped my son. Everything so clever, so tricky. Just like their King Bumi.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5236,5236,Earth,2,Return to Omashu,3,Scene Description,He balls his right hand into a fist. One of the guards behind him steps forward.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5237,5237,Earth,2,Return to Omashu,3,Guard,"What do you want to do, sir?","What do you want to do, sir?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5238,5238,Earth,2,Return to Omashu,3,Scene Description,"The camera pans out, showing a panoramic view of the city. +The view fades to a bouquet of black flowers that are being placed on a desk. As the camera moves back, Azula and Ty Lee are revealed in Ty Lee's dressing room. Azula is standing behind Ty Lee, who is sitting at the desk and looking through a mirror.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5239,5239,Earth,2,Return to Omashu,3,Azula,What an exquisite performance. I can't wait to see how you'll top yourself tomorrow.,What an exquisite performance. I can't wait to see how you'll top yourself tomorrow.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5240,5240,Earth,2,Return to Omashu,3,Scene Description,Cut closer to Ty Lee. Azula and Ty Lee's face are visible in Ty Lee's mirror.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5241,5241,Earth,2,Return to Omashu,3,Ty Lee,"[Smiling at Azula's reflection in the mirror.] I'm sorry Azula, but unfortunately there won't be a show tomorrow.","I'm sorry Azula, but unfortunately there won't be a show tomorrow.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5242,5242,Earth,2,Return to Omashu,3,Azula,Really?,Really?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5243,5243,Earth,2,Return to Omashu,3,Ty Lee,[Hangs up her tiara.] The universe has given me strong hints that it's time for a career change. [She gets up and turns around to face Azula.] I want to join you on your mission.,The universe has given me strong hints that it's time for a career change. I want to join you on your mission.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5244,5244,Earth,2,Return to Omashu,3,Scene Description,Zoom to a satisfied looking Azula.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5245,5245,Earth,2,Return to Omashu,3,Scene Description,"Switch back to an overview shot of the campsite in the valley. The gang, the baby, Flopsie and three resistance fighters are sitting at one of the many campfires. The baby is still trying to catch Momo. The lemur leaps out of the way and the baby tumbles down, right next to Sokka's club. He picks it up and starts to suck on it. The camera moves back as Sokka snatches the club out of the baby's hands.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5246,5246,Earth,2,Return to Omashu,3,Sokka,No! Bad Fire Nation baby!,No! Bad Fire Nation baby!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5247,5247,Earth,2,Return to Omashu,3,Scene Description,The child starts to cry. Katara looks from the baby to Sokka and whacks him across the face before placing her hands on her hips in a motherly fashion.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5248,5248,Earth,2,Return to Omashu,3,Sokka,[Annoyed.] Oh ... all right.,Oh ... all right.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5249,5249,Earth,2,Return to Omashu,3,Scene Description,Sokka gives his club back to the baby who immediately stops crying and starts to play with it. Katara hugs him from behind.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5250,5250,Earth,2,Return to Omashu,3,Katara,"[Baby voice.] Oooh, you're so cute. [She kisses him on the cheek, while an annoyed Sokka looks the other side, resting his head on his hand.] Mmmmm ...","Oooh, you're so cute. Mmmmm ...",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5251,5251,Earth,2,Return to Omashu,3,Scene Description,Cut to Yung sitting on the other side of the fire.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5252,5252,Earth,2,Return to Omashu,3,Yung,"Sure he's cute now, but when he's older, he'll join the Fire Nation army. [Switch to Katara who is happily playing with the baby under the annoyed gaze of her brother.] You won't think he's so cute then. He'll be a killer.","Sure he's cute now, but when he's older, he'll join the Fire Nation army. You won't think he's so cute then. He'll be a killer.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5253,5253,Earth,2,Return to Omashu,3,Scene Description,Katara picks the baby up and shows him to Yung.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5254,5254,Earth,2,Return to Omashu,3,Katara,Does that look like the face of a killer to you?,Does that look like the face of a killer to you?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5255,5255,Earth,2,Return to Omashu,3,Scene Description,"Cut to a close-up of Yung whose face remains totally indifferent at the sight of the cute baby. +Switch to a picture of an arriving messenger hawk. The animal shrieks and lands on a nearby rock.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5256,5256,Earth,2,Return to Omashu,3,Yung,A messenger hawk!,A messenger hawk!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5257,5257,Earth,2,Return to Omashu,3,Scene Description,"Close-up of the canister on the hawk's back. It has the Fire Nation insignia on it. Aang unrolls the scroll, close-up of the message.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5258,5258,Earth,2,Return to Omashu,3,Aang,"It's from the Fire Nation governor. He thinks we kidnapped his son. [Switch to another view. Aang is shown standing at the other side of the campfire, reading the message.] So ... he wants to make a trade. His son [Zoom to Aang's surprised face while he continues dramatically, his eyes widening.] for King Bumi.",It's from the Fire Nation governor. He thinks we kidnapped his son. So ... he wants to make a trade. His son for King Bumi.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5259,5259,Earth,2,Return to Omashu,3,Scene Description,"Switch to a panoramic view by day of the mountains surrounding Omashu. Aang holds the baby in his arms while he stares at Omashu. He walks down the hill he was standing on toward Katara and Sokka, who are waiting next to Appa.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5260,5260,Earth,2,Return to Omashu,3,Sokka,You realize we're probably walking right into a trap.,You realize we're probably walking right into a trap.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5261,5261,Earth,2,Return to Omashu,3,Aang,I don't think so. I'm sure the governor wants his son back as much as we want Bumi. [Smiling at the sleeping baby he holds against his chest.] It's a new day. I have a good feeling about this.,I don't think so. I'm sure the governor wants his son back as much as we want Bumi. It's a new day. I have a good feeling about this.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5262,5262,Earth,2,Return to Omashu,3,Scene Description,"Cut to inside the city of Omashu. A royal palanquin is being carried up the stairs toward the house of the governor. The silhouette of Azula can be seen through the veils. At the base of next stairs, the lonely figure of Mai awaits the arrival of the palanquin. Azula gets out and she and Ty Lee walk over to Mai. They halt before her. Mai puts her hands together and bows slightly toward Azula.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5263,5263,Earth,2,Return to Omashu,3,Mai,Please tell me you're here to kill me.,Please tell me you're here to kill me.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5264,5264,Earth,2,Return to Omashu,3,Scene Description,A close-up of Mai. She looks up at Azula and a slight smile appears on her otherwise emotionless features. Both girls start to laugh.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5265,5265,Earth,2,Return to Omashu,3,Azula,"[Placing her hands on Mai's shoulders.] It's great to see you, Mai.","It's great to see you, Mai.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5266,5266,Earth,2,Return to Omashu,3,Scene Description,Ty Lee rushes forward to give Mai a big hug. Mai uncomfortably pats her back a little with her left hand.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5267,5267,Earth,2,Return to Omashu,3,Mai,I thought you ran off and joined the circus. You said it was your calling.,I thought you ran off and joined the circus. You said it was your calling.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5268,5268,Earth,2,Return to Omashu,3,Ty Lee,"[Releases Mai.] Well, Azula called a little louder.","Well, Azula called a little louder.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5269,5269,Earth,2,Return to Omashu,3,Azula,I have a mission and I need you both. [Azula places a hand on both her friends' shoulders.],I have a mission and I need you both.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5270,5270,Earth,2,Return to Omashu,3,Mai,Count me in. Anything to get me out of this place. [She looks annoyed at the palace.],Count me in. Anything to get me out of this place.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5271,5271,Earth,2,Return to Omashu,3,Scene Description,"Cut to a large red flag with the black Fire Nation mark on it. The camera pans down and shows that Azula is sitting on the throne of Omashu, flanked by two Fire Nation guards. The governor and his wife are in front of her, as well as Mai and Ty Lee.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5272,5272,Earth,2,Return to Omashu,3,Ukano,I apologize. [Switch to a closer shot of the governor who squatting down on a pillow.] You've come to Omashu at a difficult time. At noon we're making a trade with the resistance to get Tom-Tom back.,I apologize. You've come to Omashu at a difficult time. At noon we're making a trade with the resistance to get Tom-Tom back.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5273,5273,Earth,2,Return to Omashu,3,Azula,"Yes, I'm so sorry to hear about your son, but really, [She crosses her legs and clasps her hands.] what did you expect by just letting all the citizens leave? [She stands up, addressing the governor in a harsher tone.] My father has trusted you with this city and you're making a mess of things! [She emphasizes her words with a hand gesture.]","Yes, I'm so sorry to hear about your son, but really, what did you expect by just letting all the citizens leave? My father has trusted you with this city and you're making a mess of things!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5274,5274,Earth,2,Return to Omashu,3,Scene Description,The governor and his wife prostrate themselves before her.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5275,5275,Earth,2,Return to Omashu,3,Ukano,"Forgive me, Princess.","Forgive me, Princess.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5276,5276,Earth,2,Return to Omashu,3,Scene Description,"Azula walks between the four bowing people in front of her, looking down upon the governor.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5277,5277,Earth,2,Return to Omashu,3,Azula,"You stay here. [Mai and Ty Lee get up behind her.] Mai will handle the hostage trade so you don't have a chance to mess it up. [Cut to a shot of the still smoking city of Omashu, followed by some shots of Fire Nation construction sites.] And there is no more ""Omashu"". I'm renaming it in honor of my father, the city of New Ozai.","You stay here. Mai will handle the hostage trade so you don't have a chance to mess it up. And there is no more ""Omashu"". I'm renaming it in honor of my father, the city of New Ozai.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5278,5278,Earth,2,Return to Omashu,3,Scene Description,"The camera stops on a large statue of Ozai, still in its scaffolds. The camera pans down. A long overview shot reveals Aang, Katara and Sokka standing on a large wooden scaffold. They look serious as a party of three girls approaches, with Mai leading the way. +A crane is shown, lowering a metal cage. A close-up of the cage reveals that it is used to contain King Bumi. Only his head is left uncovered.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5279,5279,Earth,2,Return to Omashu,3,King Bumi,"[Chuckling.] Hi, everybody!","Hi, everybody!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5280,5280,Earth,2,Return to Omashu,3,Scene Description,Aang smiles as he sees his friend. The cage touches the ground behind Azula and the rest.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5281,5281,Earth,2,Return to Omashu,3,Mai,You brought my brother?,You brought my brother?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5282,5282,Earth,2,Return to Omashu,3,Aang,He's here. We're ready to trade.,He's here. We're ready to trade.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5283,5283,Earth,2,Return to Omashu,3,Azula,"[To Mai.] I'm sorry, but a thought just occurred to me. Do you mind?","I'm sorry, but a thought just occurred to me. Do you mind?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5284,5284,Earth,2,Return to Omashu,3,Scene Description,"Bumi follows the conversation, shifting his eyes from one speaker to the other.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5285,5285,Earth,2,Return to Omashu,3,Mai,"[Turning to Azula.] Of course not, Princess Azula.","Of course not, Princess Azula.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5286,5286,Earth,2,Return to Omashu,3,Azula,"We're trading a two year old for a king. [Looks up at Bumi.] A powerful, earthbending king?","We're trading a two year old for a king. A powerful, earthbending king?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5287,5287,Earth,2,Return to Omashu,3,King Bumi,[Nods.] Mmm hmmm!,Mmm hmmm!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5288,5288,Earth,2,Return to Omashu,3,Azula,"It just doesn't seem like a fair trade, does it?","It just doesn't seem like a fair trade, does it?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5289,5289,Earth,2,Return to Omashu,3,Scene Description,Close-up of Mai's gray eyes as she ponders over the idea. She looks at her brother who yawns and happily rests his head against Sokka's shoulder.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5290,5290,Earth,2,Return to Omashu,3,Mai,You're right. [Azula smiles slyly while Mai walks forward.] The deal's off.,You're right. The deal's off.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5291,5291,Earth,2,Return to Omashu,3,Scene Description,"Mai holds up her hand, gesturing the guards to pull Bumi back up. As the chains reel in from above, the King is suspended in the air once again.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5292,5292,Earth,2,Return to Omashu,3,King Bumi,[Clearly amused by all this.] Whhhoa! See you all later!,Whhhoa! See you all later!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5293,5293,Earth,2,Return to Omashu,3,Scene Description,Bumi chuckles and snorts as he is lifted from the scenery. Aang watches him go.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5294,5294,Earth,2,Return to Omashu,3,Aang,Bumi!,Bumi!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5295,5295,Earth,2,Return to Omashu,3,Scene Description,"He sprints forward with his glider at the ready, increasing his speed with airbending. Azula tries to stop him by blocking his path with a mighty stream of blue flames. Aang dodges these by leaping high up into the air. Azula is completely shocked by this incredible jump. Aang briefly touches the scaffolding around the statue and pushes himself off, opening his glider in mid air. While opening his glider, he loses his hat, leaving his arrow tattoo exposed. He holds on to the hat with his teeth.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5296,5296,Earth,2,Return to Omashu,3,Azula,[Surprised.] The Avatar!,The Avatar!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5297,5297,Earth,2,Return to Omashu,3,Scene Description,Aang circles up toward Bumi's coffin. Cut back to Azula who smiles smugly.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5298,5298,Earth,2,Return to Omashu,3,Azula,My lucky day.,My lucky day.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5299,5299,Earth,2,Return to Omashu,3,Scene Description,"She runs over to a pulley and blast through the rope that serves as a break. The winch begins to spin rapidly. Azula grabs hold to the rope and is pulled up rapidly toward the top of the construction scaffolding. +Aang lands on the top of Bumi's metal cage.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5300,5300,Earth,2,Return to Omashu,3,King Bumi,"[Surprised.] Aang, is that you? Where did you come from?","Aang, is that you? Where did you come from?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5301,5301,Earth,2,Return to Omashu,3,Aang,Hang on! We're gonna get you out of here.,Hang on! We're gonna get you out of here.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5302,5302,Earth,2,Return to Omashu,3,Scene Description,"He takes a deep breath of starts to blow a cold wind on the chain that is lifting Bumi up. The chain slowly starts to freeze. +On the ground, Mai and Ty Lee charge Sokka and Katara. Mai readies her stiletto's while Katara takes on a defensive position.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5303,5303,Earth,2,Return to Omashu,3,Katara,We've got to get the baby out of here!,We've got to get the baby out of here!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5304,5304,Earth,2,Return to Omashu,3,Sokka,[Blows on the bison whistle before looking at his sister with a big smile.] Way ahead of ya! [Tom-Tom reaches for the whistle and starts to play with it.],Way ahead of ya!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5305,5305,Earth,2,Return to Omashu,3,Scene Description,"Cut to an overview shot of Sokka and Katara running to the edge of the big platform. Before they can reach it, Ty Lee's fist emerges from one of the holes in the floor and punches Sokka's foot, causing him to fall over and slide toward the edge. He protectively clutches the baby in his arms, preparing for the worst, but they stop just in time. +Switch back to Katara, who sees Ty Lee jumping out of the hole in the floor and setting course for Sokka. She bends water from her pouch to attack her, but notices something behind her. Cut to a close-up of Mai, who throws four knives at Katara. Katara reacts by quickly by using her water whip to raise up several wooden planks. A close-up of Katara shows that the wooden board is just in time to prevent the knives from piercing her face. The knives embed themselves in the wood. Katara uses her water whip again to shoot the wooden boards to Mai. She turns around in one fluent motion toward Ty Lee who has almost reached Sokka and the baby by now. The water whip grabs Ty Lee by the ankle, pulling her to the ground. This gives Sokka the time he needs to get up and head for a nearby ladder. He slides down and starts his descend of the scaffolding. +Switch to Bumi and Aang, who are still being raised in the air. Aang is still trying to freeze the chain with his breath.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5306,5306,Earth,2,Return to Omashu,3,King Bumi,"Aang, stop your blowing for a minute.","Aang, stop your blowing for a minute.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5307,5307,Earth,2,Return to Omashu,3,Scene Description,"A close-up shows that he finally succeeds in freezing the chain, when an explosion occurs on top of the scaffolding. Azula is propelled in the air and shoots a plume of blue fire toward Aang with a powerful kick. Aang startles by her sudden appearance and swift attack. He deflects the flame with a strong air current of his own.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5308,5308,Earth,2,Return to Omashu,3,King Bumi,Now hold on just a [The swing of Aang's staff breaks the frozen chain and they freefall down.] duahhh!!!,Now hold on just a duahhh!!!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5309,5309,Earth,2,Return to Omashu,3,Scene Description,"Aang turns over Bumi's coffin, so he would crash to the ground head first. As they are about to crash upon one of Omashu's chutes, Aang creates an air ball under them to break their fall. They rapidly slide down the chute they landed in. +Cut to Azula who was following the spectacle from atop the scaffolding. She frowns and sprints to a nearby chute, pursuing the Avatar and the King down the chute in a box of her own. +Switch to a laughing Aang standing on Bumi's coffin.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5310,5310,Earth,2,Return to Omashu,3,Aang,"It's just like old times, isn't it, Bumi?","It's just like old times, isn't it, Bumi?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5311,5311,Earth,2,Return to Omashu,3,King Bumi,"[Looking serious.] Aang, I need to talk to you!","Aang, I need to talk to you!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5312,5312,Earth,2,Return to Omashu,3,Aang,It's good to see you too!,It's good to see you too!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5313,5313,Earth,2,Return to Omashu,3,Scene Description,"While Aang is still smiling, he notices the fast approach of something in a chute on his left. He turns to see what it is, just as Azula shoots several fire missiles toward them. He spins his staff above his head to deflect them. Both chutes come together and Azula is now behind them. Aang directs a gust at her, but she parts it with her hands clasped together in front of her. She retaliates with several fire blasts. Aang ducks underneath them and starts to peddle with his staff, increasing their speed. They enter a portion of the chute that has wooden arches over it at short intervals. Aang cuts these through with an air blade, making them collapse upon the track. Azula is caught in the dust cloud, knocked up by the falling debris. When her box emerges again, it seems to be empty. Aang does not see Azula anymore and sighs in relief, but his sigh quickly turns into a scream as Azula emerges again from the box, sending another beam of fire toward him. Aang drops flat on his belly to avoid it. Cut back to the large wooden platform where Mai and Katara are still fighting. Mai dodges Katara's water whips and answers her attacks by shooting stiletto's out of the launcher attached to her leg. Katara easily defends herself by freezing the water to create an ice wall. Mai uses this time to charge Katara head on. The waterbender defends herself by capturing Mai's right arm in a stream of water and freezing it. Mai tries to break the ice, but fails. Ty Lee climbs on the platform behind Katara. She bounces toward Katara and hits her with several quick jabs on her arms. Katara is surprised by this attack and loses control over her water stream that splashes on the ground. She tries to raise the water again, but it only moves a little.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5314,5314,Earth,2,Return to Omashu,3,Mai,[Taunting.] How are you gonna fight without your bending?,How are you gonna fight without your bending?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5315,5315,Earth,2,Return to Omashu,3,Scene Description,"Mai pulls out a sai from her robe and takes aim at a shocked Katara. Just as she is about to throw the weapon, Sokka's boomerang knocks it out of her hand. Ty Lee and Mai spin around to see Sokka flying in on Appa.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5316,5316,Earth,2,Return to Omashu,3,Sokka,[Catching the boomerang.] I seem to manage!,I seem to manage!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5317,5317,Earth,2,Return to Omashu,3,Scene Description,"Sokka and Appa land between Katara and her attackers. As Appa lands, he slams his tail hard on the ground, sending Mai and Ty Lee flying off the scaffolding. +Sokka and Katara are flying down the chutes of Omashu atop Appa's head. Katara looks and points to her left.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5318,5318,Earth,2,Return to Omashu,3,Katara,There's Aang!,There's Aang!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5319,5319,Earth,2,Return to Omashu,3,Sokka,[Gazing in the direction Katara pointed.] We can catch him!,We can catch him!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5320,5320,Earth,2,Return to Omashu,3,Scene Description,"With a growl, Appa changes course toward Aang. +Cut to Azula who is still on the offensive, directing multiple beams of fire at Aang. He spins his staff around in defense while they are still rocketing down the chute. Appa pulls up next to him.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5321,5321,Earth,2,Return to Omashu,3,Aang,"Hang on, Bumi! Our ride's here!","Hang on, Bumi! Our ride's here!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5322,5322,Earth,2,Return to Omashu,3,Scene Description,"Appa swerves to avoid another blue fire blast. As he pulls closer again, Aang lifts up the coffin by hitting the side of the chute. Katara and Sokka try to grab hold of the coffin as it passes overhead, but they cannot reach it. Bumi screams as he and Aang fall down. Aang moves the coffin to a more horizontal position in midair. Their fall is broken by another chute as they land crosswise on it, breaking right through. They land on another chute and start to slide down once again with Azula on their trail. +Switch to Azula who creates a whirling disk of flames and sends it down the chute. It rapidly gains on Aang and Bumi. Bumi peeks at the upcoming fire disk and clenches his teeth in effort. A pillar of earth rises in the middle of the chute, protecting them from the disk. Azula gasps for air as she notices that her path is blocked. She jumps up in the nick of time and slides down the chute on foot, while her box slams to pieces against the rock. She eventually halts in the middle of the chute, looking displeased at Aang and Bumi who continue their descent. +Cut to Aang and Bumi who are nearing the end of the chute.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5323,5323,Earth,2,Return to Omashu,3,Aang,[Shocked.] You could earthbend? All along?,You could earthbend? All along?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5324,5324,Earth,2,Return to Omashu,3,King Bumi,"Well, they didn't cover my face.","Well, they didn't cover my face.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5325,5325,Earth,2,Return to Omashu,3,Scene Description,"Bumi strains himself again in effort and raises another earth pillar to stop their descent down the chute. The coffin hits it and ends up standing straight atop the rock, while Aang lands in front of it, looking up at his friend.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5326,5326,Earth,2,Return to Omashu,3,Aang,"[Slightly annoyed and angry.] I don't understand. Why didn't you free yourself? Why did you surrender when Omashu was invaded? What's the matter with you, Bumi?","I don't understand. Why didn't you free yourself? Why did you surrender when Omashu was invaded? What's the matter with you, Bumi?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5327,5327,Earth,2,Return to Omashu,3,King Bumi,"[Calmly.] Listen to me, Aang. There are options in fighting, called jing. It's a choice of how you direct your energy.","Listen to me, Aang. There are options in fighting, called jing. It's a choice of how you direct your energy.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5328,5328,Earth,2,Return to Omashu,3,Aang,"[Cut to a close-up of an annoyed Aang, counting along on his fingers as he sums up the different jings.] I know! There's positive jing when you're attacking, and negative jing when you're retreating.","I know! There's positive jing when you're attacking, and negative jing when you're retreating.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5329,5329,Earth,2,Return to Omashu,3,King Bumi,[Happily smiling.] ... and neutral jing when you do nothing!,... and neutral jing when you do nothing!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5330,5330,Earth,2,Return to Omashu,3,Aang,[He looks shocked at his three raised fingers.] There are three jings?,There are three jings?,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5331,5331,Earth,2,Return to Omashu,3,King Bumi,"Well, technically there are eighty-five, but let's just focus on the third. Neutral jing is the key to earthbending. It involves listening and waiting for the right moment to strike.","Well, technically there are eighty-five, but let's just focus on the third. Neutral jing is the key to earthbending. It involves listening and waiting for the right moment to strike.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5332,5332,Earth,2,Return to Omashu,3,Aang,"[Starting to understand.] That's why you surrendered, isn't it?","That's why you surrendered, isn't it?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5333,5333,Earth,2,Return to Omashu,3,King Bumi,"Yes, and it's why I can't leave now.","Yes, and it's why I can't leave now.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5334,5334,Earth,2,Return to Omashu,3,Scene Description,Aang sadly turns around.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5335,5335,Earth,2,Return to Omashu,3,Aang,[Disappointed.] I guess I need to find someone else to teach me earthbending.,I guess I need to find someone else to teach me earthbending.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5336,5336,Earth,2,Return to Omashu,3,King Bumi,Your teacher will be someone who has mastered neutral jing. You need to find someone who waits and listens before striking.,Your teacher will be someone who has mastered neutral jing. You need to find someone who waits and listens before striking.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5337,5337,Earth,2,Return to Omashu,3,Scene Description,Momo lands on Aang's shoulders.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5338,5338,Earth,2,Return to Omashu,3,Aang,"[Happily.] Hey, Momo!","Hey, Momo!",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5339,5339,Earth,2,Return to Omashu,3,King Bumi,Momo's mastered a few jings himself!,Momo's mastered a few jings himself!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5340,5340,Earth,2,Return to Omashu,3,Scene Description,Momo screeches loudly at Bumi.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5341,5341,Earth,2,Return to Omashu,3,King Bumi,"Goodbye, Aang. I'll see you when the time is right.","Goodbye, Aang. I'll see you when the time is right.",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5342,5342,Earth,2,Return to Omashu,3,Scene Description,"King Bumi lets his coffin tumble backward and begins his ascend of the chute. He laughs and snorts like a mad man while he uses his earthbending to drive him back to the top of the chute, leaving Aang and Momo behind. +Cut to the royal palanquin being carried out the city, flanked by Mai and Ty Lee.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5343,5343,Earth,2,Return to Omashu,3,Mai,"So, we're tracking down your brother and Uncle, huh?","So, we're tracking down your brother and Uncle, huh?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5344,5344,Earth,2,Return to Omashu,3,Ty Lee,"[Turning to Mai.] It'll be interesting seeing Zuko again, [Teasing.] won't it, Mai?","It'll be interesting seeing Zuko again, won't it, Mai?",Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5345,5345,Earth,2,Return to Omashu,3,Scene Description,Mai looks away as a smile plays upon her face.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5346,5346,Earth,2,Return to Omashu,3,Azula,It's not just Zuko and Iroh anymore. [Cut closer to Azula who continues on a serious tone.] We have a third target now.,It's not just Zuko and Iroh anymore. We have a third target now.,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5347,5347,Earth,2,Return to Omashu,3,Scene Description,"Scene fades to Aang that night, peeking down over the gutter of the governor's house. The governor holds his wife while they are looking over the city with a sad expression on their face. Aang silently lands behind them and drops off Tom-Tom. Aang takes off again while the child toddles toward his parents. As they hear the cooing of the child, they turn around, gasping with surprise and excitement.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5348,5348,Earth,2,Return to Omashu,3,Michi,Tom-Tom!,Tom-Tom!,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5349,5349,Earth,2,Return to Omashu,3,Scene Description,The governor and his wife joyfully take the baby up into their arms under the watchful eye of Aang who is sitting on the roof. He smiles at the happy scene of the reunited family before he takes off.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5350,5350,Earth,2,Return to Omashu,3,Scene Description,Fades to credits.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,8.4 +5351,5351,Earth,2,The Swamp,4,Scene Description,"The episode opens with an overhead shot of rice paddies. The camera pans down, revealing an Earth Kingdom village. The scene cuts to a shot of a bridge over a nearby stream. People carrying backpacks and other loads walk back and forth over the bridge, either entering or departing the small village. +The scene cuts to a street within the village. Iroh and Zuko are sitting on straw mats, their stolen ostrich horse lying behind them. A cart with masks for sale passes by in front of them; one of the masks is seen to be the Blue Spirit mask. As the cart passes, another pedestrian walks in front of Iroh. Iroh holds his hat out to the pedestrian and begins to talk to him.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5352,5352,Earth,2,The Swamp,4,Iroh,[Somewhat enthusiastically.] Spare coins for weary travelers?,Spare coins for weary travelers?,Tim Hedrick,Giancarlo Volpe,7.7 +5353,5353,Earth,2,The Swamp,4,Scene Description,The pedestrian tosses a couple of copper pieces into Iroh's hat as Zuko turns to Iroh in anger.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5354,5354,Earth,2,The Swamp,4,Zuko,"[Angrily, with his arms folded.] This is humiliating! We're royalty! These people should be giving us whatever we want.",This is humiliating! We're royalty! These people should be giving us whatever we want.,Tim Hedrick,Giancarlo Volpe,7.7 +5355,5355,Earth,2,The Swamp,4,Iroh,They will if you ask nicely. [A peasant woman strolls past; somewhat dramatically.] Spare change for a hungry old man?,They will if you ask nicely. Spare change for a hungry old man?,Tim Hedrick,Giancarlo Volpe,7.7 +5356,5356,Earth,2,The Swamp,4,Peasant girl,"[Withdrawing a coin from her sleeve.] Aw, here you go.","Aw, here you go.",Tim Hedrick,Giancarlo Volpe,7.7 +5357,5357,Earth,2,The Swamp,4,Iroh,"The coin is appreciated, but not as much as your smile!","The coin is appreciated, but not as much as your smile!",Tim Hedrick,Giancarlo Volpe,7.7 +5358,5358,Earth,2,The Swamp,4,Scene Description,"Zuko slaps his forehead in frustration as the young girl giggles lightly and walks away. As soon as she walks away, a man with dual broadswords on his back wanders up to Iroh and Zuko.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5359,5359,Earth,2,The Swamp,4,Broadsword man,[Smiling.] How about some entertainment in exchange for ... a gold piece? [He pulls the piece from his pocket with a flourish.],How about some entertainment in exchange for ... a gold piece?,Tim Hedrick,Giancarlo Volpe,7.7 +5360,5360,Earth,2,The Swamp,4,Zuko,[Annoyed.] We're not performers.,We're not performers.,Tim Hedrick,Giancarlo Volpe,7.7 +5361,5361,Earth,2,The Swamp,4,Iroh,"[Standing up.] Not professional anyway. [He puts the hat down and stands up, swaying lightly as he begins to sing.] It's a long, long way to Ba Sing Se, but the girls in the city, they look so pretty!","Not professional anyway. It's a long, long way to Ba Sing Se, but the girls in the city, they look so pretty!",Tim Hedrick,Giancarlo Volpe,7.7 +5362,5362,Earth,2,The Swamp,4,Broadsword man,"[Annoyed with the quality of the entertainment.] Come on, we're talking a gold piece here! Let's see some action! [Zuko glances up sharply as the man withdraws his swords.] Dance!","Come on, we're talking a gold piece here! Let's see some action! Dance!",Tim Hedrick,Giancarlo Volpe,7.7 +5363,5363,Earth,2,The Swamp,4,Scene Description,"The man begins to slice the ground near Iroh's feet; Iroh hops up and down to ""dodge"" the attacks while Zuko struggles to control his anger at the man. A birds-eye shot of the street shows other citizens have stopped to watch the spectacle.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5364,5364,Earth,2,The Swamp,4,Iroh,[Singing.] They kiss so sweet that you really got to meet the girls from Ba Sing Se!,They kiss so sweet that you really got to meet the girls from Ba Sing Se!,Tim Hedrick,Giancarlo Volpe,7.7 +5365,5365,Earth,2,The Swamp,4,Broadsword man,"[Stops slicing and laughs.] Ha, ha! Nothing like a fat man dancing for his dinner! Here ya go! [Tosses the gold coin onto the ground and walks away.]","Ha, ha! Nothing like a fat man dancing for his dinner! Here ya go!",Tim Hedrick,Giancarlo Volpe,7.7 +5366,5366,Earth,2,The Swamp,4,Iroh,[Dramatically; close to tears.] Such a kind man.,Such a kind man.,Tim Hedrick,Giancarlo Volpe,7.7 +5367,5367,Earth,2,The Swamp,4,Scene Description,"Zuko glares after the man in anger and humiliation. The camera cuts to Appa, flying through a gray sky over a large forested area; it is covered somewhat by fog, and looks rather menacing. Sokka is rubbing a whetstone against his machete, while Katara is studying a scroll. Aang stares at the swamp, and seems to be in a trance. Sokka notices they were slowly flying down, and notices Aang's trance-like state.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5368,5368,Earth,2,The Swamp,4,Sokka,"[To Aang.] Hey, you taking us down for a reason? [Aang continues to stare at the swamp.] Aang, [Aang snaps out of the trance.] why are we going down?","Hey, you taking us down for a reason? Aang, why are we going down?",Tim Hedrick,Giancarlo Volpe,7.7 +5369,5369,Earth,2,The Swamp,4,Aang,[Confused.] What? I didn't even notice.,What? I didn't even notice.,Tim Hedrick,Giancarlo Volpe,7.7 +5370,5370,Earth,2,The Swamp,4,Scene Description,The camera zooms out to see Appa flying down toward the swamp,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5371,5371,Earth,2,The Swamp,4,Sokka,Are you noticing now?,Are you noticing now?,Tim Hedrick,Giancarlo Volpe,7.7 +5372,5372,Earth,2,The Swamp,4,Katara,[Moving to the front of the saddle.] Is something wrong?,Is something wrong?,Tim Hedrick,Giancarlo Volpe,7.7 +5373,5373,Earth,2,The Swamp,4,Aang,"[He still seems somewhat dazed by the swamp.] I know this is going to sound weird, but I think the swamp is calling to me.","I know this is going to sound weird, but I think the swamp is calling to me.",Tim Hedrick,Giancarlo Volpe,7.7 +5374,5374,Earth,2,The Swamp,4,Sokka,[Holding his stomach.] Is it telling you where we can get something to eat?,Is it telling you where we can get something to eat?,Tim Hedrick,Giancarlo Volpe,7.7 +5375,5375,Earth,2,The Swamp,4,Aang,"No, I ... I think it wants us to land there.","No, I ... I think it wants us to land there.",Tim Hedrick,Giancarlo Volpe,7.7 +5376,5376,Earth,2,The Swamp,4,Sokka,"[Shrugging.] No offense to the swamp, but I don't see any land there to land on.","No offense to the swamp, but I don't see any land there to land on.",Tim Hedrick,Giancarlo Volpe,7.7 +5377,5377,Earth,2,The Swamp,4,Aang,"I don't know. Bumi said to learn earthbending I would have to wait and listen, and now I'm actually hearing the earth. Do you want me to ignore it?","I don't know. Bumi said to learn earthbending I would have to wait and listen, and now I'm actually hearing the earth. Do you want me to ignore it?",Tim Hedrick,Giancarlo Volpe,7.7 +5378,5378,Earth,2,The Swamp,4,Scene Description,"Sokka, Katara and Momo look over Appa's saddle down at the swamp",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5379,5379,Earth,2,The Swamp,4,Sokka,Yes.,Yes.,Tim Hedrick,Giancarlo Volpe,7.7 +5380,5380,Earth,2,The Swamp,4,Katara,I don't know. There's something ominous about that place.,I don't know. There's something ominous about that place.,Tim Hedrick,Giancarlo Volpe,7.7 +5381,5381,Earth,2,The Swamp,4,Scene Description,Momo hides inside Appa's saddle as Appa groans.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5382,5382,Earth,2,The Swamp,4,Sokka,"See, even Appa and Momo don't like it here.","See, even Appa and Momo don't like it here.",Tim Hedrick,Giancarlo Volpe,7.7 +5383,5383,Earth,2,The Swamp,4,Aang,"[Resignedly.] Okay, since everyone feels so strongly about this, [Looks at swamp.] bye swamp. [Shakes Appa's rope.] Yip, Yip!","Okay, since everyone feels so strongly about this, bye swamp. Yip, Yip!",Tim Hedrick,Giancarlo Volpe,7.7 +5384,5384,Earth,2,The Swamp,4,Scene Description,"Appa groans and flies upward, away from the swamp. A tornado suddenly emerges from out of nowhere, heading right for Appa. Sokka, hearing something, turns around and finally sees it.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5385,5385,Earth,2,The Swamp,4,Sokka,"[Panicked.] You better throw in an extra ""yip""! We gotta move!","You better throw in an extra ""yip""! We gotta move!",Tim Hedrick,Giancarlo Volpe,7.7 +5386,5386,Earth,2,The Swamp,4,Scene Description,"Appa starts to fly faster, attempting to avoid the tornado, however he is not fast enough to get away. As the tornado begins to move closer to Appa, the wind pulls Sokka right off from the saddle. Katara manages to grab his hand, holding him back from flying into the tornado. Aang jumps up onto Appa's saddle and creates an air shield around Appa, stabilizing the air and allowing Sokka to fall back into the saddle, uninjured. The wind sucks Appa, who is still protected by the air shield, into the tornado. Aang struggles to maintain the air shield, however as it shrinks, one of Appa's legs slips from the protective air, thereby breaking it. Aang, Katara, and Sokka fall off Appa, with Aang landing lightly in muddied water as the latter two land quite roughly. Appa and Momo are thrown elsewhere in the swamp.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5387,5387,Earth,2,The Swamp,4,Aang,"[Looking around the swamp and at his friends.] Where's Appa and Momo? [Aang jumps up to the top of the trees, looking for his animal friends as he uses the height to search for them.] Appa! Momo!",Where's Appa and Momo? Appa! Momo!,Tim Hedrick,Giancarlo Volpe,7.7 +5388,5388,Earth,2,The Swamp,4,Scene Description,The scene cuts back to Katara and Sokka. Katara glances at her elbow before looking up at her brother.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5389,5389,Earth,2,The Swamp,4,Katara,"[Pointing blandly.] Sokka, you've got an elbow leech.","Sokka, you've got an elbow leech.",Tim Hedrick,Giancarlo Volpe,7.7 +5390,5390,Earth,2,The Swamp,4,Sokka,"[He spins around, panicking, trying to find it.] Where? Where?",Where? Where?,Tim Hedrick,Giancarlo Volpe,7.7 +5391,5391,Earth,2,The Swamp,4,Scene Description,A creature is shown sticking on to Sokka's elbow.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5392,5392,Earth,2,The Swamp,4,Katara,[Crosses her arms; sarcastically.] Where do you think?,Where do you think?,Tim Hedrick,Giancarlo Volpe,7.7 +5393,5393,Earth,2,The Swamp,4,Sokka,[Ripping off the elbow leech and throwing it behind to Katara. He cries out angrily.] Why do things keep attaching to me?!,Why do things keep attaching to me?!,Tim Hedrick,Giancarlo Volpe,7.7 +5394,5394,Earth,2,The Swamp,4,Scene Description,"Aang swings over the muddied water on a vine, waiting for it to stop moving so he can land.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5395,5395,Earth,2,The Swamp,4,Katara,You couldn't find them?,You couldn't find them?,Tim Hedrick,Giancarlo Volpe,7.7 +5396,5396,Earth,2,The Swamp,4,Aang,"[Jumping down into the muddy water.] No, and the tornado ... it just disappeared.","No, and the tornado ... it just disappeared.",Tim Hedrick,Giancarlo Volpe,7.7 +5397,5397,Earth,2,The Swamp,4,Scene Description,"Katara and Sokka turn to face the darkness in the swamp. The scene switches to Appa, who is hanging suspended over the swamp, caught in a mass of vines. Momo jumps up from the saddle and begins chewing through the vines. Appa falls, with Momo, into the muddy water. He shakes the water from his fur and takes off flying, before again becoming trapped. Appa groans as Momo berates him, before the lemur begins to cut the vines, again. The scene switches back to Aang, Katara, and Sokka.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5398,5398,Earth,2,The Swamp,4,Sokka,[Cutting the vines with his machete.] We better speed things up.,We better speed things up.,Tim Hedrick,Giancarlo Volpe,7.7 +5399,5399,Earth,2,The Swamp,4,Aang,[To Sokka.] Maybe we should be a little nicer to the swamp.,Maybe we should be a little nicer to the swamp.,Tim Hedrick,Giancarlo Volpe,7.7 +5400,5400,Earth,2,The Swamp,4,Sokka,"[Continuing to cut the vines.] Aang, these are just plants. Do you want me to say ""please"" and ""thank you"" as I swing my machete back and forth?","Aang, these are just plants. Do you want me to say ""please"" and ""thank you"" as I swing my machete back and forth?",Tim Hedrick,Giancarlo Volpe,7.7 +5401,5401,Earth,2,The Swamp,4,Katara,Maybe you should listen to Aang. Something about this place feels ... alive.,Maybe you should listen to Aang. Something about this place feels ... alive.,Tim Hedrick,Giancarlo Volpe,7.7 +5402,5402,Earth,2,The Swamp,4,Sokka,"I'm sure there are lots of things that are alive here and if we don't wanna wind up getting eaten by them, we need to find Appa as fast as we can.","I'm sure there are lots of things that are alive here and if we don't wanna wind up getting eaten by them, we need to find Appa as fast as we can.",Tim Hedrick,Giancarlo Volpe,7.7 +5403,5403,Earth,2,The Swamp,4,Scene Description,"Sokka continues to slice through the vines. The shot changes perspective to show Aang, Katara and Sokka through the vines, as though someone is looking at them. The scene changes to Appa and Momo. Appa is walking on the wet, muddy ground, trailing his footprints behind, carrying Momo on his back. A tree trunk happens to be in Appa's way, and the bison collapses to the ground, unwilling to attempt flying over it or crawling beneath it. Momo takes Aang's bison whistle and blows it to make Appa move. The bison ignores it the first time, growling angrily, but when Momo blows it a second time, he uses his tail to squash the lemur. Dazed from the blow, Momo sways and collapses. The scene changes back to Aang, Katara, and Sokka, now walking through a foggier part of the swamp.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5404,5404,Earth,2,The Swamp,4,Katara,[Yelling.] Appa! Momo!,Appa! Momo!,Tim Hedrick,Giancarlo Volpe,7.7 +5405,5405,Earth,2,The Swamp,4,Sokka,There's no way they can hear us and no way we can see them. We'll have to make camp for the night.,There's no way they can hear us and no way we can see them. We'll have to make camp for the night.,Tim Hedrick,Giancarlo Volpe,7.7 +5406,5406,Earth,2,The Swamp,4,Scene Description,"Several flies surround Sokka. Sokka swings his machete at them, trying to shoo them away. At that moment, a huge bubble of swamp gas rises from the muddy water below them. The gas grows closer to Aang, Katara, and Sokka.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5407,5407,Earth,2,The Swamp,4,Katara,What was that?,What was that?,Tim Hedrick,Giancarlo Volpe,7.7 +5408,5408,Earth,2,The Swamp,4,Sokka,"Nothing, just swamp gas. [Indicating.] Look, there's nothing supernatural going on here.","Nothing, just swamp gas. Look, there's nothing supernatural going on here.",Tim Hedrick,Giancarlo Volpe,7.7 +5409,5409,Earth,2,The Swamp,4,Scene Description,"The three groan as the smell reaches them, with Sokka waving his hand in front of his nose as Katara clamps hers shut. Suddenly, the quiet is shattered by a terrifying scream, causing them all to scream and huddle together, looking around wide-eyed for the source. The camera zooms backward, showing a small, grumpy-looking white bird. It opens its beak extremely wide, emitting the terrifying scream, and flutters off.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5410,5410,Earth,2,The Swamp,4,Sokka,"[Sweating, his voice cracking.] I think we should build a fire.",I think we should build a fire.,Tim Hedrick,Giancarlo Volpe,7.7 +5411,5411,Earth,2,The Swamp,4,Scene Description,Sokka runs off to a nearby tree and cuts pieces of wood from its roots. Aang and Katara walk up to Sokka.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5412,5412,Earth,2,The Swamp,4,Aang,"Sokka, the longer we're here, the more I think you shouldn't be doing do that.","Sokka, the longer we're here, the more I think you shouldn't be doing do that.",Tim Hedrick,Giancarlo Volpe,7.7 +5413,5413,Earth,2,The Swamp,4,Sokka,"No, I asked the swamp. It said this was fine. [Grabs a nearby root.] Right, swamp? [Shakes the root and fakes a reply.] ""No problem, Sokka!""","No, I asked the swamp. It said this was fine. Right, swamp? ""No problem, Sokka!""",Tim Hedrick,Giancarlo Volpe,7.7 +5414,5414,Earth,2,The Swamp,4,Scene Description,"Sokka continues to chop up the roots, while Aang looks somewhat annoyed. The scene changes to a later shot of the trio around a fire. Katara glancing around at the swamp.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5415,5415,Earth,2,The Swamp,4,Katara,Does anyone else get the feeling that we're being watched?,Does anyone else get the feeling that we're being watched?,Tim Hedrick,Giancarlo Volpe,7.7 +5416,5416,Earth,2,The Swamp,4,Scene Description,Sokka is shown with a fly buzzing around him. He does not seems scared anymore.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5417,5417,Earth,2,The Swamp,4,Sokka,"Please, we're all alone out here.","Please, we're all alone out here.",Tim Hedrick,Giancarlo Volpe,7.7 +5418,5418,Earth,2,The Swamp,4,Scene Description,"Sokka uses his machete to try and scare the fly off. The fly turns into a big, shining ball of light. It flies away from the gang, illuminating over a dozen pairs of eyes staring at them. They turn around and see them.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5419,5419,Earth,2,The Swamp,4,Aang,Except for them.,Except for them.,Tim Hedrick,Giancarlo Volpe,7.7 +5420,5420,Earth,2,The Swamp,4,Scene Description,They turn back around and huddle together.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5421,5421,Earth,2,The Swamp,4,Sokka,"[His calm demeanor vanishing.] Right, except for them.","Right, except for them.",Tim Hedrick,Giancarlo Volpe,7.7 +5422,5422,Earth,2,The Swamp,4,Scene Description,"The scene changes to Appa and Momo, who are lying down on a giant tree branch. The constant nocturnal noises echoing around them has Momo scuttling frantically from one end of the saddle to the other whilst chittering in fear. Appa, unable to sleep by the noise, growls loudly, causing the noises to stop, and Momo settles down on Appa's saddle. As Momo begins to close his eyes, another small sound is heard, causing his ears to perk up and his eyes to widen. The scene changes back to Aang, Katara, and Sokka. The camp fire is beginning to die out, and the three friends are huddled together, sleeping. Another perspective shot shows someone looking at them through the vines. A vine snakes its way to Sokka's leg, which is sticking out, and begins to wind around both it and Sokka's whole body. +The shot cuts to an overhead view of the three, each tied up by several vines that snake out of the frame. The scene cuts to a close-up profile shot of the three. For a moment, they are still asleep - Sokka holding his machete and drooling - but they awake screaming as the vines simultaneously yank them all out off the screen and away from each other. +The scene cuts to Sokka. He plants the blade of his machete in the ground as he is dragged away. Both Katara and Aang are also dragged off into the mist. Sokka gets up and looks around for his sister and Aang. The respite does not last long as vines are suddenly thrown at him. They wrap around him and attempt to drag him away again. Before he can travel too far, Sokka starts hacking the vines with his machete. He frees himself and runs back down the tree root, pursued by more vines. +The scene cuts to Katara, struggling to free herself from the vines. Using a water whip she cuts through her bonds and runs off into the mist. +The scene cuts to Aang, who frees himself by creating an air bubble around him and expanding it. His bonds attach to the bubble, and Aang jumps away before they ensnare him again. He jumps through the trees, closely pursued by more vines. He escapes a vine that pulls him to the ground using his airbending to propel himself far away and soon finds himself alone in the swamp. Cut to a wide shot of Aang looking around for his friends.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5423,5423,Earth,2,The Swamp,4,Aang,Guys?,Guys?,Tim Hedrick,Giancarlo Volpe,7.7 +5424,5424,Earth,2,The Swamp,4,Scene Description,"The scene fades to a shot of Appa's footprint, which is now filled with swamp water. Two figures are looking down at the footprint. Due is tall and skinny, while his friend Tho is short and fat. Both wear small, animal skin loincloths and have a single, large leaf on their heads to serve as a hat. Tho is carrying a stick, and uses it to indicate the animal track.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5425,5425,Earth,2,The Swamp,4,Due,"What'd you reckon make a track like that, Tho?","What'd you reckon make a track like that, Tho?",Tim Hedrick,Giancarlo Volpe,7.7 +5426,5426,Earth,2,The Swamp,4,Tho,"Don't know, Due. [Points his stick at the footprint.] Some'in with six legs. Pretty big'uns too.","Don't know, Due. Some'in with six legs. Pretty big'uns too.",Tim Hedrick,Giancarlo Volpe,7.7 +5427,5427,Earth,2,The Swamp,4,Scene Description,The camera pans up to reveal more of Appa's tracks in the mud.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5428,5428,Earth,2,The Swamp,4,Due,"Leaves a nice, wide trail to folla'.","Leaves a nice, wide trail to folla'.",Tim Hedrick,Giancarlo Volpe,7.7 +5429,5429,Earth,2,The Swamp,4,Tho,You know what's at the end of that trail?,You know what's at the end of that trail?,Tim Hedrick,Giancarlo Volpe,7.7 +5430,5430,Earth,2,The Swamp,4,Scene Description,Due shakes his head in the negative. Cut to a close-up of Tho's smiling face.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5431,5431,Earth,2,The Swamp,4,Tho,[Grinning.] Dinner.,Dinner.,Tim Hedrick,Giancarlo Volpe,7.7 +5432,5432,Earth,2,The Swamp,4,Scene Description,"The scene cuts to Appa swimming in the marshy water before cutting to a close-up of Momo. A fly is buzzing around his head, and he watches it, shifting his eyes from side to side. It flies off, and Momo goes after it. He lands on a nearby tree root, still attempting to catch the fly. He hops from tree root to tree root, following the fly, although unknowingly lands on the back of a catgator. He catches the fly on the last root, but lets go of it as he jumps to fly away from the creature. It pursues Momo as he flies back to Appa. The camera pans left, following the chase. When Momo and the crocodile reach Appa, the sky bison's mouth is open and the catgator swims right into it. Appa holds the creature there for a moment, before spitting it back out. Momo and the catfish crocodile hiss at each other for a moment, and the crocodile swims off. The scene cuts back to Appa, who shakes his head and loudly groans. +Cut to Katara, who is walking through an area where the tree roots are covered in white flowers.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5433,5433,Earth,2,The Swamp,4,Katara,[Calling out.] Aang! Sokka!,Aang! Sokka!,Tim Hedrick,Giancarlo Volpe,7.7 +5434,5434,Earth,2,The Swamp,4,Scene Description,"Ahead of Katara is another Water Tribe woman, her back facing Katara. She wears the same robe as Katara and has the same hair style. Katara begins walking toward the figure.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5435,5435,Earth,2,The Swamp,4,Katara,Hello? Hello? Can you help me? [She squints.] Mom? [More loudly and running toward the figure.] Mom!,Hello? Hello? Can you help me? Mom? Mom!,Tim Hedrick,Giancarlo Volpe,7.7 +5436,5436,Earth,2,The Swamp,4,Scene Description,"Katara runs to the figure, her eyes streaming tears of joy. She reaches the figure and places a hand on her shoulder.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5437,5437,Earth,2,The Swamp,4,Katara,I can't believe ...,I can't believe ...,Tim Hedrick,Giancarlo Volpe,7.7 +5438,5438,Earth,2,The Swamp,4,Scene Description,"The smile leaves her face as the scene begins to lighten. Katara stands in front of a tree stump as she realizes the figure was only an illusion. Katara gasps, falling to her knees as she begins to cry. It cuts to an overhead shot of the very devastated Katara, and fades to shot of Sokka's hand holding his machete in the air. The rest of Sokka appears.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5439,5439,Earth,2,The Swamp,4,Sokka,"Aang! [While slashing at the vines.] Stupid swamp! Dumb, ugly vines! Katara! [He becomes caught, and grunts with exertion before slicing himself free.] You think you're so tough, huh?","Aang! Stupid swamp! Dumb, ugly vines! Katara! You think you're so tough, huh?",Tim Hedrick,Giancarlo Volpe,7.7 +5440,5440,Earth,2,The Swamp,4,Scene Description,"Sokka trips over as he cuts through the vine in which he was tangled, falling offscreen with his face in the mud. Upon lifting up his head, he sees an image of Yue in a beam of light not far in front of him. Sokka stands up, puts away his machete and starts walking toward Yue.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5441,5441,Earth,2,The Swamp,4,Sokka,"Hello? Yue? [He takes a hold of his head, before removing his hands and shrugging, turning away from the apparition.] This is just a trick of the light ... swamp gas ... I ... hit my head running away last night. I'm going crazy. [Almost fearfully, he turns around and walks closer.]",Hello? Yue? This is just a trick of the light ... swamp gas ... I ... hit my head running away last night. I'm going crazy.,Tim Hedrick,Giancarlo Volpe,7.7 +5442,5442,Earth,2,The Swamp,4,Princess Yue,[Accusingly.] You didn't protect me.,You didn't protect me.,Tim Hedrick,Giancarlo Volpe,7.7 +5443,5443,Earth,2,The Swamp,4,Scene Description,"Sokka rubs his eyes in disbelief, opening them to find that Yue has disappeared. Sokka sighs in relief, but as he turns around he falls over backward, startled at seeing Yue right before his eyes again. The image of Yue disappears immediately after that and Sokka stands up and pulls his machete back out, almost threateningly. +The scene switches to Aang, who is wandering the swamp calling the names of his friends.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5444,5444,Earth,2,The Swamp,4,Aang,Katara! Appa!,Katara! Appa!,Tim Hedrick,Giancarlo Volpe,7.7 +5445,5445,Earth,2,The Swamp,4,Scene Description,"Upon wading through the swamp, Aang notices an unfamiliar girl in a dress standing on a hill, accompanied by a winged pig.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5446,5446,Earth,2,The Swamp,4,Aang,Hello? Who are you?,Hello? Who are you?,Tim Hedrick,Giancarlo Volpe,7.7 +5447,5447,Earth,2,The Swamp,4,Scene Description,"The pig flies off and the girl giggles, before turning around and running away.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5448,5448,Earth,2,The Swamp,4,Aang,"Hey, come back! [He holds his hand out as though to grab her.]","Hey, come back!",Tim Hedrick,Giancarlo Volpe,7.7 +5449,5449,Earth,2,The Swamp,4,Scene Description,"Aang jumps to the top of the hill, only to find she has completely disappeared from his sight. Hearing her laugh again, Aang turns around only to see her running across the limbs of another tree. He uses the vines, however before he can even reach his destination, the girl has moved and is now running across the ground tries to chase the girl. Aang continues his wild chase through the treetops, as the scene switches to show Appa with Momo on his back swimming through the river that flows through the swamp. A little further on the stream, covered by fog, is a group of six swamp tribe members divided over three canoes; Due and Tho sitting in the middle canoe. They look at each other in silence for a few moments, Tho wetting his lips using his tongue. Appa halts as Momo chitters at the strange people.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5450,5450,Earth,2,The Swamp,4,Due,Look at that Tho. Is that a little hairy fella ridin' that thing?,Look at that Tho. Is that a little hairy fella ridin' that thing?,Tim Hedrick,Giancarlo Volpe,7.7 +5451,5451,Earth,2,The Swamp,4,Tho,"No, that's what they call a ""lemoo"". Saw one at a traveling show once. Real smart they say.","No, that's what they call a ""lemoo"". Saw one at a traveling show once. Real smart they say.",Tim Hedrick,Giancarlo Volpe,7.7 +5452,5452,Earth,2,The Swamp,4,Due,Bet he tastes a lot like possum chicken.,Bet he tastes a lot like possum chicken.,Tim Hedrick,Giancarlo Volpe,7.7 +5453,5453,Earth,2,The Swamp,4,Tho,You think everything tastes like possum chicken.,You think everything tastes like possum chicken.,Tim Hedrick,Giancarlo Volpe,7.7 +5454,5454,Earth,2,The Swamp,4,Due,"C'mon now, fellas. [He moves to the front of the boat.] Just a little closer. Nice and easy. Nothing to worry about. We just fixin' to eat ya.","C'mon now, fellas. Just a little closer. Nice and easy. Nothing to worry about. We just fixin' to eat ya.",Tim Hedrick,Giancarlo Volpe,7.7 +5455,5455,Earth,2,The Swamp,4,Scene Description,Appa turns around and takes off in the opposite direction.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5456,5456,Earth,2,The Swamp,4,Tho,[Annoyed.] What'd you say that fer?,What'd you say that fer?,Tim Hedrick,Giancarlo Volpe,7.7 +5457,5457,Earth,2,The Swamp,4,Due,"[Shrugging as he tries to appease his friend.] Well, we are!","Well, we are!",Tim Hedrick,Giancarlo Volpe,7.7 +5458,5458,Earth,2,The Swamp,4,Tho,But you don't have to tell 'em that.,But you don't have to tell 'em that.,Tim Hedrick,Giancarlo Volpe,7.7 +5459,5459,Earth,2,The Swamp,4,Due,[He shrugs again.] Well how'd I know they'd understand me?,Well how'd I know they'd understand me?,Tim Hedrick,Giancarlo Volpe,7.7 +5460,5460,Earth,2,The Swamp,4,Tho,Come on!,Come on!,Tim Hedrick,Giancarlo Volpe,7.7 +5461,5461,Earth,2,The Swamp,4,Scene Description,"Due stands up in front of the canoe and starts spinning his arms, bending the water behind his canoe in order to chase Appa. The other two canoes follow suit, trailing behind Appa in a 'V' formation. Appa bounds through the river, desperate to escape the strange people hunting him. The scene switches back to Aang, who is still chasing the girl.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5462,5462,Earth,2,The Swamp,4,Aang,Who are you?,Who are you?,Tim Hedrick,Giancarlo Volpe,7.7 +5463,5463,Earth,2,The Swamp,4,Scene Description,"Peering through a wall of vegetation, Aang sees the girl on a small hill. Running after her, it is too late to stop as he notices that it is not the girl, but Katara. Aang runs into the waterbender and they both fall over. Sokka hears the commotion and turns around to investigate with his machete cocked - in the wrong direction, as only a few seconds later, Aang and Katara come barreling down the root he is standing on and hit him in the back, knocking him over too.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5464,5464,Earth,2,The Swamp,4,Sokka,[He stands up and puts his machete away.] What do you guys think you're doing!? I've been looking all over for you!,What do you guys think you're doing!? I've been looking all over for you!,Tim Hedrick,Giancarlo Volpe,7.7 +5465,5465,Earth,2,The Swamp,4,Katara,"[She has not moved, although her hand is on her head as she sits on the root they have fallen onto.] Well, I've been wandering around looking for you!","Well, I've been wandering around looking for you!",Tim Hedrick,Giancarlo Volpe,7.7 +5466,5466,Earth,2,The Swamp,4,Aang,[He looks away before airbending himself to his feet. He appears embarrassed that he was not actively searching for his friends like they were him.] I was chasing some girl.,I was chasing some girl.,Tim Hedrick,Giancarlo Volpe,7.7 +5467,5467,Earth,2,The Swamp,4,Katara,What girl?,What girl?,Tim Hedrick,Giancarlo Volpe,7.7 +5468,5468,Earth,2,The Swamp,4,Aang,[He walks over to Katara and helps her up before rubbing his ear.] I don't know. I heard laughing and I saw some girl in a fancy dress.,I don't know. I heard laughing and I saw some girl in a fancy dress.,Tim Hedrick,Giancarlo Volpe,7.7 +5469,5469,Earth,2,The Swamp,4,Sokka,"[Sarcastically, with exaggerated hand movements.] Well, there must be a tea party here and we just didn't get our invitations!","Well, there must be a tea party here and we just didn't get our invitations!",Tim Hedrick,Giancarlo Volpe,7.7 +5470,5470,Earth,2,The Swamp,4,Katara,I thought I saw Mom.,I thought I saw Mom.,Tim Hedrick,Giancarlo Volpe,7.7 +5471,5471,Earth,2,The Swamp,4,Sokka,"Look, we were all just scared and hungry and our minds were playing tricks on us. That's why we all saw things out here.","Look, we were all just scared and hungry and our minds were playing tricks on us. That's why we all saw things out here.",Tim Hedrick,Giancarlo Volpe,7.7 +5472,5472,Earth,2,The Swamp,4,Katara,[Surprised.] You saw something too?,You saw something too?,Tim Hedrick,Giancarlo Volpe,7.7 +5473,5473,Earth,2,The Swamp,4,Sokka,"[He looks away for a moment, before turning back and taking a step closer to his sister.] I thought I saw Yue. But, that doesn't prove anything. Look, I think about her all the time, and you saw Mom, someone you miss a lot.","I thought I saw Yue. But, that doesn't prove anything. Look, I think about her all the time, and you saw Mom, someone you miss a lot.",Tim Hedrick,Giancarlo Volpe,7.7 +5474,5474,Earth,2,The Swamp,4,Aang,What about me? I didn't know the girl I saw. And all our visions led us right here.,What about me? I didn't know the girl I saw. And all our visions led us right here.,Tim Hedrick,Giancarlo Volpe,7.7 +5475,5475,Earth,2,The Swamp,4,Scene Description,"Aang begins walking around, as if looking for something.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5476,5476,Earth,2,The Swamp,4,Katara,Okay ... so where's here? The middle of the swamp?,Okay ... so where's here? The middle of the swamp?,Tim Hedrick,Giancarlo Volpe,7.7 +5477,5477,Earth,2,The Swamp,4,Scene Description,"Aang looks around, his gaze finally resting on a massive tree growing right next to him. The camera pans to reveal exactly how enormous the tree really is.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5478,5478,Earth,2,The Swamp,4,Aang,"Yeah, the center ... it's the heart of the swamp. It's been calling us here. I knew it.","Yeah, the center ... it's the heart of the swamp. It's been calling us here. I knew it.",Tim Hedrick,Giancarlo Volpe,7.7 +5479,5479,Earth,2,The Swamp,4,Sokka,"It's just a tree. [He raises his arms above his head.] It can't call anyone. For the last time, there's nothing after us and there's nothing magical happening here.","It's just a tree. It can't call anyone. For the last time, there's nothing after us and there's nothing magical happening here.",Tim Hedrick,Giancarlo Volpe,7.7 +5480,5480,Earth,2,The Swamp,4,Scene Description,"As Sokka finishes his tirade, a seaweed monster jumps out from the water. The gang huddles together and screams, separating as the monster begins to attack them. The seaweed monster goes after Sokka first as the trio split up, each running in different directions. Sokka is picked up and swung around, only being released as Aang uses airbending to slice part of the monster's arm off. The monster goes after Aang, flicking the monk away and into the surrounding trees. Sokka is shown fighting with the vines that had him captured only seconds ago, and so intent was he at destroying them, he failed to notice a column rising behind himself. The column attaches to the seaweed monster and Sokka is swiped from the ground. Katara comes to his rescue this time as she slices at the monster's arm. It did not have the desired effect, as more vines grew to patch up the hole her waterbending created. She manages to push the monster back a little, however it is not long before she is flung away. Aang stops to watch her, giving the monster time to attack him. Sokka is absorbed into the chest of the monster as the scene changes to Appa continuing his escape from the Foggy Swamp members. Momo throws objects at them from the back of his friend, attempting to slow them down. One of these such items was a shirt that appears to belong to Sokka at a Foggy Swamp member, resulting in the boat that member was on to spin out of control.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5481,5481,Earth,2,The Swamp,4,Tho,"Now, what would a lemoo need a shirt fer?","Now, what would a lemoo need a shirt fer?",Tim Hedrick,Giancarlo Volpe,7.7 +5482,5482,Earth,2,The Swamp,4,Scene Description,"Tho manages to capture Momo after the latter hits a low tree branch and is thrown backward. The loss of his friend encourages Appa to run faster. The scene changes back to the gang fighting the seaweed monster. After using a tornado-like airbending move, Katara freezes Sokka in place before shooting him with water, expelling him from the monster's body. The fight ends as Katara begins to waterbend repeatedly at the monster, slicing through the vines and not allowing the monster to regenerate. A person is seen inside the monster, bending the vines.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5483,5483,Earth,2,The Swamp,4,Sokka,There's someone in there! He's bending the vines!,There's someone in there! He's bending the vines!,Tim Hedrick,Giancarlo Volpe,7.7 +5484,5484,Earth,2,The Swamp,4,Scene Description,"With a final slice, Katara cuts through the mask on the seaweed monster, the whole top half falling off. However, this does not stop the monster, and vines spring out of the marsh, capturing Katara high on a pillar. Aang airbends over to the monster and, using his native bending, rips apart the vines.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5485,5485,Earth,2,The Swamp,4,Aang,[Demanding offensively.] Why did you call me here if you just wanted to kill us!?,Why did you call me here if you just wanted to kill us!?,Tim Hedrick,Giancarlo Volpe,7.7 +5486,5486,Earth,2,The Swamp,4,Huu,Wait! [The vines drop to reveal a slightly larger man wearing nothing but a leaf loincloth.] I didn't call you here.,Wait! I didn't call you here.,Tim Hedrick,Giancarlo Volpe,7.7 +5487,5487,Earth,2,The Swamp,4,Aang,"[He shares a look of confusion with Sokka, who is also in an offensive stance.] We were flying over and I heard something calling to me, telling me to land.","We were flying over and I heard something calling to me, telling me to land.",Tim Hedrick,Giancarlo Volpe,7.7 +5488,5488,Earth,2,The Swamp,4,Sokka,He's the Avatar. Stuff like that happens to us a lot.,He's the Avatar. Stuff like that happens to us a lot.,Tim Hedrick,Giancarlo Volpe,7.7 +5489,5489,Earth,2,The Swamp,4,Huu,The Avatar? Come with me.,The Avatar? Come with me.,Tim Hedrick,Giancarlo Volpe,7.7 +5490,5490,Earth,2,The Swamp,4,Scene Description,"The trio drop their stances and look at each other. The scene cuts to Huu, leading the gang to the top of the giant tree Aang noticed earlier.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5491,5491,Earth,2,The Swamp,4,Katara,"So, who are you then?","So, who are you then?",Tim Hedrick,Giancarlo Volpe,7.7 +5492,5492,Earth,2,The Swamp,4,Huu,"[Bending a vine out of the way.] I protect the swamp from folks that want to hurt it, like this fella with his big knife.","I protect the swamp from folks that want to hurt it, like this fella with his big knife.",Tim Hedrick,Giancarlo Volpe,7.7 +5493,5493,Earth,2,The Swamp,4,Sokka,"See, completely reasonable. [He finally puts his machete away.] Not a monster, just a regular guy defending his home. Nothing mystical about it.","See, completely reasonable. Not a monster, just a regular guy defending his home. Nothing mystical about it.",Tim Hedrick,Giancarlo Volpe,7.7 +5494,5494,Earth,2,The Swamp,4,Huu,"Oh the swamp is a mystical place all right. It's sacred. I reached enlightenment right here under the banyan-grove tree. [He sits on the tree, looking at the group as he explains.] I heard it calling me, just like you did.","Oh the swamp is a mystical place all right. It's sacred. I reached enlightenment right here under the banyan-grove tree. I heard it calling me, just like you did.",Tim Hedrick,Giancarlo Volpe,7.7 +5495,5495,Earth,2,The Swamp,4,Sokka,[Humoring Huu.] Sure you did. It seems real chatty.,Sure you did. It seems real chatty.,Tim Hedrick,Giancarlo Volpe,7.7 +5496,5496,Earth,2,The Swamp,4,Huu,"[The camera zooms out as he explains, slowly revealing more and more of the swamp. It shows how large the banyan-grove tree is compared to the others, but at the final magnification, it is impossible to distinguish it from the other trees.] See this whole swamp is actually just one tree spread out over miles. Branches spread and sink, take root, and spread some more. One big, living organism. Just like the entire world.","See this whole swamp is actually just one tree spread out over miles. Branches spread and sink, take root, and spread some more. One big, living organism. Just like the entire world.",Tim Hedrick,Giancarlo Volpe,7.7 +5497,5497,Earth,2,The Swamp,4,Aang,"[Cuts back to Aang, looking at Huu. He is still openly skeptical.] I get how the tree is one big thing, but the whole world?","I get how the tree is one big thing, but the whole world?",Tim Hedrick,Giancarlo Volpe,7.7 +5498,5498,Earth,2,The Swamp,4,Huu,"Sure. You think you're any different from me or your friends or this tree? If you listen hard enough, you can hear every living thing breathing together. [Another shot shows the swamp river. There are the sounds of several animals heard in the background.] You can feel everything growing. We're all living together, even if most folks don't act like it. We all have the same roots and we are all branches of the same tree.","Sure. You think you're any different from me or your friends or this tree? If you listen hard enough, you can hear every living thing breathing together. You can feel everything growing. We're all living together, even if most folks don't act like it. We all have the same roots and we are all branches of the same tree.",Tim Hedrick,Giancarlo Volpe,7.7 +5499,5499,Earth,2,The Swamp,4,Katara,"[She and her friends are now sitting, listening to Huu.] But what did our visions mean?",But what did our visions mean?,Tim Hedrick,Giancarlo Volpe,7.7 +5500,5500,Earth,2,The Swamp,4,Huu,"In the swamp, we see visions of people we've lost, people we loved, folks we think are gone. [The shot cuts to show the people that Sokka and Katara saw in the swamp, before cutting back to Huu.] But the swamp tells us they're not. We're still connected to them. Time is an illusion and so is death.","In the swamp, we see visions of people we've lost, people we loved, folks we think are gone. But the swamp tells us they're not. We're still connected to them. Time is an illusion and so is death.",Tim Hedrick,Giancarlo Volpe,7.7 +5501,5501,Earth,2,The Swamp,4,Aang,But what about my vision? It was someone I had never met.,But what about my vision? It was someone I had never met.,Tim Hedrick,Giancarlo Volpe,7.7 +5502,5502,Earth,2,The Swamp,4,Huu,You're the Avatar. You tell me.,You're the Avatar. You tell me.,Tim Hedrick,Giancarlo Volpe,7.7 +5503,5503,Earth,2,The Swamp,4,Aang,"[He looks down as he tries to understand.] Time is an illusion. So, it's someone I will meet.","Time is an illusion. So, it's someone I will meet.",Tim Hedrick,Giancarlo Volpe,7.7 +5504,5504,Earth,2,The Swamp,4,Scene Description,Huu nods.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5505,5505,Earth,2,The Swamp,4,Sokka,"Sorry to interrupt the lesson, but we still need to find Appa and Momo.","Sorry to interrupt the lesson, but we still need to find Appa and Momo.",Tim Hedrick,Giancarlo Volpe,7.7 +5506,5506,Earth,2,The Swamp,4,Aang,"I think I know how to find them. [Aang kneels down and places his hand on the tree.] Everything is connected. [Energy travels from Aang's hand to Appa's location. Appa is seen being captured by the Foggy Swamp members. Back at the banyan-grove tree, Aang stands up.] Come on! We've got to hurry!",I think I know how to find them. Everything is connected. Come on! We've got to hurry!,Tim Hedrick,Giancarlo Volpe,7.7 +5507,5507,Earth,2,The Swamp,4,Scene Description,"Back to the Foggy Swamp members, Appa is trapped inside a net while Tho sings.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5508,5508,Earth,2,The Swamp,4,Tho,[Singing and tapping the side of his canoe. Momo is seen struggling inside the sack he has been placed in.] Set my lines by the river bed! Caught ten fish and I killed 'em dead! Cut 'em and gut 'em and I tossed the heads in the water to keep them catgators fed.,Set my lines by the river bed! Caught ten fish and I killed 'em dead! Cut 'em and gut 'em and I tossed the heads in the water to keep them catgators fed.,Tim Hedrick,Giancarlo Volpe,7.7 +5509,5509,Earth,2,The Swamp,4,Scene Description,The boats stop when a jet of water appears and destroys the boat next to Tho and Due's. The two people from the destroyed boat fly into the water as Aang appears on a tree branch.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5510,5510,Earth,2,The Swamp,4,Aang,Appa!,Appa!,Tim Hedrick,Giancarlo Volpe,7.7 +5511,5511,Earth,2,The Swamp,4,Scene Description,"Aang airbends a stream of air, throwing Tho into the water and freeing Momo who was being held by Tho.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5512,5512,Earth,2,The Swamp,4,Due,We're under attack!,We're under attack!,Tim Hedrick,Giancarlo Volpe,7.7 +5513,5513,Earth,2,The Swamp,4,Scene Description,"Due scoops up a puddle of water and sends it toward Aang and Katara. The three become engaged in a waterbending fight, with neither side gaining an advantage.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5514,5514,Earth,2,The Swamp,4,Katara,"Hey, you guys are waterbenders!","Hey, you guys are waterbenders!",Tim Hedrick,Giancarlo Volpe,7.7 +5515,5515,Earth,2,The Swamp,4,Due,"You too! That means we're kin! [Due ceases waterbending, followed by a slightly disgusted Katara. He watches as Sokka and Huu run up to the branch Katara and Aang are standing on.] Hey Huu! How you been?",You too! That means we're kin! Hey Huu! How you been?,Tim Hedrick,Giancarlo Volpe,7.7 +5516,5516,Earth,2,The Swamp,4,Huu,"You know, scared some folks, swung some vines, the usual.","You know, scared some folks, swung some vines, the usual.",Tim Hedrick,Giancarlo Volpe,7.7 +5517,5517,Earth,2,The Swamp,4,Sokka,Huu?,Huu?,Tim Hedrick,Giancarlo Volpe,7.7 +5518,5518,Earth,2,The Swamp,4,Scene Description,"The scene cuts to the gang sitting around a fire in the Foggy Swamp Tribe. There is a member waterbending some liquid in a pot to stirs it, and Due grabs a fish from the pot before moving over to the fire.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5519,5519,Earth,2,The Swamp,4,Due,How you like that possum chicken?,How you like that possum chicken?,Tim Hedrick,Giancarlo Volpe,7.7 +5520,5520,Earth,2,The Swamp,4,Sokka,Tastes just like arctic hen. So why were you guys so interested in eating Appa? [He indicates the catgator lying behind Tho.] You've got plenty of those big things wandering around.,Tastes just like arctic hen. So why were you guys so interested in eating Appa? You've got plenty of those big things wandering around.,Tim Hedrick,Giancarlo Volpe,7.7 +5521,5521,Earth,2,The Swamp,4,Due,You want me to eat old Slim? He's like a member of the family!,You want me to eat old Slim? He's like a member of the family!,Tim Hedrick,Giancarlo Volpe,7.7 +5522,5522,Earth,2,The Swamp,4,Scene Description,Due pulls the fish off the branch and gives it to Slim.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5523,5523,Earth,2,The Swamp,4,Sokka,Nice Slim!,Nice Slim!,Tim Hedrick,Giancarlo Volpe,7.7 +5524,5524,Earth,2,The Swamp,4,Scene Description,"Sokka throws a bug at the catgator; it bounces off his nose and he growls at Sokka, who cowers slightly.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5525,5525,Earth,2,The Swamp,4,Due,"[Laughing.] Oh, he don't eat no bugs! That's people food.","Oh, he don't eat no bugs! That's people food.",Tim Hedrick,Giancarlo Volpe,7.7 +5526,5526,Earth,2,The Swamp,4,Tho,Where'd you say you was from?,Where'd you say you was from?,Tim Hedrick,Giancarlo Volpe,7.7 +5527,5527,Earth,2,The Swamp,4,Katara,[Smiling. Sokka is shown chewing nonchalantly next to her.] The South Pole.,The South Pole.,Tim Hedrick,Giancarlo Volpe,7.7 +5528,5528,Earth,2,The Swamp,4,Tho,"Didn't know there was waterbenders anywhere but here. They got a nice swamp there, do they?","Didn't know there was waterbenders anywhere but here. They got a nice swamp there, do they?",Tim Hedrick,Giancarlo Volpe,7.7 +5529,5529,Earth,2,The Swamp,4,Katara,"No, it's all ice and snow.","No, it's all ice and snow.",Tim Hedrick,Giancarlo Volpe,7.7 +5530,5530,Earth,2,The Swamp,4,Tho,Hmm. No wonder you left.,Hmm. No wonder you left.,Tim Hedrick,Giancarlo Volpe,7.7 +5531,5531,Earth,2,The Swamp,4,Sokka,"[To Katara.] Well, I hope you realize now that nothing strange was going on here. [He raises his arms for emphasis.] Just a bunch of greasy people living in a swamp.","Well, I hope you realize now that nothing strange was going on here. Just a bunch of greasy people living in a swamp.",Tim Hedrick,Giancarlo Volpe,7.7 +5532,5532,Earth,2,The Swamp,4,Katara,What about the visions?,What about the visions?,Tim Hedrick,Giancarlo Volpe,7.7 +5533,5533,Earth,2,The Swamp,4,Sokka,"I told you, we were hungry. I'm eating a giant bug!","I told you, we were hungry. I'm eating a giant bug!",Tim Hedrick,Giancarlo Volpe,7.7 +5534,5534,Earth,2,The Swamp,4,Scene Description,"Sokka holds up said giant bug, taking a bit of its abdomen. He swallows it with some difficulty before exhaling sharply, sticking his tongue out.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5535,5535,Earth,2,The Swamp,4,Aang,[Feeding Momo.] But what about when the tree showed me where Appa and Momo were?,But what about when the tree showed me where Appa and Momo were?,Tim Hedrick,Giancarlo Volpe,7.7 +5536,5536,Earth,2,The Swamp,4,Sokka,"That's Avatar stuff, that doesn't count. [To Huu.] The only thing I can't figure out is how you made that tornado that sucked us down.","That's Avatar stuff, that doesn't count. The only thing I can't figure out is how you made that tornado that sucked us down.",Tim Hedrick,Giancarlo Volpe,7.7 +5537,5537,Earth,2,The Swamp,4,Huu,I can't do anything like that. I just bend the water in the plants.,I can't do anything like that. I just bend the water in the plants.,Tim Hedrick,Giancarlo Volpe,7.7 +5538,5538,Earth,2,The Swamp,4,Sokka,"Well, no accounting for weather. Still, there's absolutely nothing mysterious about the swamp.","Well, no accounting for weather. Still, there's absolutely nothing mysterious about the swamp.",Tim Hedrick,Giancarlo Volpe,7.7 +5539,5539,Earth,2,The Swamp,4,Scene Description,"Cut to a long shot of the camp from across the river. The white screaming bird from earlier lands on a visible tree branch and lets out its horrible cry. A nearby vine rises up and bats the bird into the camera, which goes dark. +When the image returns, it is of a full moon back in the Earth Kingdom village where Zuko and Iroh were seen last. The camera pans down to reveal the broadsword man walking down a street alone. He hears something behind him, turns and draws his blades. The scene cuts to a frontal shot of him, where there was nothing behind him.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5540,5540,Earth,2,The Swamp,4,Broadsword man,Who's there?,Who's there?,Tim Hedrick,Giancarlo Volpe,7.7 +5541,5541,Earth,2,The Swamp,4,Scene Description,"The scene cuts to a close-up shot of his hands, which are both grabbed by another person. He is disarmed and thrown against some nearby boxes, his swords falling uselessly to the ground. His assailant's feet are seen to approach the sword. He picks them up, the camera in turn reveals that the assailant is the Blue Spirit himself.",NA,Tim Hedrick,Giancarlo Volpe,7.7 +5542,5542,Earth,2,The Swamp,4,Scene Description,Fades to credits.,NA,Tim Hedrick,Giancarlo Volpe,7.7 +5543,5543,Earth,2,Avatar Day,5,Scene Description,"The episode begins by showing a coast before panning down to in the middle of a forest where the gang is asleep, except for Momo. Switch to a view from inside Sokka's open mouth, looking out. A spider has set up its web over his mouth. Momo discovers the spider and inspects it with great interest. When a flies lands on the web, Momo tries to grab it. As he plunges his hand completely in Sokka's mouth, Sokka opens his eyes immediately in surprise. He shoots up and starts to spit out the remains of the spider and its web.",NA,John O'Bryan,Lauren MacMullan,7.5 +5544,5544,Earth,2,Avatar Day,5,Sokka,"[Angrily.] What are you doing in my mouth? [Momo chitters happily while lying upside down on Sokka's belly, chewing on the fly he ""rescued"" from the spider's web.] Momo, you need to be a little more sensitive to my boundaries.","What are you doing in my mouth? Momo, you need to be a little more sensitive to my boundaries.",John O'Bryan,Lauren MacMullan,7.5 +5545,5545,Earth,2,Avatar Day,5,Scene Description,"The lemur seems to notice something else on his left. He completely ignores Sokka's comment and climbs on his face, where he erects himself and pricks up his ears to determine what it is he heard. He chitters loudly, waking up Katara, who was sleeping on a nearby sawed off tree trunk. +Switch to Aang, who is still sleeping soundly on Appa's forearm. He wakes up as the ground begins to shake. Kahchi, sitting atop a rhino, jumps out of the thicket. Katara gasps as two more emerge from the bushes on the other side of the camp.",NA,John O'Bryan,Lauren MacMullan,7.5 +5546,5546,Earth,2,Avatar Day,5,Mongke,[Shouting from up above as he looks over the campsite.] Give up! You're completely surrounded!,Give up! You're completely surrounded!,John O'Bryan,Lauren MacMullan,7.5 +5547,5547,Earth,2,Avatar Day,5,Scene Description,"An overview shot of the campsite shows that four rhinos are circling around the gang. +Close-up of Vachir, as he fires two flaming arrows toward Sokka, who was trying to crawl away like a caterpillar in his sleeping bag. The arrows pin the back of the sleeping bag to the ground while Sokka crawls out. He moves out of the path of a third arrow just in time.",NA,John O'Bryan,Lauren MacMullan,7.5 +5548,5548,Earth,2,Avatar Day,5,Sokka,[Crawling toward Appa.] Come on! Come on! Come on!,Come on! Come on! Come on!,John O'Bryan,Lauren MacMullan,7.5 +5549,5549,Earth,2,Avatar Day,5,Scene Description,"Sokka climbs aboard Appa, where Aang's already waiting for him. Switch to a closer shot of Katara, as she also makes her way toward Appa. Just before she reaches him, she stops in her tracks and turns around. +Kahchi spins his Guan Dao around and plants it in the sawed of tree trunk Katara was sleeping on a bit earlier. Next to the tree trunk lie some of Team Avatar's supplies.",NA,John O'Bryan,Lauren MacMullan,7.5 +5550,5550,Earth,2,Avatar Day,5,Katara,My scrolls!,My scrolls!,John O'Bryan,Lauren MacMullan,7.5 +5551,5551,Earth,2,Avatar Day,5,Aang,[Shocked.] My staff!,My staff!,John O'Bryan,Lauren MacMullan,7.5 +5552,5552,Earth,2,Avatar Day,5,Scene Description,"He jumps off Appa's head, while Sokka just manages to get on. +Switch to the Guan Dao blade into the stump, right next to a wooden box. The camera pans to the right to reveal Katara charging Kahchi with a water whip. She freezes the blade solid to the trunk, giving her the opportunity to grab the box of scrolls. She heads back toward Appa just as Kahchi manages to break his weapon free of the ice. +Cut to Ogodei, who is swinging his chains around. He throws them around a tree and pulls it down to impede Aang's progress toward his staff. It has no effect, as Aang just somersaults over the fallen tree. +Close-up of Yeh-Lu, as he ignites one of the hand grenades hanging on his belt. He throws it at Aang, who has reached his staff by now. The explosive lands right beside him, but the fuse is still burning. Aang swirls his staff around and knocks the explosive out of the way and into the woods. Aang propels himself into the air with airbending while the bomb explodes. He lands on Appa's head.",NA,John O'Bryan,Lauren MacMullan,7.5 +5553,5553,Earth,2,Avatar Day,5,Aang,Yip yip!,Yip yip!,John O'Bryan,Lauren MacMullan,7.5 +5554,5554,Earth,2,Avatar Day,5,Scene Description,"Appa rises from the ground, leaving the Rough Rhinos behind. Mongke shoots a fire ball at them as they fly over. Katara and Sokka quickly duck and cover their heads, as the fire ball just misses them. As Sokka erects again, he notices something on the ground.",NA,John O'Bryan,Lauren MacMullan,7.5 +5555,5555,Earth,2,Avatar Day,5,Sokka,"[Stretching out his arm over the saddle as if he wants to grab it.] Wait, my boomerang!","Wait, my boomerang!",John O'Bryan,Lauren MacMullan,7.5 +5556,5556,Earth,2,Avatar Day,5,Scene Description,"The camera zooms out on Sokka's boomerang, which still lies in the middle of their besieged camp.",NA,John O'Bryan,Lauren MacMullan,7.5 +5557,5557,Earth,2,Avatar Day,5,Katara,[Grabbing Sokka's arm.] There's no time!,There's no time!,John O'Bryan,Lauren MacMullan,7.5 +5558,5558,Earth,2,Avatar Day,5,Sokka,"[Annoyed.] Oh, I see, [Turning to Katara.] so there's time to get your scrolls [Turning toward Aang.] and time to get your staff, [Looking back at Katara with his hand on his chest.] but no time for my boomerang?","Oh, I see, so there's time to get your scrolls and time to get your staff, but no time for my boomerang?",John O'Bryan,Lauren MacMullan,7.5 +5559,5559,Earth,2,Avatar Day,5,Katara,[Cheerfully.] That's correct!,That's correct!,John O'Bryan,Lauren MacMullan,7.5 +5560,5560,Earth,2,Avatar Day,5,Sokka,[Bowing his head in defeat by this totally honest answer.] Oh.,Oh.,John O'Bryan,Lauren MacMullan,7.5 +5561,5561,Earth,2,Avatar Day,5,Scene Description,"Cut to a shot of Mongke, who angrily turns his head as Appa disappears at the horizon. +Screen changes to a small village at the edge of a cliff, surrounded by open, green fields. Appa landed nearby a small, wooden house.",NA,John O'Bryan,Lauren MacMullan,7.5 +5562,5562,Earth,2,Avatar Day,5,Aang,"[To a sulking Sokka.] Sorry about your boomerang, Sokka.","Sorry about your boomerang, Sokka.",John O'Bryan,Lauren MacMullan,7.5 +5563,5563,Earth,2,Avatar Day,5,Scene Description,Camera moves back to show how Sokka sits on the ground in a gloomy mood. Katara is buying supplies is the background.,NA,John O'Bryan,Lauren MacMullan,7.5 +5564,5564,Earth,2,Avatar Day,5,Sokka,"[Sadly.] I feel like I've lost part of my identity. [He jumps up and moves Aang's hat slightly so that he can point at Aang's arrow.] Imagine if you lost your arrow, or Katara lost her ... [Makes a hair loopies gesture with a somewhat bored look.] hair loopies.","I feel like I've lost part of my identity. Imagine if you lost your arrow, or Katara lost her ... hair loopies.",John O'Bryan,Lauren MacMullan,7.5 +5565,5565,Earth,2,Avatar Day,5,Scene Description,"He slowly saunters over to the stall, where Katara gives him a loving hug in order to comfort him before she holding her hands in front of herself while smiling lovely at Sokka.",NA,John O'Bryan,Lauren MacMullan,7.5 +5566,5566,Earth,2,Avatar Day,5,Merchant,"Here's your produce, ponytail guy.","Here's your produce, ponytail guy.",John O'Bryan,Lauren MacMullan,7.5 +5567,5567,Earth,2,Avatar Day,5,Sokka,"[He picks up the basket full of supplies, looking dejected at the nickname.] I used to be boomerang guy ...",I used to be boomerang guy ...,John O'Bryan,Lauren MacMullan,7.5 +5568,5568,Earth,2,Avatar Day,5,Scene Description,"Aang and Katara follow Sokka with looks of sympathy as he walks away. The merchant heads toward Katara, who gives him some money.",NA,John O'Bryan,Lauren MacMullan,7.5 +5569,5569,Earth,2,Avatar Day,5,Merchant,"[Surprised, after inspecting the money.] Hey, Water Tribe money!","Hey, Water Tribe money!",John O'Bryan,Lauren MacMullan,7.5 +5570,5570,Earth,2,Avatar Day,5,Katara,I hope that's okay.,I hope that's okay.,John O'Bryan,Lauren MacMullan,7.5 +5571,5571,Earth,2,Avatar Day,5,Merchant,"[Clutching the coin.] So long as it's money. [The merchant closes his shop, while Katara walks over to Aang, who is trying to console a crying Sokka as the camera pans up to show just the merchant's head.] Have a nice Avatar Day!",So long as it's money. Have a nice Avatar Day!,John O'Bryan,Lauren MacMullan,7.5 +5572,5572,Earth,2,Avatar Day,5,Aang,[Interested.] Avatar Day?,Avatar Day?,John O'Bryan,Lauren MacMullan,7.5 +5573,5573,Earth,2,Avatar Day,5,Merchant,"[Turning around while waving.] You guys are going to the festival, right?","You guys are going to the festival, right?",John O'Bryan,Lauren MacMullan,7.5 +5574,5574,Earth,2,Avatar Day,5,Scene Description,"They all look at each other for a moment, trying to figure out what to do. Aang and Katara smile at each other, while tears still run over Sokka's face. +The camera pans down to reveal an overview shot of Chin Village. Switch to a shot of several festive, green lanterns hanging over the street. The shot tilts down. Aang, Katara, and Sokka are standing in the middle of the busy street, looking around in interest.",NA,John O'Bryan,Lauren MacMullan,7.5 +5575,5575,Earth,2,Avatar Day,5,Aang,There's a holiday for the Avatar. Who knew?,There's a holiday for the Avatar. Who knew?,John O'Bryan,Lauren MacMullan,7.5 +5576,5576,Earth,2,Avatar Day,5,Scene Description,They turn around as a large effigy of Avatar Kyoshi rolls by.,NA,John O'Bryan,Lauren MacMullan,7.5 +5577,5577,Earth,2,Avatar Day,5,Katara,[Pointing at the float.] Look! They made a giant Kyoshi float!,Look! They made a giant Kyoshi float!,John O'Bryan,Lauren MacMullan,7.5 +5578,5578,Earth,2,Avatar Day,5,Scene Description,"They run to the side. Switch to a close-up of Kyoshi's head. Aang, Sokka and Katara emerge from a side street.",NA,John O'Bryan,Lauren MacMullan,7.5 +5579,5579,Earth,2,Avatar Day,5,Sokka,And here comes Avatar Roku! [Roku effigy rolls by.],And here comes Avatar Roku!,John O'Bryan,Lauren MacMullan,7.5 +5580,5580,Earth,2,Avatar Day,5,Scene Description,Overview shot of the main square that is packed with people. The giant float of Kyoshi and Roku are being pulled to the middle.,NA,John O'Bryan,Lauren MacMullan,7.5 +5581,5581,Earth,2,Avatar Day,5,Aang,"Having a huge festival in your honor is great, but frankly, it's just nice to be appreciated.","Having a huge festival in your honor is great, but frankly, it's just nice to be appreciated.",John O'Bryan,Lauren MacMullan,7.5 +5582,5582,Earth,2,Avatar Day,5,Sokka,And it's nice to appreciate their deep-fried festival food! [He takes a huge bite out of the food-item he is holding.],And it's nice to appreciate their deep-fried festival food!,John O'Bryan,Lauren MacMullan,7.5 +5583,5583,Earth,2,Avatar Day,5,Katara,"[Pointing at a giant float of Aang coming down the street.] Aang, look!","Aang, look!",John O'Bryan,Lauren MacMullan,7.5 +5584,5584,Earth,2,Avatar Day,5,Aang,That's the biggest me I've ever seen!,That's the biggest me I've ever seen!,John O'Bryan,Lauren MacMullan,7.5 +5585,5585,Earth,2,Avatar Day,5,Scene Description,Close-up as Aang's float pulls up besides that of the other two Avatars on the main square. The camera pans to the right of the floats as a villager carrying a torch comes running down the street.,NA,John O'Bryan,Lauren MacMullan,7.5 +5586,5586,Earth,2,Avatar Day,5,Sokka,"Now a torch, that's a nice prop. It's bright, dangerous ... [Sniffs.] smells manly. But I'm not sure I could carry it off.","Now a torch, that's a nice prop. It's bright, dangerous ... smells manly. But I'm not sure I could carry it off.",John O'Bryan,Lauren MacMullan,7.5 +5587,5587,Earth,2,Avatar Day,5,Scene Description,Sokka takes another bite of his food as Katara points at the runner.,NA,John O'Bryan,Lauren MacMullan,7.5 +5588,5588,Earth,2,Avatar Day,5,Katara,"[Surprised.] Hey, what's that guy doing?","Hey, what's that guy doing?",John O'Bryan,Lauren MacMullan,7.5 +5589,5589,Earth,2,Avatar Day,5,Scene Description,"With a loud scream, the runner jumps through the effigy of Kyoshi, causing it to catch fire. The fire spreads rapidly over the whole effigy.",NA,John O'Bryan,Lauren MacMullan,7.5 +5590,5590,Earth,2,Avatar Day,5,Villagers,[Chanting as Kyoshi's effigy is consumed by the flames.] Down with the Avatar!,Down with the Avatar!,John O'Bryan,Lauren MacMullan,7.5 +5591,5591,Earth,2,Avatar Day,5,Scene Description,"The villagers continue chanting while the runner sets fire to the Roku effigy next. The camera zooms in on Aang, Katara, and Sokka, who are utterly shocked by the turn of events. Sokka's mouth falls open and food drips out. +Cut to a shot of another town atop a hill. As two people are walking down the quiet street, a shadowy figure quickly passes them by on the roof. The Blue Spirit lands in front of the two people and unsheathes his dual dao swords as he jumps at the man carrying two baskets, suspended on a long pole. He swiftly cuts the baskets off in one fluid motion. The terrified man cowers back, as the Blue Spirit moves in to collect his prize. He hangs the baskets over his shoulders and heads for the woman, who is carrying a large piece of fruit on her head. The Blue Spirit snatches the fruit off her head and disappears as swiftly as he had come. The man and woman are left in confusion as to what just happened. +Switch to a scene in the forest. The camera follows the descent of a fly that is snatched out of the air by a chameleon resting on a branch. The Blue Spirit is making his way through the thicket. The mask of the Blue Spirit is placed in a hollow part at the base of a tree. Zuko peeks around the trunk. The camera zooms toward a cavern where Iroh is sitting. He looks up when Zuko drops the barrels of food at his feet.",NA,John O'Bryan,Lauren MacMullan,7.5 +5592,5592,Earth,2,Avatar Day,5,Iroh,[Wondering.] Where did you get these?,Where did you get these?,John O'Bryan,Lauren MacMullan,7.5 +5593,5593,Earth,2,Avatar Day,5,Zuko,"[Angrily, while walking away.] What does it matter where they came from?",What does it matter where they came from?,John O'Bryan,Lauren MacMullan,7.5 +5594,5594,Earth,2,Avatar Day,5,Iroh,[Seriously.] Mmmm ... [Takes a bite out of one of the cupcakes Zuko brought. The jam drips of his chin. In delight.] ... mmmm!,Mmmm ... ... mmmm!,John O'Bryan,Lauren MacMullan,7.5 +5595,5595,Earth,2,Avatar Day,5,Scene Description,"Switch back to the burning effigies of the Avatars in Chin Village as the chants continue. The mayor signals to the torch-bearer, who is now on the roof, to throw his torch. The torch-bearer grins as he takes aim and throws his torch with a grunt right into the right eye of Aang's float. The crowd cheers in approval, while Aang looks at his own effigy burn with a look of pain on his face, closing his own right eye. Katara runs to the front and uses her waterbending to extinguish the flames with water from two large pots nearby.",NA,John O'Bryan,Lauren MacMullan,7.5 +5596,5596,Earth,2,Avatar Day,5,Villager,[Angrily pointing an accusing finger at Katara.] That party pooper's ruining Avatar Day!,That party pooper's ruining Avatar Day!,John O'Bryan,Lauren MacMullan,7.5 +5597,5597,Earth,2,Avatar Day,5,Scene Description,Aang looks angrily at the villager. He airbends himself to the top of his own float and lands on the left shoulder of his still smoking effigy.,NA,John O'Bryan,Lauren MacMullan,7.5 +5598,5598,Earth,2,Avatar Day,5,Aang,[Angered.] That party pooper's my friend! [He takes off his hat and throws it away to reveal his arrow.],That party pooper's my friend!,John O'Bryan,Lauren MacMullan,7.5 +5599,5599,Earth,2,Avatar Day,5,Tong,[Pointing in shock at Aang.] It's the Avatar himself!,It's the Avatar himself!,John O'Bryan,Lauren MacMullan,7.5 +5600,5600,Earth,2,Avatar Day,5,Villager,[Scared.] It's going to kill us with its awesome Avatar powers!,It's going to kill us with its awesome Avatar powers!,John O'Bryan,Lauren MacMullan,7.5 +5601,5601,Earth,2,Avatar Day,5,Aang,"No, I'm not, I ...","No, I'm not, I ...",John O'Bryan,Lauren MacMullan,7.5 +5602,5602,Earth,2,Avatar Day,5,Scene Description,Aang raises his hand. Several villagers run for cover in fear. The villager that spoke earlier throws himself into the audience. Aang looks at his hand and quickly hides it behind his back.,NA,John O'Bryan,Lauren MacMullan,7.5 +5603,5603,Earth,2,Avatar Day,5,Tong,"[Crawling back on his feet.] I suggest you leave! [He waves them away with a gesture of his hand.] You're not welcome here, Avatar!","I suggest you leave! You're not welcome here, Avatar!",John O'Bryan,Lauren MacMullan,7.5 +5604,5604,Earth,2,Avatar Day,5,Scene Description,Katara turns to face the mayor.,NA,John O'Bryan,Lauren MacMullan,7.5 +5605,5605,Earth,2,Avatar Day,5,Katara,Why not? Aang helps people.,Why not? Aang helps people.,John O'Bryan,Lauren MacMullan,7.5 +5606,5606,Earth,2,Avatar Day,5,Aang,[Landing beside Katara.] It's true! I'm on your side.,It's true! I'm on your side.,John O'Bryan,Lauren MacMullan,7.5 +5607,5607,Earth,2,Avatar Day,5,Scene Description,Camera zooms in slowly on the mayor.,NA,John O'Bryan,Lauren MacMullan,7.5 +5608,5608,Earth,2,Avatar Day,5,Tong,"[Calmly.] I find that hard to swallow, [Raising his voice.] considering what you did to us in your past life! It was Avatar Kyoshi; she murdered our glorious leader, Chin the Great.","I find that hard to swallow, considering what you did to us in your past life! It was Avatar Kyoshi; she murdered our glorious leader, Chin the Great.",John O'Bryan,Lauren MacMullan,7.5 +5609,5609,Earth,2,Avatar Day,5,Aang,[Utterly shocked.] You think that I ... murdered someone?,You think that I ... murdered someone?,John O'Bryan,Lauren MacMullan,7.5 +5610,5610,Earth,2,Avatar Day,5,Villager #2,[Lisping and slurring.] We used to be a great society before you killed our leader. [Pointing at himself as the camera zooms in on him.] Now look at us!,We used to be a great society before you killed our leader. Now look at us!,John O'Bryan,Lauren MacMullan,7.5 +5611,5611,Earth,2,Avatar Day,5,Scene Description,The villagers next to him look at him in disgust.,NA,John O'Bryan,Lauren MacMullan,7.5 +5612,5612,Earth,2,Avatar Day,5,Aang,[Frightened by the appearances of the old man.] Huh!,Huh!,John O'Bryan,Lauren MacMullan,7.5 +5613,5613,Earth,2,Avatar Day,5,Katara,[Katara places her arms on Aang's shoulders and starts to defend him.] Aang would never do something like that. No Avatar would. [Shaking her head in disapproval before pointing an accusing finger at the villagers.] And it's not fair for you all to question his honor!,Aang would never do something like that. No Avatar would. And it's not fair for you all to question his honor!,John O'Bryan,Lauren MacMullan,7.5 +5614,5614,Earth,2,Avatar Day,5,Villager #3,"[Raising his arm to emphasize his remark.] Let's tell her what we all think of the Avatar's ""honor""!","Let's tell her what we all think of the Avatar's ""honor""!",John O'Bryan,Lauren MacMullan,7.5 +5615,5615,Earth,2,Avatar Day,5,Scene Description,He turns around to shake his rear at Aang and blows a raspberry; the villagers cheer in approval.,NA,John O'Bryan,Lauren MacMullan,7.5 +5616,5616,Earth,2,Avatar Day,5,Aang,Give me a chance to clear my name!,Give me a chance to clear my name!,John O'Bryan,Lauren MacMullan,7.5 +5617,5617,Earth,2,Avatar Day,5,Tong,The only way to prove your innocence is to stand trial.,The only way to prove your innocence is to stand trial.,John O'Bryan,Lauren MacMullan,7.5 +5618,5618,Earth,2,Avatar Day,5,Aang,[Confidently.] I'll gladly stand trial!,I'll gladly stand trial!,John O'Bryan,Lauren MacMullan,7.5 +5619,5619,Earth,2,Avatar Day,5,Tong,You'll have to follow all our rules. That includes paying bail.,You'll have to follow all our rules. That includes paying bail.,John O'Bryan,Lauren MacMullan,7.5 +5620,5620,Earth,2,Avatar Day,5,Aang,No problem.,No problem.,John O'Bryan,Lauren MacMullan,7.5 +5621,5621,Earth,2,Avatar Day,5,Scene Description,"Close-up of Aang's face. His confident look quickly disappears as the camera cuts to the next shot, where he is cuffed with his hands and head stuck in a wooden panel and thrown behind bars. Katara holds her hand before her eyes in shame while Sokka leans against the prison bars. His arms are crossed and he looks annoyed at Aang.",NA,John O'Bryan,Lauren MacMullan,7.5 +5622,5622,Earth,2,Avatar Day,5,Aang,[Apologetically.] How was I supposed to know they wouldn't take Water Tribe money?,How was I supposed to know they wouldn't take Water Tribe money?,John O'Bryan,Lauren MacMullan,7.5 +5623,5623,Earth,2,Avatar Day,5,Scene Description,"Cut to a panning down shot of the panoramic view of the village. The frame freezes for a moment on the open prison courtyard, where Aang's tunic is clearly visible. Switch to a shot from inside the prison, where Sokka, Katara, and Momo are still standing before the chained up Aang.",NA,John O'Bryan,Lauren MacMullan,7.5 +5624,5624,Earth,2,Avatar Day,5,Sokka,"So some people don't like you, big deal! There's a whole nation of firebenders who hate you. Now let's bust you out of here!","So some people don't like you, big deal! There's a whole nation of firebenders who hate you. Now let's bust you out of here!",John O'Bryan,Lauren MacMullan,7.5 +5625,5625,Earth,2,Avatar Day,5,Aang,I can't.,I can't.,John O'Bryan,Lauren MacMullan,7.5 +5626,5626,Earth,2,Avatar Day,5,Sokka,"[Upbeat.] Sure you can! A little [Theatrically jumps back and pretends to airbend by blowing air. Katara looks ashamed for her brother. He moves to the back of the room to ""cut"" the air.] swish-swish-swish! [He makes a grotesque movement with his arm before thrusting his face in the camera.] Airbending slice! [He resumes his place beside Katara, who is still looking annoyed by her brother. He makes a circular motion with his hands and points toward the door.] And we're on our way!",Sure you can! A little swish-swish-swish! Airbending slice! And we're on our way!,John O'Bryan,Lauren MacMullan,7.5 +5627,5627,Earth,2,Avatar Day,5,Scene Description,Aang looks at Sokka with big eyes.,NA,John O'Bryan,Lauren MacMullan,7.5 +5628,5628,Earth,2,Avatar Day,5,Katara,"[Slightly mocking.] I think what ""Master Swish"" is trying to say [Serious tone as she looks at Aang.] is that you're supposed to be out saving the world. You can't do that locked up in here.","I think what ""Master Swish"" is trying to say is that you're supposed to be out saving the world. You can't do that locked up in here.",John O'Bryan,Lauren MacMullan,7.5 +5629,5629,Earth,2,Avatar Day,5,Aang,[Unhappy.] I can't do that with people thinking I'm a murderer either. I need you guys to help prove my innocence.,I can't do that with people thinking I'm a murderer either. I need you guys to help prove my innocence.,John O'Bryan,Lauren MacMullan,7.5 +5630,5630,Earth,2,Avatar Day,5,Sokka,How're we gonna to do that? The crime happened over three hundred years ago.,How're we gonna to do that? The crime happened over three hundred years ago.,John O'Bryan,Lauren MacMullan,7.5 +5631,5631,Earth,2,Avatar Day,5,Aang,"[Cunningly.] That's okay, Sokka. For some reason, I thought you were an expert detective.","That's okay, Sokka. For some reason, I thought you were an expert detective.",John O'Bryan,Lauren MacMullan,7.5 +5632,5632,Earth,2,Avatar Day,5,Sokka,"[Content.] Well, I guess I could be classified as such.","Well, I guess I could be classified as such.",John O'Bryan,Lauren MacMullan,7.5 +5633,5633,Earth,2,Avatar Day,5,Katara,"[Aiding Aang by playing Sokka's ego.] Yeah! Back home, he was famous for solving the mystery of the missing seal jerky.","Yeah! Back home, he was famous for solving the mystery of the missing seal jerky.",John O'Bryan,Lauren MacMullan,7.5 +5634,5634,Earth,2,Avatar Day,5,Sokka,"[Bragging.] Everyone wanted to blame it on the polar leopard, but I figured out it was Old Man Jarko wearing polar leopard boots! [Katara holds her hand to her brow, annoyed by Sokka's monologue.] See, a real eight hundred-pound polar leopard would have left much deeper tracks. [Aang is making fun of Sokka, Katara holds her hand to her mouth to refrain herself from bursting out in laughs.] Okay, I guess I am pretty good.","Everyone wanted to blame it on the polar leopard, but I figured out it was Old Man Jarko wearing polar leopard boots! See, a real eight hundred-pound polar leopard would have left much deeper tracks. Okay, I guess I am pretty good.",John O'Bryan,Lauren MacMullan,7.5 +5635,5635,Earth,2,Avatar Day,5,Aang,"So, you'll help me with my case?","So, you'll help me with my case?",John O'Bryan,Lauren MacMullan,7.5 +5636,5636,Earth,2,Avatar Day,5,Sokka,"[Pretends to ponder about the question. Katara stares at him, trying to figure out what he is doing.] Fine! But I'm going to need some new props. [The camera spins around. When it stops again, Sokka is wearing a hat with a monocle.] I'm ready. [Katara looks surprised at his new outfit and giggles. Sokka extends his monocle to investigate her.] What?",Fine! But I'm going to need some new props. I'm ready. What?,John O'Bryan,Lauren MacMullan,7.5 +5637,5637,Earth,2,Avatar Day,5,Scene Description,"Cut to a wagon being pulled by an ostrich horse through the forest. An Earth Kingdom soldier sits in the front, holding the reins. Switch to the inside of the wagon, where a wealthy man in playing with his chest full of gold pieces. He is thrown to the front when the cart suddenly stops. The man looks around in fear, quickly closing and locking the chest with the precious metal. His scared eyes shift from side to side to as he hears rumbling noises outside. He clutches the chest protectively. The cold sweat is dripping down his face. He sighs in relieve as the noise died down, but he swiftly cowers back in fear as two swords pierce the top of the cart. A fist comes crashing down through the ceiling. When the aghast man looks up, he sees that it were the blades of the Blue Spirit that wrecked his cart. He anxiously holds up his treasury toward the Blue Spirit, while trying to stay away from him as far as possible. The Blue Spirit snatches it out of his hands and disappears, leaving the surprised man. The camera moves back to reveal the shocked man in his chart and the unconscious soldier on the ground. +Cut back to a panoramic view of Chin Village, lying at the edge of the tall cliff and surrounded by pastures of green. Switch to on overview shot of a patch of sand, right outside the village wall. Three people are standing nearby a small shrine.",NA,John O'Bryan,Lauren MacMullan,7.5 +5638,5638,Earth,2,Avatar Day,5,Tong,"This is the crime scene. [Cut to Sokka, who inquisitively looks around. He gazes directly into the camera lens through his magnifying glass, making his left eye appear huge. He moves on to investigate the walls of the shrine, while the mayor is standing at the edge of the cliff, pointing down at something.] This is the footprint of the killer, Kyoshi. [Sokka quickly squats beside the footprint to take a closer look at it.] It was at sunset, 370 years ago today, that she emerged from the temple, and struck down Chin the Great. After that tragic day, we built this statue to immortalize our great leader. [They all look up at a statue of Chin the Great, who has a raised left hand in triumph.] Feel free to appreciate it.","This is the crime scene. This is the footprint of the killer, Kyoshi. It was at sunset, 370 years ago today, that she emerged from the temple, and struck down Chin the Great. After that tragic day, we built this statue to immortalize our great leader. Feel free to appreciate it.",John O'Bryan,Lauren MacMullan,7.5 +5639,5639,Earth,2,Avatar Day,5,Scene Description,"The mayor leaves Katara and Sokka alone to investigate things further. Sokka moves in to examine the statue from every possible angle, while Katara looks curiously at him. Sokka is investigating the base of the statue, when something catches his attention. He looks through his magnifying monocle in order to take a better look at the right foot of the statue. His eyes widen as he makes a discovery. He swiftly runs over to the shrine that is facing the statue and examines the stone it is made of.",NA,John O'Bryan,Lauren MacMullan,7.5 +5640,5640,Earth,2,Avatar Day,5,Sokka,This temple and this statue were cut from the same stone. [Runs back over to the statue.] And we know that the statue was built after Chin died.,This temple and this statue were cut from the same stone. And we know that the statue was built after Chin died.,John O'Bryan,Lauren MacMullan,7.5 +5641,5641,Earth,2,Avatar Day,5,Katara,"[Excitedly drawing her conclusions.] So if they were built at the same time, that means–","So if they were built at the same time, that means–",John O'Bryan,Lauren MacMullan,7.5 +5642,5642,Earth,2,Avatar Day,5,Scene Description,Sokka interrupts her before she can reach a conclusion.,NA,John O'Bryan,Lauren MacMullan,7.5 +5643,5643,Earth,2,Avatar Day,5,Sokka,[Shouting.] Shhh! I wanna solve it! [Pointing at the temple.] That means Kyoshi never set foot in this temple!,Shhh! I wanna solve it! That means Kyoshi never set foot in this temple!,John O'Bryan,Lauren MacMullan,7.5 +5644,5644,Earth,2,Avatar Day,5,Katara,"That's a big hole in the mayor's story, [Disappointed.] but it's not enough to prove Aang's innocence.","That's a big hole in the mayor's story, but it's not enough to prove Aang's innocence.",John O'Bryan,Lauren MacMullan,7.5 +5645,5645,Earth,2,Avatar Day,5,Sokka,"You're right. [Blows soap bubbles with his dragon shaped pipe, while thinking about their next course of action.] We need to go to Kyoshi Island.",You're right. We need to go to Kyoshi Island.,John O'Bryan,Lauren MacMullan,7.5 +5646,5646,Earth,2,Avatar Day,5,Scene Description,"Katara walks in the frame, looking at his pipe.",NA,John O'Bryan,Lauren MacMullan,7.5 +5647,5647,Earth,2,Avatar Day,5,Katara,[Surprised.] Where did you get that?,Where did you get that?,John O'Bryan,Lauren MacMullan,7.5 +5648,5648,Earth,2,Avatar Day,5,Scene Description,"Cut to the prison in which Aang is being held. An elephant rat sniffles his way over to an acorn. He picks it up and jumps away. Aang, still cuffed, leans dispirited against the wall of the prison. A low voice emerges from the shadows at the other side of the prison.",NA,John O'Bryan,Lauren MacMullan,7.5 +5649,5649,Earth,2,Avatar Day,5,Scary prisoner,"You got a bald head. [Aang looks up in wonder to see who is talking. Switch to Aang's angle of view. A man is standing in the shadows, only his outline is visible.] Some nice tattoos. [The man emerges from the shadows. He has a strong build, earrings in both ears, and his body has a large snake tattoo that covers the top of his chest and down his right arm. He suddenly charges Aang, letting out a load growl. He is stopped in his tracks by the chains around his neck. Aang slides down the wall in fear, while the man addresses him calmly.] You're going to fit in real well around here.",You got a bald head. Some nice tattoos. You're going to fit in real well around here.,John O'Bryan,Lauren MacMullan,7.5 +5650,5650,Earth,2,Avatar Day,5,Scene Description,"Aang smiles awkwardly as the man balls his fist. +Switch to an overview of Kyoshi Island. A man in the watchtower signals the approach of Appa by ringing a bell. Cut to a shot of Oyaji's house as Appa's shadow slides over it. The man looks up. Two laughing, little children pass him on their way to great Appa and his riders. Appa lands right in front of the large, wooden statue of Kyoshi which is completely rebuilt. When Appa touches the ground, everyone in the village has gathered around to great them. They are all clapping as The foaming mouth guy makes it to the front. He sees Appa and all he can do is squeal. He gestures toward Appa in wonder, before letting out a load squeal and starts to foam before fainting. Some of the villagers look at him while doing his thing, feeling awkwardly. Sokka waves at the people. Koko, who was standing in the front with her hands raised high, notices that something is off.",NA,John O'Bryan,Lauren MacMullan,7.5 +5651,5651,Earth,2,Avatar Day,5,Koko,[Angrily stamping her foot on the ground.] Where's Aangy?,Where's Aangy?,John O'Bryan,Lauren MacMullan,7.5 +5652,5652,Earth,2,Avatar Day,5,Katara,"[Gently breaks the news to Koko.] He couldn't be here, Koko.","He couldn't be here, Koko.",John O'Bryan,Lauren MacMullan,7.5 +5653,5653,Earth,2,Avatar Day,5,Scene Description,The villagers sigh in disappointment.,NA,John O'Bryan,Lauren MacMullan,7.5 +5654,5654,Earth,2,Avatar Day,5,Koko,[Nagging.] I wanted to see Aangy ...,I wanted to see Aangy ...,John O'Bryan,Lauren MacMullan,7.5 +5655,5655,Earth,2,Avatar Day,5,Scene Description,"The foaming mouth guy woozily stands up again, staggering a bit. He looks from left to right, wipes the foam of his face and pulls his tunic over his head, before subtly sneaking away. The rest of the villagers do the same with the exception of Oyaji.",NA,John O'Bryan,Lauren MacMullan,7.5 +5656,5656,Earth,2,Avatar Day,5,Katara,Oyaji! Aang is in jail. The town of Chin says he murdered their leader in a past life.,Oyaji! Aang is in jail. The town of Chin says he murdered their leader in a past life.,John O'Bryan,Lauren MacMullan,7.5 +5657,5657,Earth,2,Avatar Day,5,Sokka,They say it was Kyoshi.,They say it was Kyoshi.,John O'Bryan,Lauren MacMullan,7.5 +5658,5658,Earth,2,Avatar Day,5,Oyaji,[Shocked.] Kyoshi? That's crazy talk! I'll take you to her shrine. Maybe something there will help you clear her name.,Kyoshi? That's crazy talk! I'll take you to her shrine. Maybe something there will help you clear her name.,John O'Bryan,Lauren MacMullan,7.5 +5659,5659,Earth,2,Avatar Day,5,Scene Description,The threesome is walking up a gentle slope.,NA,John O'Bryan,Lauren MacMullan,7.5 +5660,5660,Earth,2,Avatar Day,5,Sokka,"[With feigned casualness.] So, uh ... what's Suki up to? Is she around?","So, uh ... what's Suki up to? Is she around?",John O'Bryan,Lauren MacMullan,7.5 +5661,5661,Earth,2,Avatar Day,5,Scene Description,Sokka looks around while Katara gives him a loving smile.,NA,John O'Bryan,Lauren MacMullan,7.5 +5662,5662,Earth,2,Avatar Day,5,Oyaji,"Actually, she and the other warriors left to fight in the war. You kids had a big impact on Suki. She said you inspired her and she wanted to help change the world.","Actually, she and the other warriors left to fight in the war. You kids had a big impact on Suki. She said you inspired her and she wanted to help change the world.",John O'Bryan,Lauren MacMullan,7.5 +5663,5663,Earth,2,Avatar Day,5,Sokka,"[He disappointedly slants his eyes.] Oh, well ... that's great.","Oh, well ... that's great.",John O'Bryan,Lauren MacMullan,7.5 +5664,5664,Earth,2,Avatar Day,5,Scene Description,They walk under a large paifang gate toward a temple at the top of a hill.,NA,John O'Bryan,Lauren MacMullan,7.5 +5665,5665,Earth,2,Avatar Day,5,Oyaji,This temple was converted into a shrine to Kyoshi. The clerics tell us these relics are still connected to her spirit. That's her kimono.,This temple was converted into a shrine to Kyoshi. The clerics tell us these relics are still connected to her spirit. That's her kimono.,John O'Bryan,Lauren MacMullan,7.5 +5666,5666,Earth,2,Avatar Day,5,Katara,[Approvingly.] She had exquisite taste.,She had exquisite taste.,John O'Bryan,Lauren MacMullan,7.5 +5667,5667,Earth,2,Avatar Day,5,Oyaji,Please don't touch!,Please don't touch!,John O'Bryan,Lauren MacMullan,7.5 +5668,5668,Earth,2,Avatar Day,5,Scene Description,Katara quickly lets go of the robe.,NA,John O'Bryan,Lauren MacMullan,7.5 +5669,5669,Earth,2,Avatar Day,5,Sokka,"These fans ... [He picks up one of the fans and waves it back and forth.] They were her weapons, no?","These fans ... They were her weapons, no?",John O'Bryan,Lauren MacMullan,7.5 +5670,5670,Earth,2,Avatar Day,5,Oyaji,[Sternly.] Also refrain from touching the fans.,Also refrain from touching the fans.,John O'Bryan,Lauren MacMullan,7.5 +5671,5671,Earth,2,Avatar Day,5,Katara,[Squatting beside a really big pair of brown boots.] These were her boots? Her feet must have been enormous!,These were her boots? Her feet must have been enormous!,John O'Bryan,Lauren MacMullan,7.5 +5672,5672,Earth,2,Avatar Day,5,Scene Description,Momo peeks out one of them. Katara looks surprised to see him there.,NA,John O'Bryan,Lauren MacMullan,7.5 +5673,5673,Earth,2,Avatar Day,5,Oyaji,[Proudly.] The biggest of any Avatar.,The biggest of any Avatar.,John O'Bryan,Lauren MacMullan,7.5 +5674,5674,Earth,2,Avatar Day,5,Katara,[Realizing something.] Wait a minute ... big feet? [A flashback shows the much smaller footprint they saw at the edge of the cliff outside Chin Village.] Little footprint? [She happily exclaims her findings.] There's no way–,Wait a minute ... big feet? Little footprint? There's no way–,John O'Bryan,Lauren MacMullan,7.5 +5675,5675,Earth,2,Avatar Day,5,Scene Description,Sokka clears his throat to cut her off.,NA,John O'Bryan,Lauren MacMullan,7.5 +5676,5676,Earth,2,Avatar Day,5,Sokka,[Annoyed.] Special outfit? Hat and pipe? These things mean anything to you?,Special outfit? Hat and pipe? These things mean anything to you?,John O'Bryan,Lauren MacMullan,7.5 +5677,5677,Earth,2,Avatar Day,5,Katara,[Sarcastically.] You're right. I'm sorry. [She bows slightly in a mocking gesture.] Please.,You're right. I'm sorry. Please.,John O'Bryan,Lauren MacMullan,7.5 +5678,5678,Earth,2,Avatar Day,5,Sokka,[Dramatically raises his hand in the air.] Aha! [Showing his own boots to Oyaji.] There's no way Kyoshi could have made that footprint. [Moves toward Katara to explain everything to her.] And therefore there is nothing linking her to the crime scene.,Aha! There's no way Kyoshi could have made that footprint. And therefore there is nothing linking her to the crime scene.,John O'Bryan,Lauren MacMullan,7.5 +5679,5679,Earth,2,Avatar Day,5,Katara,"[Unimpressed.] Brilliant, Sokka. [Rolls her eyes.]","Brilliant, Sokka.",John O'Bryan,Lauren MacMullan,7.5 +5680,5680,Earth,2,Avatar Day,5,Scene Description,Cut back to an overview shot of Chin Village at sundown. Aang is sitting in a circle with three other inmates.,NA,John O'Bryan,Lauren MacMullan,7.5 +5681,5681,Earth,2,Avatar Day,5,Scary prisoner,[In a very friendly voice that does not stroke with his scary appearances.] This girl you're talking about? She'll come around. You just gotta hang in there.,This girl you're talking about? She'll come around. You just gotta hang in there.,John O'Bryan,Lauren MacMullan,7.5 +5682,5682,Earth,2,Avatar Day,5,Scene Description,Aang removes his head and hands out of the wooden panel.,NA,John O'Bryan,Lauren MacMullan,7.5 +5683,5683,Earth,2,Avatar Day,5,Aang,[Hopeful.] You think so?,You think so?,John O'Bryan,Lauren MacMullan,7.5 +5684,5684,Earth,2,Avatar Day,5,Scary prisoner,Sure.,Sure.,John O'Bryan,Lauren MacMullan,7.5 +5685,5685,Earth,2,Avatar Day,5,Prisoner #2,Yeah.,Yeah.,John O'Bryan,Lauren MacMullan,7.5 +5686,5686,Earth,2,Avatar Day,5,Sensitive ruffian,You're a catch.,You're a catch.,John O'Bryan,Lauren MacMullan,7.5 +5687,5687,Earth,2,Avatar Day,5,Aang,[Doubtful.] I don't know ...,I don't know ...,John O'Bryan,Lauren MacMullan,7.5 +5688,5688,Earth,2,Avatar Day,5,Scene Description,He rests his head on the board.,NA,John O'Bryan,Lauren MacMullan,7.5 +5689,5689,Earth,2,Avatar Day,5,Scary prisoner,"Hey! You're smart, handsome, funny. Not to mention you're the Avatar.","Hey! You're smart, handsome, funny. Not to mention you're the Avatar.",John O'Bryan,Lauren MacMullan,7.5 +5690,5690,Earth,2,Avatar Day,5,Aang,[Smiling sincerely.] You guys are great.,You guys are great.,John O'Bryan,Lauren MacMullan,7.5 +5691,5691,Earth,2,Avatar Day,5,Sensitive ruffian,[Tears stream down his face while he talk in a very soft voice.] Don't be afraid to tell her how you feel. [He dries his tears and sniffs.],Don't be afraid to tell her how you feel.,John O'Bryan,Lauren MacMullan,7.5 +5692,5692,Earth,2,Avatar Day,5,Scene Description,Switch back to Kyoshi's shrine at Kyoshi Island. Oyaji brings Sokka's and Katara's attention to a painting that depicts Kyoshi and some of the villagers.,NA,John O'Bryan,Lauren MacMullan,7.5 +5693,5693,Earth,2,Avatar Day,5,Oyaji,"This piece is called ""The Birth of Kyoshi"". [Sokka investigates the painting thoroughly.] It was painted at sunrise on this day this island was founded. Why, it was today in fact, three hundred and seventy years ago.","This piece is called ""The Birth of Kyoshi"". It was painted at sunrise on this day this island was founded. Why, it was today in fact, three hundred and seventy years ago.",John O'Bryan,Lauren MacMullan,7.5 +5694,5694,Earth,2,Avatar Day,5,Sokka,"[Sokka spins around in shock, spitting out some of the bubbles he swallowed. Very surprised.] Three hundred and seventy years? Wait, [He grabs Oyaji by his collar.] are you sure it was today?","Three hundred and seventy years? Wait, are you sure it was today?",John O'Bryan,Lauren MacMullan,7.5 +5695,5695,Earth,2,Avatar Day,5,Oyaji,"Oh, seeing how it's Kyoshi Day, yes, [He pulls himself free from Sokka's grasp and throws him back a little.] I'm sure.","Oh, seeing how it's Kyoshi Day, yes, I'm sure.",John O'Bryan,Lauren MacMullan,7.5 +5696,5696,Earth,2,Avatar Day,5,Sokka,[Staring at the painting again.] This ceremony didn't take place at sunrise. It took place at sunset. [Addresses Katara.] Look at the shadows.,This ceremony didn't take place at sunrise. It took place at sunset. Look at the shadows.,John O'Bryan,Lauren MacMullan,7.5 +5697,5697,Earth,2,Avatar Day,5,Katara,They point east. So the sun must have been in the west.,They point east. So the sun must have been in the west.,John O'Bryan,Lauren MacMullan,7.5 +5698,5698,Earth,2,Avatar Day,5,Oyaji,So what?,So what?,John O'Bryan,Lauren MacMullan,7.5 +5699,5699,Earth,2,Avatar Day,5,Sokka,"[Shoves Katara out of the way as she yelps.] If Kyoshi was in the ceremony at sunset, she couldn't have been in Chin committing the crime. She has an alibi! [Points his pipe dramatically toward the camera upon making his conclusion.]","If Kyoshi was in the ceremony at sunset, she couldn't have been in Chin committing the crime. She has an alibi!",John O'Bryan,Lauren MacMullan,7.5 +5700,5700,Earth,2,Avatar Day,5,Scene Description,"Katara grabs the pipe out of his hand and slams him hard on the head with it causing him to fall down. +Cut to a far off shot of Chin Village by night. The camera moves in slowly and keeps zooming forward, even when the picture changes to inside the prison. Sokka and Katara confront the mayor with their findings, while Aang listens intently at the bars.",NA,John O'Bryan,Lauren MacMullan,7.5 +5701,5701,Earth,2,Avatar Day,5,Katara,"Honorable Mayor, we've prepared a solid defense for the Avatar. We did an investigation and found some very strong evidence.","Honorable Mayor, we've prepared a solid defense for the Avatar. We did an investigation and found some very strong evidence.",John O'Bryan,Lauren MacMullan,7.5 +5702,5702,Earth,2,Avatar Day,5,Scene Description,"While Katara talks, a broadly smiling Sokka leans in toward Aang and points at himself to emphasize that he was the one that discovered the evidence. Aang flashes his teeth in return.",NA,John O'Bryan,Lauren MacMullan,7.5 +5703,5703,Earth,2,Avatar Day,5,Tong,Evidence? [Dismissive.] Hmph! That's not how our court system works.,Evidence? Hmph! That's not how our court system works.,John O'Bryan,Lauren MacMullan,7.5 +5704,5704,Earth,2,Avatar Day,5,Aang,Then how can I prove my innocence?,Then how can I prove my innocence?,John O'Bryan,Lauren MacMullan,7.5 +5705,5705,Earth,2,Avatar Day,5,Tong,"Simple. I say what happened [He points to himself, before pointing to Aang.], then you say what happened, and then I decide who's right. [Everyone gasps at once, horrified by this news.] That's why we call it justice. Because it's ""just us.""","Simple. I say what happened , then you say what happened, and then I decide who's right. That's why we call it justice. Because it's ""just us.""",John O'Bryan,Lauren MacMullan,7.5 +5706,5706,Earth,2,Avatar Day,5,Scene Description,"The mayor exits the room, laughing maniacally, leaving Sokka, Katara and Aang standing there with their mouths wide open in shock. +Cut to an overview of the amphitheater, the statue of Chin and the temple on the edge of the cliff. Switch to a back shot of the mayor. The camera pans to the left to reveal that every villager has gathered in the amphitheater. Katara and Sokka are seen sitting at the front.",NA,John O'Bryan,Lauren MacMullan,7.5 +5707,5707,Earth,2,Avatar Day,5,Tong,"[Emotionally.] Everyone loved Chin the Great because he was so great. Then the Avatar showed up and killed him, and that's how it happened.","Everyone loved Chin the Great because he was so great. Then the Avatar showed up and killed him, and that's how it happened.",John O'Bryan,Lauren MacMullan,7.5 +5708,5708,Earth,2,Avatar Day,5,Scene Description,He walks away with a giant smile on his face.,NA,John O'Bryan,Lauren MacMullan,7.5 +5709,5709,Earth,2,Avatar Day,5,Guard,"[Very deep, monotone voice.] The accused will now present its argument.",The accused will now present its argument.,John O'Bryan,Lauren MacMullan,7.5 +5710,5710,Earth,2,Avatar Day,5,Sokka,"[Raises his hand before his mouth to say some quiet, encouraging words.] You can do it, Aang. Just remember the evidence.","You can do it, Aang. Just remember the evidence.",John O'Bryan,Lauren MacMullan,7.5 +5711,5711,Earth,2,Avatar Day,5,Aang,"[Still tied up, unsure.] Right ... evidence. [He shifts his eyes to the left while he is trying to remember what to say. Enthusiastically.] Ladies and gentlemen ... I'm about to tell you what really happened. And I will prove it with facts. Fact number one. [Raises his finger to count along but blanks out.] Uhhh ...",Right ... evidence. Ladies and gentlemen ... I'm about to tell you what really happened. And I will prove it with facts. Fact number one. Uhhh ...,John O'Bryan,Lauren MacMullan,7.5 +5712,5712,Earth,2,Avatar Day,5,Sokka,[Whispers.] The footprint!,The footprint!,John O'Bryan,Lauren MacMullan,7.5 +5713,5713,Earth,2,Avatar Day,5,Aang,"Oh, yeah. You see ... I have very large feet. [The camera tilts down to reveal his small feet. The villagers are unimpressed by his argument.] Furthermore ... your temple matches your statue. [The villagers look from one to the other, not knowing where Aang is going with this.] But ... I was in a painting at sunset. [He quickly ends his exposition with a big smile.] So, there you have it, I'm not guilty.","Oh, yeah. You see ... I have very large feet. Furthermore ... your temple matches your statue. But ... I was in a painting at sunset. So, there you have it, I'm not guilty.",John O'Bryan,Lauren MacMullan,7.5 +5714,5714,Earth,2,Avatar Day,5,Scene Description,"The camera switches view from Aang to the unimpressed crowd, to pan further down toward Sokka and Katara, both with big smiles on their faces, but their eyes reveal that they are fake. Sokka gives Aang a ""thumbs up"" gesture. Momo sits on Katara's lap, looking very confused.",NA,John O'Bryan,Lauren MacMullan,7.5 +5715,5715,Earth,2,Avatar Day,5,Sokka,[Mumbles to Katara while they continue to smile.] He's dead.,He's dead.,John O'Bryan,Lauren MacMullan,7.5 +5716,5716,Earth,2,Avatar Day,5,Scene Description,Cut to Zuko's and Iroh's hideout in the forest. Zuko sits next to the campfire as Iroh walks into the cave to inspect a new tea set.,NA,John O'Bryan,Lauren MacMullan,7.5 +5717,5717,Earth,2,Avatar Day,5,Iroh,"Looks like you did some serious shopping. [He picks up a big, gold-colored teapot.] But where did you get the money?",Looks like you did some serious shopping. But where did you get the money?,John O'Bryan,Lauren MacMullan,7.5 +5718,5718,Earth,2,Avatar Day,5,Zuko,[Lazily resting against a tree trunk.] Do you like your new teapot?,Do you like your new teapot?,John O'Bryan,Lauren MacMullan,7.5 +5719,5719,Earth,2,Avatar Day,5,Iroh,"To be honest with you [He puts the pot down.], the best tea tastes delicious whether it comes in a porcelain pot or a tin cup. [Iroh walks over to Zuko and squats down beside him.] I know we've had some difficult times lately. We've had to struggle just to get by. [Places a hand on Zuko's shoulder who closes his eyes as if he was holding something back.] But it's nothing to be ashamed of. There is a simple honor in poverty.","To be honest with you , the best tea tastes delicious whether it comes in a porcelain pot or a tin cup. I know we've had some difficult times lately. We've had to struggle just to get by. But it's nothing to be ashamed of. There is a simple honor in poverty.",John O'Bryan,Lauren MacMullan,7.5 +5720,5720,Earth,2,Avatar Day,5,Zuko,There's no honor for me without the Avatar.,There's no honor for me without the Avatar.,John O'Bryan,Lauren MacMullan,7.5 +5721,5721,Earth,2,Avatar Day,5,Iroh,"Zuko ... [Sighs.] Even if you did capture the Avatar, I'm not so sure it would solve our problems. Not now.","Zuko ... Even if you did capture the Avatar, I'm not so sure it would solve our problems. Not now.",John O'Bryan,Lauren MacMullan,7.5 +5722,5722,Earth,2,Avatar Day,5,Zuko,[Turns away from his uncle.] Then there is no hope at all.,Then there is no hope at all.,John O'Bryan,Lauren MacMullan,7.5 +5723,5723,Earth,2,Avatar Day,5,Scene Description,"Zuko wants to stand up and leave the cave, but Iroh grabs him by the shoulders and sits him down.",NA,John O'Bryan,Lauren MacMullan,7.5 +5724,5724,Earth,2,Avatar Day,5,Iroh,"No, Zuko! You must never give in to despair. Allow yourself to slip down that road and you surrender to your lowest instincts. [Zuko bows his head as he listens to his uncle's wisdom.] In the darkest times, hope is something you give yourself. That is the meaning of inner strength.","No, Zuko! You must never give in to despair. Allow yourself to slip down that road and you surrender to your lowest instincts. In the darkest times, hope is something you give yourself. That is the meaning of inner strength.",John O'Bryan,Lauren MacMullan,7.5 +5725,5725,Earth,2,Avatar Day,5,Scene Description,"Zuko turns to face his uncle, who looks back at him with a sad look upon his face. Abruptly, Zuko pulls free from Iroh's grasp and heads out into the forest. +Switch back to an overview shot of Chin Village.",NA,John O'Bryan,Lauren MacMullan,7.5 +5726,5726,Earth,2,Avatar Day,5,Katara,"Mayor Tong, I'd like for the court to hear one last testimony.","Mayor Tong, I'd like for the court to hear one last testimony.",John O'Bryan,Lauren MacMullan,7.5 +5727,5727,Earth,2,Avatar Day,5,Tong,"I've already told you, it's just me and the accused. You can't call any witnesses!","I've already told you, it's just me and the accused. You can't call any witnesses!",John O'Bryan,Lauren MacMullan,7.5 +5728,5728,Earth,2,Avatar Day,5,Katara,This isn't just any witness. I'm going to call ... [Spreads her arms.] Avatar Kyoshi herself!,This isn't just any witness. I'm going to call ... Avatar Kyoshi herself!,John O'Bryan,Lauren MacMullan,7.5 +5729,5729,Earth,2,Avatar Day,5,Scene Description,"The villagers murmur among themselves while someone exits the temple. The guard escorts Aang in Kyoshi costume, to the front. +Close-up a skeptical looking mayor. As Katara sits back down, Sokka leans toward her, pointing at Aang.",NA,John O'Bryan,Lauren MacMullan,7.5 +5730,5730,Earth,2,Avatar Day,5,Sokka,[Whispering.] What are you doing?,What are you doing?,John O'Bryan,Lauren MacMullan,7.5 +5731,5731,Earth,2,Avatar Day,5,Katara,"[Hopeful.] Well, she is Aang's past life. Maybe wearing her stuff will trigger something.","Well, she is Aang's past life. Maybe wearing her stuff will trigger something.",John O'Bryan,Lauren MacMullan,7.5 +5732,5732,Earth,2,Avatar Day,5,Sokka,[Plays with his magnifying glass.] I do believe in the power of stuff.,I do believe in the power of stuff.,John O'Bryan,Lauren MacMullan,7.5 +5733,5733,Earth,2,Avatar Day,5,Tong,[Angry.] This is a mockery of Chin Law!,This is a mockery of Chin Law!,John O'Bryan,Lauren MacMullan,7.5 +5734,5734,Earth,2,Avatar Day,5,Katara,"[Pleading.] Please! If you could just wait one more second, I'm sure Kyoshi will be here!","Please! If you could just wait one more second, I'm sure Kyoshi will be here!",John O'Bryan,Lauren MacMullan,7.5 +5735,5735,Earth,2,Avatar Day,5,Scene Description,"Switch to Aang who is standing in the middle of the square, hiding his face behind one of Kyoshi's fans. He peeks over the fan.",NA,John O'Bryan,Lauren MacMullan,7.5 +5736,5736,Earth,2,Avatar Day,5,Aang,"[Higher pitch.] Hey, everybody! Avatar Kyoshi here. [Rapidly blinks his eyes.]","Hey, everybody! Avatar Kyoshi here.",John O'Bryan,Lauren MacMullan,7.5 +5737,5737,Earth,2,Avatar Day,5,Tong,"[Walking over to Aang.] This is ridiculous! [Points at Aang while he addresses the audience.] For the murder of Chin the Great, this court finds the Avatar–","This is ridiculous! For the murder of Chin the Great, this court finds the Avatar–",John O'Bryan,Lauren MacMullan,7.5 +5738,5738,Earth,2,Avatar Day,5,Scene Description,"Aang looks down in defeat, but is suddenly engulfed in a tornado of earth. Tong holds on to his hat to prevent it from being blown away. The sky darkens and when the tornado dies down, Aang is gone and the spirit of Kyoshi has taken his place.",NA,John O'Bryan,Lauren MacMullan,7.5 +5739,5739,Earth,2,Avatar Day,5,Kyoshi,"I killed Chin the Conqueror. [A flashback shows how Chin earthbends an earth column beneath one of his subjects as he was offering something to Chin. Voice-over.] A horrible tyrant, Chin was expanding his army to all corners of the continent.","I killed Chin the Conqueror. A horrible tyrant, Chin was expanding his army to all corners of the continent.",John O'Bryan,Lauren MacMullan,7.5 +5740,5740,Earth,2,Avatar Day,5,Scene Description,"A close-up of Chin the Great fades to a shot of a map, where the trail of his campaign can be seen. He had concurred everything save to Ba Sing Se. The scene switches to a large army standing by the shores of the sea, ready to attack when given the order.",NA,John O'Bryan,Lauren MacMullan,7.5 +5741,5741,Earth,2,Avatar Day,5,Kyoshi,"When they came to the neck of the peninsula where we lived, he demanded our immediate surrender. [Kyoshi calmly walks toward him to face his challenge.] I warned him that I would not sit passively while he took our home. But he did not back down.","When they came to the neck of the peninsula where we lived, he demanded our immediate surrender. I warned him that I would not sit passively while he took our home. But he did not back down.",John O'Bryan,Lauren MacMullan,7.5 +5742,5742,Earth,2,Avatar Day,5,Scene Description,"Chin and Kyoshi stand face to face. Kyoshi is around a foot bigger than him. Chin takes a fighting stance, but Kyoshi is unimpressed. She grabs one of her fans and points it at him. A powerful gust of wind washes over the surprised Chin and strips him of all his clothes, except for his underwear.",NA,John O'Bryan,Lauren MacMullan,7.5 +5743,5743,Earth,2,Avatar Day,5,Kyoshi,"On that day, we split from the mainland.","On that day, we split from the mainland.",John O'Bryan,Lauren MacMullan,7.5 +5744,5744,Earth,2,Avatar Day,5,Scene Description,"Close-up of Avatar Kyoshi as her eyes glow for a second, signaling the Avatar State. She jumps up and stretches one of her fans to the left as she lands. A powerful fissure rips through the earth and explodes at the edge of the cliff. She repeats that move to the right now with the same effect. Kyoshi calmly closes her fans and slams them into the ground, causing the whole peninsula to shake. Chin still stands in his earthbending stance. +The camera shoots from inside the ground as it opens up to reveal how Kyoshi made a large crack in the earth. With a series of wide arm movements, she bends the lava up from underneath the landmass to sever it completely. As the wall of lava dies down again, chunks of rock fall to the ground. Kyoshi spins around and creates a powerful gale right beside Chin, blowing part of his army away and making the rest run away in fear. An overview shot shown how lava has seeped into the sea and how the island is being blown away from the mainland. Chin holds on to his hat as he watches the island go. He screams in anger while the rocks under him start to cave. An overview shot reveal how he plummets to his death in the waters below. +The overview shot in the flashback fades for the present day overview shot of that same cliff where now a temple is build.",NA,John O'Bryan,Lauren MacMullan,7.5 +5745,5745,Earth,2,Avatar Day,5,Kyoshi,I created Kyoshi Island so my people could be safe from invaders.,I created Kyoshi Island so my people could be safe from invaders.,John O'Bryan,Lauren MacMullan,7.5 +5746,5746,Earth,2,Avatar Day,5,Scene Description,"She slants her eyes and is engulfed by the sand tornado once more. Tong kneels to the ground and covers his head. While the sandstorm keeps spinning around Kyoshi, the darkness is lifted. Sokka holds Katara protectively in his arms while she clings on to Momo. When the tornado disappears, Aang is standing there once again, swaying from side to side. Katara catches him right before he collapses.",NA,John O'Bryan,Lauren MacMullan,7.5 +5747,5747,Earth,2,Avatar Day,5,Aang,"[Confused.] So, what just happened?","So, what just happened?",John O'Bryan,Lauren MacMullan,7.5 +5748,5748,Earth,2,Avatar Day,5,Katara,[Awkwardly.] Uhhh ... you kind of confessed. Sorry.,Uhhh ... you kind of confessed. Sorry.,John O'Bryan,Lauren MacMullan,7.5 +5749,5749,Earth,2,Avatar Day,5,Tong,[Standing up in the background.] And I find you ... [He brushes himself off and points at Aang.] Guilty! Bring out the Wheel of Punishment!,And I find you ... Guilty! Bring out the Wheel of Punishment!,John O'Bryan,Lauren MacMullan,7.5 +5750,5750,Earth,2,Avatar Day,5,Scene Description,"The villagers break out into cheers as they hear the sentence. Momo looks around, before covering up his eyes with his tail. +Cut to Iroh who is bending over the supplies.",NA,John O'Bryan,Lauren MacMullan,7.5 +5751,5751,Earth,2,Avatar Day,5,Zuko,Uncle ... [Switch to a close-up of Iroh with Zuko on the background.] I thought a lot about what you said.,Uncle ... I thought a lot about what you said.,John O'Bryan,Lauren MacMullan,7.5 +5752,5752,Earth,2,Avatar Day,5,Iroh,"[Iroh's sad expression clears up as he hears Zuko talk.] You did? Good, good.","You did? Good, good.",John O'Bryan,Lauren MacMullan,7.5 +5753,5753,Earth,2,Avatar Day,5,Zuko,It's helped me realize something. We no longer have anything to gain by traveling together. [Iroh's brightened expression quickly disappears again.] I need to find my own way.,It's helped me realize something. We no longer have anything to gain by traveling together. I need to find my own way.,John O'Bryan,Lauren MacMullan,7.5 +5754,5754,Earth,2,Avatar Day,5,Scene Description,Iroh bows his head in sorrow. Zuko looks at his uncle for a moment before grabbing his backpack and walking away. The camera zooms in on Iroh's face.,NA,John O'Bryan,Lauren MacMullan,7.5 +5755,5755,Earth,2,Avatar Day,5,Iroh,[Calling after Zuko.] Wait!,Wait!,John O'Bryan,Lauren MacMullan,7.5 +5756,5756,Earth,2,Avatar Day,5,Scene Description,"Iroh hands Zuko the reins of the ostrich horse. Zuko mounts it, looks at his uncle one last time and heads off, leaving a broken Iroh. +Switch back to a panning down shot of Chin Village where Aang stands before the Wheel of Punishment.",NA,John O'Bryan,Lauren MacMullan,7.5 +5757,5757,Earth,2,Avatar Day,5,Guard,"[Deep, monotonous voice.] The accused will now spin the Wheel of Punishment to determine his sentence.",The accused will now spin the Wheel of Punishment to determine his sentence.,John O'Bryan,Lauren MacMullan,7.5 +5758,5758,Earth,2,Avatar Day,5,Scene Description,Aang turns to looks at Sokka and Katara who are giving him glances of sympathy.,NA,John O'Bryan,Lauren MacMullan,7.5 +5759,5759,Earth,2,Avatar Day,5,Aang,"I said I would face justice, so I will.","I said I would face justice, so I will.",John O'Bryan,Lauren MacMullan,7.5 +5760,5760,Earth,2,Avatar Day,5,Scene Description,He gives a good spin on the wheel. The camera pans down the amphitheater.,NA,John O'Bryan,Lauren MacMullan,7.5 +5761,5761,Earth,2,Avatar Day,5,Villager,"[Hoping.] Come on, torture machine!","Come on, torture machine!",John O'Bryan,Lauren MacMullan,7.5 +5762,5762,Earth,2,Avatar Day,5,Villager #2,Eaten by bears!,Eaten by bears!,John O'Bryan,Lauren MacMullan,7.5 +5763,5763,Earth,2,Avatar Day,5,Villager #3,Razor pit!,Razor pit!,John O'Bryan,Lauren MacMullan,7.5 +5764,5764,Earth,2,Avatar Day,5,Katara,[Begging.] Community service! Please stop on community service!,Community service! Please stop on community service!,John O'Bryan,Lauren MacMullan,7.5 +5765,5765,Earth,2,Avatar Day,5,Scene Description,"Sokka and Katara look very worried as the wheel starts to slow down. It passes by ""strangled by a platypus bear"" and ""eaten by sharks."" Aang anxiously awaits his punishment. The wheel comes to a halt.",NA,John O'Bryan,Lauren MacMullan,7.5 +5766,5766,Earth,2,Avatar Day,5,Guard,"[Monotone.] Looks like it's ""boiled in oil.""","Looks like it's ""boiled in oil.""",John O'Bryan,Lauren MacMullan,7.5 +5767,5767,Earth,2,Avatar Day,5,Scene Description,"The villagers cheer loudly, while Aang looks scared and Katara and Sokka who are just absolutely shocked. +Suddenly a lit bomb bounces into the scene and detonates into the temple. The blast makes the whole amphitheater shake. Sokka and Katara raise their arms to protect their faces from the blast. +Everyone looks up when Mongke starts to talk.",NA,John O'Bryan,Lauren MacMullan,7.5 +5768,5768,Earth,2,Avatar Day,5,Mongke,"We've come to claim this village for the Fire Lord! [Close-up.] Now show me your leader so I may ... [Kahchi swings his Guan Dao back and forth, slicing through the statue of Chin the Great. While it crumbles down, Mongke continues with a grin.] dethrone him!",We've come to claim this village for the Fire Lord! Now show me your leader so I may ... dethrone him!,John O'Bryan,Lauren MacMullan,7.5 +5769,5769,Earth,2,Avatar Day,5,Villager,That's him over there!,That's him over there!,John O'Bryan,Lauren MacMullan,7.5 +5770,5770,Earth,2,Avatar Day,5,Scene Description,A scared villager points immediately toward the mayor. The mayor squeals and hides behind the Wheel of Punishment.,NA,John O'Bryan,Lauren MacMullan,7.5 +5771,5771,Earth,2,Avatar Day,5,Tong,"Ahhh! [Commanding.] You, Avatar, do something!","Ahhh! You, Avatar, do something!",John O'Bryan,Lauren MacMullan,7.5 +5772,5772,Earth,2,Avatar Day,5,Aang,"[Apathetically.] Gee, I'd love to help, but I'm supposed to be boiled in oil.","Gee, I'd love to help, but I'm supposed to be boiled in oil.",John O'Bryan,Lauren MacMullan,7.5 +5773,5773,Earth,2,Avatar Day,5,Scene Description,The mayor tips the wheel one slot further. It now rests on a picture of a sweeping man.,NA,John O'Bryan,Lauren MacMullan,7.5 +5774,5774,Earth,2,Avatar Day,5,Tong,"There, community service! Now serve our community and get rid of those rhinos!","There, community service! Now serve our community and get rid of those rhinos!",John O'Bryan,Lauren MacMullan,7.5 +5775,5775,Earth,2,Avatar Day,5,Scene Description,"Aang smiles as he rushes forward and jumps out of his Kyoshi costume to face Kahchi, who readies his weapon. A he charges Aang, Aang opens his fans. He quickly spins out of the rhino's path and uses his airbending to lift Kahchi out of his saddle and blows him off the cliff with another gust. +Kahchi's rhino still proceeds toward the mayor, who peeping over the wheel and quickly hides behind it as he sees the rhino coming toward him. He squeaks in fear when the rhino's horns embedded themselves into the wheel, missing the mayor's vital part by inches. +Aang turns to face Mongke who does not look pleased with the defeat of Kahchi.",NA,John O'Bryan,Lauren MacMullan,7.5 +5776,5776,Earth,2,Avatar Day,5,Mongke,"[Raising his hand while shouting his command.] Rough Rhinos, to the town!","Rough Rhinos, to the town!",John O'Bryan,Lauren MacMullan,7.5 +5777,5777,Earth,2,Avatar Day,5,Scene Description,"Vachir shoots three burning arrows at the down setting fire to the roof of a nearby building. Mongke uses his firebending to burn down another house. Lit arrows keep raining down on the rooftops. Close-up of Yeh-Lu as he rides by a hay wagon and drops some lit bombs in it. The wagon explodes, destroying the house next to it. Ogodei rides past another house and pulls down its support beams with his chains. +Close-up as he lets out a loud scream and spins his chains above his head. He throws them at Katara who easily deflects them with a water whip. The chains wind themselves around Ogodei. She hits the rhino on the rear with another whip of her water and the animal dashes away with Ogodei on it. +Sokka comes down a stair between two members of the Rough Rhinos. He adjusts his monocle so it would reflect the sunlight right into the eyes of Vachir. The archer turns and blindly shoots a burning arrow at Sokka. The arrow pierces his hat and embeds itself in the saddlebag of Yeh-Lu that is filled with bombs. Sokka smiles and ducks for cover. Yeh-Lu notices what is going on and tosses the saddlebag away, but it is too late. The force of the blast smacks him and his rhino into a nearby wall. As Sokka covers his head to protect himself against the flying debris, Yeh-Lu's helmet rolls by. Another bag lands right beside Sokka, his boomerang is sticking out of it.",NA,John O'Bryan,Lauren MacMullan,7.5 +5778,5778,Earth,2,Avatar Day,5,Sokka,[Raises his arms in the air and exclaims ecstatically.] Boomerang! You do always come back!,Boomerang! You do always come back!,John O'Bryan,Lauren MacMullan,7.5 +5779,5779,Earth,2,Avatar Day,5,Scene Description,"Sokka notices that Vachir is aiming at him. He quickly weighs his options and throws his dragon-shaped pipe at the archer. The pipe slides over the burning arrow and extinguishes the fire. While Vachir looks surprised at his extinguished arrow, Katara sneaks up behind him and cuts his saddle cord with her waterbending. Vachir slides down, but his foot is still stuck in his saddle, so he is dragged away by his rhino when Katara whips it on its rear. +Switch to Aang who is having a standoff with Mongke in an alley. Mongke uses his firebending to increase his speed as he charges Aang. Aang jumps over him and is forced to raise an air shield to protect himself from Mongke's fire blast. He loses his fans and headdress as he slides down. Aang creates an air scooter and they charge each other again. He avoids Mongke's fire blast by quickly riding under the rhino's belly and emerges behind Mongke. He directs a powerful gale at the colonel, but he slides to the side to evade it. They charge at each other a third time, this time with Aang on foot again. When Mongke fires a powerful blast that consumes the whole alley, Aang jumps up and propels himself right through the blast using airbending, feet first. He crashes right into Mongke, sending him flying through a wooden fence. +Cut to a scene of fireworks. Later that night, fireworks go off in the village.",NA,John O'Bryan,Lauren MacMullan,7.5 +5780,5780,Earth,2,Avatar Day,5,Tong,"From now on, we'll celebrate a new Avatar Day in honor of the day Avatar Aang [Camera pans down to show Katara, Aang, and Sokka, each holding a bowl and grinning happily.] saved us from the Rough Rhino Invasion.","From now on, we'll celebrate a new Avatar Day in honor of the day Avatar Aang saved us from the Rough Rhino Invasion.",John O'Bryan,Lauren MacMullan,7.5 +5781,5781,Earth,2,Avatar Day,5,Sokka,[Looks questioningly into his bowl.] What is this?,What is this?,John O'Bryan,Lauren MacMullan,7.5 +5782,5782,Earth,2,Avatar Day,5,Scene Description,A close-up of the bowl reveals several Aang-shaped pieces of dough.,NA,John O'Bryan,Lauren MacMullan,7.5 +5783,5783,Earth,2,Avatar Day,5,Tong,That's our new festival food! Un-fried dough. May we eat it and be reminded of how on this day the Avatar was not boiled in oil.,That's our new festival food! Un-fried dough. May we eat it and be reminded of how on this day the Avatar was not boiled in oil.,John O'Bryan,Lauren MacMullan,7.5 +5784,5784,Earth,2,Avatar Day,5,Scene Description,"The villagers cheer, but the gang gives each other some uncertain looks. They each pick up a dough cookie. Cut to a closer shot of Katara as her cookie droops in her fingers.",NA,John O'Bryan,Lauren MacMullan,7.5 +5785,5785,Earth,2,Avatar Day,5,Katara,"Happy Avatar Day, everyone!","Happy Avatar Day, everyone!",John O'Bryan,Lauren MacMullan,7.5 +5786,5786,Earth,2,Avatar Day,5,Scene Description,"Uncertainly, she chews it down. She looks down at her bowl, confused of what to make of it. The camera pans to the right to show how Aang also sticks a cookie in his mouth, although half of it is still dangling out of his mouth.",NA,John O'Bryan,Lauren MacMullan,7.5 +5787,5787,Earth,2,Avatar Day,5,Sokka,[Stares skeptically at his dough-cookie.] This is by far the worst town we've ever been to.,This is by far the worst town we've ever been to.,John O'Bryan,Lauren MacMullan,7.5 +5788,5788,Earth,2,Avatar Day,5,Scene Description,"While Aang slurps the rest of his cookie inside his mouth, Sokka finally eats his and stares skeptically again at the next cookie.",NA,John O'Bryan,Lauren MacMullan,7.5 +5789,5789,Earth,2,Avatar Day,5,Scene Description,Fades to credits.,NA,John O'Bryan,Lauren MacMullan,7.5 +5790,5790,Earth,2,The Blind Bandit,6,Scene Description,"The camera pans across a wide-view over Gaoling. Town citizens move through the streets. The team stands inside a shop. The camera zooms in on them, gathered around a green bag. Sokka is looking at the bag while pondering. Katara and Momo on her shoulder look at him. Aang sits down, looking the other way and wearing his conical hat.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5791,5791,Earth,2,The Blind Bandit,6,Sokka,[Pensively.] It's pricey ... but I really do like it.,It's pricey ... but I really do like it.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5792,5792,Earth,2,The Blind Bandit,6,Katara,"Then you should get it, you deserve something nice.","Then you should get it, you deserve something nice.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5793,5793,Earth,2,The Blind Bandit,6,Sokka,"I do, don't I? [Katara looks at him with a bored expression.] But no, it's too expensive. I shouldn't.","I do, don't I? But no, it's too expensive. I shouldn't.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5794,5794,Earth,2,The Blind Bandit,6,Scene Description,"In the background, a town citizen tries to talk to a passer-by, showing him a flyer.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5795,5795,Earth,2,The Blind Bandit,6,Katara,"All right, then don't.","All right, then don't.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5796,5796,Earth,2,The Blind Bandit,6,Scene Description,"Katara walks away in boredom. Aang gets up and follows her. Sokka pauses for a moment and goes along, too, his eyes still on the bag as he moves out of view. The town citizen with the flyers walks away into the same direction. Sokka quickly comes back into view.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5797,5797,Earth,2,The Blind Bandit,6,Sokka,[Enthusiastically.] You know what? I'm gonna get it. [Smiles in a pleased way.],You know what? I'm gonna get it.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5798,5798,Earth,2,The Blind Bandit,6,Scene Description,"Aang, Katara, and Momo wait down the street. The town citizen turns toward them, showing them the flyer.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5799,5799,Earth,2,The Blind Bandit,6,Flyer distribution man,"Psst, psst! Hey, you kids love earthbending? You like ... throwing rocks? Then check out Master Yu's Earthbending Academy.","Psst, psst! Hey, you kids love earthbending? You like ... throwing rocks? Then check out Master Yu's Earthbending Academy.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5800,5800,Earth,2,The Blind Bandit,6,Scene Description,"The flyer distribution man hands over a flyer with a broad smile. The shot switches to a close-up of the flyer as Aang, Katara, and Momo look at it. Aang turns it around.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5801,5801,Earth,2,The Blind Bandit,6,Aang,Look! There's a coupon on the back! The first lesson is free.,Look! There's a coupon on the back! The first lesson is free.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5802,5802,Earth,2,The Blind Bandit,6,Scene Description,"The camera zooms out, showing Aang, Katara, and Momo looking at the flyer.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5803,5803,Earth,2,The Blind Bandit,6,Katara,Who knows? This Master Yu could be the earthbending teacher you've been looking for.,Who knows? This Master Yu could be the earthbending teacher you've been looking for.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5804,5804,Earth,2,The Blind Bandit,6,Scene Description,"Sokka joins them, holding the green bag. He looks wondering at the flyer. Scene cuts to Yu's academy. The camera shows a short view of the entrance. Aang looks perplexed, wearing an Earth Kingdom outfit and a green hat. He puts his finger into his ear, wiggles it and sniffs his finger. Turning to his right, he sees that all the younger children with whom he is standing in line with sport a serious expression and he promptly straightens his back. Their teacher, Master Yu, moves toward his two opposing rows of pupils. The row opposite of Aang has rocks placed in front of them.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5805,5805,Earth,2,The Blind Bandit,6,Yu,"Take your stances! [His students take their fighting stances, except for Aang.] Now, strike as if you're punching through your opponent's head!","Take your stances! Now, strike as if you're punching through your opponent's head!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5806,5806,Earth,2,The Blind Bandit,6,Scene Description,Yu demonstrates the movement he means. The pupils lift their rocks. A close-up shows Aang's startled expression. The camera shifts to a close-up of the student that stands across Aang as he fires his rock at him. Aang gets hit by the rock in the gut and smashes into a vase in the shape of a tea pot by the impact of the blow.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5807,5807,Earth,2,The Blind Bandit,6,Yu,"[Approaches Aang.] So, are you ready to commit to more lessons? If you pay for the whole year in advance, I'll bump you up to the next belt!","So, are you ready to commit to more lessons? If you pay for the whole year in advance, I'll bump you up to the next belt!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5808,5808,Earth,2,The Blind Bandit,6,Scene Description,"Aang stares at him, covered in sand and shards. Only his eyes, nose and right hand are visible. The sand shifts and covers his face completely. Moments later, Aang walks out of the academy with the other students and returns to Katara and Sokka.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5809,5809,Earth,2,The Blind Bandit,6,Aang,"Ehhh, he's not the one. [Beats his right ear, causing sand to fall out of his left ear.]","Ehhh, he's not the one.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5810,5810,Earth,2,The Blind Bandit,6,Male student,"[Leaves the Earthbending Academy, accompanied by another student.] I think The Boulder's going to win back the belt at Earth Rumble VI.",I think The Boulder's going to win back the belt at Earth Rumble VI.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5811,5811,Earth,2,The Blind Bandit,6,Male student #2,He's going to have to fight his way through the best earthbenders in the world to get a shot at the champ.,He's going to have to fight his way through the best earthbenders in the world to get a shot at the champ.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5812,5812,Earth,2,The Blind Bandit,6,Scene Description,Aang overhears their conversation and runs after them.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5813,5813,Earth,2,The Blind Bandit,6,Aang,"Excuse me, but where is this earthbending tournament, exactly?","Excuse me, but where is this earthbending tournament, exactly?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5814,5814,Earth,2,The Blind Bandit,6,Male student,"[Sarcastically.] It's on the island of Noneya ... ""Noneya"" business!","It's on the island of Noneya ... ""Noneya"" business!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5815,5815,Earth,2,The Blind Bandit,6,Scene Description,The students laugh and walk away as he looks on disappointed. Sokka walks up to Aang laughing while Katara glares at them while walking up.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5816,5816,Earth,2,The Blind Bandit,6,Sokka,"[Laughs and wipes tears of laughter away.] Oh, I got to remember that one!","Oh, I got to remember that one!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5817,5817,Earth,2,The Blind Bandit,6,Katara,"[Consolingly to Aang.] I'll take care of this. [To the students.] Hey, strong guys! Wait up! [Runs after the students around a corner.]","I'll take care of this. Hey, strong guys! Wait up!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5818,5818,Earth,2,The Blind Bandit,6,Sokka,"[Looking at his bag, holding it out.] What was I thinking? [Angrily to Aang.] I don't need a new bag! Why did you let me buy this?",What was I thinking? I don't need a new bag! Why did you let me buy this?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5819,5819,Earth,2,The Blind Bandit,6,Scene Description,"He puts the bag down and crosses his arms in front of his chest. Momo hops off his shoulder, into the bag. He turns around inside of it and settles down, closing his eyes. Katara comes running back.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5820,5820,Earth,2,The Blind Bandit,6,Katara,You ready to find an earthbending teacher? Because we're going to Earth Rumble VI!,You ready to find an earthbending teacher? Because we're going to Earth Rumble VI!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5821,5821,Earth,2,The Blind Bandit,6,Aang,[Looks surprised.] How'd you get them to tell you?,How'd you get them to tell you?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5822,5822,Earth,2,The Blind Bandit,6,Katara,Oh ... a girl has her ways. [Smiles.],Oh ... a girl has her ways.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5823,5823,Earth,2,The Blind Bandit,6,Scene Description,"A scene shows the two students frozen together at the head, encased in ice in an alley. Nightfall. The camera shows the entrance to location of Earth Rumble VI: a lighted tunnel in a rock face. People enter the tunnel. The camera shows the hall where the competition will be held. A large rectangular arena is located in the middle. The arena has stairs running down to a lower, oval shaped area. Seats for the spectators start at the same level as the arena. Team Avatar walks into an empty row of seats.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5824,5824,Earth,2,The Blind Bandit,6,Aang,"Hey, front row seats! I wonder why no one else is sitting here.","Hey, front row seats! I wonder why no one else is sitting here.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5825,5825,Earth,2,The Blind Bandit,6,Scene Description,They sit down but quickly jump back up as a huge rock smashes into the seats next to them.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5826,5826,Earth,2,The Blind Bandit,6,Sokka,I guess that's why.,I guess that's why.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5827,5827,Earth,2,The Blind Bandit,6,Scene Description,"In the center of the ring, the event's host raises an earthen platform. He brings it back to the level of the rest of the arena.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5828,5828,Earth,2,The Blind Bandit,6,Xin Fu,"[Raises his left arm.] Welcome to Earth Rumble VI! I am your host, Xin Fu!","Welcome to Earth Rumble VI! I am your host, Xin Fu!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5829,5829,Earth,2,The Blind Bandit,6,Katara,"[Sighs and looks the other way.] This is just going to be a bunch of guys chucking rocks at each other, isn't it?","This is just going to be a bunch of guys chucking rocks at each other, isn't it?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5830,5830,Earth,2,The Blind Bandit,6,Sokka,[Happily.] That's what I paid for.,That's what I paid for.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5831,5831,Earth,2,The Blind Bandit,6,Xin Fu,"The rules are simple. Just knock the other guy out of the ring, and you win! [Leaps up to a podium above the ring. A bell rings.] Round one: The Boulder vs. The Big Bad Hippo! [While Xin Fu speaks, The Boulder raises his arms and turns around to the cheering of the audience. The Hippo roars.]","The rules are simple. Just knock the other guy out of the ring, and you win! Round one: The Boulder vs. The Big Bad Hippo!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5832,5832,Earth,2,The Blind Bandit,6,The Boulder,"[Pointing at The Hippo.] Listen up, Hippo. You may be big, but you ain't bad! [Grinning insanely.] The Boulder's gonna win this in a landslide!","Listen up, Hippo. You may be big, but you ain't bad! The Boulder's gonna win this in a landslide!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5833,5833,Earth,2,The Blind Bandit,6,The Hippo,Hippo ... mad!,Hippo ... mad!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5834,5834,Earth,2,The Blind Bandit,6,Scene Description,"The Hippo raises his arms in anger and stomps one foot. Momo lowers himself more inside Sokka's bag out of fear. The Boulder fires three rocks. They crash into The Hippo, but he does not move. He catches one piece of rock with his mouth, chews on it and spits it out. The Hippo jumps up and down, causing the surface of the arena to tilt. The Boulder hereby loses his balance.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5835,5835,Earth,2,The Blind Bandit,6,Xin Fu,"Unbelievable, ladies and gentlemen! The Hippo is rocking the boat!","Unbelievable, ladies and gentlemen! The Hippo is rocking the boat!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5836,5836,Earth,2,The Blind Bandit,6,Scene Description,"The Boulder reaches the edge, but saves himself by bending out part of the ring into a small platform. He grabs it and throws it at his opponent, hitting him on the back. As The Hippo turns around to look at him, The Boulder bends up The Hippo's part of the ring, and throws him out on it. The Hippo crashes in the lower area of around the arena. The fight ends thus in his favor.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5837,5837,Earth,2,The Blind Bandit,6,Xin Fu,The Boulder wins!,The Boulder wins!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5838,5838,Earth,2,The Blind Bandit,6,Katara,[Looking at The Boulder.] How about The Boulder? He's got some good moves.,How about The Boulder? He's got some good moves.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5839,5839,Earth,2,The Blind Bandit,6,Aang,"[Shrugs.] I don't know. Bumi said I need a teacher who listens to the earth. He's just listening to his big muscles. What do you think, Sokka?","I don't know. Bumi said I need a teacher who listens to the earth. He's just listening to his big muscles. What do you think, Sokka?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5840,5840,Earth,2,The Blind Bandit,6,Scene Description,Sokka cheers loudly.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5841,5841,Earth,2,The Blind Bandit,6,Xin Fu,Next match ... The Boulder versus [Cut to to a close-up of Fire Nation Man happily waving a Fire Nation flag; voice-over.] Fire Nation Man!,Next match ... The Boulder versus Fire Nation Man!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5842,5842,Earth,2,The Blind Bandit,6,Scene Description,"Far off side-shot as the crowd boos at the Fire Nation Man who is makes his way over to the arena, still waving his flag, on a makeshift earthen bridge, which crumbles away behind him. Cut to a close-up of Sokka, who loudly boos the fighter as well, while giving him a thumbs down.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5843,5843,Earth,2,The Blind Bandit,6,Fire Nation Man,"[With a pseudo-Russian accent.] Please, to rise for Fire Nation national anthem! [Put his left hand over his heart; begins to sing.] Fire Lord, my flame burns [Drops to his right knee and stretches out his left arm.] for thee!","Please, to rise for Fire Nation national anthem! Fire Lord, my flame burns for thee!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5844,5844,Earth,2,The Blind Bandit,6,Scene Description,"The crowd boos at him again while bombarding him with pieces of rock, much to his surprise. Cut to Sokka with a stone cocked back in his hand, ready to throw.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5845,5845,Earth,2,The Blind Bandit,6,Sokka,[Yelling.] Go back to the Fire Nation!,Go back to the Fire Nation!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5846,5846,Earth,2,The Blind Bandit,6,Scene Description,"Sokka throws his rock. Cut to a close-up of the Fire Nation Man, who is hit against the head by a rock. He starts to become angry, though the emotion quickly changes to wonder and he is sunk chest-deep into the ground; he drops his flag in the process. Cut to a shot from over his shoulder to reveal The Boulder as the culprit, who subsequently raises himself high into the air on an earth pillar. Cut to a close-up of the Fire Nation Man, who looks petrified.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5847,5847,Earth,2,The Blind Bandit,6,Fire Nation Man,"No, no, please!","No, no, please!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5848,5848,Earth,2,The Blind Bandit,6,Scene Description,"Cut to a close-up of The Boulder grinning broadly. He leaps in the air, his face serious. Cut to a side-shot; The Boulder is plummeting straight down, his feet held back behind his back as to direct his knees to the ground. Switch to a further off shot as he slams the surface of the ring, by which he creates a pillar under Fire Nation Man that catapults him out of the ground. Frog-view shot of the Fire Nation Man as he sails screaming through the air. Cut to a frontal shot of the place where Team Avatar is sitting. The Fire Nation Man smacks upside down and face first against the large boulder that was embedded into the stand next to team Avatar. Sokka gets up and waves both hands in the air in celebration of the Fire Nation Man's defeat, while shouting in the fighter's direction.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5849,5849,Earth,2,The Blind Bandit,6,Sokka,Yeah! Wooo! [Points at Fire Nation Man.] The Boulder knows how to put the hurt in the dirt! [Close-up of Sokka as he continues to cheer and make taunting faces.] Yeah! Woohoo!,Yeah! Wooo! The Boulder knows how to put the hurt in the dirt! Yeah! Woohoo!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5850,5850,Earth,2,The Blind Bandit,6,Scene Description,"Cut to the arena where a man riding a badgermole is going over the surface to make it smooth again, letting the animal bend all the rubble away. A turning, frog-view shot reveals the ceiling and a female assistant holding up a sign to announce the next round as a bell is struck. A montage shows The Boulder defeating several more fighters: The Gopher gets slammed between two rocks, The Gecko jumps up, but gets hit in the stomach by a broad earthen pillar, Headhunter gets hit with an earthen coin. Between his victories, The Boulder entertains the cheering crowd by wobbling his chest. As The Boulder relishes from his fans' praise, there is a faded scene with the crowd cheering with Sokka soon appearing in front. Far off shot of Xin Fu standing on his platform.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5851,5851,Earth,2,The Blind Bandit,6,Xin Fu,"Now, the moment [The light slowly dims to put him in the spotlight.] you've all been waiting for. The Boulder versus [Cut to a shot of a person with black hair mostly obscured by a green prize belt; voice-over.] your champion ... the Blind Bandit!","Now, the moment you've all been waiting for. The Boulder versus your champion ... the Blind Bandit!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5852,5852,Earth,2,The Blind Bandit,6,Scene Description,"As Xin Fu was speaking, the girl raises her championship belt above her head, under loud cheering of the crowd. Cut to a further off frontal shot, showing the girl to actually be a short child, barely reaching to the waists of the female assistants standing next to her. As the spotlight dies down, the girl offers her championship belt to the assistant on her right, while the other one removes her cape, and they both walk off. The camera shifts to Aang and Katara.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5853,5853,Earth,2,The Blind Bandit,6,Katara,"She can't really be blind. [Turn her head and squints her eyes skeptically.] It's just part of her [Cut to a close-up of the Bandit's milky-green eyes; pans right.] character, right?","She can't really be blind. It's just part of her character, right?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5854,5854,Earth,2,The Blind Bandit,6,Aang,[Frontal shot.] I think she is.,I think she is.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5855,5855,Earth,2,The Blind Bandit,6,Sokka,"[Camera moves back to include Sokka in the shot; deadpanned.] I think she is ... [Shouting, gesturing downward with both hands.] going down!",I think she is ... going down!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5856,5856,Earth,2,The Blind Bandit,6,Scene Description,"Sokka's movement causing Aang to flinch back and Momo to coo and hide in the bag Sokka bought earlier on the market. Cut to a shot of the Blind Bandit that nearly instantly moves back to a view from on the arena's floor level. The Boulder confidently puts his foot in the middle of the screen, cracking the floor in the process and throwing up some dust. Cut to a frog-point frontal view of the fighter.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5857,5857,Earth,2,The Blind Bandit,6,The Boulder,The Boulder feels conflicted about fighting a young blind girl.,The Boulder feels conflicted about fighting a young blind girl.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5858,5858,Earth,2,The Blind Bandit,6,Toph,"[Points at The Boulder. Mockingly.] Sounds to me like you're [Goes into a mockingly scared position.] scared, Boulder!","Sounds to me like you're scared, Boulder!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5859,5859,Earth,2,The Blind Bandit,6,The Boulder,"[After a pause where he looks stunned.] The Boulder's over his conflicted feelings, [Narrows his eyes.] and now he's ready to bury you screen [Expands instantly and the Boulder makes a dramatic, crushing gesture.] in a rock-alanche!","The Boulder's over his conflicted feelings, and now he's ready to bury you screen in a rock-alanche!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5860,5860,Earth,2,The Blind Bandit,6,Toph,"Whenever you're ready, The Pebble! [Throws her head back and laughs.]","Whenever you're ready, The Pebble!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5861,5861,Earth,2,The Blind Bandit,6,Scene Description,"Cut back to a close-up of Aang, before switching to a flashback from ""The Swamp"" where he saw the girl in white and the flying boar. He remembers her laugh, which is the same as that of the Bandit. The flashback shows a closer shot of the girl in the fancy dress. The camera closes in and turns around the girl to reveal her face as the Bandit's. The flashback ends in a flash of white to reveal Aang's stunned face.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5862,5862,Earth,2,The Blind Bandit,6,The Boulder,It's on!,It's on!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5863,5863,Earth,2,The Blind Bandit,6,Scene Description,"Cut back to a shot from behind The Boulder who faces the Bandit, before shifting to a tilting down shot of The Boulder's head. Despite his bravado, he is sweating profusely. Switch to a frontal shot of the Bandit. The camera whirls around her head and ends with a close up shot of her ear. Cut to The Boulder, who yells and takes a step forward. As his heel hits the ground, the frame freezes and goes to black and white. Shock waves in white move out from his heel where it has struck the floor of the arena. Cut to an overhead shot of The Boulder showing the shock wave emanating away from his heel in concentric circles. Cut again to the Bandit standing perfectly still. The shock waves reach her and travel up her body. +Return to a frontal shot of the Bandit in full color. She moves forward, opening her arms as soon as she registers the shock wave indicating the movement of her opponent. Cut to a shot of her feet as she moves forward to finish the set up for her attack. The Boulder moves forward at a slow frame rate. He is bellowing a slurred battle cry. Cut to a wider shot of The Boulder as his foot strikes the ground again, the screen flashes black and white again as another shock wave is shown moving out from him. Cut back to a frontal shot of the Bandit who has begun to swing her right foot in an arc toward the ground in font of her. As she strikes the ground, the view cuts to a wide shot from behind and above on her right. The frame rate speeds up to normal. Her strike creates a shock wave in the arena floor that churns up the ground in the direction of the Boulder in a straight line. +A quick shot of Aang staring incredulously at the camera, his face turning to follow the Bandit's shock wave. Cut back to a frontal shot of The Boulder whose foot meets the shock wave just as he puts it back on the ground. The shock wave makes him drop down onto the ground in a perfect split. Cut briefly to Momo and Sokka. Momo squeaks and Sokka's look of adulation and excitement turns to a look of pain. Cut to a close shot from above The Boulder. He looks up into the camera with a look of excruciating pain on his face.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5864,5864,Earth,2,The Blind Bandit,6,The Boulder,[Painfully.] Ooooooh!,Ooooooh!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5865,5865,Earth,2,The Blind Bandit,6,Scene Description,"Cut back to the Bandit who makes a chopping motion with her right hand. Three stalagmites erupt from the ground near The Boulder and eject him from the ring. He slams into the wall beneath the stands and slides down into the crevice between the arena and the stands. +Shift to a close-up of the Bandit's face, which softens into a crafty and satisfied smile as Xin Fu speaks.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5866,5866,Earth,2,The Blind Bandit,6,Xin Fu,"Your winner, and still the champion, [Cut to a wider shot of the Bandit, who raises her right fist in victory.] the Blind Bandit!","Your winner, and still the champion, the Blind Bandit!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5867,5867,Earth,2,The Blind Bandit,6,Katara,How did she do that?,How did she do that?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5868,5868,Earth,2,The Blind Bandit,6,Aang,She waited ... and listened.,She waited ... and listened.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5869,5869,Earth,2,The Blind Bandit,6,Scene Description,Cut to a wide shot of the announcer's tower as Xin Fu jumps down and lands next to Toph on the arena floor. He holds a green bag in his left hand.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5870,5870,Earth,2,The Blind Bandit,6,Xin Fu,"To make things a little more interesting, I'm offering up this sack of gold pieces to anyone who can defeat [He motions toward the champion.] the Blind Bandit! [He motions toward Toph once again. Silence.] What? No one dares to face her?","To make things a little more interesting, I'm offering up this sack of gold pieces to anyone who can defeat the Blind Bandit! What? No one dares to face her?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5871,5871,Earth,2,The Blind Bandit,6,Aang,I will!,I will!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5872,5872,Earth,2,The Blind Bandit,6,Scene Description,"Xin Fu looks disappointed for a moment before the camera cuts to Aang entering the ring. The crowd murmurs its approval. Shift to a long, wide shot of Aang as he closes the distance between himself and the Bandit. Xin Fu jumps out of the screen. Cut to Sokka and Katara.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5873,5873,Earth,2,The Blind Bandit,6,Sokka,Go Aang! Avenge The Boulder!,Go Aang! Avenge The Boulder!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5874,5874,Earth,2,The Blind Bandit,6,Toph,Do people really want to see two little girls fighting out here?,Do people really want to see two little girls fighting out here?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5875,5875,Earth,2,The Blind Bandit,6,Audience,Oooh.,Oooh.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5876,5876,Earth,2,The Blind Bandit,6,Aang,[Aang puts his hands up in a conciliatory gesture.] I don't really want to fight you. I want to talk to you.,I don't really want to fight you. I want to talk to you.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5877,5877,Earth,2,The Blind Bandit,6,Scene Description,Cut to Sokka and Katara.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5878,5878,Earth,2,The Blind Bandit,6,Sokka,Boo! No [Katara turns to her brother with a look of disapproval.] talking!,Boo! No talking!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5879,5879,Earth,2,The Blind Bandit,6,Katara,[Slaps Sokka.] Don't boo at him!,Don't boo at him!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5880,5880,Earth,2,The Blind Bandit,6,Scene Description,"Cut to Aang's feet; he takes a step. Cut back to the Bandit, who smiles as soon as his foot hits the ground. She stomps the ground with the side of her left foot. A shock wave travels across the ground and causes a large rock to grow out of the ground underneath Aang, who is launched into the air. He lands softly on the ground behind her. She turns around with an upset expression on her face.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5881,5881,Earth,2,The Blind Bandit,6,Toph,"Somebody's a little light on his feet! What's your fighting name: [Cut to Aang.] the Fancy Dancer? [Aang grins sheepishly before Toph launches another pillar, which lifts him up.] Where'd you go?",Somebody's a little light on his feet! What's your fighting name: the Fancy Dancer? Where'd you go?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5882,5882,Earth,2,The Blind Bandit,6,Aang,"Please, wait!","Please, wait!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5883,5883,Earth,2,The Blind Bandit,6,Toph,There you are!,There you are!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5884,5884,Earth,2,The Blind Bandit,6,Scene Description,"She launches a rock at him. He stops it with airbending and the blast knocks Toph out of the ring. Quick shots of Xin Fu, The Boulder who is recovering from his match with the Blind Bandit, and the Water Tribe siblings as they confirm their collective shock. Cut back to Aang, who looks around in surprise as the crowd cheers. Cut to a shot of the Bandit walking away from the base of the arena. In the background is a set of stairs. Aang is at the top of the stairs and he calls after the former champion.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5885,5885,Earth,2,The Blind Bandit,6,Aang,"[Going after her.] Please, listen! I need an earthbending teacher, and I think it's supposed to be you!","Please, listen! I need an earthbending teacher, and I think it's supposed to be you!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5886,5886,Earth,2,The Blind Bandit,6,Toph,"[Angrily.] Whoever you are, just leave me alone.","Whoever you are, just leave me alone.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5887,5887,Earth,2,The Blind Bandit,6,Scene Description,Toph earthbends a doorway and exits through it. She turns and closes the door with a motion of her hands.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5888,5888,Earth,2,The Blind Bandit,6,Aang,Wait!,Wait!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5889,5889,Earth,2,The Blind Bandit,6,Scene Description,"Aang reaches the wall too late. He turns and looks sad. Cut to Xin Fu holding the belt and the bag of gold, the crowd cheering behind them. Katara and Sokka enter the frame from the right. Sokka hugs Xin Fu and takes the money and the belt. He puts his arm around Aang's shoulder, but the Avatar is still morose.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5890,5890,Earth,2,The Blind Bandit,6,Sokka,"[Gets the belt and gold.] Way to go, champ!","Way to go, champ!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5891,5891,Earth,2,The Blind Bandit,6,Scene Description,"Aang looks down sorrowfully. Cut to the next morning, featuring a wide shot of Gaoling before zooming in on Team Avatar walking within the town.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5892,5892,Earth,2,The Blind Bandit,6,Sokka,"I've got to admit, now I'm really glad I bought this bag. It matches the belt, perfectly.","I've got to admit, now I'm really glad I bought this bag. It matches the belt, perfectly.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5893,5893,Earth,2,The Blind Bandit,6,Katara,[Sarcastically.] That is a big relief.,That is a big relief.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5894,5894,Earth,2,The Blind Bandit,6,Aang,"If we want to find the Blind Bandit, the Earthbending Academy is a great place to start.","If we want to find the Blind Bandit, the Earthbending Academy is a great place to start.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5895,5895,Earth,2,The Blind Bandit,6,Scene Description,The same two male students from yesterday are seen practicing.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5896,5896,Earth,2,The Blind Bandit,6,Male student,"Oh great, you again.","Oh great, you again.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5897,5897,Earth,2,The Blind Bandit,6,Katara,"[Glares at them, causing them to back off.] Yeah, I didn't think so.","Yeah, I didn't think so.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5898,5898,Earth,2,The Blind Bandit,6,Sokka,[Smugly.] Nicely done.,Nicely done.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5899,5899,Earth,2,The Blind Bandit,6,Male student,Hey! You're that kid who beat the Blind Bandit!,Hey! You're that kid who beat the Blind Bandit!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5900,5900,Earth,2,The Blind Bandit,6,Aang,We need to talk to her. Do you guys know where she lives?,We need to talk to her. Do you guys know where she lives?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5901,5901,Earth,2,The Blind Bandit,6,Male student,"The Blind Bandit's a mystery. [Raises fist dramatically.] She shows up to fight, then disappears.","The Blind Bandit's a mystery. She shows up to fight, then disappears.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5902,5902,Earth,2,The Blind Bandit,6,Katara,[Lays hands on Aang's shoulder.] Let me handle this. [Approaches the second student with a stern look; says accusingly.] You're not telling us everything!,Let me handle this. You're not telling us everything!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5903,5903,Earth,2,The Blind Bandit,6,Male student #2,"[Holds hand up defensively.] No, no, I-I swear it's true. No one knows where she goes, or who she really is.","No, no, I-I swear it's true. No one knows where she goes, or who she really is.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5904,5904,Earth,2,The Blind Bandit,6,Aang,"That's because we're asking about the wrong person. In my vision, I saw a girl, in a white dress, with a pet flying boar. Know anybody like that?","That's because we're asking about the wrong person. In my vision, I saw a girl, in a white dress, with a pet flying boar. Know anybody like that?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5905,5905,Earth,2,The Blind Bandit,6,Male student,"Well, a flying boar is the symbol of the Beifong family. They're the richest people in town. Probably the whole world.","Well, a flying boar is the symbol of the Beifong family. They're the richest people in town. Probably the whole world.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5906,5906,Earth,2,The Blind Bandit,6,Male student #2,"Yeah, but they don't have a daughter.","Yeah, but they don't have a daughter.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5907,5907,Earth,2,The Blind Bandit,6,Aang,A flying boar is good enough for me. Let's check it out.,A flying boar is good enough for me. Let's check it out.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5908,5908,Earth,2,The Blind Bandit,6,Male student,"[Quietly.] Yeah, you better leave.","Yeah, you better leave.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5909,5909,Earth,2,The Blind Bandit,6,Katara,"Hey, I got my eye on you.","Hey, I got my eye on you.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5910,5910,Earth,2,The Blind Bandit,6,Sokka,[States coolly.] Water Tribe.,Water Tribe.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5911,5911,Earth,2,The Blind Bandit,6,Scene Description,Back at the Earth Rumble VI venue.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5912,5912,Earth,2,The Blind Bandit,6,The Boulder,"I'm telling you, The Boulder was standing right there. I saw the kid strike, but there was no earthbending. Nothing made contact. The Blind Bandit just fell out of the ring. She must've took a dive and split the money with the kid.","I'm telling you, The Boulder was standing right there. I saw the kid strike, but there was no earthbending. Nothing made contact. The Blind Bandit just fell out of the ring. She must've took a dive and split the money with the kid.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5913,5913,Earth,2,The Blind Bandit,6,Xin Fu,"[Slams the wall, causing rocks to land on his feet; cries out in anger and pain.] Nobody cheats Xin Fu.",Nobody cheats Xin Fu.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5914,5914,Earth,2,The Blind Bandit,6,Scene Description,"Shift to a wide, overhead shot of a walled country estate with a lovely garden and many ponds. It is daylight. A shot of the gate tilts up to reveal a crest with a flying boar emblazoned upon it. Cut to the three kids spying on the gate.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5915,5915,Earth,2,The Blind Bandit,6,Aang,That's the flying boar from my vision. Come on!,That's the flying boar from my vision. Come on!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5916,5916,Earth,2,The Blind Bandit,6,Scene Description,"They enter the courtyard. Suddenly, part of the ground lifts up, launching them into the air. They yell as they fall and land unceremoniously; Aang and Katara land in some rose bushes, but Sokka slams painfully onto the solid ground. Aang looks up; cut to an upside down shot of the Bandit, now in her fancy gown.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5917,5917,Earth,2,The Blind Bandit,6,Toph,"What are you doing here, Twinkle Toes?!","What are you doing here, Twinkle Toes?!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5918,5918,Earth,2,The Blind Bandit,6,Aang,How did you know it was me?,How did you know it was me?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5919,5919,Earth,2,The Blind Bandit,6,Sokka,"Don't answer to Twinkle Toes, it's not manly!","Don't answer to Twinkle Toes, it's not manly!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5920,5920,Earth,2,The Blind Bandit,6,Katara,You're the one whose bag matches his belt.,You're the one whose bag matches his belt.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5921,5921,Earth,2,The Blind Bandit,6,Toph,How did you find me?,How did you find me?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5922,5922,Earth,2,The Blind Bandit,6,Aang,"Well, a crazy king told me I had to find an earthbender who listens to the earth. And then I had a vision in a magic swamp, [Toph raises her eye in disbelief.] and -","Well, a crazy king told me I had to find an earthbender who listens to the earth. And then I had a vision in a magic swamp, and -",Michael Dante DiMartino,Ethan Spaulding,9.2 +5923,5923,Earth,2,The Blind Bandit,6,Katara,"[Cutting off Aang.] What Aang is trying to say is, he's the Avatar. And if he doesn't master earthbending soon, he won't be able to defeat the Fire Lord.","What Aang is trying to say is, he's the Avatar. And if he doesn't master earthbending soon, he won't be able to defeat the Fire Lord.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5924,5924,Earth,2,The Blind Bandit,6,Toph,"Not my problem. Now, [Begins walking away.] get out of here, or I'll call the guards.","Not my problem. Now, get out of here, or I'll call the guards.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5925,5925,Earth,2,The Blind Bandit,6,Sokka,"Look, we all have to do our part to win this war, and yours is to teach Aang earthbending.","Look, we all have to do our part to win this war, and yours is to teach Aang earthbending.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5926,5926,Earth,2,The Blind Bandit,6,Toph,"Guards! Guards, help!","Guards! Guards, help!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5927,5927,Earth,2,The Blind Bandit,6,Scene Description,The gang scatters as two guards arrive.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5928,5928,Earth,2,The Blind Bandit,6,Guard,"Toph, what happened?","Toph, what happened?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5929,5929,Earth,2,The Blind Bandit,6,Toph,I ... thought I heard someone. I got scared.,I ... thought I heard someone. I got scared.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5930,5930,Earth,2,The Blind Bandit,6,Guard,"You know your father doesn't want you wandering the grounds without supervision, Toph.","You know your father doesn't want you wandering the grounds without supervision, Toph.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5931,5931,Earth,2,The Blind Bandit,6,Scene Description,They escort her and Aang peers at them from over a rooftop. He smiles and climbs down. Fade quickly to a shot of a teapot being picked up by a pair of arms that belong to someone in a brown or gold robe. The fingers have two gold rings on them. The camera follows the teapot as it is lifted up and opened. Lao and Poppy sit on a sofa drinking tea.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5932,5932,Earth,2,The Blind Bandit,6,Lao,[Takes a sip of tea.] I'm pleased to hear that Toph's private lessons are going well. But I want to be sure she's not trying anything too dangerous.,I'm pleased to hear that Toph's private lessons are going well. But I want to be sure she's not trying anything too dangerous.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5933,5933,Earth,2,The Blind Bandit,6,Yu,Absolutely not. I am keeping her at a beginner's level. Basic forms and breathing exercises only.,Absolutely not. I am keeping her at a beginner's level. Basic forms and breathing exercises only.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5934,5934,Earth,2,The Blind Bandit,6,Lao,Very good. [A servant comes in.],Very good.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5935,5935,Earth,2,The Blind Bandit,6,Servant,"Excuse me, sir, but you have a visitor.","Excuse me, sir, but you have a visitor.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5936,5936,Earth,2,The Blind Bandit,6,Lao,Who thinks they are so important they can just come to my home unannounced?,Who thinks they are so important they can just come to my home unannounced?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5937,5937,Earth,2,The Blind Bandit,6,Servant,"Uh ... the Avatar, sir. [Toph's eyes widen in shock and surprise.]","Uh ... the Avatar, sir.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5938,5938,Earth,2,The Blind Bandit,6,Scene Description,"Lao and Poppy look at each other. The servant goes away. Toph blows her hair in annoyance. The scene fades to inside the dining room, where the Beifongs, Yu, and Team Avatar gather for a dinner of soup, tea, roast duck, and tea. Aang sits across from Toph. Sokka devours his food. Servant brings a cup of soup to Toph. Lao notices.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5939,5939,Earth,2,The Blind Bandit,6,Lao,Blow on it. It's too hot for her.,Blow on it. It's too hot for her.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5940,5940,Earth,2,The Blind Bandit,6,Aang,Allow me. [Sends a small tornado at the cup. Everyone claps.],Allow me.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5941,5941,Earth,2,The Blind Bandit,6,Poppy,"Avatar Aang, it's an honor to have you visit us.","Avatar Aang, it's an honor to have you visit us.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5942,5942,Earth,2,The Blind Bandit,6,Lao,"In your opinion, how much longer do think the war will last?","In your opinion, how much longer do think the war will last?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5943,5943,Earth,2,The Blind Bandit,6,Aang,"I'd like to defeat the Fire Lord by the end of summer, but I can't do that without finding an earthbending teacher first. [Close-up of Toph with a annoyed look.]","I'd like to defeat the Fire Lord by the end of summer, but I can't do that without finding an earthbending teacher first.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5944,5944,Earth,2,The Blind Bandit,6,Lao,"[Chuckles.] Well, Master Yu is the finest teacher in the land. [The camera pans to Yu.] He's been teaching Toph since she was little.","Well, Master Yu is the finest teacher in the land. He's been teaching Toph since she was little.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5945,5945,Earth,2,The Blind Bandit,6,Aang,Then she must be a great earthbender! Probably good enough to teach someone else! [Toph sends a fissure under the table at him.] Ow!,Then she must be a great earthbender! Probably good enough to teach someone else! Ow!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5946,5946,Earth,2,The Blind Bandit,6,Scene Description,Aang sits up a little. Lao casts an odd glance at his daughter who merely eats her soup.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5947,5947,Earth,2,The Blind Bandit,6,Yu,Toph is still learning the basics.,Toph is still learning the basics.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5948,5948,Earth,2,The Blind Bandit,6,Lao,"Yes, and sadly, because of her blindness, I don't think she will ever become a true master.","Yes, and sadly, because of her blindness, I don't think she will ever become a true master.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5949,5949,Earth,2,The Blind Bandit,6,Aang,"Oh, I'm sure she's better than you think she is.","Oh, I'm sure she's better than you think she is.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5950,5950,Earth,2,The Blind Bandit,6,Scene Description,"Toph sends another fissure at him, causing his face to fall into the soup. Everybody stops eating. Aang rubs some soup out of his eyes and sneezes on purpose, sending the food flying at the Beifong family.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5951,5951,Earth,2,The Blind Bandit,6,Toph,[Angrily.] What's your problem?!,What's your problem?!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5952,5952,Earth,2,The Blind Bandit,6,Aang,[Just as angrily.] What's your problem?,What's your problem?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5953,5953,Earth,2,The Blind Bandit,6,Scene Description,Lao and Poppy wipe their faces with napkins.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5954,5954,Earth,2,The Blind Bandit,6,Poppy,"Well, shall we move to the living room for desert, then?","Well, shall we move to the living room for desert, then?",Michael Dante DiMartino,Ethan Spaulding,9.2 +5955,5955,Earth,2,The Blind Bandit,6,Scene Description,"Later that night, the three are in a guest room. Appa is outside the window and Aang is patting Appa.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5956,5956,Earth,2,The Blind Bandit,6,Aang,"Good night, buddy.","Good night, buddy.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5957,5957,Earth,2,The Blind Bandit,6,Scene Description,"Toph enters, causing Aang to move into a defensive position.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5958,5958,Earth,2,The Blind Bandit,6,Toph,"Relax. Look, I'm sorry about dinner. Let's call a truce, okay? [Aang lets down his defensive position and the two head out to the yard. Toph walks along the side of a bridge.] Even though I was born blind, I've never had a problem seeing. [Jumps down.] I see with earthbending. It's kind of like seeing with my feet. I feel the vibrations in the Earth, and I can see where everything is. [The camera shows an aerial view.] You, that tree ... [Cut back to the ground.] even those ants.","Relax. Look, I'm sorry about dinner. Let's call a truce, okay? Even though I was born blind, I've never had a problem seeing. I see with earthbending. It's kind of like seeing with my feet. I feel the vibrations in the Earth, and I can see where everything is. You, that tree ... even those ants.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5959,5959,Earth,2,The Blind Bandit,6,Aang,[Looks around.] That's amazing.,That's amazing.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5960,5960,Earth,2,The Blind Bandit,6,Toph,My parents don't understand. They've always treated me like I was helpless.,My parents don't understand. They've always treated me like I was helpless.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5961,5961,Earth,2,The Blind Bandit,6,Aang,Is that why you became the Blind Bandit?,Is that why you became the Blind Bandit?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5962,5962,Earth,2,The Blind Bandit,6,Toph,Yeah.,Yeah.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5963,5963,Earth,2,The Blind Bandit,6,Aang,Then why stay here where you're not happy?,Then why stay here where you're not happy?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5964,5964,Earth,2,The Blind Bandit,6,Toph,They're my parents. Where else am I supposed to go?,They're my parents. Where else am I supposed to go?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5965,5965,Earth,2,The Blind Bandit,6,Aang,You could come with us.,You could come with us.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5966,5966,Earth,2,The Blind Bandit,6,Toph,"Yeah. You guys get to go wherever you want. No one telling you what to do, that's the life. It's just not my life. [She detects something and touches the ground.] We're being ambushed!","Yeah. You guys get to go wherever you want. No one telling you what to do, that's the life. It's just not my life. We're being ambushed!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5967,5967,Earth,2,The Blind Bandit,6,Scene Description,"They try to run, but get cut off by underground digging from The Gopher. They are imprisoned in metal cages. The Hippo jumps onto the two cages and starts stomping. The rest of the Earth Rumble wrestlers jump down onto the ground.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5968,5968,Earth,2,The Blind Bandit,6,Xin Fu,I think you kids owe me some money.,I think you kids owe me some money.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5969,5969,Earth,2,The Blind Bandit,6,Scene Description,"Later, the Beifongs, Yu, Katara, and Sokka discover what has happened. They spot a note attached to a dagger, which Sokka takes.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5970,5970,Earth,2,The Blind Bandit,6,Sokka,Whoever took Aang and Toph left this. [Hands the note to Katara.],Whoever took Aang and Toph left this.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5971,5971,Earth,2,The Blind Bandit,6,Katara,"""If you want to see your daughter again, bring five hundred gold pieces to the arena."" It's signed Xin Fu and The Boulder.","""If you want to see your daughter again, bring five hundred gold pieces to the arena."" It's signed Xin Fu and The Boulder.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5972,5972,Earth,2,The Blind Bandit,6,Sokka,[Serious.] I can't believe it ... [Grabs the note much to Katara's surprise and runs off a few feet. Cut to a further off shot; enthusiastically.] I have The Boulder's autograph!,I can't believe it ... I have The Boulder's autograph!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5973,5973,Earth,2,The Blind Bandit,6,Scene Description,"Sokka dramatically sinks to his knees and holds the scroll above his head. Cut to a close-up of Katara, who stares at him in annoyance. Behind her, Poppy wipes the tears out of her eyes and leave her husband's embrace, exciting the screen.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5974,5974,Earth,2,The Blind Bandit,6,Lao,"Master Yu, I need you to help me get my daughter back.","Master Yu, I need you to help me get my daughter back.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5975,5975,Earth,2,The Blind Bandit,6,Katara,We're going with you.,We're going with you.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5976,5976,Earth,2,The Blind Bandit,6,Poppy,"Poor Toph, she must be so scared ...","Poor Toph, she must be so scared ...",Michael Dante DiMartino,Ethan Spaulding,9.2 +5977,5977,Earth,2,The Blind Bandit,6,Scene Description,"At the Earth Rumble VI venue, Toph and Aang are suspended high above the air in their cages. The Boulder and Xin Fu guard the two hostages.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5978,5978,Earth,2,The Blind Bandit,6,Toph,You think you're so tough? [The camera zooms back to show her case and Aang's suspended from chains. She points somewhere below her.] Why don't you come up here so I can snap that grin off your face? [Cut to Xin Fu and The Boulder looking from below them on the floor of the arena.],You think you're so tough? Why don't you come up here so I can snap that grin off your face?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5979,5979,Earth,2,The Blind Bandit,6,Xin Fu,[Narrows his eyes. Dryly.] I'm not smiling.,I'm not smiling.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5980,5980,Earth,2,The Blind Bandit,6,Lao,Toph!,Toph!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5981,5981,Earth,2,The Blind Bandit,6,Sokka,Here's your money. [Sets the bag of gold on the ground.] Now let them go.,Here's your money. Now let them go.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5982,5982,Earth,2,The Blind Bandit,6,Scene Description,"Yu earthbends the money across the ring to Xin Fu. He grabs the money, signals for Toph to be sent down, and releases her. Toph goes to Lao. They exit the arena.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5983,5983,Earth,2,The Blind Bandit,6,Katara,What about Aang?,What about Aang?,Michael Dante DiMartino,Ethan Spaulding,9.2 +5984,5984,Earth,2,The Blind Bandit,6,Xin Fu,"[Showing the Fire Nation wanted poster.] I think the Fire Nation will pay a hefty price for the Avatar. Now, get out of my ring.","I think the Fire Nation will pay a hefty price for the Avatar. Now, get out of my ring.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5985,5985,Earth,2,The Blind Bandit,6,Scene Description,Fire Nation Man appears in an earth tornado. The Gecko jumps down from the ceiling. The Hippo stomps on the ground and crushes a boulder. Headhunter jumps onto the ring from the bleachers. The Gopher pops up from underground.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5986,5986,Earth,2,The Blind Bandit,6,Aang,"Go, I'll be okay.","Go, I'll be okay.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5987,5987,Earth,2,The Blind Bandit,6,Katara,"Toph, there's too many of them. We need an earthbender. We need you!","Toph, there's too many of them. We need an earthbender. We need you!",Michael Dante DiMartino,Ethan Spaulding,9.2 +5988,5988,Earth,2,The Blind Bandit,6,Lao,My daughter is blind. She is blind and tiny and helpless and fragile. She cannot help you!,My daughter is blind. She is blind and tiny and helpless and fragile. She cannot help you!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5989,5989,Earth,2,The Blind Bandit,6,Toph,"Yes, I can.","Yes, I can.",Michael Dante DiMartino,Ethan Spaulding,9.2 +5990,5990,Earth,2,The Blind Bandit,6,Scene Description,She lets go of her father's hand and walks back to the ring. Xin Fu's wrestlers prepare to leave with The Boulder holding Aang's cage on his shoulder. Toph bends up a small part of the ring to stop them from leaving.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5991,5991,Earth,2,The Blind Bandit,6,Toph,Let him go! I beat you all before and I'll do it again!,Let him go! I beat you all before and I'll do it again!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5992,5992,Earth,2,The Blind Bandit,6,The Boulder,The Boulder takes issue with that comment.,The Boulder takes issue with that comment.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5993,5993,Earth,2,The Blind Bandit,6,Scene Description,The Hippo throws the cage to the side. Katara and Sokka prepare to strike but Toph stops them.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5994,5994,Earth,2,The Blind Bandit,6,Toph,Wait! [Listens to their vibrations as they run toward her; turns head to Sokka.] They're mine.,Wait! They're mine.,Michael Dante DiMartino,Ethan Spaulding,9.2 +5995,5995,Earth,2,The Blind Bandit,6,Scene Description,"The Water Tribe siblings watch in surprise. She shakes the ring up, shooting back the oncoming wrestlers. She enters the resulting dust crowd, unnerving Lao. +Toph creates a large cloud of dust, walks in, and encounters the Fire Nation Man, who takes some time to notice her. As he moves his foot to attack, she smirks. He fires an wave of earth at her, which she dodges. She bends up part of the ring and sends her own wave, ejecting him from the ring as he slams against the sidelines and lands on the ground. Lao and Yu watch from the sidelines in shock. +Katara and Sokka try to release Aang. Sokka repeatedly bangs a rock against the cage.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5996,5996,Earth,2,The Blind Bandit,6,Aang,Hit it harder!,Hit it harder!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5997,5997,Earth,2,The Blind Bandit,6,Sokka,I'm trying!,I'm trying!,Michael Dante DiMartino,Ethan Spaulding,9.2 +5998,5998,Earth,2,The Blind Bandit,6,Scene Description,"The Gecko crawls along the floor and becomes aware of Toph's presence. He fires two rocks which she easily dodges. She bends up a series of pillars, sending him flying out of the ring. Cut to a disoriented Fire Nation Man who slowly gets up before he realizes the Gecko heading to him and he crashes into him. The Gopher tunnels and behind Toph and sends a rock at Toph's head. She grabs the rock and returns it. Cut to The Gopher turning to a distressed look before he gets knocked out of the ring and right into Fire Nation Man and the Gecko. Sokka finally breaks the cage open, releasing Aang, who prepares to fight. Sokka shakes his head and calls his attention to the battle already going on. The Boulder and The Hippo prepare to attack Toph. Lao looks on the fight biting his nails. Headhunter flies in from behind to complete the ambush. However, Toph hears him and turns the center of the ring around to put Headhunter on a collision course with the other two wrestlers. With the three men down, Toph ejects them all onto the other defeated wrestlers.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +5999,5999,Earth,2,The Blind Bandit,6,Yu,I never knew. Your daughter's amazing!,I never knew. Your daughter's amazing!,Michael Dante DiMartino,Ethan Spaulding,9.2 +6000,6000,Earth,2,The Blind Bandit,6,Scene Description,"Toph clears the dust cloud; only her and Xin Fu remain in the ring. Cut to Toph who spits. A quick shot of her father, who looks shocked at her lack of manners, and Yu. and gets into a fighting stance and they circle the central ring. Xin Fu fires several rocks at her. She brings up an earth shield, deflecting them all. She turns part of the shield on him. He dodges one piece, but when he hits the ring again, Toph picks up his vibrations in it and senses an attack. She dodges a rock and creates a fissure, sending him flying out of the ring between Yu and Lao. Sokka collapses in shock at the sight. Aang and Katara are left amazed and run toward her. Cut back to Yu and Lao.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6001,6001,Earth,2,The Blind Bandit,6,Yu,She's the greatest earthbender I've ever seen.,She's the greatest earthbender I've ever seen.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6002,6002,Earth,2,The Blind Bandit,6,Scene Description,The scene fades to that night at the Beifong estate. Toph confronts her parents.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6003,6003,Earth,2,The Blind Bandit,6,Toph,"Dad, I know it's probably hard for you to see me this way. But the obedient little helpless blind girl that you think I am just isn't me. I love fighting. I love being an earthbender, and I'm really, really good at it. I know I've kept my life secret from you, but you were keeping me secret from the whole world. You were doing it to protect me, but I'm twelve years old and I've never had a real friend. So, now that you see who I really am, I hope it doesn't change the way you feel about me.","Dad, I know it's probably hard for you to see me this way. But the obedient little helpless blind girl that you think I am just isn't me. I love fighting. I love being an earthbender, and I'm really, really good at it. I know I've kept my life secret from you, but you were keeping me secret from the whole world. You were doing it to protect me, but I'm twelve years old and I've never had a real friend. So, now that you see who I really am, I hope it doesn't change the way you feel about me.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6004,6004,Earth,2,The Blind Bandit,6,Lao,"Of course it doesn't change the way I feel about you, Toph. It's made me realize something.","Of course it doesn't change the way I feel about you, Toph. It's made me realize something.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6005,6005,Earth,2,The Blind Bandit,6,Toph,It has?,It has?,Michael Dante DiMartino,Ethan Spaulding,9.2 +6006,6006,Earth,2,The Blind Bandit,6,Lao,Yes. I've let you had far too much freedom. From now on you'll be cared for and guarded twenty-four hours a day.,Yes. I've let you had far too much freedom. From now on you'll be cared for and guarded twenty-four hours a day.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6007,6007,Earth,2,The Blind Bandit,6,Toph,"But, Dad!","But, Dad!",Michael Dante DiMartino,Ethan Spaulding,9.2 +6008,6008,Earth,2,The Blind Bandit,6,Poppy,"We're doing this for your own good, Toph.","We're doing this for your own good, Toph.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6009,6009,Earth,2,The Blind Bandit,6,Lao,Please escort the Avatar and his friends out. They are no longer welcome here.,Please escort the Avatar and his friends out. They are no longer welcome here.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6010,6010,Earth,2,The Blind Bandit,6,Aang,"I'm sorry, Toph.","I'm sorry, Toph.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6011,6011,Earth,2,The Blind Bandit,6,Toph,"I'm sorry too. Goodbye, Aang. [She sheds a tear.]","I'm sorry too. Goodbye, Aang.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6012,6012,Earth,2,The Blind Bandit,6,Scene Description,"Outside, back at Appa.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6013,6013,Earth,2,The Blind Bandit,6,Katara,"Don't worry, we'll find you a teacher. There are plenty of amazing earthbenders out there.","Don't worry, we'll find you a teacher. There are plenty of amazing earthbenders out there.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6014,6014,Earth,2,The Blind Bandit,6,Aang,[Cut to a wider shot from behind them. The full moon shines in the distance.] Not like her.,Not like her.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6015,6015,Earth,2,The Blind Bandit,6,Scene Description,"Sokka polishes the championship belt on Appa's saddle Katara jump up onto the saddle and Aang takes the reins. Suddenly, they notice Toph running toward them and panting.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6016,6016,Earth,2,The Blind Bandit,6,Aang,Toph! What are you doing here?,Toph! What are you doing here?,Michael Dante DiMartino,Ethan Spaulding,9.2 +6017,6017,Earth,2,The Blind Bandit,6,Toph,"My dad changed his mind. He said I was free to travel the world. [Katara and Sokka look at each other with unsure looks, but smile at Toph.]",My dad changed his mind. He said I was free to travel the world.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6018,6018,Earth,2,The Blind Bandit,6,Sokka,"Well, we'd better get out of here, before your dad changes his mind again.","Well, we'd better get out of here, before your dad changes his mind again.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6019,6019,Earth,2,The Blind Bandit,6,Toph,Good idea.,Good idea.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6020,6020,Earth,2,The Blind Bandit,6,Aang,"You're going to be a great teacher, Toph.","You're going to be a great teacher, Toph.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6021,6021,Earth,2,The Blind Bandit,6,Toph,"Speaking of which, I want to show you something.","Speaking of which, I want to show you something.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6022,6022,Earth,2,The Blind Bandit,6,Aang,Okay.,Okay.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6023,6023,Earth,2,The Blind Bandit,6,Scene Description,"Aang jumps down from Appa and she bends up a rock, sending him into the air and landing in a tree.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6024,6024,Earth,2,The Blind Bandit,6,Toph,"Now we're even. Um, I'll take the belt back.","Now we're even. Um, I'll take the belt back.",Michael Dante DiMartino,Ethan Spaulding,9.2 +6025,6025,Earth,2,The Blind Bandit,6,Scene Description,"Sokka tosses the belt down, hitting Toph on the head with a sound effect and knocking her down.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6026,6026,Earth,2,The Blind Bandit,6,Toph,Ow! [Cut to a wide shot Appa and Toph still laid out flat.],Ow!,Michael Dante DiMartino,Ethan Spaulding,9.2 +6027,6027,Earth,2,The Blind Bandit,6,Sokka,Sorry.,Sorry.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6028,6028,Earth,2,The Blind Bandit,6,Scene Description,"Aang falls down from the tree in the background. Back at the Beifong estate, Lao meets with Yu and Xin Fu.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6029,6029,Earth,2,The Blind Bandit,6,Lao,I know you two are very different. But I believe you have a common interest. [A servant brings out a chest of gold. Xin Fu and Yu exchange glances at one another.] The Avatar has kidnapped my daughter. I want you to do whatever it takes to bring her home.,I know you two are very different. But I believe you have a common interest. The Avatar has kidnapped my daughter. I want you to do whatever it takes to bring her home.,Michael Dante DiMartino,Ethan Spaulding,9.2 +6030,6030,Earth,2,The Blind Bandit,6,Scene Description,"Yu and Xin Fu bow in agreement. A final scene shows Toph, now content, as they all fly off on Appa.",NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6031,6031,Earth,2,The Blind Bandit,6,Scene Description,Fade to credits.,NA,Michael Dante DiMartino,Ethan Spaulding,9.2 +6032,6032,Earth,2,Zuko Alone,7,Scene Description,"The episode begins with Zuko by himself, riding his stolen ostrich horse through a fairly barren landscape. After walking for a bit, they arrive at a decrepit bridge over a ravine that breaks as they cross. After regaining control, they continue crossing. A little while later, Zuko smells food and spots a steak being cooked by a couple below the ridge he is walking on. He holds his stomach in hunger, and reaches for his dual dao swords, preparing himself to steal from them. However, after noticing that the woman is pregnant, he stops himself and continues on his way. +Riding through grasslands covered in large broken Earth Kingdom rocks, Zuko holds his water pouch to his lips for a drink, only to finish it off thirstily. Exhausted from his travels, his sight becoming blurry and his eyes closing slowly as he struggles to maintain consciousness. He shakes himself awake, only to close his eyes again moments later. He has a flashback of a beautiful, middle-aged woman in a cloak turning and walking away in a dark hallway. He opens his eyes but keeps his head down. +Under the hot sun, Zuko reaches a small, poor town where the buildings are mostly made of wood and seem to be poorly constructed. We come upon four men dressed in green, gambling.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6033,6033,Earth,2,Zuko Alone,7,Earth Kingdom soldier,"Come on, spider snake-eyes! [He rolls a pair of dice and they land with two fives, face-up.] Ha! Ha! Yeah!","Come on, spider snake-eyes! Ha! Ha! Yeah!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6034,6034,Earth,2,Zuko Alone,7,Scene Description,"Two of the other men turn around and punch him in the stomach once each. He grunts with each punch. +Zuko rides through town and passes the soldiers. Their leader, Gow, glares at him and Zuko glares back. Zuko stops, gets off of his ostrich horse and turns to a merchant at a store.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6035,6035,Earth,2,Zuko Alone,7,Zuko,"Could I get some water, a bag of feed and something hot to eat? [Zuko holds out his hand. In it are two coins.]","Could I get some water, a bag of feed and something hot to eat?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6036,6036,Earth,2,Zuko Alone,7,Store owner,Not enough here for a hot meal. I can get you two bags of feed.,Not enough here for a hot meal. I can get you two bags of feed.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6037,6037,Earth,2,Zuko Alone,7,Scene Description,"Zuko looks down, disappointed. He notices that the four Earth Kingdom men are watching him. +Two children hide behind the store counter, looking amused. One of them giggles and throws an egg. It hits a gambling soldier.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6038,6038,Earth,2,Zuko Alone,7,Earth Kingdom soldier,Ow!,Ow!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6039,6039,Earth,2,Zuko Alone,7,Scene Description,"The two boys run off as the Earth Kingdom soldier turn around, looking angry. They only see Zuko behind them, so they stand up indignantly.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6040,6040,Earth,2,Zuko Alone,7,Gow,"Hey! You throwing eggs at us, stranger?","Hey! You throwing eggs at us, stranger?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6041,6041,Earth,2,Zuko Alone,7,Zuko,No.,No.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6042,6042,Earth,2,Zuko Alone,7,Gow,You see who did throw it?,You see who did throw it?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6043,6043,Earth,2,Zuko Alone,7,Zuko,[Turns to face them.] No.,No.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6044,6044,Earth,2,Zuko Alone,7,Earth Kingdom soldier,"That your favorite word, no?","That your favorite word, no?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6045,6045,Earth,2,Zuko Alone,7,Gow,Egg had to come from somewhere.,Egg had to come from somewhere.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6046,6046,Earth,2,Zuko Alone,7,Zuko,[Turns around.] Maybe a chicken flew over.,Maybe a chicken flew over.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6047,6047,Earth,2,Zuko Alone,7,Scene Description,"The Earth Kingdom soldier laughs, and Gow glares at him. At that moment, the store owner returns with Zuko's feed bags for the ostrich horse. Gow goes to the counter and grabs both bags before he can take them.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6048,6048,Earth,2,Zuko Alone,7,Gow,"Thanks for your contribution. The army appreciates your support. [He throws the bags to one of his fellow soldiers.] You better leave town. Penalty for stayin's a lot steeper than you can afford, stranger. Trust me. [He pats his hammer at his side menacingly.]","Thanks for your contribution. The army appreciates your support. You better leave town. Penalty for stayin's a lot steeper than you can afford, stranger. Trust me.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6049,6049,Earth,2,Zuko Alone,7,Scene Description,The soldiers turn and leave with the bags.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6050,6050,Earth,2,Zuko Alone,7,Store owner,Those soldiers are supposed to protect us from the Fire Nation. But they're just a bunch of thugs.,Those soldiers are supposed to protect us from the Fire Nation. But they're just a bunch of thugs.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6051,6051,Earth,2,Zuko Alone,7,Scene Description,"Zuko walks toward his ostrich horse. As he is about to re-mount, one of the little boys from earlier pops up from behind the animal.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6052,6052,Earth,2,Zuko Alone,7,Lee,Thanks for not ratting me out!,Thanks for not ratting me out!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6053,6053,Earth,2,Zuko Alone,7,Scene Description,"Zuko ignores the boy, gets on his steed and starts riding away. Lee casts him an annoyed look before brightening. Lee comes up from behind and grabs the reins.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6054,6054,Earth,2,Zuko Alone,7,Lee,"I'll take you to my house and feed your ostrich horse for you. Come on, I owe you! [Lee leads the way, pulling along the animal.]","I'll take you to my house and feed your ostrich horse for you. Come on, I owe you!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6055,6055,Earth,2,Zuko Alone,7,Scene Description,"A shot of Zuko holding his stomach in hunger fades to a pig farm, Zuko and Lee arrive on a dirt road at the farm among mountains in the countryside. A little wooden farmhouse with a roof that needs re-shingling. Several different types of hybrid pigs spotted in enclosures.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6056,6056,Earth,2,Zuko Alone,7,Lee,No one can ever sneak up on us.,No one can ever sneak up on us.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6057,6057,Earth,2,Zuko Alone,7,Zuko,No kidding.,No kidding.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6058,6058,Earth,2,Zuko Alone,7,Scene Description,"Lee takes the ostrich horse away. Zuko casts his glance off to the side; the camera shifts to show a pig rooster, who crows at him. A man approaches Zuko. A woman peers out from behind the farmhouse.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6059,6059,Earth,2,Zuko Alone,7,Gansu,You a friend of Lee's?,You a friend of Lee's?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6060,6060,Earth,2,Zuko Alone,7,Scene Description,Lee comes running out of the barn excitedly and grabs his father's arm.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6061,6061,Earth,2,Zuko Alone,7,Lee,"This guy just stood up to the soldiers! By the end, he practically had them running away!","This guy just stood up to the soldiers! By the end, he practically had them running away!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6062,6062,Earth,2,Zuko Alone,7,Scene Description,"The woman from earlier comes forward to join her husband and son, wiping her hands on a rag.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6063,6063,Earth,2,Zuko Alone,7,Sela,Does this guy have a name?,Does this guy have a name?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6064,6064,Earth,2,Zuko Alone,7,Zuko,[Nervously.] I'm ... uh ...,I'm ... uh ...,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6065,6065,Earth,2,Zuko Alone,7,Gansu,"[Off-camera.] He doesn't have to say who he is if he doesn't want to, Sela. [Cuts to shot of him standing with his family.] Anyone who can hold his own against those bully soldiers is welcome here. Those men should be ashamed to wear Earth Kingdom uniforms.","He doesn't have to say who he is if he doesn't want to, Sela. Anyone who can hold his own against those bully soldiers is welcome here. Those men should be ashamed to wear Earth Kingdom uniforms.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6066,6066,Earth,2,Zuko Alone,7,Sela,"The real soldiers are off fighting the War, [Cuts to shot of Lee.] like Lee's big brother Sensu. [Pause.] Supper's going to be ready soon. Would you like to stay?","The real soldiers are off fighting the War, like Lee's big brother Sensu. Supper's going to be ready soon. Would you like to stay?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6067,6067,Earth,2,Zuko Alone,7,Zuko,I can't. I should be moving on. [The wife frowns and casts a glance at her husband.],I can't. I should be moving on.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6068,6068,Earth,2,Zuko Alone,7,Sela,"Gansu could use some help on the barn. Why don't you two work for a while, and then we'll eat.","Gansu could use some help on the barn. Why don't you two work for a while, and then we'll eat.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6069,6069,Earth,2,Zuko Alone,7,Scene Description,"Zuko nods in agreement. The camera fades to Zuko and Gansu working on the roof of the barn. Lee is resting on a ladder, watching them re-shingle the roof. While Gansu is doing well and working steadily, Zuko has several twisted and broken nails in front of him, although it is evident he is trying hard to do a good job.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6070,6070,Earth,2,Zuko Alone,7,Lee,You don't seem like you're from around here.,You don't seem like you're from around here.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6071,6071,Earth,2,Zuko Alone,7,Zuko,[Shaking his head.] Mm-mm.,Mm-mm.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6072,6072,Earth,2,Zuko Alone,7,Lee,Where are you from then?,Where are you from then?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6073,6073,Earth,2,Zuko Alone,7,Zuko,[Lowers his hammer.] Far away.,Far away.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6074,6074,Earth,2,Zuko Alone,7,Lee,Ohhh. Where are you going?,Ohhh. Where are you going?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6075,6075,Earth,2,Zuko Alone,7,Gansu,"Lee, give it a rest. Stop asking the man personal questions, got it?","Lee, give it a rest. Stop asking the man personal questions, got it?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6076,6076,Earth,2,Zuko Alone,7,Lee,[Disappointed and rests his head on his arm. He sighs.] Yes. [Pause.] So how'd you get that scar?,Yes. So how'd you get that scar?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6077,6077,Earth,2,Zuko Alone,7,Scene Description,"Zuko is surprised at the question and swings down his hammer a little too hard. He strikes his thumb, now red, and groans in pain.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6078,6078,Earth,2,Zuko Alone,7,Gansu,It's not nice to bother people about things they might not want to talk about. A man's past is his business.,It's not nice to bother people about things they might not want to talk about. A man's past is his business.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6079,6079,Earth,2,Zuko Alone,7,Scene Description,"Gansu goes back to hammering and so does Zuko. The scene fades away to the sound of hammers hitting metal as Zuko starts reminiscing about the past. +Fade to a shot of the water's surface. An unknown person places a fingertip in the water and holds their hand out to reveal bread crumbs. Cuts to shot of the Royal Gardens, two figures sitting by the edge of a large kidney-shaped pond. Cuts to shot of a younger Zuko and his mother, who are feeding some bread to four turtle ducks – a mother and her four babies.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6080,6080,Earth,2,Zuko Alone,7,Young Zuko,"Hey Mom, want to see how Azula feeds turtle ducks? [Zuko throws the rest of the loaf of bread into the water and hits one of the baby turtle ducks. Ursa is shocked.]","Hey Mom, want to see how Azula feeds turtle ducks?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6081,6081,Earth,2,Zuko Alone,7,Ursa,Zuko! Why would you do that?,Zuko! Why would you do that?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6082,6082,Earth,2,Zuko Alone,7,Scene Description,"After the baby turtle duck surfaces again, the mother turtle duck charges forth and bites Zuko's ankle hard.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6083,6083,Earth,2,Zuko Alone,7,Young Zuko,"Ow! Ow ow! Ouch! [Ursa removes the turtle duck from Zuko and gently throws her back into the pond, where she swims off with her babies. Zuko is pouting.]",Ow! Ow ow! Ouch!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6084,6084,Earth,2,Zuko Alone,7,Young Zuko,Stupid turtle duck. Why she'd do that?,Stupid turtle duck. Why she'd do that?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6085,6085,Earth,2,Zuko Alone,7,Ursa,"Zuko. That's what moms are like. [Puts her arm around Zuko.] If you mess with their babies,[She playfully bites behind Zuko's ear.], they're gonna bite you back! [They laugh.]","Zuko. That's what moms are like. If you mess with their babies,, they're gonna bite you back!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6086,6086,Earth,2,Zuko Alone,7,Scene Description,"A little while later, young Azula, Ty Lee and Mai are playing together in the royal yard by a man-made river and a rather large fountain. While Mai sits and watches under the shade of a tree, Azula does a complicated flip but messes up the ending and grunts. Ty Lee does the same flip, only she completes the ending perfectly and lands on her feet, arms proudly up in the air. Azula pushes her over and laughs.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6087,6087,Earth,2,Zuko Alone,7,Young Ty Lee,Ugh! Azula!,Ugh! Azula!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6088,6088,Earth,2,Zuko Alone,7,Scene Description,"Zuko and Ursa walk by together nearby. Mai sees them, smiles, turns away and blushes. Azula notices her obvious crush, however, and turns to Ty Lee with a plot in mind.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6089,6089,Earth,2,Zuko Alone,7,Young Azula,[Whispering in Ty Lee's ear as her friend giggles.] Watch this! [Runs toward her mother and Zuko.] Mom! Can you make Zuko play with us? We need equal teams to play a game!,Watch this! Mom! Can you make Zuko play with us? We need equal teams to play a game!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6090,6090,Earth,2,Zuko Alone,7,Young Zuko,I am not cart-wheeling.,I am not cart-wheeling.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6091,6091,Earth,2,Zuko Alone,7,Young Azula,"You won't have to. [Rolls her eyes.] Cart-wheeling's not a game, dum-dum.","You won't have to. Cart-wheeling's not a game, dum-dum.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6092,6092,Earth,2,Zuko Alone,7,Young Zuko,I don't care. I don't want to play with you!,I don't care. I don't want to play with you!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6093,6093,Earth,2,Zuko Alone,7,Young Azula,"We are brother and sister. It's important for us to spend time together! Don't you think so, Mom? [Shoots her mother an innocent smile.]","We are brother and sister. It's important for us to spend time together! Don't you think so, Mom?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6094,6094,Earth,2,Zuko Alone,7,Ursa,"[Places her hands on Zuko's shoulder.] Yes, darling, I think it's a good idea to play with your sister. [Ruffles his hair.] Go on now, just for a little while. [Walks away, with Zuko glaring at his sister.]","Yes, darling, I think it's a good idea to play with your sister. Go on now, just for a little while.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6095,6095,Earth,2,Zuko Alone,7,Scene Description,"Azula reaches for an apple on the tree that Mai was under earlier. Mai, now standing in front of the fountain, is still while Azula places the apple on her head.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6096,6096,Earth,2,Zuko Alone,7,Young Azula,"[Off-camera.] Here's the way it goes. [After placing apple on Mai's head, she runs back several feet.] Now what you do is, try to knock the apple off the other person's head, like this. [Azula shots a small jet of flame to the apple with her firebending and knowingly sets it on fire.]","Here's the way it goes. Now what you do is, try to knock the apple off the other person's head, like this.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6097,6097,Earth,2,Zuko Alone,7,Scene Description,"Zuko is shocked and runs forward toward Mai, who screams as Zuko approaches her. He slams into her and the both of them fall into the fountain, with Zuko lying on top of Mai's stomach. Both seem very shocked and embarrassed. Azula starts laughing at them.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6098,6098,Earth,2,Zuko Alone,7,Young Azula,"[Lays a hand on Ty Lee's shoulder.] See, I told you it would work!","See, I told you it would work!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6099,6099,Earth,2,Zuko Alone,7,Scene Description,"Cuts to shot of Azula and Ty Lee observing Zuko and Mai in the fountain, their backs facing the camera.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6100,6100,Earth,2,Zuko Alone,7,Young Ty Lee,"Aww, they're so cute together!","Aww, they're so cute together!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6101,6101,Earth,2,Zuko Alone,7,Scene Description,Zuko gets up angrily and leaves the fountain. Mai stands up as well.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6102,6102,Earth,2,Zuko Alone,7,Young Mai,You two are such ... ugh!,You two are such ... ugh!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6103,6103,Earth,2,Zuko Alone,7,Scene Description,"At that moment, Ursa comes from the house toward the children, a scroll of paper in her hand.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6104,6104,Earth,2,Zuko Alone,7,Ursa,"I was just coming to get you. Uncle Iroh sent us a letter from the war-front. [Zuko stomps past her, leaving small puddles behind him as he goes.] You're soaking wet?",I was just coming to get you. Uncle Iroh sent us a letter from the war-front. You're soaking wet?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6105,6105,Earth,2,Zuko Alone,7,Young Zuko,[Raises hands in frustration.] Girls are crazy!,Girls are crazy!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6106,6106,Earth,2,Zuko Alone,7,Scene Description,"The scene switches to the letter and what is occurring with Iroh. Rubble surround a large gap in the wall of Ba Sing Se with smoke emitting from everywhere. A tent is set up nearby, with a younger General Iroh writing at a desk.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6107,6107,Earth,2,Zuko Alone,7,Iroh,"[Voice-over.] If the city is as magnificent as its wall, Ba Sing Se must be something to behold. I hope you all may see it someday, if we don't burn it to the ground first! [Laughs.]","If the city is as magnificent as its wall, Ba Sing Se must be something to behold. I hope you all may see it someday, if we don't burn it to the ground first!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6108,6108,Earth,2,Zuko Alone,7,Scene Description,"Switch back to Ursa, Zuko and Azula. The children are laughing at the joke as well. Ursa continues down the letter.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6109,6109,Earth,2,Zuko Alone,7,Ursa,"Until then, enjoy these gifts.","Until then, enjoy these gifts.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6110,6110,Earth,2,Zuko Alone,7,Scene Description,"Two servants dressed in white come up, and Zuko runs to meet them. Ursa sits there and continues reading.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6111,6111,Earth,2,Zuko Alone,7,Ursa,"For Zuko, a pearl dagger from the general who surrendered when we broke through the Outer Wall. Note the inscription and the superior craftsmanship.","For Zuko, a pearl dagger from the general who surrendered when we broke through the Outer Wall. Note the inscription and the superior craftsmanship.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6112,6112,Earth,2,Zuko Alone,7,Young Zuko,"[Zuko picks up the dagger admiringly, unsheathes it and reads the inscription.] Never give up without a fight.",Never give up without a fight.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6113,6113,Earth,2,Zuko Alone,7,Ursa,"And for Azula, a new friend. She wears the latest fashion for Earth Kingdom girls.","And for Azula, a new friend. She wears the latest fashion for Earth Kingdom girls.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6114,6114,Earth,2,Zuko Alone,7,Scene Description,"As Ursa reads, Azula picks up her present. It is a doll wearing green. She picks it up by the head with disgust, making sounds and sticking out her tongue.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6115,6115,Earth,2,Zuko Alone,7,Young Azula,"If Uncle doesn't make it back from war, then Dad will be next in line for Fire Lord, wouldn't he?","If Uncle doesn't make it back from war, then Dad will be next in line for Fire Lord, wouldn't he?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6116,6116,Earth,2,Zuko Alone,7,Ursa,"Azula, we don't speak that way. It would be awful if Uncle Iroh didn't return. And besides, Fire Lord Azulon is a picture of health.","Azula, we don't speak that way. It would be awful if Uncle Iroh didn't return. And besides, Fire Lord Azulon is a picture of health.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6117,6117,Earth,2,Zuko Alone,7,Young Zuko,How would you like it if cousin Lu Ten wanted Dad to die?,How would you like it if cousin Lu Ten wanted Dad to die?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6118,6118,Earth,2,Zuko Alone,7,Young Azula,I still think our dad would make a much better Fire Lord than His Royal Tea-Loving Kookiness. [Sets the doll's head on fire.],I still think our dad would make a much better Fire Lord than His Royal Tea-Loving Kookiness.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6119,6119,Earth,2,Zuko Alone,7,Scene Description,"Flashback ends. Night has fallen, and Zuko is sleeping on a pile of hay inside the barn. A door opens and Lee comes sneaking in. He takes the Dual Dao swords, but nearly stops when Zuko makes a sound in his sleep. Nevertheless, Lee walks out of the barn with the swords and closes the squeaky door. Zuko's eyes pop open as if he was only feigning sleep the whole time. Cut to a large sunflower garden, where Lee is practicing with the swords. He jumps around and chops off several sunflower heads. He starts stabbing a nearby dead tree trunk repeatedly, his tongue lolling out of his mouth and breathes heavily in effort as Zuko silently approaches behind him.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6120,6120,Earth,2,Zuko Alone,7,Zuko,You're holding them wrong.,You're holding them wrong.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6121,6121,Earth,2,Zuko Alone,7,Scene Description,"Lee falls backward in surprise. The shot shows Zuko, arms crossed, standing a little further back in the patch of sunflowers. Lee gets back up, ashamed, and holds out the swords to Zuko. He takes them.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6122,6122,Earth,2,Zuko Alone,7,Zuko,"Keep in mind, these are dual swords. Two halves of a single weapon. Don't think of them as separate, 'cause they're not. They're just two different parts of the same whole.","Keep in mind, these are dual swords. Two halves of a single weapon. Don't think of them as separate, 'cause they're not. They're just two different parts of the same whole.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6123,6123,Earth,2,Zuko Alone,7,Scene Description,"Zuko swings around the swords carefully, demonstrating his skill. He cuts off some sunflower heads, turns around, and hands the swords back to Lee to try. Lee is a little more careful this time, and a little less awkward with the swords. He turns to Zuko once he is done his mini demonstration. Zuko smiles kindly; Lee smiles back and laughs. They begin walking away from the sunflower patch together, side by side under the full moon.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6124,6124,Earth,2,Zuko Alone,7,Lee,I think you'd really like my brother Sensu. He used to show me stuff like this all the time.,I think you'd really like my brother Sensu. He used to show me stuff like this all the time.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6125,6125,Earth,2,Zuko Alone,7,Scene Description,"Fade to the morning at the pig farm. Zuko mounts his ostrich horse again, ready to leave the hospitable family. Gansu, Sela and Lee have all come to see Zuko off.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6126,6126,Earth,2,Zuko Alone,7,Sela,[Reaches up and offers Zuko a package.] Here. This ought to get you through a few meals.,Here. This ought to get you through a few meals.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6127,6127,Earth,2,Zuko Alone,7,Scene Description,Zuko is just about to grab the package when he looks up and notices a cloud of dust in the distance. It is Gow and his cronies riding in on ostrich horses. Gansu steps forward.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6128,6128,Earth,2,Zuko Alone,7,Gansu,What do you think they want?,What do you think they want?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6129,6129,Earth,2,Zuko Alone,7,Zuko,Trouble.,Trouble.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6130,6130,Earth,2,Zuko Alone,7,Scene Description,"Gow and his crew ride toward the pig farm. The animals squeal, clearly irritated at their arrival. The Earth Kingdom soldiers stop right in front of Gansu's family and Zuko.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6131,6131,Earth,2,Zuko Alone,7,Gansu,"What do you want, Gow?","What do you want, Gow?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6132,6132,Earth,2,Zuko Alone,7,Gow,Just thought someone ought to tell you that your son's battalion got captured. [To his fellow soldiers.] You boys hear what the Fire Nation did with their last group of Earth Kingdom prisoners?,Just thought someone ought to tell you that your son's battalion got captured. You boys hear what the Fire Nation did with their last group of Earth Kingdom prisoners?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6133,6133,Earth,2,Zuko Alone,7,Earth Kingdom soldier,"Dressed 'em up in Fire Nation uniforms and put 'em on the front line unarmed, the way I heard it. [Spits on the ground.] Then they just watched.","Dressed 'em up in Fire Nation uniforms and put 'em on the front line unarmed, the way I heard it. Then they just watched.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6134,6134,Earth,2,Zuko Alone,7,Gansu,[Angrily.] You watch your mouth!,You watch your mouth!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6135,6135,Earth,2,Zuko Alone,7,Scene Description,"Gow rides forward a little more toward Gansu when Zuko goes in between them, interfering. Gow and Zuko glare at each other.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6136,6136,Earth,2,Zuko Alone,7,Gow,Why bother rooting around in the mud with these pigs?,Why bother rooting around in the mud with these pigs?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6137,6137,Earth,2,Zuko Alone,7,Scene Description,"Gow turns around his ostrich horse and all four soldiers ride away, kicking up a cloud of dust behind them. Cut to another one of Zuko's flashbacks in the palace grounds again and to the fountain seen earlier. Zuko and Azula are happily playing together while Ursa sits in front of the fountain when a messenger in white approaches her with a scroll. She opens and reads it before standing up and crying. She turns to young Zuko and Azula.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6138,6138,Earth,2,Zuko Alone,7,Ursa,Iroh has lost his son. Your cousin Lu Ten did not survive the battle.,Iroh has lost his son. Your cousin Lu Ten did not survive the battle.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6139,6139,Earth,2,Zuko Alone,7,Scene Description,"Zuko seems shocked and sad at the news, while Azula does not seem to react at all. Cut back to the present, where Zuko is still in front of the family protectively. Sela and Gansu are hugging behind him; Lee is standing close by.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6140,6140,Earth,2,Zuko Alone,7,Lee,What's going to happen to my brother?,What's going to happen to my brother?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6141,6141,Earth,2,Zuko Alone,7,Gansu,I'm going to the front. I'm going to find Sensu and bring him back.,I'm going to the front. I'm going to find Sensu and bring him back.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6142,6142,Earth,2,Zuko Alone,7,Scene Description,"Sela and Gansu walk away from Zuko, with Sela crying desperately. Lee runs toward Zuko.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6143,6143,Earth,2,Zuko Alone,7,Lee,When my dad goes ... will you stay?,When my dad goes ... will you stay?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6144,6144,Earth,2,Zuko Alone,7,Zuko,No. I need to move on.,No. I need to move on.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6145,6145,Earth,2,Zuko Alone,7,Scene Description,"Zuko reaches behind him and takes out a sheathed dagger. He bends down and gives it to Lee, who takes it with a faint smile.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6146,6146,Earth,2,Zuko Alone,7,Zuko,Here. I want you to have this. Read the inscription.,Here. I want you to have this. Read the inscription.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6147,6147,Earth,2,Zuko Alone,7,Lee,[Unsheathes the dagger.] Made in Earth Kingdom.,Made in Earth Kingdom.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6148,6148,Earth,2,Zuko Alone,7,Zuko,The other one.,The other one.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6149,6149,Earth,2,Zuko Alone,7,Lee,Never give up without a fight.,Never give up without a fight.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6150,6150,Earth,2,Zuko Alone,7,Scene Description,"With that, Zuko rides away from Lee. Lee runs after him for a little bit, but stops shortly afterward. Cut to Zuko's memory again; this time he is in the Royal Palace playing with his dagger from Iroh (the one he just gave to Lee.) He fakes his death, dramatically falling to the floor with a groan. Azula sits cross-legged behind him.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6151,6151,Earth,2,Zuko Alone,7,Young Azula,You waste all your time playing with knives. You're not even good!,You waste all your time playing with knives. You're not even good!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6152,6152,Earth,2,Zuko Alone,7,Young Zuko,Put an apple on your head and we'll find out how good I am!,Put an apple on your head and we'll find out how good I am!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6153,6153,Earth,2,Zuko Alone,7,Young Azula,"By the way, Uncle's coming home.","By the way, Uncle's coming home.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6154,6154,Earth,2,Zuko Alone,7,Young Zuko,Does that mean ... we won the War?,Does that mean ... we won the War?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6155,6155,Earth,2,Zuko Alone,7,Young Azula,"No, it means Uncle's a quitter and a loser.","No, it means Uncle's a quitter and a loser.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6156,6156,Earth,2,Zuko Alone,7,Young Zuko,What are you talking about? Uncle's not a quitter!,What are you talking about? Uncle's not a quitter!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6157,6157,Earth,2,Zuko Alone,7,Young Azula,"Oh yes he is! He found out his son died and he just fell apart! A real general would stay and burn Ba Sing Se to the ground, not lose the battle and come home crying.","Oh yes he is! He found out his son died and he just fell apart! A real general would stay and burn Ba Sing Se to the ground, not lose the battle and come home crying.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6158,6158,Earth,2,Zuko Alone,7,Young Zuko,How do you know what he should do? He's probably just sad his only kid is gone. Forever.,How do you know what he should do? He's probably just sad his only kid is gone. Forever.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6159,6159,Earth,2,Zuko Alone,7,Scene Description,"At that moment, Ursa appears in the doorway.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6160,6160,Earth,2,Zuko Alone,7,Ursa,"Your father has requested an audience with Fire Lord Azulon. Best clothes, hurry up!","Your father has requested an audience with Fire Lord Azulon. Best clothes, hurry up!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6161,6161,Earth,2,Zuko Alone,7,Scene Description,"Zuko runs past Ursa quickly to get ready, while Azula walks rather slowly.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6162,6162,Earth,2,Zuko Alone,7,Young Azula,[In a bored tone.] Fire Lord Azulon ... can't you just call him 'Grandfather'? He's not exactly the powerful Fire Lord he used to be. Someone will probably end up taking his place soon.,Fire Lord Azulon ... can't you just call him 'Grandfather'? He's not exactly the powerful Fire Lord he used to be. Someone will probably end up taking his place soon.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6163,6163,Earth,2,Zuko Alone,7,Ursa,[Angrily.] Young lady! Not another word!,Young lady! Not another word!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6164,6164,Earth,2,Zuko Alone,7,Scene Description,Azula runs past her mother and leaves.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6165,6165,Earth,2,Zuko Alone,7,Ursa,What is wrong with that child?,What is wrong with that child?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6166,6166,Earth,2,Zuko Alone,7,Scene Description,"The scene changes to the Fire Lord's chamber, a large room with many columns and a wall of fire in front of the Fire Lord's throne. Ozai, Ursa, Zuko, and Azula are all sitting on the floor some distance back from Fire Lord Azulon, though Ozai's face remains obscured save for his mouth.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6167,6167,Earth,2,Zuko Alone,7,Ozai,And how was it Great-Grandfather Sozin managed to win the Battle of Han Tui?,And how was it Great-Grandfather Sozin managed to win the Battle of Han Tui?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6168,6168,Earth,2,Zuko Alone,7,Young Zuko,[Confusedly.] Great-Grandfather won ... because ...,Great-Grandfather won ... because ...,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6169,6169,Earth,2,Zuko Alone,7,Young Azula,"Because even though his army was outnumbered, he cleverly calculated his advantages. The enemy was downwind and there was a drought. Their defenses burned to a crisp in minutes.","Because even though his army was outnumbered, he cleverly calculated his advantages. The enemy was downwind and there was a drought. Their defenses burned to a crisp in minutes.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6170,6170,Earth,2,Zuko Alone,7,Ozai,"Correct, my dear. Now, would you show Grandfather the new moves you demonstrated to me?","Correct, my dear. Now, would you show Grandfather the new moves you demonstrated to me?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6171,6171,Earth,2,Zuko Alone,7,Scene Description,"Azula stands up and moves forward. She begins with some circular motions, warms herself up, and firebends. Ozai smiles. Azula does many fairly complicated moves with ease, and Zuko watches her in amazement. She finishes off her routine with a jump and a powerful fire blast toward the throne, before landing on her feet gracefully.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6172,6172,Earth,2,Zuko Alone,7,Ozai,She's a true prodigy! Just like her grandfather for whom she's named.,She's a true prodigy! Just like her grandfather for whom she's named.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6173,6173,Earth,2,Zuko Alone,7,Young Azula,"[Sits back down, and looks at Zuko out of the corner of her eye and whispers.] You'll never catch up ...",You'll never catch up ...,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6174,6174,Earth,2,Zuko Alone,7,Young Zuko,[Stands up angrily.] I'd like to demonstrate what I've been learning.,I'd like to demonstrate what I've been learning.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6175,6175,Earth,2,Zuko Alone,7,Scene Description,"Ozai frowns at this news. Zuko starts off well, doing the same circular motions as Azula earlier. He manages to produce a small fire blast, which does not impress Fire Lord Azulon. When he tries to create another one, he falls. He gets back up, panting heavily, and tries again, only to fall harder. Ursa gets up worriedly and approaches Zuko to comfort him.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6176,6176,Earth,2,Zuko Alone,7,Young Zuko,I failed.,I failed.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6177,6177,Earth,2,Zuko Alone,7,Ursa,"No. I loved watching you. That's who you are, Zuko. Someone who keeps fighting even though it's hard.","No. I loved watching you. That's who you are, Zuko. Someone who keeps fighting even though it's hard.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6178,6178,Earth,2,Zuko Alone,7,Azulon,"Prince Ozai, why are you wasting my time with this pomp? Just tell me what you want. Everyone else, go!","Prince Ozai, why are you wasting my time with this pomp? Just tell me what you want. Everyone else, go!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6179,6179,Earth,2,Zuko Alone,7,Scene Description,"Ursa, Zuko and Azula start walking out of the throne room; however, Azula pulls Zuko off to the side just before they exit. The children hide in the curtains at the back of the room.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6180,6180,Earth,2,Zuko Alone,7,Young Zuko,What are you -?,What are you -?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6181,6181,Earth,2,Zuko Alone,7,Young Azula,Shh!,Shh!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6182,6182,Earth,2,Zuko Alone,7,Scene Description,"Azula and Zuko stop where the curtains open and peek back out at the throne room, exposing only their faces.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6183,6183,Earth,2,Zuko Alone,7,Ozai,"Father, you must have realized as I have, that with Lu Ten gone, Iroh's bloodline has ended. After his son's death, my brother abandoned the siege at Ba Sing Se, and who knows when he will return home. But I am here, Father, and my children are alive.","Father, you must have realized as I have, that with Lu Ten gone, Iroh's bloodline has ended. After his son's death, my brother abandoned the siege at Ba Sing Se, and who knows when he will return home. But I am here, Father, and my children are alive.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6184,6184,Earth,2,Zuko Alone,7,Azulon,Say what it is you want!,Say what it is you want!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6185,6185,Earth,2,Zuko Alone,7,Ozai,"Father, revoke Iroh's birthright. I am your humble servant, here to serve you and our nation. Use me.","Father, revoke Iroh's birthright. I am your humble servant, here to serve you and our nation. Use me.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6186,6186,Earth,2,Zuko Alone,7,Azulon,You dare suggest I betray Iroh? My first born? Directly after the demise of his only beloved son? I think Iroh has suffered enough! But you ... your punishment has scarcely begun!,You dare suggest I betray Iroh? My first born? Directly after the demise of his only beloved son? I think Iroh has suffered enough! But you ... your punishment has scarcely begun!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6187,6187,Earth,2,Zuko Alone,7,Scene Description,"Azulon's anger causes the flames around him to grow. Zuko, scared, runs away from behind the curtain as Azula watches, but she stays and continues watching with an evil smile on her face. +The scene switches to Zuko laying in a large bed in a large ornate room. He suddenly looks up, alarmed. Azula is standing in his doorway, arms crossed. She looks amused.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6188,6188,Earth,2,Zuko Alone,7,Young Azula,"[Sing-songy.] Dad's going to kill you! [Seriously.] Really, he is.","Dad's going to kill you! Really, he is.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6189,6189,Earth,2,Zuko Alone,7,Young Zuko,"Ha-ha, Azula. Nice try.","Ha-ha, Azula. Nice try.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6190,6190,Earth,2,Zuko Alone,7,Young Azula,"Fine, don't believe me. But I heard everything. Grandfather said Dad's punishment should fit his crime. [Imitates Azulon.] ""You must know the pain of losing a first-born son. By sacrificing your own!""","Fine, don't believe me. But I heard everything. Grandfather said Dad's punishment should fit his crime. ""You must know the pain of losing a first-born son. By sacrificing your own!""",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6191,6191,Earth,2,Zuko Alone,7,Young Zuko,Liar!,Liar!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6192,6192,Earth,2,Zuko Alone,7,Young Azula,I'm only telling you for your own good. I know! Maybe you could find a nice Earth Kingdom family to adopt you!,I'm only telling you for your own good. I know! Maybe you could find a nice Earth Kingdom family to adopt you!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6193,6193,Earth,2,Zuko Alone,7,Young Zuko,Stop it! You're lying! Dad would never do that to me!,Stop it! You're lying! Dad would never do that to me!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6194,6194,Earth,2,Zuko Alone,7,Scene Description,Ursa appears in the doorway of Zuko's room.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6195,6195,Earth,2,Zuko Alone,7,Ursa,Your father would never do what to you? What is going on here?,Your father would never do what to you? What is going on here?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6196,6196,Earth,2,Zuko Alone,7,Young Azula,I don't know ...,I don't know ...,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6197,6197,Earth,2,Zuko Alone,7,Ursa,It's time for a talk!,It's time for a talk!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6198,6198,Earth,2,Zuko Alone,7,Scene Description,"Ursa drags Azula away from Zuko's bed, and Azula follows reluctantly. Zuko clasps the blanket tightly in his hands.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6199,6199,Earth,2,Zuko Alone,7,Young Zuko,[Chanting in a low voice.] Azula always lies. Azula always lies.,Azula always lies. Azula always lies.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6200,6200,Earth,2,Zuko Alone,7,Scene Description,"Cut to the older Zuko, lying in green grass, holding his traveler's hat to his chest.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6201,6201,Earth,2,Zuko Alone,7,Zuko,Azula always lies.,Azula always lies.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6202,6202,Earth,2,Zuko Alone,7,Scene Description,An ostrich horse can be heard. Zuko sits up and looks to see Sela riding toward him in a carriage. She is frantic and panicked.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6203,6203,Earth,2,Zuko Alone,7,Sela,"You have to help! It's Lee – the thugs from town came back as soon as Gansu left. When they ordered us to give them food, Lee pulled a knife on them! I don't even know where he got a knife! Then they took him away. [Begins to sob.] They told me if he's old enough to fight, he's old enough to join the army. I know we barely know you, but ...","You have to help! It's Lee – the thugs from town came back as soon as Gansu left. When they ordered us to give them food, Lee pulled a knife on them! I don't even know where he got a knife! Then they took him away. They told me if he's old enough to fight, he's old enough to join the army. I know we barely know you, but ...",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6204,6204,Earth,2,Zuko Alone,7,Zuko,[Stands up dramatically.] I'll get your son back.,I'll get your son back.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6205,6205,Earth,2,Zuko Alone,7,Scene Description,"Back in the Earth Kingdom town, it is sunset. Zuko is riding on his ostrich horse through a small archway that enters into the town. The people around scatter when they see him coming. Lee is tied up to a tower. He seems sad, but when he looks up to see Zuko. He quickly regains hope.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6206,6206,Earth,2,Zuko Alone,7,Lee,Hey! There he is! I told you he'd come!,Hey! There he is! I told you he'd come!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6207,6207,Earth,2,Zuko Alone,7,Scene Description,"The Earth Kingdom soldiers approach him, as does their leader, Gow. Zuko dismounts and takes off his hat, placing it on the ostrich horse. They face each other, battle imminent.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6208,6208,Earth,2,Zuko Alone,7,Zuko,Let the kid go.,Let the kid go.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6209,6209,Earth,2,Zuko Alone,7,Gow,"[Laughs loudly, but quickly regains composure.] Who do you think you are, telling us what to do?","Who do you think you are, telling us what to do?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6210,6210,Earth,2,Zuko Alone,7,Zuko,"It doesn't matter who I am. But I know who you are. You're not soldiers; you're bullies. Freeloaders, abusing your power. Mostly over women and kids. You don't want Lee in your army – you're sick cowards messing with a family who's already lost one son to the war.","It doesn't matter who I am. But I know who you are. You're not soldiers; you're bullies. Freeloaders, abusing your power. Mostly over women and kids. You don't want Lee in your army – you're sick cowards messing with a family who's already lost one son to the war.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6211,6211,Earth,2,Zuko Alone,7,Gow,[To a fellow soldier.] Are you gonna let this stranger stand there and insult you like this?,Are you gonna let this stranger stand there and insult you like this?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6212,6212,Earth,2,Zuko Alone,7,Scene Description,"The soldier runs forward, spear in hand. He goes to attack Zuko, who pulls out his sword and punches the other man in the stomach with the hilt without fully unsheathing his sword. Zuko re-sheathes his sword while the man slides backward and runs away, panting heavily in fear. +A second Earth Kingdom soldier groans and runs to attack Zuko with his spear this time. Zuko punches the spear upward to move it out of the way, grabs onto the man's forehead, and shoves him to the ground. The man gets up slowly and flees as well. +A third Earth Kingdom soldier charges toward Zuko with his spear as well. Zuko stands there, waiting, until the spear is close enough and kicks the spear right in the middle, snapping it. The spearhead, along with half of the spear, goes flying in the other direction. The soldier gasps and runs away from Zuko like the two men before him. Lee laughs in satisfaction. A crowd has gathered; Sela's worried face is one of many. +With the last of his cronies gone, Gow steps up to the plate to fight Zuko, dual hammers against dual swords. They draw their weapons, and Gow throws the first blow, a rock he has earthbent, and powerfully thrusts over to Zuko. Zuko deflects it readily with his swords. Gow strikes again, this time with three large rocks instead of one. He sends them over in rapid succession to Zuko, who deflects the first two easily. However, the third rock hits him in the stomach and he stumbles backward. This does not dismay him though, so he charges Gow. An old man in the crowd cheers him on.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6213,6213,Earth,2,Zuko Alone,7,Old man,Give him a left! A left!,Give him a left! A left!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6214,6214,Earth,2,Zuko Alone,7,Old woman,It's not a fistfight ...,It's not a fistfight ...,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6215,6215,Earth,2,Zuko Alone,7,Old man,"He's got a left sword, don't he?","He's got a left sword, don't he?",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6216,6216,Earth,2,Zuko Alone,7,Scene Description,"Gow does the same earthbending trick as earlier; he throws three large rocks at Zuko. Zuko responds the same as before, deflecting the first two but the third one hitting him square in the abdomen. However, this time, he falls over and somersaults backward, and manages to get up, although weakened and still stumbling around. Gow smiles.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6217,6217,Earth,2,Zuko Alone,7,Old man,Look out!,Look out!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6218,6218,Earth,2,Zuko Alone,7,Lee,Behind you!,Behind you!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6219,6219,Earth,2,Zuko Alone,7,Scene Description,"Gow earthbends again, but with increasingly larger rocks each time. He shoots four rocks at Zuko, who manages to destroy each, one by one. It continues this way, Gow no longer giving little recovery breaks to Zuko. Both are fighting at full force, although Zuko is so busy being defensive of the large flying rocks that he cannot become offensive to Gow. However, finally Gow creates a rockalanche and directs it at Zuko. The crowd gasps collectively. Zuko is sent flying and lands straight on his back, and has a sudden flashback. +In the flashback, Zuko is sleeping in his room at night when a hand gently touches his shoulder. He awakens drowsily to see his mother dressed in a cloak.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6220,6220,Earth,2,Zuko Alone,7,Young Zuko,... Mom?,... Mom?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6221,6221,Earth,2,Zuko Alone,7,Ursa,"Zuko, please, my love, listen to me. Everything I've done, I've done to protect you.","Zuko, please, my love, listen to me. Everything I've done, I've done to protect you.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6222,6222,Earth,2,Zuko Alone,7,Scene Description,She pulls the barely conscious Zuko into a hug.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6223,6223,Earth,2,Zuko Alone,7,Ursa,"Remember this, Zuko. No matter how things may seem to change, never forget who you are.","Remember this, Zuko. No matter how things may seem to change, never forget who you are.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6224,6224,Earth,2,Zuko Alone,7,Scene Description,"She turns away from him with a sad smile, pulls her hood up and disappears down the dark hallway; it is the flashback Zuko had at the very beginning of the episode. +The flashback ends as suddenly as it begin, and we cut back to Zuko in the Earth Kingdom village, lying on the ground. Gow is approaching him.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6225,6225,Earth,2,Zuko Alone,7,Lee,[Whispers worriedly.] Get up ...!,Get up ...!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6226,6226,Earth,2,Zuko Alone,7,Scene Description,"Gow raises his hammers to deliver the final blow when Zuko's eyes open. He reaches for his swords and gets up firebending, creating a hurricane of flame. Gow drops his hammers and is pushed over, and lands on his back. Zuko stands there, seething at Gow. Although unarmed, Gow stands up and raises his fists, determined to finish the fight. Zuko charges him, sending various fire blasts. Gow tries to deflect them with earthbending, but the blasts are too powerful and he is sent backward again. Rocks hit his head as he lands in with a cloud of dust.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6227,6227,Earth,2,Zuko Alone,7,Gow,Who ... who are you?,Who ... who are you?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6228,6228,Earth,2,Zuko Alone,7,Zuko,"My name is Zuko. Son of Ursa and Fire Lord Ozai. Prince of the Fire Nation, and heir to the throne.","My name is Zuko. Son of Ursa and Fire Lord Ozai. Prince of the Fire Nation, and heir to the throne.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6229,6229,Earth,2,Zuko Alone,7,Old man,"Liar! I heard of you! You're not a prince, you're an outcast! His own father burned and disowned him!","Liar! I heard of you! You're not a prince, you're an outcast! His own father burned and disowned him!",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6230,6230,Earth,2,Zuko Alone,7,Scene Description,"Zuko kneels down toward Gow, who shudders in fear. However, Zuko does nothing to harm him; he only takes Lee's dagger back. Zuko walks toward Lee to give it back, but Sela (who had been untying Lee) intervenes.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6231,6231,Earth,2,Zuko Alone,7,Sela,Not a step closer.,Not a step closer.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6232,6232,Earth,2,Zuko Alone,7,Zuko,"[Zuko kneels down in front of Sela, with Lee peeking around his mother's back, offering the knife.] It's yours. You should have it.",It's yours. You should have it.,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6233,6233,Earth,2,Zuko Alone,7,Lee,No! I hate you!,No! I hate you!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6234,6234,Earth,2,Zuko Alone,7,Scene Description,Zuko has another flashback. It is probably early morning and he is in his bed in his room. He wakes with a start.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6235,6235,Earth,2,Zuko Alone,7,Young Zuko,Mom? [Zuko leaps out of bed and runs out of his room down the hallway.] Mom? Mom!,Mom? Mom? Mom!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6236,6236,Earth,2,Zuko Alone,7,Scene Description,"Zuko enters a pillared room, where Azula is admiring Zuko's dagger from behind a pillar. She re-sheathes it and steps out to face Zuko.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6237,6237,Earth,2,Zuko Alone,7,Young Zuko,Where's Mom?,Where's Mom?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6238,6238,Earth,2,Zuko Alone,7,Young Azula,"No one knows. Oh, and last night, Grandpa passed away.","No one knows. Oh, and last night, Grandpa passed away.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6239,6239,Earth,2,Zuko Alone,7,Young Zuko,"Not funny, Azula! You're sick. And I want my knife back, now. [Zuko tries to grab it, but misses as Azula quickly moves out of the way, and loudly grunts.]","Not funny, Azula! You're sick. And I want my knife back, now.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6240,6240,Earth,2,Zuko Alone,7,Young Azula,[Tauntingly.] Who's going to make me? Mom?,Who's going to make me? Mom?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6241,6241,Earth,2,Zuko Alone,7,Scene Description,"Zuko dashes forward and grabs his knife from Azula, who was dangling in a tantalizing manner. He runs away to keep looking. Zuko reaches the garden where his father is standing still, staring into a pond.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6242,6242,Earth,2,Zuko Alone,7,Young Zuko,Where is she?,Where is she?,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6243,6243,Earth,2,Zuko Alone,7,Scene Description,"Ozai does not acknowledge that he has heard Zuko. Zuko bows his head. +The scene switches to the palace from the outside on the stairs, outside at night. Row upon row of people standing on the palace grounds, wearing red hooded cloaks and carrying long, red, rectangular flags. At the top of the steps to the palace, a Fire Sage leader dressed in red, with several other Fire Sages in white behind him. There is an elaborate coffin behind him as well. Zuko, Azula, and Ozai are standing to his right.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6244,6244,Earth,2,Zuko Alone,7,Fire Sage,"Azulon. Fire Lord to our nation for twenty-three years. You were our fearless leader in the Battle of Garsai. Our matchless conqueror of the Hu Xin Provinces. You were father of Iroh, father of Ozai, husband of Ilah, now passed. Grandfather of Lu Ten, now passed. Grandfather of Zuko, and Azula. We lay you to rest.","Azulon. Fire Lord to our nation for twenty-three years. You were our fearless leader in the Battle of Garsai. Our matchless conqueror of the Hu Xin Provinces. You were father of Iroh, father of Ozai, husband of Ilah, now passed. Grandfather of Lu Ten, now passed. Grandfather of Zuko, and Azula. We lay you to rest.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6245,6245,Earth,2,Zuko Alone,7,Scene Description,"With those words, two attendants in white firebend Azulon's coffin, which was on a layer of wood so it burns easily. The Fire Sage holds up the fire crown.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6246,6246,Earth,2,Zuko Alone,7,Fire Sage,"As was your dying wish, you are now succeeded by your second son.","As was your dying wish, you are now succeeded by your second son.",Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6247,6247,Earth,2,Zuko Alone,7,Scene Description,He places the fire crown in Ozai's top knot and steps away.,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6248,6248,Earth,2,Zuko Alone,7,Fire Sage,Hail Fire Lord Ozai!,Hail Fire Lord Ozai!,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6249,6249,Earth,2,Zuko Alone,7,Scene Description,"Ozai stands up, and the group of mourners wearing red and holding flags all kneel down at once, as do the Fire Sages behind him and Zuko and Azula. Azula is smiling wickedly at this new development. Zuko looks over at her and the crowd with absolute fear in his eyes. The flashback ends. +Zuko rides out of the Earth Kingdom village on his stolen ostrich horse. The villagers stand in lines on either side of him with various possible weapons in their hands: a hoe, a pitchfork, a rock for throwing. They watch him leave with anger and hatred in their eyes. As Zuko passes Lee, the boy looks the other way. Zuko ignores them, and rides off into the sunset, just as alone as when he arrived.",NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6250,6250,Earth,2,Zuko Alone,7,Scene Description,Fade to credits,NA,Elizabeth Welch Ehasz,Lauren MacMullan,9.5 +6251,6251,Earth,2,The Chase,8,Scene Description,"The episode opens to a forested area at sunset. The camera pans downward to show Team Avatar, now including Toph, preparing to set up the campsite. Aang hands Sokka a sleeping bag. Toph stands on the ground near Appa.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6252,6252,Earth,2,The Chase,8,Toph,Hey! You guys picked a great campsite. [This directs everyone's attention to her. She wriggles her toes in the thick mat of fur covering the ground around the bison.] The grass is so soft.,Hey! You guys picked a great campsite. The grass is so soft.,Joshua Hamilton,Giancarlo Volpe,9 +6253,6253,Earth,2,The Chase,8,Sokka,That's not grass. [Somewhat displeased.]  Appa's shedding.,That's not grass.   Appa's shedding.,Joshua Hamilton,Giancarlo Volpe,9 +6254,6254,Earth,2,The Chase,8,Katara,"[Displeased, raises foot warily.] Oh, gross!","Oh, gross!",Joshua Hamilton,Giancarlo Volpe,9 +6255,6255,Earth,2,The Chase,8,Scene Description,"Cuts to Aang sitting on Appa, a bluebird perched on his head and a yellow butterfly fluttering past. Momo jumps up in an attempt to catch the butterfly.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6256,6256,Earth,2,The Chase,8,Aang,"[Cheerfully.] That's not gross, it's just a part of spring! You know, rebirth, flowers blooming and Appa gets a new coat.","That's not gross, it's just a part of spring! You know, rebirth, flowers blooming and Appa gets a new coat.",Joshua Hamilton,Giancarlo Volpe,9 +6257,6257,Earth,2,The Chase,8,Katara,"[Sarcastically.] Ah, the beauty of spring.","Ah, the beauty of spring.",Joshua Hamilton,Giancarlo Volpe,9 +6258,6258,Earth,2,The Chase,8,Scene Description,"Appa, who had currently been grooming himself, sneezes, releasing a thick cloud of fur.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6259,6259,Earth,2,The Chase,8,Katara,"[Waving arms about, now coated in fur.] Stop! Appa, stop! Ugh! [Coughs.]","Stop! Appa, stop! Ugh!",Joshua Hamilton,Giancarlo Volpe,9 +6260,6260,Earth,2,The Chase,8,Sokka,"[Bending over, his back turned to her.] It's not that bad, Katara. [He turns to reveal a wig made of fur, done up in a towering beehive.] It makes a great wig!","It's not that bad, Katara. It makes a great wig!",Joshua Hamilton,Giancarlo Volpe,9 +6261,6261,Earth,2,The Chase,8,Aang,[Wearing a beard of fur.] And a great beard! [Aang and Sokka laugh while pointing at each other.],And a great beard!,Joshua Hamilton,Giancarlo Volpe,9 +6262,6262,Earth,2,The Chase,8,Katara,"[Wiping fur off her clothing with her eyes closed.] I'm just glad we finally have another girl in the group, because you two are disgusting.","I'm just glad we finally have another girl in the group, because you two are disgusting.",Joshua Hamilton,Giancarlo Volpe,9 +6263,6263,Earth,2,The Chase,8,Toph,"[Walking up from behind the two boys.] Excuse me, does anyone have a razor? Because I've got some hairy pits!","Excuse me, does anyone have a razor? Because I've got some hairy pits!",Joshua Hamilton,Giancarlo Volpe,9 +6264,6264,Earth,2,The Chase,8,Scene Description,"She raises her arms, revealing that she had stuffed fur in her sleeves. The three laugh; Aang sneezes, sending himself flying backward. The big sneeze causes him to crash against Appa's leg and for fur to blow off his friends and himself. The impact leaves some fur on his back. They continue to laugh joyfully, causing Katara to chuckle slightly. The scene cuts to later in the evening where the group is setting up camp. Aang sets up the tent while Sokka throws down a pile of firewood he collected. Katara, who spends her time stirring around water in a pot, notices Toph slumped lazily against a rock, chewing a piece of wheat. She approaches her.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6265,6265,Earth,2,The Chase,8,Katara,"So Toph, usually when setting up camp, we try to divide up the work.","So Toph, usually when setting up camp, we try to divide up the work.",Joshua Hamilton,Giancarlo Volpe,9 +6266,6266,Earth,2,The Chase,8,Toph,"[Shrugging casually.] Hey, don't worry about me. I'm good to go.","Hey, don't worry about me. I'm good to go.",Joshua Hamilton,Giancarlo Volpe,9 +6267,6267,Earth,2,The Chase,8,Katara,"Well, actually what I'm trying to say is, [Holds arms out in gesture.] some of us might fetch water, while someone else might set up the fire pit, or put up the tent. [Momo flies over to her, dropping several berries he had collected into her hands.] Even Momo does his fair share.","Well, actually what I'm trying to say is, some of us might fetch water, while someone else might set up the fire pit, or put up the tent. Even Momo does his fair share.",Joshua Hamilton,Giancarlo Volpe,9 +6268,6268,Earth,2,The Chase,8,Toph,"[Breezily.] Katara, I'm fine. I can carry my own weight. I don't need a fire, [Pats bag.] I've already collected my own food and look, [Earthbends a rock tent over her.] my tent's all set up.","Katara, I'm fine. I can carry my own weight. I don't need a fire, I've already collected my own food and look, my tent's all set up.",Joshua Hamilton,Giancarlo Volpe,9 +6269,6269,Earth,2,The Chase,8,Katara,"[Slightly irritated.] Well, that's great for you, but we still need to finish -","Well, that's great for you, but we still need to finish -",Joshua Hamilton,Giancarlo Volpe,9 +6270,6270,Earth,2,The Chase,8,Toph,[Angered.] I don't understand what's the problem here!,I don't understand what's the problem here!,Joshua Hamilton,Giancarlo Volpe,9 +6271,6271,Earth,2,The Chase,8,Katara,[Waves her hand dismissively and walks away.] Never mind.,Never mind.,Joshua Hamilton,Giancarlo Volpe,9 +6272,6272,Earth,2,The Chase,8,Scene Description,"Toph earthbends herself into her tent. Later that day, set up continues. Standing on top of Appa, Aang uses airbending to lift the saddle. He mistakenly causes it to land directly on top of Sokka, who had been standing on the ground beside the bison.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6273,6273,Earth,2,The Chase,8,Aang,[Landing onto the ground to aid Sokka.] Sorry!,Sorry!,Joshua Hamilton,Giancarlo Volpe,9 +6274,6274,Earth,2,The Chase,8,Scene Description,"Cuts to Katara, who sets down a jug of water. She looks over at Toph, sitting comfortably beneath her earth tent. Her dull expression changes to one of slight happiness. She approaches Toph who is eating some sort of food item.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6275,6275,Earth,2,The Chase,8,Katara,"[Rubs back of head sheepishly.] Hey Toph, I wanted to apologize for earlier. I think we're all just a little tired and getting on each other's nerves.","Hey Toph, I wanted to apologize for earlier. I think we're all just a little tired and getting on each other's nerves.",Joshua Hamilton,Giancarlo Volpe,9 +6276,6276,Earth,2,The Chase,8,Toph,"[Casually.] Yeah, you do seem pretty tired.","Yeah, you do seem pretty tired.",Joshua Hamilton,Giancarlo Volpe,9 +6277,6277,Earth,2,The Chase,8,Katara,[Growing disgusted.] I meant all of us.,I meant all of us.,Joshua Hamilton,Giancarlo Volpe,9 +6278,6278,Earth,2,The Chase,8,Scene Description,Cuts to shot of inside Toph's earth tent as she lazily tosses the food item onto the ground and lays her head down to rest.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6279,6279,Earth,2,The Chase,8,Toph,"Well, good night.","Well, good night.",Joshua Hamilton,Giancarlo Volpe,9 +6280,6280,Earth,2,The Chase,8,Katara,[Slightly irked.] Good night.,Good night.,Joshua Hamilton,Giancarlo Volpe,9 +6281,6281,Earth,2,The Chase,8,Scene Description,"Katara turns around and leaves. The scene changes to nightfall hours later where everyone is asleep. Toph is suddenly startled awake. She rises and presses her left hand to the ground to feel the vibrations within the earth. Close-up on her left hand and ear, indicating she hears something. She rises to her feet and runs out of the tent.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6282,6282,Earth,2,The Chase,8,Toph,There's something coming toward us!,There's something coming toward us!,Joshua Hamilton,Giancarlo Volpe,9 +6283,6283,Earth,2,The Chase,8,Aang,What is it?,What is it?,Joshua Hamilton,Giancarlo Volpe,9 +6284,6284,Earth,2,The Chase,8,Toph,"[Pressing hand to the ground.] It feels like an avalanche, but also not an avalanche.","It feels like an avalanche, but also not an avalanche.",Joshua Hamilton,Giancarlo Volpe,9 +6285,6285,Earth,2,The Chase,8,Sokka,[Sarcastically.] Your powers of perception are frightening.,Your powers of perception are frightening.,Joshua Hamilton,Giancarlo Volpe,9 +6286,6286,Earth,2,The Chase,8,Katara,Should we leave?,Should we leave?,Joshua Hamilton,Giancarlo Volpe,9 +6287,6287,Earth,2,The Chase,8,Aang,Better safe than sorry.,Better safe than sorry.,Joshua Hamilton,Giancarlo Volpe,9 +6288,6288,Earth,2,The Chase,8,Scene Description,"Cuts to shot of the forest, a cloud of smoke billowing toward them in a clearing in the distance. Appa appears on screen, the team riding atop him. Aang leans against the saddle to peer at the object.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6289,6289,Earth,2,The Chase,8,Katara,What is that thing?,What is that thing?,Joshua Hamilton,Giancarlo Volpe,9 +6290,6290,Earth,2,The Chase,8,Scene Description,"Cuts to a shot of a tank train mechanism racing speedily along the ground. Cuts to shot of the night sky, the moon partly obscured by clouds. Cuts to Aang who yawns sleepily, dark circles beginning to form under his eyes. Cuts to Sokka who appears ready to fall asleep as he leans his head on his hand. Cuts to Toph and Katara sitting on Appa's saddle idly. Cuts to Appa who flies over mountainous terrain and lands on a smooth, rocky surface.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6291,6291,Earth,2,The Chase,8,Toph,"[Leaping off Appa and lying on the ground, relieved.] Ah, land sweet land! [Rises and says cheerfully.] See you guys in the morning!","Ah, land sweet land! See you guys in the morning!",Joshua Hamilton,Giancarlo Volpe,9 +6292,6292,Earth,2,The Chase,8,Katara,"Actually, can you help us unload?","Actually, can you help us unload?",Joshua Hamilton,Giancarlo Volpe,9 +6293,6293,Earth,2,The Chase,8,Toph,[Sarcastically.] Really? You need me to help unload Sokka's funky-smelling sleeping bag?,Really? You need me to help unload Sokka's funky-smelling sleeping bag?,Joshua Hamilton,Giancarlo Volpe,9 +6294,6294,Earth,2,The Chase,8,Scene Description,"Aang hands Sokka his sleeping bag which he proceeds to smell. Sokka turns away, his disgusted face growing red, and falls backward, passing out.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6295,6295,Earth,2,The Chase,8,Katara,"[Curtly.] Well, yeah. That and everything else. You're a part of our team now, and -","Well, yeah. That and everything else. You're a part of our team now, and -",Joshua Hamilton,Giancarlo Volpe,9 +6296,6296,Earth,2,The Chase,8,Toph,[Points a finger at Katara in irritation.] Look! I didn't ask you to help unload my stuff! [Turns and begins walking away.] I'm carrying my own weight.,Look! I didn't ask you to help unload my stuff! I'm carrying my own weight.,Joshua Hamilton,Giancarlo Volpe,9 +6297,6297,Earth,2,The Chase,8,Katara,"[Angrily.] That's not the point. [Approaches Toph.] Ever since you joined us, you've been nothing but selfish and unhelpful!","That's not the point. Ever since you joined us, you've been nothing but selfish and unhelpful!",Joshua Hamilton,Giancarlo Volpe,9 +6298,6298,Earth,2,The Chase,8,Toph,"[Enraged.] What? Look here, sugar queen, [Points finger at Katara.] I gave up everything I had so that I could teach Aang earthbending. So don't you talk to me about being selfish!","What? Look here, sugar queen, I gave up everything I had so that I could teach Aang earthbending. So don't you talk to me about being selfish!",Joshua Hamilton,Giancarlo Volpe,9 +6299,6299,Earth,2,The Chase,8,Scene Description,"While she is saying this, a fuming Katara is seen tensing her muscles in frustration and raising her hand in an attempt to speak. After finished speaking, Toph sits down on the ground and earthbends an earth tent over her.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6300,6300,Earth,2,The Chase,8,Katara,"[Furiously.] ""Sugar queen""?! [Toph uses earthbending to close the door of the tent.] D-did you just slam the door in my face?! How can you be so infuriating?!","""Sugar queen""?!  D-did you just slam the door in my face?! How can you be so infuriating?!",Joshua Hamilton,Giancarlo Volpe,9 +6301,6301,Earth,2,The Chase,8,Scene Description,Cuts to shot of Sokka and Aang standing several feet away. Katara angrily bangs her fists against the door of the wall and kicks the tent's walls with her feet.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6302,6302,Earth,2,The Chase,8,Aang,Should we do something?,Should we do something?,Joshua Hamilton,Giancarlo Volpe,9 +6303,6303,Earth,2,The Chase,8,Sokka,"[Amused.] Hey, I'm just enjoying the show.","Hey, I'm just enjoying the show.",Joshua Hamilton,Giancarlo Volpe,9 +6304,6304,Earth,2,The Chase,8,Aang,"[Approaching Katara.] Okay, okay, you both need to calm down.","Okay, okay, you both need to calm down.",Joshua Hamilton,Giancarlo Volpe,9 +6305,6305,Earth,2,The Chase,8,Katara,"""Both""?! [Rapidly turns to face Aang, her expression crazed and her eyes bloodshot.] I'm completely calm!!","""Both""?! I'm completely calm!!",Joshua Hamilton,Giancarlo Volpe,9 +6306,6306,Earth,2,The Chase,8,Aang,[Awkwardly.] I ... can see that. [Backs off.],I ... can see that.,Joshua Hamilton,Giancarlo Volpe,9 +6307,6307,Earth,2,The Chase,8,Scene Description,"The scene cuts to later at night, showing shot of the dark forest. Cuts to shot of Aang, Sokka and Katara lying on the ground. Aang is lying on the ground with Momo beside him while Sokka and Katara lie in sleeping bags.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6308,6308,Earth,2,The Chase,8,Katara,"[Mockingly.] The stars sure are beautiful tonight. Too bad you can't see them, Toph!","The stars sure are beautiful tonight. Too bad you can't see them, Toph!",Joshua Hamilton,Giancarlo Volpe,9 +6309,6309,Earth,2,The Chase,8,Scene Description,"Toph uses earthbending to release a fissure that channels underground and sends Katara flying into the air. She lands on top of Sokka, startling him.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6310,6310,Earth,2,The Chase,8,Sokka,"[Annoyed; pushes Katara off to the side.] Hey, how's a guy supposed to sleep with all this yelling [To Toph.] and earthquaking?","Hey, how's a guy supposed to sleep with all this yelling and earthquaking?",Joshua Hamilton,Giancarlo Volpe,9 +6311,6311,Earth,2,The Chase,8,Toph,[Reopens her tent.] That thing is back!,That thing is back!,Joshua Hamilton,Giancarlo Volpe,9 +6312,6312,Earth,2,The Chase,8,Sokka,"Well, how far away is it? [Lies down and pulls covers of his sleeping bag over his head; says in a muffled voice.] Maybe we can close our eyes just for a few minutes.","Well, how far away is it? Maybe we can close our eyes just for a few minutes.",Joshua Hamilton,Giancarlo Volpe,9 +6313,6313,Earth,2,The Chase,8,Scene Description,The camera pans upward to reveal smoke billowing from behind the treetops.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6314,6314,Earth,2,The Chase,8,Aang,"[Notices the smoke.] I don't think so, Sokka.","I don't think so, Sokka.",Joshua Hamilton,Giancarlo Volpe,9 +6315,6315,Earth,2,The Chase,8,Scene Description,Cuts to a shot of Appa soaring away from the scene over the mountainous terrain. Cuts to a side-view of the tank train speeding across the land.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6316,6316,Earth,2,The Chase,8,Katara,"Seriously, what is that thing?","Seriously, what is that thing?",Joshua Hamilton,Giancarlo Volpe,9 +6317,6317,Earth,2,The Chase,8,Toph,And how does it keep finding us?,And how does it keep finding us?,Joshua Hamilton,Giancarlo Volpe,9 +6318,6318,Earth,2,The Chase,8,Aang,"[Resting against the saddle; Sokka is seen lying on his back, sleeping.] I don't know. But this time, I'm going to make sure we lose it.","I don't know. But this time, I'm going to make sure we lose it.",Joshua Hamilton,Giancarlo Volpe,9 +6319,6319,Earth,2,The Chase,8,Scene Description,"Cuts to a side-view of Appa flying past a mountain. Fades to scene of him flying between two mountain ridges. The bison lands on his side on a flat-surfaced rock bed, throwing everyone onto the ground along with their belongings.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6320,6320,Earth,2,The Chase,8,Sokka,"[Lands onto the ground.] Okay, forget about setting up camp. [Crawls along the ground in sleeping bag.] I'm finding the softest pile of dirt and going to sleep.","Okay, forget about setting up camp. I'm finding the softest pile of dirt and going to sleep.",Joshua Hamilton,Giancarlo Volpe,9 +6321,6321,Earth,2,The Chase,8,Katara,[Angrily; pulling her sleeping bag under her head as a pillow.] That's good because Toph wasn't going to help anyway!,That's good because Toph wasn't going to help anyway!,Joshua Hamilton,Giancarlo Volpe,9 +6322,6322,Earth,2,The Chase,8,Toph,"[Irritated; lying on bag.] Oh, I didn't realize the baby still needed someone to tuck her in bed.","Oh, I didn't realize the baby still needed someone to tuck her in bed.",Joshua Hamilton,Giancarlo Volpe,9 +6323,6323,Earth,2,The Chase,8,Aang,"Come on guys, there's something after us and we don't even know what [Pulls top part of his shirt over his head; says in a muffled voice.] or who it is.","Come on guys, there's something after us and we don't even know what or who it is.",Joshua Hamilton,Giancarlo Volpe,9 +6324,6324,Earth,2,The Chase,8,Katara,It could be Zuko. [Rolls over on her side.] We haven't seem him since the North Pole.,It could be Zuko. We haven't seem him since the North Pole.,Joshua Hamilton,Giancarlo Volpe,9 +6325,6325,Earth,2,The Chase,8,Toph,Who's Zuko?,Who's Zuko?,Joshua Hamilton,Giancarlo Volpe,9 +6326,6326,Earth,2,The Chase,8,Sokka,"[Puts his head down.] Oh, just some angry freak with a ponytail who's tracked us all over the world.","Oh, just some angry freak with a ponytail who's tracked us all over the world.",Joshua Hamilton,Giancarlo Volpe,9 +6327,6327,Earth,2,The Chase,8,Katara,"[Mockingly.] What's wrong with ponytails, Ponytail?","What's wrong with ponytails, Ponytail?",Joshua Hamilton,Giancarlo Volpe,9 +6328,6328,Earth,2,The Chase,8,Sokka,[Points to his top-knot.] This is a warrior's wolf tail.,This is a warrior's wolf tail.,Joshua Hamilton,Giancarlo Volpe,9 +6329,6329,Earth,2,The Chase,8,Katara,"[Jokingly.] Well, it certainly tells the other warriors that you're fun and perky.","Well, it certainly tells the other warriors that you're fun and perky.",Joshua Hamilton,Giancarlo Volpe,9 +6330,6330,Earth,2,The Chase,8,Sokka,"[Raises head, unamused.] Anyway, whoever's chasing us couldn't have followed us here, so, now would everyone just shhh?","Anyway, whoever's chasing us couldn't have followed us here, so, now would everyone just shhh?",Joshua Hamilton,Giancarlo Volpe,9 +6331,6331,Earth,2,The Chase,8,Scene Description,Momo hops onto his sleeping bag and chitters excitedly.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6332,6332,Earth,2,The Chase,8,Sokka,"[Hold up finger to silence the lemur.] No Momo, shhh. [Relaxes.] Sleepy time.","No Momo, shhh. Sleepy time.",Joshua Hamilton,Giancarlo Volpe,9 +6333,6333,Earth,2,The Chase,8,Scene Description,"Momo hops off Sokka and over to the ledge of the rock. He continues to chitter and raises his ears up in alert. Aang rises, followed by Toph and Katara.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6334,6334,Earth,2,The Chase,8,Sokka,"[Buries face in hands.] Oh, don't tell me ...","Oh, don't tell me ...",Joshua Hamilton,Giancarlo Volpe,9 +6335,6335,Earth,2,The Chase,8,Aang,That's impossible. There's no way they could have tracked us.,That's impossible. There's no way they could have tracked us.,Joshua Hamilton,Giancarlo Volpe,9 +6336,6336,Earth,2,The Chase,8,Toph,I can feel it with my own two feet!,I can feel it with my own two feet!,Joshua Hamilton,Giancarlo Volpe,9 +6337,6337,Earth,2,The Chase,8,Scene Description,Aang runs to the edge of the cliff next to Momo and notices smoke rising from the far end of the rocky pathway. Cuts to a shot of the tank train as it rumbles up a slope and onto level ground.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6338,6338,Earth,2,The Chase,8,Katara,[Nervously.] Let's get out of here.,Let's get out of here.,Joshua Hamilton,Giancarlo Volpe,9 +6339,6339,Earth,2,The Chase,8,Aang,"[Calmly.] Maybe we should face them. Find out who they are. Who knows, maybe they're friendly.","Maybe we should face them. Find out who they are. Who knows, maybe they're friendly.",Joshua Hamilton,Giancarlo Volpe,9 +6340,6340,Earth,2,The Chase,8,Sokka,[Hopelessly.] Always the optimist ...,Always the optimist ...,Joshua Hamilton,Giancarlo Volpe,9 +6341,6341,Earth,2,The Chase,8,Scene Description,"Cuts to a side-view of the tank train as it slows to a halt. The door to one compartment opens, releasing a burst of steam. From the mist emerges three Mongoose Lizards. Cuts to side-view as Ty Lee appears on screen, followed by Mai and Azula. Cuts to shot of Katara and Aang looking on in shock. The camera pans downward to where the three girls stand atop the Lizards. Cuts to shot of Azula, a determined look on her face. The three begin racing toward the group.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6342,6342,Earth,2,The Chase,8,Katara,[Alarmed.] It's those three girls from Omashu!,It's those three girls from Omashu!,Joshua Hamilton,Giancarlo Volpe,9 +6343,6343,Earth,2,The Chase,8,Scene Description,Everyone assumes fighting stances.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6344,6344,Earth,2,The Chase,8,Toph,[Determined.] We can take them. Three on three.,We can take them. Three on three.,Joshua Hamilton,Giancarlo Volpe,9 +6345,6345,Earth,2,The Chase,8,Sokka,"Actually Toph, there's four of us.","Actually Toph, there's four of us.",Joshua Hamilton,Giancarlo Volpe,9 +6346,6346,Earth,2,The Chase,8,Toph,"[Sheepishly.] Oh, I'm sorry, I didn't count you. You know, no bending and all.","Oh, I'm sorry, I didn't count you. You know, no bending and all.",Joshua Hamilton,Giancarlo Volpe,9 +6347,6347,Earth,2,The Chase,8,Sokka,"[Turning to her, his face distorted with rage.] I can still fight!",I can still fight!,Joshua Hamilton,Giancarlo Volpe,9 +6348,6348,Earth,2,The Chase,8,Toph,"[Smugly.] Okay, three on three plus Sokka.","Okay, three on three plus Sokka.",Joshua Hamilton,Giancarlo Volpe,9 +6349,6349,Earth,2,The Chase,8,Sokka,[Face turns red.] Errrgh!,Errrgh!,Joshua Hamilton,Giancarlo Volpe,9 +6350,6350,Earth,2,The Chase,8,Scene Description,"Toph earthbends three columns in an attempt to hinder the girls, however, the Mongoose Lizards merely leap over the pillars and continues on their way.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6351,6351,Earth,2,The Chase,8,Sokka,"Well, we wanted to find out who they were and we found out. [Puts boomerang away; Aang and Katara are seen fleeing.] Now let's get out of here.","Well, we wanted to find out who they were and we found out. Now let's get out of here.",Joshua Hamilton,Giancarlo Volpe,9 +6352,6352,Earth,2,The Chase,8,Scene Description,"Toph earthbends a huge rock wall in front of the trio. Cuts to Azula who moves her arms in a circular motion, generating lightning. She fires the bolt at the wall, blowing a huge hole in it. Shows the lizards as they clamber through the hole. Toph is clearly shocked at this. Cuts to Mai who swings her arm, releasing a flurry of stilettos. Toph launches herself off a pillar. The darts strike the pillar and she lands on Appa.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6353,6353,Earth,2,The Chase,8,Aang,"Appa, yip yip!","Appa, yip yip!",Joshua Hamilton,Giancarlo Volpe,9 +6354,6354,Earth,2,The Chase,8,Scene Description,"They manage to escape successfully, narrowly avoiding a blue fire blast. Cuts to shot of Azula who lowers her arm and looks up at the retreating group. Cuts to a sleepy Appa.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6355,6355,Earth,2,The Chase,8,Katara,[Shocked.] I can't believe those girls followed us all the way from Omashu.,I can't believe those girls followed us all the way from Omashu.,Joshua Hamilton,Giancarlo Volpe,9 +6356,6356,Earth,2,The Chase,8,Toph,[Grumpily.] I still think we could have taken them.,I still think we could have taken them.,Joshua Hamilton,Giancarlo Volpe,9 +6357,6357,Earth,2,The Chase,8,Katara,"Are you kidding me? [Points fingers upward repeatedly in gesture.] The crazy blue firebending and the flying daggers are bad enough, but last time we saw them, one of those girls did something that took my bending away. That's scary.","Are you kidding me? The crazy blue firebending and the flying daggers are bad enough, but last time we saw them, one of those girls did something that took my bending away. That's scary.",Joshua Hamilton,Giancarlo Volpe,9 +6358,6358,Earth,2,The Chase,8,Scene Description,"The scene cuts to a shot of the landscape, a prairie below, mountains in the distance. The sun is seen rising over the horizon as Appa soars past.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6359,6359,Earth,2,The Chase,8,Sokka,"[Complaining.] Oh no, the sun is rising. We've been up all night with no sleep!","Oh no, the sun is rising. We've been up all night with no sleep!",Joshua Hamilton,Giancarlo Volpe,9 +6360,6360,Earth,2,The Chase,8,Aang,"[Calmly.] Sokka, we'll be okay.","Sokka, we'll be okay.",Joshua Hamilton,Giancarlo Volpe,9 +6361,6361,Earth,2,The Chase,8,Sokka,[Nervously.] Are you sure? I've never not slept before! [Holds hands up to his head.] What if I fall asleep now and something happens? [Freaks out; eyes bulge out.] And something always happens!,Are you sure? I've never not slept before! What if I fall asleep now and something happens? And something always happens!,Joshua Hamilton,Giancarlo Volpe,9 +6362,6362,Earth,2,The Chase,8,Katara,"Every time we land, those girls are there. So we'll just have to keep flying.","Every time we land, those girls are there. So we'll just have to keep flying.",Joshua Hamilton,Giancarlo Volpe,9 +6363,6363,Earth,2,The Chase,8,Scene Description,Cuts to shot of Appa flying past the sun.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6364,6364,Earth,2,The Chase,8,Aang,We can't keep flying forever.,We can't keep flying forever.,Joshua Hamilton,Giancarlo Volpe,9 +6365,6365,Earth,2,The Chase,8,Scene Description,"The scene changes to a field where a few flowers are growing. The tank train speeds by rapidly, slicing the heads of the flowers off. Cuts to ground level, indentation marks from the train in the ground and a pair of ostrich horse legs galloping by. Zuko is seen riding on his ostrich horse, a look of determination on his face. Cuts to an overhead view of him running to the left of the indentation marks. The scene changes back to Appa.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6366,6366,Earth,2,The Chase,8,Aang,[Yawns.] So what's our plan?,So what's our plan?,Joshua Hamilton,Giancarlo Volpe,9 +6367,6367,Earth,2,The Chase,8,Toph,"[Slumped against the saddle, exhausted.] Don't know ... too tired to think.",Don't know ... too tired to think.,Joshua Hamilton,Giancarlo Volpe,9 +6368,6368,Earth,2,The Chase,8,Katara,I'm sure we'll come up with something after a short nap. [Smiles.],I'm sure we'll come up with something after a short nap.,Joshua Hamilton,Giancarlo Volpe,9 +6369,6369,Earth,2,The Chase,8,Sokka,[Relieved.] Yes ... sleep.,Yes ... sleep.,Joshua Hamilton,Giancarlo Volpe,9 +6370,6370,Earth,2,The Chase,8,Scene Description,"The two begin nodding off before slowly rising into the air, wind blowing through their clothing as they lose altitude. The camera pans to the right, showing Toph hanging onto the saddle.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6371,6371,Earth,2,The Chase,8,Toph,[Frantically.] What's going on?,What's going on?,Joshua Hamilton,Giancarlo Volpe,9 +6372,6372,Earth,2,The Chase,8,Scene Description,"Camera pans to the right to reveal Aang hanging in the air, gripping Appa's reins tightly.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6373,6373,Earth,2,The Chase,8,Aang,Appa fell asleep!,Appa fell asleep!,Joshua Hamilton,Giancarlo Volpe,9 +6374,6374,Earth,2,The Chase,8,Scene Description,"Cuts to shot of Appa, whose eyes are closed and legs are sprawled out, as he falls through a cloud toward the ground. Katara hangs onto her brother tightly. Aang crawls over to Appa's head and leans over to face the bison.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6375,6375,Earth,2,The Chase,8,Aang,"[Urgently.] Wake up, buddy!","Wake up, buddy!",Joshua Hamilton,Giancarlo Volpe,9 +6376,6376,Earth,2,The Chase,8,Scene Description,"Cuts to shot of one of Appa's eyes as it slowly creaks open and widens in realization of the current situation. Having awakened, he resumes his normal flight, soaring just above the treetops. Toph, Sokka, Katara and Momo sway to the side still tightly gripping the saddle. Appa soars through the trees, colliding into and snapping several branches. Cuts to shot of the team members who brace against the impact. The camera zooms out to depict a flock of birds resting in the trees, fleeing from the incident, before panning downward to show Appa on the ground, having created a channel way behind him from the impact. Cuts to shot of Appa sleeping once more; Aang slides off his head and onto the ground.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6377,6377,Earth,2,The Chase,8,Aang,Appa's exhausted.,Appa's exhausted.,Joshua Hamilton,Giancarlo Volpe,9 +6378,6378,Earth,2,The Chase,8,Sokka,"[Trudging across the ground, carrying his sleeping bag.] Okay, we've put in a lot of distance between us and them. The plan right now is to follow Appa's lead and get some sleep.","Okay, we've put in a lot of distance between us and them. The plan right now is to follow Appa's lead and get some sleep.",Joshua Hamilton,Giancarlo Volpe,9 +6379,6379,Earth,2,The Chase,8,Katara,"[Irritated.] Of course, we could've gotten some sleep earlier, [Depicts shot of Toph lying on the ground sleepily.] if Toph didn't have such issues.","Of course, we could've gotten some sleep earlier, if Toph didn't have such issues.",Joshua Hamilton,Giancarlo Volpe,9 +6380,6380,Earth,2,The Chase,8,Toph,[Wakes up and slams the ground; screams furiously.] What!?,What!?,Joshua Hamilton,Giancarlo Volpe,9 +6381,6381,Earth,2,The Chase,8,Aang,"[Trying to calm the tension.] All right, all right, everyone's exhausted! Let's just get some rest.","All right, all right, everyone's exhausted! Let's just get some rest.",Joshua Hamilton,Giancarlo Volpe,9 +6382,6382,Earth,2,The Chase,8,Toph,"[Rises and faces Katara.] No, I want to hear what Katara has to say. You think I have issues?","No, I want to hear what Katara has to say. You think I have issues?",Joshua Hamilton,Giancarlo Volpe,9 +6383,6383,Earth,2,The Chase,8,Katara,"[Irritated.] I'm just saying. Maybe if you helped out earlier, we could have set up our camp faster and gotten some sleep [Shouting.] and then maybe we wouldn't be in this situation!","I'm just saying. Maybe if you helped out earlier, we could have set up our camp faster and gotten some sleep and then maybe we wouldn't be in this situation!",Joshua Hamilton,Giancarlo Volpe,9 +6384,6384,Earth,2,The Chase,8,Scene Description,"Cuts to shot of entire campsite, Katara, Toph and Aang standing by Appa, while Sokka lies sleepily on his sleeping bag several yards away.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6385,6385,Earth,2,The Chase,8,Toph,You're blaming me for this?,You're blaming me for this?,Joshua Hamilton,Giancarlo Volpe,9 +6386,6386,Earth,2,The Chase,8,Scene Description,"Katara tosses aside her sleeping bag and gestures with her hands, challenging Toph to move closer. Aang jumps in between the two.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6387,6387,Earth,2,The Chase,8,Aang,"[Desperately.] No! No, she's not blaming you.","No! No, she's not blaming you.",Joshua Hamilton,Giancarlo Volpe,9 +6388,6388,Earth,2,The Chase,8,Katara,"[Angrily.] No, I'm blaming her!","No, I'm blaming her!",Joshua Hamilton,Giancarlo Volpe,9 +6389,6389,Earth,2,The Chase,8,Toph,"Hey, [Shoves Aang out of the way.] I never asked you for diddly-doo-dah. [Points her thumb at herself.] I carry my own weight. Besides, if there's anyone to blame, it's Sheddy over here!","Hey, I never asked you for diddly-doo-dah. I carry my own weight. Besides, if there's anyone to blame, it's Sheddy over here!",Joshua Hamilton,Giancarlo Volpe,9 +6390,6390,Earth,2,The Chase,8,Aang,[Sitting on Appa's tail.] What? You're blaming Appa?,What? You're blaming Appa?,Joshua Hamilton,Giancarlo Volpe,9 +6391,6391,Earth,2,The Chase,8,Toph,"Yeah, you want to know how they keep finding us? [Grabs a handful of Appa's fur and lets the sheddings blow away in the wind.] He's leaving a trail everywhere we go!","Yeah, you want to know how they keep finding us? He's leaving a trail everywhere we go!",Joshua Hamilton,Giancarlo Volpe,9 +6392,6392,Earth,2,The Chase,8,Aang,"[Jumps down to face her.] How dare you blame Appa! He saved your life three times today! If there's anyone to blame it's you! You're always talking about how you carry your own weight, but you're not. He is! Appa's carrying your weight. He never had a problem flying when it was just the three of us!","How dare you blame Appa! He saved your life three times today! If there's anyone to blame it's you! You're always talking about how you carry your own weight, but you're not. He is! Appa's carrying your weight. He never had a problem flying when it was just the three of us!",Joshua Hamilton,Giancarlo Volpe,9 +6393,6393,Earth,2,The Chase,8,Toph,"[Stomps the ground, launching her pack into the air which she catches.] I'm out of here.",I'm out of here.,Joshua Hamilton,Giancarlo Volpe,9 +6394,6394,Earth,2,The Chase,8,Sokka,"[Moves in front of Toph, his arms outstretched to halt her.] Wait!",Wait!,Joshua Hamilton,Giancarlo Volpe,9 +6395,6395,Earth,2,The Chase,8,Scene Description,"Toph uses earthbending to shift Sokka off to the side, leaving him surprised. Cuts to shot of fur drifting in the sky. Cuts to ground level view of the tank train speeding across the terrain. Cuts to overhead shot of Aang who raises his arms up, his eyes sorrowful.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6396,6396,Earth,2,The Chase,8,Aang,What did I just do? [Slumps.] I can't believe I yelled at my earthbending teacher. Now she's gone.,What did I just do? I can't believe I yelled at my earthbending teacher. Now she's gone.,Joshua Hamilton,Giancarlo Volpe,9 +6397,6397,Earth,2,The Chase,8,Katara,[Regretfully.] I know. We're all just trying to get used to each other. And I was so mean to her.,I know. We're all just trying to get used to each other. And I was so mean to her.,Joshua Hamilton,Giancarlo Volpe,9 +6398,6398,Earth,2,The Chase,8,Sokka,"[From afar, drinking from a cup.] Yeah, you two were pretty much jerks.","Yeah, you two were pretty much jerks.",Joshua Hamilton,Giancarlo Volpe,9 +6399,6399,Earth,2,The Chase,8,Katara,"[Sarcastically.] Thanks, Sokka.","Thanks, Sokka.",Joshua Hamilton,Giancarlo Volpe,9 +6400,6400,Earth,2,The Chase,8,Sokka,No problem.,No problem.,Joshua Hamilton,Giancarlo Volpe,9 +6401,6401,Earth,2,The Chase,8,Katara,We need to find Toph and apologize.,We need to find Toph and apologize.,Joshua Hamilton,Giancarlo Volpe,9 +6402,6402,Earth,2,The Chase,8,Sokka,"Okay, but what are we going to do about the tank full of dangerous ladies chasing us?","Okay, but what are we going to do about the tank full of dangerous ladies chasing us?",Joshua Hamilton,Giancarlo Volpe,9 +6403,6403,Earth,2,The Chase,8,Aang,[Grabs a handful of fur and watches as it blows away in the wind.] I have a plan.,I have a plan.,Joshua Hamilton,Giancarlo Volpe,9 +6404,6404,Earth,2,The Chase,8,Scene Description,"The scene changes to where Appa lies in the water. The camera zooms out to a shot of him lounging in the Nan Shan River, two arched streams of water showering him on either side. Cuts to shot of the river's surface where clumps of fur collect in the water. Cuts to a shot of the top of Appa's head where Momo lands, holding a brush. He scrubs the bison's head and is forced to hastily take flight when a stream of water is bent his way. Cuts to shot of Appa's head, Sokka standing in the river several feet away, holding a brush. He groans as he becomes drenched by the stream of water. The scene changes to the campsite where Appa stands on the ground, his fur still wet from the bath. Sokka can be seen standing by the riverbank, wringing out his shirt.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6405,6405,Earth,2,The Chase,8,Aang,"Toph was right. The fur was leaving a trail right to us. But now that he's clean, no more trail.","Toph was right. The fur was leaving a trail right to us. But now that he's clean, no more trail.",Joshua Hamilton,Giancarlo Volpe,9 +6406,6406,Earth,2,The Chase,8,Katara,Are you sure he's okay to fly?,Are you sure he's okay to fly?,Joshua Hamilton,Giancarlo Volpe,9 +6407,6407,Earth,2,The Chase,8,Aang,He'll be fine as long as we leave his saddle and all our stuff here. [Kneels down and places pieces of Appa's fur into his satchel.] I'm going to use Appa's fur to make a fake trail to lead the tank off-course.,He'll be fine as long as we leave his saddle and all our stuff here. I'm going to use Appa's fur to make a fake trail to lead the tank off-course.,Joshua Hamilton,Giancarlo Volpe,9 +6408,6408,Earth,2,The Chase,8,Scene Description,"Cuts to shot of the treetops. Appa grunts and takes flight, Sokka and Katara riding atop him. As he flies away, his body accidentally brushes against the treetops, snapping the topmost limbs off and causing them to fall to the ground. Aang watches as the bison flies away and turns. Taking a running start, he flies away from the scene on his glider, releasing patches of fur from the bag along the way, creating a misleading trail. +Cuts to shot of a mountain range, fog partially obscuring their peaks. The camera pans downward to show Toph walking slowly along a pathway on her own. Cuts to side-view of her as she halts, having detected something nearby. Cuts to ground level shot of her foot which shifts abruptly in the opposite direction. Cuts to shot of her as she turns her head swiftly. She uses earthbending to send a stream of earth toward the unknown source. The stream of earth travels its way to a large rock ahead and a dust cloud erupts in the air from the impact. A grunt of pain is heard from behind the rock. Cuts to shot of Toph who approaches the rock still assuming a fighting stance. Cuts to shot of Iroh, his back to the camera as he kneels over and rubs his rear in pain. Cuts to shot of his face as he grimaces from the incident.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6409,6409,Earth,2,The Chase,8,Iroh,Ow ... That really hurt my tailbone.,Ow ... That really hurt my tailbone.,Joshua Hamilton,Giancarlo Volpe,9 +6410,6410,Earth,2,The Chase,8,Scene Description,"The scene changes to the Nan Shan River, the camera panning slightly downward to show patches of Appa's fur clinging to rocks. Azula's hands appear on screen as she grabs hold of two patches of fur and lifts to examine them.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6411,6411,Earth,2,The Chase,8,Mai,[Off camera; dryly.] Wads of wet fur. How delightful.,Wads of wet fur. How delightful.,Joshua Hamilton,Giancarlo Volpe,9 +6412,6412,Earth,2,The Chase,8,Ty Lee,"[Thoughtfully.] Hmmm ... they're not wads, they're more like bundles, or bunches? [Scratching her head.] It's got an ""uh"" sound.","Hmmm ... they're not wads, they're more like bundles, or bunches? It's got an ""uh"" sound.",Joshua Hamilton,Giancarlo Volpe,9 +6413,6413,Earth,2,The Chase,8,Mai,[Unamused.] Clumps?,Clumps?,Joshua Hamilton,Giancarlo Volpe,9 +6414,6414,Earth,2,The Chase,8,Ty Lee,[Clasps her hands together and says brightly.] Clumps! They're clumps! [Hugs Mai.],Clumps! They're clumps!,Joshua Hamilton,Giancarlo Volpe,9 +6415,6415,Earth,2,The Chase,8,Scene Description,"Cuts to close-up of Mai, still being embraced by Ty Lee, who peers down. Cuts to shot of the fake fur trail, the camera panning upward to reveal the direction in which it is traveling.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6416,6416,Earth,2,The Chase,8,Mai,"[To Azula, pointing in direction of the trail.] The trail goes this way.",The trail goes this way.,Joshua Hamilton,Giancarlo Volpe,9 +6417,6417,Earth,2,The Chase,8,Scene Description,"Azula, who had been bending over, examining the fur, rises and looks in the direction of the trail. She averts her gaze upward. Cuts to shot of the broken treetops.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6418,6418,Earth,2,The Chase,8,Azula,The Avatar's trying to give us the slip. [Pointing to the broken treetops.] You two head in that direction and keep your eye out for the bison. [Looking down at fur trail.] I'll follow this trail.,The Avatar's trying to give us the slip. You two head in that direction and keep your eye out for the bison. I'll follow this trail.,Joshua Hamilton,Giancarlo Volpe,9 +6419,6419,Earth,2,The Chase,8,Scene Description,"Cuts to shot of Azula who narrows her eyes. Cuts to ground level shot as Mai and Ty Lee ride away on their mongoose lizards. As they disappear from sight, Azula's mongoose lizard comes into view, the Fire Nation princess mounted on top. She pulls on the reigns and heads in the opposite direction, following the fake trail. Cuts to overhead shot of the area, Mai and Ty Lee seen traveling to the right of the screen, Azula to the left. Cuts to shot of Azula, who races toward the camera. +The scene changes to another area of the forest, a cluster of trees growing on a rocky ledge overlooking the rest of the forest, the river channeling right through the landscape. Mountains are seen in the distance. Aang comes into view, flying on his glider, releasing the fur from his satchel. He exits the lush, green landscape area and soars over a more arid, rugged terrain. Camera briefly focuses on him, his eyes tired from lack of sleep as he peers down and looks forward. +The camera pans upward to depict an old abandoned town, Tu Zin, similar to historical Western towns. Aang heads toward the town, still dropping fur. Cuts to side-view of the front of the town as he lands on the ground. Cuts to show the rest of the town. Aang's legs come into view and he twirls his glider staff closed. Cuts to overhead shot of him walking through the middle street way of the town, casually dropping fur. Cuts to shot of old store, the shutters creaking and a bell tolling in the wind. Cuts to side-view of Aang as he continues walking forward. Cuts to close-up of him as he averts his eyes sleepily from side-to-side. Cuts to shot of building and a side-view of him walking shown from in between two buildings. +Cuts to shot of the ground, the camera panning upward to show the satchel being held upside-down, the remaining fur dropping onto the ground. Cuts to overhead shot of him as he opens his glider. He turns to face the horizon. Cuts to shot of him looking into the distance, his back to the screen. He looks down. Cuts to shot of him standing at the end of the town as he twirls his glider closed. He sits down on the ground cross-legged. The camera zooms out on the town. The scene changes to where Appa lazily soars overhead in the forest. Cuts to shot of Sokka and Katara mounted on him.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6420,6420,Earth,2,The Chase,8,Sokka,"[Surveying the woods.] Toph couldn't have made it too far. [Momo begins to chitter and rears up defensively.] What is it, Momo? Ooooh, no! Katara!","Toph couldn't have made it too far. What is it, Momo? Ooooh, no! Katara!",Joshua Hamilton,Giancarlo Volpe,9 +6421,6421,Earth,2,The Chase,8,Scene Description,"Cuts to overhead shot of Sokka sitting on Appa's tail, Mai and Ty Lee following the bison in hot pursuit, mounted on mongoose lizards.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6422,6422,Earth,2,The Chase,8,Katara,[Shocked; urges Appa forward.] How did they find us?,How did they find us?,Joshua Hamilton,Giancarlo Volpe,9 +6423,6423,Earth,2,The Chase,8,Scene Description,"Cuts to side-view of Appa who flies dangerously close to the tree line, growing more and more tired.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6424,6424,Earth,2,The Chase,8,Sokka,"[Urgently.] Appa, come on, we need to go faster!","Appa, come on, we need to go faster!",Joshua Hamilton,Giancarlo Volpe,9 +6425,6425,Earth,2,The Chase,8,Katara,He's too tired!,He's too tired!,Joshua Hamilton,Giancarlo Volpe,9 +6426,6426,Earth,2,The Chase,8,Sokka,"[Frantically.] Not good, not good! [Appa grunts;. Cuts to ground level view of Mai and Ty Lee chasing after them. Cuts to shot of Appa heading toward the river.] We just need to make it across that river!","Not good, not good! We just need to make it across that river!",Joshua Hamilton,Giancarlo Volpe,9 +6427,6427,Earth,2,The Chase,8,Katara,"[Pleading.] Come on Appa, just a little further ...","Come on Appa, just a little further ...",Joshua Hamilton,Giancarlo Volpe,9 +6428,6428,Earth,2,The Chase,8,Scene Description,"Cuts to side-view of Appa who continues his descent, snapping off several treetops in the process. Cuts to shot from directly beneath Appa who crashes into another treetop, causing it to fall toward the screen. Cuts back to Mai and Ty Lee who chase after them. Cuts to Mai who swings her arm, firing a flurry of stilettos. Cuts back to Sokka who narrowly avoids the weapons by ducking. Cuts to view of Appa skimming the surface of the Nan Shan River before crashing into the ground on the opposite side of the river. Cuts to shot from the other side of the river, Appa's backside seen in the distance.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6429,6429,Earth,2,The Chase,8,Sokka,[Voice-over.] We made it! We're safe.,We made it! We're safe.,Joshua Hamilton,Giancarlo Volpe,9 +6430,6430,Earth,2,The Chase,8,Katara,[Voice-over.] You did it Appa!,You did it Appa!,Joshua Hamilton,Giancarlo Volpe,9 +6431,6431,Earth,2,The Chase,8,Scene Description,"Cuts to riverbank where the siblings embrace. Katara opens her eyes and gasps. Sokka turns around and becomes horrified. Cuts to side-view of the mongoose lizards paddling the water rapidly, allowing for them to walk over the surface of the river. Katara steps forward and spins around, sending a wave of water crashing into Ty Lee's mongoose lizard. Ty Lee leaps off the beast just in time and emerges from the water. She lands near the treetops where she gracefully dodges from tree trunk to tree trunk in pursuit of Katara, who opens her water skin. +Ty Lee somersaults onto the ground. Katara attempts to lash a water whip in her direction, however, is forced to quickly dodge several of the acrobat's blows. She narrowly avoids having her chi blocked and fires several sharp discs of water at her enemy, who cartwheels repeatedly to escape. Cuts to shot of Mai still mounted on her lizard. She turns around and fires several stilettos from uploaded holsters in her sleeves. Cuts to quick shot of the stilettos before one of Katara still fending off Ty Lee, her back to the camera. Sokka steps on-screen and knocks the stilettos off-target with his machete and boomerang. +He throws his boomerang in Mai's direction, however, the knife thrower merely leaps off her lizard, avoiding the attack. She spins around and fires stilettos from a holster in her leg. Sokka knocks them away again with his machete. Cuts to shot of Mai, who runs forward. Cuts to view of Katara, Sokka seen in the background. Katara turns around and is forced on the run when Mai comes charging toward her. Cuts to shot of Ty Lee, who runs toward the camera. She somersaults and leaps into the air where she flips and lands on the ground near Sokka. +She lands several quick blows on Sokka, using chi blocking to incapacitate Sokka's right arm. Sokka drops his boomerang as a result of this. He swings his left arm toward Ty Lee who merely incapacitates that arm, resulting in him dropping his machete. Sokka looks about him nervously and resorts to kicking his leg in order to fend off the acrobat who proceeds to render his leg useless. Sokka proceeds to use his forehead as a shield. Ty Lee strikes his skull and injures her hand in the process. She backs away and shakes her fist in pain before turning to glare at Sokka.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6432,6432,Earth,2,The Chase,8,Sokka,"[Well off-balance.] Good try, but no.","Good try, but no.",Joshua Hamilton,Giancarlo Volpe,9 +6433,6433,Earth,2,The Chase,8,Scene Description,"Cuts to shot of a tree growing near the riverbank. Katara appears on screen and halts in front of the tree. She begins to draw a stream of water with which to attack Mai, however, the knife thrower hurls two shuriken knives her way. Each of the two knives pins her wrists to the tree trunk. Katara gasps in horror. Cuts to side-view of the riverbank as the stream of water falls into the river again and Sokka hobbles on-screen as a result of the paralysis. He falls to the ground.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6434,6434,Earth,2,The Chase,8,Sokka,How are you doing?,How are you doing?,Joshua Hamilton,Giancarlo Volpe,9 +6435,6435,Earth,2,The Chase,8,Katara,"[Frantically.] Well, you know ...","Well, you know ...",Joshua Hamilton,Giancarlo Volpe,9 +6436,6436,Earth,2,The Chase,8,Mai,"[Dryly.] I thought when Ty Lee and I finally caught you guys, it would be more exciting. Oh well, victory is boring.","I thought when Ty Lee and I finally caught you guys, it would be more exciting. Oh well, victory is boring.",Joshua Hamilton,Giancarlo Volpe,9 +6437,6437,Earth,2,The Chase,8,Scene Description,"The two are suddenly swept off their feet by a powerful gust of wind conjured by Appa's tail. They incidentally somersault into the air and land several yards away in the water. Cuts to shot of riverbank, Appa shaking his tail, his back facing the camera.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6438,6438,Earth,2,The Chase,8,Sokka,"[Still lying on the ground.] Thanks Appa, I don't know what we'd do without you.","Thanks Appa, I don't know what we'd do without you.",Joshua Hamilton,Giancarlo Volpe,9 +6439,6439,Earth,2,The Chase,8,Scene Description,"Appa sweeps his large tongue over Sokka's face, covering him in drool. Sokka expresses irritation at this, his eyebrow twitching. Cuts to overhead shot of the forest behind the river and pans downward to the opposite side of the riverbank where Mai and Ty Lee arrive at its edge, drenched.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6440,6440,Earth,2,The Chase,8,Ty Lee,"[Wringing out her braid.] Was it just me, or was that guy kind of cute?","Was it just me, or was that guy kind of cute?",Joshua Hamilton,Giancarlo Volpe,9 +6441,6441,Earth,2,The Chase,8,Scene Description,"Mai casts an annoyed glance off to the side. The scene changes to Tu Zin where Aang still sits cross-legged, awaiting his enemy. Cuts to close-up of his face before a shot of him looking out over the horizon where Azula appears, riding on her mongoose lizard in a cloud of dust. Cuts to a side-view shot of her as she closes in on the town. Cuts to faraway shot of Aang sitting at the end of the village. Azula appears on-screen. Cuts to shot of the ground, covered in fur, where Azula's feet land as she dismounts. Cuts to overhead shot of the town.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6442,6442,Earth,2,The Chase,8,Aang,"All right, you've caught up with me. Now, who are you and what do you want?","All right, you've caught up with me. Now, who are you and what do you want?",Joshua Hamilton,Giancarlo Volpe,9 +6443,6443,Earth,2,The Chase,8,Azula,"[Coolly.] You mean you haven't guessed? You don't see the family resemblance? Here's a hint. [Covers her eye and deepens her voice, imitating Zuko.] I must find the Avatar to restore my honor! [Aang remains silent; back in her normal voice.] It's okay, you can laugh. It's funny.","You mean you haven't guessed? You don't see the family resemblance? Here's a hint. I must find the Avatar to restore my honor! It's okay, you can laugh. It's funny.",Joshua Hamilton,Giancarlo Volpe,9 +6444,6444,Earth,2,The Chase,8,Aang,So what now?,So what now?,Joshua Hamilton,Giancarlo Volpe,9 +6445,6445,Earth,2,The Chase,8,Azula,"[Cuts to view of her left side.] Now? Now, it's over. You're tired and you have no place to go. [Cuts to view of her face.] You can run, but I'll catch you.","Now? Now, it's over. You're tired and you have no place to go. You can run, but I'll catch you.",Joshua Hamilton,Giancarlo Volpe,9 +6446,6446,Earth,2,The Chase,8,Aang,[Rises to face her.] I'm not running.,I'm not running.,Joshua Hamilton,Giancarlo Volpe,9 +6447,6447,Earth,2,The Chase,8,Scene Description,"Cuts to close-up of Azula, who smirks. Cuts to shot of the sun setting over the mountains. The camera pans downward to show Toph and Iroh sitting in a rocky outcrop. Cuts to shot of a tea kettle heating over a fire. Iroh can be seen in the background, sitting next to it. He pours tea into two tin cups.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6448,6448,Earth,2,The Chase,8,Iroh,[Handing her a cup of tea.] Here is your tea. [Cuts to shot of Toph staring blankly at the ground and back to Iroh.] You seem a little too young to be traveling alone.,Here is your tea. You seem a little too young to be traveling alone.,Joshua Hamilton,Giancarlo Volpe,9 +6449,6449,Earth,2,The Chase,8,Toph,[Taking the tea from his hand.] You seem a little too old.,You seem a little too old.,Joshua Hamilton,Giancarlo Volpe,9 +6450,6450,Earth,2,The Chase,8,Iroh,[Laughs.] Perhaps I am.,Perhaps I am.,Joshua Hamilton,Giancarlo Volpe,9 +6451,6451,Earth,2,The Chase,8,Toph,[Casually.] I know what you're thinking ... I look like I can't handle being by myself.,I know what you're thinking ... I look like I can't handle being by myself.,Joshua Hamilton,Giancarlo Volpe,9 +6452,6452,Earth,2,The Chase,8,Iroh,I wasn't thinking that.,I wasn't thinking that.,Joshua Hamilton,Giancarlo Volpe,9 +6453,6453,Earth,2,The Chase,8,Toph,You wouldn't even let me pour my own cup of tea!,You wouldn't even let me pour my own cup of tea!,Joshua Hamilton,Giancarlo Volpe,9 +6454,6454,Earth,2,The Chase,8,Iroh,I poured your tea because I wanted to and for no other reason.,I poured your tea because I wanted to and for no other reason.,Joshua Hamilton,Giancarlo Volpe,9 +6455,6455,Earth,2,The Chase,8,Toph,"People see me and think I'm weak. They want to take care of me, but I can take care of myself, by myself.","People see me and think I'm weak. They want to take care of me, but I can take care of myself, by myself.",Joshua Hamilton,Giancarlo Volpe,9 +6456,6456,Earth,2,The Chase,8,Iroh,"You sound like my nephew, always thinking you need to do things on your own, without anyone's support. There is nothing wrong with letting the people who love you help you. Not that I love you, I just met you.","You sound like my nephew, always thinking you need to do things on your own, without anyone's support. There is nothing wrong with letting the people who love you help you. Not that I love you, I just met you.",Joshua Hamilton,Giancarlo Volpe,9 +6457,6457,Earth,2,The Chase,8,Toph,[Laughs.] So where is your nephew?,So where is your nephew?,Joshua Hamilton,Giancarlo Volpe,9 +6458,6458,Earth,2,The Chase,8,Iroh,I've been tracking him actually.,I've been tracking him actually.,Joshua Hamilton,Giancarlo Volpe,9 +6459,6459,Earth,2,The Chase,8,Toph,Is he lost?,Is he lost?,Joshua Hamilton,Giancarlo Volpe,9 +6460,6460,Earth,2,The Chase,8,Iroh,"[Looks away; slightly sad.] Yes, a little bit. [Cuts to shot of the rocky ledge where the two sit, the mountain region in the background; voice-over.] His life has recently changed and he's going through very difficult times. He's trying to figure out who he is and he went away.","Yes, a little bit. His life has recently changed and he's going through very difficult times. He's trying to figure out who he is and he went away.",Joshua Hamilton,Giancarlo Volpe,9 +6461,6461,Earth,2,The Chase,8,Toph,So now you're following him.,So now you're following him.,Joshua Hamilton,Giancarlo Volpe,9 +6462,6462,Earth,2,The Chase,8,Iroh,"I know he doesn't want me around him right now, but if he needs me, I'll be there.","I know he doesn't want me around him right now, but if he needs me, I'll be there.",Joshua Hamilton,Giancarlo Volpe,9 +6463,6463,Earth,2,The Chase,8,Toph,"Your nephew is very lucky, even if he doesn't know it. [Gets up to leave.] Thank you.","Your nephew is very lucky, even if he doesn't know it. Thank you.",Joshua Hamilton,Giancarlo Volpe,9 +6464,6464,Earth,2,The Chase,8,Iroh,My pleasure. Sharing tea with a fascinating stranger is one of life's true delights.,My pleasure. Sharing tea with a fascinating stranger is one of life's true delights.,Joshua Hamilton,Giancarlo Volpe,9 +6465,6465,Earth,2,The Chase,8,Toph,"[Happily.] No, thank you for what you said. It helped me.","No, thank you for what you said. It helped me.",Joshua Hamilton,Giancarlo Volpe,9 +6466,6466,Earth,2,The Chase,8,Iroh,I'm glad.,I'm glad.,Joshua Hamilton,Giancarlo Volpe,9 +6467,6467,Earth,2,The Chase,8,Toph,"[Rises to leave, but turns around briefly.] Oh, and about your nephew, maybe you should tell him that you need him, too.","Oh, and about your nephew, maybe you should tell him that you need him, too.",Joshua Hamilton,Giancarlo Volpe,9 +6468,6468,Earth,2,The Chase,8,Scene Description,"Iroh remains silent and sips his tea. The scene changes back to Tu Zin, the camera panning down to depict the town, Azula standing on the opposite side of town as Aang. Cuts briefly to Aang and to Azula who smiles smugly.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6469,6469,Earth,2,The Chase,8,Azula,Do you really want to fight me?,Do you really want to fight me?,Joshua Hamilton,Giancarlo Volpe,9 +6470,6470,Earth,2,The Chase,8,Scene Description,"Zuko suddenly appears from an alleyway, leaping off his ostrich horse onto the ground, creating a cloud of dust. He stands up straight and throws his conical hat aside.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6471,6471,Earth,2,The Chase,8,Zuko,"Yes, I really do.","Yes, I really do.",Joshua Hamilton,Giancarlo Volpe,9 +6472,6472,Earth,2,The Chase,8,Aang,[Alarmed.] Zuko!,Zuko!,Joshua Hamilton,Giancarlo Volpe,9 +6473,6473,Earth,2,The Chase,8,Azula,"[Calmly.] I was wondering when you'd show up, Zuzu.","I was wondering when you'd show up, Zuzu.",Joshua Hamilton,Giancarlo Volpe,9 +6474,6474,Earth,2,The Chase,8,Aang,"[Covers mouth to suppress laughter.] ""Zuzu""?","""Zuzu""?",Joshua Hamilton,Giancarlo Volpe,9 +6475,6475,Earth,2,The Chase,8,Zuko,"[Determined.] Back off, Azula! He's mine!","Back off, Azula! He's mine!",Joshua Hamilton,Giancarlo Volpe,9 +6476,6476,Earth,2,The Chase,8,Azula,[Assumes a fighting stance.] I'm not going anywhere.,I'm not going anywhere.,Joshua Hamilton,Giancarlo Volpe,9 +6477,6477,Earth,2,The Chase,8,Scene Description,"Cuts to overhead shot of the street way where the three opponents stand, prepared for battle. Cuts to shot of Azula, confident as ever. Cuts to shot of Zuko, who averts his gaze first to Azula before looking toward Aang. Cuts to Aang who assumes a fighting stance, pointing his glider at Zuko in fright. Cuts to shot of the three from the perspective of the front porch of a store, the camera panning to the left from Aang to Azula. Cuts to shot of Zuko, who shifts the position of his fingers a bit. Cuts to Aang, who looks about him nervously. Cuts to Azula, who continues to smirk in confidence. Cuts to close-up of Zuko, a shot of Aang, before switching back to Zuko. Cuts to close-up of Azula, whose smile widens. Cuts to brief shot of Zuko. +Cuts to Azula, who moves her arm forward, firing a blast of blue fire at Zuko, who conjures up a fire shield to deflect it. He falls backward onto a front porch. Aang, upon seeing this, expresses horror and attempts to flee the town on his glider. He begins soaring toward the back end of Tu Zin. Cuts to Azula, who swings her arm downward, sending a stream of fire at Aang, who turns over mid-air and closes his glider, twirling the object to deflect the flames. Cuts to side-view of the town as he lands on the ground, still deflecting the flames. He stops twirling his glider. +Cuts to shot of Azula running along the beam of a rooftop, prepared to strike him. Cuts to ground level shot of Aang who rolls over, grabbing hold of his glider just as Azula lands nimbly on the ground, sweeping around, sending a stream of fire his way. Cuts to shot of the street where Azula rises and turns around, Zuko seen standing in the background. Aang leaps on-screen and lands on the ground, in between the other two. Zuko fires a blast at Aang who steps to the side, managing to avoid the attack. Azula fires at the Avatar and misses. +After the three perform several unsuccessful attempts to land a blow, Aang runs past Azula, who sends another sweep of fire his way. Cut to slanted shot of three, Aang trying to escape toward the back end of town, Azula turning to face him and Zuko firing blasts of his own. Aang rounds a bend and runs past Azula once more, this time heading toward the front of town. Azula fires another blast at him, only to miss. Azula fires several more blows, one of which Zuko manages to deflect. He fires a shot at Azula and misses. +Cuts to shot of Azula, who swings her arms about, sending attacks at her opponents. Cuts to overhead shot of the town, the three of them continuing to battle each other. Cuts to shot of Azula, Zuko appearing on-screen, leaping into the air directly behind her and striking the ground, unleashing a firebending attack in the process. Cuts to side-view of the two siblings as two walls of fire, one blue and one orange are created as a result of the impact. Azula fires a blast at Zuko, who ducks and attempts to knock her off her feet. He fires a blast her only for the princess to duck. She sweeps her arm upward, sending a stream of fire his way. Zuko leaps into the air to avoid the attack. Azula turns around and fires at Aang. Cuts to shot of the Avatar, who leaps into the air and lands onto an upper outdoors level of a nearby building. +Azula runs up the stairwell leading to the upper level, forcing Aang to run through the open doorway. Cuts to shot of the inside of the doorway; Azula appears on-screen and her expression suddenly grows alarmed. She halts in her tracks and nearly stumbles. Cuts to view of the entire inside of the building, revealing that there is no floor, merely some jagged wooden paneling lining the edges of the wall. She windmills in an attempt to steady herself. Cuts to Aang perched atop an air ball, smiling gleefully and waving to her. After leaping about a few times, Azula manages to prop herself against the wall and regains her balance. Zuko suddenly appears in the doorway. He has the misfortune of inaccurate timing and falls roughly onto the first level floor with a yell, sending up a cloud of dust. Aang grimaces in sympathy. +The air ball Aang is riding suddenly begins to dissipates. Cuts to Azula, who nimbly sends a blast of fire at him. Cuts back to Aang, who leaps out of the way just as the air ball is terminated. He runs along the edges along the thin floor paneling and knocks Azula onto the first floor in the process. Azula lands nimbly onto the ground near Zuko, who is still recovering from his fall. Cuts to the outside of the building as Aang exits through the doorway, narrowly avoiding a blue fire blast sent by Azula off-screen. +He lands onto the ground just as Azula bursts through the wall of the building through the use of firebending. Zuko lands on the ground unconscious. Cuts to shot of Aang, who looks at Zuko before turning around and seeing Azula heading straight toward him. He flees and leaps out of the way just as Azula sends another blast at him. Aang begins alternately jumping between two buildings, with Azula firing blasts off-screen at each spot he lands on. Aang finally reaches the rooftop of the left building and scrambles to prop himself up. +Azula sends a blast of fire, slicing a portion of the rooftop off. Aang leaps off the crumbling portion onto another spot on the roof, only for Azula to repeat the same action. Cuts to shot Aang, who scrambles to prop himself up only for the ceiling to cave in. He lands on the ground inside the building, trapped beneath a pile of wooden planks. Azula enters the building through the doorway and sends two streams of fire along the sides of the wall. The blue fire spreads around the perimeter of the room and turns an orange hue. Cuts to Aang, who looks horrified and attempts to break free. +Cuts to Azula, who smirks and holds up one hand, two fingers pointing outward, her typical lightning generation pose. Katara suddenly appears in the doorway and sends a water whip at Azula, guiding her hand off course. Katara bends the stream of water around her and slices the wooden planks, thus freeing Aang.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6478,6478,Earth,2,The Chase,8,Aang,[Thrilled.] Katara!,Katara!,Joshua Hamilton,Giancarlo Volpe,9 +6479,6479,Earth,2,The Chase,8,Scene Description,"Azula swiftly turns around and fires a blast at the waterbender, who races out of the building along the porch. Azula follows her in hot pursuit, only to be halted by Sokka, who emerges from another doorway and swings his machete her way. Katara runs off-camera, while Azula is forced to duck. Sokka begins chasing her. Cuts to overhead shot of the town where Azula is now being cornered by him, Katara and Aang. Cuts to shot of Zuko still lying on the ground as he regains consciousness. Cuts to shot of Iroh standing over him from his perspective, the shot slightly blurred to show the effect of being knocked out.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6480,6480,Earth,2,The Chase,8,Zuko,[Slightly dazed.] Uncle ...,Uncle ...,Joshua Hamilton,Giancarlo Volpe,9 +6481,6481,Earth,2,The Chase,8,Iroh,Get up!,Get up!,Joshua Hamilton,Giancarlo Volpe,9 +6482,6482,Earth,2,The Chase,8,Scene Description,"He helps Zuko get up. Cuts to shot of Aang as he runs straight toward Azula, his back facing the camera. He leaps over her just as Azula fires a blast at him which heads directly toward the camera. She turns around and blocks a water whip Katara sends at her. She fires a blast at Sokka and swings her arm outward to prolong the blast. Aang appears on-screen behind her. She turns around and nearly manages to strike him with another blast. Cuts to overhead shot of the three Team Avatar members and Azula, who swings her arm outward, sending an arched fire blast at the three. Cuts to shot of Azula who stands, poised for attack. Camera pans downward to her feet. She suddenly falls over to the side; Toph appears from an alleyway, having just shifted the ground beneath her feet.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6483,6483,Earth,2,The Chase,8,Toph,I thought you guys could use a little help.,I thought you guys could use a little help.,Joshua Hamilton,Giancarlo Volpe,9 +6484,6484,Earth,2,The Chase,8,Katara,[Happily.] Thanks.,Thanks.,Joshua Hamilton,Giancarlo Volpe,9 +6485,6485,Earth,2,The Chase,8,Scene Description,"Azula rises to her feet and begins running away. Cuts to shot from the view of an alleyway, where Azula appears on-screen and runs through the alley. She leaps over some crates and tries to escape, however, Iroh intervenes, using his rotund belly to knock her off her feet. Zuko appears on-screen next to him. Cuts to overhead shot of Aang, Katara, Sokka, Toph, Zuko and Iroh all cornering Azula against the ruins of a stone wall.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6486,6486,Earth,2,The Chase,8,Azula,"[Coolly, backing up as her enemies surround her.] Well, look at this. Enemies and traitors, all working together. I'm done. [Raises her hands in surrender.] I know when I'm beaten. You got me. A princess surrenders with honor.","Well, look at this. Enemies and traitors, all working together. I'm done. I know when I'm beaten. You got me. A princess surrenders with honor.",Joshua Hamilton,Giancarlo Volpe,9 +6487,6487,Earth,2,The Chase,8,Scene Description,"Cuts to shot of Iroh, who averts his gaze toward the other members, who remain on high alert. The camera switches to his point of view, zooming in on Toph and shifting upward to Aang, Katara and Sokka, who still assume fighting stances. Cuts briefly to Azula, who smirks, before switching to Toph from Iroh's point of view. Cuts to Azula, who smiles and takes a step forward, firing a blast at Iroh, who gets hit. He screams in pain and falls to the ground.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6488,6488,Earth,2,The Chase,8,Zuko,[Horrified.] Aaaah!,Aaaah!,Joshua Hamilton,Giancarlo Volpe,9 +6489,6489,Earth,2,The Chase,8,Scene Description,"The remaining five turn to face Azula, four of them bending their respective elements and Sokka throwing his boomerang straight for her. The impact of the elements creates a minor explosion, sending a thick cloud of smoke everywhere. Cuts to buildings in the town now set alight, burning embers falling from the sky. Cuts to shot of Aang as the smoke clears, who looks from his defensive position at the effect. Cuts overhead shot of the group surrounding the corner, the smoke clearing to reveal Azula having vanished from the scene without a trace. Cuts to Zuko, who kneels before his uncle, dismayed at the turn of events.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6490,6490,Earth,2,The Chase,8,Zuko,[Angrily.] Ugggh! [Looks at Team Avatar.] Get away from us!,Ugggh! Get away from us!,Joshua Hamilton,Giancarlo Volpe,9 +6491,6491,Earth,2,The Chase,8,Scene Description,"Cuts to Toph, the camera shifting to her foot, showing that she can detect the vibrations using seismic sense. Cuts to Iroh, who is still breathing, indicating that he is still alive. Katara approaches Zuko.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6492,6492,Earth,2,The Chase,8,Katara,"Zuko, I can help.","Zuko, I can help.",Joshua Hamilton,Giancarlo Volpe,9 +6493,6493,Earth,2,The Chase,8,Zuko,[Blasts an arc of fire.] Leave!,Leave!,Joshua Hamilton,Giancarlo Volpe,9 +6494,6494,Earth,2,The Chase,8,Scene Description,"The members of Team Avatar all run away off-screen, leaving Zuko still kneeling over Iroh. The camera pans upward to show thick smoke billowing from the fire. The scene fades to a mountain at nightfall where Appa lands. Cuts to shot of Team Avatar sleeping on the saddle. Camera zooms in on Toph and Katara resting next to each other.",NA,Joshua Hamilton,Giancarlo Volpe,9 +6495,6495,Earth,2,The Chase,8,Scene Description,Fades to credits.,NA,Joshua Hamilton,Giancarlo Volpe,9 +6496,6496,Earth,2,Bitter Work,9,Scene Description,"The episode opens in a mountainous terrain at sunrise as it pans down and to the right. All of Team Avatar is sleeping. Cut to Aang rising and jumping up with airbending, barefoot, and filled with excitement.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6497,6497,Earth,2,Bitter Work,9,Aang,"Today's the day! [Lands near a sleeping Sokka.] Can you believe it? After all that time searching for a teacher, I'm finally starting earthbending! [Momo chitters and lands on Sokka.] And this place, [Momo moves on to Appa's head.] it's perfect, don't you think? Sokka? [Sokka grumbles and glares at Aang with tired eyes.] Oh, you're still sleeping, huh? [Sokka again grumbles and puts his head back down. Aang whispers.] Sorry.","Today's the day! Can you believe it? After all that time searching for a teacher, I'm finally starting earthbending! And this place, it's perfect, don't you think? Sokka? Oh, you're still sleeping, huh? Sorry.",Aaron Ehasz,Ethan Spaulding,8.6 +6498,6498,Earth,2,Bitter Work,9,Scene Description,"The ground shakes, causing Aang to turn to look toward the source of the rumbling. The camera quickly pans to the left to an earth tent, the slabs of which are tossed in every direction mere moments after. As the dust clears, Toph is standing in the middle with her left hand raised in the air.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6499,6499,Earth,2,Bitter Work,9,Toph,"Goooood morning, [She puts both her hands on her hips.] earthbending student!","Goooood morning, earthbending student!",Aaron Ehasz,Ethan Spaulding,8.6 +6500,6500,Earth,2,Bitter Work,9,Scene Description,"Cut to the side-shot of Appa, with Momo on his head, Sokka, still sleeping and curled up within his sleeping bag with Aang standing at his feet, and Katara, who is sitting upright in her own sleeping bag. Toph walks over to them.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6501,6501,Earth,2,Bitter Work,9,Aang,"Good morning, Sifu Toph.","Good morning, Sifu Toph.",Aaron Ehasz,Ethan Spaulding,8.6 +6502,6502,Earth,2,Bitter Work,9,Katara,"[Aang bows slightly to Toph; disappointed and tiredly.] Hey, you never called me Sifu Katara.","Hey, you never called me Sifu Katara.",Aaron Ehasz,Ethan Spaulding,8.6 +6503,6503,Earth,2,Bitter Work,9,Aang,"[Scratches the back of his head.] Well, if you think I should ...","Well, if you think I should ...",Aaron Ehasz,Ethan Spaulding,8.6 +6504,6504,Earth,2,Bitter Work,9,Scene Description,"Sokka suddenly sits up, grumbling at Aang. Cut to a closer shot of Aang, who looks down in wonder, and Toph, who has a smile on her face.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6505,6505,Earth,2,Bitter Work,9,Toph,"Sorry, Snoozles, we'll do our earthbending as [Whispers slightly, though with amusement in her voice.] quietly as we can.","Sorry, Snoozles, we'll do our earthbending as quietly as we can.",Aaron Ehasz,Ethan Spaulding,8.6 +6506,6506,Earth,2,Bitter Work,9,Scene Description,"Cut to a close-up of Toph's feet as she slams her left heel into the ground, creating a crack. Cut to a side-shot of Sokka, who had laid himself back down. An earth pillar rises up right underneath him, catapulting him screaming into the air. Cut to an aerial shot of the team's camping spot as Sokka flies directly toward the camera. After he has flown so close to the camera that the shot was nothing more than a close-up of this uvula, the scene cuts back to ground level of the campsite, where Katara is standing up and joins Toph and Aang in looking toward the sky. Sokka crashes to the ground in their middle with a loud thud. He immediately jumps to his feet, still in his sleeping bag with only his head visible, and hops toward Aang while grumbling. He stops in front of the Avatar and grumbles to his face, before jumping toward Toph and doing the same to her. He subsequently hops toward the camera and out of the shot, still grumbling angrily. Everyone else turns to watch him go. +Cut to Toph staring after Sokka with her hands to her sides. Aang had jumped up and now softly lands beside her.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6507,6507,Earth,2,Bitter Work,9,Aang,"[Excitedly.] So what move are you going to teach me first? [Stretches out his right arm, his fist clenched, and brings it down like a hammer.] Rock-a-lanche? [He brings his left clenched fist to his right elbow, while his right arm is bent upward, the fist also clenched. He trembles with the motion.] The Trembler? Oh, maybe I could learn to make a [Stretches both arms over his head and starts to spin around.] whirlpool out of land!","So what move are you going to teach me first? Rock-a-lanche? The Trembler? Oh, maybe I could learn to make a whirlpool out of land!",Aaron Ehasz,Ethan Spaulding,8.6 +6508,6508,Earth,2,Bitter Work,9,Toph,[Puts a hand on Aang's chest.] Let's start with ... [Makes the gesture.] move a rock.,Let's start with ... move a rock.,Aaron Ehasz,Ethan Spaulding,8.6 +6509,6509,Earth,2,Bitter Work,9,Aang,"[Claps excitedly.] Sounds good, sounds good!","Sounds good, sounds good!",Aaron Ehasz,Ethan Spaulding,8.6 +6510,6510,Earth,2,Bitter Work,9,Scene Description,Cuts to another part of the canyon where Toph and Aang are standing in front of two rocks as Katara watches.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6511,6511,Earth,2,Bitter Work,9,Toph,"The key to earthbending is your stance. You've got to be steady and strong. Rock is a stubborn element. If you're going to move it, you've got to be like a rock yourself.","The key to earthbending is your stance. You've got to be steady and strong. Rock is a stubborn element. If you're going to move it, you've got to be like a rock yourself.",Aaron Ehasz,Ethan Spaulding,8.6 +6512,6512,Earth,2,Bitter Work,9,Aang,Like a rock. Got it.,Like a rock. Got it.,Aaron Ehasz,Ethan Spaulding,8.6 +6513,6513,Earth,2,Bitter Work,9,Toph,"Good. Now the actual motion of this one is pretty simple. [Slams the rock against the canyon wall.] Okay, you ready to give it a try?","Good. Now the actual motion of this one is pretty simple. Okay, you ready to give it a try?",Aaron Ehasz,Ethan Spaulding,8.6 +6514,6514,Earth,2,Bitter Work,9,Aang,"I'm ready. [Tries to move it, but instead he is forced backward into Appa.]",I'm ready.,Aaron Ehasz,Ethan Spaulding,8.6 +6515,6515,Earth,2,Bitter Work,9,Sokka,[Amused.] Rock beats airbender!,Rock beats airbender!,Aaron Ehasz,Ethan Spaulding,8.6 +6516,6516,Earth,2,Bitter Work,9,Scene Description,Iroh has a flashback in a dream about Lu Ten. Lu Ten pretends to firebend at Iroh who fakes a groan and falls over.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6517,6517,Earth,2,Bitter Work,9,Lu Ten,"I got you, Dad! [Playfully jumps on top of Iroh.]","I got you, Dad!",Aaron Ehasz,Ethan Spaulding,8.6 +6518,6518,Earth,2,Bitter Work,9,Scene Description,Both laugh as the scene fades to Iroh in a dream sitting over Lu Ten's tomb.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6519,6519,Earth,2,Bitter Work,9,Iroh,"My beloved Lu Ten, I will see you again.","My beloved Lu Ten, I will see you again.",Aaron Ehasz,Ethan Spaulding,8.6 +6520,6520,Earth,2,Bitter Work,9,Scene Description,The scene fades again as Iroh wakes up to Zuko calling him.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6521,6521,Earth,2,Bitter Work,9,Zuko,Uncle ... you were unconscious. Azula did this to you. It was a surprise attack.,Uncle ... you were unconscious. Azula did this to you. It was a surprise attack.,Aaron Ehasz,Ethan Spaulding,8.6 +6522,6522,Earth,2,Bitter Work,9,Iroh,"Somehow, that's not so surprising. [Groans.]","Somehow, that's not so surprising.",Aaron Ehasz,Ethan Spaulding,8.6 +6523,6523,Earth,2,Bitter Work,9,Zuko,"[Hands Iroh some tea.] I hope I made it the way you like it. [Iroh takes a sip from the cup and his eyes widen. He lets out a cry of disgust, but manages to mask it.]",I hope I made it the way you like it.,Aaron Ehasz,Ethan Spaulding,8.6 +6524,6524,Earth,2,Bitter Work,9,Iroh,"[Grimaces.] Good. That was very ... uhhh ... bracing. [He is handed another cup, which he throws out secretly behind his shoulder.]",Good. That was very ... uhhh ... bracing.,Aaron Ehasz,Ethan Spaulding,8.6 +6525,6525,Earth,2,Bitter Work,9,Zuko,"So Uncle, I've been thinking. It's only a matter of time before I run into Azula again. I'm going to need to know more advanced firebending if I want to stand a chance against her. I know what you're going to say: she's my sister and I should be trying to get along with her.","So Uncle, I've been thinking. It's only a matter of time before I run into Azula again. I'm going to need to know more advanced firebending if I want to stand a chance against her. I know what you're going to say: she's my sister and I should be trying to get along with her.",Aaron Ehasz,Ethan Spaulding,8.6 +6526,6526,Earth,2,Bitter Work,9,Iroh,"[With the exact opposite of Zuko's thoughts.] No, she's crazy, and she needs to go down. [Zuko nods. Iroh grunts as he stands up.] It's time to resume your training.","No, she's crazy, and she needs to go down. It's time to resume your training.",Aaron Ehasz,Ethan Spaulding,8.6 +6527,6527,Earth,2,Bitter Work,9,Scene Description,"Back at the canyon. Katara and Toph are standing next to the boulder Aang tried to move. Aang walks up, a hand behind his head.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6528,6528,Earth,2,Bitter Work,9,Katara,I don't understand what went wrong. He did it exactly the way you did.,I don't understand what went wrong. He did it exactly the way you did.,Aaron Ehasz,Ethan Spaulding,8.6 +6529,6529,Earth,2,Bitter Work,9,Aang,Maybe there's another way ... what if I came at the boulder from another angle?,Maybe there's another way ... what if I came at the boulder from another angle?,Aaron Ehasz,Ethan Spaulding,8.6 +6530,6530,Earth,2,Bitter Work,9,Toph,"No. That's the problem. You've got to stop thinking like an airbender. There's no different angle, no clever solution, no trickety-trick that's going to move that rock. You've got to face it head on. And when I say head on, I mean like this ... [Jumps up and destroys the rock with her head.]","No. That's the problem. You've got to stop thinking like an airbender. There's no different angle, no clever solution, no trickety-trick that's going to move that rock. You've got to face it head on. And when I say head on, I mean like this ...",Aaron Ehasz,Ethan Spaulding,8.6 +6531,6531,Earth,2,Bitter Work,9,Aang,Whoa!,Whoa!,Aaron Ehasz,Ethan Spaulding,8.6 +6532,6532,Earth,2,Bitter Work,9,Scene Description,"Toph begins to walk away, but Katara stops her.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6533,6533,Earth,2,Bitter Work,9,Katara,"[Trying to help Toph teach.] I've been training Aang for a while now. He really responds well to a positive teaching experience. Lots of encouragement and praise. Kind words. If he's doing something wrong, maybe a gentle nudge in the right direction.","I've been training Aang for a while now. He really responds well to a positive teaching experience. Lots of encouragement and praise. Kind words. If he's doing something wrong, maybe a gentle nudge in the right direction.",Aaron Ehasz,Ethan Spaulding,8.6 +6534,6534,Earth,2,Bitter Work,9,Toph,"Thanks, Katara. A gentle nudge. I'll try that. [Moments later; yelling at the top of her lungs.] Keep your knees high, Twinkle Toes!","Thanks, Katara. A gentle nudge. I'll try that. Keep your knees high, Twinkle Toes!",Aaron Ehasz,Ethan Spaulding,8.6 +6535,6535,Earth,2,Bitter Work,9,Scene Description,"Cut to Aang carrying a large rock on his back, struggling to hold it up. The camera zooms out, showing Toph in the background stomping down and causing pillars of rock to rise underneath Aang's feet as he walks. Aang loses his balance and falls off-screen. +The next move shows Toph digging through rock with her fingers. The camera pans over and Aang rubs his hands together and tries to do the same thing, but smashes his hand against the rock and grunts in pain.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6536,6536,Earth,2,Bitter Work,9,Toph,Rock-like!,Rock-like!,Aaron Ehasz,Ethan Spaulding,8.6 +6537,6537,Earth,2,Bitter Work,9,Scene Description,"Next, Toph gives Aang one of Sokka's weapons, much to Sokka's dismay. Cut to Sokka's face with Toph's hand holding him back. He grunts, trying to move forward. Cut to a side-view, showing Sokka struggling to get his club back from Toph, who is holding it to the side and preventing Sokka from grabbing it. She shoves him backward and he stalks offscreen. She hands the weapon to Aang. He is blindfolded as he tries to smash rocks Toph brings up. He finally gets one after about five times. Cut to Toph, who nods in approval. +During their next session, Toph builds herself into a shield of rock which Aang has to push back over a marked boundary. He is successful. His training begins to move smoothly. +During another training session Aang is standing on two pillars of earth tossing a rock into the air while switching hands to catch it each time. Toph walks between the two pillars of earth and uses earthbending to shake the pillars.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6538,6538,Earth,2,Bitter Work,9,Toph,Rock-like!,Rock-like!,Aaron Ehasz,Ethan Spaulding,8.6 +6539,6539,Earth,2,Bitter Work,9,Scene Description,"The camera pans up to reveal Aang holding a solid stance without losing his balance. Toph appears on a pillar near him and nods. Aang smiles, knowing he is finally getting the hang of it. +In another part of the canyon, Sokka is looking for food when he stumbles upon an animal.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6540,6540,Earth,2,Bitter Work,9,Sokka,"You're awfully cute, but unfortunately you're made of meat. Just a bit closer ... [Jumps but falls into a crack that is in the ground. He looks at the cub.] Gotcha! [Sinks further in.] You are one lucky little meat creature.","You're awfully cute, but unfortunately you're made of meat. Just a bit closer ... Gotcha! You are one lucky little meat creature.",Aaron Ehasz,Ethan Spaulding,8.6 +6541,6541,Earth,2,Bitter Work,9,Scene Description,Back at Iroh and Zuko's setup.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6542,6542,Earth,2,Bitter Work,9,Iroh,"Lightning is a pure form of firebending, without aggression. It is not fueled by rage or emotion the way other firebending is. Some call lightning the cold-blooded fire. It is precise and deadly, like Azula. To perform the technique requires peace of mind.","Lightning is a pure form of firebending, without aggression. It is not fueled by rage or emotion the way other firebending is. Some call lightning the cold-blooded fire. It is precise and deadly, like Azula. To perform the technique requires peace of mind.",Aaron Ehasz,Ethan Spaulding,8.6 +6543,6543,Earth,2,Bitter Work,9,Zuko,"I see. That's why we're drinking tea, to calm the mind.","I see. That's why we're drinking tea, to calm the mind.",Aaron Ehasz,Ethan Spaulding,8.6 +6544,6544,Earth,2,Bitter Work,9,Iroh,"Oh yeah, good point! I mean, yes. [Outside.] There is energy all around us. The energy is both yin and yang. Positive energy and negative energy. Only a select few firebenders can separate these energies. This creates an imbalance. The energy wants to restore balance, and in a moment the positive and negative energy come crashing back together, you provide release and guidance, creating lightning. [Steps up, and generates lightning, and shoots it away from the two.]","Oh yeah, good point! I mean, yes. There is energy all around us. The energy is both yin and yang. Positive energy and negative energy. Only a select few firebenders can separate these energies. This creates an imbalance. The energy wants to restore balance, and in a moment the positive and negative energy come crashing back together, you provide release and guidance, creating lightning.",Aaron Ehasz,Ethan Spaulding,8.6 +6545,6545,Earth,2,Bitter Work,9,Zuko,I'm ready to try it!,I'm ready to try it!,Aaron Ehasz,Ethan Spaulding,8.6 +6546,6546,Earth,2,Bitter Work,9,Iroh,"Remember, once you separate the energy, you do not command it. You are simply its humble guide. Breathe first.","Remember, once you separate the energy, you do not command it. You are simply its humble guide. Breathe first.",Aaron Ehasz,Ethan Spaulding,8.6 +6547,6547,Earth,2,Bitter Work,9,Scene Description,"Zuko takes a deep breath. He tries to generate lightning, but instead an explosion launches him back. Iroh shakes his head in disappointment. +Back at the canyon, Aang's earthbending training continues.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6548,6548,Earth,2,Bitter Work,9,Toph,"This time we're going to try something a little different. Instead of moving a rock, you're going to stop a rock. Get in your horse stance! I'm going to roll that boulder down at you. If you have the attitude of an earthbender, you'll stay in your stance and stop the rock. Like this! [Stretches out, still in stance.]","This time we're going to try something a little different. Instead of moving a rock, you're going to stop a rock. Get in your horse stance! I'm going to roll that boulder down at you. If you have the attitude of an earthbender, you'll stay in your stance and stop the rock. Like this!",Aaron Ehasz,Ethan Spaulding,8.6 +6549,6549,Earth,2,Bitter Work,9,Katara,"Sorry Toph, but are you really sure this is the way to teach Aang earthbending?","Sorry Toph, but are you really sure this is the way to teach Aang earthbending?",Aaron Ehasz,Ethan Spaulding,8.6 +6550,6550,Earth,2,Bitter Work,9,Toph,"I'm glad you said something. Actually there is a better way. [Blindfolds Aang.] This way, you'll actually have to sense the vibrations of the boulder to stop it. Thank you, Katara.","I'm glad you said something. Actually there is a better way. This way, you'll actually have to sense the vibrations of the boulder to stop it. Thank you, Katara.",Aaron Ehasz,Ethan Spaulding,8.6 +6551,6551,Earth,2,Bitter Work,9,Aang,"[Sarcastically.] Yeah, thanks, Katara!","Yeah, thanks, Katara!",Aaron Ehasz,Ethan Spaulding,8.6 +6552,6552,Earth,2,Bitter Work,9,Katara,[Nervously.] Heh.,Heh.,Aaron Ehasz,Ethan Spaulding,8.6 +6553,6553,Earth,2,Bitter Work,9,Scene Description,"Cut to Toph standing at the top of the hill with Aang at the bottom. She shoves the rock forward and it begins to roll down the slope. Aang looks worried and afraid as it rolls toward him. He jumps over the boulder at the last second, causing it to roll past and crash into the cliff. Toph comes running toward Aang.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6554,6554,Earth,2,Bitter Work,9,Aang,I guess I just panicked. I don't know what to say.,I guess I just panicked. I don't know what to say.,Aaron Ehasz,Ethan Spaulding,8.6 +6555,6555,Earth,2,Bitter Work,9,Toph,"There's nothing to say, you blew it! You had a perfect stance, and a perfect form. But when it came right down to it, you didn't have the guts!","There's nothing to say, you blew it! You had a perfect stance, and a perfect form. But when it came right down to it, you didn't have the guts!",Aaron Ehasz,Ethan Spaulding,8.6 +6556,6556,Earth,2,Bitter Work,9,Aang,[Disappointed.] I know. I'm sorry.,I know. I'm sorry.,Aaron Ehasz,Ethan Spaulding,8.6 +6557,6557,Earth,2,Bitter Work,9,Toph,"Yeah, you are sorry! If you're not tough enough to stop the rock, then you can at least give it the pleasure of smashing you instead of jumping out of the way like a jelly-boned wimp! Now, do you have what it takes to face that rock like an earthbender?","Yeah, you are sorry! If you're not tough enough to stop the rock, then you can at least give it the pleasure of smashing you instead of jumping out of the way like a jelly-boned wimp! Now, do you have what it takes to face that rock like an earthbender?",Aaron Ehasz,Ethan Spaulding,8.6 +6558,6558,Earth,2,Bitter Work,9,Aang,"No, I don't think I do.","No, I don't think I do.",Aaron Ehasz,Ethan Spaulding,8.6 +6559,6559,Earth,2,Bitter Work,9,Katara,"Aang, it's no big deal. You'll take a break and try earthbending again when you're ready. Besides, you still have a lot of waterbending to work on. Okay?","Aang, it's no big deal. You'll take a break and try earthbending again when you're ready. Besides, you still have a lot of waterbending to work on. Okay?",Aaron Ehasz,Ethan Spaulding,8.6 +6560,6560,Earth,2,Bitter Work,9,Aang,"Yeah, that sounds good.","Yeah, that sounds good.",Aaron Ehasz,Ethan Spaulding,8.6 +6561,6561,Earth,2,Bitter Work,9,Toph,"Yeah, whatever, go splash around until you feel better.","Yeah, whatever, go splash around until you feel better.",Aaron Ehasz,Ethan Spaulding,8.6 +6562,6562,Earth,2,Bitter Work,9,Scene Description,They all exit.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6563,6563,Earth,2,Bitter Work,9,Scene Description,Back to Zuko and Iroh. Another attempt by Zuko to generate lightning fails.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6564,6564,Earth,2,Bitter Work,9,Zuko,Why can't I do it? Instead of lightning it keeps exploding in my face ... like everything always does.,Why can't I do it? Instead of lightning it keeps exploding in my face ... like everything always does.,Aaron Ehasz,Ethan Spaulding,8.6 +6565,6565,Earth,2,Bitter Work,9,Iroh,I was afraid this might happen. You will not be able to master lightning until you have dealt with the turmoil inside you.,I was afraid this might happen. You will not be able to master lightning until you have dealt with the turmoil inside you.,Aaron Ehasz,Ethan Spaulding,8.6 +6566,6566,Earth,2,Bitter Work,9,Zuko,What turmoil?,What turmoil?,Aaron Ehasz,Ethan Spaulding,8.6 +6567,6567,Earth,2,Bitter Work,9,Iroh,"Zuko, you must let go of your feelings of shame if you want your anger to go away.","Zuko, you must let go of your feelings of shame if you want your anger to go away.",Aaron Ehasz,Ethan Spaulding,8.6 +6568,6568,Earth,2,Bitter Work,9,Zuko,But I don't feel any shame at all. I'm as proud as ever.,But I don't feel any shame at all. I'm as proud as ever.,Aaron Ehasz,Ethan Spaulding,8.6 +6569,6569,Earth,2,Bitter Work,9,Iroh,"Prince Zuko, pride is not the opposite of shame, but its source. True humility is the only antidote to shame.","Prince Zuko, pride is not the opposite of shame, but its source. True humility is the only antidote to shame.",Aaron Ehasz,Ethan Spaulding,8.6 +6570,6570,Earth,2,Bitter Work,9,Zuko,"Well, my life has been nothing but humbling lately.","Well, my life has been nothing but humbling lately.",Aaron Ehasz,Ethan Spaulding,8.6 +6571,6571,Earth,2,Bitter Work,9,Iroh,"I have another idea. I will teach you a firebending move that even Azula doesn't know, because I made it up myself. [Zuko smiles.]","I have another idea. I will teach you a firebending move that even Azula doesn't know, because I made it up myself.",Aaron Ehasz,Ethan Spaulding,8.6 +6572,6572,Earth,2,Bitter Work,9,Scene Description,"Back to Sokka, who remains trapped with the small, brown animal.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6573,6573,Earth,2,Bitter Work,9,Sokka,"You probably think I deserve this, don't you? Look, I'm sorry I hunted you, but that's just the natural order of things. Big things eat smaller things, nothing personal. But this time it didn't work out that way. I admit it ... you're cute. Okay, you convinced me, if I get out of this alive, it's a karmically correct, vegetarian existence for me. No meat. Even though meat is so tasty. [The cub brings an apple.] Hey, looks like my karma is already paying off! That's okay, I got it. [Tosses his boomerang at it in a desperate attempt.] Now, come back boomerang.","You probably think I deserve this, don't you? Look, I'm sorry I hunted you, but that's just the natural order of things. Big things eat smaller things, nothing personal. But this time it didn't work out that way. I admit it ... you're cute. Okay, you convinced me, if I get out of this alive, it's a karmically correct, vegetarian existence for me. No meat. Even though meat is so tasty. Hey, looks like my karma is already paying off! That's okay, I got it. Now, come back boomerang.",Aaron Ehasz,Ethan Spaulding,8.6 +6574,6574,Earth,2,Bitter Work,9,Scene Description,In a pond in another part of the canyon. Momo tries to grab a frog. Aang and Katara move a single blob of water back and forth among each other in a circular motion.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6575,6575,Earth,2,Bitter Work,9,Katara,"You know this block you're having is only temporary, right?","You know this block you're having is only temporary, right?",Aaron Ehasz,Ethan Spaulding,8.6 +6576,6576,Earth,2,Bitter Work,9,Aang,I don't want to talk about it.,I don't want to talk about it.,Aaron Ehasz,Ethan Spaulding,8.6 +6577,6577,Earth,2,Bitter Work,9,Katara,"You do realize that's the problem, don't you? If you face this issue instead of avoiding it–","You do realize that's the problem, don't you? If you face this issue instead of avoiding it–",Aaron Ehasz,Ethan Spaulding,8.6 +6578,6578,Earth,2,Bitter Work,9,Aang,"[Frustrated at himself.] I know, I know, I know, I know! I get it, all right? I need to face it head on like a rock, but I just can't do it. I don't know why I can't, but I can't.","I know, I know, I know, I know! I get it, all right? I need to face it head on like a rock, but I just can't do it. I don't know why I can't, but I can't.",Aaron Ehasz,Ethan Spaulding,8.6 +6579,6579,Earth,2,Bitter Work,9,Katara,"Aang, if fire and water are opposites, then what's the opposite of air?","Aang, if fire and water are opposites, then what's the opposite of air?",Aaron Ehasz,Ethan Spaulding,8.6 +6580,6580,Earth,2,Bitter Work,9,Aang,I guess it's earth.,I guess it's earth.,Aaron Ehasz,Ethan Spaulding,8.6 +6581,6581,Earth,2,Bitter Work,9,Katara,"That's why it's so difficult for you to get this. You're working with your natural opposite. But you'll figure it out. I know you will. Think fast! [Throws a piece of grass at him, but Aang stops it with waterbending.] Excellent. You have the reflexes of a waterbending master.",That's why it's so difficult for you to get this. You're working with your natural opposite. But you'll figure it out. I know you will. Think fast! Excellent. You have the reflexes of a waterbending master.,Aaron Ehasz,Ethan Spaulding,8.6 +6582,6582,Earth,2,Bitter Work,9,Aang,"Thanks, Katara. Sifu Katara. [Bows.]","Thanks, Katara. Sifu Katara.",Aaron Ehasz,Ethan Spaulding,8.6 +6583,6583,Earth,2,Bitter Work,9,Scene Description,Katara also bows at Aang. Back to Zuko and Iroh.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6584,6584,Earth,2,Bitter Work,9,Iroh,"Fire is the element of power. [Draws the firebending insignia in the dirt.] The people of the Fire Nation have desire and will, and the energy to drive and achieve what they want. Earth is the element of substance. [Draws the earthbending insignia.] The people of the Earth Kingdom are diverse and strong. They are persistent and enduring. Air is the element of freedom. [Draws the airbending insignia.] The Air Nomads detached themselves from worldly concerns and found peace and freedom. Also, they apparently had pretty good senses of humor! Water is the element of change. [Draws the waterbending insignia.] The people of the Water Tribe are capable of adapting to many things. They have a deep sense of community and love that holds them together through anything.","Fire is the element of power. The people of the Fire Nation have desire and will, and the energy to drive and achieve what they want. Earth is the element of substance. The people of the Earth Kingdom are diverse and strong. They are persistent and enduring. Air is the element of freedom. The Air Nomads detached themselves from worldly concerns and found peace and freedom. Also, they apparently had pretty good senses of humor! Water is the element of change. The people of the Water Tribe are capable of adapting to many things. They have a deep sense of community and love that holds them together through anything.",Aaron Ehasz,Ethan Spaulding,8.6 +6585,6585,Earth,2,Bitter Work,9,Zuko,Why are you telling me these things?,Why are you telling me these things?,Aaron Ehasz,Ethan Spaulding,8.6 +6586,6586,Earth,2,Bitter Work,9,Iroh,"It is important to draw wisdom from many different places. If you take it from only one place, it becomes rigid and stale. [Divides the four insignias into separate sections.] Understanding others, the other elements, and the other nations will help you become whole. [Draws a circle around the insignias.]","It is important to draw wisdom from many different places. If you take it from only one place, it becomes rigid and stale. Understanding others, the other elements, and the other nations will help you become whole.",Aaron Ehasz,Ethan Spaulding,8.6 +6587,6587,Earth,2,Bitter Work,9,Zuko,All this four elements talk is sounding like Avatar stuff.,All this four elements talk is sounding like Avatar stuff.,Aaron Ehasz,Ethan Spaulding,8.6 +6588,6588,Earth,2,Bitter Work,9,Iroh,"It is the combination of the four elements in one person that makes the Avatar so powerful. But it can make you more powerful, too. You see the technique I'm about to teach you is one I learned by studying the waterbenders.","It is the combination of the four elements in one person that makes the Avatar so powerful. But it can make you more powerful, too. You see the technique I'm about to teach you is one I learned by studying the waterbenders.",Aaron Ehasz,Ethan Spaulding,8.6 +6589,6589,Earth,2,Bitter Work,9,Scene Description,"Back to the campsite. Aang is meditating when Toph enters, holding Aang's staff.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6590,6590,Earth,2,Bitter Work,9,Toph,"Aang, I found these nuts in your bag. I figured you wouldn't mind. And besides, even if you did, you're too much of a pushover to do anything about it.","Aang, I found these nuts in your bag. I figured you wouldn't mind. And besides, even if you did, you're too much of a pushover to do anything about it.",Aaron Ehasz,Ethan Spaulding,8.6 +6591,6591,Earth,2,Bitter Work,9,Aang,"As a matter of fact, I don't mind. I'm happy to share anything I have.","As a matter of fact, I don't mind. I'm happy to share anything I have.",Aaron Ehasz,Ethan Spaulding,8.6 +6592,6592,Earth,2,Bitter Work,9,Toph,"You know, I'm really glad you feel that way. Because I also have this great new nutcracker.","You know, I'm really glad you feel that way. Because I also have this great new nutcracker.",Aaron Ehasz,Ethan Spaulding,8.6 +6593,6593,Earth,2,Bitter Work,9,Scene Description,"She spins Aang's staff above her head. Cut to Aang, who looks over his shoulder with a pained expression on his face. Cut to Toph as she smiles widely, lifts the staff, and starts using it to break nutshells.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6594,6594,Earth,2,Bitter Work,9,Aang,"Actually, I prefer if you didn't ... [Crack.] That's an antique, handcrafted by the monks ... [Crack.] It's a delicate instrument!","Actually, I prefer if you didn't ... That's an antique, handcrafted by the monks ... It's a delicate instrument!",Aaron Ehasz,Ethan Spaulding,8.6 +6595,6595,Earth,2,Bitter Work,9,Toph,"It's not the only delicate instrument around here. [Walks away, hitting the staff off rocks.]",It's not the only delicate instrument around here.,Aaron Ehasz,Ethan Spaulding,8.6 +6596,6596,Earth,2,Bitter Work,9,Aang,[Resumes meditating.] Ohm.,Ohm.,Aaron Ehasz,Ethan Spaulding,8.6 +6597,6597,Earth,2,Bitter Work,9,Katara,"Hey Aang, have you seen–","Hey Aang, have you seen–",Aaron Ehasz,Ethan Spaulding,8.6 +6598,6598,Earth,2,Bitter Work,9,Aang,[Frustrated.] Meditating here!,Meditating here!,Aaron Ehasz,Ethan Spaulding,8.6 +6599,6599,Earth,2,Bitter Work,9,Katara,It's important. It's almost sundown and Sokka isn't back yet. I think we should search for him.,It's important. It's almost sundown and Sokka isn't back yet. I think we should search for him.,Aaron Ehasz,Ethan Spaulding,8.6 +6600,6600,Earth,2,Bitter Work,9,Aang,We'll find him faster if we split up. [The two begin to search.],We'll find him faster if we split up.,Aaron Ehasz,Ethan Spaulding,8.6 +6601,6601,Earth,2,Bitter Work,9,Scene Description,Back to Sokka.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6602,6602,Earth,2,Bitter Work,9,Sokka,"Okay, karma person or thing, whoever's in charge of this stuff. If I can just get out of this situation alive, I will give up meat and sarcasm. Okay? [Sokka's warrior's wolf tail gets yanked out of his hair by the cub.] Ow! That's all I got. It's pretty much my whole identity. Sokka, the meat and sarcasm guy. But I'm willing to be Sokka, the veggies and straight talk fellow. Deal? [Aang shows up.] Aang! Thank goodness! Have you got any meat?","Okay, karma person or thing, whoever's in charge of this stuff. If I can just get out of this situation alive, I will give up meat and sarcasm. Okay? Ow! That's all I got. It's pretty much my whole identity. Sokka, the meat and sarcasm guy. But I'm willing to be Sokka, the veggies and straight talk fellow. Deal? Aang! Thank goodness! Have you got any meat?",Aaron Ehasz,Ethan Spaulding,8.6 +6603,6603,Earth,2,Bitter Work,9,Aang,Sokka! Are you okay? [Tries to pull him out.],Sokka! Are you okay?,Aaron Ehasz,Ethan Spaulding,8.6 +6604,6604,Earth,2,Bitter Work,9,Sokka,"Aggh, stop, stop! You're going to pull my fingers off and I don't think the rest of me is coming!","Aggh, stop, stop! You're going to pull my fingers off and I don't think the rest of me is coming!",Aaron Ehasz,Ethan Spaulding,8.6 +6605,6605,Earth,2,Bitter Work,9,Aang,Hmmm ... I bet I can airbend you out of here. [Blows up a gust of wind but Sokka remains trapped.],Hmmm ... I bet I can airbend you out of here.,Aaron Ehasz,Ethan Spaulding,8.6 +6606,6606,Earth,2,Bitter Work,9,Sokka,"Seriously Aang, I know you're new at it, but I could use a little earthbending here. How about it?","Seriously Aang, I know you're new at it, but I could use a little earthbending here. How about it?",Aaron Ehasz,Ethan Spaulding,8.6 +6607,6607,Earth,2,Bitter Work,9,Aang,I can't ... I can't do it.,I can't ... I can't do it.,Aaron Ehasz,Ethan Spaulding,8.6 +6608,6608,Earth,2,Bitter Work,9,Sokka,"Well, if you can't earthbend me out of here, go get Toph.","Well, if you can't earthbend me out of here, go get Toph.",Aaron Ehasz,Ethan Spaulding,8.6 +6609,6609,Earth,2,Bitter Work,9,Aang,I can't do that either.,I can't do that either.,Aaron Ehasz,Ethan Spaulding,8.6 +6610,6610,Earth,2,Bitter Work,9,Sokka,You can't? Why not?,You can't? Why not?,Aaron Ehasz,Ethan Spaulding,8.6 +6611,6611,Earth,2,Bitter Work,9,Aang,It would just be really ... uncomfortable.,It would just be really ... uncomfortable.,Aaron Ehasz,Ethan Spaulding,8.6 +6612,6612,Earth,2,Bitter Work,9,Sokka,"Uncomfortable? [Sarcastically.] Well, I wouldn't want you to feel uncomfortable ...","Uncomfortable? Well, I wouldn't want you to feel uncomfortable ...",Aaron Ehasz,Ethan Spaulding,8.6 +6613,6613,Earth,2,Bitter Work,9,Aang,"Thanks, Sokka. This whole earthbending thing really has me confused. There's so much pressure. Everyone expects me to get it right away. It puts me in a really awkward position.","Thanks, Sokka. This whole earthbending thing really has me confused. There's so much pressure. Everyone expects me to get it right away. It puts me in a really awkward position.",Aaron Ehasz,Ethan Spaulding,8.6 +6614,6614,Earth,2,Bitter Work,9,Sokka,"Awkward position, I think I know the feeling.","Awkward position, I think I know the feeling.",Aaron Ehasz,Ethan Spaulding,8.6 +6615,6615,Earth,2,Bitter Work,9,Aang,"If I try, I fail. If I don't try, I'm never going to get it. I feel like I'm caught between a rock and a hard place.","If I try, I fail. If I don't try, I'm never going to get it. I feel like I'm caught between a rock and a hard place.",Aaron Ehasz,Ethan Spaulding,8.6 +6616,6616,Earth,2,Bitter Work,9,Sokka,"Hmmm ... how about that. Aang, this is my friend, Foo Foo Cuddlypoops. Foo Foo Cuddlypoops, Aang.","Hmmm ... how about that. Aang, this is my friend, Foo Foo Cuddlypoops. Foo Foo Cuddlypoops, Aang.",Aaron Ehasz,Ethan Spaulding,8.6 +6617,6617,Earth,2,Bitter Work,9,Aang,"Awww, what a cute name for a baby saber-tooth moose-lion cub.","Awww, what a cute name for a baby saber-tooth moose-lion cub.",Aaron Ehasz,Ethan Spaulding,8.6 +6618,6618,Earth,2,Bitter Work,9,Sokka,Really? He looks nothing like a saber-tooth moose-lion.,Really? He looks nothing like a saber-tooth moose-lion.,Aaron Ehasz,Ethan Spaulding,8.6 +6619,6619,Earth,2,Bitter Work,9,Aang,It's hard to tell before their giant teeth and horns grow in. What are you doing out here little guy? Did you lose your mama?,It's hard to tell before their giant teeth and horns grow in. What are you doing out here little guy? Did you lose your mama?,Aaron Ehasz,Ethan Spaulding,8.6 +6620,6620,Earth,2,Bitter Work,9,Scene Description,"Suddenly, a large moose-lion appears.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6621,6621,Earth,2,Bitter Work,9,Scene Description,The scene cuts back to Zuko and Iroh.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6622,6622,Earth,2,Bitter Work,9,Iroh,"Waterbenders deal with the flow of energy. A waterbender lets their defense become their offense, turning their opponents' energy against them. I learned a way to do this with lightning.","Waterbenders deal with the flow of energy. A waterbender lets their defense become their offense, turning their opponents' energy against them. I learned a way to do this with lightning.",Aaron Ehasz,Ethan Spaulding,8.6 +6623,6623,Earth,2,Bitter Work,9,Zuko,You can teach me to redirect lightning?,You can teach me to redirect lightning?,Aaron Ehasz,Ethan Spaulding,8.6 +6624,6624,Earth,2,Bitter Work,9,Iroh,"If you let the energy in your own body flow, the lightning will follow it. You must create a pathway from your fingertips, up your arm to your shoulder, then down into your stomach. The stomach is the source of energy in your body. It is called the sea of chi. Only in my case it is more like a vast ocean. [Laughs.] From the stomach, you direct it up again, and out the other arm. The stomach detour is critical. You must not let the lightning pass through your heart, or the damage could be deadly. You may wish to try a physical motion, to get a feel for the pathways' flow, like this. [The two begin to practice the redirection motion.] Now, are you focusing your energy? Can you feel your own chi flowing in, down, up, and out?","If you let the energy in your own body flow, the lightning will follow it. You must create a pathway from your fingertips, up your arm to your shoulder, then down into your stomach. The stomach is the source of energy in your body. It is called the sea of chi. Only in my case it is more like a vast ocean. From the stomach, you direct it up again, and out the other arm. The stomach detour is critical. You must not let the lightning pass through your heart, or the damage could be deadly. You may wish to try a physical motion, to get a feel for the pathways' flow, like this. Now, are you focusing your energy? Can you feel your own chi flowing in, down, up, and out?",Aaron Ehasz,Ethan Spaulding,8.6 +6625,6625,Earth,2,Bitter Work,9,Zuko,I think so.,I think so.,Aaron Ehasz,Ethan Spaulding,8.6 +6626,6626,Earth,2,Bitter Work,9,Iroh,"Come on, you've got to feel the flow. [They practice the motion for a few minutes.] Excellent! You've got it!","Come on, you've got to feel the flow. Excellent! You've got it!",Aaron Ehasz,Ethan Spaulding,8.6 +6627,6627,Earth,2,Bitter Work,9,Zuko,"Great, I'm ready to try it with real lightning!","Great, I'm ready to try it with real lightning!",Aaron Ehasz,Ethan Spaulding,8.6 +6628,6628,Earth,2,Bitter Work,9,Iroh,"What, are you crazy? Lightning is very dangerous!","What, are you crazy? Lightning is very dangerous!",Aaron Ehasz,Ethan Spaulding,8.6 +6629,6629,Earth,2,Bitter Work,9,Zuko,I thought that was the point! You teaching me to protect myself from it!,I thought that was the point! You teaching me to protect myself from it!,Aaron Ehasz,Ethan Spaulding,8.6 +6630,6630,Earth,2,Bitter Work,9,Iroh,"Yeah! But I'm not going to shoot lightning at you! If you're lucky, you will never have to use this technique at all!","Yeah! But I'm not going to shoot lightning at you! If you're lucky, you will never have to use this technique at all!",Aaron Ehasz,Ethan Spaulding,8.6 +6631,6631,Earth,2,Bitter Work,9,Zuko,"Well, if you won't help me, I'll find my own lightning. [Rides away.]","Well, if you won't help me, I'll find my own lightning.",Aaron Ehasz,Ethan Spaulding,8.6 +6632,6632,Earth,2,Bitter Work,9,Scene Description,"Back to the canyon, Aang begins to talk to the saber-tooth moose-lion mother.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6633,6633,Earth,2,Bitter Work,9,Aang,"Hey there, we found your cub! See, we have no problem with you! We're friendly!","Hey there, we found your cub! See, we have no problem with you! We're friendly!",Aaron Ehasz,Ethan Spaulding,8.6 +6634,6634,Earth,2,Bitter Work,9,Sokka,"Aang, this is bad, you've got to get me out of here!","Aang, this is bad, you've got to get me out of here!",Aaron Ehasz,Ethan Spaulding,8.6 +6635,6635,Earth,2,Bitter Work,9,Scene Description,"The moose-lion charges at Sokka, but Aang sends it over his head with airbending.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6636,6636,Earth,2,Bitter Work,9,Sokka,"This is really bad! Please Aang, you have to earthbend me out, there's no other way!","This is really bad! Please Aang, you have to earthbend me out, there's no other way!",Aaron Ehasz,Ethan Spaulding,8.6 +6637,6637,Earth,2,Bitter Work,9,Scene Description,"Aang tries, but all his attempts produce nothing.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6638,6638,Earth,2,Bitter Work,9,Aang,"Oh no! [Gets on top of a rock to try and distract the saber-tooth moose-lion.] Woo-hoo, look at me!","Oh no! Woo-hoo, look at me!",Aaron Ehasz,Ethan Spaulding,8.6 +6639,6639,Earth,2,Bitter Work,9,Scene Description,The moose-lion charges again but is again held off.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6640,6640,Earth,2,Bitter Work,9,Sokka,"Please, don't leave me again.","Please, don't leave me again.",Aaron Ehasz,Ethan Spaulding,8.6 +6641,6641,Earth,2,Bitter Work,9,Aang,I won't.,I won't.,Aaron Ehasz,Ethan Spaulding,8.6 +6642,6642,Earth,2,Bitter Work,9,Scene Description,"He stands his ground, and at the last second, throws the moose-lion back with a blast of air. The beast leaves. Suddenly, slight clapping can be heard. Cut to shot of Toph sitting on a rock nearby.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6643,6643,Earth,2,Bitter Work,9,Sokka,What are you doing here?,What are you doing here?,Aaron Ehasz,Ethan Spaulding,8.6 +6644,6644,Earth,2,Bitter Work,9,Toph,Just enjoying the show.,Just enjoying the show.,Aaron Ehasz,Ethan Spaulding,8.6 +6645,6645,Earth,2,Bitter Work,9,Aang,What? You were there the whole time?,What? You were there the whole time?,Aaron Ehasz,Ethan Spaulding,8.6 +6646,6646,Earth,2,Bitter Work,9,Toph,Pretty much.,Pretty much.,Aaron Ehasz,Ethan Spaulding,8.6 +6647,6647,Earth,2,Bitter Work,9,Aang,Why didn't you do something? Sokka was in trouble! I was in trouble! You could have gotten him out and helped us get away!,Why didn't you do something? Sokka was in trouble! I was in trouble! You could have gotten him out and helped us get away!,Aaron Ehasz,Ethan Spaulding,8.6 +6648,6648,Earth,2,Bitter Work,9,Toph,Guess it just didn't occur to me. [Throws a nut down and attempts to crack it with the staff.],Guess it just didn't occur to me.,Aaron Ehasz,Ethan Spaulding,8.6 +6649,6649,Earth,2,Bitter Work,9,Aang,[Grabs hold of it.] Enough! I want my staff back! [Takes it away.],Enough! I want my staff back!,Aaron Ehasz,Ethan Spaulding,8.6 +6650,6650,Earth,2,Bitter Work,9,Toph,Do it now!,Do it now!,Aaron Ehasz,Ethan Spaulding,8.6 +6651,6651,Earth,2,Bitter Work,9,Aang,What?,What?,Aaron Ehasz,Ethan Spaulding,8.6 +6652,6652,Earth,2,Bitter Work,9,Toph,"Earthbend, Twinkle Toes. You just stood your ground against a crazy beast. And even more impressive, you stood your ground against me. You've got stuff.","Earthbend, Twinkle Toes. You just stood your ground against a crazy beast. And even more impressive, you stood your ground against me. You've got stuff.",Aaron Ehasz,Ethan Spaulding,8.6 +6653,6653,Earth,2,Bitter Work,9,Aang,But–,But–,Aaron Ehasz,Ethan Spaulding,8.6 +6654,6654,Earth,2,Bitter Work,9,Toph,Do it!,Do it!,Aaron Ehasz,Ethan Spaulding,8.6 +6655,6655,Earth,2,Bitter Work,9,Scene Description,Aang slams the ground and sends a rock into the canyon wall.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6656,6656,Earth,2,Bitter Work,9,Toph,You did it! You're an earthbender.,You did it! You're an earthbender.,Aaron Ehasz,Ethan Spaulding,8.6 +6657,6657,Earth,2,Bitter Work,9,Aang,I can't believe it!,I can't believe it!,Aaron Ehasz,Ethan Spaulding,8.6 +6658,6658,Earth,2,Bitter Work,9,Sokka,"[Sarcastically.] Awww, this is a really wonderful, touching moment. So could you get me out of here so I can give you both a big, snuggly hug?","Awww, this is a really wonderful, touching moment. So could you get me out of here so I can give you both a big, snuggly hug?",Aaron Ehasz,Ethan Spaulding,8.6 +6659,6659,Earth,2,Bitter Work,9,Aang,"No problem, Sokka!","No problem, Sokka!",Aaron Ehasz,Ethan Spaulding,8.6 +6660,6660,Earth,2,Bitter Work,9,Toph,"Actually, you should probably let me do that. You're still a little new to this. You might accidentally crush him.","Actually, you should probably let me do that. You're still a little new to this. You might accidentally crush him.",Aaron Ehasz,Ethan Spaulding,8.6 +6661,6661,Earth,2,Bitter Work,9,Sokka,"Yeah, no crushing, please.","Yeah, no crushing, please.",Aaron Ehasz,Ethan Spaulding,8.6 +6662,6662,Earth,2,Bitter Work,9,Scene Description,Toph kicks up the rock and yanks him out. Nightfall hits. Katara meets up with them.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6663,6663,Earth,2,Bitter Work,9,Katara,You found him! [Embraces Sokka.],You found him!,Aaron Ehasz,Ethan Spaulding,8.6 +6664,6664,Earth,2,Bitter Work,9,Sokka,"The whole time, I was in that hole, not knowing if I was going to live or die. It makes a man to think about what's really important. I realized–","The whole time, I was in that hole, not knowing if I was going to live or die. It makes a man to think about what's really important. I realized–",Aaron Ehasz,Ethan Spaulding,8.6 +6665,6665,Earth,2,Bitter Work,9,Aang,"[Interrupting Sokka.] Hey Katara, look what I can do! [Bends a rock and slams it on the ground.]","Hey Katara, look what I can do!",Aaron Ehasz,Ethan Spaulding,8.6 +6666,6666,Earth,2,Bitter Work,9,Katara,"You did it! I knew you would! [Whispering to Toph.] You tried the positive reinforcement, didn't you?","You did it! I knew you would! You tried the positive reinforcement, didn't you?",Aaron Ehasz,Ethan Spaulding,8.6 +6667,6667,Earth,2,Bitter Work,9,Toph,"[Happily.] Yep, it worked wonders.","Yep, it worked wonders.",Aaron Ehasz,Ethan Spaulding,8.6 +6668,6668,Earth,2,Bitter Work,9,Aang,"Appa, Appa, I can earthbend now! The key is being completely rooted. Physically and mentally unmovable!","Appa, Appa, I can earthbend now! The key is being completely rooted. Physically and mentally unmovable!",Aaron Ehasz,Ethan Spaulding,8.6 +6669,6669,Earth,2,Bitter Work,9,Scene Description,"Appa licks him and sends him flying a few feet. Sokka laughs hysterically, and Aang laughs as well. Meanwhile, Zuko has tracked down a storm, seeking lightning.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6670,6670,Earth,2,Bitter Work,9,Zuko,"You've always thrown everything you could at me! Well, I can take it, and now I can give it back! [Yelling as loud as he can at the storm.] Come on, strike me! You've never held back before!","You've always thrown everything you could at me! Well, I can take it, and now I can give it back! Come on, strike me! You've never held back before!",Aaron Ehasz,Ethan Spaulding,8.6 +6671,6671,Earth,2,Bitter Work,9,Scene Description,"No lightning strikes. Tears stream down Zuko's cheeks, and he yells at the top of his lungs.",NA,Aaron Ehasz,Ethan Spaulding,8.6 +6672,6672,Earth,2,Bitter Work,9,Scene Description,Fade to credits.,NA,Aaron Ehasz,Ethan Spaulding,8.6 +6673,6673,Earth,2,The Library,10,Scene Description,"The episode begins with a view of the mountains. The camera pans down to show a back shot of Aang sitting in cross legged in a prairie on the ground looking over a vast open savanna landscape. The landscape is mostly barren save for small shoots of grass which bend in the breeze. A range of mountains can be seen in the distance. The ground in front of Aang is littered with holes. +Cut to a shot of the group from the front of Appa, Sokka, Toph, Katara, and Momo standing behind Aang. The Avatar is holding a thin wooden flute in both hands.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6674,6674,Earth,2,The Library,10,Sokka,What's out here?,What's out here?,John O'Bryan,Giancarlo Volpe,8.8 +6675,6675,Earth,2,The Library,10,Scene Description,"Shot changes to show Appa, Sokka, Toph, Katara, and Momo standing behind Aang, who holds a flute.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6676,6676,Earth,2,The Library,10,Toph,"[Puts her hand on the ground.] A lot, actually. There's hundreds of little ...","A lot, actually. There's hundreds of little ...",John O'Bryan,Giancarlo Volpe,8.8 +6677,6677,Earth,2,The Library,10,Aang,"[Turns around and silences Toph.] Shh! I know you can see underground, but don't ruin the surprise. Just watch. [Blows a note on the flute. A groundhog-type creature pops out of a hole in the ground and mimics the note.] Yeah! [Plays another note and another groundhog mimics it.] I'm putting an orchestra together.","Shh! I know you can see underground, but don't ruin the surprise. Just watch. Yeah! I'm putting an orchestra together.",John O'Bryan,Giancarlo Volpe,8.8 +6678,6678,Earth,2,The Library,10,Sokka,"[Makes hand motions while looking on with annoyance.] Orchestra, huh? Well, la-di-da.","Orchestra, huh? Well, la-di-da.",John O'Bryan,Giancarlo Volpe,8.8 +6679,6679,Earth,2,The Library,10,Scene Description,"Three groundhogs pop out of the ground and sing descending notes. Momo jumps into a hole and comes out the middle one, trying to catch the groundhogs. The shot shows all of the holes in the ground. Aang plays four notes and Momo tries to catch the groundhogs that pop up. Aang plays another note as Sokka runs up to Aang and plugs the flute with his finger, causing nothing to play. As Aang's cheeks swell with air, the Avatar looks at Sokka with a sad expression.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6680,6680,Earth,2,The Library,10,Sokka,"[Annoyed.] This is great and all, but don't we have more important things to worry about? We should be making plans.","This is great and all, but don't we have more important things to worry about? We should be making plans.",John O'Bryan,Giancarlo Volpe,8.8 +6681,6681,Earth,2,The Library,10,Toph,We did make plans. We're all picking mini-vacations.,We did make plans. We're all picking mini-vacations.,John O'Bryan,Giancarlo Volpe,8.8 +6682,6682,Earth,2,The Library,10,Sokka,There's no time for vacations.,There's no time for vacations.,John O'Bryan,Giancarlo Volpe,8.8 +6683,6683,Earth,2,The Library,10,Aang,I'm learning the elements as fast as I can. I practice hard every day with Toph and Katara. I've been training my arrow off!,I'm learning the elements as fast as I can. I practice hard every day with Toph and Katara. I've been training my arrow off!,John O'Bryan,Giancarlo Volpe,8.8 +6684,6684,Earth,2,The Library,10,Katara,"[Walks next to Aang.] Yeah, what's wrong with having a little fun in our down time?","Yeah, what's wrong with having a little fun in our down time?",John O'Bryan,Giancarlo Volpe,8.8 +6685,6685,Earth,2,The Library,10,Sokka,"Even if you do master all of the elements, then what? It's not like we have a map of the Fire Nation. [Gestures to the side, sarcastically.] Should we just head west until we reach the Fire Lord's house? [Knocking on an imaginary door.] Knock, knock. Hello, Fire Lord? Anybody home? I don't think so. We need some intelligence if we're going to win this war.","Even if you do master all of the elements, then what? It's not like we have a map of the Fire Nation. Should we just head west until we reach the Fire Lord's house? Knock, knock. Hello, Fire Lord? Anybody home? I don't think so. We need some intelligence if we're going to win this war.",John O'Bryan,Giancarlo Volpe,8.8 +6686,6686,Earth,2,The Library,10,Scene Description,Aang plays a note on the flute and a groundhog pops up underneath Sokka and sings the note.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6687,6687,Earth,2,The Library,10,Katara,"All right, we'll finish our vacations and [Mockingly.] then we'll look for Sokka's intelligence. [Aang laughs.]","All right, we'll finish our vacations and then we'll look for Sokka's intelligence.",John O'Bryan,Giancarlo Volpe,8.8 +6688,6688,Earth,2,The Library,10,Aang,"[Opening a map and shows it to Katara.] Your turn, Katara. Where would you like to go on your mini-vacation?","Your turn, Katara. Where would you like to go on your mini-vacation?",John O'Bryan,Giancarlo Volpe,8.8 +6689,6689,Earth,2,The Library,10,Katara,[Pointing at the map.] How about the Misty Palms Oasis? That sounds refreshing.,How about the Misty Palms Oasis? That sounds refreshing.,John O'Bryan,Giancarlo Volpe,8.8 +6690,6690,Earth,2,The Library,10,Aang,"Oh, yeah, I've been there. It's a pristine natural ice spring. And I usually don't use the word ""pristine"". [Cut to the symbol on the map.] It's one of nature's wonders.","Oh, yeah, I've been there. It's a pristine natural ice spring. And I usually don't use the word ""pristine"". It's one of nature's wonders.",John O'Bryan,Giancarlo Volpe,8.8 +6691,6691,Earth,2,The Library,10,Scene Description,"The close-up of the map's illustration fades to the Misty Palm Oasis, which has a small ice spring in the center. Cut to a shot of Aang, Katara, Sokka, and Toph stare at the oasis in disappointment.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6692,6692,Earth,2,The Library,10,Aang,Must've changed ownership since I was here. [Laughs sheepishly.],Must've changed ownership since I was here.,John O'Bryan,Giancarlo Volpe,8.8 +6693,6693,Earth,2,The Library,10,Scene Description,"They walk through the entrance and the hanging sign falls down. Fade to Team Avatar walking past the small ice spring. They walk into the bar and pass five sandbenders hanging around outside. One sandbender spits at Sokka's feet. Sokka looks at the man angrily. The man utters a raspy groan, slurps, and chuckles. Katara grabs Sokka and pulls him into the bar, which is filled with weary travelers.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6694,6694,Earth,2,The Library,10,Zei,"[To the bartender.] One mango, please.","One mango, please.",John O'Bryan,Giancarlo Volpe,8.8 +6695,6695,Earth,2,The Library,10,Scene Description,"The bartender uses two swords to slice a bowl from a large chunk of ice. He cuts down some mangos from the overhanging fruit and dices them up. He chops up a piece of fruit and pours a jug of milk into the bowl, still using the swords. He throws a decorative umbrella and straw into the bowl and serves it to Zei, who gives the bartender a coin.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6696,6696,Earth,2,The Library,10,Sokka,I don't see anything wrong with having one of those fruity beverages while we plan our strategy. [Runs up to the bartender.] Excuse me.,I don't see anything wrong with having one of those fruity beverages while we plan our strategy. Excuse me.,John O'Bryan,Giancarlo Volpe,8.8 +6697,6697,Earth,2,The Library,10,Scene Description,Zei bumps into Aang and spills his drink onto the airbender.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6698,6698,Earth,2,The Library,10,Aang,"No worries, I clean up easy. [Airbends the drink off of his clothes.]","No worries, I clean up easy.",John O'Bryan,Giancarlo Volpe,8.8 +6699,6699,Earth,2,The Library,10,Zei,[Gasps.] You're a living relic.,You're a living relic.,John O'Bryan,Giancarlo Volpe,8.8 +6700,6700,Earth,2,The Library,10,Aang,"[Shrugs.] Thanks, I try.","Thanks, I try.",John O'Bryan,Giancarlo Volpe,8.8 +6701,6701,Earth,2,The Library,10,Zei,"An Air Nomad, right in front of me. [Shot changes to show Katara holding an icy bowl.] Professor Zei, head of anthropology at Ba Sing Se University. [Grabs Aang's arm and points at his arrow tattoo. Camera pans to Aang's face.] Tell me, which of the air temples do you hail from?","An Air Nomad, right in front of me. Professor Zei, head of anthropology at Ba Sing Se University. Tell me, which of the air temples do you hail from?",John O'Bryan,Giancarlo Volpe,8.8 +6702,6702,Earth,2,The Library,10,Aang,The Southern Temple.,The Southern Temple.,John O'Bryan,Giancarlo Volpe,8.8 +6703,6703,Earth,2,The Library,10,Zei,"[Measures Aang's head with a pair of calipers and speaking excitedly.] Oh, splendid! Now tell me- what was the primary agricultural product of your people?","Oh, splendid! Now tell me- what was the primary agricultural product of your people?",John O'Bryan,Giancarlo Volpe,8.8 +6704,6704,Earth,2,The Library,10,Aang,"[Nervously.] Uh, are fruit pies an agricultural product?","Uh, are fruit pies an agricultural product?",John O'Bryan,Giancarlo Volpe,8.8 +6705,6705,Earth,2,The Library,10,Zei,"Oh, truly fascinating. That is one for the journal. [While Sokka speaks, Zei writes in his journal.]","Oh, truly fascinating. That is one for the journal.",John O'Bryan,Giancarlo Volpe,8.8 +6706,6706,Earth,2,The Library,10,Sokka,"So Professor, you're obviously a well-traveled guy. Do you have a more current map? Ours seems to be a little dated.","So Professor, you're obviously a well-traveled guy. Do you have a more current map? Ours seems to be a little dated.",John O'Bryan,Giancarlo Volpe,8.8 +6707,6707,Earth,2,The Library,10,Zei,Certainly.,Certainly.,John O'Bryan,Giancarlo Volpe,8.8 +6708,6708,Earth,2,The Library,10,Scene Description,Sokka unrolls a map on a table and examines. Toph sips her drink and props her legs on another chair.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6709,6709,Earth,2,The Library,10,Sokka,"What, no Fire Nation? [Straightening his back.] Doesn't anybody have a good map of that place?","What, no Fire Nation? Doesn't anybody have a good map of that place?",John O'Bryan,Giancarlo Volpe,8.8 +6710,6710,Earth,2,The Library,10,Katara,[Examines the map while the camera pans across it.] You've made a lot of trips into the desert.,You've made a lot of trips into the desert.,John O'Bryan,Giancarlo Volpe,8.8 +6711,6711,Earth,2,The Library,10,Zei,"All in vain, I'm afraid. I've found lost civilizations all over the Earth Kingdom, [Raises his fist slightly.] but I haven't managed to find the crown jewel: Wan Shi Tong's Library. [Cut to a shot of Toph laying down. Her feet are closest to the camera, showing her dirt-stained soles.]","All in vain, I'm afraid. I've found lost civilizations all over the Earth Kingdom, but I haven't managed to find the crown jewel: Wan Shi Tong's Library.",John O'Bryan,Giancarlo Volpe,8.8 +6712,6712,Earth,2,The Library,10,Toph,[In disbelief.] You spent years walking through the desert to find some guy's library?,You spent years walking through the desert to find some guy's library?,John O'Bryan,Giancarlo Volpe,8.8 +6713,6713,Earth,2,The Library,10,Zei,"This library is more valuable than gold, little lady. It is said to contain a vast collection of knowledge, and knowledge is priceless.","This library is more valuable than gold, little lady. It is said to contain a vast collection of knowledge, and knowledge is priceless.",John O'Bryan,Giancarlo Volpe,8.8 +6714,6714,Earth,2,The Library,10,Toph,"[Sarcastically.] Hmm, sounds like good times.","Hmm, sounds like good times.",John O'Bryan,Giancarlo Volpe,8.8 +6715,6715,Earth,2,The Library,10,Zei,"Oh, it is. According to legend, it was built by the great Knowledge Spirit, Wan Shi Tong, with the help of his ""foxy"" knowledge seekers.","Oh, it is. According to legend, it was built by the great Knowledge Spirit, Wan Shi Tong, with the help of his ""foxy"" knowledge seekers.",John O'Bryan,Giancarlo Volpe,8.8 +6716,6716,Earth,2,The Library,10,Sokka,"[Intrigued.] Oh, so this spirit has attractive assistants, huh?","Oh, so this spirit has attractive assistants, huh?",John O'Bryan,Giancarlo Volpe,8.8 +6717,6717,Earth,2,The Library,10,Katara,"[Puts her hand on the side of Sokka's face to stop him from talking.] I think he means they look like actual foxes, Sokka.","I think he means they look like actual foxes, Sokka.",John O'Bryan,Giancarlo Volpe,8.8 +6718,6718,Earth,2,The Library,10,Zei,"You're both right. [Katara and Sokka turn to him in surprise. Cut to Zei.] Handsome little creatures. [Takes out a drawing of the library and places it on the table.] Wan Shi Tong and his knowledge seekers collected books from all over the world, and put them on display for mankind to read, so that we might better ourselves.","You're both right. Handsome little creatures. Wan Shi Tong and his knowledge seekers collected books from all over the world, and put them on display for mankind to read, so that we might better ourselves.",John O'Bryan,Giancarlo Volpe,8.8 +6719,6719,Earth,2,The Library,10,Sokka,"If this place has books from all over the world, [Aang walks over to look at the maps while he sips his drink.] do you think they've got info on the Fire Nation? A map, maybe?","If this place has books from all over the world, do you think they've got info on the Fire Nation? A map, maybe?",John O'Bryan,Giancarlo Volpe,8.8 +6720,6720,Earth,2,The Library,10,Zei,"I wouldn't know. But if such a thing exists, it's in Wan Shi Tong's Library.","I wouldn't know. But if such a thing exists, it's in Wan Shi Tong's Library.",John O'Bryan,Giancarlo Volpe,8.8 +6721,6721,Earth,2,The Library,10,Sokka,"Then it's settled. Aang, I do believe it's my turn. I'd like to spend my vacation [Cut to a shot of Sokka as he points his finger into the air dramatically. The background changes to a rushing one.] at the library! [Sokka's voice echoes. Zoom back to a group shot, with Sokka still having his finger raised in the air.]","Then it's settled. Aang, I do believe it's my turn. I'd like to spend my vacation at the library!",John O'Bryan,Giancarlo Volpe,8.8 +6722,6722,Earth,2,The Library,10,Toph,"[Waving her hand to gain the others attention.] Uh, hey, what about me? When do I get to pick?","Uh, hey, what about me? When do I get to pick?",John O'Bryan,Giancarlo Volpe,8.8 +6723,6723,Earth,2,The Library,10,Sokka,You gotta work here a little longer before you qualify for vacation time.,You gotta work here a little longer before you qualify for vacation time.,John O'Bryan,Giancarlo Volpe,8.8 +6724,6724,Earth,2,The Library,10,Toph,Hmph! [Slams her drink on the table and folds her arms. Cut to a shot of Zei.],Hmph!,John O'Bryan,Giancarlo Volpe,8.8 +6725,6725,Earth,2,The Library,10,Zei,"Of course, there's the matter of finding it. I've made several trips into the Si Wong Desert and almost died each time. [In a depressed voice.] I'm afraid that desert's impossible to cross.","Of course, there's the matter of finding it. I've made several trips into the Si Wong Desert and almost died each time. I'm afraid that desert's impossible to cross.",John O'Bryan,Giancarlo Volpe,8.8 +6726,6726,Earth,2,The Library,10,Sokka,"Professor, would you like to see our sky bison?","Professor, would you like to see our sky bison?",John O'Bryan,Giancarlo Volpe,8.8 +6727,6727,Earth,2,The Library,10,Zei,A sky bison?! You actually have one?,A sky bison?! You actually have one?,John O'Bryan,Giancarlo Volpe,8.8 +6728,6728,Earth,2,The Library,10,Scene Description,"Cut to Appa retreating from four sandbenders, as he growls.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6729,6729,Earth,2,The Library,10,Zei,"[Runs toward the sandbenders.] Sandbenders, shoo, away from the bison!","Sandbenders, shoo, away from the bison!",John O'Bryan,Giancarlo Volpe,8.8 +6730,6730,Earth,2,The Library,10,Scene Description,"The sandbenders run away and get into two sand-sailers. They drive the sailers by creating a small tornado of sand near the sail. Cut to a ground view of Appa flying across the sky. Cut to Appa's saddle and pan from Katara and Toph leaning against the sides to Sokka who grabs a telescope and looks over the side. The shot changes to Momo, Zei, and Aang on Appa's head. Zei leans over Appa's head.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6731,6731,Earth,2,The Library,10,Zei,"Tell me, sky bison, are you the last of your breed? [Appa growls and Zei responds enthusiastically.] Delightful! I only wish I spoke his tongue. [Scratches Appa's head.] Oh, the stories this beast could tell. [Momo crawls up to Zei's side and starts chittering.] Shush, chatty monkey.","Tell me, sky bison, are you the last of your breed? Delightful! I only wish I spoke his tongue. Oh, the stories this beast could tell. Shush, chatty monkey.",John O'Bryan,Giancarlo Volpe,8.8 +6732,6732,Earth,2,The Library,10,Aang,"[Examines the picture of the library.] Wow, shouldn't be too hard to find a place like this out here.","Wow, shouldn't be too hard to find a place like this out here.",John O'Bryan,Giancarlo Volpe,8.8 +6733,6733,Earth,2,The Library,10,Scene Description,Appa flies away from the camera. Cut back to the saddle.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6734,6734,Earth,2,The Library,10,Toph,[Groans in frustration.] Does this place even exist?,Does this place even exist?,John O'Bryan,Giancarlo Volpe,8.8 +6735,6735,Earth,2,The Library,10,Zei,Some say it doesn't.,Some say it doesn't.,John O'Bryan,Giancarlo Volpe,8.8 +6736,6736,Earth,2,The Library,10,Toph,"[Eyes widen in surprise before narrowing.] Shouldn't you have mentioned that before? [Collapses on the saddle, putting her feet over the side.]",Shouldn't you have mentioned that before?,John O'Bryan,Giancarlo Volpe,8.8 +6737,6737,Earth,2,The Library,10,Scene Description,"Cut to an aerial view of Appa flying. Cut to Zei, who writes in his journal and pans to Toph.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6738,6738,Earth,2,The Library,10,Toph,"[Pointing over the side of the saddle with excitement.] There it is! [Everybody on Appa looks to where Toph is pointing, but they can only see sand dunes. Aang, Katara, and Sokka glare at Toph in annoyance for tricking them. Cut back to the shot of Toph.] That's what it will sound like when one of you spots it. [Waves her hand in front of her face with a blank grin to remind them of the fact that she is blind. She quickly goes back to clutching the saddle.]",There it is! That's what it will sound like when one of you spots it.,John O'Bryan,Giancarlo Volpe,8.8 +6739,6739,Earth,2,The Library,10,Scene Description,Cut to Appa flying and shows a closer shot of Aang driving Appa while Momo sleeps on Aang's head. Sokka and Katara search for the library on Appa's saddle.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6740,6740,Earth,2,The Library,10,Katara,"It shouldn't be this hard to spot a giant, ornate building from the air.","It shouldn't be this hard to spot a giant, ornate building from the air.",John O'Bryan,Giancarlo Volpe,8.8 +6741,6741,Earth,2,The Library,10,Sokka,"[Looks through his telescope and spots a tower. Pointing.] Down there, what's that?","Down there, what's that?",John O'Bryan,Giancarlo Volpe,8.8 +6742,6742,Earth,2,The Library,10,Scene Description,Momo wakes up. Cut to the tower and Appa flies down next to it.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6743,6743,Earth,2,The Library,10,Katara,[Holding the illustrations.] Forget it. It's obviously not what we're looking for. [Side shot.] The building in this drawing is enormous.,Forget it. It's obviously not what we're looking for. The building in this drawing is enormous.,John O'Bryan,Giancarlo Volpe,8.8 +6744,6744,Earth,2,The Library,10,Scene Description,They see a sparkle in the distance and a fox holding a scroll with its mouth walking over a dune.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6745,6745,Earth,2,The Library,10,Sokka,[To Zei.] What kind of animal is that?,What kind of animal is that?,John O'Bryan,Giancarlo Volpe,8.8 +6746,6746,Earth,2,The Library,10,Scene Description,The fox runs up the tower. Shot changes to a window at the top of the tower through which the fox enters.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6747,6747,Earth,2,The Library,10,Zei,"I think that was one of the Knowledge Seekers. [Frontal shot.] Oh, we must be close to the library!","I think that was one of the Knowledge Seekers. Oh, we must be close to the library!",John O'Bryan,Giancarlo Volpe,8.8 +6748,6748,Earth,2,The Library,10,Sokka,"[Looking at the illustration Katara is holding.] No, this is the library- look! [Camera pans down from the tower to the illustration.] It's completely buried.","No, this is the library- look! It's completely buried.",John O'Bryan,Giancarlo Volpe,8.8 +6749,6749,Earth,2,The Library,10,Scene Description,Cut to a zoom out shot of the spire from far away.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6750,6750,Earth,2,The Library,10,Scene Description,Further shot of the top of library. The camera pans up from the sand to the top of the library.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6751,6751,Earth,2,The Library,10,Zei,"[Shouting dramatically.] The library is buried?! [Cut to a shot of the group standing in front of the spire. Zei runs forward. Depressed.] My life's ambition is now full of sand. [Collapses. Smiling, he lifts his head and reveals a small shovel in hand. Excitedly.] Well, time to start excavating. [He attempts to unearth the library using the tiny shovel. Cut to a close-up of the spire's surface as Toph places her palm against it.]","The library is buried?! My life's ambition is now full of sand. Well, time to start excavating.",John O'Bryan,Giancarlo Volpe,8.8 +6752,6752,Earth,2,The Library,10,Toph,"[Cut a small part of the library which Toph puts her hand on.] Actually, that won't be necessary. The inside seems to be completely intact. [Aerial shot.] And it's huge.","Actually, that won't be necessary. The inside seems to be completely intact. And it's huge.",John O'Bryan,Giancarlo Volpe,8.8 +6753,6753,Earth,2,The Library,10,Sokka,That fox thingy went in through a window. I say we climb up there and give it a look.,That fox thingy went in through a window. I say we climb up there and give it a look.,John O'Bryan,Giancarlo Volpe,8.8 +6754,6754,Earth,2,The Library,10,Toph,I say you guys go ahead without me.,I say you guys go ahead without me.,John O'Bryan,Giancarlo Volpe,8.8 +6755,6755,Earth,2,The Library,10,Katara,You got something against libraries?,You got something against libraries?,John O'Bryan,Giancarlo Volpe,8.8 +6756,6756,Earth,2,The Library,10,Toph,"I've held books before. And I gotta tell you, they don't exactly do it for me.","I've held books before. And I gotta tell you, they don't exactly do it for me.",John O'Bryan,Giancarlo Volpe,8.8 +6757,6757,Earth,2,The Library,10,Katara,"[Sheepishly.] Oh, right. Sorry.","Oh, right. Sorry.",John O'Bryan,Giancarlo Volpe,8.8 +6758,6758,Earth,2,The Library,10,Toph,Let me know if they have something you can listen to.,Let me know if they have something you can listen to.,John O'Bryan,Giancarlo Volpe,8.8 +6759,6759,Earth,2,The Library,10,Scene Description,"Cut to the window at the top of the tower. A boomerang with a rope tied to it is thrown into the window. At the bottom of the tower, Sokka starts scaling the rope and the camera pans to Aang, Appa, and Toph.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6760,6760,Earth,2,The Library,10,Aang,"[To Appa.] Don't worry, buddy. I'm not making you go underground ever again. You can stay out here with Toph. [Walks off camera.]","Don't worry, buddy. I'm not making you go underground ever again. You can stay out here with Toph.",John O'Bryan,Giancarlo Volpe,8.8 +6761,6761,Earth,2,The Library,10,Scene Description,"Appa makes a low, rumbling growl.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6762,6762,Earth,2,The Library,10,Toph,[Awkwardly.] What's up?,What's up?,John O'Bryan,Giancarlo Volpe,8.8 +6763,6763,Earth,2,The Library,10,Scene Description,"Cut to overhead shot Katara, Sokka, Aang, and Zei scaling the rope inside the library. The shot changes to a closer view as Zei, Aang, Sokka, and Katara climb down and Momo flies down. The shot changes to show the library's ceiling dome.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6764,6764,Earth,2,The Library,10,Zei,"Oh, it's breathtaking! [Shot changes to show Zei, Aang, and Sokka climb down the rope with owl arches in the background.] The spirit spared no expense in designing this place. [Pointing.] Look at those beautiful buttresses! [Cut to an above shot of Sokka, Aang, and Zei, who are hanging from the rope. Sokka and Aang giggle at the word.] What's funny?","Oh, it's breathtaking! The spirit spared no expense in designing this place. Look at those beautiful buttresses! What's funny?",John O'Bryan,Giancarlo Volpe,8.8 +6765,6765,Earth,2,The Library,10,Aang,Nothing. We just like architecture.,Nothing. We just like architecture.,John O'Bryan,Giancarlo Volpe,8.8 +6766,6766,Earth,2,The Library,10,Zei,[Cut back to a smiling Zei.] As do I.,As do I.,John O'Bryan,Giancarlo Volpe,8.8 +6767,6767,Earth,2,The Library,10,Scene Description,They slide off the rope onto a bridge and Momo lands on Aang's shoulder.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6768,6768,Earth,2,The Library,10,Zei,"My word! [Examines an owl mosaic above two pillars.] The exquisite mosaic handiwork of this tile-rendered avian symbol ... [Sokka, Katara, and Aang look at Zei quizzically.] Eh, nice owl.","My word! The exquisite mosaic handiwork of this tile-rendered avian symbol ... Eh, nice owl.",John O'Bryan,Giancarlo Volpe,8.8 +6769,6769,Earth,2,The Library,10,Scene Description,"They hear rustling noises. Sokka and Katara run behind a pillar. Aang grabs Zei and they hide behind another pillar. Wan Shi Tong, an owl spirit, walks over the bridge and examines the rope. Aang cranes his head around the pillar.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6770,6770,Earth,2,The Library,10,Wan Shi Tong,[Turns his head around.] I know you're back there.,I know you're back there.,John O'Bryan,Giancarlo Volpe,8.8 +6771,6771,Earth,2,The Library,10,Scene Description,Aang gasps and hides again.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6772,6772,Earth,2,The Library,10,Zei,"[Smiles and walks from behind the pillar and up to Wan Shi Tong.] Hello, I'm Professor Zei, head of anthropology at Ba Sing Se University.","Hello, I'm Professor Zei, head of anthropology at Ba Sing Se University.",John O'Bryan,Giancarlo Volpe,8.8 +6773,6773,Earth,2,The Library,10,Wan Shi Tong,You should leave the way you came. [Looks to the side.] Unless you want to become a stuffed head of anthropology.,You should leave the way you came. Unless you want to become a stuffed head of anthropology.,John O'Bryan,Giancarlo Volpe,8.8 +6774,6774,Earth,2,The Library,10,Scene Description,"The camera pans to three stuffed animal heads on a pillar. Frontal shot of Zei, as he moans and clutches his neck. Katara, Sokka, and Aang walk out from behind their pillars and up to Wan Shi Tong.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6775,6775,Earth,2,The Library,10,Sokka,Are you the spirit who brought this library to the physical world?,Are you the spirit who brought this library to the physical world?,John O'Bryan,Giancarlo Volpe,8.8 +6776,6776,Earth,2,The Library,10,Wan Shi Tong,"Indeed, I am Wan Shi Tong, ""He Who Knows Ten Thousand Things."" And you are obviously humans, which, by the way, are no longer permitted in my study.","Indeed, I am Wan Shi Tong, ""He Who Knows Ten Thousand Things."" And you are obviously humans, which, by the way, are no longer permitted in my study.",John O'Bryan,Giancarlo Volpe,8.8 +6777,6777,Earth,2,The Library,10,Aang,What do you have against humans?,What do you have against humans?,John O'Bryan,Giancarlo Volpe,8.8 +6778,6778,Earth,2,The Library,10,Wan Shi Tong,"Hm! Humans only bother learning things to get the edge on other humans. [Cut to Zhao, studying scrolls in the library. Voice-over.] Like that firebender who came to this place a few years ago, looking to destroy his enemy. [Scene changes to the present.] So ... [Leans toward a sweating Sokka.] who are you trying to destroy?","Hm! Humans only bother learning things to get the edge on other humans. Like that firebender who came to this place a few years ago, looking to destroy his enemy. So ... who are you trying to destroy?",John O'Bryan,Giancarlo Volpe,8.8 +6779,6779,Earth,2,The Library,10,Sokka,[Cut to his reflection in Wan Shi Tong's eye.] What? No-no-no-no destroying. We're not into that.,What? No-no-no-no destroying. We're not into that.,John O'Bryan,Giancarlo Volpe,8.8 +6780,6780,Earth,2,The Library,10,Wan Shi Tong,[Blinks.] Then why have you come here?,Then why have you come here?,John O'Bryan,Giancarlo Volpe,8.8 +6781,6781,Earth,2,The Library,10,Sokka,Um ... knowledge for knowledge's sake?,Um ... knowledge for knowledge's sake?,John O'Bryan,Giancarlo Volpe,8.8 +6782,6782,Earth,2,The Library,10,Wan Shi Tong,"[Shot changes to him leaning toward Sokka.] If you're going to lie to an all-knowing spirit being, you should at least put some effort into it.","If you're going to lie to an all-knowing spirit being, you should at least put some effort into it.",John O'Bryan,Giancarlo Volpe,8.8 +6783,6783,Earth,2,The Library,10,Sokka,"I'm not lying, I'm here with the Avatar, [Grabs Aang and puts him into the shot.] and he's the bridge between our worlds. He'll vouch for me. [Nudges Aang.]","I'm not lying, I'm here with the Avatar, and he's the bridge between our worlds. He'll vouch for me.",John O'Bryan,Giancarlo Volpe,8.8 +6784,6784,Earth,2,The Library,10,Aang,"Ow. [Frontal shot.] Uh, yeah, I'll vouch. We will not abuse the knowledge in your library, good spirit. [Side shot.] You have my word. [They bow to Wan Shi Tong.]","Ow. Uh, yeah, I'll vouch. We will not abuse the knowledge in your library, good spirit. You have my word.",John O'Bryan,Giancarlo Volpe,8.8 +6785,6785,Earth,2,The Library,10,Wan Shi Tong,"Hmm, very well. I'll let you peruse my vast collection [Shot changes to Zei, Aang, Katara, and Sokka looking hopefully.] on one condition. [They look at the spirit a little worriedly. Further overhead shot.] To prove your worth as scholars, you have to contribute some worthwhile knowledge.","Hmm, very well. I'll let you peruse my vast collection on one condition. To prove your worth as scholars, you have to contribute some worthwhile knowledge.",John O'Bryan,Giancarlo Volpe,8.8 +6786,6786,Earth,2,The Library,10,Zei,[Walks up to Wan Shi Tong holding a book and kneels down.] Please accept this tome as a donation to your library.,Please accept this tome as a donation to your library.,John O'Bryan,Giancarlo Volpe,8.8 +6787,6787,Earth,2,The Library,10,Wan Shi Tong,"[Frontal shot.] First edition, very nice. [Grabs the book with his wing.]","First edition, very nice.",John O'Bryan,Giancarlo Volpe,8.8 +6788,6788,Earth,2,The Library,10,Katara,[Camera pans up to show her holding the waterbending scroll.] I have an authentic waterbending scroll.,I have an authentic waterbending scroll.,John O'Bryan,Giancarlo Volpe,8.8 +6789,6789,Earth,2,The Library,10,Wan Shi Tong,"[Frontal shot.] Ooh, these illustrations are quite stylish. [Grabs the scroll.]","Ooh, these illustrations are quite stylish.",John O'Bryan,Giancarlo Volpe,8.8 +6790,6790,Earth,2,The Library,10,Aang,"[Cut to him.] Uh ... oh, I know! [Grabs his wanted poster out of his shirt and shows it to Wan Shi Tong.] Hah!","Uh ... oh, I know! Hah!",John O'Bryan,Giancarlo Volpe,8.8 +6791,6791,Earth,2,The Library,10,Wan Shi Tong,I suppose that counts. [Takes the poster.],I suppose that counts.,John O'Bryan,Giancarlo Volpe,8.8 +6792,6792,Earth,2,The Library,10,Sokka,"[Side shot of him walking forward.] Oh, great spirit, [Frontal shot of him holding a piece of string.] check this out. [Ties the string into a butterfly knot and shows it to Wan Shi Tong.] Ta-da! [Aang, Katara, and Zei look at Sokka with uncertainty. Shot of Wan Shi Tong just looking at him in silence.] It's a special knot. That counts as knowledge!","Oh, great spirit, check this out. Ta-da! It's a special knot. That counts as knowledge!",John O'Bryan,Giancarlo Volpe,8.8 +6793,6793,Earth,2,The Library,10,Wan Shi Tong,"[Frontal shot.] You're not very bright, are you? [Sokka grunts as Wan Shi Tong takes the knot.] Enjoy the library. [Jumps off the bridge and flies down to lower levels of the library.]","You're not very bright, are you? Enjoy the library.",John O'Bryan,Giancarlo Volpe,8.8 +6794,6794,Earth,2,The Library,10,Scene Description,Team Avatar and Zei walk toward the library.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6795,6795,Earth,2,The Library,10,Sokka,[Narrows his eyes.] Bright enough to fool you.,Bright enough to fool you.,John O'Bryan,Giancarlo Volpe,8.8 +6796,6796,Earth,2,The Library,10,Scene Description,"Cut to an overhead view of the desert outside the library, where Appa and Toph rest in the shade. The shot changes to a closer view of Appa and Toph.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6797,6797,Earth,2,The Library,10,Toph,"[To Appa.] So ... you like ... flying? [Appa purrs deeply and scratches his ear.] Of course, I'm more comfortable on the ground where I can see. Well, I don't see the way you do. I feel the vibrations in the ground with my feet. [Closer shot of the two. Toph picks up a handful of sand and lets it fall.] But this sand is so loose and shifty, it makes everything look fuzzy. [Appa makes a rumbling groan with a further shot.] Not that there's anything wrong with fuzzy. [Appa grunts.]","So ... you like ... flying? Of course, I'm more comfortable on the ground where I can see. Well, I don't see the way you do. I feel the vibrations in the ground with my feet. But this sand is so loose and shifty, it makes everything look fuzzy. Not that there's anything wrong with fuzzy.",John O'Bryan,Giancarlo Volpe,8.8 +6798,6798,Earth,2,The Library,10,Scene Description,"Cut to a large room full of books and the camera pans down to show the Knowledge Seeker, Team Avatar, and Zei at a bookshelf. In a closer shot, the Knowledge Seeker deposits its scroll on a shelf and the camera pans to the right to Team Avatar and Zei. Closer shot of Aang, as he flips a page on his book. He finds an illustration of a person talking to a lion turtle with two more lion turtles in the background.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6799,6799,Earth,2,The Library,10,Aang,"[Holds the illustration up to show Sokka and Katara.] Hey, look at these weird lion turtle things.","Hey, look at these weird lion turtle things.",John O'Bryan,Giancarlo Volpe,8.8 +6800,6800,Earth,2,The Library,10,Sokka,"[Pulls a book off the bookshelf with the symbols on the cover.] Eh, I've seen weirder.","Eh, I've seen weirder.",John O'Bryan,Giancarlo Volpe,8.8 +6801,6801,Earth,2,The Library,10,Katara,"[Walks up to Aang, carrying a book.] Aang, did you know in a past life, you were left-handed?","Aang, did you know in a past life, you were left-handed?",John O'Bryan,Giancarlo Volpe,8.8 +6802,6802,Earth,2,The Library,10,Aang,I always knew I was special.,I always knew I was special.,John O'Bryan,Giancarlo Volpe,8.8 +6803,6803,Earth,2,The Library,10,Scene Description,"Cut to Sokka and Zei. While Zei takes books off of bookshelves and adds them to his stack, Sokka takes a scroll from a shelf, reads it, and puts it in his purse. Back shot of Sokka walking up to a podium. He sees the burnt piece of parchment framed on the podium with the characters .",NA,John O'Bryan,Giancarlo Volpe,8.8 +6804,6804,Earth,2,The Library,10,Sokka,"[Reading from the parchment.] ""The darkest day in Fire Nation history."" It's got a date at the top, but it doesn't say anything else. [He looks around, making sure no one is watching, before prying open the frame with his sword and taking the parchment.]","""The darkest day in Fire Nation history."" It's got a date at the top, but it doesn't say anything else.",John O'Bryan,Giancarlo Volpe,8.8 +6805,6805,Earth,2,The Library,10,Aang,"[Walks in with Katara and Zei.] Sokka, where are you going?","Sokka, where are you going?",John O'Bryan,Giancarlo Volpe,8.8 +6806,6806,Earth,2,The Library,10,Sokka,"[Running down a section of a library.] I want to know what happened to the Fire Nation on their darkest day. This could be promising. [Aang, Katara, and Zei follow him.] The information on the Fire Nation should be right up here.",I want to know what happened to the Fire Nation on their darkest day. This could be promising. The information on the Fire Nation should be right up here.,John O'Bryan,Giancarlo Volpe,8.8 +6807,6807,Earth,2,The Library,10,Aang,[Looking at a room full of ashes.] Firebenders.,Firebenders.,John O'Bryan,Giancarlo Volpe,8.8 +6808,6808,Earth,2,The Library,10,Katara,They destroyed everything having to do with the Fire Nation.,They destroyed everything having to do with the Fire Nation.,John O'Bryan,Giancarlo Volpe,8.8 +6809,6809,Earth,2,The Library,10,Sokka,"That's so unfair! Just when I think I'm one step ahead of the Fire Nation, it turns out they beat us here a long time ago. [Collapses on his knees.] I need to know what happened on the darkest day. [Hears whimpering and looks at the entrance to see the Knowledge Seeker standing on its hind legs.] Hello, little weird fox guy.","That's so unfair! Just when I think I'm one step ahead of the Fire Nation, it turns out they beat us here a long time ago. I need to know what happened on the darkest day. Hello, little weird fox guy.",John O'Bryan,Giancarlo Volpe,8.8 +6810,6810,Earth,2,The Library,10,Scene Description,The Knowledge Seeker gets on its four legs and points outside the room.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6811,6811,Earth,2,The Library,10,Zei,Seems it's trying to assist you.,Seems it's trying to assist you.,John O'Bryan,Giancarlo Volpe,8.8 +6812,6812,Earth,2,The Library,10,Sokka,"Um, sure, I guess I'll follow you.","Um, sure, I guess I'll follow you.",John O'Bryan,Giancarlo Volpe,8.8 +6813,6813,Earth,2,The Library,10,Scene Description,They follow the Knowledge Seeker to a large round door with a texture lining the bottom sides of the wall. The Knowledge Seeker enters a small door in the texture. The large door opens showing the Knowledge Seeker standing behind it. Team Avatar and Zei walk toward the center of the room. The Knowledge Seeker pushes a lever beside the calendar wheel and the domed ceiling changes from day to night.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6814,6814,Earth,2,The Library,10,Zei,"This room is a true marvel, a mechanical wonder. It's a planetarium that shows the heavens moving.","This room is a true marvel, a mechanical wonder. It's a planetarium that shows the heavens moving.",John O'Bryan,Giancarlo Volpe,8.8 +6815,6815,Earth,2,The Library,10,Scene Description,The domed ceiling changes back into day.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6816,6816,Earth,2,The Library,10,Sokka,"Uh, this is beautiful, but how is it helpful?","Uh, this is beautiful, but how is it helpful?",John O'Bryan,Giancarlo Volpe,8.8 +6817,6817,Earth,2,The Library,10,Katara,"Maybe these dials represent dates and times. Sokka, try entering that date from that parchment you took.","Maybe these dials represent dates and times. Sokka, try entering that date from that parchment you took.",John O'Bryan,Giancarlo Volpe,8.8 +6818,6818,Earth,2,The Library,10,Sokka,"[Mock whispering.] Shh, Katara, not in front of the fox, he's with the owl.","Shh, Katara, not in front of the fox, he's with the owl.",John O'Bryan,Giancarlo Volpe,8.8 +6819,6819,Earth,2,The Library,10,Scene Description,The Knowledge Seeker whimpers. Sokka glances at the parchment and changes four of the calendar wheels. He pushes the lever and the domed ceiling changes from day to night.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6820,6820,Earth,2,The Library,10,Aang,"Wow, I got to hand it to you, Sokka. You picked the best mini-vacation for sure.","Wow, I got to hand it to you, Sokka. You picked the best mini-vacation for sure.",John O'Bryan,Giancarlo Volpe,8.8 +6821,6821,Earth,2,The Library,10,Scene Description,The ceiling changes from night to day and the planetarium suddenly grows dark.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6822,6822,Earth,2,The Library,10,Katara,"Hey, wait. What happened to the sun?","Hey, wait. What happened to the sun?",John O'Bryan,Giancarlo Volpe,8.8 +6823,6823,Earth,2,The Library,10,Aang,"[Narrows his eyes.] Great, you must have broken it.","Great, you must have broken it.",John O'Bryan,Giancarlo Volpe,8.8 +6824,6824,Earth,2,The Library,10,Sokka,"[Walks next to Aang.] It's not broken. [Shot changes to show the sun piece of the planetarium covered by the moon piece.] The sun is behind the moon. It's a solar eclipse! It's literally the darkest day in Fire Nation history. Now I get it. [Grabs Aang's shoulders and shakes him.] Something awful happened on that day. I don't know what, but I do know why. Firebenders lose their bending during a solar eclipse. [Pushes Aang back.] Sorry.","It's not broken. The sun is behind the moon. It's a solar eclipse! It's literally the darkest day in Fire Nation history. Now I get it. Something awful happened on that day. I don't know what, but I do know why. Firebenders lose their bending during a solar eclipse. Sorry.",John O'Bryan,Giancarlo Volpe,8.8 +6825,6825,Earth,2,The Library,10,Katara,"That makes sense. I mean, think what the lunar eclipse at the North Pole did to the waterbenders. This is huge.","That makes sense. I mean, think what the lunar eclipse at the North Pole did to the waterbenders. This is huge.",John O'Bryan,Giancarlo Volpe,8.8 +6826,6826,Earth,2,The Library,10,Scene Description,The Knowledge Seeker gets on its hind legs and begs.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6827,6827,Earth,2,The Library,10,Sokka,"[To the Knowledge Seeker.] Fine, you earned it. [Tosses the fox a snack from his bag. To Aang and Katara.] We've gotta get this information to the Earth King at Ba Sing Se. We'll wait for the next eclipse, then we'll invade the Fire Nation when they're totally helpless. The Fire Lord is going down!","Fine, you earned it. We've gotta get this information to the Earth King at Ba Sing Se. We'll wait for the next eclipse, then we'll invade the Fire Nation when they're totally helpless. The Fire Lord is going down!",John O'Bryan,Giancarlo Volpe,8.8 +6828,6828,Earth,2,The Library,10,Wan Shi Tong,"[Enters the shot from behind Sokka.] Mortals are so predictable, and such terrible liars. [Sokka gulps. Shot changes to show Wan Shi Tong talking to them from the entrance.] You betrayed my trust. From the beginning, you intended to misuse this knowledge for evil purposes.","Mortals are so predictable, and such terrible liars. You betrayed my trust. From the beginning, you intended to misuse this knowledge for evil purposes.",John O'Bryan,Giancarlo Volpe,8.8 +6829,6829,Earth,2,The Library,10,Sokka,"You don't understand. If anyone's evil, it's the Fire Nation. You saw what they did to your library. They're destructive and dangerous. We need this information.","You don't understand. If anyone's evil, it's the Fire Nation. You saw what they did to your library. They're destructive and dangerous. We need this information.",John O'Bryan,Giancarlo Volpe,8.8 +6830,6830,Earth,2,The Library,10,Wan Shi Tong,You think you're the first person to believe their war was justified? Countless others before you have come here seeking weapons or weaknesses or battle strategies.,You think you're the first person to believe their war was justified? Countless others before you have come here seeking weapons or weaknesses or battle strategies.,John O'Bryan,Giancarlo Volpe,8.8 +6831,6831,Earth,2,The Library,10,Aang,"We had no choice. Please, we're just desperate to protect the people we love.","We had no choice. Please, we're just desperate to protect the people we love.",John O'Bryan,Giancarlo Volpe,8.8 +6832,6832,Earth,2,The Library,10,Wan Shi Tong,And now I'm going to protect what I love. [Flaps his wings and the library starts shaking.],And now I'm going to protect what I love.,John O'Bryan,Giancarlo Volpe,8.8 +6833,6833,Earth,2,The Library,10,Aang,What are you doing?,What are you doing?,John O'Bryan,Giancarlo Volpe,8.8 +6834,6834,Earth,2,The Library,10,Wan Shi Tong,I'm taking my knowledge back. No one will ever abuse it again.,I'm taking my knowledge back. No one will ever abuse it again.,John O'Bryan,Giancarlo Volpe,8.8 +6835,6835,Earth,2,The Library,10,Katara,[Sand pours from the ceiling.] He's sinking the building. We've gotta get out of here.,He's sinking the building. We've gotta get out of here.,John O'Bryan,Giancarlo Volpe,8.8 +6836,6836,Earth,2,The Library,10,Wan Shi Tong,"I'm afraid I can't allow that. You already know too much. [Pecks at them, but misses.]",I'm afraid I can't allow that. You already know too much.,John O'Bryan,Giancarlo Volpe,8.8 +6837,6837,Earth,2,The Library,10,Scene Description,Wan Shi Tong pursues them as they run out the planetarium. The camera pans up to the surface. Appa snarls as the library starts sinking and the ground starts shaking.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6838,6838,Earth,2,The Library,10,Toph,"I already told you, I don't wanna snuggle. [Appa stands up and hurries away from the library. Toph looks at the sinking library.] Library sinking. [Running up to the library.] Library sinking! [Punches both fists into the library to stop it from sinking. Her feet slip in the sand, so she pauses to solidify it.] Hi-yah! [Struggles to stop it from sinking again.]","I already told you, I don't wanna snuggle. Library sinking. Library sinking! Hi-yah!",John O'Bryan,Giancarlo Volpe,8.8 +6839,6839,Earth,2,The Library,10,Scene Description,"The camera pans down to an aerial view of Team Avatar and Zei running through the library. They round a corner, and Wan Shi Tong continues pursuing them.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6840,6840,Earth,2,The Library,10,Zei,"[Stops running and turns back toward Wan Shi Tong.] Great Knowledge Spirit, I beg you, do not destroy your vast collection of priceless tomes.","Great Knowledge Spirit, I beg you, do not destroy your vast collection of priceless tomes.",John O'Bryan,Giancarlo Volpe,8.8 +6841,6841,Earth,2,The Library,10,Scene Description,"Aang uses air suction to move Zei out of Wan Shi Tong's attack. Aang fires an air blast at Wan Shi Tong, sending the spirit falling off the side of the bridge.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6842,6842,Earth,2,The Library,10,Aang,"[Runs back to Katara, Zei, and Sokka.] We've gotta get back to the surface!",We've gotta get back to the surface!,John O'Bryan,Giancarlo Volpe,8.8 +6843,6843,Earth,2,The Library,10,Katara,"Sokka, let's go.","Sokka, let's go.",John O'Bryan,Giancarlo Volpe,8.8 +6844,6844,Earth,2,The Library,10,Sokka,But we still don't know when the next eclipse is gonna to happen.,But we still don't know when the next eclipse is gonna to happen.,John O'Bryan,Giancarlo Volpe,8.8 +6845,6845,Earth,2,The Library,10,Katara,Don't be stupid! We'll find out later!,Don't be stupid! We'll find out later!,John O'Bryan,Giancarlo Volpe,8.8 +6846,6846,Earth,2,The Library,10,Sokka,"No, we won't. If we leave this place, we'll never get the information. Aang, come with me to the planetarium, [Aang runs up to him.] I need cover. Katara, take Momo and get out of here!","No, we won't. If we leave this place, we'll never get the information. Aang, come with me to the planetarium, I need cover. Katara, take Momo and get out of here!",John O'Bryan,Giancarlo Volpe,8.8 +6847,6847,Earth,2,The Library,10,Katara,But ...!,But ...!,John O'Bryan,Giancarlo Volpe,8.8 +6848,6848,Earth,2,The Library,10,Scene Description,Wan Shi Tong breaks in between the two groups and pursues Katara and Zei.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6849,6849,Earth,2,The Library,10,Sokka,Go!,Go!,John O'Bryan,Giancarlo Volpe,8.8 +6850,6850,Earth,2,The Library,10,Katara,"Hurry, Sokka!","Hurry, Sokka!",John O'Bryan,Giancarlo Volpe,8.8 +6851,6851,Earth,2,The Library,10,Scene Description,"Sokka and Aang run away. Zei evades Wan Shi Tong by diving into a smaller aisle of books. He grabs a book, looking at the cover excitedly. Katara runs and Wan Shi Tong swoops down. Cut to the surface with Toph holding up the library. Appa grunts nervously.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6852,6852,Earth,2,The Library,10,Toph,What is it now?,What is it now?,John O'Bryan,Giancarlo Volpe,8.8 +6853,6853,Earth,2,The Library,10,Scene Description,Cut to three sand-sailers. The camera pans across a sandbender's face and cuts to a side shot of the sailer. The sandbenders direct a sand blast at Appa.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6854,6854,Earth,2,The Library,10,Toph,[Struggling.] Who's there?,Who's there?,John O'Bryan,Giancarlo Volpe,8.8 +6855,6855,Earth,2,The Library,10,Scene Description,"The sand-sailers circle Appa and a sandbender jumps out. Cut to inside the library, where Sokka and Aang run across a bridge and reach the entrance to the planetarium.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6856,6856,Earth,2,The Library,10,Aang,Why are we doing this?,Why are we doing this?,John O'Bryan,Giancarlo Volpe,8.8 +6857,6857,Earth,2,The Library,10,Sokka,"Because if this calendar can tell us about eclipses in the past, then maybe it can project when the next one will be.","Because if this calendar can tell us about eclipses in the past, then maybe it can project when the next one will be.",John O'Bryan,Giancarlo Volpe,8.8 +6858,6858,Earth,2,The Library,10,Aang,You can't possibly check every single date.,You can't possibly check every single date.,John O'Bryan,Giancarlo Volpe,8.8 +6859,6859,Earth,2,The Library,10,Sokka,"[Adjusting the calendar wheel.] I don't have to. We just need to check every date before Sozin's Comet arrives. Because after that- well, try not to think about that.","I don't have to. We just need to check every date before Sozin's Comet arrives. Because after that- well, try not to think about that.",John O'Bryan,Giancarlo Volpe,8.8 +6860,6860,Earth,2,The Library,10,Scene Description,"Sokka finishes adjusting the wheels and Aang pushes the lever. The camera fades from the moon traveling across the ceiling to Sokka adjusting the wheel calendar, before switching to the ceiling changing from night to day. The camera fades to Aang looking at the night sky to the moon traveling across the ceiling, to the calendar wheel, to Sokka adjusting the wheel, to the sun and moon traveling close to each other, to Sokka trying again.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6861,6861,Earth,2,The Library,10,Aang,"[Pushing the lever.] Come on, eclipse.","Come on, eclipse.",John O'Bryan,Giancarlo Volpe,8.8 +6862,6862,Earth,2,The Library,10,Scene Description,Cut to the moon and sun traveling across the ceiling until the moon overlaps with the sun.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6863,6863,Earth,2,The Library,10,Sokka,"That's it! The solar eclipse! It's just a few months away. [Takes out a piece of paper and writes down the date.] Got it. Now, let's get to Ba Sing Se.","That's it! The solar eclipse! It's just a few months away. Got it. Now, let's get to Ba Sing Se.",John O'Bryan,Giancarlo Volpe,8.8 +6864,6864,Earth,2,The Library,10,Scene Description,They run out of the planetarium. Cut to Appa surrounded by sandbenders yielding weighted ropes. They throw the ropes over Appa and solidify the sand near their feet to bring Appa down.,NA,John O'Bryan,Giancarlo Volpe,8.8 +6865,6865,Earth,2,The Library,10,Toph,Don't make me put this down.,Don't make me put this down.,John O'Bryan,Giancarlo Volpe,8.8 +6866,6866,Earth,2,The Library,10,Scene Description,"Toph lets go of the library and earthbends a slice of sand at the sandbenders, but misses. She grabs the library again. Cut to a tied up Appa as the sand-sailers drag him away.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6867,6867,Earth,2,The Library,10,Toph,"No! Stop sinking! [Fires three more slices of sand.] No! [Grabs the library.] I'm sorry, Appa. [Closes her eyes as the camera pans to show the sand-sailers dragging Appa away.]","No! Stop sinking! No! I'm sorry, Appa.",John O'Bryan,Giancarlo Volpe,8.8 +6868,6868,Earth,2,The Library,10,Scene Description,"Cut to Katara running away from Wan Shi Tong. She stops beside a bookshelf, holding Momo. Wan Shi Tong walks on the other side of the bookshelf and spots Momo's tail.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6869,6869,Earth,2,The Library,10,Wan Shi Tong,At least I'll have one specimen to add to my collection.,At least I'll have one specimen to add to my collection.,John O'Bryan,Giancarlo Volpe,8.8 +6870,6870,Earth,2,The Library,10,Scene Description,"Wan Shi Tong tries to grab Momo with his beak, but Katara runs away with Momo. She reaches the bridge with the rope and turns back to face Wan Shi Tong.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6871,6871,Earth,2,The Library,10,Wan Shi Tong,"Your waterbending won't do you much good here. [Raises his head and unfolds his wings to attack.] I've studied Northern water style, Southern water style, even Foggy Swamp style.","Your waterbending won't do you much good here. I've studied Northern water style, Southern water style, even Foggy Swamp style.",John O'Bryan,Giancarlo Volpe,8.8 +6872,6872,Earth,2,The Library,10,Scene Description,"Cut to a view of the ceiling. Aang flies his glider holding Sokka, who jumps off holding a book, yelling. Sokka slams the book onto Wan Shi Tong's head, knocking him out.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6873,6873,Earth,2,The Library,10,Sokka,That's called Sokka style. [Swings his fist to the side as he says this.] Learn it.,That's called Sokka style. Learn it.,John O'Bryan,Giancarlo Volpe,8.8 +6874,6874,Earth,2,The Library,10,Scene Description,"Pan up to a shot of the hole in the ceiling where the rope is dangling. Light from the outside is pouring down. Cut to a shot from the side of Sokka, Katara, and Momo, and the defeated spirit lying unconscious on the bridge. More streams of sand pour in from above. Sokka and Katara climb over Wan Shi Tong and up the rope. Aang glides past them. Cut to a close shot of Sokka climbing the rope. He stops and looks back down.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6875,6875,Earth,2,The Library,10,Sokka,"Wait! Professor, let's go.","Wait! Professor, let's go.",John O'Bryan,Giancarlo Volpe,8.8 +6876,6876,Earth,2,The Library,10,Zei,[Sitting among a pile of books holding a scroll that surrounds him. The sand is building up and beginning to cover some of the stacks. Zei is reading a scroll. The camera slowly zooms in.] I'm not leaving. I can't. [Drops the parchment to his lap and raises his right fist.] I've spent too long trying to find this place. [Places his hand on his chest and looks up.] There's not another collection of knowledge like this on earth. [Cut to a close-up of Zei with his eyes closed. He opens his eyes while smiling and speaks wistfully.] I could spend an eternity in here.,I'm not leaving. I can't. I've spent too long trying to find this place. There's not another collection of knowledge like this on earth. I could spend an eternity in here.,John O'Bryan,Giancarlo Volpe,8.8 +6877,6877,Earth,2,The Library,10,Katara,[Cut to a shot of Sokka and Katara looking at the professor. Katara looks up at Sokka.] Just go!,Just go!,John O'Bryan,Giancarlo Volpe,8.8 +6878,6878,Earth,2,The Library,10,Scene Description,"Wan Shi Tong screeches and shakes the rope, making Sokka and Katara fall off. Aang catches them and they fly up while Wan Shi Tong pursues them. Cut to outside the library, where Aang, Sokka, and Katara land. Toph lets go of the library, falling back. Aerial shot showing the ground where the library used to be.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6879,6879,Earth,2,The Library,10,Sokka,We got it. There's a solar eclipse coming. [Jumps and hugs his sister.] The Fire Nation's in trouble now!,We got it. There's a solar eclipse coming. The Fire Nation's in trouble now!,John O'Bryan,Giancarlo Volpe,8.8 +6880,6880,Earth,2,The Library,10,Aang,[Stands up and walks toward Toph.] Where's Appa?,Where's Appa?,John O'Bryan,Giancarlo Volpe,8.8 +6881,6881,Earth,2,The Library,10,Scene Description,"Toph shakes her head. Aang gasps and a tear falls down his cheek. The camera pans up from the crater to the sun. Fade to white, followed by the credits.",NA,John O'Bryan,Giancarlo Volpe,8.8 +6882,6882,Earth,2,The Desert,11,Scene Description,The camera shows a wide-view of the desert. Team Avatar looks in every direction over the vast ocean of sand for Appa. The camera halts as Aang and Toph come into view. Aang turns around to face Toph angrily.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6883,6883,Earth,2,The Desert,11,Aang,[Enraged.] How could you let them take Appa?! Why didn't you stop them?!,How could you let them take Appa?! Why didn't you stop them?!,Tim Hedrick,Lauren MacMullan,8.8 +6884,6884,Earth,2,The Desert,11,Scene Description,Cut to close-up of Aang's angry face.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6885,6885,Earth,2,The Desert,11,Toph,[Defensively.] I couldn't! The library was sinking! You guys were still inside and-,I couldn't! The library was sinking! You guys were still inside and-,Tim Hedrick,Lauren MacMullan,8.8 +6886,6886,Earth,2,The Desert,11,Scene Description,Aang interrupts Toph as he walks over to her.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6887,6887,Earth,2,The Desert,11,Aang,[Still enraged.] You could've come to get us. I could've saved him!,You could've come to get us. I could've saved him!,Tim Hedrick,Lauren MacMullan,8.8 +6888,6888,Earth,2,The Desert,11,Toph,[Turns to face him slightly.] I can hardly feel any vibrations out here. The sandbenders snuck up on me and there wasn't time for –,I can hardly feel any vibrations out here. The sandbenders snuck up on me and there wasn't time for –,Tim Hedrick,Lauren MacMullan,8.8 +6889,6889,Earth,2,The Desert,11,Aang,[Snaps at Toph in a harsh way.] You just didn't care! You never liked Appa! You wanted him gone!,You just didn't care! You never liked Appa! You wanted him gone!,Tim Hedrick,Lauren MacMullan,8.8 +6890,6890,Earth,2,The Desert,11,Scene Description,Aang looks extremely furious at Toph as Katara walks over to him. She puts her hand on his shoulder to try and calm him down.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6891,6891,Earth,2,The Desert,11,Katara,"Aang, stop it. You know Toph did all she could. She saved our lives.","Aang, stop it. You know Toph did all she could. She saved our lives.",Tim Hedrick,Lauren MacMullan,8.8 +6892,6892,Earth,2,The Desert,11,Scene Description,"Camera moves to Sokka, who is still looking out into the desert.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6893,6893,Earth,2,The Desert,11,Sokka,Who's going to save our lives now? We'll never make it out of here.,Who's going to save our lives now? We'll never make it out of here.,Tim Hedrick,Lauren MacMullan,8.8 +6894,6894,Earth,2,The Desert,11,Scene Description,Aang irately walks away from the rest of the group.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6895,6895,Earth,2,The Desert,11,Aang,"That's all any of you guys care about, yourselves! You don't care whether Appa is okay or not!","That's all any of you guys care about, yourselves! You don't care whether Appa is okay or not!",Tim Hedrick,Lauren MacMullan,8.8 +6896,6896,Earth,2,The Desert,11,Katara,"We're all concerned, but we can't afford to be fighting now.","We're all concerned, but we can't afford to be fighting now.",Tim Hedrick,Lauren MacMullan,8.8 +6897,6897,Earth,2,The Desert,11,Aang,"[In a cold, hard tone.] I'm going after Appa.",I'm going after Appa.,Tim Hedrick,Lauren MacMullan,8.8 +6898,6898,Earth,2,The Desert,11,Scene Description,"Aang flies off. Katara calls after him, running to the place he took off.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6899,6899,Earth,2,The Desert,11,Katara,"Aang, wait!","Aang, wait!",Tim Hedrick,Lauren MacMullan,8.8 +6900,6900,Earth,2,The Desert,11,Scene Description,"Cut to a view from the sky, showing Aang flying away from the rest of the group who stand by the large crater created by the disappeared library. Cut back to Katara, who is still looking in the direction Aang took off.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6901,6901,Earth,2,The Desert,11,Katara,We'd better start walking. We're the only people who know about the solar eclipse. We have to get that information to Ba Sing Se.,We'd better start walking. We're the only people who know about the solar eclipse. We have to get that information to Ba Sing Se.,Tim Hedrick,Lauren MacMullan,8.8 +6902,6902,Earth,2,The Desert,11,Scene Description,"The group starts walking in the same direction as Aang took off to, with Katara leading the way, followed by Sokka. Toph closes the ranks.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6903,6903,Earth,2,The Desert,11,Sokka,"You think if we dig out the giant owl, he'll give us a ride?","You think if we dig out the giant owl, he'll give us a ride?",Tim Hedrick,Lauren MacMullan,8.8 +6904,6904,Earth,2,The Desert,11,Scene Description,"Cut to Zuko and Iroh riding on their ostrich horse. Iroh fake-moans in pretend pain at every step the ostrich horse takes, clasping his left arm.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6905,6905,Earth,2,The Desert,11,Zuko,Maybe we should make camp.,Maybe we should make camp.,Tim Hedrick,Lauren MacMullan,8.8 +6906,6906,Earth,2,The Desert,11,Iroh,"No please, don't stop just for me!","No please, don't stop just for me!",Tim Hedrick,Lauren MacMullan,8.8 +6907,6907,Earth,2,The Desert,11,Scene Description,"Switch to a front view of Zuko and Iroh. Iroh theatrically lets out several more groans of pain. Zuko pull at the reins, annoyed by the performance displayed by his uncle. As they dismount, the ostrich horse is alarmed by something. Zuko immediately takes on a firebending form, ready to defend himself.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6908,6908,Earth,2,The Desert,11,Iroh,[Annoyed.] What now?,What now?,Tim Hedrick,Lauren MacMullan,8.8 +6909,6909,Earth,2,The Desert,11,Scene Description,"The Rough Rhinos ride through the thicket at both sides of the road Zuko and Iroh were traveling on. Mongke's rhino steps the ground forcefully breaking the surface. Mongke is shown, pulling back the reigns. Zuko keeps up his defensive position, looking at the men that surrounded them. Iroh's face clears up as he stands up and places a hand on Zuko's shoulder.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6910,6910,Earth,2,The Desert,11,Iroh,Colonel Mongke! What a pleasant surprise!,Colonel Mongke! What a pleasant surprise!,Tim Hedrick,Lauren MacMullan,8.8 +6911,6911,Earth,2,The Desert,11,Mongke,"If you're surprised we're here, then the Dragon of the West has lost a few steps.","If you're surprised we're here, then the Dragon of the West has lost a few steps.",Tim Hedrick,Lauren MacMullan,8.8 +6912,6912,Earth,2,The Desert,11,Scene Description,"The Rough Rhinos prepare themselves for battle, each readying their own weapon of expertise.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6913,6913,Earth,2,The Desert,11,Zuko,[Surprised.] You know these guys?,You know these guys?,Tim Hedrick,Lauren MacMullan,8.8 +6914,6914,Earth,2,The Desert,11,Iroh,Sure. Colonel Mongke and the Rough Rhinos are legendary. Each one is a different kind of weapon specialist. [The camera cuts to each member of the Rough Rhinos.] They are also a very capable singing group.,Sure. Colonel Mongke and the Rough Rhinos are legendary. Each one is a different kind of weapon specialist. They are also a very capable singing group.,Tim Hedrick,Lauren MacMullan,8.8 +6915,6915,Earth,2,The Desert,11,Scene Description,"Cut to Mongke, who has his fist raised, ready for firebending.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6916,6916,Earth,2,The Desert,11,Mongke,We're not here to give a concert. We're here to apprehend fugitives!,We're not here to give a concert. We're here to apprehend fugitives!,Tim Hedrick,Lauren MacMullan,8.8 +6917,6917,Earth,2,The Desert,11,Iroh,"[While rubbing his arm.] Would you like some tea first? I'd love some. How about you, Kahchi? I make you as a jasmine man. Am I right?","Would you like some tea first? I'd love some. How about you, Kahchi? I make you as a jasmine man. Am I right?",Tim Hedrick,Lauren MacMullan,8.8 +6918,6918,Earth,2,The Desert,11,Mongke,Enough stalling! Round 'em up!,Enough stalling! Round 'em up!,Tim Hedrick,Lauren MacMullan,8.8 +6919,6919,Earth,2,The Desert,11,Scene Description,"Camera shows an overhead view of the situation. Cut to a dark skinned, pony tailed guy that swings his ball and chain at Iroh, who kicks it away. The chain wraps itself around the leg of a nearby standing Rhino. Iroh tumbles over the ground, dodging two fire blasts. He rises back up and hits the Rhino in the rear, making it dash away, yanking the dark skinned warrior off his rhino and dragging him along. Iroh waves goodbye as he watches them go. +The archer shoots a lit arrow at Zuko. He quickly reacts by knocking the arrow away and releasing a fire blast, burning a hole in the surprised archer's bow. +Mongke joins the fight by directing some fire blasts at Iroh. Iroh deflects each and every one of them. As Mongke is busy with Iroh, Zuko runs up and jumps on the back of the Rhino. With two spinning fire kicks, he sends Colonel Mongke flying. +Iroh runs up to the ostrich horse, jumps on and rides toward Zuko, who awaits him, standing on the Rhino of Colonel Mongke. As he jumps on, another Rough Rhino immediately starts the pursuit. The Rider throws a grenade at the fleeing ostrich horse. It explodes right in front of it, but Iroh and Zuko ride through the explosion's smoke.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6920,6920,Earth,2,The Desert,11,Iroh,It's nice to see old friends.,It's nice to see old friends.,Tim Hedrick,Lauren MacMullan,8.8 +6921,6921,Earth,2,The Desert,11,Zuko,Too bad you don't have any old friends that don't want to attack you.,Too bad you don't have any old friends that don't want to attack you.,Tim Hedrick,Lauren MacMullan,8.8 +6922,6922,Earth,2,The Desert,11,Iroh,[Grasping his shoulder again as he racks his brain in search of an answer.] Hmmm ... Old friends that don't want to attack me ...,Hmmm ... Old friends that don't want to attack me ...,Tim Hedrick,Lauren MacMullan,8.8 +6923,6923,Earth,2,The Desert,11,Scene Description,"Cut to Katara, Sokka and Toph, all exhausted and dehydrated, still wandering through the desert. Sokka stops to take Momo off his back and use his wings to create some shade, causing Toph to crash into him.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6924,6924,Earth,2,The Desert,11,Sokka,[Annoyed.] Can't you watch where you're ... [His eyes widen in comprehension as he sees who bumped into him.],Can't you watch where you're ...,Tim Hedrick,Lauren MacMullan,8.8 +6925,6925,Earth,2,The Desert,11,Toph,No.,No.,Tim Hedrick,Lauren MacMullan,8.8 +6926,6926,Earth,2,The Desert,11,Sokka,Right. Sorry.,Right. Sorry.,Tim Hedrick,Lauren MacMullan,8.8 +6927,6927,Earth,2,The Desert,11,Scene Description,Katara turns around to encourage the others.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6928,6928,Earth,2,The Desert,11,Katara,"Come on guys, we've got to stick together.","Come on guys, we've got to stick together.",Tim Hedrick,Lauren MacMullan,8.8 +6929,6929,Earth,2,The Desert,11,Scene Description,Sokka's clothes stick to Toph. He tries to free himself by pushing her away.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6930,6930,Earth,2,The Desert,11,Sokka,"If I sweat anymore, I don't think sticking together will be a problem.","If I sweat anymore, I don't think sticking together will be a problem.",Tim Hedrick,Lauren MacMullan,8.8 +6931,6931,Earth,2,The Desert,11,Scene Description,"An irritated Toph places her hand on Sokka's face and pushes him to the ground, freeing them both.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6932,6932,Earth,2,The Desert,11,Toph,"Katara, can I have some more water?","Katara, can I have some more water?",Tim Hedrick,Lauren MacMullan,8.8 +6933,6933,Earth,2,The Desert,11,Katara,"Okay, but we've got to try to conserve it.","Okay, but we've got to try to conserve it.",Tim Hedrick,Lauren MacMullan,8.8 +6934,6934,Earth,2,The Desert,11,Scene Description,"Katara bends three small blobs of water out of her pouch and into the mouths of Sokka, Toph and Momo. Sokka circulates the water in his mouth before swallowing it.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6935,6935,Earth,2,The Desert,11,Sokka,"[As he points to his mouth.] We're drinking your bending water. [He tries to define the taste of the water, smacking his lips. Disgustedly he exclaims.] You used this on the swamp guy! Urch!",We're drinking your bending water. You used this on the swamp guy! Urch!,Tim Hedrick,Lauren MacMullan,8.8 +6936,6936,Earth,2,The Desert,11,Toph,It does taste swampy.,It does taste swampy.,Tim Hedrick,Lauren MacMullan,8.8 +6937,6937,Earth,2,The Desert,11,Scene Description,"Momo lets out a sad cry in protest of the water's flavor, after also smacking his lips. Katara sadly puts the cork back on her water sack.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6938,6938,Earth,2,The Desert,11,Katara,"[Sad tone.] I'm sorry, it's all we have.","I'm sorry, it's all we have.",Tim Hedrick,Lauren MacMullan,8.8 +6939,6939,Earth,2,The Desert,11,Sokka,Not anymore! Look!,Not anymore! Look!,Tim Hedrick,Lauren MacMullan,8.8 +6940,6940,Earth,2,The Desert,11,Scene Description,Katara looks in the direction Sokka's pointing. He walks over to the cactus and cuts off a piece with his machete. He happily drinks the fluid that's inside while Momo crawls over to him.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6941,6941,Earth,2,The Desert,11,Katara,"[Worried.] Sokka, wait! You shouldn't be eating strange plants!","Sokka, wait! You shouldn't be eating strange plants!",Tim Hedrick,Lauren MacMullan,8.8 +6942,6942,Earth,2,The Desert,11,Scene Description,"She drags Toph along on her arm as she runs toward Sokka. He and Momo are quenching their thirst with plenty of cactus juice. He cuts open another part of the cactus, excitedly offering its content to a skeptic looking Katara.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6943,6943,Earth,2,The Desert,11,Sokka,There's water trapped inside these!,There's water trapped inside these!,Tim Hedrick,Lauren MacMullan,8.8 +6944,6944,Earth,2,The Desert,11,Katara,[Backing away from Sokka and the cactus.] I don't know ...,I don't know ...,Tim Hedrick,Lauren MacMullan,8.8 +6945,6945,Earth,2,The Desert,11,Sokka,[While cactus juice drips off his chin.] Suit yourself. It's very thirst quenching though.,Suit yourself. It's very thirst quenching though.,Tim Hedrick,Lauren MacMullan,8.8 +6946,6946,Earth,2,The Desert,11,Scene Description,He gives Katara a big smile like a true salesman. Cut to close-up of his left eye as his pupil dilates rapidly. He tries to shake off the feeling by rapidly shaking his head. He starts to trip.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6947,6947,Earth,2,The Desert,11,Sokka,"[In a strange echoing voice.] Drink cactus juice. It'll quench ya! Nothing's quenchier. [He crawls over the ground as a caterpillar before jumping back to the front, pushing his face toward the camera with a big smile.] It's the quenchiest!",Drink cactus juice. It'll quench ya! Nothing's quenchier. It's the quenchiest!,Tim Hedrick,Lauren MacMullan,8.8 +6948,6948,Earth,2,The Desert,11,Scene Description,Katara gives Sokka a very weird look. She grabs his cactus juice and pours it away.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6949,6949,Earth,2,The Desert,11,Katara,"Okay, I think you've had enough.","Okay, I think you've had enough.",Tim Hedrick,Lauren MacMullan,8.8 +6950,6950,Earth,2,The Desert,11,Sokka,Who lit Toph on fire?,Who lit Toph on fire?,Tim Hedrick,Lauren MacMullan,8.8 +6951,6951,Earth,2,The Desert,11,Scene Description,"Katara wants to react on Sokka's comment, but is distracted by a sound in the sky. She looks up to see Momo flying around in circles, increasing his speed, before plummeting into the ground, head first. Katara picks up and cradles the unconscious animal.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6952,6952,Earth,2,The Desert,11,Toph,Can I get some of that cactus?,Can I get some of that cactus?,Tim Hedrick,Lauren MacMullan,8.8 +6953,6953,Earth,2,The Desert,11,Katara,"[Wrapping her arm around Toph's shoulders.] I don't think that's a good idea. Come on, we need to find Aang.","I don't think that's a good idea. Come on, we need to find Aang.",Tim Hedrick,Lauren MacMullan,8.8 +6954,6954,Earth,2,The Desert,11,Scene Description,"Katara leads Toph away. Sokka stays behind, staring blankly at the sky. Katara retraces her steps and pulls Sokka along by his arms. Cut to an overview shot of the endless desert.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6955,6955,Earth,2,The Desert,11,Sokka,[In awe.] How did we get out here in the middle of the ocean?,How did we get out here in the middle of the ocean?,Tim Hedrick,Lauren MacMullan,8.8 +6956,6956,Earth,2,The Desert,11,Scene Description,Katara sighs as the scene cuts to Aang flying over the desert in search of Appa. He blows his bison whistle.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6957,6957,Earth,2,The Desert,11,Aang,Appa! [He glides down and lands on a dune.] Appa!,Appa! Appa!,Tim Hedrick,Lauren MacMullan,8.8 +6958,6958,Earth,2,The Desert,11,Scene Description,"The camera circles around Aang. While he stares across the horizon, it begins to dawn on him that he is not going to find his friend out here. The tears well up in his eyes.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6959,6959,Earth,2,The Desert,11,Aang,No ... [Yelling.] No!,No ... No!,Tim Hedrick,Lauren MacMullan,8.8 +6960,6960,Earth,2,The Desert,11,Scene Description,"Overcome by anger, he slams his staff on the ground, creating a large mushroom-shaped cloud of sand. Dust that was kicked up by Aang's blow washes over Katara, Sokka and Toph as they climb over another dune.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6961,6961,Earth,2,The Desert,11,Katara,What is that?,What is that?,Tim Hedrick,Lauren MacMullan,8.8 +6962,6962,Earth,2,The Desert,11,Toph,What? What is what?,What? What is what?,Tim Hedrick,Lauren MacMullan,8.8 +6963,6963,Earth,2,The Desert,11,Sokka,It's a giant mushroom! [Very excited.] Maybe it's friendly!,It's a giant mushroom! Maybe it's friendly!,Tim Hedrick,Lauren MacMullan,8.8 +6964,6964,Earth,2,The Desert,11,Katara,Let's just keep moving. I hope Aang's okay ...,Let's just keep moving. I hope Aang's okay ...,Tim Hedrick,Lauren MacMullan,8.8 +6965,6965,Earth,2,The Desert,11,Scene Description,"As Katara leads Toph away, Sokka starts to worship the mushroom by waving his arms up and down, back and forth.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6966,6966,Earth,2,The Desert,11,Sokka,Friendly mushroom! Mushy giant friend!,Friendly mushroom! Mushy giant friend!,Tim Hedrick,Lauren MacMullan,8.8 +6967,6967,Earth,2,The Desert,11,Scene Description,Cut to the village with the Misty Palms Oasis at the border of the desert.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6968,6968,Earth,2,The Desert,11,Man,"Yeah, a little barefoot blind girl and her friends passed through here a few days ago.","Yeah, a little barefoot blind girl and her friends passed through here a few days ago.",Tim Hedrick,Lauren MacMullan,8.8 +6969,6969,Earth,2,The Desert,11,Yu,Did they give you any indication where they were headed?,Did they give you any indication where they were headed?,Tim Hedrick,Lauren MacMullan,8.8 +6970,6970,Earth,2,The Desert,11,Man,Maybe you could give me a little incentive?,Maybe you could give me a little incentive?,Tim Hedrick,Lauren MacMullan,8.8 +6971,6971,Earth,2,The Desert,11,Scene Description,The man makes the money sign with his fingers.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6972,6972,Earth,2,The Desert,11,Xin Fu,You suggesting I break your fingers?,You suggesting I break your fingers?,Tim Hedrick,Lauren MacMullan,8.8 +6973,6973,Earth,2,The Desert,11,Scene Description,The man quickly hides his hand behind his back and points with the other one toward the desert.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6974,6974,Earth,2,The Desert,11,Man,They went in the desert! Too bad there's almost no chance they survived.,They went in the desert! Too bad there's almost no chance they survived.,Tim Hedrick,Lauren MacMullan,8.8 +6975,6975,Earth,2,The Desert,11,Xin Fu,"That's okay, 'cause she's wanted dead or alive.","That's okay, 'cause she's wanted dead or alive.",Tim Hedrick,Lauren MacMullan,8.8 +6976,6976,Earth,2,The Desert,11,Scene Description,The man quietly backs away from Xin Fu and Yu,NA,Tim Hedrick,Lauren MacMullan,8.8 +6977,6977,Earth,2,The Desert,11,Yu,No she's not! I'm certain her father wants her alive.,No she's not! I'm certain her father wants her alive.,Tim Hedrick,Lauren MacMullan,8.8 +6978,6978,Earth,2,The Desert,11,Xin Fu,"Hey, look ... Fire Nation wanted posters!","Hey, look ... Fire Nation wanted posters!",Tim Hedrick,Lauren MacMullan,8.8 +6979,6979,Earth,2,The Desert,11,Scene Description,"Yu follows Xin Fu's lead and examines the wanted posters. A poster of Zuko and Iroh is surrounded by posters of Aang, the Blue Spirit, Jeong Jeong and Chey.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6980,6980,Earth,2,The Desert,11,Yu,So?,So?,Tim Hedrick,Lauren MacMullan,8.8 +6981,6981,Earth,2,The Desert,11,Scene Description,Xin Fu looks at Zuko and Iroh as they walk toward the tavern.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6982,6982,Earth,2,The Desert,11,Xin Fu,"So, look who's here.","So, look who's here.",Tim Hedrick,Lauren MacMullan,8.8 +6983,6983,Earth,2,The Desert,11,Scene Description,"Cut to Katara, Toph and Sokka. It is nearly twilight and they are still walking in a single file through the desert. A shadow passes over their heads and Aang lands behind them, kicking up a small cloud of sand. As the sand clears, Aang is still down.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6984,6984,Earth,2,The Desert,11,Katara,"I'm sorry, Aang. I know it's hard for you right now but ... we need to focus on getting out of here.","I'm sorry, Aang. I know it's hard for you right now but ... we need to focus on getting out of here.",Tim Hedrick,Lauren MacMullan,8.8 +6985,6985,Earth,2,The Desert,11,Scene Description,She walks over to him and puts a hand on his shoulder to comfort him. He pulls away.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6986,6986,Earth,2,The Desert,11,Aang,[Hopelessly.] What's the difference? We won't survive without Appa. We all know it.,What's the difference? We won't survive without Appa. We all know it.,Tim Hedrick,Lauren MacMullan,8.8 +6987,6987,Earth,2,The Desert,11,Katara,"[Encouraging.] Come on, Aang. We can do this if we work together. Right Toph?","Come on, Aang. We can do this if we work together. Right Toph?",Tim Hedrick,Lauren MacMullan,8.8 +6988,6988,Earth,2,The Desert,11,Toph,"As far as I can feel, we're trapped in a giant bowl of sand pudding. I got nothin'.","As far as I can feel, we're trapped in a giant bowl of sand pudding. I got nothin'.",Tim Hedrick,Lauren MacMullan,8.8 +6989,6989,Earth,2,The Desert,11,Katara,[Hopeful.] Sokka? Any ideas how to find Ba Sing Se?,Sokka? Any ideas how to find Ba Sing Se?,Tim Hedrick,Lauren MacMullan,8.8 +6990,6990,Earth,2,The Desert,11,Scene Description,"Sokka and Momo lie side by side on their backs, arms and legs stretched out. Sokka smiles blissfully.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6991,6991,Earth,2,The Desert,11,Sokka,[Pointing up at the sky.] Why don't we ask the circle birds?,Why don't we ask the circle birds?,Tim Hedrick,Lauren MacMullan,8.8 +6992,6992,Earth,2,The Desert,11,Scene Description,Katara directs her gaze to the sky and sees four buzzard wasps circling above their heads. She looks at every other member in the team. Aang still sits down sulking and Toph staggers a bit. Sokka sniggers a bit while Momo lazily claws at the buzzard wasps.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6993,6993,Earth,2,The Desert,11,Katara,"[Grabs her head in annoyance.] Ugh ... We're getting out of this desert, and we're going to do it together! Aang, get up. Everybody, hold hands. We can do this. We have to.","Ugh ... We're getting out of this desert, and we're going to do it together! Aang, get up. Everybody, hold hands. We can do this. We have to.",Tim Hedrick,Lauren MacMullan,8.8 +6994,6994,Earth,2,The Desert,11,Scene Description,"She takes one more look at the buzzard wasps in the sky before pulling Aang along by his staff. Aang holds on to Toph's hand and she holds on to Sokka's in turn. A big grinning Sokka pulls Momo along by his tail, who lazily tries to fly in the other direction. +The sun is setting as they all stagger up a large dune, with Katara still in the lead.",NA,Tim Hedrick,Lauren MacMullan,8.8 +6995,6995,Earth,2,The Desert,11,Katara,I think we should stop for the night.,I think we should stop for the night.,Tim Hedrick,Lauren MacMullan,8.8 +6996,6996,Earth,2,The Desert,11,Scene Description,The rest of the group sighs and falls down of exhaustion.,NA,Tim Hedrick,Lauren MacMullan,8.8 +6997,6997,Earth,2,The Desert,11,Toph,Is there any more water?,Is there any more water?,Tim Hedrick,Lauren MacMullan,8.8 +6998,6998,Earth,2,The Desert,11,Katara,This is the last of it. Everyone can have a little drink.,This is the last of it. Everyone can have a little drink.,Tim Hedrick,Lauren MacMullan,8.8 +6999,6999,Earth,2,The Desert,11,Scene Description,"Sokka crawls toward Katara with Momo riding on his back when she begins to bend the water out of her pouch. Momo leaps forward at the water, causing it to fall in the sand.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7000,7000,Earth,2,The Desert,11,Sokka,"[Theatrically panics, grabbing his head in despair.] Momo, no! You've killed us all!","Momo, no! You've killed us all!",Tim Hedrick,Lauren MacMullan,8.8 +7001,7001,Earth,2,The Desert,11,Scene Description,"Katara calmly holds her hand over the moist spot of sand and begins to bend the water back into her pouch, before giving it to Toph to drink.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7002,7002,Earth,2,The Desert,11,Katara,"No, he hasn't.","No, he hasn't.",Tim Hedrick,Lauren MacMullan,8.8 +7003,7003,Earth,2,The Desert,11,Sokka,"[Relieved.] Oh, right. Bending.","Oh, right. Bending.",Tim Hedrick,Lauren MacMullan,8.8 +7004,7004,Earth,2,The Desert,11,Katara,"Sokka, let me see the things you got from the library.","Sokka, let me see the things you got from the library.",Tim Hedrick,Lauren MacMullan,8.8 +7005,7005,Earth,2,The Desert,11,Scene Description,He immediately backs away and defensively grabs his back full of scrolls.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7006,7006,Earth,2,The Desert,11,Sokka,[Offended.] What?! I didn't steal anything! Who told you that? [Pointing an accusing finger at Momo.] It was you! You ratted me out!,What?! I didn't steal anything! Who told you that? It was you! You ratted me out!,Tim Hedrick,Lauren MacMullan,8.8 +7007,7007,Earth,2,The Desert,11,Katara,"Sokka, I was there.","Sokka, I was there.",Tim Hedrick,Lauren MacMullan,8.8 +7008,7008,Earth,2,The Desert,11,Scene Description,Katara takes the bag from Sokka and start to examine the scrolls.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7009,7009,Earth,2,The Desert,11,Aang,[Sadly.] It doesn't matter. None of those will tell us where Appa is.,It doesn't matter. None of those will tell us where Appa is.,Tim Hedrick,Lauren MacMullan,8.8 +7010,7010,Earth,2,The Desert,11,Katara,"No, but we can find out which way Ba Sing Se is. We can use the stars to guide us. [She pulls out a map of the stars.] That way we can travel at night when it's cool and rest during the day.","No, but we can find out which way Ba Sing Se is. We can use the stars to guide us. That way we can travel at night when it's cool and rest during the day.",Tim Hedrick,Lauren MacMullan,8.8 +7011,7011,Earth,2,The Desert,11,Scene Description,"She turns around and sighs at the sight of the rest of the group. They are all lying there, exhausted from the long walk and their grief for the loss of Appa.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7012,7012,Earth,2,The Desert,11,Katara,Just try to get some sleep. We'll start again in a few hours.,Just try to get some sleep. We'll start again in a few hours.,Tim Hedrick,Lauren MacMullan,8.8 +7013,7013,Earth,2,The Desert,11,Scene Description,Fade to Zuko and Iroh sitting at a table in the tavern at the Misty Palms Oasis.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7014,7014,Earth,2,The Desert,11,Zuko,No one here is going to help us. These people just look like filthy wanderers.,No one here is going to help us. These people just look like filthy wanderers.,Tim Hedrick,Lauren MacMullan,8.8 +7015,7015,Earth,2,The Desert,11,Iroh,"So do we. [Pointing at something behind Zuko.] Ah, this is interesting. I think I found our friend.","So do we. Ah, this is interesting. I think I found our friend.",Tim Hedrick,Lauren MacMullan,8.8 +7016,7016,Earth,2,The Desert,11,Scene Description,"As Zuko turns around to see where Iroh is pointing at, the camera pans over his shoulder to reveal an old man sitting at a Pai Sho table.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7017,7017,Earth,2,The Desert,11,Zuko,You brought us here to gamble on Pai Sho?,You brought us here to gamble on Pai Sho?,Tim Hedrick,Lauren MacMullan,8.8 +7018,7018,Earth,2,The Desert,11,Iroh,I don't think this is a gamble.,I don't think this is a gamble.,Tim Hedrick,Lauren MacMullan,8.8 +7019,7019,Earth,2,The Desert,11,Scene Description,"Zuko and Iroh walk toward the Pai Sho table. The camera zooms toward Xin Fu and Yu, who are sitting on a bench at the other side of the tavern. Xin Fu jumps up with the intention to grab them, but Yu places a hand on his shoulder to restrain him.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7020,7020,Earth,2,The Desert,11,Xin Fu,Let's take them now!,Let's take them now!,Tim Hedrick,Lauren MacMullan,8.8 +7021,7021,Earth,2,The Desert,11,Yu,"This place is full of desperate characters. If they find out we're collecting a bounty, we might have to fight them all just to keep our prize. Patience.","This place is full of desperate characters. If they find out we're collecting a bounty, we might have to fight them all just to keep our prize. Patience.",Tim Hedrick,Lauren MacMullan,8.8 +7022,7022,Earth,2,The Desert,11,Scene Description,Cut to Iroh and Zuko approaching the Pai Sho table.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7023,7023,Earth,2,The Desert,11,Iroh,May I have this game?,May I have this game?,Tim Hedrick,Lauren MacMullan,8.8 +7024,7024,Earth,2,The Desert,11,Fung,[Gesturing Iroh to sit down.] The guest has the first move. [Iroh places the lotus tile in the center of the board.] I see you favor the white lotus gambit. Not many still cling to the ancient ways. [He cups his hands toward Iroh.],The guest has the first move. I see you favor the white lotus gambit. Not many still cling to the ancient ways.,Tim Hedrick,Lauren MacMullan,8.8 +7025,7025,Earth,2,The Desert,11,Iroh,Those who do can always find a friend.,Those who do can always find a friend.,Tim Hedrick,Lauren MacMullan,8.8 +7026,7026,Earth,2,The Desert,11,Scene Description,"He copies the gesture of the old man, also cupping his hands toward him.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7027,7027,Earth,2,The Desert,11,Fung,Then let us play.,Then let us play.,Tim Hedrick,Lauren MacMullan,8.8 +7028,7028,Earth,2,The Desert,11,Scene Description,"The old man places a tile on the board, quickly followed by a tile placed by Iroh. Seemingly without even looking at what the other person is doing, the two man quickly place their tiles on the board. Zuko sits down and watches intently as the two man place one tile after the other. When they are done, their tiles form the shape of a lotus flower.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7029,7029,Earth,2,The Desert,11,Fung,"Welcome, brother. The White Lotus opens wide to those who know her secrets.","Welcome, brother. The White Lotus opens wide to those who know her secrets.",Tim Hedrick,Lauren MacMullan,8.8 +7030,7030,Earth,2,The Desert,11,Zuko,What are you old gasbags talking about?,What are you old gasbags talking about?,Tim Hedrick,Lauren MacMullan,8.8 +7031,7031,Earth,2,The Desert,11,Iroh,I always tried to tell you that Pai Sho is more than just a game.,I always tried to tell you that Pai Sho is more than just a game.,Tim Hedrick,Lauren MacMullan,8.8 +7032,7032,Earth,2,The Desert,11,Scene Description,"Iroh rolls a tile over his knuckles and clutches it. +Cut to a shot of Xin Fu and Yu. Xin Fu ran out of patience and jumps up.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7033,7033,Earth,2,The Desert,11,Xin Fu,"I'm not waiting all night for these geezers to finish yapping! [He walks over to the Pai Sho table, followed by Yu.] It's over! You two fugitives are coming with me!",I'm not waiting all night for these geezers to finish yapping! It's over! You two fugitives are coming with me!,Tim Hedrick,Lauren MacMullan,8.8 +7034,7034,Earth,2,The Desert,11,Fung,"[Quickly places himself before Iroh and Zuko, preventing Xin Fu and Yu from reaching them.] I knew it! You two are wanted criminals with a giant bounty on your heads!",I knew it! You two are wanted criminals with a giant bounty on your heads!,Tim Hedrick,Lauren MacMullan,8.8 +7035,7035,Earth,2,The Desert,11,Zuko,I thought you said he would help!,I thought you said he would help!,Tim Hedrick,Lauren MacMullan,8.8 +7036,7036,Earth,2,The Desert,11,Iroh,[Places a hand on Zuko's shoulder to reassure him.] He is. Just watch.,He is. Just watch.,Tim Hedrick,Lauren MacMullan,8.8 +7037,7037,Earth,2,The Desert,11,Fung,[To Yu and Xin Fu.] You think you're going to capture them and collect all that gold?,You think you're going to capture them and collect all that gold?,Tim Hedrick,Lauren MacMullan,8.8 +7038,7038,Earth,2,The Desert,11,Man in the bar,Gold?,Gold?,Tim Hedrick,Lauren MacMullan,8.8 +7039,7039,Earth,2,The Desert,11,Scene Description,"Every person in the bar looks up when they hear the word 'gold'. Some of them stand up, pulling a knife, ready to attack.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7040,7040,Earth,2,The Desert,11,Yu,Uh ... Maybe we shouldn't.,Uh ... Maybe we shouldn't.,Tim Hedrick,Lauren MacMullan,8.8 +7041,7041,Earth,2,The Desert,11,Scene Description,"Camera shows a close-up of a grinning Xin Fu. As he moves toward Zuko and Iroh, two men jump in front of him to block his path. With a reverse roundhouse kick, the earthbender bends a rock from the ground and easily pushes them out of his way. +Yu readies himself for battle. He sinks the first person to charge him into the ground. Meanwhile Xin Fu kicks two sandbenders away while he is lifting another one up in the air and holding a fourth one back with his other hand. After he kicks another sandbender away, he twists his waist, sending the two men he is holding flying. One of them crashes into the wall behind the bar. +When there is no one left to fight, Xin Fu and Yu realize that their prey has escaped during the chaos. Xin Fu growls in frustration and slams his two fists on the ground, erecting a giant pillar of earth under a downed sandbender, shooting him out of the window and against a palm tree. +Cut to a scorpion walking over a rock. The camera shows how Momo is patting the sand he used to cover up Sokka while he is sleeping. He jumps away as Katara approaches Sokka to wake him up.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7042,7042,Earth,2,The Desert,11,Katara,"Come on, get up. We need to go.","Come on, get up. We need to go.",Tim Hedrick,Lauren MacMullan,8.8 +7043,7043,Earth,2,The Desert,11,Scene Description,"Sokka drowsily sits up and smiles like a drunken idiot. Toph also erects herself, smacking her lips.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7044,7044,Earth,2,The Desert,11,Toph,Yesterday my mouth tasted like mud. Now it just tastes like sand. I never thought I'd miss the taste of mud so much.,Yesterday my mouth tasted like mud. Now it just tastes like sand. I never thought I'd miss the taste of mud so much.,Tim Hedrick,Lauren MacMullan,8.8 +7045,7045,Earth,2,The Desert,11,Scene Description,"Katara goes to Aang to wake him up, but he interrupts her before she can touch him.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7046,7046,Earth,2,The Desert,11,Aang,I'm awake. I couldn't sleep.,I'm awake. I couldn't sleep.,Tim Hedrick,Lauren MacMullan,8.8 +7047,7047,Earth,2,The Desert,11,Katara,"Well, we need to get moving if we want to get out of this sand pit.","Well, we need to get moving if we want to get out of this sand pit.",Tim Hedrick,Lauren MacMullan,8.8 +7048,7048,Earth,2,The Desert,11,Scene Description,"Aang and Katara spot something large in the sky. He quickly sits up. Cut to a shot of a large, bison shaped object floating by the bright, full moon. Aang's expression brightens up in an instant.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7049,7049,Earth,2,The Desert,11,Aang,[Joyfully.] Appa!,Appa!,Tim Hedrick,Lauren MacMullan,8.8 +7050,7050,Earth,2,The Desert,11,Sokka,"Appa? But why would Princess Yue need him? She's the moon! [Grabs Momo's tail, using it to rub his cheek.] She flies by herself!",Appa? But why would Princess Yue need him? She's the moon! She flies by herself!,Tim Hedrick,Lauren MacMullan,8.8 +7051,7051,Earth,2,The Desert,11,Scene Description,A closer shot of the floating object reveals that it is just a small desert cloud.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7052,7052,Earth,2,The Desert,11,Katara,"[Sadly.] It's just a cloud. Wait! A cloud! [Offers he pouch to Aang.] Here, fly up and bend the water from that cloud into my pouch.","It's just a cloud. Wait! A cloud! Here, fly up and bend the water from that cloud into my pouch.",Tim Hedrick,Lauren MacMullan,8.8 +7053,7053,Earth,2,The Desert,11,Scene Description,Aang gives Katara an angry look before snatching the offered water pouch out of her hands. The group gazes at him as he quickly passes two times over the cloud. The few remains of the cloud evaporate. He throws the pouch at Katara when he lands and she peeks in.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7054,7054,Earth,2,The Desert,11,Katara,[Disappointed.] Wow ... there's hardly any in here.,Wow ... there's hardly any in here.,Tim Hedrick,Lauren MacMullan,8.8 +7055,7055,Earth,2,The Desert,11,Aang,"[Lashes out.] I'm sorry, okay! It's a desert cloud; I did all I could! What's anyone else doing?! [Pointing his staff at Katara.] What are you doing?!","I'm sorry, okay! It's a desert cloud; I did all I could! What's anyone else doing?! What are you doing?!",Tim Hedrick,Lauren MacMullan,8.8 +7056,7056,Earth,2,The Desert,11,Scene Description,She returns his attack with a shocked look on her face.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7057,7057,Earth,2,The Desert,11,Katara,Trying to keep everyone together. Let's just get moving. We need to head this direction.,Trying to keep everyone together. Let's just get moving. We need to head this direction.,Tim Hedrick,Lauren MacMullan,8.8 +7058,7058,Earth,2,The Desert,11,Scene Description,"Katara looks at her charts once more and leads the group in the chosen direction. They are walking silently through the desert, until Toph trips and falls flat on her face. Aang and Katara are looking at Toph, while Sokka and Momo just stand there, staring blankly to the sky. Toph sits up and rubs her right foot.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7059,7059,Earth,2,The Desert,11,Toph,Ow! Crud! I am so sick of not feeling where I'm going! [Pointing toward the little rocklike shaped object she tripped over.] And what idiot buried a boat in the middle of the desert?,Ow! Crud! I am so sick of not feeling where I'm going! And what idiot buried a boat in the middle of the desert?,Tim Hedrick,Lauren MacMullan,8.8 +7060,7060,Earth,2,The Desert,11,Katara,A boat?,A boat?,Tim Hedrick,Lauren MacMullan,8.8 +7061,7061,Earth,2,The Desert,11,Scene Description,Katara runs over to inspect the object.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7062,7062,Earth,2,The Desert,11,Toph,"Believe me, I kicked it hard enough to feel plenty of vibrations.","Believe me, I kicked it hard enough to feel plenty of vibrations.",Tim Hedrick,Lauren MacMullan,8.8 +7063,7063,Earth,2,The Desert,11,Scene Description,"Sokka turns around, swinging like a string puppet, to see what Katara is so excited about. Katara begins to rub of the sand of the object that appears to be made of wood. Aang steps forward, suggestively holding up his staff. As soon as Katara backs away, Aang swings his staff around, creating a mighty gust of wind, revealing a boat of some sort. Katara crawls aboard and examines it.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7064,7064,Earth,2,The Desert,11,Katara,"It's one of the gliders the sandbenders use! And look! It's got some kind of compass on it! [Tapping the compass.] I bet it can point us out of here! Aang, you can bend a breeze so we can sail it. We're going to make it!","It's one of the gliders the sandbenders use! And look! It's got some kind of compass on it! I bet it can point us out of here! Aang, you can bend a breeze so we can sail it. We're going to make it!",Tim Hedrick,Lauren MacMullan,8.8 +7065,7065,Earth,2,The Desert,11,Scene Description,"Shot of Sokka laughing childishly while burying Momo in the sand. +Cut to a shot of a small village at the edge of the desert, where Zuko and Iroh follow the Pai Sho player into a flower shop.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7066,7066,Earth,2,The Desert,11,Fung,"It is an honor to welcome such a high-ranking member of the Order of the White Lotus. Being a Grand Master, you must know so many secrets.","It is an honor to welcome such a high-ranking member of the Order of the White Lotus. Being a Grand Master, you must know so many secrets.",Tim Hedrick,Lauren MacMullan,8.8 +7067,7067,Earth,2,The Desert,11,Zuko,"[Annoyed.] Now that you played Pai Sho, are you going to do some flower arranging, or is someone in this club going to offer some real help?","Now that you played Pai Sho, are you going to do some flower arranging, or is someone in this club going to offer some real help?",Tim Hedrick,Lauren MacMullan,8.8 +7068,7068,Earth,2,The Desert,11,Iroh,You must forgive my nephew. He is not an initiate and has little appreciation for the cryptic arts.,You must forgive my nephew. He is not an initiate and has little appreciation for the cryptic arts.,Tim Hedrick,Lauren MacMullan,8.8 +7069,7069,Earth,2,The Desert,11,Scene Description,The Pai Sho player leads Iroh toward a door with a peephole in it. He knocks two times. A man slides open the small window in the door and peeks through.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7070,7070,Earth,2,The Desert,11,Florist,Who knocks at the guarded gate?,Who knocks at the guarded gate?,Tim Hedrick,Lauren MacMullan,8.8 +7071,7071,Earth,2,The Desert,11,Iroh,One who has eaten the fruit and tasted its mysteries.,One who has eaten the fruit and tasted its mysteries.,Tim Hedrick,Lauren MacMullan,8.8 +7072,7072,Earth,2,The Desert,11,Scene Description,"Iroh smiles as the door opens to let him and the Pai Sho player through. When Zuko attempts to follow them, the door slams shut in front of him. He looks at the door with a pout when Iroh opens the small window.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7073,7073,Earth,2,The Desert,11,Iroh,I'm afraid it's members only. Wait out here.,I'm afraid it's members only. Wait out here.,Tim Hedrick,Lauren MacMullan,8.8 +7074,7074,Earth,2,The Desert,11,Scene Description,"An annoyed Zuko frowns and crosses his arms as he rests against a nearby table. He leans over to sniff the plant on the table. +Switch to a shot of the desert where the sand-sailer is making great speed. Katara navigates it through the desert, while Aang's driving it forward using strong gusts of wind.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7075,7075,Earth,2,The Desert,11,Katara,The needle on this compass doesn't seem to be pointing north according to my charts.,The needle on this compass doesn't seem to be pointing north according to my charts.,Tim Hedrick,Lauren MacMullan,8.8 +7076,7076,Earth,2,The Desert,11,Scene Description,"Katara places her charts over the compass. Sokka sits beside her, dangling his legs over the edge and holding Momo by the tail, who glides in the opposite direction.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7077,7077,Earth,2,The Desert,11,Sokka,[Dreamily.] Take it easy little lady. I'm sure the sand folks who built this baby know how to get around here.,Take it easy little lady. I'm sure the sand folks who built this baby know how to get around here.,Tim Hedrick,Lauren MacMullan,8.8 +7078,7078,Earth,2,The Desert,11,Scene Description,"Katara looks annoyed at Sokka. When she focuses her attention back toward the horizon in front of her, she gasps is comprehension when she sees a giant rock in the distance.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7079,7079,Earth,2,The Desert,11,Katara,That's what the compass is pointing to! That giant rock! It must be the magnetic center of the desert.,That's what the compass is pointing to! That giant rock! It must be the magnetic center of the desert.,Tim Hedrick,Lauren MacMullan,8.8 +7080,7080,Earth,2,The Desert,11,Toph,[Ecstatic.] A rock?! Yes! Let's go!,A rock?! Yes! Let's go!,Tim Hedrick,Lauren MacMullan,8.8 +7081,7081,Earth,2,The Desert,11,Katara,[Hopeful.] Maybe we can find some water there!,Maybe we can find some water there!,Tim Hedrick,Lauren MacMullan,8.8 +7082,7082,Earth,2,The Desert,11,Aang,[Darkly.] Maybe we can find some sandbenders.,Maybe we can find some sandbenders.,Tim Hedrick,Lauren MacMullan,8.8 +7083,7083,Earth,2,The Desert,11,Scene Description,"Aang continues to send gusts of wind into the sails of the glider, directing it toward the rock. Switch to a shot of the glider at the base of the rock. The sun's already rising when team Avatar reaches the top.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7084,7084,Earth,2,The Desert,11,Toph,Ahhh ... Finally! Solid ground!,Ahhh ... Finally! Solid ground!,Tim Hedrick,Lauren MacMullan,8.8 +7085,7085,Earth,2,The Desert,11,Scene Description,"Toph happily lets herself drop flat on her back, moving her arms and legs back and forth, creating a rock angel. After she is done, the group starts to explore the caves that decorate the top of the rock. They enter a round tunnel. The cave's surface is covered with a yellow, gooey substance.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7086,7086,Earth,2,The Desert,11,Sokka,[Breathes deeply.] I think my head is starting to clear out the cactus juice. And look!,I think my head is starting to clear out the cactus juice. And look!,Tim Hedrick,Lauren MacMullan,8.8 +7087,7087,Earth,2,The Desert,11,Scene Description,"Sokka dips his hand in the yellow goo and tastes it, sharing his find with Momo. They both spit it out and Sokka makes a disgusted gagging noise.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7088,7088,Earth,2,The Desert,11,Sokka,"Tastes like rotten penguin meat! Awww, I feel woozy.","Tastes like rotten penguin meat! Awww, I feel woozy.",Tim Hedrick,Lauren MacMullan,8.8 +7089,7089,Earth,2,The Desert,11,Katara,[Irritated.] You've been hallucinating on cactus juice all day and then you just lick something you find stuck to the wall of a cave?!,You've been hallucinating on cactus juice all day and then you just lick something you find stuck to the wall of a cave?!,Tim Hedrick,Lauren MacMullan,8.8 +7090,7090,Earth,2,The Desert,11,Sokka,I have a natural curiosity.,I have a natural curiosity.,Tim Hedrick,Lauren MacMullan,8.8 +7091,7091,Earth,2,The Desert,11,Toph,I don't think this is a normal cave. This was carved by something.,I don't think this is a normal cave. This was carved by something.,Tim Hedrick,Lauren MacMullan,8.8 +7092,7092,Earth,2,The Desert,11,Aang,Yeah ... look at the shape.,Yeah ... look at the shape.,Tim Hedrick,Lauren MacMullan,8.8 +7093,7093,Earth,2,The Desert,11,Toph,[Close-up of her feet.] There's something buzzing in here. [Camera pans up to her.] Something that's coming for us!,There's something buzzing in here. Something that's coming for us!,Tim Hedrick,Lauren MacMullan,8.8 +7094,7094,Earth,2,The Desert,11,Scene Description,"The camera shows how the group runs out of the cave, back into the open. Toph and Aang scream as the first buzzard wasp emerges. Aang pulls Toph down as it flies over their heads. A second wasp dives directly toward the camera. +Cut to a shot of the giant rock from a distance, followed by a shot of the hive as more buzzard wasps swarm out and surround the group. Aang blasts the first wasp to come near them away with a strong air current. +A second wasp lands on a nearby rock. The moment it touches it, Toph turns around to send the wasp flying again, shooting up the rock from underneath it. +Another buzzard wasp flies between Sokka and Toph. She hears it fly behind her so she lifts the rock beside her and throws it in the general direction of the sound. The giant rock is only inches apart from crushing Sokka.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7095,7095,Earth,2,The Desert,11,Sokka,[Surprised.] What are you doing? That rock almost crushed me!,What are you doing? That rock almost crushed me!,Tim Hedrick,Lauren MacMullan,8.8 +7096,7096,Earth,2,The Desert,11,Toph,"Sorry, I can't tell where they are in the air!","Sorry, I can't tell where they are in the air!",Tim Hedrick,Lauren MacMullan,8.8 +7097,7097,Earth,2,The Desert,11,Scene Description,A loud buzzing signals the passing of another wasp. Sokka readies his machete and runs after it.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7098,7098,Earth,2,The Desert,11,Sokka,I got this one.,I got this one.,Tim Hedrick,Lauren MacMullan,8.8 +7099,7099,Earth,2,The Desert,11,Scene Description,He ferociously swings his weapon back and forth at the camera.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7100,7100,Earth,2,The Desert,11,Katara,"Sokka, there's nothing there!","Sokka, there's nothing there!",Tim Hedrick,Lauren MacMullan,8.8 +7101,7101,Earth,2,The Desert,11,Scene Description,"The camera pans back. He lowers his machete, looking around in search for his imagined foe.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7102,7102,Earth,2,The Desert,11,Sokka,I guess my head's not as clear as I thought.,I guess my head's not as clear as I thought.,Tim Hedrick,Lauren MacMullan,8.8 +7103,7103,Earth,2,The Desert,11,Scene Description,"Cut to a close-up of a crouched up Momo. In the background, Katara backs a few steps in Aang's direction.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7104,7104,Earth,2,The Desert,11,Katara,We have to get out of here! I'm completely out of water to bend!,We have to get out of here! I'm completely out of water to bend!,Tim Hedrick,Lauren MacMullan,8.8 +7105,7105,Earth,2,The Desert,11,Scene Description,A buzzard wasp swoops in from the sky and snatches up a screeching Momo as it flies away from the hive and the benders.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7106,7106,Earth,2,The Desert,11,Aang,Momo! I'm not losing anyone else out here.,Momo! I'm not losing anyone else out here.,Tim Hedrick,Lauren MacMullan,8.8 +7107,7107,Earth,2,The Desert,11,Scene Description,"Full of anger, he takes off on his glider in hot pursuit of Momo and the wasp. Katara and Sokka watch him go.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7108,7108,Earth,2,The Desert,11,Katara,"Come on, we're going down.","Come on, we're going down.",Tim Hedrick,Lauren MacMullan,8.8 +7109,7109,Earth,2,The Desert,11,Scene Description,They descend along a narrow ledge. Katara leads Toph by hand.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7110,7110,Earth,2,The Desert,11,Katara,"Toph, shoot a rock right there. Fire!","Toph, shoot a rock right there. Fire!",Tim Hedrick,Lauren MacMullan,8.8 +7111,7111,Earth,2,The Desert,11,Scene Description,"Katara places Toph in the right direction. Toph kicks up some rocks and shoots them forward. The incoming buzzard wasp is shot down, taking several blows to the head. Sokka cheers, swinging his machete in the air.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7112,7112,Earth,2,The Desert,11,Sokka,"Yeah! You got it! She got it, right?","Yeah! You got it! She got it, right?",Tim Hedrick,Lauren MacMullan,8.8 +7113,7113,Earth,2,The Desert,11,Katara,Yes. Now let's move.,Yes. Now let's move.,Tim Hedrick,Lauren MacMullan,8.8 +7114,7114,Earth,2,The Desert,11,Scene Description,"Katara leads Toph on as they start to run along the ledge. +Shift to a close-up of Aang. He is still chasing the buzzard wasp that took Momo. A grave expression casts shadows on his face. He dives, emerging again straight underneath the wasp. As he turns, he directs a strong gust of wind at the wasp with a kick of his leg. The gust forces the wasp to release Momo out of its clutches. Momo tumbles down, but quickly regains control and begins to soar next to Aang. Aang looks from Momo toward the rising sun at the horizon. With an angry glare, he notices that the wasp is getting away. Aang glides down, flying close to the ground. Using the speed of his descent, he closes his glider and swings his staff down. A powerful wall of air splits the sand, racing toward the escaping wasp. The animal is hit in mid air, knocking it to the ground. With a dark glare, Aang just stares at the downed wasp before walking back in the direction of the giant rock. Momo follows him quickly, frightened by this merciless outburst of power. +Cut back to a shot of the giant rock, where buzzard wasps circle around Sokka and the rest, who've reached the sand-sailer at the base by now. Katara looks over Toph's shoulder, acting as her eyes.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7115,7115,Earth,2,The Desert,11,Katara,On your left!,On your left!,Tim Hedrick,Lauren MacMullan,8.8 +7116,7116,Earth,2,The Desert,11,Scene Description,"Toph reacts immediately and shoots a rock at her left. The buzzard wasp takes the rock full in the chest, shrieking on impact before tumbling down. +The camera pans out, showing many more wasps hovering in the air. Suddenly, gigantic pillars of sand rise from the ground and scare off the swarm. Katara, Sokka and Toph lower their arms they had lifted to shield their heads from the sand. As the wind blows the dust away, the camera pans to the left, revealing several sandbenders. Aang lands before Katara, Sokka and Toph, ready to face the sandbenders. +Cut back to a shot of the flower shop in the desert village, where a sleeping Zuko is startled by the squeaking of the door. Iroh steps through as Zuko takes on a defensive stance.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7117,7117,Earth,2,The Desert,11,Zuko,What's going on? Is the club meeting over?,What's going on? Is the club meeting over?,Tim Hedrick,Lauren MacMullan,8.8 +7118,7118,Earth,2,The Desert,11,Iroh,Everything is taken care of. We're heading to Ba Sing Se.,Everything is taken care of. We're heading to Ba Sing Se.,Tim Hedrick,Lauren MacMullan,8.8 +7119,7119,Earth,2,The Desert,11,Scene Description,Iroh and Fung bow to each other in respect.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7120,7120,Earth,2,The Desert,11,Zuko,Ba Sing Se? Why would we go to the Earth Kingdom capital?,Ba Sing Se? Why would we go to the Earth Kingdom capital?,Tim Hedrick,Lauren MacMullan,8.8 +7121,7121,Earth,2,The Desert,11,Fung,[Calmly.] The city is filled with refugees. No one will notice two more.,The city is filled with refugees. No one will notice two more.,Tim Hedrick,Lauren MacMullan,8.8 +7122,7122,Earth,2,The Desert,11,Iroh,We can hide in plain sight there. And it's the safest place in the world from the Fire Nation. Even I couldn't break through to the city. [Happily shrugs his shoulders.],We can hide in plain sight there. And it's the safest place in the world from the Fire Nation. Even I couldn't break through to the city.,Tim Hedrick,Lauren MacMullan,8.8 +7123,7123,Earth,2,The Desert,11,Scene Description,"A bell signals that someone has entered the shop. A young man approaches the group, holding up some papers.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7124,7124,Earth,2,The Desert,11,White Lotus member,"I have the passports for our guests, but there are two men out on the street looking for them.","I have the passports for our guests, but there are two men out on the street looking for them.",Tim Hedrick,Lauren MacMullan,8.8 +7125,7125,Earth,2,The Desert,11,Scene Description,Xin Fu and Yu can be seen through a small window in the door of the flower shop. They are holding up a wanted poster that depicts Iroh and Zuko to man walking by.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7126,7126,Earth,2,The Desert,11,Xin Fu,You seen these guys?,You seen these guys?,Tim Hedrick,Lauren MacMullan,8.8 +7127,7127,Earth,2,The Desert,11,Scene Description,"Shift back to a shot of the base of the giant rock, where the leader of the sandbenders confronts Aang and the rest.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7128,7128,Earth,2,The Desert,11,Sha-Mo,"What are you doing in our land with a sandbender sailer? From the looks of it, you stole it from the Hami tribe.","What are you doing in our land with a sandbender sailer? From the looks of it, you stole it from the Hami tribe.",Tim Hedrick,Lauren MacMullan,8.8 +7129,7129,Earth,2,The Desert,11,Katara,We found the sailer abandoned in the desert. We're traveling with the Avatar. [She gestures at Aang. The leader's eyes widen a bit at this information.] Our bison was stolen and we have to get to Ba Sing Se.,We found the sailer abandoned in the desert. We're traveling with the Avatar. Our bison was stolen and we have to get to Ba Sing Se.,Tim Hedrick,Lauren MacMullan,8.8 +7130,7130,Earth,2,The Desert,11,Scene Description,A young man to the right of the leader takes a step forward and aggressively addresses Katara.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7131,7131,Earth,2,The Desert,11,Ghashiun,You dare accuse our people of theft while you ride in on a stolen sand sailer?!,You dare accuse our people of theft while you ride in on a stolen sand sailer?!,Tim Hedrick,Lauren MacMullan,8.8 +7132,7132,Earth,2,The Desert,11,Scene Description,"Close-up of Toph's misty, green eye, narrowing as she hears the young man's voice.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7133,7133,Earth,2,The Desert,11,Sha-Mo,"Quiet, Ghashiun. No one accused our people of anything. If what they say is true, we must give them hospitality.","Quiet, Ghashiun. No one accused our people of anything. If what they say is true, we must give them hospitality.",Tim Hedrick,Lauren MacMullan,8.8 +7134,7134,Earth,2,The Desert,11,Ghashiun,"Sorry, father.","Sorry, father.",Tim Hedrick,Lauren MacMullan,8.8 +7135,7135,Earth,2,The Desert,11,Scene Description,Toph's eye widens.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7136,7136,Earth,2,The Desert,11,Toph,I recognize the son's voice. He's the one that stole Appa.,I recognize the son's voice. He's the one that stole Appa.,Tim Hedrick,Lauren MacMullan,8.8 +7137,7137,Earth,2,The Desert,11,Katara,Are you sure?,Are you sure?,Tim Hedrick,Lauren MacMullan,8.8 +7138,7138,Earth,2,The Desert,11,Toph,I never forget a voice.,I never forget a voice.,Tim Hedrick,Lauren MacMullan,8.8 +7139,7139,Earth,2,The Desert,11,Scene Description,"Aang's tunic flutters around him as he charges forward, threateningly brandishing his staff toward Ghashiun.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7140,7140,Earth,2,The Desert,11,Aang,[Angry.] You stole Appa! Where is he? What did you do to him?,You stole Appa! Where is he? What did you do to him?,Tim Hedrick,Lauren MacMullan,8.8 +7141,7141,Earth,2,The Desert,11,Scene Description,Ghashiun cowers back.,NA,Tim Hedrick,Lauren MacMullan,8.8 +7142,7142,Earth,2,The Desert,11,Ghashiun,They're lying! They're the thieves!,They're lying! They're the thieves!,Tim Hedrick,Lauren MacMullan,8.8 +7143,7143,Earth,2,The Desert,11,Scene Description,"With an angry frown and a growl of frustration, Aang smacks his staff on the ground, obliterating one of the sandbender's sailers with a powerful blade of air.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7144,7144,Earth,2,The Desert,11,Aang,[Enraged.] Where is my bison?,Where is my bison?,Tim Hedrick,Lauren MacMullan,8.8 +7145,7145,Earth,2,The Desert,11,Scene Description,"The scene changes again to the flower shop, where a man exits the door, pulling two big flowerpots on a wooden wagon. After he leaves, Xin Fu and Yu walk toward the door. Xin Fu slams the door open with such ferocity that an overhanging plant comes crashing down. He shoves Zuko's and Iroh's wanted poster under the nose of the florist.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7146,7146,Earth,2,The Desert,11,Xin Fu,"Hey you, where are these men? I got a tip that they're in your shop.","Hey you, where are these men? I got a tip that they're in your shop.",Tim Hedrick,Lauren MacMullan,8.8 +7147,7147,Earth,2,The Desert,11,Florist,"[Calmly.] As you can see, no one is here but us.","As you can see, no one is here but us.",Tim Hedrick,Lauren MacMullan,8.8 +7148,7148,Earth,2,The Desert,11,Yu,We know all about your secret back room. [To Xin Fu.] Kick it down.,We know all about your secret back room. Kick it down.,Tim Hedrick,Lauren MacMullan,8.8 +7149,7149,Earth,2,The Desert,11,Scene Description,"Xin Fu charges the door like a mad bull and knocks it down along with the surrounding wall, with one mighty kick.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7150,7150,Earth,2,The Desert,11,Florist,Hey! That room is for flowers only!,Hey! That room is for flowers only!,Tim Hedrick,Lauren MacMullan,8.8 +7151,7151,Earth,2,The Desert,11,Yu,Some unlucky soul has an incomplete Pai Sho set.,Some unlucky soul has an incomplete Pai Sho set.,Tim Hedrick,Lauren MacMullan,8.8 +7152,7152,Earth,2,The Desert,11,Scene Description,"Yu picks up a lotus tile that lies in the center of the room and shows it to Xin Fu, who angrily knocks it out of his hands.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7153,7153,Earth,2,The Desert,11,Xin Fu,Let's go back to finding the girl.,Let's go back to finding the girl.,Tim Hedrick,Lauren MacMullan,8.8 +7154,7154,Earth,2,The Desert,11,Scene Description,"The scene switches to the man pulling the wooden wagon with the two large pots over some dunes. Zuko's and Iroh's head emerges from underneath the flowers. They briefly peek around before sinking back into their pots. +Cut back to the desert where Aang is confronting the sandbenders.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7155,7155,Earth,2,The Desert,11,Aang,You tell me where he is now!,You tell me where he is now!,Tim Hedrick,Lauren MacMullan,8.8 +7156,7156,Earth,2,The Desert,11,Scene Description,"To emphasize his order, Aang sends a strong blast of air toward another sailer. The sandbenders watch in shock as it blows up.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7157,7157,Earth,2,The Desert,11,Sha-Mo:,[To Ghashiun.] What did you do?,What did you do?,Tim Hedrick,Lauren MacMullan,8.8 +7158,7158,Earth,2,The Desert,11,Ghashiun,I-It wasn't me!,I-It wasn't me!,Tim Hedrick,Lauren MacMullan,8.8 +7159,7159,Earth,2,The Desert,11,Toph,You said to put a muzzle on him!,You said to put a muzzle on him!,Tim Hedrick,Lauren MacMullan,8.8 +7160,7160,Earth,2,The Desert,11,Aang,[Enraged.] You muzzled Appa?,You muzzled Appa?,Tim Hedrick,Lauren MacMullan,8.8 +7161,7161,Earth,2,The Desert,11,Scene Description,"Aang's eyes and tattoos start to glow as he enters the Avatar State. With a swing of his staff, he destroys the last of the sandbender's sailers.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7162,7162,Earth,2,The Desert,11,Ghashiun,I'm sorry! I didn't know that it belonged to the Avatar!,I'm sorry! I didn't know that it belonged to the Avatar!,Tim Hedrick,Lauren MacMullan,8.8 +7163,7163,Earth,2,The Desert,11,Aang,[With the voices of all the Avatars.] Tell me where Appa is!,Tell me where Appa is!,Tim Hedrick,Lauren MacMullan,8.8 +7164,7164,Earth,2,The Desert,11,Ghashiun,"[Frightened.] I traded him! To some merchants! He's probably in Ba Sing Se by now! They were going to sell him there! [The sandbenders raise their hands as if to ward off the Avatar's bright, angry glare.] Please! We'll escort you out of the desert! We'll help however we can!",I traded him! To some merchants! He's probably in Ba Sing Se by now! They were going to sell him there! Please! We'll escort you out of the desert! We'll help however we can!,Tim Hedrick,Lauren MacMullan,8.8 +7165,7165,Earth,2,The Desert,11,Scene Description,"The wind around Avatar Aang starts the swirl, as his anger is reaching its peak. Sokka pull Toph along with him as he starts to make a break for it, running away from his enraged friend.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7166,7166,Earth,2,The Desert,11,Sokka,Just get out of here! Run!,Just get out of here! Run!,Tim Hedrick,Lauren MacMullan,8.8 +7167,7167,Earth,2,The Desert,11,Scene Description,"Aang drops his staff. The wind around him forms a fast moving sphere, knocking up sand high into the sky. As everyone runs away, Katara stays put, staring sadly at the ground. The sandstorm engulfs her and Aang completely, obscuring them from the sight of the others. They brace themselves as the whirlwind swoops over them. +Aang's air sphere slowly lifts him up in the air, his teeth clenched and his hands cramped with rage. Katara grabs his right arm, preventing him from rising any further. The terrible face of an outraged Avatar looks down upon her, only to be met by Katara's sincere, sad expression. She pulls him back to the ground and presses him close against her chest. Sokka and Toph lower their arms as the wind becomes less violent. Tears are streaming down the Avatar's glowing eyes. Katara tries her best to hold on as her own tears well up. The air sphere slowly dissolves away as Aang leaves the Avatar state. His rage subsides to make room for pure, heartbreaking sadness. +Fade to credits.",NA,Tim Hedrick,Lauren MacMullan,8.8 +7168,7168,Earth,2,The Serpent's Pass,12,Scene Description,"The team is situated at the waterfall pond. Sokka is surveying a map. Toph is sitting with her feet in the water, moving it back and forth. Aang is swimming while Katara is located at the top of the lake near the waterfall. Aang goes underwater for a moment and bends an ice cube around himself for amusement.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7169,7169,Earth,2,The Serpent's Pass,12,Katara,[Excitedly.] Waterbending bomb! Yeah! [Jumps into the water.],Waterbending bomb! Yeah!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7170,7170,Earth,2,The Serpent's Pass,12,Scene Description,"The splash sends Aang out of the water, breaks his ice prison, and soaks Sokka, Toph, and the maps which he tried to protect.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7171,7171,Earth,2,The Serpent's Pass,12,Sokka,"[Sarcastically.] Sure, five thousand year-old maps from the spirit library. Just splash some water on 'em.","Sure, five thousand year-old maps from the spirit library. Just splash some water on 'em.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7172,7172,Earth,2,The Serpent's Pass,12,Katara,Sorry. [Wrings her hair dry and bends the water off the map.],Sorry.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7173,7173,Earth,2,The Serpent's Pass,12,Aang,"So, did you figure out what route we're going to take?","So, did you figure out what route we're going to take?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7174,7174,Earth,2,The Serpent's Pass,12,Sokka,"Okay, we just got out of the desert, so we must be around here. And we need to go to Ba Sing Se, which is here. It looks like the only passage connecting the south to the north is this sliver of land called the Serpent's Pass.","Okay, we just got out of the desert, so we must be around here. And we need to go to Ba Sing Se, which is here. It looks like the only passage connecting the south to the north is this sliver of land called the Serpent's Pass.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7175,7175,Earth,2,The Serpent's Pass,12,Toph,You sure that's the best way to go?,You sure that's the best way to go?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7176,7176,Earth,2,The Serpent's Pass,12,Sokka,"It's the only way. I mean, it's not like we have Appa to fly us there.","It's the only way. I mean, it's not like we have Appa to fly us there.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7177,7177,Earth,2,The Serpent's Pass,12,Katara,[Quietly.] Shush up about Appa. Can't you at least try to be sensitive?,Shush up about Appa. Can't you at least try to be sensitive?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7178,7178,Earth,2,The Serpent's Pass,12,Aang,"Katara, it's okay. I know I was upset about losing Appa before, but I just want to focus on getting to Ba Sing Se and telling the Earth King about the solar eclipse.","Katara, it's okay. I know I was upset about losing Appa before, but I just want to focus on getting to Ba Sing Se and telling the Earth King about the solar eclipse.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7179,7179,Earth,2,The Serpent's Pass,12,Katara,"[Surprised.] Oh ... well, okay. I'm glad you're doing better.","Oh ... well, okay. I'm glad you're doing better.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7180,7180,Earth,2,The Serpent's Pass,12,Sokka,Then to Ba Sing Se we go. No more distractions.,Then to Ba Sing Se we go. No more distractions.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7181,7181,Earth,2,The Serpent's Pass,12,Scene Description,"Suddenly, three refugees arrive.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7182,7182,Earth,2,The Serpent's Pass,12,Than,"Hello there, fellow refugees!","Hello there, fellow refugees!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7183,7183,Earth,2,The Serpent's Pass,12,Aang,"So, you guys are headed to Ba Sing Se, too?","So, you guys are headed to Ba Sing Se, too?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7184,7184,Earth,2,The Serpent's Pass,12,Than,Sure are. We're trying to get there before my wife Ying has her baby.,Sure are. We're trying to get there before my wife Ying has her baby.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7185,7185,Earth,2,The Serpent's Pass,12,Katara,Great! We can travel through the Serpent's Pass together.,Great! We can travel through the Serpent's Pass together.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7186,7186,Earth,2,The Serpent's Pass,12,Scene Description,The three refugees look up in shock.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7187,7187,Earth,2,The Serpent's Pass,12,Ying,The Serpent's Pass? Only the truly desperate take that deadly route!,The Serpent's Pass? Only the truly desperate take that deadly route!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7188,7188,Earth,2,The Serpent's Pass,12,Toph,"Deadly route. [Punches Sokka in the arm.] Great pick, Sokka!","Deadly route. Great pick, Sokka!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7189,7189,Earth,2,The Serpent's Pass,12,Sokka,"Well, we are desperate.","Well, we are desperate.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7190,7190,Earth,2,The Serpent's Pass,12,Than,You should come with us to Full Moon Bay. Ferries take refugees across the lake. It's the fastest way to Ba Sing Se.,You should come with us to Full Moon Bay. Ferries take refugees across the lake. It's the fastest way to Ba Sing Se.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7191,7191,Earth,2,The Serpent's Pass,12,Ying,"And it's hidden, so the Fire Nation can't find it.","And it's hidden, so the Fire Nation can't find it.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7192,7192,Earth,2,The Serpent's Pass,12,Katara,Hmm ... peaceful ferry ride or deadly pass?,Hmm ... peaceful ferry ride or deadly pass?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7193,7193,Earth,2,The Serpent's Pass,12,Scene Description,At Full Moon Bay.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7194,7194,Earth,2,The Serpent's Pass,12,Katara,I can't believe how many people's lives have been uprooted by the Fire Nation.,I can't believe how many people's lives have been uprooted by the Fire Nation.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7195,7195,Earth,2,The Serpent's Pass,12,Than,"We're all looking for a better life, safe behind the walls of Ba Sing Se.","We're all looking for a better life, safe behind the walls of Ba Sing Se.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7196,7196,Earth,2,The Serpent's Pass,12,Scene Description,A ferry departs. Zuko and Iroh are on board.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7197,7197,Earth,2,The Serpent's Pass,12,Iroh,"Who would have thought after all these years, I'd return to the scene of my greatest military disgrace ... [Turns away for a second before turning back with a floral hat on his head.] as a tourist!","Who would have thought after all these years, I'd return to the scene of my greatest military disgrace ... as a tourist!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7198,7198,Earth,2,The Serpent's Pass,12,Zuko,"Look around. We're not tourists, we're refugees. [Sips food and spits it out.] Ugh! I'm sick of eating rotten food, sleeping in the dirt. I'm tired of living like this!","Look around. We're not tourists, we're refugees. Ugh! I'm sick of eating rotten food, sleeping in the dirt. I'm tired of living like this!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7199,7199,Earth,2,The Serpent's Pass,12,Jet,"Aren't we all? My name's Jet and these are my Freedom Fighters, Smellerbee and Longshot.","Aren't we all? My name's Jet and these are my Freedom Fighters, Smellerbee and Longshot.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7200,7200,Earth,2,The Serpent's Pass,12,Smellerbee,Hey. [Longshot nods.],Hey.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7201,7201,Earth,2,The Serpent's Pass,12,Zuko,Hello.,Hello.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7202,7202,Earth,2,The Serpent's Pass,12,Jet,"Here's the deal. I hear the captain's eating like a king while the refugees have to feed off his scraps. Doesn't seem fair, does it?","Here's the deal. I hear the captain's eating like a king while the refugees have to feed off his scraps. Doesn't seem fair, does it?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7203,7203,Earth,2,The Serpent's Pass,12,Iroh,What sort of king is he eating like?,What sort of king is he eating like?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7204,7204,Earth,2,The Serpent's Pass,12,Jet,"The fat, happy kind. [At this, Iroh's mouth hangs open as he starts to drool.] You want to help us ""liberate"" some food?","The fat, happy kind. You want to help us ""liberate"" some food?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7205,7205,Earth,2,The Serpent's Pass,12,Zuko,[Tosses the bowl of rotten food into the water.] I'm in.,I'm in.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7206,7206,Earth,2,The Serpent's Pass,12,Scene Description,"Jet smirks. +Back at the station.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7207,7207,Earth,2,The Serpent's Pass,12,Ticket lady,I told you already ... no vegetables on the ferry! One cabbage slug could destroy the entire ecosystem of Ba Sing Se! Security!,I told you already ... no vegetables on the ferry! One cabbage slug could destroy the entire ecosystem of Ba Sing Se! Security!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7208,7208,Earth,2,The Serpent's Pass,12,Scene Description,A platypus bear destroys the cabbage cart.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7209,7209,Earth,2,The Serpent's Pass,12,Cabbage merchant,Ahhh! My cabbages! [He is carried away.],Ahhh! My cabbages!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7210,7210,Earth,2,The Serpent's Pass,12,Ticket lady,Next!,Next!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7211,7211,Earth,2,The Serpent's Pass,12,Aang,"Um, four tickets for the ferry to Ba Sing Se, please.","Um, four tickets for the ferry to Ba Sing Se, please.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7212,7212,Earth,2,The Serpent's Pass,12,Ticket lady,Passports?,Passports?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7213,7213,Earth,2,The Serpent's Pass,12,Aang,Uh ... no one told us we had to have passports.,Uh ... no one told us we had to have passports.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7214,7214,Earth,2,The Serpent's Pass,12,Sokka,Don't you know who this is? He's the Avatar!,Don't you know who this is? He's the Avatar!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7215,7215,Earth,2,The Serpent's Pass,12,Ticket lady,"Ah, I see fifty Avatars a day and, by the way, not a very impressive costume. [The screen pans to show several impostors; notices Momo.] Besides, no animals allowed. Do I need to call security?","Ah, I see fifty Avatars a day and, by the way, not a very impressive costume. Besides, no animals allowed. Do I need to call security?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7216,7216,Earth,2,The Serpent's Pass,12,Scene Description,The platypus bear chomps down on the cabbage. Momo hides in fear.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7217,7217,Earth,2,The Serpent's Pass,12,Aang,That won't be necessary.,That won't be necessary.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7218,7218,Earth,2,The Serpent's Pass,12,Ticket lady,Next!,Next!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7219,7219,Earth,2,The Serpent's Pass,12,Toph,"I'll take care of this. My name is Toph Beifong, and I'll need four tickets. [Presents her passport.]","I'll take care of this. My name is Toph Beifong, and I'll need four tickets.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7220,7220,Earth,2,The Serpent's Pass,12,Ticket lady,"Ah, the golden seal of the flying boar! It is my pleasure to help anyone of the Beifong family.","Ah, the golden seal of the flying boar! It is my pleasure to help anyone of the Beifong family.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7221,7221,Earth,2,The Serpent's Pass,12,Toph,"It is your pleasure. As you can see, I am blind and these three imbeciles are my valets. [Sweeps her arm behind her, presenting her friends to the hesitant clerk.]","It is your pleasure. As you can see, I am blind and these three imbeciles are my valets.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7222,7222,Earth,2,The Serpent's Pass,12,Ticket lady,"But, the animal-","But, the animal-","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7223,7223,Earth,2,The Serpent's Pass,12,Toph,#NAME?,#NAME?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7224,7224,Earth,2,The Serpent's Pass,12,Ticket lady,"Well, normally it's only one ticket per passport, but this document is so official ... I guess it's worth four tickets. [Stamps an approval seal on the tickets.]","Well, normally it's only one ticket per passport, but this document is so official ... I guess it's worth four tickets.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7225,7225,Earth,2,The Serpent's Pass,12,Toph,Thank you very much.,Thank you very much.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7226,7226,Earth,2,The Serpent's Pass,12,Sokka,"All right, we scammed that lady good!","All right, we scammed that lady good!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7227,7227,Earth,2,The Serpent's Pass,12,Scene Description,"Suddenly, a security guard, actually Suki without makeup, grabs Sokka.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7228,7228,Earth,2,The Serpent's Pass,12,Suki,Tickets and passports please.,Tickets and passports please.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7229,7229,Earth,2,The Serpent's Pass,12,Sokka,Is there a problem?,Is there a problem?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7230,7230,Earth,2,The Serpent's Pass,12,Suki,"Yeah, I got a problem with you! I've seen your type before. Probably sarcastic, think you're hilarious and let me guess, you're traveling with the Avatar.","Yeah, I got a problem with you! I've seen your type before. Probably sarcastic, think you're hilarious and let me guess, you're traveling with the Avatar.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7231,7231,Earth,2,The Serpent's Pass,12,Sokka,Do I know you?,Do I know you?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7232,7232,Earth,2,The Serpent's Pass,12,Suki,You mean you don't remember? Maybe you'll remember this! [Kisses Sokka on the cheek.],You mean you don't remember? Maybe you'll remember this!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7233,7233,Earth,2,The Serpent's Pass,12,Sokka,Suki! [Embraces her.],Suki!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7234,7234,Earth,2,The Serpent's Pass,12,Suki,"Sokka, it's good to see you!","Sokka, it's good to see you!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7235,7235,Earth,2,The Serpent's Pass,12,Scene Description,"Later, in a different location of the station. The gang and Suki talk.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7236,7236,Earth,2,The Serpent's Pass,12,Katara,You look so different without your makeup! And the new outfit.,You look so different without your makeup! And the new outfit.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7237,7237,Earth,2,The Serpent's Pass,12,Suki,"That crabby lady makes all the security guards wear them. And look at you, sleeveless guy. Been working out?","That crabby lady makes all the security guards wear them. And look at you, sleeveless guy. Been working out?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7238,7238,Earth,2,The Serpent's Pass,12,Sokka,"Ahhh, I'll grab a tree branch and do a few chin touches every now and then. Nothing major.","Ahhh, I'll grab a tree branch and do a few chin touches every now and then. Nothing major.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7239,7239,Earth,2,The Serpent's Pass,12,Aang,Are the other Kyoshi Warriors around?,Are the other Kyoshi Warriors around?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7240,7240,Earth,2,The Serpent's Pass,12,Suki,"Yeah. After you left Kyoshi, we wanted to find a way to help people. We ended up escorting some refugees and we've been here ever since. [Momo jumps up next to her.] Hi, Momo! Good to see you too! [Scratches his head near his ear.] So why are you guys getting tickets for the ferry? Wouldn't you just fly across on Appa?","Yeah. After you left Kyoshi, we wanted to find a way to help people. We ended up escorting some refugees and we've been here ever since. Hi, Momo! Good to see you too! So why are you guys getting tickets for the ferry? Wouldn't you just fly across on Appa?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7241,7241,Earth,2,The Serpent's Pass,12,Katara,Appa is missing. We hope to find him in Ba Sing Se.,Appa is missing. We hope to find him in Ba Sing Se.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7242,7242,Earth,2,The Serpent's Pass,12,Suki,I'm so sorry to hear that. [To Aang.] Are you doing okay?,I'm so sorry to hear that. Are you doing okay?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7243,7243,Earth,2,The Serpent's Pass,12,Aang,I'm doing fine. Would everybody stop worrying about me?,I'm doing fine. Would everybody stop worrying about me?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7244,7244,Earth,2,The Serpent's Pass,12,Ying,"Avatar Aang, you have to help us! Someone took all of our belongings; our passports, our tickets, everything's gone!","Avatar Aang, you have to help us! Someone took all of our belongings; our passports, our tickets, everything's gone!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7245,7245,Earth,2,The Serpent's Pass,12,Aang,I'll talk to the lady for you.,I'll talk to the lady for you.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7246,7246,Earth,2,The Serpent's Pass,12,Scene Description,Back at the desk.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7247,7247,Earth,2,The Serpent's Pass,12,Ticket lady,"No passports, no tickets! [Stamps a ""denied"" stamp on Aang's forehead.]","No passports, no tickets!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7248,7248,Earth,2,The Serpent's Pass,12,Aang,But she's pregnant and all of her stuff was stolen! You have to make an exception!,But she's pregnant and all of her stuff was stolen! You have to make an exception!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7249,7249,Earth,2,The Serpent's Pass,12,Ticket lady,"No exceptions! If I just gave away tickets willy-nilly to anyone, there would be no more order! You know what that means, no more civilization!","No exceptions! If I just gave away tickets willy-nilly to anyone, there would be no more order! You know what that means, no more civilization!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7250,7250,Earth,2,The Serpent's Pass,12,Aang,What if we gave them our tickets?,What if we gave them our tickets?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7251,7251,Earth,2,The Serpent's Pass,12,Ticket lady,No!,No!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7252,7252,Earth,2,The Serpent's Pass,12,Aang,But ...,But ...,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7253,7253,Earth,2,The Serpent's Pass,12,Ticket lady,Next!,Next!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7254,7254,Earth,2,The Serpent's Pass,12,Aang,"Don't worry, you'll get to the city safely. I'll lead you through the Serpent's Pass.","Don't worry, you'll get to the city safely. I'll lead you through the Serpent's Pass.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7255,7255,Earth,2,The Serpent's Pass,12,Scene Description,Moments later.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7256,7256,Earth,2,The Serpent's Pass,12,Sokka,I can't believe we gave up our tickets and now we're going through the Serpent's Pass.,I can't believe we gave up our tickets and now we're going through the Serpent's Pass.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7257,7257,Earth,2,The Serpent's Pass,12,Toph,I can't believe you're still complaining about it.,I can't believe you're still complaining about it.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7258,7258,Earth,2,The Serpent's Pass,12,Suki,[In her normal Kyoshi Warrior attire.] I'm coming too!,I'm coming too!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7259,7259,Earth,2,The Serpent's Pass,12,Sokka,Are you sure that's a good idea?,Are you sure that's a good idea?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7260,7260,Earth,2,The Serpent's Pass,12,Suki,"Sokka, I thought you'd want me to come.","Sokka, I thought you'd want me to come.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7261,7261,Earth,2,The Serpent's Pass,12,Sokka,"I do, it's just–","I do, it's just–","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7262,7262,Earth,2,The Serpent's Pass,12,Suki,Just what?,Just what?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7263,7263,Earth,2,The Serpent's Pass,12,Sokka,Nothing. I'm glad you're coming.,Nothing. I'm glad you're coming.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7264,7264,Earth,2,The Serpent's Pass,12,Scene Description,"Outside, at the pass.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7265,7265,Earth,2,The Serpent's Pass,12,Sokka,"This is the Serpent's Pass? I thought it would be a little more wind-y, you know, like a serpent. Huh, I guess they misnamed it.","This is the Serpent's Pass? I thought it would be a little more wind-y, you know, like a serpent. Huh, I guess they misnamed it.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7266,7266,Earth,2,The Serpent's Pass,12,Ying,Look at this writing! How awful!,Look at this writing! How awful!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7267,7267,Earth,2,The Serpent's Pass,12,Toph,What does it say?,What does it say?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7268,7268,Earth,2,The Serpent's Pass,12,Katara,"It says, ""abandon hope"".","It says, ""abandon hope"".","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7269,7269,Earth,2,The Serpent's Pass,12,Ying,How can we abandon hope? It's all we have!,How can we abandon hope? It's all we have!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7270,7270,Earth,2,The Serpent's Pass,12,Aang,"I don't know. The monks used to say that hope was just a distraction, so maybe we do need to abandon it.","I don't know. The monks used to say that hope was just a distraction, so maybe we do need to abandon it.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7271,7271,Earth,2,The Serpent's Pass,12,Katara,What are you talking about?,What are you talking about?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7272,7272,Earth,2,The Serpent's Pass,12,Aang,Hope is not going to get us into Ba Sing Se and it's not going to help find Appa. We need to focus on what we're doing right now and that's getting across this path.,Hope is not going to get us into Ba Sing Se and it's not going to help find Appa. We need to focus on what we're doing right now and that's getting across this path.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7273,7273,Earth,2,The Serpent's Pass,12,Katara,"Okay, if you say so.","Okay, if you say so.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7274,7274,Earth,2,The Serpent's Pass,12,Scene Description,Within the pass.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7275,7275,Earth,2,The Serpent's Pass,12,Suki,The Fire Nation controls the western lake. Rumor has it they're working on something big on the other side of it and don't want anyone to find out what it is.,The Fire Nation controls the western lake. Rumor has it they're working on something big on the other side of it and don't want anyone to find out what it is.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7276,7276,Earth,2,The Serpent's Pass,12,Scene Description,"They all pass by a sailing Fire Nation ship. A part of the rock gives out, causing Than to fall. Toph stops it from falling and lifts him back up with earthbending.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7277,7277,Earth,2,The Serpent's Pass,12,Than,"I'm okay! [The rock falls to the water, which the Fire Nation ship notices. It fires.]",I'm okay!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7278,7278,Earth,2,The Serpent's Pass,12,Sokka,"They've spotted us! Let's go, let's go!","They've spotted us! Let's go, let's go!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7279,7279,Earth,2,The Serpent's Pass,12,Scene Description,"Aang gets on his glider and deflects the fireball back. Another fireball hits the mountain, causing several pieces of rock over Suki to fall. Sokka pushes her out of the way. Toph bends out a part of the mountain to keep the rocks from falling on Sokka.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7280,7280,Earth,2,The Serpent's Pass,12,Sokka,"Suki, are you okay? You have to be more careful! Come on!","Suki, are you okay? You have to be more careful! Come on!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7281,7281,Earth,2,The Serpent's Pass,12,Toph,"[Pretending to be Sokka.] ""Thanks for saving my life, Toph."" Hey, no problem, Sokka.","""Thanks for saving my life, Toph."" Hey, no problem, Sokka.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7282,7282,Earth,2,The Serpent's Pass,12,Scene Description,"Hours later, at sunset, the travelers set up their camp. Sokka approaches Suki.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7283,7283,Earth,2,The Serpent's Pass,12,Sokka,"Suki, you shouldn't sleep there. Who knows how stable this ledge is, it could give away at any moment! [Moves her sleeping bag.]","Suki, you shouldn't sleep there. Who knows how stable this ledge is, it could give away at any moment!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7284,7284,Earth,2,The Serpent's Pass,12,Suki,"Sokka, I'm fine, stop worrying!","Sokka, I'm fine, stop worrying!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7285,7285,Earth,2,The Serpent's Pass,12,Sokka,"You're right, you're right, you're perfectly capable of taking care of yourself! Wait! Oh, never mind, I thought I saw a spider, but, you're fine.","You're right, you're right, you're perfectly capable of taking care of yourself! Wait! Oh, never mind, I thought I saw a spider, but, you're fine.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7286,7286,Earth,2,The Serpent's Pass,12,Scene Description,"Back on the ferry. Zuko, Jet, and Smellerbee sneak up to the food storage area. Jet breaks the door open with his twin tiger hook swords, and he and Zuko take some food.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7287,7287,Earth,2,The Serpent's Pass,12,Smellerbee,Guard's coming!,Guard's coming!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7288,7288,Earth,2,The Serpent's Pass,12,Scene Description,"Longshot fires an arrow with a rope attached to it, allowing the three to slide down it. Longshot pulls it away before the guard notices. Back at the pass, Aang is standing at the edge of the rock, looking out at the ocean, blankly. Katara approaches him.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7289,7289,Earth,2,The Serpent's Pass,12,Katara,"You know, it's okay to miss Appa. [Aang remains silent.] What's going on with you? In the desert, all you cared about was finding Appa and now it's like you don't care about him at all.","You know, it's okay to miss Appa. What's going on with you? In the desert, all you cared about was finding Appa and now it's like you don't care about him at all.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7290,7290,Earth,2,The Serpent's Pass,12,Aang,You saw what I did out there. I was so angry about losing Appa that I couldn't control myself. I hated feeling like that.,You saw what I did out there. I was so angry about losing Appa that I couldn't control myself. I hated feeling like that.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7291,7291,Earth,2,The Serpent's Pass,12,Katara,"But now you're not letting yourself feel anything. I know sometimes it hurts more to hope and it hurts more to care. But you have to promise me that you won't stop caring. [ Holds out her arms.] Come on, you need a hug.","But now you're not letting yourself feel anything. I know sometimes it hurts more to hope and it hurts more to care. But you have to promise me that you won't stop caring. Come on, you need a hug.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7292,7292,Earth,2,The Serpent's Pass,12,Aang,"[Bows before her.] Thank you for your concern, Katara. [Exits.]","Thank you for your concern, Katara.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7293,7293,Earth,2,The Serpent's Pass,12,Scene Description,"Katara shows visible concern. +In another part of the Pass, Sokka stands by himself, until Suki approaches.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7294,7294,Earth,2,The Serpent's Pass,12,Suki,It's a beautiful moon.,It's a beautiful moon.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7295,7295,Earth,2,The Serpent's Pass,12,Sokka,"Yeah, it really is.","Yeah, it really is.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7296,7296,Earth,2,The Serpent's Pass,12,Suki,"Look, I know you're just trying to help, but I can take care of myself.","Look, I know you're just trying to help, but I can take care of myself.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7297,7297,Earth,2,The Serpent's Pass,12,Sokka,I know you can.,I know you can.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7298,7298,Earth,2,The Serpent's Pass,12,Suki,Then why are you acting so overprotective?,Then why are you acting so overprotective?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7299,7299,Earth,2,The Serpent's Pass,12,Sokka,It's so hard to lose someone you care about. Something happened at the North Pole and I couldn't protect someone. I don't want anything like that to ever happen again.,It's so hard to lose someone you care about. Something happened at the North Pole and I couldn't protect someone. I don't want anything like that to ever happen again.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7300,7300,Earth,2,The Serpent's Pass,12,Suki,"I lost someone I care about. He didn't die, he just went away. I only had a few days to get to know him, but he was smart and brave and funny ...","I lost someone I care about. He didn't die, he just went away. I only had a few days to get to know him, but he was smart and brave and funny ...","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7301,7301,Earth,2,The Serpent's Pass,12,Sokka,[Jealous.] Who is this guy? Is he taller than me?,Who is this guy? Is he taller than me?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7302,7302,Earth,2,The Serpent's Pass,12,Suki,"No, he's about your height.","No, he's about your height.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7303,7303,Earth,2,The Serpent's Pass,12,Sokka,Is he better-looking?,Is he better-looking?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7304,7304,Earth,2,The Serpent's Pass,12,Suki,"It is you, stupid!","It is you, stupid!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7305,7305,Earth,2,The Serpent's Pass,12,Sokka,Oh!,Oh!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7306,7306,Earth,2,The Serpent's Pass,12,Scene Description,"The two prepare to kiss, but Sokka pulls back at the last moment.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7307,7307,Earth,2,The Serpent's Pass,12,Sokka,I can't.,I can't.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7308,7308,Earth,2,The Serpent's Pass,12,Suki,I'm sorry.,I'm sorry.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7309,7309,Earth,2,The Serpent's Pass,12,Sokka,"No, you shouldn't be. [Exits.]","No, you shouldn't be.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7310,7310,Earth,2,The Serpent's Pass,12,Scene Description,"Back on the ferry. Jet passes out food to other travelers. The other Freedom Fighters, Zuko, and Iroh sit together.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7311,7311,Earth,2,The Serpent's Pass,12,Iroh,"So, Smellerbee. That's an unusual name for a young man.","So, Smellerbee. That's an unusual name for a young man.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7312,7312,Earth,2,The Serpent's Pass,12,Smellerbee,Maybe it's because I'm not a man ... I'm a girl! [Walks away.],Maybe it's because I'm not a man ... I'm a girl!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7313,7313,Earth,2,The Serpent's Pass,12,Iroh,"[Calling out to her.] Oh, now I see. It's a beautiful name for a lovely girl!","Oh, now I see. It's a beautiful name for a lovely girl!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7314,7314,Earth,2,The Serpent's Pass,12,Scene Description,Longshot approaches Smellerbee and gestures at her.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7315,7315,Earth,2,The Serpent's Pass,12,Smellerbee,"I know, you're right. As long as I'm confident with who I am, it doesn't matter what other people think. Thanks, Longshot.","I know, you're right. As long as I'm confident with who I am, it doesn't matter what other people think. Thanks, Longshot.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7316,7316,Earth,2,The Serpent's Pass,12,Scene Description,Longshot nods at her. Jet approaches Zuko and Iroh.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7317,7317,Earth,2,The Serpent's Pass,12,Jet,"From what I heard, people eat like this every night in Ba Sing Se. I can't wait to set my eyes on that giant wall.","From what I heard, people eat like this every night in Ba Sing Se. I can't wait to set my eyes on that giant wall.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7318,7318,Earth,2,The Serpent's Pass,12,Iroh,It is a magnificent site.,It is a magnificent site.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7319,7319,Earth,2,The Serpent's Pass,12,Jet,So you've been there before?,So you've been there before?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7320,7320,Earth,2,The Serpent's Pass,12,Iroh,Once. When I was a ... different man.,Once. When I was a ... different man.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7321,7321,Earth,2,The Serpent's Pass,12,Jet,"I've done some things in my past that I'm not proud of, but that's why I'm going to Ba Sing Se: for a new beginning. A second chance.","I've done some things in my past that I'm not proud of, but that's why I'm going to Ba Sing Se: for a new beginning. A second chance.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7322,7322,Earth,2,The Serpent's Pass,12,Iroh,That's very noble of you. I believe people can change their lives if they want to. I believe in second chances.,That's very noble of you. I believe people can change their lives if they want to. I believe in second chances.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7323,7323,Earth,2,The Serpent's Pass,12,Scene Description,"Back at the Serpent's Pass. The travelers notice that a section of the pass is below the sea level, and not able to be navigated.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7324,7324,Earth,2,The Serpent's Pass,12,Katara,"Everyone single file! [She divides the water, allowing everyone to walk through the drowned out path.] Aang, I need help! [Aang helps by creating an air bubble.]","Everyone single file! Aang, I need help!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7325,7325,Earth,2,The Serpent's Pass,12,Scene Description,"Momo's curiosity is aroused by the fish. He dives in the water, only to return back when he sees a large shadow. The rest of them notice.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7326,7326,Earth,2,The Serpent's Pass,12,Katara,What is that thing?,What is that thing?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7327,7327,Earth,2,The Serpent's Pass,12,Scene Description,"The shadow breaks through the water, breaking the divide. Toph quickly uses her earthbending to raise the ground they are standing on above the water. The shadow is actually a large serpent, which appears from the water with a shriek.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7328,7328,Earth,2,The Serpent's Pass,12,Sokka,"I think I just figured out why they call it the Serpent's Pass! Suki, you know about giant sea monsters, make it go away!","I think I just figured out why they call it the Serpent's Pass! Suki, you know about giant sea monsters, make it go away!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7329,7329,Earth,2,The Serpent's Pass,12,Suki,Just because I live near the unagi doesn't mean I'm an expert!,Just because I live near the unagi doesn't mean I'm an expert!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7330,7330,Earth,2,The Serpent's Pass,12,Sokka,"[Holds up Momo.] Oh great and powerful sea serpent, please accept this humble and tasty offering. Thank you.","Oh great and powerful sea serpent, please accept this humble and tasty offering. Thank you.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7331,7331,Earth,2,The Serpent's Pass,12,Katara,Sokka!,Sokka!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7332,7332,Earth,2,The Serpent's Pass,12,Aang,"[Blasts the Serpent back with a burst of air.] I'll distract it. Katara, get everyone across! [Takes off on his glider.]","I'll distract it. Katara, get everyone across!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7333,7333,Earth,2,The Serpent's Pass,12,Scene Description,"Katara freezes the water to create an ice trail. Everyone except for Toph crosses. Katara tries to ice up the serpent, but it fails.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7334,7334,Earth,2,The Serpent's Pass,12,Sokka,"Toph, come on, it's just ice!","Toph, come on, it's just ice!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7335,7335,Earth,2,The Serpent's Pass,12,Toph,"[Feels the ice but her sense of sight is restricted.] Actually, I'm going to stay on my little island, where I can see! [The serpent takes out half the island.] Okay, I'm coming! [Slowly crosses the ice.]","Actually, I'm going to stay on my little island, where I can see! Okay, I'm coming!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7336,7336,Earth,2,The Serpent's Pass,12,Sokka,You're doing great! Just follow the sound of my voice!,You're doing great! Just follow the sound of my voice!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7337,7337,Earth,2,The Serpent's Pass,12,Toph,It's hard to ignore.,It's hard to ignore.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7338,7338,Earth,2,The Serpent's Pass,12,Sokka,You're almost there!,You're almost there!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7339,7339,Earth,2,The Serpent's Pass,12,Scene Description,"The serpent slams down the ice trail, dropping Toph into a struggle to stay above water.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7340,7340,Earth,2,The Serpent's Pass,12,Toph,Help! I can't swim!,Help! I can't swim!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7341,7341,Earth,2,The Serpent's Pass,12,Sokka,"I'm coming, Toph!","I'm coming, Toph!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7342,7342,Earth,2,The Serpent's Pass,12,Scene Description,"Before he can do anything, Suki jumps in for the save.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7343,7343,Earth,2,The Serpent's Pass,12,Toph,Help!,Help!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7344,7344,Earth,2,The Serpent's Pass,12,Scene Description,"Toph falls below the water, but Suki pulls her up before she drowns.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7345,7345,Earth,2,The Serpent's Pass,12,Toph,"[Thinking it is Sokka.] Oh Sokka, you saved me! [Kisses Suki on the cheek.]","Oh Sokka, you saved me!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7346,7346,Earth,2,The Serpent's Pass,12,Suki,"Actually, it's me.","Actually, it's me.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7347,7347,Earth,2,The Serpent's Pass,12,Toph,Oh ... well ... [Chuckles. Embarrassed.] you can go ahead and let me drown now.,Oh ... well ... you can go ahead and let me drown now.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7348,7348,Earth,2,The Serpent's Pass,12,Scene Description,"Meanwhile, the serpent is caught in a whirlpool created by Aang and Katara. The force of it slams the serpent into the mountain, causing it to fall back below water. Upon seeing the two return, the rest of the travelers cheer. Moments later, near Ba Sing Se's wall.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7349,7349,Earth,2,The Serpent's Pass,12,Sokka,There's the wall! Now it's nothing but smooth sailing to Ba Sing Se.,There's the wall! Now it's nothing but smooth sailing to Ba Sing Se.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7350,7350,Earth,2,The Serpent's Pass,12,Ying,[Groans in pain.] Oh no!,Oh no!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7351,7351,Earth,2,The Serpent's Pass,12,Sokka,What's wrong?,What's wrong?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7352,7352,Earth,2,The Serpent's Pass,12,Ying,The baby's coming!,The baby's coming!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7353,7353,Earth,2,The Serpent's Pass,12,Sokka,[Panicked.] What? Now? Can't you hold it in or something?,What? Now? Can't you hold it in or something?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7354,7354,Earth,2,The Serpent's Pass,12,Katara,"Sokka, calm down. I helped Gran-Gran deliver lots of babies back home.","Sokka, calm down. I helped Gran-Gran deliver lots of babies back home.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7355,7355,Earth,2,The Serpent's Pass,12,Sokka,This isn't the same as delivering an arctic seal! This is a real ... human ... thing!,This isn't the same as delivering an arctic seal! This is a real ... human ... thing!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7356,7356,Earth,2,The Serpent's Pass,12,Katara,"It's called a baby and I helped her deliver plenty of those, too. Aang, get some rags. Sokka, water. Toph, I need you to make an earth tent, a big one. [Toph earthbends the rock to form a tent.] Suki, come with me.","It's called a baby and I helped her deliver plenty of those, too. Aang, get some rags. Sokka, water. Toph, I need you to make an earth tent, a big one. Suki, come with me.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7357,7357,Earth,2,The Serpent's Pass,12,Scene Description,Back on the ferry. Jet approaches Zuko.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7358,7358,Earth,2,The Serpent's Pass,12,Jet,"You know, as soon as I saw your scar, I knew exactly who you were. You're an outcast, like me. And us outcasts have to stick together. We have to watch each other's backs. Because no one else will.","You know, as soon as I saw your scar, I knew exactly who you were. You're an outcast, like me. And us outcasts have to stick together. We have to watch each other's backs. Because no one else will.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7359,7359,Earth,2,The Serpent's Pass,12,Zuko,I've realized lately that being on your own isn't always the best path.,I've realized lately that being on your own isn't always the best path.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7360,7360,Earth,2,The Serpent's Pass,12,Scene Description,"The ferry closes in on the walls. +Back at the pass. Ying is breathing heavily as the baby delivery continues.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7361,7361,Earth,2,The Serpent's Pass,12,Katara,"You're doing great, Ying. Sokka, where's that water? Now get ready to push. One ... two ... [Sokka enters.] ... three, push!","You're doing great, Ying. Sokka, where's that water? Now get ready to push. One ... two ... ... three, push!","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7362,7362,Earth,2,The Serpent's Pass,12,Scene Description,"Ying groans; Sokka passes out. Moments later, the baby arrives and begins to cry. Aang, Toph, and Sokka are all outside the tent.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7363,7363,Earth,2,The Serpent's Pass,12,Katara,[From inside the tent.] It's a girl!,It's a girl!,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7364,7364,Earth,2,The Serpent's Pass,12,Toph,"So, you want to go see the baby, or are you going to faint like an old lady again?","So, you want to go see the baby, or are you going to faint like an old lady again?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7365,7365,Earth,2,The Serpent's Pass,12,Sokka,"No, no, I'm good this time. [Toph and Sokka enter the tent.]","No, no, I'm good this time.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7366,7366,Earth,2,The Serpent's Pass,12,Katara,"Aang, you have to come see this.","Aang, you have to come see this.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7367,7367,Earth,2,The Serpent's Pass,12,Scene Description,Aang enters to see the new life.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7368,7368,Earth,2,The Serpent's Pass,12,Toph,She sounds healthy.,She sounds healthy.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7369,7369,Earth,2,The Serpent's Pass,12,Katara,She's beautiful.,She's beautiful.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7370,7370,Earth,2,The Serpent's Pass,12,Sokka,It's so ... squishy looking.,It's so ... squishy looking.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7371,7371,Earth,2,The Serpent's Pass,12,Scene Description,Aang begins to smile.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7372,7372,Earth,2,The Serpent's Pass,12,Than,What should we name her?,What should we name her?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7373,7373,Earth,2,The Serpent's Pass,12,Ying,I want our daughter's name to be unique. I want it to mean something.,I want our daughter's name to be unique. I want it to mean something.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7374,7374,Earth,2,The Serpent's Pass,12,Aang,[Sheds some tears.] I've been going through a really hard time lately. But you've made me ... hopeful again.,I've been going through a really hard time lately. But you've made me ... hopeful again.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7375,7375,Earth,2,The Serpent's Pass,12,Ying,I know what I want to name our baby now. Hope.,I know what I want to name our baby now. Hope.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7376,7376,Earth,2,The Serpent's Pass,12,Than,That's a perfect name. Hope.,That's a perfect name. Hope.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7377,7377,Earth,2,The Serpent's Pass,12,Scene Description,"Outside the tent. Aang meets with Katara. Suki, Sokka, and Toph stand next to the tent.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7378,7378,Earth,2,The Serpent's Pass,12,Aang,"I thought I was trying to be strong. But really I was just running away from my feelings. Seeing this family together, so full of happiness and love, it's reminded me how I feel about Appa ... and how I feel about you.","I thought I was trying to be strong. But really I was just running away from my feelings. Seeing this family together, so full of happiness and love, it's reminded me how I feel about Appa ... and how I feel about you.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7379,7379,Earth,2,The Serpent's Pass,12,Scene Description,"Katara sheds some tears. Aang and Katara embrace, Katara's eyes still watering. The other three approach.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7380,7380,Earth,2,The Serpent's Pass,12,Aang,"I promise, I'll find Appa as fast as I can. I just really need to do this.","I promise, I'll find Appa as fast as I can. I just really need to do this.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7381,7381,Earth,2,The Serpent's Pass,12,Sokka,See you in the big city.,See you in the big city.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7382,7382,Earth,2,The Serpent's Pass,12,Toph,Say hi to that big fuzzball for me. [Punches Aang in the arm.],Say hi to that big fuzzball for me.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7383,7383,Earth,2,The Serpent's Pass,12,Katara,"You'll find him, Aang.","You'll find him, Aang.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7384,7384,Earth,2,The Serpent's Pass,12,Aang,"I know. Thank you, Katara. You ready, Momo? [Aang and Momo fly off. The rest wave goodbye.]","I know. Thank you, Katara. You ready, Momo?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7385,7385,Earth,2,The Serpent's Pass,12,Scene Description,Suki approaches Sokka.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7386,7386,Earth,2,The Serpent's Pass,12,Suki,"Sokka, it's been really great to see you again.","Sokka, it's been really great to see you again.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7387,7387,Earth,2,The Serpent's Pass,12,Sokka,"Whoa, hold on. Why does it sound like you're saying goodbye?","Whoa, hold on. Why does it sound like you're saying goodbye?","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7388,7388,Earth,2,The Serpent's Pass,12,Suki,I came along because I wanted to make sure you got through the Serpent's Pass safely. But now I need to get back to the other Kyoshi Warriors.,I came along because I wanted to make sure you got through the Serpent's Pass safely. But now I need to get back to the other Kyoshi Warriors.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7389,7389,Earth,2,The Serpent's Pass,12,Sokka,So you came along to protect me?,So you came along to protect me?,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7390,7390,Earth,2,The Serpent's Pass,12,Suki,"Listen, I'm really sorry about last night. We were talking ... and saying things ... and I just got carried away and before I knew it -","Listen, I'm really sorry about last night. We were talking ... and saying things ... and I just got carried away and before I knew it -","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7391,7391,Earth,2,The Serpent's Pass,12,Sokka,[Kisses Suki.] You talk too much.,You talk too much.,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7392,7392,Earth,2,The Serpent's Pass,12,Scene Description,"The two share a deep kiss. Aang and Momo fly to the top of the Outer Wall of Ba Sing Se. However, Aang quickly notices a large drill with a Fire Nation insignia, heading for the wall.",NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7393,7393,Earth,2,The Serpent's Pass,12,Aang,"Sorry Momo, Appa's going to have to wait.","Sorry Momo, Appa's going to have to wait.","Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7394,7394,Earth,2,The Serpent's Pass,12,Scene Description,Fade to credits.,NA,"Joshua Hamilton, Michael Dante DiMartino",Ethan Spaulding,8.4 +7395,7395,Earth,2,The Drill,13,Scene Description,"The episode opens where several Fire Nation tanks rumble across the terrain, a large metal mechanism following close behind. The camera zooms out to a shot of the Fire Nation drill slowly moving its way toward the Outer Wall of Ba Sing Se. Several sections of the drill extend forward, releasing steam as spikes are driven into the ground. The drill's command module ascends where inside are Princess Azula, her friends, Mai and Ty Lee, War Minister Qin and several operators of the drill.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7396,7396,Earth,2,The Drill,13,Qin,"This drill is a feat of scientific ingenuity and raw destructive power. Once it tunnels through the wall, our troops will storm their city. The Earth Kingdom will finally fall, and you can claim Ba Sing Se in the name of your father. Nothing can stop us.","This drill is a feat of scientific ingenuity and raw destructive power. Once it tunnels through the wall, our troops will storm their city. The Earth Kingdom will finally fall, and you can claim Ba Sing Se in the name of your father. Nothing can stop us.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7397,7397,Earth,2,The Drill,13,Ty Lee,"[Looking through the telescope.] Hmmm, what about those muscle-y guys down there?","Hmmm, what about those muscle-y guys down there?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7398,7398,Earth,2,The Drill,13,Scene Description,"She peers through a periscope at several Earth Kingdom troops using earthbending to create large trenches, Fire Nation forces following them in hot pursuit.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7399,7399,Earth,2,The Drill,13,Qin,[Strikes the periscope roughly alarming Ty Lee.] Please. The drill's metal shell is impervious to any earthbending attack.,Please. The drill's metal shell is impervious to any earthbending attack.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7400,7400,Earth,2,The Drill,13,Azula,"Oh, I'm sure it is, War Minister Qin, but just to be on the safe side ... [Sharply while looking at the two girls.] Mai and Ty Lee, take the earthbenders out!","Oh, I'm sure it is, War Minister Qin, but just to be on the safe side ... Mai and Ty Lee, take the earthbenders out!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7401,7401,Earth,2,The Drill,13,Mai,"[Swinging a knife around her finger; relieved.] Finally, something to do. [Rises and walks out.]","Finally, something to do.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7402,7402,Earth,2,The Drill,13,Scene Description,"The scene changes to where Katara, Sokka and Toph are escorting Than and his family to the city. Aang appears, flying in on his glider with Momo behind him. He lands, Momo perched on his shoulder.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7403,7403,Earth,2,The Drill,13,Katara,"[Surprised.] Aang, what are you doing here? I thought you were looking for Appa.","Aang, what are you doing here? I thought you were looking for Appa.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7404,7404,Earth,2,The Drill,13,Aang,"I was, but something stopped me. Something big.","I was, but something stopped me. Something big.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7405,7405,Earth,2,The Drill,13,Scene Description,The scene switches to the base of the Outer Wall where Aang and Toph use earthbending to transport everyone up the wall.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7406,7406,Earth,2,The Drill,13,Sokka,Now what's so big that Appa has to wait?,Now what's so big that Appa has to wait?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7407,7407,Earth,2,The Drill,13,Aang,[Camera zooms out to drill.] That.,That.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7408,7408,Earth,2,The Drill,13,Scene Description,The group arrives at the top of the Outer Wall.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7409,7409,Earth,2,The Drill,13,Ying,[Despairingly.] We made it to Ba Sing Se and we're still not safe. No one is! [Huddles with family members.],We made it to Ba Sing Se and we're still not safe. No one is!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7410,7410,Earth,2,The Drill,13,Earthbender guard,What are you people doing here? Civilians aren't allowed on the wall!,What are you people doing here? Civilians aren't allowed on the wall!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7411,7411,Earth,2,The Drill,13,Aang,I'm the Avatar. Take me to whoever is in charge.,I'm the Avatar. Take me to whoever is in charge.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7412,7412,Earth,2,The Drill,13,Scene Description,"The scene changes to a portion of the Outer Wall where a roof rises overhead, supported by tall arches. An Earth Kingdom general sits behind a desk.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7413,7413,Earth,2,The Drill,13,General Sung,"[Happily.] It is an honor to welcome you to the Outer Wall, young Avatar, but your help is not needed.","It is an honor to welcome you to the Outer Wall, young Avatar, but your help is not needed.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7414,7414,Earth,2,The Drill,13,Aang,Not needed?,Not needed?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7415,7415,Earth,2,The Drill,13,General Sung,"[Calmly.] Not needed. I have the situation under control. I assure you the Fire Nation cannot penetrate this wall. Many have tried to break through it, but none have succeeded.","Not needed. I have the situation under control. I assure you the Fire Nation cannot penetrate this wall. Many have tried to break through it, but none have succeeded.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7416,7416,Earth,2,The Drill,13,Toph,What about the Dragon of the West? He got in.,What about the Dragon of the West? He got in.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7417,7417,Earth,2,The Drill,13,General Sung,"[Slightly taken aback.] Well ... uh, technically yes, but he was quickly expunged. [Confidently.] Nevertheless, that is why the city is named Ba Sing Se. It's the ""impenetrable city"". They don't call it Na Sing Se. [Laughs, but subsequently turns serious.] That means ""penetrable city.""","Well ... uh, technically yes, but he was quickly expunged. Nevertheless, that is why the city is named Ba Sing Se. It's the ""impenetrable city"". They don't call it Na Sing Se. That means ""penetrable city.""","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7418,7418,Earth,2,The Drill,13,Toph,"Yeah, thanks for the tour, but we still got the drill problem.","Yeah, thanks for the tour, but we still got the drill problem.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7419,7419,Earth,2,The Drill,13,General Sung,"Not for long. To stop it, I've sent an elite platoon of earthbenders called the Terra Team.","Not for long. To stop it, I've sent an elite platoon of earthbenders called the Terra Team.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7420,7420,Earth,2,The Drill,13,Sokka,That's a good group name. Very catchy.,That's a good group name. Very catchy.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7421,7421,Earth,2,The Drill,13,Scene Description,The scene cuts to where the Terra Team is launching their assault on the Fire Nation drill. They manage to overthrow one tank and get closer to the drill.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7422,7422,Earth,2,The Drill,13,Terra Team leader,Ready ... attack!,Ready ... attack!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7423,7423,Earth,2,The Drill,13,Scene Description,"The earthbenders wedge large earth spikes into the metal shell of the drill to halt it. However, the drill's segments separate, reducing the columns to crumbles. The Terra Team narrowly manages to conjure earth shields to defend themselves against an assault of flying daggers hurled by Mai. She and Ty Lee are seen sliding down the shell of the drill. The scene cuts to the side of the drill where Ty Lee lands gracefully onto the ground. She effortlessly manages to defeat the earthbenders through an acrobatic display, utilizing chi blocking.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7424,7424,Earth,2,The Drill,13,General Sung,[Upon witnessing the defeat of the Terra Team.] We're doomed! [Flails arms in panic.],We're doomed!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7425,7425,Earth,2,The Drill,13,Sokka,"[Slaps him across the face.] Get a hold of yourself, man!","Get a hold of yourself, man!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7426,7426,Earth,2,The Drill,13,General Sung,[Rubbing cheek.] You're right. I'm sorry.,You're right. I'm sorry.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7427,7427,Earth,2,The Drill,13,Toph,Maybe you'd like the Avatar's help now?,Maybe you'd like the Avatar's help now?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7428,7428,Earth,2,The Drill,13,General Sung,"[Meekly stands before the Avatar. Humbly.] Yes, please.","Yes, please.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7429,7429,Earth,2,The Drill,13,Scene Description,The scene changes to where Aang and the rest are overlooking the wall at the drill.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7430,7430,Earth,2,The Drill,13,Aang,"The question is, how are we going to stop that thing? [All turn their heads to Sokka.]","The question is, how are we going to stop that thing?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7431,7431,Earth,2,The Drill,13,Sokka,Why are you all looking at me?,Why are you all looking at me?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7432,7432,Earth,2,The Drill,13,Aang,You're the idea guy.,You're the idea guy.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7433,7433,Earth,2,The Drill,13,Sokka,[Complaining.] So I'm the only one who can ever come up with a plan? That's a lot of pressure.,So I'm the only one who can ever come up with a plan? That's a lot of pressure.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7434,7434,Earth,2,The Drill,13,Katara,And also the complaining guy.,And also the complaining guy.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7435,7435,Earth,2,The Drill,13,Sokka,That part I don't mind.,That part I don't mind.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7436,7436,Earth,2,The Drill,13,Scene Description,The scene changes to where a ticket woman is inspecting Zuko and Iroh's tickets.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7437,7437,Earth,2,The Drill,13,Ticket woman,"So, Mr. Lee and Mr. ummm ... Mushy, is it?","So, Mr. Lee and Mr. ummm ... Mushy, is it?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7438,7438,Earth,2,The Drill,13,Iroh,It's pronounced Mushi.,It's pronounced Mushi.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7439,7439,Earth,2,The Drill,13,Ticket woman,[Annoyed.] You telling me how to do my job?,You telling me how to do my job?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7440,7440,Earth,2,The Drill,13,Iroh,"[Approaches the ticket booth.] Uh, no, no. But may I just say you're like a flower in bloom. Your beauty is intoxicating.","Uh, no, no. But may I just say you're like a flower in bloom. Your beauty is intoxicating.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7441,7441,Earth,2,The Drill,13,Ticket woman,"[Flirtatiously.] You're pretty easy on the eyes yourself, handsome. Raorr! Welcome to Ba Sing Se. [Stamps their tickets.]","You're pretty easy on the eyes yourself, handsome. Raorr! Welcome to Ba Sing Se.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7442,7442,Earth,2,The Drill,13,Zuko,[Disgusted.] I'm going to forget I saw that. [Grabs ticket and walks away.],I'm going to forget I saw that.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7443,7443,Earth,2,The Drill,13,Scene Description,"Camera changes to view of Jet, overlooking Zuko, now under the adopted alias, Lee.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7444,7444,Earth,2,The Drill,13,Jet,"I think Lee would make a good Freedom Fighter. He's just trying to find his way in the world, like us.","I think Lee would make a good Freedom Fighter. He's just trying to find his way in the world, like us.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7445,7445,Earth,2,The Drill,13,Smellerbee,"You don't know anything about him, Jet.","You don't know anything about him, Jet.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7446,7446,Earth,2,The Drill,13,Jet,I know he didn't get that scar from a waterbender.,I know he didn't get that scar from a waterbender.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7447,7447,Earth,2,The Drill,13,Smellerbee,"Besides, I thought we were going straight now.","Besides, I thought we were going straight now.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7448,7448,Earth,2,The Drill,13,Jet,"We are, and the new Freedom Fighters could use a guy like Lee. What do you think, Longshot?","We are, and the new Freedom Fighters could use a guy like Lee. What do you think, Longshot?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7449,7449,Earth,2,The Drill,13,Scene Description,Longshot looks over at him silently with a meaningful look on his face and blinks his eyes.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7450,7450,Earth,2,The Drill,13,Jet,I can respect that.,I can respect that.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7451,7451,Earth,2,The Drill,13,Scene Description,"Meanwhile, back at the Outer Wall, Katara attempts to heal a member of the Terra Team.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7452,7452,Earth,2,The Drill,13,General Sung,What's wrong with him? He doesn't look injured.,What's wrong with him? He doesn't look injured.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7453,7453,Earth,2,The Drill,13,Katara,His chi is blocked. [Stops healing.] Who did this to you?,His chi is blocked. Who did this to you?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7454,7454,Earth,2,The Drill,13,Terra Team member,Two girls ambushed us. One of them hit me with a bunch of quick jabs and suddenly I couldn't earthbend anymore and I could barely move. Then she cartwheeled away.,Two girls ambushed us. One of them hit me with a bunch of quick jabs and suddenly I couldn't earthbend anymore and I could barely move. Then she cartwheeled away.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7455,7455,Earth,2,The Drill,13,Katara,"[Eyes widen in realization.] Ty Lee. She doesn't look dangerous, but she knows the human body and its weak points. It's like she takes you down from the inside.","Ty Lee. She doesn't look dangerous, but she knows the human body and its weak points. It's like she takes you down from the inside.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7456,7456,Earth,2,The Drill,13,Sokka,"[Excitedly.] Ooh, ooh, ooh, ooh! Ooh!","Ooh, ooh, ooh, ooh! Ooh!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7457,7457,Earth,2,The Drill,13,Katara,Yes?,Yes?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7458,7458,Earth,2,The Drill,13,Sokka,What you just said! That's how we're going to take down the drill! The same way Ty Lee took down all those big earthbenders!,What you just said! That's how we're going to take down the drill! The same way Ty Lee took down all those big earthbenders!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7459,7459,Earth,2,The Drill,13,Toph,By hitting its pressure points!,By hitting its pressure points!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7460,7460,Earth,2,The Drill,13,Aang,[Looking out over the wall with a determined look.] We'll take it down from the inside.,We'll take it down from the inside.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7461,7461,Earth,2,The Drill,13,Scene Description,"The scene cuts to the Fire Nation drill. The camera pans to where Aang, Katara, Sokka and Toph are crouching together in one of the abandoned trenches of the Terra Team.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7462,7462,Earth,2,The Drill,13,Toph,"[Gesturing toward the drill.] Once I whip up some cover, you're not going to be able to see. So, stay close to me.","Once I whip up some cover, you're not going to be able to see. So, stay close to me.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7463,7463,Earth,2,The Drill,13,Scene Description,"She steps outside the trench and with a powerful stomp of her foot, sending a mass of flying debris clouding toward the drill.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7464,7464,Earth,2,The Drill,13,Toph,Run!,Run!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7465,7465,Earth,2,The Drill,13,Scene Description,The group races into the dust cloud behind Toph. The scene cuts to the command module where Ty Lee is peering at the cloud through the periscope.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7466,7466,Earth,2,The Drill,13,Ty Lee,"Hey, look at that dust cloud. [Periscope view shows front of drill and billowing cloud.] It's so ... poofy. [Cut back to Ty Lee who looks away from the periscope with a spaced-out expression.] Poof.","Hey, look at that dust cloud. It's so ... poofy. Poof.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7467,7467,Earth,2,The Drill,13,Qin,"Don't worry, Princess. I'm sure it's nothing. [Azula casts a doubtful look.]","Don't worry, Princess. I'm sure it's nothing.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7468,7468,Earth,2,The Drill,13,Scene Description,The scene changes to outside where the group is standing in the midst of the dust beside the drill. Toph earthbends a hole into the ground.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7469,7469,Earth,2,The Drill,13,Toph,Everyone into the hole!,Everyone into the hole!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7470,7470,Earth,2,The Drill,13,Scene Description,She and the others jump into the hole and the ground above them closes shut. The camera pans to underground where it is pitch black.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7471,7471,Earth,2,The Drill,13,Sokka,"It's so dark down here, I can't see a thing!","It's so dark down here, I can't see a thing!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7472,7472,Earth,2,The Drill,13,Toph,"[Sarcastically.] Oh no, what a nightmare!","Oh no, what a nightmare!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7473,7473,Earth,2,The Drill,13,Sokka,[Sheepishly.] Sorry.,Sorry.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7474,7474,Earth,2,The Drill,13,Scene Description,"They make their way to the surface underneath the drill, where Sokka spots an opening.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7475,7475,Earth,2,The Drill,13,Sokka,There!,There!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7476,7476,Earth,2,The Drill,13,Scene Description,"Aang leaps up to the bar hanging from the opening and, dangling upside-down from his legs, hoists Sokka and Katara into the drill. He realizes Toph is not following them. Sokka sticks his head out of the drill.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7477,7477,Earth,2,The Drill,13,Sokka,"Toph, come on!","Toph, come on!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7478,7478,Earth,2,The Drill,13,Toph,No way am I going in that metal monster. I can't bend in there. I'll try to slow it down out here.,No way am I going in that metal monster. I can't bend in there. I'll try to slow it down out here.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7479,7479,Earth,2,The Drill,13,Sokka,"Okay, good luck! [He and Aang disappear into the drill.]","Okay, good luck!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7480,7480,Earth,2,The Drill,13,Scene Description,"Toph earthbends a wedge of rock into the drill, however, it is proving to be a difficult task as it pushes her back. The scene changes to inside the drill where Sokka is leading the others through a tunnel of valves and pipes.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7481,7481,Earth,2,The Drill,13,Sokka,I need a plan of this machine. Some schematics that show what the inside looks like. Then we can find its weak points.,I need a plan of this machine. Some schematics that show what the inside looks like. Then we can find its weak points.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7482,7482,Earth,2,The Drill,13,Aang,Where are we going to get something like that? [Sokka unexpectedly cuts off a steam valve with his machete.] What are you doing? Someone's going to hear us!,Where are we going to get something like that? What are you doing? Someone's going to hear us!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7483,7483,Earth,2,The Drill,13,Sokka,That's the point. I figure a machine this big needs engineers to run it. And when something breaks ...,That's the point. I figure a machine this big needs engineers to run it. And when something breaks ...,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7484,7484,Earth,2,The Drill,13,Katara,They come to fix it!,They come to fix it!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7485,7485,Earth,2,The Drill,13,Scene Description,"Aang and Katara smile at each other. Moments later, an engineer wearing a mask is seen walking down the misty hallway to the site of the damage.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7486,7486,Earth,2,The Drill,13,Katara,[Appears behind him.] Hi.,Hi.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7487,7487,Earth,2,The Drill,13,Scene Description,"She freezes the mist, covering the engineer in a thin layer of ice. Sokka runs up to the frozen engineer and takes his schematics.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7488,7488,Earth,2,The Drill,13,Sokka,This'll work. Thanks!,This'll work. Thanks!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7489,7489,Earth,2,The Drill,13,Scene Description,"The trio runs off, leaving the helpless engineer who drops his spear unintentionally. The scene changes to where Sokka and the others are studying the plans.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7490,7490,Earth,2,The Drill,13,Sokka,"It looks like the drill is made up of two main structures. There's the inner mechanism where we are now and the outer shell. The inner part and the outer part are connected by these braces. If we cut through them, the entire thing will collapse.","It looks like the drill is made up of two main structures. There's the inner mechanism where we are now and the outer shell. The inner part and the outer part are connected by these braces. If we cut through them, the entire thing will collapse.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7491,7491,Earth,2,The Drill,13,Scene Description,"Aang and Katara nod in agreement. The scene changes to the train station where Zuko, Iroh and the three Freedom Fighters are awaiting their train. The camera focuses on Zuko and Iroh, who sit in the waiting area. Jet approaches and sits next to Zuko.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7492,7492,Earth,2,The Drill,13,Jet,"So, you guys got plans once you're inside the city?","So, you guys got plans once you're inside the city?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7493,7493,Earth,2,The Drill,13,Tea seller,Get your hot tea here! Finest tea in Ba Sing Se!,Get your hot tea here! Finest tea in Ba Sing Se!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7494,7494,Earth,2,The Drill,13,Iroh,[Waves hand.] Ooh! Jasmine please.,Ooh! Jasmine please.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7495,7495,Earth,2,The Drill,13,Scene Description,"The tea seller pours tea into a leaf cup for Iroh. Iroh sips the tea, but soon grimaces at its repulsive taste.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7496,7496,Earth,2,The Drill,13,Iroh,"Blaugh! Ugh, coldest tea in Ba Sing Se is more like it! What a disgrace!","Blaugh! Ugh, coldest tea in Ba Sing Se is more like it! What a disgrace!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7497,7497,Earth,2,The Drill,13,Jet,"Hey, can I talk to you for a second?","Hey, can I talk to you for a second?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7498,7498,Earth,2,The Drill,13,Scene Description,He motions for Zuko to follow him. Zuko sighs and reluctantly rises. The two walk several feet away from Iroh's spot.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7499,7499,Earth,2,The Drill,13,Jet,You and I have a much better chance of making it in the city if we stick together. You want to join the Freedom Fighters?,You and I have a much better chance of making it in the city if we stick together. You want to join the Freedom Fighters?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7500,7500,Earth,2,The Drill,13,Zuko,"Thanks, but I don't think you want me in your gang.","Thanks, but I don't think you want me in your gang.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7501,7501,Earth,2,The Drill,13,Jet,"Come on, we made a great team looting that captain's food. Think of all the good we could do for these refugees.","Come on, we made a great team looting that captain's food. Think of all the good we could do for these refugees.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7502,7502,Earth,2,The Drill,13,Zuko,[Walking away.] I said no.,I said no.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7503,7503,Earth,2,The Drill,13,Jet,Have it your way.,Have it your way.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7504,7504,Earth,2,The Drill,13,Scene Description,"He catches sight of Iroh, who is sipping his now steaming hot tea, causing his eyes to widen in shock and realization. Zuko, approaching Iroh, glances over his shoulder at Jet, who narrows his eyes and walks away. Angrily, he knocks the tea cup out of Iroh's hand.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7505,7505,Earth,2,The Drill,13,Iroh,Hey!,Hey!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7506,7506,Earth,2,The Drill,13,Zuko,"[Gritting in a whisper.] What are you doing firebending your tea? For a wise, old man, that was a pretty stupid move!","What are you doing firebending your tea? For a wise, old man, that was a pretty stupid move!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7507,7507,Earth,2,The Drill,13,Iroh,"[Mourning.] I know you're not supposed to cry over spilled tea, but ... [Sniffs. The cup is shown overturned in a puddle.] it's just so sad!","I know you're not supposed to cry over spilled tea, but ... it's just so sad!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7508,7508,Earth,2,The Drill,13,Scene Description,The scene switches to the interior of the drill where Sokka is leading the others through a door onto a massive steal beam.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7509,7509,Earth,2,The Drill,13,Sokka,"Wow, it looks a lot thicker in person than it does in the plans. We're going to have to work pretty hard to cut through that.","Wow, it looks a lot thicker in person than it does in the plans. We're going to have to work pretty hard to cut through that.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7510,7510,Earth,2,The Drill,13,Katara,"[Crosses her arms.] What's this ""we"" stuff? Aang and I are going to have to do all the work.","What's this ""we"" stuff? Aang and I are going to have to do all the work.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7511,7511,Earth,2,The Drill,13,Sokka,"[Turns and gestures to self.] Look, I'm the plan guy. You two [Makes rapid chop-chop gestures.] are the cut stuff up with waterbending guys. [Strikes a heroic pose.] Together, we're Team Avatar!","Look, I'm the plan guy. You two are the cut stuff up with waterbending guys. Together, we're Team Avatar!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7512,7512,Earth,2,The Drill,13,Scene Description,"Katara and Aang shoot each other awkward looks. The scene cuts to one where the two are positioned on either side of one brace. Using waterbending, they slice through the metal sharply. The shot changes to when the brace is sliced halfway through. Both Katara and Aang are bent over and gasping in exhaustion.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7513,7513,Earth,2,The Drill,13,Sokka,[Pumping arms in the air.] C'mon team. Don't quit now. [Katara grinds her teeth as she seethes with rage.] We're ...,C'mon team. Don't quit now. We're ...,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7514,7514,Earth,2,The Drill,13,Katara,[Explodes with frustration.] Grrr!,Grrr!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7515,7515,Earth,2,The Drill,13,Scene Description,"Katara shoots a menacing glare while pulling out her water whip and threatening to strike him with it. Cut to Sokka, who stands wide-eyed, arms still in air.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7516,7516,Earth,2,The Drill,13,Sokka,"I mean, [Recovers and points reassuringly.] you're almost there.","I mean, you're almost there.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7517,7517,Earth,2,The Drill,13,Scene Description,"The two resume work slicing the brace. With every lash of the water whip, the cut through the brace enlarges and Sokka grows more and more eager. At last, a cut is made clean through the brace, however, to their disappointment, the brace budges mere inches from its position.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7518,7518,Earth,2,The Drill,13,Katara,"[Panting in exhaustion.] At this rate, we won't do enough damage before the drill reaches the wall.","At this rate, we won't do enough damage before the drill reaches the wall.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7519,7519,Earth,2,The Drill,13,Aang,I don't know how many more of those I have in me.,I don't know how many more of those I have in me.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7520,7520,Earth,2,The Drill,13,Scene Description,The drill suddenly creaks.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7521,7521,Earth,2,The Drill,13,Sokka,Do you hear that? We took it down! We better get out of here fast!,Do you hear that? We took it down! We better get out of here fast!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7522,7522,Earth,2,The Drill,13,Scene Description,"The trio run for the door, only to halt upon hearing an announcement being made through overhead speaking tubes.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7523,7523,Earth,2,The Drill,13,Qin,"Congratulations, crew. The drill has made contact with the wall of Ba Sing Se. [Cuts to him standing in the command module.] Start the countdown to victory!","Congratulations, crew. The drill has made contact with the wall of Ba Sing Se. Start the countdown to victory!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7524,7524,Earth,2,The Drill,13,Scene Description,"Cheers erupt from the crew. The camera cuts to Azula, a threatening look of determination on her face. Aang, Katara and Sokka look at each other in shock and dismay. The camera cuts to a scene of the drill hammering through the wall, sending loose boulders in every direction. The scene changes to one of a stream of a saturated rock and water solution traveling through tubes and making its way through the back entrance of the drill. Cuts to Sokka, who is desperately attempting to move the brace.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7525,7525,Earth,2,The Drill,13,Sokka,[Pushing against brace.] C'mon brace ... budge! [Makes several more attempts to move it.],C'mon brace ... budge!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7526,7526,Earth,2,The Drill,13,Katara,"This is bad, really bad.","This is bad, really bad.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7527,7527,Earth,2,The Drill,13,Sokka,"We're putting everything we've got into busting these braces, but it's taking too long!","We're putting everything we've got into busting these braces, but it's taking too long!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7528,7528,Earth,2,The Drill,13,Aang,"[Struck with realization.] Maybe we don't need to cut all the way through. Toph has been teaching me that you shouldn't give one hundred percent of your energy into any one strike. [Rises.] Sokka, take a fighting stance. You've got to be quick and accurate. Hit a series of points and break your opponent's stance. [Strikes Sokka several times.] And when he's reeling back, you deliver the final blow. [Hits him softly on the head.] His own weight becomes his downfall, literally.","Maybe we don't need to cut all the way through. Toph has been teaching me that you shouldn't give one hundred percent of your energy into any one strike. Sokka, take a fighting stance. You've got to be quick and accurate. Hit a series of points and break your opponent's stance. And when he's reeling back, you deliver the final blow. His own weight becomes his downfall, literally.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7529,7529,Earth,2,The Drill,13,Scene Description,"As Aang is speaking, Sokka kneels over.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7530,7530,Earth,2,The Drill,13,Katara,"So we just need to weaken the braces, instead of cutting all the way through.","So we just need to weaken the braces, instead of cutting all the way through.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7531,7531,Earth,2,The Drill,13,Aang,Then I'll go to the top of this thing and deliver the final blow.,Then I'll go to the top of this thing and deliver the final blow.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7532,7532,Earth,2,The Drill,13,Sokka,[Rising.] And boom! It all comes crashing down!,And boom! It all comes crashing down!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7533,7533,Earth,2,The Drill,13,Aang,Everyone inside that wall. The whole world is counting on us.,Everyone inside that wall. The whole world is counting on us.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7534,7534,Earth,2,The Drill,13,Sokka,The whole world minus the Fire Nation that is.,The whole world minus the Fire Nation that is.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7535,7535,Earth,2,The Drill,13,Scene Description,"Sokka grins, while the other two simply stare at each other exasperated. The scene cuts to Toph under the drill, putting all her strength into keeping the rock column stable as she is slowly pushed back by the force of the drill.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7536,7536,Earth,2,The Drill,13,Toph,"[Straining as the drill continues to push her back.] C'mon, Twinkle Toes, hurry up!","C'mon, Twinkle Toes, hurry up!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7537,7537,Earth,2,The Drill,13,Scene Description,"The scene changes to where Aang and Katara are making rapid progress, slicing through several braces halfway to weaken them.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7538,7538,Earth,2,The Drill,13,Aang,That's enough! We need to get to the next one!,That's enough! We need to get to the next one!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7539,7539,Earth,2,The Drill,13,Scene Description,"The scene changes to outside the drill, where earthbenders are sending boulders down at the drill from the wall. The scene changes to the command module where the War Minister receives shocking news from engineers communicating through speaking tubes.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7540,7540,Earth,2,The Drill,13,Engineer,"War Minister, an engineer was ambushed! His schematics were stolen!","War Minister, an engineer was ambushed! His schematics were stolen!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7541,7541,Earth,2,The Drill,13,Scene Description,Qin is clearly surprised while Azula narrows her eyes in suspicion.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7542,7542,Earth,2,The Drill,13,Second Engineer,"War Minister, a brace on the starboard side has been cut clean through! It's sabotage, sir!","War Minister, a brace on the starboard side has been cut clean through! It's sabotage, sir!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7543,7543,Earth,2,The Drill,13,Azula,"[Sharply.] Let's go, ladies!","Let's go, ladies!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7544,7544,Earth,2,The Drill,13,Scene Description,The scene changes to where the trio continues to slice through the braces.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7545,7545,Earth,2,The Drill,13,Sokka,"Good work, Team Avatar! Now Aang just needs to ... [Glances up in horror.] duck!","Good work, Team Avatar! Now Aang just needs to ... duck!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7546,7546,Earth,2,The Drill,13,Scene Description,"He ducks just in time to evade the blue fire blast sent his way by Azula, who runs out and stands on another brace followed by her friends.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7547,7547,Earth,2,The Drill,13,Aang,[Barely misses another fire blast.] Whoa!,Whoa!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7548,7548,Earth,2,The Drill,13,Ty Lee,"Wow, Azula, you were right! It is the Avatar! [Cut to a close-up of Ty Lee; she smiles flirtatiously at Sokka.] ... and friends.","Wow, Azula, you were right! It is the Avatar! ... and friends.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7549,7549,Earth,2,The Drill,13,Sokka,[Smiles and waves.] Hey.,Hey.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7550,7550,Earth,2,The Drill,13,Scene Description,"Katara approaches her brother and drags him away, clearly annoyed. Ty Lee swings herself forward toward Aang who quickly airbends her away. The trio escape the scene and race through the drill's hallways. They come to an intersection.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7551,7551,Earth,2,The Drill,13,Aang,"Guys, get out of here. I know what I need to do.","Guys, get out of here. I know what I need to do.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7552,7552,Earth,2,The Drill,13,Katara,Wait. [Throws him her water skin.] You need this water more than I do!,Wait. You need this water more than I do!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7553,7553,Earth,2,The Drill,13,Scene Description,Aang catches the water skin and starts running again. Azula and her team reach the intersection.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7554,7554,Earth,2,The Drill,13,Azula,Follow them! The Avatar's mine!,Follow them! The Avatar's mine!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7555,7555,Earth,2,The Drill,13,Scene Description,"Mai and Ty Lee begin chasing Katara and Sokka while Azula chases after Aang. Meanwhile, the two siblings have arrived at the end of the hallway where there is a closed hatch.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7556,7556,Earth,2,The Drill,13,Katara,"[Reads a sign nearby, while Sokka struggles to open the hatch.] Slurry pipeline? What does that mean?",Slurry pipeline? What does that mean?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7557,7557,Earth,2,The Drill,13,Sokka,[Having successfully opened hatch which leads to a canal channeling slurry.] It's rock and water mixed together. It means our way out!,It's rock and water mixed together. It means our way out!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7558,7558,Earth,2,The Drill,13,Scene Description,The two begin descending into the pipe when Mai and Ty Lee arrive. They manage to escape into the canal just as a flurry of daggers is sent their way. The camera cuts to a shot of them floating through the slurry. Mai and Ty Lee run over and peer into the pipeline.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7559,7559,Earth,2,The Drill,13,Mai,"[Holds her hands over the slurry.] Ugh, disgusting!","Ugh, disgusting!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7560,7560,Earth,2,The Drill,13,Ty Lee,C'mon! You heard Azula. We have to follow them!,C'mon! You heard Azula. We have to follow them!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7561,7561,Earth,2,The Drill,13,Mai,She can shoot all the lightning she wants at me. I am not going in that wall sludge juice. [Shivers in disgust.],She can shoot all the lightning she wants at me. I am not going in that wall sludge juice.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7562,7562,Earth,2,The Drill,13,Scene Description,"Ty Lee shrugs and leaps through the pipeline into the slurry. Mai shudders with a final expression of disgust and closes the hatch. The scene cuts to where Aang races past several engineers through the drill. The camera cuts to the rear of the drill where a flood of slurry is continually being released. Katara and Sokka slide through the slurry onto the ground with Ty Lee following them in hot pursuit. Katara uses waterbending to stop the flow of slurry and plug up the back entrance of the drill, thus trapping Ty Lee.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7563,7563,Earth,2,The Drill,13,Katara,"[Hatefully and tauntingly.] Why don't you try blocking my chi now, circus freak?","Why don't you try blocking my chi now, circus freak?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7564,7564,Earth,2,The Drill,13,Sokka,"Katara, keep that up. The pressure will build up in the drill. Then when Aang delivers the final blow, it'll be ready to pop!","Katara, keep that up. The pressure will build up in the drill. Then when Aang delivers the final blow, it'll be ready to pop!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7565,7565,Earth,2,The Drill,13,Scene Description,The scene changes to where Aang and Momo have made their way to the top of the drill.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7566,7566,Earth,2,The Drill,13,Aang,"[Halting.] This looks like a good spot, Momo. [Looks up to find boulders being hurtled down the wall, nearly crushing him. Yelling.] General Sung, tell your soldiers to stop shooting rocks down here!","This looks like a good spot, Momo. General Sung, tell your soldiers to stop shooting rocks down here!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7567,7567,Earth,2,The Drill,13,General Sung,"[Frantically.] Soldiers, whatever you do, don't stop shooting rocks down there!","Soldiers, whatever you do, don't stop shooting rocks down there!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7568,7568,Earth,2,The Drill,13,Scene Description,The soldiers nod and launch another round of rocks toward the drill. Aang leaps out of the way of the oncoming boulders and begins slicing at the hull of the metal using water from Katara's water skin. The scene changes to where Katara continues to hold Ty Lee captive in the slurry.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7569,7569,Earth,2,The Drill,13,Sokka,"Good technique, little sister! Keep it up! Don't forget to breathe!","Good technique, little sister! Keep it up! Don't forget to breathe!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7570,7570,Earth,2,The Drill,13,Katara,"[Irritated.] You know, I'm just about sick and tired of you telling me what to do all day! You're like a chattering hog-monkey!","You know, I'm just about sick and tired of you telling me what to do all day! You're like a chattering hog-monkey!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7571,7571,Earth,2,The Drill,13,Sokka,"[Screaming.] Just bend the slurry, woman!","Just bend the slurry, woman!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7572,7572,Earth,2,The Drill,13,Scene Description,"Frustrated, Katara bends a wave of slurry into her brother with her free hand, knocking him down into the foul muck.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7573,7573,Earth,2,The Drill,13,Toph,[Approaching Katara.] You guys need some help?,You guys need some help?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7574,7574,Earth,2,The Drill,13,Katara,"Toph, help me plug up this drain.","Toph, help me plug up this drain.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7575,7575,Earth,2,The Drill,13,Scene Description,"The two cooperate with each other to bend the slurry, sending Ty Lee farther into the drill and causing the pipes to begin to expand under the pressure. The scene cuts to where Aang continues to slice the metal of the drill.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7576,7576,Earth,2,The Drill,13,Aang,[Exhausted.] What I'd give to be a metalbender.,What I'd give to be a metalbender.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7577,7577,Earth,2,The Drill,13,Scene Description,Momo suddenly shrieks and Aang deflects a blue fire blast just in time.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7578,7578,Earth,2,The Drill,13,Aang,"[Assuming a fighting stance.] Momo, get out of here!","Momo, get out of here!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7579,7579,Earth,2,The Drill,13,Scene Description,"Azula appears before the Avatar and a battle ensues between the two. Azula shoots fire blasts at Aang, who manages to block them using airbending. She continues the fire attacks only to have each one of her strikes deterred by water whips. She eventually manages to vaporize the water, sending Aang back. The two narrowly dodge the several boulders that are hurtled toward them at that moment. Aang uses earthbending and airbending to send rocks at Azula, who manages to avoid them all. Azula sends another powerful firebending assault that slams Aang into the Outer Wall of Ba Sing Se, leaving him unconscious. +The camera view briefly changes to where the front of the drill is seen having completely dug its way through the Outer Wall. Camera changes to Azula as she walks over to him with fire in her right hand, preparing to deal a deadly final strike, but Aang awakens and sends her skidding back using an earthbending gauntlet. A flood of slurry is released as the drill bores deeper into the wall, coating the two. Azula slides toward a helpless Aang, attempting to halt herself by windmilling only to collide with him. The force of the collision sends both sliding off opposite sides of the drill. Azula is able to stop her descent by grinding her feet into the drill's side while Momo drags Aang up to the top with the help of Aang's airbending.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7580,7580,Earth,2,The Drill,13,Aang,"Thanks, Momo. I owe you one. [Runs over to the wedge he sliced in the drill.] Now all I need ... [A boulder falls before him.] Actually, that is what I need for once.","Thanks, Momo. I owe you one. Now all I need ... Actually, that is what I need for once.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7581,7581,Earth,2,The Drill,13,Scene Description,"He uses airbending to position the boulder over the X mark in the drill. Using earthbending, he cuts the rock several times, creating a wedge that fits inside the middle of the hole. He begins sprinting toward the wall, scales up its side by riding an air scooter and, once he arrives at his highest point, rockets at lightning speed toward the bottom. As he propels himself downward, Azula catches sight of him and fires at him. She misses by mere seconds and is sent back forcefully as Aang leaps and slams down on the wedge, creating a large ripple effect. The impact of the blow causes the sliced braces inside the drill to collapse and the pipes to burst, releasing a torrent of slurry. Slurry begins to seep from the drill. The scene cuts to Katara and Toph, who remain in their bending stances.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7582,7582,Earth,2,The Drill,13,Sokka,Woohoo!,Woohoo!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7583,7583,Earth,2,The Drill,13,Toph,Here it comes!,Here it comes!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7584,7584,Earth,2,The Drill,13,Scene Description,"She earthbends Katara, Sokka, and herself onto a rock pillar to avoid the flood of slurry. Slurry gushes from the rear of the drill, and Ty Lee slams into the wall of the rock pillar as she is forcefully pushed forward by the flood. The drill begins to release steam and its segments begin to collapse. On the other side of the wall, the drill is seen coming to a halt. +The camera zooms out on the destroyed drill. The scene cuts to Aang covered in slurry, Momo licking him as he wipes it away near his face, a huge smile spread across his face. Cut to War Minister Qin, who stares at the slurry from inside the command module, completely shocked. Cuts to General Sung atop the Outer Wall, covered in the muck. Cuts to Ty Lee as she attempts to clear away the mess. Cut to shot of Azula, skidding down the drill also covered in slurry. She lands by Ty Lee, causing the acrobat to be covered in slurry once again. A hatch opens, revealing Mai, who is completely clean.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7585,7585,Earth,2,The Drill,13,Mai,[Dryly.] We lost.,We lost.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7586,7586,Earth,2,The Drill,13,Scene Description,The scene changes to the train station.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7587,7587,Earth,2,The Drill,13,Train conductor,Last call for Ba Sing Se!,Last call for Ba Sing Se!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7588,7588,Earth,2,The Drill,13,Scene Description,"Scene shifts to Jet, who is storming toward the train, Longshot and Smellerbee following close behind.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7589,7589,Earth,2,The Drill,13,Smellerbee,"Jet, relax. So the old guy had some hot tea. Big deal.","Jet, relax. So the old guy had some hot tea. Big deal.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7590,7590,Earth,2,The Drill,13,Jet,He heated it himself! [Darkly.] Those guys are firebenders!,He heated it himself! Those guys are firebenders!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7591,7591,Earth,2,The Drill,13,Scene Description,"Iroh and Zuko board the train, Jet and his groups eying them. Iroh and Zuko seat themselves next to Than and his family. Iroh notices Hope.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7592,7592,Earth,2,The Drill,13,Iroh,What a handsome baby. [Strokes the infant.],What a handsome baby.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7593,7593,Earth,2,The Drill,13,Ying,Thank you.,Thank you.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7594,7594,Earth,2,The Drill,13,Scene Description,"Camera closes up on Hope, who is sleeping. Scene cuts to outside where two earthbenders begin moving the train out of the station. Scene changes to Team Avatar standing at the top of the wall, overlooking the sunset.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7595,7595,Earth,2,The Drill,13,Sokka,"I just want to say, good effort out there today, Team Avatar!","I just want to say, good effort out there today, Team Avatar!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7596,7596,Earth,2,The Drill,13,Katara,"[Unamused.] Enough with the Team Avatar stuff. No matter how many times you say it, it's not going to catch on.","Enough with the Team Avatar stuff. No matter how many times you say it, it's not going to catch on.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7597,7597,Earth,2,The Drill,13,Sokka,"How about ... [Pulls out boomerang.] the Boomeraang Squad! See it's good because it's got ""Aang"" in it. Boomeraang.","How about ... the Boomeraang Squad! See it's good because it's got ""Aang"" in it. Boomeraang.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7598,7598,Earth,2,The Drill,13,Aang,[Grins.] I kind of like that one.,I kind of like that one.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7599,7599,Earth,2,The Drill,13,Katara,[Begins walking away.] Let's talk about this on our way into the city.,Let's talk about this on our way into the city.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7600,7600,Earth,2,The Drill,13,Sokka,The Aang Gang?,The Aang Gang?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7601,7601,Earth,2,The Drill,13,Katara,Sokka ...,Sokka ...,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7602,7602,Earth,2,The Drill,13,Sokka,The Fearsome Foursome?,The Fearsome Foursome?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7603,7603,Earth,2,The Drill,13,Toph,[Also walking away.] You're crazy.,You're crazy.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7604,7604,Earth,2,The Drill,13,Sokka,Why? We're fearsome!,Why? We're fearsome!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7605,7605,Earth,2,The Drill,13,Scene Description,He runs after them.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7606,7606,Earth,2,The Drill,13,Scene Description,Fades to credits.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9 +7607,7607,Earth,2,City of Walls and Secrets,14,Scene Description,"The episode opens to two fox antelopes, grazing on a hill side. They look up at the monorail tracks behind them as a monorail goes past, pushed by two earthbenders. Cut to inside the car where Aang, Katara, Sokka, Toph, and Momo are awaiting their arrival at Ba Sing Se. Katara looks out from the window and notices the Inner Wall of the Earth Kingdom capital drawing closer.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7608,7608,Earth,2,City of Walls and Secrets,14,Katara,"[Excitedly.] Look, the Inner Wall! [Cut to a shot of the monorail approaching the wall. Cut back inside monorail.] I can't believe we finally made it to Ba Sing Se in one piece.","Look, the Inner Wall! I can't believe we finally made it to Ba Sing Se in one piece.",Tim Hedrick,Lauren MacMullan,8.7 +7609,7609,Earth,2,City of Walls and Secrets,14,Sokka,"[Slightly skeptically.] Hey, don't jinx it! We can still be attacked by some giant exploding Fire Nation spoon. Or find out the city's been submerged in an ocean full of killer shrimp!","Hey, don't jinx it! We can still be attacked by some giant exploding Fire Nation spoon. Or find out the city's been submerged in an ocean full of killer shrimp!",Tim Hedrick,Lauren MacMullan,8.7 +7610,7610,Earth,2,City of Walls and Secrets,14,Toph,"[Slightly annoyed, yet still jokingly.] You been hitting the cactus juice again?",You been hitting the cactus juice again?,Tim Hedrick,Lauren MacMullan,8.7 +7611,7611,Earth,2,City of Walls and Secrets,14,Sokka,"I'm just sayin', weird stuff happens to us.","I'm just sayin', weird stuff happens to us.",Tim Hedrick,Lauren MacMullan,8.7 +7612,7612,Earth,2,City of Walls and Secrets,14,Scene Description,"A man, sucking a corn plant in his mouth, takes a seat between Toph and Sokka, startling them. The scene changes to Aang and Katara looking out the windows, the former closing his eyes sadly.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7613,7613,Earth,2,City of Walls and Secrets,14,Katara,"[Sympathetically.] Don't worry Aang, we'll find Appa.","Don't worry Aang, we'll find Appa.",Tim Hedrick,Lauren MacMullan,8.7 +7614,7614,Earth,2,City of Walls and Secrets,14,Aang,[Doubtfully.] It's such a big city.,It's such a big city.,Tim Hedrick,Lauren MacMullan,8.7 +7615,7615,Earth,2,City of Walls and Secrets,14,Sokka,[Somewhat optimistically.] He's a giant bison! Where could someone possibly hide him?,He's a giant bison! Where could someone possibly hide him?,Tim Hedrick,Lauren MacMullan,8.7 +7616,7616,Earth,2,City of Walls and Secrets,14,Scene Description,"The scene shows the monorail entering the Inner Wall. Cut to Sokka, Katara, and Aang viewing the giant city through the windows.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7617,7617,Earth,2,City of Walls and Secrets,14,Sokka,[Realizing the city's gigantic size.] Oh.,Oh.,Tim Hedrick,Lauren MacMullan,8.7 +7618,7618,Earth,2,City of Walls and Secrets,14,Scene Description,"The three notice that Ba Sing Se stretches almost as far as their eyes can see, and it has many roads and buildings. Their train enters the monorail station, stopping there. All of them disembark.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7619,7619,Earth,2,City of Walls and Secrets,14,Toph,[Sighs.] Back in the city. Great.,Back in the city. Great.,Tim Hedrick,Lauren MacMullan,8.7 +7620,7620,Earth,2,City of Walls and Secrets,14,Sokka,[Excitedly.] What's the problem? It's amazing!,What's the problem? It's amazing!,Tim Hedrick,Lauren MacMullan,8.7 +7621,7621,Earth,2,City of Walls and Secrets,14,Toph,"[Shot shows Sokka and Toph with Momo resting on her shoulder.] It's just a bunch of walls and rules. You wait, you'll get sick of it in a couple of days.","It's just a bunch of walls and rules. You wait, you'll get sick of it in a couple of days.",Tim Hedrick,Lauren MacMullan,8.7 +7622,7622,Earth,2,City of Walls and Secrets,14,Scene Description,"Scene changes to Aang looking at the bison whistle in his palm, and he blows it.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7623,7623,Earth,2,City of Walls and Secrets,14,Aang,"I'm comin' for ya, buddy. [Katara walks over to the downtrodden Aang, and places her hand on his shoulder. More confidently.] He's here; I can feel it.","I'm comin' for ya, buddy. He's here; I can feel it.",Tim Hedrick,Lauren MacMullan,8.7 +7624,7624,Earth,2,City of Walls and Secrets,14,Scene Description,"The shot changes to the monorail departing, behind the team. Cut to the other side of the track, where there is a woman with long dark hair that billows in the wind. She approaches them with a strange smile on her face.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7625,7625,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Excited.] Hello, my name is Joo Dee! I have been given the great honor of showing the Avatar around Ba Sing Se. And you must be Sokka, Katara, and Toph! Welcome to our wonderful city. Shall we get started?","Hello, my name is Joo Dee! I have been given the great honor of showing the Avatar around Ba Sing Se. And you must be Sokka, Katara, and Toph! Welcome to our wonderful city. Shall we get started?",Tim Hedrick,Lauren MacMullan,8.7 +7626,7626,Earth,2,City of Walls and Secrets,14,Sokka,"Yes. We have information about the Fire Nation army that we need to deliver to the Earth King, immediately.","Yes. We have information about the Fire Nation army that we need to deliver to the Earth King, immediately.",Tim Hedrick,Lauren MacMullan,8.7 +7627,7627,Earth,2,City of Walls and Secrets,14,Joo Dee,Great! Let's begin our tour. And then I'll show you to your new home here. I think you'll like it!,Great! Let's begin our tour. And then I'll show you to your new home here. I think you'll like it!,Tim Hedrick,Lauren MacMullan,8.7 +7628,7628,Earth,2,City of Walls and Secrets,14,Sokka,"[Slightly annoyed.] Ugh! [Walks up to Joo Dee.] Maybe you missed what I said. We need to talk to the king about the War, it's important.","Ugh! Maybe you missed what I said. We need to talk to the king about the War, it's important.",Tim Hedrick,Lauren MacMullan,8.7 +7629,7629,Earth,2,City of Walls and Secrets,14,Joo Dee,[Close-up on Joo Dee's face.] You're in Ba Sing Se now. Everyone is safe here.,You're in Ba Sing Se now. Everyone is safe here.,Tim Hedrick,Lauren MacMullan,8.7 +7630,7630,Earth,2,City of Walls and Secrets,14,Scene Description,Team Avatar has a confused look on their faces regarding Joo Dee's strange statement. Cut to an overhead shot of the area of the city near the wall. An ostrich horse pulls a carriage through the streets. Many shops and refugees line the streets. Cut to a shot of the inside of the carriage containing Joo Dee and Team Avatar.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7631,7631,Earth,2,City of Walls and Secrets,14,Joo Dee,This is the Lower Ring.,This is the Lower Ring.,Tim Hedrick,Lauren MacMullan,8.7 +7632,7632,Earth,2,City of Walls and Secrets,14,Katara,What's that wall for?,What's that wall for?,Tim Hedrick,Lauren MacMullan,8.7 +7633,7633,Earth,2,City of Walls and Secrets,14,Joo Dee,"Oh, Ba Sing Se has many walls! There are the ones outside protecting us, and the ones inside, that help maintain order. [Shot changes to outside the carriage as the camera pans across some refugees.] This is where our newest arrivals live, as well as our craftsman and artisans, people that work with their hands. [Shot changes back to inside the carriage.] It's so quaint and lively!","Oh, Ba Sing Se has many walls! There are the ones outside protecting us, and the ones inside, that help maintain order. This is where our newest arrivals live, as well as our craftsman and artisans, people that work with their hands. It's so quaint and lively!",Tim Hedrick,Lauren MacMullan,8.7 +7634,7634,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to a shot of two men conversing in an alley. One of them is holding a large sword that glistens in the light. Both glare at the carriage as it passes. Cut back to the carriage, where Katara becomes unnerved, her face blanking out, while Momo, who was looking out of the window by hanging from the ceiling, quickly retreats completely into the carriage.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7635,7635,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Nervously.] You do want to watch your step, though.","You do want to watch your step, though.",Tim Hedrick,Lauren MacMullan,8.7 +7636,7636,Earth,2,City of Walls and Secrets,14,Katara,[Nervous look on her face.] Why do they have all these poor people blocked off in one part of the city?,Why do they have all these poor people blocked off in one part of the city?,Tim Hedrick,Lauren MacMullan,8.7 +7637,7637,Earth,2,City of Walls and Secrets,14,Aang,[Upset and somewhat bored.] This is why I never came here before. I always heard it was so different from the way the monks taught us to live. [Looks out the window.],This is why I never came here before. I always heard it was so different from the way the monks taught us to live.,Tim Hedrick,Lauren MacMullan,8.7 +7638,7638,Earth,2,City of Walls and Secrets,14,Scene Description,"The scene changes to another part of the Lower Ring. Cut to Zuko walking down the street. Iroh catches up to him from behind, holding a large vase with several orange flowers placed in it. Cut to a close-up of Zuko staring coldly at the flora and Iroh.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7639,7639,Earth,2,City of Walls and Secrets,14,Iroh,"I just want our place to look nice, in case someone brings home a lady friend! [He gives Zuko a nudge with the elbow.]","I just want our place to look nice, in case someone brings home a lady friend!",Tim Hedrick,Lauren MacMullan,8.7 +7640,7640,Earth,2,City of Walls and Secrets,14,Zuko,[Bleakly.] This city is a prison. I don't want to make a life here.,This city is a prison. I don't want to make a life here.,Tim Hedrick,Lauren MacMullan,8.7 +7641,7641,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to overhead view of the street they are walking down.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7642,7642,Earth,2,City of Walls and Secrets,14,Iroh,"Life happens wherever you are, whether you make it or not. Now come on, I found us some new jobs, and we start this afternoon!","Life happens wherever you are, whether you make it or not. Now come on, I found us some new jobs, and we start this afternoon!",Tim Hedrick,Lauren MacMullan,8.7 +7643,7643,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to a shot from behind Zuko and Iroh as they walk away. Someone's feet step out in front. Cut to a close-up of Jet staring angrily at the two firebenders.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7644,7644,Earth,2,City of Walls and Secrets,14,Jet,"Look at them, firebenders living right under everyone's nose.","Look at them, firebenders living right under everyone's nose.",Tim Hedrick,Lauren MacMullan,8.7 +7645,7645,Earth,2,City of Walls and Secrets,14,Scene Description,Longshot and Smellerbee walk up to Jet from an alley.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7646,7646,Earth,2,City of Walls and Secrets,14,Smellerbee,"Jet, you saw a man with a hot cup of tea. It doesn't prove he's a firebender. And what if he is, are we supposed to attack them? I thought we were starting over here, changing our ways.","Jet, you saw a man with a hot cup of tea. It doesn't prove he's a firebender. And what if he is, are we supposed to attack them? I thought we were starting over here, changing our ways.",Tim Hedrick,Lauren MacMullan,8.7 +7647,7647,Earth,2,City of Walls and Secrets,14,Jet,"We are. When I get the evidence I need, I'll report them to the police and let them handle it. [Walks forward a bit and turns his head to face the pair.] Okay?","We are. When I get the evidence I need, I'll report them to the police and let them handle it. Okay?",Tim Hedrick,Lauren MacMullan,8.7 +7648,7648,Earth,2,City of Walls and Secrets,14,Scene Description,"Smellerbee and Longshot exchange glances. Cut to a shot of the Middle Ring, where Joo Dee is continuing the tour in the carriage.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7649,7649,Earth,2,City of Walls and Secrets,14,Joo Dee,"This is the Middle Ring of Ba Sing Se, home to the financial district, shops and restaurants, and the university.","This is the Middle Ring of Ba Sing Se, home to the financial district, shops and restaurants, and the university.",Tim Hedrick,Lauren MacMullan,8.7 +7650,7650,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to side-view of carriage. Aang and Sokka looks out of the windows, bored.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7651,7651,Earth,2,City of Walls and Secrets,14,Sokka,"Yeah, we met a professor from the Ba Sing Se University. He took us to an ancient underground library where we discovered information about the war that is [Cut to inside carriage. Leaning toward Joo Dee, losing his patience.] absolutely crucial for the Earth King to hear!","Yeah, we met a professor from the Ba Sing Se University. He took us to an ancient underground library where we discovered information about the war that is absolutely crucial for the Earth King to hear!",Tim Hedrick,Lauren MacMullan,8.7 +7652,7652,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Smiling; excitedly.] Isn't history fascinating? Look, here's one of the oldest buildings in the Middle Ring, Town Hall!","Isn't history fascinating? Look, here's one of the oldest buildings in the Middle Ring, Town Hall!",Tim Hedrick,Lauren MacMullan,8.7 +7653,7653,Earth,2,City of Walls and Secrets,14,Scene Description,"The carriage stops and Joo Dee exits. Sokka stares at her, annoyed.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7654,7654,Earth,2,City of Walls and Secrets,14,Sokka,Is that woman deaf? She only seems to hear every other word I say.,Is that woman deaf? She only seems to hear every other word I say.,Tim Hedrick,Lauren MacMullan,8.7 +7655,7655,Earth,2,City of Walls and Secrets,14,Toph,"It's called ""being handled"". Get used to it. [Crosses her arms as everyone else glares sadly at Sokka.]","It's called ""being handled"". Get used to it.",Tim Hedrick,Lauren MacMullan,8.7 +7656,7656,Earth,2,City of Walls and Secrets,14,Scene Description,"The scene changes to a small tea shop in the Lower Ring, with Jet leaning against the shop's wall. He turns around and peeks inside the window, spotting Zuko and Iroh speaking with the shop's owner. Cut to Jet's view.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7657,7657,Earth,2,City of Walls and Secrets,14,Pao,"Well, you certainly look like official tea servers. [Cut to close-up of Pao.] How do you feel?","Well, you certainly look like official tea servers. How do you feel?",Tim Hedrick,Lauren MacMullan,8.7 +7658,7658,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to Zuko and Iroh wearing aprons. Iroh desperately attempts to tie the string behind his back, but his effort is in vain.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7659,7659,Earth,2,City of Walls and Secrets,14,Zuko,[Annoyed.] Ridiculous.,Ridiculous.,Tim Hedrick,Lauren MacMullan,8.7 +7660,7660,Earth,2,City of Walls and Secrets,14,Iroh,"Uh, does this possibly come in a larger size? [Cut to a view behind Iroh with the apron strings not quite long enough to tie.]","Uh, does this possibly come in a larger size?",Tim Hedrick,Lauren MacMullan,8.7 +7661,7661,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to side-view of the threesome.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7662,7662,Earth,2,City of Walls and Secrets,14,Pao,I have extra string in the back. Have some tea while you wait!,I have extra string in the back. Have some tea while you wait!,Tim Hedrick,Lauren MacMullan,8.7 +7663,7663,Earth,2,City of Walls and Secrets,14,Scene Description,"Pao pours some tea in two cups, hands them to his new employees, and heads to the back of the shop. Cut to frontal view of Iroh and Zuko. Iroh takes a sip from his cup, but his face contorts in disgust.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7664,7664,Earth,2,City of Walls and Secrets,14,Iroh,[Quickly holds the cup at a distance.] Blech! [Looks at it in disgust.] This tea is nothing more than hot leaf juice!,Blech! This tea is nothing more than hot leaf juice!,Tim Hedrick,Lauren MacMullan,8.7 +7665,7665,Earth,2,City of Walls and Secrets,14,Zuko,"[Iroh closely examines his cup. In an annoyed tone.] Uncle, that's what all tea is.","Uncle, that's what all tea is.",Tim Hedrick,Lauren MacMullan,8.7 +7666,7666,Earth,2,City of Walls and Secrets,14,Iroh,[Angrily.] How could a member of my own family say something so horrible?! We'll have to make some major changes around here.,How could a member of my own family say something so horrible?! We'll have to make some major changes around here.,Tim Hedrick,Lauren MacMullan,8.7 +7667,7667,Earth,2,City of Walls and Secrets,14,Scene Description,"Iroh angrily takes the tea pot and heads over to the window Jet is spying through. Jet gasps and moves away just in time as Iroh dumps the tea out the window. Jet slowly stalks around the corner of the shop and leaves. The scene changes to the carriage in which Team Avatar is touring in, which is now in the Upper Ring.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7668,7668,Earth,2,City of Walls and Secrets,14,Joo Dee,The Upper Ring is home to our most important citizens. Your house is not too far from here!,The Upper Ring is home to our most important citizens. Your house is not too far from here!,Tim Hedrick,Lauren MacMullan,8.7 +7669,7669,Earth,2,City of Walls and Secrets,14,Scene Description,"Fade to the carriage passing by another wall with a tall gate. Behind it, the roof of an enormous building can be seen.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7670,7670,Earth,2,City of Walls and Secrets,14,Katara,[Close-up.] What's inside that wall?,What's inside that wall?,Tim Hedrick,Lauren MacMullan,8.7 +7671,7671,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to a closer view of the tall gate. Three men are standing in the gateway, wearing dark robes and wide brimmed hats turn their eyes toward the group, looking somewhat hateful at them. Cut to inside the carriage.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7672,7672,Earth,2,City of Walls and Secrets,14,Sokka,And who're the mean-looking guys in robes?,And who're the mean-looking guys in robes?,Tim Hedrick,Lauren MacMullan,8.7 +7673,7673,Earth,2,City of Walls and Secrets,14,Joo Dee,"Inside is the Royal Palace. Those men are agents of the Dai Li, the cultural authority of Ba Sing Se. They are the guardians of all our traditions!","Inside is the Royal Palace. Those men are agents of the Dai Li, the cultural authority of Ba Sing Se. They are the guardians of all our traditions!",Tim Hedrick,Lauren MacMullan,8.7 +7674,7674,Earth,2,City of Walls and Secrets,14,Aang,[Close-up view. Bored and annoyed.] Can we see the king now?,Can we see the king now?,Tim Hedrick,Lauren MacMullan,8.7 +7675,7675,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Close-up view.] Oh no, one doesn't just pop in on the Earth King!","Oh no, one doesn't just pop in on the Earth King!",Tim Hedrick,Lauren MacMullan,8.7 +7676,7676,Earth,2,City of Walls and Secrets,14,Scene Description,"Overhead view of inside of carriage. Aang nods his head, sadly. Cut to a shot of sky, with Momo flying, and descending and landing on the roof of a small house.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7677,7677,Earth,2,City of Walls and Secrets,14,Joo Dee,Here we are! Your new home.,Here we are! Your new home.,Tim Hedrick,Lauren MacMullan,8.7 +7678,7678,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to behind the gang looking down at Joo Dee. A messenger comes, gives Joo Dee a scroll, and leaves.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7679,7679,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Close-up view.] More good news! Your request for an audience with the Earth King is being processed, and should be put through in about month. [Cut to behind the gang looking down at Joo Dee.] Much more quickly than usual!","More good news! Your request for an audience with the Earth King is being processed, and should be put through in about month. Much more quickly than usual!",Tim Hedrick,Lauren MacMullan,8.7 +7680,7680,Earth,2,City of Walls and Secrets,14,Sokka,[Close-up view of Team Avatar. Surprised.] A month?,A month?,Tim Hedrick,Lauren MacMullan,8.7 +7681,7681,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Close-up view. Smiling widely.] Six to eight weeks, actually. [Closes her eyes and grins.]","Six to eight weeks, actually.",Tim Hedrick,Lauren MacMullan,8.7 +7682,7682,Earth,2,City of Walls and Secrets,14,Scene Description,The scene changes to a brief shot of the house before cutting to the inside.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7683,7683,Earth,2,City of Walls and Secrets,14,Joo Dee,[Close-up side-view.] Isn't it nice? I think you'll really enjoy it here.,Isn't it nice? I think you'll really enjoy it here.,Tim Hedrick,Lauren MacMullan,8.7 +7684,7684,Earth,2,City of Walls and Secrets,14,Sokka,[Cut to view of entire room from the back.] I think we would enjoy it more if we weren't staying for so long. Can't we see the Earth King any sooner?,I think we would enjoy it more if we weren't staying for so long. Can't we see the Earth King any sooner?,Tim Hedrick,Lauren MacMullan,8.7 +7685,7685,Earth,2,City of Walls and Secrets,14,Joo Dee,"[Close-up view over Sokka's shoulder. Smiling.] The Earth King is very busy running the finest city in the world! [Close-up on Sokka, as an annoyed expression covers his face.] But he will see you as soon as time permits.",The Earth King is very busy running the finest city in the world! But he will see you as soon as time permits.,Tim Hedrick,Lauren MacMullan,8.7 +7686,7686,Earth,2,City of Walls and Secrets,14,Aang,"[Cut to Momo and Aang. Aang turns to look out the window determined.] If we're going to be here for a month, we should spend our time looking for Appa. [At the sound of Appa's name, Momo wakes up.]","If we're going to be here for a month, we should spend our time looking for Appa.",Tim Hedrick,Lauren MacMullan,8.7 +7687,7687,Earth,2,City of Walls and Secrets,14,Joo Dee,[Side-view of Aang with Joo Dee behind. Bows.] I'd like to escort you anywhere you'd like to go.,I'd like to escort you anywhere you'd like to go.,Tim Hedrick,Lauren MacMullan,8.7 +7688,7688,Earth,2,City of Walls and Secrets,14,Toph,[Cut to Katara and Toph. Annoyed.] We don't need a babysitter.,We don't need a babysitter.,Tim Hedrick,Lauren MacMullan,8.7 +7689,7689,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to view of room from the back. Toph gets up and walks toward the door.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7690,7690,Earth,2,City of Walls and Secrets,14,Joo Dee,"Oh, I won't get in the way. [She takes a step, blocking Toph's path.] And to leave you alone would make me a bad host! [Close-up of Toph, from behind, with Joo Dee in front.] Where shall we start?","Oh, I won't get in the way. And to leave you alone would make me a bad host! Where shall we start?",Tim Hedrick,Lauren MacMullan,8.7 +7691,7691,Earth,2,City of Walls and Secrets,14,Scene Description,"Toph turns around in annoyance. The scene changes to a brief overhead shot of the city before changing to a bowl of food tied to a pole. Momo jumps on the bowl and starts to eat, but is scared by a cat owl, who screeches at him. Cut to a shot of the room, where Team Avatar, accompanied by Joo Dee, is in a pet store and speaking with the owner at the counter.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7692,7692,Earth,2,City of Walls and Secrets,14,Pet store owner,"[Close-up shot.] I'm sorry, but I haven't heard anything about a flying bison. I didn't even know there were any.","I'm sorry, but I haven't heard anything about a flying bison. I didn't even know there were any.",Tim Hedrick,Lauren MacMullan,8.7 +7693,7693,Earth,2,City of Walls and Secrets,14,Aang,"[Cut to shot of Aang and Sokka, Joo Dee lurking behind.] If someone wanted to sell a stolen animal without anyone knowing, where would they go?","If someone wanted to sell a stolen animal without anyone knowing, where would they go?",Tim Hedrick,Lauren MacMullan,8.7 +7694,7694,Earth,2,City of Walls and Secrets,14,Sokka,"[Slightly frustrated.] Where's the black market? Who runs it? [Pointing at him accusingly.] Come on, you know!","Where's the black market? Who runs it? Come on, you know!",Tim Hedrick,Lauren MacMullan,8.7 +7695,7695,Earth,2,City of Walls and Secrets,14,Pet store owner,"[Close-up shot. Nervous and perspiring.] Uh ... [Looks at Joo Dee, who is standing behind Sokka and Aang, shaking her head.] That would be illegal. You'll have to leave now; your lemur is harassing my sparrowkeets.",Uh ... That would be illegal. You'll have to leave now; your lemur is harassing my sparrowkeets.,Tim Hedrick,Lauren MacMullan,8.7 +7696,7696,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to a shot of Momo eating the birds' food while defending himself from the sparrowkeets. The scene fades to an overhead shot of Ba Sing Se University, and cuts to Team Avatar standing in front of a student. A few students are walking around.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7697,7697,Earth,2,City of Walls and Secrets,14,University student,"Hmm ... I've never seen any sandbenders or nomads around here. [Frontal shot.] You should ask Professor Zei, he teaches the class on desert cultures.","Hmm ... I've never seen any sandbenders or nomads around here. You should ask Professor Zei, he teaches the class on desert cultures.",Tim Hedrick,Lauren MacMullan,8.7 +7698,7698,Earth,2,City of Walls and Secrets,14,Sokka,[Annoyed.] Right. And which of your professors could we ask about the war with the Fire Nation?,Right. And which of your professors could we ask about the war with the Fire Nation?,Tim Hedrick,Lauren MacMullan,8.7 +7699,7699,Earth,2,City of Walls and Secrets,14,University student,[Nervously.] Uh ...,Uh ...,Tim Hedrick,Lauren MacMullan,8.7 +7700,7700,Earth,2,City of Walls and Secrets,14,Scene Description,"The student looks at Joo Dee, behind Sokka, who shakes her head at him. Sokka notices this from the corner of his eye, but she quickly stops before he can see it fully.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7701,7701,Earth,2,City of Walls and Secrets,14,University student,[Close-up shot. Still very nervous.] I don't know. I'm not a political science student ... I've got to get to class.,I don't know. I'm not a political science student ... I've got to get to class.,Tim Hedrick,Lauren MacMullan,8.7 +7702,7702,Earth,2,City of Walls and Secrets,14,Scene Description,"He stands up and goes away, but trips, dropping his scrolls. He quickly picks them back up, and hurries to go. Joo Dee waves at him, smiling. +Cut to a shot of Aang, Katara, Sokka, and Toph standing at the steps of their house. Joo Dee is still sitting in the carriage, and talking to them through the window.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7703,7703,Earth,2,City of Walls and Secrets,14,Joo Dee,"Well, I'm sorry no one has seen your bison. Why don't you go get some rest? [Smiling.] Someone will be over with dinner, later.","Well, I'm sorry no one has seen your bison. Why don't you go get some rest? Someone will be over with dinner, later.",Tim Hedrick,Lauren MacMullan,8.7 +7704,7704,Earth,2,City of Walls and Secrets,14,Scene Description,"As the carriage drives off, Sokka, followed by the rest of the gang, notices a man in the house across from them peeking through a window at them. Close-up shot of the man's door as his head recedes back. Cut back to the gang from behind.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7705,7705,Earth,2,City of Walls and Secrets,14,Sokka,"[He gestures to the rest of Team Avatar to follow him.] Hey, come with me.","Hey, come with me.",Tim Hedrick,Lauren MacMullan,8.7 +7706,7706,Earth,2,City of Walls and Secrets,14,Scene Description,"Everyone follows Sokka across the street. Cut to a shot of Sokka knocking on the front door. The same man appears and opens the door, smiling at them.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7707,7707,Earth,2,City of Walls and Secrets,14,Pong,You're the Avatar! [Side-view of gang.] I heard you were in town. [Overhead view.] I'm Pong.,You're the Avatar! I heard you were in town. I'm Pong.,Tim Hedrick,Lauren MacMullan,8.7 +7708,7708,Earth,2,City of Walls and Secrets,14,Aang,"[Side-view of gang. Smiles.] Nice to meet you, Pong.","Nice to meet you, Pong.",Tim Hedrick,Lauren MacMullan,8.7 +7709,7709,Earth,2,City of Walls and Secrets,14,Sokka,"So, Pong, what's goin' on with this city? Why is everyone here so scared here to talk about the war?","So, Pong, what's goin' on with this city? Why is everyone here so scared here to talk about the war?",Tim Hedrick,Lauren MacMullan,8.7 +7710,7710,Earth,2,City of Walls and Secrets,14,Pong,[Frontal view. Shifts his eyes to the sides.] War? Scared? What do you mean?,War? Scared? What do you mean?,Tim Hedrick,Lauren MacMullan,8.7 +7711,7711,Earth,2,City of Walls and Secrets,14,Toph,[Frontal view. Slightly annoyed.] I can feel you shaking.,I can feel you shaking.,Tim Hedrick,Lauren MacMullan,8.7 +7712,7712,Earth,2,City of Walls and Secrets,14,Pong,"[Frontal view.] Look, I'm just a minor government official. [Looks to the sides to confirm that no one is present except them.] I've waited three years to get this house. I don't want go get into trouble.","Look, I'm just a minor government official. I've waited three years to get this house. I don't want go get into trouble.",Tim Hedrick,Lauren MacMullan,8.7 +7713,7713,Earth,2,City of Walls and Secrets,14,Katara,[Tight side-view of the gang and Pong.] Get in trouble with who?!,Get in trouble with who?!,Tim Hedrick,Lauren MacMullan,8.7 +7714,7714,Earth,2,City of Walls and Secrets,14,Pong,"[Puts his finger on his mouth, and whispers.] Shh, listen, you can't mention the War here. [Overhead view.] And whatever you do, stay away from the Dai Li.","Shh, listen, you can't mention the War here. And whatever you do, stay away from the Dai Li.",Tim Hedrick,Lauren MacMullan,8.7 +7715,7715,Earth,2,City of Walls and Secrets,14,Scene Description,"As he closes the door, everyone looks at each other's faces in confusion. Fade to a shot of some apartments. Jet spies on Zuko and Iroh, from a balcony in the shadows, hiding behind a clothesline in the apartment across theirs.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7716,7716,Earth,2,City of Walls and Secrets,14,Iroh,Would you like a pot of tea?,Would you like a pot of tea?,Tim Hedrick,Lauren MacMullan,8.7 +7717,7717,Earth,2,City of Walls and Secrets,14,Zuko,[Close-up of Jet.] We've been working in a tea shop all day! [View from the outside in to the window where Zuko lays on a bed.] I'm sick of tea!,We've been working in a tea shop all day! I'm sick of tea!,Tim Hedrick,Lauren MacMullan,8.7 +7718,7718,Earth,2,City of Walls and Secrets,14,Iroh,"[Pan across to Iroh through another window.] ""Sick of tea?"" That's like being sick of breathing! [He rummages through the cupboard beneath the counter, where he is standing. Close-up view of kettle.] Have you seen the spark rocks to heat up the water?","""Sick of tea?"" That's like being sick of breathing! Have you seen the spark rocks to heat up the water?",Tim Hedrick,Lauren MacMullan,8.7 +7719,7719,Earth,2,City of Walls and Secrets,14,Jet,"[Side-view. Whispering to himself.] They're not there. [Opens his fist to show some emerald colored rocks. Close-up side-view.] You'll have to firebend, old man. [He sees Iroh going inside, and narrows his eyes.] Where're you going?","They're not there. You'll have to firebend, old man. Where're you going?",Tim Hedrick,Lauren MacMullan,8.7 +7720,7720,Earth,2,City of Walls and Secrets,14,Iroh,[View through window. Coming back to the counter.] I borrowed our neighbors'. Such kind people.,I borrowed our neighbors'. Such kind people.,Tim Hedrick,Lauren MacMullan,8.7 +7721,7721,Earth,2,City of Walls and Secrets,14,Scene Description,"Close-up of kettle. He strikes the rocks near a pile of twigs below the teapot, and creates a flame. Jet, frustrated, ducks behind the clothesline and leaves. +Fade the next morning, and the scene changes to a blue jay chirping, before the camera pans down to Team Avatar's house. Cut to Katara coming out from the door, yawning and stretching. She takes a roll of papers on a mail slot attached to the wall, and reads it briefly, gasping with excitement, before running back inside. The others are all lounging around the upper part of the living room, and she runs to inform them about the information in the roll.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7722,7722,Earth,2,City of Walls and Secrets,14,Katara,I got it! I know how we're going to see the Earth King!,I got it! I know how we're going to see the Earth King!,Tim Hedrick,Lauren MacMullan,8.7 +7723,7723,Earth,2,City of Walls and Secrets,14,Toph,"[Frontal view.] How are we supposed to do that? [Mimicking Joo Dee.] ""One doesn't just pop in on the Earth King!""","How are we supposed to do that? ""One doesn't just pop in on the Earth King!""",Tim Hedrick,Lauren MacMullan,8.7 +7724,7724,Earth,2,City of Walls and Secrets,14,Katara,[Side-view of her and Aang. Reading from the papers.] The king is having a party at the palace tonight for his pet bear.,The king is having a party at the palace tonight for his pet bear.,Tim Hedrick,Lauren MacMullan,8.7 +7725,7725,Earth,2,City of Walls and Secrets,14,Aang,"You mean, platypus bear?","You mean, platypus bear?",Tim Hedrick,Lauren MacMullan,8.7 +7726,7726,Earth,2,City of Walls and Secrets,14,Katara,"No, it just says 'bear'.","No, it just says 'bear'.",Tim Hedrick,Lauren MacMullan,8.7 +7727,7727,Earth,2,City of Walls and Secrets,14,Sokka,[Close-up view. He is lying upside down.] Certainly you mean his pet skunk bear.,Certainly you mean his pet skunk bear.,Tim Hedrick,Lauren MacMullan,8.7 +7728,7728,Earth,2,City of Walls and Secrets,14,Toph,[Frontal view.] Or his armadillo bear.,Or his armadillo bear.,Tim Hedrick,Lauren MacMullan,8.7 +7729,7729,Earth,2,City of Walls and Secrets,14,Aang,[Frontal view.] Gopher bear?,Gopher bear?,Tim Hedrick,Lauren MacMullan,8.7 +7730,7730,Earth,2,City of Walls and Secrets,14,Katara,[Side-view of room.] Just ... bear.,Just ... bear.,Tim Hedrick,Lauren MacMullan,8.7 +7731,7731,Earth,2,City of Walls and Secrets,14,Toph,This place ... is weird.,This place ... is weird.,Tim Hedrick,Lauren MacMullan,8.7 +7732,7732,Earth,2,City of Walls and Secrets,14,Katara,[Growing excited again.] The palace will be packed. We can sneak in with the crowd!,The palace will be packed. We can sneak in with the crowd!,Tim Hedrick,Lauren MacMullan,8.7 +7733,7733,Earth,2,City of Walls and Secrets,14,Toph,[Lies down.] Won't work.,Won't work.,Tim Hedrick,Lauren MacMullan,8.7 +7734,7734,Earth,2,City of Walls and Secrets,14,Katara,[Frontal view. Slightly confused.] Why not?,Why not?,Tim Hedrick,Lauren MacMullan,8.7 +7735,7735,Earth,2,City of Walls and Secrets,14,Toph,"[Over Katara's shoulder view.] Well, no offense to you simple country folk, but a real society crowd will spot you a mile away. You've got no manners! [Takes a pastry from a bowl and eats it.]","Well, no offense to you simple country folk, but a real society crowd will spot you a mile away. You've got no manners!",Tim Hedrick,Lauren MacMullan,8.7 +7736,7736,Earth,2,City of Walls and Secrets,14,Katara,"[Frontal view.] Excuse me? I've got no manners?! You're not exactly ""lady fancy fingers!""","Excuse me? I've got no manners?! You're not exactly ""lady fancy fingers!""",Tim Hedrick,Lauren MacMullan,8.7 +7737,7737,Earth,2,City of Walls and Secrets,14,Toph,"[Burps. Over Katara's shoulder view.] I learned proper society behavior and chose to leave it. [Throws the half eaten pastry to the side.] You never learned anything. And frankly, it's a little too late. [She picks her nose and flicks the snot off her finger.]","I learned proper society behavior and chose to leave it. You never learned anything. And frankly, it's a little too late.",Tim Hedrick,Lauren MacMullan,8.7 +7738,7738,Earth,2,City of Walls and Secrets,14,Sokka,"[Side-view of room. Excitedly.] Aha, but you learned it! You could teach us!","Aha, but you learned it! You could teach us!",Tim Hedrick,Lauren MacMullan,8.7 +7739,7739,Earth,2,City of Walls and Secrets,14,Aang,"Yeah, I'm mastering every element. How hard could manners be?","Yeah, I'm mastering every element. How hard could manners be?",Tim Hedrick,Lauren MacMullan,8.7 +7740,7740,Earth,2,City of Walls and Secrets,14,Scene Description,"Aang grabs a nearby curtain and puts it around himself like a noble's robe, and talks in a very sophisticated manner.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7741,7741,Earth,2,City of Walls and Secrets,14,Aang,"Good evening, Mr. Sokka Water Tribe, Ms. Katara Water Tribe, Lord Momo of the Momo Dynasty. Your Momo-ness. [Frontal view of Momo as he peeks at Aang from under the carpet and slightly bows.]","Good evening, Mr. Sokka Water Tribe, Ms. Katara Water Tribe, Lord Momo of the Momo Dynasty. Your Momo-ness.",Tim Hedrick,Lauren MacMullan,8.7 +7742,7742,Earth,2,City of Walls and Secrets,14,Sokka,"[Stands up also wearing a curtain like a robe. Mimicking a typical high class person.] Avatar Aang, how do you do? Go on.","Avatar Aang, how do you do? Go on.",Tim Hedrick,Lauren MacMullan,8.7 +7743,7743,Earth,2,City of Walls and Secrets,14,Scene Description,"Aang bows to Sokka, and Sokka, trying to outdo Aang's bow, bows back. Aang tries to further out do Sokka's bow with a deeper bow and Sokka returns this bow with an even deeper bow. Both of them try to bow at the same time, but they knock each other's foreheads' together and fall down. +Toph walks toward Katara with the legs of Aang and Sokka seen on the floor.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7744,7744,Earth,2,City of Walls and Secrets,14,Toph,"Katara might be able to pull it off, but you two would be lucky to pass as busboys!","Katara might be able to pull it off, but you two would be lucky to pass as busboys!",Tim Hedrick,Lauren MacMullan,8.7 +7745,7745,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to Sokka and Aang, who are still on the ground with curtains still on top of them.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7746,7746,Earth,2,City of Walls and Secrets,14,Sokka,But I feel so fancy! [Toph's snot falls on Sokka's forehead.],But I feel so fancy!,Tim Hedrick,Lauren MacMullan,8.7 +7747,7747,Earth,2,City of Walls and Secrets,14,Scene Description,"The scene changes to a shot of house, at dusk, and changes to inside the house, where Sokka and Aang are playing a game. Close-up of their hands.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7748,7748,Earth,2,City of Walls and Secrets,14,Aang,[Closing his hands into a fist.] Earth!,Earth!,Tim Hedrick,Lauren MacMullan,8.7 +7749,7749,Earth,2,City of Walls and Secrets,14,Sokka,[Wriggling his hands.] Fire!,Fire!,Tim Hedrick,Lauren MacMullan,8.7 +7750,7750,Earth,2,City of Walls and Secrets,14,Scene Description,"Sokka grumbles at losing the game, while Aang raises his hands, triumphantly, and flicks Sokka's forehead while grinning. Katara and Toph enter the room from a door, wearing makeup, exquisite Earth Kingdom dresses, and holding a fan each. Toph and Katara stare at the boys calmly before giving in to a fit of giggles. Aang blushes and stares dreamily at the sight of Katara.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7751,7751,Earth,2,City of Walls and Secrets,14,Aang,"[Stunned.] Wow, you look beautiful.","Wow, you look beautiful.",Tim Hedrick,Lauren MacMullan,8.7 +7752,7752,Earth,2,City of Walls and Secrets,14,Scene Description,"Sokka flicks Aang's forehead. Katara opens her mouth to reply to Aang's compliment, but is stopped by Toph placing her fans in front of her mouth.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7753,7753,Earth,2,City of Walls and Secrets,14,Toph,"Don't talk to the commoners, Katara. First rule of society.","Don't talk to the commoners, Katara. First rule of society.",Tim Hedrick,Lauren MacMullan,8.7 +7754,7754,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to a view of the room as Aang and Sokka watch the two girls leave.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7755,7755,Earth,2,City of Walls and Secrets,14,Katara,"[To Sokka and Aang.] We'll get in the party, and then find a way to let you in through the side gate.","We'll get in the party, and then find a way to let you in through the side gate.",Tim Hedrick,Lauren MacMullan,8.7 +7756,7756,Earth,2,City of Walls and Secrets,14,Scene Description,"The sound of a gong is heard as Momo walks past them, wearing one of the curtains as a cape. Aang looks at Sokka, who merely shrugs. +Cut to outside the tea shop where Iroh and Zuko are working. A man walks in through the door. Jet is shown to be spying on the shop from an alley. Cut to close-up of Jet's face with an expression of suspicion. Cut to a view behind him. Smellerbee and Longshot walk up behind Jet.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7757,7757,Earth,2,City of Walls and Secrets,14,Smellerbee,"Jet, we need to talk.","Jet, we need to talk.",Tim Hedrick,Lauren MacMullan,8.7 +7758,7758,Earth,2,City of Walls and Secrets,14,Jet,"What? Oh great, it's you guys. Where have you been? [Overhead view of alley.] I could use some help with surveillance here!","What? Oh great, it's you guys. Where have you been? I could use some help with surveillance here!",Tim Hedrick,Lauren MacMullan,8.7 +7759,7759,Earth,2,City of Walls and Secrets,14,Smellerbee,"We've been talking, [Cut to side-view of the threesome, tea shop in background.] and we think you're becoming obsessed with this. It's not healthy.","We've been talking, and we think you're becoming obsessed with this. It's not healthy.",Tim Hedrick,Lauren MacMullan,8.7 +7760,7760,Earth,2,City of Walls and Secrets,14,Jet,"[Close-up shot.] Oh, really? You both think this?","Oh, really? You both think this?",Tim Hedrick,Lauren MacMullan,8.7 +7761,7761,Earth,2,City of Walls and Secrets,14,Scene Description,Frontal view of Longshot and Smellerbee. Longshot places his arm on Smellerbee's shoulder in agreement with her statement.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7762,7762,Earth,2,City of Walls and Secrets,14,Smellerbee,We came here to make a fresh start. But you won't let this go. Even though there is no real proof!,We came here to make a fresh start. But you won't let this go. Even though there is no real proof!,Tim Hedrick,Lauren MacMullan,8.7 +7763,7763,Earth,2,City of Walls and Secrets,14,Jet,"Well, maybe if you'd help me!","Well, maybe if you'd help me!",Tim Hedrick,Lauren MacMullan,8.7 +7764,7764,Earth,2,City of Walls and Secrets,14,Smellerbee,"[Side-view of threesome.] Jet, you gotta stop this.","Jet, you gotta stop this.",Tim Hedrick,Lauren MacMullan,8.7 +7765,7765,Earth,2,City of Walls and Secrets,14,Jet,"Maybe you've forgotten why we need to start over. [View of Longshot and Smellerbee from behind Jet. Longshot and Smellerbee look down, guiltily.] Maybe you've forgotten about how the Fire Nation left us all homeless. How they wiped out all the people we loved. If you don't want to help me, I'll get the evidence on my own. [He goes toward the tea shop.]","Maybe you've forgotten why we need to start over. Maybe you've forgotten about how the Fire Nation left us all homeless. How they wiped out all the people we loved. If you don't want to help me, I'll get the evidence on my own.",Tim Hedrick,Lauren MacMullan,8.7 +7766,7766,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to outside of tea shop, before switching to its interior, where Iroh is pouring tea to a customer.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7767,7767,Earth,2,City of Walls and Secrets,14,Customer,This is the best tea in the city!,This is the best tea in the city!,Tim Hedrick,Lauren MacMullan,8.7 +7768,7768,Earth,2,City of Walls and Secrets,14,Iroh,"[Frontal view.] The secret ingredient is love. [He waves a hand through the steam coming from the teapot and walks toward the back of the shop where the owner is, while Zuko gives him a disgusted look.]",The secret ingredient is love.,Tim Hedrick,Lauren MacMullan,8.7 +7769,7769,Earth,2,City of Walls and Secrets,14,Pao,[Side-view. Turning to Iroh.] I think you're due for a raise.,I think you're due for a raise.,Tim Hedrick,Lauren MacMullan,8.7 +7770,7770,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to the door as it is suddenly slammed open by Jet; he enters.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7771,7771,Earth,2,City of Walls and Secrets,14,Jet,I'm tired of waiting! [Pointing an accusing finger at Iroh and Zuko.] These two men are firebenders!,I'm tired of waiting! These two men are firebenders!,Tim Hedrick,Lauren MacMullan,8.7 +7772,7772,Earth,2,City of Walls and Secrets,14,Scene Description,"Jet unsheathes his hook swords and prepares to fight. View from behind Jet. Iroh and Zuko quickly exchange a look, not knowing what to do. Cut to view of Iroh at the back of the tea shop with Jet at the entrance.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7773,7773,Earth,2,City of Walls and Secrets,14,Jet,"I know they're firebenders, I saw the old man heating his tea!","I know they're firebenders, I saw the old man heating his tea!",Tim Hedrick,Lauren MacMullan,8.7 +7774,7774,Earth,2,City of Walls and Secrets,14,Customer,[Frontal view. Bleakly.] He works in a tea shop.,He works in a tea shop.,Tim Hedrick,Lauren MacMullan,8.7 +7775,7775,Earth,2,City of Walls and Secrets,14,Jet,[Frontal view.] He's a firebender! I'm telling you!,He's a firebender! I'm telling you!,Tim Hedrick,Lauren MacMullan,8.7 +7776,7776,Earth,2,City of Walls and Secrets,14,Customer,"[Frontal view. Stands up, along with another man.] Drop your swords, boy. Nice and easy.","Drop your swords, boy. Nice and easy.",Tim Hedrick,Lauren MacMullan,8.7 +7777,7777,Earth,2,City of Walls and Secrets,14,Jet,"[Frontal view. To Zuko.] You'll have to defend yourself. Then everyone will know. Go ahead, show them what you can do.","You'll have to defend yourself. Then everyone will know. Go ahead, show them what you can do.",Tim Hedrick,Lauren MacMullan,8.7 +7778,7778,Earth,2,City of Walls and Secrets,14,Scene Description,"Jet slowly walks toward Zuko and Iroh with his swords. Just as one of the customers is about to draw his swords, Zuko steps in front and grabs them instead.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7779,7779,Earth,2,City of Walls and Secrets,14,Zuko,You want a show? I'll give you a show!,You want a show? I'll give you a show!,Tim Hedrick,Lauren MacMullan,8.7 +7780,7780,Earth,2,City of Walls and Secrets,14,Scene Description,"Zuko takes the customer's broadswords and enters a fighting stance. He pulls a table in front of him with his foot and kicks it at Jet, who slices the table with his swords and jumps over it. As he lands, he swings both hook swords at the Fire Nation prince, who deflects the attack and jumps backward on to another table, which is sliced in half by Jet, swinging one sword through the middle of the table. Zuko steps onto one half of the table and balances on one foot. Jet continues his attack by cutting the legs on the half of the table Zuko is standing on. Zuko quickly jumps up, and as he lands, he swings both broadswords at Jet's feet, and Jet somersaults away and lands in a crouching position before charging forward at Zuko again. Zuko swings both of his swords at Jet. Just as both weapons clash together, the scene freezes and cuts to the Ba Sing Se Palace. Several high class citizens are lined up and being admitted inside by a guard, who is checking the invitation of one group before letting them pass. Toph and Katara are next in line and approach him.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7781,7781,Earth,2,City of Walls and Secrets,14,Guard,Invitation please.,Invitation please.,Tim Hedrick,Lauren MacMullan,8.7 +7782,7782,Earth,2,City of Walls and Secrets,14,Toph,[Formally.] I think this will do.,I think this will do.,Tim Hedrick,Lauren MacMullan,8.7 +7783,7783,Earth,2,City of Walls and Secrets,14,Scene Description,"Toph shows the official seal of the Beifong family to the guard. The camera cuts to a closer, detailed shot of the seal, before cutting to the guard.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7784,7784,Earth,2,City of Walls and Secrets,14,Guard,"No entry without an invitation. Step out of line, please.","No entry without an invitation. Step out of line, please.",Tim Hedrick,Lauren MacMullan,8.7 +7785,7785,Earth,2,City of Walls and Secrets,14,Toph,"[Irritated.] Look, the Pangs and the Yum Soon Hans are waiting in there for us! I'm going to have to tell them who didn't let me in.","Look, the Pangs and the Yum Soon Hans are waiting in there for us! I'm going to have to tell them who didn't let me in.",Tim Hedrick,Lauren MacMullan,8.7 +7786,7786,Earth,2,City of Walls and Secrets,14,Guard,[Unyielding.] Step out of line please.,Step out of line please.,Tim Hedrick,Lauren MacMullan,8.7 +7787,7787,Earth,2,City of Walls and Secrets,14,Scene Description,"As the guard points his finger to the side, Katara and Toph move out disappointedly, when Katara notices a carriage, from which Long Feng comes out, and two Dai Li agents bow to him. Katara has an idea, and she, along with Toph, go to the leader of the Dai Li.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7788,7788,Earth,2,City of Walls and Secrets,14,Katara,"[Side-view.] Sir, I'm sorry to bother you, but my cousin lost our invitations. [Whispering.] She's blind. [Again, normally.] Do you think you could help us? Our family's inside and I'm sure they're very worried.","Sir, I'm sorry to bother you, but my cousin lost our invitations. She's blind. Do you think you could help us? Our family's inside and I'm sure they're very worried.",Tim Hedrick,Lauren MacMullan,8.7 +7789,7789,Earth,2,City of Walls and Secrets,14,Long Feng,"[Close-up view as he smiles and bows his head.] I am honored, please come with me.","I am honored, please come with me.",Tim Hedrick,Lauren MacMullan,8.7 +7790,7790,Earth,2,City of Walls and Secrets,14,Scene Description,"Long Feng walks toward the guard at the entrance with Toph and Katara following him. The guard bows to him and the three of them go into the palace. As they are walking in, Toph and Katara stick their tongues out at the guard while his back is turned. The scene changes to an overhead shot inside the palace. At one end of the table is Bosco the bear eating a steak, his drool dripping of his chin. Seated to either side of him are two guests.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7791,7791,Earth,2,City of Walls and Secrets,14,Older guest,He's taking all the good stuff!,He's taking all the good stuff!,Tim Hedrick,Lauren MacMullan,8.7 +7792,7792,Earth,2,City of Walls and Secrets,14,Younger guest,Quiet! You don't know what I had to do to get seats this near the bear!,Quiet! You don't know what I had to do to get seats this near the bear!,Tim Hedrick,Lauren MacMullan,8.7 +7793,7793,Earth,2,City of Walls and Secrets,14,Scene Description,"Bosco slightly hits the younger guest before pouncing onto the table and eating a large plate of meat in front of him. Cut to a close shot of the bear gorging. As he moves his head, Toph, Katara, and Long Feng walk into the hall.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7794,7794,Earth,2,City of Walls and Secrets,14,Long Feng,"It's beautiful, isn't it? [Close-up shot. Turning to the girls.] By the way, I'm Long Feng. I'm a cultural minister to the king.","It's beautiful, isn't it? By the way, I'm Long Feng. I'm a cultural minister to the king.",Tim Hedrick,Lauren MacMullan,8.7 +7795,7795,Earth,2,City of Walls and Secrets,14,Katara,"[View of her and Toph.] I'm Kwa Mai, and this is ... Dum. [Toph frowns and pulls a string hanging from Katara's headdress, causing her pain.] Ow!","I'm Kwa Mai, and this is ... Dum. Ow!",Tim Hedrick,Lauren MacMullan,8.7 +7796,7796,Earth,2,City of Walls and Secrets,14,Long Feng,[Close-up shot.] Now where is your family? I'd love to meet them.,Now where is your family? I'd love to meet them.,Tim Hedrick,Lauren MacMullan,8.7 +7797,7797,Earth,2,City of Walls and Secrets,14,Katara,"[Side-view. Feigning looking around.] Uh ... I don't see them right now, but I'm sure we'll find them soon. [Smiles.] Thanks for all your help.","Uh ... I don't see them right now, but I'm sure we'll find them soon. Thanks for all your help.",Tim Hedrick,Lauren MacMullan,8.7 +7798,7798,Earth,2,City of Walls and Secrets,14,Scene Description,"As they walk away, Long Feng appears in front of them.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7799,7799,Earth,2,City of Walls and Secrets,14,Long Feng,"Don't worry, as your escort it would be dishonorable to abandon you ladies without finding your family first. We'll keep looking. [He turns around and leads the two girls, while Katara glances at Toph, nervously.]","Don't worry, as your escort it would be dishonorable to abandon you ladies without finding your family first. We'll keep looking.",Tim Hedrick,Lauren MacMullan,8.7 +7800,7800,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to outside the palace. Aang peeks around the pedestal of a statue of a lion. Cut to a shot of Aang and Sokka peeking around both sides of the pedestal.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7801,7801,Earth,2,City of Walls and Secrets,14,Aang,[Worried and nervous.] Where are they?,Where are they?,Tim Hedrick,Lauren MacMullan,8.7 +7802,7802,Earth,2,City of Walls and Secrets,14,Scene Description,Aang and Sokka duck behind the pedestal.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7803,7803,Earth,2,City of Walls and Secrets,14,Sokka,"Look, I came up with a back-up plan. [He picks Momo up.] We dress Momo like a ghost, okay? [Moves Momo in a circle.] He flies by the guards, creating a distraction. Then, we blast a hole in the wall-","Look, I came up with a back-up plan. We dress Momo like a ghost, okay? He flies by the guards, creating a distraction. Then, we blast a hole in the wall-",Tim Hedrick,Lauren MacMullan,8.7 +7804,7804,Earth,2,City of Walls and Secrets,14,Scene Description,"Aang stands up and looks over the pedestal, and points to some busboys, as Sokka stands up. Cut to some busboys unloading supplies from a carriage and taking them inside.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7805,7805,Earth,2,City of Walls and Secrets,14,Aang,Or we could go in as these guys. Toph said we might pass as busboys!,Or we could go in as these guys. Toph said we might pass as busboys!,Tim Hedrick,Lauren MacMullan,8.7 +7806,7806,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to a shot of Aang and Sokka.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7807,7807,Earth,2,City of Walls and Secrets,14,Sokka,"Okay ... [Rolls his eyes.] But remember that Momo ghost plan. I think it's a winner. [Smiling, he and Aang sink behind the pedestal.]",Okay ... But remember that Momo ghost plan. I think it's a winner.,Tim Hedrick,Lauren MacMullan,8.7 +7808,7808,Earth,2,City of Walls and Secrets,14,Scene Description,"The scene changes to outside the tea shop, as Zuko bursts out through the door and tumbles onto the street. Jet runs after him and strikes at Zuko with both swords. Zuko defends the strike and both combatants lock swords.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7809,7809,Earth,2,City of Walls and Secrets,14,Jet,[Close-up shot with a sinister grin.] You must be getting tired of using those swords. [Close-up shot of Zuko with a look of annoyance.] Why don't you go ahead and firebend at me?,You must be getting tired of using those swords. Why don't you go ahead and firebend at me?,Tim Hedrick,Lauren MacMullan,8.7 +7810,7810,Earth,2,City of Walls and Secrets,14,Scene Description,View behind the fighters as they move off screen to reveal Zuko at the door to the tea shop.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7811,7811,Earth,2,City of Walls and Secrets,14,Iroh,"Please, son, you're confused! You don't know what you're doing!","Please, son, you're confused! You don't know what you're doing!",Tim Hedrick,Lauren MacMullan,8.7 +7812,7812,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut back to Jet and Zuko, fighting. Zuko swings at Jet, but Jet stops Zuko's broadsword with the ends of his hook swords, spins around and deflects it to the side. Zuko spins with his swords and tries to counterattack, but Jet hooks the ends of his swords together and begins to swing them at Zuko in large circular motions. Zuko retreats back a few steps to defend himself.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7813,7813,Earth,2,City of Walls and Secrets,14,Jet,Bet you wish he'd help you out with a little fire blast right now.,Bet you wish he'd help you out with a little fire blast right now.,Tim Hedrick,Lauren MacMullan,8.7 +7814,7814,Earth,2,City of Walls and Secrets,14,Scene Description,"As Jet swings at Zuko's feet, Zuko stabs one of his broadswords through the hilt, pinning it to the ground. Jet looks at it with annoyance before focusing back on Zuko.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7815,7815,Earth,2,City of Walls and Secrets,14,Zuko,You're the one who needs help.,You're the one who needs help.,Tim Hedrick,Lauren MacMullan,8.7 +7816,7816,Earth,2,City of Walls and Secrets,14,Scene Description,"Both the combatants lose a sword, and continue fighting with only one. He turns in a circle and tries to swipe at Zuko, but Zuko quickly advances and swings his sword at Jet. Jet pulls his attack just in time to bend backward and avoid Zuko's blade, cutting the straw sticking out of Jet's mouth in half. The scene replays, but the second time, zooms in on the straw. Jet regains balance, and jumps backward onto the edge of a well.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7817,7817,Earth,2,City of Walls and Secrets,14,Jet,You see that?! [Aerial view.] The Fire Nation is trying to silence me. [View behind Zuko looking at Jet.] It'll never happen.,You see that?! The Fire Nation is trying to silence me. It'll never happen.,Tim Hedrick,Lauren MacMullan,8.7 +7818,7818,Earth,2,City of Walls and Secrets,14,Scene Description,"Jet begins to attack again, hooking his sword to the top of the well and sending a flying kick toward Zuko. +The scene cuts back inside to the palace, where Aang and Sokka are seen, standing back to back, fully dressed as busboys, serving refreshments to the guests of the party. Aang begins pouring a drink while Sokka is serving food to people who pass by.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7819,7819,Earth,2,City of Walls and Secrets,14,Aang,[A little worried.] Where are Toph and Katara?,Where are Toph and Katara?,Tim Hedrick,Lauren MacMullan,8.7 +7820,7820,Earth,2,City of Walls and Secrets,14,Sokka,"Forget about them! Just keep an eye out for the king. [He grows slightly annoyed as Momo's tail, which has been sticking out of Aang's hat, begins to wag in his face.]",Forget about them! Just keep an eye out for the king.,Tim Hedrick,Lauren MacMullan,8.7 +7821,7821,Earth,2,City of Walls and Secrets,14,Aang,[Slightly nervous.] I don't know what he looks like.,I don't know what he looks like.,Tim Hedrick,Lauren MacMullan,8.7 +7822,7822,Earth,2,City of Walls and Secrets,14,Sokka,"You know, royal, flowing robe, fancy jewelry. [He grabs Momo's tail, still wagging in his face, and vigorously stuffs it back into Aang's hat.]","You know, royal, flowing robe, fancy jewelry.",Tim Hedrick,Lauren MacMullan,8.7 +7823,7823,Earth,2,City of Walls and Secrets,14,Scene Description,"The camera pans around the room to show the party guests, all fitting Sokka's description. They are all adorned in fancy, flowing robes and headpieces, chatting and eating food.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7824,7824,Earth,2,City of Walls and Secrets,14,Aang,That could be anyone!,That could be anyone!,Tim Hedrick,Lauren MacMullan,8.7 +7825,7825,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut back to Aang and Sokka as the camera pans right to show Toph, walking up to the duo.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7826,7826,Earth,2,City of Walls and Secrets,14,Toph,"[Trying to speak in a fancy voice.] Another crab puff, please. [Sokka leans in, eyes closed, with his tray to hand her a puff, unaware it's her.]","Another crab puff, please.",Tim Hedrick,Lauren MacMullan,8.7 +7827,7827,Earth,2,City of Walls and Secrets,14,Aang,[Surprised and happy.] You found us!,You found us!,Tim Hedrick,Lauren MacMullan,8.7 +7828,7828,Earth,2,City of Walls and Secrets,14,Toph,"[Back to her normal voice.] I'd know your little footsteps anywhere, Twinkle Toes.","I'd know your little footsteps anywhere, Twinkle Toes.",Tim Hedrick,Lauren MacMullan,8.7 +7829,7829,Earth,2,City of Walls and Secrets,14,Scene Description,"Katara catches up to the group, and Aang blushes when he sees her.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7830,7830,Earth,2,City of Walls and Secrets,14,Sokka,"[Opening his eyes, realizing who they are. Sarcastically.] Thanks for letting us in!",Thanks for letting us in!,Tim Hedrick,Lauren MacMullan,8.7 +7831,7831,Earth,2,City of Walls and Secrets,14,Katara,"[Close-up of her face.] Sorry, but the guy who escorted us in won't let us out of his sight!","Sorry, but the guy who escorted us in won't let us out of his sight!",Tim Hedrick,Lauren MacMullan,8.7 +7832,7832,Earth,2,City of Walls and Secrets,14,Scene Description,"The camera pans out to show all of the party guests, none of which seem to be following them.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7833,7833,Earth,2,City of Walls and Secrets,14,Sokka,"[Slightly confused, not seeing anyone following them.] What guy?",What guy?,Tim Hedrick,Lauren MacMullan,8.7 +7834,7834,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to an overhead shot of the group. As they look around for Long Feng, Joo Dee approaches the group, and is anxious to see them.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7835,7835,Earth,2,City of Walls and Secrets,14,Joo Dee,"What are you doing here? You have to leave immediately, or we will be in terrible trouble!","What are you doing here? You have to leave immediately, or we will be in terrible trouble!",Tim Hedrick,Lauren MacMullan,8.7 +7836,7836,Earth,2,City of Walls and Secrets,14,Scene Description,"Joo Dee tries to push Sokka, but he blocks her with his tray.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7837,7837,Earth,2,City of Walls and Secrets,14,Sokka,Not until we see the king.,Not until we see the king.,Tim Hedrick,Lauren MacMullan,8.7 +7838,7838,Earth,2,City of Walls and Secrets,14,Joo Dee,[Close-up of her face.] You don't understand. You must go.,You don't understand. You must go.,Tim Hedrick,Lauren MacMullan,8.7 +7839,7839,Earth,2,City of Walls and Secrets,14,Scene Description,"Joo Dee shoves Sokka on Aang, causing him to spill the water inside the pitcher he was carrying on a guest.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7840,7840,Earth,2,City of Walls and Secrets,14,Guest,Aarrrh! Oh!,Aarrrh! Oh!,Tim Hedrick,Lauren MacMullan,8.7 +7841,7841,Earth,2,City of Walls and Secrets,14,Aang,"Sorry. No, don't shout.","Sorry. No, don't shout.",Tim Hedrick,Lauren MacMullan,8.7 +7842,7842,Earth,2,City of Walls and Secrets,14,Scene Description,"Aang uses his hands and foot to airbend a gust at the guest. His hat is blown off, along with Momo. It dries the water on her, but also turns her hair, clothes, and makeup into a mess, leading Aang to smile sheepishly. The guest is briefly shocked, but smiles in amazement.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7843,7843,Earth,2,City of Walls and Secrets,14,Guest,[Amazed.] The Avatar! I didn't know the Avatar would be here.,The Avatar! I didn't know the Avatar would be here.,Tim Hedrick,Lauren MacMullan,8.7 +7844,7844,Earth,2,City of Walls and Secrets,14,Scene Description,"All the guests' attention is now focused on Aang. Joo Dee's large, happy smile quickly turns sour and is replaced by a frown and a look of dread. Aang looks around at the guests as Momo hides back under the hat on the floor and slinks away. Aang blushes and waves at the crowd, laughing nervously, as Sokka leans in toward Aang.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7845,7845,Earth,2,City of Walls and Secrets,14,Sokka,[Whispers.] You keep their attention while I look for the king.,You keep their attention while I look for the king.,Tim Hedrick,Lauren MacMullan,8.7 +7846,7846,Earth,2,City of Walls and Secrets,14,Aang,"[View of Aang from above.] Watch this, everybody!","Watch this, everybody!",Tim Hedrick,Lauren MacMullan,8.7 +7847,7847,Earth,2,City of Walls and Secrets,14,Scene Description,"Wide-view of the room. Aang jumps out of his busboy clothes and lands on the long dining table as Sokka walks off into the crowd. Aang swings his arms over the guests' drinks, waterbending the liquid out of the cups. He jumps onto a pitcher and balances on top of it, while continuing to waterbend. Aang brings the liquid above his head and creates a swirling multicolored ball. The crowd cheers and claps as he spins around. Bosco growls with delight at Aang's antics.' +Scene changes to outside the tea shop, where Zuko and Jet are fighting. Zuko growls as he swings his sword at Jet, who dodges the attack. He moves on to Zuko's side, and they end up back-to-back. Zuko and Jet attempt to strike the opponent behind them, but neither can get past the other's defense. Cut to a shot of two Dai Li agents walking toward the fight.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7848,7848,Earth,2,City of Walls and Secrets,14,Dai Li agent,Drop your weapons.,Drop your weapons.,Tim Hedrick,Lauren MacMullan,8.7 +7849,7849,Earth,2,City of Walls and Secrets,14,Scene Description,"Aerial view. Zuko and Jet step away and face each other. Zuko lowers his sword, as Jet points at Zuko and Iroh.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7850,7850,Earth,2,City of Walls and Secrets,14,Jet,"Arrest them, [Frontal view.] they're firebenders!","Arrest them, they're firebenders!",Tim Hedrick,Lauren MacMullan,8.7 +7851,7851,Earth,2,City of Walls and Secrets,14,Iroh,"[Panning view from behind Jet facing Iroh and Zuko.] This poor boy is confused, we're just simple refugees.","This poor boy is confused, we're just simple refugees.",Tim Hedrick,Lauren MacMullan,8.7 +7852,7852,Earth,2,City of Walls and Secrets,14,Pao,"[Pointing to Jet.] This young man wrecked my tea shop, and assaulted my employees!","This young man wrecked my tea shop, and assaulted my employees!",Tim Hedrick,Lauren MacMullan,8.7 +7853,7853,Earth,2,City of Walls and Secrets,14,Customer,"It's true sir, we saw the whole thing. This crazy kid attacked the finest tea maker in the city.","It's true sir, we saw the whole thing. This crazy kid attacked the finest tea maker in the city.",Tim Hedrick,Lauren MacMullan,8.7 +7854,7854,Earth,2,City of Walls and Secrets,14,Iroh,"[Frontal view. Blushing.] Oh, ho, ho. That's very sweet.","Oh, ho, ho. That's very sweet.",Tim Hedrick,Lauren MacMullan,8.7 +7855,7855,Earth,2,City of Walls and Secrets,14,Scene Description,"The two Dai Li agents walk up to Jet, who looks at them angrily.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7856,7856,Earth,2,City of Walls and Secrets,14,Dai Li agent,"Come with us, son.","Come with us, son.",Tim Hedrick,Lauren MacMullan,8.7 +7857,7857,Earth,2,City of Walls and Secrets,14,Scene Description,"Jet swings his hook sword at the agent, who catches the sword with his rock gloves. The guard disarms Jet, and both guards pull the boy's arms behind his back, binding his wrists together using their rock gloves' stones. Cut to Jet as the guards drag Jet away toward a wagon designed for holding captured criminals.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7858,7858,Earth,2,City of Walls and Secrets,14,Jet,You don't understand! They're Fire Nation! You have to believe me!,You don't understand! They're Fire Nation! You have to believe me!,Tim Hedrick,Lauren MacMullan,8.7 +7859,7859,Earth,2,City of Walls and Secrets,14,Scene Description,"The crowd begins to disperse. Cut to Jet in the wagon, on his knees, as he looks up as the doors are shut. The people left in the street watch the wagon go away. Longshot and Smellerbee look on, hidden within the crowd, and silently walk out of sight. +Cut to the palace, where two lines of guards walk into the hall. Eight of them are carrying a curtained palanquin, The Earth King is sitting on the platform. Cut to a shot of the crowd as they marvel in the Earth King's presence. Sokka sneaks through the crowd and attempts to get a better view of the king. Cut to the line of guards as they place the palanquin down and face the guests. Cut to Sokka as he looks over at Aang and points at the king.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7860,7860,Earth,2,City of Walls and Secrets,14,Sokka,Aang! The Earth King!,Aang! The Earth King!,Tim Hedrick,Lauren MacMullan,8.7 +7861,7861,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to a shot of Aang, who is entertaining Bosco with waterbending bubbles. Aang notices him and bends an air scooter, whisking down the table.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7862,7862,Earth,2,City of Walls and Secrets,14,Aang,"Greetings, Your Majesty.","Greetings, Your Majesty.",Tim Hedrick,Lauren MacMullan,8.7 +7863,7863,Earth,2,City of Walls and Secrets,14,Scene Description,"Side-view of three guests pulling their food and drinks off the table before Aang can run over them with his air scooter. Cut back to overhead view of the procession of guards and the Earth King. The platform is carried off while a line of guards walk up to the long dining table. Sokka exits the crowd and tries to follow the king, but two Dai Li agents grab him and begin leading him away, pulling his arms behind his back.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7864,7864,Earth,2,City of Walls and Secrets,14,Sokka,"Hey, let me go!","Hey, let me go!",Tim Hedrick,Lauren MacMullan,8.7 +7865,7865,Earth,2,City of Walls and Secrets,14,Scene Description,"Cut to a shot of a Dai Li agent stepping out from a pillar in the hall throws his hands out, causing his rock gloves to fly forward. Cut to Katara and Toph. While Katara is looking away, the gloves of the agent grab Toph and pull her backward, covering her mouth to keep her silent. A second later, another pair of gloves grabs Katara and pulls her back the same way as Toph. Cut to a Dai Li guard standing watch. The camera shifts down to show Momo still hiding under the busboy hat and trying to sneak past, his ear and tail sticking out from under. The agent reaches down and pulls the hat off, with Momo looking up, surprised. Shot cuts back to Aang who has reached the other end of the dining table on his air scooter, knocking over several dishes. He dismounts the scooter and holds his arms up in triumph. Long Feng walks up to Aang from behind the line of guards.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7866,7866,Earth,2,City of Walls and Secrets,14,Long Feng,"Avatar, it is a great honor to meet you. [He bows.] I am Long Feng, Grand Secretariat of Ba Sing Se and head of the Dai Li. I'd like to talk to you. Your friends will be waiting for us in the library.","Avatar, it is a great honor to meet you. I am Long Feng, Grand Secretariat of Ba Sing Se and head of the Dai Li. I'd like to talk to you. Your friends will be waiting for us in the library.",Tim Hedrick,Lauren MacMullan,8.7 +7867,7867,Earth,2,City of Walls and Secrets,14,Scene Description,"Long Feng gestures Aang to follow him, as he goes into the library. Aang hesitates for a moment before hopping off the table and following. Cut to a shot of the library's large double doors shutting. The camera zooms out to show Aang and his friends facing Long Feng, who is sitting in front of a hearth that illuminates the area with a green flame.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7868,7868,Earth,2,City of Walls and Secrets,14,Sokka,Why won't you let us talk to the king? We have information that could defeat the Fire Nation!,Why won't you let us talk to the king? We have information that could defeat the Fire Nation!,Tim Hedrick,Lauren MacMullan,8.7 +7869,7869,Earth,2,City of Walls and Secrets,14,Long Feng,The Earth King has no time to get involved with political squabbles and the day to day minutia of military activities.,The Earth King has no time to get involved with political squabbles and the day to day minutia of military activities.,Tim Hedrick,Lauren MacMullan,8.7 +7870,7870,Earth,2,City of Walls and Secrets,14,Aang,This could be the most important thing he's ever heard.,This could be the most important thing he's ever heard.,Tim Hedrick,Lauren MacMullan,8.7 +7871,7871,Earth,2,City of Walls and Secrets,14,Scene Description,The camera shifts behind Aang's party and pans slowly to the right. Long Feng is visibly seated in front of them as the camera passes by each member.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7872,7872,Earth,2,City of Walls and Secrets,14,Long Feng,"What's most important to his royal majesty is maintaining the cultural heritage of Ba Sing Se. All his duties relate to issuing decrees on such matters. It's my job to oversee the rest of the city's resources, including the military.","What's most important to his royal majesty is maintaining the cultural heritage of Ba Sing Se. All his duties relate to issuing decrees on such matters. It's my job to oversee the rest of the city's resources, including the military.",Tim Hedrick,Lauren MacMullan,8.7 +7873,7873,Earth,2,City of Walls and Secrets,14,Katara,[Frontal view.] So the king is just a figurehead.,So the king is just a figurehead.,Tim Hedrick,Lauren MacMullan,8.7 +7874,7874,Earth,2,City of Walls and Secrets,14,Toph,[Angry.] He's your puppet!,He's your puppet!,Tim Hedrick,Lauren MacMullan,8.7 +7875,7875,Earth,2,City of Walls and Secrets,14,Long Feng,"[Frontal view.] Oh, no, no. His Majesty is an icon, a god to his people. He can't sully his hands with the hourly change of an endless war.","Oh, no, no. His Majesty is an icon, a god to his people. He can't sully his hands with the hourly change of an endless war.",Tim Hedrick,Lauren MacMullan,8.7 +7876,7876,Earth,2,City of Walls and Secrets,14,Sokka,[Side-view of room.] But we found out about a solar eclipse that will leave the Fire Nation defenseless. You could lead an invasion ...,But we found out about a solar eclipse that will leave the Fire Nation defenseless. You could lead an invasion ...,Tim Hedrick,Lauren MacMullan,8.7 +7877,7877,Earth,2,City of Walls and Secrets,14,Long Feng,"[Stands up, annoyed. Shot changes briefly to a confused Sokka.] Enough! I don't want to hear your ridiculous plan. [Cut back to Long Feng.] It is the strict policy of Ba Sing Se that the War not be mentioned within the walls. [Scene changes as he talks to the two Dai Li agents dragging Jet into a dark room, making him sit on a stone chair.] Constant news of an escalating war will throw the citizens of Ba Sing Se into a state of panic.",Enough! I don't want to hear your ridiculous plan. It is the strict policy of Ba Sing Se that the War not be mentioned within the walls. Constant news of an escalating war will throw the citizens of Ba Sing Se into a state of panic.,Tim Hedrick,Lauren MacMullan,8.7 +7878,7878,Earth,2,City of Walls and Secrets,14,Jet,"You have to believe me, they're firebenders! They won't stop until they win the War.","You have to believe me, they're firebenders! They won't stop until they win the War.",Tim Hedrick,Lauren MacMullan,8.7 +7879,7879,Earth,2,City of Walls and Secrets,14,Scene Description,"Several square stones from their rock gloves circle Jet's head and clamp down on his skull, holding it in place.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7880,7880,Earth,2,City of Walls and Secrets,14,Dai Li agent,"[Frontal view.] Calm down, you're safe now.","Calm down, you're safe now.",Tim Hedrick,Lauren MacMullan,8.7 +7881,7881,Earth,2,City of Walls and Secrets,14,Scene Description,"The agent stands in front of Jet, surrounded by a metal track. From behind him appears a small orange lantern attached to the track. It travels around the track and passes the camera, causing a white flash that cuts back to Long Feng.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7882,7882,Earth,2,City of Walls and Secrets,14,Long Feng,"Our economy would be ruined, our peaceful way of life – our traditions – would disappear.","Our economy would be ruined, our peaceful way of life – our traditions – would disappear.",Tim Hedrick,Lauren MacMullan,8.7 +7883,7883,Earth,2,City of Walls and Secrets,14,Scene Description,There is another similar white flash and the scene shifts back to the lamp circling the Dai Li agent.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7884,7884,Earth,2,City of Walls and Secrets,14,Dai Li agent,There's no war in Ba Sing Se.,There's no war in Ba Sing Se.,Tim Hedrick,Lauren MacMullan,8.7 +7885,7885,Earth,2,City of Walls and Secrets,14,Jet,What're you talking about? [Camera changes to an aerial view zooming out.] Where do you think all the refugees come from? You can't hide it!,What're you talking about? Where do you think all the refugees come from? You can't hide it!,Tim Hedrick,Lauren MacMullan,8.7 +7886,7886,Earth,2,City of Walls and Secrets,14,Scene Description,Close-up view of Jet as he watches the lamp continues passing by his face. The screen flashes white and cuts back to Long Feng.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7887,7887,Earth,2,City of Walls and Secrets,14,Long Feng,"In silencing talk of conflict, Ba Sing Se remains a peaceful, orderly utopia: the last one on Earth.","In silencing talk of conflict, Ba Sing Se remains a peaceful, orderly utopia: the last one on Earth.",Tim Hedrick,Lauren MacMullan,8.7 +7888,7888,Earth,2,City of Walls and Secrets,14,Scene Description,"Aang and his friends stare at Long Feng with a mix of shock and horror at this revelation. The screen flashes white again. Cut to a close-up of Jet. A circle of stones covers his mouth, muffling his protests. The lamp passes by his eyes again. Cut to a shot of the Dai Li agent standing within the circular track as the lamp continues revolving.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7889,7889,Earth,2,City of Walls and Secrets,14,Dai Li agent,"There is no war within the walls. Here we are safe. Here, we are free.","There is no war within the walls. Here we are safe. Here, we are free.",Tim Hedrick,Lauren MacMullan,8.7 +7890,7890,Earth,2,City of Walls and Secrets,14,Scene Description,"Jet's eyes widen and his protests become silent, and the brainwashing begins to affect him. The screen flashes, and cut to Team Avatar.",NA,Tim Hedrick,Lauren MacMullan,8.7 +7891,7891,Earth,2,City of Walls and Secrets,14,Katara,You can't keep the truth from all these people. They have to know.,You can't keep the truth from all these people. They have to know.,Tim Hedrick,Lauren MacMullan,8.7 +7892,7892,Earth,2,City of Walls and Secrets,14,Aang,"[Stepping forward, pointing a finger at Long Feng.] I'll tell them! I'll make sure everyone knows!",I'll tell them! I'll make sure everyone knows!,Tim Hedrick,Lauren MacMullan,8.7 +7893,7893,Earth,2,City of Walls and Secrets,14,Long Feng,"[Side-view of room.] Until now, you've been treated as our honored guest. [Cut to side-view of Long Feng and Aang. Long Feng steps forward and bends down to look Aang in the eye. Aang stares back at Long Feng, angrily.] But from now on, you will be watched every moment by Dai Li agents. If you mention the War to anyone, you will be expelled from the city. [He turns around and walks over to the hearth with the green fire.] I understand you've been looking for your bison. [View of Long Feng turning slightly to look at Aang.] It would be quite a shame if you were not able to complete your quest. [Aang appears frightened, but his expression soon changes to that of anger. Cut to an overhead shot of the room. Long Feng sits down, as Joo Dee opens the doors and walks toward the group.] Now, Joo Dee will show you to your home.","Until now, you've been treated as our honored guest. But from now on, you will be watched every moment by Dai Li agents. If you mention the War to anyone, you will be expelled from the city. I understand you've been looking for your bison. It would be quite a shame if you were not able to complete your quest. Now, Joo Dee will show you to your home.",Tim Hedrick,Lauren MacMullan,8.7 +7894,7894,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to a shot from behind Joo Dee as she faces Aang's party. The group looks at her with surprise.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7895,7895,Earth,2,City of Walls and Secrets,14,Joo Dee replacement,"Come with me, please.","Come with me, please.",Tim Hedrick,Lauren MacMullan,8.7 +7896,7896,Earth,2,City of Walls and Secrets,14,Katara,[Surprised.] What happened to Joo Dee?,What happened to Joo Dee?,Tim Hedrick,Lauren MacMullan,8.7 +7897,7897,Earth,2,City of Walls and Secrets,14,Scene Description,Cut to a shot of Joo Dee's face.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7898,7898,Earth,2,City of Walls and Secrets,14,Joo Dee replacement,I'm Joo Dee. [Bows her head.] I'll be your host as long as you're in our wonderful city.,I'm Joo Dee. I'll be your host as long as you're in our wonderful city.,Tim Hedrick,Lauren MacMullan,8.7 +7899,7899,Earth,2,City of Walls and Secrets,14,Scene Description,Joo Dee smiles cheerfully at the group in the same artificial way. Fade to credits.,NA,Tim Hedrick,Lauren MacMullan,8.7 +7900,7900,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene fades to an exterior shot of Team Avatar's house. Shot cuts to a mirror, in front of which, Aang, whose head is covered with shaving cream, shaves his head with his shaving tool. Camera pans left to show Sokka in the mirror to show he has little facial hair, which he cuts off using the end of his machete. He clicks his tongue. Camera pans left again to show Katara in the mirror as she fixes together her hair loopies. Once they are placed, she smiles and the shot cuts back to show the whole room, with them all in front of the mirror. Scene changes to a dark room, where Toph lies on her bed, her blanket sloppily lying over her and her hair in a mess. Light cuts through the darkness as the door opens, and Katara enters the room and gasps at the sight.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7901,7901,Earth,2,The Tales of Ba Sing Se,15,Katara,Toph! Aren't you gonna get ready for the day?,Toph! Aren't you gonna get ready for the day?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7902,7902,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Toph gets up, causing her messy hair fly around. She spits on a nearby vessel which spins upon impact. Cut to Katara's face as she looks shocked, before cutting back to Toph as she gets to her feet and brushes a large amount of dust off her sleeping dress.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7903,7903,Earth,2,The Tales of Ba Sing Se,15,Toph,I'm ready.,I'm ready.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7904,7904,Earth,2,The Tales of Ba Sing Se,15,Katara,"You're not gonna wash up? You've got a little dirt on your ... everywhere, actually.","You're not gonna wash up? You've got a little dirt on your ... everywhere, actually.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7905,7905,Earth,2,The Tales of Ba Sing Se,15,Toph,"You call it dirt, I call it a healthy coating of earth!","You call it dirt, I call it a healthy coating of earth!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7906,7906,Earth,2,The Tales of Ba Sing Se,15,Katara,Hmm ... [Thinking.] You know what we need? A girl's day out!,Hmm ... You know what we need? A girl's day out!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7907,7907,Earth,2,The Tales of Ba Sing Se,15,Toph,Do I have to?!,Do I have to?!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7908,7908,Earth,2,The Tales of Ba Sing Se,15,Katara,It'll be fun!,It'll be fun!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7909,7909,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Cut to the outside of a large building, where Toph and Katara stand near the entrance. Two women in robes walk out and smile at each other.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7910,7910,Earth,2,The Tales of Ba Sing Se,15,Toph,The Fancy Lady Day Spa? [Sarcastically.] Sounds like my kinda place.,The Fancy Lady Day Spa? Sounds like my kinda place.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7911,7911,Earth,2,The Tales of Ba Sing Se,15,Katara,Are you ready for some serious pampering?,Are you ready for some serious pampering?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7912,7912,Earth,2,The Tales of Ba Sing Se,15,Toph,"Sure, Katara, whatever you say. As long as they don't touch my feet.","Sure, Katara, whatever you say. As long as they don't touch my feet.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7913,7913,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The two girls walk inside the building. Cut to inside of the building, where Katara sits smiling, having her feet scrubbed. Shot cuts again to a close-up of Toph's dirt-filled foot as the attendant tries to scrape the massive amounts of dirt off her feet. Shot cuts to a close-up of Toph's angry face. +Cut to a shot of a hallway inside the spa as suddenly an explosion erupts from one of the doorways, due to which, the frame becomes crumpled. An attendant flies out and hits the opposite wall, Toph having earthbent out of annoyance. Scene changes to Toph and Katara taking mud baths. An attendant with arms full of fresh towels walks over to Toph. Cut to Toph's face as she inhales air, and exhales, earthbending the mud on her face, creating a scary appearance, which scares the attendant, who runs away. Katara and Toph laugh, as the mud around Toph's mouth forms a large smile. +Scene changes to a pile of rocks in a sauna which Toph and Katara are occupying. Toph kicks the ground, bending another rock from another pile, making it fly onto the pile of hot rocks. Katara, using waterbending, splashes the hot rocks with some water creating steam. They both sigh in relief. Scene changes to Toph, who has a lot of make-up on her face walking through the streets of Ba Sing Se.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7914,7914,Earth,2,The Tales of Ba Sing Se,15,Toph,"Well, that wasn't so bad. I'm not usually into that stuff but I actually feel ... girly.","Well, that wasn't so bad. I'm not usually into that stuff but I actually feel ... girly.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7915,7915,Earth,2,The Tales of Ba Sing Se,15,Katara,I'm glad. It's about time we did something fun together.,I'm glad. It's about time we did something fun together.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7916,7916,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Cut to a shot of the two crossing a bridge over a creek. As they do, they pass three girls going the other direction. Shot cuts to Katara and Toph from behind the girls.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7917,7917,Earth,2,The Tales of Ba Sing Se,15,Girl with umbrella,"Wow, great make-up.","Wow, great make-up.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7918,7918,Earth,2,The Tales of Ba Sing Se,15,Toph,Thanks.,Thanks.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7919,7919,Earth,2,The Tales of Ba Sing Se,15,Girl with umbrella,For a clown!,For a clown!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7920,7920,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The three girls laugh, Toph's smile is replaced by a frown as she and Katara stop walking. Katara puts her arm over Toph's shoulder, attempting to console her.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7921,7921,Earth,2,The Tales of Ba Sing Se,15,Katara,"Don't listen to them, let's just keep walking.","Don't listen to them, let's just keep walking.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7922,7922,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Shot cuts to the face of Star, who is one of the three girls.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7923,7923,Earth,2,The Tales of Ba Sing Se,15,Star,I think she looks cute. Like that time we put a sweater on your pet poodle monkey.,I think she looks cute. Like that time we put a sweater on your pet poodle monkey.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7924,7924,Earth,2,The Tales of Ba Sing Se,15,Third girl,"Good one, Star.","Good one, Star.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7925,7925,Earth,2,The Tales of Ba Sing Se,15,Katara,"[Angrily.] Let's go, Toph.","Let's go, Toph.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7926,7926,Earth,2,The Tales of Ba Sing Se,15,Toph,"[Sarcastically.] No, no, that was a good one. Like your poodle monkey. [She laughs.] You know what else is a good one? [She earthbends the bridge, removing a circular part above which the three girls are standing, causing the girls to fall into the creek below. Cut to Katara's face from the hole.]","No, no, that was a good one. Like your poodle monkey. You know what else is a good one?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7927,7927,Earth,2,The Tales of Ba Sing Se,15,Katara,Now that was funny.,Now that was funny.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7928,7928,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Katara waterbends a wave that sweeps the girls as they scream. Cut to a shot of Toph walking away from the bridge as Katara jogs to catch up.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7929,7929,Earth,2,The Tales of Ba Sing Se,15,Katara,Those girls don't know what they're talking about.,Those girls don't know what they're talking about.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7930,7930,Earth,2,The Tales of Ba Sing Se,15,Toph,"It's okay. One of the good things about being blind, is I don't have to waste my time worrying about appearance. [Cut to a close-up of Toph's face.] I don't care what I look like. I'm not looking for anyone's approval. I know who I am. [She stops walking, and she cries a bit.]","It's okay. One of the good things about being blind, is I don't have to waste my time worrying about appearance. I don't care what I look like. I'm not looking for anyone's approval. I know who I am.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7931,7931,Earth,2,The Tales of Ba Sing Se,15,Katara,"That's what I really admire about you, Toph. You're so strong, and confident, and self-assured. [Toph sniffs.] And I know it doesn't matter, but ... [Keeps her palm on Toph's shoulder.] You're really pretty.","That's what I really admire about you, Toph. You're so strong, and confident, and self-assured. And I know it doesn't matter, but ... You're really pretty.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7932,7932,Earth,2,The Tales of Ba Sing Se,15,Toph,"[Turning to Katara, smiling.] I am?",I am?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7933,7933,Earth,2,The Tales of Ba Sing Se,15,Katara,"Yeah, you are.","Yeah, you are.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7934,7934,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Shot cuts to show both of them walking.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7935,7935,Earth,2,The Tales of Ba Sing Se,15,Toph,"I'd return the compliment, but I've no idea how you look like. [Katara laughs.] Thank you, Katara. [She punches Katara's shoulder, her way of showing affection.]","I'd return the compliment, but I've no idea how you look like. Thank you, Katara.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7936,7936,Earth,2,The Tales of Ba Sing Se,15,Katara,Ow!,Ow!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7937,7937,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to an overhead shot of a marketplace in Ba Sing Se. Cut to a shot of the street, as Iroh goes toward a shop to buy a basket, and examines a basket kept.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7938,7938,Earth,2,The Tales of Ba Sing Se,15,Shop owner,"If this is for a romantic picnic, may I suggest this lavender one? [He points to another basket.]","If this is for a romantic picnic, may I suggest this lavender one?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7939,7939,Earth,2,The Tales of Ba Sing Se,15,Iroh,"No, it's not a romantic picnic, but it is a special occasion. [He hands a coin to the owner, and takes the basket. As he goes, he sees a vase that contains a moon flower. He slides the vase into the shade, which causes the flowers to bloom instantly.] The moon flower likes partial shade. [He bows to the shop owner and walks away.]","No, it's not a romantic picnic, but it is a special occasion. The moon flower likes partial shade.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7940,7940,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Shot cuts to Iroh examining another shop which sells musical instruments. The sound of a crying child catches Iroh's attention and he turns around to see a boy sobbing the middle of the street and his mother trying to console him.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7941,7941,Earth,2,The Tales of Ba Sing Se,15,Boy's mother,Shhh. It's okay. Shhh.,Shhh. It's okay. Shhh.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7942,7942,Earth,2,The Tales of Ba Sing Se,15,Iroh,"[He takes an instrument from the shop, and starts singing, walking toward the boy. Iroh gets down on one knee near the boy as he begins to sing.] Leaves from the vine, falling so slow. Like fragile, tiny shells, drifting in the foam. Little soldier boy, come marching home. Brave soldier boy, comes marching home.","Leaves from the vine, falling so slow. Like fragile, tiny shells, drifting in the foam. Little soldier boy, come marching home. Brave soldier boy, comes marching home.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7943,7943,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The boy's frown instantly turns to a smile as he reaches up and pulls Iroh's long beard, causing Iroh to groan while the boy laughs. Iroh smiles and pats his beard. The boy's mother takes her son by the hand and leads him away as Iroh stands and looks at them with a smiling look on his face. +Scene changes to a courtyard as Iroh enters. Four boys are in the courtyard, playing earthbending ball. One of the boys hits the ground with his foot and the ball shoots up and comes back down. He kicks it and follows up with some earthbending. A patch of earth rises to create a path for the ball as it rolls along. Another player earthbends to stop the ball before it reaches the goal. This causes the ball to launch up and into the direction Iroh is standing. He dodges the ball just in time, but the ball breaks through the window directly behind where he was. A crash and a loud voice can be heard from inside.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7944,7944,Earth,2,The Tales of Ba Sing Se,15,Huge round angry face,Hey!,Hey!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7945,7945,Earth,2,The Tales of Ba Sing Se,15,Iroh,"It is usually best to admit mistakes when they occur, and seek to restore honor.","It is usually best to admit mistakes when they occur, and seek to restore honor.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7946,7946,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Loud noises are heard and all five of them look up, startled. Shot cuts to show the window as a very large body and head are visible through the hole.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7947,7947,Earth,2,The Tales of Ba Sing Se,15,Huge round angry face,"[Angrily.] When I'm through with you kids, the window won't be the only thing that's broken.","When I'm through with you kids, the window won't be the only thing that's broken.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7948,7948,Earth,2,The Tales of Ba Sing Se,15,Iroh,But not this time. Run!,But not this time. Run!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7949,7949,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Iroh and the kids run away in all directions. Shot cuts to Iroh, running down the marketplace street quickly. He hides in an alley, places the basket down, and the shot changes to a shot of him looking around the corner to see if he is being chased. He is surprised to hear someone talking to him. Shot cuts to behind Iroh, where a man holding a knife is trying to mug him.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7950,7950,Earth,2,The Tales of Ba Sing Se,15,Tycho,"You, give me all your money!","You, give me all your money!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7951,7951,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Camera pans down to show Tycho's poor stance.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7952,7952,Earth,2,The Tales of Ba Sing Se,15,Iroh,[Confused.] What are you doing?,What are you doing?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7953,7953,Earth,2,The Tales of Ba Sing Se,15,Tycho,I'm mugging you!,I'm mugging you!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7954,7954,Earth,2,The Tales of Ba Sing Se,15,Iroh,[Confused.] With that stance?,With that stance?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7955,7955,Earth,2,The Tales of Ba Sing Se,15,Tycho,"[Looks at his stance in a confused manner.] Huh? What're you talking about? Just give me your money, old man!","Huh? What're you talking about? Just give me your money, old man!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7956,7956,Earth,2,The Tales of Ba Sing Se,15,Iroh,"[He shakes his head.] With a poor stance, you are unbalanced, and you can be easily knocked over. [He quickly grabs the arm of the mugger and disarms him, while pushing his attacker and knocking him to the ground. He smiles, while twirling the dagger in his hand, and helps Tycho to his feet.]","With a poor stance, you are unbalanced, and you can be easily knocked over.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7957,7957,Earth,2,The Tales of Ba Sing Se,15,Iroh,"[Hands the knife back to Tycho.] With a solid stance, you are a much more serious threat. [Iroh demonstrates a proper stance, which Tycho attempts to imitate, but is still not assuming the correct form. Iroh walks over to him and holds his head still while he adjusts the man's stance with a light kick.] Much better! But to tell you the truth, you do not look like the criminal type.","With a solid stance, you are a much more serious threat. Much better! But to tell you the truth, you do not look like the criminal type.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7958,7958,Earth,2,The Tales of Ba Sing Se,15,Tycho,I know. I'm ... [He sighs.] I'm just confused.,I know. I'm ... I'm just confused.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7959,7959,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Shot cuts to a close-up of Tycho's hands holding a cup, while Iroh pours some hot tea for the man.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7960,7960,Earth,2,The Tales of Ba Sing Se,15,Tycho,So you really think I could be a good masseur?,So you really think I could be a good masseur?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7961,7961,Earth,2,The Tales of Ba Sing Se,15,Iroh,Of course!,Of course!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7962,7962,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Shot cuts to show the two still in the alley, sitting on the ground sharing some tea and talking.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7963,7963,Earth,2,The Tales of Ba Sing Se,15,Tycho,This is so great. No one has ever believed in me.,This is so great. No one has ever believed in me.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7964,7964,Earth,2,The Tales of Ba Sing Se,15,Iroh,"[Smiling.] While it is always best to believe in oneself, a little help from others can be a great blessing.","While it is always best to believe in oneself, a little help from others can be a great blessing.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7965,7965,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to a shot of a tree on a hill within the city as the sun is setting. Leaves fall from the tree as Iroh approaches it. Iroh places the basket he had purchased earlier down and removes his hat. He rests on his knees and piles some rocks at the tree's base. He removes several things from the basket and places them at the bottom of the tree, near to the pile of stones. He pulls out a sheet of paper and looks at it for a few seconds, closing his eyes, before placing it down as well. Finally he pulls two incense sticks, and lights them with his fingers by firebending. Shot cuts to show that Iroh has made a small memorial for his deceased son, Lu Ten.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7966,7966,Earth,2,The Tales of Ba Sing Se,15,Iroh,"Happy birthday, my son. [Cut to his face, as he starts to cry.] If only I could have helped you. [He sings, but his voice cracks due to him crying.] Leaves from the vine, falling so slow. Like fragile, tiny shells, drifting in the foam. Little soldier boy, come marching home. Brave soldier boy, comes marching home.","Happy birthday, my son. If only I could have helped you. Leaves from the vine, falling so slow. Like fragile, tiny shells, drifting in the foam. Little soldier boy, come marching home. Brave soldier boy, comes marching home.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7967,7967,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The camera zooms out, and fades to a message saying, ""In honor of Mako,"" referring to Mako Iwamatsu.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7968,7968,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to an overhead shot of Ba Sing Se, as Aang flies on his glider, searching for Appa. Shot cuts to a street, as Aang lands on it, twirling his glider back into a staff. Shot cuts to Aang walking down the street, which is lined on both sides with various cages and pens built into the rock. Aang passes each pen and looks in to see different creatures looking sad and depressed, his expression matching theirs. He stops for a few seconds and looks up into a cage with a group of dragon flies. Shot cuts to him looking down into another pen which is a pit to see an elephant mandrill lying on the ground, very bored. Shot cuts to an armadillo lion gnawing at the bars that keep him in. It looks up as Aang approaches.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7969,7969,Earth,2,The Tales of Ba Sing Se,15,Aang,"[Kneeling on one knee and holding his hand out.] Hey there, fellow. You look hungry.","Hey there, fellow. You look hungry.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7970,7970,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The armadillo lion roars, causing Aang to jump back in surprise. The creature curls up into a ball and rolls in its pen as the zookeeper, Kenji, walks behind Aang, sweeping.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7971,7971,Earth,2,The Tales of Ba Sing Se,15,Kenji,They are hungry. [Shot cuts to Kenji and Aang walking around in the zoo.] The Dai Li won't give me any money because the kids stopped coming. And the kids won't come because my zoo's nasty and broke.,They are hungry. The Dai Li won't give me any money because the kids stopped coming. And the kids won't come because my zoo's nasty and broke.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7972,7972,Earth,2,The Tales of Ba Sing Se,15,Aang,[Looking at a cage.] What kinda animal is that? [They both stop walking.],What kinda animal is that?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7973,7973,Earth,2,The Tales of Ba Sing Se,15,Kenji,"Oh, that's a rabaroo. I wish I could get her a big open prairie like she likes. [Shot cuts to the depressed rabaroo.] I'd let her hop away to happiness.","Oh, that's a rabaroo. I wish I could get her a big open prairie like she likes. I'd let her hop away to happiness.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7974,7974,Earth,2,The Tales of Ba Sing Se,15,Aang,[Smiling.] Let's do it!,Let's do it!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7975,7975,Earth,2,The Tales of Ba Sing Se,15,Kenji,[Surprised.] Say again?,Say again?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7976,7976,Earth,2,The Tales of Ba Sing Se,15,Aang,There's a big open space right outside the walls of the city.,There's a big open space right outside the walls of the city.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7977,7977,Earth,2,The Tales of Ba Sing Se,15,Kenji,But how're you gonna transport all these wild critters?,But how're you gonna transport all these wild critters?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7978,7978,Earth,2,The Tales of Ba Sing Se,15,Aang,"Don't worry, I'm great with animals.","Don't worry, I'm great with animals.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7979,7979,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to a vessel being broken with a loud crash by some hog monkeys, who are wreaking havoc in one of the shops in the city, throwing pottery and breaking things. The owner comes in swinging a broom in an attempt to save his shop and manages to send one of them flying. Shot cuts to the creatures fleeing the shop and into the street just as an elephant mandrill comes stampeding down it while people run for their lives. Another group of people come running out of an alley covering their heads to escape the dragon flies that fly over them. A platypus bear enters the street and stands on its hind legs, swinging and growling as more people scream and run away. It pursues a group down an alley, as an armadillo lion comes rolling in and runs off in another direction. Cut to a shot of the rabaroo devouring cabbages from a pile. The shot cuts back to show that the creature is eating from the cabbage merchant's cart who is desperately trying to save his cabbages.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7980,7980,Earth,2,The Tales of Ba Sing Se,15,Cabbage merchant,"My cabba- [He is interrupted by a rabaroo looking at him with a cabbage in her mouth. She chews it, and returns to the cart to eat more. The merchant throws down the cabbages he holds in his hand, and goes back.] Oh, forget it.","My cabba- Oh, forget it.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7981,7981,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to some dragonflies harassing people on a street, as Aang runs from the rooftops of the houses, descends onto the street, and helps the people using airbending.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7982,7982,Earth,2,The Tales of Ba Sing Se,15,Aang,[He scratches his head.] This was so much easier in my head.,This was so much easier in my head.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7983,7983,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Aang suddenly gets an idea, and snaps his fingers, as he pulls out the bison whistle from his shirt. He throws the whistle into the air, and using airbending, inhales a great amount of air. He catches the whistle, and blows it. Shot cuts to an overhead shot of Ba Sing Se to show a soundwave being emitted from where Aang is and through the city as the whistle's sound spreads. Shot cuts to the hog monkeys wreaking havoc, who hear the sound and run off. The dragonflies, who are harassing people, hear the sound and go to its source. The rabaroo, still devouring cabbages as the cabbage merchant sobs in the background, leaves the cart as she hears the whistle as well. +Shot cuts to Aang riding his air scooter down a street blowing the bison whistle. Cut to an alley, as Aang flies by on the main street, with a group of creatures following him, and a very slow turtle seal bringing up the rear. Shot cuts to Kenji talking with two guards at the wall.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7984,7984,Earth,2,The Tales of Ba Sing Se,15,Kenji,But you have to open this gate.,But you have to open this gate.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7985,7985,Earth,2,The Tales of Ba Sing Se,15,Guard,Or what?,Or what?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7986,7986,Earth,2,The Tales of Ba Sing Se,15,Kenji,[He points to a large stampede of creatures following Aang.] Or that!,Or that!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7987,7987,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Cut to a brief shot of the creatures following Aang.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7988,7988,Earth,2,The Tales of Ba Sing Se,15,Guard #2,[Yelling.] Open the gate!,Open the gate!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7989,7989,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Both the guards run in opposite directions, as the gate is opened. Shot cuts to show the gates opening from the street, as Aang flies down with the animals, before cutting to an overhead shot of the same. Aang stops blowing the whistle, jumps off his air scooter, on onto his glider, as the animals go out through the gate. The creatures go through the opening as he soars up and over the wall. On the other side, the creatures are shown coming out of the opening and starting to spread out in all directions as they run. Shot cuts to show Aang soaring down behind the running animals and hopping onto his air scooter again. As he rides, he punches the ground causing a large wall of earth to rise as he rides in a large circle creating a pen to block the running animals. Once he finishes, he jumps off his scooter and lands in the center of the pen he made. He earthbends again, causing a square portion of the ground to descend and creates a small pit. He turns around and brings his arms up high to cause some large pillars of earth to rise, making plateaus, turns, and punches outward which makes more walls to separate the animals. +Cut to a shot of the guards and Kenji going out, amazed. A group of kids, laughing and smiling, push past them and run toward the zoo. Shot cuts to show the entire the new zoo as people move around the newly formed pens and look the animals. Shot cuts to show the rabaroo drinking from a pond before looking up at one of the guests as three young rabaroos poke up from its pouch. Cut to Aang speaking with the zookeeper beside one of the pens.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7990,7990,Earth,2,The Tales of Ba Sing Se,15,Aang,"Well, Mr. Zookeeper, how do you like your new facilities?","Well, Mr. Zookeeper, how do you like your new facilities?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7991,7991,Earth,2,The Tales of Ba Sing Se,15,Kenji,"Excellent job, Avatar. You should think about working with animals for a living.","Excellent job, Avatar. You should think about working with animals for a living.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7992,7992,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Aang looks behind him as a guest's voice catches his attention.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7993,7993,Earth,2,The Tales of Ba Sing Se,15,Young guest,"[Pointing into one of the pens.] Mommy, Miss Snowflake got out of the house again.","Mommy, Miss Snowflake got out of the house again.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7994,7994,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Cut to a shot of a hissing cat in one of the pens.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7995,7995,Earth,2,The Tales of Ba Sing Se,15,Adult guest,Fluffykins? [Cut to a guest's face.] What are you doing down there?,Fluffykins? What are you doing down there?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7996,7996,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Shot cuts to show Fluffykins hissing at the elephant mandrill it is sharing the pen with. Cut back to Kenji and Aang.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7997,7997,Earth,2,The Tales of Ba Sing Se,15,Kenji,"On second thought, you should probably stick to saving people.","On second thought, you should probably stick to saving people.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7998,7998,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Aang laughs at Kenji's statement.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +7999,7999,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to Sokka walking down a candle-lit street at night. Bored, he pulls his boomerang from its sheath, throws it into the sky, and catches it as it comes back. Shot cuts to him walking past a building and into the alley beside it. Sokka passes through some men struggling with their ostrich horses, and by the windows of the building, as he hears voices from inside. Intrigued, he turns and sticks his head inside the window.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8000,8000,Earth,2,The Tales of Ba Sing Se,15,Sokka,What's this?,What's this?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8001,8001,Earth,2,The Tales of Ba Sing Se,15,Scene Description,The shot cuts to show that the room is the Five-Seven-Five Society's classroom. There is a lady on the stage reciting her haiku to the rest of the ladies.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8002,8002,Earth,2,The Tales of Ba Sing Se,15,Lady on stage,"Through all the long night, winter moon glows with bright love, sleet her silver tears.","Through all the long night, winter moon glows with bright love, sleet her silver tears.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8003,8003,Earth,2,The Tales of Ba Sing Se,15,Sokka,"[Looking pleased.] Ahh, poetry.","Ahh, poetry.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8004,8004,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Shot cuts to the alley, as the ostrich horse, who is still struggling with his handler, kicks backward and hits Sokka in his back, sending him through the window, and inside the room. The ladies look at him and shriek, startled.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8005,8005,Earth,2,The Tales of Ba Sing Se,15,Sokka,[Collecting himself and removing the window frame.] I am so sorry. Something struck me in the rear. I just ... wound up ... here.,I am so sorry. Something struck me in the rear. I just ... wound up ... here.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8006,8006,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The ladies laugh, and clap at Sokka's unintended haiku. Sokka first looks surprised, but grins widely. Their teacher, Macmu-Ling, gets up.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8007,8007,Earth,2,The Tales of Ba Sing Se,15,Macmu-Ling,"Five, seven, then five, syllables mark a haiku. [She bows her head.] Remarkable oaf.","Five, seven, then five, syllables mark a haiku. Remarkable oaf.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8008,8008,Earth,2,The Tales of Ba Sing Se,15,Sokka,"[Thinking for a moment.] They call me Sokka, that is in the Water Tribe. [Counting five syllables on his fingers.] I am not an oaf. [The ladies laugh at his haiku.]","They call me Sokka, that is in the Water Tribe. I am not an oaf.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8009,8009,Earth,2,The Tales of Ba Sing Se,15,Macmu-Ling,"Tittering monkey, in the spring he climbs treetops, and thinks himself tall. [She narrows her eyes.]","Tittering monkey, in the spring he climbs treetops, and thinks himself tall.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8010,8010,Earth,2,The Tales of Ba Sing Se,15,Ladies,Oooooh!,Oooooh!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8011,8011,Earth,2,The Tales of Ba Sing Se,15,Sokka,"You think you're so smart, with your fancy little words, this is not so hard.","You think you're so smart, with your fancy little words, this is not so hard.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8012,8012,Earth,2,The Tales of Ba Sing Se,15,Ladies,Oooooh!,Oooooh!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8013,8013,Earth,2,The Tales of Ba Sing Se,15,Macmu-Ling,"[She walks up to the stage.] Whole seasons are spent, mastering the form, the style, none calls it easy.","Whole seasons are spent, mastering the form, the style, none calls it easy.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8014,8014,Earth,2,The Tales of Ba Sing Se,15,Ladies,Oooooh!,Oooooh!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8015,8015,Earth,2,The Tales of Ba Sing Se,15,Sokka,"I calls it easy. Like I paddle my canoe, I'll paddle yours too! [Turns around and paddles his behind, as the ladies laugh.]","I calls it easy. Like I paddle my canoe, I'll paddle yours too!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8016,8016,Earth,2,The Tales of Ba Sing Se,15,Macmu-Ling,"There's nuts and there's fruits. [She takes a plum from her sleeve, drops it to the ground, and squashes it.] In fall the clinging plum drops, always to be squashed.","There's nuts and there's fruits. In fall the clinging plum drops, always to be squashed.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8017,8017,Earth,2,The Tales of Ba Sing Se,15,Sokka,"[Making arm movements.] Squish, squash, sling that slang. I'm always right back at ya, like my ... [He draws his boomerang.] boomerang! [The class laughs.]","Squish, squash, sling that slang. I'm always right back at ya, like my ... boomerang!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8018,8018,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"An annoyed Macmu-Ling walks off the stage and back to her seat as Sokka turns to the class again and raises his arms up to silence the laughter, as he unsheathes his boomerang.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8019,8019,Earth,2,The Tales of Ba Sing Se,15,Sokka,"[Making more arm movements.] That's right, I'm Sokka, it's pronounced with an ""okka"", young ladies, I rocked ya!","That's right, I'm Sokka, it's pronounced with an ""okka"", young ladies, I rocked ya!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8020,8020,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"This time, however, his ""haiku"" is not cheered at, instead being met with silence. Sokka stares at the class, as the annoyed and angry class does the vice versa. Cut to the ladies' angry faces. Cut back to Sokka, as he counts the number of syllables in his ""haiku"", and realizes that his last line contained six syllables instead of five by counting on his fingers. A large security guard approaches and catches him by the collar.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8021,8021,Earth,2,The Tales of Ba Sing Se,15,Guard,"[Bringing Sokka to his face.] Uh, that's one too many syllables there, bub.","Uh, that's one too many syllables there, bub.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8022,8022,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Picking up Sokka completely, he throws him head first across the room and out the door. Outside, he hits the ground with a thud and sits up holding his head.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8023,8023,Earth,2,The Tales of Ba Sing Se,15,Sokka,Poetry ...,Poetry ...,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8024,8024,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to an exterior shot of the Pao Family Tea House. Cut to a shot of the inside where Zuko walks down the shop with a tray of cups, and looks behind at a girl. He walks up behind his uncle who is on a ladder, stacking things on a shelf behind the counter.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8025,8025,Earth,2,The Tales of Ba Sing Se,15,Zuko,"Uncle, we have a problem. [Iroh descends from the ladder.] One of the customers is on to us. Don't look now but there is a girl over there at the corner table. [Cut to a shot of a girl sitting in the corner of the shop, drinking tea.] She knows we're Fire Nation. [Iroh looks at the girl, but is quickly pulled back by Zuko.] Didn't I say don't look?!","Uncle, we have a problem. One of the customers is on to us. Don't look now but there is a girl over there at the corner table. She knows we're Fire Nation. Didn't I say don't look?!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8026,8026,Earth,2,The Tales of Ba Sing Se,15,Iroh,"[Cut to a shot of the girl.] You're right, Zuko. I've seen that girl in here quite a lot. Seems to me she has quite a little crush on you.","You're right, Zuko. I've seen that girl in here quite a lot. Seems to me she has quite a little crush on you.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8027,8027,Earth,2,The Tales of Ba Sing Se,15,Zuko,[Bewildered.] What?,What?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8028,8028,Earth,2,The Tales of Ba Sing Se,15,Jin,"[She hands Zuko some coins, which he puts on a table.] Thank you for the tea. What's your name? [Iroh slightly smiles at the question.]",Thank you for the tea. What's your name?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8029,8029,Earth,2,The Tales of Ba Sing Se,15,Zuko,[Turning back.] My name's Lee. My uncle and I just moved here.,My name's Lee. My uncle and I just moved here.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8030,8030,Earth,2,The Tales of Ba Sing Se,15,Jin,"Hi Lee, my name's Jin. Thank you and ... well, I was wondering if you would like to go out sometime. [Zuko is stunned.]","Hi Lee, my name's Jin. Thank you and ... well, I was wondering if you would like to go out sometime.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8031,8031,Earth,2,The Tales of Ba Sing Se,15,Iroh,[Before the stunned Zuko can respond.] He'd love to!,He'd love to!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8032,8032,Earth,2,The Tales of Ba Sing Se,15,Jin,Great. I'll meet you in front of the shop at sundown.,Great. I'll meet you in front of the shop at sundown.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8033,8033,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Jin walks away, as Iroh throws his arms on a bewildered Zuko's shoulders, with a large smile as he glares at him. Cut to an exterior shot of the tea shop at evening, as Zuko comes out, his hair combed. He walks out into the middle of the street and looks around as Jin emerges from an alley beside the shop and walks up to him.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8034,8034,Earth,2,The Tales of Ba Sing Se,15,Jin,"Hey. Well, look at you. [She ruffles his hair.] You look so cute.","Hey. Well, look at you. You look so cute.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8035,8035,Earth,2,The Tales of Ba Sing Se,15,Zuko,[He stops Jin from ruffling his hair.] It took my uncle ten minutes to do my hair.,It took my uncle ten minutes to do my hair.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8036,8036,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Jin grabs Zuko by the arm and drags him as he glances once back at the teashop. Cut to a town square where several people stand around doing various activities. Cut to the Zuko and Jin who are eating at a restaurant, Jin sipping tea while Zuko pokes at his last meatball with his chop sticks, not looking at Jin.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8037,8037,Earth,2,The Tales of Ba Sing Se,15,Jin,"So, how do you like the city so far?","So, how do you like the city so far?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8038,8038,Earth,2,The Tales of Ba Sing Se,15,Zuko,It's okay.,It's okay.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8039,8039,Earth,2,The Tales of Ba Sing Se,15,Jin,[Sipping tea; intrigued.] What do you like to do for fun?,What do you like to do for fun?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8040,8040,Earth,2,The Tales of Ba Sing Se,15,Zuko,Nothing.,Nothing.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8041,8041,Earth,2,The Tales of Ba Sing Se,15,Waiter,"[Addressing Zuko.] Excuse me, sir. Would you and your girlfriend care for dessert?","Excuse me, sir. Would you and your girlfriend care for dessert?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8042,8042,Earth,2,The Tales of Ba Sing Se,15,Zuko,"[He yells in an assertive tone, pounding the table.] She is not my girlfriend!",She is not my girlfriend!,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8043,8043,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"The restaurant becomes silent as everyone's attention focuses on Zuko. The waiter walks away and Zuko laces his fingers and looks at Jin, who is slurping down a large bite of noodles from a bowl. Zuko stares at the sight in surprise for a moment.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8044,8044,Earth,2,The Tales of Ba Sing Se,15,Zuko,You have ... quite an appetite for a girl. [He fiddles his thumbs awkwardly.],You have ... quite an appetite for a girl.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8045,8045,Earth,2,The Tales of Ba Sing Se,15,Jin,"[Uncomfortably.] Umm ... thanks? So, Lee, where were you and your uncle living before you came here?","Umm ... thanks? So, Lee, where were you and your uncle living before you came here?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8046,8046,Earth,2,The Tales of Ba Sing Se,15,Zuko,"Umm ... well, we've been traveling around for a long time.","Umm ... well, we've been traveling around for a long time.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8047,8047,Earth,2,The Tales of Ba Sing Se,15,Jin,Oh. Why were you traveling so much?,Oh. Why were you traveling so much?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8048,8048,Earth,2,The Tales of Ba Sing Se,15,Zuko,"We were ... uh, part of this traveling circus.","We were ... uh, part of this traveling circus.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8049,8049,Earth,2,The Tales of Ba Sing Se,15,Jin,"Really? What did you do? Wait, lemme guess. [She thinks for a moment and quickly points at him.] You juggled!","Really? What did you do? Wait, lemme guess. You juggled!","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8050,8050,Earth,2,The Tales of Ba Sing Se,15,Zuko,"[Zuko folds his arms and looks annoyed.] Yes, I juggled.","Yes, I juggled.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8051,8051,Earth,2,The Tales of Ba Sing Se,15,Jin,I've always wanted to learn how to juggle. [She holds out some objects.] Can you show me something?,I've always wanted to learn how to juggle. Can you show me something?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8052,8052,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Zuko looks awkward and worried, but he takes the objects in his hand, and throws them one by one in the air. He is unable to catch them, and one of the objects falls on his head, breaking into many pieces.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8053,8053,Earth,2,The Tales of Ba Sing Se,15,Zuko,I haven't practiced for a while. [Wipes the pieces of the objects from his hair.],I haven't practiced for a while.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8054,8054,Earth,2,The Tales of Ba Sing Se,15,Jin,"It's all right. Hey, I want to show you one of my favorite places in the city.","It's all right. Hey, I want to show you one of my favorite places in the city.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8055,8055,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to a street in the city, with Jin leading Zuko.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8056,8056,Earth,2,The Tales of Ba Sing Se,15,Jin,I'm so excited for you to see the Firelight Fountain. The lamps make the water sparkle and reflect in the pool in the most beautiful way.,I'm so excited for you to see the Firelight Fountain. The lamps make the water sparkle and reflect in the pool in the most beautiful way.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8057,8057,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"She leads Zuko into an open area with a large fountain and several posts with candles on top surrounding it in a circle. However, the candles are not lit.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8058,8058,Earth,2,The Tales of Ba Sing Se,15,Jin,I can't believe it! They aren't lit.,I can't believe it! They aren't lit.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8059,8059,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Cut to a brief overhead shot of the fountain, before cutting to Zuko and Jin. He looks at her before looking at the fountain.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8060,8060,Earth,2,The Tales of Ba Sing Se,15,Zuko,"Close your eyes, and don't peek.","Close your eyes, and don't peek.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8061,8061,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Jin closes and covers her eyes as Zuko walks out, holds his hands together, and closes his eyes as he prepares. A close-up of Zuko's face shows his eyes opening, as he begins firebending. Using his pointer and middle fingers on each hand, he shoots small bursts of flame in all directions at the candles to light them. Once finished, he stands straight and looks at Jin, still with her palms covering her eyes.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8062,8062,Earth,2,The Tales of Ba Sing Se,15,Zuko,"Okay, now you can look.","Okay, now you can look.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8063,8063,Earth,2,The Tales of Ba Sing Se,15,Jin,"[Removes her palms from her eyes.] Oh, wow, [Cut to a shot showing the candles lit. Jin looks at Zuko, amazed. She walks up to him, looking at the candles.] What happened? How did they light? What did you? [She looks at a smiling Zuko.]","Oh, wow, What happened? How did they light? What did you?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8064,8064,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"They both turn to look at the fountain. As Zuko looks at them, Jin brushes her hand through her hair, smiles at him, and holds his hand. Zuko turns to look at the girl smiling at him. They both turn to be face to face and as Jin begins to lean in for a kiss, Zuko quickly draws a piece of paper which he holds between their lips.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8065,8065,Earth,2,The Tales of Ba Sing Se,15,Zuko,I've brought you something. [Jin becomes surprised.] It's a coupon for a free cup of tea.,I've brought you something. It's a coupon for a free cup of tea.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8066,8066,Earth,2,The Tales of Ba Sing Se,15,Jin,"Lee, this is so sweet.","Lee, this is so sweet.","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8067,8067,Earth,2,The Tales of Ba Sing Se,15,Zuko,[He takes a few steps back.] Don't thank me – it was my uncle's idea. He thinks you're our most valuable customer.,Don't thank me – it was my uncle's idea. He thinks you're our most valuable customer.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8068,8068,Earth,2,The Tales of Ba Sing Se,15,Jin,Your uncle is a good teacher. [She walks close to him and turns his head toward her.] I have something for you too. Now it's your turn to close your eyes.,Your uncle is a good teacher. I have something for you too. Now it's your turn to close your eyes.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8069,8069,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"As Zuko closes his eyes, Jin goes closer to him and kisses him before pulling back slightly. Zuko returns the kiss, but immediately jumps back away from her. He stands for a second, looking at her before turning his back and beginning to walk away.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8070,8070,Earth,2,The Tales of Ba Sing Se,15,Jin,What's wrong?,What's wrong?,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8071,8071,Earth,2,The Tales of Ba Sing Se,15,Zuko,"[Stops for a moment.] It's complicated. I have to go. [He walks off, leaving a disappointed Jin.]",It's complicated. I have to go.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8072,8072,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"Scene changes to the tea house, as Iroh is looking out from the windows at the street, waiting for Zuko. The door opens, as Zuko walks inside, being silent.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8073,8073,Earth,2,The Tales of Ba Sing Se,15,Iroh,"How was your night, Prince Zuko?","How was your night, Prince Zuko?","Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8074,8074,Earth,2,The Tales of Ba Sing Se,15,Scene Description,Zuko walks into a room and slams the doors shut behind him without replying to Iroh. Iroh looks after him for a second with a confused look before turning back to the window to continue his work. He turns back when he hears Zuko opening the doors. Shot cuts to show Zuko's face in the crack between the two doors.,NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8075,8075,Earth,2,The Tales of Ba Sing Se,15,Zuko,It was nice.,It was nice.,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8076,8076,Earth,2,The Tales of Ba Sing Se,15,Scene Description,"He closes the doors again. Shot cuts to a smiling Iroh, who resumes his work.",NA,"Joann Estoesta, Lisa Wahlander, Andrew Huebner, Gary Scheppke, Lauren MacMullan, Katie Mattila, Justin Ridge, Giancarlo Volpe, Elizabeth Welch Ehasz (story editor), John O'Bryan (story editor)",Ethan Spaulding,9.2 +8077,8077,Earth,2,Appa's Lost Days,16,Scene Description,"The episode begins with the camera panning up from the sandy desert to the library and Appa. The words ""FOUR WEEKS AGO ..."" fade on and off the camera. Cut to Toph holding up the sinking library.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8078,8078,Earth,2,Appa's Lost Days,16,Toph,No! Stop sinking!,No! Stop sinking!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8079,8079,Earth,2,Appa's Lost Days,16,Scene Description,"Cut to Appa growling as sandbenders tie him with ropes. One sandbenders tugs on a rope tied to Appa's head. Appa lifts his head, sending the sandbender flying and tumbling through the sand. Two more sandbenders let go of their ropes and scatter to avoid Appa's tail. Appa becomes more annoyed.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8080,8080,Earth,2,Appa's Lost Days,16,Toph,"Don't make me put this down! [Lets go of the library and sends a slice of sand at the sandbenders, which misses completely. She grabs the library again.]",Don't make me put this down!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8081,8081,Earth,2,Appa's Lost Days,16,Ghashiun,Put a muzzle on him!,Put a muzzle on him!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8082,8082,Earth,2,Appa's Lost Days,16,Scene Description,"One sandbender throws a rope around Appa's mouth, but Appa breaks it and makes the sandbender fall down. Another sandbender throws a rope around Appa's horn and Appa's sends the sandbender that tried to put a muzzle on him flying through the air. Appa takes off, but a sandbender throws a rope around Appa's leg and uses sandbending to secure his feet. The other sandbenders follow his lead and they all force Appa to the ground. A sand-sailer sails next to Appa. The sandbenders use their sandbending to drag Appa with three sailers. Cut to Toph, still holding onto the library.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8083,8083,Earth,2,Appa's Lost Days,16,Toph,"[Regretfully.] I'm sorry, Appa. [She sniffles and closes her eyes.]","I'm sorry, Appa.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8084,8084,Earth,2,Appa's Lost Days,16,Scene Description,"The camera pans to the right to show Appa. Cut next to Appa, who lowers his eyes. Fade to the sun and pan down to the sailers crossing the desert. On one of the sailers, Ghashiun lowers his mask and signals them to stop.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8085,8085,Earth,2,Appa's Lost Days,16,Ghashiun,Ransack his saddle. Who knows what treasures are stashed in there!,Ransack his saddle. Who knows what treasures are stashed in there!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8086,8086,Earth,2,Appa's Lost Days,16,Scene Description,"Two sandbenders run up to Appa, who growls when they approach.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8087,8087,Earth,2,Appa's Lost Days,16,Ghashiun,He's tied up good. He can't hurt you.,He's tied up good. He can't hurt you.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8088,8088,Earth,2,Appa's Lost Days,16,Scene Description,"The two sandbenders jump onto Appa's saddle, stirring some sand. Appa sneezes, sending the center sailer into a sand dune. Cut to Ghashiun and a sandbender, who talk while, in the background, two sandbenders throw the contents of Appa's saddle in the background onto the ground.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8089,8089,Earth,2,Appa's Lost Days,16,Sandbender #1,[To Ghashiun.] What's your father gonna do when he finds out we lost a sand-sailer?,What's your father gonna do when he finds out we lost a sand-sailer?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8090,8090,Earth,2,Appa's Lost Days,16,Ghashiun,Nothing. It's the one we stole from the Hami Tribe. [To the two sandbenders on Appa's saddle.] Did you empty the saddle? [Walks up to Sokka's club among a sleeping pad and parasol.] That's it? Nothing but garbage!,Nothing. It's the one we stole from the Hami Tribe. Did you empty the saddle? That's it? Nothing but garbage!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8091,8091,Earth,2,Appa's Lost Days,16,Sandbender #2,[Jumps off Appa with the other sandbender and kicks a box.] Doesn't matter. We'll still make a profit from selling him to those beetle-headed merchants.,Doesn't matter. We'll still make a profit from selling him to those beetle-headed merchants.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8092,8092,Earth,2,Appa's Lost Days,16,Scene Description,The other sandbender picks up the parasol and opens it. Cut to a small camp of merchants which the sandbenders bring Appa to using the two remaining sand-sailers. Three merchants walk around Appa's head to bargain with Ghashiun.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8093,8093,Earth,2,Appa's Lost Days,16,Merchant #1,[Walks to the side of Appa's head.] How's his temper?,How's his temper?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8094,8094,Earth,2,Appa's Lost Days,16,Ghashiun,"Uh, pretty good. [Appa roars, startling two of the merchants. Ghashiun chuckles.] Most of the time.","Uh, pretty good. Most of the time.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8095,8095,Earth,2,Appa's Lost Days,16,Merchant #2,I bet someone will pay a fortune for him in Ba Sing Se.,I bet someone will pay a fortune for him in Ba Sing Se.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8096,8096,Earth,2,Appa's Lost Days,16,Merchant #1,"All right, you've got a deal.","All right, you've got a deal.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8097,8097,Earth,2,Appa's Lost Days,16,Scene Description,Cut to Ghashiun with two sandbenders on either side of him. He is handed a box which he opens and closes before walking to the side. A large beetle drags Appa onto the merchants' caged sled. Cut to an overhead view of Aang gliding over the desert.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8098,8098,Earth,2,Appa's Lost Days,16,Aang,"Appa! Appa! [Closer shot of Aang, who blows his bison whistle.]",Appa! Appa!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8099,8099,Earth,2,Appa's Lost Days,16,Scene Description,Appa's eyes widen and the camera switches to his point of view as he hears the high-pitched whistle. Aerial view of Appa rocking the sled.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8100,8100,Earth,2,Appa's Lost Days,16,Ghashiun,[Sailing away with his sandbenders.] He's your problem now! [Laughs.],He's your problem now!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8101,8101,Earth,2,Appa's Lost Days,16,Merchant #2,What?,What?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8102,8102,Earth,2,Appa's Lost Days,16,Scene Description,"Appa slams his tail against the ground, and starts flying.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8103,8103,Earth,2,Appa's Lost Days,16,Merchant #1,We need the shirshu spit darts!,We need the shirshu spit darts!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8104,8104,Earth,2,Appa's Lost Days,16,Merchant #2,"[Pulls a dart out of his robe.] Got 'em! Okay big fella, you're gonna take a nice little snoozle. [Blows three darts at Appa's feet.]","Got 'em! Okay big fella, you're gonna take a nice little snoozle.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8105,8105,Earth,2,Appa's Lost Days,16,Scene Description,"Appa collapses to the ground cut to Aang, who lands his glider.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8106,8106,Earth,2,Appa's Lost Days,16,Aang,"Appa! [The camera pans up to the empty desert. Aang's eyes start watering and he closes them.] No. [Opens his eyes with anger.] No! [Slams his glider against the ground, using airbending to send sand up into the air.]",Appa! No. No!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8107,8107,Earth,2,Appa's Lost Days,16,Scene Description,Further shot as the sand forms a giant mushroom cloud. The camera shows the tiny mushroom sand cloud from Appa's point of view from far away. Appa's sighs as two merchants begin to talk.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8108,8108,Earth,2,Appa's Lost Days,16,Merchant #1,We've gotta get rid of this one. He's too much trouble.,We've gotta get rid of this one. He's too much trouble.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8109,8109,Earth,2,Appa's Lost Days,16,Merchant #2,[Appa's vision starts blacking out.] We could sell it for parts.,We could sell it for parts.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8110,8110,Earth,2,Appa's Lost Days,16,Trainer,"[Sighs.] I understand [The camera fades from black to show a circus trainer standing outside a cage.] you've had a rather hard time lately. That's too bad. You probably felt you had no choice but to behave outrageously, like a wild animal. [Cut to outside the cage, where the trainer pats Appa on the head.] But don't worry. You won't anymore. [Frontal shot. Darkly.] Because I am going to break you.","I understand you've had a rather hard time lately. That's too bad. You probably felt you had no choice but to behave outrageously, like a wild animal. But don't worry. You won't anymore. Because I am going to break you.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8111,8111,Earth,2,Appa's Lost Days,16,Scene Description,"The shot changes to show Appa's cage next to other animal cages. Fade to a large circus tent. Inside, the trainer rolls a cart of cabbages and gives one to a platypus bear. He passes Appa, who tries lifting his chained legs and biting off the chains. The trainer gives a cabbage to a lion vulture.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8112,8112,Earth,2,Appa's Lost Days,16,Trainer,"Hungry? [Walks up to Appa.] Don't worry, I'm going to feed you too. [Shows a cabbage to the drooling Appa.] But not yet. [Takes away the cabbage as Appa tries to slurp it up. Walks up to the lion vulture.] First, I'm going to show you how you'll earn it. [Gives the cabbage to the lion vulture and opens the cage.]","Hungry? Don't worry, I'm going to feed you too. But not yet. First, I'm going to show you how you'll earn it.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8113,8113,Earth,2,Appa's Lost Days,16,Scene Description,"The lion vulture flies around the room and the trainer uses a fire whip to control it. Appa pays little attention to the man and looks at the cart of cabbages. He uses air suction to bring the cart closer to his cage and sucks up a cabbage. Cut to the lion vulture flying through two hoops and making loops. It grabs the third ring with its beak and throws it at the trainer, who catches it. Appa continues sucking cabbages into his mouth while the trainer's back is turned.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8114,8114,Earth,2,Appa's Lost Days,16,Trainer,"Of course, when you perform, the hoops will be flaming. And if you are careful, you won't get burned. [Appa belches loudly and the circus trainer quickly turns around.] You're about to be sorry. [Firebends a whip and creates a fire in front of Appa's cage, causing Appa to panic.] It's obvious that whoever your previous owner was, he had no idea how to handle you properly.","Of course, when you perform, the hoops will be flaming. And if you are careful, you won't get burned. You're about to be sorry. It's obvious that whoever your previous owner was, he had no idea how to handle you properly.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8115,8115,Earth,2,Appa's Lost Days,16,Scene Description,"Cut to the circus tent at night as carnival music plays and people gather round the entrance. Cut to tent flap opening where people walk past outside. A small boy walks past, but walks back when he sees Appa try to suck up a bale of hay in the tent. The boy looks questioningly at Appa, who licks the bar of the cage. The boy looks understandingly at the sky bison and the boy's father walks behind him.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8116,8116,Earth,2,Appa's Lost Days,16,Fire Nation man,[To the boy.] I'm gonna to go get a bag of sizzle crisps. [Pointing at the ground.] Stay here and [Pointing at Appa.] stay away from that monster. Behave yourself or [The boy flinches slightly.] you'll regret it.,I'm gonna to go get a bag of sizzle crisps. Stay here and stay away from that monster. Behave yourself or you'll regret it.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8117,8117,Earth,2,Appa's Lost Days,16,Scene Description,"The boy runs into the tent and rolls the bale of hay right up to Appa's cage. Appa licks the boy's face in appreciation and starts munching down the hay. The shot changes to above Appa's head, and the boy runs away once he hears voices.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8118,8118,Earth,2,Appa's Lost Days,16,Trainer,"[Walking in front of Appa with the circus master, Shuzumu.] He's a difficult creature, stubborn and willful. I need more time with him. It's too risky right now.","He's a difficult creature, stubborn and willful. I need more time with him. It's too risky right now.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8119,8119,Earth,2,Appa's Lost Days,16,Shuzumu,"[Closer shot of him and the trainer.] Too risky? What are you talking about? [Raises his hands up.] This is the circus, home of fear and danger. [Points at Appa.] I want the wind buffalo to perform tonight.","Too risky? What are you talking about? This is the circus, home of fear and danger. I want the wind buffalo to perform tonight.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8120,8120,Earth,2,Appa's Lost Days,16,Trainer,"[Turns to Appa.] If you don't behave yourself, you'll regret it. [Firebends a flame in front of Appa, causing the bison to reel back in fear, and walks away.]","If you don't behave yourself, you'll regret it.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8121,8121,Earth,2,Appa's Lost Days,16,Scene Description,"The boy peers out the tent flap at Appa, reassuringly smiling.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8122,8122,Earth,2,Appa's Lost Days,16,Fire Nation man,[Grabs the boy's shoulder.] Let's go.,Let's go.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8123,8123,Earth,2,Appa's Lost Days,16,Unnamed Fire Nation boy,"[Waves at Appa.] See you later, buddy.","See you later, buddy.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8124,8124,Earth,2,Appa's Lost Days,16,Scene Description,"Appa sighs and puts his head on the cage floor. Fade to the circus tent, still at night. Cut to inside, where two women perform by holding three spinning plates in each hand and five men in the background with painted faces form a human pyramid. The two women walk to the sides to reveal two platypus bears balancing on balls. Cut to the applauding crowd. In the front row, the boy from earlier tries to get some sizzle crisps from his father, but the man holds it away from the boy.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8125,8125,Earth,2,Appa's Lost Days,16,Shuzumu,"[Voice-over.] Ladies and gentlemen, now for something truly special. [Frontal shot. Creates two flames with his hands.] A noble beast, so magnificent and rare, it hasn't been seen by human eyes in generations. I give you ... the wind buffalo!","Ladies and gentlemen, now for something truly special. A noble beast, so magnificent and rare, it hasn't been seen by human eyes in generations. I give you ... the wind buffalo!",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8126,8126,Earth,2,Appa's Lost Days,16,Scene Description,"Shuzumu gestures toward a curtain which drops to show Appa dressed in a costume complete with make-up. The audience laughs at the creature, while the boy looks at it with concern. Appa walks onto the center ring.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8127,8127,Earth,2,Appa's Lost Days,16,Trainer,"Up. [Appa shakes his head and turns around in a circle. The audience laughs.] Up, you insolent cow! [Summons a firebending whip and snaps it at Appa.]","Up. Up, you insolent cow!",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8128,8128,Earth,2,Appa's Lost Days,16,Unnamed Fire Nation boy,[Stands up.] Run away! Get away from him! [His father makes him sit back down.],Run away! Get away from him!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8129,8129,Earth,2,Appa's Lost Days,16,Scene Description,"Appa flies up into the air, swirling. The crowd gasps and starts clapping.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8130,8130,Earth,2,Appa's Lost Days,16,Fire Nation man,Fabulous!,Fabulous!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8131,8131,Earth,2,Appa's Lost Days,16,Scene Description,"Appa flies through a fiery ring and stands on a platform with one leg. Cut to the boy, who looks concerned. Appa flies through a second ring and his costume catches on fire. Appa knocks down the next ring with his tail. The ring hits the trainer on the head and knocks him down. Appa lands and looks at the laughing crowd. He focuses on the young boy and sees Aang laughing in a flashback. Appa shakes his head, and his costume hair falls off.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8132,8132,Earth,2,Appa's Lost Days,16,Unnamed Fire Nation boy,"Go, you can do it.","Go, you can do it.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8133,8133,Earth,2,Appa's Lost Days,16,Scene Description,"Appa takes off, but a blast of fire stops him.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8134,8134,Earth,2,Appa's Lost Days,16,Trainer,"Get back here, you stupid beast! [Creates a fire whip.]","Get back here, you stupid beast!",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8135,8135,Earth,2,Appa's Lost Days,16,Scene Description,"Appa knocks the man up into the air with his tail. Cut to outside the circus tent, where the trainer flies out. Appa flies out of the tent through the ceiling, leaving his costume behind. The boy looks up at Appa flying away and smiles. Appa flies over the desert and sees a large crater. Cut to Appa's flashback of the library which had been there before. Cut back as Appa lands in the center of the pit and looks around. He tries digging with his chained feet, but gives up and falls asleep. +Cut to Appa flying over the desert and his stomach grumbles. Cut to a purple egg which Appa tries to eat, but a gilacorn snatches it and runs away. Appa flies to a cactus, scaring away a jackalope. He eats the cactus, but roars in pain and spits it out due to the sharp prickles. Cut to Appa flying again, this time more wearied. He sniffs for food and flies toward the Si Wong Rock. Cut to the buzzard wasp nests, which Appa flies into and starts eating, but quickly flies out when the buzzard wasps start attacking. Appa uses airbending to knock down all of the buzzard wasps, which scatter afterward. Appa lands, panting, and licks the honey on his feet and arms until he stops and begins to rest. +Cut to Appa flying across the setting sun. He finds a barn, takes a drink out of the trough, eats some hay, and falls asleep. In his dream, he sees the Eastern Air Temple. Five baby sky bison fly through the air, and circle around their mother. They gather close to her. Cut to Sister Iio, who holds a bowl of apples for the young airbending monks.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8136,8136,Earth,2,Appa's Lost Days,16,Iio,Choose well. A sky bison is a companion for life.,Choose well. A sky bison is a companion for life.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8137,8137,Earth,2,Appa's Lost Days,16,Scene Description,"Further shot of the sky bison family landing and Iio throws the mother an apple. Shot of Appa and the camera pans to the younger Aang, who offers the apple. Appa sniffs the apple and Aang gives it to him. Aang hugs Appa, who returns the affectionate gesture by knocking Aang down to the ground and licking his face.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8138,8138,Earth,2,Appa's Lost Days,16,Aang,I guess this means we'll always be together. [Laughs as Appa continues licking his face.],I guess this means we'll always be together.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8139,8139,Earth,2,Appa's Lost Days,16,Scene Description,"Cut to Aang, who is dreaming while camping at the Serpent's Pass. He laughs and holds his arms out in the same manner as seen in Appa's dream.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8140,8140,Earth,2,Appa's Lost Days,16,Aang,Always.,Always.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8141,8141,Earth,2,Appa's Lost Days,16,Scene Description,Camera pans to the side and fades to Appa waking up.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8142,8142,Earth,2,Appa's Lost Days,16,Farmer,[Wielding a pitchfork.] Ahhh! It's some kind of monster!,Ahhh! It's some kind of monster!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8143,8143,Earth,2,Appa's Lost Days,16,Scene Description,"Appa stands up and the farmer backs away. The farmer's wife enters the barn and holds up a torch. Appa backs away from the flame, standing on his forelegs. The farmer and his wife run away screaming. Appa breaks a hole in the ceiling to escape. Cut to the farmer and wife as they watch the sky bison fly away. Cut to Appa flying over the Serpent's Pass. Cut to a ship and cut to a shot of Iroh looking overboard. Iroh gasps when he sees Appa fly overhead.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8144,8144,Earth,2,Appa's Lost Days,16,Zuko,[Sitting up on the deck floor.] Uncle? What are you looking at? Is there something out there?,Uncle? What are you looking at? Is there something out there?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8145,8145,Earth,2,Appa's Lost Days,16,Iroh,"[Nervously.] Uh, it's nothing. Go back to sleep. [Zuko lies back down and Iroh sighs.]","Uh, it's nothing. Go back to sleep.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8146,8146,Earth,2,Appa's Lost Days,16,Scene Description,"Cut to a forest. Appa flies down and crash lands in front of a tree growing over a passage. He bites some grass and stands up when he hears squealing from the passage. Cut to in front of the passage where a boar-q-pine runs out of the shadows and toward the camera. Appa roars at the boar-q-pine, which tackles him and they fall down a cliff. They stop rolling when they reach a clearing, Appa's fur being prickled with some of the boar-q-pine's quills. +The boar-q-pine roars at Appa, and Appa roars back. They start to circle each other, the camera first showing a view with Appa in front before switching to the boar-q-pine in front. The boar-q-pine charges at Appa, knocking him into a tree which falls down. Appa grabs the tree with his mouth and throws it at the boar-q-pine, who jumps over the trunk and charges at Appa. Appa stands on his rear legs, grabs the charging boar-q-pine, and throws it to the side. The shot changes to a farther distance where the dust from the sliding boar-q-pine rises above the tree tops and scatters some birds. In a closer shot, the boar-q-pine stops sliding and runs away, squealing. Appa pants and grabs a quill from his leg, roaring in pain as the camera zooms back. +Cut to the passage. Appa flies over the hill and walks into the passage, collapses and falls asleep. Cut to the outside of the passage, in which time changes from evening to night, and it starts raining. Fade to a berry bush where a hand picks a berry. The shot changes to the next day, showing the Kyoshi Warriors picking the berries, and pans to the right. On one of the bushes, a Kyoshi Warrior picks up a clump of Appa's fur.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8147,8147,Earth,2,Appa's Lost Days,16,Kyoshi Warrior #1,Must have been some fight.,Must have been some fight.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8148,8148,Earth,2,Appa's Lost Days,16,Suki,"Wait, let me see that. [The Kyoshi Warrior hands the clump of fur to her.] No, it couldn't be. [The camera pans up to show Appa's trail of fur on the cliff. Suki follows the trail and gasps when she reaches the top.] Appa? Oh, no. [Close-up of Appa, who backs away into the passage in fear as Suki walks up. She stops and kneels down, putting several berries and an apple on the ground.] It's gonna be okay, Appa. [Stands up and back away.] I have to leave, but I'm gonna be back soon with help.","Wait, let me see that. No, it couldn't be. Appa? Oh, no. It's gonna be okay, Appa. I have to leave, but I'm gonna be back soon with help.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8149,8149,Earth,2,Appa's Lost Days,16,Scene Description,Suki walks down the cliff. Appa walks up the fruit and looks at it. Cut to a later time where Appa rests in the passage. The camera pans down to Suki leading five Kyoshi Warriors up the side of the cliff.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8150,8150,Earth,2,Appa's Lost Days,16,Suki,No sudden movements. He's been lost for a while and he looks like he's hurt. [Closer shot of the Kyoshi Warriors.] He's shy around people and scared. Stay low and stay quiet.,No sudden movements. He's been lost for a while and he looks like he's hurt. He's shy around people and scared. Stay low and stay quiet.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8151,8151,Earth,2,Appa's Lost Days,16,Kyoshi Warrior #1,I can't believe you found the Avatar's bison. Didn't you just see the Avatar a few days ago?,I can't believe you found the Avatar's bison. Didn't you just see the Avatar a few days ago?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8152,8152,Earth,2,Appa's Lost Days,16,Suki,"Yes, so he can't be too far from here. [Walking up the hill.] It's our responsibility to get Appa back to him safely. This could be our most important mission yet. [The Kyoshi Warriors peer over the top of the hill at Appa, who growls and shakes his head at the intruders.] Give him some space! [The other Kyoshi Warriors take a step back. Suki takes a step forward.] Appa, it's me, Suki. I'm a friend. [Appa growls and Suki slowly approaches Appa.] I want to help you. You're hurt. We can help you feel better. [Appa growls in response.] And we can help you find Aang. [Appa softly growls and Suki places her hands Appa's nose and Appa lies down with Suki kneeling in front.]","Yes, so he can't be too far from here. It's our responsibility to get Appa back to him safely. This could be our most important mission yet. Give him some space! Appa, it's me, Suki. I'm a friend. I want to help you. You're hurt. We can help you feel better. And we can help you find Aang.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8153,8153,Earth,2,Appa's Lost Days,16,Scene Description,"Cut to Appa's shackles and boar-q-pine quills on the ground and pan to Appa surrounded by the Kyoshi Warriors. Appa licks one of the warrior's faces. Close-up of Appa's ear as he hears footsteps thundering. Lightning strikes a nearby tree, causing it to fall down and blocking the pathway. Mai, Azula, and Ty Lee arrive on mongoose lizards.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8154,8154,Earth,2,Appa's Lost Days,16,Azula,"[Holding a clump of Appa's fur.] My, my, you're easy to find. It's really astounding my brother hasn't captured you yet.","My, my, you're easy to find. It's really astounding my brother hasn't captured you yet.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8155,8155,Earth,2,Appa's Lost Days,16,Scene Description,The camera pans down to show the Kyoshi Warriors standing in front of Appa. Appa growls at Azula and the Kyoshi Warriors draw their shield fans.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8156,8156,Earth,2,Appa's Lost Days,16,Suki,What do you want with us?,What do you want with us?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8157,8157,Earth,2,Appa's Lost Days,16,Azula,Who are you? The Avatar's fan girls?,Who are you? The Avatar's fan girls?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8158,8158,Earth,2,Appa's Lost Days,16,Ty Lee,"[Beat.] Oh, I get it. Good one, Azula.","Oh, I get it. Good one, Azula.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8159,8159,Earth,2,Appa's Lost Days,16,Suki,"If you're looking for the Avatar, you're out of luck.","If you're looking for the Avatar, you're out of luck.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8160,8160,Earth,2,Appa's Lost Days,16,Mai,[Aerial view; Mai sighs.] I knew this was a waste of time.,I knew this was a waste of time.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8161,8161,Earth,2,Appa's Lost Days,16,Azula,"No Avatar, huh. Well, that's okay. Any friend of the Avatar [Jumps off the mongoose lizard.] is an enemy of mine! [Firebends at Appa, who the Kyoshi Warriors protect by moving their shields together.]","No Avatar, huh. Well, that's okay. Any friend of the Avatar is an enemy of mine!",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8162,8162,Earth,2,Appa's Lost Days,16,Scene Description,"Azula firebends at Appa. The Kyoshi Warriors protect him by moving their shield fans together. Ty Lee and Mai jump off their mongoose lizards. Mai faces two Kyoshi Warriors and throws three shurikens, pinning a Kyoshi Warrior to a tree.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8163,8163,Earth,2,Appa's Lost Days,16,Kyoshi Warrior #2,Huh? [Looks at the weapons on her right arm in confusion.],Huh?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8164,8164,Earth,2,Appa's Lost Days,16,Mai,"You're so colorful, it's making me nauseous. [Throws a bunch of darts at the second Kyoshi Warrior.]","You're so colorful, it's making me nauseous.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8165,8165,Earth,2,Appa's Lost Days,16,Scene Description,"The Kyoshi Warrior unsheathes her sword and uses it to deflect the darts. She swings at Ty Lee, who manages to get behind the Kyoshi Warrior and perform chi blocking.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8166,8166,Earth,2,Appa's Lost Days,16,Ty Lee,You're not prettier than we are.,You're not prettier than we are.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8167,8167,Earth,2,Appa's Lost Days,16,Scene Description,Cut to a side-view from the woods. Suki defends Appa from Azula's firebending blasts with her fan shield. Closer shot of Azula summoning blue fire. Shot changes to Appa and Suki. Suki takes the blast and deflects it to the side where it sets the fallen tree behind them on fire. Appa looks frightened at the flames.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8168,8168,Earth,2,Appa's Lost Days,16,Azula,"Afraid of fire, I see. That's good. You should be.","Afraid of fire, I see. That's good. You should be.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8169,8169,Earth,2,Appa's Lost Days,16,Suki,"[Unsheathes her sword.] Go, Appa! Fly away from here!","Go, Appa! Fly away from here!",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8170,8170,Earth,2,Appa's Lost Days,16,Scene Description,"Appa flies up and Suki charges Azula with her sword. Slow motion shot of Azula jumping up and knocks the sword out of her hand and into a tree. Azula fires another blast at Suki, who blocks it with her shield. Suki tries kicking Azula, but Azula uses the opportunity to knock down Suki. Cut to Appa flying overhead, who looks down and flies back. Cut to Azula, preparing to strike another firebending blast. A Kyoshi Warrior in the background throws her fans at Azula, who ducks and kicks a firebending blast at the other Kyoshi Warrior and pursues her. Suki stands up and waves a torch at Appa.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8171,8171,Earth,2,Appa's Lost Days,16,Suki,Get out of here! You have to find Aang! We'll be okay!,Get out of here! You have to find Aang! We'll be okay!,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8172,8172,Earth,2,Appa's Lost Days,16,Scene Description,Appa backs away from Suki and flies away. A blue firebending blast hits Suki's shield. Suki steps back and wields her fan.,NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8173,8173,Earth,2,Appa's Lost Days,16,Azula,[Calmly.] Don't you know fans just make flames stronger?,Don't you know fans just make flames stronger?,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8174,8174,Earth,2,Appa's Lost Days,16,Scene Description,"They charge at each other, Azula firing another blast and Suki deflecting it. As they clash, the scene action freezes. Cut to Appa flying near the tree tops, which fades to an aerial view of a river, which Appa flies over with a flock of birds. Fade to Appa flying through the rain. Cut to a fleet of Water Tribe ships while Appa flies through the sky in the distance. On one of the ships, Hakoda looks up and watches the sky bison. Frontal shot of Appa flying through the mountains and soon reaches the Eastern Air Temple. Appa walks inside and the scene flashes back and pans up to show the calf Appa and his siblings running through the air temple. Cut to the present where he continues walking and finds a circle of railing. Fade to the past, where Appa and his siblings gnaw at the railings. Fade to the present where Appa gnaws the now dusty railing and coughs. Fade to outside the air temple, where Appa crosses a bridge. Appa reaches a balcony and sees a man meditating and looks over-joyed. Appa runs over to the man knocking him down and licks the man's face.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8175,8175,Earth,2,Appa's Lost Days,16,Pathik,[Blinks in confusion.] Hello. I am Guru Pathik. [Aerial shot as Appa flies to the back of the balcony and closer shot as he growls at the guru.] I know I'm not the person you expected. And I didn't expect to be licked by a giant tongue just now. [Side shot of Appa and Pathik on the balcony.] The world is full of surprises.,Hello. I am Guru Pathik. I know I'm not the person you expected. And I didn't expect to be licked by a giant tongue just now. The world is full of surprises.,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8176,8176,Earth,2,Appa's Lost Days,16,Scene Description,"Appa growls at the guru. Pathik lies down and closes his eyes. Later, he opens his eyes and looks at Appa, who growls in return. Pathik closes his eyes again and later opens one eye at Appa. Appa snorts in return. Fade to night time, this time Appa asleep and snoring. Pathik stands up and rubs his hands together. He walks over to Appa and places his hand on Appa's upper stomach.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8177,8177,Earth,2,Appa's Lost Days,16,Pathik,"Oh, dear. You've been through so much recently. Hurt and betrayed. So twisted up inside. [Moves his hand.] You're still full of love. Ah. But fear has moved in where trust should be. [The camera shows a further shot of the balcony and pans up to the Air Temple; voice-over.] I've been expecting you and the young Avatar for quite a long time. I had a vision many years ago of helping him. That's why I came to the Eastern Air Temple. [Closer shot of Appa and Pathik.] Oh, your emotions are so turbulent. Like swirling storm clouds. [Puts his hand on Appa's forehead.] Let the clouds in your mind be gentle, peaceful ones. [Appa purrs and the shot fades to black.]","Oh, dear. You've been through so much recently. Hurt and betrayed. So twisted up inside. You're still full of love. Ah. But fear has moved in where trust should be. I've been expecting you and the young Avatar for quite a long time. I had a vision many years ago of helping him. That's why I came to the Eastern Air Temple. Oh, your emotions are so turbulent. Like swirling storm clouds. Let the clouds in your mind be gentle, peaceful ones.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8178,8178,Earth,2,Appa's Lost Days,16,Scene Description,"Appa wakes up and looks around hostilely. He notices some fruit right in front of him and gobbles it up and follows a path of fruit. Cut to a raised platform which Appa approaches on top of the platform, Pathik feeds a bird some seeds while another bird perches on his head and two squirrels.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8179,8179,Earth,2,Appa's Lost Days,16,Pathik,"Someone looks very well rested, [Cut to Appa, whose fur on one side of his head is slightly messed up.] judging by your bed head. [Appa growls and shakes away the bed head.]","Someone looks very well rested, judging by your bed head.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8180,8180,Earth,2,Appa's Lost Days,16,Scene Description,"Fade to the moon and pan down to Pathik meditating. Appa paces behind him twice and collapses. Pathik opens his eyes and places his hand on Appa's side. He stands up, holding a scroll.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8181,8181,Earth,2,Appa's Lost Days,16,Pathik,"I have prepared a message for Aang. May I attach it to your horn? [Appa mutter in agreement and Pathik ties the scroll to Appa's horn. Cut to the leaves falling overhead and pan down to Appa and Pathik.] You and the Avatar's energies are mixed. You have an unbreakable bond. By reading your energy, I can sense where Aang is. [Appa licks him.] Funny, what invisible strings connect us all. [Places his hand on Appa's forehead. Further shot of the Air Temple as a path of light illuminates a pathway.] I'll see you again, great beast. [Closer shot of Pathik and Appa.]","I have prepared a message for Aang. May I attach it to your horn? You and the Avatar's energies are mixed. You have an unbreakable bond. By reading your energy, I can sense where Aang is. Funny, what invisible strings connect us all. I'll see you again, great beast.",Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8182,8182,Earth,2,Appa's Lost Days,16,Scene Description,"The camera fades to white. Cut to Appa flying toward Ba Sing Se at night. He flies over a wall. Another shot of Appa shows two Dai Li agents on the roof who descend once they see Appa. Appa continues flying over the city and his eyes widen when he hears a high-pitched whistle. Shot changes to three pygmy pumas standing on a roof top as Appa descends. Cut to Aang's bison whistle. A further shot shows Aang asleep with his bison whistle and a curled-up Momo at his sides. +Cut to Long Feng blowing on his own high-pitched whistle. Long Feng steps out of the shadows. Appa growls at him and takes a step back, leaving a single footprint in the mud. Long Feng earthbends the slab of rock beneath him, causing it to swirl around and capture Appa underground. Shot of Appa's footprint in the mud fades to a further shot of the dust around the slab of rock dissipating. Fade to credits.",NA,Elizabeth Welch Ehasz,Giancarlo Volpe,8.8 +8183,8183,Earth,2,Lake Laogai,17,Scene Description,"The episode opens to Team Avatar's place of stay in Ba Sing Se, where Sokka is drawing inaccurate pictures of Appa for missing posters. Katara and Aang enter.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8184,8184,Earth,2,Lake Laogai,17,Katara,[Cheerfully.] We found a printer to make our posters! [Reveals the poster and Aang smiles and points at it.],We found a printer to make our posters!,Tim Hedrick,Lauren MacMullan,9.1 +8185,8185,Earth,2,Lake Laogai,17,Sokka,"Hey, I thought designing the lost Appa poster was my job. I've been working all day on my Appa! [Shows his crudely drawn picture of Appa with a proud smile. Cut to an exasperated Aang while Katara tries to hold back her laughter.]","Hey, I thought designing the lost Appa poster was my job. I've been working all day on my Appa!",Tim Hedrick,Lauren MacMullan,9.1 +8186,8186,Earth,2,Lake Laogai,17,Aang,"Sokka, the arrow is on Appa's head.","Sokka, the arrow is on Appa's head.",Tim Hedrick,Lauren MacMullan,9.1 +8187,8187,Earth,2,Lake Laogai,17,Sokka,[Dismayed.] This is his head. [Points to the sketch.],This is his head.,Tim Hedrick,Lauren MacMullan,9.1 +8188,8188,Earth,2,Lake Laogai,17,Katara,"[Takes the picture from Sokka, looks confused.] Why are feet coming out of it?",Why are feet coming out of it?,Tim Hedrick,Lauren MacMullan,9.1 +8189,8189,Earth,2,Lake Laogai,17,Sokka,"[Snatches back the picture indignantly.] Those are his horns. [Hangs his head.] I haven't seen him in a while, okay?","Those are his horns. I haven't seen him in a while, okay?",Tim Hedrick,Lauren MacMullan,9.1 +8190,8190,Earth,2,Lake Laogai,17,Toph,[Mockingly.] It looks just like him to me!,It looks just like him to me!,Tim Hedrick,Lauren MacMullan,9.1 +8191,8191,Earth,2,Lake Laogai,17,Sokka,"Thank you, I worked really- [Suddenly remembering that she is blind.] Why do you feel the need to do that?","Thank you, I worked really- Why do you feel the need to do that?",Tim Hedrick,Lauren MacMullan,9.1 +8192,8192,Earth,2,Lake Laogai,17,Katara,Let's just stick with the professional version.,Let's just stick with the professional version.,Tim Hedrick,Lauren MacMullan,9.1 +8193,8193,Earth,2,Lake Laogai,17,Scene Description,Sokka angrily rips up his drawing.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8194,8194,Earth,2,Lake Laogai,17,Aang,"[Excitedly.] Come on, let's get busy! [Holds up some pamphlets.]","Come on, let's get busy!",Tim Hedrick,Lauren MacMullan,9.1 +8195,8195,Earth,2,Lake Laogai,17,Scene Description,"Cut to Aang and Momo dropping dozens of posters all over Ba Sing Se. One poster falls in front of the camera, and the scene changes to tea shop where Zuko and Iroh are working. Iroh serves tea to two customers, who enjoy it. They approach him.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8196,8196,Earth,2,Lake Laogai,17,Quon,"So, you're the genius behind this incredible brew. The whole city is buzzing about you! I hope Pao pays you well.","So, you're the genius behind this incredible brew. The whole city is buzzing about you! I hope Pao pays you well.",Tim Hedrick,Lauren MacMullan,9.1 +8197,8197,Earth,2,Lake Laogai,17,Iroh,Good tea is its own reward.,Good tea is its own reward.,Tim Hedrick,Lauren MacMullan,9.1 +8198,8198,Earth,2,Lake Laogai,17,Quon,But it doesn't have to be the only reward. How would you like to have your own tea shop?,But it doesn't have to be the only reward. How would you like to have your own tea shop?,Tim Hedrick,Lauren MacMullan,9.1 +8199,8199,Earth,2,Lake Laogai,17,Iroh,"[Frontal view. Pao looks around, concerned.] My own tea shop? This is a dream come true!",My own tea shop? This is a dream come true!,Tim Hedrick,Lauren MacMullan,9.1 +8200,8200,Earth,2,Lake Laogai,17,Pao,[Quickly moving to stand between the group.] What's going on here? Are you trying to poach my tea-maker?,What's going on here? Are you trying to poach my tea-maker?,Tim Hedrick,Lauren MacMullan,9.1 +8201,8201,Earth,2,Lake Laogai,17,Quon,"Sorry Pao, but that's business for you, am I right?","Sorry Pao, but that's business for you, am I right?",Tim Hedrick,Lauren MacMullan,9.1 +8202,8202,Earth,2,Lake Laogai,17,Pao,"Mushi, if you stay, I'll make you assistant manager. Wait, senior assistant manager!","Mushi, if you stay, I'll make you assistant manager. Wait, senior assistant manager!",Tim Hedrick,Lauren MacMullan,9.1 +8203,8203,Earth,2,Lake Laogai,17,Quon,"I'll provide you with a new apartment in the Upper Ring. [Cut to Zuko, who was busy putting empty tea cups on a tray, but now looks up and glances over his shoulder to follow Quon's offer more closely; voice-over.] The tea shop is yours to do whatever you want, [Cut back to frontal shot of Quon.] complete creative freedom.","I'll provide you with a new apartment in the Upper Ring. The tea shop is yours to do whatever you want, complete creative freedom.",Tim Hedrick,Lauren MacMullan,9.1 +8204,8204,Earth,2,Lake Laogai,17,Iroh,I even get to name the shop?,I even get to name the shop?,Tim Hedrick,Lauren MacMullan,9.1 +8205,8205,Earth,2,Lake Laogai,17,Quon,Of course!,Of course!,Tim Hedrick,Lauren MacMullan,9.1 +8206,8206,Earth,2,Lake Laogai,17,Pao,"Uh, senior executive assistant manager?","Uh, senior executive assistant manager?",Tim Hedrick,Lauren MacMullan,9.1 +8207,8207,Earth,2,Lake Laogai,17,Scene Description,"Iroh hands him the pot of tea and bows to the customer, agreeing to the terms. Zuko walks by, as Pao walks away sadly.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8208,8208,Earth,2,Lake Laogai,17,Iroh,"Did you hear, nephew? This man wants to give us our own tea shop in the Upper Ring of the city!","Did you hear, nephew? This man wants to give us our own tea shop in the Upper Ring of the city!",Tim Hedrick,Lauren MacMullan,9.1 +8209,8209,Earth,2,Lake Laogai,17,Quon,"That's right, young man, your life is about to change for the better!","That's right, young man, your life is about to change for the better!",Tim Hedrick,Lauren MacMullan,9.1 +8210,8210,Earth,2,Lake Laogai,17,Zuko,"[Sarcastically.] I'll try to contain my joy. [Walks outside, slams door shut.]",I'll try to contain my joy.,Tim Hedrick,Lauren MacMullan,9.1 +8211,8211,Earth,2,Lake Laogai,17,Scene Description,"As he walks outside, he grabs a falling Appa poster. He climbs to the top of a house and notices several of them falling. He searches the skies for any sign of the Avatar. +Back at the house. Sokka and Katara are playing a game. Toph is just relaxing as Aang re-enters.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8212,8212,Earth,2,Lake Laogai,17,Aang,I just finished dropping all the leaflets. Has anyone come in with news about Appa?,I just finished dropping all the leaflets. Has anyone come in with news about Appa?,Tim Hedrick,Lauren MacMullan,9.1 +8213,8213,Earth,2,Lake Laogai,17,Katara,It's only been a day. Just be patient. [Aang sits.],It's only been a day. Just be patient.,Tim Hedrick,Lauren MacMullan,9.1 +8214,8214,Earth,2,Lake Laogai,17,Scene Description,A knock at the door and Aang jumps up and runs to the door.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8215,8215,Earth,2,Lake Laogai,17,Aang,"Wow, you're right! Patience really pays off! [Opens the door.] Joo Dee?","Wow, you're right! Patience really pays off! Joo Dee?",Tim Hedrick,Lauren MacMullan,9.1 +8216,8216,Earth,2,Lake Laogai,17,Joo Dee,"Hello, Aang, and Katara, and Sokka, and Toph.","Hello, Aang, and Katara, and Sokka, and Toph.",Tim Hedrick,Lauren MacMullan,9.1 +8217,8217,Earth,2,Lake Laogai,17,Sokka,[They approach as Joo Dee enters.] What happened to you? Did the Dai Li throw you in jail?,What happened to you? Did the Dai Li throw you in jail?,Tim Hedrick,Lauren MacMullan,9.1 +8218,8218,Earth,2,Lake Laogai,17,Joo Dee,What? Jail? Of course not. The Dai Li are the protectors of our cultural heritage.,What? Jail? Of course not. The Dai Li are the protectors of our cultural heritage.,Tim Hedrick,Lauren MacMullan,9.1 +8219,8219,Earth,2,Lake Laogai,17,Toph,But you disappeared at the Earth King's party.,But you disappeared at the Earth King's party.,Tim Hedrick,Lauren MacMullan,9.1 +8220,8220,Earth,2,Lake Laogai,17,Joo Dee,"Oh, I simply took a short vacation to Lake Laogai, out in the country. It was quite relaxing.","Oh, I simply took a short vacation to Lake Laogai, out in the country. It was quite relaxing.",Tim Hedrick,Lauren MacMullan,9.1 +8221,8221,Earth,2,Lake Laogai,17,Katara,But then they replaced you with some other woman who also said her name was Joo Dee.,But then they replaced you with some other woman who also said her name was Joo Dee.,Tim Hedrick,Lauren MacMullan,9.1 +8222,8222,Earth,2,Lake Laogai,17,Joo Dee,[Surprised.] I'm Joo Dee.,I'm Joo Dee.,Tim Hedrick,Lauren MacMullan,9.1 +8223,8223,Earth,2,Lake Laogai,17,Aang,Why are you here?,Why are you here?,Tim Hedrick,Lauren MacMullan,9.1 +8224,8224,Earth,2,Lake Laogai,17,Joo Dee,Dropping fliers and putting up posters isn't permitted within the city. Not without proper clearance.,Dropping fliers and putting up posters isn't permitted within the city. Not without proper clearance.,Tim Hedrick,Lauren MacMullan,9.1 +8225,8225,Earth,2,Lake Laogai,17,Sokka,We can't wait around to get permission for everything.,We can't wait around to get permission for everything.,Tim Hedrick,Lauren MacMullan,9.1 +8226,8226,Earth,2,Lake Laogai,17,Joo Dee,You are absolutely forbidden by the rules of the city to continue putting up posters.,You are absolutely forbidden by the rules of the city to continue putting up posters.,Tim Hedrick,Lauren MacMullan,9.1 +8227,8227,Earth,2,Lake Laogai,17,Aang,"[Angrily yelling; during this brief argument, Aang is shown as a chibi.] We don't care about the rules and we're not asking permission! We're finding Appa on our own and you should just stay out of our way! [Slams the door as she exits.]",We don't care about the rules and we're not asking permission! We're finding Appa on our own and you should just stay out of our way!,Tim Hedrick,Lauren MacMullan,9.1 +8228,8228,Earth,2,Lake Laogai,17,Sokka,That might come back to bite us in the blubber.,That might come back to bite us in the blubber.,Tim Hedrick,Lauren MacMullan,9.1 +8229,8229,Earth,2,Lake Laogai,17,Aang,"[Calming down.] I don't care! From now on, we do whatever it takes to find Appa!","I don't care! From now on, we do whatever it takes to find Appa!",Tim Hedrick,Lauren MacMullan,9.1 +8230,8230,Earth,2,Lake Laogai,17,Toph,"Yeah, let's break some rules! [Takes out a side of the house with earthbending.]","Yeah, let's break some rules!",Tim Hedrick,Lauren MacMullan,9.1 +8231,8231,Earth,2,Lake Laogai,17,Scene Description,"Momo flies out the broken side of the house and they all exit. Two Dai Li agents watch overhead from a house roof across the street. +The scene changes to the Royal Palace, where Long Feng meets with that particular Joo Dee. Two Dai Li agents stand guard.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8232,8232,Earth,2,Lake Laogai,17,Long Feng,"I'm very disappointed in your work with the Avatar and his friends, Joo Dee. I had hoped that you would be able to control this situation.","I'm very disappointed in your work with the Avatar and his friends, Joo Dee. I had hoped that you would be able to control this situation.",Tim Hedrick,Lauren MacMullan,9.1 +8233,8233,Earth,2,Lake Laogai,17,Joo Dee,"I am so sorry, but they don't trust me anymore. [Starts getting upset.] I don't think I can keep working like this! [Begins to sob.]","I am so sorry, but they don't trust me anymore. I don't think I can keep working like this!",Tim Hedrick,Lauren MacMullan,9.1 +8234,8234,Earth,2,Lake Laogai,17,Long Feng,"Joo Dee, the Earth King has invited you to Lake Laogai.","Joo Dee, the Earth King has invited you to Lake Laogai.",Tim Hedrick,Lauren MacMullan,9.1 +8235,8235,Earth,2,Lake Laogai,17,Joo Dee,[Camera zooms toward her eye as its iris dilates.] I am honored to accept his invitation.,I am honored to accept his invitation.,Tim Hedrick,Lauren MacMullan,9.1 +8236,8236,Earth,2,Lake Laogai,17,Long Feng,"[Nods.] Good. Now go await further orders. [Joo Dee nods and begins to exit. Long Feng gets up and moves to the fireplace.] If the Avatar keeps searching for his bison, it could upset the delicate balance we've worked so hard to achieve in this city. It could even cost us control of the Earth King.","Good. Now go await further orders. If the Avatar keeps searching for his bison, it could upset the delicate balance we've worked so hard to achieve in this city. It could even cost us control of the Earth King.",Tim Hedrick,Lauren MacMullan,9.1 +8237,8237,Earth,2,Lake Laogai,17,Dai Li agent,Should we take care of him?,Should we take care of him?,Tim Hedrick,Lauren MacMullan,9.1 +8238,8238,Earth,2,Lake Laogai,17,Long Feng,No. It's much too dangerous for us to confront him directly. Let's see if we can still handle this quietly.,No. It's much too dangerous for us to confront him directly. Let's see if we can still handle this quietly.,Tim Hedrick,Lauren MacMullan,9.1 +8239,8239,Earth,2,Lake Laogai,17,Scene Description,"At Iroh and Zuko's place of stay, which is about to change. Zuko enters Iroh's room. Iroh is packing his clothes.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8240,8240,Earth,2,Lake Laogai,17,Iroh,"So, I was thinking about names for my new tea shop. How about the Jasmine Dragon? It's dramatic, poetic, has a nice ring to it.","So, I was thinking about names for my new tea shop. How about the Jasmine Dragon? It's dramatic, poetic, has a nice ring to it.",Tim Hedrick,Lauren MacMullan,9.1 +8241,8241,Earth,2,Lake Laogai,17,Zuko,[Shows Iroh the flyer.] The Avatar is here in Ba Sing Se and he's lost his bison.,The Avatar is here in Ba Sing Se and he's lost his bison.,Tim Hedrick,Lauren MacMullan,9.1 +8242,8242,Earth,2,Lake Laogai,17,Iroh,"[Grabs the flyer.] We have a chance for a new life here. [Cut to Zuko looking out a window.] If you start stirring up trouble, we could lose all the good things that are happening for us.","We have a chance for a new life here. If you start stirring up trouble, we could lose all the good things that are happening for us.",Tim Hedrick,Lauren MacMullan,9.1 +8243,8243,Earth,2,Lake Laogai,17,Zuko,[Turns to Iroh.] Good things that are happening for you! Have you ever thought that I want more from life than a nice apartment and a job serving tea?,Good things that are happening for you! Have you ever thought that I want more from life than a nice apartment and a job serving tea?,Tim Hedrick,Lauren MacMullan,9.1 +8244,8244,Earth,2,Lake Laogai,17,Iroh,There is nothing wrong with a life of peace and prosperity. I suggest you think about what it is that you want from your life and why.,There is nothing wrong with a life of peace and prosperity. I suggest you think about what it is that you want from your life and why.,Tim Hedrick,Lauren MacMullan,9.1 +8245,8245,Earth,2,Lake Laogai,17,Zuko,I want my destiny.,I want my destiny.,Tim Hedrick,Lauren MacMullan,9.1 +8246,8246,Earth,2,Lake Laogai,17,Iroh,"What that means is up to you. [Zuko walks away.] The Tea Weevil! No, that's stupid.","What that means is up to you. The Tea Weevil! No, that's stupid.",Tim Hedrick,Lauren MacMullan,9.1 +8247,8247,Earth,2,Lake Laogai,17,Scene Description,"Cut back to Team Avatar, who are working to put up more posters.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8248,8248,Earth,2,Lake Laogai,17,Sokka,"We'll split up to cover more area. Toph, I guess you should just come with me.","We'll split up to cover more area. Toph, I guess you should just come with me.",Tim Hedrick,Lauren MacMullan,9.1 +8249,8249,Earth,2,Lake Laogai,17,Toph,"[Peevishly.] Why? Because you think I can't put up posters on my own?! [Angrily takes the paintbrush of glue from Sokka and throws glue on the wall. She puts up a poster, but it is backward.] It's upside-down, isn't it? I'll just go with Sokka.","Why? Because you think I can't put up posters on my own?! It's upside-down, isn't it? I'll just go with Sokka.",Tim Hedrick,Lauren MacMullan,9.1 +8250,8250,Earth,2,Lake Laogai,17,Scene Description,"They all go their separate ways, with Toph following Sokka. Cut to an open square, where Katara is putting up a poster on a stone plinth near a flowing water stream. Suddenly, behind her, she hears a familiar voice call out.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8251,8251,Earth,2,Lake Laogai,17,Jet,Katara?,Katara?,Tim Hedrick,Lauren MacMullan,9.1 +8252,8252,Earth,2,Lake Laogai,17,Scene Description,Jet is seen emerging from an alleyway at the edge of the square. Katara wheels around with a startled gasp.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8253,8253,Earth,2,Lake Laogai,17,Jet,"[Walks closer. Smiling confidently.] I think I can help you. [Katara's shocked blush transforms into a look of pure outrage. With a sweep of her arms, she bends up water from a lake directly at him while screaming in rage. Jet looks at the wave in fright.] Katara, I've changed!","I think I can help you. Katara, I've changed!",Tim Hedrick,Lauren MacMullan,9.1 +8254,8254,Earth,2,Lake Laogai,17,Scene Description,"The wave hits Jet, sending him back quite a distance.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8255,8255,Earth,2,Lake Laogai,17,Katara,"[Bending up remaining water from the wave.] Tell it to some other girl, Jet! [Turns the water to ice, which sends Jet back to a wall.]","Tell it to some other girl, Jet!",Tim Hedrick,Lauren MacMullan,9.1 +8256,8256,Earth,2,Lake Laogai,17,Jet,"[Blocks the ice with his swords.] I don't want to fight you, I'm here to help!","I don't want to fight you, I'm here to help!",Tim Hedrick,Lauren MacMullan,9.1 +8257,8257,Earth,2,Lake Laogai,17,Scene Description,"Throws his swords down, and reaches for something behind his back. Katara quickly fires more ice crystals, which pin him to the wall. The rest of the team approaches.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8258,8258,Earth,2,Lake Laogai,17,Sokka,"Katara, what is it?","Katara, what is it?",Tim Hedrick,Lauren MacMullan,9.1 +8259,8259,Earth,2,Lake Laogai,17,Katara,Jet's back. [Close-up of Jet's face. Cut to aerial view before switching to a closer view of the group.] We can't trust anything Jet says.,Jet's back. We can't trust anything Jet says.,Tim Hedrick,Lauren MacMullan,9.1 +8260,8260,Earth,2,Lake Laogai,17,Sokka,But we don't even know why he's here!,But we don't even know why he's here!,Tim Hedrick,Lauren MacMullan,9.1 +8261,8261,Earth,2,Lake Laogai,17,Katara,"I don't care why he's here, whatever the reason is, it can't be good!","I don't care why he's here, whatever the reason is, it can't be good!",Tim Hedrick,Lauren MacMullan,9.1 +8262,8262,Earth,2,Lake Laogai,17,Jet,I'm here to help you find Appa! [Opens his hand and reveals he is holding a missing Appa poster.],I'm here to help you find Appa!,Tim Hedrick,Lauren MacMullan,9.1 +8263,8263,Earth,2,Lake Laogai,17,Aang,"[Turning from the leaflet back to Katara.] Katara, we have to give him a chance.","Katara, we have to give him a chance.",Tim Hedrick,Lauren MacMullan,9.1 +8264,8264,Earth,2,Lake Laogai,17,Jet,"I swear, I've changed! I was a troubled person and I let my anger get out of control, but I don't even have the gang now! I've put all that behind me!","I swear, I've changed! I was a troubled person and I let my anger get out of control, but I don't even have the gang now! I've put all that behind me!",Tim Hedrick,Lauren MacMullan,9.1 +8265,8265,Earth,2,Lake Laogai,17,Katara,You're lying!,You're lying!,Tim Hedrick,Lauren MacMullan,9.1 +8266,8266,Earth,2,Lake Laogai,17,Toph,[Walks up to Jet and feels the wall he is pinned to.] He's not lying.,He's not lying.,Tim Hedrick,Lauren MacMullan,9.1 +8267,8267,Earth,2,Lake Laogai,17,Sokka,How can you tell?,How can you tell?,Tim Hedrick,Lauren MacMullan,9.1 +8268,8268,Earth,2,Lake Laogai,17,Toph,"I can feel his breathing and heartbeat. When people lie, there's a physical reaction. He's telling the truth.","I can feel his breathing and heartbeat. When people lie, there's a physical reaction. He's telling the truth.",Tim Hedrick,Lauren MacMullan,9.1 +8269,8269,Earth,2,Lake Laogai,17,Aang,"Katara, we don't have any leads. If Jet says he can take us to Appa, we have to check it out.","Katara, we don't have any leads. If Jet says he can take us to Appa, we have to check it out.",Tim Hedrick,Lauren MacMullan,9.1 +8270,8270,Earth,2,Lake Laogai,17,Katara,All right. [Points and looks angrily at Jet.] But we're not letting you out of our sight.,All right. But we're not letting you out of our sight.,Tim Hedrick,Lauren MacMullan,9.1 +8271,8271,Earth,2,Lake Laogai,17,Scene Description,"She stabs her finger at Jet once more for emphasis, eyes narrowed. Cut to Jet entering a dimly lit warehouse, which sits empty except for a few sacks and a pile of canvas and rope.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8272,8272,Earth,2,Lake Laogai,17,Jet,This is the place I heard about.,This is the place I heard about.,Tim Hedrick,Lauren MacMullan,9.1 +8273,8273,Earth,2,Lake Laogai,17,Aang,There's nothing here.,There's nothing here.,Tim Hedrick,Lauren MacMullan,9.1 +8274,8274,Earth,2,Lake Laogai,17,Katara,[Preparing to waterbend in defense.] If this is a trap–,If this is a trap–,Tim Hedrick,Lauren MacMullan,9.1 +8275,8275,Earth,2,Lake Laogai,17,Jet,"I told you, I work nearby! Two guys were talking about some giant furry creature they had, I figured it must be Appa!","I told you, I work nearby! Two guys were talking about some giant furry creature they had, I figured it must be Appa!",Tim Hedrick,Lauren MacMullan,9.1 +8276,8276,Earth,2,Lake Laogai,17,Toph,He was here! [She shows them a clump of Appa's fur.],He was here!,Tim Hedrick,Lauren MacMullan,9.1 +8277,8277,Earth,2,Lake Laogai,17,Aang,[Sadly.] We missed him. [An old white haired man with a push-broom crosses behind the slumping Aang.],We missed him.,Tim Hedrick,Lauren MacMullan,9.1 +8278,8278,Earth,2,Lake Laogai,17,Old Sweepy,"They took that big thing yesterday. [Aang straightens with a shocked look.] Shipped him out to some island. About time, I've been cleaning up fur, and various, uhhh ... leavings all day.","They took that big thing yesterday. Shipped him out to some island. About time, I've been cleaning up fur, and various, uhhh ... leavings all day.",Tim Hedrick,Lauren MacMullan,9.1 +8279,8279,Earth,2,Lake Laogai,17,Aang,[Aang swiftly moves closer to the man.] What island? Where's Appa?,What island? Where's Appa?,Tim Hedrick,Lauren MacMullan,9.1 +8280,8280,Earth,2,Lake Laogai,17,Old Sweepy,"Foreman said some rich royal type on Whaletail Island bought him up. Guess for a zoo or such. Though, could be the meat that'd be good.","Foreman said some rich royal type on Whaletail Island bought him up. Guess for a zoo or such. Though, could be the meat that'd be good.",Tim Hedrick,Lauren MacMullan,9.1 +8281,8281,Earth,2,Lake Laogai,17,Aang,We've got to get to Whaletail Island! [Pauses.] Where's Whaletail Island? [Dejectedly.],We've got to get to Whaletail Island! Where's Whaletail Island?,Tim Hedrick,Lauren MacMullan,9.1 +8282,8282,Earth,2,Lake Laogai,17,Sokka,"[Looking at map.] Far, very far. [Puts the map on the ground as they all gather round.] Here it is. It's near the South Pole, almost all the way back home.","Far, very far. Here it is. It's near the South Pole, almost all the way back home.",Tim Hedrick,Lauren MacMullan,9.1 +8283,8283,Earth,2,Lake Laogai,17,Katara,"Aang, it will take us weeks just to get to the tip of the Earth Kingdom. And then we'll need to find a boat to get to the island.","Aang, it will take us weeks just to get to the tip of the Earth Kingdom. And then we'll need to find a boat to get to the island.",Tim Hedrick,Lauren MacMullan,9.1 +8284,8284,Earth,2,Lake Laogai,17,Aang,I don't care. We have a chance to find Appa! We have to try!,I don't care. We have a chance to find Appa! We have to try!,Tim Hedrick,Lauren MacMullan,9.1 +8285,8285,Earth,2,Lake Laogai,17,Old Sweepy,Must be nice to visit an island. I haven't had a vacation for years.,Must be nice to visit an island. I haven't had a vacation for years.,Tim Hedrick,Lauren MacMullan,9.1 +8286,8286,Earth,2,Lake Laogai,17,Katara,Don't you have some more hair to clean up?,Don't you have some more hair to clean up?,Tim Hedrick,Lauren MacMullan,9.1 +8287,8287,Earth,2,Lake Laogai,17,Old Sweepy,"Shuffle on, I get you. No more need for Old Sweepy ...","Shuffle on, I get you. No more need for Old Sweepy ...",Tim Hedrick,Lauren MacMullan,9.1 +8288,8288,Earth,2,Lake Laogai,17,Katara,"You're right Aang, right now our first concern has to be finding Appa. We can come back when we have him.","You're right Aang, right now our first concern has to be finding Appa. We can come back when we have him.",Tim Hedrick,Lauren MacMullan,9.1 +8289,8289,Earth,2,Lake Laogai,17,Sokka,"All right, let's get moving.","All right, let's get moving.",Tim Hedrick,Lauren MacMullan,9.1 +8290,8290,Earth,2,Lake Laogai,17,Jet,I'll come with you.,I'll come with you.,Tim Hedrick,Lauren MacMullan,9.1 +8291,8291,Earth,2,Lake Laogai,17,Katara,We don't need your help!,We don't need your help!,Tim Hedrick,Lauren MacMullan,9.1 +8292,8292,Earth,2,Lake Laogai,17,Jet,Why won't you trust me? [Walks after Sokka and Aang.],Why won't you trust me?,Tim Hedrick,Lauren MacMullan,9.1 +8293,8293,Earth,2,Lake Laogai,17,Katara,"Gee, I wonder.","Gee, I wonder.",Tim Hedrick,Lauren MacMullan,9.1 +8294,8294,Earth,2,Lake Laogai,17,Toph,[After Jet walks away.] Was this guy your boyfriend or something?,Was this guy your boyfriend or something?,Tim Hedrick,Lauren MacMullan,9.1 +8295,8295,Earth,2,Lake Laogai,17,Katara,What ... no!,What ... no!,Tim Hedrick,Lauren MacMullan,9.1 +8296,8296,Earth,2,Lake Laogai,17,Toph,[Smiles.] I can tell you're lying ... [Katara runs away from her.],I can tell you're lying ...,Tim Hedrick,Lauren MacMullan,9.1 +8297,8297,Earth,2,Lake Laogai,17,Scene Description,Back within the city,NA,Tim Hedrick,Lauren MacMullan,9.1 +8298,8298,Earth,2,Lake Laogai,17,Sokka,We can take the train out to the wall but then we'll have to walk.,We can take the train out to the wall but then we'll have to walk.,Tim Hedrick,Lauren MacMullan,9.1 +8299,8299,Earth,2,Lake Laogai,17,Aang,"Don't worry, on the way back we'll be flying!","Don't worry, on the way back we'll be flying!",Tim Hedrick,Lauren MacMullan,9.1 +8300,8300,Earth,2,Lake Laogai,17,Toph,We're finally leaving Ba Sing Se. [Spreads her arms outward in celebration.] Worst ... city ... ever!,We're finally leaving Ba Sing Se. Worst ... city ... ever!,Tim Hedrick,Lauren MacMullan,9.1 +8301,8301,Earth,2,Lake Laogai,17,Scene Description,Smellerbee and Longshot appear in the background and notice Jet.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8302,8302,Earth,2,Lake Laogai,17,Smellerbee,[Surprised.] Jet!,Jet!,Tim Hedrick,Lauren MacMullan,9.1 +8303,8303,Earth,2,Lake Laogai,17,Katara,"[Looks at Jet angrily.] I thought you said you didn't have your ""gang"" anymore!","I thought you said you didn't have your ""gang"" anymore!",Tim Hedrick,Lauren MacMullan,9.1 +8304,8304,Earth,2,Lake Laogai,17,Jet,"[Turns to look at Smellerbee, confused.] I don't!",I don't!,Tim Hedrick,Lauren MacMullan,9.1 +8305,8305,Earth,2,Lake Laogai,17,Smellerbee,[Runs up to Jet and hugs him.] We were so worried. How did you get away from the Dai Li? [Camera quickly zooms in to Katara's shocked face.],We were so worried. How did you get away from the Dai Li?,Tim Hedrick,Lauren MacMullan,9.1 +8306,8306,Earth,2,Lake Laogai,17,Katara,[Shocked.] The Dai Li?!,The Dai Li?!,Tim Hedrick,Lauren MacMullan,9.1 +8307,8307,Earth,2,Lake Laogai,17,Jet,I don't know what she's talking about!,I don't know what she's talking about!,Tim Hedrick,Lauren MacMullan,9.1 +8308,8308,Earth,2,Lake Laogai,17,Smellerbee,He got arrested by the Dai Li a couple of weeks ago. We saw them drag him away!,He got arrested by the Dai Li a couple of weeks ago. We saw them drag him away!,Tim Hedrick,Lauren MacMullan,9.1 +8309,8309,Earth,2,Lake Laogai,17,Jet,Why would I be arrested? I've been living peacefully in the city!,Why would I be arrested? I've been living peacefully in the city!,Tim Hedrick,Lauren MacMullan,9.1 +8310,8310,Earth,2,Lake Laogai,17,Toph,[Feeling the ground between Jet and Smellerbee.] This doesn't make any sense. They're both telling the truth.,This doesn't make any sense. They're both telling the truth.,Tim Hedrick,Lauren MacMullan,9.1 +8311,8311,Earth,2,Lake Laogai,17,Katara,That's impossible.,That's impossible.,Tim Hedrick,Lauren MacMullan,9.1 +8312,8312,Earth,2,Lake Laogai,17,Sokka,No it's not! Toph can't tell who's lying because they both think they're telling the truth. Jet's been brainwashed!,No it's not! Toph can't tell who's lying because they both think they're telling the truth. Jet's been brainwashed!,Tim Hedrick,Lauren MacMullan,9.1 +8313,8313,Earth,2,Lake Laogai,17,Jet,That's crazy! It can't be! [Glances to the sides.] Stay away from me!,That's crazy! It can't be! Stay away from me!,Tim Hedrick,Lauren MacMullan,9.1 +8314,8314,Earth,2,Lake Laogai,17,Scene Description,"They all surround him. Cut to the moon in the night sky. Cut to a Dai Li agent walking the streets. Zuko, disguised as the Blue Spirit, runs by.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8315,8315,Earth,2,Lake Laogai,17,Zuko,"Out of my way, skinny!","Out of my way, skinny!",Tim Hedrick,Lauren MacMullan,9.1 +8316,8316,Earth,2,Lake Laogai,17,Scene Description,"The agent prepares to use his rock glove, but pauses when the disguised man turns into an alley. The agent runs to the alley and sees a figure that appears to be him. He fires his rock gloves at the figure's chest and head, knocking off the stuffed figure's head and knocking it down.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8317,8317,Earth,2,Lake Laogai,17,Dai Li agent,Huh?,Huh?,Tim Hedrick,Lauren MacMullan,9.1 +8318,8318,Earth,2,Lake Laogai,17,Scene Description,"There is the whisper of a drawn blade behind him and Zuko, still disguised, captures him and places one of his swords to the agent's neck.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8319,8319,Earth,2,Lake Laogai,17,Zuko,"If you don't want to end up like him, you'll do what I say.","If you don't want to end up like him, you'll do what I say.",Tim Hedrick,Lauren MacMullan,9.1 +8320,8320,Earth,2,Lake Laogai,17,Scene Description,"Back in an unknown building, Team Avatar, Longshot, and Smellerbee all surrounding a seated Jet.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8321,8321,Earth,2,Lake Laogai,17,Katara,"The Dai Li must have sent Jet to mislead us, and that janitor was part of their plot, too!","The Dai Li must have sent Jet to mislead us, and that janitor was part of their plot, too!",Tim Hedrick,Lauren MacMullan,9.1 +8322,8322,Earth,2,Lake Laogai,17,Aang,I bet they have Appa here in the city. Maybe he's in the same place they took Jet! Where did they take you?,I bet they have Appa here in the city. Maybe he's in the same place they took Jet! Where did they take you?,Tim Hedrick,Lauren MacMullan,9.1 +8323,8323,Earth,2,Lake Laogai,17,Jet,Nowhere! I- I don't know what you're talking about!,Nowhere! I- I don't know what you're talking about!,Tim Hedrick,Lauren MacMullan,9.1 +8324,8324,Earth,2,Lake Laogai,17,Aang,We need to find a way to jog his real memories.,We need to find a way to jog his real memories.,Tim Hedrick,Lauren MacMullan,9.1 +8325,8325,Earth,2,Lake Laogai,17,Sokka,[Teasingly.] Maybe Katara should kiss him. That should bring something back!,Maybe Katara should kiss him. That should bring something back!,Tim Hedrick,Lauren MacMullan,9.1 +8326,8326,Earth,2,Lake Laogai,17,Katara,"Maybe you should kiss him, Sokka!","Maybe you should kiss him, Sokka!",Tim Hedrick,Lauren MacMullan,9.1 +8327,8327,Earth,2,Lake Laogai,17,Sokka,"Hey, just an idea!","Hey, just an idea!",Tim Hedrick,Lauren MacMullan,9.1 +8328,8328,Earth,2,Lake Laogai,17,Aang,A bad one.,A bad one.,Tim Hedrick,Lauren MacMullan,9.1 +8329,8329,Earth,2,Lake Laogai,17,Sokka,"Ooh, wait! I've got it!","Ooh, wait! I've got it!",Tim Hedrick,Lauren MacMullan,9.1 +8330,8330,Earth,2,Lake Laogai,17,Scene Description,"Sokka plucks a straw from his mattress, pokes it into Jet's mouth in trademark fashion and regards him thoughtfully.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8331,8331,Earth,2,Lake Laogai,17,Jet,I don't think it's working. [Spits it out.],I don't think it's working.,Tim Hedrick,Lauren MacMullan,9.1 +8332,8332,Earth,2,Lake Laogai,17,Toph,Try to think of something from your past that triggers your emotions.,Try to think of something from your past that triggers your emotions.,Tim Hedrick,Lauren MacMullan,9.1 +8333,8333,Earth,2,Lake Laogai,17,Smellerbee,The Fire Nation! Remember what they did to your family!,The Fire Nation! Remember what they did to your family!,Tim Hedrick,Lauren MacMullan,9.1 +8334,8334,Earth,2,Lake Laogai,17,Katara,Close your eyes. Picture it.,Close your eyes. Picture it.,Tim Hedrick,Lauren MacMullan,9.1 +8335,8335,Earth,2,Lake Laogai,17,Scene Description,"Jet closes his eyes, while sweat beads start to form on his forehead. His eyes suddenly snap wide open and he sees images of himself at a younger age watching his town burning down and Mongke looking back at him.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8336,8336,Earth,2,Lake Laogai,17,Jet,[Sweating.] No! It's too painful!,No! It's too painful!,Tim Hedrick,Lauren MacMullan,9.1 +8337,8337,Earth,2,Lake Laogai,17,Katara,"Maybe this will help. [Takes water and puts it around his ears, using healing to clear his mind.]",Maybe this will help.,Tim Hedrick,Lauren MacMullan,9.1 +8338,8338,Earth,2,Lake Laogai,17,Scene Description,"Jet looks up from the floor and sees an image of Long Feng standing above a lake. Long Feng stares at Jet, and Jet sinks down under the lake into an underground room. He sees an image of a Dai Li agent shining a spinning light in his face.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8339,8339,Earth,2,Lake Laogai,17,Jet,They took me to a headquarters under the water. Like a lake!,They took me to a headquarters under the water. Like a lake!,Tim Hedrick,Lauren MacMullan,9.1 +8340,8340,Earth,2,Lake Laogai,17,Sokka,Wait! Remember what Joo Dee said? She said she went on vacation to Lake Laogai!,Wait! Remember what Joo Dee said? She said she went on vacation to Lake Laogai!,Tim Hedrick,Lauren MacMullan,9.1 +8341,8341,Earth,2,Lake Laogai,17,Jet,[Stands up.] That's it! Lake Laogai.,That's it! Lake Laogai.,Tim Hedrick,Lauren MacMullan,9.1 +8342,8342,Earth,2,Lake Laogai,17,Scene Description,"Fade to an aerial shot of Lake Laogai. The camera pans down to show Team Avatar, Jet, Longshot, and Smellerbee standing at the edge of the lake.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8343,8343,Earth,2,Lake Laogai,17,Sokka,So where's this secret headquarters?,So where's this secret headquarters?,Tim Hedrick,Lauren MacMullan,9.1 +8344,8344,Earth,2,Lake Laogai,17,Jet,"Under the water, I think.","Under the water, I think.",Tim Hedrick,Lauren MacMullan,9.1 +8345,8345,Earth,2,Lake Laogai,17,Toph,There's a tunnel right there by the shore.,There's a tunnel right there by the shore.,Tim Hedrick,Lauren MacMullan,9.1 +8346,8346,Earth,2,Lake Laogai,17,Scene Description,Toph points to the side and whistles as she walks to the edge of the shore. She uses her earthbending to bring up a slab of rock with an entrance. She moves the rock out the way with the same technique. They all look down at the tunnel and Momo flies away. Cut to them inside the secret headquarters. Jet checks to make sure the coast is clear and they walk down a long hallway.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8347,8347,Earth,2,Lake Laogai,17,Jet,It's all starting to come back to me!,It's all starting to come back to me!,Tim Hedrick,Lauren MacMullan,9.1 +8348,8348,Earth,2,Lake Laogai,17,Scene Description,Jet walks past a room where a member of the Dai Li brainwashes a group of women.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8349,8349,Earth,2,Lake Laogai,17,Brainwasher,I'm Joo Dee. Welcome to Ba Sing Se.,I'm Joo Dee. Welcome to Ba Sing Se.,Tim Hedrick,Lauren MacMullan,9.1 +8350,8350,Earth,2,Lake Laogai,17,Joo Dees,I'm Joo Dee. Welcome to Ba Sing Se.,I'm Joo Dee. Welcome to Ba Sing Se.,Tim Hedrick,Lauren MacMullan,9.1 +8351,8351,Earth,2,Lake Laogai,17,Brainwasher,We're so lucky to have our walls to create order.,We're so lucky to have our walls to create order.,Tim Hedrick,Lauren MacMullan,9.1 +8352,8352,Earth,2,Lake Laogai,17,Joo Dees,We're so lucky to have our walls to create order.,We're so lucky to have our walls to create order.,Tim Hedrick,Lauren MacMullan,9.1 +8353,8353,Earth,2,Lake Laogai,17,Jet,I think there might be a cell big enough to hold Appa up ahead. I think it's through here! [Opens a door.],I think there might be a cell big enough to hold Appa up ahead. I think it's through here!,Tim Hedrick,Lauren MacMullan,9.1 +8354,8354,Earth,2,Lake Laogai,17,Scene Description,"Cut to Appa chained up as a door opens in his cell and Appa wakes up. Cut to Zuko standing at the door, disguised as the Blue Spirit.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8355,8355,Earth,2,Lake Laogai,17,Zuko,Expecting someone else?,Expecting someone else?,Tim Hedrick,Lauren MacMullan,9.1 +8356,8356,Earth,2,Lake Laogai,17,Scene Description,"Jet opens the other door. An overhead shot reveals several Dai Li agents waiting on the ceiling. The door closes suddenly behind them. Lights turn on, revealing the agents.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8357,8357,Earth,2,Lake Laogai,17,Sokka,Now that's something different.,Now that's something different.,Tim Hedrick,Lauren MacMullan,9.1 +8358,8358,Earth,2,Lake Laogai,17,Long Feng,You have made yourselves enemies of the state. Take them into custody.,You have made yourselves enemies of the state. Take them into custody.,Tim Hedrick,Lauren MacMullan,9.1 +8359,8359,Earth,2,Lake Laogai,17,Scene Description,"The Dai Li agents jump off the ceiling and surround them. Two agents fire rock gloves, but Toph breaks them up and sends the two agents flying through the air with rock pillars. Jet runs toward the agents and breaks two other gloves fired by agents with his swords, and trips another. A full battle ensues. Aang deals with a pair of Dai Li agents. Sokka and Katara destroy two Dai Li gloves, but a second pair grabs them. +Toph saves them by creating a rock wall and she raises ground up. Toph knocks away the four Dai Li agents that attack her, but a glove captures her and Jet swings by to free her. The agent fires his other rock glove, and Longshot fires an arrow, which destroys the glove. Jet jumps in front of Longshot to hold off more of their rock attacks. Long Feng escapes.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8360,8360,Earth,2,Lake Laogai,17,Aang,[Knocks away two agents with airbending.] Long Feng is escaping!,Long Feng is escaping!,Tim Hedrick,Lauren MacMullan,9.1 +8361,8361,Earth,2,Lake Laogai,17,Scene Description,"Jet and Aang chase him. They head into another part of the headquarters with many pipes of all sizes sticking out of the walls, with some of them pouring out water, but are sealed in by Long Feng.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8362,8362,Earth,2,Lake Laogai,17,Long Feng,"All right, Avatar, you've caused me enough problems. This is your last chance ... if you want your bison back.","All right, Avatar, you've caused me enough problems. This is your last chance ... if you want your bison back.",Tim Hedrick,Lauren MacMullan,9.1 +8363,8363,Earth,2,Lake Laogai,17,Aang,You do have Appa! Tell me where he is!,You do have Appa! Tell me where he is!,Tim Hedrick,Lauren MacMullan,9.1 +8364,8364,Earth,2,Lake Laogai,17,Long Feng,"Agree to exit the city now, and I'll waive all charges against you and allow you to leave with your lost pet.","Agree to exit the city now, and I'll waive all charges against you and allow you to leave with your lost pet.",Tim Hedrick,Lauren MacMullan,9.1 +8365,8365,Earth,2,Lake Laogai,17,Jet,[Gets in a fighting position.] You're in no position to bargain.,You're in no position to bargain.,Tim Hedrick,Lauren MacMullan,9.1 +8366,8366,Earth,2,Lake Laogai,17,Long Feng,Am I not?,Am I not?,Tim Hedrick,Lauren MacMullan,9.1 +8367,8367,Earth,2,Lake Laogai,17,Aang,[Gets into a fighting position.] You're definitely not!,You're definitely not!,Tim Hedrick,Lauren MacMullan,9.1 +8368,8368,Earth,2,Lake Laogai,17,Long Feng,"Jet, the Earth King has invited you to Lake Laogai.","Jet, the Earth King has invited you to Lake Laogai.",Tim Hedrick,Lauren MacMullan,9.1 +8369,8369,Earth,2,Lake Laogai,17,Jet,"[Close-up of his eye, his iris dilates.] I am honored to accept his invitation.",I am honored to accept his invitation.,Tim Hedrick,Lauren MacMullan,9.1 +8370,8370,Earth,2,Lake Laogai,17,Scene Description,"Jet attacks Aang. Cut to Appa growling at the disguised Zuko. Appa tries to strike Zuko, but his chained feet hold him back.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8371,8371,Earth,2,Lake Laogai,17,Zuko,You're mine now.,You're mine now.,Tim Hedrick,Lauren MacMullan,9.1 +8372,8372,Earth,2,Lake Laogai,17,Scene Description,The door opens and Zuko gets into a fighting stance. Iroh enters.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8373,8373,Earth,2,Lake Laogai,17,Zuko,Uncle?,Uncle?,Tim Hedrick,Lauren MacMullan,9.1 +8374,8374,Earth,2,Lake Laogai,17,Iroh,"So, the Blue Spirit. I wonder who could be behind that mask ...","So, the Blue Spirit. I wonder who could be behind that mask ...",Tim Hedrick,Lauren MacMullan,9.1 +8375,8375,Earth,2,Lake Laogai,17,Zuko,[Sighs and takes off the mask.] What are you doing here?,What are you doing here?,Tim Hedrick,Lauren MacMullan,9.1 +8376,8376,Earth,2,Lake Laogai,17,Iroh,I was just about to ask you the same thing. What do you plan to do now that you've found the Avatar's bison? Keep him locked in our new apartment? Should I go put on a pot of tea for him?,I was just about to ask you the same thing. What do you plan to do now that you've found the Avatar's bison? Keep him locked in our new apartment? Should I go put on a pot of tea for him?,Tim Hedrick,Lauren MacMullan,9.1 +8377,8377,Earth,2,Lake Laogai,17,Zuko,First I have to get it out of here.,First I have to get it out of here.,Tim Hedrick,Lauren MacMullan,9.1 +8378,8378,Earth,2,Lake Laogai,17,Iroh,"[Starts yelling.] And then what!? You never think these things through! [Points at him.] This is exactly what happened when you captured the Avatar at the North Pole! You had him, and then you had nowhere to go!","And then what!? You never think these things through! This is exactly what happened when you captured the Avatar at the North Pole! You had him, and then you had nowhere to go!",Tim Hedrick,Lauren MacMullan,9.1 +8379,8379,Earth,2,Lake Laogai,17,Zuko,I would have figured something out!,I would have figured something out!,Tim Hedrick,Lauren MacMullan,9.1 +8380,8380,Earth,2,Lake Laogai,17,Iroh,"No! If his friends hadn't found you, you would have frozen to death!","No! If his friends hadn't found you, you would have frozen to death!",Tim Hedrick,Lauren MacMullan,9.1 +8381,8381,Earth,2,Lake Laogai,17,Zuko,"I know my own destiny, Uncle!","I know my own destiny, Uncle!",Tim Hedrick,Lauren MacMullan,9.1 +8382,8382,Earth,2,Lake Laogai,17,Iroh,"Is it your own destiny, or is it a destiny someone else has tried to force on you?","Is it your own destiny, or is it a destiny someone else has tried to force on you?",Tim Hedrick,Lauren MacMullan,9.1 +8383,8383,Earth,2,Lake Laogai,17,Zuko,"Stop it, Uncle! I have to do this!","Stop it, Uncle! I have to do this!",Tim Hedrick,Lauren MacMullan,9.1 +8384,8384,Earth,2,Lake Laogai,17,Iroh,"I'm begging you, Prince Zuko! It's time for you to look inward and begin asking yourself the big questions. Who are you, and what do you want?","I'm begging you, Prince Zuko! It's time for you to look inward and begin asking yourself the big questions. Who are you, and what do you want?",Tim Hedrick,Lauren MacMullan,9.1 +8385,8385,Earth,2,Lake Laogai,17,Scene Description,"Zuko screams loudly, throwing down his swords and Blue Spirit mask. Cut to the brainwashed Jet continuing to swing at Aang.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8386,8386,Earth,2,Lake Laogai,17,Aang,"Jet, it's me, Aang! [Runs back.] You don't have to do this!","Jet, it's me, Aang! You don't have to do this!",Tim Hedrick,Lauren MacMullan,9.1 +8387,8387,Earth,2,Lake Laogai,17,Long Feng,I'm afraid he no longer has a choice.,I'm afraid he no longer has a choice.,Tim Hedrick,Lauren MacMullan,9.1 +8388,8388,Earth,2,Lake Laogai,17,Scene Description,"Jet resumes his attempts at attacking Aang, who dodges them and uses airbending to knock him back. Jet uses his hook swords to stop himself and he pants heavily.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8389,8389,Earth,2,Lake Laogai,17,Aang,"Jet, I'm your friend! Look inside your heart!","Jet, I'm your friend! Look inside your heart!",Tim Hedrick,Lauren MacMullan,9.1 +8390,8390,Earth,2,Lake Laogai,17,Long Feng,"Do your duty, Jet!","Do your duty, Jet!",Tim Hedrick,Lauren MacMullan,9.1 +8391,8391,Earth,2,Lake Laogai,17,Aang,"He can't make you do this! [Cut to a close-up of Jet's face as he hangs his head, while panting and sweating.] You're a Freedom Fighter!",He can't make you do this! You're a Freedom Fighter!,Tim Hedrick,Lauren MacMullan,9.1 +8392,8392,Earth,2,Lake Laogai,17,Scene Description,"At these final words, Jet straightens in shock. Everything goes white and he has a rapid flashback of his past as a Freedom Fighter, seeing Longshot, Smellerbee, Pipsqueak and the Duke, and him with Katara. The Freedom Fighters cheer fades to him with Smellerbee and Longshot, before showing him sitting down with Iroh and Zuko. Fade to him giving the passengers food, and quickly to him being dragged away by the Dai Li. Fade more rapidly to Jet's brainwashing, and to Long Feng on Lake Laogai. Cut to his burning village, to Iroh, to him with Zuko, to him with Katara, to him watching his burning village crying. Cut to him in a Fire Nation camp, to him with Katara, and to him being brainwashed. Cut back to him crying while watching his village burn as Mongke watches. The flashback ends and Jet's irises return to normal.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8393,8393,Earth,2,Lake Laogai,17,Long Feng,Do it! Do it now!,Do it! Do it now!,Tim Hedrick,Lauren MacMullan,9.1 +8394,8394,Earth,2,Lake Laogai,17,Scene Description,"Jet fires a sword at Long Feng, which misses. Long Feng counters with an uplifted rock which strikes Jet down. Aang runs toward Jet as Long Feng escapes through a pipe in the wall.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8395,8395,Earth,2,Lake Laogai,17,Long Feng,[Escaping upward to a pipe.] Foolish boy. You've chosen your own demise. [Exits.],Foolish boy. You've chosen your own demise.,Tim Hedrick,Lauren MacMullan,9.1 +8396,8396,Earth,2,Lake Laogai,17,Jet,I'm sorry ... Aang.,I'm sorry ... Aang.,Tim Hedrick,Lauren MacMullan,9.1 +8397,8397,Earth,2,Lake Laogai,17,Aang,Don't be.,Don't be.,Tim Hedrick,Lauren MacMullan,9.1 +8398,8398,Earth,2,Lake Laogai,17,Scene Description,"The rest of the group arrives, all struck with sorrow and shock as they gather around Jet. Katara stares open-mouthed at Jet, her hands hovering near her mouth in shock. Snapping out of it, she withdraws water from her water skin, with which she covers her hands, and it begins to glow as she kneels down next to him. Cut to a shot from over her shoulder, with Jet glancing at her while she rubs her hands over his chest in an attempt to heal him. After rubbing his chest three times, the glow fades, the water stains Jet's clothing, and Katara looks back over her shoulder toward the rest of the group.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8399,8399,Earth,2,Lake Laogai,17,Katara,This isn't good.,This isn't good.,Tim Hedrick,Lauren MacMullan,9.1 +8400,8400,Earth,2,Lake Laogai,17,Smellerbee,You guys go and find Appa. We'll take care of Jet.,You guys go and find Appa. We'll take care of Jet.,Tim Hedrick,Lauren MacMullan,9.1 +8401,8401,Earth,2,Lake Laogai,17,Katara,We're not going to leave you.,We're not going to leave you.,Tim Hedrick,Lauren MacMullan,9.1 +8402,8402,Earth,2,Lake Laogai,17,Longshot,There's no time. Just go. We'll take care of him. He's our leader.,There's no time. Just go. We'll take care of him. He's our leader.,Tim Hedrick,Lauren MacMullan,9.1 +8403,8403,Earth,2,Lake Laogai,17,Scene Description,They stare at Longshot in surprise.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8404,8404,Earth,2,Lake Laogai,17,Jet,"Don't worry, Katara. I'll be fine. [Smiles a little.]","Don't worry, Katara. I'll be fine.",Tim Hedrick,Lauren MacMullan,9.1 +8405,8405,Earth,2,Lake Laogai,17,Scene Description,Katara closes her eyes in painful sadness and opens them again as she rises. Team Avatar begins to exit.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8406,8406,Earth,2,Lake Laogai,17,Toph,[Whispering to Sokka.] He's lying ...,He's lying ...,Tim Hedrick,Lauren MacMullan,9.1 +8407,8407,Earth,2,Lake Laogai,17,Scene Description,"Cut to a close-up of Smellerbee crying. Longshot watches Team Avatar completely leave through a tunnel that is earthbent open before turning the other way to the other exit and standing guard, prepping an arrow. Smellerbee is seen kneeling next to Jet, rubbing her hands back and forth over him, with her right hand on his forehead. +Team Avatar reaches Appa's hold, only to discover that it is empty.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8408,8408,Earth,2,Lake Laogai,17,Aang,Appa's gone! Long Feng beat us here.,Appa's gone! Long Feng beat us here.,Tim Hedrick,Lauren MacMullan,9.1 +8409,8409,Earth,2,Lake Laogai,17,Sokka,"If we keep moving, maybe we can catch up with them!","If we keep moving, maybe we can catch up with them!",Tim Hedrick,Lauren MacMullan,9.1 +8410,8410,Earth,2,Lake Laogai,17,Scene Description,"They find an exit back to the beach. As they make their escape, several Dai Li agents jump out from behind them.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8411,8411,Earth,2,Lake Laogai,17,Sokka,You think we can outrun them?,You think we can outrun them?,Tim Hedrick,Lauren MacMullan,9.1 +8412,8412,Earth,2,Lake Laogai,17,Aang,I don't think it's gonna matter!,I don't think it's gonna matter!,Tim Hedrick,Lauren MacMullan,9.1 +8413,8413,Earth,2,Lake Laogai,17,Scene Description,"Another group of Dai Li agents, plus Long Feng, stand in front of them. All the agents box them in, lifting up the ground on both sides. Dai Li agents stand on all three walls. Momo flies to Aang.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8414,8414,Earth,2,Lake Laogai,17,Aang,"What is it, Momo?","What is it, Momo?",Tim Hedrick,Lauren MacMullan,9.1 +8415,8415,Earth,2,Lake Laogai,17,Scene Description,"Momo flies to the sky. Suddenly, Appa flies down.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8416,8416,Earth,2,Lake Laogai,17,Aang,Appa!,Appa!,Tim Hedrick,Lauren MacMullan,9.1 +8417,8417,Earth,2,Lake Laogai,17,Scene Description,"Appa smashes through the rock walls, scattering the Dai Li agents. Aang and Toph use earthbending to knock other nearby agents off a cliff and into the lake. Appa confronts Long Feng.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8418,8418,Earth,2,Lake Laogai,17,Long Feng,I can handle you by myself.,I can handle you by myself.,Tim Hedrick,Lauren MacMullan,9.1 +8419,8419,Earth,2,Lake Laogai,17,Scene Description,"Long Feng charges at Appa, but Appa grab his leg and throws him skipping into the lake. Appa spits out Long Feng's shoe. The team cheers and they run toward Appa.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8420,8420,Earth,2,Lake Laogai,17,Sokka,Yeah! Appa!,Yeah! Appa!,Tim Hedrick,Lauren MacMullan,9.1 +8421,8421,Earth,2,Lake Laogai,17,Aang,"[Happily crying.] I missed you, buddy.","I missed you, buddy.",Tim Hedrick,Lauren MacMullan,9.1 +8422,8422,Earth,2,Lake Laogai,17,Scene Description,Appa closes his eyes. A teary-eyed Katara somberly looks over Lake Laogai as they fly over it on Appa. Aang places his hand on her shoulder. The team all gathers in a group hug. Zuko and Iroh emerge from the Dai Li headquarters.,NA,Tim Hedrick,Lauren MacMullan,9.1 +8423,8423,Earth,2,Lake Laogai,17,Iroh,"You did the right thing, nephew. [Zuko looks at his Blue Spirit mask as Iroh rests a hand on its shoulder.] Leave it behind.","You did the right thing, nephew. Leave it behind.",Tim Hedrick,Lauren MacMullan,9.1 +8424,8424,Earth,2,Lake Laogai,17,Scene Description,"Zuko walks to the edge and tosses the mask into the water, where it slowly sinks to the bottom of the lake. Fade to credits.",NA,Tim Hedrick,Lauren MacMullan,9.1 +8425,8425,Earth,2,The Earth King,18,Scene Description,"The episode opens just outside the vast waters of Lake Laogai. Team Avatar has stopped on a tiny islet in the center of the lake. Aang is embracing Appa, happy upon reuniting with him.",NA,John O'Bryan,Ethan Spaulding,8.6 +8426,8426,Earth,2,The Earth King,18,Aang,"I missed you more than you'll ever know, buddy. [Momo flies into Appa to hug him too. Appa licks Aang, which causes Aang to laugh.]","I missed you more than you'll ever know, buddy.",John O'Bryan,Ethan Spaulding,8.6 +8427,8427,Earth,2,The Earth King,18,Scene Description,Sokka approaches Katara and Toph.,NA,John O'Bryan,Ethan Spaulding,8.6 +8428,8428,Earth,2,The Earth King,18,Sokka,"Look, we escaped from the Dai Li. We got Appa back. I'm telling you, we should go to the Earth King now and tell him our plan. We're on a roll.","Look, we escaped from the Dai Li. We got Appa back. I'm telling you, we should go to the Earth King now and tell him our plan. We're on a roll.",John O'Bryan,Ethan Spaulding,8.6 +8429,8429,Earth,2,The Earth King,18,Katara,One good hour after weeks of trouble isn't much of a roll.,One good hour after weeks of trouble isn't much of a roll.,John O'Bryan,Ethan Spaulding,8.6 +8430,8430,Earth,2,The Earth King,18,Sokka,"We can build on it. If we want to invade the Fire Nation when the eclipse happens, we'll need the Earth King's support.","We can build on it. If we want to invade the Fire Nation when the eclipse happens, we'll need the Earth King's support.",John O'Bryan,Ethan Spaulding,8.6 +8431,8431,Earth,2,The Earth King,18,Toph,"What makes you think we'll get it? I don't know if you've noticed, but things don't usually go that smoothly for our little gang.","What makes you think we'll get it? I don't know if you've noticed, but things don't usually go that smoothly for our little gang.",John O'Bryan,Ethan Spaulding,8.6 +8432,8432,Earth,2,The Earth King,18,Sokka,"I know, but I've got a good feeling about this. This time will be different.","I know, but I've got a good feeling about this. This time will be different.",John O'Bryan,Ethan Spaulding,8.6 +8433,8433,Earth,2,The Earth King,18,Katara,"Sokka, Long Feng is in control of the city. His conspiracy with the Dai Li is too powerful. I think we should just keep flying and leave this horrible place behind us.","Sokka, Long Feng is in control of the city. His conspiracy with the Dai Li is too powerful. I think we should just keep flying and leave this horrible place behind us.",John O'Bryan,Ethan Spaulding,8.6 +8434,8434,Earth,2,The Earth King,18,Toph,I'm with Sweetness. I've seen enough of Ba Sing Se. [Raises arms and opens eyes wide.] And I can't even see!,I'm with Sweetness. I've seen enough of Ba Sing Se. And I can't even see!,John O'Bryan,Ethan Spaulding,8.6 +8435,8435,Earth,2,The Earth King,18,Scene Description,Aang flies into the shot.,NA,John O'Bryan,Ethan Spaulding,8.6 +8436,8436,Earth,2,The Earth King,18,Aang,"But now that we have Appa back, there's nothing stopping us from telling the Earth King the truth. About the conspiracy and the War.","But now that we have Appa back, there's nothing stopping us from telling the Earth King the truth. About the conspiracy and the War.",John O'Bryan,Ethan Spaulding,8.6 +8437,8437,Earth,2,The Earth King,18,Sokka,See? Aang's with me. [Puts his arm around Aang and smiles.] It's the whole reason we came here in the first place. We have to try.,See? Aang's with me. It's the whole reason we came here in the first place. We have to try.,John O'Bryan,Ethan Spaulding,8.6 +8438,8438,Earth,2,The Earth King,18,Katara,"[Thinks for a moment.] Well, I guess if the Earth King knew the truth, things could change. [Sokka and Aang smile.]","Well, I guess if the Earth King knew the truth, things could change.",John O'Bryan,Ethan Spaulding,8.6 +8439,8439,Earth,2,The Earth King,18,Toph,"[Stands up.] I don't trust the new positive Sokka. [Points at Sokka in an accusing manner.] Long Feng brainwashed you, didn't he!?","I don't trust the new positive Sokka. Long Feng brainwashed you, didn't he!?",John O'Bryan,Ethan Spaulding,8.6 +8440,8440,Earth,2,The Earth King,18,Scene Description,Aang notices a few ships in the lake.,NA,John O'Bryan,Ethan Spaulding,8.6 +8441,8441,Earth,2,The Earth King,18,Sokka,That's probably the Dai Li searching for us. [To Katara.] So?,That's probably the Dai Li searching for us. So?,John O'Bryan,Ethan Spaulding,8.6 +8442,8442,Earth,2,The Earth King,18,Scene Description,Katara thinks for a moment before looking at Sokka.,NA,John O'Bryan,Ethan Spaulding,8.6 +8443,8443,Earth,2,The Earth King,18,Katara,[Determined.] Let's fly!,Let's fly!,John O'Bryan,Ethan Spaulding,8.6 +8444,8444,Earth,2,The Earth King,18,Scene Description,"They fly toward the Palace, now with no saddle, holding onto Appa's fur for dear life, especially Toph.",NA,John O'Bryan,Ethan Spaulding,8.6 +8445,8445,Earth,2,The Earth King,18,Toph,Can we please buy a new saddle? Riding bareback is terrifying! [Buries face in Appa's back.],Can we please buy a new saddle? Riding bareback is terrifying!,John O'Bryan,Ethan Spaulding,8.6 +8446,8446,Earth,2,The Earth King,18,Scene Description,They get closer to the palace.,NA,John O'Bryan,Ethan Spaulding,8.6 +8447,8447,Earth,2,The Earth King,18,Sokka,There it is! That whole thing is the palace! The Earth King's chamber should be in the center!,There it is! That whole thing is the palace! The Earth King's chamber should be in the center!,John O'Bryan,Ethan Spaulding,8.6 +8448,8448,Earth,2,The Earth King,18,Katara,We have to be careful. Long Feng's probably warned the king that we're coming.,We have to be careful. Long Feng's probably warned the king that we're coming.,John O'Bryan,Ethan Spaulding,8.6 +8449,8449,Earth,2,The Earth King,18,Sokka,"Why would you assume that? If you ask me, I think we're just gonna sail right in and- [A giant rock almost hits them.] Aahh!","Why would you assume that? If you ask me, I think we're just gonna sail right in and- Aahh!",John O'Bryan,Ethan Spaulding,8.6 +8450,8450,Earth,2,The Earth King,18,Toph,What was that?,What was that?,John O'Bryan,Ethan Spaulding,8.6 +8451,8451,Earth,2,The Earth King,18,Sokka,Surface-to-air rocks! [Sees more being launched.] More incoming!,Surface-to-air rocks! More incoming!,John O'Bryan,Ethan Spaulding,8.6 +8452,8452,Earth,2,The Earth King,18,Scene Description,"They dodge a few more rocks. One gets launched right at Aang, but he destroys it with his hand. Another is launched at them head on, but Aang slices it cleanly in two by swinging his staff at the rock to augment his earthbending. He launches himself from Appa to the front of the palace and slams his staff into the ground, generating a massive earthen wave to knock back the palace guards. Appa lands and roars at the captain's ostrich horse, which causes it to drop the captain and run off. As they continue toward the Earth King, more guards appear and launch earth cubes at the gang. Toph and Aang use earthbending to block the attacks, while Katara uses waterbending to subdue the guards.",NA,John O'Bryan,Ethan Spaulding,8.6 +8453,8453,Earth,2,The Earth King,18,Katara,[Water whips two guards.] Sorry!,Sorry!,John O'Bryan,Ethan Spaulding,8.6 +8454,8454,Earth,2,The Earth King,18,Scene Description,"Katara turns around and strikes down more guards with her waterbending, though closes her right eye in a sympathetic flinch for a moment as she does so. As more guards rush toward them in an attempt to halt Team Avatar's progress, Toph uses her earthbending to flip the tiles of the walkway, trapping them between them and ensuring a clear passage for the team.",NA,John O'Bryan,Ethan Spaulding,8.6 +8455,8455,Earth,2,The Earth King,18,Katara,Sorry! We just need to get through to see the Earth King!,Sorry! We just need to get through to see the Earth King!,John O'Bryan,Ethan Spaulding,8.6 +8456,8456,Earth,2,The Earth King,18,Scene Description,"More guards appear on the opposite end of a bridge and launch two giant statues at them. Toph and Aang create an earth igloo to block the statues. Katara creates an ice ramp to jump to the other side of the bridge and water-whips the guards into the water. Aang freezes them in the water as the rest all jump across. More surface-to-air rocks appear as guards are coming down a giant staircase. Toph uses earthbending to change the stairs into a ramp, causing them all to fall. She and Aang use earthbending to escalate themselves up the stairs.",NA,John O'Bryan,Ethan Spaulding,8.6 +8457,8457,Earth,2,The Earth King,18,Sokka,"Seriously, we're actually on your guys' side! [Pauses for a moment.] Sorry.","Seriously, we're actually on your guys' side! Sorry.",John O'Bryan,Ethan Spaulding,8.6 +8458,8458,Earth,2,The Earth King,18,Scene Description,More guards come and Aang and Toph push them away with earthbending.,NA,John O'Bryan,Ethan Spaulding,8.6 +8459,8459,Earth,2,The Earth King,18,Sokka,In there! [They enter the palace.],In there!,John O'Bryan,Ethan Spaulding,8.6 +8460,8460,Earth,2,The Earth King,18,Scene Description,They come to an area with three doors. More guards appear and Toph easily defeats them all.,NA,John O'Bryan,Ethan Spaulding,8.6 +8461,8461,Earth,2,The Earth King,18,Sokka,"Toph, which way to the Earth King?","Toph, which way to the Earth King?",John O'Bryan,Ethan Spaulding,8.6 +8462,8462,Earth,2,The Earth King,18,Toph,How should I know? I'm still voting we leave Ba Sing Se.,How should I know? I'm still voting we leave Ba Sing Se.,John O'Bryan,Ethan Spaulding,8.6 +8463,8463,Earth,2,The Earth King,18,Scene Description,"Toph defeats more guards while Sokka opens the doors to find the Earth King. The first room is empty, as is the second; outside the second door, a royal guard goes flying to the right off-screen. Sokka bursts into a third room, startling a woman.",NA,John O'Bryan,Ethan Spaulding,8.6 +8464,8464,Earth,2,The Earth King,18,Palace woman,"Burglar! [Tries to run, trips, and falls flat on her face.]",Burglar!,John O'Bryan,Ethan Spaulding,8.6 +8465,8465,Earth,2,The Earth King,18,Sokka,[Shuts the door.] Sorry. Wrong door.,Sorry. Wrong door.,John O'Bryan,Ethan Spaulding,8.6 +8466,8466,Earth,2,The Earth King,18,Scene Description,"Meanwhile, Zuko and Iroh return from Lake Laogai. The former seems ill.",NA,John O'Bryan,Ethan Spaulding,8.6 +8467,8467,Earth,2,The Earth King,18,Iroh,You did the right thing. Letting the Avatar's bison go free.,You did the right thing. Letting the Avatar's bison go free.,John O'Bryan,Ethan Spaulding,8.6 +8468,8468,Earth,2,The Earth King,18,Zuko,I don't feel right. [Gets dizzy and passes out.],I don't feel right.,John O'Bryan,Ethan Spaulding,8.6 +8469,8469,Earth,2,The Earth King,18,Iroh,Zuko! [Rushes to him.],Zuko!,John O'Bryan,Ethan Spaulding,8.6 +8470,8470,Earth,2,The Earth King,18,Scene Description,"Back at the palace, the team arrives at a pile of rubble. Sokka climbs atop it and sees a gigantic door.",NA,John O'Bryan,Ethan Spaulding,8.6 +8471,8471,Earth,2,The Earth King,18,Sokka,"Now that's an impressive door. It's gotta go somewhere. [Drops down from the rubble and attempts to kick the door open.] Yaaah! [The door does not move even slightly. Sokka starts trying to push it open, but to no avail. Toph and Aang jump in from behind and bust the door down, knocking Sokka forward in the process. He starts rubbing the back of his head.] A little warning next time?",Now that's an impressive door. It's gotta go somewhere. Yaaah! A little warning next time?,John O'Bryan,Ethan Spaulding,8.6 +8472,8472,Earth,2,The Earth King,18,Scene Description,They arrive in the Earth King's chamber with Kuei sitting in his throne. Long Feng and his Dai Li agents stand in their way. The team takes fighting stances against them.,NA,John O'Bryan,Ethan Spaulding,8.6 +8473,8473,Earth,2,The Earth King,18,Aang,We need to talk to you.,We need to talk to you.,John O'Bryan,Ethan Spaulding,8.6 +8474,8474,Earth,2,The Earth King,18,Long Feng,[Turns to face the Earth King.] They're here to overthrow you.,They're here to overthrow you.,John O'Bryan,Ethan Spaulding,8.6 +8475,8475,Earth,2,The Earth King,18,Sokka,"No, we're on your side. We're here to help.","No, we're on your side. We're here to help.",John O'Bryan,Ethan Spaulding,8.6 +8476,8476,Earth,2,The Earth King,18,Katara,You have to trust us.,You have to trust us.,John O'Bryan,Ethan Spaulding,8.6 +8477,8477,Earth,2,The Earth King,18,Kuei,"[Stands up with a rising aggravated tone.] You invade my palace, lay waste to all my guards, break down my fancy door, and you expect me to trust you?","You invade my palace, lay waste to all my guards, break down my fancy door, and you expect me to trust you?",John O'Bryan,Ethan Spaulding,8.6 +8478,8478,Earth,2,The Earth King,18,Toph,He has a good point.,He has a good point.,John O'Bryan,Ethan Spaulding,8.6 +8479,8479,Earth,2,The Earth King,18,Kuei,"If you are on my side, then drop your weapons and stand down!","If you are on my side, then drop your weapons and stand down!",John O'Bryan,Ethan Spaulding,8.6 +8480,8480,Earth,2,The Earth King,18,Scene Description,"They look at each other for a moment. Aang drops his staff, Katara puts her water whip back in her water skin, Sokka drops his machete, and Toph drops the boulder she is levitating.",NA,John O'Bryan,Ethan Spaulding,8.6 +8481,8481,Earth,2,The Earth King,18,Aang,"[Smiles.] See? We're friends, Your Earthiness. [Gives a slight nervous chuckle.]","See? We're friends, Your Earthiness.",John O'Bryan,Ethan Spaulding,8.6 +8482,8482,Earth,2,The Earth King,18,Scene Description,The king says nothing and just continues to frown grimly. Long Feng signals the Dai Li to cuff their arms with rock gloves.,NA,John O'Bryan,Ethan Spaulding,8.6 +8483,8483,Earth,2,The Earth King,18,Long Feng,[Smiles sinisterly.] Detain the assailants!,Detain the assailants!,John O'Bryan,Ethan Spaulding,8.6 +8484,8484,Earth,2,The Earth King,18,Scene Description,The Dai Li rush behind Team Avatar.,NA,John O'Bryan,Ethan Spaulding,8.6 +8485,8485,Earth,2,The Earth King,18,Sokka,But we dropped our weapons. We're your allies.,But we dropped our weapons. We're your allies.,John O'Bryan,Ethan Spaulding,8.6 +8486,8486,Earth,2,The Earth King,18,Long Feng,Make sure the Avatar and his friends never see daylight again. [The king looks at him shocked.],Make sure the Avatar and his friends never see daylight again.,John O'Bryan,Ethan Spaulding,8.6 +8487,8487,Earth,2,The Earth King,18,Kuei,The Avatar? [Points at Sokka.] You're the Avatar?,The Avatar? You're the Avatar?,John O'Bryan,Ethan Spaulding,8.6 +8488,8488,Earth,2,The Earth King,18,Sokka,"Uh, no. Him. [Nudges his head at Aang.]","Uh, no. Him.",John O'Bryan,Ethan Spaulding,8.6 +8489,8489,Earth,2,The Earth King,18,Aang,[Effortlessly breaks free of his earth cuffs and raises his arms.] Over here. [Re-attaches the cuffs.],Over here.,John O'Bryan,Ethan Spaulding,8.6 +8490,8490,Earth,2,The Earth King,18,Long Feng,"What does it matter, Your Highness? They're enemies of the state.","What does it matter, Your Highness? They're enemies of the state.",John O'Bryan,Ethan Spaulding,8.6 +8491,8491,Earth,2,The Earth King,18,Kuei,"Perhaps you're right. [Sees Bosco sniff and lick Aang, who laughs, and smiles at Long Feng.] Though Bosco seems to like him. [Looks back at the team.] I'll hear what he has to say. [Long Feng glares at Aang.]",Perhaps you're right. Though Bosco seems to like him. I'll hear what he has to say.,John O'Bryan,Ethan Spaulding,8.6 +8492,8492,Earth,2,The Earth King,18,Aang,"[Walks forward.] Well, sir, there's a war going on right now. For the past one hundred years in fact. The Dai Li's kept it secret from you. It's a conspiracy to control the city, and to control you.","Well, sir, there's a war going on right now. For the past one hundred years in fact. The Dai Li's kept it secret from you. It's a conspiracy to control the city, and to control you.",John O'Bryan,Ethan Spaulding,8.6 +8493,8493,Earth,2,The Earth King,18,Kuei,A secret war? That's crazy!,A secret war? That's crazy!,John O'Bryan,Ethan Spaulding,8.6 +8494,8494,Earth,2,The Earth King,18,Long Feng,Completely!,Completely!,John O'Bryan,Ethan Spaulding,8.6 +8495,8495,Earth,2,The Earth King,18,Aang,"Long Feng didn't want us to tell you, so he stole our sky bison to blackmail us. And blackmail is the least of his crimes; he brainwashed our friend!","Long Feng didn't want us to tell you, so he stole our sky bison to blackmail us. And blackmail is the least of his crimes; he brainwashed our friend!",John O'Bryan,Ethan Spaulding,8.6 +8496,8496,Earth,2,The Earth King,18,Long Feng,"[Quickly turns to face the king.] All lies. I've never even seen a sky bison, Your Majesty. Frankly, I thought they were extinct.","All lies. I've never even seen a sky bison, Your Majesty. Frankly, I thought they were extinct.",John O'Bryan,Ethan Spaulding,8.6 +8497,8497,Earth,2,The Earth King,18,Kuei,[Sits down.] Your claim is difficult to believe. Even from an Avatar.,Your claim is difficult to believe. Even from an Avatar.,John O'Bryan,Ethan Spaulding,8.6 +8498,8498,Earth,2,The Earth King,18,Long Feng,"[Whispers in his ear.] These hooligans are part of an anarchist cell that my agents have been tracking for weeks. If you listen to them, you're playing right into your own destruction.","These hooligans are part of an anarchist cell that my agents have been tracking for weeks. If you listen to them, you're playing right into your own destruction.",John O'Bryan,Ethan Spaulding,8.6 +8499,8499,Earth,2,The Earth King,18,Kuei,[Thinks for a moment.] I have to trust my advisor.,I have to trust my advisor.,John O'Bryan,Ethan Spaulding,8.6 +8500,8500,Earth,2,The Earth King,18,Scene Description,"The agents start taking the team away, but Sokka stops for a moment.",NA,John O'Bryan,Ethan Spaulding,8.6 +8501,8501,Earth,2,The Earth King,18,Sokka,Wait! [Turns to face the king with a big smile.] I can prove he's lying. Long Feng said he's never seen a sky bison. Ask him to lift his robe.,Wait! I can prove he's lying. Long Feng said he's never seen a sky bison. Ask him to lift his robe.,John O'Bryan,Ethan Spaulding,8.6 +8502,8502,Earth,2,The Earth King,18,Long Feng,What? I am not disrobing! [The king looks thoughtful before looking at Sokka suspiciously.],What? I am not disrobing!,John O'Bryan,Ethan Spaulding,8.6 +8503,8503,Earth,2,The Earth King,18,Scene Description,"Aang and Sokka smile slyly and nod at each other. Aang blows a large gust of air at Long Feng's legs, lifting his robe and revealing a bite mark left by Appa.",NA,John O'Bryan,Ethan Spaulding,8.6 +8504,8504,Earth,2,The Earth King,18,Aang,Right there! Appa bit him!,Right there! Appa bit him!,John O'Bryan,Ethan Spaulding,8.6 +8505,8505,Earth,2,The Earth King,18,Sokka,"Never met a sky bison, huh?","Never met a sky bison, huh?",John O'Bryan,Ethan Spaulding,8.6 +8506,8506,Earth,2,The Earth King,18,Long Feng,[Lowers his robe.] That happens to be a large birth mark. [Sarcastically.] Thanks for showing everyone.,That happens to be a large birth mark. Thanks for showing everyone.,John O'Bryan,Ethan Spaulding,8.6 +8507,8507,Earth,2,The Earth King,18,Kuei,Well I suppose there's no way to prove where those marks came from.,Well I suppose there's no way to prove where those marks came from.,John O'Bryan,Ethan Spaulding,8.6 +8508,8508,Earth,2,The Earth King,18,Sokka,Of course there is!,Of course there is!,John O'Bryan,Ethan Spaulding,8.6 +8509,8509,Earth,2,The Earth King,18,Scene Description,The group gets Appa and brings him in. He opens his mouth. Aang points at the bison's teeth and at Long Feng's mark.,NA,John O'Bryan,Ethan Spaulding,8.6 +8510,8510,Earth,2,The Earth King,18,Kuei,"Yup. That pretty much proves it. [Team Avatar cheers.] But it doesn't prove this crazy conspiracy theory. [Team Avatar becomes downcast.] Though, I suppose this matter's worth looking into. [Team Avatar look at each other approvingly, while Long Feng glares at the king before walking away with his agents.]","Yup. That pretty much proves it. But it doesn't prove this crazy conspiracy theory. Though, I suppose this matter's worth looking into.",John O'Bryan,Ethan Spaulding,8.6 +8511,8511,Earth,2,The Earth King,18,Scene Description,"Back in Iroh and Zuko's apartment, Zuko is asleep. He wakes up.",NA,John O'Bryan,Ethan Spaulding,8.6 +8512,8512,Earth,2,The Earth King,18,Iroh,You're burning up. [Dips a cloth in water.] You have an intense fever. [Places the cloth on Zuko's forehead.] This will help cool you down.,You're burning up. You have an intense fever. This will help cool you down.,John O'Bryan,Ethan Spaulding,8.6 +8513,8513,Earth,2,The Earth King,18,Zuko,"So thirsty. [Sits up, but Iroh makes him lie back down.]",So thirsty.,John O'Bryan,Ethan Spaulding,8.6 +8514,8514,Earth,2,The Earth King,18,Iroh,[Grabs a bucket with a spoon in it; takes out the spoon.] Here's some clean water to drink. [Sits him up slightly.] Stay under the blankets and sweat this out.,Here's some clean water to drink. Stay under the blankets and sweat this out.,John O'Bryan,Ethan Spaulding,8.6 +8515,8515,Earth,2,The Earth King,18,Scene Description,"Zuko grabs the spoon from Iroh and drinks the water. He tosses the spoon aside and grabs the bucket. He drinks from it, while spilling some out. He tosses the bucket aside and lies back down. Iroh pulls the covers more over him. Meanwhile, on a train, passengers are shocked to see the Earth King, who is standing in the middle of the cart surrounded by guards.",NA,John O'Bryan,Ethan Spaulding,8.6 +8516,8516,Earth,2,The Earth King,18,Kuei,[Feeling strange from exposition.] So this is what a train is like? I didn't realize it would be this ... public.,So this is what a train is like? I didn't realize it would be this ... public.,John O'Bryan,Ethan Spaulding,8.6 +8517,8517,Earth,2,The Earth King,18,Katara,So you've never been outside the Upper Ring before?,So you've never been outside the Upper Ring before?,John O'Bryan,Ethan Spaulding,8.6 +8518,8518,Earth,2,The Earth King,18,Kuei,"I've never been outside the palace. [Katara and Sokka look at each other; the Earth King looks outside and sees Aang flying on Appa.] Now that's the way to travel. [Looks at Katara and Sokka.] So, may I ask where we're going?","I've never been outside the palace. Now that's the way to travel. So, may I ask where we're going?",John O'Bryan,Ethan Spaulding,8.6 +8519,8519,Earth,2,The Earth King,18,Sokka,"Underneath Lake Laogai, Your Kingliness. To the Dai Li's secret headquarters. You're about to see where all the brainwashing and conspiring took place.","Underneath Lake Laogai, Your Kingliness. To the Dai Li's secret headquarters. You're about to see where all the brainwashing and conspiring took place.",John O'Bryan,Ethan Spaulding,8.6 +8520,8520,Earth,2,The Earth King,18,Scene Description,"Cut to the shores of Lake Laogai. The team stand on the shore beside the Earth King and his guards. Toph steps to the edge of the water, and with a hop, reveals the the secret path to the hatch door entrance, though discovers it has been destroyed.",NA,John O'Bryan,Ethan Spaulding,8.6 +8521,8521,Earth,2,The Earth King,18,Toph,It's gone!,It's gone!,John O'Bryan,Ethan Spaulding,8.6 +8522,8522,Earth,2,The Earth King,18,Sokka,Oh don't tell me- ! [Gives a thumbs up and a fake smile.] That's okay. Still got my positive attitude.,Oh don't tell me- ! That's okay. Still got my positive attitude.,John O'Bryan,Ethan Spaulding,8.6 +8523,8523,Earth,2,The Earth King,18,Katara,The Dai Li must've known we were coming and destroyed the evidence!,The Dai Li must've known we were coming and destroyed the evidence!,John O'Bryan,Ethan Spaulding,8.6 +8524,8524,Earth,2,The Earth King,18,Kuei,[Looks suspicious.] Hm ... [Sarcastically.] That seems awfully convenient.,Hm ... That seems awfully convenient.,John O'Bryan,Ethan Spaulding,8.6 +8525,8525,Earth,2,The Earth King,18,Sokka,"Hey, if anything, this proves the conspiracy exists even more.","Hey, if anything, this proves the conspiracy exists even more.",John O'Bryan,Ethan Spaulding,8.6 +8526,8526,Earth,2,The Earth King,18,Kuei,"Long Feng was right. This was a waste of time. [Turns to leave.] If you'll excuse me, I'm going back to the palace.","Long Feng was right. This was a waste of time. If you'll excuse me, I'm going back to the palace.",John O'Bryan,Ethan Spaulding,8.6 +8527,8527,Earth,2,The Earth King,18,Katara,[Smiles with realization.] The wall. They'll never be able to cover that up in time.,The wall. They'll never be able to cover that up in time.,John O'Bryan,Ethan Spaulding,8.6 +8528,8528,Earth,2,The Earth King,18,Aang,"Oh, yeah. [Hops to in front of the king.] If you come with us to the Outer Wall, we can prove to you that the secret war is real.","Oh, yeah. If you come with us to the Outer Wall, we can prove to you that the secret war is real.",John O'Bryan,Ethan Spaulding,8.6 +8529,8529,Earth,2,The Earth King,18,Kuei,No Earth King has ever been to the Outer Wall. [Walks past Aang.] I don't have any more time for this nonsense. [Aang looks depressed.],No Earth King has ever been to the Outer Wall. I don't have any more time for this nonsense.,John O'Bryan,Ethan Spaulding,8.6 +8530,8530,Earth,2,The Earth King,18,Sokka,"[Runs up to them.] If you come with us, this time you can ride on Appa. [The Earth King stops as Appa lows in the background. A pleased smile grows on his face.]","If you come with us, this time you can ride on Appa.",John O'Bryan,Ethan Spaulding,8.6 +8531,8531,Earth,2,The Earth King,18,Scene Description,"En route to the Outer Wall. The Earth King is riding on Appa, holding on for dear life and screaming at the top of his lungs in fear, his clothes flapping in the wind.",NA,John O'Bryan,Ethan Spaulding,8.6 +8532,8532,Earth,2,The Earth King,18,Toph,First time flying?,First time flying?,John O'Bryan,Ethan Spaulding,8.6 +8533,8533,Earth,2,The Earth King,18,Kuei,It's both thrilling and terrifying!,It's both thrilling and terrifying!,John O'Bryan,Ethan Spaulding,8.6 +8534,8534,Earth,2,The Earth King,18,Toph,Yeah. I hate it too.,Yeah. I hate it too.,John O'Bryan,Ethan Spaulding,8.6 +8535,8535,Earth,2,The Earth King,18,Kuei,I have to be honest with you: part of me really hopes that what you're telling me about this war isn't true.,I have to be honest with you: part of me really hopes that what you're telling me about this war isn't true.,John O'Bryan,Ethan Spaulding,8.6 +8536,8536,Earth,2,The Earth King,18,Aang,I wish it wasn't.,I wish it wasn't.,John O'Bryan,Ethan Spaulding,8.6 +8537,8537,Earth,2,The Earth King,18,Scene Description,"Meanwhile at the apartment, Iroh again places the moist cloth over his feverish nephew's forehead. Zuko is having a dream that he is the Fire Lord, with no scar on his eye. One red and one blue dragon appear and start circling around the pillars on each side of him. The blue dragon starts circling around Zuko.",NA,John O'Bryan,Ethan Spaulding,8.6 +8538,8538,Earth,2,The Earth King,18,Blue dragon,"[In Azula's voice.] It's getting late. Are you planning to retire soon, my lord?","It's getting late. Are you planning to retire soon, my lord?",John O'Bryan,Ethan Spaulding,8.6 +8539,8539,Earth,2,The Earth King,18,Zuko,I'm not tired.,I'm not tired.,John O'Bryan,Ethan Spaulding,8.6 +8540,8540,Earth,2,The Earth King,18,Blue dragon,"[Into Zuko's ear.] Relax, Fire Lord Zuko. Just let go. Give in to it. Shut your eyes for a while.","Relax, Fire Lord Zuko. Just let go. Give in to it. Shut your eyes for a while.",John O'Bryan,Ethan Spaulding,8.6 +8541,8541,Earth,2,The Earth King,18,Scene Description,Zuko slowly starts to shut his eyes but widely opens them upon hearing the other dragon.,NA,John O'Bryan,Ethan Spaulding,8.6 +8542,8542,Earth,2,The Earth King,18,Red dragon,"[In Iroh's voice.] No, Fire Lord Zuko! Do not listen to the blue dragon. You should get out of here right now. Go! Before it's too late! [Both dragons are poised to either side of Zuko.]","No, Fire Lord Zuko! Do not listen to the blue dragon. You should get out of here right now. Go! Before it's too late!",John O'Bryan,Ethan Spaulding,8.6 +8543,8543,Earth,2,The Earth King,18,Blue dragon,"Sleep now, Fire Lord Zuko.","Sleep now, Fire Lord Zuko.",John O'Bryan,Ethan Spaulding,8.6 +8544,8544,Earth,2,The Earth King,18,Scene Description,"The dragons disappear, and the room they're in, as well as the guards watching Zuko, crumble to nothing. The blue dragon reappears in front of him. Two golden eyes appear, followed by the face of the blue dragon, which closes rapidly.",NA,John O'Bryan,Ethan Spaulding,8.6 +8545,8545,Earth,2,The Earth King,18,Blue dragon,Sleep. [Voice grows louder and more hostile as it continues talking.] Just like mother!,Sleep.  Just like mother!,John O'Bryan,Ethan Spaulding,8.6 +8546,8546,Earth,2,The Earth King,18,Scene Description,"Charges at Zuko and opens its mouth. Inside the dragon's mouth, Zuko sees his mother, Ursa. Within that darkness, the camera draws closer to Ursa, who drops her hood.",NA,John O'Bryan,Ethan Spaulding,8.6 +8547,8547,Earth,2,The Earth King,18,Ursa,Zuko! Help me! [A distraught Zuko is seen in her eyes.],Zuko! Help me!,John O'Bryan,Ethan Spaulding,8.6 +8548,8548,Earth,2,The Earth King,18,Scene Description,"Zuko disappears through the floor. The sleeping Zuko starts sweating. Meanwhile, Team Avatar arrives at the Outer Wall and sees the drill.",NA,John O'Bryan,Ethan Spaulding,8.6 +8549,8549,Earth,2,The Earth King,18,Aang,[Points at the drill.] It's still there!,It's still there!,John O'Bryan,Ethan Spaulding,8.6 +8550,8550,Earth,2,The Earth King,18,Kuei,[Shocked.] What is that?,What is that?,John O'Bryan,Ethan Spaulding,8.6 +8551,8551,Earth,2,The Earth King,18,Sokka,It's a drill. A giant drill [Cut to the drill.] made by the Fire Nation to break through your walls. [Cut to a close-up of the king who looks horrified.],It's a drill. A giant drill made by the Fire Nation to break through your walls.,John O'Bryan,Ethan Spaulding,8.6 +8552,8552,Earth,2,The Earth King,18,Scene Description,"On top of the wall, they're looking down at the drill.",NA,John O'Bryan,Ethan Spaulding,8.6 +8553,8553,Earth,2,The Earth King,18,Kuei,I can't believe I never knew. [He looks to his right as Kuei hears something.],I can't believe I never knew.,John O'Bryan,Ethan Spaulding,8.6 +8554,8554,Earth,2,The Earth King,18,Long Feng,"[Appears on an earth elevator with two Dai Li agents.] I can explain this, Your Majesty. [Walks toward the king.] This is nothing more than ... a construction project. [Gestures his hand to the drill.]","I can explain this, Your Majesty. This is nothing more than ... a construction project.",John O'Bryan,Ethan Spaulding,8.6 +8555,8555,Earth,2,The Earth King,18,Katara,"[Sarcastically.] Really? Then perhaps you could explain why there's a [Points to the drill as Kuei follows to where she is pointing. Cut to the Fire Nation insignia clearly shown on the drill.] Fire Nation insignia on your ""construction project"".","Really? Then perhaps you could explain why there's a Fire Nation insignia on your ""construction project"".",John O'Bryan,Ethan Spaulding,8.6 +8556,8556,Earth,2,The Earth King,18,Long Feng,[The king looks at him suspiciously.] Well it's imported of course. You know you can't trust domestic machinery. [Looks at them worried.] Surely you don't believe these children instead of your most loyal attendant?,Well it's imported of course. You know you can't trust domestic machinery. Surely you don't believe these children instead of your most loyal attendant?,John O'Bryan,Ethan Spaulding,8.6 +8557,8557,Earth,2,The Earth King,18,Kuei,[Looks at Team Avatar and Long Feng.] Dai Li! Arrest Long Feng! I want him to stand trial for crimes against the Earth Kingdom.,Dai Li! Arrest Long Feng! I want him to stand trial for crimes against the Earth Kingdom.,John O'Bryan,Ethan Spaulding,8.6 +8558,8558,Earth,2,The Earth King,18,Scene Description,"Long Feng and Team Avatar look shocked. The two agents behind Long Feng share glances, launch shackles onto his arms and pull him in.",NA,John O'Bryan,Ethan Spaulding,8.6 +8559,8559,Earth,2,The Earth King,18,Long Feng,You can't arrest me! You all need me more than you know! [He is taken away.],You can't arrest me! You all need me more than you know!,John O'Bryan,Ethan Spaulding,8.6 +8560,8560,Earth,2,The Earth King,18,Sokka,"[Happily.] Looks like Long Feng is long gone! Ha! Ah, yeah, I've been waiting to use that one. [Katara gives him an unimpressed look.]","Looks like Long Feng is long gone! Ha! Ah, yeah, I've been waiting to use that one.",John O'Bryan,Ethan Spaulding,8.6 +8561,8561,Earth,2,The Earth King,18,Scene Description,"That night at the Palace, the Earth King is talking with Team Avatar.",NA,John O'Bryan,Ethan Spaulding,8.6 +8562,8562,Earth,2,The Earth King,18,Kuei,"I want to thank you, young heroes, for opening my eyes. All this time, what I thought was a great metropolis was merely a city of fools. And that makes me the king fool. [Buries his face in one of his hands.] We're at war. With the Fire Nation.","I want to thank you, young heroes, for opening my eyes. All this time, what I thought was a great metropolis was merely a city of fools. And that makes me the king fool. We're at war. With the Fire Nation.",John O'Bryan,Ethan Spaulding,8.6 +8563,8563,Earth,2,The Earth King,18,Sokka,"That's why we came to Ba Sing Se, Your Highness: Because we think you can help us end the war.","That's why we came to Ba Sing Se, Your Highness: Because we think you can help us end the war.",John O'Bryan,Ethan Spaulding,8.6 +8564,8564,Earth,2,The Earth King,18,Aang,[Momo climbs up Kuei's arm.] We don't have much time. There's a comet coming this summer. Its energy will give the firebenders unbelievable strength. They'll be unstoppable.,We don't have much time. There's a comet coming this summer. Its energy will give the firebenders unbelievable strength. They'll be unstoppable.,John O'Bryan,Ethan Spaulding,8.6 +8565,8565,Earth,2,The Earth King,18,Sokka,"But there is hope. Before the comet comes, we have a window of opportunity: A solar eclipse is coming. The sun will be completely blocked out by the moon, and the firebenders will be helpless.","But there is hope. Before the comet comes, we have a window of opportunity: A solar eclipse is coming. The sun will be completely blocked out by the moon, and the firebenders will be helpless.",John O'Bryan,Ethan Spaulding,8.6 +8566,8566,Earth,2,The Earth King,18,Kuei,"What are you suggesting, Sokka?","What are you suggesting, Sokka?",John O'Bryan,Ethan Spaulding,8.6 +8567,8567,Earth,2,The Earth King,18,Sokka,That's the day we need to invade the Fire Nation. [Cut to a close-up of the king. Cut back to Sokka.] The Day of Black Sun.,That's the day we need to invade the Fire Nation. The Day of Black Sun.,John O'Bryan,Ethan Spaulding,8.6 +8568,8568,Earth,2,The Earth King,18,Kuei,I don't know. That would require moving troops out of Ba Sing Se. We'd be completely vulnerable.,I don't know. That would require moving troops out of Ba Sing Se. We'd be completely vulnerable.,John O'Bryan,Ethan Spaulding,8.6 +8569,8569,Earth,2,The Earth King,18,Sokka,"You're already vulnerable. The Fire Nation won't stop until Ba Sing Se falls. You can either sit back and wait for that to happen, or take the offensive and give yourself a fighting chance.","You're already vulnerable. The Fire Nation won't stop until Ba Sing Se falls. You can either sit back and wait for that to happen, or take the offensive and give yourself a fighting chance.",John O'Bryan,Ethan Spaulding,8.6 +8570,8570,Earth,2,The Earth King,18,Kuei,[Thinks for a moment as everyone waits anxiously.] Very well. You have my support.,Very well. You have my support.,John O'Bryan,Ethan Spaulding,8.6 +8571,8571,Earth,2,The Earth King,18,Scene Description,Team Avatar celebrates. Someone else arrives.,NA,John O'Bryan,Ethan Spaulding,8.6 +8572,8572,Earth,2,The Earth King,18,General How,Your Majesty. [Walks up to Team Avatar and bows to the king.] I apologize for the interruption.,Your Majesty. I apologize for the interruption.,John O'Bryan,Ethan Spaulding,8.6 +8573,8573,Earth,2,The Earth King,18,Kuei,"[To Team Avatar.] This is General How. He's the leader of the Council of Five, my highest ranking generals.","This is General How. He's the leader of the Council of Five, my highest ranking generals.",John O'Bryan,Ethan Spaulding,8.6 +8574,8574,Earth,2,The Earth King,18,General How,We searched Long Feng's office. I think we found something that will interest everybody. [Team Avatar look at each other.],We searched Long Feng's office. I think we found something that will interest everybody.,John O'Bryan,Ethan Spaulding,8.6 +8575,8575,Earth,2,The Earth King,18,Scene Description,"In Long Feng's office, a soldier is carrying a box of papers to the desk.",NA,John O'Bryan,Ethan Spaulding,8.6 +8576,8576,Earth,2,The Earth King,18,General How,There are secret files on everyone in Ba Sing Se. Including you kids.,There are secret files on everyone in Ba Sing Se. Including you kids.,John O'Bryan,Ethan Spaulding,8.6 +8577,8577,Earth,2,The Earth King,18,Aang,Secret files?,Secret files?,John O'Bryan,Ethan Spaulding,8.6 +8578,8578,Earth,2,The Earth King,18,Kuei,"[Takes out a scroll and reads the side.] ""Toph Beifong."" [Hands the scroll to General How, who hands it to Toph, who hands it to Katara.]","""Toph Beifong.""",John O'Bryan,Ethan Spaulding,8.6 +8579,8579,Earth,2,The Earth King,18,Katara,[Opens the scroll and reads it.] It's a letter from your mom. Your mom's here in the city. And she wants to see you. [Toph's eyes widen with shock.],It's a letter from your mom. Your mom's here in the city. And she wants to see you.,John O'Bryan,Ethan Spaulding,8.6 +8580,8580,Earth,2,The Earth King,18,Toph,Long Feng intercepted our letters from home? [Shakes her head.] That's just sad.,Long Feng intercepted our letters from home? That's just sad.,John O'Bryan,Ethan Spaulding,8.6 +8581,8581,Earth,2,The Earth King,18,Kuei,[Takes out another scroll and hands it to Aang.] Aang?,Aang?,John O'Bryan,Ethan Spaulding,8.6 +8582,8582,Earth,2,The Earth King,18,General How,This scroll was attached to the horn of your bison when the Dai Li captured it.,This scroll was attached to the horn of your bison when the Dai Li captured it.,John O'Bryan,Ethan Spaulding,8.6 +8583,8583,Earth,2,The Earth King,18,Aang,[Opens the scroll and reads it.] It's from the Eastern Air Temple.,It's from the Eastern Air Temple.,John O'Bryan,Ethan Spaulding,8.6 +8584,8584,Earth,2,The Earth King,18,Katara,Is there a letter for me and Sokka by any chance?,Is there a letter for me and Sokka by any chance?,John O'Bryan,Ethan Spaulding,8.6 +8585,8585,Earth,2,The Earth King,18,Kuei,[Looks in the box.] I'm afraid not.,I'm afraid not.,John O'Bryan,Ethan Spaulding,8.6 +8586,8586,Earth,2,The Earth King,18,Sokka,[He and Katara become downcast.] Oh.,Oh.,John O'Bryan,Ethan Spaulding,8.6 +8587,8587,Earth,2,The Earth King,18,General How,But there is an intelligence report that might interest you. [Hands a scroll to Katara.],But there is an intelligence report that might interest you.,John O'Bryan,Ethan Spaulding,8.6 +8588,8588,Earth,2,The Earth King,18,Katara,"[Opens the scroll and reads it.] ""A small fleet of Water Tribe ships.""","""A small fleet of Water Tribe ships.""",John O'Bryan,Ethan Spaulding,8.6 +8589,8589,Earth,2,The Earth King,18,Sokka,[Shocked. Appears on Katara's side.] What? That could be Dad!,What? That could be Dad!,John O'Bryan,Ethan Spaulding,8.6 +8590,8590,Earth,2,The Earth King,18,Katara,"[Reads the report with excitement.] ""Protecting the mouth of Chameleon Bay. [Her and Sokka's eyes widen.] Led by Hakoda."" [Katara and Sokka turn to each other in excitement.] It is Dad!","""Protecting the mouth of Chameleon Bay. Led by Hakoda."" It is Dad!",John O'Bryan,Ethan Spaulding,8.6 +8591,8591,Earth,2,The Earth King,18,Scene Description,"Meanwhile at the apartment, Iroh is pouring tea.",NA,John O'Bryan,Ethan Spaulding,8.6 +8592,8592,Earth,2,The Earth King,18,Iroh,"You should know that this is not a natural sickness, but that shouldn't stop you from enjoying tea. [Feeds Zuko the tea.]","You should know that this is not a natural sickness, but that shouldn't stop you from enjoying tea.",John O'Bryan,Ethan Spaulding,8.6 +8593,8593,Earth,2,The Earth King,18,Zuko,What's happening?,What's happening?,John O'Bryan,Ethan Spaulding,8.6 +8594,8594,Earth,2,The Earth King,18,Iroh,Your critical decision. What you did beneath that lake. It was in such conflict with your image of yourself that you are now at war within your own mind and body. [Feeds Zuko more tea.],Your critical decision. What you did beneath that lake. It was in such conflict with your image of yourself that you are now at war within your own mind and body.,John O'Bryan,Ethan Spaulding,8.6 +8595,8595,Earth,2,The Earth King,18,Zuko,What's that mean? [Coughs continuously and lies down.],What's that mean?,John O'Bryan,Ethan Spaulding,8.6 +8596,8596,Earth,2,The Earth King,18,Iroh,"You are going through a metamorphosis, my nephew. It will not be a pleasant experience, but when you come out of it, [Takes a cloth and wipes Zuko's head.] you will be the beautiful prince you were always meant to be.","You are going through a metamorphosis, my nephew. It will not be a pleasant experience, but when you come out of it, you will be the beautiful prince you were always meant to be.",John O'Bryan,Ethan Spaulding,8.6 +8597,8597,Earth,2,The Earth King,18,Scene Description,Back in Long Feng's office.,NA,John O'Bryan,Ethan Spaulding,8.6 +8598,8598,Earth,2,The Earth King,18,Aang,I can't believe it. There's a man living at the Eastern Air Temple. He says he's a guru.,I can't believe it. There's a man living at the Eastern Air Temple. He says he's a guru.,John O'Bryan,Ethan Spaulding,8.6 +8599,8599,Earth,2,The Earth King,18,Sokka,What's a guru? Some kind of poisonous blow fish?,What's a guru? Some kind of poisonous blow fish?,John O'Bryan,Ethan Spaulding,8.6 +8600,8600,Earth,2,The Earth King,18,Aang,"No, a spiritual expert. He wants to help me take the next step in the Avatar journey. He says he can teach me to control the Avatar State.","No, a spiritual expert. He wants to help me take the next step in the Avatar journey. He says he can teach me to control the Avatar State.",John O'Bryan,Ethan Spaulding,8.6 +8601,8601,Earth,2,The Earth King,18,Katara,And I can't believe we know where our dad is now.,And I can't believe we know where our dad is now.,John O'Bryan,Ethan Spaulding,8.6 +8602,8602,Earth,2,The Earth King,18,Toph,I know what you mean. My mom's in the city. And from her letter it sounds like she finally understands me.,I know what you mean. My mom's in the city. And from her letter it sounds like she finally understands me.,John O'Bryan,Ethan Spaulding,8.6 +8603,8603,Earth,2,The Earth King,18,Sokka,This is all such big news! Where do we even start?,This is all such big news! Where do we even start?,John O'Bryan,Ethan Spaulding,8.6 +8604,8604,Earth,2,The Earth King,18,Katara,"I hate to say it, but we have to split up.","I hate to say it, but we have to split up.",John O'Bryan,Ethan Spaulding,8.6 +8605,8605,Earth,2,The Earth King,18,Aang,[Worriedly.] Split up? We just found Appa and got the family back together! Now you want us to separate?,Split up? We just found Appa and got the family back together! Now you want us to separate?,John O'Bryan,Ethan Spaulding,8.6 +8606,8606,Earth,2,The Earth King,18,Katara,"You have to meet this guru, Aang. If we're going to invade the Fire Nation, you need to be ready.","You have to meet this guru, Aang. If we're going to invade the Fire Nation, you need to be ready.",John O'Bryan,Ethan Spaulding,8.6 +8607,8607,Earth,2,The Earth King,18,Aang,"Well, if I'm going to the Eastern Air Temple, Appa and I can drop you off at Chameleon Bay to see your dad.","Well, if I'm going to the Eastern Air Temple, Appa and I can drop you off at Chameleon Bay to see your dad.",John O'Bryan,Ethan Spaulding,8.6 +8608,8608,Earth,2,The Earth King,18,Sokka,Someone has to stay here with the Earth King and help him plan for the invasion. [Stands up.] I guess that's me.,Someone has to stay here with the Earth King and help him plan for the invasion. I guess that's me.,John O'Bryan,Ethan Spaulding,8.6 +8609,8609,Earth,2,The Earth King,18,Katara,"No, Sokka. I know how badly you wanna help Dad. You go to Chameleon Bay. I'll stay here with the king.","No, Sokka. I know how badly you wanna help Dad. You go to Chameleon Bay. I'll stay here with the king.",John O'Bryan,Ethan Spaulding,8.6 +8610,8610,Earth,2,The Earth King,18,Sokka,[Overjoyed with tears welling in his eyes. Stands up and dances happily.] You are the nicest ... sister ... ever! [Throws his arms around Katara and kisses her on the cheek.],You are the nicest ... sister ... ever!,John O'Bryan,Ethan Spaulding,8.6 +8611,8611,Earth,2,The Earth King,18,Katara,"Easy there, big brother ... [Gives a slight chuckle.] Though you're right. I am.","Easy there, big brother ... Though you're right. I am.",John O'Bryan,Ethan Spaulding,8.6 +8612,8612,Earth,2,The Earth King,18,Scene Description,"Outside the Palace, Team Avatar is preparing to leave. The king walks down to them. Katara is petting Appa. Aang turns to face her.",NA,John O'Bryan,Ethan Spaulding,8.6 +8613,8613,Earth,2,The Earth King,18,Aang,Katara? I need to tell you something. [Starts blushing.] I've been wanting to say it for a long time.,Katara? I need to tell you something. I've been wanting to say it for a long time.,John O'Bryan,Ethan Spaulding,8.6 +8614,8614,Earth,2,The Earth King,18,Katara,"What is it, Aang?","What is it, Aang?",John O'Bryan,Ethan Spaulding,8.6 +8615,8615,Earth,2,The Earth King,18,Aang,"[Rubs the back of his head.] Katara, I- [He is cut off by Sokka.]","Katara, I-",John O'Bryan,Ethan Spaulding,8.6 +8616,8616,Earth,2,The Earth King,18,Sokka,"[Throws Aang in a headlock.] All right. Who's ready to get going on our little men-only man trip? [Noogies Aang. Katara looks at him, annoyed.]",All right. Who's ready to get going on our little men-only man trip?,John O'Bryan,Ethan Spaulding,8.6 +8617,8617,Earth,2,The Earth King,18,Kuei,"Aang and Sokka, [They look at him.] I wish you a good journey. Ba Sing Se owes you its thanks. We look forward to your safe return. [Aang, Katara, and Sokka bow.]","Aang and Sokka, I wish you a good journey. Ba Sing Se owes you its thanks. We look forward to your safe return.",John O'Bryan,Ethan Spaulding,8.6 +8618,8618,Earth,2,The Earth King,18,Scene Description,Sokka starts climbing atop Appa. A soldier walks up to the king.,NA,John O'Bryan,Ethan Spaulding,8.6 +8619,8619,Earth,2,The Earth King,18,Soldier,Your Majesty. There are three female warriors to see you. They're from the island of Kyoshi.,Your Majesty. There are three female warriors to see you. They're from the island of Kyoshi.,John O'Bryan,Ethan Spaulding,8.6 +8620,8620,Earth,2,The Earth King,18,Sokka,[Shocked.] That's Suki! [Falls off Appa.],That's Suki!,John O'Bryan,Ethan Spaulding,8.6 +8621,8621,Earth,2,The Earth King,18,Kuei,You know these warriors?,You know these warriors?,John O'Bryan,Ethan Spaulding,8.6 +8622,8622,Earth,2,The Earth King,18,Sokka,[Gets up.] Oh yeah. The Kyoshi Warriors are a skilled group of fighters. Trustworthy too. They're good friends of ours.,Oh yeah. The Kyoshi Warriors are a skilled group of fighters. Trustworthy too. They're good friends of ours.,John O'Bryan,Ethan Spaulding,8.6 +8623,8623,Earth,2,The Earth King,18,Kuei,Then we shall welcome them as honored guests.,Then we shall welcome them as honored guests.,John O'Bryan,Ethan Spaulding,8.6 +8624,8624,Earth,2,The Earth King,18,Katara,"[Aang turns to Appa.] Wait. Aang. [Hugs him and kisses him on the cheek, which causes him to blush.]",Wait. Aang.,John O'Bryan,Ethan Spaulding,8.6 +8625,8625,Earth,2,The Earth King,18,Toph,I'm really gonna miss you guys.,I'm really gonna miss you guys.,John O'Bryan,Ethan Spaulding,8.6 +8626,8626,Earth,2,The Earth King,18,Katara,"[Hugs Toph with Aang. Sokka looks away, crossing his arms.] Me too.",Me too.,John O'Bryan,Ethan Spaulding,8.6 +8627,8627,Earth,2,The Earth King,18,Aang,Yeah.,Yeah.,John O'Bryan,Ethan Spaulding,8.6 +8628,8628,Earth,2,The Earth King,18,Sokka,"[Everyone goes to hug him.] Aahh! Great. That's enough. [Smiles.] Okay, we love each other. [Pats Aang and Katara on the head.] Seriously.","Aahh! Great. That's enough. Okay, we love each other. Seriously.",John O'Bryan,Ethan Spaulding,8.6 +8629,8629,Earth,2,The Earth King,18,Scene Description,"Appa flies off. Back at the apartment, Iroh and Zuko are asleep. Zuko wakes up and walks into the bathroom. He washes his face with water. When he looks in the mirror, he sees himself with no scar, no hair and an arrow tattoo on his head, resembling Aang. He looks horrified. He screams himself awake and breathes heavily. He touches the scar on his face and closes his eyes. Meanwhile, Appa is flying Sokka and Aang. Sokka is resting across Appa's back.",NA,John O'Bryan,Ethan Spaulding,8.6 +8630,8630,Earth,2,The Earth King,18,Sokka,"You see, Aang? A little positive thinking works wonders. We got the king on our side, we got Long Feng arrested, and when we get back, Suki's waiting for me.","You see, Aang? A little positive thinking works wonders. We got the king on our side, we got Long Feng arrested, and when we get back, Suki's waiting for me.",John O'Bryan,Ethan Spaulding,8.6 +8631,8631,Earth,2,The Earth King,18,Aang,"Yeah. Girls are waiting for us. Thanks, positive attitude.","Yeah. Girls are waiting for us. Thanks, positive attitude.",John O'Bryan,Ethan Spaulding,8.6 +8632,8632,Earth,2,The Earth King,18,Sokka,Everything is gonna work out perfectly. From now on and forever. [Aang turns around and smiles at him.],Everything is gonna work out perfectly. From now on and forever.,John O'Bryan,Ethan Spaulding,8.6 +8633,8633,Earth,2,The Earth King,18,Scene Description,"In a prison, Long Feng is sitting in his cell. A Dai Li agent appears outside of the cell.",NA,John O'Bryan,Ethan Spaulding,8.6 +8634,8634,Earth,2,The Earth King,18,Agent,"[Slides a tray of food underneath the door.] Dinner. [Long Feng grabs some food.] The Council of Five and the military are loyal to the Earth King, [Long Feng looks at him.] but the Dai Li remains loyal to you, Long Feng, sir. [Walks away as Long Feng eats his food while smiling sinisterly.]","Dinner. The Council of Five and the military are loyal to the Earth King, but the Dai Li remains loyal to you, Long Feng, sir.",John O'Bryan,Ethan Spaulding,8.6 +8635,8635,Earth,2,The Earth King,18,Scene Description,"Meanwhile, at a random house, Toph is outside. She exhales deeply and knocks on the door. It opens on its own.",NA,John O'Bryan,Ethan Spaulding,8.6 +8636,8636,Earth,2,The Earth King,18,Toph,"[Enters.] Hello? Mom? Anyone home? [Walks to the center of the room. She senses something, but is quickly captured in a metal box.] Hey! Who do you think you're dealing with!?",Hello? Mom? Anyone home? Hey! Who do you think you're dealing with!?,John O'Bryan,Ethan Spaulding,8.6 +8637,8637,Earth,2,The Earth King,18,Scene Description,"Xin Fu, the head of a fighting promotion Toph was in, and Master Yu, Toph's former earthbending master, appear.",NA,John O'Bryan,Ethan Spaulding,8.6 +8638,8638,Earth,2,The Earth King,18,Xin Fu,One loud-mouthed little brat who strayed too far from home.,One loud-mouthed little brat who strayed too far from home.,John O'Bryan,Ethan Spaulding,8.6 +8639,8639,Earth,2,The Earth King,18,Scene Description,"Back at the palace, three Kyoshi Warriors are walking up to the king and bow.",NA,John O'Bryan,Ethan Spaulding,8.6 +8640,8640,Earth,2,The Earth King,18,Kuei,"In our hour of need, it is with the highest honor that I welcome our esteemed allies, the Kyoshi Warriors!","In our hour of need, it is with the highest honor that I welcome our esteemed allies, the Kyoshi Warriors!",John O'Bryan,Ethan Spaulding,8.6 +8641,8641,Earth,2,The Earth King,18,Scene Description,The warriors look up.,NA,John O'Bryan,Ethan Spaulding,8.6 +8642,8642,Earth,2,The Earth King,18,Azula,We are the Earth King's humble servants.,We are the Earth King's humble servants.,John O'Bryan,Ethan Spaulding,8.6 +8643,8643,Earth,2,The Earth King,18,Scene Description,"The middle warrior is shown to have gold eyes, showing that it is really Azula, Mai, and Ty Lee disguised as Kyoshi Warriors, whom they have previously defeated.",NA,John O'Bryan,Ethan Spaulding,8.6 +8644,8644,Earth,2,The Earth King,18,Scene Description,Fade to credits.,NA,John O'Bryan,Ethan Spaulding,8.6 +8645,8645,Earth,2,The Guru,19,Scene Description,The episode starts with a view of the exterior of Zuko and Iroh's apartment. Cut to the interior. Iroh is preparing food when Zuko awakens.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8646,8646,Earth,2,The Guru,19,Zuko,What's that smell?,What's that smell?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8647,8647,Earth,2,The Guru,19,Iroh,It's jook. I'm sure you wouldn't like it.,It's jook. I'm sure you wouldn't like it.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8648,8648,Earth,2,The Guru,19,Zuko,"[Sniffs.] Actually, it smells delicious. I'd love a bowl, Uncle. [Holds a bowl up.]","Actually, it smells delicious. I'd love a bowl, Uncle.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8649,8649,Earth,2,The Guru,19,Iroh,"Now that your fever is gone, you seem different somehow.","Now that your fever is gone, you seem different somehow.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8650,8650,Earth,2,The Guru,19,Zuko,"[Optimistically.] It's a new day. We've got a new apartment, new furniture, and today's the grand opening of your new tea shop. [Moves to a table and sits.] Things are looking up, Uncle. [Iroh's shocked expression changes to a smile.]","It's a new day. We've got a new apartment, new furniture, and today's the grand opening of your new tea shop. Things are looking up, Uncle.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8651,8651,Earth,2,The Guru,19,Scene Description,"Aang and Sokka fly on Appa to a Water Tribe camp, where Hakoda is.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8652,8652,Earth,2,The Guru,19,Aang,You haven't seen your dad in over two years. You must be so excited!,You haven't seen your dad in over two years. You must be so excited!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8653,8653,Earth,2,The Guru,19,Sokka,"[Almost throwing up.] I know I should be, but, I just feel sick to my stomach. [Holds his stomach.]","I know I should be, but, I just feel sick to my stomach.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8654,8654,Earth,2,The Guru,19,Aang,Don't be nervous. He's going to be so happy to see you! [He puts his hand on Sokka's shoulder who smiles.],Don't be nervous. He's going to be so happy to see you!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8655,8655,Earth,2,The Guru,19,Sokka,So what about you? Are you nervous to meet this guru?,So what about you? Are you nervous to meet this guru?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8656,8656,Earth,2,The Guru,19,Aang,Not at all. I'm ready to master the Avatar State. I'll do whatever it takes. [Sokka gets off Appa.] See you in a week. Yip yip!,Not at all. I'm ready to master the Avatar State. I'll do whatever it takes. See you in a week. Yip yip!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8657,8657,Earth,2,The Guru,19,Scene Description,"Aang and Appa fly away. Sokka arrives at the camp, where all the warriors greet him warmly.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8658,8658,Earth,2,The Guru,19,Water Tribe warrior,"Sokka, good to see you.","Sokka, good to see you.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8659,8659,Earth,2,The Guru,19,Scene Description,"He looks and sees the main tent. Inside, Hakoda, Sokka's father, is looking at a map with more warriors, including Bato, now with scars on his arm. Bato nudges Hakoda and Hakoda becomes happy upon seeing Sokka.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8660,8660,Earth,2,The Guru,19,Hakoda,Sokka.,Sokka.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8661,8661,Earth,2,The Guru,19,Sokka,"Hi, Dad.","Hi, Dad.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8662,8662,Earth,2,The Guru,19,Scene Description,"The two embrace. Back at the Earth King's Royal Palace, the ""Kyoshi Warriors"", Azula, Mai, and Ty Lee in disguise, sit before King Kuei.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8663,8663,Earth,2,The Guru,19,Kuei,"Look Bosco! The Kyoshi Warriors are here to protect us! Aren't you excited? [Bosco yawns.] It's been a difficult week for me. My most trusted advisor, Long Feng, and his Dai Li agents tried to take control of Ba Sing Se from me.","Look Bosco! The Kyoshi Warriors are here to protect us! Aren't you excited? It's been a difficult week for me. My most trusted advisor, Long Feng, and his Dai Li agents tried to take control of Ba Sing Se from me.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8664,8664,Earth,2,The Guru,19,Azula,It's terrible when you can't trust the people who are closest to you.,It's terrible when you can't trust the people who are closest to you.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8665,8665,Earth,2,The Guru,19,Kuei,"[Pets Bosco.] But there is good news. As we speak, the Council of Five is meeting to plan an invasion of the Fire Nation this summer, on the day of a solar eclipse.","But there is good news. As we speak, the Council of Five is meeting to plan an invasion of the Fire Nation this summer, on the day of a solar eclipse.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8666,8666,Earth,2,The Guru,19,Scene Description,"For a second, Azula's eyes slightly widen with shock and worry upon hearing this, but she quickly hides it.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8667,8667,Earth,2,The Guru,19,Azula,Really? Now that sounds like a fascinating and brilliant plan. [Glances off as Mai and Ty Lee look at each other.],Really? Now that sounds like a fascinating and brilliant plan.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8668,8668,Earth,2,The Guru,19,Scene Description,"Cut to the Council of Five meeting, where Katara and Momo are present.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8669,8669,Earth,2,The Guru,19,General How,"General Fong's base will serve as the launching point for the attack. In exactly two months, the army and navy will invade the Fire Nation on the Day of Black Sun.","General Fong's base will serve as the launching point for the attack. In exactly two months, the army and navy will invade the Fire Nation on the Day of Black Sun.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8670,8670,Earth,2,The Guru,19,Scene Description,Momo jumps on the map and begins knocking over the pieces.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8671,8671,Earth,2,The Guru,19,Katara,"Or we could send in Momo to do some damage! [Chuckles.] 'Cause, the ... sorry.","Or we could send in Momo to do some damage! 'Cause, the ... sorry.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8672,8672,Earth,2,The Guru,19,General How,"[Uses earthbending to stand the pieces back up, scaring Momo.] All we need is the Earth King's seal in order to execute the plan. [Sends the scroll across the table to Katara.]",All we need is the Earth King's seal in order to execute the plan.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8673,8673,Earth,2,The Guru,19,Katara,"I'll get these scrolls to him right away. Thank you, General How.","I'll get these scrolls to him right away. Thank you, General How.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8674,8674,Earth,2,The Guru,19,Scene Description,"Aang continues his journey to the Eastern Air Temple. He spots Guru Pathik, who is meditating, and lands Appa.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8675,8675,Earth,2,The Guru,19,Aang,"Uhhh ... hello? You're Guru Pathik, right? [Aang approaches Pathik.] The person who attached the note to Appa's horn?","Uhhh ... hello? You're Guru Pathik, right? The person who attached the note to Appa's horn?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8676,8676,Earth,2,The Guru,19,Pathik,"Indeed. I was a spiritual brother of your people, and a personal friend of Monk Gyatso.","Indeed. I was a spiritual brother of your people, and a personal friend of Monk Gyatso.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8677,8677,Earth,2,The Guru,19,Aang,"In your note, [Aang sits.] you said you could teach me how to gain control of the Avatar State. How?","In your note, you said you could teach me how to gain control of the Avatar State. How?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8678,8678,Earth,2,The Guru,19,Pathik,"You must gain balance within yourself, before you can bring balance to the world. And the first step to gaining balance begins with this. [Hands Aang a yellow beverage in a wooden cup.] Drink up!","You must gain balance within yourself, before you can bring balance to the world. And the first step to gaining balance begins with this. Drink up!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8679,8679,Earth,2,The Guru,19,Aang,[Takes it and looks at it. Drinks it and quickly spits it out to his left in disgust.] Uggh! It tastes like onion and banana juice!,Uggh! It tastes like onion and banana juice!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8680,8680,Earth,2,The Guru,19,Pathik,That's because it is! [Pathik empties another bowl and holds it over his head.] Yum yum!,That's because it is! Yum yum!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8681,8681,Earth,2,The Guru,19,Scene Description,"Aang blinks in disbelief. Meanwhile, Xin Fu and Master Yu are working to bring Toph back to the Beifong Estate.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8682,8682,Earth,2,The Guru,19,Yu,I believe we need to go right!,I believe we need to go right!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8683,8683,Earth,2,The Guru,19,Xin Fu,What are you talking about? The Beifong Estate's this way!,What are you talking about? The Beifong Estate's this way!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8684,8684,Earth,2,The Guru,19,Yu,I'm quite certain you're mistaken.,I'm quite certain you're mistaken.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8685,8685,Earth,2,The Guru,19,Toph,[Banging at the cell.] Hey! Can you two old ladies quit your bickering for a second? I got to go to the bathroom!,Hey! Can you two old ladies quit your bickering for a second? I got to go to the bathroom!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8686,8686,Earth,2,The Guru,19,Yu,"Oooh ... uhhh, okay, but make it quick! [Getting up with a key in hand.]","Oooh ... uhhh, okay, but make it quick!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8687,8687,Earth,2,The Guru,19,Xin Fu,[Stopping Yu.] What's wrong with you?,What's wrong with you?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8688,8688,Earth,2,The Guru,19,Yu,"Ooh, very sneaky Toph! Nice try, but you can't trick me! [Sits down.]","Ooh, very sneaky Toph! Nice try, but you can't trick me!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8689,8689,Earth,2,The Guru,19,Toph,Let me out of here so I can kick both your butts!,Let me out of here so I can kick both your butts!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8690,8690,Earth,2,The Guru,19,Xin Fu,"Quit your banging! [Bangs the metal box.] You might think you're the greatest earthbender in the world, but even you can't bend metal!","Quit your banging! You might think you're the greatest earthbender in the world, but even you can't bend metal!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8691,8691,Earth,2,The Guru,19,Scene Description,"Toph looks sad as she places her hand on a side of the metal box. The scene cuts to that night, and where Azula, Mai and Ty Lee are staying which is a small building in the Upper Ring. Mai and Ty Lee are removing their make-up. A smiling Ty Lee is looking in a mirror. She is wiping the last traces of her Kyoshi makeup from her face. Mai is seated next to Ty Lee, still working on her own face.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8692,8692,Earth,2,The Guru,19,Azula,"We have been presented with an extraordinary opportunity, girls.","We have been presented with an extraordinary opportunity, girls.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8693,8693,Earth,2,The Guru,19,Ty Lee,Mai finally gets to wear make-up that's not totally depressing? [Azula walks past toward a window.],Mai finally gets to wear make-up that's not totally depressing?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8694,8694,Earth,2,The Guru,19,Mai,"[With large, dark splotches of black makeup dripping down her eyes; Sarcastically.] Ha, ha.","Ha, ha.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8695,8695,Earth,2,The Guru,19,Azula,"I'm talking about conquering the whole Earth Kingdom. [The two girls turn with shocked looks.] For one hundred years, the Fire Nation has hammered away at Ba Sing Se from the outside. But now we're on the inside, and we can take it by ourselves.","I'm talking about conquering the whole Earth Kingdom. For one hundred years, the Fire Nation has hammered away at Ba Sing Se from the outside. But now we're on the inside, and we can take it by ourselves.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8696,8696,Earth,2,The Guru,19,Ty Lee,"[Admiringly.] Gosh, you're so confident. I really admire that about you.","Gosh, you're so confident. I really admire that about you.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8697,8697,Earth,2,The Guru,19,Azula,"From the inside, we're in perfect position to organize a coup and overthrow the Earth King. The key is the Dai Li. Whoever controls the Dai Li [Turns back into the room.] controls Ba Sing Se.","From the inside, we're in perfect position to organize a coup and overthrow the Earth King. The key is the Dai Li. Whoever controls the Dai Li controls Ba Sing Se.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8698,8698,Earth,2,The Guru,19,Scene Description,Back to the Eastern Air Temple at a creek.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8699,8699,Earth,2,The Guru,19,Pathik,"In order to master the Avatar State, you must open all the chakras. Aang, tell me everything you know about chakras.","In order to master the Avatar State, you must open all the chakras. Aang, tell me everything you know about chakras.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8700,8700,Earth,2,The Guru,19,Aang,[Rubs eyes.] What are chakras?,What are chakras?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8701,8701,Earth,2,The Guru,19,Pathik,"Oh, I see. I guess we'll start with the basics. [As he explains he points to the water and the moss within.] The water flows through this creek, much like the energy flows through your body. As you see, there are several pools where the water swirls around before flowing on. These pools are like our chakras.","Oh, I see. I guess we'll start with the basics. The water flows through this creek, much like the energy flows through your body. As you see, there are several pools where the water swirls around before flowing on. These pools are like our chakras.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8702,8702,Earth,2,The Guru,19,Aang,So chakras are pools of spiraling energy in our bodies?,So chakras are pools of spiraling energy in our bodies?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8703,8703,Earth,2,The Guru,19,Pathik,"Exactly. If nothing else were around, this creek would flow pure and clear. However, life is messy, and things tend to fall in the creek. And then what happens?","Exactly. If nothing else were around, this creek would flow pure and clear. However, life is messy, and things tend to fall in the creek. And then what happens?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8704,8704,Earth,2,The Guru,19,Aang,The creek can't flow?,The creek can't flow?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8705,8705,Earth,2,The Guru,19,Pathik,"Yes. But, if we open the ponds between the pools ... [He removes moss blocking the exit for the water.]","Yes. But, if we open the ponds between the pools ...","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8706,8706,Earth,2,The Guru,19,Aang,The energy flows!,The energy flows!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8707,8707,Earth,2,The Guru,19,Scene Description,"In another part of the temple, a cavern.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8708,8708,Earth,2,The Guru,19,Pathik,"There are seven chakras that go up the body. Each pool of energy has a purpose, and can be blocked by a specific kind of emotional muck. Be warned, opening the chakras is an intense experience, and once you begin the process, you cannot stop until all seven are open. Are you ready?","There are seven chakras that go up the body. Each pool of energy has a purpose, and can be blocked by a specific kind of emotional muck. Be warned, opening the chakras is an intense experience, and once you begin the process, you cannot stop until all seven are open. Are you ready?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8709,8709,Earth,2,The Guru,19,Aang,[Momentarily looks down.] I'll do whatever it takes.,I'll do whatever it takes.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8710,8710,Earth,2,The Guru,19,Pathik,"First we will open the Earth Chakra, located at the base of the spine. It deals with survival, and is blocked by fear. What are you most afraid of? Let your fears become clear to you.","First we will open the Earth Chakra, located at the base of the spine. It deals with survival, and is blocked by fear. What are you most afraid of? Let your fears become clear to you.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8711,8711,Earth,2,The Guru,19,Scene Description,"Aang sees images of things that cause him great fear, including the Blue Spirit attacking him, General Fong sinking Katara into the ground, himself merging with La at the North Pole, Fire Lord Ozai, and Sozin's Comet, which make him scream.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8712,8712,Earth,2,The Guru,19,Pathik,"Aang, your vision is not real. You are concerned for your survival, but you must surrender those fears. Let your fears flow down the creek. [Aang clears the image away.] You have opened your Earth Chakra! [Aang wipes sweat off his forehead.]","Aang, your vision is not real. You are concerned for your survival, but you must surrender those fears. Let your fears flow down the creek. You have opened your Earth Chakra!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8713,8713,Earth,2,The Guru,19,Scene Description,"Later, behind a waterfall.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8714,8714,Earth,2,The Guru,19,Pathik,Next is the ...,Next is the ...,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8715,8715,Earth,2,The Guru,19,Aang,Water Chakra?,Water Chakra?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8716,8716,Earth,2,The Guru,19,Pathik,"Brilliant! Maybe one day you will be a guru too! This chakra deals with pleasure and is blocked by guilt. Now, look at all the guilt with burdens you so. What do you blame yourself for?","Brilliant! Maybe one day you will be a guru too! This chakra deals with pleasure and is blocked by guilt. Now, look at all the guilt with burdens you so. What do you blame yourself for?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8717,8717,Earth,2,The Guru,19,Aang,[Sees the image of him leaving home.] I ran away. [Sees images of him in the Avatar State at General Fong's base.] I hurt all of those people.,I ran away. I hurt all of those people.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8718,8718,Earth,2,The Guru,19,Pathik,"Accept the reality that these things happened, but do not let them cloud and poison your energy. If you are to be a positive influence on the world, you need to forgive yourself.","Accept the reality that these things happened, but do not let them cloud and poison your energy. If you are to be a positive influence on the world, you need to forgive yourself.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8719,8719,Earth,2,The Guru,19,Scene Description,Scene cuts to the next day at the Water Tribe camp.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8720,8720,Earth,2,The Guru,19,Hakoda,This bay leads directly to the outskirts of Ba Sing Se. We've been using these tangle mines to stop the Fire Nation ships from getting through.,This bay leads directly to the outskirts of Ba Sing Se. We've been using these tangle mines to stop the Fire Nation ships from getting through.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8721,8721,Earth,2,The Guru,19,Bato,[Filling the mine with skunk fish and seaweed before moving away.] Your father invented tangle mines himself.,Your father invented tangle mines himself.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8722,8722,Earth,2,The Guru,19,Sokka,"Destructive? Buoyant? And ... [Sniffs and immediately becomes disgusted.] Aggh, ehhh! Terrible smelling!","Destructive? Buoyant? And ... Aggh, ehhh! Terrible smelling!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8723,8723,Earth,2,The Guru,19,Hakoda,"Very perceptive. The mines are filled with skunk fish and seaweed. When a ship detonates the mine, the seaweed tangles up the propeller and the foul smell forces people to abandon the ship. I call it the ""stink and sink.""","Very perceptive. The mines are filled with skunk fish and seaweed. When a ship detonates the mine, the seaweed tangles up the propeller and the foul smell forces people to abandon the ship. I call it the ""stink and sink.""","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8724,8724,Earth,2,The Guru,19,Sokka,"[Laughs.] Good one, Dad!","Good one, Dad!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8725,8725,Earth,2,The Guru,19,Bato,"[Nearby, unamused.] You're definitely your father's son.",You're definitely your father's son.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8726,8726,Earth,2,The Guru,19,Warrior,"[Approaching.] Hakoda, our scouts have spotted four Fire Nation ships!","Hakoda, our scouts have spotted four Fire Nation ships!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8727,8727,Earth,2,The Guru,19,Hakoda,"Bato, get these mines loaded up! The rest of you men, prepare for battle!","Bato, get these mines loaded up! The rest of you men, prepare for battle!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8728,8728,Earth,2,The Guru,19,Scene Description,The warriors run off to prepare as Sokka looks around before looking back to his father.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8729,8729,Earth,2,The Guru,19,Sokka,"Uhhh ... what should I do, Dad?","Uhhh ... what should I do, Dad?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8730,8730,Earth,2,The Guru,19,Hakoda,"Aren't you listening? I said, ""The rest of you men, get ready for battle"".","Aren't you listening? I said, ""The rest of you men, get ready for battle"".","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8731,8731,Earth,2,The Guru,19,Scene Description,"Sokka smiles and departs. Back in Ba Sing Se, at the Jasmine Dragon. Zuko and Iroh observe the happenings standing at the back.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8732,8732,Earth,2,The Guru,19,Iroh,"Who thought when we came to this city as refugees, that I'd end up owning my own tea shop? Follow your passion, Zuko, and life will reward you.","Who thought when we came to this city as refugees, that I'd end up owning my own tea shop? Follow your passion, Zuko, and life will reward you.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8733,8733,Earth,2,The Guru,19,Zuko,"Congratulations, Uncle.","Congratulations, Uncle.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8734,8734,Earth,2,The Guru,19,Iroh,I am very thankful.,I am very thankful.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8735,8735,Earth,2,The Guru,19,Zuko,You deserve it. The Jasmine Dragon will be the best tea shop in the city.,You deserve it. The Jasmine Dragon will be the best tea shop in the city.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8736,8736,Earth,2,The Guru,19,Iroh,No. I'm thankful because you decided to share this special day with me. It means more than you know. [The two embrace.],No. I'm thankful because you decided to share this special day with me. It means more than you know.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8737,8737,Earth,2,The Guru,19,Zuko,Now let's make these people some tea! [Walks away to the back.],Now let's make these people some tea!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8738,8738,Earth,2,The Guru,19,Iroh,"Yes, let's make some tea!","Yes, let's make some tea!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8739,8739,Earth,2,The Guru,19,Scene Description,"Back to the Eastern Air Temple, Aang and Pathik sit on a ledge.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8740,8740,Earth,2,The Guru,19,Pathik,"Third is the Fire Chakra, located in the stomach.","Third is the Fire Chakra, located in the stomach.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8741,8741,Earth,2,The Guru,19,Aang,[Holding his stomach.] My Fire Chakra would like to eat something other than onion-banana juice.,My Fire Chakra would like to eat something other than onion-banana juice.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8742,8742,Earth,2,The Guru,19,Pathik,"[Chuckles.] Good one! Moving on. This chakra deals with willpower, and is blocked by shame. What are you ashamed of? [Cuts to Aang's vision of his first attempt at firebending, which resulted in him accidentally burning Katara's hands.] What are your biggest disappointments in yourself?","Good one! Moving on. This chakra deals with willpower, and is blocked by shame. What are you ashamed of? What are your biggest disappointments in yourself?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8743,8743,Earth,2,The Guru,19,Aang,I'm never going to firebend again. I can't.,I'm never going to firebend again. I can't.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8744,8744,Earth,2,The Guru,19,Pathik,"You will never find balance if you deny this part of your life. You are the Avatar and therefore, you are a firebender. [Aang breathes deeply.] Hmmm ... that chakra opened less like a flowing creek, and more like a ... burping bison.","You will never find balance if you deny this part of your life. You are the Avatar and therefore, you are a firebender. Hmmm ... that chakra opened less like a flowing creek, and more like a ... burping bison.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8745,8745,Earth,2,The Guru,19,Aang,"[Loud belch.] Tastes like onions and bananas, but strangely something else. Pickles? [Pathik shrugs.]","Tastes like onions and bananas, but strangely something else. Pickles?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8746,8746,Earth,2,The Guru,19,Scene Description,"Back at the palace, two Dai Li agents hide on two pillars and secretly spy on a conversation between Mai and Ty Lee. The former is sitting on the stairs and the latter is practicing chi blocking and acrobatics.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8747,8747,Earth,2,The Guru,19,Mai,[Sighs.] I'm tired of wearing this girly disguise. I don't know how anyone could fight in this.,I'm tired of wearing this girly disguise. I don't know how anyone could fight in this.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8748,8748,Earth,2,The Guru,19,Ty Lee,Maybe that's why it was so easy to beat the Kyoshi Warriors and take their clothes.,Maybe that's why it was so easy to beat the Kyoshi Warriors and take their clothes.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8749,8749,Earth,2,The Guru,19,Mai,"How much longer do we have to serve the Earth King? If I have to clean up one more pile of bear poop, I'm going to throw up.","How much longer do we have to serve the Earth King? If I have to clean up one more pile of bear poop, I'm going to throw up.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8750,8750,Earth,2,The Guru,19,Ty Lee,Princess Azula promised we would go back to the Fire Nation as soon as we captured the Avatar. We just have to be patient.,Princess Azula promised we would go back to the Fire Nation as soon as we captured the Avatar. We just have to be patient.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8751,8751,Earth,2,The Guru,19,Mai,[Stands up.] Shush up! Do you want the whole palace to know we're Fire Nation?,Shush up! Do you want the whole palace to know we're Fire Nation?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8752,8752,Earth,2,The Guru,19,Ty Lee,Sorry!,Sorry!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8753,8753,Earth,2,The Guru,19,Scene Description,"The agents smile and climb away. Azula, who was hiding behind another pillar, walks up to them.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8754,8754,Earth,2,The Guru,19,Azula,"Good work, girls. I'm sure the Dai Li will deliver the message.","Good work, girls. I'm sure the Dai Li will deliver the message.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8755,8755,Earth,2,The Guru,19,Scene Description,Back at the Air Temple.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8756,8756,Earth,2,The Guru,19,Pathik,The fourth chakra is located in the heart. It deals with love and is blocked by grief. [Aang smiles and looks at a Air Nomad statue nearby before looking sad.] Lay all your grief out in front of you.,The fourth chakra is located in the heart. It deals with love and is blocked by grief. Lay all your grief out in front of you.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8757,8757,Earth,2,The Guru,19,Scene Description,"Aang sees images of many airbenders, including Gyatso and Yangchen. He smiles upon seeing them, but becomes saddened as they start to vanish into smoke.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8758,8758,Earth,2,The Guru,19,Pathik,"You have indeed felt a great loss. [The airbenders appear floating in the clouds.] But love is a form of energy, and it swirls all around us. [Aang is lifted into the air and sees the Air Nomads floating in the smoke.] The Air Nomads' love for you has not left this world. It is still inside of your heart, and is reborn in the form of new love.","You have indeed felt a great loss. But love is a form of energy, and it swirls all around us. The Air Nomads' love for you has not left this world. It is still inside of your heart, and is reborn in the form of new love.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8759,8759,Earth,2,The Guru,19,Scene Description,"The smoke in front of Aang forms a face and shows the first thing he saw upon waking up from his iceberg: Katara. Back in the real world, Aang is starting to cry tears of joy.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8760,8760,Earth,2,The Guru,19,Pathik,Let the pain flow away. [Aang wipes away his tears.] Very good.,Let the pain flow away. Very good.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8761,8761,Earth,2,The Guru,19,Aang,"Can I have some onion-banana juice, please?","Can I have some onion-banana juice, please?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8762,8762,Earth,2,The Guru,19,Scene Description,Inside another part of the temple.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8763,8763,Earth,2,The Guru,19,Pathik,"The fifth in the chain is the Sound Chakra, located in the throat. It deals with truth and is blocked by lies. The ones we tell ourselves.","The fifth in the chain is the Sound Chakra, located in the throat. It deals with truth and is blocked by lies. The ones we tell ourselves.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8764,8764,Earth,2,The Guru,19,Scene Description,"Aang flashes back to when he, Katara, and Sokka first began their journey to the North Pole.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8765,8765,Earth,2,The Guru,19,Katara,Why didn't you tell us you were the Avatar?,Why didn't you tell us you were the Avatar?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8766,8766,Earth,2,The Guru,19,Scene Description,"Back to the real world, Aang finds himself answering the question.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8767,8767,Earth,2,The Guru,19,Aang,Because I never wanted to be.,Because I never wanted to be.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8768,8768,Earth,2,The Guru,19,Pathik,"You cannot lie about your own nature. You must accept that you are the Avatar. [Aang inhales and, seeing an image of himself on a cliff looking down at the ground, exhales, and accepts his nature.] Very good, Aang. You have opened the chakra of truth.","You cannot lie about your own nature. You must accept that you are the Avatar. Very good, Aang. You have opened the chakra of truth.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8769,8769,Earth,2,The Guru,19,Scene Description,Outside the temple interior.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8770,8770,Earth,2,The Guru,19,Pathik,"The sixth pool of energy is the light chakra, located in the center of the forehead. It deals with insight and is blocked by illusion. The greatest illusion of this world is the illusion of separation. Things you think are separate and different are actually one in the same.","The sixth pool of energy is the light chakra, located in the center of the forehead. It deals with insight and is blocked by illusion. The greatest illusion of this world is the illusion of separation. Things you think are separate and different are actually one in the same.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8771,8771,Earth,2,The Guru,19,Aang,"[An image is shown of the world, with the four nations' territories marked.] Like the four nations.",Like the four nations.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8772,8772,Earth,2,The Guru,19,Pathik,"[The image changes so the territories become the same color.] Yes. We are all one people, [The territories become separate again.] but we live as if divided.","Yes. We are all one people, but we live as if divided.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8773,8773,Earth,2,The Guru,19,Aang,We're all connected. Everything is connected.,We're all connected. Everything is connected.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8774,8774,Earth,2,The Guru,19,Pathik,"That's right! Even the separation of the four elements is an illusion. If you open your mind, you will see that all the elements are one. Four parts of the same whole. Even metal is just a part of earth that has been purified and refined.","That's right! Even the separation of the four elements is an illusion. If you open your mind, you will see that all the elements are one. Four parts of the same whole. Even metal is just a part of earth that has been purified and refined.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8775,8775,Earth,2,The Guru,19,Scene Description,"As Pathik speaks, the camera fades to Xin Fu and Yu trying to take Toph home. She feels around the metal cage with seismic sense and feels tiny particles of earth in the metal. She smiles, exhales deeply and begins to push against the metal.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8776,8776,Earth,2,The Guru,19,Toph,"[Struggling.] Come on, metal. Budge! [She punches a hole in the metal and shakes her hand in pain.] Wooo! Toph, you rule.","Come on, metal. Budge! Wooo! Toph, you rule.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8777,8777,Earth,2,The Guru,19,Scene Description,She takes another punch as we cut back to Ba Sing Se. Katara walks by the Jasmine Dragon.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8778,8778,Earth,2,The Guru,19,Katara,"What do you say, Momo? A cup of tea before we get back to the king? [Arrives at the shop.] Table for two, please.","What do you say, Momo? A cup of tea before we get back to the king? Table for two, please.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8779,8779,Earth,2,The Guru,19,Zuko,"Uncle! I need two jasmine, one green, and one lychee!","Uncle! I need two jasmine, one green, and one lychee!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8780,8780,Earth,2,The Guru,19,Iroh,I'm brewing as fast as I can!,I'm brewing as fast as I can!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8781,8781,Earth,2,The Guru,19,Scene Description,"Katara notices Zuko and Iroh. Stunned, she runs away from the shop.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8782,8782,Earth,2,The Guru,19,Scene Description,"The scene returns to Aang and Pathik, who sit at the top of the temple at night.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8783,8783,Earth,2,The Guru,19,Aang,"This is the last chakra, isn't it?","This is the last chakra, isn't it?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8784,8784,Earth,2,The Guru,19,Pathik,"Yes. Once you open this chakra, you will be able to go in and out of the Avatar State at will and when you are in the Avatar State, you will have complete control and awareness of all your actions.","Yes. Once you open this chakra, you will be able to go in and out of the Avatar State at will and when you are in the Avatar State, you will have complete control and awareness of all your actions.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8785,8785,Earth,2,The Guru,19,Aang,Let's do this.,Let's do this.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8786,8786,Earth,2,The Guru,19,Pathik,"The Thought Chakra is located at the crown of the head. It deals with pure cosmic energy, and is blocked by earthly attachment. Meditate on what attaches you to this world. [Images of Katara appear before Aang.] Now, let all of those attachments go. Let them flow down the river, forgotten.","The Thought Chakra is located at the crown of the head. It deals with pure cosmic energy, and is blocked by earthly attachment. Meditate on what attaches you to this world. Now, let all of those attachments go. Let them flow down the river, forgotten.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8787,8787,Earth,2,The Guru,19,Aang,[Coming out of his meditation.] What? Why would I let go of Katara? I ... I love her!,What? Why would I let go of Katara? I ... I love her!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8788,8788,Earth,2,The Guru,19,Pathik,"Learn to let her go, or you cannot let the pure cosmic energy flow in from the universe.","Learn to let her go, or you cannot let the pure cosmic energy flow in from the universe.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8789,8789,Earth,2,The Guru,19,Aang,Why would I choose cosmic energy over Katara? [Aang throws his hands up.] How could it be a bad thing that I feel an attachment to her? Three chakras ago that was a good thing!,Why would I choose cosmic energy over Katara? How could it be a bad thing that I feel an attachment to her? Three chakras ago that was a good thing!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8790,8790,Earth,2,The Guru,19,Pathik,You must learn to let go.,You must learn to let go.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8791,8791,Earth,2,The Guru,19,Scene Description,"Back at the palace, Katara runs to inform the Earth King, only to encounter the ""Kyoshi Warriors"".",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8792,8792,Earth,2,The Guru,19,Katara,"Thank goodness you're here, Suki. Something terrible is going on. The Fire Nation has infiltrated the city, I just saw Prince Zuko and his uncle! [Azula widens her eyes in surprise and smiles slyly.] We have to tell the Earth King right away!","Thank goodness you're here, Suki. Something terrible is going on. The Fire Nation has infiltrated the city, I just saw Prince Zuko and his uncle! We have to tell the Earth King right away!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8793,8793,Earth,2,The Guru,19,Azula,"Oh, don't worry, I'll be sure to let him know.","Oh, don't worry, I'll be sure to let him know.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8794,8794,Earth,2,The Guru,19,Scene Description,"Katara notices ""Suki"" has gold eyes and is shocked upon realization that the ""Kyoshi Warriors"" are actually Azula, Mai, and Ty Lee. She prepares to attack, but Ty Lee quickly jumps forward and blocks her chi.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8795,8795,Earth,2,The Guru,19,Azula,"[While the three girls gather around the fallen Katara; pans to camera looking up to the three girls.] So, Zuzu's in the city, too? I think it's time for a family reunion. [Momo flies off.]","So, Zuzu's in the city, too? I think it's time for a family reunion.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8796,8796,Earth,2,The Guru,19,Scene Description,Back at the temple.,NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8797,8797,Earth,2,The Guru,19,Aang,"I'm sorry, but I can't let go of Katara.","I'm sorry, but I can't let go of Katara.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8798,8798,Earth,2,The Guru,19,Pathik,"Aang, to master the Avatar State, you must open all the chakras. Surrender yourself.","Aang, to master the Avatar State, you must open all the chakras. Surrender yourself.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8799,8799,Earth,2,The Guru,19,Aang,"Okay, I'll try.","Okay, I'll try.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8800,8800,Earth,2,The Guru,19,Pathik,Now think of your attachments and let them go. Let the pure cosmic energy flow.,Now think of your attachments and let them go. Let the pure cosmic energy flow.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8801,8801,Earth,2,The Guru,19,Scene Description,"Aang sees an image of him letting Katara go, and a bridge that will lead him to Avatar State mastery. As he is being surrounded by energy, however, he hears a shriek from Katara and sees a vision of her in chains. He runs away from the end of the road. This cuts his connection to the Avatar State, which drops him back to reality.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8802,8802,Earth,2,The Guru,19,Aang,Katara's in danger! I have to go! [Prepares to exit.],Katara's in danger! I have to go!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8803,8803,Earth,2,The Guru,19,Pathik,"No, Aang! By choosing attachment, you have locked the chakra! If you leave now, you won't be able to go into the Avatar State at all!","No, Aang! By choosing attachment, you have locked the chakra! If you leave now, you won't be able to go into the Avatar State at all!","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8804,8804,Earth,2,The Guru,19,Scene Description,"Aang hesitates but leaves anyway, leaving Pathik concerned. Meanwhile, the journey to take Toph back to her home is stopped when Xin Fu and Yu hear a loud noise. They go to investigate, and notice a hole in the cage and that Toph is gone.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8805,8805,Earth,2,The Guru,19,Yu,It's another one her tricks!,It's another one her tricks!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8806,8806,Earth,2,The Guru,19,Xin Fu,There's a giant hole in the box! How is that a trick!?,There's a giant hole in the box! How is that a trick!?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8807,8807,Earth,2,The Guru,19,Toph,[From behind them.] It's not! It's the real deal!,It's not! It's the real deal!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8808,8808,Earth,2,The Guru,19,Scene Description,"She earthbends the two men together, throws them in the cage, and metalbends the cage shut.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8809,8809,Earth,2,The Guru,19,Toph,[Jumps on top of the box.] I am the greatest earthbender in the world! Don't you two dunderheads ever forget it! [Stomps on the box and exits using earth surfing.],I am the greatest earthbender in the world! Don't you two dunderheads ever forget it!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8810,8810,Earth,2,The Guru,19,Xin Fu,"[Inside the box.] I'm going to be stuck in here forever with you, aren't I?","I'm going to be stuck in here forever with you, aren't I?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8811,8811,Earth,2,The Guru,19,Yu,I have to go the bathroom. [Xin Fu groans and slams his head against the box.],I have to go the bathroom.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8812,8812,Earth,2,The Guru,19,Scene Description,"Back at the Water Tribe camp, Hakoda approaches Sokka.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8813,8813,Earth,2,The Guru,19,Hakoda,Ready to go knock some Fire Nation heads?,Ready to go knock some Fire Nation heads?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8814,8814,Earth,2,The Guru,19,Sokka,"You don't know how much this means to me, Dad. I'll make you proud and I'll finally prove to you what a great warrior I am.","You don't know how much this means to me, Dad. I'll make you proud and I'll finally prove to you what a great warrior I am.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8815,8815,Earth,2,The Guru,19,Hakoda,"[Placing his hand on Sokka's shoulder.] Sokka, you don't have to prove anything to me. I'm already proud of you and I've always known you're a great warrior.","Sokka, you don't have to prove anything to me. I'm already proud of you and I've always known you're a great warrior.","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8816,8816,Earth,2,The Guru,19,Sokka,Really?,Really?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8817,8817,Earth,2,The Guru,19,Hakoda,Why do you think I trusted you to look after our tribe when I left?,Why do you think I trusted you to look after our tribe when I left?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8818,8818,Earth,2,The Guru,19,Scene Description,"Just as the two are boarding the ship, Aang and Appa appear. Aang shows a clear look of concern.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8819,8819,Earth,2,The Guru,19,Sokka,This can't be good news.,This can't be good news.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8820,8820,Earth,2,The Guru,19,Scene Description,"Aang and Sokka depart. Just as they're leaving, Sokka looks back at Hakoda, who looks back and grins. Back in Ba Sing Se, Azula is led into a prison by two Dai Li agents. She is taken to Long Feng's cell.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8821,8821,Earth,2,The Guru,19,Azula,What is this about? Your agents show up in the middle of the night and drag me down here? You will not treat a Kyoshi Warrior this way!,What is this about? Your agents show up in the middle of the night and drag me down here? You will not treat a Kyoshi Warrior this way!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8822,8822,Earth,2,The Guru,19,Long Feng,"But you're not a Kyoshi Warrior, are you, [Standing.] Princess Azula of the Fire Nation?","But you're not a Kyoshi Warrior, are you, Princess Azula of the Fire Nation?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8823,8823,Earth,2,The Guru,19,Azula,What do you want?,What do you want?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8824,8824,Earth,2,The Guru,19,Long Feng,I want to make a deal. It's time that I regain control of Ba Sing Se and you have something I need.,I want to make a deal. It's time that I regain control of Ba Sing Se and you have something I need.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8825,8825,Earth,2,The Guru,19,Azula,Oh?,Oh?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8826,8826,Earth,2,The Guru,19,Long Feng,The Earth King's trust.,The Earth King's trust.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8827,8827,Earth,2,The Guru,19,Azula,Why should I help you?,Why should I help you?,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8828,8828,Earth,2,The Guru,19,Long Feng,Because I can get you the Avatar.,Because I can get you the Avatar.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8829,8829,Earth,2,The Guru,19,Azula,[Smirks.] I'm listening ...,I'm listening ...,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8830,8830,Earth,2,The Guru,19,Scene Description,"Long Feng smiles. Back at the Jasmine Dragon, a royal messenger enters.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8831,8831,Earth,2,The Guru,19,Royal messenger,A message from the Royal Palace.,A message from the Royal Palace.,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8832,8832,Earth,2,The Guru,19,Iroh,"[Reads through, becomes shocked, and smiles.] I ... I can't believe it!",I ... I can't believe it!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8833,8833,Earth,2,The Guru,19,Zuko,"What is it, Uncle?","What is it, Uncle?","Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8834,8834,Earth,2,The Guru,19,Iroh,[Excited.] Great news! We've been invited to serve tea to the Earth King! [Runs off.],Great news! We've been invited to serve tea to the Earth King!,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8835,8835,Earth,2,The Guru,19,Scene Description,"Zuko smiles as he continues sweeping. Back in the prison hold, the door to Long Feng's cell is closed. Azula leaves Long Feng's presence and gives a smirk. Fade to credits.",NA,"Michael Dante DiMartino, Bryan Konietzko",Giancarlo Volpe,9.1 +8836,8836,Earth,2,The Crossroads of Destiny,20,Scene Description,"Ostrich horses are drinking water from a river as Appa, Aang, and Sokka fly over them.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8837,8837,Earth,2,The Crossroads of Destiny,20,Sokka,"So, what kind of trouble is Katara in?","So, what kind of trouble is Katara in?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8838,8838,Earth,2,The Crossroads of Destiny,20,Aang,"I don't know. In my vision, I just knew she needed help.","I don't know. In my vision, I just knew she needed help.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8839,8839,Earth,2,The Crossroads of Destiny,20,Sokka,"It would be nice if your Avatar powers could be just a little more specific from time to time. [He looks down and notices a mound of earth passing nearby, heading to the wall.] What is that?",It would be nice if your Avatar powers could be just a little more specific from time to time. What is that?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8840,8840,Earth,2,The Crossroads of Destiny,20,Scene Description,They fly down and follow the mound. Toph is seen still earth surfing. Aang and Sokka come down beside her.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8841,8841,Earth,2,The Crossroads of Destiny,20,Sokka,Need a ride?,Need a ride?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8842,8842,Earth,2,The Crossroads of Destiny,20,Scene Description,Toph becomes startled at the sound of Sokka's voice and falls backward off of the mound. Sokka and Aang cringe upon seeing her fall. Scene changes to Azula speaking to the Dai Li.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8843,8843,Earth,2,The Crossroads of Destiny,20,Azula,"[While pacing back and forth.] The Earth King and the Council of Five do not trust the Dai Li. They imprisoned your leader, Long Feng. Soon they will turn on all of you and eliminate you. Seizing power today is a matter of life and death. [As she talks, an agent with a mustache starts looking nervous and slightly lowers his head.] This coup must be swift and decisive. The Earth King and each of the five generals must be taken out simultaneously. Long Feng has placed you in my command while we overthrow the government. [Walks over to her left, to another agent with a tiny, vertical scar on his right cheek. When she nears him, she stares sideways at the agent while still addressing all the agents.] If I sense any disloyalty, any hesitation, any weakness at all, [She stops right in front of the scarred agent.] I will snuff it out. [She continues walking, with the eyes of the now nervous scarred agent following her.] That is all.","The Earth King and the Council of Five do not trust the Dai Li. They imprisoned your leader, Long Feng. Soon they will turn on all of you and eliminate you. Seizing power today is a matter of life and death. This coup must be swift and decisive. The Earth King and each of the five generals must be taken out simultaneously. Long Feng has placed you in my command while we overthrow the government. If I sense any disloyalty, any hesitation, any weakness at all, I will snuff it out. That is all.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8844,8844,Earth,2,The Crossroads of Destiny,20,Scene Description,"The Dai Li leave, and Azula walks up to Ty Lee, who is pouring tea.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8845,8845,Earth,2,The Crossroads of Destiny,20,Ty Lee,"Nice speech, Azula. It was pretty and poetic, but also scary in a good way. [She hands the cup to Azula. Camera pans over to a close-up of Mai.]","Nice speech, Azula. It was pretty and poetic, but also scary in a good way.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8846,8846,Earth,2,The Crossroads of Destiny,20,Mai,[Amused.] Yeah. I thought you were going to make that one guy pee his pants.,Yeah. I thought you were going to make that one guy pee his pants.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8847,8847,Earth,2,The Crossroads of Destiny,20,Azula,"There are still a few loose ends. The Avatar, and my brother and uncle.","There are still a few loose ends. The Avatar, and my brother and uncle.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8848,8848,Earth,2,The Crossroads of Destiny,20,Scene Description,"Scene fades to outside the Royal Palace, where Zuko and Iroh begin walking toward it.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8849,8849,Earth,2,The Crossroads of Destiny,20,Iroh,"Many times I imagined myself here, at the threshold of the palace. [Camera pans to show the Earth Kingdom Emblem above the palace doors.] But I always thought I would be here as a conqueror. Instead, we are the Earth King's personal guests, here to serve him tea. Destiny is a funny thing.","Many times I imagined myself here, at the threshold of the palace. But I always thought I would be here as a conqueror. Instead, we are the Earth King's personal guests, here to serve him tea. Destiny is a funny thing.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8850,8850,Earth,2,The Crossroads of Destiny,20,Zuko,"It sure is, Uncle.","It sure is, Uncle.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8851,8851,Earth,2,The Crossroads of Destiny,20,Scene Description,"Scene changes back to Appa, Toph, Aang, and Sokka still flying back to the Palace. Toph is seen holding onto Sokka's arm so she does not fall.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8852,8852,Earth,2,The Crossroads of Destiny,20,Toph,So how did it go with the guru? Did you master the Avatar State?,So how did it go with the guru? Did you master the Avatar State?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8853,8853,Earth,2,The Crossroads of Destiny,20,Aang,Uh ...,Uh ...,Aaron Ehasz,Michael Dante DiMartino,9.6 +8854,8854,Earth,2,The Crossroads of Destiny,20,Scene Description,Aang looks down and thinks back to what Guru Pathik said before he left.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8855,8855,Earth,2,The Crossroads of Destiny,20,Pathik,"If you leave now, you won't be able to go into the Avatar State at all!","If you leave now, you won't be able to go into the Avatar State at all!",Aaron Ehasz,Michael Dante DiMartino,9.6 +8856,8856,Earth,2,The Crossroads of Destiny,20,Scene Description,Fades back to the present.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8857,8857,Earth,2,The Crossroads of Destiny,20,Sokka,"Aang, are you okay?","Aang, are you okay?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8858,8858,Earth,2,The Crossroads of Destiny,20,Aang,I'm great! It went great with the guru. I completely mastered the Avatar State. [He laughs nervously and looks down.] Yeah.,I'm great! It went great with the guru. I completely mastered the Avatar State. Yeah.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8859,8859,Earth,2,The Crossroads of Destiny,20,Scene Description,"Scene changes back to the Royal Palace, where Zuko and Iroh are sitting at a table in a room, waiting for the Earth King. Iroh pours some tea into a cup.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8860,8860,Earth,2,The Crossroads of Destiny,20,Zuko,What's taking so long?,What's taking so long?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8861,8861,Earth,2,The Crossroads of Destiny,20,Iroh,Maybe the Earth King overslept.,Maybe the Earth King overslept.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8862,8862,Earth,2,The Crossroads of Destiny,20,Scene Description,Dai Li agents begin to circle around the two.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8863,8863,Earth,2,The Crossroads of Destiny,20,Zuko,Something's not right.,Something's not right.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8864,8864,Earth,2,The Crossroads of Destiny,20,Scene Description,Azula walks past the Dai Li and comes in front of her brother outside the circle of Dai Li agents.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8865,8865,Earth,2,The Crossroads of Destiny,20,Azula,It's tea time!,It's tea time!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8866,8866,Earth,2,The Crossroads of Destiny,20,Zuko,[He quickly stands up.] Azula!,Azula!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8867,8867,Earth,2,The Crossroads of Destiny,20,Azula,"Have you met the Dai Li? They're earthbenders, but they have a killer instinct that's so firebender. I just love it.","Have you met the Dai Li? They're earthbenders, but they have a killer instinct that's so firebender. I just love it.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8868,8868,Earth,2,The Crossroads of Destiny,20,Scene Description,Camera pans over to show Iroh picking up his cup of tea.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8869,8869,Earth,2,The Crossroads of Destiny,20,Iroh,"Did I ever tell you how I got the nickname ""the Dragon of the West""?","Did I ever tell you how I got the nickname ""the Dragon of the West""?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8870,8870,Earth,2,The Crossroads of Destiny,20,Azula,"I'm not interested in a lengthy anecdote, Uncle.","I'm not interested in a lengthy anecdote, Uncle.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8871,8871,Earth,2,The Crossroads of Destiny,20,Iroh,"It's more of a demonstration, really.","It's more of a demonstration, really.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8872,8872,Earth,2,The Crossroads of Destiny,20,Scene Description,"Iroh begins drinking his tea. Zuko looks over at him and smiles before going behind him. Iroh begins breathing fire. Cut to a corridor outside the room as a fire blast makes a hole in the wall, allowing Iroh and Zuko to escape. The Dai Li agents begin shooting some rock gloves at them, but miss as Zuko and Iroh turn around the corner. Iroh generates lightning and destroys the wall in front before jumping down into a bush below. Zuko stops at the edge.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8873,8873,Earth,2,The Crossroads of Destiny,20,Iroh,Come on! You'll be fine!,Come on! You'll be fine!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8874,8874,Earth,2,The Crossroads of Destiny,20,Zuko,No! I'm tired of running! It's time I faced Azula!,No! I'm tired of running! It's time I faced Azula!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8875,8875,Earth,2,The Crossroads of Destiny,20,Scene Description,Zuko turns around and walks back. Iroh smacks his head upon hearing this and runs away.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8876,8876,Earth,2,The Crossroads of Destiny,20,Azula,You're so dramatic. What? Are you going to challenge me to an Agni Kai?,You're so dramatic. What? Are you going to challenge me to an Agni Kai?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8877,8877,Earth,2,The Crossroads of Destiny,20,Zuko,Yes! I challenge you!,Yes! I challenge you!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8878,8878,Earth,2,The Crossroads of Destiny,20,Azula,No thanks.,No thanks.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8879,8879,Earth,2,The Crossroads of Destiny,20,Scene Description,"Zuko shoots a fire blast toward her, but two Dai Li agents intervene and pull up a section of the floor, making a wall. They shoot some rock gloves at Zuko's feet, making him lose his balance. He puts his right hand down, but another rock glove traps that one. Azula turns around smiling and walks away as the agents capture him. Scene changes to inside the throne room, where Sokka, Toph, and Aang confront Kuei.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8880,8880,Earth,2,The Crossroads of Destiny,20,Kuei,Katara's fine. You have nothing to worry about.,Katara's fine. You have nothing to worry about.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8881,8881,Earth,2,The Crossroads of Destiny,20,Aang,"But, in my vision, I felt so sure she was in trouble.","But, in my vision, I felt so sure she was in trouble.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8882,8882,Earth,2,The Crossroads of Destiny,20,Kuei,"Well, she met with the Council of Generals to plan the invasion, and since then, she been off with your friends, the Kyoshi Warriors.","Well, she met with the Council of Generals to plan the invasion, and since then, she been off with your friends, the Kyoshi Warriors.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8883,8883,Earth,2,The Crossroads of Destiny,20,Sokka,"See, Aang? She's with Suki. They're probably back at our apartment right now talking about make-up or something.","See, Aang? She's with Suki. They're probably back at our apartment right now talking about make-up or something.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8884,8884,Earth,2,The Crossroads of Destiny,20,Aang,Okay. Maybe you're right.,Okay. Maybe you're right.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8885,8885,Earth,2,The Crossroads of Destiny,20,Kuei,"Believe me, if there was any danger at all, Bosco's animal instincts would sense it.","Believe me, if there was any danger at all, Bosco's animal instincts would sense it.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8886,8886,Earth,2,The Crossroads of Destiny,20,Scene Description,"Bosco lifts up his head from sleeping to look at the three. Scene changes to inside the Crystal Catacombs, where Katara is pacing back and forth. She stops pacing upon hearing a hole open up above.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8887,8887,Earth,2,The Crossroads of Destiny,20,Dai Li agent,You've got company.,You've got company.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8888,8888,Earth,2,The Crossroads of Destiny,20,Scene Description,"He throws Zuko in, who rolls down and lands in front of Katara.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8889,8889,Earth,2,The Crossroads of Destiny,20,Katara,Zuko!,Zuko!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8890,8890,Earth,2,The Crossroads of Destiny,20,Scene Description,"Katara's shocked face becomes an angry one as Zuko sits up and the hole closes behind him. The scene changes to Toph, Aang, and Sokka reaching their house on Appa. The three jump off and run inside to see if Katara was in there. Momo runs up to them.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8891,8891,Earth,2,The Crossroads of Destiny,20,Aang,Momo!,Momo!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8892,8892,Earth,2,The Crossroads of Destiny,20,Scene Description,Momo climbs up Aang onto his shoulders. Toph looks around.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8893,8893,Earth,2,The Crossroads of Destiny,20,Toph,There's no one else here.,There's no one else here.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8894,8894,Earth,2,The Crossroads of Destiny,20,Aang,Katara is in trouble! I knew it!,Katara is in trouble! I knew it!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8895,8895,Earth,2,The Crossroads of Destiny,20,Sokka,"Oh, no!","Oh, no!",Aaron Ehasz,Michael Dante DiMartino,9.6 +8896,8896,Earth,2,The Crossroads of Destiny,20,Toph,"Wait! Someone's at the door. [Someone knocks on the door a second later.] Actually, I know who it is. It's an old friend of mine. [She walks over to the door and opens it, showing Iroh behind the door.] Glad to see you're okay.","Wait! Someone's at the door. Actually, I know who it is. It's an old friend of mine. Glad to see you're okay.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8897,8897,Earth,2,The Crossroads of Destiny,20,Iroh,I need your help.,I need your help.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8898,8898,Earth,2,The Crossroads of Destiny,20,Scene Description,"Sokka and Aang become shocked and angry upon seeing him, and get into a fighting stance. Toph calmly smiles and waves at him. Momo flies away upon seeing him.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8899,8899,Earth,2,The Crossroads of Destiny,20,Aang,You guys know each other?,You guys know each other?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8900,8900,Earth,2,The Crossroads of Destiny,20,Toph,I met him in the woods once and knocked him down. Then he gave me some tea and some very good advice.,I met him in the woods once and knocked him down. Then he gave me some tea and some very good advice.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8901,8901,Earth,2,The Crossroads of Destiny,20,Iroh,"May I come in? [Toph nods, and he walks in before turning to the group.] Princess Azula is here in Ba Sing Se.",May I come in? Princess Azula is here in Ba Sing Se.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8902,8902,Earth,2,The Crossroads of Destiny,20,Aang,She must have Katara.,She must have Katara.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8903,8903,Earth,2,The Crossroads of Destiny,20,Iroh,She has captured my nephew as well.,She has captured my nephew as well.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8904,8904,Earth,2,The Crossroads of Destiny,20,Aang,"Then we'll work together to fight Azula, and save Katara and Zuko.","Then we'll work together to fight Azula, and save Katara and Zuko.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8905,8905,Earth,2,The Crossroads of Destiny,20,Sokka,"[Approaching Aang and pointing at him.] Whoa there! You lost me at ""Zuko"".","Whoa there! You lost me at ""Zuko"".",Aaron Ehasz,Michael Dante DiMartino,9.6 +8906,8906,Earth,2,The Crossroads of Destiny,20,Iroh,I know how you must feel about my nephew. [Moving forward to place his hands on Sokka's shoulders.] But believe me when I tell you that there is good inside him.,I know how you must feel about my nephew. But believe me when I tell you that there is good inside him.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8907,8907,Earth,2,The Crossroads of Destiny,20,Sokka,"[Pushing Iroh away.] ""Good inside him"" isn't enough! Why don't you come back when it's outside him too, okay?","""Good inside him"" isn't enough! Why don't you come back when it's outside him too, okay?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8908,8908,Earth,2,The Crossroads of Destiny,20,Aang,Katara's in trouble. All of Ba Sing Se is in trouble. Working together is our best chance.,Katara's in trouble. All of Ba Sing Se is in trouble. Working together is our best chance.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8909,8909,Earth,2,The Crossroads of Destiny,20,Scene Description,"Sokka understands, and nods. Iroh begins walking back to the door.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8910,8910,Earth,2,The Crossroads of Destiny,20,Iroh,I brought someone along who might help us.,I brought someone along who might help us.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8911,8911,Earth,2,The Crossroads of Destiny,20,Scene Description,"They all walk outside. Toph puts a couple earth pillars around the nervous Dai Li agent and makes him stand up. Iroh walks over to him and takes the gag off his mouth, revealing this to be the scarred agent.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8912,8912,Earth,2,The Crossroads of Destiny,20,Captured agent,Azula and Long Feng are plotting a coup! They're going to overthrow the Earth King!,Azula and Long Feng are plotting a coup! They're going to overthrow the Earth King!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8913,8913,Earth,2,The Crossroads of Destiny,20,Sokka,My sister! Where are they keeping Katara?,My sister! Where are they keeping Katara?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8914,8914,Earth,2,The Crossroads of Destiny,20,Captured agent,"In the Crystal Catacombs of Old Ba Sing Se, deep beneath the palace.","In the Crystal Catacombs of Old Ba Sing Se, deep beneath the palace.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8915,8915,Earth,2,The Crossroads of Destiny,20,Scene Description,"Iroh, Aang, Toph, and Sokka run away to help Katara and the Earth King. Scene fades to the jail where Long Feng is. He meditates in his cell while a Dai Li agent informs him of what is going on.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8916,8916,Earth,2,The Crossroads of Destiny,20,Head of the Dai Li,The movements of the Earth King and all the generals have been plotted out step-by-step.,The movements of the Earth King and all the generals have been plotted out step-by-step.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8917,8917,Earth,2,The Crossroads of Destiny,20,Long Feng,Good. And the Fire Nation princess is cooperating?,Good. And the Fire Nation princess is cooperating?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8918,8918,Earth,2,The Crossroads of Destiny,20,Head of the Dai Li,"Oh, yes. More than cooperating. She's really taken charge. She's terrifying and inspirational at the same time. It's hard to explain.","Oh, yes. More than cooperating. She's really taken charge. She's terrifying and inspirational at the same time. It's hard to explain.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8919,8919,Earth,2,The Crossroads of Destiny,20,Scene Description,"The Dai Li agent walks away. Scene changes to inside the Crystal Catacombs, where Katara is yelling at Zuko, who sits with his back turned.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8920,8920,Earth,2,The Crossroads of Destiny,20,Katara,"Why did they throw you in here? [Zuko says nothing.] Oh, wait, let me guess. It's a trap. So that when Aang shows up to help me, you can finally have him in your little Fire Nation clutches!","Why did they throw you in here? Oh, wait, let me guess. It's a trap. So that when Aang shows up to help me, you can finally have him in your little Fire Nation clutches!",Aaron Ehasz,Michael Dante DiMartino,9.6 +8921,8921,Earth,2,The Crossroads of Destiny,20,Scene Description,"Zuko turns his head to look at her, turns back, and looks at the ground again.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8922,8922,Earth,2,The Crossroads of Destiny,20,Katara,[Continuing to lament.] You're a terrible person! You know that? Always following us! Hunting the Avatar! Trying to capture the world's last hope for peace! But what do you care? You're the Fire Lord's son. Spreading war and violence and hatred is in your blood!,You're a terrible person! You know that? Always following us! Hunting the Avatar! Trying to capture the world's last hope for peace! But what do you care? You're the Fire Lord's son. Spreading war and violence and hatred is in your blood!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8923,8923,Earth,2,The Crossroads of Destiny,20,Zuko,You don't know what you're talking about!,You don't know what you're talking about!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8924,8924,Earth,2,The Crossroads of Destiny,20,Katara,"[Angrily.] I don't? How dare you! You have no idea what this war has put me through! [Sits down.] Me personally! [She sits down and touches her necklace, begins to cry.] The Fire Nation took my mother away from me.",I don't? How dare you! You have no idea what this war has put me through! Me personally! The Fire Nation took my mother away from me.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8925,8925,Earth,2,The Crossroads of Destiny,20,Zuko,[He turns around to face Katara.] I'm sorry. [Pauses.] That's something we have in common.,I'm sorry. That's something we have in common.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8926,8926,Earth,2,The Crossroads of Destiny,20,Scene Description,"Katara looks back, surprised, and wipes away the tears from her eyes. The scene changes to Toph feeling the ground below, finding the Crystal Catacombs.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8927,8927,Earth,2,The Crossroads of Destiny,20,Toph,"Well, what'd you know? There is an ancient city down there. But it's deep.","Well, what'd you know? There is an ancient city down there. But it's deep.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8928,8928,Earth,2,The Crossroads of Destiny,20,Scene Description,"She makes a tunnel through the ground, beginning to lead to the catacombs. Sokka is seen thinking of a plan.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8929,8929,Earth,2,The Crossroads of Destiny,20,Sokka,"We should split up. Aang, you go with Iroh to look for Katara and the angry jerk, [Remembers Iroh is there and places his left hand on Iroh's right shoulder.] no offense.","We should split up. Aang, you go with Iroh to look for Katara and the angry jerk, no offense.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8930,8930,Earth,2,The Crossroads of Destiny,20,Iroh,[Shrugging.] None taken.,None taken.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8931,8931,Earth,2,The Crossroads of Destiny,20,Sokka,And I'll go with Toph to warn the Earth King of Azula's coup.,And I'll go with Toph to warn the Earth King of Azula's coup.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8932,8932,Earth,2,The Crossroads of Destiny,20,Scene Description,"Aang and Iroh are seen walking through the tunnel down to the Catacombs. Iroh is bending a small fire for light, and Aang is earthbending the way down.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8933,8933,Earth,2,The Crossroads of Destiny,20,Aang,"So, Toph thinks you give pretty good advice, and great tea!","So, Toph thinks you give pretty good advice, and great tea!",Aaron Ehasz,Michael Dante DiMartino,9.6 +8934,8934,Earth,2,The Crossroads of Destiny,20,Iroh,The key to both is proper aging. What's on your mind?,The key to both is proper aging. What's on your mind?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8935,8935,Earth,2,The Crossroads of Destiny,20,Scene Description,Aang earthbends again before replying.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8936,8936,Earth,2,The Crossroads of Destiny,20,Aang,"Well, I met with this guru who was supposed to help me master the Avatar State and control this great power, but to do it, I had to let go of someone I love. [He and Iroh stop.] And I just couldn't.","Well, I met with this guru who was supposed to help me master the Avatar State and control this great power, but to do it, I had to let go of someone I love. And I just couldn't.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8937,8937,Earth,2,The Crossroads of Destiny,20,Iroh,Perfection and power are overrated. I think you were very wise to choose happiness and love.,Perfection and power are overrated. I think you were very wise to choose happiness and love.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8938,8938,Earth,2,The Crossroads of Destiny,20,Aang,"[Earthbends again.] What happens if we can't save anyone and beat Azula? Without the Avatar State, what if I'm not powerful enough?","What happens if we can't save anyone and beat Azula? Without the Avatar State, what if I'm not powerful enough?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8939,8939,Earth,2,The Crossroads of Destiny,20,Iroh,"I don't know the answer. Sometimes, life is like this dark tunnel. You can't always see the light at the end of the tunnel, but if you just keep moving, [Aang earthbends the rocks away one last time. Iroh's fire blows out. He smiles.] you will come to a better place.","I don't know the answer. Sometimes, life is like this dark tunnel. You can't always see the light at the end of the tunnel, but if you just keep moving, you will come to a better place.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8940,8940,Earth,2,The Crossroads of Destiny,20,Scene Description,"Camera pans over a large area of the Catacombs. Scene changes to Toph and Sokka climbing the stairs, with Momo flying behind them.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8941,8941,Earth,2,The Crossroads of Destiny,20,Sokka,There's General How!,There's General How!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8942,8942,Earth,2,The Crossroads of Destiny,20,Scene Description,Sokka puts his arm out in front of Toph and pulls her behind a pillar. General How continues walking toward the stairs. The Dai Li agents can be seen hiding beside the pillars before putting cuffs on his wrists and pulling him down to his knees. Another agent drops in front of How.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8943,8943,Earth,2,The Crossroads of Destiny,20,How,What's going on here?,What's going on here?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8944,8944,Earth,2,The Crossroads of Destiny,20,Dai Li agent,You're under house arrest.,You're under house arrest.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8945,8945,Earth,2,The Crossroads of Destiny,20,Sokka,The coup is happening right now! We've gotta warn the Earth King!,The coup is happening right now! We've gotta warn the Earth King!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8946,8946,Earth,2,The Crossroads of Destiny,20,Scene Description,"Sokka, Toph, and Momo run to head to the Earth King. One of the generals is seen walking when some chains fly up and trap him. General Sung is taken by some chains into a dark area. Two other generals are seen in their headquarters when the Dai Li toss some chains to circle around their legs and pull them up. Scene changes to the throne room, where Toph, Sokka, and Momo have just reached the Earth King.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8947,8947,Earth,2,The Crossroads of Destiny,20,Sokka,Thank goodness we're in time!,Thank goodness we're in time!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8948,8948,Earth,2,The Crossroads of Destiny,20,Kuei,In time for what?,In time for what?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8949,8949,Earth,2,The Crossroads of Destiny,20,Ty Lee,"Yeah. What are you in time for, [Cartwheels to Sokka.] cutie?","Yeah. What are you in time for, cutie?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8950,8950,Earth,2,The Crossroads of Destiny,20,Sokka,"Uh, I'm kinda involved with Suki.","Uh, I'm kinda involved with Suki.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8951,8951,Earth,2,The Crossroads of Destiny,20,Ty Lee,Who?,Who?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8952,8952,Earth,2,The Crossroads of Destiny,20,Scene Description,"Toph knocks her away from Sokka with earthbending, in which she flips up above them.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8953,8953,Earth,2,The Crossroads of Destiny,20,Toph,They're not the real Kyoshi Warriors!,They're not the real Kyoshi Warriors!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8954,8954,Earth,2,The Crossroads of Destiny,20,Scene Description,"Kuei gasps, surprised.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8955,8955,Earth,2,The Crossroads of Destiny,20,Mai,Sorry to disappoint you.,Sorry to disappoint you.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8956,8956,Earth,2,The Crossroads of Destiny,20,Scene Description,"She shoots some of her daggers at Toph, who uses an earth shield to stop them, and kicks the shield to Mai, who jumps over it. Toph brings up another pillar, knocking her. Ty Lee comes up in front of Sokka, laughing. She starts trying to jab him, but he evades all of them.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8957,8957,Earth,2,The Crossroads of Destiny,20,Ty Lee,"Oooh, it's like we're dancing together!","Oooh, it's like we're dancing together!",Aaron Ehasz,Michael Dante DiMartino,9.6 +8958,8958,Earth,2,The Crossroads of Destiny,20,Scene Description,Azula is seen holding Kuei at flame-point.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8959,8959,Earth,2,The Crossroads of Destiny,20,Azula,This fight is over.,This fight is over.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8960,8960,Earth,2,The Crossroads of Destiny,20,Scene Description,"Toph and Sokka surrender, and Ty Lee chi blocks them. Momo tries flying away, but a Dai Li agent traps him with a rock glove. Azula shoves Kuei down.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8961,8961,Earth,2,The Crossroads of Destiny,20,Azula,Get them all out of my sight.,Get them all out of my sight.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8962,8962,Earth,2,The Crossroads of Destiny,20,Scene Description,"Toph, Sokka, Kuei, and Bosco are all taken to prison. Long Feng walks into the room with some Dai Li agents behind him.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8963,8963,Earth,2,The Crossroads of Destiny,20,Long Feng,"Now comes the part where I double cross you. Dai Li, arrest the Fire Nation princess! [None of the Dai Li agents move, to Long Feng's disappointment.] I said arrest her! What is wrong with you?!","Now comes the part where I double cross you. Dai Li, arrest the Fire Nation princess! I said arrest her! What is wrong with you?!",Aaron Ehasz,Michael Dante DiMartino,9.6 +8964,8964,Earth,2,The Crossroads of Destiny,20,Azula,It's because they haven't made up their minds. They're waiting to see how this is going to end.,It's because they haven't made up their minds. They're waiting to see how this is going to end.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8965,8965,Earth,2,The Crossroads of Destiny,20,Long Feng,What are you talking about?,What are you talking about?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8966,8966,Earth,2,The Crossroads of Destiny,20,Azula,"I can see your whole history in your eyes. You were born with nothing, so you've had to struggle, and connive, and claw your way to power. But true power, the divine right to rule, is something you're born with. The fact is, they don't know which one of us is going to be sitting on that throne, and which one is going to be bowing down. [Long Feng looks worried.] But I know, and you know. [She sits down on the throne and crosses her legs.] Well?","I can see your whole history in your eyes. You were born with nothing, so you've had to struggle, and connive, and claw your way to power. But true power, the divine right to rule, is something you're born with. The fact is, they don't know which one of us is going to be sitting on that throne, and which one is going to be bowing down. But I know, and you know. Well?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8967,8967,Earth,2,The Crossroads of Destiny,20,Long Feng,[Walks up and bows to her.] You've beaten me at my own game.,You've beaten me at my own game.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8968,8968,Earth,2,The Crossroads of Destiny,20,Azula,Don't flatter yourself! You were never even a player.,Don't flatter yourself! You were never even a player.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8969,8969,Earth,2,The Crossroads of Destiny,20,Scene Description,The scene changes to Zuko and Katara in the Crystal Catacombs.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8970,8970,Earth,2,The Crossroads of Destiny,20,Katara,[Apologetic.] I'm sorry I yelled at you before.,I'm sorry I yelled at you before.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8971,8971,Earth,2,The Crossroads of Destiny,20,Zuko,It doesn't matter.,It doesn't matter.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8972,8972,Earth,2,The Crossroads of Destiny,20,Katara,"It's just that for so long now, whenever I would imagine the face of the enemy, it was your face.","It's just that for so long now, whenever I would imagine the face of the enemy, it was your face.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8973,8973,Earth,2,The Crossroads of Destiny,20,Zuko,My face? I see. [He touches his scar.],My face? I see.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8974,8974,Earth,2,The Crossroads of Destiny,20,Katara,"No, no, that's-that's not what I mean. [Approaches Zuko.]","No, no, that's-that's not what I mean.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8975,8975,Earth,2,The Crossroads of Destiny,20,Zuko,"It's okay. I used to think this scar marked me. The mark of the banished prince, cursed to chase the Avatar forever. But lately, I've realized I'm free to determine my own destiny, even if I'll never be free of my mark.","It's okay. I used to think this scar marked me. The mark of the banished prince, cursed to chase the Avatar forever. But lately, I've realized I'm free to determine my own destiny, even if I'll never be free of my mark.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8976,8976,Earth,2,The Crossroads of Destiny,20,Katara,Maybe you could be free of it.,Maybe you could be free of it.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8977,8977,Earth,2,The Crossroads of Destiny,20,Zuko,What?,What?,Aaron Ehasz,Michael Dante DiMartino,9.6 +8978,8978,Earth,2,The Crossroads of Destiny,20,Katara,I have healing abilities.,I have healing abilities.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8979,8979,Earth,2,The Crossroads of Destiny,20,Zuko,"It's a scar, it can't be healed.","It's a scar, it can't be healed.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8980,8980,Earth,2,The Crossroads of Destiny,20,Katara,"[Holds up a vial.] This is water from the Spirit Oasis at the North Pole. It has special properties, so I've been saving it for something important. [Moves in front of Zuko.] I don't know if it would work, but ...","This is water from the Spirit Oasis at the North Pole. It has special properties, so I've been saving it for something important. I don't know if it would work, but ...",Aaron Ehasz,Michael Dante DiMartino,9.6 +8981,8981,Earth,2,The Crossroads of Destiny,20,Scene Description,"Katara puts one hand on Zuko's scar, only to be interrupted by Aang and Iroh.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8982,8982,Earth,2,The Crossroads of Destiny,20,Katara,Aang!,Aang!,Aaron Ehasz,Michael Dante DiMartino,9.6 +8983,8983,Earth,2,The Crossroads of Destiny,20,Scene Description,"Aang looks surprised as Katara hugs him, but Aang looks over Katara's shoulder to glare at Zuko. Cut to Zuko, who gets a hug from Iroh, and glares back.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8984,8984,Earth,2,The Crossroads of Destiny,20,Katara,"Aang, I knew you would come. [She hugs Aang again.]","Aang, I knew you would come.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8985,8985,Earth,2,The Crossroads of Destiny,20,Zuko,"Uncle, I don't understand. What are you doing with the Avatar? [Points to Aang.]","Uncle, I don't understand. What are you doing with the Avatar?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8986,8986,Earth,2,The Crossroads of Destiny,20,Aang,"Saving you, that's what.","Saving you, that's what.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8987,8987,Earth,2,The Crossroads of Destiny,20,Scene Description,"Zuko takes one step in Aang's direction, but Iroh stops him.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8988,8988,Earth,2,The Crossroads of Destiny,20,Iroh,"Zuko, it's time we talked. [To Aang and Katara.] Go help you other friends. We'll catch up with you. [They walk away, Katara looks back at Zuko before moving on.]","Zuko, it's time we talked. Go help you other friends. We'll catch up with you.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8989,8989,Earth,2,The Crossroads of Destiny,20,Zuko,"Why, Uncle?","Why, Uncle?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8990,8990,Earth,2,The Crossroads of Destiny,20,Iroh,"You're not the man you used to be, Zuko. You are stronger and wiser and freer than you have ever been. And now you have come to the crossroads of your destiny. It's time for you to choose. It's time for you to choose good.","You're not the man you used to be, Zuko. You are stronger and wiser and freer than you have ever been. And now you have come to the crossroads of your destiny. It's time for you to choose. It's time for you to choose good.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8991,8991,Earth,2,The Crossroads of Destiny,20,Scene Description,Zuko yells as crystals grow to encase Iroh. He assumes a fighting position to prepare for the intruders. A different shot shows Azula along with two Dai Li agents sliding down from the sides of the chamber.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +8992,8992,Earth,2,The Crossroads of Destiny,20,Azula,"I expected this kind of treachery from Uncle. [Cut to Iroh, still trapped in crystals. Cut to a side shot, where Zuko protects his uncle.] But Zuko, Prince Zuko, you're a lot of things, but you're not a traitor, are you?","I expected this kind of treachery from Uncle. But Zuko, Prince Zuko, you're a lot of things, but you're not a traitor, are you?",Aaron Ehasz,Michael Dante DiMartino,9.6 +8993,8993,Earth,2,The Crossroads of Destiny,20,Zuko,Release him immediately.,Release him immediately.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8994,8994,Earth,2,The Crossroads of Destiny,20,Azula,"It's not too late for you, Zuko. You can still redeem yourself.","It's not too late for you, Zuko. You can still redeem yourself.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8995,8995,Earth,2,The Crossroads of Destiny,20,Iroh,[To Zuko.] The kind of redemption she offers is not for you.,The kind of redemption she offers is not for you.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8996,8996,Earth,2,The Crossroads of Destiny,20,Azula,"Why don't you let him decide, Uncle? [To Zuko.] I need you, Zuko. I've plotted every move of this day, [Makes a fist.] this glorious day in Fire Nation history, and the only way we win is together. At the end of this day, you will have your honor back. You will have Father's love. You will have everything you want.","Why don't you let him decide, Uncle? I need you, Zuko. I've plotted every move of this day, this glorious day in Fire Nation history, and the only way we win is together. At the end of this day, you will have your honor back. You will have Father's love. You will have everything you want.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8997,8997,Earth,2,The Crossroads of Destiny,20,Iroh,"Zuko, I am begging you. Look into your heart and see what it is that you truly want.","Zuko, I am begging you. Look into your heart and see what it is that you truly want.",Aaron Ehasz,Michael Dante DiMartino,9.6 +8998,8998,Earth,2,The Crossroads of Destiny,20,Azula,You are free to choose.,You are free to choose.,Aaron Ehasz,Michael Dante DiMartino,9.6 +8999,8999,Earth,2,The Crossroads of Destiny,20,Scene Description,"She gestures at the two Dai Li agents to leave, who earthbend themselves out. The camera cuts to Zuko multiple times as he contemplates his choice as Azula leaves to follow Aang and Katara. Cut to Aang and Katara running through the Crystal Catacombs.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9000,9000,Earth,2,The Crossroads of Destiny,20,Katara,We've got to find Sokka and Toph.,We've got to find Sokka and Toph.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9001,9001,Earth,2,The Crossroads of Destiny,20,Scene Description,"A bolt of blue lightning attacks them from behind. Aang stops it using earthbending. The camera zooms back toward Azula, the source of the lightning. Katara uses waterbending to stop another lightning attack. The mist from the vaporized water allows Azula to jump onto a crystal and firebend two blasts of blue fire. Together, Aang and Katara use waterbending to stop the blasts. Azula finishes her jump by landing on a rock pillar. Aang uses earthbending on the pillar, and Azula gasps once she notices the pillar crumbling. She jumps off and lands between Katara and Aang. She points at both of them, preparing to attack. +A fire blast stops her from attacking, and they look to see the source of the fire blast to be Zuko. Zuko looks from Azula to Katara and Aang, choosing who to attack. Aang gasps once he realizes Zuko will attack him and Aang uses airbending to jump away from the blast. Azula starts dueling with Katara, and Zuko throws multiple fire blasts at Aang. The scene changes to Kuei, Sokka, and Toph in a prison cell. Sokka looks out the door's barred window.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9002,9002,Earth,2,The Crossroads of Destiny,20,Toph,See any Dai Li agents nearby?,See any Dai Li agents nearby?,Aaron Ehasz,Michael Dante DiMartino,9.6 +9003,9003,Earth,2,The Crossroads of Destiny,20,Sokka,"Nope, all clear.","Nope, all clear.",Aaron Ehasz,Michael Dante DiMartino,9.6 +9004,9004,Earth,2,The Crossroads of Destiny,20,Scene Description,"Toph cracks her knuckles and places her hands against the cell door, preparing to metalbend it. Cut to outside the prison cell in the where the door crumples and gets thrown away from the doorway.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9005,9005,Earth,2,The Crossroads of Destiny,20,Sokka,Let's go.,Let's go.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9006,9006,Earth,2,The Crossroads of Destiny,20,Kuei,I'm not leaving without Bosco!,I'm not leaving without Bosco!,Aaron Ehasz,Michael Dante DiMartino,9.6 +9007,9007,Earth,2,The Crossroads of Destiny,20,Scene Description,"Sokka grabs the Earth King's hand and follows the rest of the group. Cut back to Zuko and Aang fighting. Aang airbends the air currents around him to make a human-shaped gust of air at Zuko, knocking him down. Aang attacks Zuko with more airbending, but Zuko maneuvers around the attacks and gets back up on his feet. He fires more blasts at Aang who is clinging on to a rock pillar. Aang jumps onto a clump of crystals to avoid the attack. Furious, Zuko summons a greater blast of fire. Aang earthbends some crystals to protect him, but the crystals shatter, sending Aang flying to another clump of crystals. Zuko uses fire whips to attack Aang once again, but Aang jumps to another patch of crystals and Zuko keeps attacking. +Cut to Azula running away from Katara, who sends a wave of water that cuts her hair. Cut back to Zuko, who is still using his fire whips to attack Aang, who is now jumping along the cave's ceiling. Aang kicks down a stalactite and follows it, using earthbending to increase its impact and sending Zuko flying. The scene focuses on Azula and Katara. Katara encases herself in water and uses it to stop Azula's firebending attacks. One water tentacle captures Azula's hand and another one captures her foot. Zuko frees his sister using firebending to break the tentacles. Azula looks toward the crater Aang had created with the stalactite. Aang crawls out, exhausted. Azula runs toward Aang. Cut to Zuko and Katara fighting. Katara still has water whips on her hands and Zuko starts using his fire whips.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9008,9008,Earth,2,The Crossroads of Destiny,20,Katara,I thought you had changed. [She grunts.],I thought you had changed.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9009,9009,Earth,2,The Crossroads of Destiny,20,Zuko,I have changed.,I have changed.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9010,9010,Earth,2,The Crossroads of Destiny,20,Scene Description,"Zuko fires another blast. Cut to Azula and Aang standing opposite each other. A closer shot of Azula and Aang as they prepare to fight. Azula uses firebending to charge at Aang. Aang earthbends crystals around him into a crystal encased armor and charges at Azula. Azula stops, and uses her firebending to break Aang's crystal armor and send him flying back into an old building. Cut to Mai, Ty Lee, and Bosco in the Earth King's throne room.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9011,9011,Earth,2,The Crossroads of Destiny,20,Ty Lee,"[To Bosco.] Come on, it's easy. You just walk on your front paws instead of your rear ones. [She demonstrates.] Like this.","Come on, it's easy. You just walk on your front paws instead of your rear ones. Like this.",Aaron Ehasz,Michael Dante DiMartino,9.6 +9012,9012,Earth,2,The Crossroads of Destiny,20,Scene Description,"Suddenly, the floor traps Ty Lee's hands and her feet when they touch the ground. Bosco starts clapping. The view changes to reveal Kuei, Toph, and Sokka.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9013,9013,Earth,2,The Crossroads of Destiny,20,Toph,That is a nice trick.,That is a nice trick.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9014,9014,Earth,2,The Crossroads of Destiny,20,Scene Description,Sokka takes out his boomerang and Toph earthbends a large block of the ground in preparation to fight against Mai. The camera zooms toward Mai.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9015,9015,Earth,2,The Crossroads of Destiny,20,Mai,Just take the bear.,Just take the bear.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9016,9016,Earth,2,The Crossroads of Destiny,20,Scene Description,Cut to Bosco.,NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9017,9017,Earth,2,The Crossroads of Destiny,20,Kuei,[Runs to Bosco.] Bosco!,Bosco!,Aaron Ehasz,Michael Dante DiMartino,9.6 +9018,9018,Earth,2,The Crossroads of Destiny,20,Scene Description,"The scene changes back to Zuko and Azula both fighting Katara. Hopelessly outnumbered, Katara gets knocked down. Aang jumps from the old building and earth surfs toward Zuko and Azula to stop them from attacking Katara. A Dai Li agent breaks Aang's surf, knocking him down. More Dai Li agents gather behind Zuko and Azula. Katara starts regaining her focus and Dai Li agents surround her. Katara uses the octopus form to defend herself. Aang stands up and surveys the scene.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9019,9019,Earth,2,The Crossroads of Destiny,20,Aang,There's too many. [He looks a Katara.],There's too many.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9020,9020,Earth,2,The Crossroads of Destiny,20,Pathik,[From Aang's memory.] The only way is to let her go.,The only way is to let her go.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9021,9021,Earth,2,The Crossroads of Destiny,20,Aang,"I'm sorry, Katara.","I'm sorry, Katara.",Aaron Ehasz,Michael Dante DiMartino,9.6 +9022,9022,Earth,2,The Crossroads of Destiny,20,Scene Description,"Closing his eyes, he turns away from Azula and Zuko and earthbends a crystal shelter tent. Aang starts meditating. Inside Aang's mind, a giant version of himself in the Avatar State, the Avatar Spirit, holds an airbending sphere with a normal-sized version of himself in the Avatar State. Back in the crystal shelter, Aang enters the Avatar State and the crystal shelter starts glowing, alerting those outside. Inside the shelter, Aang opens his glowing eyes and breaks the crystal above him. The camera shows Katara looking up to Aang, now rising in to the air, with hope. But before Aang can let Katara go and control the Avatar State, a bolt of lightning strikes him in the back. Cut to Azula's eyeball watching Aang getting struck, before it zooms out to show her in a lightning summoning position with her fingers smoking. The Avatar Spirit lets go of Aang and falls out of the plane of existence. As Aang falls down, Katara, tears now falling down her face, creates a wave to catch Aang. The wave knocks down the Dai Li agents. She looks down at Aang and back up with tears in her eyes. Zuko and Azula prepare to attack Aang and Katara, but a blast of fire stops them. Iroh jumps down from the wall of the cave and shields Aang and Katara from Zuko and Azula.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9023,9023,Earth,2,The Crossroads of Destiny,20,Iroh,You've got to get out of here! I'll hold them off as long as I can! [Fires some blasts at Zuko and Azula.],You've got to get out of here! I'll hold them off as long as I can!,Aaron Ehasz,Michael Dante DiMartino,9.6 +9024,9024,Earth,2,The Crossroads of Destiny,20,Scene Description,"Katara walks away slowly with Aang's body to a waterfall, and she uses waterbending to lift her and Aang up its path. Iroh holds off the Dai Li agents until after Aang and Katara leave. He submits to the Dai Li, who use earthbending to encase him in crystals. Zuko looks at Iroh and Iroh closes his eyes and turns away. Cut to Bosco, Kuei, Toph, Sokka, Aang, and Katara riding on Appa. Appa moans sadly. Cut to a closer shot of Katara placing Aang's body on Appa. Katara opens the vial around her neck and uses water healing on Aang's wounded back. The glowing from the spirit water stops, and Katara starts crying. Aang's tattoos glow for a second and Aang gasps. Katara looks at Aang, who smiles a little, and she holds him closer. Cut to the Earth King's throne room with Azula sitting down at the throne with Zuko at her left.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9025,9025,Earth,2,The Crossroads of Destiny,20,Azula,"We've done it, Zuko. It's taken a hundred years, but the Fire Nation has conquered Ba Sing Se.","We've done it, Zuko. It's taken a hundred years, but the Fire Nation has conquered Ba Sing Se.",Aaron Ehasz,Michael Dante DiMartino,9.6 +9026,9026,Earth,2,The Crossroads of Destiny,20,Zuko,I betrayed Uncle.,I betrayed Uncle.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9027,9027,Earth,2,The Crossroads of Destiny,20,Azula,"No, he betrayed you. [She stands up from the throne.] Zuko, when you return home, Father will welcome you as a war hero.","No, he betrayed you. Zuko, when you return home, Father will welcome you as a war hero.",Aaron Ehasz,Michael Dante DiMartino,9.6 +9028,9028,Earth,2,The Crossroads of Destiny,20,Zuko,But I don't have the Avatar. What if Father doesn't restore my honor?,But I don't have the Avatar. What if Father doesn't restore my honor?,Aaron Ehasz,Michael Dante DiMartino,9.6 +9029,9029,Earth,2,The Crossroads of Destiny,20,Azula,"He doesn't need to, Zuko. [She puts a hand on Zuko's shoulder.] Today, you restored your own honor.","He doesn't need to, Zuko. Today, you restored your own honor.",Aaron Ehasz,Michael Dante DiMartino,9.6 +9030,9030,Earth,2,The Crossroads of Destiny,20,Scene Description,"Zuko looks turns away, uncertain of himself. Cut to an aerial view of Ba Sing Se. Cut to Appa's passengers.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9031,9031,Earth,2,The Crossroads of Destiny,20,Kuei,The Earth Kingdom ... has fallen.,The Earth Kingdom ... has fallen.,Aaron Ehasz,Michael Dante DiMartino,9.6 +9032,9032,Earth,2,The Crossroads of Destiny,20,Scene Description,"The camera pans down to show Katara, who sits next to an unconscious Aang, and looks up. Appa flies over the walls of Ba Sing Se. Fade to credits.",NA,Aaron Ehasz,Michael Dante DiMartino,9.6 +9033,9033,Fire,3,The Awakening,1,Scene Description,"The episode opens on board a Fire Nation ship where Aang finally regains consciousness. The camera zooms out on his face as he opens his eyes and rises from his bed, visibly shaken and in pain.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9034,9034,Fire,3,The Awakening,1,Aang,What happened? [Sees the Fire Nation designs and flag and immediately assumes he has been captured.] Oh no!,What happened? Oh no!,Aaron Ehasz,Giancarlo Volpe,8.7 +9035,9035,Fire,3,The Awakening,1,Scene Description,"He leaves his room, carefully creaking open the door and peering outside for any sign of Fire Nation soldiers. Using his glider as a crutch, Aang stumbles across the hall, occasionally leaning on the wall for support due to being weak. He stops at a turn in the hallway upon hearing two guards, who are actually Pipsqueak and The Duke, talking to each other.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9036,9036,Fire,3,The Awakening,1,Pipsqueak,"You hear something? [Aang retreats behind the wall, where he dons a determined look and quickly steps out to send a weak air blast at them, which only ruffles their clothes, and moves past the hallway.] He's awake! [The two begin chasing Aang, who struggles to escape.] Stop! Wait!",You hear something? He's awake! Stop! Wait!,Aaron Ehasz,Giancarlo Volpe,8.7 +9037,9037,Fire,3,The Awakening,1,Scene Description,"Aang manages to reach the deck of the ship, however, he stumbles on the stairway and drops his staff. It slides over to where Hakoda and Bato, disguised as Fire Nation soldiers, are petting Momo.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9038,9038,Fire,3,The Awakening,1,Aang,[Confused.] Momo?,Momo?,Aaron Ehasz,Giancarlo Volpe,8.7 +9039,9039,Fire,3,The Awakening,1,Scene Description,"Momo runs toward Aang, jumps on his shoulder and licks his face. Toph and Katara, standing near the edge of the ship, hear the events.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9040,9040,Fire,3,The Awakening,1,Toph,Twinkle Toes! That's got to be you!,Twinkle Toes! That's got to be you!,Aaron Ehasz,Giancarlo Volpe,8.7 +9041,9041,Fire,3,The Awakening,1,Katara,"Aang, you're awake! [The two race over to him.]","Aang, you're awake!",Aaron Ehasz,Giancarlo Volpe,8.7 +9042,9042,Fire,3,The Awakening,1,Aang,Are you sure? [Rubs eyes.] I feel like I'm dreaming.,Are you sure? I feel like I'm dreaming.,Aaron Ehasz,Giancarlo Volpe,8.7 +9043,9043,Fire,3,The Awakening,1,Katara,[Hugs Aang.] You're not dreaming. You're finally awake.,You're not dreaming. You're finally awake.,Aaron Ehasz,Giancarlo Volpe,8.7 +9044,9044,Fire,3,The Awakening,1,Sokka,"[Hugs Aang; is disguised as a Fire Nation guard.] Aang, good to see you back with the living, buddy!","Aang, good to see you back with the living, buddy!",Aaron Ehasz,Giancarlo Volpe,8.7 +9045,9045,Fire,3,The Awakening,1,Aang,"Sokka? [Breathes heavily, appears to be passing out.]",Sokka?,Aaron Ehasz,Giancarlo Volpe,8.7 +9046,9046,Fire,3,The Awakening,1,Toph,"Uh-oh, somebody catch him, he's going to-","Uh-oh, somebody catch him, he's going to-",Aaron Ehasz,Giancarlo Volpe,8.7 +9047,9047,Fire,3,The Awakening,1,Scene Description,"The screen becomes black as Aang collapses to the floor, Katara running short of catching him. The shot cuts to the entire group, including Appa, surrounding Aang who is now in Katara's arms. Meanwhile, on another ship, Zuko is heading toward the Fire Nation. Mai joins him.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9048,9048,Fire,3,The Awakening,1,Mai,Aren't you cold?,Aren't you cold?,Aaron Ehasz,Giancarlo Volpe,8.7 +9049,9049,Fire,3,The Awakening,1,Zuko,"I've got a lot on my mind. It's been so long, over three years since I was home. I wonder what's changed. I wonder how I've changed.","I've got a lot on my mind. It's been so long, over three years since I was home. I wonder what's changed. I wonder how I've changed.",Aaron Ehasz,Giancarlo Volpe,8.7 +9050,9050,Fire,3,The Awakening,1,Mai,"[Yawns.] I just asked if you were cold, I didn't ask for your whole life story. [Giggles and holds his face in her hands.] Stop worrying.","I just asked if you were cold, I didn't ask for your whole life story. Stop worrying.",Aaron Ehasz,Giancarlo Volpe,8.7 +9051,9051,Fire,3,The Awakening,1,Scene Description,"The two kiss. Mai exits, and Zuko stays there with an expression of relief on his face. We return to the ship where Team Avatar is on. Aang is awake once again. He sits in front of Katara, also sitting, surrounded by Toph and Sokka. Appa rests behind them. Aang receives a robe to cover him.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9052,9052,Fire,3,The Awakening,1,Aang,Why are we on a Fire Nation ship? Why is everyone dressed this way? And why am I the only one who's completely out of it? [Katara and Aang are left alone.],Why are we on a Fire Nation ship? Why is everyone dressed this way? And why am I the only one who's completely out of it?,Aaron Ehasz,Giancarlo Volpe,8.7 +9053,9053,Fire,3,The Awakening,1,Katara,"You need to take it easy, okay? You got hurt pretty bad. [Smiling at him.] I like your hair.","You need to take it easy, okay? You got hurt pretty bad. I like your hair.",Aaron Ehasz,Giancarlo Volpe,8.7 +9054,9054,Fire,3,The Awakening,1,Aang,I have hair? [Feels it.] How long was I out?,I have hair? How long was I out?,Aaron Ehasz,Giancarlo Volpe,8.7 +9055,9055,Fire,3,The Awakening,1,Katara,A few weeks.,A few weeks.,Aaron Ehasz,Giancarlo Volpe,8.7 +9056,9056,Fire,3,The Awakening,1,Hakoda,Everything okay?,Everything okay?,Aaron Ehasz,Giancarlo Volpe,8.7 +9057,9057,Fire,3,The Awakening,1,Katara,"[Looking away, annoyed. Annoyed tone.] We're fine, Dad.","We're fine, Dad.",Aaron Ehasz,Giancarlo Volpe,8.7 +9058,9058,Fire,3,The Awakening,1,Hakoda,"[To Aang.] I'm Hakoda, Katara and Sokka's father. [Aang moves to shake his outstretched hand.]","I'm Hakoda, Katara and Sokka's father.",Aaron Ehasz,Giancarlo Volpe,8.7 +9059,9059,Fire,3,The Awakening,1,Katara,"[Placing her hands on Aang's shoulders stopping him.] He knows who you are. I just called you ""Dad"", didn't I?","He knows who you are. I just called you ""Dad"", didn't I?",Aaron Ehasz,Giancarlo Volpe,8.7 +9060,9060,Fire,3,The Awakening,1,Hakoda,I guess you're right.,I guess you're right.,Aaron Ehasz,Giancarlo Volpe,8.7 +9061,9061,Fire,3,The Awakening,1,Aang,"[Removing Katara's hand he shakes Hakoda's hand.] Nice to officially meet you, Chief Hakoda.","Nice to officially meet you, Chief Hakoda.",Aaron Ehasz,Giancarlo Volpe,8.7 +9062,9062,Fire,3,The Awakening,1,Hakoda,It's an honor to meet you.,It's an honor to meet you.,Aaron Ehasz,Giancarlo Volpe,8.7 +9063,9063,Fire,3,The Awakening,1,Katara,"Great, great, so now you guys have finally met. So would you mind giving us a little privacy?","Great, great, so now you guys have finally met. So would you mind giving us a little privacy?",Aaron Ehasz,Giancarlo Volpe,8.7 +9064,9064,Fire,3,The Awakening,1,Hakoda,Of course. [Walks away.],Of course.,Aaron Ehasz,Giancarlo Volpe,8.7 +9065,9065,Fire,3,The Awakening,1,Aang,Are you mad at your dad or something? [Katara looks at Hakoda leave with an expression of annoyance on her face.],Are you mad at your dad or something?,Aaron Ehasz,Giancarlo Volpe,8.7 +9066,9066,Fire,3,The Awakening,1,Katara,"[Confused look.] What, not at all. Why would you say that?","What, not at all. Why would you say that?",Aaron Ehasz,Giancarlo Volpe,8.7 +9067,9067,Fire,3,The Awakening,1,Scene Description,"Aang shrugs and murmurs as if to say ""I don't know."" but gasps in pain.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9068,9068,Fire,3,The Awakening,1,Katara,Maybe we should go upstairs. [Helping Aang up.] You need a healing session.,Maybe we should go upstairs. You need a healing session.,Aaron Ehasz,Giancarlo Volpe,8.7 +9069,9069,Fire,3,The Awakening,1,Scene Description,Back in Aang's room on the ship. Katara bends some water onto the scar left by Azula's lightning attack.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9070,9070,Fire,3,The Awakening,1,Katara,Tell me where the pain feels most intense.,Tell me where the pain feels most intense.,Aaron Ehasz,Giancarlo Volpe,8.7 +9071,9071,Fire,3,The Awakening,1,Aang,"Mmm, a little higher. Uhhh!","Mmm, a little higher. Uhhh!",Aaron Ehasz,Giancarlo Volpe,8.7 +9072,9072,Fire,3,The Awakening,1,Scene Description,Aang briefly flashes to the battle where he rises into the Avatar State.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9073,9073,Fire,3,The Awakening,1,Aang,"Wow, you're definitely in the right area there.","Wow, you're definitely in the right area there.",Aaron Ehasz,Giancarlo Volpe,8.7 +9074,9074,Fire,3,The Awakening,1,Katara,I can feel a lot of energy twisted up around there. [Begins to remove the water.] Let me just see if I can-,I can feel a lot of energy twisted up around there. Let me just see if I can-,Aaron Ehasz,Giancarlo Volpe,8.7 +9075,9075,Fire,3,The Awakening,1,Scene Description,"Aang again flashes back to the battle, to the moment where he was attacked, before moving on to the scene where Katara is looking over him, crying. After that, he snaps back to reality.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9076,9076,Fire,3,The Awakening,1,Aang,"I went down! I didn't just get hurt, did I? It was worse than that. I was gone! But you brought me back.","I went down! I didn't just get hurt, did I? It was worse than that. I was gone! But you brought me back.",Aaron Ehasz,Giancarlo Volpe,8.7 +9077,9077,Fire,3,The Awakening,1,Katara,I just used the spirit water from the North Pole. I don't know what I did exactly.,I just used the spirit water from the North Pole. I don't know what I did exactly.,Aaron Ehasz,Giancarlo Volpe,8.7 +9078,9078,Fire,3,The Awakening,1,Aang,[Turning to look at her.] You saved me.,You saved me.,Aaron Ehasz,Giancarlo Volpe,8.7 +9079,9079,Fire,3,The Awakening,1,Katara,[Placing a hand on the side of his face.] You need to rest.,You need to rest.,Aaron Ehasz,Giancarlo Volpe,8.7 +9080,9080,Fire,3,The Awakening,1,Scene Description,"The scene switches to the Fire Nation Capital, Li and Lo addressing a crowd below.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9081,9081,Fire,3,The Awakening,1,Li,"Your Princess Azula, clever and beautiful, disguised herself as the enemy and entered the Earth Kingdom's Capital. In Ba Sing Se, she found her brother Zuko, and together they faced the Avatar ...","Your Princess Azula, clever and beautiful, disguised herself as the enemy and entered the Earth Kingdom's Capital. In Ba Sing Se, she found her brother Zuko, and together they faced the Avatar ...",Aaron Ehasz,Giancarlo Volpe,8.7 +9082,9082,Fire,3,The Awakening,1,Li and Lo,And the Avatar fell! And the Earth Kingdom fell!,And the Avatar fell! And the Earth Kingdom fell!,Aaron Ehasz,Giancarlo Volpe,8.7 +9083,9083,Fire,3,The Awakening,1,Li,Azula's agents quickly overtook the entire city. They went to Ba Sing Se's great walls ...,Azula's agents quickly overtook the entire city. They went to Ba Sing Se's great walls ...,Aaron Ehasz,Giancarlo Volpe,8.7 +9084,9084,Fire,3,The Awakening,1,Li and Lo,And brought them down!,And brought them down!,Aaron Ehasz,Giancarlo Volpe,8.7 +9085,9085,Fire,3,The Awakening,1,Li,"The armies of the Fire Nation surged through the walls and swarmed over Ba Sing Se, securing our victory.","The armies of the Fire Nation surged through the walls and swarmed over Ba Sing Se, securing our victory.",Aaron Ehasz,Giancarlo Volpe,8.7 +9086,9086,Fire,3,The Awakening,1,Scene Description,A flashback shows the Dai Li taking down Ba Sing Se's walls and the Fire Nation troops entering the city as Earth Kingdom citizens look on with fear. Tanks are seen approaching the Ba Sing Se's royal palace before flashing back to Li and Lo with Azula approaching between them.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9087,9087,Fire,3,The Awakening,1,Li and Lo,Now the heroes have returned home!,Now the heroes have returned home!,Aaron Ehasz,Giancarlo Volpe,8.7 +9088,9088,Fire,3,The Awakening,1,Lo,"Your princess, Azula ... [Crowd cheers.]","Your princess, Azula ...",Aaron Ehasz,Giancarlo Volpe,8.7 +9089,9089,Fire,3,The Awakening,1,Li,"And after three long years, your prince has returned ...","And after three long years, your prince has returned ...",Aaron Ehasz,Giancarlo Volpe,8.7 +9090,9090,Fire,3,The Awakening,1,Li and Lo,Zuko!,Zuko!,Aaron Ehasz,Giancarlo Volpe,8.7 +9091,9091,Fire,3,The Awakening,1,Scene Description,Zuko approaches with a worried expression. Crowd cheers. We now go back to Team Avatar's ship. Sokka sits on a crate with a map with the others surrounding him as he narrates past events.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9092,9092,Fire,3,The Awakening,1,Sokka,"After what happened at Ba Sing Se, we had to get you to safety. We flew back to Chameleon Bay where we found my father and the other Water Tribe men. [Flashback preparing to leave by taking off his Earth King robes revealing traveling robes beneath.] The Earth King decided he wanted to travel the world in disguise, so he set off alone. [Bosco is shown taking off his own attire and hat before Kuei jumps on Bosco and they set off.] Well, not completely alone. [Cut back to Sokka continuing the story.] Soon, the bay was overrun by Fire Nation ships. Rather than fight them all, we captured a single ship and made it our disguise. Since then we've been traveling west. We crossed through the Serpent's Pass a few days ago. We've seen a few Fire Nation ships, but none have bothered us.","After what happened at Ba Sing Se, we had to get you to safety. We flew back to Chameleon Bay where we found my father and the other Water Tribe men. The Earth King decided he wanted to travel the world in disguise, so he set off alone. Well, not completely alone. Soon, the bay was overrun by Fire Nation ships. Rather than fight them all, we captured a single ship and made it our disguise. Since then we've been traveling west. We crossed through the Serpent's Pass a few days ago. We've seen a few Fire Nation ships, but none have bothered us.",Aaron Ehasz,Giancarlo Volpe,8.7 +9093,9093,Fire,3,The Awakening,1,Aang,So what now?,So what now?,Aaron Ehasz,Giancarlo Volpe,8.7 +9094,9094,Fire,3,The Awakening,1,Hakoda,We've been working on a modified version of the invasion plan.,We've been working on a modified version of the invasion plan.,Aaron Ehasz,Giancarlo Volpe,8.7 +9095,9095,Fire,3,The Awakening,1,Katara,It's Sokka's invasion plan.,It's Sokka's invasion plan.,Aaron Ehasz,Giancarlo Volpe,8.7 +9096,9096,Fire,3,The Awakening,1,Hakoda,"Yes, Sokka's plan. We won't be able to mount a massive invasion without the Earth King's armies, but the solar eclipse will still leave the Fire Nation vulnerable.","Yes, Sokka's plan. We won't be able to mount a massive invasion without the Earth King's armies, but the solar eclipse will still leave the Fire Nation vulnerable.",Aaron Ehasz,Giancarlo Volpe,8.7 +9097,9097,Fire,3,The Awakening,1,Sokka,So we're planning a smaller invasion. Just a ragtag team of our friends and allies from around the Earth Kingdom. We already ran into Pipsqueak and The Duke.,So we're planning a smaller invasion. Just a ragtag team of our friends and allies from around the Earth Kingdom. We already ran into Pipsqueak and The Duke.,Aaron Ehasz,Giancarlo Volpe,8.7 +9098,9098,Fire,3,The Awakening,1,Pipsqueak,"[Eating noodles with The Duke on his shoulder.] Good to see you again, Aang!","Good to see you again, Aang!",Aaron Ehasz,Giancarlo Volpe,8.7 +9099,9099,Fire,3,The Awakening,1,Sokka,"And the best part is, the eclipse isn't even our biggest advantage! [Whispers.] We have a secret ... you!","And the best part is, the eclipse isn't even our biggest advantage! We have a secret ... you!",Aaron Ehasz,Giancarlo Volpe,8.7 +9100,9100,Fire,3,The Awakening,1,Aang,Me?,Me?,Aaron Ehasz,Giancarlo Volpe,8.7 +9101,9101,Fire,3,The Awakening,1,Sokka,"Yep, the whole world thinks you're dead! Isn't that great?","Yep, the whole world thinks you're dead! Isn't that great?",Aaron Ehasz,Giancarlo Volpe,8.7 +9102,9102,Fire,3,The Awakening,1,Scene Description,Aang is shocked. Cut to Aang looking out to the water from a side of the boat.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9103,9103,Fire,3,The Awakening,1,Aang,The world thinks I'm dead? How is that good news? That's terrible!,The world thinks I'm dead? How is that good news? That's terrible!,Aaron Ehasz,Giancarlo Volpe,8.7 +9104,9104,Fire,3,The Awakening,1,Sokka,"[Approaching Aang.] No, it's great! It means the Fire Nation won't be hunting us anymore! And even better, they won't be expecting you on the Day of Black Sun!","No, it's great! It means the Fire Nation won't be hunting us anymore! And even better, they won't be expecting you on the Day of Black Sun!",Aaron Ehasz,Giancarlo Volpe,8.7 +9105,9105,Fire,3,The Awakening,1,Aang,"No, no, no, no, no. You have no idea. This is so messed up!","No, no, no, no, no. You have no idea. This is so messed up!",Aaron Ehasz,Giancarlo Volpe,8.7 +9106,9106,Fire,3,The Awakening,1,Scene Description,Another Fire Nation ship approaches.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9107,9107,Fire,3,The Awakening,1,Aang,I'll handle this. The Avatar is back. [Opens glider and grunts in pain.],I'll handle this. The Avatar is back.,Aaron Ehasz,Giancarlo Volpe,8.7 +9108,9108,Fire,3,The Awakening,1,Katara,"[Approaching Aang.] Aang, wait! Remember, they don't know we're not Fire Nation!","Aang, wait! Remember, they don't know we're not Fire Nation!",Aaron Ehasz,Giancarlo Volpe,8.7 +9109,9109,Fire,3,The Awakening,1,Scene Description,"Sweating, Aang puts his glider away.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9110,9110,Fire,3,The Awakening,1,Hakoda,Everyone just stay calm. [He and Bato put their helmets on.] Bato and I will take care of this.,Everyone just stay calm. Bato and I will take care of this.,Aaron Ehasz,Giancarlo Volpe,8.7 +9111,9111,Fire,3,The Awakening,1,Scene Description,"Pipsqueak and The Duke cover Appa and Momo, while Aang, Toph, Sokka and Katara hide in a square hole.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9112,9112,Fire,3,The Awakening,1,Aang,I hate not being able to do anything.,I hate not being able to do anything.,Aaron Ehasz,Giancarlo Volpe,8.7 +9113,9113,Fire,3,The Awakening,1,Toph,"Hopefully, you won't need to.","Hopefully, you won't need to.",Aaron Ehasz,Giancarlo Volpe,8.7 +9114,9114,Fire,3,The Awakening,1,Scene Description,Crew from the other ship boards Team Avatar's ship.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9115,9115,Fire,3,The Awakening,1,Fire Navy officer,"Commander, why are you off course? All Western Fleet ships are supposed to be moving toward Ba Sing Se to support the occupation!","Commander, why are you off course? All Western Fleet ships are supposed to be moving toward Ba Sing Se to support the occupation!",Aaron Ehasz,Giancarlo Volpe,8.7 +9116,9116,Fire,3,The Awakening,1,Hakoda,"Actually, we're from the Eastern Fleet. We have orders to deliver some cargo.","Actually, we're from the Eastern Fleet. We have orders to deliver some cargo.",Aaron Ehasz,Giancarlo Volpe,8.7 +9117,9117,Fire,3,The Awakening,1,Fire Navy officer,"Ahhh ... Eastern Fleet. Well, nice of Admiral Chan to let us know he was sending one of his ships our way.","Ahhh ... Eastern Fleet. Well, nice of Admiral Chan to let us know he was sending one of his ships our way.",Aaron Ehasz,Giancarlo Volpe,8.7 +9118,9118,Fire,3,The Awakening,1,Bato,"I'm sure Admiral Chan meant no disrespect, sir.","I'm sure Admiral Chan meant no disrespect, sir.",Aaron Ehasz,Giancarlo Volpe,8.7 +9119,9119,Fire,3,The Awakening,1,Fire Navy officer,"I mean, how hard is it to write a quick note and send a hawk our way?","I mean, how hard is it to write a quick note and send a hawk our way?",Aaron Ehasz,Giancarlo Volpe,8.7 +9120,9120,Fire,3,The Awakening,1,Hakoda,"Next time, we'll send [Bato and Hakoda glance at each other.] two hawks to make sure you get the message.","Next time, we'll send two hawks to make sure you get the message.",Aaron Ehasz,Giancarlo Volpe,8.7 +9121,9121,Fire,3,The Awakening,1,Scene Description,"The two bow to each other, and Hakoda and Bato exit.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9122,9122,Fire,3,The Awakening,1,Guard,Sir ... Admiral Chan has been on leave for two months at Ember Island.,Sir ... Admiral Chan has been on leave for two months at Ember Island.,Aaron Ehasz,Giancarlo Volpe,8.7 +9123,9123,Fire,3,The Awakening,1,Fire Navy officer,What? Why doesn't anyone ever tell me anything? Something's not right; they should have known that. I think this is a captured ship. [Whispering.] Just stay quiet until we're safely across the ramp. Then we'll sink this ship.,What? Why doesn't anyone ever tell me anything? Something's not right; they should have known that. I think this is a captured ship. Just stay quiet until we're safely across the ramp. Then we'll sink this ship.,Aaron Ehasz,Giancarlo Volpe,8.7 +9124,9124,Fire,3,The Awakening,1,Scene Description,"Toph, hearing this, emerges.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9125,9125,Fire,3,The Awakening,1,Toph,They know!,They know!,Aaron Ehasz,Giancarlo Volpe,8.7 +9126,9126,Fire,3,The Awakening,1,Scene Description,"She metalbends the bridge between the ships off. The captain and his guards fall into the water. Katara creates a large wave which separates the other ship from theirs. Team Avatar's ship departs quickly. The captain and his guards from the other ship climbs back on board theirs by rope ladder. Meanwhile, back at the Fire Nation Capital, Zuko feeds turtle ducks in a lake with some bread. Azula joins him.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9127,9127,Fire,3,The Awakening,1,Azula,"You seem so downcast. Has Mai gotten to you already? Though actually, Mai has been in a strangely good mood lately.","You seem so downcast. Has Mai gotten to you already? Though actually, Mai has been in a strangely good mood lately.",Aaron Ehasz,Giancarlo Volpe,8.7 +9128,9128,Fire,3,The Awakening,1,Zuko,"I haven't seen Dad yet. I haven't seen him in three years, since I was banished.","I haven't seen Dad yet. I haven't seen him in three years, since I was banished.",Aaron Ehasz,Giancarlo Volpe,8.7 +9129,9129,Fire,3,The Awakening,1,Azula,So what?,So what?,Aaron Ehasz,Giancarlo Volpe,8.7 +9130,9130,Fire,3,The Awakening,1,Zuko,"So, I didn't capture the Avatar.","So, I didn't capture the Avatar.",Aaron Ehasz,Giancarlo Volpe,8.7 +9131,9131,Fire,3,The Awakening,1,Azula,Who cares? The Avatar is dead ... [Zuko looks away.] unless you think he somehow miraculously survived.,Who cares? The Avatar is dead ... unless you think he somehow miraculously survived.,Aaron Ehasz,Giancarlo Volpe,8.7 +9132,9132,Fire,3,The Awakening,1,Scene Description,Zuko flashes back to when Katara explained about her vial of spirit water.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9133,9133,Fire,3,The Awakening,1,Katara,[During flashback.] This is water from the spirit oasis at the north pole. It has special properties so I've been saving it for something important.,This is water from the spirit oasis at the north pole. It has special properties so I've been saving it for something important.,Aaron Ehasz,Giancarlo Volpe,8.7 +9134,9134,Fire,3,The Awakening,1,Scene Description,Back to the present.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9135,9135,Fire,3,The Awakening,1,Zuko,No. There's no way he could have survived. [They glare at each other.],No. There's no way he could have survived.,Aaron Ehasz,Giancarlo Volpe,8.7 +9136,9136,Fire,3,The Awakening,1,Azula,"Well, then I'm sure you have nothing to worry about.","Well, then I'm sure you have nothing to worry about.",Aaron Ehasz,Giancarlo Volpe,8.7 +9137,9137,Fire,3,The Awakening,1,Scene Description,Back at the ocean. The second ship begins firing at Team Avatar's. Toph takes an earthbending stance while The Duke stands behind her to guide her.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9138,9138,Fire,3,The Awakening,1,Toph,Load the Toph!,Load the Toph!,Aaron Ehasz,Giancarlo Volpe,8.7 +9139,9139,Fire,3,The Awakening,1,Scene Description,"Pipsqueak drops a boulder in front of Toph who begins earthbending it at the attacking ship. It hits a catapult as another fires. others try to fight back with a series of rocks that Toph earthbends at the other ship. With The Duke's guidance, Toph earthbends another piece of rock and sends it to intercept the oncoming fireball. Aang, inside the ship with Sokka, makes a move to help but is stopped by Sokka. In frustration he bangs his head against his staff. The other ship fires a harpoon, piercing a hole in Team Avatar's ship's bottom. As water flows in, Katara, noticing this, freezes the water below to plug the hole.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9140,9140,Fire,3,The Awakening,1,Katara,I'm gonna give us some cover!,I'm gonna give us some cover!,Aaron Ehasz,Giancarlo Volpe,8.7 +9141,9141,Fire,3,The Awakening,1,Scene Description,"She brings up vapor from the water to create a fog screen. However, a fireball makes its way through and destroys the rocks that Toph had being used.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9142,9142,Fire,3,The Awakening,1,Scene Description,Cut back to Aang and Sokka in the ship.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9143,9143,Fire,3,The Awakening,1,Aang,I just can't stand by and do nothing! [Runs out.],I just can't stand by and do nothing!,Aaron Ehasz,Giancarlo Volpe,8.7 +9144,9144,Fire,3,The Awakening,1,Sokka,"[Following.] Aang, no! [Grabs the staff.] You're still hurt, and you have to stay secret! Just let us handle this.","Aang, no! You're still hurt, and you have to stay secret! Just let us handle this.",Aaron Ehasz,Giancarlo Volpe,8.7 +9145,9145,Fire,3,The Awakening,1,Aang,Fine. [Grabs his staff and walks away.],Fine.,Aaron Ehasz,Giancarlo Volpe,8.7 +9146,9146,Fire,3,The Awakening,1,Scene Description,Two fireballs hit the ship causing a fire. Katara quickly extinguishes it with waterbending.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9147,9147,Fire,3,The Awakening,1,Toph,How are we doing?,How are we doing?,Aaron Ehasz,Giancarlo Volpe,8.7 +9148,9148,Fire,3,The Awakening,1,Sokka,"Things couldn't get much worse. [A serpent rises from the water near their ship.] The universe just loves proving me wrong, doesn't it?","Things couldn't get much worse. The universe just loves proving me wrong, doesn't it?",Aaron Ehasz,Giancarlo Volpe,8.7 +9149,9149,Fire,3,The Awakening,1,Toph,You make it too easy!,You make it too easy!,Aaron Ehasz,Giancarlo Volpe,8.7 +9150,9150,Fire,3,The Awakening,1,Scene Description,"The serpent is hit by a fireball from the other ship. In anger, it wraps itself around the other ship, allowing Team Avatar's ship to escape.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9151,9151,Fire,3,The Awakening,1,Sokka,"Thank you, the universe!","Thank you, the universe!",Aaron Ehasz,Giancarlo Volpe,8.7 +9152,9152,Fire,3,The Awakening,1,Scene Description,"Team Avatar's ship arrives a port in a town. Aang is alone in his room, until the rest of the gang enter.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9153,9153,Fire,3,The Awakening,1,Toph,"Hey, Aang! We're going into town to find some dinner.","Hey, Aang! We're going into town to find some dinner.",Aaron Ehasz,Giancarlo Volpe,8.7 +9154,9154,Fire,3,The Awakening,1,Aang,"[Clutching his stomach.] Well, I am pretty hungry. Maybe dinner's a good idea.","Well, I am pretty hungry. Maybe dinner's a good idea.",Aaron Ehasz,Giancarlo Volpe,8.7 +9155,9155,Fire,3,The Awakening,1,Sokka,"Here, [Offering a Fire Nation bandana.] tie this around your head. It will cover your arrow.","Here, tie this around your head. It will cover your arrow.",Aaron Ehasz,Giancarlo Volpe,8.7 +9156,9156,Fire,3,The Awakening,1,Aang,I'm not going out if I can't wear my arrow proudly! [He lies back down.],I'm not going out if I can't wear my arrow proudly!,Aaron Ehasz,Giancarlo Volpe,8.7 +9157,9157,Fire,3,The Awakening,1,Sokka,"Aang, come on. Be practical.","Aang, come on. Be practical.",Aaron Ehasz,Giancarlo Volpe,8.7 +9158,9158,Fire,3,The Awakening,1,Katara,"[Placing a hand on Sokka's shoulder.] You guys go ahead without us. We'll catch up to you. [Toph and Sokka exit. Katara sits on Aang's bed, placing a hand on his shoulder.] I think I understand why being a secret bothers you so much. You don't want people to think you failed.",You guys go ahead without us. We'll catch up to you. I think I understand why being a secret bothers you so much. You don't want people to think you failed.,Aaron Ehasz,Giancarlo Volpe,8.7 +9159,9159,Fire,3,The Awakening,1,Aang,"You're right, I don't. But the problem is, I did fail!","You're right, I don't. But the problem is, I did fail!",Aaron Ehasz,Giancarlo Volpe,8.7 +9160,9160,Fire,3,The Awakening,1,Katara,"Aang, that's not true.","Aang, that's not true.",Aaron Ehasz,Giancarlo Volpe,8.7 +9161,9161,Fire,3,The Awakening,1,Aang,[Getting up.] It is true. I was in Ba Sing Se. I was there! But I lost. And now the Earth Kingdom is fallen for good.,It is true. I was in Ba Sing Se. I was there! But I lost. And now the Earth Kingdom is fallen for good.,Aaron Ehasz,Giancarlo Volpe,8.7 +9162,9162,Fire,3,The Awakening,1,Katara,"It's not for good. [Getting up too.] Remember, there's still a plan. The invasion!","It's not for good. Remember, there's still a plan. The invasion!",Aaron Ehasz,Giancarlo Volpe,8.7 +9163,9163,Fire,3,The Awakening,1,Aang,"And I hate the invasion plan, too! [Rips down the Fire Nation flag covering his staff.] I don't want you or anyone else risking your lives to fix my mistakes! I've always known that I would have to face the Fire Lord. But now I know I need to do it alone.","And I hate the invasion plan, too! I don't want you or anyone else risking your lives to fix my mistakes! I've always known that I would have to face the Fire Lord. But now I know I need to do it alone.",Aaron Ehasz,Giancarlo Volpe,8.7 +9164,9164,Fire,3,The Awakening,1,Katara,[Moving to comfort him.] Aang ...,Aang ...,Aaron Ehasz,Giancarlo Volpe,8.7 +9165,9165,Fire,3,The Awakening,1,Aang,"Katara, please! Just go ... please.","Katara, please! Just go ... please.",Aaron Ehasz,Giancarlo Volpe,8.7 +9166,9166,Fire,3,The Awakening,1,Katara,[Exiting.] Is there anything you need?,Is there anything you need?,Aaron Ehasz,Giancarlo Volpe,8.7 +9167,9167,Fire,3,The Awakening,1,Aang,I need to redeem myself. I need my honor back.,I need to redeem myself. I need my honor back.,Aaron Ehasz,Giancarlo Volpe,8.7 +9168,9168,Fire,3,The Awakening,1,Scene Description,"Back at the Fire Nation Capital, Zuko returns to the royal palace and prepares to face his father, Ozai. He breathes deeply and enters. We briefly see Ozai before cutting back to Team Avatar's ship. Katara returns to Aang's room.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9169,9169,Fire,3,The Awakening,1,Katara,I brought you some food! [Notices Aang has gone missing.] Oh no ... [Drops the food tray and runs.],I brought you some food! Oh no ...,Aaron Ehasz,Giancarlo Volpe,8.7 +9170,9170,Fire,3,The Awakening,1,Scene Description,"Cut to Aang, flying on his glider. Back at the Royal Palace, Zuko bows before Ozai.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9171,9171,Fire,3,The Awakening,1,Ozai,"You've been away for a long time. I see the weight of your travels has changed you. You have redeemed yourself, my son. [Approaches Zuko; the camera pans up to view Ozai's full face for the first time.] Welcome home.","You've been away for a long time. I see the weight of your travels has changed you. You have redeemed yourself, my son. Welcome home.",Aaron Ehasz,Giancarlo Volpe,8.7 +9172,9172,Fire,3,The Awakening,1,Scene Description,"Aang struggles to remain in flight against his injuries. Back on the ship, Katara runs toward Bato and Hakoda. She is in tears.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9173,9173,Fire,3,The Awakening,1,Bato,I'll leave you two alone. [Exits.],I'll leave you two alone.,Aaron Ehasz,Giancarlo Volpe,8.7 +9174,9174,Fire,3,The Awakening,1,Hakoda,"What's wrong, Katara?","What's wrong, Katara?",Aaron Ehasz,Giancarlo Volpe,8.7 +9175,9175,Fire,3,The Awakening,1,Katara,He left.,He left.,Aaron Ehasz,Giancarlo Volpe,8.7 +9176,9176,Fire,3,The Awakening,1,Hakoda,What?,What?,Aaron Ehasz,Giancarlo Volpe,8.7 +9177,9177,Fire,3,The Awakening,1,Katara,"Aang. He just took his glider and disappeared. He has this ridiculous notion that he has to save the world alone, that it's all his responsibility.","Aang. He just took his glider and disappeared. He has this ridiculous notion that he has to save the world alone, that it's all his responsibility.",Aaron Ehasz,Giancarlo Volpe,8.7 +9178,9178,Fire,3,The Awakening,1,Hakoda,Maybe that's his way of being brave.,Maybe that's his way of being brave.,Aaron Ehasz,Giancarlo Volpe,8.7 +9179,9179,Fire,3,The Awakening,1,Katara,"It's not brave, it's selfish and stupid! We could be helping him and I know the world needs him, but doesn't he know how much we need him, too? How can he just leave us behind?","It's not brave, it's selfish and stupid! We could be helping him and I know the world needs him, but doesn't he know how much we need him, too? How can he just leave us behind?",Aaron Ehasz,Giancarlo Volpe,8.7 +9180,9180,Fire,3,The Awakening,1,Hakoda,"You're talking about me too, aren't you?","You're talking about me too, aren't you?",Aaron Ehasz,Giancarlo Volpe,8.7 +9181,9181,Fire,3,The Awakening,1,Katara,"How could you leave us, Dad? [She attempts to wipe away the tears.] I mean, I know we had Gran-Gran, and she loved us, but we were just so lost without you.","How could you leave us, Dad? I mean, I know we had Gran-Gran, and she loved us, but we were just so lost without you.",Aaron Ehasz,Giancarlo Volpe,8.7 +9182,9182,Fire,3,The Awakening,1,Scene Description,Hakoda moves to comfort her as she turns away.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9183,9183,Fire,3,The Awakening,1,Hakoda,"I'm so sorry, Katara.","I'm so sorry, Katara.",Aaron Ehasz,Giancarlo Volpe,8.7 +9184,9184,Fire,3,The Awakening,1,Katara,"[Embraces Hakoda.] I understand why you left. I really do, and I know that you had to go, so why do I still feel this way? I'm so sad and angry and hurt!","I understand why you left. I really do, and I know that you had to go, so why do I still feel this way? I'm so sad and angry and hurt!",Aaron Ehasz,Giancarlo Volpe,8.7 +9185,9185,Fire,3,The Awakening,1,Hakoda,"I love you more than anything. You and your brother are my entire world. I thought about you every day when I was gone and every night when I went to sleep, I would lie awake missing you so much it would ache.","I love you more than anything. You and your brother are my entire world. I thought about you every day when I was gone and every night when I went to sleep, I would lie awake missing you so much it would ache.",Aaron Ehasz,Giancarlo Volpe,8.7 +9186,9186,Fire,3,The Awakening,1,Scene Description,The scene switches to the Royal Palace.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9187,9187,Fire,3,The Awakening,1,Ozai,"I am proud of you, Prince Zuko. I am proud because you and your sister conquered Ba Sing Se. I am proud because when your loyalty was tested by your treacherous uncle, you did the right thing and captured the traitor. And I am proudest of all of your most legendary accomplishment: you slayed the Avatar.","I am proud of you, Prince Zuko. I am proud because you and your sister conquered Ba Sing Se. I am proud because when your loyalty was tested by your treacherous uncle, you did the right thing and captured the traitor. And I am proudest of all of your most legendary accomplishment: you slayed the Avatar.",Aaron Ehasz,Giancarlo Volpe,8.7 +9188,9188,Fire,3,The Awakening,1,Zuko,[Shocked.] What did you hear?,What did you hear?,Aaron Ehasz,Giancarlo Volpe,8.7 +9189,9189,Fire,3,The Awakening,1,Ozai,Azula told me everything. She said she was amazed and impressed at your power and ferocity at the moment of truth.,Azula told me everything. She said she was amazed and impressed at your power and ferocity at the moment of truth.,Aaron Ehasz,Giancarlo Volpe,8.7 +9190,9190,Fire,3,The Awakening,1,Scene Description,"Aang continues his flight, struggling. He comes upon a Fire Nation blockade.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9191,9191,Fire,3,The Awakening,1,Aang,A blockade.,A blockade.,Aaron Ehasz,Giancarlo Volpe,8.7 +9192,9192,Fire,3,The Awakening,1,Scene Description,"He takes a deep breath and swims under it. Upon emerging, he finds a tree bark and rides it like a surfboard through the water. A storm turns the seas very choppy. He falls off and into the water and his staff flies away. We return to the palace. Azula is asleep, when Zuko enters her room.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9193,9193,Fire,3,The Awakening,1,Zuko,Why'd you do it?,Why'd you do it?,Aaron Ehasz,Giancarlo Volpe,8.7 +9194,9194,Fire,3,The Awakening,1,Azula,You're going to have to be a little more specific.,You're going to have to be a little more specific.,Aaron Ehasz,Giancarlo Volpe,8.7 +9195,9195,Fire,3,The Awakening,1,Zuko,Why did you tell Father that I was the one who killed the Avatar?,Why did you tell Father that I was the one who killed the Avatar?,Aaron Ehasz,Giancarlo Volpe,8.7 +9196,9196,Fire,3,The Awakening,1,Azula,Can't this wait until the morning?,Can't this wait until the morning?,Aaron Ehasz,Giancarlo Volpe,8.7 +9197,9197,Fire,3,The Awakening,1,Zuko,It. Can't.,It. Can't.,Aaron Ehasz,Giancarlo Volpe,8.7 +9198,9198,Fire,3,The Awakening,1,Azula,"[Sighs and opens her eyes.] Fine. You seemed so worried about how Father would treat you because you hadn't captured the Avatar. I figured if I gave you the credit, you'd have nothing to worry about.","Fine. You seemed so worried about how Father would treat you because you hadn't captured the Avatar. I figured if I gave you the credit, you'd have nothing to worry about.",Aaron Ehasz,Giancarlo Volpe,8.7 +9199,9199,Fire,3,The Awakening,1,Zuko,But why?,But why?,Aaron Ehasz,Giancarlo Volpe,8.7 +9200,9200,Fire,3,The Awakening,1,Azula,[Getting out of bed.] Call it a generous gesture. I wanted to thank you for your help and I was happy to share the glory.,Call it a generous gesture. I wanted to thank you for your help and I was happy to share the glory.,Aaron Ehasz,Giancarlo Volpe,8.7 +9201,9201,Fire,3,The Awakening,1,Zuko,You're lying.,You're lying.,Aaron Ehasz,Giancarlo Volpe,8.7 +9202,9202,Fire,3,The Awakening,1,Azula,[Walking past Zuko.] If you say so ...,If you say so ...,Aaron Ehasz,Giancarlo Volpe,8.7 +9203,9203,Fire,3,The Awakening,1,Zuko,"You have another motive for doing this, I just haven't figured out what it is.","You have another motive for doing this, I just haven't figured out what it is.",Aaron Ehasz,Giancarlo Volpe,8.7 +9204,9204,Fire,3,The Awakening,1,Azula,"Please Zuko, what ulterior motive could I have? What could I possibly gain by letting you get all the glory for defeating the Avatar? [Approaching close to Zuko she places a hand on his shoulder.] Unless, somehow, the Avatar was actually alive. All that glory would suddenly turn to shame and foolishness. But you said it yourself, that was impossible. [Zuko begins to leave.] Sleep well, Zuzu.","Please Zuko, what ulterior motive could I have? What could I possibly gain by letting you get all the glory for defeating the Avatar? Unless, somehow, the Avatar was actually alive. All that glory would suddenly turn to shame and foolishness. But you said it yourself, that was impossible. Sleep well, Zuzu.",Aaron Ehasz,Giancarlo Volpe,8.7 +9205,9205,Fire,3,The Awakening,1,Scene Description,"Back in the sea, Aang struggles to stay above water or reach his glider. After letting out a scream, a wave overcomes him and he falls into the water. He re-emerges after a brief time.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9206,9206,Fire,3,The Awakening,1,Aang,"I'm not gonna make it. I failed. [Within the lightning strikes, the spirit of Roku appears before Aang.] Roku?",I'm not gonna make it. I failed. Roku?,Aaron Ehasz,Giancarlo Volpe,8.7 +9207,9207,Fire,3,The Awakening,1,Roku,"You haven't failed, Aang.","You haven't failed, Aang.",Aaron Ehasz,Giancarlo Volpe,8.7 +9208,9208,Fire,3,The Awakening,1,Aang,"But everyone thinks I'm dead again. They think I've abandoned them, and I'm losing this war. I'm letting the whole world down.","But everyone thinks I'm dead again. They think I've abandoned them, and I'm losing this war. I'm letting the whole world down.",Aaron Ehasz,Giancarlo Volpe,8.7 +9209,9209,Fire,3,The Awakening,1,Roku,"If anyone is to blame for the state of the world, it is me. I should have seen this war coming and prevented it. You inherited my problems and my mistakes. But I believe you are destined to redeem me and save the world.","If anyone is to blame for the state of the world, it is me. I should have seen this war coming and prevented it. You inherited my problems and my mistakes. But I believe you are destined to redeem me and save the world.",Aaron Ehasz,Giancarlo Volpe,8.7 +9210,9210,Fire,3,The Awakening,1,Aang,I don't know.,I don't know.,Aaron Ehasz,Giancarlo Volpe,8.7 +9211,9211,Fire,3,The Awakening,1,Scene Description,Moonlight shines on on Aang as Yue's spirit appears above.,NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9212,9212,Fire,3,The Awakening,1,Yue,"You already saved the world. And you'll save the world again, but you can't give up.","You already saved the world. And you'll save the world again, but you can't give up.",Aaron Ehasz,Giancarlo Volpe,8.7 +9213,9213,Fire,3,The Awakening,1,Scene Description,"The storm ends. The spirit of Roku disappears, while Yue's spirit descends toward Aang.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9214,9214,Fire,3,The Awakening,1,Aang,You're right. I won't give up.,You're right. I won't give up.,Aaron Ehasz,Giancarlo Volpe,8.7 +9215,9215,Fire,3,The Awakening,1,Scene Description,"He creates a wave and surfs it with the tree bark. Yue's spirit watches him leave and ascends back to moon. Aang is washed up at the base of a volcano, on the same crescent island where Roku's temple once was. Later, Momo finds him and licks his face, waking him up. Katara, Sokka, and Toph find him, reaching him via Appa. Katara runs to hug him, her worried look changing to happiness.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9216,9216,Fire,3,The Awakening,1,Katara,You're okay!,You're okay!,Aaron Ehasz,Giancarlo Volpe,8.7 +9217,9217,Fire,3,The Awakening,1,Scene Description,"They all, including Momo and Appa, come together for a group hug.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9218,9218,Fire,3,The Awakening,1,Aang,I have so much to do.,I have so much to do.,Aaron Ehasz,Giancarlo Volpe,8.7 +9219,9219,Fire,3,The Awakening,1,Katara,"I know, but you'll have our help.","I know, but you'll have our help.",Aaron Ehasz,Giancarlo Volpe,8.7 +9220,9220,Fire,3,The Awakening,1,Toph,"You didn't think you could get out of training just by coming to the Fire Nation, did you?","You didn't think you could get out of training just by coming to the Fire Nation, did you?",Aaron Ehasz,Giancarlo Volpe,8.7 +9221,9221,Fire,3,The Awakening,1,Aang,What about the invasion?,What about the invasion?,Aaron Ehasz,Giancarlo Volpe,8.7 +9222,9222,Fire,3,The Awakening,1,Sokka,We'll join up with my dad and the invasion force the day of the eclipse.,We'll join up with my dad and the invasion force the day of the eclipse.,Aaron Ehasz,Giancarlo Volpe,8.7 +9223,9223,Fire,3,The Awakening,1,Toph,"[Notices Aang's damaged staff has washed ashore.] Hey! What's ... oh, it's your glider.","Hey! What's ... oh, it's your glider.",Aaron Ehasz,Giancarlo Volpe,8.7 +9224,9224,Fire,3,The Awakening,1,Aang,"It's okay. If someone saw it, it would give away my identity. It's better for now that no one knows I'm alive.","It's okay. If someone saw it, it would give away my identity. It's better for now that no one knows I'm alive.",Aaron Ehasz,Giancarlo Volpe,8.7 +9225,9225,Fire,3,The Awakening,1,Scene Description,"Flies up and sticks it in the volcano's lava trails, causing it to catch fire as they depart. Scene fades to credits.",NA,Aaron Ehasz,Giancarlo Volpe,8.7 +9226,9226,Fire,3,The Headband,2,Scene Description,"The episode opens with a shot of the incline leading to the Royal Caldera city, as the camera pans above to an aerial shot of the city. Shot cuts to the Fire Nation Royal Palace, before cutting to Zuko's bedroom, to show Zuko tossing and turning in his bed, unable to sleep. He opens his eyes and gets up, donning a cloak. Cut to the rim of the volcano, as he walks through a path. Cut to the Capital City Prison as Zuko walks toward it. Cut to an overhead shot of him stopping and looking above. Cut to a guard walking around a balcony, who spots him.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9227,9227,Fire,3,The Headband,2,Guard,Who's there?!,Who's there?!,John O'Bryan,Joaquim Dos Santos,8.4 +9228,9228,Fire,3,The Headband,2,Scene Description,"Zuko, without speaking a word, turns around and walks away. The guard, seeing Zuko leave, resumes his patrol. Scene changes to some islands at day time, as a mysterious cloud goes toward one of the islands at an abnormal speed. Cut to the cloud ""descending"" on one of the islands.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9229,9229,Fire,3,The Headband,2,Aang,[From inside the cloud.] I think I see a cave below.,I think I see a cave below.,John O'Bryan,Joaquim Dos Santos,8.4 +9230,9230,Fire,3,The Headband,2,Sokka,[Commanding.] Sh! Keep quiet!,Sh! Keep quiet!,John O'Bryan,Joaquim Dos Santos,8.4 +9231,9231,Fire,3,The Headband,2,Scene Description,"Aang airbends the cloud surrounding Appa as the flying bison lands. Sokka jumps to the ground from Appa and reconnoiters, before crossing his arms and looking toward Team Avatar.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9232,9232,Fire,3,The Headband,2,Sokka,"Great job with the cloud camo, but next time, let's disguise ourselves as the kind of cloud that knows how to keep its mouth shut. [He reconnoiters again.]","Great job with the cloud camo, but next time, let's disguise ourselves as the kind of cloud that knows how to keep its mouth shut.",John O'Bryan,Joaquim Dos Santos,8.4 +9233,9233,Fire,3,The Headband,2,Toph,"[Cut to the Toph, Katara, and Aang standing in front of Sokka, who is reconnoitering. Sarcastically.] Yeah, we wouldn't want a bird to hear us chatting up there and turn us in.","Yeah, we wouldn't want a bird to hear us chatting up there and turn us in.",John O'Bryan,Joaquim Dos Santos,8.4 +9234,9234,Fire,3,The Headband,2,Sokka,"[Turning back toward the other three.] Hey, we're in enemy territory. [He points above as camera zooms back to show four toucan puffins standing on a rock behind him.] Those are enemy birds.","Hey, we're in enemy territory. Those are enemy birds.",John O'Bryan,Joaquim Dos Santos,8.4 +9235,9235,Fire,3,The Headband,2,Scene Description,"One toucan puffin jumps onto Sokka's head and screeches. Cut to the other three as they laugh, and walk toward the cave, with Sokka following behind. Suddenly, he jumps above them and comes ""diving"" down. He looks suspicious, as shot cuts to an aerial shot of him running into the cave, followed by the rest of the group.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9236,9236,Fire,3,The Headband,2,Sokka,"Well, this is it. [Cut to Sokka standing in front of the other three.] This is how we'll be living until the invasion begins. [His head drops each time he says the word, ""cave"".] Hiding in cave after cave after cave after cave ...","Well, this is it. This is how we'll be living until the invasion begins. Hiding in cave after cave after cave after cave ...",John O'Bryan,Joaquim Dos Santos,8.4 +9237,9237,Fire,3,The Headband,2,Katara,"[Cut to Katara, standing near Aang, from behind Sokka.] Sokka, we don't need to become cave people. What we need is some new clothes.","Sokka, we don't need to become cave people. What we need is some new clothes.",John O'Bryan,Joaquim Dos Santos,8.4 +9238,9238,Fire,3,The Headband,2,Aang,"Yeah, blending in is better than hiding out. [Cut to Aang and Katara.] If we get Fire Nation disguises, [Smiling.] we would be just as safe as we would be hiding in a cave.","Yeah, blending in is better than hiding out. If we get Fire Nation disguises, we would be just as safe as we would be hiding in a cave.",John O'Bryan,Joaquim Dos Santos,8.4 +9239,9239,Fire,3,The Headband,2,Toph,"[Cut to Toph, who is sitting down with her legs slightly folded.] Plus, they have real food out there. Does anyone want to sit in the dirt and eat cave hoppers?","Plus, they have real food out there. Does anyone want to sit in the dirt and eat cave hoppers?",John O'Bryan,Joaquim Dos Santos,8.4 +9240,9240,Fire,3,The Headband,2,Scene Description,"Toph punches the cave wall, causing cave hoppers to jump out, Momo grabs one and eats it. He turns around and spits out a cave hopper limb.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9241,9241,Fire,3,The Headband,2,Sokka,"Looks like we got outvoted, sport. Let's get some new clothes.","Looks like we got outvoted, sport. Let's get some new clothes.",John O'Bryan,Joaquim Dos Santos,8.4 +9242,9242,Fire,3,The Headband,2,Scene Description,"Cut to outside a Fire Nation home near a waterfall. Next to the home, clothes hang out to dry on clotheslines over natural steam vents. Katara, Aang, Sokka, and Toph hide behind a rock wall.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9243,9243,Fire,3,The Headband,2,Aang,[Whispering.] I don't know about this. [Cut to a view of Team Avatar from the clothes.] These clothes belong to somebody.,I don't know about this. These clothes belong to somebody.,John O'Bryan,Joaquim Dos Santos,8.4 +9244,9244,Fire,3,The Headband,2,Katara,I call the silk robe! [Jumps out from behind the rock wall and grabs two outfits.],I call the silk robe!,John O'Bryan,Joaquim Dos Santos,8.4 +9245,9245,Fire,3,The Headband,2,Aang,But if it's essential to our survival ... then I call the suit! [Jumps over the wall.],But if it's essential to our survival ... then I call the suit!,John O'Bryan,Joaquim Dos Santos,8.4 +9246,9246,Fire,3,The Headband,2,Scene Description,"Cut to a view of the hanging clothes from inside a house through doorway where a man sleeps. Aang and Toph run across, grabbing clothes. Sokka stands still, examining shirts on the clothesline and grabs the third one.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9247,9247,Fire,3,The Headband,2,Aang,[Puts on a headband.] Ta-dah! Normal kid.,Ta-dah! Normal kid.,John O'Bryan,Joaquim Dos Santos,8.4 +9248,9248,Fire,3,The Headband,2,Toph,"Hm ... I should probably wear shoes. But then I won't be able to see as well. [Sits down.] Sorry, shoes. [Pulls on the shoe, launching the sole at Sokka's face, leaving a red mark.] Finally, a stylish shoe for the blind earthbender.","Hm ... I should probably wear shoes. But then I won't be able to see as well. Sorry, shoes. Finally, a stylish shoe for the blind earthbender.",John O'Bryan,Joaquim Dos Santos,8.4 +9249,9249,Fire,3,The Headband,2,Katara,[Walks partially on camera.] How do I look? [The camera pans from Katara's dress to her whole outfit.],How do I look?,John O'Bryan,Joaquim Dos Santos,8.4 +9250,9250,Fire,3,The Headband,2,Aang,"[Blushing, scratching his head.] Uh ... your mom's necklace.",Uh ... your mom's necklace.,John O'Bryan,Joaquim Dos Santos,8.4 +9251,9251,Fire,3,The Headband,2,Katara,"Oh, [Touches necklace.] oh, yeah. I guess it's pretty obviously Water Tribe, isn't it? [Takes off the necklace and holds it in her hand.]","Oh, oh, yeah. I guess it's pretty obviously Water Tribe, isn't it?",John O'Bryan,Joaquim Dos Santos,8.4 +9252,9252,Fire,3,The Headband,2,Scene Description,"In the city, Katara puts some money on a head-wear display. She puts on a Fire Nation necklace, Toph puts on a crown, and Sokka wears a top-knot. Aang pats down Momo's ears and hides him in his shirt.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9253,9253,Fire,3,The Headband,2,Aang,"I used to visit my friend Kuzon here a hundred years ago. So, everyone just follow my lead and stay cool. Or, as they say in the Fire Nation, stay flamin'. [Walks around the building corner. To a man eating meat on a stick.] Greetings, my good hotman.","I used to visit my friend Kuzon here a hundred years ago. So, everyone just follow my lead and stay cool. Or, as they say in the Fire Nation, stay flamin'. Greetings, my good hotman.",John O'Bryan,Joaquim Dos Santos,8.4 +9254,9254,Fire,3,The Headband,2,Fire Nation man,"[Confused.] Uh, hi. [Sokka shrugs at him as he passes.] I guess ...","Uh, hi. I guess ...",John O'Bryan,Joaquim Dos Santos,8.4 +9255,9255,Fire,3,The Headband,2,Aang,"[Looking at a meat display.] Oh, we're going to a meat place?","Oh, we're going to a meat place?",John O'Bryan,Joaquim Dos Santos,8.4 +9256,9256,Fire,3,The Headband,2,Sokka,"Come on, Aang, everyone here eats meat. Even the meat. [Points at a hippo cow eating a piece of meat swarming with flies.]","Come on, Aang, everyone here eats meat. Even the meat.",John O'Bryan,Joaquim Dos Santos,8.4 +9257,9257,Fire,3,The Headband,2,Aang,You guys go ahead. I'll just get some lettuce out of the garbage. [Aang and Katara wave each at each other as the rest enter. Turns around to greet random people on the street.] Hotman. Hotman. Hotman. Hotman. Hotman. Hotman.,You guys go ahead. I'll just get some lettuce out of the garbage. Hotman. Hotman. Hotman. Hotman. Hotman. Hotman.,John O'Bryan,Joaquim Dos Santos,8.4 +9258,9258,Fire,3,The Headband,2,Scene Description,Three soldiers approach Aang.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9259,9259,Fire,3,The Headband,2,Male soldier,It's over. We caught you.,It's over. We caught you.,John O'Bryan,Joaquim Dos Santos,8.4 +9260,9260,Fire,3,The Headband,2,Aang,"[Guiltily.] Who, me?","Who, me?",John O'Bryan,Joaquim Dos Santos,8.4 +9261,9261,Fire,3,The Headband,2,Male soldier,"It couldn't be more obvious that you don't belong here. [Cut to Aang looking very nervous.] Next time you play hooky, you might wanna take off your school uniform.","It couldn't be more obvious that you don't belong here. Next time you play hooky, you might wanna take off your school uniform.",John O'Bryan,Joaquim Dos Santos,8.4 +9262,9262,Fire,3,The Headband,2,Scene Description,"Aang laughs nervously and the soldier grabs Aang. Cut to the two guards push Aang into a classroom. The camera pans across the room, stopping at the teacher, Ms. Kwan.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9263,9263,Fire,3,The Headband,2,Kwan,Oh. Is this a new mind ready for molding?,Oh. Is this a new mind ready for molding?,John O'Bryan,Joaquim Dos Santos,8.4 +9264,9264,Fire,3,The Headband,2,Aang,That's right. [Knocking on his head.] Let the molding begin. [The two guards turn away to leave.],That's right. Let the molding begin.,John O'Bryan,Joaquim Dos Santos,8.4 +9265,9265,Fire,3,The Headband,2,Kwan,Wait a minute. [The two guards turn back.] You're not from the Fire Nation. [Walks around Aang.] Clearly you're from the colonies.,Wait a minute. You're not from the Fire Nation. Clearly you're from the colonies.,John O'Bryan,Joaquim Dos Santos,8.4 +9266,9266,Fire,3,The Headband,2,Aang,"Yeah, the colonies, of course. The Fire Nation colonies in the Earth Kingdom. [The two guards walk away.]","Yeah, the colonies, of course. The Fire Nation colonies in the Earth Kingdom.",John O'Bryan,Joaquim Dos Santos,8.4 +9267,9267,Fire,3,The Headband,2,Kwan,"Your etiquette is terrible. In the homeland, we bow to our elders. [Walks in front of her desk.] Like so. [Bows.]","Your etiquette is terrible. In the homeland, we bow to our elders. Like so.",John O'Bryan,Joaquim Dos Santos,8.4 +9268,9268,Fire,3,The Headband,2,Aang,"Sorry, ma'am.","Sorry, ma'am.",John O'Bryan,Joaquim Dos Santos,8.4 +9269,9269,Fire,3,The Headband,2,Scene Description,Bows to her. She taps his hands to correct him. A girl sitting in the front row shows the correct way to bow. Aang bows the proper way this time.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9270,9270,Fire,3,The Headband,2,Kwan,And we don't wear head coverings indoors.,And we don't wear head coverings indoors.,John O'Bryan,Joaquim Dos Santos,8.4 +9271,9271,Fire,3,The Headband,2,Aang,Um ... I have a scar. It's really embarrassing.,Um ... I have a scar. It's really embarrassing.,John O'Bryan,Joaquim Dos Santos,8.4 +9272,9272,Fire,3,The Headband,2,Kwan,"Very well. What is your name? Or should we just call you ""Mannerless Colony Slob""?","Very well. What is your name? Or should we just call you ""Mannerless Colony Slob""?",John O'Bryan,Joaquim Dos Santos,8.4 +9273,9273,Fire,3,The Headband,2,Aang,"[Chuckles.] Just ""slob"" is fine. Or, uh, Kuzon.","Just ""slob"" is fine. Or, uh, Kuzon.",John O'Bryan,Joaquim Dos Santos,8.4 +9274,9274,Fire,3,The Headband,2,Scene Description,The school bell rings and the students walk out of school. Momo peeks out of Aang's school uniform.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9275,9275,Fire,3,The Headband,2,Aang,"We made it through the day Momo, and it was pretty fun.","We made it through the day Momo, and it was pretty fun.",John O'Bryan,Joaquim Dos Santos,8.4 +9276,9276,Fire,3,The Headband,2,On Ji,[From behind Aang.] Don't let the headmaster catch you with that monkey. [The camera shifts to show her.],Don't let the headmaster catch you with that monkey.,John O'Bryan,Joaquim Dos Santos,8.4 +9277,9277,Fire,3,The Headband,2,Aang,"[Turns around, trying to act innocent.] What monkey?",What monkey?,John O'Bryan,Joaquim Dos Santos,8.4 +9278,9278,Fire,3,The Headband,2,On Ji,"Don't worry, I'm not a tattletale. My name's On Ji. I like your headband, by the way.","Don't worry, I'm not a tattletale. My name's On Ji. I like your headband, by the way.",John O'Bryan,Joaquim Dos Santos,8.4 +9279,9279,Fire,3,The Headband,2,Hide,"[Walks past Aang, slightly bumping him away and puts a hand around On Ji's shoulders.] On Ji, you don't have to baby-sit the new kid.","On Ji, you don't have to baby-sit the new kid.",John O'Bryan,Joaquim Dos Santos,8.4 +9280,9280,Fire,3,The Headband,2,Aang,Wow. [Bows.] You must be one of those popular kids I've been hearing about.,Wow. You must be one of those popular kids I've been hearing about.,John O'Bryan,Joaquim Dos Santos,8.4 +9281,9281,Fire,3,The Headband,2,Hide,"That's right. Now listen, friend. I know you're from the colonies, so I'll say this slowly. [Leans close to Aang, talking slowly.] On Ji is my girlfriend. [Pokes Aang's chest.] Don't forget it.","That's right. Now listen, friend. I know you're from the colonies, so I'll say this slowly. On Ji is my girlfriend. Don't forget it.",John O'Bryan,Joaquim Dos Santos,8.4 +9282,9282,Fire,3,The Headband,2,Scene Description,Momo tries to get out of Aang's shirt and Aang pushes him back in. Aang pushes Momo back as Hide signifies to Aang that he is watching him and begins to leave.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9283,9283,Fire,3,The Headband,2,Aang,[Waving goodbye to On Ji and Hide.] It was nice meeting you.,It was nice meeting you.,John O'Bryan,Joaquim Dos Santos,8.4 +9284,9284,Fire,3,The Headband,2,Shoji,"[Approaches Aang.] I don't believe it, he didn't beat you up. Not even a little.","I don't believe it, he didn't beat you up. Not even a little.",John O'Bryan,Joaquim Dos Santos,8.4 +9285,9285,Fire,3,The Headband,2,Aang,I guess I'm just lucky.,I guess I'm just lucky.,John O'Bryan,Joaquim Dos Santos,8.4 +9286,9286,Fire,3,The Headband,2,Shoji,We were on our way to play hide and explode. You wanna come?,We were on our way to play hide and explode. You wanna come?,John O'Bryan,Joaquim Dos Santos,8.4 +9287,9287,Fire,3,The Headband,2,Aang,I'd love to.,I'd love to.,John O'Bryan,Joaquim Dos Santos,8.4 +9288,9288,Fire,3,The Headband,2,Scene Description,"Shoji, his friends, and Aang all run off to play the game. +Cut to Team Avatar's cave. Aang slides down the hill and enters the cave.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9289,9289,Fire,3,The Headband,2,Katara,[Concernedly.] Where have you been? We've been worried sick.,Where have you been? We've been worried sick.,John O'Bryan,Joaquim Dos Santos,8.4 +9290,9290,Fire,3,The Headband,2,Aang,[Undoing his headband.] I got invited to play with some kids after school.,I got invited to play with some kids after school.,John O'Bryan,Joaquim Dos Santos,8.4 +9291,9291,Fire,3,The Headband,2,Sokka,[Springs up to his feet in shock.] After what?!,After what?!,John O'Bryan,Joaquim Dos Santos,8.4 +9292,9292,Fire,3,The Headband,2,Aang,"I enrolled in a Fire Nation school, and I'm going back tomorrow.","I enrolled in a Fire Nation school, and I'm going back tomorrow.",John O'Bryan,Joaquim Dos Santos,8.4 +9293,9293,Fire,3,The Headband,2,Sokka,[With an exasperated facial expression.] Enrolled in what?! [Falls backward in disbelief.],Enrolled in what?!,John O'Bryan,Joaquim Dos Santos,8.4 +9294,9294,Fire,3,The Headband,2,Scene Description,"Cut to an outside-view of the Capital City Prison. Cut to inside, where Zuko walks through the halls and the guard is alerted to his presence.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9295,9295,Fire,3,The Headband,2,Guard,"[Readies his spear, with it pointed directly at Zuko.] You again? Stop where you are! [Zuko raises his head, looking at the guard.] Prince Zuko ...",You again? Stop where you are! Prince Zuko ...,John O'Bryan,Joaquim Dos Santos,8.4 +9296,9296,Fire,3,The Headband,2,Scene Description,Zuko grabs the guard by his collar and slams him against the wall.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9297,9297,Fire,3,The Headband,2,Zuko,"I'm going in for a visit. You're going to stand guard here, and no one is going to know about this. [Zuko releases the guard, enters Iroh's cell, and approaches him.] Uncle, it's me. [Iroh, sitting on the floor, turns away from Zuko with a scowl on his face.]","I'm going in for a visit. You're going to stand guard here, and no one is going to know about this. Uncle, it's me.",John O'Bryan,Joaquim Dos Santos,8.4 +9298,9298,Fire,3,The Headband,2,Scene Description,The scene cuts back to show the team inside the cave sitting around a fire.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9299,9299,Fire,3,The Headband,2,Sokka,"Aang, I'm trying to be mature and not immediately shoot down your idea, but it sounds ... really terrible.","Aang, I'm trying to be mature and not immediately shoot down your idea, but it sounds ... really terrible.",John O'Bryan,Joaquim Dos Santos,8.4 +9300,9300,Fire,3,The Headband,2,Toph,"Yeah, we got our outfits. What do you need to go to school for?","Yeah, we got our outfits. What do you need to go to school for?",John O'Bryan,Joaquim Dos Santos,8.4 +9301,9301,Fire,3,The Headband,2,Aang,"Every minute I'm in that classroom, I'm learning new things about the Fire Nation. I already have a picture of Fire Lord Ozai. [Holds up the picture.] And here's one that I made out of noodles! [Holds up his picture of Ozai.]","Every minute I'm in that classroom, I'm learning new things about the Fire Nation. I already have a picture of Fire Lord Ozai. And here's one that I made out of noodles!",John O'Bryan,Joaquim Dos Santos,8.4 +9302,9302,Fire,3,The Headband,2,Sokka,"Impressive, I admit, but I still think it's too dangerous.","Impressive, I admit, but I still think it's too dangerous.",John O'Bryan,Joaquim Dos Santos,8.4 +9303,9303,Fire,3,The Headband,2,Aang,I guess we'll never find out about the secret river then. It goes right to the Fire Lord's palace. We were supposed to learn about it in class tomorrow.,I guess we'll never find out about the secret river then. It goes right to the Fire Lord's palace. We were supposed to learn about it in class tomorrow.,John O'Bryan,Joaquim Dos Santos,8.4 +9304,9304,Fire,3,The Headband,2,Sokka,"Hmm, I am a fan of secret rivers ... fine, let's stay a few more days.","Hmm, I am a fan of secret rivers ... fine, let's stay a few more days.",John O'Bryan,Joaquim Dos Santos,8.4 +9305,9305,Fire,3,The Headband,2,Aang,"Flamey-o, hotman! [Runs off.]","Flamey-o, hotman!",John O'Bryan,Joaquim Dos Santos,8.4 +9306,9306,Fire,3,The Headband,2,Sokka,[To Katara.] Flamey-o?,Flamey-o?,John O'Bryan,Joaquim Dos Santos,8.4 +9307,9307,Fire,3,The Headband,2,Scene Description,"Katara shrugs and murmurs as if to say ""I don't know."" Cut to the prison. Zuko is standing inside Iroh's cell.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9308,9308,Fire,3,The Headband,2,Zuko,"You brought this on yourself you know. We could have returned together. You could have been a hero! [Iroh shifts but does not look at him.] You have no right to judge me, Uncle. I did what I had to do in Ba Sing Se, and you're a fool for not joining me. [Iroh continues ignoring him.] You're not going to say anything? [Kicks up a small stool and destroys it with firebending.] You're a crazy old man! You're crazy! And if you weren't in jail, you'd be sleeping in a gutter! [Zuko leaves, slamming the door behind him as Iroh's head drops slightly and he closes his eyes.]","You brought this on yourself you know. We could have returned together. You could have been a hero! You have no right to judge me, Uncle. I did what I had to do in Ba Sing Se, and you're a fool for not joining me. You're not going to say anything? You're a crazy old man! You're crazy! And if you weren't in jail, you'd be sleeping in a gutter!",John O'Bryan,Joaquim Dos Santos,8.4 +9309,9309,Fire,3,The Headband,2,Scene Description,"The scene cuts to show the classroom with the class assembled inside. Kwan walks in, and the class collectively rises to bow.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9310,9310,Fire,3,The Headband,2,Kwan,Good morning class. Recite the Fire Nation oath. [Sits down at her desk.],Good morning class. Recite the Fire Nation oath.,John O'Bryan,Joaquim Dos Santos,8.4 +9311,9311,Fire,3,The Headband,2,Scene Description,The class turns to face a large painting of Ozai.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9312,9312,Fire,3,The Headband,2,Class,"[Turns to a large painting of Ozai at the back of the class.] My life I give to my country, with my hands I fight for Fire Lord Ozai and our forefathers before him.","My life I give to my country, with my hands I fight for Fire Lord Ozai and our forefathers before him.",John O'Bryan,Joaquim Dos Santos,8.4 +9313,9313,Fire,3,The Headband,2,Aang,[Glances around the room as the class recites the oath.] Fire Lord ... forefathers ...,Fire Lord ... forefathers ...,John O'Bryan,Joaquim Dos Santos,8.4 +9314,9314,Fire,3,The Headband,2,Class,"With my mind I seek ways to better my country, and with my feet may our March of Civilization continue.","With my mind I seek ways to better my country, and with my feet may our March of Civilization continue.",John O'Bryan,Joaquim Dos Santos,8.4 +9315,9315,Fire,3,The Headband,2,Aang,"Firebenders ... Fire Lord ... wah, bah, blah, blah. [The class snickers at him as they sit down as the teacher looks on with a stern expression.]","Firebenders ... Fire Lord ... wah, bah, blah, blah.",John O'Bryan,Joaquim Dos Santos,8.4 +9316,9316,Fire,3,The Headband,2,Kwan,"Since it's obviously hilarious to mock our national oath, we'll begin with a pop quiz on our great March of Civilization. [The class groans and picks up their pens.] Question one: What year did Fire Lord Sozin battle the Air Nation army? [Aang raises his hand.] Kuzon?","Since it's obviously hilarious to mock our national oath, we'll begin with a pop quiz on our great March of Civilization. Question one: What year did Fire Lord Sozin battle the Air Nation army? Kuzon?",John O'Bryan,Joaquim Dos Santos,8.4 +9317,9317,Fire,3,The Headband,2,Aang,"Is that a trick question? The Air Nomads didn't have a formal military. Sozin defeated them by ambush. [The entire class stares at him, dumbfounded.]",Is that a trick question? The Air Nomads didn't have a formal military. Sozin defeated them by ambush.,John O'Bryan,Joaquim Dos Santos,8.4 +9318,9318,Fire,3,The Headband,2,Kwan,"Well, I don't know how you could possibly know more than our national history book. Unless you were there a hundred years ago.","Well, I don't know how you could possibly know more than our national history book. Unless you were there a hundred years ago.",John O'Bryan,Joaquim Dos Santos,8.4 +9319,9319,Fire,3,The Headband,2,Aang,I'll just write down my best guess.,I'll just write down my best guess.,John O'Bryan,Joaquim Dos Santos,8.4 +9320,9320,Fire,3,The Headband,2,Scene Description,"The camera fades to show the music teacher standing at a podium with the rest of the class before him, playing instruments. Aang plays loudly in very discordant notes while moving dancing while sitting.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9321,9321,Fire,3,The Headband,2,Music teacher,Kuzon?,Kuzon?,John O'Bryan,Joaquim Dos Santos,8.4 +9322,9322,Fire,3,The Headband,2,Aang,"[Stopping.] I know, I'm a terrible tsungi hornist.","I know, I'm a terrible tsungi hornist.",John O'Bryan,Joaquim Dos Santos,8.4 +9323,9323,Fire,3,The Headband,2,Music teacher,"No, child. That hullabaloo going on with your feet. Is that a nervous disorder?","No, child. That hullabaloo going on with your feet. Is that a nervous disorder?",John O'Bryan,Joaquim Dos Santos,8.4 +9324,9324,Fire,3,The Headband,2,Aang,"I was just dancing. You do dances here in the homeland, right?","I was just dancing. You do dances here in the homeland, right?",John O'Bryan,Joaquim Dos Santos,8.4 +9325,9325,Fire,3,The Headband,2,Shoji,"Not really, no.","Not really, no.",John O'Bryan,Joaquim Dos Santos,8.4 +9326,9326,Fire,3,The Headband,2,Music teacher,Dancing is not conducive to a proper learning environment. Young people must have rigid discipline and order.,Dancing is not conducive to a proper learning environment. Young people must have rigid discipline and order.,John O'Bryan,Joaquim Dos Santos,8.4 +9327,9327,Fire,3,The Headband,2,Aang,But what about expressing yourself?,But what about expressing yourself?,John O'Bryan,Joaquim Dos Santos,8.4 +9328,9328,Fire,3,The Headband,2,Music teacher,"I know sometimes we're so ruled by our love for our nation that we can't control our own bodies. [He puts his hand to his face at what he is saying before continuing on.] If you must, you may march in place quietly next time the urge hits you.","I know sometimes we're so ruled by our love for our nation that we can't control our own bodies. If you must, you may march in place quietly next time the urge hits you.",John O'Bryan,Joaquim Dos Santos,8.4 +9329,9329,Fire,3,The Headband,2,Scene Description,"He settles back down to the podium and the class resumes playing. Aang plays a few notes. marching in place, and stops, looking very dismayed at this. Cut to the school yard. Aang is walking through it, and all the other students stop and stare at him, murmuring among themselves.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9330,9330,Fire,3,The Headband,2,On Ji,"[Waves at Aang.] Uh, hi, Kuzon. I really liked that crazy dance you were doing.","Uh, hi, Kuzon. I really liked that crazy dance you were doing.",John O'Bryan,Joaquim Dos Santos,8.4 +9331,9331,Fire,3,The Headband,2,Aang,Thanks On Ji. I could show it to you again if you like. Ah! [He jumps as a blast of fire hits the ground at his feet.],Thanks On Ji. I could show it to you again if you like. Ah!,John O'Bryan,Joaquim Dos Santos,8.4 +9332,9332,Fire,3,The Headband,2,Hide,"What'd you say, colony trash? You're gonna show her something?","What'd you say, colony trash? You're gonna show her something?",John O'Bryan,Joaquim Dos Santos,8.4 +9333,9333,Fire,3,The Headband,2,Aang,[Nervously.] Just some dance movements.,Just some dance movements.,John O'Bryan,Joaquim Dos Santos,8.4 +9334,9334,Fire,3,The Headband,2,Hide,"Nobody shows my On Ji anything, especially movements!","Nobody shows my On Ji anything, especially movements!",John O'Bryan,Joaquim Dos Santos,8.4 +9335,9335,Fire,3,The Headband,2,Scene Description,"Hide attempts to strike Aang, but Aang easily steps out of the way. The other students gather around to watch. Hide continues trying to punch at Aang, but he continuously evades with ease, much to Hide's frustration. Aang gets behind Hide's back and moves to the side to match Hide's movements. Aang knocks back Hide by butting him. Hide tries to strike Aang two more times, but Aang slides behind Hide through his legs. Hide tries punching Aang two more times and falls down as Aang side steps and trips him. The Headmaster arrives, and Hide sniffles as he gets up to his knees. He is seen with tears in his eyes as the Headmaster talks.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9336,9336,Fire,3,The Headband,2,Headmaster,[Angrily.] Picking fights on your second day? We need to have a conference to discuss your punishment. Bring your parents to my office after school.,Picking fights on your second day? We need to have a conference to discuss your punishment. Bring your parents to my office after school.,John O'Bryan,Joaquim Dos Santos,8.4 +9337,9337,Fire,3,The Headband,2,Aang,[Worriedly.] Parents? But-,Parents? But-,John O'Bryan,Joaquim Dos Santos,8.4 +9338,9338,Fire,3,The Headband,2,Headmaster,Don't be late!,Don't be late!,John O'Bryan,Joaquim Dos Santos,8.4 +9339,9339,Fire,3,The Headband,2,Scene Description,"The Headmaster walks off and Hide smirks behind his back. Cut to a picture of Ozai, and the camera pans to show the Headmaster sitting at his office.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9340,9340,Fire,3,The Headband,2,Headmaster,"Thank you for coming, Mr. and Mrs ... [Shot changes to show Sokka and Katara in disguise with Aang sitting between them.]","Thank you for coming, Mr. and Mrs ...",John O'Bryan,Joaquim Dos Santos,8.4 +9341,9341,Fire,3,The Headband,2,Sokka,"Fire. Wang Fire. [Pointing to Katara.] This is my wife, Sapphire.","Fire. Wang Fire. This is my wife, Sapphire.",John O'Bryan,Joaquim Dos Santos,8.4 +9342,9342,Fire,3,The Headband,2,Katara,Sapphire Fire. Nice to meet you.,Sapphire Fire. Nice to meet you.,John O'Bryan,Joaquim Dos Santos,8.4 +9343,9343,Fire,3,The Headband,2,Headmaster,"Mr. and Mrs ... Fire, your son has been enrolled here for two days and he's already causing problems. He's argued with his history teacher, disrupted music class, and roughed up my star pupil.","Mr. and Mrs ... Fire, your son has been enrolled here for two days and he's already causing problems. He's argued with his history teacher, disrupted music class, and roughed up my star pupil.",John O'Bryan,Joaquim Dos Santos,8.4 +9344,9344,Fire,3,The Headband,2,Katara,My goodness! That doesn't sound like our Kuzon.,My goodness! That doesn't sound like our Kuzon.,John O'Bryan,Joaquim Dos Santos,8.4 +9345,9345,Fire,3,The Headband,2,Headmaster,"That's what any mother would say, Ma'am. Nonetheless, you're forewarned; if he acts up one more time, I'll have him sent to reform school- [Stands up.] by which I mean the coal mines. Are we clear?","That's what any mother would say, Ma'am. Nonetheless, you're forewarned; if he acts up one more time, I'll have him sent to reform school- by which I mean the coal mines. Are we clear?",John O'Bryan,Joaquim Dos Santos,8.4 +9346,9346,Fire,3,The Headband,2,Sokka,"Don't you worry, Mr. Headmaster. I'll straighten this boy out somethin' fierce! [Turns to Aang.] Young man, as soon as we get home you're gonna get the punishment of a lifetime! [Aang and Katara are visibly alarmed.]","Don't you worry, Mr. Headmaster. I'll straighten this boy out somethin' fierce! Young man, as soon as we get home you're gonna get the punishment of a lifetime!",John O'Bryan,Joaquim Dos Santos,8.4 +9347,9347,Fire,3,The Headband,2,Headmaster,That's what I like to hear.,That's what I like to hear.,John O'Bryan,Joaquim Dos Santos,8.4 +9348,9348,Fire,3,The Headband,2,Scene Description,"They turn to leave, and the scene cuts to show Zuko and Mai sitting on a cliff side together, watching the sunset.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9349,9349,Fire,3,The Headband,2,Mai,Orange is such an awful color.,Orange is such an awful color.,John O'Bryan,Joaquim Dos Santos,8.4 +9350,9350,Fire,3,The Headband,2,Zuko,[Snickers.] You're so beautiful when you hate the world.,You're so beautiful when you hate the world.,John O'Bryan,Joaquim Dos Santos,8.4 +9351,9351,Fire,3,The Headband,2,Mai,I don't hate you.,I don't hate you.,John O'Bryan,Joaquim Dos Santos,8.4 +9352,9352,Fire,3,The Headband,2,Zuko,"I don't hate you too. [They kiss, but are interrupted by Azula.]",I don't hate you too.,John O'Bryan,Joaquim Dos Santos,8.4 +9353,9353,Fire,3,The Headband,2,Azula,"Ahem. [They turn to look at her, clearly annoyed.] Zuko, could I have a word with you?","Ahem. Zuko, could I have a word with you?",John O'Bryan,Joaquim Dos Santos,8.4 +9354,9354,Fire,3,The Headband,2,Zuko,Can't you see we're busy? [They kiss again.],Can't you see we're busy?,John O'Bryan,Joaquim Dos Santos,8.4 +9355,9355,Fire,3,The Headband,2,Azula,"Oh Mai, Ty Lee need your help untangling her braid.","Oh Mai, Ty Lee need your help untangling her braid.",John O'Bryan,Joaquim Dos Santos,8.4 +9356,9356,Fire,3,The Headband,2,Mai,"[Stands up.] Sounds pretty serious. [Leaves, but throws an angry glance at Azula behind her back.]",Sounds pretty serious.,John O'Bryan,Joaquim Dos Santos,8.4 +9357,9357,Fire,3,The Headband,2,Azula,"So, I've heard you've been to visit your uncle fatso in the prison tower.","So, I've heard you've been to visit your uncle fatso in the prison tower.",John O'Bryan,Joaquim Dos Santos,8.4 +9358,9358,Fire,3,The Headband,2,Zuko,[Standing angrily.] That guard told you.,That guard told you.,John O'Bryan,Joaquim Dos Santos,8.4 +9359,9359,Fire,3,The Headband,2,Azula,No. You did. Just now.,No. You did. Just now.,John O'Bryan,Joaquim Dos Santos,8.4 +9360,9360,Fire,3,The Headband,2,Zuko,"[Sits back down.] Okay, you caught me. What is it that you want Azula?","Okay, you caught me. What is it that you want Azula?",John O'Bryan,Joaquim Dos Santos,8.4 +9361,9361,Fire,3,The Headband,2,Azula,"Actually, nothing. Believe it or not, I'm looking out for you. If people find out you've been to see Uncle, they'll think you're plotting with him. Just be careful, Dum-Dum.","Actually, nothing. Believe it or not, I'm looking out for you. If people find out you've been to see Uncle, they'll think you're plotting with him. Just be careful, Dum-Dum.",John O'Bryan,Joaquim Dos Santos,8.4 +9362,9362,Fire,3,The Headband,2,Scene Description,"Cuts to the cave where the Team is gathered. Momo attempts to pounce on birds, but he misses and they scatter.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9363,9363,Fire,3,The Headband,2,Sokka,"[Frontal shot.] That settles it! No more school for you, young man! [Strokes his beard.]","That settles it! No more school for you, young man!",John O'Bryan,Joaquim Dos Santos,8.4 +9364,9364,Fire,3,The Headband,2,Aang,"I'm not ready to leave yet. I'm having fun for once, just being a normal kid. You don't know what it's like, Sokka. You get to be normal all the time.","I'm not ready to leave yet. I'm having fun for once, just being a normal kid. You don't know what it's like, Sokka. You get to be normal all the time.",John O'Bryan,Joaquim Dos Santos,8.4 +9365,9365,Fire,3,The Headband,2,Toph,Ha ha! [Sokka glares at her.],Ha ha!,John O'Bryan,Joaquim Dos Santos,8.4 +9366,9366,Fire,3,The Headband,2,Aang,"Listen guys, those kids at school are the future of the Fire Nation. If we want to change this place for the better, we need to show them a little taste of freedom.","Listen guys, those kids at school are the future of the Fire Nation. If we want to change this place for the better, we need to show them a little taste of freedom.",John O'Bryan,Joaquim Dos Santos,8.4 +9367,9367,Fire,3,The Headband,2,Sokka,What could you possibly do for a country of depraved little fire monsters?,What could you possibly do for a country of depraved little fire monsters?,John O'Bryan,Joaquim Dos Santos,8.4 +9368,9368,Fire,3,The Headband,2,Aang,"I'm gonna throw them, [Starts dancing.] a secret dance party! [Everybody stares at Aang.]","I'm gonna throw them, a secret dance party!",John O'Bryan,Joaquim Dos Santos,8.4 +9369,9369,Fire,3,The Headband,2,Sokka,[In Wang Fire voice.] Go to your room!,Go to your room!,John O'Bryan,Joaquim Dos Santos,8.4 +9370,9370,Fire,3,The Headband,2,Scene Description,Cut to the cave with candles on the sides. Toph earthbends a stage. Aang puts on his headband.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9371,9371,Fire,3,The Headband,2,Sokka,[Placing a candle.] I can't believe we're having a dance party. It seems so ... silly.,I can't believe we're having a dance party. It seems so ... silly.,John O'Bryan,Joaquim Dos Santos,8.4 +9372,9372,Fire,3,The Headband,2,Aang,"Don't think of it as a dance party, but as a cultural event celebrating the art of fancy footwork! [Dances.]","Don't think of it as a dance party, but as a cultural event celebrating the art of fancy footwork!",John O'Bryan,Joaquim Dos Santos,8.4 +9373,9373,Fire,3,The Headband,2,Scene Description,Cut to a shot outside we see many pairs of feet as the guests arrive. Cut back to Toph.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9374,9374,Fire,3,The Headband,2,Toph,[Feeling their approach.] They're coming! Everyone stop bending.,They're coming! Everyone stop bending.,John O'Bryan,Joaquim Dos Santos,8.4 +9375,9375,Fire,3,The Headband,2,Aang,"[To Appa.] Sorry buddy, you should probably wait out back. [Appa grumbles as Aang herds him into the back.] I know, you got fancier feet than anybody. And six of 'em!","Sorry buddy, you should probably wait out back. I know, you got fancier feet than anybody. And six of 'em!",John O'Bryan,Joaquim Dos Santos,8.4 +9376,9376,Fire,3,The Headband,2,Scene Description,Cut to several kids playing instruments on the earth platforms as the guests filter into the room.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9377,9377,Fire,3,The Headband,2,Aang,"[Jumps in front of the stage.] Ladies and gentlemen, the Flamey-O's! Yeah, this ought to get everybody moving. [He looks around at the kids standing shyly at the edge of the cave.]","Ladies and gentlemen, the Flamey-O's! Yeah, this ought to get everybody moving.",John O'Bryan,Joaquim Dos Santos,8.4 +9378,9378,Fire,3,The Headband,2,Shoji,Now what do we do?,Now what do we do?,John O'Bryan,Joaquim Dos Santos,8.4 +9379,9379,Fire,3,The Headband,2,Aang,This is when you start dancing.,This is when you start dancing.,John O'Bryan,Joaquim Dos Santos,8.4 +9380,9380,Fire,3,The Headband,2,Male student #1,I don't think my parents want me dancing in a cave ...,I don't think my parents want me dancing in a cave ...,John O'Bryan,Joaquim Dos Santos,8.4 +9381,9381,Fire,3,The Headband,2,Male student #2,[Runs in front of the camera.] Yeah! What if someone finds out?! [Looks around nervously before exiting left.],Yeah! What if someone finds out?!,John O'Bryan,Joaquim Dos Santos,8.4 +9382,9382,Fire,3,The Headband,2,Aang,"Oh boy. Listen guys, dancing isn't something you think about. It's a form of self-expression that no one can ever take away from you.","Oh boy. Listen guys, dancing isn't something you think about. It's a form of self-expression that no one can ever take away from you.",John O'Bryan,Joaquim Dos Santos,8.4 +9383,9383,Fire,3,The Headband,2,Shoji,"Maybe it was different in the colonies, Kuzon, but we don't do that here.","Maybe it was different in the colonies, Kuzon, but we don't do that here.",John O'Bryan,Joaquim Dos Santos,8.4 +9384,9384,Fire,3,The Headband,2,Aang,"Sure you do, you have for generations! It just so happens that I know several classic Fire Nation dances. A hundred years ago, this was known as the 'Phoenix Flight'. [The students ooh and aah as Aang runs low to the ground.] And, this was the 'Camelephant Strut'.","Sure you do, you have for generations! It just so happens that I know several classic Fire Nation dances. A hundred years ago, this was known as the 'Phoenix Flight'. And, this was the 'Camelephant Strut'.",John O'Bryan,Joaquim Dos Santos,8.4 +9385,9385,Fire,3,The Headband,2,Scene Description,"Aang jumps from side to side and does a rolls close to two nearby girls as they giggle. Aang finishes the dance with a back flip, landing on one foot. The boys stare in awe at Aang. Cut to Toph and Katara, who drink out of ice cups.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9386,9386,Fire,3,The Headband,2,Toph,[To Katara.] Who knew Twinkle Toes could dance?,Who knew Twinkle Toes could dance?,John O'Bryan,Joaquim Dos Santos,8.4 +9387,9387,Fire,3,The Headband,2,Scene Description,Katara smiles. Cut to Zuko back into Iroh's cell.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9388,9388,Fire,3,The Headband,2,Zuko,"[Sliding food into Iroh's cell as Iroh keeps his back to him.] I brought you some komodo chicken. I know you don't care for it, but I figure it beats prison food. I admit it, I have everything I always wanted, but it's not as all how I thought it would be. The truth is, I need your advice. [Grips the bars.] I think the Avatar is still alive, I know he's out there, I'm losing my mind. [Desperately.] Please, Uncle, I'm so confused I need your help. [Angrily.] Forget it, I'll solve it myself! Waste away in here for all I care! [He glances back before leaving, and a tear slides down Iroh's face.]","I brought you some komodo chicken. I know you don't care for it, but I figure it beats prison food. I admit it, I have everything I always wanted, but it's not as all how I thought it would be. The truth is, I need your advice. I think the Avatar is still alive, I know he's out there, I'm losing my mind. Please, Uncle, I'm so confused I need your help. Forget it, I'll solve it myself! Waste away in here for all I care!",John O'Bryan,Joaquim Dos Santos,8.4 +9389,9389,Fire,3,The Headband,2,Scene Description,"Cut back to the cave, where Aang is still dancing, spinning through the air. Aang offers his hand to On Ji, who blushes and accepts. He pulls her to the middle of the room.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9390,9390,Fire,3,The Headband,2,Aang,And this is how they do it in the ballrooms of Ba Sing Se. [He starts tapping his feet from side to side and On Ji joins him.],And this is how they do it in the ballrooms of Ba Sing Se.,John O'Bryan,Joaquim Dos Santos,8.4 +9391,9391,Fire,3,The Headband,2,Sokka,"[Watching as Aang dances with On Ji.] Wow, they look pretty good together.","Wow, they look pretty good together.",John O'Bryan,Joaquim Dos Santos,8.4 +9392,9392,Fire,3,The Headband,2,Katara,"[Barely hiding her envy as she looks away.] Eh, if that's what you like ... [She looks back surreptitiously.]","Eh, if that's what you like ...",John O'Bryan,Joaquim Dos Santos,8.4 +9393,9393,Fire,3,The Headband,2,Aang,"Yeah, that's it! That's the sound of happy feet. [The rest of the kids start dancing with them.] All right, go with that! Everybody freestyle!","Yeah, that's it! That's the sound of happy feet. All right, go with that! Everybody freestyle!",John O'Bryan,Joaquim Dos Santos,8.4 +9394,9394,Fire,3,The Headband,2,Scene Description,"One student dances crazily. Another student, standing amid a group of non-dancers, starts moving his arms and Shoji sways his head with the rhythm. Aang runs over to Katara and holds his hand out to her, inviting her to dance.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9395,9395,Fire,3,The Headband,2,Katara,"[Looks away nervously.] I don't know, Aang. These shoes aren't really right for dancing, and I-I'm not sure that I know how to-","I don't know, Aang. These shoes aren't really right for dancing, and I-I'm not sure that I know how to-",John O'Bryan,Joaquim Dos Santos,8.4 +9396,9396,Fire,3,The Headband,2,Aang,[Smiling.] Take my hand.,Take my hand.,John O'Bryan,Joaquim Dos Santos,8.4 +9397,9397,Fire,3,The Headband,2,Katara,[Smiles back'.] Okay.,Okay.,John O'Bryan,Joaquim Dos Santos,8.4 +9398,9398,Fire,3,The Headband,2,Scene Description,"He pulls her out into the room and whispers into her ear, and everybody stops to stare at them as the two extend their arms to each other and begin circling each other and performing dance moves.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9399,9399,Fire,3,The Headband,2,Katara,"Aang, everyone's watching.","Aang, everyone's watching.",John O'Bryan,Joaquim Dos Santos,8.4 +9400,9400,Fire,3,The Headband,2,Aang,Don't worry about them. It's just you and me right now.,Don't worry about them. It's just you and me right now.,John O'Bryan,Joaquim Dos Santos,8.4 +9401,9401,Fire,3,The Headband,2,Scene Description,"Katara blushes as they began to move around each other in an elaborate dance. The dance incorporates different moves including kicks and flips. At one point they come close together as if they are about to kiss, both just smile and continue on. Aang finishes the dance by catching Katara as she leans over his arm. Cut to a close-up view of them smiling at each other as they pant and sweat. The camera cuts to show the Headmaster and several soldiers coming to the cave.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9402,9402,Fire,3,The Headband,2,Headmaster,"It is a dancing party. [Turns to Hide standing behind him.] You did the right thing by telling me, Hide.","It is a dancing party. You did the right thing by telling me, Hide.",John O'Bryan,Joaquim Dos Santos,8.4 +9403,9403,Fire,3,The Headband,2,Hide,"[Bows.] Anytime, Headmaster sir.","Anytime, Headmaster sir.",John O'Bryan,Joaquim Dos Santos,8.4 +9404,9404,Fire,3,The Headband,2,Scene Description,The camera cuts back to the dancing kids.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9405,9405,Fire,3,The Headband,2,Male student #1,"[Waving a hand in the air.] This is incredible! It's like my inhibitions just disappear! [He sees the Headmaster come into the cave, and immediately stops dancing and attempts to shrink into his robes.] Okay, they're back again.","This is incredible! It's like my inhibitions just disappear! Okay, they're back again.",John O'Bryan,Joaquim Dos Santos,8.4 +9406,9406,Fire,3,The Headband,2,Scene Description,Aang continues to dance past as everyone else stops until the Headmaster talks.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9407,9407,Fire,3,The Headband,2,Headmaster,[Pointing.] He's the one we want! The boy with the headband!,He's the one we want! The boy with the headband!,John O'Bryan,Joaquim Dos Santos,8.4 +9408,9408,Fire,3,The Headband,2,Aang,"Uh-oh. [Aang starts running away through the crowd as the soldiers chase him. One soldier sees a boy with a headband, and grabs him.]",Uh-oh.,John O'Bryan,Joaquim Dos Santos,8.4 +9409,9409,Fire,3,The Headband,2,Male soldier #1,"Gotcha! [The boy turns, but the guard is confused upon seeing a different boy there.]",Gotcha!,John O'Bryan,Joaquim Dos Santos,8.4 +9410,9410,Fire,3,The Headband,2,Shoji,Looking for me?,Looking for me?,John O'Bryan,Joaquim Dos Santos,8.4 +9411,9411,Fire,3,The Headband,2,Scene Description,Cut to the Headmaster and Hide.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9412,9412,Fire,3,The Headband,2,Headmaster,That's not the one. He's here somewhere. Don't let him leave the cave!,That's not the one. He's here somewhere. Don't let him leave the cave!,John O'Bryan,Joaquim Dos Santos,8.4 +9413,9413,Fire,3,The Headband,2,Scene Description,"The Headmaster points toward the back of the cave, Hide imitating him. Cut to two soldiers who continue searching. One soldier sees another kid with a headband, and turns her around. He is again confused upon seeing her face.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9414,9414,Fire,3,The Headband,2,On Ji,Yes?,Yes?,John O'Bryan,Joaquim Dos Santos,8.4 +9415,9415,Fire,3,The Headband,2,Scene Description,Another soldier sees two more children standing next to each other with headbands and turns them both around.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9416,9416,Fire,3,The Headband,2,Male student #2,[Picking his nose.] Hi there.,Hi there.,John O'Bryan,Joaquim Dos Santos,8.4 +9417,9417,Fire,3,The Headband,2,Male student #1,How're we doing?,How're we doing?,John O'Bryan,Joaquim Dos Santos,8.4 +9418,9418,Fire,3,The Headband,2,Scene Description,"The Headmaster sees who he thinks is Aang in the crowd, and goes after him himself. Shoving people out of the way, he scoops up the boy in the crowd.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9419,9419,Fire,3,The Headband,2,Female student #1,Looking for someone?,Looking for someone?,John O'Bryan,Joaquim Dos Santos,8.4 +9420,9420,Fire,3,The Headband,2,Scene Description,The Headmaster looks around in horror as he sees all the children are now wearing headbands.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9421,9421,Fire,3,The Headband,2,On Ji,Who are you looking for?,Who are you looking for?,John O'Bryan,Joaquim Dos Santos,8.4 +9422,9422,Fire,3,The Headband,2,Female Student #1,Do you need something?,Do you need something?,John O'Bryan,Joaquim Dos Santos,8.4 +9423,9423,Fire,3,The Headband,2,Student,Over here.,Over here.,John O'Bryan,Joaquim Dos Santos,8.4 +9424,9424,Fire,3,The Headband,2,Scene Description,"The students completely surround the soldiers and the Headmaster as Aang escapes through the back of the cave. Shoji winks at Aang, who bows in return. Aang leaves and earthbends the back of the cave shut, at which Shoji drops his jaw in astonishment.",NA,John O'Bryan,Joaquim Dos Santos,8.4 +9425,9425,Fire,3,The Headband,2,Scene Description,Cut to the Headmaster surrounded by guards where two of them have started dancing.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9426,9426,Fire,3,The Headband,2,Headmaster,"[To one of the soldiers, who starts dancing.] Stop that! [To another soldier, who is tapping her foot.] Stop that!",Stop that! Stop that!,John O'Bryan,Joaquim Dos Santos,8.4 +9427,9427,Fire,3,The Headband,2,Scene Description,Cut to outside the cave where the team flies away on Appa.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9428,9428,Fire,3,The Headband,2,Katara,"We're safe Sokka, you can take off the mustache now.","We're safe Sokka, you can take off the mustache now.",John O'Bryan,Joaquim Dos Santos,8.4 +9429,9429,Fire,3,The Headband,2,Sokka,"[He is seen with his Wang Fire mustache on and begins stroking it.] Oh, no I can't. It's permanently glued to my skin.","Oh, no I can't. It's permanently glued to my skin.",John O'Bryan,Joaquim Dos Santos,8.4 +9430,9430,Fire,3,The Headband,2,Toph,"[To Aang.] Way to go, dancy pants. I think you really did help those kids, you taught them to be free.","Way to go, dancy pants. I think you really did help those kids, you taught them to be free.",John O'Bryan,Joaquim Dos Santos,8.4 +9431,9431,Fire,3,The Headband,2,Aang,"I don't know, it was just a dance party, that's all.","I don't know, it was just a dance party, that's all.",John O'Bryan,Joaquim Dos Santos,8.4 +9432,9432,Fire,3,The Headband,2,Katara,"Well, that was some dance party Aang. [She kisses him on the cheek, and Aang blushes.]","Well, that was some dance party Aang.",John O'Bryan,Joaquim Dos Santos,8.4 +9433,9433,Fire,3,The Headband,2,Sokka,"[Clapping lightly.] Flamey-o sir, flamey-o.","Flamey-o sir, flamey-o.",John O'Bryan,Joaquim Dos Santos,8.4 +9434,9434,Fire,3,The Headband,2,Scene Description,Cut to Zuko walking alone in a dark alley. He lowers his hood as a huge man with a metal leg approaches him.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9435,9435,Fire,3,The Headband,2,Zuko,"You're sure you weren't followed? I've heard about you. They say you're good at what you do, and even better at keeping secrets. The Avatar is alive. I want you to find him, and end him.","You're sure you weren't followed? I've heard about you. They say you're good at what you do, and even better at keeping secrets. The Avatar is alive. I want you to find him, and end him.",John O'Bryan,Joaquim Dos Santos,8.4 +9436,9436,Fire,3,The Headband,2,Scene Description,The man's face is shown. The camera zooms in on a strange third eye tattooed on his forehead. Fade to credits.,NA,John O'Bryan,Joaquim Dos Santos,8.4 +9437,9437,Fire,3,The Painted Lady,3,Scene Description,"The episode opens with Appa, the gang in his saddle, slogging his way down the course of the sludge-infested river Jang Hui in the Fire Nation. Aang and Momo are frolicking in the putrescent water.",NA,Joshua Hamilton,Ethan Spaulding,8 +9438,9438,Fire,3,The Painted Lady,3,Aang,"Momo! [Dives into the water.] Oh Momo! [Dives again and Momo flies to Aang.] Hahahahaha! You found me, buddy! [Looks down at the water in distaste and airbends up to Appa's saddle, where he stands dripping in sludge.] Hey guys, I think this river's polluted. [Airbends mud off himself, splattering the rest of Team Avatar with mud, which causes them to cry out in disgust.]","Momo! Oh Momo! Hahahahaha! You found me, buddy! Hey guys, I think this river's polluted.",Joshua Hamilton,Ethan Spaulding,8 +9439,9439,Fire,3,The Painted Lady,3,Toph,"[Tastes mud on her mouth, and spits.] Pah! Plegh! [Aang airbends again, blowing the rest of the mud back into the river and messing up their hair.]",Pah! Plegh!,Joshua Hamilton,Ethan Spaulding,8 +9440,9440,Fire,3,The Painted Lady,3,Sokka,"Well that explains why I can't catch a fish around here, because normally my fishing skills are off the hook! [Holds up a fishing hook.] Get it? Like a fishing hook? [Grinning.]","Well that explains why I can't catch a fish around here, because normally my fishing skills are off the hook! Get it? Like a fishing hook?",Joshua Hamilton,Ethan Spaulding,8 +9441,9441,Fire,3,The Painted Lady,3,Toph,[Countering.] Too bad your skills aren't on the hook.,Too bad your skills aren't on the hook.,Joshua Hamilton,Ethan Spaulding,8 +9442,9442,Fire,3,The Painted Lady,3,Scene Description,"Toph, Aang, and Katara laugh as Sokka makes a disgruntled face.",NA,Joshua Hamilton,Ethan Spaulding,8 +9443,9443,Fire,3,The Painted Lady,3,Katara,"It looks like we'll need to go somewhere else to get food, [Unrolls a long scroll in front of her.] assuming that'll fit into Sokka's master schedule.","It looks like we'll need to go somewhere else to get food, assuming that'll fit into Sokka's master schedule.",Joshua Hamilton,Ethan Spaulding,8 +9444,9444,Fire,3,The Painted Lady,3,Sokka,Hmmm ... It's doable. But that means only two potty breaks today.,Hmmm ... It's doable. But that means only two potty breaks today.,Joshua Hamilton,Ethan Spaulding,8 +9445,9445,Fire,3,The Painted Lady,3,Aang,"Hey, maybe we can get food there! [Points at a village in the middle of the river.]","Hey, maybe we can get food there!",Joshua Hamilton,Ethan Spaulding,8 +9446,9446,Fire,3,The Painted Lady,3,Scene Description,The camera zooms to the village and fades to Appa as Aang hides him under a mat of grass.,NA,Joshua Hamilton,Ethan Spaulding,8 +9447,9447,Fire,3,The Painted Lady,3,Aang,"Now you look just like a little hill with horns! Bye, buddy!","Now you look just like a little hill with horns! Bye, buddy!",Joshua Hamilton,Ethan Spaulding,8 +9448,9448,Fire,3,The Painted Lady,3,Scene Description,"Appa groans as Momo briefly reveals himself under some more grass nearby. Scene changes to the Jang Hui River, while Toph, Katara, Aang, and Sokka approach the river.",NA,Joshua Hamilton,Ethan Spaulding,8 +9449,9449,Fire,3,The Painted Lady,3,Toph,I don't feel anything. Where is the village?,I don't feel anything. Where is the village?,Joshua Hamilton,Ethan Spaulding,8 +9450,9450,Fire,3,The Painted Lady,3,Sokka,It's in the middle of the river! [Pointing at the village.],It's in the middle of the river!,Joshua Hamilton,Ethan Spaulding,8 +9451,9451,Fire,3,The Painted Lady,3,Scene Description,Camera pans down to show a man standing on a ferry.,NA,Joshua Hamilton,Ethan Spaulding,8 +9452,9452,Fire,3,The Painted Lady,3,Dock,Sure is! My name's Dock. Mind if I ask who you are?,Sure is! My name's Dock. Mind if I ask who you are?,Joshua Hamilton,Ethan Spaulding,8 +9453,9453,Fire,3,The Painted Lady,3,Katara,We're um ... from the Earth Kingdom colonies.,We're um ... from the Earth Kingdom colonies.,Joshua Hamilton,Ethan Spaulding,8 +9454,9454,Fire,3,The Painted Lady,3,Dock,"Wow ... Colonials. Hop on, I give you ride in the town.","Wow ... Colonials. Hop on, I give you ride in the town.",Joshua Hamilton,Ethan Spaulding,8 +9455,9455,Fire,3,The Painted Lady,3,Scene Description,"The scene changes to the river, while Dock paddles the boat across.",NA,Joshua Hamilton,Ethan Spaulding,8 +9456,9456,Fire,3,The Painted Lady,3,Katara,Why do you guys live on the river? [Looking at the village.],Why do you guys live on the river?,Joshua Hamilton,Ethan Spaulding,8 +9457,9457,Fire,3,The Painted Lady,3,Dock,"[Turns his paddle to the right side, pointing at the Fire Nation factory.] Because we're a fishing town. At least that's how it was before the factory moved in. [Closer shot of the Fire Nation factory and pans down.] Army makes their metal there. Moved in a few years ago and started gunking up our river. [Shot changes back to the ferry. Aang and Katara glance sadly at each other.] Now our little village is struggling to survive.",Because we're a fishing town. At least that's how it was before the factory moved in. Army makes their metal there. Moved in a few years ago and started gunking up our river. Now our little village is struggling to survive.,Joshua Hamilton,Ethan Spaulding,8 +9458,9458,Fire,3,The Painted Lady,3,Scene Description,"The camera pans downs to the villagers, showing their conditions of the starving and poor villagers. Team Avatar gets off the ferry boat.",NA,Joshua Hamilton,Ethan Spaulding,8 +9459,9459,Fire,3,The Painted Lady,3,Aang,"Thanks for the ride! [Waves his hand to Dock, who waves back.]",Thanks for the ride!,Joshua Hamilton,Ethan Spaulding,8 +9460,9460,Fire,3,The Painted Lady,3,Katara,"[Cut to three villagers sitting on a porch.] Look at this place. [Cut to two other villagers, an old man and a young boy.] It's so sad. [Cut back to Katara looking down.] We have to do something to help.",Look at this place. It's so sad. We have to do something to help.,Joshua Hamilton,Ethan Spaulding,8 +9461,9461,Fire,3,The Painted Lady,3,Sokka,"No, we can't waste our time here. We have a bigger mission that we need to stay focused on. These people are on their own.","No, we can't waste our time here. We have a bigger mission that we need to stay focused on. These people are on their own.",Joshua Hamilton,Ethan Spaulding,8 +9462,9462,Fire,3,The Painted Lady,3,Katara,[Chases Sokka and grabs his shoulder.] These people are starving! But you'd turn your back on them? [Puts her hands on her hips.] How can you be so cold and heartless?,These people are starving! But you'd turn your back on them? How can you be so cold and heartless?,Joshua Hamilton,Ethan Spaulding,8 +9463,9463,Fire,3,The Painted Lady,3,Sokka,"[Shot changes to show their argument from the river as a barrel bobs up and down.] I'm not turning my back, I'm just being realistic. We can't go around helping every rinky-dink town we wander into. We'll be helping them all by taking out the Fire Lord. [Aang guides Toph toward the arguing siblings.]","I'm not turning my back, I'm just being realistic. We can't go around helping every rinky-dink town we wander into. We'll be helping them all by taking out the Fire Lord.",Joshua Hamilton,Ethan Spaulding,8 +9464,9464,Fire,3,The Painted Lady,3,Toph,"[Covering Sokka's mouth with her hand.] Hey, loud mouths! Maybe we should be a little quieter when we talk about ""taking out the Fire Lord.""","Hey, loud mouths! Maybe we should be a little quieter when we talk about ""taking out the Fire Lord.""",Joshua Hamilton,Ethan Spaulding,8 +9465,9465,Fire,3,The Painted Lady,3,Sokka,"Come on, Katara, be reasonable about this. You know our mission has to come first.","Come on, Katara, be reasonable about this. You know our mission has to come first.",Joshua Hamilton,Ethan Spaulding,8 +9466,9466,Fire,3,The Painted Lady,3,Katara,[Reluctantly.] I guess so. [Looks annoyed.],I guess so.,Joshua Hamilton,Ethan Spaulding,8 +9467,9467,Fire,3,The Painted Lady,3,Aang,"Let's just get what we need and go. [Smiling to Katara, who smiles back.]",Let's just get what we need and go.,Joshua Hamilton,Ethan Spaulding,8 +9468,9468,Fire,3,The Painted Lady,3,Scene Description,"Cut to an aerial view of the village. The shot changes to show the counter of an outdoor market stall. As Team Avatar walks up to it, they notice a man who looks like Dock, but wearing a different hat, bowed behind the counter.",NA,Joshua Hamilton,Ethan Spaulding,8 +9469,9469,Fire,3,The Painted Lady,3,Sokka,"Hey, Dock. You work here too?","Hey, Dock. You work here too?",Joshua Hamilton,Ethan Spaulding,8 +9470,9470,Fire,3,The Painted Lady,3,Xu,I'm not Dock. I'm Xu! Dock's my brother.,I'm not Dock. I'm Xu! Dock's my brother.,Joshua Hamilton,Ethan Spaulding,8 +9471,9471,Fire,3,The Painted Lady,3,Scene Description,Team Avatar looks confused.,NA,Joshua Hamilton,Ethan Spaulding,8 +9472,9472,Fire,3,The Painted Lady,3,Aang,But we just saw you. You're even wearing the same clothes. [Close-up of his hat.] The only difference is your hat.,But we just saw you. You're even wearing the same clothes. The only difference is your hat.,Joshua Hamilton,Ethan Spaulding,8 +9473,9473,Fire,3,The Painted Lady,3,Xu,"[Camera zooms out to Xu talking.] Dock works on the docks. That's why we call him, ""Dock"", and I work in the shop, that's why they call me, ""Xu""!","Dock works on the docks. That's why we call him, ""Dock"", and I work in the shop, that's why they call me, ""Xu""!",Joshua Hamilton,Ethan Spaulding,8 +9474,9474,Fire,3,The Painted Lady,3,Aang,I don't get it.,I don't get it.,Joshua Hamilton,Ethan Spaulding,8 +9475,9475,Fire,3,The Painted Lady,3,Xu,"Me neither. [Jumps down behind the counter and pulls out a crate filled with rancid gray seafood.] What I can getcha? [Katara, Aang, and Sokka look disgusted.] Hey, I'll give you a special deal. If you buy three fish, I'll give you a clam for free. [Sokka pushes a clam, and mucus splashes out from it.]","Me neither. What I can getcha? Hey, I'll give you a special deal. If you buy three fish, I'll give you a clam for free.",Joshua Hamilton,Ethan Spaulding,8 +9476,9476,Fire,3,The Painted Lady,3,Scene Description,"Aang and Katara both recoil, muttering in disgust.",NA,Joshua Hamilton,Ethan Spaulding,8 +9477,9477,Fire,3,The Painted Lady,3,Sokka,[Picks up three fish. Carefully.] We'll just take the fish. [Xu takes the fish.] Mind telling your brother we need a ride back to shore? [Xu jumps down behind the counter and jumps up wearing Dock's hat.],We'll just take the fish. Mind telling your brother we need a ride back to shore?,Joshua Hamilton,Ethan Spaulding,8 +9478,9478,Fire,3,The Painted Lady,3,Dock,"Hey, colonials! My brother says you need a lift. [Jumps over the counter, and walks to the dock.]","Hey, colonials! My brother says you need a lift.",Joshua Hamilton,Ethan Spaulding,8 +9479,9479,Fire,3,The Painted Lady,3,Scene Description,Team Avatar follows Dock to the dock. A little boy stops Katara.,NA,Joshua Hamilton,Ethan Spaulding,8 +9480,9480,Fire,3,The Painted Lady,3,Little boy,Can you spare some food?,Can you spare some food?,Joshua Hamilton,Ethan Spaulding,8 +9481,9481,Fire,3,The Painted Lady,3,Katara,"[Touched.] I wish I could help more. [Gives the boy a fish, and the boy bows to her and leaves to give the fish to his sick mother.]",I wish I could help more.,Joshua Hamilton,Ethan Spaulding,8 +9482,9482,Fire,3,The Painted Lady,3,Scene Description,"Fade to nighttime, as the camera shows an aerial view of Team Avatar's camp. Shot changes to show a barrel of polluted water. Aang lifts the water with waterbending and Toph separates the pollutants from the water with earthbending. Aang passes the water to Katara, who boils it in a crock.",NA,Joshua Hamilton,Ethan Spaulding,8 +9483,9483,Fire,3,The Painted Lady,3,Sokka,Our detour into town today has completely thrown off our schedule. It's gonna take some serious finagling to get us back on track.,Our detour into town today has completely thrown off our schedule. It's gonna take some serious finagling to get us back on track.,Joshua Hamilton,Ethan Spaulding,8 +9484,9484,Fire,3,The Painted Lady,3,Toph,"[Sarcastically.] Finagle away, oh schedule master.","Finagle away, oh schedule master.",Joshua Hamilton,Ethan Spaulding,8 +9485,9485,Fire,3,The Painted Lady,3,Sokka,"Well, for starters, it looks like we'll need to wake up forty-three minutes earlier every day.","Well, for starters, it looks like we'll need to wake up forty-three minutes earlier every day.",Joshua Hamilton,Ethan Spaulding,8 +9486,9486,Fire,3,The Painted Lady,3,Katara,Forty-three minutes?,Forty-three minutes?,Joshua Hamilton,Ethan Spaulding,8 +9487,9487,Fire,3,The Painted Lady,3,Sokka,"[Pointing to various spots on his schedule.] Look, we only have a few weeks to get to the Fire Lord in time for the invasion and the eclipse, which, by the way, only lasts for eight minutes. And we just lost a whole day. So if we want to make up the time and stay on schedule, we have to wake up early!","Look, we only have a few weeks to get to the Fire Lord in time for the invasion and the eclipse, which, by the way, only lasts for eight minutes. And we just lost a whole day. So if we want to make up the time and stay on schedule, we have to wake up early!",Joshua Hamilton,Ethan Spaulding,8 +9488,9488,Fire,3,The Painted Lady,3,Toph,Well I'm not waking up early.,Well I'm not waking up early.,Joshua Hamilton,Ethan Spaulding,8 +9489,9489,Fire,3,The Painted Lady,3,Sokka,Or we could just cut out all of our eating breaks.,Or we could just cut out all of our eating breaks.,Joshua Hamilton,Ethan Spaulding,8 +9490,9490,Fire,3,The Painted Lady,3,Aang,What?,What?,Joshua Hamilton,Ethan Spaulding,8 +9491,9491,Fire,3,The Painted Lady,3,Katara,No way!,No way!,Joshua Hamilton,Ethan Spaulding,8 +9492,9492,Fire,3,The Painted Lady,3,Toph,Forget it!,Forget it!,Joshua Hamilton,Ethan Spaulding,8 +9493,9493,Fire,3,The Painted Lady,3,Sokka,"[Gets a sly look on his face.] I got it, how's this from now on, we'll take food breaks and potty breaks at the same time.","I got it, how's this from now on, we'll take food breaks and potty breaks at the same time.",Joshua Hamilton,Ethan Spaulding,8 +9494,9494,Fire,3,The Painted Lady,3,Scene Description,"Katara, Toph, and Aang express their disgust at this idea with Aang doing a spit take.",NA,Joshua Hamilton,Ethan Spaulding,8 +9495,9495,Fire,3,The Painted Lady,3,Sokka,"Hey, it might be gross, but it's efficient. Either way, we have to leave here first thing tomorrow morning.","Hey, it might be gross, but it's efficient. Either way, we have to leave here first thing tomorrow morning.",Joshua Hamilton,Ethan Spaulding,8 +9496,9496,Fire,3,The Painted Lady,3,Scene Description,"Close-up of Katara's face, who looks distraught at Sokka's words. Cut to an aerial view of the village the following morning and cut to the campsite. Appa lies on his side, groaning, while Katara ministers to him.",NA,Joshua Hamilton,Ethan Spaulding,8 +9497,9497,Fire,3,The Painted Lady,3,Aang,What's the matter Katara?,What's the matter Katara?,Joshua Hamilton,Ethan Spaulding,8 +9498,9498,Fire,3,The Painted Lady,3,Katara,I think Appa's sick.,I think Appa's sick.,Joshua Hamilton,Ethan Spaulding,8 +9499,9499,Fire,3,The Painted Lady,3,Sokka,[Panicking.] What? Appa's sick? That's awful!,What? Appa's sick? That's awful!,Joshua Hamilton,Ethan Spaulding,8 +9500,9500,Fire,3,The Painted Lady,3,Toph,"Wow, Sokka, I didn't realize you cared so much.","Wow, Sokka, I didn't realize you cared so much.",Joshua Hamilton,Ethan Spaulding,8 +9501,9501,Fire,3,The Painted Lady,3,Sokka,"Of course I care. I might as well just throw our schedule away now. [Pulls out his schedule. He stops and looks at the group. Cut to a shot of the rest of the gang giving him the evil eye, and he quickly changes his tone, rushing solicitously to Appa's side.] And I'm concerned because my big, furry friend doesn't feel well.","Of course I care. I might as well just throw our schedule away now. And I'm concerned because my big, furry friend doesn't feel well.",Joshua Hamilton,Ethan Spaulding,8 +9502,9502,Fire,3,The Painted Lady,3,Toph,He must have gotten sick from being in the polluted water.,He must have gotten sick from being in the polluted water.,Joshua Hamilton,Ethan Spaulding,8 +9503,9503,Fire,3,The Painted Lady,3,Aang,"He doesn't look sick. You okay, buddy? [Appa groans and Aang pulls out Appa's purple tongue.] His tongue is purple! That can't be good. Katara, can you heal him?","He doesn't look sick. You okay, buddy? His tongue is purple! That can't be good. Katara, can you heal him?",Joshua Hamilton,Ethan Spaulding,8 +9504,9504,Fire,3,The Painted Lady,3,Katara,It looks like he needs some medicine. Maybe we can find the right herbs in town.,It looks like he needs some medicine. Maybe we can find the right herbs in town.,Joshua Hamilton,Ethan Spaulding,8 +9505,9505,Fire,3,The Painted Lady,3,Scene Description,"Momo arrives and attempts to lick Appa's tongue before being pulled off by Aang. Cut to the village, which is bustling and lively. One villager pole vaults from one house to another.",NA,Joshua Hamilton,Ethan Spaulding,8 +9506,9506,Fire,3,The Painted Lady,3,Toph,"Is it just me, or does this place seem different?","Is it just me, or does this place seem different?",Joshua Hamilton,Ethan Spaulding,8 +9507,9507,Fire,3,The Painted Lady,3,Aang,"Yeah, are the people ... happier?","Yeah, are the people ... happier?",Joshua Hamilton,Ethan Spaulding,8 +9508,9508,Fire,3,The Painted Lady,3,Scene Description,"The little boy from the previous day runs by, bouncing a ball, and Katara smiles to herself. The kids walk up to Xu/Dock's market.",NA,Joshua Hamilton,Ethan Spaulding,8 +9509,9509,Fire,3,The Painted Lady,3,Sokka,"Hey, Xu, what's going on with everyone today?","Hey, Xu, what's going on with everyone today?",Joshua Hamilton,Ethan Spaulding,8 +9510,9510,Fire,3,The Painted Lady,3,Xu,"[Drinks from a ladle.] Ah, something amazing happened last night. Food was delivered to our village by a mysterious and wonderful person ... the Painted Lady.","Ah, something amazing happened last night. Food was delivered to our village by a mysterious and wonderful person ... the Painted Lady.",Joshua Hamilton,Ethan Spaulding,8 +9511,9511,Fire,3,The Painted Lady,3,Katara,The Painted who now?,The Painted who now?,Joshua Hamilton,Ethan Spaulding,8 +9512,9512,Fire,3,The Painted Lady,3,Xu,The Painted Lady. [He places a miniature statuette of the spirit down on the counter.] She's part of our town's lore. They say she's a river spirit who watches over our town in times of need. I always thought she was just a legend. Until now.,The Painted Lady. She's part of our town's lore. They say she's a river spirit who watches over our town in times of need. I always thought she was just a legend. Until now.,Joshua Hamilton,Ethan Spaulding,8 +9513,9513,Fire,3,The Painted Lady,3,Sokka,"See, we don't need to help these people, they already have someone to help them. All we need is medicine for our sick friend.","See, we don't need to help these people, they already have someone to help them. All we need is medicine for our sick friend.",Joshua Hamilton,Ethan Spaulding,8 +9514,9514,Fire,3,The Painted Lady,3,Xu,"Medicine? Sorry, all the medicine we have goes to the factory. That's why there's so many sick people in our village.","Medicine? Sorry, all the medicine we have goes to the factory. That's why there's so many sick people in our village.",Joshua Hamilton,Ethan Spaulding,8 +9515,9515,Fire,3,The Painted Lady,3,Katara,Looks like we need to stay another night so Appa can rest.,Looks like we need to stay another night so Appa can rest.,Joshua Hamilton,Ethan Spaulding,8 +9516,9516,Fire,3,The Painted Lady,3,Sokka,[Sighs.] I guess you're right. You got any more food to sell?,I guess you're right. You got any more food to sell?,Joshua Hamilton,Ethan Spaulding,8 +9517,9517,Fire,3,The Painted Lady,3,Xu,"[Goes under the counter and emerges holding a fish in each hand.] Would you like the one-headed fish, or the two-headed fish? [He turns the fish on the left sideways to show the second head.]","Would you like the one-headed fish, or the two-headed fish?",Joshua Hamilton,Ethan Spaulding,8 +9518,9518,Fire,3,The Painted Lady,3,Sokka,[Ponders.] Two-headed! [The rest of the group lowers their heads and small sweat drops appear.] What? You get more for your money that way! [Holds up the polluted fish.],Two-headed! What? You get more for your money that way!,Joshua Hamilton,Ethan Spaulding,8 +9519,9519,Fire,3,The Painted Lady,3,Scene Description,"The rest of the group get even bigger exaggerated sweat drops as they express their disgust and run away from Sokka who follows behind with the polluted fish. +Fade to the village, late that night. A figure resembling the Painted Lady glides over the water on a carpet of fog and enters the village. She steps into a hut where several people are sleeping on the floor, and bends over each of them in turn, healing them with a blue glow. Her last patient is the mother of the little boy seen earlier, her son sleeping at her side. He wakes as the Painted Lady turns to go and silently follows her out the door.",NA,Joshua Hamilton,Ethan Spaulding,8 +9520,9520,Fire,3,The Painted Lady,3,Little boy,"Thank you, Painted Lady.","Thank you, Painted Lady.",Joshua Hamilton,Ethan Spaulding,8 +9521,9521,Fire,3,The Painted Lady,3,Scene Description,"The lady stops and nods her head before disappearing into the water. Cut to the village, the next day. Dock polishes his figurine with a rag as Sokka steps up to the counter.",NA,Joshua Hamilton,Ethan Spaulding,8 +9522,9522,Fire,3,The Painted Lady,3,Sokka,"Hi, Dock. Is Xu around?","Hi, Dock. Is Xu around?",Joshua Hamilton,Ethan Spaulding,8 +9523,9523,Fire,3,The Painted Lady,3,Dock/Xu,"Let me check ... [He runs around the shop and ducks beneath the counter to switch hats.] Hey there! Back again, are ya?","Let me check ... Hey there! Back again, are ya?",Joshua Hamilton,Ethan Spaulding,8 +9524,9524,Fire,3,The Painted Lady,3,Toph,[Pushes Sokka away.] We need more food. [Slams the money on the counter.] Our friend is still sick and we can't leave until he's better.,We need more food. Our friend is still sick and we can't leave until he's better.,Joshua Hamilton,Ethan Spaulding,8 +9525,9525,Fire,3,The Painted Lady,3,Scene Description,Xu obligingly presents them with a platter of polluted clams. The camera pans in on the clams. Sokka comically slides in behind them and gives silent chuckle along with a comical annoyed symbol on his forehead. It appears he has an idea brewing.,NA,Joshua Hamilton,Ethan Spaulding,8 +9526,9526,Fire,3,The Painted Lady,3,Xu,"Oh, well, that's too bad. Maybe if you guys are lucky, the Painted Lady will visit you in the night, and heal your friend.","Oh, well, that's too bad. Maybe if you guys are lucky, the Painted Lady will visit you in the night, and heal your friend.",Joshua Hamilton,Ethan Spaulding,8 +9527,9527,Fire,3,The Painted Lady,3,Sokka,"[Picks up the clams. Sarcastically.] And maybe she'll cook us a midnight snack, and we'll all have a sing-along.","And maybe she'll cook us a midnight snack, and we'll all have a sing-along.",Joshua Hamilton,Ethan Spaulding,8 +9528,9528,Fire,3,The Painted Lady,3,Xu,"[Not getting the sarcasm. Sokka looks annoyed now.] Yeah, may be! You know, last night she visited us again. Healed most of our sick folks.","Yeah, may be! You know, last night she visited us again. Healed most of our sick folks.",Joshua Hamilton,Ethan Spaulding,8 +9529,9529,Fire,3,The Painted Lady,3,Aang,Is that why this place seems so festive?,Is that why this place seems so festive?,Joshua Hamilton,Ethan Spaulding,8 +9530,9530,Fire,3,The Painted Lady,3,Scene Description,"A villagers raises a large statue of the Painted Lady in the town square, everyone cheers and applause.",NA,Joshua Hamilton,Ethan Spaulding,8 +9531,9531,Fire,3,The Painted Lady,3,Dock,"Yep, it's all because of the Painted Lady.","Yep, it's all because of the Painted Lady.",Joshua Hamilton,Ethan Spaulding,8 +9532,9532,Fire,3,The Painted Lady,3,Katara,Can you believe how much an entire village can be affected by one lady I mean ... spirit?,Can you believe how much an entire village can be affected by one lady I mean ... spirit?,Joshua Hamilton,Ethan Spaulding,8 +9533,9533,Fire,3,The Painted Lady,3,Sokka,"Well, I hope she returns every night. Otherwise this place would go right back to the way it was.","Well, I hope she returns every night. Otherwise this place would go right back to the way it was.",Joshua Hamilton,Ethan Spaulding,8 +9534,9534,Fire,3,The Painted Lady,3,Katara,[Gets annoyed.] Why would you say that? Look how much better off these people are.,Why would you say that? Look how much better off these people are.,Joshua Hamilton,Ethan Spaulding,8 +9535,9535,Fire,3,The Painted Lady,3,Sokka,"Yeah, now, but without her they wouldn't be able to fend for themselves. If she really wanted to help, she would use her spirit magic to blow up that factory. [He makes mocking gestures to indicate explosive spirit magic. He crosses his arms with a smile. Katara gets even more annoyed. The screen pans to the right to show Aang who has his arms crossed not impressed.]","Yeah, now, but without her they wouldn't be able to fend for themselves. If she really wanted to help, she would use her spirit magic to blow up that factory.",Joshua Hamilton,Ethan Spaulding,8 +9536,9536,Fire,3,The Painted Lady,3,Aang,"Spirit magic doesn't work that way, Sokka. It's more like ... [He waves his body with arms in the air making similar gestures to indicate spirit magic. Katara storms away from the two.]","Spirit magic doesn't work that way, Sokka. It's more like ...",Joshua Hamilton,Ethan Spaulding,8 +9537,9537,Fire,3,The Painted Lady,3,Aang and Sokka,[Sokka wraps and arm over Aang's shoulder and the two combined their little imitation but far more ridiculous.] Wooooooooo ... [Sokka chuckles.],Wooooooooo ...,Joshua Hamilton,Ethan Spaulding,8 +9538,9538,Fire,3,The Painted Lady,3,Scene Description,"Cut to Katara on the edge of a dock looking out toward the factory. Cut to the campsite, that night. Katara slips out of her sleeping bag and stuffs dried grass into it to disguise her absence. She dons a makeshift Painted Lady costume, wrapping a ragged gown around her. Katara bends the water to make a mirror so she can apply the markings. She puts on a wide conical hat similar to the Painted Lady's, but with a diaphanous white veil covering her face. She glides away toward the village, but not quietly enough; she wakes Momo, and he wakes Aang by jumping on him.",NA,Joshua Hamilton,Ethan Spaulding,8 +9539,9539,Fire,3,The Painted Lady,3,Aang,"What's the matter, buddy? [Katara leaves Team Avatar.] It's her! [Excited, waves his hand to Katara and puts on his headband.] Hello, Painted Lady Spirit!","What's the matter, buddy? It's her! Hello, Painted Lady Spirit!",Joshua Hamilton,Ethan Spaulding,8 +9540,9540,Fire,3,The Painted Lady,3,Scene Description,"Katara shocked, quickly flees from Aang. Meanwhile, Aang uses his airbending to accelerate his run. The camera moves to a hill as Katara climbs up and continues on as Aang easily keeps up.",NA,Joshua Hamilton,Ethan Spaulding,8 +9541,9541,Fire,3,The Painted Lady,3,Aang,"[Jumps up the hill.] Excuse me, I don't mean to bother you, but my friend's sick and we're on kind of a tight schedule. [Continues to follow her down the hill as she crosses the river.] Wait! But I'm a great bridge between your world and mine! [Aang freezes some water to form stepping stones to cross the river.] I know Hei Bai! We're close personal friends! [Katara moves faster, and Aang jumps on a wooden bridge. Katara runs out of the river onto the docks and notices Aang's reflection in the water. She looks up and sees Aang running across a roof.] Heeey! [He suddenly hits a pole, Katara flinches and feels sorry for him but continues on across the river to the other side. She stops to look out at the village thinking she is safe but Aang drops in front of her.] My name's Aang. I'm the Avatar. [Lifts his headband and points at his arrow.]","Excuse me, I don't mean to bother you, but my friend's sick and we're on kind of a tight schedule. Wait! But I'm a great bridge between your world and mine! I know Hei Bai! We're close personal friends! Heeey! My name's Aang. I'm the Avatar.",Joshua Hamilton,Ethan Spaulding,8 +9542,9542,Fire,3,The Painted Lady,3,Katara,"[Using a disguised voice.] Well, hello Avatar. I wish I could talk, but I am very busy.","Well, hello Avatar. I wish I could talk, but I am very busy.",Joshua Hamilton,Ethan Spaulding,8 +9543,9543,Fire,3,The Painted Lady,3,Aang,"Yeah, me too. I hate that. [Looks at Katara's face from behind the veil.] You know, you're really pretty spirit. I don't meet too many spirits, but the ones I do meet, not very attractive. [Looks at Katara suspiciously. Tries to look under the hat.]","Yeah, me too. I hate that. You know, you're really pretty spirit. I don't meet too many spirits, but the ones I do meet, not very attractive.",Joshua Hamilton,Ethan Spaulding,8 +9544,9544,Fire,3,The Painted Lady,3,Katara,"[Giggles nervously.] Thank you, but-","Thank you, but-",Joshua Hamilton,Ethan Spaulding,8 +9545,9545,Fire,3,The Painted Lady,3,Aang,You seem familiar too.,You seem familiar too.,Joshua Hamilton,Ethan Spaulding,8 +9546,9546,Fire,3,The Painted Lady,3,Katara,A lot of people say that.,A lot of people say that.,Joshua Hamilton,Ethan Spaulding,8 +9547,9547,Fire,3,The Painted Lady,3,Aang,"[Suspicious.] No, you really seem familiar.","No, you really seem familiar.",Joshua Hamilton,Ethan Spaulding,8 +9548,9548,Fire,3,The Painted Lady,3,Katara,"Look, I really should get going. [Covers her face and runs, but Aang uses his airbending and blasts her hat up into the air, exposing her.]","Look, I really should get going.",Joshua Hamilton,Ethan Spaulding,8 +9549,9549,Fire,3,The Painted Lady,3,Aang,Katara?,Katara?,Joshua Hamilton,Ethan Spaulding,8 +9550,9550,Fire,3,The Painted Lady,3,Katara,"[Guiltily.] Hi, Aang.","Hi, Aang.",Joshua Hamilton,Ethan Spaulding,8 +9551,9551,Fire,3,The Painted Lady,3,Aang,[Shocked.] You're the Painted Lady? [Pointing at Katara.] But how?,You're the Painted Lady? But how?,Joshua Hamilton,Ethan Spaulding,8 +9552,9552,Fire,3,The Painted Lady,3,Katara,"I wasn't her at first, I was just trying to help the village. [Takes her hat off.] But since everyone thought that's who I was anyway, I guess I just kinda became her. [Drops her hat on the ground.]","I wasn't her at first, I was just trying to help the village. But since everyone thought that's who I was anyway, I guess I just kinda became her.",Joshua Hamilton,Ethan Spaulding,8 +9553,9553,Fire,3,The Painted Lady,3,Aang,"So you've been sneaking out at night? Wait, is Appa even sick?","So you've been sneaking out at night? Wait, is Appa even sick?",Joshua Hamilton,Ethan Spaulding,8 +9554,9554,Fire,3,The Painted Lady,3,Katara,"He might be sick of the purple berries I've been feeding him, but other than that he's fine!","He might be sick of the purple berries I've been feeding him, but other than that he's fine!",Joshua Hamilton,Ethan Spaulding,8 +9555,9555,Fire,3,The Painted Lady,3,Aang,"I can't believe you lied to everyone, so you could help these people.","I can't believe you lied to everyone, so you could help these people.",Joshua Hamilton,Ethan Spaulding,8 +9556,9556,Fire,3,The Painted Lady,3,Katara,"I'm sorry, I know I shouldn't have ...","I'm sorry, I know I shouldn't have ...",Joshua Hamilton,Ethan Spaulding,8 +9557,9557,Fire,3,The Painted Lady,3,Aang,"[Happily.] No, I think it's great! You're like a secret hero!","No, I think it's great! You're like a secret hero!",Joshua Hamilton,Ethan Spaulding,8 +9558,9558,Fire,3,The Painted Lady,3,Katara,"Well, if you wanna help, there's one more thing I have to do.","Well, if you wanna help, there's one more thing I have to do.",Joshua Hamilton,Ethan Spaulding,8 +9559,9559,Fire,3,The Painted Lady,3,Scene Description,Aang gives her a curious look. Cut to the Fire Nation factory. Aang and Katara run along the river's edge toward it. Aang looks at the polluted water.,NA,Joshua Hamilton,Ethan Spaulding,8 +9560,9560,Fire,3,The Painted Lady,3,Aang,You wanna destroy this factory?,You wanna destroy this factory?,Joshua Hamilton,Ethan Spaulding,8 +9561,9561,Fire,3,The Painted Lady,3,Katara,"Yes. Sokka was just kidding, but he was right. Getting rid of this factory is the only way to help these people permanently.","Yes. Sokka was just kidding, but he was right. Getting rid of this factory is the only way to help these people permanently.",Joshua Hamilton,Ethan Spaulding,8 +9562,9562,Fire,3,The Painted Lady,3,Scene Description,"Aang and Katara enter and move to different sides of the factory. Katara uses waterbending to cut the metal hooks that hang barrels of a magma. Aang, with protective gloves on, overturns bigger hanging barrels, smiling at his work. Aang uses earthbending to break apart the pipe system in the factory. Katara bends a huge wave of water through the windows and floods the factory. The scene cuts to outside as the factory explodes from within and muck stops flowing from the pipes. Cut to Aang and Katara walking back to their campsite. Aang laughs and makes explosion noises.",NA,Joshua Hamilton,Ethan Spaulding,8 +9563,9563,Fire,3,The Painted Lady,3,Katara,"Shhh! [Quietly.] We don't wanna wake Sokka. [She turns and sees that Sokka and Toph are awake.] Hi, Sokka, we were just out on a morning walk!","Shhh! We don't wanna wake Sokka. Hi, Sokka, we were just out on a morning walk!",Joshua Hamilton,Ethan Spaulding,8 +9564,9564,Fire,3,The Painted Lady,3,Sokka,"[Angrily and disappointed.] Oh, really? A morning walk? [Dumps the hay out of Katara's sleeping bag.] I know you're the Painted Lady, I know you've been sneaking out at night, and I know you've been lying about Appa and been feeding him [Sticks out his own tongue.] purpleising tongue berries! [Toph sticks out her tongue and shows that it is purple and holds up a bag of berries which Momo starts eating.] Katara, what you did put our whole mission in jeopardy. We're leaving right now!","Oh, really? A morning walk? I know you're the Painted Lady, I know you've been sneaking out at night, and I know you've been lying about Appa and been feeding him purpleising tongue berries! Katara, what you did put our whole mission in jeopardy. We're leaving right now!",Joshua Hamilton,Ethan Spaulding,8 +9565,9565,Fire,3,The Painted Lady,3,Scene Description,Katara walks past Sokka sadly. Sokka confronts Aang as he follows.,NA,Joshua Hamilton,Ethan Spaulding,8 +9566,9566,Fire,3,The Painted Lady,3,Sokka,And how long did you know about this?,And how long did you know about this?,Joshua Hamilton,Ethan Spaulding,8 +9567,9567,Fire,3,The Painted Lady,3,Aang,"[Defensively.] Hey, I just found out this morning!","Hey, I just found out this morning!",Joshua Hamilton,Ethan Spaulding,8 +9568,9568,Fire,3,The Painted Lady,3,Scene Description,"Aang sprints away with airbending. The scene changes to the Fire Nation factory where a man can be seen coming out of the smoke and looking angrily toward the town. Cut to Team Avatar packing, but they pause when they hear buzzing. The factory workers are shown headed for the town on jet skis. Cut to the gang on a cliff looking down at the river below.",NA,Joshua Hamilton,Ethan Spaulding,8 +9569,9569,Fire,3,The Painted Lady,3,Toph,[Approaching and kneeling down with the others.] What's going on?,What's going on?,Joshua Hamilton,Ethan Spaulding,8 +9570,9570,Fire,3,The Painted Lady,3,Aang,Fire Nation soldiers are heading toward the village!,Fire Nation soldiers are heading toward the village!,Joshua Hamilton,Ethan Spaulding,8 +9571,9571,Fire,3,The Painted Lady,3,Sokka,[To Katara.] What did you do?,What did you do?,Joshua Hamilton,Ethan Spaulding,8 +9572,9572,Fire,3,The Painted Lady,3,Katara,I kind of destroyed their factory.,I kind of destroyed their factory.,Joshua Hamilton,Ethan Spaulding,8 +9573,9573,Fire,3,The Painted Lady,3,Sokka,You what?,You what?,Joshua Hamilton,Ethan Spaulding,8 +9574,9574,Fire,3,The Painted Lady,3,Katara,[Defensively.] It was your idea!,It was your idea!,Joshua Hamilton,Ethan Spaulding,8 +9575,9575,Fire,3,The Painted Lady,3,Sokka,I was joking! I also said to use spirit magic and made funny noises! [Slaps his forehead.] Did you even think this through? The army is gonna blame the villagers! They're headed there right now to get revenge!,I was joking! I also said to use spirit magic and made funny noises! Did you even think this through? The army is gonna blame the villagers! They're headed there right now to get revenge!,Joshua Hamilton,Ethan Spaulding,8 +9576,9576,Fire,3,The Painted Lady,3,Katara,"Well, what was I supposed to do?","Well, what was I supposed to do?",Joshua Hamilton,Ethan Spaulding,8 +9577,9577,Fire,3,The Painted Lady,3,Sokka,Leave! Do nothing!,Leave! Do nothing!,Joshua Hamilton,Ethan Spaulding,8 +9578,9578,Fire,3,The Painted Lady,3,Katara,"[Angrily.] No, I will never, ever turn my back on people who need me! [Gets up.] I'm going down to that village, and I am gonna do whatever I can.","No, I will never, ever turn my back on people who need me! I'm going down to that village, and I am gonna do whatever I can.",Joshua Hamilton,Ethan Spaulding,8 +9579,9579,Fire,3,The Painted Lady,3,Scene Description,"As Katara walks away, Sokka stops her by putting his hand on her shoulder.",NA,Joshua Hamilton,Ethan Spaulding,8 +9580,9580,Fire,3,The Painted Lady,3,Sokka,"Wait! I'm coming, too.","Wait! I'm coming, too.",Joshua Hamilton,Ethan Spaulding,8 +9581,9581,Fire,3,The Painted Lady,3,Katara,I thought you didn't want to help.,I thought you didn't want to help.,Joshua Hamilton,Ethan Spaulding,8 +9582,9582,Fire,3,The Painted Lady,3,Sokka,"You need me, and I will never turn my back on you.","You need me, and I will never turn my back on you.",Joshua Hamilton,Ethan Spaulding,8 +9583,9583,Fire,3,The Painted Lady,3,Katara,"Sokka, you really do have a heart. [The two hug.]","Sokka, you really do have a heart.",Joshua Hamilton,Ethan Spaulding,8 +9584,9584,Fire,3,The Painted Lady,3,Aang,"[Wiping away tears.] He really does have a heart, doesn't he?","He really does have a heart, doesn't he?",Joshua Hamilton,Ethan Spaulding,8 +9585,9585,Fire,3,The Painted Lady,3,Scene Description,"Aang turns to Toph for confirmation. Toph, however, elbows him and he falls off camera with a thump. Cut to the Fire Nation soldiers on jet skis. Cut to Team Avatar looking at the village. Cut to Mung and his soldiers standing on the dock.",NA,Joshua Hamilton,Ethan Spaulding,8 +9586,9586,Fire,3,The Painted Lady,3,Mung,"I thought we could live as neighbors, in peace. But I guess I was wrong. You steal our food, our medicine ... and then you destroy our factory.","I thought we could live as neighbors, in peace. But I guess I was wrong. You steal our food, our medicine ... and then you destroy our factory.",Joshua Hamilton,Ethan Spaulding,8 +9587,9587,Fire,3,The Painted Lady,3,Dock/Xu,"[Pops out of the crowd wearing Dock hat.] We didn't do any of that. [Pops out in a different place wearing his Xu hat.] Yeah, the Painted Lady brought us food. She's the one that healed our sick, not your medicine.","We didn't do any of that. Yeah, the Painted Lady brought us food. She's the one that healed our sick, not your medicine.",Joshua Hamilton,Ethan Spaulding,8 +9588,9588,Fire,3,The Painted Lady,3,Mung,"[Holding a statuette.] Oh, right, the mysterious Painted Lady did it. And I suppose she drew the army emblem on your containers, too. [Throws the statuette at the container, smashing it. The crowd gasps.] This is a town of thieves and liars! [Firebends a blast at a house. Mockingly.] Where's your Painted Lady now? We're going to cure the world of this wretched village.","Oh, right, the mysterious Painted Lady did it. And I suppose she drew the army emblem on your containers, too. This is a town of thieves and liars! Where's your Painted Lady now? We're going to cure the world of this wretched village.",Joshua Hamilton,Ethan Spaulding,8 +9589,9589,Fire,3,The Painted Lady,3,Scene Description,"The soldiers begin demolishing the town. A jet ski, with two soldiers, goes past a dock as a soldier sends a hook and chain toward it. The chain wraps around a log holding up a house and it breaks as the jet ski drives away. The house crumbles into the water. Cut to two soldiers who light a large flammable ball perched on a buoy in the river, but a mysterious gust of wind blows out the fire, twice.",NA,Joshua Hamilton,Ethan Spaulding,8 +9590,9590,Fire,3,The Painted Lady,3,Mung,Light it again!,Light it again!,Joshua Hamilton,Ethan Spaulding,8 +9591,9591,Fire,3,The Painted Lady,3,Scene Description,"They follow Mung's command, and it is blown out again. Eerie flute music begins floating over the water.",NA,Joshua Hamilton,Ethan Spaulding,8 +9592,9592,Fire,3,The Painted Lady,3,Female Fire Nation soldier,Look at that! Where's it coming from?,Look at that! Where's it coming from?,Joshua Hamilton,Ethan Spaulding,8 +9593,9593,Fire,3,The Painted Lady,3,Scene Description,Cut to a heavy fog rapidly pouring in.,NA,Joshua Hamilton,Ethan Spaulding,8 +9594,9594,Fire,3,The Painted Lady,3,Male Fire Nation soldier,I don't know. Something strange is going on.,I don't know. Something strange is going on.,Joshua Hamilton,Ethan Spaulding,8 +9595,9595,Fire,3,The Painted Lady,3,Scene Description,An ominous growling noise echoes over the river.,NA,Joshua Hamilton,Ethan Spaulding,8 +9596,9596,Fire,3,The Painted Lady,3,Little boy,It's the Painted Lady. [Grins slyly. Ominous tone.] She's coming.,It's the Painted Lady. She's coming.,Joshua Hamilton,Ethan Spaulding,8 +9597,9597,Fire,3,The Painted Lady,3,Mung,There is no Painted Lady!,There is no Painted Lady!,Joshua Hamilton,Ethan Spaulding,8 +9598,9598,Fire,3,The Painted Lady,3,Scene Description,"A repetitive thudding noise, as of giant footsteps, has begun. Pan over the river to the further bank where we see that the thudding is caused by Toph elevating and dropping a large boulder, while Appa provides the growling. Sokka mans the flute, producing eerie noises.",NA,Joshua Hamilton,Ethan Spaulding,8 +9599,9599,Fire,3,The Painted Lady,3,Female Fire Nation soldier,What is that sound?,What is that sound?,Joshua Hamilton,Ethan Spaulding,8 +9600,9600,Fire,3,The Painted Lady,3,Male Fire Nation soldier,Maybe it is her.,Maybe it is her.,Joshua Hamilton,Ethan Spaulding,8 +9601,9601,Fire,3,The Painted Lady,3,Scene Description,The fog parts dramatically to reveal Katara in full Painted Lady regalia. She pauses a moment and rushes toward the soldiers with a burst of waterbending. She alights on the dock and slowly approaches them.,NA,Joshua Hamilton,Ethan Spaulding,8 +9602,9602,Fire,3,The Painted Lady,3,Mung,"Do something! [Pushes his soldiers forward. As they timidly draw near, they are rattled by a blast of airbending. Aang is shown hiding beneath the dock. The two soldiers run off. To the remaining soldiers.] Stand your ground! [Katara waterbends two jet skis into a nearby cliff. As she raises her hand to wreak further damage, the soldiers jump into the remaining jet skis and speed off, leaving Mung.] I'll take care of you myself.",Do something! Stand your ground! I'll take care of you myself.,Joshua Hamilton,Ethan Spaulding,8 +9603,9603,Fire,3,The Painted Lady,3,Scene Description,"He bends an arc of fire at Katara, we see it advance toward her in slow motion. Aang, still concealed beneath the dock, sends Katara flying into the sky on a column of air; the flame passes harmlessly beneath her. Aang rends the dock in two with a blast of wind, sending Mung flying into the river. As he flounders, Katara rises out of the polluted water before him and raises her arms threateningly.",NA,Joshua Hamilton,Ethan Spaulding,8 +9604,9604,Fire,3,The Painted Lady,3,Katara,Leave this village and never come back.,Leave this village and never come back.,Joshua Hamilton,Ethan Spaulding,8 +9605,9605,Fire,3,The Painted Lady,3,Scene Description,He swims desperately away from her. A stray jet ski passes by and he clambers into it; the ski buzzes off. Sokka and Toph row toward the village as the people applaud Katara as she returns to the dock.,NA,Joshua Hamilton,Ethan Spaulding,8 +9606,9606,Fire,3,The Painted Lady,3,Little boy,I knew you'd come.,I knew you'd come.,Joshua Hamilton,Ethan Spaulding,8 +9607,9607,Fire,3,The Painted Lady,3,Villager #1,Thank you!,Thank you!,Joshua Hamilton,Ethan Spaulding,8 +9608,9608,Fire,3,The Painted Lady,3,Villager #2,"Painted Lady, you're the best!","Painted Lady, you're the best!",Joshua Hamilton,Ethan Spaulding,8 +9609,9609,Fire,3,The Painted Lady,3,Dock,"Me and my brothers really owe you a lot. [Looking at her and her faded Painted Lady marks.] Hey, wait a minute! I know you! You're not the Painted Lady, you're that colonial girl!","Me and my brothers really owe you a lot. Hey, wait a minute! I know you! You're not the Painted Lady, you're that colonial girl!",Joshua Hamilton,Ethan Spaulding,8 +9610,9610,Fire,3,The Painted Lady,3,Scene Description,Katara places a hand on her face and realizes her make-up is smudged.,NA,Joshua Hamilton,Ethan Spaulding,8 +9611,9611,Fire,3,The Painted Lady,3,Little boy,"Yeah, you're the lady that gave me a fish.","Yeah, you're the lady that gave me a fish.",Joshua Hamilton,Ethan Spaulding,8 +9612,9612,Fire,3,The Painted Lady,3,Dock,[Angrily.] You've been tricking us. You're a waterbender!,You've been tricking us. You're a waterbender!,Joshua Hamilton,Ethan Spaulding,8 +9613,9613,Fire,3,The Painted Lady,3,Villager #3,She's a waterbender!,She's a waterbender!,Joshua Hamilton,Ethan Spaulding,8 +9614,9614,Fire,3,The Painted Lady,3,Villager #4,How dare you act like our Painted Lady!,How dare you act like our Painted Lady!,Joshua Hamilton,Ethan Spaulding,8 +9615,9615,Fire,3,The Painted Lady,3,Scene Description,The crowd surges forward in anger. Sokka runs forward to intervene.,NA,Joshua Hamilton,Ethan Spaulding,8 +9616,9616,Fire,3,The Painted Lady,3,Sokka,"Maybe she is a waterbender, but she was just trying to help you. Because of her, that factory won't be polluting your river, and the army is gone. You should be down on your knees thanking her!","Maybe she is a waterbender, but she was just trying to help you. Because of her, that factory won't be polluting your river, and the army is gone. You should be down on your knees thanking her!",Joshua Hamilton,Ethan Spaulding,8 +9617,9617,Fire,3,The Painted Lady,3,Katara,"Sokka, it's okay. [She steps forward and moves Sokka back. To the villagers.] I shouldn't have acted like someone I wasn't, and I shouldn't have tricked you. But I felt like I had to do something. It doesn't matter if the Painted Lady is real or not. Because your problems are real, and this river is real. You can't wait around for someone to help you. You have to help yourself.","Sokka, it's okay. I shouldn't have acted like someone I wasn't, and I shouldn't have tricked you. But I felt like I had to do something. It doesn't matter if the Painted Lady is real or not. Because your problems are real, and this river is real. You can't wait around for someone to help you. You have to help yourself.",Joshua Hamilton,Ethan Spaulding,8 +9618,9618,Fire,3,The Painted Lady,3,Dock,"She's right, but what should we do?","She's right, but what should we do?",Joshua Hamilton,Ethan Spaulding,8 +9619,9619,Fire,3,The Painted Lady,3,Toph,[Pops out from behind the little boy's mother and uses a lower voice.] Maybe we can clean the river!,Maybe we can clean the river!,Joshua Hamilton,Ethan Spaulding,8 +9620,9620,Fire,3,The Painted Lady,3,Dock,"Yeah, we can clean the river! [The crowd cheers.] Thank you. You know, you're not so bad for a waterbender.","Yeah, we can clean the river! Thank you. You know, you're not so bad for a waterbender.",Joshua Hamilton,Ethan Spaulding,8 +9621,9621,Fire,3,The Painted Lady,3,Sokka,"You wouldn't mind keeping that a secret, by the way, would you?","You wouldn't mind keeping that a secret, by the way, would you?",Joshua Hamilton,Ethan Spaulding,8 +9622,9622,Fire,3,The Painted Lady,3,Dock,"No problem. Keeping my mouth shut is a personal specialty. My brother Xu, on the other hand, ohh, he's a blabbermouth. [Sokka facepalms.]","No problem. Keeping my mouth shut is a personal specialty. My brother Xu, on the other hand, ohh, he's a blabbermouth.",Joshua Hamilton,Ethan Spaulding,8 +9623,9623,Fire,3,The Painted Lady,3,Katara,"So, Dock, are you gonna help us clean?","So, Dock, are you gonna help us clean?",Joshua Hamilton,Ethan Spaulding,8 +9624,9624,Fire,3,The Painted Lady,3,Dock,"No, ma'am. I'm going to get my other brother, Bushi. He loves cleaning rivers. [Dock brazenly switches hats right in front of them.] All right, I'm Bushi! Let's get some river cleaning done!","No, ma'am. I'm going to get my other brother, Bushi. He loves cleaning rivers. All right, I'm Bushi! Let's get some river cleaning done!",Joshua Hamilton,Ethan Spaulding,8 +9625,9625,Fire,3,The Painted Lady,3,Aang,"Aha, I knew it! I knew you were the same guy. You're the shop owner and the boat guy.","Aha, I knew it! I knew you were the same guy. You're the shop owner and the boat guy.",Joshua Hamilton,Ethan Spaulding,8 +9626,9626,Fire,3,The Painted Lady,3,Dock,"Oh, you must be talking about my brothers, Dock and Xu.","Oh, you must be talking about my brothers, Dock and Xu.",Joshua Hamilton,Ethan Spaulding,8 +9627,9627,Fire,3,The Painted Lady,3,Aang,"[Annoyed.] No, I just saw you! You switched hats and called yourself a different name!","No, I just saw you! You switched hats and called yourself a different name!",Joshua Hamilton,Ethan Spaulding,8 +9628,9628,Fire,3,The Painted Lady,3,Dock,"[Annoyed.] Oh, you know who does that? My brother, Dock. [Conspiratorial whisper.] He's crazy. [Goes off chuckling.]","Oh, you know who does that? My brother, Dock. He's crazy.",Joshua Hamilton,Ethan Spaulding,8 +9629,9629,Fire,3,The Painted Lady,3,Scene Description,Aang fumes in annoyance. Cut to an aerial view of the village with boats in the surrounding river. The shot changes to the boats on the river as the villagers spread clean out the pollutants. Katara bends the water into a large vat while Aang and Toph separate the pollutants using earthbending and putting it in a large boat. Cut to an aerial view of the village as the day passes by and the river becomes cleaner. Cut to Team Avatar's campsite at night. Katara sits on an overlook of the river when suddenly clouds of fog appear and the Painted Lady emerges.,NA,Joshua Hamilton,Ethan Spaulding,8 +9630,9630,Fire,3,The Painted Lady,3,Painted Lady,Thank you. [Slowly disappears.],Thank you.,Joshua Hamilton,Ethan Spaulding,8 +9631,9631,Fire,3,The Painted Lady,3,Scene Description,"Katara is first shocked, but she smiles. Fade to credits.",NA,Joshua Hamilton,Ethan Spaulding,8 +9632,9632,Fire,3,Sokka's Master,4,Scene Description,"The episode begins a shot of a meteor shower. Camera pans down with Aang, Katara, Toph and Sokka watching the meteor shower.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9633,9633,Fire,3,Sokka's Master,4,Katara,"Wow, this is amazing to watch.","Wow, this is amazing to watch.",Tim Hedrick,Giancarlo Volpe,8.8 +9634,9634,Fire,3,Sokka's Master,4,Scene Description,Cut closer to a side-view of the group.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9635,9635,Fire,3,Sokka's Master,4,Sokka,Kind of makes you realize how insignificant we are.,Kind of makes you realize how insignificant we are.,Tim Hedrick,Giancarlo Volpe,8.8 +9636,9636,Fire,3,Sokka's Master,4,Toph,"[Close-up. Causally.] Eh, you've seen nothing once, you've seen it a thousand times.","Eh, you've seen nothing once, you've seen it a thousand times.",Tim Hedrick,Giancarlo Volpe,8.8 +9637,9637,Fire,3,Sokka's Master,4,Scene Description,Cut further away showing the meteor shower above them. They see a big meteor heading for the ground and let out gasps of amazement.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9638,9638,Fire,3,Sokka's Master,4,Sokka,"Oh man, [Close-up. Standing.] you've never not seen anything like this.","Oh man, you've never not seen anything like this.",Tim Hedrick,Giancarlo Volpe,8.8 +9639,9639,Fire,3,Sokka's Master,4,Scene Description,"The others, minus Toph, stand up next to him. Cut to panning shot as the meteor flies past. Cut to overhead shot of meteor as it flies past the group. Cut to side-view of the group as the meteor passes over head. Cut to Sokka as he turns to see the meteor crash nearby. Cut to the other side of a hill as Toph climbs up. Cut to wide shot as the camera zooms out with the group looking toward the crash site. Frontal view of Aang, Katara and Sokka who look at each other concerned. Cut to the team arriving at the crash site on Appa.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9640,9640,Fire,3,Sokka's Master,4,Katara,The fire is gonna destroy that town!,The fire is gonna destroy that town!,Tim Hedrick,Giancarlo Volpe,8.8 +9641,9641,Fire,3,Sokka's Master,4,Aang,Not if we can stop it!,Not if we can stop it!,Tim Hedrick,Giancarlo Volpe,8.8 +9642,9642,Fire,3,Sokka's Master,4,Scene Description,Cut to Appa landing next to the crash site. Everyone but Katara jumps off.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9643,9643,Fire,3,Sokka's Master,4,Katara,"[Jumps onto Appa's head, taking the reins.] There's a creek over here. I'll bend the water onto the fire. [Signals Appa to take off.]",There's a creek over here. I'll bend the water onto the fire.,Tim Hedrick,Giancarlo Volpe,8.8 +9644,9644,Fire,3,Sokka's Master,4,Aang,"[Frontal view of Toph, Sokka, and Aang.] Toph, let's make a trench to stop the fire from coming any closer.","Toph, let's make a trench to stop the fire from coming any closer.",Tim Hedrick,Giancarlo Volpe,8.8 +9645,9645,Fire,3,Sokka's Master,4,Scene Description,Toph and Aang move off. Sokka looks down.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9646,9646,Fire,3,Sokka's Master,4,Sokka,What should I do?,What should I do?,Tim Hedrick,Giancarlo Volpe,8.8 +9647,9647,Fire,3,Sokka's Master,4,Scene Description,Cut to view from Sokka's perspective as Toph and Aang stop to respond. Momo flies by.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9648,9648,Fire,3,Sokka's Master,4,Aang,"[Slight pause, points at Momo.] Keep an eye on Momo.",Keep an eye on Momo.,Tim Hedrick,Giancarlo Volpe,8.8 +9649,9649,Fire,3,Sokka's Master,4,Scene Description,Cut to aerial view of Sokka. Momo lands on his shoulder.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9650,9650,Fire,3,Sokka's Master,4,Sokka,"So what, I'm just a lemur sitter? [Pets Momo; sarcastically.] There, there, feel better?","So what, I'm just a lemur sitter? There, there, feel better?",Tim Hedrick,Giancarlo Volpe,8.8 +9651,9651,Fire,3,Sokka's Master,4,Scene Description,"Cut to Aang and Toph as they begin to earthbend. Cut to aerial shot as a trench forms. Briefly cut back to Aang and Toph continuing to earthbend. Cut to aerial shot as they finish the trench, pushing the fire back. Cut to aerial view of Sokka as flames fly near him and land on the ground. Sokka puts out one with his machete however Momo ups him by putting out five in the same time, much to his dismay. Cut to Katara on Appa flying over a river. Katara grabs some water and they return to the crash site. Cut to side-view of Katara, on Appa, with a large globule of water following behind. Frontal view of Katara as she begins to waterbend the water behind her. Side-view of the crash site as Sokka and Momo look on while Katara puts out some of the fire with her waterbending. Cut to Toph beginning to earthbend. Cut to aerial view of her and the nearby crash site as she uses earthbending to put some of the fire out. Cut to Sokka, who sits, watching, along with Momo as the earth Toph is using rolls past. Cut to Aang as Appa flies past with Katara. Katara gives Aang some water to bend.waterbending and airbending to put the rest of the fire out, but the water hits Sokka and Aang's blast also makes it snow.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9652,9652,Fire,3,Sokka's Master,4,Aang,"Sokka, stand clear!","Sokka, stand clear!",Tim Hedrick,Giancarlo Volpe,8.8 +9653,9653,Fire,3,Sokka's Master,4,Sokka,"[Side-view of the crash site with Sokka and Momo looking left.] Right. [Picks up Momo and makes to move away.] Staying clear, got it.","Right. Staying clear, got it.",Tim Hedrick,Giancarlo Volpe,8.8 +9654,9654,Fire,3,Sokka's Master,4,Scene Description,"Cut to Aang as he begins to use both the water and airbending. Cut to frontal view of Sokka still walking away as the water overwhelms him. Cut to aerial view of the crash site as the water expands to put out the fire. The dome of water explodes into snow. Cut to frontal view of Aang as Appa, along with Katara, lands behind him as Toph walks toward him, too.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9655,9655,Fire,3,Sokka's Master,4,Aang,"Good work, everybody.","Good work, everybody.",Tim Hedrick,Giancarlo Volpe,8.8 +9656,9656,Fire,3,Sokka's Master,4,Scene Description,"Aerial view of the town and crash site. Cut to Sokka as he emerges from a pile of snow. Momo slides across the icy surface. +Cut to a Fire Nation prison. Cut inside. A door opens, lighting up the face of Iroh. Cut outside the cell as Warden Poon enters the room and approaches the cell. Frontal view of Poon as he drops a bowl. Side close-up view of the floor as the bowl lands on the ground which is kicked into the cell by Poon. The camera follows the bowl which tips over and the contents spill out. Iroh approaches hurriedly and eats it like an animal.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9657,9657,Fire,3,Sokka's Master,4,Warden Poon,"Look at you, [Frontal view.] you're just a fat disgusting old man. [Panning aerial view from behind.] You do nothing, you say nothing, you just eat and roll around in your own filth like a pig. [Frontal view of Poon as Iroh continues to eat.] You're a disgrace. [Spits on the floor in front of him and leaves.]","Look at you, you're just a fat disgusting old man. You do nothing, you say nothing, you just eat and roll around in your own filth like a pig. You're a disgrace.",Tim Hedrick,Giancarlo Volpe,8.8 +9658,9658,Fire,3,Sokka's Master,4,Scene Description,"Frontal view of Iroh as the door shuts. Close-up of Iroh as he stops eating. Iroh moves his hair out of his face. Cut to a frontal view further away as he sits up and starts eating like a normal person, not eating anything from the floor as the camera pans out. +Scene changes to aerial view of the town Team Avatar saved. Cut to side-view of an outdoor restaurant. Aang joins Katara and Toph at a table.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9659,9659,Fire,3,Sokka's Master,4,Aang,These people have no idea [Closer side-view of the three.] how close they were to getting toasted last night.,These people have no idea how close they were to getting toasted last night.,Tim Hedrick,Giancarlo Volpe,8.8 +9660,9660,Fire,3,Sokka's Master,4,Toph,"Yeah, the worst thing about being in disguise is that we don't get the hero worship anymore. I miss the love.","Yeah, the worst thing about being in disguise is that we don't get the hero worship anymore. I miss the love.",Tim Hedrick,Giancarlo Volpe,8.8 +9661,9661,Fire,3,Sokka's Master,4,Sokka,"[Sarcastically.] Boo-hoo, [Shot of Sokka from behind looking back.] poor heroes. [Turns away.]","Boo-hoo, poor heroes.",Tim Hedrick,Giancarlo Volpe,8.8 +9662,9662,Fire,3,Sokka's Master,4,Scene Description,Frontal view of Sokka with the others sat further behind him.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9663,9663,Fire,3,Sokka's Master,4,Katara,What's your problem? You haven't even touched your smoked sea slug.,What's your problem? You haven't even touched your smoked sea slug.,Tim Hedrick,Giancarlo Volpe,8.8 +9664,9664,Fire,3,Sokka's Master,4,Sokka,"It's just, all you guys can do this awesome bending stuff like putting out forest fires, and flying around and [Side-view of Toph, Aang and Katara.] making other stuff fly around. I can't fly around, okay? [View of Sokka from behind.] I can't do anything.","It's just, all you guys can do this awesome bending stuff like putting out forest fires, and flying around and making other stuff fly around. I can't fly around, okay? I can't do anything.",Tim Hedrick,Giancarlo Volpe,8.8 +9665,9665,Fire,3,Sokka's Master,4,Scene Description,Side-view of the group.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9666,9666,Fire,3,Sokka's Master,4,Katara,That's not true. No one can read a map like you.,That's not true. No one can read a map like you.,Tim Hedrick,Giancarlo Volpe,8.8 +9667,9667,Fire,3,Sokka's Master,4,Toph,I can't read at all!,I can't read at all!,Tim Hedrick,Giancarlo Volpe,8.8 +9668,9668,Fire,3,Sokka's Master,4,Aang,"Yeah, and who keeps us laughing with sarcastic comments all the time? [Frontal view of Katara and Aang.] I mean, look at Katara's hair, right? What's up with that?","Yeah, and who keeps us laughing with sarcastic comments all the time? I mean, look at Katara's hair, right? What's up with that?",Tim Hedrick,Giancarlo Volpe,8.8 +9669,9669,Fire,3,Sokka's Master,4,Katara,What? What's wrong with my hair? [Blushes.],What? What's wrong with my hair?,Tim Hedrick,Giancarlo Volpe,8.8 +9670,9670,Fire,3,Sokka's Master,4,Aang,[Realizing his mistake.] Nothing. I was just trying to ...,Nothing. I was just trying to ...,Tim Hedrick,Giancarlo Volpe,8.8 +9671,9671,Fire,3,Sokka's Master,4,Sokka,"Look, I appreciate the effort, [Cut to view from behind.] but the fact is each of you is so amazing and so special and I'm ... not. [Side-view close-up.] I'm just the guy in the group who's regular.","Look, I appreciate the effort, but the fact is each of you is so amazing and so special and I'm ... not. I'm just the guy in the group who's regular.",Tim Hedrick,Giancarlo Volpe,8.8 +9672,9672,Fire,3,Sokka's Master,4,Katara,"[Approaches and sits next to him.] I'm sorry you're feeling so down but I hope you know, none of us see you that way. [Frontal view of the two. Looks down for a moment before putting her hand on his shoulder.] I know something that's going to make you feel better.","I'm sorry you're feeling so down but I hope you know, none of us see you that way. I know something that's going to make you feel better.",Tim Hedrick,Giancarlo Volpe,8.8 +9673,9673,Fire,3,Sokka's Master,4,Sokka,[Side-view.] You do?,You do?,Tim Hedrick,Giancarlo Volpe,8.8 +9674,9674,Fire,3,Sokka's Master,4,Scene Description,Cut to close-up of Sokka's face as the camera quickly pans out to reveal they are inside a shop full of weapons and armor.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9675,9675,Fire,3,Sokka's Master,4,Sokka,"Shopping! [Clapping excitedly. Runs toward the camera. Cut to side-view as he approaches to view some weapons.] Maybe a little something to reinvigorate my battling. [Spots some nunchaku.] Hey, how about these? [Frontal view of Sokka. Sokka tests the nunchaku, making attacking noises, but he hits himself on the head and falls into some of the other weapons.]","Shopping! Maybe a little something to reinvigorate my battling. Hey, how about these?",Tim Hedrick,Giancarlo Volpe,8.8 +9676,9676,Fire,3,Sokka's Master,4,Scene Description,Cut to Katara trying on some gloves.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9677,9677,Fire,3,Sokka's Master,4,Aang,"[Off-screen.] What do you think? [Cut to Aang as the camera pans up to see him wearing strange, scary armor.] Pretty slick, huh? [Close-up of Katara with a scared and surprised expression. Side-view of Katara approaching Aang, holding a hand up to avoid the glare coming off Aang's helmet.] All I need to complete the outfit is a wind sword.","What do you think? Pretty slick, huh? All I need to complete the outfit is a wind sword.",Tim Hedrick,Giancarlo Volpe,8.8 +9678,9678,Fire,3,Sokka's Master,4,Katara,What's a wind sword?,What's a wind sword?,Tim Hedrick,Giancarlo Volpe,8.8 +9679,9679,Fire,3,Sokka's Master,4,Aang,"It's where I get a sword handle and then I just swing this around and bend air out like a blade. [Raises a sword handle, swishing it around like a sword.] Whoosh, whoosh, whoosh.","It's where I get a sword handle and then I just swing this around and bend air out like a blade. Whoosh, whoosh, whoosh.",Tim Hedrick,Giancarlo Volpe,8.8 +9680,9680,Fire,3,Sokka's Master,4,Katara,Yeah ... nice.,Yeah ... nice.,Tim Hedrick,Giancarlo Volpe,8.8 +9681,9681,Fire,3,Sokka's Master,4,Scene Description,"Aang begins to fall over. Katara tries to stop him from falling, but Aang and the armor fall to the floor with a loud noise, causing Katara to cover her ears.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9682,9682,Fire,3,Sokka's Master,4,Aang,I'll just stick to what I got.,I'll just stick to what I got.,Tim Hedrick,Giancarlo Volpe,8.8 +9683,9683,Fire,3,Sokka's Master,4,Scene Description,"Cut to Sokka holding a guan dao. He swings it to one side, swings it over his head and spins it in a circle. The weapon flies up toward the ceiling and Sokka puts his hands behind his back, innocently. Sokka is next seen dragging an enormous, metal club across the floor. He groans as he tries to lift it, but loses his grip and falls. Sokka is next seen holding two swords. He marches and chops downward with them. Sokka is next seen spinning a chain over his head, but he wraps the chain around himself and falls over. Sokka is seen running, carrying a very wobbly spear. Cut to close-up shot of Sokka standing up into the frame inspecting a sai, before using it as a toothpick. At that moment, something to his left gets his attention. Sokka turns to look as the camera pans round behind him. Sokka sees a sword rack on the wall, and a particular sword framed and positioned above the others. Cut close-up as the camera pans rights, showing all the details of the hilt and scabbard.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9684,9684,Fire,3,Sokka's Master,4,Sokka,[Close-up.] Ooh! [Walks to the sword. Side-view of Sokka inspecting the sword.] That's what Sokka's talking about.,Ooh! That's what Sokka's talking about.,Tim Hedrick,Giancarlo Volpe,8.8 +9685,9685,Fire,3,Sokka's Master,4,Weapons store shopkeeper,"You have a good eye. [Aerial view of Sokka as shopkeeper approaches.] That's an original from Piandao, [Katara, Toph and Aang approach.] the greatest swordsmaster and sword maker in Fire Nation history. [Close-up.] He lives in the big castle up the road from here. [Walks away.]","You have a good eye. That's an original from Piandao, the greatest swordsmaster and sword maker in Fire Nation history. He lives in the big castle up the road from here.",Tim Hedrick,Giancarlo Volpe,8.8 +9686,9686,Fire,3,Sokka's Master,4,Aang,"[Side-view of group.] That's it! That's what you needed all along, Sokka.","That's it! That's what you needed all along, Sokka.",Tim Hedrick,Giancarlo Volpe,8.8 +9687,9687,Fire,3,Sokka's Master,4,Sokka,A sword?,A sword?,Tim Hedrick,Giancarlo Volpe,8.8 +9688,9688,Fire,3,Sokka's Master,4,Aang,"Not the sword, a master. [Sokka takes the sword from the rack.] We've all had masters to help us get better. You should see if you can study with Piandao.","Not the sword, a master. We've all had masters to help us get better. You should see if you can study with Piandao.",Tim Hedrick,Giancarlo Volpe,8.8 +9689,9689,Fire,3,Sokka's Master,4,Katara,[Frontal view of Sokka with Katara behind.] That's a great idea. I could've never gotten to where I am without Master Pakku. Everyone needs a teacher.,That's a great idea. I could've never gotten to where I am without Master Pakku. Everyone needs a teacher.,Tim Hedrick,Giancarlo Volpe,8.8 +9690,9690,Fire,3,Sokka's Master,4,Toph,"[Side-view of group.] I learned from badgermoles. They don't talk, but they're still good teachers.","I learned from badgermoles. They don't talk, but they're still good teachers.",Tim Hedrick,Giancarlo Volpe,8.8 +9691,9691,Fire,3,Sokka's Master,4,Sokka,"[Close-up. Pulling out the blade, inspecting it.] It would be nice to be a master sword fighter. All right, I'll talk to him.","It would be nice to be a master sword fighter. All right, I'll talk to him.",Tim Hedrick,Giancarlo Volpe,8.8 +9692,9692,Fire,3,Sokka's Master,4,Scene Description,"The scene cuts to a shot of the top of the bars of Iroh's cell. A ray of sunlight shines through a small window. It goes to an overhead shot of Iroh lying on his back on straw mat in the corner, hands behind his head. Cut to close-up side-view of his face. The camera suddenly zooms in as his eyes open wider. Cut to frontal view as Iroh begins to do a series of sit ups, grunting as he does so. The scene cuts to a shot of Piandao's castle, located on top of a large bluff. It goes down to a side-view of Sokka at the front gates. Cut closer behind Sokka as he grabs a knocker and taps it against the large door a few times. He waits a moment and looks around, but there is no answer. Sokka knocks the door and waits again. Still receiving no answer, Sokka becomes frustrated and grabs both knockers, banging them loudly and frantically. The right door is opened by the butler, Fat, frightening Sokka.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9693,9693,Fire,3,Sokka's Master,4,Fat,[A little annoyed.] Can I help you?,Can I help you?,Tim Hedrick,Giancarlo Volpe,8.8 +9694,9694,Fire,3,Sokka's Master,4,Scene Description,The scene cuts to a close-up of Sokka still looking frightened. He quickly composes himself and assumes a more mannered persona.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9695,9695,Fire,3,Sokka's Master,4,Sokka,I've come to train with the master.,I've come to train with the master.,Tim Hedrick,Giancarlo Volpe,8.8 +9696,9696,Fire,3,Sokka's Master,4,Fat,[Side-view of both.] You should know The Master turns almost everyone away. [Holds hand out in front of Sokka.] What did you bring him to prove your worth?,You should know The Master turns almost everyone away. What did you bring him to prove your worth?,Tim Hedrick,Giancarlo Volpe,8.8 +9697,9697,Fire,3,Sokka's Master,4,Sokka,"[Frontal view.] Well, uhh ... [Feels around, patting his clothes for something to offer.]","Well, uhh ...",Tim Hedrick,Giancarlo Volpe,8.8 +9698,9698,Fire,3,Sokka's Master,4,Fat,[Frontal view.] Right ... [Shakes head sadly.] Let's get this over with.,Right ... Let's get this over with.,Tim Hedrick,Giancarlo Volpe,8.8 +9699,9699,Fire,3,Sokka's Master,4,Scene Description,"Fat gestures for Sokka to enter. Sokka steps through the gate and Fat closes the door. The scene cuts to an overhead shot of the castle courtyard as Sokka and Fat walk toward the main structure of the castle. The camera tilts up to the tallest tower. It cuts to a large room with a red carpet and tall windows, giving a view of the valley. Rows of lit candles are places on both sides of the windows. Piandao sits at a small table in front of the windows, his back to the camera. He has dark skin and wears a black cheongsam. Cut to a close-up of Piandao's hand holding a calligraphy brush and dipping it into a tray of ink, carefully holding his sleeve with the other hand. His hands move off screen and Sokka and Fat are seen in the background. The camera zooms in on Sokka as he steps forward.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9700,9700,Fire,3,Sokka's Master,4,Sokka,"Master, my name is Sokka, and I wish to be instructed in the way of the sword.","Master, my name is Sokka, and I wish to be instructed in the way of the sword.",Tim Hedrick,Giancarlo Volpe,8.8 +9701,9701,Fire,3,Sokka's Master,4,Scene Description,"The scene cuts to a shot of Piandao, his back still toward Sokka. His sword is placed next to the table.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9702,9702,Fire,3,Sokka's Master,4,Piandao,Sokka. That's an unusual name.,Sokka. That's an unusual name.,Tim Hedrick,Giancarlo Volpe,8.8 +9703,9703,Fire,3,Sokka's Master,4,Sokka,"[Frontal view. Nervously.] Oh, uh, really, uh where I come from, the Fire Nation colonies, it's a pretty normal name ... for Fire Nation colonials.","Oh, uh, really, uh where I come from, the Fire Nation colonies, it's a pretty normal name ... for Fire Nation colonials.",Tim Hedrick,Giancarlo Volpe,8.8 +9704,9704,Fire,3,Sokka's Master,4,Piandao,[Side-view. Writing calligraphy on a piece of parchment.] Let me guess. You've come hundreds of miles from your little village where you're the best swordsman in town. And you think you deserve to learn from the master.,Let me guess. You've come hundreds of miles from your little village where you're the best swordsman in town. And you think you deserve to learn from the master.,Tim Hedrick,Giancarlo Volpe,8.8 +9705,9705,Fire,3,Sokka's Master,4,Sokka,"[Frontal view.] Well, actually, I've been all over the world.","Well, actually, I've been all over the world.",Tim Hedrick,Giancarlo Volpe,8.8 +9706,9706,Fire,3,Sokka's Master,4,Piandao,"[Side-view of his arm and hand as he continues to write. Knowingly.] Yep, here we go.","Yep, here we go.",Tim Hedrick,Giancarlo Volpe,8.8 +9707,9707,Fire,3,Sokka's Master,4,Sokka,[Frontal view.] And I know one thing for sure: [Gets down on his knees and hangs his head.] I have a lot to learn.,And I know one thing for sure: I have a lot to learn.,Tim Hedrick,Giancarlo Volpe,8.8 +9708,9708,Fire,3,Sokka's Master,4,Piandao,[Shot from behind. Glancing back.] You're not doing a very good job of selling yourself.,You're not doing a very good job of selling yourself.,Tim Hedrick,Giancarlo Volpe,8.8 +9709,9709,Fire,3,Sokka's Master,4,Sokka,"[Side-view of room.] I know. Your butler told me that when I met you, I would have to prove my worth. [Close-up.] But the truth is ... I don't know if I am worthy.","I know. Your butler told me that when I met you, I would have to prove my worth. But the truth is ... I don't know if I am worthy.",Tim Hedrick,Giancarlo Volpe,8.8 +9710,9710,Fire,3,Sokka's Master,4,Piandao,"[Close-up side-view.] Hm, I see. [Smiles and turns his head. Cut to his hand picking up his sword.] Well, then, [Close-up of Sokka.] let's find out together how worthy you are.","Hm, I see. Well, then, let's find out together how worthy you are.",Tim Hedrick,Giancarlo Volpe,8.8 +9711,9711,Fire,3,Sokka's Master,4,Scene Description,"Sokka looks up as Piandao's shadow passes over him. Cut to a shot of the red carpet the end of Piandao's sword's scabbard strikes the floor. The camera quickly zooms out to a shot of Piandao standing before Sokka, sword firmly planted before him. Cut to a close-up of Piandao.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9712,9712,Fire,3,Sokka's Master,4,Piandao,I will train you.,I will train you.,Tim Hedrick,Giancarlo Volpe,8.8 +9713,9713,Fire,3,Sokka's Master,4,Scene Description,Close-up of Sokka as a huge smile spreads across his face. The camera switches to Sokka and Piandao standing in a sword fighting ring in front of the building they were in earlier. Sokka is wearing an almost identical outfit to Piandao's.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9714,9714,Fire,3,Sokka's Master,4,Piandao,[Frontal view.] The first thing you must learn is that your weapon is an extension of yourself. [Cut further away as he unsheathes his sword and begins performing a sword form.] You must think of it as another part of your own body.,The first thing you must learn is that your weapon is an extension of yourself. You must think of it as another part of your own body.,Tim Hedrick,Giancarlo Volpe,8.8 +9715,9715,Fire,3,Sokka's Master,4,Sokka,[Close-up.] Like a second head.,Like a second head.,Tim Hedrick,Giancarlo Volpe,8.8 +9716,9716,Fire,3,Sokka's Master,4,Piandao,"[Frontal view.] Well, more like an extra-long, really sharp arm. [Side-view of both. Continuing his demonstration.] The sword is a simple tool, but in the hands of a master it becomes [Close-up.] the most versatile of weapons, [Frontal view from below. Sheathes his sword and assumes a stance.] and just as the imagination is limitless, [Close-up of Sokka smiling in amazement.] so too are the possibilities of the sword.","Well, more like an extra-long, really sharp arm. The sword is a simple tool, but in the hands of a master it becomes the most versatile of weapons, and just as the imagination is limitless, so too are the possibilities of the sword.",Tim Hedrick,Giancarlo Volpe,8.8 +9717,9717,Fire,3,Sokka's Master,4,Scene Description,"Sokka nods his head in understanding. Cut to Aang, Toph, Katara, Appa, and Momo in the countryside. Appa is sleeping under the makeshift roof.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9718,9718,Fire,3,Sokka's Master,4,Aang,What should we do today?,What should we do today?,Tim Hedrick,Giancarlo Volpe,8.8 +9719,9719,Fire,3,Sokka's Master,4,Scene Description,"Cut to an overhead shot of Aang, Top, and Katara lying on their backs in a circle. Momo runs up to them and lies down next to Katara.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9720,9720,Fire,3,Sokka's Master,4,Toph,"I'm tapped out. I already picked my toes, twice.","I'm tapped out. I already picked my toes, twice.",Tim Hedrick,Giancarlo Volpe,8.8 +9721,9721,Fire,3,Sokka's Master,4,Aang,Twice?,Twice?,Tim Hedrick,Giancarlo Volpe,8.8 +9722,9722,Fire,3,Sokka's Master,4,Toph,"The first time was for cleaning, but the second time's just for the sweet picking sensation!","The first time was for cleaning, but the second time's just for the sweet picking sensation!",Tim Hedrick,Giancarlo Volpe,8.8 +9723,9723,Fire,3,Sokka's Master,4,Katara,Sokka's been in charge of the schedule. I'm not sure what we should be doing.,Sokka's been in charge of the schedule. I'm not sure what we should be doing.,Tim Hedrick,Giancarlo Volpe,8.8 +9724,9724,Fire,3,Sokka's Master,4,Toph,"[Frontal view of Aang with Toph behind. Picking her nose.] Plus, it's so hot today.","Plus, it's so hot today.",Tim Hedrick,Giancarlo Volpe,8.8 +9725,9725,Fire,3,Sokka's Master,4,Aang,[Attempting to joke.] How hot is it?,How hot is it?,Tim Hedrick,Giancarlo Volpe,8.8 +9726,9726,Fire,3,Sokka's Master,4,Toph,I dunno. Real hot?,I dunno. Real hot?,Tim Hedrick,Giancarlo Volpe,8.8 +9727,9727,Fire,3,Sokka's Master,4,Katara,"[Camera pans across to show Katara.] I-It's so hot, it's so hot ... Momo is shedding like Appa. [Pets Momo and flicks tufts of fur from her fingers.] Huh, huh?","I-It's so hot, it's so hot ... Momo is shedding like Appa. Huh, huh?",Tim Hedrick,Giancarlo Volpe,8.8 +9728,9728,Fire,3,Sokka's Master,4,Scene Description,"Aang scratches his head and Katara's joke receives no laughs, leaving her disappointed. It goes back to the overhead shot.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9729,9729,Fire,3,Sokka's Master,4,Aang,I guess the jokes don't run in the family.,I guess the jokes don't run in the family.,Tim Hedrick,Giancarlo Volpe,8.8 +9730,9730,Fire,3,Sokka's Master,4,Scene Description,Cut back to view of the countryside.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9731,9731,Fire,3,Sokka's Master,4,Katara,"Oh, everyone's a critic.","Oh, everyone's a critic.",Tim Hedrick,Giancarlo Volpe,8.8 +9732,9732,Fire,3,Sokka's Master,4,Scene Description,"Appa grunts in response. The scene cuts to a shot of Iroh hanging upside down and doing crunches, panting with effort. It switches to a shot of his feet as he hangs from the overhead bars. Cut to and zoom out from a wide shot of Iroh doing the upside down crunches in his cell. The scene shifts to Piandao and Sokka standing in front of a table inside the building. On the table is calligraphy stationary.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9733,9733,Fire,3,Sokka's Master,4,Piandao,"The warrior practices a variety of arts to keep his mind sharp and fluid. [Flattens out a piece of paper on the table.] The first you will learn is calligraphy. [Cut to his hands as Piandao delicately hands a brush to Sokka, who takes it, messing the bristles up with his thumb.] Write your name.",The warrior practices a variety of arts to keep his mind sharp and fluid. The first you will learn is calligraphy. Write your name.,Tim Hedrick,Giancarlo Volpe,8.8 +9734,9734,Fire,3,Sokka's Master,4,Sokka,[Close-up. Skeptical.] Writing my name will make me a better swordsman?,Writing my name will make me a better swordsman?,Tim Hedrick,Giancarlo Volpe,8.8 +9735,9735,Fire,3,Sokka's Master,4,Piandao,"[Takes the brush and positions it correctly in Sokka's hand. Cut to a wide shot of both.] When you write your name, you stamp the paper with your identity. You must learn to use your sword to stamp your identity on a battlefield. [Sokka holds his sleeve back. Cut to close-up of the ink as Sokka dips the brush in to it. Cut to frontal view of Sokka readying himself to paint as Piandao looks on.] Remember, you cannot take back a stroke of the brush, or a stroke of the sword.","When you write your name, you stamp the paper with your identity. You must learn to use your sword to stamp your identity on a battlefield. Remember, you cannot take back a stroke of the brush, or a stroke of the sword.",Tim Hedrick,Giancarlo Volpe,8.8 +9736,9736,Fire,3,Sokka's Master,4,Scene Description,"Sokka's hand quivers and he sweats nervously, the brush barely an inch above the paper. He scratches his head and places the tip of the brush on his chin, thinking hard about what to do.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9737,9737,Fire,3,Sokka's Master,4,Piandao,[Close-up as he moves forward.] You are getting ink on your face.,You are getting ink on your face.,Tim Hedrick,Giancarlo Volpe,8.8 +9738,9738,Fire,3,Sokka's Master,4,Sokka,"[Frontal view of both.] I am? [Looks at the brush.] I am! So this is about putting my identity on the page, right?","I am? I am! So this is about putting my identity on the page, right?",Tim Hedrick,Giancarlo Volpe,8.8 +9739,9739,Fire,3,Sokka's Master,4,Scene Description,"Piandao nods. It cuts to a close-up of Sokka. He smiles and the camera zooms out as he proceeds to brush the ink over his face. The camera tilts down as Sokka presses his face onto the paper and rolls his head around. Cut behind Sokka as he picks up the paper and shows it to Piandao, smiling cheerfully. On the paper is a large inkblot which vaguely resembles a face. Piandao simply closes his eyes in response. +The scene cuts to a shot of the main building. The camera tilts down to show Sokka and Fat facing off in the sword fighting ring, both wearing training equipment and holding wooden swords. Piandao sits at the top of the steps leading to the building, watching. Close-up of Fat as he wipes his nose as he waits for Sokka to make a move. Cut to Sokka as he lunges at Fat and thrusts his sword. Cut to side-view as Fat effortlessly parries the attack and knocks the sword from Sokka's hands. Sokka runs away in fright and Fat chases after, whacking him in the rear with the wooden sword. +The scene cuts to a shot of the sky. The camera tilts down to a blindfolded Sokka being guided through the countryside by Piandao.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9740,9740,Fire,3,Sokka's Master,4,Piandao,Landscape painting teaches a warrior to hold the lay of the land in his mind.,Landscape painting teaches a warrior to hold the lay of the land in his mind.,Tim Hedrick,Giancarlo Volpe,8.8 +9741,9741,Fire,3,Sokka's Master,4,Scene Description,"Side-view. Piandao stops Sokka, turns him to face left, and pulls off the blindfold.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9742,9742,Fire,3,Sokka's Master,4,Piandao,"In battle, you only have an instant to take everything in.","In battle, you only have an instant to take everything in.",Tim Hedrick,Giancarlo Volpe,8.8 +9743,9743,Fire,3,Sokka's Master,4,Scene Description,"Cut to a close-up of Sokka rubbing his eyes. The camera rotates around to his front as his eyes grow wide and he smiles with excitement and amazement. It cuts to a shot of Sokka and Piandao, their backs to the camera, standing before a majestic view of a mighty river flowing into a series of waterfalls that drop into a canyon. Cut back to Sokka. Piandao grabs his head and turns him away, making him sit in front of a table with a piece of paper, paint, and paint brushes.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9744,9744,Fire,3,Sokka's Master,4,Piandao,"Now, paint it.","Now, paint it.",Tim Hedrick,Giancarlo Volpe,8.8 +9745,9745,Fire,3,Sokka's Master,4,Scene Description,"Frontal view of Sokka, who gapes in disbelief. Side-view as he turns to look at the waterfall, but Piandao turns his head back.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9746,9746,Fire,3,Sokka's Master,4,Piandao,And no peeking.,And no peeking.,Tim Hedrick,Giancarlo Volpe,8.8 +9747,9747,Fire,3,Sokka's Master,4,Scene Description,"Piandao walks away as Sokka takes a brush and begins to paint the intricate view. Cut to a wide shot of the landscape. The camera pans right, toward Piandao and Sokka. Fade to a shot of Piandao's back with his sword in his hands behind his back. The camera tilts up to his front, his eyes closed in silent meditation.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9748,9748,Fire,3,Sokka's Master,4,Sokka,I'm finished!,I'm finished!,Tim Hedrick,Giancarlo Volpe,8.8 +9749,9749,Fire,3,Sokka's Master,4,Scene Description,"Piandao opens his eyes and looks at Sokka. Cut to a shot of Sokka presenting a very childish and colorful drawing of the landscape, which bears little resemblance, including a rainbow and a sun with a smiling face.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9750,9750,Fire,3,Sokka's Master,4,Piandao,[Frontal view.] You added a rainbow.,You added a rainbow.,Tim Hedrick,Giancarlo Volpe,8.8 +9751,9751,Fire,3,Sokka's Master,4,Sokka,[Frontal view. Worried.] Is that okay?,Is that okay?,Tim Hedrick,Giancarlo Volpe,8.8 +9752,9752,Fire,3,Sokka's Master,4,Scene Description,"Close-up view as Piandao sighs and shakes his head. The scene cuts to the main building. The camera tilts down to Sokka and Fat in the sword fighting ring with the training gear. Sokka thrusts forward and he and Fat begin their practice fight. Sokka fares much better than before. Frontal view as he grunts as he parries a strike and attempts to swing his wooden sword down, but is distracted.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9753,9753,Fire,3,Sokka's Master,4,Piandao,[Off-screen.] Sokka.,Sokka.,Tim Hedrick,Giancarlo Volpe,8.8 +9754,9754,Fire,3,Sokka's Master,4,Scene Description,"Cut to and zooms out to show the fighting ring with Piandao still sitting above. Sokka looks over to Piandao, giving Fat the opportunity to circle behind him and kick him in the back, causing a slightly painful fall to the ground. Cut to Sokka looking up at Piandao.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9755,9755,Fire,3,Sokka's Master,4,Piandao,[Close-up.] Concentrate on what you're doing.,Concentrate on what you're doing.,Tim Hedrick,Giancarlo Volpe,8.8 +9756,9756,Fire,3,Sokka's Master,4,Scene Description,"Cut back to Sokka, who frowns and drops his head, giving Piandao a half-hearted thumbs up. Cut to a wide shot of Piandao's castle. The camera tilts down to Sokka and Piandao walking to the top of a stairway leading down to an empty, tiled area. A small statue of a lion turtle comes into the foreground.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9757,9757,Fire,3,Sokka's Master,4,Piandao,Rock gardening teaches the warrior to manipulate his surroundings and use them to his advantage.,Rock gardening teaches the warrior to manipulate his surroundings and use them to his advantage.,Tim Hedrick,Giancarlo Volpe,8.8 +9758,9758,Fire,3,Sokka's Master,4,Scene Description,The scene cuts to a close-up of Sokka. He places a hand on his chin and thinks carefully.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9759,9759,Fire,3,Sokka's Master,4,Sokka,"Hm, manipulate them to my advantage ... oh!","Hm, manipulate them to my advantage ... oh!",Tim Hedrick,Giancarlo Volpe,8.8 +9760,9760,Fire,3,Sokka's Master,4,Scene Description,"Cut to a wide-view of the tiled area below. Piandao watches as Sokka runs down the steps. Cut to a shot of Piandao. A look of worry comes over him and the camera quickly zooms out to show Sokka rolling a huge stone across the ground. Sokka groans at the strain of it. Cut to a shot of a sheet of moss lying on a rock. Sokka appears from behind and examines its texture before taking it and running back to the other side of the area. Sokka throws the moss on the huge stone and lays down on it, sighing in relaxation. The camera quickly zooms out to a shot of Sokka lying on the easy chair he made from rocks and moss, expressing his content. Cut to a shot of Fat walking up from behind Piandao. Fat suddenly gasps in shock. It cuts to a shot of stones scattered all over the tiled floor, creating a mess. Sokka waves at Fat.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9761,9761,Fire,3,Sokka's Master,4,Sokka,"Hey, would you mind grabbing a cold drink for me?","Hey, would you mind grabbing a cold drink for me?",Tim Hedrick,Giancarlo Volpe,8.8 +9762,9762,Fire,3,Sokka's Master,4,Scene Description,Cut back to Fat and Piandao. Fat gasps and turns to Piandao.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9763,9763,Fire,3,Sokka's Master,4,Piandao,"I'll take a slice of lemon in mine, please.","I'll take a slice of lemon in mine, please.",Tim Hedrick,Giancarlo Volpe,8.8 +9764,9764,Fire,3,Sokka's Master,4,Scene Description,"Fat groans in resignation, hangs his head, and walks off to fetch the drinks. Cut to Sokka and Fat dueling in the sword fighting ring again, Piandao sitting in the foreground. Sokka and Fat thrust and parry a few strikes. Sokka swings his sword in a circle and tries to hit Fat's leg, but Fat pulls his leg up and he avoids the attack. Cut to a close-up of the two from behind Sokka. The scene goes into slow motion as Fat swings his sword and Sokka parries it. Sokka returns the strike and is also parried. The camera cuts to behind Fat as Sokka continues his offense with four quick thrusts. Fat blocks all the attacks and tries to attack Sokka. He misses, and Sokka uses this opportunity to slip the blade of his wooden sword under Fat's hand and fling the wooden sword from it. Fat is shocked and raises his hands in defeat as Sokka thrusts his sword forward and places the blade on the side of Fat's neck, ending the duel. Sokka steps away from Fat, puts his hands together and bows to Piandao, while Fat frowns angrily at him. It cuts to a shot of Piandao sipping a drink from a cup with a slice of lemon stuck on it. +The scene cuts to a shot of the outside of the Fire Nation prison and zooms in. Cut to the inside of Iroh's cell and zoom in on Iroh doing push-ups on his knuckles, clapping his hands together at the apex of each push. Cut to a shot of Warden Poon sitting and eating a piece of bread. He hears the clapping and goes to investigate. Cut to Iroh continuing to do push-ups. Cut to Warden Poon walking toward the door to Iroh's cell. Cut to a shot from inside the cell of him looking in through the barred window in the door.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9765,9765,Fire,3,Sokka's Master,4,Warden Poon,What's going on in there?,What's going on in there?,Tim Hedrick,Giancarlo Volpe,8.8 +9766,9766,Fire,3,Sokka's Master,4,Scene Description,Cut to a shot of Iroh sitting against the wall and lazily clapping his hands side to side with a delirious expression. Cut back to Warden Poon.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9767,9767,Fire,3,Sokka's Master,4,Warden Poon,Crazy old man.,Crazy old man.,Tim Hedrick,Giancarlo Volpe,8.8 +9768,9768,Fire,3,Sokka's Master,4,Scene Description,"Warden Poon leaves. Cut back to Iroh. He claps a few more times and smiles when he is sure the warden is gone, ceasing his clapping and pushing back the stray hair hanging over his face. The scene cuts to a far shot of the Avatar group's campsite near the river.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9769,9769,Fire,3,Sokka's Master,4,Katara,So where are we going next? [Cut to a shot of Aang and Katara sitting around a map of the Fire Nation. Pointing to the map.] We're starting from here ...,So where are we going next? We're starting from here ...,Tim Hedrick,Giancarlo Volpe,8.8 +9770,9770,Fire,3,Sokka's Master,4,Aang,"[Pointing at a different spot.] No, we're over on this island.","No, we're over on this island.",Tim Hedrick,Giancarlo Volpe,8.8 +9771,9771,Fire,3,Sokka's Master,4,Toph,[Lying down.] You noodle-brains don't know what you're doing. I miss Sokka.,You noodle-brains don't know what you're doing. I miss Sokka.,Tim Hedrick,Giancarlo Volpe,8.8 +9772,9772,Fire,3,Sokka's Master,4,Katara,"Ooh, I got one, if you miss him so much, why don't you marry him?","Ooh, I got one, if you miss him so much, why don't you marry him?",Tim Hedrick,Giancarlo Volpe,8.8 +9773,9773,Fire,3,Sokka's Master,4,Scene Description,"Katara grins at her joke. The camera quickly zooms out and a groan is heard in the background. Toph rolls over on her side, away from Katara. A winged insect buzzes in front of Aang, who simply blows it away with a quick blast of wind from his breath. Cut to a shot of the sword fighting ring in front of the main building at Piandao's castle. The camera tilts down to Sokka and Piandao sitting on the ground.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9774,9774,Fire,3,Sokka's Master,4,Piandao,You've had a good first day of training.,You've had a good first day of training.,Tim Hedrick,Giancarlo Volpe,8.8 +9775,9775,Fire,3,Sokka's Master,4,Sokka,[Frontal view.] I have? But I thought I messed up every single thing we worked on!,I have? But I thought I messed up every single thing we worked on!,Tim Hedrick,Giancarlo Volpe,8.8 +9776,9776,Fire,3,Sokka's Master,4,Piandao,[Frontal view of feet. Camera pans up to his face.] You messed things up in a very special way. You are ready for a real sword.,You messed things up in a very special way. You are ready for a real sword.,Tim Hedrick,Giancarlo Volpe,8.8 +9777,9777,Fire,3,Sokka's Master,4,Sokka,[Frontal view. Excited.] Are you giving me one of yours?,Are you giving me one of yours?,Tim Hedrick,Giancarlo Volpe,8.8 +9778,9778,Fire,3,Sokka's Master,4,Piandao,[Frontal view.] No.,No.,Tim Hedrick,Giancarlo Volpe,8.8 +9779,9779,Fire,3,Sokka's Master,4,Scene Description,"Frontal view of Sokka, who groans disappointedly and slumps down.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9780,9780,Fire,3,Sokka's Master,4,Piandao,"[Frontal view. Camera zooms in on his face.] Your sword must be an extension of yourself. So tomorrow, you will make your own sword.","Your sword must be an extension of yourself. So tomorrow, you will make your own sword.",Tim Hedrick,Giancarlo Volpe,8.8 +9781,9781,Fire,3,Sokka's Master,4,Scene Description,Cut to and zoom in on Sokka. He immediately perks up and grins. Cut to a shot of a rack of swords. Weapons are hung all about the room. The camera pans left to Sokka and Piandao standing at a table. On the table are several bricks of steel.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9782,9782,Fire,3,Sokka's Master,4,Piandao,Choosing the correct material is the most important step in crafting a sword. [Close-up and zooms out showing the steel in front of him.] You must trust your steel with your life. Choose carefully.,Choosing the correct material is the most important step in crafting a sword. You must trust your steel with your life. Choose carefully.,Tim Hedrick,Giancarlo Volpe,8.8 +9783,9783,Fire,3,Sokka's Master,4,Scene Description,Sokka takes two bricks and weighs them in each hand. Sokka sets them down and takes another brick. He sniffs it and bites the brick to test its quality. Cut to side-view as Sokka puts the brick down and puts a hand to his chin thoughtfully. An idea comes to his mind and he turns to Piandao.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9784,9784,Fire,3,Sokka's Master,4,Sokka,"Master, [Side-view of Sokka looking at Piandao.] would it be possible for me to leave and bring back a special material for my sword?","Master, would it be possible for me to leave and bring back a special material for my sword?",Tim Hedrick,Giancarlo Volpe,8.8 +9785,9785,Fire,3,Sokka's Master,4,Piandao,[Side-view of Piandao looking at Sokka.] I wouldn't have it any other way.,I wouldn't have it any other way.,Tim Hedrick,Giancarlo Volpe,8.8 +9786,9786,Fire,3,Sokka's Master,4,Scene Description,"Piandao smiles at Sokka. Cut to Aang, Katara, Toph and Appa all asleep and sitting around the map as they were before. Toph suddenly sits up.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9787,9787,Fire,3,Sokka's Master,4,Toph,[Excitedly.] Sokka's coming!,Sokka's coming!,Tim Hedrick,Giancarlo Volpe,8.8 +9788,9788,Fire,3,Sokka's Master,4,Scene Description,"Aang and Katara wake up, gasping and smiling excitedly. Cut to a shot of Sokka walking up to the top of the hill.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9789,9789,Fire,3,Sokka's Master,4,Sokka,"Hey, guys. What are you doing?","Hey, guys. What are you doing?",Tim Hedrick,Giancarlo Volpe,8.8 +9790,9790,Fire,3,Sokka's Master,4,Scene Description,"Aang, Katara, and Toph all jump at Sokka and give him a group hug.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9791,9791,Fire,3,Sokka's Master,4,Aang,Sokka!,Sokka!,Tim Hedrick,Giancarlo Volpe,8.8 +9792,9792,Fire,3,Sokka's Master,4,Toph,You're back!,You're back!,Tim Hedrick,Giancarlo Volpe,8.8 +9793,9793,Fire,3,Sokka's Master,4,Katara,[Close-up of Sokka and Katara with Aang in the foreground.] We missed you so much!,We missed you so much!,Tim Hedrick,Giancarlo Volpe,8.8 +9794,9794,Fire,3,Sokka's Master,4,Aang,[Close-up as he steps back slightly.] Say something funny!,Say something funny!,Tim Hedrick,Giancarlo Volpe,8.8 +9795,9795,Fire,3,Sokka's Master,4,Sokka,[Close-up. Confused.] Funny how?,Funny how?,Tim Hedrick,Giancarlo Volpe,8.8 +9796,9796,Fire,3,Sokka's Master,4,Scene Description,Cut to overhead view as Aang and Katara both laugh heartily. Toph smiles and crosses her arms.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9797,9797,Fire,3,Sokka's Master,4,Sokka,[Side-view of Sokka with Toph in the foreground. To Toph.] What's their deal?,What's their deal?,Tim Hedrick,Giancarlo Volpe,8.8 +9798,9798,Fire,3,Sokka's Master,4,Toph,"[Turns away, blushing and smiling.] I don't know. They missed you or something. I didn't care.",I don't know. They missed you or something. I didn't care.,Tim Hedrick,Giancarlo Volpe,8.8 +9799,9799,Fire,3,Sokka's Master,4,Sokka,"[Overhead side-view of group.] Thanks. That warms my heart. Anyway, I need some help.","Thanks. That warms my heart. Anyway, I need some help.",Tim Hedrick,Giancarlo Volpe,8.8 +9800,9800,Fire,3,Sokka's Master,4,Scene Description,"Cut to a shot of the gang running over to the edge of the crater created the night before. Cut to a shot of the group, their backs to the camera, as they stare at the meteorite at the bottom of the crater. +The camera zooms in on the meteorite before cutting to an overhead shot of Iroh sitting in his cell, looking through the bars in the ceiling. Cut to a close-up of Iroh's eyes. They are closed for a brief moment before opening. Iroh leans forward and puts his head on the floor. The camera cuts to a shot of Iroh's legs rising into the air and tilts down as Iroh stands on his hands. Close-up of Iroh sweating heavily, as he begins to perform hand-stand push-ups. +The camera cuts to outside the cell as it zooms out. The scene cuts to a shot of Sokka, Aang, and Katara pushing the meteorite up the slope to Piandao's castle. Toph is behind the meteorite, pushing it forward with her earthbending. Fade to an overhead shot of the group and the meteorite at the large doors. Sokka runs to the doors. Cut to behind Sokka as he bangs both knockers frantically. Piandao opens one of the doors almost immediately and steps out.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9801,9801,Fire,3,Sokka's Master,4,Piandao,Who's this?,Who's this?,Tim Hedrick,Giancarlo Volpe,8.8 +9802,9802,Fire,3,Sokka's Master,4,Sokka,"[Overhead view from behind Piandao.] Oh, these are my friends. Just other good Fire Nation folks. [They bow to Piandao. Cut to Piandao, who bows back. The camera zooms out to show the meteorite and Sokka.] Do you think we can make a sword out of a meteorite?","Oh, these are my friends. Just other good Fire Nation folks. Do you think we can make a sword out of a meteorite?",Tim Hedrick,Giancarlo Volpe,8.8 +9803,9803,Fire,3,Sokka's Master,4,Scene Description,Piandao lays a hand on the meteorite and examines it.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9804,9804,Fire,3,Sokka's Master,4,Piandao,[Close-up.] We'll make a sword unlike any other in the world.,We'll make a sword unlike any other in the world.,Tim Hedrick,Giancarlo Volpe,8.8 +9805,9805,Fire,3,Sokka's Master,4,Scene Description,"Cut to a shot of a fiery forge. The camera zooms out and turns left to Sokka bare-chested and shoveling coal into it, before switching to Piandao and Fat, who is carrying a large sledge hammer. The camera cuts and tilts up to a shot of Sokka holding a chisel against the meteorite while Fat hammers it, Piandao watching in the back. Cut to a shot of Sokka tapping the chisel with a smaller hammer. A piece of the meteorite breaks off and falls to the floor. Sokka takes a moment to wipe the sweat from his brow. Cut to a shot of a wooden bucket filled with the meteorite fragments. Fat takes the bucket and the camera follows him as he brings it over to the forge. Sokka is seen working the bellows diligently. The camera zooms in as Katara and Aang peer in at Sokka from around the corner. Fade to a shot of the bucket sitting in the fires of the forge. Cut to a shot of Sokka holding his legs to his chest, asleep. He wakes up and looks behind him at the forge. He stands up and resumes shoveling in coal. The camera zooms out to show Piandao observing Sokka from outside. Fade to a shot of the bucket being pulled from the forge by Sokka with iron tongs. He carefully positions the liquid space metal over a mold of a blade and pours it in. Cut to a shot of the red hot metal being hammered against a stone. Cut to Piandao as he raises the hot blade and looks carefully at it. An excited Sokka can be seen behind him. Cut to a shot from inside a trough of water as Piandao dips the blade in. The blade makes the water bubble and boil as it hisses and cools, turning black. +Fade to a shot of the outside of the main building, the camera tilting down to the open doors. Cut to a shot of the inside. Sokka is seated in front of Piandao. Aang, Katara, and Toph sit behind Sokka while Fat stands behind Piandao, holding Sokka's sword.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9806,9806,Fire,3,Sokka's Master,4,Piandao,"Sokka, when you first arrived, you were so unsure. You even seemed down on yourself. [Frontal view of Piandao as the camera pans across to the right revealing Fat.] But I saw something in you right away. [Side-view of Sokka.] I saw a heart as strong as a lion turtle, and twice as big. [Side-view of the room.] And as we trained, it wasn't your skills that impressed me. [Fat kneels to Piandao and gives him the sword. Frontal view of Piandao as he turns back to face the camera.] No, it certainly wasn't your skills. [Brief close-up of Sokka, who looks down in shame, before cutting back to a close-up of Piandao.] You showed something beyond that. [Unsheathes the sword, showing its black blade. Cut to side-view of Piandao as the camera zooms out and follows the blade as he strikes out to the side.] Creativity, versatility, [Frontal view of Sokka with the sword in the foreground.] intelligence ... [Sokka looks down.] these are the traits that define a great swordsman. [Side-view of Piandao as he sheathes the sword.] And these are the traits that define you. [Kneels and presents the sword to Sokka. Cut to frontal view of Sokka, from Piandao's perspective, who takes it.] You told me you didn't know if you were worthy, [Close-up shot as he stands up.] but I believe that you are more worthy than any man I have ever trained.","Sokka, when you first arrived, you were so unsure. You even seemed down on yourself. But I saw something in you right away. I saw a heart as strong as a lion turtle, and twice as big. And as we trained, it wasn't your skills that impressed me. No, it certainly wasn't your skills. You showed something beyond that. Creativity, versatility, intelligence ... these are the traits that define a great swordsman. And these are the traits that define you. You told me you didn't know if you were worthy, but I believe that you are more worthy than any man I have ever trained.",Tim Hedrick,Giancarlo Volpe,8.8 +9807,9807,Fire,3,Sokka's Master,4,Scene Description,Cut to a shot of the sword in Sokka's hands. The camera tilts up to Sokka as he lowers his head in shame.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9808,9808,Fire,3,Sokka's Master,4,Sokka,"I'm sorry, Master. You're wrong. [Close-up of Piandao.] I am not worthy. [Side-view of Sokka.] I'm not who you think I am. I'm not from the Fire Nation. I'm from the Southern Water Tribe. [Cut to side-view of Aang, Katara, and Toph who all gawk at Sokka with shock and disbelief. Close-up side-view of Piandao and Sokka.] I lied so that I could learn swordsmanship from you. I'm sorry. [Offering his sword back.]","I'm sorry, Master. You're wrong. I am not worthy. I'm not who you think I am. I'm not from the Fire Nation. I'm from the Southern Water Tribe. I lied so that I could learn swordsmanship from you. I'm sorry.",Tim Hedrick,Giancarlo Volpe,8.8 +9809,9809,Fire,3,Sokka's Master,4,Piandao,"[Close-up.] I'm sorry, too.","I'm sorry, too.",Tim Hedrick,Giancarlo Volpe,8.8 +9810,9810,Fire,3,Sokka's Master,4,Scene Description,"Piandao quickly turns back around and swings his sword at Sokka. Cut to Sokka who stands and avoids the attack. Side-view of Sokka who, after unsheathing his sword, blocks a thrust from Piandao. Side-view of Aang, Katara, and Toph who get up and go to help Sokka. Cut to frontal view of the three that quickly zooms out to show Sokka who raises his hand to stop them.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9811,9811,Fire,3,Sokka's Master,4,Sokka,"No, this is my fight, alone.","No, this is my fight, alone.",Tim Hedrick,Giancarlo Volpe,8.8 +9812,9812,Fire,3,Sokka's Master,4,Scene Description,"Cut to a close-up of Piandao before cutting to Iroh's cell. Warden Poon enters, carrying a tray of food. The camera pans right to a close-up of Iroh.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9813,9813,Fire,3,Sokka's Master,4,Warden Poon,"You used to be the pride of the Fire Nation. Our top general, the Dragon of the West. Now, look at you. [Drops the food to the floor. Cut to aerial shot of the floor as the trays contents go everywhere. Iroh grabs a green fruit from behind the bars. Cut to close-up of Iroh on the ground as he moves the fruit to his mouth.] Look what you've become.","You used to be the pride of the Fire Nation. Our top general, the Dragon of the West. Now, look at you. Look what you've become.",Tim Hedrick,Giancarlo Volpe,8.8 +9814,9814,Fire,3,Sokka's Master,4,Scene Description,"Iroh watches the warden leave and stands up. Cut to frontal view as he puts the fruit to his mouth and holds it in his teeth as he begins to untie his belt. Close-up side-view as his shirt comes off and a thick, folded sheet that had been covering his belly falls to the floor. Cut to shot of the sheet hitting the ground and the camera tilts up to reveal Iroh's new, incredibly buff physique. Iroh takes the fruit from his mouth, bites into it, and jumps up. Cut to close-up shot above the cell bars as Iroh grabs a bar above with one hand. Side-view of Iroh who takes another bite of the fruit and begins doing one handed pull-ups. Cut to and zoom out on a side-view of Iroh and his cell. +The scene cuts to a shot of Sokka and Piandao squared off in the sword fighting ring. Aang, Katara, Toph, and Fat watch from the upper part of the main building. Cut to and zoom in on Sokka, ready with his black sword. Cut to a shot of the tip of Piandao's sword pointed at the ground. The camera tilts up to him, his other hand raised and pointed. Panning side-view of the others who watch nervously. +Cut to a panning right close-up of Sokka, before switching to a panning left close-up of Piandao. Piandao lunges forward and begins his attack. Frontal view of Piandao as Sokka backs away. Cut to a side-view of the scene as Piandao strikes four times, each one parried by Sokka. Cut behind Piandao as Sokka attempts a strike of his own. Piandao moves his head out of the way and stabs at Sokka, who sways back and avoids the attack; Piandao sweeps his sword at Sokka's legs, but Sokka jumps over it and lunges at Piandao, thrusting his sword forward. Side-view of Piandao who deflects Sokka's blade and pushes him back. Cut to behind Sokka as he is knocked back several feet and slides over the ground. Frontal view of Sokka as he flips himself backward and grabs a post of a small bridge to regain his balance. He quickly climbs onto the post and leaps to the other one just as Piandao thrusts his sword at him, the camera pans to the left to follow Sokka. Piandao spins around and tries to slice Sokka's foot. Cut to Sokka's feet as he jumps away. Wide shot of entrance to the bridge as Sokka jumps to the other rail of the bridge. Piandao stabs at Sokka again, but Sokka jumps off the rail and rolls to the side. Piandao strikes again, but Sokka rolls under the blade. Frontal view of Sokka as he blocks Piandao's next strike. The camera pans to the left as Sokka runs to the left and jumps on to the railing again. Cut to a view shot of bridge as Sokka leaps away to the end of the bridge, dodging as Piandao swings his sword at him.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9815,9815,Fire,3,Sokka's Master,4,Piandao,Excellent! [Close-up.] Using your superior agility against an older opponent ... smart.,Excellent! Using your superior agility against an older opponent ... smart.,Tim Hedrick,Giancarlo Volpe,8.8 +9816,9816,Fire,3,Sokka's Master,4,Scene Description,"Piandao charges at Sokka again. Close-up of Sokka as he readies his sword. Shot from behind Sokka as Piandao strikes at him and pushes him up a large stone stairway with the camera panning down to follow their movements. Cut to behind Piandao, titled up toward the stairs, as Sokka blocks all of the attacks, but the force pushes him against the wall of the stairway. Cut to Sokka as his back hits the wall and he deflects a thrust from Piandao upward, and ducks as the blade slices through the part of the wall above his shoulder. Cut to Piandao as he swings his sword around his head and body in two large circles. Frontal view of Sokka as he barely dodges Piandao's blade, cart wheeling to the right as the camera pans with him. Camera pans back left as Sokka spins back around, hops a foot off the ground and pushes off the wall with his legs, propelling himself forward, sword extended. Side-view as Piandao deflects the attack. Wide-view of the stairs as Sokka rolls across the stair to the other wall, climbing to the top. Frontal view of the wall as Sokka reaches the top.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9817,9817,Fire,3,Sokka's Master,4,Piandao,Good use of terrain ... fighting from the high ground.,Good use of terrain ... fighting from the high ground.,Tim Hedrick,Giancarlo Volpe,8.8 +9818,9818,Fire,3,Sokka's Master,4,Scene Description,"Sokka swings at Piandao below him, who parries and swings at Sokka. Piandao thrusts his sword at Sokka, who pins the blade under his own blade, weighted down under his feet. Cut to Sokka standing on the swords before switching back to Piandao, who tries to wrench his sword free. Cut to Piandao's feet as he steps forward and the camera pans up as he pushes his sword upward, throwing Sokka off. View from behind Sokka as he grunts, stumbling back into a tall stalk of bamboo. Cut to a shot of Toph, Aang, and Katara all wincing at the sight. Cut back to Sokka as he looks up fearfully, strands of hair falling over his face. Frontal view of Piandao as he raises his sword and charges at Sokka. Cut back to Sokka as he ducks Piandao's attack that slices through the bamboo just above his head. He turns to run off into the bamboo thicket. Frontal view of Sokka as he runs away. Cut to frontal shot of Sokka running through the bamboo thicket, slicing through as many surrounding stalks of bamboo that he can. As Piandao chases after, the stalks all begin to fall. Close-up of Piandao skillfully cutting through the bamboo. Side-view of Sokka as he runs through the bamboo and turns, grabbing a stalk and pulling it. He lets it go just as Piandao catches up. Cut to the stalk whipping around. Cut to side-view of Piandao cutting through it with ease as Sokka tries to attack from behind.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9819,9819,Fire,3,Sokka's Master,4,Piandao,"Yes, use your surroundings. [Piandao deflects the attacks as Sokka runs away. Sokka grabs two stalks and pulls them back before releasing them. They whip around at Piandao, who slices through them.] Make them fight for you!","Yes, use your surroundings. Make them fight for you!",Tim Hedrick,Giancarlo Volpe,8.8 +9820,9820,Fire,3,Sokka's Master,4,Scene Description,"Cut to a shot of Sokka running out of the bamboo and back toward the sword fighting ring, screaming in terror and Piandao not far behind. The camera shifts to Sokka's front. He is very frightened and takes a look behind, but Piandao has run off to the side and out of sight. Side-view of Sokka who turns to look ahead only for Piandao to strike out in front of him, trying to make him run into it. However, Sokka leans back. The scene goes into slow motion and the camera cuts to an overhead close-up of Sokka sliding under the blade. The scene comes back to normal speed and cuts to a frontal view as Sokka stands back up and stumbles forward, stabbing his sword into the ground to stop his fall. Cut behind Sokka as he uses his momentum to swing his sword back around, flinging dirt and dust at Piandao. The scene goes into slow motion again and the camera cuts to a close-up of Piandao as the dirt hits him in the face, blinding him. The scene comes back to normal speed and cuts to a frontal shot of Piandao as he spins around and positions his sword behind his back to defend any sneak attacks. Cut to a close-up of Piandao, his eyes closed.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9821,9821,Fire,3,Sokka's Master,4,Piandao,Very resourceful.,Very resourceful.,Tim Hedrick,Giancarlo Volpe,8.8 +9822,9822,Fire,3,Sokka's Master,4,Scene Description,"Piandao turns his head and listens for any sounds. Cut close-up to Sokka and zooms out as he nervously raises his sword defensively. He slowly tries to sneak away, careful not to make any noises that would give away his location. Cut to a twig on the ground as Sokka steps on it, snapping it. Close-up of Piandao who turns his head toward Sokka when he hears it. Camera zooms out as he twirls his sword around into an offensive position and charges forward. Close-up of Sokka who takes a step back as Piandao closes in. Side-view of the fight as Piandao strikes. Sokka parries the attack. Cut behind Sokka as Piandao catches Sokka's blade with his own. He pushes Sokka's sword around in two circles and flings Sokka's sword out of his hands. Side-view of the fight as Sokka watches his sword fly into the air and stab into the ground several feet away. +Cut to side-view of Sokka looking worried as Piandao moves to attack. The scene goes into slow motion and cuts to a side-view of the two as Piandao swings his sword in large, horizontal arc at Sokka. Sokka is not cut by the blade, but is instead hit in the chest by Piandao's arms, knocking him on his back. Cut to Sokka landing on the ground and he looks up fearfully. Cut to frontal view of Piandao from the ground as Piandao turns and points his sword at Sokka's head. Cut to Sokka who leans back in fear. Frontal view of Aang, Katara, and Toph as they all jump from the building to the ground and run toward Sokka and Piandao. Cut to a close-up of Piandao. The camera zooms out as he swings his sword away from Sokka, halting Aang, Katara, and Toph.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9823,9823,Fire,3,Sokka's Master,4,Piandao,"Excellent work, Sokka.","Excellent work, Sokka.",Tim Hedrick,Giancarlo Volpe,8.8 +9824,9824,Fire,3,Sokka's Master,4,Scene Description,"Cut to a shot of Sokka squinting at Piandao curiously. Cut to a shot of Piandao with Aang, Katara, and Toph in the background. He raises his hand and the camera tilts up slightly as he signals to Fat. Cut to a frontal view of Fat as he flings the scabbard of Piandao's sword toward him. Frontal view of the still blinded Piandao as he turns and points his sword upward. Side-view as the scabbard flies right onto the blade.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9825,9825,Fire,3,Sokka's Master,4,Piandao,I think I'm a little old to be fighting the Avatar.,I think I'm a little old to be fighting the Avatar.,Tim Hedrick,Giancarlo Volpe,8.8 +9826,9826,Fire,3,Sokka's Master,4,Scene Description,"Cut to a shot of Aang, Katara, and Toph in their bending stances. They come out of their stances and Aang and Katara look at each other in surprise.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9827,9827,Fire,3,Sokka's Master,4,Aang,How did you know?,How did you know?,Tim Hedrick,Giancarlo Volpe,8.8 +9828,9828,Fire,3,Sokka's Master,4,Scene Description,The scene cuts to a shot of Piandao and Sokka. Sokka stands back up as Fat walks on screen carrying a drink and a white cloth.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9829,9829,Fire,3,Sokka's Master,4,Piandao,"Oh, I've been around a while. You pick things up. [Wipes the dirt off his face with the cloth.] Of course, I knew from the beginning that Sokka was Water Tribe. [Close-up of Sokka.] You might want to think of a better Fire Nation cover name. [Camera zooms out to show Piandao.] Try ""Lee."" There's a million ""Lees"". [Sips his drink.].","Oh, I've been around a while. You pick things up. Of course, I knew from the beginning that Sokka was Water Tribe. You might want to think of a better Fire Nation cover name. Try ""Lee."" There's a million ""Lees"". .",Tim Hedrick,Giancarlo Volpe,8.8 +9830,9830,Fire,3,Sokka's Master,4,Scene Description,"Cut to a frontal shot of Aang, Katara and Toph with Fat and Piandao facing toward them, their backs to the camera.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9831,9831,Fire,3,Sokka's Master,4,Katara,But why would you agree to train someone from the Water Tribe?,But why would you agree to train someone from the Water Tribe?,Tim Hedrick,Giancarlo Volpe,8.8 +9832,9832,Fire,3,Sokka's Master,4,Piandao,"[Close-up.] The way of the sword doesn't belong to any one nation. [Frontal shot of Piandao, Sokka and Fat as the other three look on, their backs to the camera.] Knowledge of the arts belongs to us all. [Gives his sword to Fat. Cut to Sokka's sword as he pulls it out of the ground. Cut to side-view of Piandao and Sokka as Piandao gives the sword back to Sokka.] Sokka, you must continue your training on your own. [Close-up.] If you stay on this path, I know that one day [Close-up.] you will become an even greater master than I am.","The way of the sword doesn't belong to any one nation. Knowledge of the arts belongs to us all. Sokka, you must continue your training on your own. If you stay on this path, I know that one day you will become an even greater master than I am.",Tim Hedrick,Giancarlo Volpe,8.8 +9833,9833,Fire,3,Sokka's Master,4,Scene Description,"Cut to a shot of Aang, Katara, and Sokka all smiling warmly. Cut back to Sokka and Piandao as they bow to each other. The scene cuts to a wide shot of the group leaving Piandao's castle through the front gates. It cuts to a closer shot of the group from the front. Fat is running up to them from behind.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9834,9834,Fire,3,Sokka's Master,4,Fat,"Wait! [Everyone turns to him. Side-view.] The Master wanted you to have this, as something to remember him by.","Wait! The Master wanted you to have this, as something to remember him by.",Tim Hedrick,Giancarlo Volpe,8.8 +9835,9835,Fire,3,Sokka's Master,4,Scene Description,"Cut to a close-up of Fat giving a small, brown bag to Sokka. Overhead view as they all bow as a farewell and Fat walks back to the castle. The camera zooms in as Sokka opens the bag and pulls out a white lotus Pai Sho tile.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9836,9836,Fire,3,Sokka's Master,4,Sokka,It's a Pai Sho tile.,It's a Pai Sho tile.,Tim Hedrick,Giancarlo Volpe,8.8 +9837,9837,Fire,3,Sokka's Master,4,Scene Description,Cuts to a close-up of the tile in Sokka's hands.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9838,9838,Fire,3,Sokka's Master,4,Aang,The White Lotus. Huh.,The White Lotus. Huh.,Tim Hedrick,Giancarlo Volpe,8.8 +9839,9839,Fire,3,Sokka's Master,4,Katara,What does it mean?,What does it mean?,Tim Hedrick,Giancarlo Volpe,8.8 +9840,9840,Fire,3,Sokka's Master,4,Sokka,"[Cut to close-up of Aang and Sokka as Fat is seen in the background closing the doors. Sokka and Aang look back and the camera zooms in on the doors, clearly showing a lotus design on the doors surrounding the Fire Nation symbol.] I have no idea. [Overhead view. Sokka reaches into his pocket.] Ooh, that reminds me! Toph, I thought you might like this [Close-up view of Sokka offering her a chunk of the meteorite.] since you've probably never had a chance to bend space earth before.","I have no idea. Ooh, that reminds me! Toph, I thought you might like this since you've probably never had a chance to bend space earth before.",Tim Hedrick,Giancarlo Volpe,8.8 +9841,9841,Fire,3,Sokka's Master,4,Toph,"[Taking the rock. Side-view.] Sweet! [Cut to a close-up of the space earth floating between Toph's hands. She shapes it into a swirl, a star, and a splatter shaped similar to the Nickelodeon logo.] Check this out.",Sweet! Check this out.,Tim Hedrick,Giancarlo Volpe,8.8 +9842,9842,Fire,3,Sokka's Master,4,Scene Description,Cuts to a shot of the group as they walk off down the trail.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9843,9843,Fire,3,Sokka's Master,4,Katara,"You know, I don't think there's such a thing as ""space earth"". If it's from space, then it's not really ""earth"".","You know, I don't think there's such a thing as ""space earth"". If it's from space, then it's not really ""earth"".",Tim Hedrick,Giancarlo Volpe,8.8 +9844,9844,Fire,3,Sokka's Master,4,Sokka,Must you ruin everything?,Must you ruin everything?,Tim Hedrick,Giancarlo Volpe,8.8 +9845,9845,Fire,3,Sokka's Master,4,Scene Description,"Cut to a wide, overhead shot of Piandao's castle and Team Avatar walking away.",NA,Tim Hedrick,Giancarlo Volpe,8.8 +9846,9846,Fire,3,Sokka's Master,4,Katara,I can't believe I missed you.,I can't believe I missed you.,Tim Hedrick,Giancarlo Volpe,8.8 +9847,9847,Fire,3,Sokka's Master,4,Scene Description,Fade to white. Fade to end credits.,NA,Tim Hedrick,Giancarlo Volpe,8.8 +9848,9848,Fire,3,The Beach,5,Scene Description,"The episode opens to a body of water, a small ferry cruising through the ocean. The head of a large sea lion emerges from the water and the creature is shown to be pulling the boat. As the camera pans out, we see Azula, who is leaning her back against a railing with her arms crossed, and Ty Lee, who is looking out in front of them.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9849,9849,Fire,3,The Beach,5,Ty Lee,"I'm so excited to spend the weekend on Ember Island. [Cuts to close-up of her, Azula, and Zuko and Mai, who are revealed to have been sitting on a bench behind the two girls.] It's going to be great to hang out on the beach and do nothing. [Places her hands behind her head, imitating a relaxed position.]",I'm so excited to spend the weekend on Ember Island. It's going to be great to hang out on the beach and do nothing.,Katie Mattila,Joaquim Dos Santos,8.5 +9850,9850,Fire,3,The Beach,5,Zuko,[Cut to closer view of Zuko and Mai. Angrily.] Doing nothing is a waste of time. [Rises from his seat next to Mai.] We're being sent away on a forced vacation. [Walks over and grips the railing of the boat.] I feel like a child.,Doing nothing is a waste of time. We're being sent away on a forced vacation. I feel like a child.,Katie Mattila,Joaquim Dos Santos,8.5 +9851,9851,Fire,3,The Beach,5,Azula,"[Frontal view.] Lighten up. So Dad wants to meet with his advisers alone, without anyone else around. Don't take it personally.","Lighten up. So Dad wants to meet with his advisers alone, without anyone else around. Don't take it personally.",Katie Mattila,Joaquim Dos Santos,8.5 +9852,9852,Fire,3,The Beach,5,Ty Lee,[Wide-view of the group from behind Azula and Ty Lee. To Azula.] Doesn't your family have a house on Ember Island?,Doesn't your family have a house on Ember Island?,Katie Mattila,Joaquim Dos Santos,8.5 +9853,9853,Fire,3,The Beach,5,Azula,[Turns head toward Ty Lee; nostalgically.] We used to come every summer when we were kids.,We used to come every summer when we were kids.,Katie Mattila,Joaquim Dos Santos,8.5 +9854,9854,Fire,3,The Beach,5,Ty Lee,That must have been fun!,That must have been fun!,Katie Mattila,Joaquim Dos Santos,8.5 +9855,9855,Fire,3,The Beach,5,Zuko,[Frontal view. Distantly.] That was a long time ago.,That was a long time ago.,Katie Mattila,Joaquim Dos Santos,8.5 +9856,9856,Fire,3,The Beach,5,Scene Description,"Cut to a wide shot of the ocean as the camera pans right across various charming houses on Ember Island's shore, many elegant-looking, before stopping at a dock. The boat enters the frame and moves toward the dock. Cut to frontal view of the group. Cut to frontal view of Lo and Li on the docks as the boat moves to block the view slightly. Cut to a wide shot from behind Lo and Li as the boat docks. Cut to frontal view of Lo and Li.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9857,9857,Fire,3,The Beach,5,Lo and Li,"Welcome to Ember Island, kids.","Welcome to Ember Island, kids.",Katie Mattila,Joaquim Dos Santos,8.5 +9858,9858,Fire,3,The Beach,5,Scene Description,"The camera pans upward to the smallest of the beach houses overlooking the water. Cut to frontal view of the gang looking on, disappointed. Cut to the house's interior. Cut close-up as one of the sisters enters, followed by Azula. The camera cuts to an overhead view just as Ty Lee enters, showing the group from behind. Cut to side-view of Zuko and Mai who turn to face the camera.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9859,9859,Fire,3,The Beach,5,Zuko,[Whispering.] It smells like old lady in here.,It smells like old lady in here.,Katie Mattila,Joaquim Dos Santos,8.5 +9860,9860,Fire,3,The Beach,5,Mai,"[Sarcastically.] Gee, I wonder why.","Gee, I wonder why.",Katie Mattila,Joaquim Dos Santos,8.5 +9861,9861,Fire,3,The Beach,5,Ty Lee,[Side-view of Ty Lee as she inspects a painting of two young women in yellow bikinis posing back-to-back. Lo and Li approach. Raises arm and points at it.] Who are these two beautiful women? [Cut to close-up of the painting as she speaks.],Who are these two beautiful women?,Katie Mattila,Joaquim Dos Santos,8.5 +9862,9862,Fire,3,The Beach,5,Lo,"[Camera pans out to Lo and Li, now standing in front of the painting.] Can't you tell?",Can't you tell?,Katie Mattila,Joaquim Dos Santos,8.5 +9863,9863,Fire,3,The Beach,5,Li,[They both imitate the painting.] It's Lo and me.,It's Lo and me.,Katie Mattila,Joaquim Dos Santos,8.5 +9864,9864,Fire,3,The Beach,5,Lo,[At the same time.] It's Li and me.,It's Li and me.,Katie Mattila,Joaquim Dos Santos,8.5 +9865,9865,Fire,3,The Beach,5,Scene Description,"Cut to frontal view of the gang with the two sisters in the foreground. Everyone looks at them, disturbed. Zuko covers his mouth with his hand, about to vomit. Cut to close-up aerial view of a bed with pink sheets as Ty Lee lies down on it.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9866,9866,Fire,3,The Beach,5,Ty Lee,"Ooh, I love the seashell bedspread. [Rubs the pillow admiringly.]","Ooh, I love the seashell bedspread.",Katie Mattila,Joaquim Dos Santos,8.5 +9867,9867,Fire,3,The Beach,5,Mai,[Frontal view.] Are you serious? It looks like the beach threw up all over it.,Are you serious? It looks like the beach threw up all over it.,Katie Mattila,Joaquim Dos Santos,8.5 +9868,9868,Fire,3,The Beach,5,Li,"[Cut to panning shot of the room. Ty Lee sits lays on the bed in the foreground as the camera pans right to show Lo and Li standing to the left of Zuko, Mai, and Azula.] We know you're upset that you were forced to come here this weekend.",We know you're upset that you were forced to come here this weekend.,Katie Mattila,Joaquim Dos Santos,8.5 +9869,9869,Fire,3,The Beach,5,Lo,But Ember Island is a magical place. [Side-view. Pans around to reveal both sisters.] Keep an open mind.,But Ember Island is a magical place. Keep an open mind.,Katie Mattila,Joaquim Dos Santos,8.5 +9870,9870,Fire,3,The Beach,5,Li,Give it a chance.,Give it a chance.,Katie Mattila,Joaquim Dos Santos,8.5 +9871,9871,Fire,3,The Beach,5,Lo and Li,[In unison.] And it can help you understand yourselves and each other.,And it can help you understand yourselves and each other.,Katie Mattila,Joaquim Dos Santos,8.5 +9872,9872,Fire,3,The Beach,5,Lo,"[Cut to close-up of three rocks on a table. Grabs a smooth rock. Cut to frontal view of the sisters from behind Azula, Ty Lee, and Zuko.] The beach has a special way ...",The beach has a special way ...,Katie Mattila,Joaquim Dos Santos,8.5 +9873,9873,Fire,3,The Beach,5,Li,[Takes the rock from Lo. Cut close-up as she speaks.] ... of smoothing even the most ragged edges.,... of smoothing even the most ragged edges.,Katie Mattila,Joaquim Dos Santos,8.5 +9874,9874,Fire,3,The Beach,5,Scene Description,Frontal view of the trio as Ty Lee joins them and Azula yawns. Cut to frontal view of the sisters.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9875,9875,Fire,3,The Beach,5,Lo and Li,[They clap twice.] Time to hit the beach!,Time to hit the beach!,Katie Mattila,Joaquim Dos Santos,8.5 +9876,9876,Fire,3,The Beach,5,Scene Description,They tear off their robes to reveal that they are wearing loosely-fitting bathing suits. Cut to frontal view of Mai and Zuko. Mai covers Zuko's eyes from the sight. Cut to a panning shot of the ground up to reveal a secluded hot spring.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9877,9877,Fire,3,The Beach,5,Toph,"Aang, I know swimming is fun and all, [Cut to frontal view of Katara wringing water out of her hair, Aang swimming in the background, and Sokka fishing. Toph sits with her back to the camera in the foreground.] but do you really think you should be exposing yourself like that? [Frontal view.] Cover up.","Aang, I know swimming is fun and all, but do you really think you should be exposing yourself like that? Cover up.",Katie Mattila,Joaquim Dos Santos,8.5 +9878,9878,Fire,3,The Beach,5,Aang,"[Frontal view as he swims along in the water. Defensively, but innocently.] What? I'm wearing trunks.",What? I'm wearing trunks.,Katie Mattila,Joaquim Dos Santos,8.5 +9879,9879,Fire,3,The Beach,5,Toph,I know. [Frontal view of Katara looking on as Toph sits in the background.] It's your tattoos I'm worried about. What if someone sees you?,I know. It's your tattoos I'm worried about. What if someone sees you?,Katie Mattila,Joaquim Dos Santos,8.5 +9880,9880,Fire,3,The Beach,5,Katara,[Turns to Toph.] There are walls all around us. It's completely safe.,There are walls all around us. It's completely safe.,Katie Mattila,Joaquim Dos Santos,8.5 +9881,9881,Fire,3,The Beach,5,Scene Description,"Cut to Aang and Momo from behind as Aang continues to float back. Momo chitters and he and Aang both notice something. Cut to frontal view of a slide-like tunnel of water. Aang smiles and jumps over a rock to ride down the tunnel. Cut inside the tunnel as Aang slides down the water, cheering in the process. The camera pans right as he goes around a bend. Cut to close-up of Aang cheering as Momo holds on. Cut to frontal view of Fire Nation soldier sitting down fanning himself with another soldier flossing his toes with the back edge of his sword in the foreground.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9882,9882,Fire,3,The Beach,5,Fire Nation watchman #1,[Completely unamused.] This has got to be the most boring job in the Fire Nation. [Close-up of the other watchman who sniffs the back edge of his sword.] Nothing ever happens.,This has got to be the most boring job in the Fire Nation. Nothing ever happens.,Katie Mattila,Joaquim Dos Santos,8.5 +9883,9883,Fire,3,The Beach,5,Aang,"[While sliding down the tunnel.] Whoa! [The guard turns his head and hides. Cut to a wide-view of the area as the two guards hide and one of them looks throw his telescope. Cut to a view through the telescope as Aang emerges from the water, with Momo.] Let's go again! [Momo chitters in response as Aang jumps out of the water. The camera pans as the telescope follows Aang's movements up the cliff. Cut to frontal view of the guards watching and shaking in horror. Cut to side-view from the other side of the rock.]",Whoa! Let's go again!,Katie Mattila,Joaquim Dos Santos,8.5 +9884,9884,Fire,3,The Beach,5,Fire Nation watchman #1,The Avatar's alive! We'd better send a messenger hawk to the Fire Lord. [He gets up and moves off camera. Cut to a frontal view of a messenger hawk as the watchman opens the cage. The messenger hawk steps on to the watchman's arm. Cut to behind the messenger hawk as the watchman attaches a message with a black ribbon around it. Cut to frontal view as the hawk takes off and the camera pans out slightly to reveal both watchmen.],The Avatar's alive! We'd better send a messenger hawk to the Fire Lord.,Katie Mattila,Joaquim Dos Santos,8.5 +9885,9885,Fire,3,The Beach,5,Fire Nation watchman #2,"A black ribbon message. [Wide shot from behind the two guards as the hawk flies away. Enthusiastically.] This is so exciting! [The watchmen turn to each other, the other not amused as the second one chuckles.]",A black ribbon message. This is so exciting!,Katie Mattila,Joaquim Dos Santos,8.5 +9886,9886,Fire,3,The Beach,5,Scene Description,"Cut to shot of the ocean as the camera pans right to reveal a beach on Ember Island. Cut closer to a frontal view of a teen jumping into the water to surf. Cut to side-view of Zuko, Mai, Ty Lee, and Azula are walking on the beach. Azula is carrying a blanket, Ty Lee, a bag, and Zuko and Mai, an umbrella. Cut to close-up of Mai and Zuko. Cut to a sandcastle being built by two kids as Azula steps on it. Cut to frontal view of Azula and Ty Lee as Azula looks down at them intimidatingly. Cut to side-view as the boys run away screaming. Azula kicks a bucket out of the way. Cut to frontal view of Ty Lee, who is approached by a boy.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9887,9887,Fire,3,The Beach,5,Ember Island teenager #1,"Hey, you need some help unpacking?","Hey, you need some help unpacking?",Katie Mattila,Joaquim Dos Santos,8.5 +9888,9888,Fire,3,The Beach,5,Ty Lee,"Sure. Thanks. [Hands him her bag, the sheer weight of which causes him to fall over.]",Sure. Thanks.,Katie Mattila,Joaquim Dos Santos,8.5 +9889,9889,Fire,3,The Beach,5,Scene Description,"Cut to close-up aerial view of the teen as he ""helps"" Ty Lee unpack by throwing out random contents of the bag until he finally finds a blanket. The camera pans out to show Azula watching as the teen begins laying it out for Ty Lee. Azula looks away in annoyance and jealousy as Ty Lee sits on the blanket.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9890,9890,Fire,3,The Beach,5,Ty Lee,"[Close-up. Squinting from the sun. She gestures with her hand.] Could you scooch just a little bit more to the- [Cut to side-view looking up at the boy, who moves to the side to block the sun and give her shade. Cut back to close-up of Ty Lee.] Perfect. [Winks.]",Could you scooch just a little bit more to the- Perfect.,Katie Mattila,Joaquim Dos Santos,8.5 +9891,9891,Fire,3,The Beach,5,Scene Description,"Cut to frontal view of Mai and Zuko under an umbrella, sitting on their own blanket. A boy runs past, laughing. Cut to a close view of Zuko from above as he turns to see a shell.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9892,9892,Fire,3,The Beach,5,Zuko,[Picks up shell and turns to Mai.] Here. [Closer frontal view of both.] This is for you. [Offers it to her.],Here. This is for you.,Katie Mattila,Joaquim Dos Santos,8.5 +9893,9893,Fire,3,The Beach,5,Mai,Why would I want that?,Why would I want that?,Katie Mattila,Joaquim Dos Santos,8.5 +9894,9894,Fire,3,The Beach,5,Zuko,"I saw it, and I thought it was pretty. Don't girls like stuff like this?","I saw it, and I thought it was pretty. Don't girls like stuff like this?",Katie Mattila,Joaquim Dos Santos,8.5 +9895,9895,Fire,3,The Beach,5,Mai,[Scoffs.] Maybe stupid girls.,Maybe stupid girls.,Katie Mattila,Joaquim Dos Santos,8.5 +9896,9896,Fire,3,The Beach,5,Zuko,[Angrily.] Forget it! [Throws the shell away.],Forget it!,Katie Mattila,Joaquim Dos Santos,8.5 +9897,9897,Fire,3,The Beach,5,Scene Description,"Cut to a view of the ocean with another teenager with his back to the camera. The shell lands next to him. He turns and looks toward Ty Lee. Cut to over the shoulder view of Ty Lee from a distance. The camera zooms in on Ty Lee who moves her hair away, in slow motion, as sparkles appear around her. Cut to close-up of the teenager smiling broadly. Cut to frontal view of the first teenager still standing over Ty Lee as the second teen quickly moves in front of Ty Lee, offering the shell.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9898,9898,Fire,3,The Beach,5,Ty Lee,[Frontal view. Takes the shell.] Wow! Thanks. This is so pretty.,Wow! Thanks. This is so pretty.,Katie Mattila,Joaquim Dos Santos,8.5 +9899,9899,Fire,3,The Beach,5,Ember Island teenager #2,[Frontal view of the two teens from the side of Ty Lee. The first teen showing his anger.] Not as pretty as you are.,Not as pretty as you are.,Katie Mattila,Joaquim Dos Santos,8.5 +9900,9900,Fire,3,The Beach,5,Ember Island teenager #1,[Moves to the side of the other teen; annoyed.] That shell's not so great!,That shell's not so great!,Katie Mattila,Joaquim Dos Santos,8.5 +9901,9901,Fire,3,The Beach,5,Ty Lee,[Close-up. Blocks her eyes.] Ahem! Shade. Shade!,Ahem! Shade. Shade!,Katie Mattila,Joaquim Dos Santos,8.5 +9902,9902,Fire,3,The Beach,5,Scene Description,Cut to frontal view of Mai sitting under the umbrella. Zuko appears and sits back down next to Mai with two ice cream cones.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9903,9903,Fire,3,The Beach,5,Zuko,"[Closer frontal view of the two.] I thought, since it's so hot ... here. [Offers an ice cream cone, which falls out and onto Mai's lap.]","I thought, since it's so hot ... here.",Katie Mattila,Joaquim Dos Santos,8.5 +9904,9904,Fire,3,The Beach,5,Mai,[Sarcastically.] Thanks. This is really refreshing.,Thanks. This is really refreshing.,Katie Mattila,Joaquim Dos Santos,8.5 +9905,9905,Fire,3,The Beach,5,Scene Description,Cut to a view of the sky as a teenager appears and leaps to hit a ball. Cut to side-view of some kids playing kuai ball. The camera zooms out as the ball is sent flying. The camera zooms out to show Azula watching. Cut to an extreme close-up as she gives a sly smile. Cut to frontal view with Mai and Zuko sitting behind Azula.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9906,9906,Fire,3,The Beach,5,Azula,"[To the people playing.] Hey, beach bums, we're playing next. [Turns to Ty Lee, who is being fanned by two teenagers while a third boy holds up a blanket to give her shade. The camera zooms in on her.] Ty Lee, get over here, now!","Hey, beach bums, we're playing next. Ty Lee, get over here, now!",Katie Mattila,Joaquim Dos Santos,8.5 +9907,9907,Fire,3,The Beach,5,Scene Description,Ty Lee does a handstand and walks on her hands to Azula. Cut to side-view of Zuko standing. Zuko takes off his shirt and throws it down as doves fly in the background. Cut to frontal view of a group of girls looking at him dreamily while blushing and giggling. Cut to a view of the beach as the camera pans left to show the group now on the kuai ball field. Cut to a view of the sky as the foursome enters the frame and gets together in a team huddle.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9908,9908,Fire,3,The Beach,5,Azula,"See that girl with the silly pigtails? When she runs toward the ball, [Cuts to a girl with pigtails juggling the ball with her legs.] there's just the slightest hesitation of her left foot. I'm willing to bet a childhood injury has weakened her. [Cut to a view through the foursome as they look on.] Keep serving the ball to her left, and we'll destroy her and the rest of her team. [Cut to frontal view as they turn to face the other team.] Dismissed.","See that girl with the silly pigtails? When she runs toward the ball, there's just the slightest hesitation of her left foot. I'm willing to bet a childhood injury has weakened her. Keep serving the ball to her left, and we'll destroy her and the rest of her team. Dismissed.",Katie Mattila,Joaquim Dos Santos,8.5 +9909,9909,Fire,3,The Beach,5,Scene Description,"The camera cuts and zooms out to show the two teams at the ready. Cut to frontal view of Azula as she throws the ball into the air, the camera pans up to follow it. Azula leaps up and kicks the ball. Cut to frontal view of the other team as the ball goes flying past them. Cut to frontal view of Zuko as he sprints forward. Cut to a shot further away as he approaches the camera and slides down to kick the ball up. Azula runs forward and hits the ball away as it falls. Cut to a teenage girl who attempts to dive for the ball, but misses. Cut to three other teens as the ball flies over one of them. Cut to side-view of two teenage boys sitting down as the ball rolls to a stop next to them. Cut to Ty Lee as she leaps up and kicks the ball down, and lands on the net. Cut back to the two boys, Chan and Ruon-Jian, with a close-up on Chan. Cut to frontal shot of Mai as she runs forward. Cut to another frontal shot as she kicks the ball. Cut back to Chan and Ruon-Jian again, Chan thoughtfully rubs his chin. Cut to aerial shot of the kuai ball field as Azula jumps on Zuko for a boost and kicks the ball. Cut to a close-up side-view of the ball as it rockets forward. The ball expands slightly before cutting to a wide side-view of the entire field and the ball explodes, setting the net on fire. Cut to a view of the opposing team as the net burns in the foreground.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9910,9910,Fire,3,The Beach,5,Azula,"[Frontal view, camera zooms in, through the squares of the net; evilly.] Yes! We defeated you for all time! You will never rise from the ashes of your shame and humiliation! [Frontal view of Ty Lee, Mai, Zuko, and Azula. To Zuko, Mai, and Ty Lee; calmly.] Well. That was fun.",Yes! We defeated you for all time! You will never rise from the ashes of your shame and humiliation! Well. That was fun.,Katie Mattila,Joaquim Dos Santos,8.5 +9911,9911,Fire,3,The Beach,5,Chan,[Camera zooms out slightly as Chan and Ruon-Jian approach.] I'm having a party tonight. [Frontal view.] You should come by.,I'm having a party tonight. You should come by.,Katie Mattila,Joaquim Dos Santos,8.5 +9912,9912,Fire,3,The Beach,5,Ty Lee,Sure. [Close-up.] I love parties.,Sure. I love parties.,Katie Mattila,Joaquim Dos Santos,8.5 +9913,9913,Fire,3,The Beach,5,Ruon-Jian,"[Frontal view of Ruon-Jian and Chan. About Mai.] Your friend can come, too.","Your friend can come, too.",Katie Mattila,Joaquim Dos Santos,8.5 +9914,9914,Fire,3,The Beach,5,Azula,"[Cut to Ty Lee smiling as the camera zooms out to show Azula approaching. Slightly angered.] Uh ... What about me and my brother? Aren't you going to invite us? [Frontal view of Chan and Ruon-Jian, who look at each other.] You don't know who we are, do you?","Uh ... What about me and my brother? Aren't you going to invite us? You don't know who we are, do you?",Katie Mattila,Joaquim Dos Santos,8.5 +9915,9915,Fire,3,The Beach,5,Chan,Don't you know who we are? We're Chan and Ruon-Jian.,Don't you know who we are? We're Chan and Ruon-Jian.,Katie Mattila,Joaquim Dos Santos,8.5 +9916,9916,Fire,3,The Beach,5,Ruon-Jian,Yeah.,Yeah.,Katie Mattila,Joaquim Dos Santos,8.5 +9917,9917,Fire,3,The Beach,5,Scene Description,"Frontal view of Ty Lee and Azula as Zuko starts walking toward them aggressively, but is stopped by Azula.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9918,9918,Fire,3,The Beach,5,Chan,"[Frontal view.] But, fine, you're invited. Just so you know, though, some of the most important teenagers in the Fire Nation are gonna be at this party, so try and act normal.","But, fine, you're invited. Just so you know, though, some of the most important teenagers in the Fire Nation are gonna be at this party, so try and act normal.",Katie Mattila,Joaquim Dos Santos,8.5 +9919,9919,Fire,3,The Beach,5,Azula,[Close-up. Smiles sinisterly.] We'll do our best.,We'll do our best.,Katie Mattila,Joaquim Dos Santos,8.5 +9920,9920,Fire,3,The Beach,5,Scene Description,"Cut to wide-view of the beach house. Cut inside, aerial view of the group eating with Lo and Li.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9921,9921,Fire,3,The Beach,5,Zuko,Why didn't you tell those guys who we were?,Why didn't you tell those guys who we were?,Katie Mattila,Joaquim Dos Santos,8.5 +9922,9922,Fire,3,The Beach,5,Azula,I guess I was intrigued. [Frontal view of Azula and Ty Lee from between Zuko and Mai.] I'm so used to people worshiping us.,I guess I was intrigued. I'm so used to people worshiping us.,Katie Mattila,Joaquim Dos Santos,8.5 +9923,9923,Fire,3,The Beach,5,Ty Lee,They should.,They should.,Katie Mattila,Joaquim Dos Santos,8.5 +9924,9924,Fire,3,The Beach,5,Azula,"Yes, I know, and I love it. But, for once, I just wanted to see how people would treat us if they didn't know who we were.","Yes, I know, and I love it. But, for once, I just wanted to see how people would treat us if they didn't know who we were.",Katie Mattila,Joaquim Dos Santos,8.5 +9925,9925,Fire,3,The Beach,5,Li,"[Side-view.] Like waves washing away the footprints on the sand, [Frontal view of Mai and Zuko.] Ember Island gives everyone a clean slate.","Like waves washing away the footprints on the sand, Ember Island gives everyone a clean slate.",Katie Mattila,Joaquim Dos Santos,8.5 +9926,9926,Fire,3,The Beach,5,Lo,[Aerial view from behind Zuko and Mai showing the entire group.] Ember Island reveals the true you.,Ember Island reveals the true you.,Katie Mattila,Joaquim Dos Santos,8.5 +9927,9927,Fire,3,The Beach,5,Lo and Li,"[They stand up, clap, snap their fingers twice each, and point upward.] To the party!",To the party!,Katie Mattila,Joaquim Dos Santos,8.5 +9928,9928,Fire,3,The Beach,5,Scene Description,"Cut to a aerial view of a river as the messenger hawk sent by the guards flies past. Cut to a frontal view of the hawk as a raven hawk appears from behind it. Cut to aerial view looking down at the messenger hawk with the raven hawk in the foreground. Cut to a close-up side-view of the raven hawk before it dives down. Cut to frontal view as the raven hawk continues to dive, spreading its talons. Cut to wide frontal view of the messenger hawk as it is attacked by the raven hawk. The raven hawk ties the messenger hawk up with the black ribbon and it falls to the ground. Cut further away as the messenger hawk continues to fall and the raven hawk dives after it. Cut to a frontal view of the messenger hawk struggling on the ground. The raven hawk approaches and lands nearby, as the camera zooms out slightly. The raven hawk steals the message and takes off. Cut to a view of the sky as the raven hawk appears and flies down to land on the metal arm of the assassin with a third eye tattoo on his forehead; the camera pans down with the raven hawk. The assassin moves his arm toward him and the camera pans right. Cut to a close-up of the raven hawk presenting him with the message. He takes the message and the camera cuts to a frontal view as he reads it. The camera cuts to a closer view of his face as he moves the letter in front of the camera and burns right through the middle of it. The camera zooms in through the hole slightly to show his face. +Cut to a frontal view of a beach house. Cut to a close-up of a door knocker being used by Azula. The door opens to reveal Chan.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9929,9929,Fire,3,The Beach,5,Chan,[Confused.] Um ... You're a little early. No one's here yet.,Um ... You're a little early. No one's here yet.,Katie Mattila,Joaquim Dos Santos,8.5 +9930,9930,Fire,3,The Beach,5,Azula,"[Frontal view.] I heard you telling someone you'd be partying from dusk 'till dawn. It's dusk, so we're here.","I heard you telling someone you'd be partying from dusk 'till dawn. It's dusk, so we're here.",Katie Mattila,Joaquim Dos Santos,8.5 +9931,9931,Fire,3,The Beach,5,Chan,[Frontal view.] But that's just an expression.,But that's just an expression.,Katie Mattila,Joaquim Dos Santos,8.5 +9932,9932,Fire,3,The Beach,5,Azula,"[Frontal view.] We are the perfect party guests. We arrive right on time, because we are very punctual.","We are the perfect party guests. We arrive right on time, because we are very punctual.",Katie Mattila,Joaquim Dos Santos,8.5 +9933,9933,Fire,3,The Beach,5,Scene Description,"Cut to a frontal view of Chan, who shrugs, and gestures them to follow as he turns away. Azula and Ty Lee enter first as the camera cuts inside to a wide-view of the room.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9934,9934,Fire,3,The Beach,5,Chan,"All right, listen. My dad's an admiral. He has no idea I'm having this party, [View from behind. He turns to Azula.] so don't mess anything up.","All right, listen. My dad's an admiral. He has no idea I'm having this party, so don't mess anything up.",Katie Mattila,Joaquim Dos Santos,8.5 +9935,9935,Fire,3,The Beach,5,Azula,"[Close-up as she smiles. Side-view.] That's a sharp outfit, Chan. Careful. [Close-up.] You could puncture the hull of an empire-class Fire Nation battleship, leaving thousands to drown at sea, [Side-view. Points at Chan's outfit.] because it's so sharp.","That's a sharp outfit, Chan. Careful. You could puncture the hull of an empire-class Fire Nation battleship, leaving thousands to drown at sea, because it's so sharp.",Katie Mattila,Joaquim Dos Santos,8.5 +9936,9936,Fire,3,The Beach,5,Chan,[Awkwardly.] Um ... thanks.,Um ... thanks.,Katie Mattila,Joaquim Dos Santos,8.5 +9937,9937,Fire,3,The Beach,5,Scene Description,"Chan walks away. Cut to a close-up of Azula, whose smile changes to a look of disappointment. Cut to a view of Ruon-Jian through a mirror he is using to fix his hair. The camera zooms out as he notices the group. The camera cuts further away as he turns away. Azula turns to look at him but carries on. Ty Lee and Zuko follow her.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9938,9938,Fire,3,The Beach,5,Ruon-Jian,"[Casually.] Hey! First ones here, huh?","Hey! First ones here, huh?",Katie Mattila,Joaquim Dos Santos,8.5 +9939,9939,Fire,3,The Beach,5,Zuko,"[Side-view of Zuko and Mai walking.] He thinks he's so great. [To Mai.] Well, what do you think of him?","He thinks he's so great. Well, what do you think of him?",Katie Mattila,Joaquim Dos Santos,8.5 +9940,9940,Fire,3,The Beach,5,Mai,I don't have any opinion about him. I hardly know him.,I don't have any opinion about him. I hardly know him.,Katie Mattila,Joaquim Dos Santos,8.5 +9941,9941,Fire,3,The Beach,5,Zuko,"You like him, don't you? [Mai sighs and walks away.]","You like him, don't you?",Katie Mattila,Joaquim Dos Santos,8.5 +9942,9942,Fire,3,The Beach,5,Scene Description,"Zuko glares at Ruon-Jian. Cut to frontal view of Zuko staring at Ruon-Jian, before he walks away. Cut to a side-view of food on a table. The camera pans up to show the party has begun as folk music plays and people are talking in the background. Cut to a frontal view of two teens.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9943,9943,Fire,3,The Beach,5,Ember Island teenager #2,So how do you know Ty Lee?,So how do you know Ty Lee?,Katie Mattila,Joaquim Dos Santos,8.5 +9944,9944,Fire,3,The Beach,5,Ember Island teenager #3,I met her at the beach today. She was pretty impressed by a sand pagoda that I made for her.,I met her at the beach today. She was pretty impressed by a sand pagoda that I made for her.,Katie Mattila,Joaquim Dos Santos,8.5 +9945,9945,Fire,3,The Beach,5,Ember Island teenager #1,"[Camera zooms out slightly.] Well, I met her first.","Well, I met her first.",Katie Mattila,Joaquim Dos Santos,8.5 +9946,9946,Fire,3,The Beach,5,Scene Description,More teens appear the sides to form a circle. Cut to a frontal view of Ty Lee showing her surrounded by five teens.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9947,9947,Fire,3,The Beach,5,Ty Lee,"[Nervously.] Look, i-it doesn't matter who I met first, 'cause I like you all.","Look, i-it doesn't matter who I met first, 'cause I like you all.",Katie Mattila,Joaquim Dos Santos,8.5 +9948,9948,Fire,3,The Beach,5,Ember Island teenager #2,[Frontal view.] But which one of us do you like?,But which one of us do you like?,Katie Mattila,Joaquim Dos Santos,8.5 +9949,9949,Fire,3,The Beach,5,Ember Island teenager #1,Yeah.,Yeah.,Katie Mattila,Joaquim Dos Santos,8.5 +9950,9950,Fire,3,The Beach,5,Ember Island teenager #3,Tell us.,Tell us.,Katie Mattila,Joaquim Dos Santos,8.5 +9951,9951,Fire,3,The Beach,5,Ty Lee,"[Frontal view.] I don't know! I don't know! [She kicks and punches out. Cut to behind the teens as they fall over after being chi blocked. Ty Lee cartwheels over the teens. Side-view of Azula as Ty Lee approaches.] Oh, I'm glad you're here. Those boys won't leave me alone. I guess they all just like me too much.","I don't know! I don't know! Oh, I'm glad you're here. Those boys won't leave me alone. I guess they all just like me too much.",Katie Mattila,Joaquim Dos Santos,8.5 +9952,9952,Fire,3,The Beach,5,Azula,"Come on, Ty Lee. You can't be this ignorant.","Come on, Ty Lee. You can't be this ignorant.",Katie Mattila,Joaquim Dos Santos,8.5 +9953,9953,Fire,3,The Beach,5,Ty Lee,[Close-up.] What are you talking about?,What are you talking about?,Katie Mattila,Joaquim Dos Santos,8.5 +9954,9954,Fire,3,The Beach,5,Azula,"[Frontal view over Ty Lee's shoulder.] Those boys only like you because you make it so easy for them. You're not a challenge. You're a tease. It's not like they actually care who you are. [Close-up of Ty Lee, who starts sobbing. Side-view of the two. Azula changes to a softer and gentler tone.] Okay, okay, calm down. I didn't mean what I said. [Frontal view over Ty Lee's shoulder.] Look, maybe I just said it because I was a little ... [Whispers.] jealous.","Those boys only like you because you make it so easy for them. You're not a challenge. You're a tease. It's not like they actually care who you are. Okay, okay, calm down. I didn't mean what I said. Look, maybe I just said it because I was a little ... jealous.",Katie Mattila,Joaquim Dos Santos,8.5 +9955,9955,Fire,3,The Beach,5,Ty Lee,"[Frontal view over Azula's shoulder.] What? You're jealous of me? But you're the most beautiful, smartest, perfect girl in the world.","What? You're jealous of me? But you're the most beautiful, smartest, perfect girl in the world.",Katie Mattila,Joaquim Dos Santos,8.5 +9956,9956,Fire,3,The Beach,5,Azula,"[Turns away.] Well, you're right about all those things. [Cut to panning shot of the room.] But, for some reason, when I meet boys, they act as if I'm going to do something horrible to them.","Well, you're right about all those things. But, for some reason, when I meet boys, they act as if I'm going to do something horrible to them.",Katie Mattila,Joaquim Dos Santos,8.5 +9957,9957,Fire,3,The Beach,5,Ty Lee,"[Frontal view of Azula's shoulder. Giggling.] But you probably would do something horrible to them. I'm sure they're just intimidated by you. Okay, look, if you want a boy to like you, [Close-up.] just look at him and smile a lot and laugh at everything he says even if it's not funny.","But you probably would do something horrible to them. I'm sure they're just intimidated by you. Okay, look, if you want a boy to like you, just look at him and smile a lot and laugh at everything he says even if it's not funny.",Katie Mattila,Joaquim Dos Santos,8.5 +9958,9958,Fire,3,The Beach,5,Azula,"[Close-up.] Well, that sounds really shallow and stupid ... [Turns to Ty Lee.] Let's try it.","Well, that sounds really shallow and stupid ... Let's try it.",Katie Mattila,Joaquim Dos Santos,8.5 +9959,9959,Fire,3,The Beach,5,Ty Lee,"[Side-view.] Okay. [Deep voice, imitating a boy.] Hey there, sweet sugar cakes. How you liking this party?","Okay. Hey there, sweet sugar cakes. How you liking this party?",Katie Mattila,Joaquim Dos Santos,8.5 +9960,9960,Fire,3,The Beach,5,Scene Description,"Close-up of Azula, who laughs loudly. Cut to side-view that zooms out and shows the entire party stopping to stare at her. Cut to a frontal view of some teens looking on. Cut to frontal view of Mai and Zuko sitting on a bench. A teen walks past.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9961,9961,Fire,3,The Beach,5,Mai,I'm bored.,I'm bored.,Katie Mattila,Joaquim Dos Santos,8.5 +9962,9962,Fire,3,The Beach,5,Zuko,I know.,I know.,Katie Mattila,Joaquim Dos Santos,8.5 +9963,9963,Fire,3,The Beach,5,Mai,I'm hungry.,I'm hungry.,Katie Mattila,Joaquim Dos Santos,8.5 +9964,9964,Fire,3,The Beach,5,Zuko,So what?,So what?,Katie Mattila,Joaquim Dos Santos,8.5 +9965,9965,Fire,3,The Beach,5,Mai,"So, find me some food.","So, find me some food.",Katie Mattila,Joaquim Dos Santos,8.5 +9966,9966,Fire,3,The Beach,5,Zuko,Sure. [Stands up and walks away.],Sure.,Katie Mattila,Joaquim Dos Santos,8.5 +9967,9967,Fire,3,The Beach,5,Scene Description,"Cut to frontal view of Chan, who is talking to a girl. Azula approaches.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9968,9968,Fire,3,The Beach,5,Azula,"Chan, I'm ready for a tour of the house.","Chan, I'm ready for a tour of the house.",Katie Mattila,Joaquim Dos Santos,8.5 +9969,9969,Fire,3,The Beach,5,Scene Description,"Chan rubs the back of his head and hands the girl he is talking to his cup, leaving her upset. Azula places her cup on the girl's head before they walk away, angering the girl. Cut to a side-view of them walking out on to a balcony overlooking the ocean.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9970,9970,Fire,3,The Beach,5,Chan,Is this your first time on Ember Island?,Is this your first time on Ember Island?,Katie Mattila,Joaquim Dos Santos,8.5 +9971,9971,Fire,3,The Beach,5,Azula,No. I used to come here years ago.,No. I used to come here years ago.,Katie Mattila,Joaquim Dos Santos,8.5 +9972,9972,Fire,3,The Beach,5,Chan,"[Side-view.] It's a great place, if you like sand. [Close-up of Azula, who laughs. Side-view.] Yeah, it's like, welcome to Sandy Land!","It's a great place, if you like sand. Yeah, it's like, welcome to Sandy Land!",Katie Mattila,Joaquim Dos Santos,8.5 +9973,9973,Fire,3,The Beach,5,Scene Description,They both laugh. Cut to close-up of Chan laughing before he stops to smile and move toward Azula. Cut to frontal view as Chan stops to stand next to her.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +9974,9974,Fire,3,The Beach,5,Azula,Your arms look so strong.,Your arms look so strong.,Katie Mattila,Joaquim Dos Santos,8.5 +9975,9975,Fire,3,The Beach,5,Chan,"Yeah, I know. [He flexes his muscles and they kiss. Close-up of Chan after they kiss.] You're pretty.","Yeah, I know. You're pretty.",Katie Mattila,Joaquim Dos Santos,8.5 +9976,9976,Fire,3,The Beach,5,Azula,"[Close-up; softly.] Together, [Camera zooms out as she steps back; her voice grows progressively louder.] you and I will be the strongest couple in the entire world! [Creates blue fireballs in her hands.] We will dominate the Earth!","Together, you and I will be the strongest couple in the entire world! We will dominate the Earth!",Katie Mattila,Joaquim Dos Santos,8.5 +9977,9977,Fire,3,The Beach,5,Scene Description,"Close-up of Chan, who is so utterly freaked out by Azula's words and fire that he gets a straight face. His eyes become small and a drop of sweat drips down his forehead. Behind him, coming from the right of the screen, a fake white bird flies past leaving yellow dots, showing the extent of his emotions.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9978,9978,Fire,3,The Beach,5,Chan,[Shakes his head back to normal. Freaked out.] Uh ... I got to go.,Uh ... I got to go.,Katie Mattila,Joaquim Dos Santos,8.5 +9979,9979,Fire,3,The Beach,5,Scene Description,"Chan slides away, attempting to hide his fear. Cut to frontal view of the balcony as he slides back inside. Cut to frontal view of Azula, upset. Cut to frontal view of Zuko getting food. Cut to aerial view of him walking away. As he walks away, someone bumps into him and he drops the food. Cut to close-up view of the food hitting the ground. Cut to a frontal view of the teen who knocked the dish out of Zuko's hand. Zuko enters the frame.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9980,9980,Fire,3,The Beach,5,Zuko,"[Angered.] Hey, watch it! That food was for my cranky girlfriend!","Hey, watch it! That food was for my cranky girlfriend!",Katie Mattila,Joaquim Dos Santos,8.5 +9981,9981,Fire,3,The Beach,5,Scene Description,"Zuko points to Mai. The teen notices something and Zuko turns to look. The camera shifts to a frontal view of Mai, who is talking to Ruon-Jian. Cut back to Zuko and the teen, who is attempting to suppress his laughter and points at Zuko. Zuko moves toward Mai. Cut to side-view of Mai as Zuko runs up to Ruon-Jian and pushes him away. Cut to Ruon-Jian stopping himself from spinning to talk to Zuko.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9982,9982,Fire,3,The Beach,5,Ruon-Jian,What are you doing?,What are you doing?,Katie Mattila,Joaquim Dos Santos,8.5 +9983,9983,Fire,3,The Beach,5,Zuko,[Close-up. Angrily.] Stop talking to my girlfriend!,Stop talking to my girlfriend!,Katie Mattila,Joaquim Dos Santos,8.5 +9984,9984,Fire,3,The Beach,5,Ruon-Jian,[Side-view. Walks up to Zuko.] Relax. It's just a party.,Relax. It's just a party.,Katie Mattila,Joaquim Dos Santos,8.5 +9985,9985,Fire,3,The Beach,5,Scene Description,"Frontal view of Ruon-Jian. Zuko knocks him across the room into a vase, which breaks from the force. Side-view of Zuko as Mai stands up and turns him around.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9986,9986,Fire,3,The Beach,5,Mai,"[Angrily.] Zuko, what is wrong with you?","Zuko, what is wrong with you?",Katie Mattila,Joaquim Dos Santos,8.5 +9987,9987,Fire,3,The Beach,5,Zuko,What's wrong with me?,What's wrong with me?,Katie Mattila,Joaquim Dos Santos,8.5 +9988,9988,Fire,3,The Beach,5,Mai,[Scolding.] Your temper is out of control. You blow up over every little thing. You're so impatient and hotheaded and angry!,Your temper is out of control. You blow up over every little thing. You're so impatient and hotheaded and angry!,Katie Mattila,Joaquim Dos Santos,8.5 +9989,9989,Fire,3,The Beach,5,Zuko,"[Snapping back.] Well, at least I feel something, as opposed to you. [Frontal view from behind Mai.] You have no passion for anything! You're just a big blah!","Well, at least I feel something, as opposed to you. You have no passion for anything! You're just a big blah!",Katie Mattila,Joaquim Dos Santos,8.5 +9990,9990,Fire,3,The Beach,5,Mai,"[Turns away from Zuko.] It's over, Zuko. We're done.","It's over, Zuko. We're done.",Katie Mattila,Joaquim Dos Santos,8.5 +9991,9991,Fire,3,The Beach,5,Chan,[Frontal view. Runs up to Ruon-Jian.] Who broke my nana's vase? [Ruon-Jian points at Zuko. Cut to frontal view of Zuko and Mai. Chan runs up to him; to Zuko now.] That's it! You're out of here!,Who broke my nana's vase? That's it! You're out of here!,Katie Mattila,Joaquim Dos Santos,8.5 +9992,9992,Fire,3,The Beach,5,Zuko,[Close-up.] I was just leaving.,I was just leaving.,Katie Mattila,Joaquim Dos Santos,8.5 +9993,9993,Fire,3,The Beach,5,Ruon-Jian,"[Frontal view as Zuko walks away.] Have fun by yourself, loser boy.","Have fun by yourself, loser boy.",Katie Mattila,Joaquim Dos Santos,8.5 +9994,9994,Fire,3,The Beach,5,Chan,Nice.,Nice.,Katie Mattila,Joaquim Dos Santos,8.5 +9995,9995,Fire,3,The Beach,5,Scene Description,"Cut to behind Zuko, slamming the door behind him. Cut to a side-view of a beach as Zuko walks along it. Cut to side-view of Zuko. Cut to aerial view as he walks around a rock. He stops and turns. Cut to a wide-view of his family's abandoned vacation house. Cut to a close-up of Zuko, who heads off. Cut to a side-view as he turns to the ocean. The camera zooms in and flashes back to when he was a child. A still frame of children playing in grass accompanied by Ozai is shown. Flash back to present day as Zuko moves on. Cut to a close-up of Zuko walking up a path to the house. Flash back to a close-up still frame of Zuko as a child. Flash back to present day with a view from behind Zuko as he approaches the house. Flash back to Iroh holding up a baby Zuko as a young Lu Ten makes a sandcastle. +Flash back to present day showing an aerial view of the entrance to the house as Zuko approaches. The camera pans up, following Zuko, as he reaches the door. Cut to a close-up side-view of Zuko's hand grabbing the door handle and attempts to open the door, but it is locked. His hand retracts and his foot kicks the door open. Cut to frontal view of Zuko as the door is busted open. Cut to a wide shot of a room as Zuko walks up the stairs. Cut to a close-up view of a family portrait. Cut to close-up of Zuko who stares at the portrait. Cut to a close-up view of Ozai in the portrait as the camera pans down to a young Zuko. Flash back to Zuko as a child, from behind, looking out to the ocean. Ozai's hand is on his back. Flash back to a close-up of present day Zuko as he turns his head slightly. Cut to a close-up of Zuko in the portrait as the camera pans up to Ursa. Flash back to side-view of Zuko, as a child, with Ursa. +Flash back to a frontal view of present day Zuko moving forward and reaching out for something. Cut to his perspective showing him holding a stone imprinted with his own baby hand print. He lifts it up and places his hand on it. Cut to side-view of the room. +Cut to the secluded hot springs at night. Cut to a side-view of Team Avatar sleeping. Cut to a close-up of the assassin's foot hitting the ground as he walks forward. Cut to Toph as she opens her eyes, sensing his approach. Cut to a frontal view of her as she sits up.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9996,9996,Fire,3,The Beach,5,Toph,"Guys, you're all gonna think I'm crazy, but it feels like a metal man is coming.","Guys, you're all gonna think I'm crazy, but it feels like a metal man is coming.",Katie Mattila,Joaquim Dos Santos,8.5 +9997,9997,Fire,3,The Beach,5,Scene Description,"Cut to a side-view of Aang, who groans as a light shines in his eyes. He looks up and the camera cuts to a wide-view of the area as the light comes down from the assassin. Cut to a close-up of the assassin's metal hand, reflecting the moon light. Cut to a frontal view of Sokka and Katara as the former grabs his sword. Cut to an aerial view of the assassin looking down at the group. Cut to an extreme close-up of the assassin's tattoo. Cut to a close-up of his face as he inhales. Cut to an extreme close-up of Aang's right eye, before the camera zooms out, showing him in shock, and he moves away. Cut to a frontal view of the assassin's stomach tensing. Cut to a close-up of the assassin's face as he fires, before cutting to a side-view of the combustion wave being shot out. The camera zooms out slightly as the wave shoots forward. Cut to a wide-view of Team Avatar as Aang attempts to block the attack with earthbending. The earth he moved in the way of the wave explodes and sends Team Avatar flying back. Cut to a frontal view of Toph who manages to steady herself and begins to earthbend. Cut to a side-view of the scene as she earthbends rocks up to the assassin. Cut to a close view of the rocks approaching the assassin as another wave fires through them. +Cut to a side-view of the scene as the wave nears the group. Cut to an aerial view of the group as Toph manages to dodge out the way before Aang uses airbending as a shield. Cut to frontal view of Aang as he is knocked back by the force. Katara stands up and runs forward. Cut to a panning side-view of Katara as she waterbends a wave at the assassin. Cut to a close-up of the assassin shooting another wave. Cut to a side-view of the scene as the water makes contact with the wave, causing another explosion. Side-view of Aang, who covers his face, and Appa roars in the background. Dust covers the screen. Cut to an aerial view of the entire hot springs as smoke begins to rise from it. Cut behind the assassin before cutting away to a wide shot of the Fire Nation Royal Family vacation house. +Cut to a wide-view of the ocean, on Ember Island, from the vacation house entrance as Azula approaches. The camera pans down as she reaches Zuko, who is sitting at the entrance.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +9998,9998,Fire,3,The Beach,5,Azula,I thought I'd find you here.,I thought I'd find you here.,Katie Mattila,Joaquim Dos Santos,8.5 +9999,9999,Fire,3,The Beach,5,Zuko,[Side-view.] Those summers we spent here seem so long ago. So much has changed.,Those summers we spent here seem so long ago. So much has changed.,Katie Mattila,Joaquim Dos Santos,8.5 +10000,10000,Fire,3,The Beach,5,Azula,Come down to the beach with me. Come on. This place is depressing.,Come down to the beach with me. Come on. This place is depressing.,Katie Mattila,Joaquim Dos Santos,8.5 +10001,10001,Fire,3,The Beach,5,Scene Description,"Zuko gets up, the camera pans down to reveal the stone hand print left behind. Cut to a panning shot of the beach showing Azula and Zuko approaching Mai and Ty Lee. Cut to a frontal view of Zuko as he walks past Mai and glances at her.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +10002,10002,Fire,3,The Beach,5,Mai,[Side-view. Hesitating at first.] Hey.,Hey.,Katie Mattila,Joaquim Dos Santos,8.5 +10003,10003,Fire,3,The Beach,5,Zuko,[View of both from behind. Turning to Mai.] Where's your new boyfriend? [Side-view. Mai turns away. View from behind Mai as Zuko sits down next to her.] Are you cold? [Mai slaps his hand when he tries to place it on her shoulder.],Where's your new boyfriend? Are you cold?,Katie Mattila,Joaquim Dos Santos,8.5 +10004,10004,Fire,3,The Beach,5,Ty Lee,I'm freezing.,I'm freezing.,Katie Mattila,Joaquim Dos Santos,8.5 +10005,10005,Fire,3,The Beach,5,Zuko,[Side-view; smiling.] I'll make a fire. [View from behind Zuko as the camera pans up to show the vacation house.] There's plenty of stuff to burn in there.,I'll make a fire. There's plenty of stuff to burn in there.,Katie Mattila,Joaquim Dos Santos,8.5 +10006,10006,Fire,3,The Beach,5,Scene Description,"Cut to an extreme close-up of the assassin's eye before zooming out to show him inhaling. Cut to a side-view as he fires again. Cut to inside the hot spring as wave hits a hill, causing an explosion. Cut to side-view of Team Avatar.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +10007,10007,Fire,3,The Beach,5,Sokka,This is crazy! How can we beat a guy who blows things up with his mind?,This is crazy! How can we beat a guy who blows things up with his mind?,Katie Mattila,Joaquim Dos Santos,8.5 +10008,10008,Fire,3,The Beach,5,Aang,[Gets up.] We can't! Jump on Appa! I'll try to distract him!,We can't! Jump on Appa! I'll try to distract him!,Katie Mattila,Joaquim Dos Santos,8.5 +10009,10009,Fire,3,The Beach,5,Scene Description,"Aang runs off. Cut to behind Aang as he runs through the smoke. The camera pans up as he jumps out of the smoke cloud and airbends himself out of the canyon, while dodging another blast from the assassin. He slides down to an area with many rock pillars and hides behind one. Cut to a frontal view from below as Aang slides down the cliff side. Cut behind Aang as he runs off in to a field of rock pillars and the camera pans up to follow him. Cut to side-view of the assassin following him. +Cut to a frontal view of a pillar as Aang runs around it to hide. Cut to a frontal view of the assassin sliding down the cliff to the field of rock pillars. Cut to a close-up of Aang, panting. He turns his head to watch where the assassin goes. Cut to a side-view of the assassin who spots Aang and fires another blast at him. Cut to a frontal view of Aang who turns and run. Cut to an aerial view as the attack hits the pillar and it explodes. Aang jumps to another, but another attack hits that one too. Cut to a side-view of the scene as Aang jumps from one pillar to another, just as the previous one is destroy, before stopping behind one in the foreground. Aang uses earthbending to send the pillar at the assassin. Cut to behind the pillar as it explodes, revealing the assassin, who fires another shot. +Cut to Aang, who leaps into the air and, in slow motion, uses airbending to propel himself away and protect himself. Cut to behind Aang falling in the air, before he turns and punches his way through a pillar. Cut to a side-view as the pillar disintegrates and Aang hits the ground. Cut to an aerial view of the area as the assassin moves forward to find Aang. Cut to a frontal view as the assassin approaches. Cut to an aerial view of the assassin examining the rubble. Cut to a close-up of his forehead as he searches. Cut to a frontal view of Aang, hidden behind rocks, his closed eyes barely visible, as the assassin walks past. The camera zooms in as Aang opens his eyes and turns to look at the assassin. Cut to a view from behind the assassin as he stops. Cut to a close-up view as he turns to inspect the rocks. Cut to a frontal view of Aang, who opens his eyes and leaps forward. Cut to a side-view of the two as Aang, complete with rock armor, jumps on to the assassins head and jumps away while the assassin fires off another attack. Cut to an aerial view as Aang flies up, with the attack exploding behind him. The rock armor falls off and the camera pans down to show Appa below Aang as he begins to fall. Cut to a frontal view of Appa as he flies forward under Aang, who is caught by Katara. +Cut to a frontal view of Momo, Aang, Katara, and Toph in the saddle. Aang and Katara hold on to each other as he speaks.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +10010,10010,Fire,3,The Beach,5,Aang,I'm okay. [Momo jumps on his shoulder.],I'm okay.,Katie Mattila,Joaquim Dos Santos,8.5 +10011,10011,Fire,3,The Beach,5,Toph,"Well, that was random.","Well, that was random.",Katie Mattila,Joaquim Dos Santos,8.5 +10012,10012,Fire,3,The Beach,5,Katara,[Sitting up and looking back.] I don't think so. I get the feeling he knows who we are.,I don't think so. I get the feeling he knows who we are.,Katie Mattila,Joaquim Dos Santos,8.5 +10013,10013,Fire,3,The Beach,5,Scene Description,Cut to a close-up of a campfire. The picture of the Royal Family is thrown into the fire. Cut to a close-up of Zuko in the picture as it begins to burn.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +10014,10014,Fire,3,The Beach,5,Ty Lee,What are you doing?,What are you doing?,Katie Mattila,Joaquim Dos Santos,8.5 +10015,10015,Fire,3,The Beach,5,Zuko,[Frontal view.] What does it look like I'm doing?,What does it look like I'm doing?,Katie Mattila,Joaquim Dos Santos,8.5 +10016,10016,Fire,3,The Beach,5,Ty Lee,"[Close-up aerial view of Zuko standing next to the fire.] But, it's a painting of your family.","But, it's a painting of your family.",Katie Mattila,Joaquim Dos Santos,8.5 +10017,10017,Fire,3,The Beach,5,Zuko,[The camera pans up to Zuko's face; angrily.] You think I care?,You think I care?,Katie Mattila,Joaquim Dos Santos,8.5 +10018,10018,Fire,3,The Beach,5,Ty Lee,[Off-camera.] I think you do.,I think you do.,Katie Mattila,Joaquim Dos Santos,8.5 +10019,10019,Fire,3,The Beach,5,Zuko,"You don't know me, so why don't you just mind your own business? [Walks away.]","You don't know me, so why don't you just mind your own business?",Katie Mattila,Joaquim Dos Santos,8.5 +10020,10020,Fire,3,The Beach,5,Ty Lee,[Close-up. Scoffs.] I know you.,I know you.,Katie Mattila,Joaquim Dos Santos,8.5 +10021,10021,Fire,3,The Beach,5,Zuko,"[Frontal view.] No, you don't. [Close-up.] You're stuck in your little ""Ty Lee world"" where everything's great all the time.","No, you don't. You're stuck in your little ""Ty Lee world"" where everything's great all the time.",Katie Mattila,Joaquim Dos Santos,8.5 +10022,10022,Fire,3,The Beach,5,Mai,"Zuko, [Frontal view.] leave her alone.","Zuko, leave her alone.",Katie Mattila,Joaquim Dos Santos,8.5 +10023,10023,Fire,3,The Beach,5,Zuko,"[Walks away. Frontal view of campsite. Imitating Ty Lee.] ""I'm so pretty. Look at me. I can walk on my hands. Whoo!"" [Does a handstand. Frontal view of Ty Lee, upset. Close-up of Zuko, as he falls to the ground. Frontal view of Ty Lee, Zuko's face in the foreground.] Circus freak.","""I'm so pretty. Look at me. I can walk on my hands. Whoo!"" Circus freak.",Katie Mattila,Joaquim Dos Santos,8.5 +10024,10024,Fire,3,The Beach,5,Ty Lee,"[Side-view. Azula giggles. Ty Lee cries.] Yes, I'm a circus freak. Go ahead and laugh all you want. You want to know why I joined the circus?","Yes, I'm a circus freak. Go ahead and laugh all you want. You want to know why I joined the circus?",Katie Mattila,Joaquim Dos Santos,8.5 +10025,10025,Fire,3,The Beach,5,Azula,Here we go.,Here we go.,Katie Mattila,Joaquim Dos Santos,8.5 +10026,10026,Fire,3,The Beach,5,Ty Lee,"[Aerial view of camp site.] Do you have any idea what my home life was like? [Frontal view.] Growing up with six sisters who look exactly like me? [She stands.] It was like I didn't even have my own name. [Side-view. Kneels down, crying.] I joined the circus [Close-up side-view.] because I was scared of spending the rest of my life as part of a matched set. At least I'm different now. [Frontal view, she lifts her head; angrily.] ""Circus freak"" is a compliment.","Do you have any idea what my home life was like? Growing up with six sisters who look exactly like me? It was like I didn't even have my own name. I joined the circus because I was scared of spending the rest of my life as part of a matched set. At least I'm different now. ""Circus freak"" is a compliment.",Katie Mattila,Joaquim Dos Santos,8.5 +10027,10027,Fire,3,The Beach,5,Mai,"[Frontal view.] Guess that explains why you need ten boyfriends, too.","Guess that explains why you need ten boyfriends, too.",Katie Mattila,Joaquim Dos Santos,8.5 +10028,10028,Fire,3,The Beach,5,Ty Lee,"[Frontal view over Mai's shoulder; balls her hands into fists and points them on her hips.] I'm sorry, what?","I'm sorry, what?",Katie Mattila,Joaquim Dos Santos,8.5 +10029,10029,Fire,3,The Beach,5,Mai,"[Frontal view.] Attention issues. You couldn't get enough attention when you were a kid, so you're trying to make up for it now.","Attention issues. You couldn't get enough attention when you were a kid, so you're trying to make up for it now.",Katie Mattila,Joaquim Dos Santos,8.5 +10030,10030,Fire,3,The Beach,5,Ty Lee,"[Close-up.] Well, what's your excuse, Mai? You were an only child for fifteen years, but even with all that attention, your aura is this dingy, pasty, gray ...","Well, what's your excuse, Mai? You were an only child for fifteen years, but even with all that attention, your aura is this dingy, pasty, gray ...",Katie Mattila,Joaquim Dos Santos,8.5 +10031,10031,Fire,3,The Beach,5,Mai,[Frontal view.] I don't believe in auras.,I don't believe in auras.,Katie Mattila,Joaquim Dos Santos,8.5 +10032,10032,Fire,3,The Beach,5,Zuko,"[Camera pans right. Getting up.] Yeah, you do not believe in anything.","Yeah, you do not believe in anything.",Katie Mattila,Joaquim Dos Santos,8.5 +10033,10033,Fire,3,The Beach,5,Mai,"[Close-up; sarcastically.] Oh, well, I'm sorry I can't be as high-strung and crazy as the rest of you.","Oh, well, I'm sorry I can't be as high-strung and crazy as the rest of you.",Katie Mattila,Joaquim Dos Santos,8.5 +10034,10034,Fire,3,The Beach,5,Zuko,"[Aerial view of campsite. Walking up to the campfire.] I'm sorry, too. I wish you would be high-strung and crazy for once instead of keeping all your feeling bottled up inside. [Frontal view.] She just called your aura dingy. Are you gonna take that?","I'm sorry, too. I wish you would be high-strung and crazy for once instead of keeping all your feeling bottled up inside. She just called your aura dingy. Are you gonna take that?",Katie Mattila,Joaquim Dos Santos,8.5 +10035,10035,Fire,3,The Beach,5,Mai,"[Aerial view of campsite. Leaning back.] What do you want from me? You want a teary confession about how hard my childhood was? Well, it wasn't. [Close-up.] I was a rich only child who got anything I wanted ... as long as I behaved [Cut to shot of the sky.] and sat still, and didn't speak unless spoken to. [Close-up of Zuko.] My mother said I had to keep out of trouble. We had my dad's political career to think about.","What do you want from me? You want a teary confession about how hard my childhood was? Well, it wasn't. I was a rich only child who got anything I wanted ... as long as I behaved and sat still, and didn't speak unless spoken to. My mother said I had to keep out of trouble. We had my dad's political career to think about.",Katie Mattila,Joaquim Dos Santos,8.5 +10036,10036,Fire,3,The Beach,5,Azula,"[Side-view of campsite.] Well, that's it, then. [Close-up.] You have a controlling mother who had certain expectations, and if you strayed from them, you were shut down. That's why you're afraid to care about anything, and why you can't express yourself.","Well, that's it, then. You have a controlling mother who had certain expectations, and if you strayed from them, you were shut down. That's why you're afraid to care about anything, and why you can't express yourself.",Katie Mattila,Joaquim Dos Santos,8.5 +10037,10037,Fire,3,The Beach,5,Mai,[Frontal view.] You want me to express myself? [Stands up and yells.] Leave me alone!,You want me to express myself? Leave me alone!,Katie Mattila,Joaquim Dos Santos,8.5 +10038,10038,Fire,3,The Beach,5,Zuko,"[Side-view of campsite. Frontal view of Zuko.] I like it when you express yourself. [Approaching, attempting to put a hand on her shoulder.]",I like it when you express yourself.,Katie Mattila,Joaquim Dos Santos,8.5 +10039,10039,Fire,3,The Beach,5,Mai,[Frontal view.] Don't touch me! I'm still mad at you. [She sits.],Don't touch me! I'm still mad at you.,Katie Mattila,Joaquim Dos Santos,8.5 +10040,10040,Fire,3,The Beach,5,Zuko,"[Side-view of Mai.] My life hasn't been that easy either, Mai.","My life hasn't been that easy either, Mai.",Katie Mattila,Joaquim Dos Santos,8.5 +10041,10041,Fire,3,The Beach,5,Mai,Whatever. That doesn't excuse the way you've been acting.,Whatever. That doesn't excuse the way you've been acting.,Katie Mattila,Joaquim Dos Santos,8.5 +10042,10042,Fire,3,The Beach,5,Ty Lee,"Calm down, you guys. [Frontal view of her and Azula.] This much negative energy is bad for your skin. You'll totally break out.","Calm down, you guys. This much negative energy is bad for your skin. You'll totally break out.",Katie Mattila,Joaquim Dos Santos,8.5 +10043,10043,Fire,3,The Beach,5,Zuko,Bad skin? [Frontal view.] Normal teenagers worry about bad skin. I don't have that luxury. [Leaning forward.] My father decided to teach me a permanent lesson on my face! [Points to his scar.],Bad skin? Normal teenagers worry about bad skin. I don't have that luxury. My father decided to teach me a permanent lesson on my face!,Katie Mattila,Joaquim Dos Santos,8.5 +10044,10044,Fire,3,The Beach,5,Ty Lee,"[Frontal view of Azula and Ty Lee from behind Zuko. Apologetically.] Sorry, Zuko, I ...","Sorry, Zuko, I ...",Katie Mattila,Joaquim Dos Santos,8.5 +10045,10045,Fire,3,The Beach,5,Zuko,"[Turning around.] For so long I thought that if my dad accepted me, I'd be happy. I'm back home now, my dad talks to me. Ha! He even thinks I'm a hero. [Close-up of Azula, who smiles.] Everything should be perfect, right? [Aerial view of campsite.] I should be happy now, but I'm not. [Turning back to the others.] I'm angrier than ever and I don't know why!","For so long I thought that if my dad accepted me, I'd be happy. I'm back home now, my dad talks to me. Ha! He even thinks I'm a hero. Everything should be perfect, right? I should be happy now, but I'm not. I'm angrier than ever and I don't know why!",Katie Mattila,Joaquim Dos Santos,8.5 +10046,10046,Fire,3,The Beach,5,Azula,"[Frontal view.] There's a simple question you need to answer, then. Who are you angry at?","There's a simple question you need to answer, then. Who are you angry at?",Katie Mattila,Joaquim Dos Santos,8.5 +10047,10047,Fire,3,The Beach,5,Zuko,[Close-up.] No one. I'm just angry.,No one. I'm just angry.,Katie Mattila,Joaquim Dos Santos,8.5 +10048,10048,Fire,3,The Beach,5,Mai,"[Side-view of the three girls.] Yeah, who are you angry at, Zuko?","Yeah, who are you angry at, Zuko?",Katie Mattila,Joaquim Dos Santos,8.5 +10049,10049,Fire,3,The Beach,5,Zuko,[Close-up.] Everyone. I don't know. [Becoming frustrated.],Everyone. I don't know.,Katie Mattila,Joaquim Dos Santos,8.5 +10050,10050,Fire,3,The Beach,5,Azula,[Frontal view.] Is it Dad?,Is it Dad?,Katie Mattila,Joaquim Dos Santos,8.5 +10051,10051,Fire,3,The Beach,5,Zuko,"[Close-up.] No, no.","No, no.",Katie Mattila,Joaquim Dos Santos,8.5 +10052,10052,Fire,3,The Beach,5,Ty Lee,[Frontal view.] Your uncle?,Your uncle?,Katie Mattila,Joaquim Dos Santos,8.5 +10053,10053,Fire,3,The Beach,5,Azula,Me?,Me?,Katie Mattila,Joaquim Dos Santos,8.5 +10054,10054,Fire,3,The Beach,5,Zuko,"[Close-up.] No, no, n-no, no!","No, no, n-no, no!",Katie Mattila,Joaquim Dos Santos,8.5 +10055,10055,Fire,3,The Beach,5,Mai,[Close-up.] Then who? Who are you angry at?,Then who? Who are you angry at?,Katie Mattila,Joaquim Dos Santos,8.5 +10056,10056,Fire,3,The Beach,5,Azula,"[Camera pans left, past Ty Lee, to Azula.] Answer the question, Zuko.","Answer the question, Zuko.",Katie Mattila,Joaquim Dos Santos,8.5 +10057,10057,Fire,3,The Beach,5,Ty Lee,[Close-up.] Talk to us.,Talk to us.,Katie Mattila,Joaquim Dos Santos,8.5 +10058,10058,Fire,3,The Beach,5,Mai,"[Extreme close-up.] Come on, answer the question.","Come on, answer the question.",Katie Mattila,Joaquim Dos Santos,8.5 +10059,10059,Fire,3,The Beach,5,Azula,"Come on, answer it.","Come on, answer it.",Katie Mattila,Joaquim Dos Santos,8.5 +10060,10060,Fire,3,The Beach,5,Zuko,[Frontal view from behind the girls. Losing it now; furiously.] I'm angry at myself!,I'm angry at myself!,Katie Mattila,Joaquim Dos Santos,8.5 +10061,10061,Fire,3,The Beach,5,Scene Description,"Slamming down with his clenched fists he causes the camp fire to turn into a pillar of fire, the girls recoil from the flames. Cut to close-up view from above of Zuko. Cut to a wide-view of the entire campsite as the flame dies down. Zuko turns away.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +10062,10062,Fire,3,The Beach,5,Azula,Why?,Why?,Katie Mattila,Joaquim Dos Santos,8.5 +10063,10063,Fire,3,The Beach,5,Zuko,[Close-up.] Because I'm confused. Because I'm not sure I know the difference between right and wrong anymore.,Because I'm confused. Because I'm not sure I know the difference between right and wrong anymore.,Katie Mattila,Joaquim Dos Santos,8.5 +10064,10064,Fire,3,The Beach,5,Azula,You're pathetic.,You're pathetic.,Katie Mattila,Joaquim Dos Santos,8.5 +10065,10065,Fire,3,The Beach,5,Mai,[View from behind Zuko.] I know one thing I care about. [Walks up to Zuko. Frontal view.] I care about you. [They kiss.],I know one thing I care about. I care about you.,Katie Mattila,Joaquim Dos Santos,8.5 +10066,10066,Fire,3,The Beach,5,Azula,"[Claps. Camera zooms out to show her as Mai and Zuko turn.] Well, those were wonderful performances, everyone.","Well, those were wonderful performances, everyone.",Katie Mattila,Joaquim Dos Santos,8.5 +10067,10067,Fire,3,The Beach,5,Zuko,"[Frontal view.] I guess you wouldn't understand, would you, Azula? [He puts an arm around Mai.] Because you're just so perfect.","I guess you wouldn't understand, would you, Azula? Because you're just so perfect.",Katie Mattila,Joaquim Dos Santos,8.5 +10068,10068,Fire,3,The Beach,5,Azula,"[Frontal view.] Well, yes, I guess you're right. I don't have sob stories like all of you. I could sit here and complain how our mom liked Zuko more than me, but I don't really care. [Gazes into the fire. Close-up view of the fire pit.] My own mother [Close-up.] thought I was a monster. [Close-up of Zuko and Mai. Close-up of Ty Lee. Side-view of campsite. After a momentary pause.] She was right, of course, but it still hurt.","Well, yes, I guess you're right. I don't have sob stories like all of you. I could sit here and complain how our mom liked Zuko more than me, but I don't really care. My own mother thought I was a monster. She was right, of course, but it still hurt.",Katie Mattila,Joaquim Dos Santos,8.5 +10069,10069,Fire,3,The Beach,5,Ty Lee,"What Lo and Li said came true. The beach did help us learn about ourselves. [She picks up a rock and rubs it, smiling. Close-up.] I feel all smoothed. I'll always remember this.",What Lo and Li said came true. The beach did help us learn about ourselves. I feel all smoothed. I'll always remember this.,Katie Mattila,Joaquim Dos Santos,8.5 +10070,10070,Fire,3,The Beach,5,Azula,[Side-view of campsite. Standing up.] You know what would make this trip really memorable?,You know what would make this trip really memorable?,Katie Mattila,Joaquim Dos Santos,8.5 +10071,10071,Fire,3,The Beach,5,Scene Description,Cut to a close-up of Azula. Cut to Chan's front door opening to reveal Chan.,NA,Katie Mattila,Joaquim Dos Santos,8.5 +10072,10072,Fire,3,The Beach,5,Azula,"[Frontal view.] We've got some bad news, Chan.","We've got some bad news, Chan.",Katie Mattila,Joaquim Dos Santos,8.5 +10073,10073,Fire,3,The Beach,5,Zuko,[Camera zooms in quickly to Zuko. Turns to look at Chan.] Party's over.,Party's over.,Katie Mattila,Joaquim Dos Santos,8.5 +10074,10074,Fire,3,The Beach,5,Scene Description,"Cut to a vase falling down. Cut to frontal view of Zuko kicking a table in half. Cut to close-up of Chan looking on in fear. Cut to frontal view of Mai throwing a knife out. Cut to the knife slicing through some paintings hanging from the wall. Cut to close-up of Chan, his eyebrow twitching. He looks up and the camera pans up to show Ty Lee on a support beam. She flip off the beam and flies forward. Cut to a wide side-view of the room as she grab on to a chandelier, jumping on to another before it falls. She jumps off screen and the second one falls too. Cut to a close-up of Chan, in tears and with mucus draining from his nose, as Azula smiles behind him. Fade to a painted picture of the foursome smiling, arms around each other, with a roaring fire in the background. +Fade to credits.",NA,Katie Mattila,Joaquim Dos Santos,8.5 +10075,10075,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"The episode opens with Avatar Roku emerging from behind a small wall of fire, and is speaking to Aang in a dream.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10076,10076,Fire,3,The Avatar and the Fire Lord,6,Roku,"Aang, it's time you learn of my history with Fire Lord Sozin. [Cut to a close-up of Aang's face in his dream, before cutting back to Roku.] You need to understand how the war began, if you want to know how to end it. [Cut to an overhead shot of Roku's island.] Meet me on my home island on the day of the summer solstice.","Aang, it's time you learn of my history with Fire Lord Sozin. You need to understand how the war began, if you want to know how to end it. Meet me on my home island on the day of the summer solstice.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10077,10077,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to Aang, asleep, as he rolls over onto his side.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10078,10078,Fire,3,The Avatar and the Fire Lord,6,Aang,"[Talking in his sleep.] Okay, Roku.","Okay, Roku.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10079,10079,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to Zuko, who is asleep as well, as sounds of footsteps wake him up, and he rushes to the hall to investigate. He opens the door, and sees a cloaked individual walk down the hall and disappear. Zuko begins to go after the individual, but notices a scroll lying on the floor. A surprised Zuko picks up the scroll and reads it.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10080,10080,Fire,3,The Avatar and the Fire Lord,6,Zuko,"[Reading the scroll.] You need to know the story of your great-grandfather's demise. It will reveal your own destiny. [He closes the scroll, and stares down the hallway.]",You need to know the story of your great-grandfather's demise. It will reveal your own destiny.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10081,10081,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Shot cuts to a view from the opposite end of the hallway. Zuko is still standing outside his bedroom. Scene changes to a blue, cloud filled sky. A very large cloud moves quickly forward. Cut to the inside of the cloud, as Aang, standing on Appa's, bends the elements around the bison to create a cloud, to camouflage. Katara and Sokka look over Appa's saddle for a better look.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10082,10082,Fire,3,The Avatar and the Fire Lord,6,Aang,There it is. That's Roku's home.,There it is. That's Roku's home.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10083,10083,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to an overhead shot of the island, as Appa lands. Cut to a shot of Team Avatar descending from Appa.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10084,10084,Fire,3,The Avatar and the Fire Lord,6,Katara,"[Confused.] But, there's nothing here.","But, there's nothing here.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10085,10085,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Toph jumps from Appa's saddle, as her feet touch the ground.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10086,10086,Fire,3,The Avatar and the Fire Lord,6,Toph,"Yes, there is. An entire village, hundreds of houses ... [A strong breeze moves a layer of ash along the ground, brushing past their feet.] all completely buried in ash.","Yes, there is. An entire village, hundreds of houses ... all completely buried in ash.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10087,10087,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"The scene changes to an overhead of the Royal Caldera City. Cut to a hall, full of paintings of previous Fire Lords. Zuko stands before one of the portraits, as Azula passes by Zuko.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10088,10088,Fire,3,The Avatar and the Fire Lord,6,Azula,"It's never too early for a sitting with the court painter, Zuko. Make sure he gets your good side.","It's never too early for a sitting with the court painter, Zuko. Make sure he gets your good side.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10089,10089,Fire,3,The Avatar and the Fire Lord,6,Zuko,"Wait, I need to ask you something. [Azula stops walking.] What do you remember about our great-grandfather's history?","Wait, I need to ask you something. What do you remember about our great-grandfather's history?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10090,10090,Fire,3,The Avatar and the Fire Lord,6,Azula,"[She sighs.] Oh, Zuko, it's so strange how your mind works. [Cut to an overhead shot of the hall, as Azula tells Zuko about Sozin's history.] Fire Lord Sozin began the war, of course. [Cut to Fire Lord Sozin's portrait, as it pans from the bottom to the top.] He spent his early years secretly preparing for it. He was as patient as he was clever. He famously waited for the comet, later renamed Sozin's Comet, and used its power to launch his full-scale invasion of the world. [Cut back to Zuko and Azula.] In the end, he died a very old and successful man.","Oh, Zuko, it's so strange how your mind works. Fire Lord Sozin began the war, of course. He spent his early years secretly preparing for it. He was as patient as he was clever. He famously waited for the comet, later renamed Sozin's Comet, and used its power to launch his full-scale invasion of the world. In the end, he died a very old and successful man.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10091,10091,Fire,3,The Avatar and the Fire Lord,6,Zuko,But how did he die?,But how did he die?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10092,10092,Fire,3,The Avatar and the Fire Lord,6,Azula,"[Turning toward Zuko.] Didn't you pay any attention in school, Zuko? He died peacefully, in his sleep. [Cut to a shot of the full room, as Azula walks away.] He was ancient.","Didn't you pay any attention in school, Zuko? He died peacefully, in his sleep. He was ancient.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10093,10093,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Zuko stares, frustrated. Scene changes back to Roku's island. Team Avatar is sitting on the tip of a hardened wave of lava. Cut to Aang from the back, who is facing the ocean, and is meditating. Cut to him from the front, as his arrows glow, and he is shown sitting on a mountain top, surrounded by clouds, in the Spirit World. Fang, who is carrying Roku, flies near him, as he stands up, and Roku smiles at Aang. The scene cuts to Zuko in his room, lying on his back on his bed. He rolls over on his side and stares at the scroll. He picks it up and reads it to himself again.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10094,10094,Fire,3,The Avatar and the Fire Lord,6,Zuko,What does it mean?,What does it mean?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10095,10095,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Annoyed, he tosses the scroll aside, as it lands on a lantern. The light from the lantern shines through the parchment, and it reveals a secret message on the scroll. Zuko gasps and grabs the scroll from atop the lantern, and reads the secret message aloud.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10096,10096,Fire,3,The Avatar and the Fire Lord,6,Zuko,[Reading.] The Fire Sages keep the secret history in the Dragonbone Catacombs.,The Fire Sages keep the secret history in the Dragonbone Catacombs.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10097,10097,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to a close-up of Zuko's eyes, as he finishes reading the secret message. Zuko quickly turns to leave. Cut to a dark temple. A Fire Sage walks through a courtyard, and stops over a large medallion fashioned in the shape of a flower in the middle of the courtyard. He crouches low, and delivers a blast of fire into the center of the medallion. It begins to open a hidden passage, under the courtyard of the temple. The Sage goes into the passage through the steps. Zuko hides and waits behind a pillar. When no one is around, Zuko goes to the secret passage, and bends a blast of fire into the medallion. The passage opens, and a spiral staircase is revealed along with a very large secret chamber. Zuko travels through the chamber and down a hall lined with bones of dragons, all lined up along the walls of the hall. He comes to an ornate door with a metal sculpture of Fire Lord Sozin on it. The chest of the sculpture has a Fire Nation emblem. Zuko places his left hand over the emblem, and bends a fire blast. The fire fills the door, and comes out from the statue's eyes, nose and mouth. Zuko enters the room, pulls his cloak from his head, and raises his lantern to look around the dark chamber, and sees that the room is filled with artifacts and various vessels. A large statue of a dragon sits in the middle of the room. Under the dragon's head, Zuko finds Fire Lord Sozin's history.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10098,10098,Fire,3,The Avatar and the Fire Lord,6,Zuko,[Reading aloud.] The final testimony of Fire Lord Sozin.,The final testimony of Fire Lord Sozin.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10099,10099,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As Zuko picks the scroll, the scene changes to Roku lending Aang a hand to climb on Fang.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10100,10100,Fire,3,The Avatar and the Fire Lord,6,Roku,"Come, Aang.","Come, Aang.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10101,10101,Fire,3,The Avatar and the Fire Lord,6,Aang,"[He climbs on Fang, who flies off.] Where're we going?",Where're we going?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10102,10102,Fire,3,The Avatar and the Fire Lord,6,Roku,"To visit my past. [He smiles at Aang, as Aang grins widely.] Our shared past.",To visit my past. Our shared past.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10103,10103,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to the room, where Zuko is reading from the scroll.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10104,10104,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Narrating his history.] As I feel my own life dimming, I can't help but think of a time when everything was so much brighter.","As I feel my own life dimming, I can't help but think of a time when everything was so much brighter.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10105,10105,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to a lush Fire Nation courtyard in a flashback. Two young firebenders are dueling. The young men, Prince Sozin and Roku, exchange fire blasts.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10106,10106,Fire,3,The Avatar and the Fire Lord,6,Sozin,I remember my friend.,I remember my friend.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10107,10107,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"While they duel, Sozin notices that Roku's feet are close to a tree root. Sozin smiles, and using this to his advantage, he steps up his attack to drive Roku back, causing Roku to trip over the root and fall back. As Roku falls, Sozin grabs Roku by the shirt to keep him from falling. While he holds him, he raises his hand as if to fire blast, but instead he lets Roku fall to the ground.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10108,10108,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Looks like I win again, Roku. [Extends a hand to help Roku to his feet.]","Looks like I win again, Roku.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10109,10109,Fire,3,The Avatar and the Fire Lord,6,Roku,"Are you kidding? [Takes Sozin's hands and gets up.] The tree root did all the work. [After getting up, he pats Sozin on his shoulders.] Nice one, Sozin.","Are you kidding? The tree root did all the work. Nice one, Sozin.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10110,10110,Fire,3,The Avatar and the Fire Lord,6,Aang,[Surprised.] You were friends with Fire Lord Sozin?,You were friends with Fire Lord Sozin?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10111,10111,Fire,3,The Avatar and the Fire Lord,6,Roku,"Back then, he was just Prince Sozin. [Cut to a close-up of Roku's face.] And he was my best friend.","Back then, he was just Prince Sozin. And he was my best friend.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10112,10112,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As Roku and Sozin leave the courtyard, a young Fire Nation lady goes by. As she walks past the friends, Roku stares at her and blushes, which Sozin notices.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10113,10113,Fire,3,The Avatar and the Fire Lord,6,Sozin,[Nudging Roku.] Say something to her.,Say something to her.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10114,10114,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Roku walks after the young lady. He raises his hand and attempts to greet the lady, who also slightly blushes, but is overcome by embarrassment. He sighs, puts his hands on his head, and falls down. Sozin sits down next to him and sprinkles blades of grass on Roku's face. Shot cuts to the older Roku and Aang, watching Roku's history.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10115,10115,Fire,3,The Avatar and the Fire Lord,6,Roku,Love is hard when you are young.,Love is hard when you are young.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10116,10116,Fire,3,The Avatar and the Fire Lord,6,Aang,You don't have to tell me.,You don't have to tell me.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10117,10117,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Putting his hand over Aang's shoulder.] Don't worry, it gets better. [He turns back and walks, along with Aang.] Now, come with me. [Cut to a celebration on a courtyard.] We have a party to attend.","Don't worry, it gets better. Now, come with me. We have a party to attend.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10118,10118,Fire,3,The Avatar and the Fire Lord,6,Aang,"Wait, whose party is it?","Wait, whose party is it?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10119,10119,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Cut to the young Roku and Prince Sozin.] Sozin and I shared many things, including a birthday.","Sozin and I shared many things, including a birthday.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10120,10120,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Roku and Prince Sozin walk down from the stairs. As they walk down the stairs, the camera focuses on two young women in the crowd, one of whom is the lady whom Roku has a crush on, Ta Min. She looks at Roku, before looking down and blushes. Her friend leans over her shoulder and giggles. Roku notices the lady and blushes, while he continues down the stairs. Distracted, Roku falls down the stairs, but Sozin quickly grabs Roku by the hand. Roku composes himself and blushes again from embarrassment, as Sozin laughs at his friend. The crowd suddenly grows quiet, as a group of Fire Sages enter the courtyard. They walk toward Prince Sozin and Roku, as Sozin hurries down the stairs to meet them.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10121,10121,Fire,3,The Avatar and the Fire Lord,6,Sozin,Did something happen to my father?,Did something happen to my father?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10122,10122,Fire,3,The Avatar and the Fire Lord,6,Fire Sage,"No, Prince Sozin. We are not here for you. [Shot cuts to the Fire Sage talking.] We're here to announce the identity of the next Avatar. [The crowd whispers, as the shot cut to Roku and Sozin, both in shock. Cut again to a close-up of the Sages. The Sages bow to the new Avatar.] It is our honor to serve you, Avatar Roku.","No, Prince Sozin. We are not here for you. We're here to announce the identity of the next Avatar. It is our honor to serve you, Avatar Roku.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10123,10123,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to a close-up of Roku, standing with his jaw dropped, bewildered. The camera shows the crowd on the ground, all bowing. Sozin, who is still in shock himself, looks around at the crowd, and quickly turns to kneel before Roku. Scene changes to Zuko sitting in the chamber, reading Sozin's history.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10124,10124,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Soon the day came when my friend Roku had to leave the Fire Nation and face his destiny as the Avatar. [Cut to a close-up of Zuko's face, as he reads.] He needed to travel the world so he could master the other elements.",Soon the day came when my friend Roku had to leave the Fire Nation and face his destiny as the Avatar. He needed to travel the world so he could master the other elements.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10125,10125,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to a close-up of a young Roku from the side, sitting in his room, with a dejected look on his face, as Prince Sozin stands near the doorway.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10126,10126,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Hey, why aren't you packed yet, all-powerful Avatar?","Hey, why aren't you packed yet, all-powerful Avatar?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10127,10127,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Roku does not respond to his friend's question, and continues to stare down. Sozin looks down sympathetically. Suddenly, he smiles.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10128,10128,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Sozin leaps in the room, attempting to demonstrate examples of all the bending disciplines.] Come on, show me how it's done using all four kinds of bending.","Come on, show me how it's done using all four kinds of bending.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10129,10129,Fire,3,The Avatar and the Fire Lord,6,Roku,"I started packing, but then the Fire Sages told me I won't need any worldly possessions anymore.","I started packing, but then the Fire Sages told me I won't need any worldly possessions anymore.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10130,10130,Fire,3,The Avatar and the Fire Lord,6,Sozin,Oh. [He sits down near Roku.],Oh.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10131,10131,Fire,3,The Avatar and the Fire Lord,6,Roku,It happened so fast. Everything's gonna be different now.,It happened so fast. Everything's gonna be different now.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10132,10132,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to a shot of the two friends from the side, as Sozin removes his Crown Prince headpiece and gives it to Roku.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10133,10133,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Here, hope you're at least allowed to have this. [Shot cuts to a close-up of the headpiece.]","Here, hope you're at least allowed to have this.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10134,10134,Fire,3,The Avatar and the Fire Lord,6,Roku,But this is a royal artifact. [Cut to a shot of the friends from behind.] It's supposed to be worn by the Crown Prince.,But this is a royal artifact. It's supposed to be worn by the Crown Prince.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10135,10135,Fire,3,The Avatar and the Fire Lord,6,Sozin,I want you to have it.,I want you to have it.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10136,10136,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As Roku takes the headpiece, cut to a close-up of his top knot, as he slides the pin. Camera pans below to show Roku smiling, as he and Sozin get up, and bow to each other. Scene changes to Zuko reading from the scroll. +Cut to a close-up of Sokka, and Katara, both looking disturbed. Shot cuts to Aang standing up on the rock he has been meditating on, his eyes still closed. Aang moves to a squat and begins to groan, before smiling with relief. Cut back to the siblings, with Katara looking more disturbed than before.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10137,10137,Fire,3,The Avatar and the Fire Lord,6,Katara,Do they have bathrooms in the Spirit World?,Do they have bathrooms in the Spirit World?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10138,10138,Fire,3,The Avatar and the Fire Lord,6,Sokka,"[Raises his forefinger.] As a matter of fact, they do not.","As a matter of fact, they do not.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10139,10139,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Shot cuts to Aang smiling, still peculiarly perched, before cutting again to Aang riding on Fang in the Spirit World. Shot cuts to an overhead shot of the two flying on the dragon, as Aang notices they are going to a familiar place.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10140,10140,Fire,3,The Avatar and the Fire Lord,6,Aang,"[Excited.] Hey, we're almost at the Southern Air Temple!","Hey, we're almost at the Southern Air Temple!",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10141,10141,Fire,3,The Avatar and the Fire Lord,6,Roku,This was the first stop on my Avatar journey.,This was the first stop on my Avatar journey.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10142,10142,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Shot cuts to show the Patola Mountains with the Southern Air Temple in the distance. Fang flies through the mountain range.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10143,10143,Fire,3,The Avatar and the Fire Lord,6,Roku,It was the place where I was trained to master airbending.,It was the place where I was trained to master airbending.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10144,10144,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to a line of young Air Nomad monks. The camera pans right to show Avatar Roku at the end of the line. Roku is airbending his long black hair at another young monk's face, who, irritated, bends it back at Roku. Roku responds by nudging the monk with his shoulder.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10145,10145,Fire,3,The Avatar and the Fire Lord,6,Roku,And also where I met an old friend of yours: Monk Gyatso.,And also where I met an old friend of yours: Monk Gyatso.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10146,10146,Fire,3,The Avatar and the Fire Lord,6,Aang,No way!,No way!,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10147,10147,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to an aerial shot of the airbenders on a grassy ledge. An older Air Nomad leads the students, and launches off the side of the ledge. The students line up by twos to follow their teacher. Cut to Gyatso and Roku soaring through the air on their gliders.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10148,10148,Fire,3,The Avatar and the Fire Lord,6,Roku,"Hey, Gyatso, you wanna see a new glider trick? [He flies up and loops twice.]","Hey, Gyatso, you wanna see a new glider trick?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10149,10149,Fire,3,The Avatar and the Fire Lord,6,Gyatso,[Laughing.] Check this out! [He flips himself over and stands on top of his glider. Cut to Aang and Roku.],Check this out!,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10150,10150,Fire,3,The Avatar and the Fire Lord,6,Aang,He's air surfing! I can't believe I never thought of that.,He's air surfing! I can't believe I never thought of that.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10151,10151,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut back to Gyatso, as he loses his balance on the glider, but as he falls, Roku catches him on the back of his glider. Roku is unable to control the glider, and the both go down toward the other young monks, who are now back on the grassy ledge. Cut to the other students looking up at the falling airbenders, as they panic and try to run. Cut to Roku and Gyatso, flying low, about to crash. They crash, leaving a large cloud of dust. Cut to the young monks knocked over, and scattered about. Roku's hair is in his face. Gyatso airbends it back while Roku lifts his head. They both grin widely, and Roku pats Gyatso on his shoulder. Cut to a close-up of Aang.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10152,10152,Fire,3,The Avatar and the Fire Lord,6,Aang,[Smiling and surprised.] That's amazing! I can't believe you were friends with Monk Gyatso just like I was!,That's amazing! I can't believe you were friends with Monk Gyatso just like I was!,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10153,10153,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Camera pans back to show Roku.] Some friendships are so strong, [He closes his eyes.] they can even transcend lifetimes.","Some friendships are so strong, they can even transcend lifetimes.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10154,10154,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As Fang flies off, the scene changes to the Northern Water Tribe, where, in the distance, two individuals are standing on a plateau of ice. Cut to a close-up of an older Roku.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10155,10155,Fire,3,The Avatar and the Fire Lord,6,Roku,"After my years mastering airbending, I traveled to the Northern Water Tribe.","After my years mastering airbending, I traveled to the Northern Water Tribe.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10156,10156,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to Roku's waterbending master, who bends a large water drill from the ocean waters behind him. It thrusts forward, knocking Roku, and a part of the plateau, into the water.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10157,10157,Fire,3,The Avatar and the Fire Lord,6,Roku,"Waterbending was especially challenging for me. But in time, I mastered it as well.","Waterbending was especially challenging for me. But in time, I mastered it as well.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10158,10158,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to a shot of the water, as Roku emerges from it, and bends an enormous wave of water directly at his master standing on the glacier. The blast completely destroys the glacier, and carries his master all the way back to a Northern Water Tribe building. His master sits up, and shakes his head. Cut to Roku, standing on an ice float, as he smiles. Scene changes to Roku, standing shirtless, and wearing Earth Kingdom clothing from the waist. He moves his arms in quick motions across his body to bend a large piece of earth, riding up the side of a mountain.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10159,10159,Fire,3,The Avatar and the Fire Lord,6,Roku,I moved on to the Earth Kingdom.,I moved on to the Earth Kingdom.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10160,10160,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to Roku racing up the slope, as another earthbender catches up to him. Cut to a brief shot of the earthbender, before cutting back to Roku, as they compete for speed.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10161,10161,Fire,3,The Avatar and the Fire Lord,6,Roku,"My earthbending master, Sud, was uncompromising, stubborn, and blunt ...","My earthbending master, Sud, was uncompromising, stubborn, and blunt ...",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10162,10162,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"The two benders race into thick brush and trees, as they disappear from view. Cut to the top of the mountain overlooking a valley.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10163,10163,Fire,3,The Avatar and the Fire Lord,6,Roku,... And a lifelong friend.,... And a lifelong friend.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10164,10164,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As Sud comes to the finishing point, quickly brings his landmass to a halt. He thrusts his fists into the air, cheering for himself. The look on his face changes quickly to shock when he realizes that Roku not only beat him to the top, but he also had enough time to seat himself and pour them both tea. Cut back to Sud as he smiles at his pupil. Cut to a side shot of Roku and Sud. They both drink from their teacups. Scene changes to a close-up of Roku's head dress and slowly pans down to show his face in an extreme close-up.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10165,10165,Fire,3,The Avatar and the Fire Lord,6,Roku,"It was bitter work ... [The camera pans back to Roku, as he moves his arms to bend the different elements.] but the results were worth it. [He starts by waterbending, before moving on to earthbending, firebending, and finally, airbending. The camera zooms out to an aerial view of Roku at the center of the four elements.]",It was bitter work ... but the results were worth it.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10166,10166,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to Zuko, still reading Sozin's history in the chamber. An extreme close-up shows his eyes quivering with each word he reads.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10167,10167,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Twelve long years passed before I saw my friend again. When Roku returned, he was a fully realized Avatar, and I had changed as well.","Twelve long years passed before I saw my friend again. When Roku returned, he was a fully realized Avatar, and I had changed as well.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10168,10168,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"A wall of flames appears, as the scene changes to Sozin sitting in his throne room. Roku walks down a long red carpet toward Sozin.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10169,10169,Fire,3,The Avatar and the Fire Lord,6,Roku,"Sozin! Or should I say, Fire Lord!","Sozin! Or should I say, Fire Lord!",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10170,10170,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Scene changes to Sozin from below him. Serious.] Customarily, my subjects bow before greeting me. [He walks down from his throne.] But you're the exception. [He smiles and hugs Roku.]","Customarily, my subjects bow before greeting me. But you're the exception.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10171,10171,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Cut to the older Roku and Aang watching from behind.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10172,10172,Fire,3,The Avatar and the Fire Lord,6,Roku,"After all these years, he was still my best friend. [Scene changes to a wedding ceremony and celebration in a Fire Nation courtyard, with many guests attending. Cut to Roku, on whose right is Sozin, holding a scroll.] And a few months later, he was my best man.","After all these years, he was still my best friend. And a few months later, he was my best man.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10173,10173,Fire,3,The Avatar and the Fire Lord,6,Aang,"[As Roku lifts the veil.] Roku, it's that girl who didn't even know you're alive!","Roku, it's that girl who didn't even know you're alive!",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10174,10174,Fire,3,The Avatar and the Fire Lord,6,Roku,"Ta Min. I was persistent. [She stands up near Roku.] When love is real, it finds a way. [The attendees clap, as the newly-wed couple bow their heads. Cut to a shot of the couple from the side, as Aang and Roku watch.] And being the Avatar doesn't hurt your chances with the ladies, either.","Ta Min. I was persistent. When love is real, it finds a way. And being the Avatar doesn't hurt your chances with the ladies, either.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10175,10175,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Scene changes to Zuko.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10176,10176,Fire,3,The Avatar and the Fire Lord,6,Sozin,"On wedding days, we look to the future with optimism and joy. [Fade to Sozin in deep thought.] I had my own vision for a brighter future.","On wedding days, we look to the future with optimism and joy. I had my own vision for a brighter future.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10177,10177,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Cut to Roku and Ta Min receiving and thanking guests. Sozin walks up behind the couple.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10178,10178,Fire,3,The Avatar and the Fire Lord,6,Sozin,[Leaning toward Ta Min.] Excuse me. May I borrow him for a moment?,Excuse me. May I borrow him for a moment?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10179,10179,Fire,3,The Avatar and the Fire Lord,6,Ta Min,"It's not very traditional, but, okay.","It's not very traditional, but, okay.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10180,10180,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Cut to Roku and Sozin on a balcony.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10181,10181,Fire,3,The Avatar and the Fire Lord,6,Roku,What's on your mind?,What's on your mind?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10182,10182,Fire,3,The Avatar and the Fire Lord,6,Sozin,[Raises his fist slightly.] I've been thinking hard about the state of the world lately.,I've been thinking hard about the state of the world lately.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10183,10183,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Putting his arm over Sozin's shoulder.] Sozin, it is my wedding! Have a cookie, dance with someone, lighten up!","Sozin, it is my wedding! Have a cookie, dance with someone, lighten up!",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10184,10184,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Smiling slightly.] I know, I know, but just hear me out. [Roku bows in agreement. Cut to a shadowed side-shot of the balcony as they walk.] Right from the start, I was destined to be Fire Lord. And although we didn't always know it, you were destined to be the Avatar. [Cut to a close-up side-shot of the two. Roku stops as Sozin continues on.] It's an amazing stroke of fate we know each other so well, isn't it? Together, we could do ... anything.","I know, I know, but just hear me out. Right from the start, I was destined to be Fire Lord. And although we didn't always know it, you were destined to be the Avatar. It's an amazing stroke of fate we know each other so well, isn't it? Together, we could do ... anything.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10185,10185,Fire,3,The Avatar and the Fire Lord,6,Roku,"[The camera pans toward Roku. Now serious.] Yeah, we could.","Yeah, we could.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10186,10186,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Cut to a shot of the Fire Nation from the balcony.] Our nation is enjoying an unprecedented time of peace and wealth. Our people are happy, and we're so fortunate in so many ways.","Our nation is enjoying an unprecedented time of peace and wealth. Our people are happy, and we're so fortunate in so many ways.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10187,10187,Fire,3,The Avatar and the Fire Lord,6,Roku,[Concerned.] Where are you going with this?,Where are you going with this?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10188,10188,Fire,3,The Avatar and the Fire Lord,6,Sozin,"I've been thinking, we should share this prosperity with the rest of the world. [Cut to a shocked Roku with the camera closing in on him.] In our hands is the most successful empire in history. [Back to a close-up of Sozin.] It's time we expanded it.","I've been thinking, we should share this prosperity with the rest of the world. In our hands is the most successful empire in history. It's time we expanded it.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10189,10189,Fire,3,The Avatar and the Fire Lord,6,Roku,No! The four nations are meant to be just that: four.,No! The four nations are meant to be just that: four.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10190,10190,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Cut to Sozin.] Roku, you haven't even stopped to consider the possibilities.","Roku, you haven't even stopped to consider the possibilities.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10191,10191,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Cut to a close-up side-shot of Roku.] There are no possibilities. This is the last I want to hear [Closes his eyes.] about this. [He walks away from the balcony, with an angry expression on his face.]",There are no possibilities. This is the last I want to hear about this.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10192,10192,Fire,3,The Avatar and the Fire Lord,6,Roku,"[His spirit speaks to Aang.] That was my first real test as the Avatar. Unfortunately, it was many years before I learned [Cut to a extreme close-up of Sozin.] that Sozin [Sozin narrows his eyes. Fade to a back-shot of Fang flying with Roku.] had gone ahead with his plan, despite my warning.","That was my first real test as the Avatar. Unfortunately, it was many years before I learned that Sozin had gone ahead with his plan, despite my warning.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10193,10193,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to Roku flying over a body of water on Fang, as he approaches land. As Roku flies over, he sees an Earth Nation dock, but as the camera pans up, he sees an Earth Nation fortress with plumes of smoke rising from inside, with the Fire Nation insignia strewn over the original Earth Kingdom symbol, covering it. The camera zooms in to an extreme close-up of the Fire Nation banner. Cut to Roku who widens his eyes in shock by his discovery. Scene changes to Roku, bursting through the doors of Fire Lord Sozin's throne room with steam coming out. Cut to an overhead shot of Roku's shadow in the doorway cast on the long red carpet.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10194,10194,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Angry.] I've seen the colonies, Sozin. [Points at Sozin.] How dare you occupy Earth Kingdom territory!","I've seen the colonies, Sozin. How dare you occupy Earth Kingdom territory!",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10195,10195,Fire,3,The Avatar and the Fire Lord,6,Sozin,"[Cut to Sozin, as Roku walks up to him.] How dare you, a citizen of the Fire Nation, address your Fire Lord this way. [Cut to a close-up of Sozin's face from the side.] Your loyalty is to our nation first. Anything less makes you a traitor.","How dare you, a citizen of the Fire Nation, address your Fire Lord this way. Your loyalty is to our nation first. Anything less makes you a traitor.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10196,10196,Fire,3,The Avatar and the Fire Lord,6,Roku,"Don't do this, Sozin. Don't challenge me. It will only end badly. It's over.","Don't do this, Sozin. Don't challenge me. It will only end badly. It's over.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10197,10197,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As Roku turns back and starts to leave, Sozin, full of rage, jumps from his throne and delivers an immensely powerful fire stream. As the flames go out, Roku is nowhere to be seen. Sozin widens his eyes in suprise, expression becoming blank as he looks around. Suddenly, Roku bursts from the ground behind Sozin, revealing that he has burrowed into the ground with earthbending to defend from Sozin's attack. Before Sozin can turn back, Roku delivers a powerful air blast at the Fire Lord, which causes him to slam on the gates of the room. As Sozin falls down, Roku immediately earthbends a pillar of earth that lifts Sozin into the air and pins him by the back of his robes to the ceiling. Cut to a close-up of Avatar Roku, as he brings his hands together in front of his face, and enters the Avatar State. Cut to a shot of the entire throne room, as Roku breaks the pillars of the throne room. Cut to an aerial shot of the palace, as it is destroyed. Cut to Sozin, uncovering his face. Roku airbends an air spout, and raises himself to Sozin.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10198,10198,Fire,3,The Avatar and the Fire Lord,6,Roku,"I'm sparing you, Sozin. [Cut to a frontal shot of Roku.] I'm letting you go in the name of our past friendship. But I warn you. [Cut to a extreme close up of Roku.] Even a single step out of line will result in your permanent end.","I'm sparing you, Sozin. I'm letting you go in the name of our past friendship. But I warn you. Even a single step out of line will result in your permanent end.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10199,10199,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Sozin stares at Roku, his face still full of anger. Suddenly, his expression drops, and he hangs his head in defeat. Roku turns, and rides the cyclone quickly away from Sozin. Scene changes to an aerial shot of Roku's island at night.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10200,10200,Fire,3,The Avatar and the Fire Lord,6,Roku,"Sozin and I didn't speak or see each other for twenty-five years after our battle. [Cut to Roku's house.] I spent most of my spare time here, at my home.","Sozin and I didn't speak or see each other for twenty-five years after our battle. I spent most of my spare time here, at my home.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10201,10201,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to an overhead shot of an elderly Roku and Ta Min sleeping, as a loud noise awakes Roku and he leaps out from the bed, and looks through the window. Cut to a shot of the window, as large fireballs falling from the sky, and crashing into the island. Roku and his wife flee the room, but as they do so, Roku's headpiece falls to the floor, and is left behind. Roku emerges from the house to find the air filled with smoke and ash. Coughing, Roku and his wife shield their faces. A worried Roku looks at the erupting volcano in the island.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10202,10202,Fire,3,The Avatar and the Fire Lord,6,Roku,"Let's go! [He catches his wife's hand, and airbends smoke and ash in their way, creating a path, as both run through the path he created.]",Let's go!,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10203,10203,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Scene changes to the town, as the townspeople run through the streets to escape the waves of smoke and ash that now pour through the streets. Cut to Roku's home, as Fang flies up from behind the house. He narrowly escapes as an ash flow completely buries the house. Cut to a wide shot of Roku, with his face covered, leading his wife and many townspeople to safety. Ash continues to fall as we see a swell of lava ooze from the mouth of the volcano. Cut to a close-up of Roku still running. He looks to his wife, as shot cuts to her running. He lets go of her hand, and motions her to go on without him. With her arm still outstretched, she looks at him, and runs to safety. She continues to look back, desperately hoping Roku will grab her hand. Ta Min runs off with many of the townspeople. Roku turns to face the advancing smoke, and airbends a huge dome of protection around himself. Cut to the townspeople in boats, as they see the air dome. Cut to the worried faces of the people, including Ta Min. Scene changes to the volcano erupting in the island from the Fire Nation palace, as camera zooms back to show an elderly Fire Lord Sozin watching from his balcony.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10204,10204,Fire,3,The Avatar and the Fire Lord,6,Sozin,Roku's island was a hundred miles away. But I could still feel it rumbling and see the black plume of smoke. I had never seen anything like this catastrophe.,Roku's island was a hundred miles away. But I could still feel it rumbling and see the black plume of smoke. I had never seen anything like this catastrophe.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10205,10205,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to Sozin's face, before cutting to an aerial shot of the volcano. Large columns of black smoke billow from the summit, as lightning strikes above the volcano and the earth rumbles from the disaster. Cut to a close-up of a landslide quickly approaching the town, destroying it completely. Roku earthbends a gigantic wall, and rides the wall to meet the falling earth, and stop it. As he succeeds in stopping it, the volcano ejects a massive wave of lava. The flow breeches the wall of earth, causing Roku to flee to the bottom of the summit. He cuts into the earth using his earthbending, creating a channel to divert the lava into the surrounding ocean, away from the town. Cut to an aerial shot of the island, as the channel fills with lava, and empties into the ocean. Cut to Roku and Aang watching the destruction from a distance.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10206,10206,Fire,3,The Avatar and the Fire Lord,6,Aang,"This is amazing, Roku! You're battling a volcano, and you're winning.","This is amazing, Roku! You're battling a volcano, and you're winning.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10207,10207,Fire,3,The Avatar and the Fire Lord,6,Roku,"Unfortunately, my success didn't last long, Aang. There was no way I could do it all.","Unfortunately, my success didn't last long, Aang. There was no way I could do it all.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10208,10208,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Shot cuts to Roku looking up the top of the volcano. As the camera pans up and focuses on the mouth of the volcano, it violently expels another giant wave of lava. Roku runs toward the volcano, and leaps. Roku blows a powerful blast of air from his mouth at the lava, which cools and hardens, as Roku lands on it. Suddenly, a blast of poisonous gas spouts to his right, he turns and covers his face. He turns to the jet, airbending it away. Suddenly lava appears on his right, which he airbends, and quickly another jet of gases blasts to his left, and he quickly airbends it as well.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10209,10209,Fire,3,The Avatar and the Fire Lord,6,Roku,"[To Aang.] Battling the elements was hard enough. I had to do it while I could barely breathe. The poisonous, volcanic gases were overwhelming.","Battling the elements was hard enough. I had to do it while I could barely breathe. The poisonous, volcanic gases were overwhelming.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10210,10210,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to an overhead shot of the sky directly over the eruption. Lightning crashes around the crater as Fang comes, flying. The summit emits another lava fountain. Fang pulls back, narrowly escaping the blast, and roars.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10211,10211,Fire,3,The Avatar and the Fire Lord,6,Roku,[Airbends a jet of gases.] It's all right Fang! [Coughs.] Get out of here! I'm fine!,It's all right Fang! Get out of here! I'm fine!,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10212,10212,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Roku turns his body from side to side, and enters the Avatar State. With a powerful blow from his fist, Roku earthbends a tremor through the volcano, breaking out the back side of the crater, which lessens the lava flow. As the lava flows down, the second volcano erupts, as Roku, no longer in the Avatar State, hopelessly drops his head. Cut to a view of Roku from behind, as Sozin, on a blue dragon, appears.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10213,10213,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Need a hand, old friend?","Need a hand, old friend?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10214,10214,Fire,3,The Avatar and the Fire Lord,6,Roku,[A surprised Roku turns back.] Sozin?,Sozin?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10215,10215,Fire,3,The Avatar and the Fire Lord,6,Sozin,There's not a moment to waste.,There's not a moment to waste.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10216,10216,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to an aerial view of the two volcanoes. Sozin and Roku ride on the Fire Lord's dragon's back to the second volcano. Cut to Roku bending the fire fountain down into the crater. Cut to Sozin balanced on the mouth of the vent, as he cools the lava by absorbing the heat, passing it through himself, and redirects out through his other hand. The scene pans out to show the silhouettes of the two friends, controlling the disaster. Cut to the townspeople in the boats, as they see the volcanoes erupting. Cut to a shot of Ta Min, with an anxious expression on her face. The scene cuts back to Roku and Sozin on the edge of the crater. Lightning blasts above Sozin, as the earth beneath him becomes unstable. He begins to fall back off the side of the volcano, but Roku quickly earthbends an earth shelf to catch Sozin. Stable again, Sozin looks to Roku for a moment. Suddenly, the earth violently shakes and another surge of ash and rock shoot from the crater, and the two turn to run.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10217,10217,Fire,3,The Avatar and the Fire Lord,6,Roku,Don't breathe the toxic gas.,Don't breathe the toxic gas.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10218,10218,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"As the two run, a jet of toxic gas shoots up directly next to Sozin. Roku quickly airbends it away to protect Sozin. Suddenly gas erupts directly into Roku's face, causing him to be disoriented.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10219,10219,Fire,3,The Avatar and the Fire Lord,6,Roku,"[Shaking, Cut to Roku's point of view. He lifts his hands to look at them, as they blur out of focus.] It's too much.",It's too much.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10220,10220,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Overwhelmed by the poisons, Roku falls to his knees. He looks up toward Sozin, and holds out his hand for help.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10221,10221,Fire,3,The Avatar and the Fire Lord,6,Roku,Please.,Please.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10222,10222,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Cut to Roku's point of view again.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10223,10223,Fire,3,The Avatar and the Fire Lord,6,Sozin,"Without you, all my plans are suddenly possible. [Cut to Roku.] I have a vision for the future, Roku.","Without you, all my plans are suddenly possible. I have a vision for the future, Roku.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10224,10224,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Sozin's dragon appears. As Roku kneels, Sozin mounts the dragon and flies away. Cut to Roku, on the side of the volcano. He is surrounded by toxic gas, and behind him a surge of rock and ash flows swiftly toward him. Cut to a shot of the black clouds billowing from the island, as Sozin's dragon emerges from the plumes. The camera zooms to an extreme close-up of Sozin's eye. Shot cuts to Roku, from the back, still on his knees. He is coughing, and is unable to get to his feet. Fang appears from the right, and flies above him. Cut to a close-up of Roku from the side, as he looks up toward his dragon. Cut to an aerial view of the debris, rapidly approaching Avatar Roku. With the rock avalanche just moments away from swallowing Roku, Fang flies down, and wraps himself around Roku. The wave of ash and rubble cover the two completely, killing both of them. Fade to a bright light, as the camera pans to show an arched window frame. A baby's cries can be heard. The camera pans down to show a smiling born infant.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10225,10225,Fire,3,The Avatar and the Fire Lord,6,Aang,"Who's ... wait, that's me, isn't it? [Cut to a long shot of three Air Nomads. A nun holds up the baby to the light while two people, presumably the infant's parents, stand in the shadows.]","Who's ... wait, that's me, isn't it?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10226,10226,Fire,3,The Avatar and the Fire Lord,6,Roku,"Make sense of our past, Aang. [Cut to Roku and Aang.] And you will bring peace, and restore balance in the world. [He slowly disappears.]","Make sense of our past, Aang. And you will bring peace, and restore balance in the world.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10227,10227,Fire,3,The Avatar and the Fire Lord,6,Aang,Roku? Roku!,Roku? Roku!,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10228,10228,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Aang walks out of the flashback into whiteness as the scene changes to Zuko reading in the Dragonbone Catacombs.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10229,10229,Fire,3,The Avatar and the Fire Lord,6,Sozin,"With Roku gone, and the great comet returning, the timing was perfect to change the world. [Cut to Sozin, standing on a balcony, from the behind, looking at his soldiers and the Fire Navy ships.] I knew the next Avatar would be born an Air Nomad. So I wiped out the Air Temples. [Scene changes to a burning temple. The camera slowly fades into an extreme close-up of Sozin's face.] But somehow, the new Avatar eluded me. [Scene changes to Fire Navy ships searching in the polar regions.] I wasted the remainder of my life searching in vain. [Cut to underside of the ship.] I know he's hiding out there somewhere. [Camera pans below to show the iceberg Aang was trapped in.] The Fire Nation's greatest threat ... the last airbender.","With Roku gone, and the great comet returning, the timing was perfect to change the world. I knew the next Avatar would be born an Air Nomad. So I wiped out the Air Temples. But somehow, the new Avatar eluded me. I wasted the remainder of my life searching in vain. I know he's hiding out there somewhere. The Fire Nation's greatest threat ... the last airbender.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10230,10230,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Fade to a close-up of the scroll Zuko is reading.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10231,10231,Fire,3,The Avatar and the Fire Lord,6,Zuko,That can't be it! Where's the rest of it? [He searches the scroll to find more information.],That can't be it! Where's the rest of it?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10232,10232,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Zuko puts the scroll down and stands up, as the camera pans out. Scene changes to the Fire Nation prison, where Iroh is imprisoned. Cut to Zuko from the behind, slamming the door to the cell behind him as he enters. Cut to Iroh sitting with his head down.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10233,10233,Fire,3,The Avatar and the Fire Lord,6,Zuko,"[Angrily.] You sent this, didn't you? I found the secret history, which by the way should be renamed history most people already know! The note said that I needed to know about my great-grandfather's death, but he was still alive in the end.","You sent this, didn't you? I found the secret history, which by the way should be renamed history most people already know! The note said that I needed to know about my great-grandfather's death, but he was still alive in the end.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10234,10234,Fire,3,The Avatar and the Fire Lord,6,Iroh,"[Looking up at Zuko.] No, he wasn't.","No, he wasn't.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10235,10235,Fire,3,The Avatar and the Fire Lord,6,Zuko,[Confused.] What are you talking about?,What are you talking about?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10236,10236,Fire,3,The Avatar and the Fire Lord,6,Iroh,"You have more than one great-grandfather, Prince Zuko. Sozin was your father's grandfather. [Cut to a bewildered Zuko.] Your mother's grandfather was Avatar Roku.","You have more than one great-grandfather, Prince Zuko. Sozin was your father's grandfather. Your mother's grandfather was Avatar Roku.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10237,10237,Fire,3,The Avatar and the Fire Lord,6,Zuko,[Shocked.] Why are you telling me this?,Why are you telling me this?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10238,10238,Fire,3,The Avatar and the Fire Lord,6,Iroh,"Because understanding the struggle between your two great-grandfathers can help you better understand the battle within yourself. [Zuko sits down, with his head facing down.] Evil and good are always at war inside you, Zuko. It is your nature, your legacy. But, there is a bright side. [Zuko looks up.] What happened generations ago can be resolved now, by you. Because of your legacy, you alone can cleanse the sins of our family and the Fire Nation. Born in you, along with all the strife, is the power to restore balance to the world.","Because understanding the struggle between your two great-grandfathers can help you better understand the battle within yourself. Evil and good are always at war inside you, Zuko. It is your nature, your legacy. But, there is a bright side. What happened generations ago can be resolved now, by you. Because of your legacy, you alone can cleanse the sins of our family and the Fire Nation. Born in you, along with all the strife, is the power to restore balance to the world.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10239,10239,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Cut to a bundle inside of a brick wall. Iroh removes a brick and reaches for the bundle. Cut to Iroh slowly unwrapping the bundle, revealing the once-lost headdress, while he walks toward Zuko.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10240,10240,Fire,3,The Avatar and the Fire Lord,6,Iroh,This is a royal artifact. It's supposed to be worn [Zuko stands.] by the Crown Prince.,This is a royal artifact. It's supposed to be worn by the Crown Prince.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10241,10241,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Zuko takes the headdress from Iroh's hand, and holds the artifact, as the shot cuts to Zuko from the behind, standing outside of Iroh's cell. Iroh stands quietly, looking at his nephew. Cut to a shot of the hardened lava wave the gang had been sitting on. Cut to a shot of Sokka, Katara, and Toph all facing Aang as the camera pans down.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10242,10242,Fire,3,The Avatar and the Fire Lord,6,Katara,"You mean, after all Roku and Sozin went through together, even after Roku showed him mercy, Sozin betrayed him like that?","You mean, after all Roku and Sozin went through together, even after Roku showed him mercy, Sozin betrayed him like that?",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10243,10243,Fire,3,The Avatar and the Fire Lord,6,Toph,[Cut to Toph.] It's like these people are born bad.,It's like these people are born bad.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10244,10244,Fire,3,The Avatar and the Fire Lord,6,Aang,"[Cut to Aang from the side, with Sokka standing near him.] No, that's wrong. I don't think that was the point of what Roku showed me at all.","No, that's wrong. I don't think that was the point of what Roku showed me at all.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10245,10245,Fire,3,The Avatar and the Fire Lord,6,Sokka,[Shrugging.] Then what was the point?,Then what was the point?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10246,10246,Fire,3,The Avatar and the Fire Lord,6,Aang,"[Cut to Katara, Toph and Sokka from the behind, as Aang speaks.] Roku was just as much Fire Nation as Sozin was, right? If anything, their story proves anyone's capable of great good and great evil. [Cut to an aerial shot of the hardened lava wave.] Everyone, even the Fire Lord and the Fire Nation have to be treated like they're worth giving a chance. [Shot cuts to a close-up of Aang's face.] And I also think it was about friendships.","Roku was just as much Fire Nation as Sozin was, right? If anything, their story proves anyone's capable of great good and great evil. Everyone, even the Fire Lord and the Fire Nation have to be treated like they're worth giving a chance. And I also think it was about friendships.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10247,10247,Fire,3,The Avatar and the Fire Lord,6,Toph,"[Camera pans to Toph, and cuts to a close-up of her face.] Do you really think friendships can last more than one lifetime?",Do you really think friendships can last more than one lifetime?,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10248,10248,Fire,3,The Avatar and the Fire Lord,6,Aang,[Catching Toph's hand.] I don't see why not.,I don't see why not.,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10249,10249,Fire,3,The Avatar and the Fire Lord,6,Scene Description,Katara catches Toph's other hand.,NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10250,10250,Fire,3,The Avatar and the Fire Lord,6,Sokka,"Well, scientifically speaking, there's no way to prove that ...","Well, scientifically speaking, there's no way to prove that ...",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10251,10251,Fire,3,The Avatar and the Fire Lord,6,Katara,"[Annoyed.] Oh, Sokka, just hold hands.","Oh, Sokka, just hold hands.",Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10252,10252,Fire,3,The Avatar and the Fire Lord,6,Scene Description,"Sokka stops talking, and without moving, he thrusts out his hand to hold Katara's. Shot cuts to an aerial shot of Team Avatar, holding hands, and looking out toward the ocean. Fade to credits.",NA,Elizabeth Welch Ehasz,Ethan Spaulding,9.5 +10253,10253,Fire,3,The Runaway,7,Scene Description,"The episode opens in Fire Fountain City, where a giant statue of Fire Lord Ozai roaring is shown with flames coming from the fists and out of the mouth. The camera moves down to Toph, who is seen running from someone, but turns around and is caught with a net and falls to the ground. She angrily looks in front of her at someone.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10254,10254,Fire,3,The Runaway,7,Toph,[Angrily.] How could you do this to me? You betrayed me!,How could you do this to me? You betrayed me!,Joshua Hamilton,Giancarlo Volpe,8.2 +10255,10255,Fire,3,The Runaway,7,Scene Description,"The camera cuts to a shot of Katara, who is glaring back at Toph.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10256,10256,Fire,3,The Runaway,7,Katara,[Crosses her arms.] You brought this on yourself. I had no choice. [Turns away from Toph with her arms folded.],You brought this on yourself. I had no choice.,Joshua Hamilton,Giancarlo Volpe,8.2 +10257,10257,Fire,3,The Runaway,7,Scene Description,"Toph is dragged away in the net, all the while glaring back at Katara. The screen fades to three days earlier. Toph and Katara are seen facing each other, each taking a fighting stance, the latter controlling two streams of water in her hands. Aang appears on the screen, tying his headband over his eyes like a blindfold.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10258,10258,Fire,3,The Runaway,7,Aang,Okay. I'm ready for some training.,Okay. I'm ready for some training.,Joshua Hamilton,Giancarlo Volpe,8.2 +10259,10259,Fire,3,The Runaway,7,Scene Description,"He turns to face the girls and takes two steps forward in a stance similar to Toph's. Upon impact with the second step, he picks up vibrations from the ground with seismic sense. He quickly dodges three earth pillars that appear out of the ground near him. He hears a water attack coming from Katara and redirects it at her. He quickly launches a boulder at Toph who catches it and stops it.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10260,10260,Fire,3,The Runaway,7,Toph,"Good job, Twinkle Toes. Visualize, then attack.","Good job, Twinkle Toes. Visualize, then attack.",Joshua Hamilton,Giancarlo Volpe,8.2 +10261,10261,Fire,3,The Runaway,7,Scene Description,"She launches the boulder back at Aang, who burrows into a hole with earthbending. The boulder instead hits Katara square in the chest, knocking her down. She stands back up and brushes dust off of her.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10262,10262,Fire,3,The Runaway,7,Katara,"Maybe you should take your own advice, Toph!","Maybe you should take your own advice, Toph!",Joshua Hamilton,Giancarlo Volpe,8.2 +10263,10263,Fire,3,The Runaway,7,Toph,"What's the matter? Can't handle a little dirt, Madame Fussy-Britches?","What's the matter? Can't handle a little dirt, Madame Fussy-Britches?",Joshua Hamilton,Giancarlo Volpe,8.2 +10264,10264,Fire,3,The Runaway,7,Scene Description,"Katara's eyebrow twitches and she glares at Toph with her vein shown on her head before she angrily creates a wave and sends it at Toph, who gets splashed by it and becomes annoyed.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10265,10265,Fire,3,The Runaway,7,Katara,"Oh, sorry. Did I splash you, Mud-Slug?","Oh, sorry. Did I splash you, Mud-Slug?",Joshua Hamilton,Giancarlo Volpe,8.2 +10266,10266,Fire,3,The Runaway,7,Scene Description,"Katara creates an ice ramp, and Toph creates an earth ramp, both proceeding to head straight for each other. They crash and both of the girls go flying.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10267,10267,Fire,3,The Runaway,7,Aang,Are we taking a break?,Are we taking a break?,Joshua Hamilton,Giancarlo Volpe,8.2 +10268,10268,Fire,3,The Runaway,7,Scene Description,"Meanwhile, Sokka is seen hiding behind Aang with an evil smile. He quickly gets up and charges at Aang. The background changes to a rushing one.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10269,10269,Fire,3,The Runaway,7,Sokka,[Screaming.] Sneak Attack!,Sneak Attack!,Joshua Hamilton,Giancarlo Volpe,8.2 +10270,10270,Fire,3,The Runaway,7,Scene Description,"Aang, casually and still looking away from Sokka, creates an earth wall, which stops Sokka dead in his tracks. He lowers the wall, which causes Sokka to fall down.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10271,10271,Fire,3,The Runaway,7,Aang,"[While raising his blindfold and turning to face Sokka.] Sokka, sneak attacks don't work if you yell it out loud.","Sokka, sneak attacks don't work if you yell it out loud.",Joshua Hamilton,Giancarlo Volpe,8.2 +10272,10272,Fire,3,The Runaway,7,Scene Description,Katara and Toph are seen wrestling in a puddle of mud.,NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10273,10273,Fire,3,The Runaway,7,Toph,Hungry for a mud pie? [Kicks mud in Katara's face.],Hungry for a mud pie?,Joshua Hamilton,Giancarlo Volpe,8.2 +10274,10274,Fire,3,The Runaway,7,Katara,[Wiping mud off of her face.] I'll give you a mud pie!,I'll give you a mud pie!,Joshua Hamilton,Giancarlo Volpe,8.2 +10275,10275,Fire,3,The Runaway,7,Scene Description,"Katara waterbends a stream of mud at Toph, knocking her down. She quickly gets up and earthbends a pillar underneath Katara, which sends her flying toward a wall. She starts running toward Katara, but stops at the last second when they hear Aang.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10276,10276,Fire,3,The Runaway,7,Aang,"Uh guys, I thought we were supposed to be training me.","Uh guys, I thought we were supposed to be training me.",Joshua Hamilton,Giancarlo Volpe,8.2 +10277,10277,Fire,3,The Runaway,7,Katara,"[Takes a few steps forward, covered in mud; calmly.] Very well, pupil. I believe we've had enough training for today. [Turns and walks away.]","Very well, pupil. I believe we've had enough training for today.",Joshua Hamilton,Giancarlo Volpe,8.2 +10278,10278,Fire,3,The Runaway,7,Toph,"While Katara cleans up, [Earthbends the mud off of herself and runs toward Aang and Sokka.] let's go have some fun!","While Katara cleans up, let's go have some fun!",Joshua Hamilton,Giancarlo Volpe,8.2 +10279,10279,Fire,3,The Runaway,7,Aang,Yeah!,Yeah!,Joshua Hamilton,Giancarlo Volpe,8.2 +10280,10280,Fire,3,The Runaway,7,Sokka,[Simultaneously with Aang.] Yes!,Yes!,Joshua Hamilton,Giancarlo Volpe,8.2 +10281,10281,Fire,3,The Runaway,7,Scene Description,"Aang, Sokka and Toph head to Fire Fountain City. Sokka is carrying his sword horizontally across his shoulders. He looks up and sees messenger hawks flying in and out of a large coop.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10282,10282,Fire,3,The Runaway,7,Sokka,"Look at all those messenger hawks! You know, I've been thinking about getting one for myself. That way, I wouldn't have to talk to anyone. I could just send them messages.","Look at all those messenger hawks! You know, I've been thinking about getting one for myself. That way, I wouldn't have to talk to anyone. I could just send them messages.",Joshua Hamilton,Giancarlo Volpe,8.2 +10283,10283,Fire,3,The Runaway,7,Toph,"I gotta say, I like the idea of not talking to you. [Sokka glares at her.]","I gotta say, I like the idea of not talking to you.",Joshua Hamilton,Giancarlo Volpe,8.2 +10284,10284,Fire,3,The Runaway,7,Aang,"[While holding up a silver piece.] So, guys. What are we gonna get with our last silver piece?","So, guys. What are we gonna get with our last silver piece?",Joshua Hamilton,Giancarlo Volpe,8.2 +10285,10285,Fire,3,The Runaway,7,Toph,[Stops walking.] We can get more money. [They both look back at her.] Right there. [Points to an area beneath them. Aang and Sokka move back to look where she is pointing.],We can get more money. Right there.,Joshua Hamilton,Giancarlo Volpe,8.2 +10286,10286,Fire,3,The Runaway,7,Scene Description,"In the area is a table with two men sitting across from each other, with people around them watching the action. The table has three shells on it, all upside down. The first man places some money on the table and the second man, a scam artist, lifts the shells to reveal that the middle one has a rock underneath it. He places the shells back down as they were and starts moving them around.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10287,10287,Fire,3,The Runaway,7,Toph,"This is where you seeing people are at a disadvantage. Everyone guesses wrong because the dealer moves the rock at the last minute. But I can feel it with my earthbending. [As she says this, the scam artist continues to move the shells around as the gambler tries to focus on the shell with the rock, and right before stopping, the scam artist quickly and inconspicuously earthbends the rock from underneath one of the shells into his sleeve.]",This is where you seeing people are at a disadvantage. Everyone guesses wrong because the dealer moves the rock at the last minute. But I can feel it with my earthbending.,Joshua Hamilton,Giancarlo Volpe,8.2 +10288,10288,Fire,3,The Runaway,7,Scene Description,"The scam artist stops moving the shells and arranges them how they originally were: Horizontally right in front of him. The gambler points at the shell in the middle, which the scam artist lifts to reveal nothing underneath. The gambler stands up and walks away crying. A few more people move and the dealer notices Toph, and that she is blind.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10289,10289,Fire,3,The Runaway,7,Dealer,[To Toph.] You there. Wanna play a friendly game?,You there. Wanna play a friendly game?,Joshua Hamilton,Giancarlo Volpe,8.2 +10290,10290,Fire,3,The Runaway,7,Toph,How can I possibly play? [Waves her hand in front of her face.] I'm blind.,How can I possibly play? I'm blind.,Joshua Hamilton,Giancarlo Volpe,8.2 +10291,10291,Fire,3,The Runaway,7,Dealer,You don't have to see to be lucky.,You don't have to see to be lucky.,Joshua Hamilton,Giancarlo Volpe,8.2 +10292,10292,Fire,3,The Runaway,7,Scene Description,"Toph sits in front of the table and feels around it, pretending to be helpless. She places their last silver piece on the table. The scam artist shows the rock under the shell in the middle and starts moving them around. This time, he tosses one rock from his sleeves into each of the two empty shells. Toph senses this and smiles slyly. When he stops, Toph points to the one on her left, which has a rock underneath, winning about two silver pieces.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10293,10293,Fire,3,The Runaway,7,Aang,"Flamey-O, Toph.","Flamey-O, Toph.",Joshua Hamilton,Giancarlo Volpe,8.2 +10294,10294,Fire,3,The Runaway,7,Dealer,Wow. Fancy guessing. You are amazing at this. [Plays with a few silver pieces in his hands.] Would you like to make the game a little more interesting?,Wow. Fancy guessing. You are amazing at this. Would you like to make the game a little more interesting?,Joshua Hamilton,Giancarlo Volpe,8.2 +10295,10295,Fire,3,The Runaway,7,Toph,[Curiously.] More interesting? How?,More interesting? How?,Joshua Hamilton,Giancarlo Volpe,8.2 +10296,10296,Fire,3,The Runaway,7,Dealer,"[Points at Sokka's sword.] Well, let's say you toss in your friend's fine sword there, [Grabs a big bag of money.] then I'll put up twenty silver pieces against it, and that's more interesting.","Well, let's say you toss in your friend's fine sword there, then I'll put up twenty silver pieces against it, and that's more interesting.",Joshua Hamilton,Giancarlo Volpe,8.2 +10297,10297,Fire,3,The Runaway,7,Toph,[Grabs Sokka's sword.] I'll do it for forty silver pieces. [Sokka stares at them with his mouth wide open.],I'll do it for forty silver pieces.,Joshua Hamilton,Giancarlo Volpe,8.2 +10298,10298,Fire,3,The Runaway,7,Dealer,"Forty silver pieces it is. [Drops some more money into the bag and starts moving the shells, faster this time.]",Forty silver pieces it is.,Joshua Hamilton,Giancarlo Volpe,8.2 +10299,10299,Fire,3,The Runaway,7,Scene Description,"The scam artist moves the first two rocks into his sleeves, which Toph senses as she smiles slyly again. He attempts to do the same with the third rock, but Toph inconspicuously clutches her fist, causing the rock to move back underneath the shell, which the scam artist does not notice. When he stops, she smiles and points at the shell in the middle.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10300,10300,Fire,3,The Runaway,7,Dealer,"[Moves his hand over to the shell, about to lift it.] Sorry, little lady, but- [Lifts up the shell and sees the rock, which shocks and confuses him.] Huh? [Stares closely at the rock.]","Sorry, little lady, but- Huh?",Joshua Hamilton,Giancarlo Volpe,8.2 +10301,10301,Fire,3,The Runaway,7,Toph,"I won! [She grabs the bag of money, and Sokka grabs his sword as they run off.]",I won!,Joshua Hamilton,Giancarlo Volpe,8.2 +10302,10302,Fire,3,The Runaway,7,Scene Description,"Cut to Toph, Aang, and Sokka heading back to camp, laughing and carrying baskets full of goods. Katara is seen cooking something in a pot as they all drop their baskets onto the ground and Katara looks at the baskets with curiosity.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10303,10303,Fire,3,The Runaway,7,Katara,Where did you guys get the money to buy all this stuff?,Where did you guys get the money to buy all this stuff?,Joshua Hamilton,Giancarlo Volpe,8.2 +10304,10304,Fire,3,The Runaway,7,Aang,Toph got us money. [Grabs an apple and takes a bite out of it as he sits down.] She scammed one of those guys in town who moves the shells around all sneaky-like. [He mimics the scam artist moving the shells with his hand. Katara's expression shows disapproval.],Toph got us money. She scammed one of those guys in town who moves the shells around all sneaky-like.,Joshua Hamilton,Giancarlo Volpe,8.2 +10305,10305,Fire,3,The Runaway,7,Sokka,[Sits down too.] She used earthbending to win the game! Classic!,She used earthbending to win the game! Classic!,Joshua Hamilton,Giancarlo Volpe,8.2 +10306,10306,Fire,3,The Runaway,7,Katara,"Ah, so she cheated.","Ah, so she cheated.",Joshua Hamilton,Giancarlo Volpe,8.2 +10307,10307,Fire,3,The Runaway,7,Toph,"[Starts to bite her apple, but stops to defend herself.] Hey! I only cheated because he was cheating! [Smiles.] I cheated a cheater. [Closes her eyes in confidence.] What's wrong with that?",Hey! I only cheated because he was cheating! I cheated a cheater. What's wrong with that?,Joshua Hamilton,Giancarlo Volpe,8.2 +10308,10308,Fire,3,The Runaway,7,Katara,I'm just saying this isn't something we should make a habit of doing.,I'm just saying this isn't something we should make a habit of doing.,Joshua Hamilton,Giancarlo Volpe,8.2 +10309,10309,Fire,3,The Runaway,7,Toph,Why? Because it's fun? And you hate fun?,Why? Because it's fun? And you hate fun?,Joshua Hamilton,Giancarlo Volpe,8.2 +10310,10310,Fire,3,The Runaway,7,Katara,"I don't hate fun! [Places Momo on her head like a hat while grinning unconvincingly.] See? Fun! [Momo slips off her head, screeches at her, and runs away.]",I don't hate fun! See? Fun!,Joshua Hamilton,Giancarlo Volpe,8.2 +10311,10311,Fire,3,The Runaway,7,Aang,"[Stands up.] Katara, [Slightly lifts his headband to reveal his airbender tattoo and bows.] I'll personally make you an Avatar Promise that we won't make a habit of doing these scams.","Katara, I'll personally make you an Avatar Promise that we won't make a habit of doing these scams.",Joshua Hamilton,Giancarlo Volpe,8.2 +10312,10312,Fire,3,The Runaway,7,Scene Description,"The camera switches to the city, where Aang goes from bowing to doing tricks with the money in his hands and runs off. A few citizens are seen playing a dice like game. The two winners see Toph holding a bag of money and call her over. She tosses the two die. One lands on three, which is the highest number, and the other is about to go from three to zero. Cut to Toph, who twitches her head to the left slightly without any of the others seeing, causing the die to move back to the three, meaning she wins much to the winners' dismay and Sokka's and Aang's joy. +Cut to an area where a carnival is being hosted, where a big man tries a test-your-strength game, in which you need to use a hammer to launch a ball up to ring the bell, but can only make it about halfway. Toph jiggles a bag of money and walks over. Aang and Sokka watch from behind as she hands the man in charge of the game the money and places her hands on the hammer. She struggles to move it over her head and behind her, which makes all in the crowd snicker and laugh. Toph smiles again as she uses earthbending to launch the hammer's head from behind her to the lever with great force. The ball is launched so hard that it launches out of the game, destroying the top of it, which leaves everyone shocked. She casually grabs her winnings and leaves as the ball crashes into a tent behind, causing everyone to cringe at the sound, and looks back to see the damage. +The camera next cuts to a street where a carriage is being pulled by a dragon moose. Cut to a side-shot of the inside of the carriage where a noble opens his cup of tea to his delight and waves the aroma to his face. Toph emerges from a dark alley and creates a small rock right in front of one of the wheels to stop the cart. She falls back, pretending to have been hit. The noble peeks outside the carriage window and sees Toph. He jumps out of the carriage and starts to run, but is stopped by what looks like a Fire Nation guard, who is really Sokka in his Wang Fire costume. He notices Toph being ""run over"" and crosses his arms angrily at the noble, who gets on his knees and begs Sokka. He places twelve small bags of money as bribery, one after another in Sokka's arms, and Sokka smiles and winks at him to assure him that Sokka will keep this secret. The camera cuts to back at camp.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10313,10313,Fire,3,The Runaway,7,Katara,"Guys, I think these scams have gone far enough. If you keep doing them, something bad is gonna happen.","Guys, I think these scams have gone far enough. If you keep doing them, something bad is gonna happen.",Joshua Hamilton,Giancarlo Volpe,8.2 +10314,10314,Fire,3,The Runaway,7,Toph,Could you for once stop being such a sourpuss and just lighten up? [Tosses some money to Katara.],Could you for once stop being such a sourpuss and just lighten up?,Joshua Hamilton,Giancarlo Volpe,8.2 +10315,10315,Fire,3,The Runaway,7,Katara,"[Angrily.] Oh, I'm sorry! You think I should be more like you? Like some wild child? [Tosses the money back at Toph.]","Oh, I'm sorry! You think I should be more like you? Like some wild child?",Joshua Hamilton,Giancarlo Volpe,8.2 +10316,10316,Fire,3,The Runaway,7,Toph,"Yeah! Maybe! Maybe then you'd see [Sokka grabs the money off the ground.] how great we have it! I mean, look at us! [Leans back on the rock behind her and crosses her arms behind her head.] We're traveling around the world! Making easy money! Having fun! With no parents to tell us what to do!","Yeah! Maybe! Maybe then you'd see  how great we have it! I mean, look at us! We're traveling around the world! Making easy money! Having fun! With no parents to tell us what to do!",Joshua Hamilton,Giancarlo Volpe,8.2 +10317,10317,Fire,3,The Runaway,7,Katara,Ah. I see. You're acting like this because of your parents.,Ah. I see. You're acting like this because of your parents.,Joshua Hamilton,Giancarlo Volpe,8.2 +10318,10318,Fire,3,The Runaway,7,Toph,Whatever.,Whatever.,Joshua Hamilton,Giancarlo Volpe,8.2 +10319,10319,Fire,3,The Runaway,7,Katara,"They were controlling over you, so you ran away, and now you act like your parents don't exist. You act like you hate them, but you don't. You just feel guilty.","They were controlling over you, so you ran away, and now you act like your parents don't exist. You act like you hate them, but you don't. You just feel guilty.",Joshua Hamilton,Giancarlo Volpe,8.2 +10320,10320,Fire,3,The Runaway,7,Toph,I do hate them.,I do hate them.,Joshua Hamilton,Giancarlo Volpe,8.2 +10321,10321,Fire,3,The Runaway,7,Katara,"I don't think so. I think you miss them, but you just don't wanna deal with that, so instead you act like this crazy person.","I don't think so. I think you miss them, but you just don't wanna deal with that, so instead you act like this crazy person.",Joshua Hamilton,Giancarlo Volpe,8.2 +10322,10322,Fire,3,The Runaway,7,Toph,"[Stands up; angrily.] Look, I ran away to help Aang!","Look, I ran away to help Aang!",Joshua Hamilton,Giancarlo Volpe,8.2 +10323,10323,Fire,3,The Runaway,7,Katara,"You know what? It doesn't matter. These scams put us all at risk, and we don't need that. [Points at her forehead.] We've already got some third-eyed freak after us.","You know what? It doesn't matter. These scams put us all at risk, and we don't need that. We've already got some third-eyed freak after us.",Joshua Hamilton,Giancarlo Volpe,8.2 +10324,10324,Fire,3,The Runaway,7,Sokka,"Speaking of that ""third-eyed freak"", I think I've come up with a name for him. What do you think of ""Sparky-Sparky-Boom Man""? [Silence.] Just think about it.","Speaking of that ""third-eyed freak"", I think I've come up with a name for him. What do you think of ""Sparky-Sparky-Boom Man""? Just think about it.",Joshua Hamilton,Giancarlo Volpe,8.2 +10325,10325,Fire,3,The Runaway,7,Katara,[Angrily.] We have enough money! You need to stop this!,We have enough money! You need to stop this!,Joshua Hamilton,Giancarlo Volpe,8.2 +10326,10326,Fire,3,The Runaway,7,Toph,[Angrily.] I'll stop when I wanna stop and not when you tell me! [Uses earthbending to launch the bag of money behind her into her hand and walks away angrily. Katara shakes her head angrily as Toph sits and creates an earth tent.],I'll stop when I wanna stop and not when you tell me!,Joshua Hamilton,Giancarlo Volpe,8.2 +10327,10327,Fire,3,The Runaway,7,Sokka,"[Grabs his bag of money and his sword and stands up.] Speaking of money, I'm off to spend some. See you guys later. [Walks away.]","Speaking of money, I'm off to spend some. See you guys later.",Joshua Hamilton,Giancarlo Volpe,8.2 +10328,10328,Fire,3,The Runaway,7,Scene Description,"In town, Sokka just bought a messenger hawk, which he names Hawky.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10329,10329,Fire,3,The Runaway,7,Sokka,"Hawky, welcome to Team Avatar. My name's Sokka, and I'm your new owner, and as such I should warn you that there's already a lemur in our group, so I don't wanna see any fighting. [Scratches Hawky on the stomach.] Good little messenger hawky. Who's got pretty feathers? [While walking away, he notices a wanted poster he had just past with Toph's picture on it. He gasps in horror and rips it off the wall. Hawky screeches.] You're right, Hawky. This is bad. [Suddenly, the bird poops while standing on Sokka's arm.]","Hawky, welcome to Team Avatar. My name's Sokka, and I'm your new owner, and as such I should warn you that there's already a lemur in our group, so I don't wanna see any fighting. Good little messenger hawky. Who's got pretty feathers? You're right, Hawky. This is bad.",Joshua Hamilton,Giancarlo Volpe,8.2 +10330,10330,Fire,3,The Runaway,7,Scene Description,"The scene changes to back at camp. Katara and Aang are practicing waterbending, while Toph is counting her money. Sokka walks up to her.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10331,10331,Fire,3,The Runaway,7,Sokka,"Toph, while I was in town, I found something that you're not gonna like. [Pulls out the wanted poster and shows it to her.]","Toph, while I was in town, I found something that you're not gonna like.",Joshua Hamilton,Giancarlo Volpe,8.2 +10332,10332,Fire,3,The Runaway,7,Toph,"Well it sounds like a sheet of paper, but I guess you're referring to what's on the sheet of paper.","Well it sounds like a sheet of paper, but I guess you're referring to what's on the sheet of paper.",Joshua Hamilton,Giancarlo Volpe,8.2 +10333,10333,Fire,3,The Runaway,7,Sokka,It's a wanted poster. Of you. They've nicknamed you the Runaway.,It's a wanted poster. Of you. They've nicknamed you the Runaway.,Joshua Hamilton,Giancarlo Volpe,8.2 +10334,10334,Fire,3,The Runaway,7,Toph,"[Happily.] A wanted poster! That's so great! ""The Runaway."" I love my new nickname. Is there a picture of me? Does it look good?","A wanted poster! That's so great! ""The Runaway."" I love my new nickname. Is there a picture of me? Does it look good?",Joshua Hamilton,Giancarlo Volpe,8.2 +10335,10335,Fire,3,The Runaway,7,Sokka,"[Looks a few times at both the wanted poster and Toph.] Well yeah, actually, it does look pretty good. [Gets back on topic.] But, Toph, you're missing the point. Maybe Katara was right. These scams are drawing too much attention to us.","Well yeah, actually, it does look pretty good. But, Toph, you're missing the point. Maybe Katara was right. These scams are drawing too much attention to us.",Joshua Hamilton,Giancarlo Volpe,8.2 +10336,10336,Fire,3,The Runaway,7,Toph,Don't be such a worrywart like your sister. [Stands up and walks up to Sokka.] Think of it this way: Now you've got plenty of money to help with the invasion plan. [Holds up a bag of money and jiggles it in front of him.],Don't be such a worrywart like your sister. Think of it this way: Now you've got plenty of money to help with the invasion plan.,Joshua Hamilton,Giancarlo Volpe,8.2 +10337,10337,Fire,3,The Runaway,7,Sokka,"[Ponders for a moment.] Well, that is true. I had this idea of making armor for Appa. [Looks at Appa, who is napping, but opens one eye upon hearing this.]","Well, that is true. I had this idea of making armor for Appa.",Joshua Hamilton,Giancarlo Volpe,8.2 +10338,10338,Fire,3,The Runaway,7,Toph,"[Takes some money out of the bag and hands the money to him.] Here's a little extra, so you can get yourself a nice map of the Fire Nation. You know what? [Gives the entire bag to him.] Make it an atlas.","Here's a little extra, so you can get yourself a nice map of the Fire Nation. You know what? Make it an atlas.",Joshua Hamilton,Giancarlo Volpe,8.2 +10339,10339,Fire,3,The Runaway,7,Sokka,[While taking the bag.] I do like expensive atlases.,I do like expensive atlases.,Joshua Hamilton,Giancarlo Volpe,8.2 +10340,10340,Fire,3,The Runaway,7,Toph,Of course you do. [Grabs the wanted poster and tucks it into her outfit.] And that's why this wanted poster is going to stay our little secret. [Walks away.],Of course you do. And that's why this wanted poster is going to stay our little secret.,Joshua Hamilton,Giancarlo Volpe,8.2 +10341,10341,Fire,3,The Runaway,7,Scene Description,"Aang and Katara walk up to Sokka, who tucks his new money into his outfit",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10342,10342,Fire,3,The Runaway,7,Katara,"Sokka, [Places her hand on her face; annoyed.] tell me you didn't buy a bird.","Sokka, tell me you didn't buy a bird.",Joshua Hamilton,Giancarlo Volpe,8.2 +10343,10343,Fire,3,The Runaway,7,Sokka,"Not just a bird, a messenger bird. Now we can send messages all over the world. Even to Gran Gran.","Not just a bird, a messenger bird. Now we can send messages all over the world. Even to Gran Gran.",Joshua Hamilton,Giancarlo Volpe,8.2 +10344,10344,Fire,3,The Runaway,7,Aang,"[Excited.] Wow, how does it work?","Wow, how does it work?",Joshua Hamilton,Giancarlo Volpe,8.2 +10345,10345,Fire,3,The Runaway,7,Sokka,"Hm. Uh, I never actually thought about that. Hawky, [Points away from himself.] Gran Gran, South Pole. [Hawky shakes himself.] I think he gets it.","Hm. Uh, I never actually thought about that. Hawky, Gran Gran, South Pole. I think he gets it.",Joshua Hamilton,Giancarlo Volpe,8.2 +10346,10346,Fire,3,The Runaway,7,Scene Description,Momo appears on Aang's shoulder and screeches at Hawky. He jumps to Sokka and starts chasing Hawky around Sokka's head.,NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10347,10347,Fire,3,The Runaway,7,Sokka,Hawky! Make nice! Bad Hawky!,Hawky! Make nice! Bad Hawky!,Joshua Hamilton,Giancarlo Volpe,8.2 +10348,10348,Fire,3,The Runaway,7,Scene Description,"Later on at camp, Katara is mixing something in a cooking pot via waterbending. She waterbends some of it out of the pot and into Appa's mouth, which causes him to lick his lips, while Aang sits on a ledge in front of Appa and drinks something out of a cup. Toph and Sokka, the latter with Hawky on his shoulder, show up carrying big bags of money.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10349,10349,Fire,3,The Runaway,7,Katara,[Sarcastically.] Well. Look who decided to join us. [Stands up.] Where have you two been? Off scamming again?,Well. Look who decided to join us. Where have you two been? Off scamming again?,Joshua Hamilton,Giancarlo Volpe,8.2 +10350,10350,Fire,3,The Runaway,7,Toph,"Yes, we were. [Puts her bag down.]","Yes, we were.",Joshua Hamilton,Giancarlo Volpe,8.2 +10351,10351,Fire,3,The Runaway,7,Katara,[Slides to the right to behind Toph.] And I suppose you don't think what you're doing is dangerous at all?,And I suppose you don't think what you're doing is dangerous at all?,Joshua Hamilton,Giancarlo Volpe,8.2 +10352,10352,Fire,3,The Runaway,7,Toph,"No, I don't.","No, I don't.",Joshua Hamilton,Giancarlo Volpe,8.2 +10353,10353,Fire,3,The Runaway,7,Katara,Really?,Really?,Joshua Hamilton,Giancarlo Volpe,8.2 +10354,10354,Fire,3,The Runaway,7,Toph,Yes. Really.,Yes. Really.,Joshua Hamilton,Giancarlo Volpe,8.2 +10355,10355,Fire,3,The Runaway,7,Katara,[Starts to pull something out.] Well then. What's this? [Shows Toph her wanted poster.],Well then. What's this?,Joshua Hamilton,Giancarlo Volpe,8.2 +10356,10356,Fire,3,The Runaway,7,Toph,"[Annoyed.] I don't know! I mean, seriously! What is with you people? I'm blind! [Points at her eyes and pulls down her bottom eyelids to emphasize her words.]","I don't know! I mean, seriously! What is with you people? I'm blind!",Joshua Hamilton,Giancarlo Volpe,8.2 +10357,10357,Fire,3,The Runaway,7,Katara,"It's a wanted poster of you! ""The Runaway!"" Is that what you're called now? Are you proud of this?","It's a wanted poster of you! ""The Runaway!"" Is that what you're called now? Are you proud of this?",Joshua Hamilton,Giancarlo Volpe,8.2 +10358,10358,Fire,3,The Runaway,7,Toph,[Angrily.] Where did you get that!?,Where did you get that!?,Joshua Hamilton,Giancarlo Volpe,8.2 +10359,10359,Fire,3,The Runaway,7,Katara,It doesn't matter where I got it. The fact is-,It doesn't matter where I got it. The fact is-,Joshua Hamilton,Giancarlo Volpe,8.2 +10360,10360,Fire,3,The Runaway,7,Toph,You went through my stuff! You had no right!,You went through my stuff! You had no right!,Joshua Hamilton,Giancarlo Volpe,8.2 +10361,10361,Fire,3,The Runaway,7,Katara,"Your stuff was messy and I was just straightening up, and I happened to stumble across it!","Your stuff was messy and I was just straightening up, and I happened to stumble across it!",Joshua Hamilton,Giancarlo Volpe,8.2 +10362,10362,Fire,3,The Runaway,7,Toph,"That's a lie! [Points at her.] You're lying, Katara!","That's a lie! You're lying, Katara!",Joshua Hamilton,Giancarlo Volpe,8.2 +10363,10363,Fire,3,The Runaway,7,Katara,"[Cut to a surprised Katara who glares at Toph. Pushes Toph's pointing hand out of her face.] Fine! It's a lie! But you've been so out of control lately, I knew something was up! I knew you were hiding something and you were! [Shows her the poster again, but Toph grabs it, tosses it and starts to walk past Katara.] Don't you walk away from me while I'm talking to you!","Fine! It's a lie! But you've been so out of control lately, I knew something was up! I knew you were hiding something and you were! Don't you walk away from me while I'm talking to you!",Joshua Hamilton,Giancarlo Volpe,8.2 +10364,10364,Fire,3,The Runaway,7,Toph,"[Sarcastically.] Oh really, Mom? Or what are you gonna do? Send me to my room?","Oh really, Mom? Or what are you gonna do? Send me to my room?",Joshua Hamilton,Giancarlo Volpe,8.2 +10365,10365,Fire,3,The Runaway,7,Katara,I wish I could!,I wish I could!,Joshua Hamilton,Giancarlo Volpe,8.2 +10366,10366,Fire,3,The Runaway,7,Toph,"Well you can't! Because you're not my mom, and you're not their mom! [Extends her arm at Aang and Sokka, who are sitting on a ledge.]","Well you can't! Because you're not my mom, and you're not their mom!",Joshua Hamilton,Giancarlo Volpe,8.2 +10367,10367,Fire,3,The Runaway,7,Katara,I never said I was!,I never said I was!,Joshua Hamilton,Giancarlo Volpe,8.2 +10368,10368,Fire,3,The Runaway,7,Toph,"No, but you certainly act like it! You think it's your job to boss everyone around, but it's not! You're just a regular kid like the rest of us! So stop acting like you can tell me what to do! I can do whatever I want!","No, but you certainly act like it! You think it's your job to boss everyone around, but it's not! You're just a regular kid like the rest of us! So stop acting like you can tell me what to do! I can do whatever I want!",Joshua Hamilton,Giancarlo Volpe,8.2 +10369,10369,Fire,3,The Runaway,7,Katara,"I don't act that way! [Looks at Sokka, who jumps as she says his name.] Sokka, do I act motherly?","I don't act that way! Sokka, do I act motherly?",Joshua Hamilton,Giancarlo Volpe,8.2 +10370,10370,Fire,3,The Runaway,7,Sokka,[Puts his hands up defensively.] Hey. I'm staying out of this one.,Hey. I'm staying out of this one.,Joshua Hamilton,Giancarlo Volpe,8.2 +10371,10371,Fire,3,The Runaway,7,Katara,"[Looks at Aang.] What do you think, Aang? Do I act like a mom?","What do you think, Aang? Do I act like a mom?",Joshua Hamilton,Giancarlo Volpe,8.2 +10372,10372,Fire,3,The Runaway,7,Aang,"[Rubs his eye.] Well. I, uh-","Well. I, uh-",Joshua Hamilton,Giancarlo Volpe,8.2 +10373,10373,Fire,3,The Runaway,7,Katara,[Slightly annoyed.] Stop rubbing your eye and speak clearly when you talk!,Stop rubbing your eye and speak clearly when you talk!,Joshua Hamilton,Giancarlo Volpe,8.2 +10374,10374,Fire,3,The Runaway,7,Aang,"[He and Sokka sit straight.] Yes, ma'am.","Yes, ma'am.",Joshua Hamilton,Giancarlo Volpe,8.2 +10375,10375,Fire,3,The Runaway,7,Toph,I can't be around you right now!,I can't be around you right now!,Joshua Hamilton,Giancarlo Volpe,8.2 +10376,10376,Fire,3,The Runaway,7,Katara,"Well, I can't be around you!","Well, I can't be around you!",Joshua Hamilton,Giancarlo Volpe,8.2 +10377,10377,Fire,3,The Runaway,7,Scene Description,"Both girls turn and walk away. Hawky, sitting on Sokka's shoulder, screeches.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10378,10378,Fire,3,The Runaway,7,Sokka,"[Rests his head in his hands.] I know, Hawky. Why can't they just get along?","I know, Hawky. Why can't they just get along?",Joshua Hamilton,Giancarlo Volpe,8.2 +10379,10379,Fire,3,The Runaway,7,Scene Description,"Later on at camp, Sokka and Aang are sitting together. Toph and Katara are sitting at separate edges of the cliff, their backs to one another.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10380,10380,Fire,3,The Runaway,7,Sokka,"Hey, Aang. You wanna test out my messenger hawk with me? I've got an idea.","Hey, Aang. You wanna test out my messenger hawk with me? I've got an idea.",Joshua Hamilton,Giancarlo Volpe,8.2 +10381,10381,Fire,3,The Runaway,7,Aang,Sure. [Leans his head closer to Sokka.],Sure.,Joshua Hamilton,Giancarlo Volpe,8.2 +10382,10382,Fire,3,The Runaway,7,Sokka,"[Talks into Aang's ear.] I'm going to send a note to Katara and say it's from Toph, who wants to apologize. Then everyone will be friends again.","I'm going to send a note to Katara and say it's from Toph, who wants to apologize. Then everyone will be friends again.",Joshua Hamilton,Giancarlo Volpe,8.2 +10383,10383,Fire,3,The Runaway,7,Aang,"I gotta say, Sokka, you continue to impress me with your ideas.","I gotta say, Sokka, you continue to impress me with your ideas.",Joshua Hamilton,Giancarlo Volpe,8.2 +10384,10384,Fire,3,The Runaway,7,Sokka,"It's a gift. [Pulls out a pen and ink and a piece of paper and starts to write.] ""Dear Katara, sorry for everything. Your friend, Toph.""","It's a gift. ""Dear Katara, sorry for everything. Your friend, Toph.""",Joshua Hamilton,Giancarlo Volpe,8.2 +10385,10385,Fire,3,The Runaway,7,Scene Description,"Sokka positions Hawky on his arm and places the note in Hawky's message holder. Hawky flies to Katara, who takes the note out, reads it, and angrily stands up.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10386,10386,Fire,3,The Runaway,7,Katara,"I know this is from you, Sokka! Toph can't write! [Tears the note up into pieces.] Ugh! You're all driving me crazy! [Turns and walks away.]","I know this is from you, Sokka! Toph can't write! Ugh! You're all driving me crazy!",Joshua Hamilton,Giancarlo Volpe,8.2 +10387,10387,Fire,3,The Runaway,7,Aang,I can't believe we forgot Toph can't write.,I can't believe we forgot Toph can't write.,Joshua Hamilton,Giancarlo Volpe,8.2 +10388,10388,Fire,3,The Runaway,7,Sokka,Yup. We're idiots. [Hawky flies back onto his arm.],Yup. We're idiots.,Joshua Hamilton,Giancarlo Volpe,8.2 +10389,10389,Fire,3,The Runaway,7,Aang,I guess Plan B is we send a note to Toph pretending it's from Katara.,I guess Plan B is we send a note to Toph pretending it's from Katara.,Joshua Hamilton,Giancarlo Volpe,8.2 +10390,10390,Fire,3,The Runaway,7,Sokka,"I think we're gonna run into a similar problem. [Hawky screeches.] Sorry, Hawky. Looks like I'm gonna have to do this without your help. [Walks to Toph.] Come on. We need to talk.","I think we're gonna run into a similar problem. Sorry, Hawky. Looks like I'm gonna have to do this without your help. Come on. We need to talk.",Joshua Hamilton,Giancarlo Volpe,8.2 +10391,10391,Fire,3,The Runaway,7,Scene Description,"Toph exhales, annoyed. The camera cuts to another area of the camp. Katara is bathing in a lake directly below a cliff. Sokka and Toph walk up to the edge of the cliff and sit down, not noticing Katara.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10392,10392,Fire,3,The Runaway,7,Toph,So lemme guess: You brought me out here to tell me that your sister's not as annoying as I make her out to be.,So lemme guess: You brought me out here to tell me that your sister's not as annoying as I make her out to be.,Joshua Hamilton,Giancarlo Volpe,8.2 +10393,10393,Fire,3,The Runaway,7,Sokka,"Nah, she's pretty much a pain. [Katara, looking up at their feet from below and behind, glares and looks away.] She's always got to be right about everything and she gets all bossy and involved and in your business ...","Nah, she's pretty much a pain. She's always got to be right about everything and she gets all bossy and involved and in your business ...",Joshua Hamilton,Giancarlo Volpe,8.2 +10394,10394,Fire,3,The Runaway,7,Toph,Yeah. I don't know how you could deal with it.,Yeah. I don't know how you could deal with it.,Joshua Hamilton,Giancarlo Volpe,8.2 +10395,10395,Fire,3,The Runaway,7,Sokka,"Actually, in a way, I rely on it. [Katara looks back up at them.]","Actually, in a way, I rely on it.",Joshua Hamilton,Giancarlo Volpe,8.2 +10396,10396,Fire,3,The Runaway,7,Toph,I don't understand.,I don't understand.,Joshua Hamilton,Giancarlo Volpe,8.2 +10397,10397,Fire,3,The Runaway,7,Sokka,"When our mom died, that was the hardest time in my life. Our family was a mess, but Katara? She had so much strength. She stepped up and took on so much responsibility. She helped fill the void that was left by our mom.","When our mom died, that was the hardest time in my life. Our family was a mess, but Katara? She had so much strength. She stepped up and took on so much responsibility. She helped fill the void that was left by our mom.",Joshua Hamilton,Giancarlo Volpe,8.2 +10398,10398,Fire,3,The Runaway,7,Toph,I guess I never thought about that.,I guess I never thought about that.,Joshua Hamilton,Giancarlo Volpe,8.2 +10399,10399,Fire,3,The Runaway,7,Sokka,"I'm gonna tell you something crazy. I never told anyone this before, but honestly? I'm not sure I can remember what my mother looked like. It really seems like my whole life, Katara's been the one looking out for me. She's always been the one that's there. And now, when I try to remember my mom, Katara's is the only face I can picture. [Katara, touched by what Sokka says, is reduced to tears.]","I'm gonna tell you something crazy. I never told anyone this before, but honestly? I'm not sure I can remember what my mother looked like. It really seems like my whole life, Katara's been the one looking out for me. She's always been the one that's there. And now, when I try to remember my mom, Katara's is the only face I can picture.",Joshua Hamilton,Giancarlo Volpe,8.2 +10400,10400,Fire,3,The Runaway,7,Toph,"The truth is sometimes Katara does act motherly, but that's not always a bad thing. She's compassionate and kind, and she actually cares about me. [Wipes away tears from her left eye.] You know, the real me. That's more than my own mom. [Katara, deeply touched by Toph's words, sinks slightly into the water. Toph punches Sokka in the arm.] Don't ever tell her I said any of this!","The truth is sometimes Katara does act motherly, but that's not always a bad thing. She's compassionate and kind, and she actually cares about me. You know, the real me. That's more than my own mom. Don't ever tell her I said any of this!",Joshua Hamilton,Giancarlo Volpe,8.2 +10401,10401,Fire,3,The Runaway,7,Sokka,"Hey, my lips are sealed.","Hey, my lips are sealed.",Joshua Hamilton,Giancarlo Volpe,8.2 +10402,10402,Fire,3,The Runaway,7,Scene Description,"At around nightfall, Katara is sitting next to Momo, who is napping with Katara rubbing the top of his head. Katara is looking down in front of her, saddened. She sees Sokka and Toph walking toward her and walks up to Toph. When they reach each other, Sokka keeps walking.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10403,10403,Fire,3,The Runaway,7,Katara,"Hi, Toph. Um, I wanna-","Hi, Toph. Um, I wanna-",Joshua Hamilton,Giancarlo Volpe,8.2 +10404,10404,Fire,3,The Runaway,7,Toph,"[Holds up her hand in a ""stop"" fashion.] Katara, stop. You don't need to apologize. I was the one being stupid. These scams are out of control, and I'm done with them.","Katara, stop. You don't need to apologize. I was the one being stupid. These scams are out of control, and I'm done with them.",Joshua Hamilton,Giancarlo Volpe,8.2 +10405,10405,Fire,3,The Runaway,7,Katara,"[Smiles.] Actually I wasn't going to apologize. I was gonna say ... I wanna pull a scam with you. [Aang and Sokka stare at her from behind, extremely shocked.]",Actually I wasn't going to apologize. I was gonna say ... I wanna pull a scam with you.,Joshua Hamilton,Giancarlo Volpe,8.2 +10406,10406,Fire,3,The Runaway,7,Toph,[Also shocked.] What? You wanna pull a scam?,What? You wanna pull a scam?,Joshua Hamilton,Giancarlo Volpe,8.2 +10407,10407,Fire,3,The Runaway,7,Katara,"Not just any scam. The ultimate scam. [Sokka and Aang, still staring at her with shock, look at each other and faint, foaming from the mouth slightly. Katara puts her arm around Toph's shoulder, who gives a sly smile.] Whaddaya say, Toph? Just me and you. One last go. You in?","Not just any scam. The ultimate scam. Whaddaya say, Toph? Just me and you. One last go. You in?",Joshua Hamilton,Giancarlo Volpe,8.2 +10408,10408,Fire,3,The Runaway,7,Toph,"[Excited.] You know I'm in! Now what's this idea of yours? [They walk away and leave Aang and Sokka behind, who are now unconscious and foaming at the mouth.]",You know I'm in! Now what's this idea of yours?,Joshua Hamilton,Giancarlo Volpe,8.2 +10409,10409,Fire,3,The Runaway,7,Scene Description,The scene changes to Katara and Toph going over the plan. Katara is looking at Toph's wanted poster.,NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10410,10410,Fire,3,The Runaway,7,Katara,"The plan is simple: This wanted poster says you're worth a lot of money; Ten times more than you've made in all of your scams. So I'm gonna turn you in and collect the reward. Then you metalbend yourself out of jail, and we're on our way. [As she speaks, the screen fades to the beginning of the episode, where Toph is seen running from the authorities and is caught in a net.]","The plan is simple: This wanted poster says you're worth a lot of money; Ten times more than you've made in all of your scams. So I'm gonna turn you in and collect the reward. Then you metalbend yourself out of jail, and we're on our way.",Joshua Hamilton,Giancarlo Volpe,8.2 +10411,10411,Fire,3,The Runaway,7,Toph,[Angrily.] How could you do this to me? You betrayed me!,How could you do this to me? You betrayed me!,Joshua Hamilton,Giancarlo Volpe,8.2 +10412,10412,Fire,3,The Runaway,7,Katara,[Crosses her arms.] You brought this on yourself. I had no choice. [Turns away from Toph.],You brought this on yourself. I had no choice.,Joshua Hamilton,Giancarlo Volpe,8.2 +10413,10413,Fire,3,The Runaway,7,Scene Description,"Toph is dragged away in the net, all the while glaring back at Katara. Katara glances back slightly and gives a sly smile. She is joined by the chief of authorities.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10414,10414,Fire,3,The Runaway,7,Town authority,You did the right thing by turning in the Runaway.,You did the right thing by turning in the Runaway.,Joshua Hamilton,Giancarlo Volpe,8.2 +10415,10415,Fire,3,The Runaway,7,Katara,The right thing is its own reward.,The right thing is its own reward.,Joshua Hamilton,Giancarlo Volpe,8.2 +10416,10416,Fire,3,The Runaway,7,Town authority,"Well, I'm happy to hear you say that.","Well, I'm happy to hear you say that.",Joshua Hamilton,Giancarlo Volpe,8.2 +10417,10417,Fire,3,The Runaway,7,Katara,"[Pauses for a moment.] But, I still want the actual reward.","But, I still want the actual reward.",Joshua Hamilton,Giancarlo Volpe,8.2 +10418,10418,Fire,3,The Runaway,7,Town authority,Of course. Right this way.,Of course. Right this way.,Joshua Hamilton,Giancarlo Volpe,8.2 +10419,10419,Fire,3,The Runaway,7,Scene Description,"Meanwhile, a female guard drags Toph into a jail. She throws Toph from the net into a wooden cell and closes it. Toph feels the floor of her cell, but is shocked when she can't sense any earth in it. She gets up and looks outside the cell at the guard.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10420,10420,Fire,3,The Runaway,7,Toph,Hey! What kind of cell is this?,Hey! What kind of cell is this?,Joshua Hamilton,Giancarlo Volpe,8.2 +10421,10421,Fire,3,The Runaway,7,Female guard,A wooden one. [She walks away as Toph becomes visibly worried.],A wooden one.,Joshua Hamilton,Giancarlo Volpe,8.2 +10422,10422,Fire,3,The Runaway,7,Scene Description,"In an office, the town authority grabs a box underneath a desk and looks around in it. A door opens behind Katara, who is standing across the desk from the chief. The chief closes the box and points at Katara.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10423,10423,Fire,3,The Runaway,7,Town authority,That's her! That's the girl you were looking for!,That's her! That's the girl you were looking for!,Joshua Hamilton,Giancarlo Volpe,8.2 +10424,10424,Fire,3,The Runaway,7,Scene Description,"Katara turns and sees the assassin with the third eye tattooed on his head, aka ""Sparky-Sparky-Boom Man"", walk in, leaving her shocked and horrified. Meanwhile, at camp, Sokka and Aang are worried, the latter pacing back and forth.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10425,10425,Fire,3,The Runaway,7,Aang,Do you think this scam of theirs should be taking this long?,Do you think this scam of theirs should be taking this long?,Joshua Hamilton,Giancarlo Volpe,8.2 +10426,10426,Fire,3,The Runaway,7,Sokka,"I was just wondering the same thing. We'd better check it out. [To Hawky and Momo.] You two behave. [Pointing at Appa.] Appa's in charge. [Appa lifts his head as the two animals start screeching at each other as soon as Sokka and Aang leave, but stop as soon as Appa roars at them.]",I was just wondering the same thing. We'd better check it out. You two behave. Appa's in charge.,Joshua Hamilton,Giancarlo Volpe,8.2 +10427,10427,Fire,3,The Runaway,7,Scene Description,"The camera cuts to Toph's cell, which now holds Katara too. They both are sitting on the floor, downcast, when Toph suddenly realizes something.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10428,10428,Fire,3,The Runaway,7,Toph,Wait! It's a trap!,Wait! It's a trap!,Joshua Hamilton,Giancarlo Volpe,8.2 +10429,10429,Fire,3,The Runaway,7,Katara,"[Sarcastically.] Really? No kidding! Is that why we're sitting in a wooden cage right now? Gee, how'd you figure out it was a trap?","Really? No kidding! Is that why we're sitting in a wooden cage right now? Gee, how'd you figure out it was a trap?",Joshua Hamilton,Giancarlo Volpe,8.2 +10430,10430,Fire,3,The Runaway,7,Toph,"Not for us, Katara! We're the bait! He wants Aang! [Katara's eyes widen with realization.]","Not for us, Katara! We're the bait! He wants Aang!",Joshua Hamilton,Giancarlo Volpe,8.2 +10431,10431,Fire,3,The Runaway,7,Katara,I can't believe I'm so stupid! See? This is exactly why I'm against these scams! I knew this would happen!,I can't believe I'm so stupid! See? This is exactly why I'm against these scams! I knew this would happen!,Joshua Hamilton,Giancarlo Volpe,8.2 +10432,10432,Fire,3,The Runaway,7,Toph,"But, this was your idea.","But, this was your idea.",Joshua Hamilton,Giancarlo Volpe,8.2 +10433,10433,Fire,3,The Runaway,7,Katara,I know. I wanted to show that I'm not so motherly. I wanted to show you that I can have fun too.,I know. I wanted to show that I'm not so motherly. I wanted to show you that I can have fun too.,Joshua Hamilton,Giancarlo Volpe,8.2 +10434,10434,Fire,3,The Runaway,7,Toph,"Katara, you are fun. If nothing else, you're at least fun to argue with.","Katara, you are fun. If nothing else, you're at least fun to argue with.",Joshua Hamilton,Giancarlo Volpe,8.2 +10435,10435,Fire,3,The Runaway,7,Katara,I know your relationship with your parents is complicated. And I shouldn't have said what I said.,I know your relationship with your parents is complicated. And I shouldn't have said what I said.,Joshua Hamilton,Giancarlo Volpe,8.2 +10436,10436,Fire,3,The Runaway,7,Toph,"It's okay. I was really mad when you said that because ... well because, maybe it's true. [Starts to cry.] I try not to think about it, but when I left, I probably really hurt them.","It's okay. I was really mad when you said that because ... well because, maybe it's true. I try not to think about it, but when I left, I probably really hurt them.",Joshua Hamilton,Giancarlo Volpe,8.2 +10437,10437,Fire,3,The Runaway,7,Scene Description,"Katara embraces Toph. Meanwhile, Sokka and Aang walk around town looking for Katara and Toph. The town is seemingly abandoned.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10438,10438,Fire,3,The Runaway,7,Sokka,Where do you think they might be?,Where do you think they might be?,Joshua Hamilton,Giancarlo Volpe,8.2 +10439,10439,Fire,3,The Runaway,7,Aang,"Where do you think anyone is? [The assassin is seen walking across a rooftop behind them. Aang hears him inhaling and becomes shocked when he turns and sees him.] Sokka, watch out! [He grabs Sokka as they dodge a blast from the assassin and take cover behind an Ozai statue.] It's Sparky-Sparky-Boom Man!","Where do you think anyone is? Sokka, watch out! It's Sparky-Sparky-Boom Man!",Joshua Hamilton,Giancarlo Volpe,8.2 +10440,10440,Fire,3,The Runaway,7,Sokka,"You know, I'm starting to think that name doesn't quite fit.","You know, I'm starting to think that name doesn't quite fit.",Joshua Hamilton,Giancarlo Volpe,8.2 +10441,10441,Fire,3,The Runaway,7,Scene Description,"The assassin jumps down from the roof and fires another blast at them. They barely dodge it, but get sent flying back by the blast, which shakes the ceiling of Toph and Katara's cell. Toph is trying to break out, while Katara is sitting down.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10442,10442,Fire,3,The Runaway,7,Katara,What are we gonna do?,What are we gonna do?,Joshua Hamilton,Giancarlo Volpe,8.2 +10443,10443,Fire,3,The Runaway,7,Toph,I don't know. I wish we had some earth or water. We need bendables.,I don't know. I wish we had some earth or water. We need bendables.,Joshua Hamilton,Giancarlo Volpe,8.2 +10444,10444,Fire,3,The Runaway,7,Katara,What about your meteor bracelet? You can make a saw.,What about your meteor bracelet? You can make a saw.,Joshua Hamilton,Giancarlo Volpe,8.2 +10445,10445,Fire,3,The Runaway,7,Toph,I left it back at camp. [Sits down.] I was worried they would take it.,I left it back at camp. I was worried they would take it.,Joshua Hamilton,Giancarlo Volpe,8.2 +10446,10446,Fire,3,The Runaway,7,Scene Description,Katara exhales deeply and wipes her forehead with the back of her hand. Her eyes widen with realization as she notices her hand is covered in sweat. She smiles and quickly stands up to start running in place.,NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10447,10447,Fire,3,The Runaway,7,Toph,"[Confused.] Um, Katara? Are you okay?","Um, Katara? Are you okay?",Joshua Hamilton,Giancarlo Volpe,8.2 +10448,10448,Fire,3,The Runaway,7,Katara,Just fine.,Just fine.,Joshua Hamilton,Giancarlo Volpe,8.2 +10449,10449,Fire,3,The Runaway,7,Toph,"[Still confused.] Well, what are you doing?","Well, what are you doing?",Joshua Hamilton,Giancarlo Volpe,8.2 +10450,10450,Fire,3,The Runaway,7,Katara,I'm making my own water.,I'm making my own water.,Joshua Hamilton,Giancarlo Volpe,8.2 +10451,10451,Fire,3,The Runaway,7,Scene Description,"Katara stops running and wipes her forehead again. This time, she uses waterbending to use the midair sweat as blades to cut through the wooden cage. Toph stands up upon noticing this.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10452,10452,Fire,3,The Runaway,7,Toph,"[Amazed.] Katara! You're a genius! A sweaty, stinky genius!","Katara! You're a genius! A sweaty, stinky genius!",Joshua Hamilton,Giancarlo Volpe,8.2 +10453,10453,Fire,3,The Runaway,7,Scene Description,"Katara waterbends another blade of sweat, this time from under her arms. Cut to Aang and Sokka being chased by the assassin. The assassin fires a blast at them which they dodge but still get sent flying. Sokka crashes onto a wheelbarrow, which they hide behind.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10454,10454,Fire,3,The Runaway,7,Sokka,This guy is too good! He shoots fire from his brain!,This guy is too good! He shoots fire from his brain!,Joshua Hamilton,Giancarlo Volpe,8.2 +10455,10455,Fire,3,The Runaway,7,Aang,We should split up. He can't chase us both.,We should split up. He can't chase us both.,Joshua Hamilton,Giancarlo Volpe,8.2 +10456,10456,Fire,3,The Runaway,7,Scene Description,"The assassin walks out of the smoke. Aang runs off from his left and Sokka from his right. The assassin fires a blast at the wheelbarrow and blows it up. Aang runs past him on a roof to his left. The assassin quickly turns and fires another blast, which sends Aang flying into the Ozai statue. He falls from the statue to the ground. He looks up and sees the assassin standing above him inhale, about to fire another blast at Aang, but his head is suddenly encased in ice. The assassin moves and Aang sees Katara, Sokka, and Toph standing behind the assassin.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10457,10457,Fire,3,The Runaway,7,Katara,"Aang, get up! [She helps him up and they run away.]","Aang, get up!",Joshua Hamilton,Giancarlo Volpe,8.2 +10458,10458,Fire,3,The Runaway,7,Toph,Let's get out of here!,Let's get out of here!,Joshua Hamilton,Giancarlo Volpe,8.2 +10459,10459,Fire,3,The Runaway,7,Scene Description,"The assassin breaks the ice with brute force. He launches another blast at Team Avatar, but Toph quickly launches a boulder at the blast, blowing the boulder up. A pebble from the boulder flies toward the assassin and hits him square in his third eye, which momentarily stuns and angers him. He tries to fire another blast, but with his chi is blocked, he ignites the air around him and gets sent back, head-first into a wall. When he stands up and shakes it off, Team Avatar is gone.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10460,10460,Fire,3,The Runaway,7,Sokka,"[Still running.] Hey, I got it! The perfect name for that guy: ""Combustion Man!""","Hey, I got it! The perfect name for that guy: ""Combustion Man!""",Joshua Hamilton,Giancarlo Volpe,8.2 +10461,10461,Fire,3,The Runaway,7,Toph,"Good job, Sokka. Now let's get outta here before Combustion Man catches us.","Good job, Sokka. Now let's get outta here before Combustion Man catches us.",Joshua Hamilton,Giancarlo Volpe,8.2 +10462,10462,Fire,3,The Runaway,7,Sokka,See? It fits so well!,See? It fits so well!,Joshua Hamilton,Giancarlo Volpe,8.2 +10463,10463,Fire,3,The Runaway,7,Scene Description,"Later that night, the gang flies to another camp spot on Appa.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10464,10464,Fire,3,The Runaway,7,Sokka,"[Yawns.] Well, I'm exhausted. Hawky, how about you, buddy? [Hawky makes a bird call.] Yeah. You're such a lazy little bird.","Well, I'm exhausted. Hawky, how about you, buddy? Yeah. You're such a lazy little bird.",Joshua Hamilton,Giancarlo Volpe,8.2 +10465,10465,Fire,3,The Runaway,7,Scene Description,"Aang and Sokka get off Appa. Katara is about to dismount Appa, but is stopped by Toph.",NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10466,10466,Fire,3,The Runaway,7,Toph,Katara? I need your help.,Katara? I need your help.,Joshua Hamilton,Giancarlo Volpe,8.2 +10467,10467,Fire,3,The Runaway,7,Katara,"[Sits back down.] What is it, Toph?","What is it, Toph?",Joshua Hamilton,Giancarlo Volpe,8.2 +10468,10468,Fire,3,The Runaway,7,Toph,[Pulls out a sheet of paper.] I need you to write some things down for me. I wanna send a letter to my parents.,I need you to write some things down for me. I wanna send a letter to my parents.,Joshua Hamilton,Giancarlo Volpe,8.2 +10469,10469,Fire,3,The Runaway,7,Katara,[Smiling.] I'll be happy to help.,I'll be happy to help.,Joshua Hamilton,Giancarlo Volpe,8.2 +10470,10470,Fire,3,The Runaway,7,Scene Description,They place a letter inside Hawky's holder and send him off as he flies away.,NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10471,10471,Fire,3,The Runaway,7,Sokka,"Hey, where'd Hawky go?","Hey, where'd Hawky go?",Joshua Hamilton,Giancarlo Volpe,8.2 +10472,10472,Fire,3,The Runaway,7,Scene Description,Fade to credits.,NA,Joshua Hamilton,Giancarlo Volpe,8.2 +10473,10473,Fire,3,The Puppetmaster,8,Avatar Roku,[Narrating a preview.] Previously on Avatar ...,Previously on Avatar ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10474,10474,Fire,3,The Puppetmaster,8,Katara,You're looking at the only waterbender in the whole South Pole. This ship has haunted my tribe when Gran-Gran was a little girl. It was part of the Fire Nation's first attacks.,You're looking at the only waterbender in the whole South Pole. This ship has haunted my tribe when Gran-Gran was a little girl. It was part of the Fire Nation's first attacks.,Tim Hedrick,Joaquim Dos Santos,9.1 +10475,10475,Fire,3,The Puppetmaster,8,Yue,"The legend said the moon was the first waterbender. Our ancestor saw how it pushed and pulled the tides, and learned how to do it themselves.","The legend said the moon was the first waterbender. Our ancestor saw how it pushed and pulled the tides, and learned how to do it themselves.",Tim Hedrick,Joaquim Dos Santos,9.1 +10476,10476,Fire,3,The Puppetmaster,8,Katara,I always noticed my waterbending is stronger at night.,I always noticed my waterbending is stronger at night.,Tim Hedrick,Joaquim Dos Santos,9.1 +10477,10477,Fire,3,The Puppetmaster,8,Toph,What are you doing?,What are you doing?,Tim Hedrick,Joaquim Dos Santos,9.1 +10478,10478,Fire,3,The Puppetmaster,8,Katara,I'm making my own water!,I'm making my own water!,Tim Hedrick,Joaquim Dos Santos,9.1 +10479,10479,Fire,3,The Puppetmaster,8,Scene Description,"The episode opens to a waxing gibbous moon glowing in the night sky. The scene cuts to a shot of a field of fire lilies, a mountain in the distance. Cuts to a forested area, where Team Avatar is camping out among the trees. The darkness of the night gives the landscape an ominous feeling.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10480,10480,Fire,3,The Puppetmaster,8,Sokka,"[Telling a ghost story.] Suddenly, they heard something down the hall in the dark. Oooh ... It came into the torchlight ... and they knew the blade of Wing Fung was haunted! [Draws sword, stands up and points it toward the fire; yells dramatically.] Ooh-aaah!","Suddenly, they heard something down the hall in the dark. Oooh ... It came into the torchlight ... and they knew the blade of Wing Fung was haunted! Ooh-aaah!",Tim Hedrick,Joaquim Dos Santos,9.1 +10481,10481,Fire,3,The Puppetmaster,8,Scene Description,"Cuts to shot of the entire group sitting around the campfire. Aang is lying down, Katara is hunched over in a sitting position and Toph sits casually, all three looking unamused.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10482,10482,Fire,3,The Puppetmaster,8,Aang,"[Unimpressed.] I think I like ""the man with a sword for a hand"" better.","I think I like ""the man with a sword for a hand"" better.",Tim Hedrick,Joaquim Dos Santos,9.1 +10483,10483,Fire,3,The Puppetmaster,8,Toph,Water Tribe slumber parties must stink.,Water Tribe slumber parties must stink.,Tim Hedrick,Joaquim Dos Santos,9.1 +10484,10484,Fire,3,The Puppetmaster,8,Katara,"No, wait! I've got one! And this is a true Southern Water Tribe story.","No, wait! I've got one! And this is a true Southern Water Tribe story.",Tim Hedrick,Joaquim Dos Santos,9.1 +10485,10485,Fire,3,The Puppetmaster,8,Sokka,"[Sitting down.] Is this one of those ""a friend of my cousin knew some guy that this happened to"" stories?","Is this one of those ""a friend of my cousin knew some guy that this happened to"" stories?",Tim Hedrick,Joaquim Dos Santos,9.1 +10486,10486,Fire,3,The Puppetmaster,8,Katara,"No, it happened to Mom.","No, it happened to Mom.",Tim Hedrick,Joaquim Dos Santos,9.1 +10487,10487,Fire,3,The Puppetmaster,8,Scene Description,"Upon hearing this, Sokka stiffens. Cuts to Aang, who sits up to listen intently.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10488,10488,Fire,3,The Puppetmaster,8,Katara,"One winter when Mom was a girl, a snowstorm buried the whole village for weeks. A month later, Mom noticed she hadn't seen her friend Nini since the storm. So Mom and some others went to check on Nini's family. When they got there, no one was home. [Cuts to ground-level shot of the group sitting around the fire, the camera panning slightly to the right.] Just a fire flickering in the fireplace. While the men went out to search, Mom stayed in the house. When she was alone, she heard a voice. [In a scary voice.] ""It's so cold and I can't get warm!"" [Sokka stiffens in fear.] Mom turned and saw Nini standing by the fire. She was blue like she was frozen. Mom ran outside for help, but when everyone came back, Nini was gone.","One winter when Mom was a girl, a snowstorm buried the whole village for weeks. A month later, Mom noticed she hadn't seen her friend Nini since the storm. So Mom and some others went to check on Nini's family. When they got there, no one was home. Just a fire flickering in the fireplace. While the men went out to search, Mom stayed in the house. When she was alone, she heard a voice. ""It's so cold and I can't get warm!"" Mom turned and saw Nini standing by the fire. She was blue like she was frozen. Mom ran outside for help, but when everyone came back, Nini was gone.",Tim Hedrick,Joaquim Dos Santos,9.1 +10489,10489,Fire,3,The Puppetmaster,8,Scene Description,Aang uses Momo's ears to cover his face in fear. The camera shifts to show Sokka hiding behind a gnarled tree stump.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10490,10490,Fire,3,The Puppetmaster,8,Sokka,[Peering from behind a tree trunk.] Where'd she go?,Where'd she go?,Tim Hedrick,Joaquim Dos Santos,9.1 +10491,10491,Fire,3,The Puppetmaster,8,Katara,"No one knows. Nini's house stands empty to this day, but sometimes, people see smoke coming up from the chimney, like little Nini is still trying to get warm.","No one knows. Nini's house stands empty to this day, but sometimes, people see smoke coming up from the chimney, like little Nini is still trying to get warm.",Tim Hedrick,Joaquim Dos Santos,9.1 +10492,10492,Fire,3,The Puppetmaster,8,Scene Description,"The camera zooms out to where the gang is all huddled by the fire. Suddenly, Toph straightens up and places her hands on the ground.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10493,10493,Fire,3,The Puppetmaster,8,Toph,"[Gasping.] Wait! Guys, did you hear that? [Aang, Katara, and Sokka clutch each other tightly, too stiff to move, with Toph standing alertly.] I hear people under the mountain. And they're screaming.","Wait! Guys, did you hear that? I hear people under the mountain. And they're screaming.",Tim Hedrick,Joaquim Dos Santos,9.1 +10494,10494,Fire,3,The Puppetmaster,8,Scene Description,"Sokka, assuming Toph is joking, relaxes his grip.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10495,10495,Fire,3,The Puppetmaster,8,Sokka,"Pft! Nice try, Toph.","Pft! Nice try, Toph.",Tim Hedrick,Joaquim Dos Santos,9.1 +10496,10496,Fire,3,The Puppetmaster,8,Toph,"[Cuts to shot of the campsite viewed through the ominous looking tree branches.] No, I'm serious. I hear something.","No, I'm serious. I hear something.",Tim Hedrick,Joaquim Dos Santos,9.1 +10497,10497,Fire,3,The Puppetmaster,8,Katara,You're probably just jumpy from the ghost stories ...,You're probably just jumpy from the ghost stories ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10498,10498,Fire,3,The Puppetmaster,8,Toph,It just ... stopped.,It just ... stopped.,Tim Hedrick,Joaquim Dos Santos,9.1 +10499,10499,Fire,3,The Puppetmaster,8,Aang,"[Cuts back to him and Katara, still hugging, Sokka sitting close by.] All right, now I'm getting scared.","All right, now I'm getting scared.",Tim Hedrick,Joaquim Dos Santos,9.1 +10500,10500,Fire,3,The Puppetmaster,8,Hama,"[Off-camera from behind group.] Hello, children.","Hello, children.",Tim Hedrick,Joaquim Dos Santos,9.1 +10501,10501,Fire,3,The Puppetmaster,8,Scene Description,Everyone screams in terror upon hearing the strange woman's voice and scrambles from the ground. An elderly woman emerges from the shadows.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10502,10502,Fire,3,The Puppetmaster,8,Hama,Sorry to frighten you. My name is Hama. [Cuts to side-view of the campsite.] You children shouldn't be out in the forest by yourselves at night. [Cuts to ground-level shot of Hama standing over the fire.] I have an inn nearby. Why don't you come back there for some spiced tea and warm beds?,Sorry to frighten you. My name is Hama. You children shouldn't be out in the forest by yourselves at night. I have an inn nearby. Why don't you come back there for some spiced tea and warm beds?,Tim Hedrick,Joaquim Dos Santos,9.1 +10503,10503,Fire,3,The Puppetmaster,8,Sokka,"[Sheepishly, places arm behind head.] Yes, please.","Yes, please.",Tim Hedrick,Joaquim Dos Santos,9.1 +10504,10504,Fire,3,The Puppetmaster,8,Scene Description,"Hama smiles and begins walking away. The scene changes to a village, her local inn lying atop a small hill. Cuts to inside the building, where tea is being poured into a teacup. Cuts to shot of the group sitting around the kitchen table.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10505,10505,Fire,3,The Puppetmaster,8,Katara,Thanks for letting us stay here tonight. You have a lovely inn.,Thanks for letting us stay here tonight. You have a lovely inn.,Tim Hedrick,Joaquim Dos Santos,9.1 +10506,10506,Fire,3,The Puppetmaster,8,Hama,[Sets teapot down.] Aren't you sweet? [Walks over to her seat and sits down.] You know you should be careful. People have been disappearing in those woods you were camping in.,Aren't you sweet? You know you should be careful. People have been disappearing in those woods you were camping in.,Tim Hedrick,Joaquim Dos Santos,9.1 +10507,10507,Fire,3,The Puppetmaster,8,Sokka,"What do you mean ""disappearing""?","What do you mean ""disappearing""?",Tim Hedrick,Joaquim Dos Santos,9.1 +10508,10508,Fire,3,The Puppetmaster,8,Hama,"[Sets her teacup down.] When the moon turns full, people walk in and they don't come out. [Stand up and holds up her teapot; cheerfully smiling.] Who wants more tea?","When the moon turns full, people walk in and they don't come out. Who wants more tea?",Tim Hedrick,Joaquim Dos Santos,9.1 +10509,10509,Fire,3,The Puppetmaster,8,Scene Description,"Cuts to shot of the group, who has by now fallen completely silent, the camera panning to the right to show all of them sitting around the table.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10510,10510,Fire,3,The Puppetmaster,8,Hama,"Don't worry, you'll all be completely safe here. [Clasps hands together and smiles.] Why don't I show you to your rooms and you can get a good night's rest?","Don't worry, you'll all be completely safe here. Why don't I show you to your rooms and you can get a good night's rest?",Tim Hedrick,Joaquim Dos Santos,9.1 +10511,10511,Fire,3,The Puppetmaster,8,Scene Description,"The scene changes to Sokka's room, where he is lying in bed with Momo asleep on the floor. Cuts to shot of him in bed as he rolls over. A creaking noise comes from outside, frightening him. He draws his sword quickly while Momo scampers under the covers.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10512,10512,Fire,3,The Puppetmaster,8,Sokka,"I know, Momo. [Places sword back inside holster and sets it down.] This place is creepy! [Lies back down on the pillow and pulls the covers over him.] I don't know if I'm gonna be able to fall asleep!","I know, Momo. This place is creepy! I don't know if I'm gonna be able to fall asleep!",Tim Hedrick,Joaquim Dos Santos,9.1 +10513,10513,Fire,3,The Puppetmaster,8,Scene Description,"The scene switches over to later in the night, where Sokka is fast asleep in his bed, snoring and drooling on his pillow. As it fades to the morning, he is lying sideways, next to the bed, though still fast asleep. Cut to a close-up of his face as a shadow approaches him. He slowly awakens, rubbing his eye.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10514,10514,Fire,3,The Puppetmaster,8,Hama,"[Off-camera.] Wakey, wakey! [Cuts to shot of the innkeeper, standing brightly over him.] Time to go shopping!","Wakey, wakey! Time to go shopping!",Tim Hedrick,Joaquim Dos Santos,9.1 +10515,10515,Fire,3,The Puppetmaster,8,Scene Description,"Katara appears by her side, dressed and happily smiling. The camera shifts counter-clockwise, showing Sokka later in the day, dressed in his ordinary clothes, standing in the marketplace where Hama has just made her purchase. A friendly old man smiles and waves to her as she walks away.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10516,10516,Fire,3,The Puppetmaster,8,Katara,That Mr. Yao seems to have a thing for you. Maybe we should go back and see if he'll give us some free komodo sausages?,That Mr. Yao seems to have a thing for you. Maybe we should go back and see if he'll give us some free komodo sausages?,Tim Hedrick,Joaquim Dos Santos,9.1 +10517,10517,Fire,3,The Puppetmaster,8,Hama,[Seriously.] You would have me use my feminine charms to take advantage of that poor man? [Cheerfully.] I think you and I are going to get along swimmingly!,You would have me use my feminine charms to take advantage of that poor man? I think you and I are going to get along swimmingly!,Tim Hedrick,Joaquim Dos Santos,9.1 +10518,10518,Fire,3,The Puppetmaster,8,Scene Description,The two walk off camera with Katara smiling at this remark. The scene switches over to two villagers having a conversation by a stand.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10519,10519,Fire,3,The Puppetmaster,8,Villager,You won't have any ash bananas till next week?,You won't have any ash bananas till next week?,Tim Hedrick,Joaquim Dos Santos,9.1 +10520,10520,Fire,3,The Puppetmaster,8,Shop owner,"Well, I have to send the boy to Hing Wa Island to get them, and it's a two-day trip.","Well, I have to send the boy to Hing Wa Island to get them, and it's a two-day trip.",Tim Hedrick,Joaquim Dos Santos,9.1 +10521,10521,Fire,3,The Puppetmaster,8,Villager,"Oh, right. Tomorrow's the full moon.","Oh, right. Tomorrow's the full moon.",Tim Hedrick,Joaquim Dos Santos,9.1 +10522,10522,Fire,3,The Puppetmaster,8,Shop owner,[In a lowered voice.] Exactly. I can't lose another delivery boy in the woods.,Exactly. I can't lose another delivery boy in the woods.,Tim Hedrick,Joaquim Dos Santos,9.1 +10523,10523,Fire,3,The Puppetmaster,8,Scene Description,"Cuts to shot of Aang, Sokka, and Toph walking through the marketplace. Aang carrying a package slung over his shoulder, Sokka carrying a package attached to his sword, while Toph carries a large, round basket on her head.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10524,10524,Fire,3,The Puppetmaster,8,Sokka,"People disappearing in the woods, weird stuff happening during full moons? This just reeks of Spirit World shenanigans.","People disappearing in the woods, weird stuff happening during full moons? This just reeks of Spirit World shenanigans.",Tim Hedrick,Joaquim Dos Santos,9.1 +10525,10525,Fire,3,The Puppetmaster,8,Aang,"I bet if we take a little walk around town, we'll find out what these people did to the environment to make the spirits mad.","I bet if we take a little walk around town, we'll find out what these people did to the environment to make the spirits mad.",Tim Hedrick,Joaquim Dos Santos,9.1 +10526,10526,Fire,3,The Puppetmaster,8,Sokka,"[Makes gesture with his hand.] And then you can sew up this little mystery lickety-split, Avatar style!","And then you can sew up this little mystery lickety-split, Avatar style!",Tim Hedrick,Joaquim Dos Santos,9.1 +10527,10527,Fire,3,The Puppetmaster,8,Aang,[Proudly.] Helping people ... that's what I do.,Helping people ... that's what I do.,Tim Hedrick,Joaquim Dos Santos,9.1 +10528,10528,Fire,3,The Puppetmaster,8,Scene Description,"Cuts to overhead shot of the group standing in the marketplace as he, Sokka and Toph approach Katara and Hama.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10529,10529,Fire,3,The Puppetmaster,8,Hama,Why don't you take all those things back to the inn? I just have to run a couple more errands. I'll be back in a little while.,Why don't you take all those things back to the inn? I just have to run a couple more errands. I'll be back in a little while.,Tim Hedrick,Joaquim Dos Santos,9.1 +10530,10530,Fire,3,The Puppetmaster,8,Sokka,[Walks up to her.] This is a mysterious little town you have here.,This is a mysterious little town you have here.,Tim Hedrick,Joaquim Dos Santos,9.1 +10531,10531,Fire,3,The Puppetmaster,8,Hama,[Extremely close-up. Ominously.] Mysterious town for mysterious children.,Mysterious town for mysterious children.,Tim Hedrick,Joaquim Dos Santos,9.1 +10532,10532,Fire,3,The Puppetmaster,8,Scene Description,"She smiles creepily and saunters away, leaving Sokka feeling suspicious. The scene changes to a shot of Hama's inn, starting outside, before moving inside, where the gang is unpacking groceries. Sokka walks over to a counter and sets his basket down.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10533,10533,Fire,3,The Puppetmaster,8,Sokka,"That Hama seems a little strange. Like she knows something, or she's hiding something.","That Hama seems a little strange. Like she knows something, or she's hiding something.",Tim Hedrick,Joaquim Dos Santos,9.1 +10534,10534,Fire,3,The Puppetmaster,8,Katara,[Unpacking items.] That's ridiculous. She's a nice woman who took us in and gave us a place to stay. [Picks up cabbage.] She kinda reminds me of Gran-Gran.,That's ridiculous. She's a nice woman who took us in and gave us a place to stay. She kinda reminds me of Gran-Gran.,Tim Hedrick,Joaquim Dos Santos,9.1 +10535,10535,Fire,3,The Puppetmaster,8,Sokka,"But what did she mean by that comment, ""mysterious children""?","But what did she mean by that comment, ""mysterious children""?",Tim Hedrick,Joaquim Dos Santos,9.1 +10536,10536,Fire,3,The Puppetmaster,8,Katara,"Gee, I don't know. Maybe because she found four strange kids camping in the woods at night? Isn't that a little mysterious?","Gee, I don't know. Maybe because she found four strange kids camping in the woods at night? Isn't that a little mysterious?",Tim Hedrick,Joaquim Dos Santos,9.1 +10537,10537,Fire,3,The Puppetmaster,8,Sokka,I'm gonna take a look around. [Walks away and up a flight of wooden stairs.],I'm gonna take a look around.,Tim Hedrick,Joaquim Dos Santos,9.1 +10538,10538,Fire,3,The Puppetmaster,8,Katara,"[Appears along with the others at the bottom of the stairwell.] Sokka! Sokka, what are you doing? [Off-camera as Sokka peers around the inn.] You can't just snoop around someone's house.","Sokka! Sokka, what are you doing? You can't just snoop around someone's house.",Tim Hedrick,Joaquim Dos Santos,9.1 +10539,10539,Fire,3,The Puppetmaster,8,Sokka,It'll be fine.,It'll be fine.,Tim Hedrick,Joaquim Dos Santos,9.1 +10540,10540,Fire,3,The Puppetmaster,8,Aang,[Off-camera while Sokka peers into a room.] She could be home any minute.,She could be home any minute.,Tim Hedrick,Joaquim Dos Santos,9.1 +10541,10541,Fire,3,The Puppetmaster,8,Katara,"[Walking down hallway with the rest of the team.] Sokka, you're gonna get us all in trouble and this is just plain rude!","Sokka, you're gonna get us all in trouble and this is just plain rude!",Tim Hedrick,Joaquim Dos Santos,9.1 +10542,10542,Fire,3,The Puppetmaster,8,Sokka,"[Tugging on a cupboard door.] I'm not finished yet. [Grunts, as he tries to pull it free.] Come on ...",I'm not finished yet. Come on ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10543,10543,Fire,3,The Puppetmaster,8,Scene Description,"The cupboard suddenly opens, revealing several wooden puppets stowed inside. The dolls fall forward, held together only by their strings. Everyone gasps; Sokka withdraws his sword, backs up and points it straight at the puppets.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10544,10544,Fire,3,The Puppetmaster,8,Aang,"Okay, that's pretty creepy.","Okay, that's pretty creepy.",Tim Hedrick,Joaquim Dos Santos,9.1 +10545,10545,Fire,3,The Puppetmaster,8,Katara,"[Walks over and closes the cupboard; a bit weirded out.] So she's got a hobby. There's nothing weird about that. [Angrily.] Sokka, you've looked enough. [Off-camera as Sokka ascends into the attic.] Hama will be back soon.","So she's got a hobby. There's nothing weird about that. Sokka, you've looked enough. Hama will be back soon.",Tim Hedrick,Joaquim Dos Santos,9.1 +10546,10546,Fire,3,The Puppetmaster,8,Sokka,"Just an ordinary puppet-loving innkeeper, huh? Well then why does she have a locked door up here?","Just an ordinary puppet-loving innkeeper, huh? Well then why does she have a locked door up here?",Tim Hedrick,Joaquim Dos Santos,9.1 +10547,10547,Fire,3,The Puppetmaster,8,Katara,[Annoyed.] Probably to keep people like you from snooping through her stuff!,Probably to keep people like you from snooping through her stuff!,Tim Hedrick,Joaquim Dos Santos,9.1 +10548,10548,Fire,3,The Puppetmaster,8,Sokka,"We'll see. [Peers through the keyhole into the room. Cuts to shot of the attic from his perspective. Through the keyhole, a small room can be seen, with a chest lying on the ground in the middle. The camera zooms in on the chest.] It's empty, except for a little chest.","We'll see. It's empty, except for a little chest.",Tim Hedrick,Joaquim Dos Santos,9.1 +10549,10549,Fire,3,The Puppetmaster,8,Toph,Maybe it's treasure!,Maybe it's treasure!,Tim Hedrick,Joaquim Dos Santos,9.1 +10550,10550,Fire,3,The Puppetmaster,8,Scene Description,"Sokka grows excited, his eyes growing wide, and uses his sword to pick the lock.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10551,10551,Fire,3,The Puppetmaster,8,Katara,"[Approaches him.] Sokka, what are you doing? You're breaking into a private room!","Sokka, what are you doing? You're breaking into a private room!",Tim Hedrick,Joaquim Dos Santos,9.1 +10552,10552,Fire,3,The Puppetmaster,8,Sokka,I have to see what's in there.,I have to see what's in there.,Tim Hedrick,Joaquim Dos Santos,9.1 +10553,10553,Fire,3,The Puppetmaster,8,Scene Description,The door unlocks and creaks open. The four step cautiously inside; Sokka puts away his sword and approaches the small chest.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10554,10554,Fire,3,The Puppetmaster,8,Aang,We shouldn't be doing this.,We shouldn't be doing this.,Tim Hedrick,Joaquim Dos Santos,9.1 +10555,10555,Fire,3,The Puppetmaster,8,Scene Description,"Sokka picks up the chest and tries to pry it open, only to discover it is locked.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10556,10556,Fire,3,The Puppetmaster,8,Sokka,Maybe there's a key here somewhere ...,Maybe there's a key here somewhere ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10557,10557,Fire,3,The Puppetmaster,8,Toph,Ooh! Hand it over!,Ooh! Hand it over!,Tim Hedrick,Joaquim Dos Santos,9.1 +10558,10558,Fire,3,The Puppetmaster,8,Scene Description,"She takes the chest, removes her meteor bracelet from her arm and earthbends it into the shape of a small key, which she sticks into the keyhole of the chest.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10559,10559,Fire,3,The Puppetmaster,8,Sokka,"[Eagerly.] Come on, come on!","Come on, come on!",Tim Hedrick,Joaquim Dos Santos,9.1 +10560,10560,Fire,3,The Puppetmaster,8,Toph,"[Annoyed; Katara appears from behind her, peering nervously over her shoulder.] This isn't as easy as it looks!",This isn't as easy as it looks!,Tim Hedrick,Joaquim Dos Santos,9.1 +10561,10561,Fire,3,The Puppetmaster,8,Aang,"[Nervously.] Guys, I don't know about this ...","Guys, I don't know about this ...",Tim Hedrick,Joaquim Dos Santos,9.1 +10562,10562,Fire,3,The Puppetmaster,8,Katara,This is crazy! I'm leaving!,This is crazy! I'm leaving!,Tim Hedrick,Joaquim Dos Santos,9.1 +10563,10563,Fire,3,The Puppetmaster,8,Sokka,"Suit yourself! Do it, Toph!","Suit yourself! Do it, Toph!",Tim Hedrick,Joaquim Dos Santos,9.1 +10564,10564,Fire,3,The Puppetmaster,8,Scene Description,"Katara turns to leave the moment Toph signals that she has successfully opened the chest, holding her thumb up. All four eagerly surround the box in a comical fashion, anticipating what they will find inside.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10565,10565,Fire,3,The Puppetmaster,8,Hama,[Off-camera from behind them.] I'll tell you what's in the box.,I'll tell you what's in the box.,Tim Hedrick,Joaquim Dos Santos,9.1 +10566,10566,Fire,3,The Puppetmaster,8,Scene Description,"All, except Toph, scream and turn sharply to find Hama standing in the doorway. Cuts to shot of the group, still looking stunned, except Toph. Sokka guiltily hands her the box. Cuts to shot from inside the chest, as Hama lifts the lid and reaches her hand inside. Cuts to close-up of Sokka, his eyes wide in anxiousness, and a shot of Hama still in the process of lifting the object. Cuts to shot of the team standing together from her perspective. Her left arm appears on-screen, a blue whale tooth comb in her hand. Cuts to shot of her holding the comb, smiling.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10567,10567,Fire,3,The Puppetmaster,8,Sokka,[Surprised.] An old comb?,An old comb?,Tim Hedrick,Joaquim Dos Santos,9.1 +10568,10568,Fire,3,The Puppetmaster,8,Hama,It's my greatest treasure. It's the last thing I own from growing up in the Southern Water Tribe.,It's my greatest treasure. It's the last thing I own from growing up in the Southern Water Tribe.,Tim Hedrick,Joaquim Dos Santos,9.1 +10569,10569,Fire,3,The Puppetmaster,8,Scene Description,"The camera zooms in on Katara and Sokka, who stare at her in astonishment.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10570,10570,Fire,3,The Puppetmaster,8,Katara,[Stunned.] You're from the Southern Water Tribe?,You're from the Southern Water Tribe?,Tim Hedrick,Joaquim Dos Santos,9.1 +10571,10571,Fire,3,The Puppetmaster,8,Hama,[Sets down comb.] Just like you.,Just like you.,Tim Hedrick,Joaquim Dos Santos,9.1 +10572,10572,Fire,3,The Puppetmaster,8,Katara,How did you know?,How did you know?,Tim Hedrick,Joaquim Dos Santos,9.1 +10573,10573,Fire,3,The Puppetmaster,8,Hama,I heard you talking around your campfire.,I heard you talking around your campfire.,Tim Hedrick,Joaquim Dos Santos,9.1 +10574,10574,Fire,3,The Puppetmaster,8,Sokka,But why didn't you tell us?,But why didn't you tell us?,Tim Hedrick,Joaquim Dos Santos,9.1 +10575,10575,Fire,3,The Puppetmaster,8,Hama,"I wanted to surprise you! I bought all this food today so I could fix you a big Water Tribe dinner. Of course, I can't get all the ingredients I need here, but ocean kumquats are a lot like sea prunes if you stew them long enough.","I wanted to surprise you! I bought all this food today so I could fix you a big Water Tribe dinner. Of course, I can't get all the ingredients I need here, but ocean kumquats are a lot like sea prunes if you stew them long enough.",Tim Hedrick,Joaquim Dos Santos,9.1 +10576,10576,Fire,3,The Puppetmaster,8,Aang,[Sticking his tongue out in disgust.] Great ...,Great ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10577,10577,Fire,3,The Puppetmaster,8,Katara,I knew I felt a bond with you right away.,I knew I felt a bond with you right away.,Tim Hedrick,Joaquim Dos Santos,9.1 +10578,10578,Fire,3,The Puppetmaster,8,Sokka,"And I knew you were keeping a secret, so I guess we're both right. [Grimaces as Katara hits him in the arm.] But I'm sorry we were sneaking around.","And I knew you were keeping a secret, so I guess we're both right. But I'm sorry we were sneaking around.",Tim Hedrick,Joaquim Dos Santos,9.1 +10579,10579,Fire,3,The Puppetmaster,8,Hama,"Apology accepted. [Turns to the side and motions with her hand.] Now, let's get cooking!","Apology accepted. Now, let's get cooking!",Tim Hedrick,Joaquim Dos Santos,9.1 +10580,10580,Fire,3,The Puppetmaster,8,Scene Description,"The scene changes to later that night, where Aang races from the inn to the barn located toward the back of the property. Cuts to overhead shot of inside the barn, where Appa and Momo lie. The doors creak open and Aang steps inside. Cuts to ground-level shot of him standing before the bison, tossing a cabbage-like vegetable into Appa's mouth. Momo dances in front of the bison's face and chitters, irritated. Appa opens his mouth and releases the cabbage, which Momo grabs. The lemur skitters away. Cuts to shot of Hama's kitchen table, as she sets down a bowl of soup. Cuts to shot of the entire room, the team and the innkeeper sitting around the table. Sokka is seen chewing on a food item, as Hama takes her seat at the head of the table.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10581,10581,Fire,3,The Puppetmaster,8,Aang,[Whispering to Toph.] I'd steer clear of the sea prunes.,I'd steer clear of the sea prunes.,Tim Hedrick,Joaquim Dos Santos,9.1 +10582,10582,Fire,3,The Puppetmaster,8,Toph,I thought they were ocean kumquats.,I thought they were ocean kumquats.,Tim Hedrick,Joaquim Dos Santos,9.1 +10583,10583,Fire,3,The Puppetmaster,8,Aang,Close enough.,Close enough.,Tim Hedrick,Joaquim Dos Santos,9.1 +10584,10584,Fire,3,The Puppetmaster,8,Hama,Who wants five flavor soup?,Who wants five flavor soup?,Tim Hedrick,Joaquim Dos Santos,9.1 +10585,10585,Fire,3,The Puppetmaster,8,Scene Description,"All four raise their hands in acceptance. Hama situates her hands over the bowl and suddenly uses waterbending to summon a globule of soup and fill each of their bowls. Cuts to shot of the team looking at the spectacle in astonishment, the camera panning to the right. Four streams of soup land gracefully into each of their bowls.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10586,10586,Fire,3,The Puppetmaster,8,Katara,[Delighted.] You're a waterbender! [Faces Hama in delight.] I've never met another waterbender from our tribe!,You're a waterbender! I've never met another waterbender from our tribe!,Tim Hedrick,Joaquim Dos Santos,9.1 +10587,10587,Fire,3,The Puppetmaster,8,Hama,[Cuts to side-view of her; sadly.] That's because the Fire Nation wiped them all out. I was the last one ...,That's because the Fire Nation wiped them all out. I was the last one ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10588,10588,Fire,3,The Puppetmaster,8,Scene Description,"Cuts to shot of Sokka and Katara, Katara clasping her hands together, an expression of pity on her face.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10589,10589,Fire,3,The Puppetmaster,8,Sokka,So how did you end up out here?,So how did you end up out here?,Tim Hedrick,Joaquim Dos Santos,9.1 +10590,10590,Fire,3,The Puppetmaster,8,Hama,[Grimly.] I was stolen from my home.,I was stolen from my home.,Tim Hedrick,Joaquim Dos Santos,9.1 +10591,10591,Fire,3,The Puppetmaster,8,Scene Description,The scene fades to a flashback of a much younger Hama peacefully sauntering through her Southern Water Tribe village.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10592,10592,Fire,3,The Puppetmaster,8,Hama,[Voice-over.] It was over sixty years ago when the raids started.,It was over sixty years ago when the raids started.,Tim Hedrick,Joaquim Dos Santos,9.1 +10593,10593,Fire,3,The Puppetmaster,8,Scene Description,"She approaches her friend, Kanna, and they share a laugh before they notice ashen snow falling from the sky. The two race to the shores, where five Fire Nation ships are rapidly approaching the tribe. Five fireballs are launched from trebuchets and strike the village. Fire Nation soldiers swarm the area, battling the waterbenders, who desperately attempt to fend them off.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10594,10594,Fire,3,The Puppetmaster,8,Hama,"[Voice-over.] They came again and again, each time rounding up more of our waterbenders and taking them captive.","They came again and again, each time rounding up more of our waterbenders and taking them captive.",Tim Hedrick,Joaquim Dos Santos,9.1 +10595,10595,Fire,3,The Puppetmaster,8,Scene Description,"The battle scene fades to another scene, where Hama and several other waterbenders use waterbending to capsize a Fire Nation vessel.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10596,10596,Fire,3,The Puppetmaster,8,Hama,"[Voice-over.] We did our best to hold them off, but our numbers dwindled as the raids continued.","We did our best to hold them off, but our numbers dwindled as the raids continued.",Tim Hedrick,Joaquim Dos Santos,9.1 +10597,10597,Fire,3,The Puppetmaster,8,Scene Description,"As she is narrating, Water Tribe civilians who aided in the suspension of the vessel are seen slowly fading, signaling their capture by the Fire Nation. The camera rotates around her and zooms out, revealing dozens of firebenders surrounding her.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10598,10598,Fire,3,The Puppetmaster,8,Hama,"[Voice-over.] Finally, I too was captured.","Finally, I too was captured.",Tim Hedrick,Joaquim Dos Santos,9.1 +10599,10599,Fire,3,The Puppetmaster,8,Scene Description,"The younger Hama is seen being led by Fire Nation soldiers onto one of their naval vessels, having now been captured herself.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10600,10600,Fire,3,The Puppetmaster,8,Hama,[Voice-over.] I was led away in chains. The last waterbender of the Southern Water Tribe.,I was led away in chains. The last waterbender of the Southern Water Tribe.,Tim Hedrick,Joaquim Dos Santos,9.1 +10601,10601,Fire,3,The Puppetmaster,8,Scene Description,"A final scene shows her looking out onto her tribe's members, including her friend, Kanna, in tears as the bow creaks upward. The flashback ends. Now in present time, Katara is seen walking over to Hama and placing her arms around her shoulder comfortingly.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10602,10602,Fire,3,The Puppetmaster,8,Hama,They put us in terrible prisons here in the Fire Nation. I was the only one who managed to escape.,They put us in terrible prisons here in the Fire Nation. I was the only one who managed to escape.,Tim Hedrick,Joaquim Dos Santos,9.1 +10603,10603,Fire,3,The Puppetmaster,8,Sokka,How did you get away? And why did you stay in the Fire Nation?,How did you get away? And why did you stay in the Fire Nation?,Tim Hedrick,Joaquim Dos Santos,9.1 +10604,10604,Fire,3,The Puppetmaster,8,Hama,I'm sorry. It's too painful to talk about anymore.,I'm sorry. It's too painful to talk about anymore.,Tim Hedrick,Joaquim Dos Santos,9.1 +10605,10605,Fire,3,The Puppetmaster,8,Katara,We completely understand. We lost our mother in a raid.,We completely understand. We lost our mother in a raid.,Tim Hedrick,Joaquim Dos Santos,9.1 +10606,10606,Fire,3,The Puppetmaster,8,Hama,"[Sympathetically.] Oh, you poor things.","Oh, you poor things.",Tim Hedrick,Joaquim Dos Santos,9.1 +10607,10607,Fire,3,The Puppetmaster,8,Scene Description,Aang and Sokka cast their heads down solemnly.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10608,10608,Fire,3,The Puppetmaster,8,Katara,I can't tell you what it means to meet you. It's an honor. You're a hero.,I can't tell you what it means to meet you. It's an honor. You're a hero.,Tim Hedrick,Joaquim Dos Santos,9.1 +10609,10609,Fire,3,The Puppetmaster,8,Hama,I never thought I'd meet another Southern waterbender. I'd like to teach you what I know so you can carry on the Southern tradition when I'm gone.,I never thought I'd meet another Southern waterbender. I'd like to teach you what I know so you can carry on the Southern tradition when I'm gone.,Tim Hedrick,Joaquim Dos Santos,9.1 +10610,10610,Fire,3,The Puppetmaster,8,Katara,"Yes! Yes, of course! To learn about my heritage, it would mean everything to me.","Yes! Yes, of course! To learn about my heritage, it would mean everything to me.",Tim Hedrick,Joaquim Dos Santos,9.1 +10611,10611,Fire,3,The Puppetmaster,8,Scene Description,"She bows to her newfound friend, who smiles warmly. The scene changes to the next day, where Hama and Katara are strolling on the outskirts of Hama's village.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10612,10612,Fire,3,The Puppetmaster,8,Hama,"Growing up in the South Pole, waterbenders are totally at home surrounded by snow and ice and seas. But as you probably noticed on your travels, that isn't the case wherever you go.","Growing up in the South Pole, waterbenders are totally at home surrounded by snow and ice and seas. But as you probably noticed on your travels, that isn't the case wherever you go.",Tim Hedrick,Joaquim Dos Santos,9.1 +10613,10613,Fire,3,The Puppetmaster,8,Katara,"I know! When we were stranded in the desert, I felt like there was almost nothing I could do.","I know! When we were stranded in the desert, I felt like there was almost nothing I could do.",Tim Hedrick,Joaquim Dos Santos,9.1 +10614,10614,Fire,3,The Puppetmaster,8,Hama,[Stops walking.] That's why you have to learn to control water wherever it exists.,That's why you have to learn to control water wherever it exists.,Tim Hedrick,Joaquim Dos Santos,9.1 +10615,10615,Fire,3,The Puppetmaster,8,Katara,I've even used my own sweat for waterbending.,I've even used my own sweat for waterbending.,Tim Hedrick,Joaquim Dos Santos,9.1 +10616,10616,Fire,3,The Puppetmaster,8,Hama,"[Smiling.] That's very resourceful, Katara. You're thinking like a true master. But did you know you could even pull water out of thin air?","That's very resourceful, Katara. You're thinking like a true master. But did you know you could even pull water out of thin air?",Tim Hedrick,Joaquim Dos Santos,9.1 +10617,10617,Fire,3,The Puppetmaster,8,Scene Description,"In a quick movement of her right arm, Hama uses waterbending to manipulate the water vapor in the air, liquefying it and coating her fingertips.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10618,10618,Fire,3,The Puppetmaster,8,Hama,"You have got to keep an open mind, Katara. [The water around her fingertips freezes, creating ice claws.] There's water in places you never think about.","You have got to keep an open mind, Katara. There's water in places you never think about.",Tim Hedrick,Joaquim Dos Santos,9.1 +10619,10619,Fire,3,The Puppetmaster,8,Scene Description,"She proceeds to fire the small daggers at a nearby tree, while Katara looks on in amazement. +Meanwhile, Aang, Sokka, and Toph are wandering about the landscape surrounding the village, trying to uncover any signs of disruption that would anger the spirits.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10620,10620,Fire,3,The Puppetmaster,8,Aang,This has got to be the nicest natural setting in the Fire Nation. I don't see anything that would make a spirit mad around here.,This has got to be the nicest natural setting in the Fire Nation. I don't see anything that would make a spirit mad around here.,Tim Hedrick,Joaquim Dos Santos,9.1 +10621,10621,Fire,3,The Puppetmaster,8,Scene Description,The camera focuses on Toph and Sokka. Toph is standing casually near where Sokka is deeply inhaling the aroma of a bundle of flowers.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10622,10622,Fire,3,The Puppetmaster,8,Toph,Maybe the Moon Spirit just turned mean.,Maybe the Moon Spirit just turned mean.,Tim Hedrick,Joaquim Dos Santos,9.1 +10623,10623,Fire,3,The Puppetmaster,8,Sokka,"[Angrily.] The Moon Spirit is a gentle, loving lady. She rules the sky with compassion and ... lunar goodness!","The Moon Spirit is a gentle, loving lady. She rules the sky with compassion and ... lunar goodness!",Tim Hedrick,Joaquim Dos Santos,9.1 +10624,10624,Fire,3,The Puppetmaster,8,Aang,"[Catches sight of a villager walking past.] Excuse me, sir. Can you tell us anything about the spirit that's been stealing people?","Excuse me, sir. Can you tell us anything about the spirit that's been stealing people?",Tim Hedrick,Joaquim Dos Santos,9.1 +10625,10625,Fire,3,The Puppetmaster,8,Villager,Only one man ever saw it and lived and that's Old Man Ding.,Only one man ever saw it and lived and that's Old Man Ding.,Tim Hedrick,Joaquim Dos Santos,9.1 +10626,10626,Fire,3,The Puppetmaster,8,Toph,Where does Old Man Ding live?,Where does Old Man Ding live?,Tim Hedrick,Joaquim Dos Santos,9.1 +10627,10627,Fire,3,The Puppetmaster,8,Scene Description,"The scene changes to a field of fire lilies, where Hama continues to tutor Katara in waterbending.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10628,10628,Fire,3,The Puppetmaster,8,Katara,"Wow, these flowers are beautiful.","Wow, these flowers are beautiful.",Tim Hedrick,Joaquim Dos Santos,9.1 +10629,10629,Fire,3,The Puppetmaster,8,Hama,"They're called fire lilies. They only bloom a few weeks a year, but they're one of my favorite things about living here. And like all plants and all living things, they're filled with water.","They're called fire lilies. They only bloom a few weeks a year, but they're one of my favorite things about living here. And like all plants and all living things, they're filled with water.",Tim Hedrick,Joaquim Dos Santos,9.1 +10630,10630,Fire,3,The Puppetmaster,8,Katara,I met a waterbender who lived in a swamp and could control the vines by bending the water inside.,I met a waterbender who lived in a swamp and could control the vines by bending the water inside.,Tim Hedrick,Joaquim Dos Santos,9.1 +10631,10631,Fire,3,The Puppetmaster,8,Hama,You can take it even further.,You can take it even further.,Tim Hedrick,Joaquim Dos Santos,9.1 +10632,10632,Fire,3,The Puppetmaster,8,Scene Description,"In a sharp, swiveling motion, she draws water from dozens of the surrounding fire lilies and slices a nearby rock clean through.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10633,10633,Fire,3,The Puppetmaster,8,Katara,"That was incredible! [Sees the wilted lilies.] It's a shame about the lilies, though.","That was incredible! It's a shame about the lilies, though.",Tim Hedrick,Joaquim Dos Santos,9.1 +10634,10634,Fire,3,The Puppetmaster,8,Hama,"They're just flowers. When you're a waterbender in a strange land, you do what you must to survive. Tonight I'll teach you the ultimate technique of waterbending. It can only be done during the full moon, when your bending is at its peak.","They're just flowers. When you're a waterbender in a strange land, you do what you must to survive. Tonight I'll teach you the ultimate technique of waterbending. It can only be done during the full moon, when your bending is at its peak.",Tim Hedrick,Joaquim Dos Santos,9.1 +10635,10635,Fire,3,The Puppetmaster,8,Katara,[Cautiously.] But isn't that dangerous? I thought people have been disappearing around here during the full moon.,But isn't that dangerous? I thought people have been disappearing around here during the full moon.,Tim Hedrick,Joaquim Dos Santos,9.1 +10636,10636,Fire,3,The Puppetmaster,8,Hama,"Oh, Katara. Two master waterbenders beneath a full moon? [Begins walking away.] I don't think we have anything to worry about.","Oh, Katara. Two master waterbenders beneath a full moon? I don't think we have anything to worry about.",Tim Hedrick,Joaquim Dos Santos,9.1 +10637,10637,Fire,3,The Puppetmaster,8,Scene Description,"The two exit the field. The scene fades to later that night, where Aang, Sokka, and Toph are approaching Old Man Ding, who is boarding up his windows.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10638,10638,Fire,3,The Puppetmaster,8,Aang,Old Man Ding?,Old Man Ding?,Tim Hedrick,Joaquim Dos Santos,9.1 +10639,10639,Fire,3,The Puppetmaster,8,Ding,"Huh? [Accidentally hammers his thumb.] Ow, dang blame it! What? Can't you see I'm busy? Got a full moon rising. And why does everyone call me that? I'm not that old! [Attempts to lift a wooden plank off the ground, but fails to do so. Sighs.] Well, I'm young at heart.","Huh? Ow, dang blame it! What? Can't you see I'm busy? Got a full moon rising. And why does everyone call me that? I'm not that old! Well, I'm young at heart.",Tim Hedrick,Joaquim Dos Santos,9.1 +10640,10640,Fire,3,The Puppetmaster,8,Scene Description,Aang approaches and helps Ding lift the board.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10641,10641,Fire,3,The Puppetmaster,8,Ding,Not ready to get snapped up by some moon monster yet at least.,Not ready to get snapped up by some moon monster yet at least.,Tim Hedrick,Joaquim Dos Santos,9.1 +10642,10642,Fire,3,The Puppetmaster,8,Sokka,[Proceeds to nail the board to the window frame.] We wanted to ask you about that.,We wanted to ask you about that.,Tim Hedrick,Joaquim Dos Santos,9.1 +10643,10643,Fire,3,The Puppetmaster,8,Aang,Did you get a good look at the spirit that took you?,Did you get a good look at the spirit that took you?,Tim Hedrick,Joaquim Dos Santos,9.1 +10644,10644,Fire,3,The Puppetmaster,8,Ding,"Didn't see no spirit, just felt something come over me, like I was possessed. Forced me to start walking toward the mountain. [Points to the mountain.] I tried to fight it, but I couldn't control my own limbs. It just about had me into a cave up there. [Imitates a walking puppet.] And I looked up at the moon for what I thought would be my last glimpse of light. [Cuts to shot of the trio, Sokka quivering in fear.] But then the sun started to rise and I got control of myself again! I just high-tailed it away from that mountain as quick as I could!","Didn't see no spirit, just felt something come over me, like I was possessed. Forced me to start walking toward the mountain. I tried to fight it, but I couldn't control my own limbs. It just about had me into a cave up there. And I looked up at the moon for what I thought would be my last glimpse of light. But then the sun started to rise and I got control of myself again! I just high-tailed it away from that mountain as quick as I could!",Tim Hedrick,Joaquim Dos Santos,9.1 +10645,10645,Fire,3,The Puppetmaster,8,Sokka,Why would a spirit want to take people to a mountain?,Why would a spirit want to take people to a mountain?,Tim Hedrick,Joaquim Dos Santos,9.1 +10646,10646,Fire,3,The Puppetmaster,8,Toph,Oh no! [Sokka and Aang assume defensive positions.] I did hear people screaming under the mountain. The missing villagers must still be there!,Oh no! I did hear people screaming under the mountain. The missing villagers must still be there!,Tim Hedrick,Joaquim Dos Santos,9.1 +10647,10647,Fire,3,The Puppetmaster,8,Scene Description,"They all stare at the mountain. The scene changes to where Aang, Sokka, and Toph are racing through the dark forest in search of the imprisoned villagers.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10648,10648,Fire,3,The Puppetmaster,8,Toph,[Feels the ground with her hand.] I can hear them. They're this way!,I can hear them. They're this way!,Tim Hedrick,Joaquim Dos Santos,9.1 +10649,10649,Fire,3,The Puppetmaster,8,Scene Description,"The trio proceeds to sprint toward the mountain. Meanwhile, Hama and Katara venture into the moonlit forest.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10650,10650,Fire,3,The Puppetmaster,8,Hama,Can you feel the power the full moon brings?,Can you feel the power the full moon brings?,Tim Hedrick,Joaquim Dos Santos,9.1 +10651,10651,Fire,3,The Puppetmaster,8,Scene Description,"She inhales deeply through her nose and stretches her arms outward, flexing her limbs which causes her veins to bulge out, while Katara looks on in disgust.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10652,10652,Fire,3,The Puppetmaster,8,Hama,"For generations it has blessed waterbenders with its glow, allowing us to do incredible things!","For generations it has blessed waterbenders with its glow, allowing us to do incredible things!",Tim Hedrick,Joaquim Dos Santos,9.1 +10653,10653,Fire,3,The Puppetmaster,8,Scene Description,The camera depicts a shot of her standing beneath the full moon.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10654,10654,Fire,3,The Puppetmaster,8,Hama,[Extreme close-up; in a sinister tone.] I've never felt more alive.,I've never felt more alive.,Tim Hedrick,Joaquim Dos Santos,9.1 +10655,10655,Fire,3,The Puppetmaster,8,Scene Description,"The scene changes to Aang, Sokka, and Toph, who have arrived at the mountain and are standing before the mouth of the cave.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10656,10656,Fire,3,The Puppetmaster,8,Toph,This is the place.,This is the place.,Tim Hedrick,Joaquim Dos Santos,9.1 +10657,10657,Fire,3,The Puppetmaster,8,Sokka,I can't see anything down there.,I can't see anything down there.,Tim Hedrick,Joaquim Dos Santos,9.1 +10658,10658,Fire,3,The Puppetmaster,8,Toph,[Grabs Sokka's hand.] That's why you have me. Let's go!,That's why you have me. Let's go!,Tim Hedrick,Joaquim Dos Santos,9.1 +10659,10659,Fire,3,The Puppetmaster,8,Scene Description,"The three descend into the dark cave and approach a solid metal door, torches nearby. Using metalbending, Toph breaks it down, while the trio proceeds to make their way through the tunnel, Aang and Sokka lighting their path with the torches. They arrive to see several villagers chained to the walls of the cave.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10660,10660,Fire,3,The Puppetmaster,8,Male prisoner #1,We're saved!,We're saved!,Tim Hedrick,Joaquim Dos Santos,9.1 +10661,10661,Fire,3,The Puppetmaster,8,Scene Description,Toph unfastens her meteor bracelet and begins to unlock the prisoners' shackles.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10662,10662,Fire,3,The Puppetmaster,8,Aang,I didn't know spirits made prisons like this. Who brought you here?,I didn't know spirits made prisons like this. Who brought you here?,Tim Hedrick,Joaquim Dos Santos,9.1 +10663,10663,Fire,3,The Puppetmaster,8,Female prisoner,It was no spirit.,It was no spirit.,Tim Hedrick,Joaquim Dos Santos,9.1 +10664,10664,Fire,3,The Puppetmaster,8,Male prisoner #2,It was a witch!,It was a witch!,Tim Hedrick,Joaquim Dos Santos,9.1 +10665,10665,Fire,3,The Puppetmaster,8,Sokka,A witch? What do you mean?,A witch? What do you mean?,Tim Hedrick,Joaquim Dos Santos,9.1 +10666,10666,Fire,3,The Puppetmaster,8,Female prisoner,"[Speaking, as Toph unlocks her shackles.] She seems like a normal old woman, but she controls people like some dark puppetmaster!","She seems like a normal old woman, but she controls people like some dark puppetmaster!",Tim Hedrick,Joaquim Dos Santos,9.1 +10667,10667,Fire,3,The Puppetmaster,8,Sokka,[Gritting.] Hama!,Hama!,Tim Hedrick,Joaquim Dos Santos,9.1 +10668,10668,Fire,3,The Puppetmaster,8,Male prisoner #1,"Yes, the innkeeper!","Yes, the innkeeper!",Tim Hedrick,Joaquim Dos Santos,9.1 +10669,10669,Fire,3,The Puppetmaster,8,Sokka,I knew there was something creepy about her!,I knew there was something creepy about her!,Tim Hedrick,Joaquim Dos Santos,9.1 +10670,10670,Fire,3,The Puppetmaster,8,Aang,We have to stop Hama!,We have to stop Hama!,Tim Hedrick,Joaquim Dos Santos,9.1 +10671,10671,Fire,3,The Puppetmaster,8,Toph,I'll get these people out of here. You go!,I'll get these people out of here. You go!,Tim Hedrick,Joaquim Dos Santos,9.1 +10672,10672,Fire,3,The Puppetmaster,8,Scene Description,"Aang and Sokka flee from the scene, while Toph stays behind. The scene switches to the forest. A cat owl hoots and flies away. The camera focuses on Hama and Katara, their backs facing the camera, the wind blowing their hair slightly, looking toward the moon.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10673,10673,Fire,3,The Puppetmaster,8,Hama,"What I'm about to show you, [Cuts to close-up of Hama glaring menacingly.] I discovered in that wretched Fire Nation prison.","What I'm about to show you, I discovered in that wretched Fire Nation prison.",Tim Hedrick,Joaquim Dos Santos,9.1 +10674,10674,Fire,3,The Puppetmaster,8,Scene Description,The scene fades to a flashback of a younger Hama imprisoned within a cage. She peers through the bars of her cell and looks down mournfully. The camera zooms out to the entire prison room.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10675,10675,Fire,3,The Puppetmaster,8,Hama,"[Voice-over.] The guards were always very careful to keep any water away from us. They piped in dry air and had us suspended away from the ground. Before giving us any water, they would bind our hands and feet so we couldn't bend. [A side-view is shown of Fire Nation guards giving water to a tied up prisoner.] Any sign of trouble was met with cruel retribution. [Cuts to shot of the full moon in the sky during present day.] And yet each month, I felt the full moon enriching me with its energy. [Cuts to shot of Hama.] There had to be something I could do to escape. [Scene fades to flashback of the prison.] Then I realized that where there is life, there is water. [A younger Hama is shown bending the water inside an elephant rat that had wandered its way into her cage.] The rats that scurried across the floor of my cage were nothing more than skins filled with liquid and I passed years developing the skill that would lead to my escape. [A close-up is shown of Hama smiling at her discovery. The scene fades back to present day. Ominously.] Bloodbending. [Cut to a scared Katara.] Controlling the water in another body, [Cut to ground shot of both Hama and Katara.] enforcing your own will over theirs. [The scene fades back to a flashback of young Hama controlling a horde of rats using bloodbending.] Once I had mastered the rats, I was ready for the men.","The guards were always very careful to keep any water away from us. They piped in dry air and had us suspended away from the ground. Before giving us any water, they would bind our hands and feet so we couldn't bend. Any sign of trouble was met with cruel retribution. And yet each month, I felt the full moon enriching me with its energy. There had to be something I could do to escape. Then I realized that where there is life, there is water. The rats that scurried across the floor of my cage were nothing more than skins filled with liquid and I passed years developing the skill that would lead to my escape. Bloodbending. Controlling the water in another body, enforcing your own will over theirs. Once I had mastered the rats, I was ready for the men.",Tim Hedrick,Joaquim Dos Santos,9.1 +10676,10676,Fire,3,The Puppetmaster,8,Scene Description,"The camera switches over to show a Fire Nation guard strolling past the cages when a sudden feeling comes over him. Using bloodbending, Hama forces the guard to grab hold of his keys and unlock her cell, thus marking her escape.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10677,10677,Fire,3,The Puppetmaster,8,Hama,"[Voice-over.] And during the next full moon, I walked free for the first time in decades. [The guard attempts to get up, but Hama quickly forces him back down to the ground. She walks unsteadily away.] My cell unlocked by the very guards assigned to keep me in. [Scene changes back to present day; camera focuses on a close-up of Hama.] Once you perfect this technique, you can control anything or [Looks at Katara from the corner of her eyes sadistically.] anyone.","And during the next full moon, I walked free for the first time in decades. My cell unlocked by the very guards assigned to keep me in. Once you perfect this technique, you can control anything or anyone.",Tim Hedrick,Joaquim Dos Santos,9.1 +10678,10678,Fire,3,The Puppetmaster,8,Katara,[Unsure.] But ... to reach inside someone and control them? [Casts unsure glance off to the side.] I don't know if I want that kind of power.,But ... to reach inside someone and control them? I don't know if I want that kind of power.,Tim Hedrick,Joaquim Dos Santos,9.1 +10679,10679,Fire,3,The Puppetmaster,8,Hama,"[Camera zooms out to the two standing in the forest.] The choice is not yours. The power exists. And it's your duty to use the gifts you've been given to win this war. [Closes up to Hama.] Katara, they tried to wipe us out, our entire culture, your mother!","The choice is not yours. The power exists. And it's your duty to use the gifts you've been given to win this war. Katara, they tried to wipe us out, our entire culture, your mother!",Tim Hedrick,Joaquim Dos Santos,9.1 +10680,10680,Fire,3,The Puppetmaster,8,Katara,[Close-up of her face.] I know.,I know.,Tim Hedrick,Joaquim Dos Santos,9.1 +10681,10681,Fire,3,The Puppetmaster,8,Hama,"[Camera changes back to Hama.] Then you should understand what I'm talking about! We're the last two waterbenders of the Southern Tribe. [Camera focuses on Katara; off-camera.] We have to fight these people whenever we can, wherever they are, with any means necessary!","Then you should understand what I'm talking about! We're the last two waterbenders of the Southern Tribe. We have to fight these people whenever we can, wherever they are, with any means necessary!",Tim Hedrick,Joaquim Dos Santos,9.1 +10682,10682,Fire,3,The Puppetmaster,8,Katara,[Widens eyes in realization.] It's you ... [Angrily.] You're the one who's been making people disappear during the full moons!,It's you ... You're the one who's been making people disappear during the full moons!,Tim Hedrick,Joaquim Dos Santos,9.1 +10683,10683,Fire,3,The Puppetmaster,8,Hama,"[Close-up of her face, as she tilts her head downward.] They threw me in prison to rot, along with my brothers and sisters! They deserve the same! You must carry on my work!","They threw me in prison to rot, along with my brothers and sisters! They deserve the same! You must carry on my work!",Tim Hedrick,Joaquim Dos Santos,9.1 +10684,10684,Fire,3,The Puppetmaster,8,Katara,"[Points to Hama, stretching out her left hand.] I won't! I won't use bloodbending and I won't allow you to keep terrorizing this town! [Her hand suddenly twists to one side. She tries desperately to stop it, but fails to do so.]",I won't! I won't use bloodbending and I won't allow you to keep terrorizing this town!,Tim Hedrick,Joaquim Dos Santos,9.1 +10685,10685,Fire,3,The Puppetmaster,8,Hama,"[Now using bloodbending to subdue to her.] You should've learned the technique before you turned against me! [Forces Katara into a strained position.] It's impossible to fight your way out of my grip! I control every muscle, every vein in your body!","You should've learned the technique before you turned against me! It's impossible to fight your way out of my grip! I control every muscle, every vein in your body!",Tim Hedrick,Joaquim Dos Santos,9.1 +10686,10686,Fire,3,The Puppetmaster,8,Scene Description,"With swift motions of her hands and arms, Hama uses bloodbending to twist Katara around and throw her from side to side. She positions Katara directly before her and uses a downward motion of her hand to force her into a submissive state.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10687,10687,Fire,3,The Puppetmaster,8,Katara,[Tearfully.] Stop! Please ...,Stop! Please ...,Tim Hedrick,Joaquim Dos Santos,9.1 +10688,10688,Fire,3,The Puppetmaster,8,Scene Description,"Hama laughs cruelly and keeps Katara subdued. The shot is showing the full moon slowly fades to a close-up of Katara's face as she is crying. Several moments pass as the young waterbender begins to break free from Hama's grip. Hama stares in shock as Katara inhales deeply and rises, now free from her grasp.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10689,10689,Fire,3,The Puppetmaster,8,Katara,"[Determined.] You're not the only one who draws power from the moon! [Assumes a fighting stance.] My bending is more powerful than yours, Hama. Your technique is useless on me!","You're not the only one who draws power from the moon! My bending is more powerful than yours, Hama. Your technique is useless on me!",Tim Hedrick,Joaquim Dos Santos,9.1 +10690,10690,Fire,3,The Puppetmaster,8,Scene Description,"A waterbending duel ensues between the two. Katara pulls a ring of water around her waist and sends the stream of water at Hama, who halts it and sends it back to Katara. In a swift spinning motion, Katara sends the stream toward Hama again, who draws water from nearby trees, deflects the attack and sends a highly pressurized water jet at her. Katara uses her hands to block the attack, disintegrating the water into droplets. Upon seeing Katara's bending prowess, Hama becomes shocked, allowing for her opponent to use waterbending to knock her to the ground.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10691,10691,Fire,3,The Puppetmaster,8,Hama,[Shouts.] Aahhh!,Aahhh!,Tim Hedrick,Joaquim Dos Santos,9.1 +10692,10692,Fire,3,The Puppetmaster,8,Scene Description,Sokka and Aang approach the scene as Hama rises to her knees.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10693,10693,Fire,3,The Puppetmaster,8,Sokka,"We know what you've been doing, Hama!","We know what you've been doing, Hama!",Tim Hedrick,Joaquim Dos Santos,9.1 +10694,10694,Fire,3,The Puppetmaster,8,Aang,Give up! [Takes a fighting stance.] You're outnumbered!,Give up! You're outnumbered!,Tim Hedrick,Joaquim Dos Santos,9.1 +10695,10695,Fire,3,The Puppetmaster,8,Hama,No! [Rising.] You've outnumbered yourselves.,No! You've outnumbered yourselves.,Tim Hedrick,Joaquim Dos Santos,9.1 +10696,10696,Fire,3,The Puppetmaster,8,Scene Description,"She begins bloodbending Aang and Sokka, who yell in fear, and sends them in Katara's direction. Katara pushes them out of her way and draws water from the ground, sending a stream at Hama, who in turn draws water from a vine and uses a water wheel to deflect the attack.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10697,10697,Fire,3,The Puppetmaster,8,Sokka,"[Unwillingly draws his sword.] Katara, look out! [Forced to walk like a puppet, while waving the blade back and forth rapidly.] It's like my brain has a mind of its own! Stop it arm, stop it!","Katara, look out! It's like my brain has a mind of its own! Stop it arm, stop it!",Tim Hedrick,Joaquim Dos Santos,9.1 +10698,10698,Fire,3,The Puppetmaster,8,Scene Description,Katara pulls up a ring of water and pushes Sokka away.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10699,10699,Fire,3,The Puppetmaster,8,Aang,This feels weird!,This feels weird!,Tim Hedrick,Joaquim Dos Santos,9.1 +10700,10700,Fire,3,The Puppetmaster,8,Katara,"[Using waterbending to freeze him to a nearby tree.] I'm sorry, Aang!","I'm sorry, Aang!",Tim Hedrick,Joaquim Dos Santos,9.1 +10701,10701,Fire,3,The Puppetmaster,8,Aang,It's okay!,It's okay!,Tim Hedrick,Joaquim Dos Santos,9.1 +10702,10702,Fire,3,The Puppetmaster,8,Scene Description,"She catches sight of Sokka, still under Hama's power, unwillingly prepared to strike her with his sword. She draws water from a vine and freezes his sword and hand to a tree as well.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10703,10703,Fire,3,The Puppetmaster,8,Hama,"[Sinisterly.] Don't hurt your friends, Katara! And don't let them hurt each other!","Don't hurt your friends, Katara! And don't let them hurt each other!",Tim Hedrick,Joaquim Dos Santos,9.1 +10704,10704,Fire,3,The Puppetmaster,8,Scene Description,She uses bloodbending to break Aang and Sokka free from their ice encasement and send them colliding straight into one another with Sokka's sword pointing straight at Aang.,NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10705,10705,Fire,3,The Puppetmaster,8,Katara,[Horrified.] No!,No!,Tim Hedrick,Joaquim Dos Santos,9.1 +10706,10706,Fire,3,The Puppetmaster,8,Scene Description,"Aang and Sokka abruptly halt in their tracks and look at their hands in confusion. The camera focuses in on Hama, who has suddenly stiffened, and cuts to Katara, an unsure look on her face as she uses bloodbending to subdue the elder. Focusing first on Hama, who grunts in discomfort, the camera turns to show the imprisoned villagers and Toph approaching the scene before cutting to moments later when the elderly waterbender is arrested, handcuffs placed around her wrists.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10707,10707,Fire,3,The Puppetmaster,8,Male prisoner #1,You're going to be locked away forever.,You're going to be locked away forever.,Tim Hedrick,Joaquim Dos Santos,9.1 +10708,10708,Fire,3,The Puppetmaster,8,Hama,"My work is done. [Turns to Katara.] Congratulations, Katara. You're a bloodbender.","My work is done. Congratulations, Katara. You're a bloodbender.",Tim Hedrick,Joaquim Dos Santos,9.1 +10709,10709,Fire,3,The Puppetmaster,8,Scene Description,"The camera focuses on Katara, who is clearly distressed and breaks down in tears. Hama is shown laughing evilly as she is dragged away by the villagers. The camera returns to focus on Katara, who is crying underneath the full moon as Aang, arm around her, and Sokka, hand on her back, attempt to comfort her. Fades to credits.",NA,Tim Hedrick,Joaquim Dos Santos,9.1 +10710,10710,Fire,3,Nightmares and Daydreams,9,Scene Description,"Some koala sheep are sleeping, as Katara, Sokka, Aang, Toph, and Appa come out of the bushes. Sokka looks at a map, while everyone else looks around. Momo jumps over on Aang's shoulder, as Aang scratches his head.",NA,John O'Bryan,Ethan Spaulding,7.8 +10711,10711,Fire,3,Nightmares and Daydreams,9,Sokka,[Somewhat excitedly.] This is it! The official rendezvous point for the invasion force.,This is it! The official rendezvous point for the invasion force.,John O'Bryan,Ethan Spaulding,7.8 +10712,10712,Fire,3,Nightmares and Daydreams,9,Scene Description,"The camera pans to the left, showing a vast area of the place.",NA,John O'Bryan,Ethan Spaulding,7.8 +10713,10713,Fire,3,Nightmares and Daydreams,9,Toph,How did you pick this place?,How did you pick this place?,John O'Bryan,Ethan Spaulding,7.8 +10714,10714,Fire,3,Nightmares and Daydreams,9,Sokka,"Before we split up, my dad and I found this island on the map. It's uninhabited, and the harbors surrounded by the cliffs seemed like the perfect secluded place.","Before we split up, my dad and I found this island on the map. It's uninhabited, and the harbors surrounded by the cliffs seemed like the perfect secluded place.",John O'Bryan,Ethan Spaulding,7.8 +10715,10715,Fire,3,Nightmares and Daydreams,9,Katara,"Nice choice, Sokka. And we're here four days ahead of schedule.","Nice choice, Sokka. And we're here four days ahead of schedule.",John O'Bryan,Ethan Spaulding,7.8 +10716,10716,Fire,3,Nightmares and Daydreams,9,Aang,[Anxiously.] Wait! Four days? The invasion's in four days?,Wait! Four days? The invasion's in four days?,John O'Bryan,Ethan Spaulding,7.8 +10717,10717,Fire,3,Nightmares and Daydreams,9,Sokka,[Yawns.] Whatever. That's like four days from now. Let's just calm down and-,Whatever. That's like four days from now. Let's just calm down and-,John O'Bryan,Ethan Spaulding,7.8 +10718,10718,Fire,3,Nightmares and Daydreams,9,Scene Description,Sokka falls asleep and begins snoring.,NA,John O'Bryan,Ethan Spaulding,7.8 +10719,10719,Fire,3,Nightmares and Daydreams,9,Katara,"Sokka's got the right idea, Aang. We're here. We're ready. The best thing we can do now is get plenty of rest. [Lies down.]","Sokka's got the right idea, Aang. We're here. We're ready. The best thing we can do now is get plenty of rest.",John O'Bryan,Ethan Spaulding,7.8 +10720,10720,Fire,3,Nightmares and Daydreams,9,Aang,[Half-heartedly.] I guess.,I guess.,John O'Bryan,Ethan Spaulding,7.8 +10721,10721,Fire,3,Nightmares and Daydreams,9,Scene Description,"Everyone else falls asleep. Aang lies down and, as he closes his eyes, the camera zooms in on his face. +Scene briefly fades to black before changing to a large Fire Nation insignia, which is revealed to be a door when the camera zooms back. The door busts open, revealing a boy with large hair, a headband, and a yellow jump suit, with his face turned the other side. He enters the room with a series of dramatic gestures. It is revealed that this boy is Aang in strange attire. Aang quickly jumps on to a rock tower. Cut to wider shot of Aang standing on the rock tower, surrounded by floating broken pillars.",NA,John O'Bryan,Ethan Spaulding,7.8 +10722,10722,Fire,3,Nightmares and Daydreams,9,Aang,"[He makes some fast and dramatic ninja-like moves as he speaks.] Your days of tyranny are over, Fire Lord! I'm bringing you down.","Your days of tyranny are over, Fire Lord! I'm bringing you down.",John O'Bryan,Ethan Spaulding,7.8 +10723,10723,Fire,3,Nightmares and Daydreams,9,Scene Description,"Cut to close-up of the Fire Lord, who is about to take a bite of a bundle of grapes with his eyes closed. Hearing Aang's words, he stops and opens his eyes to look down at his adversary. The camera pans out quickly to reveal he is actually a giant when compared to Aang and surrounded by a pit of fire.",NA,John O'Bryan,Ethan Spaulding,7.8 +10724,10724,Fire,3,Nightmares and Daydreams,9,Ozai,Really? [Brings his face close to Aang.] How do you plan on doing that when you're not even wearing pants?,Really? How do you plan on doing that when you're not even wearing pants?,John O'Bryan,Ethan Spaulding,7.8 +10725,10725,Fire,3,Nightmares and Daydreams,9,Scene Description,"Cut to Aang's scared face, as he looks down to see that Ozai was telling the truth, and screams.",NA,John O'Bryan,Ethan Spaulding,7.8 +10726,10726,Fire,3,Nightmares and Daydreams,9,Aang,Oh no!,Oh no!,John O'Bryan,Ethan Spaulding,7.8 +10727,10727,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang quickly covers himself with a white Air Nomad shield pulled out of thin air. The camera zooms out to a larger shot of Aang shaking with embarrassment. Suddenly, giant eyes begin to appear all around him. The eye's close and disappear. Cut to shot of the giant Fire Lord laughing, as Aang slowly backs out the door. The Fire Lord raises his arms to the ceiling, while surrounded by flames, laughing heartily. Aang wakes up and starts touching his pants. Momo is seen awake as well.",NA,John O'Bryan,Ethan Spaulding,7.8 +10728,10728,Fire,3,Nightmares and Daydreams,9,Aang,"It was just a dream, Momo. I still have my pants. [Stands up.] Well, I better keep training.","It was just a dream, Momo. I still have my pants. Well, I better keep training.",John O'Bryan,Ethan Spaulding,7.8 +10729,10729,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang walks over to a bush and starts kicking it. Momo gets bored of watching him, and soon falls back asleep. Scene changes to the Fire Nation Palace, where Zuko is getting dressed and ready, with help from his servants.",NA,John O'Bryan,Ethan Spaulding,7.8 +10730,10730,Fire,3,Nightmares and Daydreams,9,Servant #1,"Fresh fruit, Prince Zuko?","Fresh fruit, Prince Zuko?",John O'Bryan,Ethan Spaulding,7.8 +10731,10731,Fire,3,Nightmares and Daydreams,9,Scene Description,Zuko puts out his hand and shakes his head respectfully.,NA,John O'Bryan,Ethan Spaulding,7.8 +10732,10732,Fire,3,Nightmares and Daydreams,9,Servant #2,"May I wash your feet, sir?","May I wash your feet, sir?",John O'Bryan,Ethan Spaulding,7.8 +10733,10733,Fire,3,Nightmares and Daydreams,9,Scene Description,Zuko respectfully puts his hand out and shakes his head again.,NA,John O'Bryan,Ethan Spaulding,7.8 +10734,10734,Fire,3,Nightmares and Daydreams,9,Servant #1,Head massage?,Head massage?,John O'Bryan,Ethan Spaulding,7.8 +10735,10735,Fire,3,Nightmares and Daydreams,9,Scene Description,Zuko shakes his head again.,NA,John O'Bryan,Ethan Spaulding,7.8 +10736,10736,Fire,3,Nightmares and Daydreams,9,Servant #2,Hot towel?,Hot towel?,John O'Bryan,Ethan Spaulding,7.8 +10737,10737,Fire,3,Nightmares and Daydreams,9,Scene Description,"Zuko looks at the towels for a moment and takes one. He is seen wiping his forehead before walking out of the room. The two servants bow behind him. Zuko walks out the palace gates, with Fire Nation citizens waiting for him. One woman becomes overly excited at seeing Zuko, and is taken away by the palace guards.",NA,John O'Bryan,Ethan Spaulding,7.8 +10738,10738,Fire,3,Nightmares and Daydreams,9,Servant #1,"Prince Zuko, is something wrong? You didn't take the palanquin.","Prince Zuko, is something wrong? You didn't take the palanquin.",John O'Bryan,Ethan Spaulding,7.8 +10739,10739,Fire,3,Nightmares and Daydreams,9,Zuko,I'm just going to Mai's house. It's not far.,I'm just going to Mai's house. It's not far.,John O'Bryan,Ethan Spaulding,7.8 +10740,10740,Fire,3,Nightmares and Daydreams,9,Servant #1,"It's not a prince's place to walk anywhere, sir.","It's not a prince's place to walk anywhere, sir.",John O'Bryan,Ethan Spaulding,7.8 +10741,10741,Fire,3,Nightmares and Daydreams,9,Scene Description,"Zuko looks to the distance, walks over, and gets into the palanquin. The servants pick it up and walk over to Mai's house. Zuko looks out of the palanquin's curtains and sees Mai, who is standing by the doors to her house, who waves and walks away. +The scene changes back to Aang, who is still training. He is now banging his fists against a tree, which wakes up Sokka, Toph, and Katara. Katara looks at Sokka, who just shrugs. She decides to go talk to Aang about this.",NA,John O'Bryan,Ethan Spaulding,7.8 +10742,10742,Fire,3,Nightmares and Daydreams,9,Katara,Hey. How long have you been up?,Hey. How long have you been up?,John O'Bryan,Ethan Spaulding,7.8 +10743,10743,Fire,3,Nightmares and Daydreams,9,Aang,A couple hours. I got a lot more skills to refine if I'm gonna fight Ozai.,A couple hours. I got a lot more skills to refine if I'm gonna fight Ozai.,John O'Bryan,Ethan Spaulding,7.8 +10744,10744,Fire,3,Nightmares and Daydreams,9,Katara,"[Aang stops, panting.] You know, there is such a thing as over-training.","You know, there is such a thing as over-training.",John O'Bryan,Ethan Spaulding,7.8 +10745,10745,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang hits the tree one last time, which sends a vibration throughout his body and makes him fall down, with all of the leaves off the tree collapsing on him. Katara just gazes down at him, and Sokka, holding his map, and Toph, who is facing the other direction, look out from behind her. Aang comes out from under the leaves and walks around Katara in a fighting stance.",NA,John O'Bryan,Ethan Spaulding,7.8 +10746,10746,Fire,3,Nightmares and Daydreams,9,Aang,"You don't get it, do you? My form is bad, I'm sloppy, and I still don't know any firebending. Not even the basics.","You don't get it, do you? My form is bad, I'm sloppy, and I still don't know any firebending. Not even the basics.",John O'Bryan,Ethan Spaulding,7.8 +10747,10747,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang's left eye twitches a little bit after saying this. Katara brings Aang's hand down, with a forced smile on her face. Sokka is seen, lying down, still looking at the map.",NA,John O'Bryan,Ethan Spaulding,7.8 +10748,10748,Fire,3,Nightmares and Daydreams,9,Sokka,"That's okay, Aang. The eclipse will block off firebending anyway. You don't need to know it. [Looking at Aang.] Plus, it's a stupid element.","That's okay, Aang. The eclipse will block off firebending anyway. You don't need to know it. Plus, it's a stupid element.",John O'Bryan,Ethan Spaulding,7.8 +10749,10749,Fire,3,Nightmares and Daydreams,9,Aang,"Okay, well I still have to work on everything else. I better spend the whole day training.","Okay, well I still have to work on everything else. I better spend the whole day training.",John O'Bryan,Ethan Spaulding,7.8 +10750,10750,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang bows quickly toward Sokka, followed by Katara, and rides off on an air scooter. Sokka moves the map up in front of his face to hide behind it. The view changes to the blue sky, which changes to a starry night. Aang is walking back from his training, now exhausted. Everyone else is asleep. Aang rubs his eyes and yawns before collapsing.",NA,John O'Bryan,Ethan Spaulding,7.8 +10751,10751,Fire,3,Nightmares and Daydreams,9,Aang,"[Wide shot of the group on the cliffside with the camera slowly zooming out.] Good night, Katara. Good night, Sokka. Good night, Toph. Good night, Appa. Good night, Momo. Good night, Appa and Mo-","Good night, Katara. Good night, Sokka. Good night, Toph. Good night, Appa. Good night, Momo. Good night, Appa and Mo-",John O'Bryan,Ethan Spaulding,7.8 +10752,10752,Fire,3,Nightmares and Daydreams,9,Toph,[With chibi face in a speech bubble that appears above her; angrily.] Go to sleep already! [Clenches her teeth.],Go to sleep already!,John O'Bryan,Ethan Spaulding,7.8 +10753,10753,Fire,3,Nightmares and Daydreams,9,Scene Description,"Cut to Aang, who flinched upon hearing Toph, but goes back into his normal position and closes his eyes. The camera pans up. +The scene fades briefly to black again, before cutting to shot of Aang busting through the same large Fire Nation door from his previous dream. This time, he is wearing boats, white pants, a high collared yellow tunic that covers his mouth, white sleeves with blue arrows on them, and has his chest wrapped in a chain. He has sideburns, his hair is long and stands up straight, wears his headband, and has two small metal rings in the top of his right ear. As he stands in the opening where the doors once were, he snaps his fingers and smoke starts to pour into the entrance. Aang slides in and jumps over some small pillars to face Ozai, who is still a giant.",NA,John O'Bryan,Ethan Spaulding,7.8 +10754,10754,Fire,3,Nightmares and Daydreams,9,Aang,"[Frontal shot as he points outward.] Your days of tyranny are over, Fire Lord. [Scowls.] I'm bringing you down! [Looks down momentarily; confidently.] And this time, I brought pants.","Your days of tyranny are over, Fire Lord. I'm bringing you down! And this time, I brought pants.",John O'Bryan,Ethan Spaulding,7.8 +10755,10755,Fire,3,Nightmares and Daydreams,9,Scene Description,"Camera shows a view of some chains wrapping around Aang's clothing, including his pants. The shot turns to Ozai.",NA,John O'Bryan,Ethan Spaulding,7.8 +10756,10756,Fire,3,Nightmares and Daydreams,9,Ozai,"So it seems, but are you prepared for your ... mathematics test?","So it seems, but are you prepared for your ... mathematics test?",John O'Bryan,Ethan Spaulding,7.8 +10757,10757,Fire,3,Nightmares and Daydreams,9,Scene Description,A giant abacus lands behind Aang. Camera turns to show Aang's worried face.,NA,John O'Bryan,Ethan Spaulding,7.8 +10758,10758,Fire,3,Nightmares and Daydreams,9,Aang,Math test? Oh no! I forgot all about the math test!,Math test? Oh no! I forgot all about the math test!,John O'Bryan,Ethan Spaulding,7.8 +10759,10759,Fire,3,Nightmares and Daydreams,9,Scene Description,Ozai is heard laughing in the background as Aang is screaming while being pulled backward and crushed by some beads on the abacus. He suddenly wakes up.,NA,John O'Bryan,Ethan Spaulding,7.8 +10760,10760,Fire,3,Nightmares and Daydreams,9,Aang,I've gotta be ready.,I've gotta be ready.,John O'Bryan,Ethan Spaulding,7.8 +10761,10761,Fire,3,Nightmares and Daydreams,9,Scene Description,Aang gets up and walks away. He is seen pacing around some sleeping koala sheep. Katara comes over to talk to him.,NA,John O'Bryan,Ethan Spaulding,7.8 +10762,10762,Fire,3,Nightmares and Daydreams,9,Katara,"Aang, it's the middle of the night. You need to go back to sleep.","Aang, it's the middle of the night. You need to go back to sleep.",John O'Bryan,Ethan Spaulding,7.8 +10763,10763,Fire,3,Nightmares and Daydreams,9,Aang,But I forgot my pants and my math test.,But I forgot my pants and my math test.,John O'Bryan,Ethan Spaulding,7.8 +10764,10764,Fire,3,Nightmares and Daydreams,9,Scene Description,Katara sighs and grabs Aang's shoulder.,NA,John O'Bryan,Ethan Spaulding,7.8 +10765,10765,Fire,3,Nightmares and Daydreams,9,Katara,"Aang, sleep. Please. For me.","Aang, sleep. Please. For me.",John O'Bryan,Ethan Spaulding,7.8 +10766,10766,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang looks at her, rubbing his eyes. He bows his head, and the two walk back. A koala sheep makes a sound. The scene changes to the Royal Palace, where Zuko and Mai are relaxing on a couch.",NA,John O'Bryan,Ethan Spaulding,7.8 +10767,10767,Fire,3,Nightmares and Daydreams,9,Zuko,"Tell me, if you could have anything you want right now, what would it be?","Tell me, if you could have anything you want right now, what would it be?",John O'Bryan,Ethan Spaulding,7.8 +10768,10768,Fire,3,Nightmares and Daydreams,9,Mai,"Hm ... A big fancy fruit tart, with rose petals on top.","Hm ... A big fancy fruit tart, with rose petals on top.",John O'Bryan,Ethan Spaulding,7.8 +10769,10769,Fire,3,Nightmares and Daydreams,9,Zuko,"You know, being a prince and all, I might just be able to make that happen.","You know, being a prince and all, I might just be able to make that happen.",John O'Bryan,Ethan Spaulding,7.8 +10770,10770,Fire,3,Nightmares and Daydreams,9,Mai,[Chuckles.] That would be impressive.,That would be impressive.,John O'Bryan,Ethan Spaulding,7.8 +10771,10771,Fire,3,Nightmares and Daydreams,9,Zuko,"[To the servants.] Do you think you could find a fresh fruit tart for the lady, with rose petals on top?","Do you think you could find a fresh fruit tart for the lady, with rose petals on top?",John O'Bryan,Ethan Spaulding,7.8 +10772,10772,Fire,3,Nightmares and Daydreams,9,Servant,"Excellent choice, sir.","Excellent choice, sir.",John O'Bryan,Ethan Spaulding,7.8 +10773,10773,Fire,3,Nightmares and Daydreams,9,Mai,"I guess there's some nice perks that come with being royalty. [Pushing him Zuko to lay down with her.] Though there's annoying stuff, too. Like that all-day war meeting coming up.","I guess there's some nice perks that come with being royalty. Though there's annoying stuff, too. Like that all-day war meeting coming up.",John O'Bryan,Ethan Spaulding,7.8 +10774,10774,Fire,3,Nightmares and Daydreams,9,Zuko,"[Sitting up, followed by Mai.] War meeting? What are you talking about?",War meeting? What are you talking about?,John O'Bryan,Ethan Spaulding,7.8 +10775,10775,Fire,3,Nightmares and Daydreams,9,Mai,"Azula mentioned something. I-I assumed you were going, too.","Azula mentioned something. I-I assumed you were going, too.",John O'Bryan,Ethan Spaulding,7.8 +10776,10776,Fire,3,Nightmares and Daydreams,9,Zuko,I guess I wasn't invited.,I guess I wasn't invited.,John O'Bryan,Ethan Spaulding,7.8 +10777,10777,Fire,3,Nightmares and Daydreams,9,Scene Description,"The two look away from each other. The scene changes back to the Black Cliffs, where Aang is still sleeping.",NA,John O'Bryan,Ethan Spaulding,7.8 +10778,10778,Fire,3,Nightmares and Daydreams,9,Ozai,"Wake up, Aang. Wake up, sleepy head! [Cut to an out of focus swaying shot of the Fire Lord standing over Aang.] Rise and shine! You overslept. [The Fire Lord bends in close and then even closer.] You missed the invasion.","Wake up, Aang. Wake up, sleepy head! Rise and shine! You overslept. You missed the invasion.",John O'Bryan,Ethan Spaulding,7.8 +10779,10779,Fire,3,Nightmares and Daydreams,9,Scene Description,"Ozai begins to laugh, and is seen riding a giant, flying hippo cow, which breathes out fire at Aang, making him move from his spot. He watches as Ozai flies away, still laughing. Aang quickly wakes up, and goes to wake up Sokka.",NA,John O'Bryan,Ethan Spaulding,7.8 +10780,10780,Fire,3,Nightmares and Daydreams,9,Aang,"Sokka, get up! I needa know what day it is!","Sokka, get up! I needa know what day it is!",John O'Bryan,Ethan Spaulding,7.8 +10781,10781,Fire,3,Nightmares and Daydreams,9,Sokka,What? Who's talking?,What? Who's talking?,John O'Bryan,Ethan Spaulding,7.8 +10782,10782,Fire,3,Nightmares and Daydreams,9,Scene Description,"Sokka grabs his sword and jumps up, but hits his head on a nearby rock and falls down. Toph and Katara are seen waking up.",NA,John O'Bryan,Ethan Spaulding,7.8 +10783,10783,Fire,3,Nightmares and Daydreams,9,Toph,Relax! It's still two days before the invasion!,Relax! It's still two days before the invasion!,John O'Bryan,Ethan Spaulding,7.8 +10784,10784,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang begins pulling on Sokka's legs, trying to get him up.",NA,John O'Bryan,Ethan Spaulding,7.8 +10785,10785,Fire,3,Nightmares and Daydreams,9,Aang,"Sokka, you've gotta get up drill your rock-climbing exercises.","Sokka, you've gotta get up drill your rock-climbing exercises.",John O'Bryan,Ethan Spaulding,7.8 +10786,10786,Fire,3,Nightmares and Daydreams,9,Sokka,What?,What?,John O'Bryan,Ethan Spaulding,7.8 +10787,10787,Fire,3,Nightmares and Daydreams,9,Aang,"In one of my dreams, you were running from Fire Nation soldiers, trying to climb this cliff, [Camera turns to show an annoyed look on Sokka's face.] but you were too slow and they got you!","In one of my dreams, you were running from Fire Nation soldiers, trying to climb this cliff, but you were too slow and they got you!",John O'Bryan,Ethan Spaulding,7.8 +10788,10788,Fire,3,Nightmares and Daydreams,9,Scene Description,Sokka stands up quickly and steps in front of Aang.,NA,John O'Bryan,Ethan Spaulding,7.8 +10789,10789,Fire,3,Nightmares and Daydreams,9,Sokka,But that was just a dream. I'm a great climber!,But that was just a dream. I'm a great climber!,John O'Bryan,Ethan Spaulding,7.8 +10790,10790,Fire,3,Nightmares and Daydreams,9,Aang,[While pointing at the cliff nearby.] Then climb that cliff! Climb it fast!,Then climb that cliff! Climb it fast!,John O'Bryan,Ethan Spaulding,7.8 +10791,10791,Fire,3,Nightmares and Daydreams,9,Scene Description,"Camera turns to show the size of the cliff. When it sets back on Sokka, he looks at Aang, pointing to the cliff. Aang nods fast, and Sokka reluctantly begins to climb it.",NA,John O'Bryan,Ethan Spaulding,7.8 +10792,10792,Fire,3,Nightmares and Daydreams,9,Sokka,Stupid Avatar! Stupid cliff! Stupid dream! I can climb fast!,Stupid Avatar! Stupid cliff! Stupid dream! I can climb fast!,John O'Bryan,Ethan Spaulding,7.8 +10793,10793,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang is seen looking up at Sokka with an anxious smile, before frowning at seeing how slowly he was going. Toph tries to get a drink of water.",NA,John O'Bryan,Ethan Spaulding,7.8 +10794,10794,Fire,3,Nightmares and Daydreams,9,Aang,[Turning around to her.] Don't drink that!,Don't drink that!,John O'Bryan,Ethan Spaulding,7.8 +10795,10795,Fire,3,Nightmares and Daydreams,9,Scene Description,"Sokka is seen behind Aang falling off the cliff after hearing Aang. Toph spits out the water onto Katara, who waterbends it off her.",NA,John O'Bryan,Ethan Spaulding,7.8 +10796,10796,Fire,3,Nightmares and Daydreams,9,Toph,Why? Is it poisoned?,Why? Is it poisoned?,John O'Bryan,Ethan Spaulding,7.8 +10797,10797,Fire,3,Nightmares and Daydreams,9,Aang,"In my dream, we were right in the middle of the invasion, and you had to stop to use the bathroom! [He puts his hands between his legs and squeezes them together.] We died because of your tiny bladder. [He turns to Katara.] And you need to start wearing your hair up. In my dream, your hair got caught in a train, and-.","In my dream, we were right in the middle of the invasion, and you had to stop to use the bathroom! We died because of your tiny bladder. And you need to start wearing your hair up. In my dream, your hair got caught in a train, and-.",John O'Bryan,Ethan Spaulding,7.8 +10798,10798,Fire,3,Nightmares and Daydreams,9,Katara,"[Putting a hand on the side of his face.] Aang! I know you're just trying to help, but you really need to get a grip. You're unraveling.","Aang! I know you're just trying to help, but you really need to get a grip. You're unraveling.",John O'Bryan,Ethan Spaulding,7.8 +10799,10799,Fire,3,Nightmares and Daydreams,9,Aang,[He takes a deep breath before finally speaking.] You're right. I'm losing my mind.,You're right. I'm losing my mind.,John O'Bryan,Ethan Spaulding,7.8 +10800,10800,Fire,3,Nightmares and Daydreams,9,Scene Description,"Sokka is still climbing the cliff, and almost reaches the top, but is seen sliding down. Cut to the sun in the sky. Cut to Aang's face, his eye twitching, as he paces around, stressed. Cut to his hands rotating between putting his thumb and finger together before alternating to the opposites on the other hand.",NA,John O'Bryan,Ethan Spaulding,7.8 +10801,10801,Fire,3,Nightmares and Daydreams,9,Aang,"It's like every time I think about how stressed I am, I just end up more stressed. I'm like a big growing snowball of nerves.","It's like every time I think about how stressed I am, I just end up more stressed. I'm like a big growing snowball of nerves.",John O'Bryan,Ethan Spaulding,7.8 +10802,10802,Fire,3,Nightmares and Daydreams,9,Scene Description,"As he paces, Katara sits, concerned, petting Momo and watching Aang, while Sokka hammers away at a piece of armor for Appa. Toph lies resting against a sleeping Appa.",NA,John O'Bryan,Ethan Spaulding,7.8 +10803,10803,Fire,3,Nightmares and Daydreams,9,Sokka,"[Turning to look at Aang.] Of course you are. That's 'cause you gotta fight the Fire Lord, the baddest man on the planet. And you better win or we're all done for.","Of course you are. That's 'cause you gotta fight the Fire Lord, the baddest man on the planet. And you better win or we're all done for.",John O'Bryan,Ethan Spaulding,7.8 +10804,10804,Fire,3,Nightmares and Daydreams,9,Katara,"[Approaching Sokka, annoyed.] Sokka! You're not helping!",Sokka! You're not helping!,John O'Bryan,Ethan Spaulding,7.8 +10805,10805,Fire,3,Nightmares and Daydreams,9,Sokka,[Standing.] What? It's true. That's the deal. He knows it.,What? It's true. That's the deal. He knows it.,John O'Bryan,Ethan Spaulding,7.8 +10806,10806,Fire,3,Nightmares and Daydreams,9,Scene Description,"Katara pushes down Sokka to sit, before looking over at Aang, who is nervously shaking. She walks over to him and touches his shoulders.",NA,John O'Bryan,Ethan Spaulding,7.8 +10807,10807,Fire,3,Nightmares and Daydreams,9,Katara,"You know what, I've got just the thing! Get ready to be de-stressified!","You know what, I've got just the thing! Get ready to be de-stressified!",John O'Bryan,Ethan Spaulding,7.8 +10808,10808,Fire,3,Nightmares and Daydreams,9,Scene Description,Scene changes to Aang and Katara in a mountain doing some yoga. Steaming water in the middle of the room.,NA,John O'Bryan,Ethan Spaulding,7.8 +10809,10809,Fire,3,Nightmares and Daydreams,9,Katara,"These yoga stretches can really work wonders if you do them in extreme heat. Reach up. [Katara puts her hands above her head together, Aang follows along.] Reach for the sun. [They wave their hands and upper bodies side to side.] Feel your chi paths clearing. [Both bend over so their heads touch the ground, grabbing their legs.] Now close your eyes. How are you feeling?",These yoga stretches can really work wonders if you do them in extreme heat. Reach up. Reach for the sun. Feel your chi paths clearing. Now close your eyes. How are you feeling?,John O'Bryan,Ethan Spaulding,7.8 +10810,10810,Fire,3,Nightmares and Daydreams,9,Aang,[Close-up of Aang sweating.] I feel ... really warm.,I feel ... really warm.,John O'Bryan,Ethan Spaulding,7.8 +10811,10811,Fire,3,Nightmares and Daydreams,9,Katara,"Good, good. Go on.","Good, good. Go on.",John O'Bryan,Ethan Spaulding,7.8 +10812,10812,Fire,3,Nightmares and Daydreams,9,Aang,Like there's this warm feeling all around me. This heat. [Becoming frantic again.] Like I'm in the Fire Lord's palace and he's shooting a bunch of fireballs at me! And the whole world is being engulfed in flames!,Like there's this warm feeling all around me. This heat. Like I'm in the Fire Lord's palace and he's shooting a bunch of fireballs at me! And the whole world is being engulfed in flames!,John O'Bryan,Ethan Spaulding,7.8 +10813,10813,Fire,3,Nightmares and Daydreams,9,Scene Description,"An orange flame is seen circling around, covering the view, before disappearing. Aang gets out of his position and lands on his back, panting.",NA,John O'Bryan,Ethan Spaulding,7.8 +10814,10814,Fire,3,Nightmares and Daydreams,9,Katara,Maybe your stress is the kind you need to talk out.,Maybe your stress is the kind you need to talk out.,John O'Bryan,Ethan Spaulding,7.8 +10815,10815,Fire,3,Nightmares and Daydreams,9,Scene Description,"Scene changes to Sokka, in his Wang Fire outfit, and Aang lying on a koala sheep.",NA,John O'Bryan,Ethan Spaulding,7.8 +10816,10816,Fire,3,Nightmares and Daydreams,9,Sokka,[In his Wang Fire voice.] Why don't you get right down to business and tell me what's been bothering you.,Why don't you get right down to business and tell me what's been bothering you.,John O'Bryan,Ethan Spaulding,7.8 +10817,10817,Fire,3,Nightmares and Daydreams,9,Aang,You know what's bothering me. I have to fight the Fire Lord in a few days.,You know what's bothering me. I have to fight the Fire Lord in a few days.,John O'Bryan,Ethan Spaulding,7.8 +10818,10818,Fire,3,Nightmares and Daydreams,9,Sokka,"[He nods upon hearing Aang's explanation.] Tell me more about this ""Fire Lord"". Why are you so afraid of him?","Tell me more about this ""Fire Lord"". Why are you so afraid of him?",John O'Bryan,Ethan Spaulding,7.8 +10819,10819,Fire,3,Nightmares and Daydreams,9,Aang,You said it yourself! He's the baddest man on the planet! I'm supposed to defeat him and save the world!,You said it yourself! He's the baddest man on the planet! I'm supposed to defeat him and save the world!,John O'Bryan,Ethan Spaulding,7.8 +10820,10820,Fire,3,Nightmares and Daydreams,9,Sokka,"[Nodding in agreement.] Life does feel that way sometimes, doesn't it? Like we're all trying to save the world from evil.","Life does feel that way sometimes, doesn't it? Like we're all trying to save the world from evil.",John O'Bryan,Ethan Spaulding,7.8 +10821,10821,Fire,3,Nightmares and Daydreams,9,Aang,Okay! But what can I do to feel better?,Okay! But what can I do to feel better?,John O'Bryan,Ethan Spaulding,7.8 +10822,10822,Fire,3,Nightmares and Daydreams,9,Sokka,[While handing Aang a koala sheep.] Want to try screaming into this pillow?,Want to try screaming into this pillow?,John O'Bryan,Ethan Spaulding,7.8 +10823,10823,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang does so. Once his face is out of the wool, the koala sheep makes a noise at him. After Sokka scratches his head, he does a thumbs-up while nodding. Aang shakes his head so Sokka nods faster, but Aang shakes his head faster. Scene changes to Azula at the royal spa, getting her hair done. Zuko comes in and walks up to her.",NA,John O'Bryan,Ethan Spaulding,7.8 +10824,10824,Fire,3,Nightmares and Daydreams,9,Azula,"Hello, Zuzu. If you've come for a royal hair-combing, I'm afraid you'll have to wait.","Hello, Zuzu. If you've come for a royal hair-combing, I'm afraid you'll have to wait.",John O'Bryan,Ethan Spaulding,7.8 +10825,10825,Fire,3,Nightmares and Daydreams,9,Zuko,"So I guess there's a big war meeting coming up, huh? And apparently I'm not welcome there.","So I guess there's a big war meeting coming up, huh? And apparently I'm not welcome there.",John O'Bryan,Ethan Spaulding,7.8 +10826,10826,Fire,3,Nightmares and Daydreams,9,Azula,What do you mean? Of course you're welcome there!,What do you mean? Of course you're welcome there!,John O'Bryan,Ethan Spaulding,7.8 +10827,10827,Fire,3,Nightmares and Daydreams,9,Zuko,"Oh, yeah?! I guess that's why no one bothered to tell me about it!","Oh, yeah?! I guess that's why no one bothered to tell me about it!",John O'Bryan,Ethan Spaulding,7.8 +10828,10828,Fire,3,Nightmares and Daydreams,9,Azula,"Oh, Zuko. Don't be so dramatic. I'm certain Dad wants you there. You probably just weren't invited because it's so obvious you're supposed to be there.","Oh, Zuko. Don't be so dramatic. I'm certain Dad wants you there. You probably just weren't invited because it's so obvious you're supposed to be there.",John O'Bryan,Ethan Spaulding,7.8 +10829,10829,Fire,3,Nightmares and Daydreams,9,Zuko,"Well, were you invited?","Well, were you invited?",John O'Bryan,Ethan Spaulding,7.8 +10830,10830,Fire,3,Nightmares and Daydreams,9,Azula,Of course! I'm the princess.,Of course! I'm the princess.,John O'Bryan,Ethan Spaulding,7.8 +10831,10831,Fire,3,Nightmares and Daydreams,9,Zuko,And I'm the prince!,And I'm the prince!,John O'Bryan,Ethan Spaulding,7.8 +10832,10832,Fire,3,Nightmares and Daydreams,9,Azula,"Exactly, so stop acting like a paranoid child! Just go to the meeting.","Exactly, so stop acting like a paranoid child! Just go to the meeting.",John O'Bryan,Ethan Spaulding,7.8 +10833,10833,Fire,3,Nightmares and Daydreams,9,Zuko,Forget it! I'm not going!,Forget it! I'm not going!,John O'Bryan,Ethan Spaulding,7.8 +10834,10834,Fire,3,Nightmares and Daydreams,9,Scene Description,Zuko turns around and walks away. The scene changes to Aang lying down on some pillars.,NA,John O'Bryan,Ethan Spaulding,7.8 +10835,10835,Fire,3,Nightmares and Daydreams,9,Toph,All right! What you need is a good old-fashioned back pounding to relieve your stress.,All right! What you need is a good old-fashioned back pounding to relieve your stress.,John O'Bryan,Ethan Spaulding,7.8 +10836,10836,Fire,3,Nightmares and Daydreams,9,Aang,[Looking up at her.] Pound away.,Pound away.,John O'Bryan,Ethan Spaulding,7.8 +10837,10837,Fire,3,Nightmares and Daydreams,9,Scene Description,"Toph begins stomping fiercely, causing the pillars to move up and down in various order.",NA,John O'Bryan,Ethan Spaulding,7.8 +10838,10838,Fire,3,Nightmares and Daydreams,9,Aang,[The pillars causing him pain.] Ow! Toph ... I ... think ... this ... is ... bruising ... me!,Ow! Toph ... I ... think ... this ... is ... bruising ... me!,John O'Bryan,Ethan Spaulding,7.8 +10839,10839,Fire,3,Nightmares and Daydreams,9,Scene Description,"Toph stops, and Aang begins sliding to the left, off the pillars.",NA,John O'Bryan,Ethan Spaulding,7.8 +10840,10840,Fire,3,Nightmares and Daydreams,9,Toph,"Sorry. I forgot you had baby skin. [Aang grabs onto the edge of the pillars and gets up.] Well, there's one other thing we can try. [She stomps the ground, sending a distant boar-q-pine to her. She catches it and holds it out to Aang with a wide grin.] Acupuncture!","Sorry. I forgot you had baby skin. Well, there's one other thing we can try. Acupuncture!",John O'Bryan,Ethan Spaulding,7.8 +10841,10841,Fire,3,Nightmares and Daydreams,9,Scene Description,"The boar-q-pine's quills stick out, and Aang runs away. Scene changes back to the Fire Nation Palace, where Zuko is looking out a window. Mai comes up to him.",NA,John O'Bryan,Ethan Spaulding,7.8 +10842,10842,Fire,3,Nightmares and Daydreams,9,Mai,"Zuko, it's just a dumb meeting. Who cares?","Zuko, it's just a dumb meeting. Who cares?",John O'Bryan,Ethan Spaulding,7.8 +10843,10843,Fire,3,Nightmares and Daydreams,9,Zuko,I don't.,I don't.,John O'Bryan,Ethan Spaulding,7.8 +10844,10844,Fire,3,Nightmares and Daydreams,9,Mai,"Well, good. You shouldn't. I mean, why would you even want to go? Just think about how things went the last meeting you went to.","Well, good. You shouldn't. I mean, why would you even want to go? Just think about how things went the last meeting you went to.",John O'Bryan,Ethan Spaulding,7.8 +10845,10845,Fire,3,Nightmares and Daydreams,9,Zuko,[Sighs.] I know.,I know.,John O'Bryan,Ethan Spaulding,7.8 +10846,10846,Fire,3,Nightmares and Daydreams,9,Mai,You know what will make you feel better? [Zuko turns his head slightly.] Ordering some servants around. I might be hungry for a whole tray of fruit tarts. And maybe a little palanquin ride around town. Double time.,You know what will make you feel better? Ordering some servants around. I might be hungry for a whole tray of fruit tarts. And maybe a little palanquin ride around town. Double time.,John O'Bryan,Ethan Spaulding,7.8 +10847,10847,Fire,3,Nightmares and Daydreams,9,Scene Description,"She turns Zuko's face to look at her, but he quickly looks away, making Mai let go of him. Scene changes back to the Black Cliffs. Aang is sitting up, holding his knees.",NA,John O'Bryan,Ethan Spaulding,7.8 +10848,10848,Fire,3,Nightmares and Daydreams,9,Aang,"Thanks for everything, guys.","Thanks for everything, guys.",John O'Bryan,Ethan Spaulding,7.8 +10849,10849,Fire,3,Nightmares and Daydreams,9,Katara,"So, do you feel less stressed? Ready for a good night's sleep?","So, do you feel less stressed? Ready for a good night's sleep?",John O'Bryan,Ethan Spaulding,7.8 +10850,10850,Fire,3,Nightmares and Daydreams,9,Aang,"[He turns his head away.] Uh, I kinda think I sorta might slightly feel a little better. [He looks back at his friends.] Maybe.","Uh, I kinda think I sorta might slightly feel a little better. Maybe.",John O'Bryan,Ethan Spaulding,7.8 +10851,10851,Fire,3,Nightmares and Daydreams,9,Sokka,Then our work here is done.,Then our work here is done.,John O'Bryan,Ethan Spaulding,7.8 +10852,10852,Fire,3,Nightmares and Daydreams,9,Scene Description,"Sokka, Katara, and Toph stretch and yawn before lying down. Aang slowly lies down, and closes his eyes, leading to another dream. It begins with a thunderstorm, with Aang riding on Appa through it. They fly by a giant Momo, who tries hitting them down, and grabs them in his hand. It changes to an image of the Fire Nation Royal Palace, and Aang emerges in the water, and is pushed forward into the palace. He looks in all directions, waiting for something to happen. Toph is seen rotating around. Her bangs move to reveal that her eyes are blank. She falls down under the floor in front of Aang, who becomes scared. Sokka tries running away, but some wet earth closes around him. Katara is seen surrounded by fire. Aang tries to go save her, but his feet are frozen to the ground. Ice crawls up his body, and he reaches out, but he's completely frozen. The ground that he was on becomes completely ice. Ozai, as a fire monster, begins laughing and melts the ice, which makes Aang fall down. He is released from his form and falls into some water, where he sinks to the bottom and looks through the floor, seeing Zuko as if he was standing above. The comet is seen passing by behind Zuko. Aang is seen still holding his breath. The comet is shown rushing down. Momo is seen telling someone to be quiet. Aang is standing on grass and seeing bushes and mountains when the comet strikes the ground, and everything is scorched and on fire. He quickly wakes up, screaming and waking everyone else up. Appa becomes scared, and Momo slides off him. Everyone rushes over to him.",NA,John O'Bryan,Ethan Spaulding,7.8 +10853,10853,Fire,3,Nightmares and Daydreams,9,Katara,"What happened, Aang?","What happened, Aang?",John O'Bryan,Ethan Spaulding,7.8 +10854,10854,Fire,3,Nightmares and Daydreams,9,Aang,[Turns away on hands and knees.] It's the nightmares. They just get worse and worse.,It's the nightmares. They just get worse and worse.,John O'Bryan,Ethan Spaulding,7.8 +10855,10855,Fire,3,Nightmares and Daydreams,9,Sokka,Looks like it's time for another ... [He turns around and puts his Wang Fire disguise on and voice.] therapy session.,Looks like it's time for another ... therapy session.,John O'Bryan,Ethan Spaulding,7.8 +10856,10856,Fire,3,Nightmares and Daydreams,9,Aang,[Momentarily looking back.] No. That won't help. Nothing helps. There's only one thing I can do! I'm going to stay awake straight through to the invasion!,No. That won't help. Nothing helps. There's only one thing I can do! I'm going to stay awake straight through to the invasion!,John O'Bryan,Ethan Spaulding,7.8 +10857,10857,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang starts shaking upon this, and everyone behind him is shocked, except for Toph, who just smiles. Sokka's Wang Fire disguise falls off him. The scene changes to the next day, where Katara is doing some exercises on the edge of the cliff. Aang is pacing nervously behind her, which makes her stop.",NA,John O'Bryan,Ethan Spaulding,7.8 +10858,10858,Fire,3,Nightmares and Daydreams,9,Aang,Invasion. All aboard for the invasion.,Invasion. All aboard for the invasion.,John O'Bryan,Ethan Spaulding,7.8 +10859,10859,Fire,3,Nightmares and Daydreams,9,Katara,[Approaching.] You don't look so good. You sure you can't just lie down for a little nap?,You don't look so good. You sure you can't just lie down for a little nap?,John O'Bryan,Ethan Spaulding,7.8 +10860,10860,Fire,3,Nightmares and Daydreams,9,Aang,"I told you, I can't go back to sleep.","I told you, I can't go back to sleep.",John O'Bryan,Ethan Spaulding,7.8 +10861,10861,Fire,3,Nightmares and Daydreams,9,Katara,"Aang, staying up all night can't be good for you.","Aang, staying up all night can't be good for you.",John O'Bryan,Ethan Spaulding,7.8 +10862,10862,Fire,3,Nightmares and Daydreams,9,Aang,"[Walking toward the cliff edge. Katara turns and moves a bit to follow.] Actually, staying up all night has given me some time to think. And I've realized some big things, Katara.","Actually, staying up all night has given me some time to think. And I've realized some big things, Katara.",John O'Bryan,Ethan Spaulding,7.8 +10863,10863,Fire,3,Nightmares and Daydreams,9,Katara,What big things?,What big things?,John O'Bryan,Ethan Spaulding,7.8 +10864,10864,Fire,3,Nightmares and Daydreams,9,Aang,"I see everything so clearly now. What really matters. Why I'm really doing this. [He turns around to look at Katara.] I'm doing it to save the world. But more than that. I'm doing it for the people I love. [Side shot of Aang and Katara near each other.] I'm doing it for you, Katara.","I see everything so clearly now. What really matters. Why I'm really doing this. I'm doing it to save the world. But more than that. I'm doing it for the people I love. I'm doing it for you, Katara.",John O'Bryan,Ethan Spaulding,7.8 +10865,10865,Fire,3,Nightmares and Daydreams,9,Katara,"Aang, what are you saying?","Aang, what are you saying?",John O'Bryan,Ethan Spaulding,7.8 +10866,10866,Fire,3,Nightmares and Daydreams,9,Aang,"I'm saying, I love you! [He kisses her. After he pulls back, she embraces and kisses him back.]","I'm saying, I love you!",John O'Bryan,Ethan Spaulding,7.8 +10867,10867,Fire,3,Nightmares and Daydreams,9,Katara,"[After kissing for a while she pulls back, whispering slightly.] What are we doing?",What are we doing?,John O'Bryan,Ethan Spaulding,7.8 +10868,10868,Fire,3,Nightmares and Daydreams,9,Aang,"What our hearts have been telling us to do for a long, long time. Baby, [He moves Katara down to the side.] you're my forever girl. [Aang puckers up his lips for another kiss.]","What our hearts have been telling us to do for a long, long time. Baby, you're my forever girl.",John O'Bryan,Ethan Spaulding,7.8 +10869,10869,Fire,3,Nightmares and Daydreams,9,Katara,"Aang! [Aang realizes he was just daydreaming, and realizes he is not holding Katara anymore.] I was just saying you should take a nap.",Aang! I was just saying you should take a nap.,John O'Bryan,Ethan Spaulding,7.8 +10870,10870,Fire,3,Nightmares and Daydreams,9,Aang,"[He quickly turns around to face Katara.] Oh, I guess I kinda drifted off into a daydream.","Oh, I guess I kinda drifted off into a daydream.",John O'Bryan,Ethan Spaulding,7.8 +10871,10871,Fire,3,Nightmares and Daydreams,9,Katara,What was your dream about?,What was your dream about?,John O'Bryan,Ethan Spaulding,7.8 +10872,10872,Fire,3,Nightmares and Daydreams,9,Aang,"[He pauses to think for a moment.] Uh, living underwater?","Uh, living underwater?",John O'Bryan,Ethan Spaulding,7.8 +10873,10873,Fire,3,Nightmares and Daydreams,9,Katara,"[Initially confused, she smiles back.] Sounds neat!",Sounds neat!,John O'Bryan,Ethan Spaulding,7.8 +10874,10874,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang nervously laughs. Katara walks away, and he lets out a sigh of relief. The scene changes back to Mai's house. Zuko is lying down on the arm of the couch, while Mai is making tea. Just as she is about to give him a cup, someone calls for him.",NA,John O'Bryan,Ethan Spaulding,7.8 +10875,10875,Fire,3,Nightmares and Daydreams,9,Servant,"Prince Zuko, [He bows before the prince.] everyone's waiting for you.","Prince Zuko, everyone's waiting for you.",John O'Bryan,Ethan Spaulding,7.8 +10876,10876,Fire,3,Nightmares and Daydreams,9,Scene Description,Mai and Zuko walk over to the servant to see what he's talking about.,NA,John O'Bryan,Ethan Spaulding,7.8 +10877,10877,Fire,3,Nightmares and Daydreams,9,Zuko,What?,What?,John O'Bryan,Ethan Spaulding,7.8 +10878,10878,Fire,3,Nightmares and Daydreams,9,Servant,"The high admirals, the high generals, the war ministers, and the princess have all arrived. You're the only person missing.","The high admirals, the high generals, the war ministers, and the princess have all arrived. You're the only person missing.",John O'Bryan,Ethan Spaulding,7.8 +10879,10879,Fire,3,Nightmares and Daydreams,9,Zuko,"So, my dad wants me at the meeting?","So, my dad wants me at the meeting?",John O'Bryan,Ethan Spaulding,7.8 +10880,10880,Fire,3,Nightmares and Daydreams,9,Servant,"The Fire Lord said he would not start until you arrived, sir.","The Fire Lord said he would not start until you arrived, sir.",John O'Bryan,Ethan Spaulding,7.8 +10881,10881,Fire,3,Nightmares and Daydreams,9,Scene Description,"Zuko smiles, and looks at Mai, who is also smiling. The scene changes back to the Black Cliffs, where Aang is hiding behind a bush in his Fire Nation uniform. He jumps out and rolls behind a rock, before stepping up from behind the rock.",NA,John O'Bryan,Ethan Spaulding,7.8 +10882,10882,Fire,3,Nightmares and Daydreams,9,Aang,"Put 'em up, Fire Lord!","Put 'em up, Fire Lord!",John O'Bryan,Ethan Spaulding,7.8 +10883,10883,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang jumps out from behind the rock and starts shooting air blasts at the noodle picture of Fire Lord Ozai tied to a tree. One of the shots goes too far and hits Sokka, who is working on a golden arrow.",NA,John O'Bryan,Ethan Spaulding,7.8 +10884,10884,Fire,3,Nightmares and Daydreams,9,Sokka,Hey! I'm tryin' build Appa some armor here so he doesn't have to go into the invasion naked. He's your bison.,Hey! I'm tryin' build Appa some armor here so he doesn't have to go into the invasion naked. He's your bison.,John O'Bryan,Ethan Spaulding,7.8 +10885,10885,Fire,3,Nightmares and Daydreams,9,Aang,"[Standing in front of the ""Ozai"" tree in a fighting stance.] Ozai's defense is impeccable. I'll have to try a different approach.",Ozai's defense is impeccable. I'll have to try a different approach.,John O'Bryan,Ethan Spaulding,7.8 +10886,10886,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang jumps up and shoots more air blasts, but they all miss. Aang lands on his feet and looks at the picture. Only a leaf falls. Aang runs up in front of the picture.",NA,John O'Bryan,Ethan Spaulding,7.8 +10887,10887,Fire,3,Nightmares and Daydreams,9,Aang,"You think you're untouchable, don't you, Mr. Fire Lord?","You think you're untouchable, don't you, Mr. Fire Lord?",John O'Bryan,Ethan Spaulding,7.8 +10888,10888,Fire,3,Nightmares and Daydreams,9,Momo,"[Off-screen.] Boy, you are really starting to lose it, kid.","Boy, you are really starting to lose it, kid.",John O'Bryan,Ethan Spaulding,7.8 +10889,10889,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang quickly becomes surprised upon hearing the voice, and quickly turns around to face Momo.",NA,John O'Bryan,Ethan Spaulding,7.8 +10890,10890,Fire,3,Nightmares and Daydreams,9,Aang,"Momo, did you hear something? [Turns back.]","Momo, did you hear something?",John O'Bryan,Ethan Spaulding,7.8 +10891,10891,Fire,3,Nightmares and Daydreams,9,Momo,"[Off-screen.] No, but I said something. [Aang becomes shocked and gets close to Momo.] You, my friend, are just a few plums short of a fruit pie. [Aang stares at Momo in disbelief, his jaw wide open. He quickly stands up, shakes his head, and covers his eyes. He peeks through them, at which point Momo begins chittering normally again. Aang walks up to him and pets him.]","No, but I said something. You, my friend, are just a few plums short of a fruit pie.",John O'Bryan,Ethan Spaulding,7.8 +10892,10892,Fire,3,Nightmares and Daydreams,9,Aang,"That's more like it. I'm so tired that for a second there, I imagined you were talking to me. [Momo tilts his head in confusion. Everyone is seen walking forward and watching Aang.] Oh, Momo, let me explain. [Aang begins chattering like Momo. Katara and Sokka share a look of confusion, as Toph merely stands there with a slightly annoyed look. Momo chitters back, in which Aang laughs before chittering again. Katara interrupts him.]","That's more like it. I'm so tired that for a second there, I imagined you were talking to me. Oh, Momo, let me explain.",John O'Bryan,Ethan Spaulding,7.8 +10893,10893,Fire,3,Nightmares and Daydreams,9,Katara,Aang? We're all starting to get a little worried about you.,Aang? We're all starting to get a little worried about you.,John O'Bryan,Ethan Spaulding,7.8 +10894,10894,Fire,3,Nightmares and Daydreams,9,Sokka,You've been awake too long.,You've been awake too long.,John O'Bryan,Ethan Spaulding,7.8 +10895,10895,Fire,3,Nightmares and Daydreams,9,Toph,And you're acting downright weird.,And you're acting downright weird.,John O'Bryan,Ethan Spaulding,7.8 +10896,10896,Fire,3,Nightmares and Daydreams,9,Appa,You've got to take care of yourself. You can't go on like this.,You've got to take care of yourself. You can't go on like this.,John O'Bryan,Ethan Spaulding,7.8 +10897,10897,Fire,3,Nightmares and Daydreams,9,Aang,"[Sighs.] Look, I appreciate what you guys are saying, but the stress and the nightmares. They were just too much. Staying awake is the best way for me to deal with it.","Look, I appreciate what you guys are saying, but the stress and the nightmares. They were just too much. Staying awake is the best way for me to deal with it.",John O'Bryan,Ethan Spaulding,7.8 +10898,10898,Fire,3,Nightmares and Daydreams,9,Momo,[Standing and pointing at Appa.] Yeah! Leave the kid alone!,Yeah! Leave the kid alone!,John O'Bryan,Ethan Spaulding,7.8 +10899,10899,Fire,3,Nightmares and Daydreams,9,Appa,"[Pointing back.] Hey, who asked you? [The two begin to fight.]","Hey, who asked you?",John O'Bryan,Ethan Spaulding,7.8 +10900,10900,Fire,3,Nightmares and Daydreams,9,Aang,"You guys, come on.","You guys, come on.",John O'Bryan,Ethan Spaulding,7.8 +10901,10901,Fire,3,Nightmares and Daydreams,9,Appa,No! I am sick of this guy always mouthing me and telling me what to do!,No! I am sick of this guy always mouthing me and telling me what to do!,John O'Bryan,Ethan Spaulding,7.8 +10902,10902,Fire,3,Nightmares and Daydreams,9,Momo,"Oh, you don't like it? Well, let's go right now!","Oh, you don't like it? Well, let's go right now!",John O'Bryan,Ethan Spaulding,7.8 +10903,10903,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang runs over to Sokka for help, not realizing that his friends don't see anything.",NA,John O'Bryan,Ethan Spaulding,7.8 +10904,10904,Fire,3,Nightmares and Daydreams,9,Aang,"Sokka, what do we do?","Sokka, what do we do?",John O'Bryan,Ethan Spaulding,7.8 +10905,10905,Fire,3,Nightmares and Daydreams,9,Sokka,[Confused.] About what?,About what?,John O'Bryan,Ethan Spaulding,7.8 +10906,10906,Fire,3,Nightmares and Daydreams,9,Aang,[Pointing.] About that!,About that!,John O'Bryan,Ethan Spaulding,7.8 +10907,10907,Fire,3,Nightmares and Daydreams,9,Scene Description,"Sokka looks in the direction Aang was pointing. Momo is seen in a purple samurai outfit with the fur between his ears tied in a topknot. Appa is seen with orange and dark red armor and a helmet, with three swords. Momo takes out his one sword, and the two charge at each other. Momo parries Appa's three swords with his single one. Some koala sheep start cheering on the two.",NA,John O'Bryan,Ethan Spaulding,7.8 +10908,10908,Fire,3,Nightmares and Daydreams,9,Koala sheep,[Cut to a group of koala sheep.] Appa! Appa! Appa! [Cut to another group.] Momo! Momo! Momo!,Appa! Appa! Appa! Momo! Momo! Momo!,John O'Bryan,Ethan Spaulding,7.8 +10909,10909,Fire,3,Nightmares and Daydreams,9,Scene Description,"Appa takes out another sword, and twists in a twister toward Momo, who blocks the attacks. Aang walks forward and tries stopping them.",NA,John O'Bryan,Ethan Spaulding,7.8 +10910,10910,Fire,3,Nightmares and Daydreams,9,Aang,"Come on, guys. We're all on the same side.","Come on, guys. We're all on the same side.",John O'Bryan,Ethan Spaulding,7.8 +10911,10911,Fire,3,Nightmares and Daydreams,9,Scene Description,"Guru Pathik appears on a cloud with six arms, holding two cups of onion and banana juice, and playing a veena.",NA,John O'Bryan,Ethan Spaulding,7.8 +10912,10912,Fire,3,Nightmares and Daydreams,9,Pathik,"[Singing.] Chakras, chakras, everybody loves chakras. Chakras, chakras, chakras sandwich tastes good. Yum!","Chakras, chakras, everybody loves chakras. Chakras, chakras, chakras sandwich tastes good. Yum!",John O'Bryan,Ethan Spaulding,7.8 +10913,10913,Fire,3,Nightmares and Daydreams,9,Scene Description,"Momo and Appa continue fighting. Momo keeps trying to strike Appa, but Appa keeps jumping away.",NA,John O'Bryan,Ethan Spaulding,7.8 +10914,10914,Fire,3,Nightmares and Daydreams,9,Koala sheep,[Cut to some koala sheep.] Yay! Yay! Yay! Yay! Yay!,Yay! Yay! Yay! Yay! Yay!,John O'Bryan,Ethan Spaulding,7.8 +10915,10915,Fire,3,Nightmares and Daydreams,9,Scene Description,"Aang begins sweating. Rocks, in a snake like formation, begin to slide in and around Aang, before sliding away. The koala sheep continue cheering on Momo and Appa. The tree with Ozai's noodle picture begins dancing. A ring of rocks surrounds Aang, as do the koala sheep. Three lines of rocks are seen on each side of Aang, as Momo and Appa continue to fight.",NA,John O'Bryan,Ethan Spaulding,7.8 +10916,10916,Fire,3,Nightmares and Daydreams,9,Aang,I just need to jump in a cold waterfall!,I just need to jump in a cold waterfall!,John O'Bryan,Ethan Spaulding,7.8 +10917,10917,Fire,3,Nightmares and Daydreams,9,Scene Description,"He screams and runs away from the scene. The scene changes to the Royal Palace, where Mai is waiting for Zuko after the meeting, who is exiting.",NA,John O'Bryan,Ethan Spaulding,7.8 +10918,10918,Fire,3,Nightmares and Daydreams,9,Mai,"So, how did it go? [They walk on together.]","So, how did it go?",John O'Bryan,Ethan Spaulding,7.8 +10919,10919,Fire,3,Nightmares and Daydreams,9,Zuko,"When I got to the meeting, everyone welcomed me. My father had saved me a seat. He wanted me next to him. I was literally at his right hand.","When I got to the meeting, everyone welcomed me. My father had saved me a seat. He wanted me next to him. I was literally at his right hand.",John O'Bryan,Ethan Spaulding,7.8 +10920,10920,Fire,3,Nightmares and Daydreams,9,Mai,"Zuko, that's wonderful! You must be happy.","Zuko, that's wonderful! You must be happy.",John O'Bryan,Ethan Spaulding,7.8 +10921,10921,Fire,3,Nightmares and Daydreams,9,Scene Description,The two stop at a picture of Ozai. Zuko gazes at it.,NA,John O'Bryan,Ethan Spaulding,7.8 +10922,10922,Fire,3,Nightmares and Daydreams,9,Zuko,"During the meeting, I was the perfect prince. The son my father wanted. [Looks down, eyes closed.] But I wasn't me.","During the meeting, I was the perfect prince. The son my father wanted. But I wasn't me.",John O'Bryan,Ethan Spaulding,7.8 +10923,10923,Fire,3,Nightmares and Daydreams,9,Scene Description,"Scene changes back to the Black Cliffs. It is nighttime, and Aang is tired. A mist of fog surrounds koala sheep wool. Aang looks at it and begins touching it.",NA,John O'Bryan,Ethan Spaulding,7.8 +10924,10924,Fire,3,Nightmares and Daydreams,9,Aang,"Oh, look. Another hallucination. An imaginary bed made out of clouds.","Oh, look. Another hallucination. An imaginary bed made out of clouds.",John O'Bryan,Ethan Spaulding,7.8 +10925,10925,Fire,3,Nightmares and Daydreams,9,Scene Description,"Pan right to see Katara, Toph, and Sokka standing nearby, with a flock of sheared koala sheep.",NA,John O'Bryan,Ethan Spaulding,7.8 +10926,10926,Fire,3,Nightmares and Daydreams,9,Toph,Hey! It's real! We spent hours working on it.,Hey! It's real! We spent hours working on it.,John O'Bryan,Ethan Spaulding,7.8 +10927,10927,Fire,3,Nightmares and Daydreams,9,Sokka,We made it for you. A good night's sleep will probably take the crazy away. We hope.,We made it for you. A good night's sleep will probably take the crazy away. We hope.,John O'Bryan,Ethan Spaulding,7.8 +10928,10928,Fire,3,Nightmares and Daydreams,9,Aang,"Look! You guys keep telling me that I need to sleep, but I can't! The invasion's tomorrow!","Look! You guys keep telling me that I need to sleep, but I can't! The invasion's tomorrow!",John O'Bryan,Ethan Spaulding,7.8 +10929,10929,Fire,3,Nightmares and Daydreams,9,Katara,[Concerned.] Aang ...,Aang ...,John O'Bryan,Ethan Spaulding,7.8 +10930,10930,Fire,3,Nightmares and Daydreams,9,Aang,"No, Katara! There's still so much I haven't learned. I don't need sleep. What I need is practice. Quick, hit me! [He begins to wobble.]","No, Katara! There's still so much I haven't learned. I don't need sleep. What I need is practice. Quick, hit me!",John O'Bryan,Ethan Spaulding,7.8 +10931,10931,Fire,3,Nightmares and Daydreams,9,Katara,I'm not going to hit you.,I'm not going to hit you.,John O'Bryan,Ethan Spaulding,7.8 +10932,10932,Fire,3,Nightmares and Daydreams,9,Toph,You want me to do it? [Sokka nudges her back.],You want me to do it?,John O'Bryan,Ethan Spaulding,7.8 +10933,10933,Fire,3,Nightmares and Daydreams,9,Katara,"[Approaching Aang, placing a hand on his shoulder.] Listen, you've been training for this since the day we met. [Moves behind him, talking over his shoulder.] I've seen your progress. You're smart, brave, and strong enough.","Listen, you've been training for this since the day we met. I've seen your progress. You're smart, brave, and strong enough.",John O'Bryan,Ethan Spaulding,7.8 +10934,10934,Fire,3,Nightmares and Daydreams,9,Aang,You really think so? [Katara nods.],You really think so?,John O'Bryan,Ethan Spaulding,7.8 +10935,10935,Fire,3,Nightmares and Daydreams,9,Sokka,We all do. You can do this. You're ready.,We all do. You can do this. You're ready.,John O'Bryan,Ethan Spaulding,7.8 +10936,10936,Fire,3,Nightmares and Daydreams,9,Toph,"You're the man, Twinkle Toes!","You're the man, Twinkle Toes!",John O'Bryan,Ethan Spaulding,7.8 +10937,10937,Fire,3,Nightmares and Daydreams,9,Aang,"Thanks, guys. [He nods, yawns, and rubs his eyes. Katara aids him to the bed, where he lies down.] You know what? I think I am ready. [The other three watch as he falls asleep quickly. He falls into another dream, meeting with Ozai again.] Your days of tyranny are over, Fire Lord!","Thanks, guys. You know what? I think I am ready. Your days of tyranny are over, Fire Lord!",John O'Bryan,Ethan Spaulding,7.8 +10938,10938,Fire,3,Nightmares and Daydreams,9,Ozai,Really? You're gonna take me out? You're not even wearing pants!,Really? You're gonna take me out? You're not even wearing pants!,John O'Bryan,Ethan Spaulding,7.8 +10939,10939,Fire,3,Nightmares and Daydreams,9,Aang,"[Smiles smugly.] No, Fire Lord Ozai. You're not wearing any pants.","No, Fire Lord Ozai. You're not wearing any pants.",John O'Bryan,Ethan Spaulding,7.8 +10940,10940,Fire,3,Nightmares and Daydreams,9,Scene Description,Ozai looks down and sees Aang is right. He quickly pulls over a shield with the Fire Nation emblem on it.,NA,John O'Bryan,Ethan Spaulding,7.8 +10941,10941,Fire,3,Nightmares and Daydreams,9,Ozai,No! My royal parts are showing.,No! My royal parts are showing.,John O'Bryan,Ethan Spaulding,7.8 +10942,10942,Fire,3,Nightmares and Daydreams,9,Scene Description,"The view goes outside, where it is seen that the palace is up on a rock in the sky. The scene fades back to the Black Cliffs with Ozai screaming to Aang, who is seen smiling upon his success in the dream. Fade to credits.",NA,John O'Bryan,Ethan Spaulding,7.8 +10943,10943,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The episode starts in the Black Cliffs, with the scene cutting to a shot of three maps lying splayed out on the ground. Cut to Sokka who ponders over the maps intensely. He closes his eyes and rubs his forehead, seemingly confused. Two gloved hands suddenly appear, one holding a cup and the other moving Sokka's hand aside from his forehead to hand him the cup. The hand comes to rest on his shoulders comfortingly. Cut to zoomed out shot of Sokka sitting by a cliff-edge, the maps laid out before him. Katara is kneeling right beside him, having been the one to hand him the cup. Toph can be seen in the background, sitting idly on a rock. Aang suddenly appears on-screen, leaping into the air and landing beside Toph.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10944,10944,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[Momo jumps onto his shoulder; cheerfully.] Top of the morning, Momo!","Top of the morning, Momo!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10945,10945,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,[Rises and places hands on hips.] Sounds like you slept well.,Sounds like you slept well.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10946,10946,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,[Moves his hand aside in a sweeping motion.] Like a baby moose lion. [Assumes a fighting stance and raises fists; exuberantly.] I'm ready to face the Fire Lord.,Like a baby moose lion. I'm ready to face the Fire Lord.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10947,10947,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,"So, what's your strategy for taking him down? [Smiling and raises her hands to her eyes, her fingers wiggling outward in a mimicry of the Avatar State.] Gonna get your glow on and [Punches the air with a determined expression on her face.] hit him with a little Avatar State action?","So, what's your strategy for taking him down? Gonna get your glow on and hit him with a little Avatar State action?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10948,10948,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[Looks down sorrowfully.] I can't. [Cut to side-view of him, the camera panning slightly to the left.] When Azula shot me with lightning, [Close his eyes briefly.] my seventh chakra was locked, cutting off my connection to all the cosmic energy in the universe. [Cut back to shot of him and Toph.]","I can't. When Azula shot me with lightning, my seventh chakra was locked, cutting off my connection to all the cosmic energy in the universe.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10949,10949,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,"You know what I just heard? [Holds up one hand and opens and closes it in a ""gibber-gabber"" expression.] Blah, blah, spiritual mumbo jumbo blah, blah, something about space. [Bored.]","You know what I just heard? Blah, blah, spiritual mumbo jumbo blah, blah, something about space.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10950,10950,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"[Cut to a wide shot of the ocean; thick fog is visible on the horizon.] Oh, no. [Cut to a shot of Katara, appearing concerned.] Sokka, do you think the fog will delay the invasion?","Oh, no. Sokka, do you think the fog will delay the invasion?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10951,10951,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"[Stands up.] No. [Cut to close-up of the fog, five Water Tribe ships suddenly appearing from amid the mist.] That is the invasion!",No. That is the invasion!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10952,10952,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Cut to shot of Hakoda standing on the deck of one ship, peering through a telescope; Bato stands in the background. Hakoda lowers the telescope and smiles confidently. Scene fades to shot of the shoreline where Aang and Toph stand in the background by the water. They utilize earthbending to raise rock from beneath the water and form a dock. Cut to overhead shot of the Black Cliffs to show four Water Tribe ships already docked. The last Water Tribe ship is seen coming into port. Cut to closer shot of one ship by the dock, Hakoda standing nearby. Katara and Sokka run over to him.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10953,10953,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"You made it, Dad! [Cut to shot of Katara embracing her father happily.]","You made it, Dad!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10954,10954,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,[Spirited.] Where you able to locate everyone I told you to find?,Where you able to locate everyone I told you to find?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10955,10955,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"I did. [Two members of the Foggy Swamp Tribe disembark. Doubtfully.] But I'm a little worried, Sokka. Some of these men aren't exactly the ""warrior type"". [Turns head slightly toward the two swamp dwellers.]","I did. But I'm a little worried, Sokka. Some of these men aren't exactly the ""warrior type"".",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10956,10956,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,Cut to frontal shot of Tho and Due as they descend the wooden ramp from the ship.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10957,10957,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Due,"[Enthusiastically, swinging his arm.] Oooh-whee! [Cut to shot of the two men standing on the dock.] This place ain't nothing like a swamp. [Points accusingly to a rock in the water.] What you reckon that is, Tho? Some sort of Fire Nation exploding trap what eat ya?","Oooh-whee! This place ain't nothing like a swamp. What you reckon that is, Tho? Some sort of Fire Nation exploding trap what eat ya?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10958,10958,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Tho,"[Impartial.] It's just a rock, Due.","It's just a rock, Due.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10959,10959,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Due,"[Grins.] Well, I'll be. [Scratching his head.]","Well, I'll be.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10960,10960,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Is it just me, or are those fellas a little loose in the leaf-hat?","Is it just me, or are those fellas a little loose in the leaf-hat?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10961,10961,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Bato,"[Walks past, behind the chief and his family, stopping beside Sokka.] I just wish they would wear pants.",I just wish they would wear pants.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10962,10962,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Huu,"[Cut to shot of Huu standing alone on the dock. Scratches his stomach.] Pants are an illusion, and so is death.","Pants are an illusion, and so is death.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10963,10963,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Cut to shot of the Hakoda, Katara, and Bato appearing less than reassured; Sokka, on the other hand, grins widely. Scene fades to far shot of Katara, Aang, Toph, and several Foggy Swamp members clustered by the shore, talking among themselves. A pair of legs appears on screen, boasting Earth Kingdom clothing. A voice speaks.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10964,10964,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Haru,"[Off-screen.] Hi, Katara. [Cut to close-up of the figure who reveals himself to be Haru; he smiles, now sporting a small mustache and goatee.]","Hi, Katara.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10965,10965,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,[Cut to zoomed out shot of Haru.] Haru! [Runs over and embraces him.] It's so good to see you!,Haru! It's so good to see you!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10966,10966,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[Appears on screen with Toph.] Toph, this is Haru. When we met him, his town was controlled by the Fire Nation. So he had to hide his earthbending.","Toph, this is Haru. When we met him, his town was controlled by the Fire Nation. So he had to hide his earthbending.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10967,10967,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Haru,[With Katara resting a hand on his shoulder.] Katara inspired me and my father to take back our village. [Turns to Katara who blushes and looks away.],Katara inspired me and my father to take back our village.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10968,10968,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Tyro,"[Tyro appears and lays his hands on Haru's and Katara's shoulders.] You helped us find our courage, Katara. [Katara turns to him.] Now we're here to help you.","You helped us find our courage, Katara. Now we're here to help you.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10969,10969,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,Toph suddenly senses someone on her left. She angrily turns and takes a fighting stance.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10970,10970,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,No way! Is that-,No way! Is that-,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10971,10971,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"She is lifted off the ground by two big arms. The camera shows that the arms actually belong to the Big Bad Hippo, a former competitor at Earth Rumble VI. He is joined by the Boulder, another former competitor. The Hippo hugs Toph.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10972,10972,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Big Bad Hippo,Hippo happy to see Blind Bandit!,Hippo happy to see Blind Bandit!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10973,10973,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,[Angrily.] You guys here for a rematch?,You guys here for a rematch?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10974,10974,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,The Boulder,"Negatory. The Boulder and The Hippo no longer fight for others' entertainment. Now, we fight for our kingdom!","Negatory. The Boulder and The Hippo no longer fight for others' entertainment. Now, we fight for our kingdom!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10975,10975,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,[Smiling.] Sweet.,Sweet.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10976,10976,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The camera cuts to Sokka, while The Hippo puts Toph down. He turns to his dad. Suddenly, a bomb explodes on a boat, making Sokka, Hakoda, and Aang run toward it. The mechanist appears from below deck, coughing. Teo leaves the boat, followed immediately by his father, and Pipsqueak carrying The Duke on his shoulder.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10977,10977,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,Was that a new invention?,Was that a new invention?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10978,10978,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Mechanist,"[Teo licking his fingers clean.] Yes, but unfortunately the incendiary capabilities of peanut sauce prove to be a failure.","Yes, but unfortunately the incendiary capabilities of peanut sauce prove to be a failure.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10979,10979,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,[The others seems disgusted.] You're making peanut sauce bombs?,You're making peanut sauce bombs?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10980,10980,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Pipsqueak,They're destructive.,They're destructive.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10981,10981,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,The Duke,"And delicious. [They both lick the sauce that splashed all over their faces. Momo flies over to Pipsqueak and starts licking his face, much to his and The Duke's amusement.]",And delicious.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10982,10982,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,Where you able to complete work on the plans I send you?,Where you able to complete work on the plans I send you?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10983,10983,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Mechanist,"Yes, I was, and I think the Fire Nation will be quite surprised.","Yes, I was, and I think the Fire Nation will be quite surprised.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10984,10984,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Teo,"Aang, my dad and I made this for you.","Aang, my dad and I made this for you.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10985,10985,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Hands a staff to Aang. Aang taps it on the ground and it opens, revealing a brand new glider.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10986,10986,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,A new glider! This is amazing!,A new glider! This is amazing!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10987,10987,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Mechanist,"And as a special feature, I added the snack compartment. [Rotates the handle, making the snacks come out.]","And as a special feature, I added the snack compartment.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10988,10988,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"Oh ... well, I'm sure that will come in handy.","Oh ... well, I'm sure that will come in handy.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10989,10989,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,The scene cuts to the Fire Nation prison where Iroh was sent to.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10990,10990,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Warden Poon,I bet you're tired of being in this cell old man. Well too bad. [Camera shows Iroh's face.] You're never stepping outside these walls again.,I bet you're tired of being in this cell old man. Well too bad. You're never stepping outside these walls again.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10991,10991,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Ming,[Enters.] Breakfast.,Breakfast.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10992,10992,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Warden Poon,"[Stands.] Careful, Ming, don't get too close. His stench will knock you right out. [Leaves, laughing.]","Careful, Ming, don't get too close. His stench will knock you right out.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10993,10993,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Ming,[Looks at Poon contemptuously and approaches Iroh.] I snuck in some white jade tea. I know you like rare teas.,I snuck in some white jade tea. I know you like rare teas.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10994,10994,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Iroh,"[Ming places the tray of tea inside Iroh's cell.] Thank you, Ming. Ever since I was put in here, you have been very kind to me.","Thank you, Ming. Ever since I was put in here, you have been very kind to me.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10995,10995,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,The scene cuts to show a very nervous Sokka standing on a podium with his father and Team Avatar,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +10996,10996,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Don't worry, you'll do great.","Don't worry, you'll do great.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10997,10997,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"Good morning everyone. Ahh! [Trips on stage.] Umm ... so, as you know, today, we're invading the Fire Nation! I mean I know you know that because otherwise why else would you be here? [Laughs nervously.] Uh anyway, [Dropping scrolls. Unraveling one on a board.] the Fire Lord's palace is here [Points at map, realizing it isn't the map, flips the chart several times until it is the map.]. Uh nope, uh wait, uh wait, uh wait, it's here, [Brief shot of Due scratching his head.] and uh, there's an eclipse today and Aang's gonna fight the Fire Lord and the firebenders won't have any fire to use so that's good for us! [Brief shot of Teo and the mechanist looking on.] And ... um ... I'm sorry let me start at the beginning [Stands up straight, and begins talking very fast.]. Katara and I discovered Aang frozen in an iceberg, now I didn't like Aang at first but grew to love him over time, then we went to the Southern Air Temple where Aang used to live and then we met Suki, [Water Tribe warrior yawns.] who's a Kyoshi warrior. She dressed me like a woman and then she kissed me, and then Aang's friend was a crazy old king and ...","Good morning everyone. Ahh! Umm ... so, as you know, today, we're invading the Fire Nation! I mean I know you know that because otherwise why else would you be here? Uh anyway, the Fire Lord's palace is here . Uh nope, uh wait, uh wait, uh wait, it's here, and uh, there's an eclipse today and Aang's gonna fight the Fire Lord and the firebenders won't have any fire to use so that's good for us! And ... um ... I'm sorry let me start at the beginning . Katara and I discovered Aang frozen in an iceberg, now I didn't like Aang at first but grew to love him over time, then we went to the Southern Air Temple where Aang used to live and then we met Suki, who's a Kyoshi warrior. She dressed me like a woman and then she kissed me, and then Aang's friend was a crazy old king and ...",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10998,10998,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"[Cut to Katara speaking over Sokka as he continues talking.] Wow, when he says the beginning he means the beginning beginning. [Hakoda gets up and approaches Sokka.]","Wow, when he says the beginning he means the beginning beginning.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +10999,10999,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,... And then Katara got Haru arrested and then now he's grown a mustache which if you look at him in the front row you can see it ...,... And then Katara got Haru arrested and then now he's grown a mustache which if you look at him in the front row you can see it ...,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11000,11000,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"[Interrupting.] Thank you, Sokka. It's okay why don't you take a break? [Sokka leaves the stage to sit down, disappointed in himself. Hakoda addresses the crowd.] Let me just clarify a few points for everyone. [Shot of Haru stroking his chin. Everyone pays attention to Hakoda.] Today, is the day of black sun, and I want to thank you all for your self-sacrifice, and your courage. There are two steps to the invasion, a naval stage, and then a land stage. [Shot of Sokka looking down, sad, Katara, Momo and Aang looking at Hakoda and Toph.] To gain sea access to the Fire Nation capital, we need to get past our first major obstacle here, [Points at map.] The Great Gates of Azulon. Next, we hit the land, and we hit hard. We must fight past their battlements and secure the plaza tower. Once we do that, it's up to the Royal Palace. At that point, the eclipse will begin.","Thank you, Sokka. It's okay why don't you take a break? Let me just clarify a few points for everyone. Today, is the day of black sun, and I want to thank you all for your self-sacrifice, and your courage. There are two steps to the invasion, a naval stage, and then a land stage. To gain sea access to the Fire Nation capital, we need to get past our first major obstacle here, The Great Gates of Azulon. Next, we hit the land, and we hit hard. We must fight past their battlements and secure the plaza tower. Once we do that, it's up to the Royal Palace. At that point, the eclipse will begin.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11001,11001,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,The Boulder,"Excuse me. The Boulder is confused. Isn't the point to invade during the eclipse, when the firebenders are powerless?","Excuse me. The Boulder is confused. Isn't the point to invade during the eclipse, when the firebenders are powerless?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11002,11002,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"The eclipse only lasts eight minutes, not enough time for the whole invasion. And the Royal Palace is heavily guarded by firebenders. So that's where we'll need the eclipse's advantage the most. When this is finished, the Avatar will have defeated the Fire Lord. We will have control of the Fire Nation capital, and this war will be over!","The eclipse only lasts eight minutes, not enough time for the whole invasion. And the Royal Palace is heavily guarded by firebenders. So that's where we'll need the eclipse's advantage the most. When this is finished, the Avatar will have defeated the Fire Lord. We will have control of the Fire Nation capital, and this war will be over!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11003,11003,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The entire crowd cheers, and Sokka looks dismayed.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11004,11004,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The scene cuts to show the team preparing for the upcoming battle. Katara is bending four streams of water into water skins, Toph is putting on her Blind Bandit battle armor, Hakoda is putting on a black Water Tribe helmet, Appa is shown fully dressed in his armor which Sokka made, and Aang is shaving his head to show his Air Nomad tattoos. He is joined by a koala sheep. The scene cuts again to the Fire Nation Palace. Zuko takes off his head piece and armor, revealing the clothes underneath it and letting his hair hang down. He sits and starts to write a letter. The camera cuts once again to show Sokka, still dismayed, standing on the cliff side and Aang flying up to him.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11005,11005,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,We've been looking everywhere for you. The boats are ready to leave.,We've been looking everywhere for you. The boats are ready to leave.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11006,11006,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"I messed up, Aang.","I messed up, Aang.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11007,11007,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,What?,What?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11008,11008,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,The invasion plan was my moment of truth and I completely flubbed it. I just fell apart.,The invasion plan was my moment of truth and I completely flubbed it. I just fell apart.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11009,11009,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[Approaches, putting a hand on his shoulder.] Sokka, that speech wasn't your moment of truth. That was just public speaking, and nobody's really good at that.","Sokka, that speech wasn't your moment of truth. That was just public speaking, and nobody's really good at that.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11010,11010,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"My dad is! He explained the plan perfectly and inspired everyone, like a real leader should.","My dad is! He explained the plan perfectly and inspired everyone, like a real leader should.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11011,11011,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"Look, your moment of truth isn't gonna be in front of some map; it's gonna be out there on the battlefield.","Look, your moment of truth isn't gonna be in front of some map; it's gonna be out there on the battlefield.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11012,11012,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"You seem so confident about everything, how do you know we're gonna win?","You seem so confident about everything, how do you know we're gonna win?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11013,11013,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,Because I already failed the world once at Ba Sing Se. I won't let myself fail again.,Because I already failed the world once at Ba Sing Se. I won't let myself fail again.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11014,11014,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,Camera cuts to show the fleet of ships traveling across the sea. Cut to a view through a Bato's telescope.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11015,11015,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"There they are, the Great Gates of Azulon.","There they are, the Great Gates of Azulon.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11016,11016,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,I don't see any gates.,I don't see any gates.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11017,11017,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,Cut to Katara and Hakoda's boat.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11018,11018,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Katara, you and the swamp benders whip up a fog cover.","Katara, you and the swamp benders whip up a fog cover.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11019,11019,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Tho,We'll sneak by them statues just like we sneak by that Fire Navy blockade!,We'll sneak by them statues just like we sneak by that Fire Navy blockade!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11020,11020,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Cut to show Katara, Due, and other swamp benders waterbending a thick fog cover.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11021,11021,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Keep it up, we're almost through!","Keep it up, we're almost through!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11022,11022,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,Suddenly a bell rings as a huge net rises out of the water and is set on fire. Sokka and the others are shocked to see patrol boats racing toward them,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11023,11023,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,Everyone below deck! [Everyone goes into the boats; to Sokka.] Let's hope your invention works.,Everyone below deck! Let's hope your invention works.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11024,11024,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Camera shows several Fire Nation soldiers climbing onto the boats. They are shown to search the boats thoroughly, but find no one.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11025,11025,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Male Fire Nation soldier,"No one's on board, sir.","No one's on board, sir.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11026,11026,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Female Fire Nation soldier,Where'd they go?,Where'd they go?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11027,11027,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Several submarines are shown traveling beneath the gates. Inside, waterbenders are moving the subs. Cut inside a sub as the mechanist is sitting at the front. Hakoda, Sokka, Pipsqueak, and Bato are standing behind him.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11028,11028,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"[Placing a hand on Sokka's shoulder.] You've really outdone yourself this time, son.","You've really outdone yourself this time, son.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11029,11029,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Cut to Toph, who is sitting on the floor behind them with the Duke. She is getting seasick.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11030,11030,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,"[Sarcastically.] Yeah, congratulations, Sokka. You managed to invent a worse way of travel than flying. [She holds her mouth, about to throw up.]","Yeah, congratulations, Sokka. You managed to invent a worse way of travel than flying.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11031,11031,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,The Duke,[Takes off his helmet and offers it to Toph.] Helmet?,Helmet?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11032,11032,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Toph accepts his offer and vomits into the helmet. The Duke just places his hand on Toph's back, trying to comfort her.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11033,11033,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"Well, I just came up with the idea. The mechanist did all the work.","Well, I just came up with the idea. The mechanist did all the work.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11034,11034,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Mechanist,"Now don't sell yourself short, my boy. [Cut briefly to Katara and Huu waterbending.] It was your idea to use waterbending to make the subs sink and float, brilliant! [Cuts back to the mechanist opening a scroll, revealing a very crude drawing of a submarine.] Though your original designs were a bit difficult to decipher. Unfortunately there is one problem I couldn't fix. [Cut to outside of submarine as the submarines swim past, along with Aang on Appa.] The subs have a limited air supply. Before we land on the beaches, we'll need to resurface.","Now don't sell yourself short, my boy. It was your idea to use waterbending to make the subs sink and float, brilliant! Though your original designs were a bit difficult to decipher. Unfortunately there is one problem I couldn't fix. The subs have a limited air supply. Before we land on the beaches, we'll need to resurface.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11035,11035,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,The scene cuts to show Ming coming back into Iroh's cell.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11036,11036,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Ming,"Lunchtime, General Iroh. [Whispers and looks back.] And this time, I brought you an extra bowl of rice.","Lunchtime, General Iroh. And this time, I brought you an extra bowl of rice.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11037,11037,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Iroh,"Thank you, Ming. Your little gestures of kindness have made my days in prison bearable. [Thinks for a moment and smiles.] I think you should take the rest of the day off.","Thank you, Ming. Your little gestures of kindness have made my days in prison bearable. I think you should take the rest of the day off.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11038,11038,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Ming,[Confused.] What?,What?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11039,11039,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Iroh,You don't look well. Maybe you should go home and rest.,You don't look well. Maybe you should go home and rest.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11040,11040,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Ming,"No, I feel fine.","No, I feel fine.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11041,11041,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Iroh,[Brief close-up of his face.] Trust me. It is better that you are not here this afternoon.,Trust me. It is better that you are not here this afternoon.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11042,11042,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Ming nods, indicating that she understands. She gets up and walks out. The scene cuts to show the fleet of submarines surfaced on the water. The Duke is dipping his helmet into the water, trying to wash out Toph's vomit. Everyone is stretching as Aang lands on the submarine from Appa.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11043,11043,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[To Toph, Sokka, and Katara, who approach him.] So, this is it huh?","So, this is it huh?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11044,11044,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,Are you ready for the Fire Nation to know the Avatar is alive?,Are you ready for the Fire Nation to know the Avatar is alive?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11045,11045,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,I'm ready. [Sokka and Aang shake hands and the group hugs.],I'm ready.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11046,11046,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Toph,"I hope you kick some serious Fire Lord butt, Twinkle Toes.","I hope you kick some serious Fire Lord butt, Twinkle Toes.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11047,11047,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Everyone listen up. [Team Avatar comes out of the hug.] The next time we resurface, it'll be on the beaches. So stay alert, and fight smart. Now break times over, back in the subs. [Sokka, Toph, and Momo leave Katara and Aang standing alone together.]","Everyone listen up. The next time we resurface, it'll be on the beaches. So stay alert, and fight smart. Now break times over, back in the subs.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11048,11048,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[Turning to see Katara.] Katara, I ...","Katara, I ...",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11049,11049,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"[Speaking at the same time.] Aang, I ...","Aang, I ...",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11050,11050,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,You go first.,You go first.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11051,11051,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"We've been through so many things together, and I've seen you grow up so much. You're not that little goofy kid I found in the iceberg anymore. [Aang blushes.] I guess what I'm trying to say is, I'm really proud of you.","We've been through so many things together, and I've seen you grow up so much. You're not that little goofy kid I found in the iceberg anymore. I guess what I'm trying to say is, I'm really proud of you.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11052,11052,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"Everything's gonna be different after today, isn't it.","Everything's gonna be different after today, isn't it.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11053,11053,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"Yes, it is.","Yes, it is.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11054,11054,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,What if ... what if I don't come back?,What if ... what if I don't come back?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11055,11055,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"Aang, don't say that, of course you'll- [Katara is cut off as Aang kisses her. After the kiss, Katara blushes and stares sadly after Aang as he confidently snaps his glider and flies away.]","Aang, don't say that, of course you'll-",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11056,11056,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"Katara, what are you doing? It's time to submerge.","Katara, what are you doing? It's time to submerge.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11057,11057,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"What? Right, I'm on it. [Jumps onto Appa and waterbends a sphere of water around his head before submerging.]","What? Right, I'm on it.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11058,11058,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,The scene cuts to show Zuko walking into Mai's room. He looks at a painting of them and becomes downcast.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11059,11059,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Zuko,I'm sorry Mai.,I'm sorry Mai.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11060,11060,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"He leaves a note on her bed and leaves. The scene cuts to show Aang flying over land. His stomach growls, and he rotates the handle of his glider to release food.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11061,11061,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,What do you know? It did come in handy.,What do you know? It did come in handy.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11062,11062,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The scene cuts to show the submarine fleet approaching land. The other end of a periscope emerges above water, looking around. Cut to inside the sub, Hakoda manning the periscope. Realizing where they are he turns around to address the earthbenders.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11063,11063,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Everyone in position. Earthbenders, into your tanks. This is gonna be a rough ride.","Everyone in position. Earthbenders, into your tanks. This is gonna be a rough ride.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11064,11064,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Toph and other earthbenders climb down a ladder in the sub and get ready. Cut to an overview of the Fire Nation port. An alarm goes off as the subs approach the gate. Several harpoons are launched at the subs, but most miss. One hits, causing a leak which is quickly sealed by a foggy swamp waterbender turning the water to ice, and pulls the attached sub out of the water. Katara quickly responds by piloting Appa out of the water and using waterbending to slice through the chain, dropping the sub back down.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11065,11065,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,Ready the torpedo. [An ice-covered torpedo is loaded.] Launch!,Ready the torpedo. Launch!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11066,11066,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Huu launches the torpedo with waterbending. Cut outside as six torpedoes make holes in the underwater barrier, making it possible for the subs to pass through.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11067,11067,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The scene cuts to show Toph, the Boulder, and other earthbenders standing in a metal tank. Cut to Water Tribe warriors and foggy swamp waterbenders with Sokka among them, he lets out a sigh. Cut to the subs rising from the water, being instantly attacked by missiles. The subs open and several tanks exit while the other soldiers yell and charge out. The battle commences as they make their way inland, destroying battlements as they go. Earthbenders use rocks provided by a truck containing many rocks. Appa arrives and Katara jumps off as Fire Nation tanks appear. Teo is seen inside an earthbender tank before it destroys a battlement by crushing it. Another tank lifts its front up to slam down and crush a Fire Nation tank. More Fire Nation tanks arrive as the army pushes on. The swamp benders use water provided to destroy enemy tanks.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11068,11068,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Tho,"We're a man down. Where in tarnation is Huu? [He and Due continue waterbending, launching a tank into the water.]",We're a man down. Where in tarnation is Huu?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11069,11069,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Suddenly a large seaweed monster is shown coming out of the water and destroys several enemy tanks, throwing one into a battlement on the ledge above.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11070,11070,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Due,[Waves.] Hey Huu! Where you been? [The seaweed opens to reveal Huu standing inside.],Hey Huu! Where you been?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11071,11071,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Huu,Communin' with nature. Takes a while to collect this much seaweed. [Closes the seaweed again as he sees a large fireball coming straight toward him.],Communin' with nature. Takes a while to collect this much seaweed.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11072,11072,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Several Fire Nation soldiers on rhinos appear shooting fireballs at a group of Water Tribe warriors. They charge, and Sokka quickly disarms one of the riders and steals his rhino.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11073,11073,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"Dad, look out!","Dad, look out!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11074,11074,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Hakoda grunts as he turns and deflects a fireball with his shield. He turns back to disarm a soldier and quickly defeats others before jumping on the rhino to join Sokka. The vehicle full of rocks for earthbenders is destroyed. Huu, inside the seaweed, is shown destroying more tanks. An earthbender tank is destroyed by a battlement above. Cut to Hakoda and Sokka who saw this happen.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11075,11075,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Sokka, we've gotta take out those battlements! It's our only chance.","Sokka, we've gotta take out those battlements! It's our only chance.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11076,11076,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,I've got an idea.,I've got an idea.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11077,11077,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Sokka, Hakoda, and Katara are shown riding a fully armored Appa. Sokka draws his sword and slices the end of a missile launcher off. As they fly past another, Hakoda throws two bombs inside the battlement. Cut to two soldiers running out as it explodes. Cut back to Appa as Katara breaks two barrels of water attached to either side of Appa as it forms around her arms. They fly past another battlement she freezes the soldier and launcher inside. Appa lands between two still operational battlements. The three jump off Appa.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11078,11078,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"You two take out that battlement. [Pointing to a battlement in the distance before leaving to another.] I got this one. Watch each other's backs. [Cut to Sokka and Katara, shown breaking into their battlement, Katara freezing the soldiers inside. Sokka uses his sword to cut through the launcher, causing part of it to fall out and explode outside as Katara and Sokka exit the battlement. They see Hakoda on the roof of his as he climbs inside. They hear noises from the ensuing fight until the launcher shoots and explodes, hearing Hakoda yelling out in pain. Cut to Sokka and Katara's worried faces as Hakoda exits, wounded, and falls to the ground.]",You two take out that battlement. I got this one. Watch each other's backs.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11079,11079,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,Dad?,Dad?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11080,11080,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,Dad! [The two run to his side.],Dad!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11081,11081,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,The camera cuts again to show Zuko kneeling at a painting of his mother.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11082,11082,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Zuko,"I know I've made some bad choices, but today, I'm gonna set things right. [He rises, picks up his sword, covers his head with the hood of his robe, turns his back to the camera and leaves.]","I know I've made some bad choices, but today, I'm gonna set things right.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11083,11083,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The scene cuts to show Appa landing on the edge of the battlefield. Sokka and Katara help Hakoda onto the ground, and Katara starts trying to heal him.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11084,11084,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"How does that feel, dad?","How does that feel, dad?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11085,11085,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Ah, a little, better. I need, to get back to the troops. [Attempts to stand but is too weak to.] Ahh!","Ah, a little, better. I need, to get back to the troops. Ahh!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11086,11086,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"You're hurt, badly. You can't fight anymore.","You're hurt, badly. You can't fight anymore.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11087,11087,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,"Everyone's counting on me to lead this mission Katara, I won't let them down. [Attempts to stand again but can't.] Ahh!","Everyone's counting on me to lead this mission Katara, I won't let them down. Ahh!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11088,11088,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,Can't you heal him any faster?,Can't you heal him any faster?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11089,11089,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,I'm doing everything I can.,I'm doing everything I can.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11090,11090,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,[Looks around before looking confidant.] I'll do it.,I'll do it.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11091,11091,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"No offense Sokka, but you're not exactly Mr. Healing Hands.","No offense Sokka, but you're not exactly Mr. Healing Hands.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11092,11092,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,No. [Stands confidently.] I'll lead the invasion force.,No. I'll lead the invasion force.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11093,11093,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,Don't be crazy Sokka.,Don't be crazy Sokka.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11094,11094,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"Maybe I am a little crazy, but the eclipse is about to start and we need to be up that volcano by the time it does.","Maybe I am a little crazy, but the eclipse is about to start and we need to be up that volcano by the time it does.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11095,11095,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Hakoda,You can do this. [Cuts to a close-up of him.] I'm proud of you son.,You can do this. I'm proud of you son.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11096,11096,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Katara,"I still think you're crazy, but I'm proud of you too.","I still think you're crazy, but I'm proud of you too.",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11097,11097,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"[Nods, puts his helmet on and boards Appa.] Yip yip.",Yip yip.,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11098,11098,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Appa flies away as the scene cuts to show the battlefield, a mess of Fire Nation tanks destroyed everywhere. Several raised battlements fire on the army below. Appa lands and takes out an enemy tank as Sokka makes his way to the back of the saddle to rally the soldiers.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11099,11099,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Sokka,"Listen up, everyone. I want the tanks in wedge formation. Warriors and benders in the middle. We're taking that tower, and heading for the royal palace. [All the tanks come together in wedge formation behind Appa, soldiers protected in the middle. Cut to Sokka, on Appa, who draws his sword and thrusts it forward.] Charge!","Listen up, everyone. I want the tanks in wedge formation. Warriors and benders in the middle. We're taking that tower, and heading for the royal palace. Charge!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11100,11100,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The scene cuts to show Aang standing on the edge of the volcano. He glides down to a building attempting to hide. He rises, confused, as there is nobody there.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11101,11101,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"[Looking around.] That's strange. [He continues onto the Royal Palace, breaks open the door, and takes a fighting stance.] The Avatar is back! [Realizing no one is around he relaxes, looking confused.] Hello? Anyone home?",That's strange. The Avatar is back! Hello? Anyone home?,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11102,11102,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"The scene cuts to the tanks, which are making their way up the volcano, unaffected by fire blasts from firebenders in front. Cut to Sokka steering a vehicle full of explosives into a wall before jumping off. Cut to an aerial view showing two explosions at the inner walls. Cut to Sokka, soldiers behind him, as they charge forward. Firebenders attempt to stop them but are pushed back. Cut to Tyro running in with the other troops as Bato appears behind him.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11103,11103,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Tyro,The Fire Nation is falling back!,The Fire Nation is falling back!,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11104,11104,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Bato,"Sokka, we're on our way to victory!","Sokka, we're on our way to victory!",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11105,11105,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,"Sokka looks ahead as the camera cuts to show Aang airbending his way into an empty, darkened throne room.",NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11106,11106,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Aang,"No. [Kneels down on the ground; frustrated.] No, no, no! Fire Lord Ozai, where are you!?","No. No, no, no! Fire Lord Ozai, where are you!?",Michael Dante DiMartino,Giancarlo Volpe,9.1 +11107,11107,Fire,3,"The Day of Black Sun, Part 1: The Invasion",10,Scene Description,Scene fades to credits.,NA,Michael Dante DiMartino,Giancarlo Volpe,9.1 +11108,11108,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The episode opens to the invasion of the Fire Nation where the moon can be seen gradually moving in front of the sun. Cuts to a shot of the submarines remaining stationery at the shores of the plaza. The camera pans upward, revealing the plaza empty except for Huu, disguised as the swamp monster, and several Foggy Swamp Tribe members. +Cuts to overhead shot of the plaza where the invasion carries on. The Fire Nation armies try to shoot the Earth Kingdom tanks, but they are too powerful. Earth Kingdom soldiers run about and fire boulders to counterattack the Fire Nation. A few earthbenders emerge briefly from within the Earth Kingdom tanks and hurl boulders toward the enemy. Cuts to shot of one soldier commanding catapults to launch smoldering boulders. Several fireballs are launched into the air. One lands forcefully near Sokka and a few troops who are huddled together behind a stationery Earth Kingdom tank, studying a map lying on the ground. Cuts to Sokka cringing at the sound of the explosion. Cuts to shot of Katara coming back with Hakoda, Sokka smiles at this sight.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11109,11109,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Brightening.] Dad! [Rising and approaching the two.] You're on your feet again.,Dad! You're on your feet again.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11110,11110,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"[Sitting down; somewhat weakly.] Thanks to your sister. I'm in no shape to fight, but maybe there's some way I can help.","Thanks to your sister. I'm in no shape to fight, but maybe there's some way I can help.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11111,11111,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,Everything's going smoothly and the eclipse hasn't even kicked in yet.,Everything's going smoothly and the eclipse hasn't even kicked in yet.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11112,11112,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"[Katara moves away, sensing something in the distance.] Let's hope our luck holds out. [Noticing her move away.] Katara, you seem distracted. Is something wrong?","Let's hope our luck holds out. Katara, you seem distracted. Is something wrong?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11113,11113,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,[Quizzically.] Yeah. Is that ... is that Aang?,Yeah. Is that ... is that Aang?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11114,11114,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"[Shocked.] What? [Cuts to shot of Aang riding in on his glider, dodging several fireballs. He lands in front of the group.] Please tell me you're here because the Fire Lord turned out to be a big wimp and you didn't even need the eclipse to take him down.",What? Please tell me you're here because the Fire Lord turned out to be a big wimp and you didn't even need the eclipse to take him down.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11115,11115,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Katara and Aang kneel with Sokka.] He wasn't home. No one was. The entire palace city is abandoned.,He wasn't home. No one was. The entire palace city is abandoned.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11116,11116,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[With epiphany; the camera shifts from a side-view of his face to a frontal view.] They knew.,They knew.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11117,11117,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,Cuts to overhead shot of the group sitting together in a circle. Aang rubs his fingers along the ground idly.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11118,11118,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Dismayed.] It's over. The Fire Lord is probably long-gone; far away on some remote island where he'll be safe during the eclipse.,It's over. The Fire Lord is probably long-gone; far away on some remote island where he'll be safe during the eclipse.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11119,11119,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Thoughtfully.] No. My instincts tell me he wouldn't go too far. He would have a secret bunker; somewhere he could go and be safe during the siege but still be close enough to lead his nation.,No. My instincts tell me he wouldn't go too far. He would have a secret bunker; somewhere he could go and be safe during the siege but still be close enough to lead his nation.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11120,11120,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,"If it's an underground secret bunker we're looking for, [Points to herself.] I'm just the girl to find it.","If it's an underground secret bunker we're looking for, I'm just the girl to find it.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11121,11121,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Pulling out mechanism.] The mechanist gave me this timing device. It looks like we've got about ten minutes until the full eclipse. Ten minutes to find the Fire Lord.,The mechanist gave me this timing device. It looks like we've got about ten minutes until the full eclipse. Ten minutes to find the Fire Lord.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11122,11122,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,We can still do this. We can still win the day.,We can still do this. We can still win the day.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11123,11123,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,[Worried.] Wait! If they knew we were coming it could all be a trap. [Looks at the others; the camera pans to the right.] Maybe we should use the time we have left to make sure we all get out of here safely.,Wait! If they knew we were coming it could all be a trap. Maybe we should use the time we have left to make sure we all get out of here safely.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11124,11124,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"Everyone who's here today came prepared to risk everything for this mission. They know what's at stake. If there's still a chance and there's still hope, I think they would want Aang to go for it.","Everyone who's here today came prepared to risk everything for this mission. They know what's at stake. If there's still a chance and there's still hope, I think they would want Aang to go for it.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11125,11125,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"[To Aang.] What do you think? You're the one that has to face the Fire Lord. Whatever you decide, I'm with you.","What do you think? You're the one that has to face the Fire Lord. Whatever you decide, I'm with you.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11126,11126,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,"[Rising, turning his back to the group, determined.] I've gotta try.",I've gotta try.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11127,11127,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The scene changes to where Aang, Toph, and Sokka are flying on Appa to the Caldera Volcano in the Fire Nation. Appa lands on the side as the others jump off.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11128,11128,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,Do you feel anything down there?,Do you feel anything down there?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11129,11129,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Placing her hand on the ground to feel vibrations.] Yep. There are natural tunnels criss-crossing through the inside of the volcano.,Yep. There are natural tunnels criss-crossing through the inside of the volcano.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11130,11130,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,Anything else? Is there a structure somewhere?,Anything else? Is there a structure somewhere?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11131,11131,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,"[Taking her hands and digging her fingers into the surface.] There is something big, dense and made of metal deep in the heart of the volcano.","There is something big, dense and made of metal deep in the heart of the volcano.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11132,11132,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Raises arms up in the background.] Sounds like a secret bunker to me.,Sounds like a secret bunker to me.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11133,11133,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Toph earthbends a hole in the volcano, blowing up a cloud of dust. Sokka follows her into the tunnel.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11134,11134,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[To Appa and Momo.] Stay safe. We'll be back soon.,Stay safe. We'll be back soon.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11135,11135,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"He enters the tunnel into a dark cavern, with Toph leaning over and surveying the area using seismic sense.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11136,11136,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Pointing.] This way! That one's a dead end!,This way! That one's a dead end!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11137,11137,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Following her.] What would we do without you?,What would we do without you?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11138,11138,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Camera view changes to show the group walking past magma channels.] Perish in burning hot magma.,Perish in burning hot magma.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11139,11139,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"[Observing the magma channels; blushing.] Yeah, pretty much.","Yeah, pretty much.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11140,11140,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,They arrive at a chamber where magma erupts from several spouts in the ground.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11141,11141,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,The tunnel continues on the other side and It leads right to the bunker.,The tunnel continues on the other side and It leads right to the bunker.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11142,11142,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"We'll have to be fast, but careful.","We'll have to be fast, but careful.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11143,11143,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"He begins walking past only for a geyser of magma to erupt, nearly striking him. Aang uses airbending to cool and solidify the gush.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11144,11144,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,How is that careful?,How is that careful?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11145,11145,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"I was wrong. We need to be fast, careful and lucky.","I was wrong. We need to be fast, careful and lucky.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11146,11146,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The three leap and run their way through the chamber, narrowly avoiding magma spouts. They arrive to a rock ledge, completely surrounded by molten lava.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11147,11147,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,There's no floor. It's just a river of lava.,There's no floor. It's just a river of lava.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11148,11148,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Spinning his staff open.] Climb aboard and hold on tight.,Climb aboard and hold on tight.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11149,11149,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Scene changes to where Sokka and Toph, screaming in fear, are clinging to Aang's glider for their life as they ride swiftly over the river of lava. They reach the other side safely and approach a large metal, dome-like structure with a huge door.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11150,11150,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Impressed.] That's some door!,That's some door!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11151,11151,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Walks over to the door and bangs the metal with her fist.] Not a problem.,Not a problem.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11152,11152,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"She uses metalbending, jamming into the door with her elbows, creating cracks in the metal. She steps back several feet, kisses her fingertips and splits the door wide open. Stepping inside the interior, she points in a direction.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11153,11153,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Entering the bunker while making some hand movements.] I am so glad we added you to the group!,I am so glad we added you to the group!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11154,11154,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Back at the invasion, the Fire Nation is beginning to fall back, unsuccessfully trying to deflect the attacks of the invasion force. The Boulder and The Hippo use earthbending to create landslides that collapse several battlements.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11155,11155,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Fire Nation Captain,[Witnessing the sun as the moon begins to overshadow it.] Retreat! Everyone move to the secondary defensive position! Retreat!,Retreat! Everyone move to the secondary defensive position! Retreat!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11156,11156,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The Fire Nation soldiers halt their attacks and begin escaping the scene.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11157,11157,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Bato,[Standing from the side of an Earth Kingdom tank.] The eclipse is only minutes away. We should be able to make it up to hill by the time it starts and secure the entire palace by the time it's finished.,The eclipse is only minutes away. We should be able to make it up to hill by the time it starts and secure the entire palace by the time it's finished.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11158,11158,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The troops cheer gruffly and continue on their way to the capital.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11159,11159,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,[Stopping with her father.] We can wait here if you want.,We can wait here if you want.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11160,11160,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,[Determined.] No. I wanna press forward with the others.,No. I wanna press forward with the others.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11161,11161,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The two resume walking. The scene changes to Aang, Toph and Sokka running down the tunnels. Qin is coming down the same hallway, whistling. The team, upon seeing him, immediately corners him, prepared to attack.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11162,11162,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Qin,"[Out of fear.] The Fire Lord's chamber is that way, down the hall, to the left, [Makes climbing motions with his fingers.] and up the stairs, you can't miss it!","The Fire Lord's chamber is that way, down the hall, to the left, and up the stairs, you can't miss it!",Aaron Ehasz,Joaquim Dos Santos,9.4 +11163,11163,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Suspicious look suddenly becomes friendly.] Thanks!,Thanks!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11164,11164,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The trio continues on their way to find the Fire Lord. Qin relaxes himself, does a few double takes, and continues whistling as if nothing happened before walking away. The group continues running; Sokka pulls out his timing device.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11165,11165,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,Only thirty seconds until the total eclipse.,Only thirty seconds until the total eclipse.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11166,11166,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The approach a set of large doors. The camera focuses on a determined Aang.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11167,11167,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,I'm ready. I'm ready to face the Fire Lord.,I'm ready. I'm ready to face the Fire Lord.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11168,11168,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,He blasts the doors down with airbending. They step inside where Azula is heard speaking.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11169,11169,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,"So, you are alive after all. [Aang stares at her in shock.] I had a hunch that you survived. But it doesn't matter. [Proudly.] I've known about the invasion for months.","So, you are alive after all. I had a hunch that you survived. But it doesn't matter. I've known about the invasion for months.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11170,11170,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The entire group looks at the princess in surprise and horror. Meanwhile, Zuko stands before a small metal door, a burning torch surrounding either side of it.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11171,11171,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,[To himself.] I'm ready to face you.,I'm ready to face you.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11172,11172,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"He opens the door, revealing Fire Lord Ozai sitting on the far side of the room, drinking tea. The Fire Lord is surrounded by several Royal Procession guards. He sets his teacup down upon seeing the prince.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11173,11173,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,Prince Zuko? What are you doing here?,Prince Zuko? What are you doing here?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11174,11174,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The scene switches to outside, showing the moon nearly blocking out the entire sun. Cut to aerial view of the inside of the volcano. Cut to the army marching onward as the eclipse is beginning. The mechanist appears near the troops and addresses the troops.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11175,11175,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Mechanist,The eclipse is starting! [Pulls out specialized eyewear and puts it on.] Put on your eclipse glasses!,The eclipse is starting! Put on your eclipse glasses!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11176,11176,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The warriors stop, prop their weapons into the ground and put on their eclipse glasses. Katara and Hakoda, wearing eclipse glasses, turn to watch the eclipse. The camera zooms out, the eclipse having officially begun. The scene changes to where Zuko is confronting Ozai.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11177,11177,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,Why are you here?,Why are you here?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11178,11178,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,I'm here to tell the truth.,I'm here to tell the truth.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11179,11179,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,[Off-camera.] Telling the truth during the middle of an eclipse. [Cuts to shot of him.] This should be interesting.,Telling the truth during the middle of an eclipse. This should be interesting.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11180,11180,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"He sends the guards out of the room. One by one the guards file out, closing the doors behind them.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11181,11181,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,"First of all, in Ba Sing Se, it was Azula who took down the Avatar, not me.","First of all, in Ba Sing Se, it was Azula who took down the Avatar, not me.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11182,11182,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,Why would she lie to me about that?,Why would she lie to me about that?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11183,11183,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,Because the Avatar's not dead. He survived.,Because the Avatar's not dead. He survived.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11184,11184,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,[Shocked and horrified.] What?,What?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11185,11185,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,"In fact, he's probably leading this invasion. He could be on his way here right now.","In fact, he's probably leading this invasion. He could be on his way here right now.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11186,11186,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,[Rises from his seat and points toward the door.] Get out! Get out of my sight right now if you know what's good for you!,Get out! Get out of my sight right now if you know what's good for you!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11187,11187,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,That's another thing. I'm not taking orders from you anymore.,That's another thing. I'm not taking orders from you anymore.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11188,11188,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"[Angrily.] You will obey me, or this defiant breath will be your last!","You will obey me, or this defiant breath will be your last!",Aaron Ehasz,Joaquim Dos Santos,9.4 +11189,11189,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,"[Pulls out his swords.] Think again. I am going to speak my mind, and you are going to listen.","Think again. I am going to speak my mind, and you are going to listen.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11190,11190,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Ozai sits down, dismayed at the turn of events. The scene switches to Aang, Sokka and Toph confronting Azula.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11191,11191,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,Where is he? Where's the Fire Lord?,Where is he? Where's the Fire Lord?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11192,11192,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Rises from throne.] You mean I'm not good enough for you? [Acts hurt.] You're hurting my feelings.,You mean I'm not good enough for you? You're hurting my feelings.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11193,11193,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"Stop wasting our time and give us the information. [Points sword at her.] You're powerless right now, so you're in no position to refuse.","Stop wasting our time and give us the information. You're powerless right now, so you're in no position to refuse.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11194,11194,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Appears on scene and clenches fist.] And stick to the truth. I'll be able to tell if you're lying.,And stick to the truth. I'll be able to tell if you're lying.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11195,11195,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Walking a few steps forward.] Are you sure? I'm a pretty good liar. [Pauses slightly.] I am a four-hundred foot tall purple platypus bear with pink horns and silver wings.,Are you sure? I'm a pretty good liar. I am a four-hundred foot tall purple platypus bear with pink horns and silver wings.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11196,11196,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,"[Cuts to Toph; short pause.] Okay, you're good, I admit it. [Traps Azula using earthbending.] But you ought to consider telling the truth anyway!","Okay, you're good, I admit it. But you ought to consider telling the truth anyway!",Aaron Ehasz,Joaquim Dos Santos,9.4 +11197,11197,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Without warning, the earth trap crumbles and breaks, leaving the trio surprised.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11198,11198,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Brushing off dust.] When I left Ba Sing Se I brought home some souvenirs: Dai Li agents!,When I left Ba Sing Se I brought home some souvenirs: Dai Li agents!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11199,11199,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Two Dai Li agents descend into the room. Aang sends an air swipe at them with his glider; however, the agents quickly conjure up an earth wall that blocks the attack. Cut to a view of the inside of the volcano. Cuts to Bato reaching the rim of the volcano, followed by the rest of the army.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11200,11200,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Bato,"Surround the periphery! [Raises spear.] We have to secure the palace by the time the eclipse is over! Otherwise, we'll be in for the fight of our lives.","Surround the periphery! We have to secure the palace by the time the eclipse is over! Otherwise, we'll be in for the fight of our lives.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11201,11201,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,Troops from the invasion force incur several Fire Nation soldiers.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11202,11202,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Tyro,Stop! Surrender peacefully and we won't harm you.,Stop! Surrender peacefully and we won't harm you.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11203,11203,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Fire Nation soldier,"We'll never surrender! [Makes frenzied motions and tries to firebend, but cannot.] Okay, we surrender. [Fire Nation soldiers back down.]","We'll never surrender! Okay, we surrender.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11204,11204,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Hakoda approaches the rim of the volcano, leaning on his daughter's shoulders.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11205,11205,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,[Happily.] There it is: the Fire Nation Royal Palace. We've come so far.,There it is: the Fire Nation Royal Palace. We've come so far.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11206,11206,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,[Doubtful.] It's not over yet.,It's not over yet.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11207,11207,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The scene changes to where Zuko is confronting Ozai.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11208,11208,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,"For so long, all I wanted was for you to love me, to accept me. I thought it was my honor I wanted, but really, I was just trying to please you. You, my father, who banished me just for talking out of turn. [Points a broadsword at his father.] My father, who challenged me, a thirteen-year-old boy, to an Agni Kai. [Cuts to shot of Ozai, looking angered.] How could you possibly justify a duel with a child?","For so long, all I wanted was for you to love me, to accept me. I thought it was my honor I wanted, but really, I was just trying to please you. You, my father, who banished me just for talking out of turn. My father, who challenged me, a thirteen-year-old boy, to an Agni Kai. How could you possibly justify a duel with a child?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11209,11209,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,[Scornful.] It was to teach you respect!,It was to teach you respect!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11210,11210,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,It was cruel! And it was wrong.,It was cruel! And it was wrong.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11211,11211,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,[Angrily.] Then you have learned nothing!,Then you have learned nothing!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11212,11212,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,"No, I've learned everything! And I've had to learn it on my own! Growing up, we were taught that the Fire Nation was the greatest civilization in history. And somehow, the War was our way of sharing our greatness with the rest of the world. What an amazing lie that was. The people of the world are terrified by the Fire Nation. They don't see our greatness. They hate us! And we deserve it! [Camera view shows top profile of Zuko and Ozai through an overhead grate.] We've created an era of fear in the world. And if we don't want the world to destroy itself [Cuts to shot of Zuko.], we need to replace it with an era of peace and kindness.","No, I've learned everything! And I've had to learn it on my own! Growing up, we were taught that the Fire Nation was the greatest civilization in history. And somehow, the War was our way of sharing our greatness with the rest of the world. What an amazing lie that was. The people of the world are terrified by the Fire Nation. They don't see our greatness. They hate us! And we deserve it! We've created an era of fear in the world. And if we don't want the world to destroy itself , we need to replace it with an era of peace and kindness.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11213,11213,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"[Laughs.] Your uncle has gotten to you, hasn't he?","Your uncle has gotten to you, hasn't he?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11214,11214,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,Yes. [Smiles proudly.] He has.,Yes. He has.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11215,11215,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Ozai only grows more furious. The scene changes to where Team Avatar is fighting Azula and her Dai Li agents. Aang bursts through the stone wall the agents had created and the team runs toward the Fire Nation princess. A stone column erupts from the surface, which Aang manages to dodge. Toph bends two stone slabs sending the agents toward the two sidewalls of the room. The agents each land on one sidewall and send two earth pillars straight at Toph, who conjures two earth walls to block their attacks. She proceeds to send a stream of earth at Azula, who nimbly back-flips onto the throne after being pushed back by the stream. She smirks as she lands. +Aang races toward her, an agent following close behind. He looks up to catch sight of the agent rocketing along a wall. The agent lands before him and builds up an earth wall which Aang breaks through. He sends an air blast at Azula, who manages to slip away as the blast destroys the throne. Aang attempts the knock her down by sending an air swipe, however, Azula avoids his attack, acutely leaping and flipping between two metal beams. She lands on the ground deftly and continues running away. +The camera focuses on the princess as she leaps from one metal beam to the other. Aang sends another air swipe at her only to miss her yet again. Azula slides down a stone pillar created earlier by a Dai Li agent. She flips onto one of the stone walls Toph conjured up to protect herself before and jumps onto the other one before landing on the ground again. She begins running toward a stone wall. A Dai Li agent slides down a stone column to the floor where he launches Azula into the air by bending an earth pillar below her feet. The camera cuts to Sokka, as he climbs his way through the hole in the stone wall. Played out in slow-motion, Azula is seen leaping through the wall, hovering mere inches over Sokka's face, smiling evilly at him as she passes. She lands onto the ground and begins running again. +Cuts to Sokka, who dodges again to avoid a Dai Li agent, Aang and Toph who each leap through the hole, one after the other. Sokka lands to the ground and follows the group. Cuts to where Aang and Toph are running side by side.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11216,11216,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[While running.] I can't pin her down! She's too quick!,I can't pin her down! She's too quick!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11217,11217,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Azula races through a door, entering a tunnel. A Dai Li agent follows close behind, earthbending a stone wall to block the entranceway. He proceeds to run after the princess. Aang bursts the wall and chases them. The Dai Li agent is suddenly pushed over by a stone column that jutted out from the side of tunnel's wall. A hole appears and Toph emerges from it. The agent lands into a crevice of a nearby metal beam and prepares to attack Toph only for the blind earthbender to destroy his rock gloves and metalbend the grooves of the beam together, trapping him. She and Aang continue chasing Azula. Sokka quickly runs up to them.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11218,11218,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Stops running.] Wait! Aang! Toph! Stop attacking! Don't you see what she's doing? She's just playing with us. She's not even trying to win this fight!,Wait! Aang! Toph! Stop attacking! Don't you see what she's doing? She's just playing with us. She's not even trying to win this fight!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11219,11219,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Calmly.] Not true. I'm giving it my all.,Not true. I'm giving it my all.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11220,11220,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Angrily.] You're trying to keep us here and waste all our time!,You're trying to keep us here and waste all our time!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11221,11221,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,"[Sarcastically.] Um, right, I think your friend just said that, genius. And since you can't see, I should tell you I'm rolling my eyes. [Rolls her eyes in disgust.]","Um, right, I think your friend just said that, genius. And since you can't see, I should tell you I'm rolling my eyes.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11222,11222,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,[Angrily.] I'll roll your whole head!,I'll roll your whole head!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11223,11223,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,She's just baiting you again.,She's just baiting you again.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11224,11224,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,"Okay, so what do we do, just ignore her?","Okay, so what do we do, just ignore her?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11225,11225,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,We don't have a choice. We just have to get out of here and find the Fire Lord on our own somehow.,We don't have a choice. We just have to get out of here and find the Fire Lord on our own somehow.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11226,11226,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The trio turns to leave, walking toward the opposite end of the tunnel.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11227,11227,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Coolly.] It's a trap. Don't say I didn't warn you.,It's a trap. Don't say I didn't warn you.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11228,11228,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Aang and Toph stop walking and turn to look at the princess, both appearing hesitant. Sokka continues to walk forward.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11229,11229,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Waves hand up in gesture.] Ignore!,Ignore!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11230,11230,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,"[Craftily.] So, Sokka's your name, right? My favorite prisoner used to mention you all the time. [Sokka stops walking and casts Azula a suspicious glance.] She was convinced you were going to come rescue her. Of course you never came, and she gave up on you.","So, Sokka's your name, right? My favorite prisoner used to mention you all the time. She was convinced you were going to come rescue her. Of course you never came, and she gave up on you.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11231,11231,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,Sokka sheds a few tears before charging at Azula in blind rage. The princess stands perfectly still.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11232,11232,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Evilly to herself.] Come and get it.,Come and get it.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11233,11233,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"With a quick motion of her left hand, she reveals a hidden dagger, prepared to strike Sokka when he comes within range. Toph senses the weapon and pins Azula's hand to the tunnel wall by sending a rock aimed at her wrist. Sokka grabs her by the shoulder, coming face-to-face with her.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11234,11234,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,Where. Is. Suki?!,Where. Is. Suki?!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11235,11235,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The scene changes to Zuko and Ozai.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11236,11236,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,"After I leave here today, I'm gonna free Uncle Iroh from his prison and I'm gonna beg for his forgiveness. [Cuts to shot of Ozai.] He's the one who's been a real father to me.","After I leave here today, I'm gonna free Uncle Iroh from his prison and I'm gonna beg for his forgiveness. He's the one who's been a real father to me.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11237,11237,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"[Laughs.] Oh, that's just beautiful. And maybe he can pass down to you the ways of tea and failure.","Oh, that's just beautiful. And maybe he can pass down to you the ways of tea and failure.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11238,11238,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,But I've come to an even more important decision. [Closes eyes and momentarily pauses.] I'm going to join the Avatar and I'm going to help him defeat you.,But I've come to an even more important decision. I'm going to join the Avatar and I'm going to help him defeat you.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11239,11239,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"[Smugly.] Really? Since you're a full-blown traitor now and you want me gone, why wait? I'm powerless. You've got your swords. Why don't you just do it now?","Really? Since you're a full-blown traitor now and you want me gone, why wait? I'm powerless. You've got your swords. Why don't you just do it now?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11240,11240,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,Because I know my own destiny. Taking you down is the Avatar's destiny. [Puts his swords away.] Goodbye.,Because I know my own destiny. Taking you down is the Avatar's destiny. Goodbye.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11241,11241,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"[Camera focuses on Zuko walking away, the Fire Lord in the background, now on his feet.] Coward! You think you're brave enough to face me, but you'll only do it during the eclipse. If you have any real courage, you'll stick around until the sun comes out. Don't you want to know what happened to your mother?","Coward! You think you're brave enough to face me, but you'll only do it during the eclipse. If you have any real courage, you'll stick around until the sun comes out. Don't you want to know what happened to your mother?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11242,11242,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,Zuko abruptly stops and turns to face his father. Ozai smiles. The camera cuts to a shot of outside where the solar eclipse continues. Cut back to Zuko confronting Ozai.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11243,11243,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,What happened that night?,What happened that night?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11244,11244,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"My father, Fire Lord Azulon, had commanded me to do the unthinkable to you, my own son, and I was going to do it. [Cuts to side-view of Zuko.] Your mother found out and swore she would protect you at any cost. [Camera focuses on Ozai.] She knew I wanted the throne and she proposed a plan, a plan in which I would become Fire Lord and your life would be spared.","My father, Fire Lord Azulon, had commanded me to do the unthinkable to you, my own son, and I was going to do it. Your mother found out and swore she would protect you at any cost. She knew I wanted the throne and she proposed a plan, a plan in which I would become Fire Lord and your life would be spared.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11245,11245,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Cuts to a close-up shot of Sokka, who narrows his eyes, angrily interrogating Azula.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11246,11246,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,Where's Suki? Answer me!,Where's Suki? Answer me!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11247,11247,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,"[Grabs Sokka's shoulder as camera pans slightly to the right.] Sokka, she won't talk.","Sokka, she won't talk.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11248,11248,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Ignores him.] Where are you keeping her?,Where are you keeping her?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11249,11249,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The camera focuses on Azula, who grins smugly, keeping her lips sealed. The shot fades to Ozai who continues his account of the night Ursa disappeared.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11250,11250,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,"Your mother did vicious, treasonous things that night. She knew the consequences and accepted them. For her treason, she was banished.","Your mother did vicious, treasonous things that night. She knew the consequences and accepted them. For her treason, she was banished.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11251,11251,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,[Grows teary-eyed.] So she's alive?,So she's alive?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11252,11252,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Ozai,[Calmly.] Perhaps. Now I realize that banishment is far too merciful a penalty for treason. [Ozai closes his eyes. Shot fades to outside where the solar eclipse begins to end.] Your penalty will be far steeper.,Perhaps. Now I realize that banishment is far too merciful a penalty for treason. Your penalty will be far steeper.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11253,11253,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Fade briefly to show the eclipse ending. Fade to Ozai as he opens his eyes and, in split seconds, generates lightning, firing the bolt at Zuko. Zuko slides back several feet from the impact of the bolt, yet manages to redirect it, sending it back to right in front of his father. The resulting explosion causes the Fire Lord to slam into the back wall, where he falls over and raises his head, his face distorted in rage as flames from the lightning attack surround him. The flag behind him falls and the camera cuts to a shot of the room, revealing that Zuko had made his escape. The scene changes to Team Avatar.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11254,11254,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,"Oh, sounds like the firebending's back on.","Oh, sounds like the firebending's back on.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11255,11255,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"She kicks her leg in a wide arc, sending a fire blast that nearly strikes Sokka. Sokka takes several steps back as he narrowly avoids Azula's attacks. She back-flips onto the tunnel wall and uses firebending to break free from Toph's earth cuffs. She flips forward, extending her leg forward, nearly striking Aang, who manages to dodge the incoming danger.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11256,11256,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,[Rises and smirks.] Dad's all the way at the end of the hall then down a secret stairway on the left. I'm sure he'd be more than happy to see you now.,Dad's all the way at the end of the hall then down a secret stairway on the left. I'm sure he'd be more than happy to see you now.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11257,11257,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"She runs away, leaving the trio dismayed.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11258,11258,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Ashamed.] I fell for it! I used up all our time.,I fell for it! I used up all our time.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11259,11259,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,"It's not your fault, Sokka. Azula was ready for us. She had every move planned out.","It's not your fault, Sokka. Azula was ready for us. She had every move planned out.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11260,11260,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Sorrowfully.] And now it's too late.,And now it's too late.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11261,11261,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,Maybe it's not too late. The eclipse is over. But I can face the Fire Lord anyway.,Maybe it's not too late. The eclipse is over. But I can face the Fire Lord anyway.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11262,11262,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Matter-of-factly.] No. I don't think that's a good idea.,No. I don't think that's a good idea.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11263,11263,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,But I'm ready! I came here with a job to do and everyone's counting on me.,But I'm ready! I came here with a job to do and everyone's counting on me.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11264,11264,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Toph,The Fire Lord knew we were coming this time. We thought we had surprise on our side but we didn't. It just wasn't our day. What we need to do now is go and help our friends.,The Fire Lord knew we were coming this time. We thought we had surprise on our side but we didn't. It just wasn't our day. What we need to do now is go and help our friends.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11265,11265,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Disappointed.] I guess you guys are right.,I guess you guys are right.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11266,11266,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Placing a hand on Aang's shoulder.] You'll have another chance. I know you will.,You'll have another chance. I know you will.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11267,11267,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The scene changes to outside where the Invasion force has ceased their attacks. Katara leans Hakoda against an Earth Kingdom tank.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11268,11268,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Bato,"What should we do, Hakoda? Shouldn't something have happened by now?","What should we do, Hakoda? Shouldn't something have happened by now?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11269,11269,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"I don't know. [Katara crosses her arms in scorn.] But now that the eclipse is over, I expect we're going to see some firebenders any minute.","I don't know. But now that the eclipse is over, I expect we're going to see some firebenders any minute.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11270,11270,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Bato looks up and suddenly becomes alarmed. The camera zooms out to Katara, who looks behind her in the same direction. Cuts to the top of the Royal Palace, where several war balloons rise into the air. Cuts to view of the entire palace, the battlefield where dozens of soldiers stand and where the war balloons continue to rise. Cuts to close-up of the balloons, Fire Nation soldiers fueling them with firebending.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11271,11271,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Mechanist,"[Off-camera.] My own invention. [Cuts to shot of him.] Oh, this is terrible!","My own invention. Oh, this is terrible!",Aaron Ehasz,Joaquim Dos Santos,9.4 +11272,11272,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Teo lays a hand on his father's shoulder to comfort him. Cuts to front shot of a war balloon, a much larger contraption rising behind it. Cuts to shot of the entire battlefield, showing the balloons and five airships rising into the air. Katara turns and points to the sky.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11273,11273,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,They're back!,They're back!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11274,11274,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Cut to Appa groaning as he flies in, Toph, Aang, Sokka, and Momo with him. Cuts to Aang looking at the airships. Shows shot of him and Sokka looking very dismayed at the turn of events. Cuts to an airship; camera pans to the right to reveal it entirely. Cuts to Katara running up to Appa who lands. Aang looks at her with a saddened look on his face as the camera pans to Sokka and Toph in the saddle.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11275,11275,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"[Getting off Appa.] It was all a trap! Azula knew we were coming and she's plotted out every move! [Toph gets off, too.] We've just got to get to the beach as fast as we can. [Hakoda approaches.] If we can make it to the submarines, maybe we can get away safely.","It was all a trap! Azula knew we were coming and she's plotted out every move! We've just got to get to the beach as fast as we can. If we can make it to the submarines, maybe we can get away safely.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11276,11276,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,"They've got air power, but so do I! [Cut to Aang as he opens his glider.] I'm gonna do what I can to slow them down. [He tosses his glider into the air and takes off, Momo following close behind.]","They've got air power, but so do I! I'm gonna do what I can to slow them down.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11277,11277,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,"Appa, you and I can help too. [Mounts Appa and follows Aang.]","Appa, you and I can help too.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11278,11278,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Shows front view of the airship fleet, Aang flying straight toward it, Katara coming up close behind. Cuts back to Sokka and the invasion force.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11279,11279,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"Everyone, let's get back to the subs! [Begins running.]","Everyone, let's get back to the subs!",Aaron Ehasz,Joaquim Dos Santos,9.4 +11280,11280,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Cuts back to Aang flying on his glider and Katara flying on Appa. Aang approaches a war balloon. One of the soldiers operating it sees him and fires at him. Aang twists around, dodging several fireballs. Cuts to side-view of him; he closes his glider and soars straight through the balloon, cutting through it. The balloon begins falling as it loses air. Katara approaches another balloon, swiveling around once and slicing it clean through with waterbending. The top portion of the balloon drifts upward while the rest falls downward. Cuts to where the team keeps heading toward the fleet, avoiding fireballs at every turn. Appa's armor is struck with fireballs several times; he grunts. Katara uses water shields to deflect the blasts.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11281,11281,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,We can't keep them all back! There's too many of them!,We can't keep them all back! There's too many of them!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11282,11282,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,Let's join the others! [Dodges another fireball.],Let's join the others!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11283,11283,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Cuts to shot of the capital as they fly away. The scene changes to the capital city prison; camera pans downward to the ground where Zuko is seen running toward the building. Inside, he runs down a hallway past a guard, who crouches in fear as he passes. He arrives at the entrance to his uncle's prison cell.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11284,11284,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Zuko,Uncle! [Zuko sees a big hole in Iroh's cell and sees Warden Poon on the ground; grabs a dazed Poon by the collar.] Where is my uncle?,Uncle! Where is my uncle?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11285,11285,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Warden Poon,"[Bewildered and terrified.] He's gone. He busted himself out. I've never seen anything like it, he was like a one-man army!","He's gone. He busted himself out. I've never seen anything like it, he was like a one-man army!",Aaron Ehasz,Joaquim Dos Santos,9.4 +11286,11286,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Zuko lets go of Poon and leaves. At the invasion, the team is navigating their way down the sides of the volcano. Cuts to view of the underside of an airship; a hatch at the bottom opens.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11287,11287,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,Try and find cover! I think we're about to see some bombs!,Try and find cover! I think we're about to see some bombs!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11288,11288,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Aang, Katara, and Appa are seen approaching in the distance. Toph bends a ceiling of earth overhead. Cuts to undersides of the airships as they release bombs. Cuts to overhead view of the invasion force as the bombs rain down and detonate. One bomb lands very near the earth ceiling, causing it to start crumbling. Toph props it up by bending two earth columns to support it. Cuts to view of the earthbending tanks, the soldiers being shaken about by the activity. The airships pass over. The team runs out from under the ceiling. Cuts to view of the Royal Plaza, the airships flying past.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11289,11289,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,Why aren't they turning around to attack us again?,Why aren't they turning around to attack us again?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11290,11290,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Thoughtfully.] They're heading for the beach ... [Alarmed.] They're gonna destroy the submarines!,They're heading for the beach ... They're gonna destroy the submarines!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11291,11291,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,[Hopelessly.] How are we all going to escape?,How are we all going to escape?,Aaron Ehasz,Joaquim Dos Santos,9.4 +11292,11292,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"[Approaching, helped by Bato.] We're not.",We're not.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11293,11293,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"[Looks determined.] Then our only choice is to stand and fight. We have the Avatar, we could still win.","Then our only choice is to stand and fight. We have the Avatar, we could still win.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11294,11294,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"Yes, with the Avatar we could still win. On another day. You kids have to leave. You have to escape on Appa together.","Yes, with the Avatar we could still win. On another day. You kids have to leave. You have to escape on Appa together.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11295,11295,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,[Surprised.] What? [Grabs Hakoda.] We can't leave you behind! [Looks at the rest of the invasion force.] We won't leave anyone behind!,What? We can't leave you behind! We won't leave anyone behind!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11296,11296,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,You're our only chance in the long run. You and Sokka have to go with Aang somewhere safe. [Katara looks back at Aang and Sokka sorrowfully.] It's the only way to keep hope alive.,You're our only chance in the long run. You and Sokka have to go with Aang somewhere safe. It's the only way to keep hope alive.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11297,11297,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Bato,"The youngest of our group should go with you. The adults will stay behind and surrender. We'll be prisoners, but we'll all survive this battle.","The youngest of our group should go with you. The adults will stay behind and surrender. We'll be prisoners, but we'll all survive this battle.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11298,11298,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Tyro,"[Approaching the two.] I've got some experience with the Fire Nation prisons. It's not going to be easy, but we'll get by.","I've got some experience with the Fire Nation prisons. It's not going to be easy, but we'll get by.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11299,11299,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"[Turning, alarmed.] They're at the beach already!",They're at the beach already!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11300,11300,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Cuts to the Royal Plaza, the shadows of the airships seen moving along the ground. Camera pans upward to the shore. Cuts to view of the swamp monster, airships flying directly overhead. Tho and Due attempt to deflect the bombs with waterbending; they manage to destroy some. The swamp monster grabs several more and tosses them away. One bomb, however, lands inside the seaweed figure and detonates. Steaming piles of seaweed land onto the ground. Huu, along with Tho and Due, emerge from the mess, defeated. Five bombs are released onto each of the submarines, destroying all five of them. The team looks on in disappointment. Sokka closes his eyes resentfully.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11301,11301,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Mechanist,"[Rising on an earth column along with Toph and helps son mount Appa.] Bye, son. [Hugs Teo.]","Bye, son.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11302,11302,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Teo,"Bye, Dad. I'm really proud of you.","Bye, Dad. I'm really proud of you.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11303,11303,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,The mechanist looks up at Teo as the earth column is lowered by Toph.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11304,11304,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,The Duke,"[Struggling to mount Appa.] I'll miss you, Pipsqueak.","I'll miss you, Pipsqueak.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11305,11305,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Pipsqueak,"[Propping The Duke onto the saddle.] Take care, The Duke.","Take care, The Duke.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11306,11306,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Haru,"[Hugs his father.] We'll be back for you, Dad.","We'll be back for you, Dad.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11307,11307,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Tyro,If we don't escape on our own first.,If we don't escape on our own first.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11308,11308,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,Haru bows respectfully to Tyro.,NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11309,11309,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Hakoda,"[Hands on both Sokka and Katara's shoulders.] We lost today, but we've never been this close. [Kneels down to face his two children.] We tasted victory, and that counts for something.","We lost today, but we've never been this close. We tasted victory, and that counts for something.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11310,11310,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Katara,"We'll miss you, Dad. [The two hug him.]","We'll miss you, Dad.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11311,11311,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Sokka,"Bye, Dad. We won't be apart for too long this time. I promise.","Bye, Dad. We won't be apart for too long this time. I promise.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11312,11312,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Cuts to shot of Hakoda embracing his children; he closes his eyes. Cuts to shot of Aang, sitting on Appa's head, tears streaming down his face. Katara approaches him, puts a hand around his shoulders and smiles at him proudly. Aang wipes away his tears and rises to face the invasion force.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11313,11313,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,Thank you all for being so brave and so strong. I'm gonna make this up to you.,Thank you all for being so brave and so strong. I'm gonna make this up to you.,Aaron Ehasz,Joaquim Dos Santos,9.4 +11314,11314,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"The team turns to leave on Appa. Appa moans and takes off as the team looks back sadly at those remaining. Cut to a view of those remaining watching them leave. Meanwhile, on a Fire Nation airship.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11315,11315,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Fire Nation soldier,"Should we follow them, princess?","Should we follow them, princess?",Aaron Ehasz,Joaquim Dos Santos,9.4 +11316,11316,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Azula,"No, they're too fast. It doesn't matter. They'll be back. [Smiles evilly.]","No, they're too fast. It doesn't matter. They'll be back.",Aaron Ehasz,Joaquim Dos Santos,9.4 +11317,11317,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Aang,[Looking at the airship in the distance then looks ahead.] I know just the place for us to go where we'll be safe for a while. The Western Air Temple!,I know just the place for us to go where we'll be safe for a while. The Western Air Temple!,Aaron Ehasz,Joaquim Dos Santos,9.4 +11318,11318,Fire,3,"The Day of Black Sun, Part 2: The Eclipse",11,Scene Description,"Appa flies away in the distance. A war balloon approaches from behind. Cuts to Zuko, a determined look on his face as he follows them. Fades to credits.",NA,Aaron Ehasz,Joaquim Dos Santos,9.4 +11319,11319,Fire,3,The Western Air Temple,12,Scene Description,"The episode begins with an aerial shot of Appa, still in his armor, and the rest of the gang, now including Haru, The Duke, and Teo, searching for the Western Air Temple on foot. Cut to Toph leading with Haru and Sokka behind. Cut to Aang, Momo on his head, walking next to Appa. Cut to Teo and The Duke. Cut to Katara, Sokka next to her.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11320,11320,Fire,3,The Western Air Temple,12,Katara,This is humiliating.,This is humiliating.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11321,11321,Fire,3,The Western Air Temple,12,Sokka,[Looking up at her.] You mean getting thoroughly spanked by the Fire Nation or having to walk all the way to the Western Air Temple?,You mean getting thoroughly spanked by the Fire Nation or having to walk all the way to the Western Air Temple?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11322,11322,Fire,3,The Western Air Temple,12,Katara,[Looking at him momentarily before answering.] Both.,Both.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11323,11323,Fire,3,The Western Air Temple,12,Scene Description,Cut to Aang.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11324,11324,Fire,3,The Western Air Temple,12,Aang,"[He pets Appa, smiling slightly.] Sorry guys, but Appa gets tired carrying all these people.","Sorry guys, but Appa gets tired carrying all these people.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11325,11325,Fire,3,The Western Air Temple,12,Scene Description,"Cut to a view of the whole team, Toph leading the way.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11326,11326,Fire,3,The Western Air Temple,12,Teo,I wonder how the rest of the troops are.,I wonder how the rest of the troops are.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11327,11327,Fire,3,The Western Air Temple,12,Haru,[Frontal view.] They're probably on their way to a prison. Seems like my dad just got out and now he's going back in.,They're probably on their way to a prison. Seems like my dad just got out and now he's going back in.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11328,11328,Fire,3,The Western Air Temple,12,Scene Description,Cut to view of The Duke walking next to Sokka.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11329,11329,Fire,3,The Western Air Temple,12,The Duke,I miss Pipsqueak.,I miss Pipsqueak.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11330,11330,Fire,3,The Western Air Temple,12,Sokka,I miss not having blisters on my feet.,I miss not having blisters on my feet.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11331,11331,Fire,3,The Western Air Temple,12,Scene Description,"Brief view of the team from behind before we see Toph's foot stamp down. Cut to Toph looking up, smiling.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11332,11332,Fire,3,The Western Air Temple,12,Toph,"Hey, we're here! I can feel it!","Hey, we're here! I can feel it!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11333,11333,Fire,3,The Western Air Temple,12,Scene Description,Cut to a wide panning shot of the surrounding area. A cliff edge in front of the gang.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11334,11334,Fire,3,The Western Air Temple,12,Katara,Uhhh ... I think your feet need their eyes checked.,Uhhh ... I think your feet need their eyes checked.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11335,11335,Fire,3,The Western Air Temple,12,Scene Description,Cut to Aang with Sokka behind.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11336,11336,Fire,3,The Western Air Temple,12,Aang,"No, she's right. We are here!","No, she's right. We are here!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11337,11337,Fire,3,The Western Air Temple,12,Scene Description,"Sokka looks around before shrugging. Cut to the front of the gang as the camera pans down, revealing the temple, hidden under the cliff.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11338,11338,Fire,3,The Western Air Temple,12,Toph,Wow ... it's amazing!,Wow ... it's amazing!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11339,11339,Fire,3,The Western Air Temple,12,Scene Description,"At another part of the temple, Zuko descends down a rope and swings back and forth twice before jumping down. When he lands on the ground, he has a flashback to three years ago, just after his banishment. Cut to a frontal shot of the cliff similar to the one Toph and the group were on earlier. Camera pans down to show the various natural structures through the mist of the temple.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11340,11340,Fire,3,The Western Air Temple,12,Iroh,What a stunning view.,What a stunning view.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11341,11341,Fire,3,The Western Air Temple,12,Scene Description,Cut to Zuko with covering over his fresh scar. Iroh stands behind him.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11342,11342,Fire,3,The Western Air Temple,12,Zuko,The only view I'm interested in seeing is the Avatar in chains.,The only view I'm interested in seeing is the Avatar in chains.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11343,11343,Fire,3,The Western Air Temple,12,Iroh,"You know, the Avatar hasn't been seen for one hundred years. The chances of finding him here are very slim. [Cut to a shot of Zuko's bandaged side.]","You know, the Avatar hasn't been seen for one hundred years. The chances of finding him here are very slim.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11344,11344,Fire,3,The Western Air Temple,12,Zuko,"[Determined.] First we'll check each of the air temples, then we'll scour the world, searching even the most remote locations until we find him.","First we'll check each of the air temples, then we'll scour the world, searching even the most remote locations until we find him.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11345,11345,Fire,3,The Western Air Temple,12,Iroh,"Prince Zuko, it's only been a week since your banishment. You should take some time to heal and rest.","Prince Zuko, it's only been a week since your banishment. You should take some time to heal and rest.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11346,11346,Fire,3,The Western Air Temple,12,Zuko,"What else would I expect to hear from the laziest man in the Fire Nation? [Iroh sighs.] The only way to regain my honor is to find the Avatar, so I will.","What else would I expect to hear from the laziest man in the Fire Nation? The only way to regain my honor is to find the Avatar, so I will.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11347,11347,Fire,3,The Western Air Temple,12,Scene Description,"Iroh walks away as the flashback ends, fading to Zuko who looks disappointed in himself. Zuko notices Appa flying nearby and hides quickly. He subsequently runs off. Cut back to Team Avatar.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11348,11348,Fire,3,The Western Air Temple,12,Teo,It's so different from the Northern Air Temple. I wonder if there are any secret rooms.,It's so different from the Northern Air Temple. I wonder if there are any secret rooms.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11349,11349,Fire,3,The Western Air Temple,12,Haru,[Running off to explore.] Let's go check it out!,Let's go check it out!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11350,11350,Fire,3,The Western Air Temple,12,Scene Description,"Teo and The Duke follow Haru. Aang tries to, but is cut off by Katara.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11351,11351,Fire,3,The Western Air Temple,12,Katara,You guys go. I think we need to talk about some things.,You guys go. I think we need to talk about some things.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11352,11352,Fire,3,The Western Air Temple,12,Teo,"I'll race you, Duke.","I'll race you, Duke.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11353,11353,Fire,3,The Western Air Temple,12,The Duke,"I told you, it's The Duke!","I told you, it's The Duke!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11354,11354,Fire,3,The Western Air Temple,12,Scene Description,The three head off. Cut to Katara and Aang.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11355,11355,Fire,3,The Western Air Temple,12,Aang,Why can't I go?,Why can't I go?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11356,11356,Fire,3,The Western Air Temple,12,Katara,"We need to decide what we're gonna do now, and since you're the Avatar, maybe you should be a part of this.","We need to decide what we're gonna do now, and since you're the Avatar, maybe you should be a part of this.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11357,11357,Fire,3,The Western Air Temple,12,Aang,"[Sitting down.] Fair enough. So, what's the new plan?","Fair enough. So, what's the new plan?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11358,11358,Fire,3,The Western Air Temple,12,Sokka,"Well, if you ask me, the new plan is the old plan! You just need to master all four elements and confront the Fire Lord before the comet comes.","Well, if you ask me, the new plan is the old plan! You just need to master all four elements and confront the Fire Lord before the comet comes.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11359,11359,Fire,3,The Western Air Temple,12,Aang,"[Sarcastically.] Oh, yeah. That's great, no problem. I'll just do that.","Oh, yeah. That's great, no problem. I'll just do that.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11360,11360,Fire,3,The Western Air Temple,12,Katara,"Aang, no one said it's going to be easy.","Aang, no one said it's going to be easy.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11361,11361,Fire,3,The Western Air Temple,12,Aang,"Well, it's not even gonna be possible! Where am I supposed to get a firebending teacher?","Well, it's not even gonna be possible! Where am I supposed to get a firebending teacher?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11362,11362,Fire,3,The Western Air Temple,12,Katara,We could look for Jeong Jeong!,We could look for Jeong Jeong!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11363,11363,Fire,3,The Western Air Temple,12,Aang,[Shooting her idea down.] Yeah ... right. [He lays down on the bench without a care.] Like we'll ever run into Jeong Jeong again.,Yeah ... right. Like we'll ever run into Jeong Jeong again.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11364,11364,Fire,3,The Western Air Temple,12,Toph,"[Curiously.] Who's ... oh, [She folds her arms irritably.] never mind. If it's important I'll find out.","Who's ... oh, never mind. If it's important I'll find out.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11365,11365,Fire,3,The Western Air Temple,12,Aang,"Oh well, guess we can't come up with anybody. Why don't we just take a nice tour around the temple? [He and Momo fly off.]","Oh well, guess we can't come up with anybody. Why don't we just take a nice tour around the temple?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11366,11366,Fire,3,The Western Air Temple,12,Toph,What's up with him?,What's up with him?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11367,11367,Fire,3,The Western Air Temple,12,Sokka,There's gotta be someone who can teach him firebending.,There's gotta be someone who can teach him firebending.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11368,11368,Fire,3,The Western Air Temple,12,Scene Description,Katara and Toph look down dejectedly as the camera slowly pans up and fades to a smiling Zuko in a forested area with his tent.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11369,11369,Fire,3,The Western Air Temple,12,Zuko,"Hello ... [Raises an arm in greeting.] Zuko here, but I guess [Rubs his hand against the back of his head nervously.] you probably already know me, sort of. Uhhh ... so, the thing is I have a lot of firebending experience, and I'm [Places an arm on his chest with pride.] considered to be pretty good at it. [He continues smiling.] Well, you've seen it, you know, when I was attacking you. [His eyes widen.] Uhhh ... yeah, I guess [Places his fingers against his forehead in embarrassment.] I should apologize for that. But anyway, [Waves an arm to the side dismissively.] I'm good now. [Clenches both fists and places one on his chest while the other arm is raised.] I mean, I thought I was good before, but I realize I was bad, [He gets visibly uncomfortable and drops his arms into a slouch.] but anyway, I think it's time I joined your group and taught [Straightens up with a sincere expression on his face.] the Avatar firebending. [A badgerfrog croaks at him. Angrily.] Well, what's your answer? [The badgerfrog hops on his head before hopping away.] Yeah ... that's what I'd say, too. How am I supposed to convince these people that I'm on their side? What would Uncle do? [Imitating Iroh.] Zuko, you have to look within yourself to save yourself from your other self. Only then will your true self, reveal itself. [Normal voice.] Even when I'm talking for him I can't figure out what he means. What would Azula do? [Imitating Azula.] Listen, Avatar, I can join your group, or I can do something unspeakably horrible to you and your friends. Your choice. [Normal voice. Stops and sits down.] I guess I'm just not that good at impersonations.","Hello ... Zuko here, but I guess you probably already know me, sort of. Uhhh ... so, the thing is I have a lot of firebending experience, and I'm considered to be pretty good at it. Well, you've seen it, you know, when I was attacking you. Uhhh ... yeah, I guess I should apologize for that. But anyway, I'm good now. I mean, I thought I was good before, but I realize I was bad, but anyway, I think it's time I joined your group and taught the Avatar firebending. Well, what's your answer? Yeah ... that's what I'd say, too. How am I supposed to convince these people that I'm on their side? What would Uncle do? Zuko, you have to look within yourself to save yourself from your other self. Only then will your true self, reveal itself. Even when I'm talking for him I can't figure out what he means. What would Azula do? Listen, Avatar, I can join your group, or I can do something unspeakably horrible to you and your friends. Your choice. I guess I'm just not that good at impersonations.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11370,11370,Fire,3,The Western Air Temple,12,Scene Description,"A badgerfrog jumps in front of him as he sits and croaks. Meanwhile, Aang is flying on his glider. Sokka, Katara, and Toph follow him on Appa.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11371,11371,Fire,3,The Western Air Temple,12,Katara,"Aang, can we talk about you learning firebending now?","Aang, can we talk about you learning firebending now?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11372,11372,Fire,3,The Western Air Temple,12,Aang,What? The wind is too loud in my ears! Check out this loop!,What? The wind is too loud in my ears! Check out this loop!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11373,11373,Fire,3,The Western Air Temple,12,Scene Description,Aang proceeds to do a loop.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11374,11374,Fire,3,The Western Air Temple,12,Sokka,"Aang, I think we should be making some plans about our future!","Aang, I think we should be making some plans about our future!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11375,11375,Fire,3,The Western Air Temple,12,Aang,"Okay, we can do that while I show you the giant Pai Sho table! Oh, you're gonna love the all-day echo chamber!","Okay, we can do that while I show you the giant Pai Sho table! Oh, you're gonna love the all-day echo chamber!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11376,11376,Fire,3,The Western Air Temple,12,Toph,[Cut to a close up of Toph as she turns serious.] I think that'll have to wait.,I think that'll have to wait.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11377,11377,Fire,3,The Western Air Temple,12,Scene Description,"Toph points behind herself, and the camera zooms out to show Team Avatar looking at her quizzically. Appa moves out of the way to reveal a shadow, and as the camera pans up, it is revealed to belong to Zuko. Cut to a close-up of the team as they look at him with shocked expressions, which subsequently turn into anger.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11378,11378,Fire,3,The Western Air Temple,12,Zuko,[Cut to a close up of Zuko's face.] Hello ... [Raises his arm up in greeting and waves.] Zuko here.,Hello ... Zuko here.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11379,11379,Fire,3,The Western Air Temple,12,Scene Description,The gang prepares to attack.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11380,11380,Fire,3,The Western Air Temple,12,Zuko,"Hey, I heard you guys flying around down there, so, I just thought I'd wait for you here. [Appa growls at him and licks him twice. Cut to a surprised Momo and Aang as he lowers his staff slightly.] I know you must be surprised to see me here.","Hey, I heard you guys flying around down there, so, I just thought I'd wait for you here. I know you must be surprised to see me here.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11381,11381,Fire,3,The Western Air Temple,12,Sokka,"Not really, since you've followed us all over the world.","Not really, since you've followed us all over the world.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11382,11382,Fire,3,The Western Air Temple,12,Zuko,"Right. Well, uhhh ... anyway ... what I wanted to tell you about is that I've changed, and I, uhhh, I'm good now, and well I think I should join your group, oh, and I can teach firebending to you. [The gang expresses shock.] See, I, uhhh ...","Right. Well, uhhh ... anyway ... what I wanted to tell you about is that I've changed, and I, uhhh, I'm good now, and well I think I should join your group, oh, and I can teach firebending to you. See, I, uhhh ...","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11383,11383,Fire,3,The Western Air Temple,12,Toph,You want to what now?,You want to what now?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11384,11384,Fire,3,The Western Air Temple,12,Katara,"You can't possibly think that any of us would trust you, can you? I mean, how stupid do you think we are?!","You can't possibly think that any of us would trust you, can you? I mean, how stupid do you think we are?!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11385,11385,Fire,3,The Western Air Temple,12,Sokka,"Yeah, all you've ever done is hunt us down and try to capture Aang!","Yeah, all you've ever done is hunt us down and try to capture Aang!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11386,11386,Fire,3,The Western Air Temple,12,Zuko,"I've done some good things! I mean, I could have stolen your bison in Ba Sing Se, but I set him free. That's something! [Appa licks him again, much to his surprise.]","I've done some good things! I mean, I could have stolen your bison in Ba Sing Se, but I set him free. That's something!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11387,11387,Fire,3,The Western Air Temple,12,Toph,Appa [The siblings turn toward her.] does seem to like him.,Appa does seem to like him.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11388,11388,Fire,3,The Western Air Temple,12,Sokka,He probably just covered himself in honey or something so that Appa would lick him. I'm not buying it.,He probably just covered himself in honey or something so that Appa would lick him. I'm not buying it.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11389,11389,Fire,3,The Western Air Temple,12,Zuko,"I can understand why you wouldn't trust me, and I know I've made some mistakes in the past.","I can understand why you wouldn't trust me, and I know I've made some mistakes in the past.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11390,11390,Fire,3,The Western Air Temple,12,Sokka,Like when you attacked our village?,Like when you attacked our village?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11391,11391,Fire,3,The Western Air Temple,12,Katara,Or when you stole my mother's necklace and used it to track us down and capture us?,Or when you stole my mother's necklace and used it to track us down and capture us?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11392,11392,Fire,3,The Western Air Temple,12,Zuko,"Look, I admit I've some awful things. I was wrong to try to capture you, and I'm sorry that I attacked the Water Tribe. And I never should have sent that Fire Nation assassin after you. [Toph and Sokka's eyes widen with shock.] I'm going to try and stop-","Look, I admit I've some awful things. I was wrong to try to capture you, and I'm sorry that I attacked the Water Tribe. And I never should have sent that Fire Nation assassin after you. I'm going to try and stop-","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11393,11393,Fire,3,The Western Air Temple,12,Sokka,"[Pulls out his boomerang; angrily.] Wait, you sent Combustion Man after us?","Wait, you sent Combustion Man after us?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11394,11394,Fire,3,The Western Air Temple,12,Zuko,"Well, that's not his name, but-","Well, that's not his name, but-","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11395,11395,Fire,3,The Western Air Temple,12,Sokka,"[Sarcastically.] Ohhh, sorry. I didn't mean to insult your friend!","Ohhh, sorry. I didn't mean to insult your friend!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11396,11396,Fire,3,The Western Air Temple,12,Zuko,[Angrily.] He's not my friend!,He's not my friend!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11397,11397,Fire,3,The Western Air Temple,12,Toph,That guy locked me and Katara in jail and tried to blow us all up!,That guy locked me and Katara in jail and tried to blow us all up!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11398,11398,Fire,3,The Western Air Temple,12,Zuko,[To Aang.] Why aren't you saying anything? You once said you thought we could be friends. You know I have good in me.,Why aren't you saying anything? You once said you thought we could be friends. You know I have good in me.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11399,11399,Fire,3,The Western Air Temple,12,Scene Description,"Aang turns to look at his friends, and Sokka shakes his head at Aang.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11400,11400,Fire,3,The Western Air Temple,12,Aang,There's no way we can trust you after everything you've done. We'll never let you join us.,There's no way we can trust you after everything you've done. We'll never let you join us.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11401,11401,Fire,3,The Western Air Temple,12,Katara,You need to get out of here. Now.,You need to get out of here. Now.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11402,11402,Fire,3,The Western Air Temple,12,Zuko,I'm trying to explain that I'm not that person anymore!,I'm trying to explain that I'm not that person anymore!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11403,11403,Fire,3,The Western Air Temple,12,Sokka,"Either you leave, or we attack.","Either you leave, or we attack.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11404,11404,Fire,3,The Western Air Temple,12,Zuko,"If you won't accept me as a friend, then maybe you'll take me as a prisoner. [Zuko kneels down, bends his head, and raises his arms in surrender.]","If you won't accept me as a friend, then maybe you'll take me as a prisoner.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11405,11405,Fire,3,The Western Air Temple,12,Katara,"No, we won't! [Blasts water at him.] Get out of here, and don't come back! And if we ever see you again, well, we'd better not see you again!","No, we won't! Get out of here, and don't come back! And if we ever see you again, well, we'd better not see you again!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11406,11406,Fire,3,The Western Air Temple,12,Scene Description,Zuko walks away. Cut back to Zuko's campsite.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11407,11407,Fire,3,The Western Air Temple,12,Zuko,"Uggh! I can't believe how stupid I am! I mean, what was I thinking? Telling them I sent an assassin after them? Why didn't I just say Azula did that? They would have believed that! Stupid! [A badgerfrog croaks at him.] Uggh!","Uggh! I can't believe how stupid I am! I mean, what was I thinking? Telling them I sent an assassin after them? Why didn't I just say Azula did that? They would have believed that! Stupid! Uggh!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11408,11408,Fire,3,The Western Air Temple,12,Scene Description,Back at the air temple.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11409,11409,Fire,3,The Western Air Temple,12,Katara,Why would he try to fool us like that?,Why would he try to fool us like that?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11410,11410,Fire,3,The Western Air Temple,12,Sokka,Obviously he wants to lead us into some kind of trap.,Obviously he wants to lead us into some kind of trap.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11411,11411,Fire,3,The Western Air Temple,12,Katara,This is just like when we were in prison together at Ba Sing Se. He starts talking about his mother and making it seem like he's an actual human being with feelings.,This is just like when we were in prison together at Ba Sing Se. He starts talking about his mother and making it seem like he's an actual human being with feelings.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11412,11412,Fire,3,The Western Air Temple,12,Sokka,"He wants you to trust and feel sorry for him so you let your guard down, then he strikes.","He wants you to trust and feel sorry for him so you let your guard down, then he strikes.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11413,11413,Fire,3,The Western Air Temple,12,Katara,"The thing is, it worked. I did feel sorry for him. I felt like he was really confused and hurt, but obviously, when the time came, he made his choice, and we paid the price. We can't trust him.","The thing is, it worked. I did feel sorry for him. I felt like he was really confused and hurt, but obviously, when the time came, he made his choice, and we paid the price. We can't trust him.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11414,11414,Fire,3,The Western Air Temple,12,Aang,I kind of have a confession to make. Remember when you two were sick and I got captured by Zhao?,I kind of have a confession to make. Remember when you two were sick and I got captured by Zhao?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11415,11415,Fire,3,The Western Air Temple,12,Sokka,And you made us suck on frozen frogs? How could I forget? I had a wart on the flap that hangs down from the back of my throat for a month!,And you made us suck on frozen frogs? How could I forget? I had a wart on the flap that hangs down from the back of my throat for a month!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11416,11416,Fire,3,The Western Air Temple,12,Katara,"Sokka, I looked at it, and I told you, there was nothing there!","Sokka, I looked at it, and I told you, there was nothing there!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11417,11417,Fire,3,The Western Air Temple,12,Sokka,I could feel it! It's my throatal flap!,I could feel it! It's my throatal flap!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11418,11418,Fire,3,The Western Air Temple,12,Aang,"Anyway, when Zhao had me chained up, it was Zuko who came in and got me out. He risked his life to save me.","Anyway, when Zhao had me chained up, it was Zuko who came in and got me out. He risked his life to save me.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11419,11419,Fire,3,The Western Air Temple,12,Katara,No way! I'm sure he only did it so he could capture you himself!,No way! I'm sure he only did it so he could capture you himself!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11420,11420,Fire,3,The Western Air Temple,12,Sokka,"Yeah, face it Aang, you're nothing but a big prize to him.","Yeah, face it Aang, you're nothing but a big prize to him.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11421,11421,Fire,3,The Western Air Temple,12,Aang,You're probably right.,You're probably right.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11422,11422,Fire,3,The Western Air Temple,12,Katara,And what was all that crazy stuff about setting Appa free? What a liar!,And what was all that crazy stuff about setting Appa free? What a liar!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11423,11423,Fire,3,The Western Air Temple,12,Toph,"Actually, he wasn't lying.","Actually, he wasn't lying.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11424,11424,Fire,3,The Western Air Temple,12,Sokka,"[Sarcastically.] Oh, hooray! In a lifetime of evil, at least he didn't add animal cruelty to the list.","Oh, hooray! In a lifetime of evil, at least he didn't add animal cruelty to the list.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11425,11425,Fire,3,The Western Air Temple,12,Toph,"I'm just saying that, considering his messed-up family and how he was raised, he could have turned out a lot worse.","I'm just saying that, considering his messed-up family and how he was raised, he could have turned out a lot worse.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11426,11426,Fire,3,The Western Air Temple,12,Katara,"[Sarcastically.] You're right, Toph! Let's go find him and give him a medal. The ""not as much of a jerk as you could have been"" award!","You're right, Toph! Let's go find him and give him a medal. The ""not as much of a jerk as you could have been"" award!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11427,11427,Fire,3,The Western Air Temple,12,Toph,"All I know is that while he was talking to us, he was sincere. Maybe you're all just letting your hurt feelings keep you from thinking clearly.","All I know is that while he was talking to us, he was sincere. Maybe you're all just letting your hurt feelings keep you from thinking clearly.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11428,11428,Fire,3,The Western Air Temple,12,Katara,Easy for you to say! You weren't there when he had us attacked by pirates!,Easy for you to say! You weren't there when he had us attacked by pirates!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11429,11429,Fire,3,The Western Air Temple,12,Sokka,Or when he burned down Kyoshi Island!,Or when he burned down Kyoshi Island!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11430,11430,Fire,3,The Western Air Temple,12,Aang,Or when he tried to capture me at the Fire Temple!,Or when he tried to capture me at the Fire Temple!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11431,11431,Fire,3,The Western Air Temple,12,Katara,Why would you even try to defend him?,Why would you even try to defend him?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11432,11432,Fire,3,The Western Air Temple,12,Toph,"[Angrily.] Because Katara, you're all ignoring one crucial fact: [Pokes Aang in the chest.] Aang needs a firebending teacher! We can't think of a single person in the world to do the job! Now one shows up on a silver platter, and you won't even think about it? [Stamps her feet on the ground to a point where the ground shakes slightly.]","Because Katara, you're all ignoring one crucial fact: Aang needs a firebending teacher! We can't think of a single person in the world to do the job! Now one shows up on a silver platter, and you won't even think about it?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11433,11433,Fire,3,The Western Air Temple,12,Aang,I'm not having Zuko as my teacher!,I'm not having Zuko as my teacher!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11434,11434,Fire,3,The Western Air Temple,12,Sokka,"You're darn right you're not, buddy.","You're darn right you're not, buddy.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11435,11435,Fire,3,The Western Air Temple,12,Katara,"Well, I guess that settles that.","Well, I guess that settles that.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11436,11436,Fire,3,The Western Air Temple,12,Toph,Ergh! I'm beginning to wonder who's really the blind one around here! [Walks away.],Ergh! I'm beginning to wonder who's really the blind one around here!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11437,11437,Fire,3,The Western Air Temple,12,Scene Description,Nightfall. Zuko's campsite. Zuko is asleep when he hears something.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11438,11438,Fire,3,The Western Air Temple,12,Zuko,Who's there? Stay back! [Whips fire.],Who's there? Stay back!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11439,11439,Fire,3,The Western Air Temple,12,Toph,"It's me! [Throws up an earth shield, but steps back into Zuko's fire blast.] Ow! You burned my feet!",It's me! Ow! You burned my feet!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11440,11440,Fire,3,The Western Air Temple,12,Zuko,"I'm sorry, it was a mistake! [Comes toward her, but she begins to crawl away.]","I'm sorry, it was a mistake!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11441,11441,Fire,3,The Western Air Temple,12,Toph,"Get away from me! [As Toph crawls away, she grabs the earth under her and throws it backward at Zuko.]",Get away from me!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11442,11442,Fire,3,The Western Air Temple,12,Zuko,Let me help you! [Dodges another rock.] I'm sorry! [Tries to grab her.],Let me help you! I'm sorry!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11443,11443,Fire,3,The Western Air Temple,12,Toph,"Get off me, get off me! [Brings up some earth which sends Zuko flying back.]","Get off me, get off me!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11444,11444,Fire,3,The Western Air Temple,12,Zuko,"I didn't know it was you! Uggh, come back! [Toph leaves.] Uggh! Why am I so bad at being good?","I didn't know it was you! Uggh, come back! Uggh! Why am I so bad at being good?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11445,11445,Fire,3,The Western Air Temple,12,Scene Description,"The next morning, Western Air Temple. Katara is serving everyone breakfast.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11446,11446,Fire,3,The Western Air Temple,12,Katara,[Handing a bowl to The Duke.] Has anyone seen Toph?,Has anyone seen Toph?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11447,11447,Fire,3,The Western Air Temple,12,Sokka,I haven't seen her since she stormed off yesterday.,I haven't seen her since she stormed off yesterday.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11448,11448,Fire,3,The Western Air Temple,12,Haru,Maybe she's just exploring the air temple. There are some pretty fun spots to practice earthbending.,Maybe she's just exploring the air temple. There are some pretty fun spots to practice earthbending.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11449,11449,Fire,3,The Western Air Temple,12,Katara,I think we should go look for her.,I think we should go look for her.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11450,11450,Fire,3,The Western Air Temple,12,Sokka,[Sitting.] Let her have fun with her rocks. I'm in no rush to have her yelling at us again.,Let her have fun with her rocks. I'm in no rush to have her yelling at us again.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11451,11451,Fire,3,The Western Air Temple,12,The Duke,We can go check for her!,We can go check for her!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11452,11452,Fire,3,The Western Air Temple,12,Teo,[Has a bandage around his forehead.] Yeah! I want to ride that tunnel down to the Hall of Statues again. It will work a lot better now that I fixed my brakes.,Yeah! I want to ride that tunnel down to the Hall of Statues again. It will work a lot better now that I fixed my brakes.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11453,11453,Fire,3,The Western Air Temple,12,Scene Description,"Haru, The Duke, and Teo exit.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11454,11454,Fire,3,The Western Air Temple,12,Scene Description,A large rumble occurs. Toph falls down the pile of rock that she created from a wall.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11455,11455,Fire,3,The Western Air Temple,12,Katara,"[Approaching, with Sokka and Aang. Worried.] Toph! What happened?",Toph! What happened?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11456,11456,Fire,3,The Western Air Temple,12,Toph,My feet got burned!,My feet got burned!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11457,11457,Fire,3,The Western Air Temple,12,Katara,"Oh no, what happened?","Oh no, what happened?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11458,11458,Fire,3,The Western Air Temple,12,Toph,"I just told you, my feet got burned!","I just told you, my feet got burned!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11459,11459,Fire,3,The Western Air Temple,12,Katara,"I meant, how.","I meant, how.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11460,11460,Fire,3,The Western Air Temple,12,Toph,"Well, I kind of went to see Zuko last night. [Everyone is shocked.]","Well, I kind of went to see Zuko last night.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11461,11461,Fire,3,The Western Air Temple,12,Aang,You what?,You what?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11462,11462,Fire,3,The Western Air Temple,12,Katara,Zuko?,Zuko?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11463,11463,Fire,3,The Western Air Temple,12,Sokka,Uhhh ...!,Uhhh ...!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11464,11464,Fire,3,The Western Air Temple,12,Toph,"I thought he could be helpful to us. [Katara begins to try and heal her feet.] And if I talked to him, maybe we could work something out.","I thought he could be helpful to us. And if I talked to him, maybe we could work something out.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11465,11465,Fire,3,The Western Air Temple,12,Sokka,So he attacked you?,So he attacked you?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11466,11466,Fire,3,The Western Air Temple,12,Toph,"Well, he did, and he didn't. It was sort of an accident.","Well, he did, and he didn't. It was sort of an accident.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11467,11467,Fire,3,The Western Air Temple,12,Aang,But he did firebend at you?,But he did firebend at you?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11468,11468,Fire,3,The Western Air Temple,12,Toph,[Sighs.] Yes.,Yes.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11469,11469,Fire,3,The Western Air Temple,12,Sokka,"See? You trusted Zuko, and you got burned. Literally!","See? You trusted Zuko, and you got burned. Literally!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11470,11470,Fire,3,The Western Air Temple,12,Katara,It's gonna take a while for your feet to get better. [Stops healing.] I wish I could have worked on them sooner.,It's gonna take a while for your feet to get better. I wish I could have worked on them sooner.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11471,11471,Fire,3,The Western Air Temple,12,Toph,"Yeah, me too.","Yeah, me too.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11472,11472,Fire,3,The Western Air Temple,12,Sokka,Zuko's clearly too dangerous to be left alone. We're gonna have to go after him.,Zuko's clearly too dangerous to be left alone. We're gonna have to go after him.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11473,11473,Fire,3,The Western Air Temple,12,Aang,"I hate to go looking for a fight, but you're right. After what he did to Toph, I don't think we have a choice.","I hate to go looking for a fight, but you're right. After what he did to Toph, I don't think we have a choice.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11474,11474,Fire,3,The Western Air Temple,12,Sokka,"He's crafty, but we'll find a way to capture him.","He's crafty, but we'll find a way to capture him.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11475,11475,Fire,3,The Western Air Temple,12,Toph,Maybe just invite him back here. [Aang and Sokka go to pick her up.] He's already offered himself up as a prisoner once.,Maybe just invite him back here. He's already offered himself up as a prisoner once.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11476,11476,Fire,3,The Western Air Temple,12,Sokka,"Yeah, get him to come back and say he'll be our prisoner, then we'll jump him and really make him our prisoner. He'll never suspect it! [Aang and Sokka carry Toph away.]","Yeah, get him to come back and say he'll be our prisoner, then we'll jump him and really make him our prisoner. He'll never suspect it!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11477,11477,Fire,3,The Western Air Temple,12,Katara,"[Following. Sarcastically.] You are a master of surprise, Sokka ...","You are a master of surprise, Sokka ...","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11478,11478,Fire,3,The Western Air Temple,12,Scene Description,Cut to Toph's feet as they are dipped into a fountain.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11479,11479,Fire,3,The Western Air Temple,12,Toph,"Ahhh, that's the stuff. Now I know how the rest of you guys feel. Not being able to see with your feet stinks. [Katara sits next to her putting a hand on her shoulder.]","Ahhh, that's the stuff. Now I know how the rest of you guys feel. Not being able to see with your feet stinks.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11480,11480,Fire,3,The Western Air Temple,12,Scene Description,"Meanwhile, Combustion Man eyes the gang from a higher elevation. He sets his sights on Aang. As he prepares to fire, however, Zuko jumps in and knocks him off-balance, causing his shot to be wild. Team Avatar make to run away before hearing Zuko.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11481,11481,Fire,3,The Western Air Temple,12,Zuko,"Stop! [Team Avatar turns their head up to the sound.] I don't want you hunting the Avatar anymore! [Cut to a quick close up of Aang looking up with shock as he is helping Sokka carry Toph. Cut back to Zuko as he stands in front of Combustion Man, arms spread out to block him.] The mission is off. I'm ordering you to stop.",Stop! I don't want you hunting the Avatar anymore! The mission is off. I'm ordering you to stop.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11482,11482,Fire,3,The Western Air Temple,12,Scene Description,Combustion Man shoves him away and attacks again.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11483,11483,Fire,3,The Western Air Temple,12,Zuko,"If you keep attacking, I won't pay you! [Attempts to firebend at him, but Combustion Man grabs him.] All right, I'll pay you double to stop!","If you keep attacking, I won't pay you! All right, I'll pay you double to stop!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11484,11484,Fire,3,The Western Air Temple,12,Scene Description,"Zuko kicks Combustion Man as he fires, causing him to miss again. He subsequently takes aim at Zuko. Zuko creates a firewall to stop the attack but is pushed off the ledge. Cut to a shot of Team Avatar looking over the edge of the fountain shocked. Cut to a shot from behind Combustion Man as he faces a small crater in the floor and the smoke that is dissipating. Cut to a shot of the edge of the ledge and strafe right, revealing climbing a vine hanging underneath it and Zuko survived by grabbing the plant's root. Cut to Combustion Man as he turns back. Cut to a close up of Aang as he stands up from behind the fountain pool and runs to the side. Cut to a shot of Aang doing a spinning back kick, airbending and kicking up the dust around him, and leaping straight up just as a blast from Combustion Man explodes beneath him. The camera turns up to Aang spinning in mid air, airbending a tornado and kicking it at Combustion Man. Combustion Man leaps over the tornado and fires another blast as he descends. Aang lands and quickly back flips away from the blast, landing next to Katara and Sokka. Cut to a shot of Combustion Man falling before switching to a shot of his metal, clawed hand as it catches on a small ledge and breaks it, slowing his fall. He lands on a new ledge and rolls, firing a blast just as he stops. Cut to a shot of Katara and Aang shielding themselves as the blast hits the fountain water. The camera follows Katara as she runs forward and bends the water from the pool. Cut to a far shot from the side as Katara bends a huge wave up between them and Combustion Man. Cut to a shot in front of the camera as she descends from jumping, bringing her arms down and crossing them and giving a battle cry. The wave matches her arm movements and icicles in both directions. Cut to a shot of Combustion Man as the icicles speed toward him. He brings his metal arm over his face and lifts his metal leg to shield him from the attack. The icicles break against him. Combustion Man flings his arms down to shake off the ice shards and steps forward, an angry frown on his face. Cut to his perspective as he scans the area. The group is nowhere to be seen. Aang fires a tornado, which the assassin jumps over and fires again. Aang narrowly avoids the blast by jumping back. Combustion man falls and lands on a ledge as he fires and misses again. Katara bends water from the fountain and turns it into ice spikes, but Combustion Man appears unaffected. The assassin looks up and realizes they have disappeared but continues firing. Cut to shot of the team hiding behind a wall, out of sight.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11485,11485,Fire,3,The Western Air Temple,12,Toph,He's going to blast this whole place right off the cliff side!,He's going to blast this whole place right off the cliff side!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11486,11486,Fire,3,The Western Air Temple,12,Scene Description,Katara looks out from behind the wall only to see another incoming blast.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11487,11487,Fire,3,The Western Air Temple,12,Katara,I can't step out to waterbend at him without being blown up and I can't get a good enough angle on him from down here.,I can't step out to waterbend at him without being blown up and I can't get a good enough angle on him from down here.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11488,11488,Fire,3,The Western Air Temple,12,Sokka,"[Pausing for a moment to think before having an idea.] I know how to get an angle on him! [Takes out his boomerang. After another blast, he sneaks his head out, but has to hide from another shot. He projects Combustion Man's angle with his boomerang.] All right buddy, don't fail me now! [Throws his boomerang.]","I know how to get an angle on him! All right buddy, don't fail me now!","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11489,11489,Fire,3,The Western Air Temple,12,Scene Description,"The boomerang hits the assassin in the head where his third eye tattoo is, causing him to hit the ground, before it returns back.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11490,11490,Fire,3,The Western Air Temple,12,Sokka,"Yeah, boomerang! [Jumps up and grabs it, but Combustion Man gets up, albeit clearly shaken.] Awww, boomerang ...","Yeah, boomerang! Awww, boomerang ...","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11491,11491,Fire,3,The Western Air Temple,12,Scene Description,"As the team runs back to their hiding spot, Combustion Man gears up again, but is dizzy and cannot aim properly. His next shot fails to escape, causing an explosion around him resulting in the building he stands on getting destroyed. Cut to his metal arm as it flies away from the explosion, followed by the falling building. The gang looks on, shocked. Haru, Teo, and The Duke all appear from behind a pillar also shocked.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11492,11492,Fire,3,The Western Air Temple,12,Scene Description,"Zuko climbs a plant root, having survived the ordeal. Later, Zuko again approaches the gang.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11493,11493,Fire,3,The Western Air Temple,12,Aang,"I can't believe I'm saying this, but ... thanks, Zuko.","I can't believe I'm saying this, but ... thanks, Zuko.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11494,11494,Fire,3,The Western Air Temple,12,Sokka,"Hey, what about me? I did the boomerang thing.","Hey, what about me? I did the boomerang thing.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11495,11495,Fire,3,The Western Air Temple,12,Zuko,"Listen, I know I didn't explain myself very well yesterday, I've been through a lot in the last few years, and it's been hard. But I'm realizing that I had to go through all those things to learn the truth. I thought I had lost my honor, and that somehow my father could return it to me. But I know now that no one can give you your honor. It's something you earn for yourself, by choosing to do what's right. All I want to do now is play my part in ending this war, and I know my destiny is to help you restore balance to the world. [To Toph.] I'm sorry for what I did to you. [Bows to her.] It was an accident. Fire can be dangerous and wild, so as a firebender, I need to be more careful and control my bending, so I don't hurt people unintentionally.","Listen, I know I didn't explain myself very well yesterday, I've been through a lot in the last few years, and it's been hard. But I'm realizing that I had to go through all those things to learn the truth. I thought I had lost my honor, and that somehow my father could return it to me. But I know now that no one can give you your honor. It's something you earn for yourself, by choosing to do what's right. All I want to do now is play my part in ending this war, and I know my destiny is to help you restore balance to the world. I'm sorry for what I did to you. It was an accident. Fire can be dangerous and wild, so as a firebender, I need to be more careful and control my bending, so I don't hurt people unintentionally.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11496,11496,Fire,3,The Western Air Temple,12,Aang,"[Looks at Zuko shocked, hearing these words, and thinks for a moment.] I think you are supposed to be my firebending teacher. When I first tried to learn firebending, I burned Katara, and after that, I never wanted to firebend again. But now I know you understand how easy it is to hurt the people you love. I'd like you to teach me. [Bows before Zuko.]","I think you are supposed to be my firebending teacher. When I first tried to learn firebending, I burned Katara, and after that, I never wanted to firebend again. But now I know you understand how easy it is to hurt the people you love. I'd like you to teach me.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11497,11497,Fire,3,The Western Air Temple,12,Zuko,[Bows.] Thank you. I'm so happy you've accepted me into your group.,Thank you. I'm so happy you've accepted me into your group.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11498,11498,Fire,3,The Western Air Temple,12,Aang,"Not so fast. I still have to ask my friends if it's okay with them. [To Toph.] Toph, you're the one that Zuko burned. What do you think?","Not so fast. I still have to ask my friends if it's okay with them. Toph, you're the one that Zuko burned. What do you think?","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11499,11499,Fire,3,The Western Air Temple,12,Toph,Go ahead and let him join. [Pounds her fist into her palm jokingly.] It'll give me plenty of time to get back at him for burning my feet.,Go ahead and let him join. It'll give me plenty of time to get back at him for burning my feet.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11500,11500,Fire,3,The Western Air Temple,12,Aang,[Turning to Sokka.] Sokka?,Sokka?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11501,11501,Fire,3,The Western Air Temple,12,Sokka,"[Shrugging.] Hey, all I want is to defeat the Fire Lord. If you think this is the way to do it, then, I'm all for it.","Hey, all I want is to defeat the Fire Lord. If you think this is the way to do it, then, I'm all for it.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11502,11502,Fire,3,The Western Air Temple,12,Aang,[Approaching Katara.] Katara?,Katara?,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11503,11503,Fire,3,The Western Air Temple,12,Katara,[Glares at Zuko for a moment and Zuko starts to sweat; reluctantly.] I'll go along with whatever you think is right. [Aang smiles.],I'll go along with whatever you think is right.,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11504,11504,Fire,3,The Western Air Temple,12,Zuko,[Excitedly approaching the group.] I won't let you down! I promise!,I won't let you down! I promise!,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11505,11505,Fire,3,The Western Air Temple,12,Scene Description,"Aang, Katara, and Sokka exit, the latter carrying Toph. Later, Sokka shows Zuko to his room.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11506,11506,Fire,3,The Western Air Temple,12,Sokka,"So, here you go, home sweet home, I guess, you know, for now. Unpack? Lunch, soon? Uhhh ... welcome aboard? [Zuko glances back and smiles at him.] Yeah. [Walks out of the room and meets Aang in the hallway; to Aang.] Okay, this is really, really weird.","So, here you go, home sweet home, I guess, you know, for now. Unpack? Lunch, soon? Uhhh ... welcome aboard? Yeah. Okay, this is really, really weird.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11507,11507,Fire,3,The Western Air Temple,12,Scene Description,The two exit. Cut to Zuko as he pulls out a painting of Iroh. He subsequently has another flashback to three years ago.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11508,11508,Fire,3,The Western Air Temple,12,Zuko,"If I have to, I will spend every day of the rest of my life hunting the Avatar. I know it's my destiny to capture him.","If I have to, I will spend every day of the rest of my life hunting the Avatar. I know it's my destiny to capture him.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11509,11509,Fire,3,The Western Air Temple,12,Iroh,"[Placing a hand on his shoulder.] You know Prince Zuko, destiny is a funny thing. You never know how things are going to work out. But if you keep an open mind, and an open heart, I promise you will find your own destiny someday.","You know Prince Zuko, destiny is a funny thing. You never know how things are going to work out. But if you keep an open mind, and an open heart, I promise you will find your own destiny someday.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11510,11510,Fire,3,The Western Air Temple,12,Scene Description,"Fade to Zuko in the present, smiling at the memory. Zuko suddenly notices a clearly disgruntled Katara at the door.",NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11511,11511,Fire,3,The Western Air Temple,12,Katara,"You might have everyone else here buying your ... transformation, but you and I both know you've struggled with doing the right thing in the past. [Approaches him; threateningly.] So let me tell you something, right now. You make one step backward, [Close-up of Zuko.] one slip-up, give me one reason to think you might hurt Aang, and you won't have to worry about your destiny anymore. [Close-up of Katara's angry face.] Because I'll make sure your destiny ends ... right then and there. Permanently.","You might have everyone else here buying your ... transformation, but you and I both know you've struggled with doing the right thing in the past. So let me tell you something, right now. You make one step backward, one slip-up, give me one reason to think you might hurt Aang, and you won't have to worry about your destiny anymore. Because I'll make sure your destiny ends ... right then and there. Permanently.","Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11512,11512,Fire,3,The Western Air Temple,12,Scene Description,She walks away and slams the door shut. Zuko slumps his shoulders.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11513,11513,Fire,3,The Western Air Temple,12,Scene Description,Fade to credits.,NA,"Elizabeth Welch Ehasz, Tim Hedrick",Ethan Spaulding,8.9 +11514,11514,Fire,3,The Firebending Masters,13,Scene Description,"The episode opens with a shot of the sky from the Western Air Temple, and the camera pans below to Zuko and Aang standing on the balcony of an upside down pagoda in the temple.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11515,11515,Fire,3,The Firebending Masters,13,Zuko,"I know you're nervous, but remember, firebending in it of itself is not something to fear.","I know you're nervous, but remember, firebending in it of itself is not something to fear.",John O'Bryan,Giancarlo Volpe,9.2 +11516,11516,Fire,3,The Firebending Masters,13,Aang,"[Cut to Aang, as he sighs heavily.] Okay. Not something to fear.",Okay. Not something to fear.,John O'Bryan,Giancarlo Volpe,9.2 +11517,11517,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko from behind Aang.] But if you don't respect it, [He raises his voice, as the camera zooms to a close-up of his face.] it'll chew you up and spit you out like an angry komodo rhino!","But if you don't respect it, it'll chew you up and spit you out like an angry komodo rhino!",John O'Bryan,Giancarlo Volpe,9.2 +11518,11518,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Aang's face, as he yelps in fear, before cutting back to Zuko.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11519,11519,Fire,3,The Firebending Masters,13,Zuko,Now show me what you've got. Any amount of fire you can make.,Now show me what you've got. Any amount of fire you can make.,John O'Bryan,Giancarlo Volpe,9.2 +11520,11520,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Aang, as he inhales nervously and tries to firebend. Cut to a close-up of his palm, as a small cloud of smoke appears, and is dissipated. Camera pans left to Aang.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11521,11521,Fire,3,The Firebending Masters,13,Aang,Maybe I need a little more instruction. Perhaps a demonstration?,Maybe I need a little more instruction. Perhaps a demonstration?,John O'Bryan,Giancarlo Volpe,9.2 +11522,11522,Fire,3,The Firebending Masters,13,Zuko,[Cut to an aerial shot of the both.] Good idea. You might wanna take a couple steps back.,Good idea. You might wanna take a couple steps back.,John O'Bryan,Giancarlo Volpe,9.2 +11523,11523,Fire,3,The Firebending Masters,13,Scene Description,"Aang walks back, and shot cuts to a close-up of Zuko's face, as he inhales deeply. Screen zooms back to show Zuko grunting, and cuts to his fist, which lets out a very small flame. Aang applauds at this display.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11524,11524,Fire,3,The Firebending Masters,13,Zuko,[Takes a step back.] What was that? That was the worst firebending I've ever seen!,What was that? That was the worst firebending I've ever seen!,John O'Bryan,Giancarlo Volpe,9.2 +11525,11525,Fire,3,The Firebending Masters,13,Aang,[Cut to Aang.] I thought it was ... nice. [Smiles slightly and shrugs.],I thought it was ... nice.,John O'Bryan,Giancarlo Volpe,9.2 +11526,11526,Fire,3,The Firebending Masters,13,Scene Description,"Zuko grunts again and tries firebending again, with all three attempts resulting in very small flames similar to the first. He grunts and looks at his palms.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11527,11527,Fire,3,The Firebending Masters,13,Zuko,[Frustrated.] Why is this happening?,Why is this happening?,John O'Bryan,Giancarlo Volpe,9.2 +11528,11528,Fire,3,The Firebending Masters,13,Aang,"[Rubbing his head, confused.] Maybe it's the altitude.",Maybe it's the altitude.,John O'Bryan,Giancarlo Volpe,9.2 +11529,11529,Fire,3,The Firebending Masters,13,Zuko,"[Turning back.] Yeah, could be.","Yeah, could be.",John O'Bryan,Giancarlo Volpe,9.2 +11530,11530,Fire,3,The Firebending Masters,13,Scene Description,"Scene changes to some pagodas and pans below to Aang sitting on a broken pillar and Zuko standing. Zuko attempts firebending, which results in a similar small flame again. He grunts and delivers another similar blast, as Aang yawns and lies down on the pillar.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11531,11531,Fire,3,The Firebending Masters,13,Zuko,"Just breathe, and ... [He delivers another blast with no improvement.]","Just breathe, and ...",John O'Bryan,Giancarlo Volpe,9.2 +11532,11532,Fire,3,The Firebending Masters,13,Aang,[Gets up.] That one kind of felt hot.,That one kind of felt hot.,John O'Bryan,Giancarlo Volpe,9.2 +11533,11533,Fire,3,The Firebending Masters,13,Zuko,[Very angry.] Don't patronize me! You know what it's supposed to look like!,Don't patronize me! You know what it's supposed to look like!,John O'Bryan,Giancarlo Volpe,9.2 +11534,11534,Fire,3,The Firebending Masters,13,Aang,"Sorry, Sifu Hotman.","Sorry, Sifu Hotman.",John O'Bryan,Giancarlo Volpe,9.2 +11535,11535,Fire,3,The Firebending Masters,13,Zuko,"[Raises his arms to his head, and throws them down back, and shouts in frustration, as Aang cringes.] And stop calling me that!",And stop calling me that!,John O'Bryan,Giancarlo Volpe,9.2 +11536,11536,Fire,3,The Firebending Masters,13,Scene Description,"Shot cuts to Sokka walking toward the teacher and his pupil, eating an apple. Sokka sits down near the two, as they turn their heads toward him.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11537,11537,Fire,3,The Firebending Masters,13,Sokka,"Hey, jerks! Mind if I watch you two jerks do your jerkbending?","Hey, jerks! Mind if I watch you two jerks do your jerkbending?",John O'Bryan,Giancarlo Volpe,9.2 +11538,11538,Fire,3,The Firebending Masters,13,Zuko,[Frustrated.] Get out of here! [He lashes his arm and points to a side.],Get out of here!,John O'Bryan,Giancarlo Volpe,9.2 +11539,11539,Fire,3,The Firebending Masters,13,Sokka,"Okay, take it easy. [He drops his half-eaten apple.] I was just kiddin' around. [He gets up and turns around, laughing as he adjusts his shirt.] Jerkbending, still got it. [Zuko drops his head, dejected, and moans.]","Okay, take it easy. I was just kiddin' around. Jerkbending, still got it.",John O'Bryan,Giancarlo Volpe,9.2 +11540,11540,Fire,3,The Firebending Masters,13,Scene Description,"Scene changes to an aerial shot of Appa resting near a fountain at night, and zooms to show him eating a small bale of hay. Screen pans to the right to show Zuko leaning on a column with his arms crossed, looking below and thinking deeply. He turns his head to the campfire where everyone is settled for dinner, and walks toward them.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11541,11541,Fire,3,The Firebending Masters,13,Zuko,"Listen everybody, I've got some pretty bad news. I've lost my stuff. [He looks below dejectedly.]","Listen everybody, I've got some pretty bad news. I've lost my stuff.",John O'Bryan,Giancarlo Volpe,9.2 +11542,11542,Fire,3,The Firebending Masters,13,Toph,"[Raises both hands to her head.] Don't look at me, [She folds her arms.] I didn't touch your stuff.","Don't look at me, I didn't touch your stuff.",John O'Bryan,Giancarlo Volpe,9.2 +11543,11543,Fire,3,The Firebending Masters,13,Zuko,I'm talking about my firebending. It's gone. [He looks below again.],I'm talking about my firebending. It's gone.,John O'Bryan,Giancarlo Volpe,9.2 +11544,11544,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Sokka, Haru, The Duke, and Teo looking at him, as the former Freedom Fighter sits up. Camera pans left, as Katara laughs, and everyone's attention is focused on her. Zuko looks at the waterbender with an annoyed expression.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11545,11545,Fire,3,The Firebending Masters,13,Katara,"I'm sorry. I'm just laughing at the irony. You know, how it would've been nice for us if you lost your firebending a long time ago.","I'm sorry. I'm just laughing at the irony. You know, how it would've been nice for us if you lost your firebending a long time ago.",John O'Bryan,Giancarlo Volpe,9.2 +11546,11546,Fire,3,The Firebending Masters,13,Zuko,"[Camera zooms back to show everyone sitting around the campfire and Zuko standing.] Well, it's not lost. It's just ... weaker for some reason.","Well, it's not lost. It's just ... weaker for some reason.",John O'Bryan,Giancarlo Volpe,9.2 +11547,11547,Fire,3,The Firebending Masters,13,Katara,[Holding up her bowl and glaring at Zuko.] Maybe you're not as good as you think you are.,Maybe you're not as good as you think you are.,John O'Bryan,Giancarlo Volpe,9.2 +11548,11548,Fire,3,The Firebending Masters,13,Toph,[Screen pans left to Toph.] Ouch. [She smiles sarcastically.],Ouch.,John O'Bryan,Giancarlo Volpe,9.2 +11549,11549,Fire,3,The Firebending Masters,13,Zuko,[With an idea.] I bet it's because I changed sides.,I bet it's because I changed sides.,John O'Bryan,Giancarlo Volpe,9.2 +11550,11550,Fire,3,The Firebending Masters,13,Katara,[Still holding her bowl.] That's ridiculous. [She drinks from the bowl.],That's ridiculous.,John O'Bryan,Giancarlo Volpe,9.2 +11551,11551,Fire,3,The Firebending Masters,13,Aang,I don't know. Maybe it isn't. Maybe your firebending comes from rage and you just don't have enough anger to fuel it the way you used to.,I don't know. Maybe it isn't. Maybe your firebending comes from rage and you just don't have enough anger to fuel it the way you used to.,John O'Bryan,Giancarlo Volpe,9.2 +11552,11552,Fire,3,The Firebending Masters,13,Sokka,"[Leans toward Zuko and points a finger above.] Sooo, all we need to do is make Zuko angry. Easy enough.","Sooo, all we need to do is make Zuko angry. Easy enough.",John O'Bryan,Giancarlo Volpe,9.2 +11553,11553,Fire,3,The Firebending Masters,13,Scene Description,"Sokka pokes Zuko with his sword's hilt in the head and waist several times, laughing.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11554,11554,Fire,3,The Firebending Masters,13,Zuko,"Okay, cut it out! [Sokka stops poking, as his sword slips from his hands and is thrown above, before falling on his head. Zuko rubs his nose.] Look, even if you're right, I don't want to rely on hate and anger anymore. There has to be another way.","Okay, cut it out! Look, even if you're right, I don't want to rely on hate and anger anymore. There has to be another way.",John O'Bryan,Giancarlo Volpe,9.2 +11555,11555,Fire,3,The Firebending Masters,13,Toph,"[Cut to Toph, as Sokka sits near her, and rubs his head.] You're gonna need to learn to draw your firebending from a different source. I recommend the original source. [Eats the food from her bowl.]",You're gonna need to learn to draw your firebending from a different source. I recommend the original source.,John O'Bryan,Giancarlo Volpe,9.2 +11556,11556,Fire,3,The Firebending Masters,13,Sokka,[Excited.] How's he supposed to do that? By jumping into a volcano?,How's he supposed to do that? By jumping into a volcano?,John O'Bryan,Giancarlo Volpe,9.2 +11557,11557,Fire,3,The Firebending Masters,13,Toph,No. Zuko needs to go back to whatever the original source of firebending is.,No. Zuko needs to go back to whatever the original source of firebending is.,John O'Bryan,Giancarlo Volpe,9.2 +11558,11558,Fire,3,The Firebending Masters,13,Sokka,"[Seriously.] So, is it jumping into a volcano?","So, is it jumping into a volcano?",John O'Bryan,Giancarlo Volpe,9.2 +11559,11559,Fire,3,The Firebending Masters,13,Toph,"I don't know. [Places her bowl down as the shot cuts to a close-up of her face.] For earthbending, the original benders were badgermoles.","I don't know. For earthbending, the original benders were badgermoles.",John O'Bryan,Giancarlo Volpe,9.2 +11560,11560,Fire,3,The Firebending Masters,13,Scene Description,"Scene changes to a cave in a flashback as a younger Toph wearing a gown is kneeling down, and crying, as screen zooms out.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11561,11561,Fire,3,The Firebending Masters,13,Toph,"[Voice-over.] One day, when I was little, I ran away and hid in a cave.","One day, when I was little, I ran away and hid in a cave.",John O'Bryan,Giancarlo Volpe,9.2 +11562,11562,Fire,3,The Firebending Masters,13,Scene Description,"Cut to the younger Toph's face, as she is startled by a rumbling noise, and part of the cave's wall breaks. Shot cuts to behind Toph to show one of a badgermole's legs.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11563,11563,Fire,3,The Firebending Masters,13,Toph,That's where I met them.,That's where I met them.,John O'Bryan,Giancarlo Volpe,9.2 +11564,11564,Fire,3,The Firebending Masters,13,Scene Description,"Toph cringes in fear, and the badgermole comes into the screen near Toph and sniffs her. Toph sniffs back and the badgermole licks her cheek, causing her to giggle in delight. She touches the badgermole's snout with both hands before licking it, and giggles again.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11565,11565,Fire,3,The Firebending Masters,13,Toph,"They were blind, just like me. [The badgermole walks away as Toph attempts to crawls after it.] So we understood each other. I was able to learn earthbending, [Cut to an overhead shot of the badgermole, which moves its paws in a sweeping motion.] not just as a martial art, but as an extension of my senses. [Screen fades to an overhead shot of Toph mimicking the creature's actions.] For them, the original earthbenders, [The badgermole comes across a pile of rocks and earthbends them to the side.] it wasn't just about fighting. It was their way of interacting with the world. [She stops crawling and stands up. She earthbends a stone and smiles at her success.]","They were blind, just like me. So we understood each other. I was able to learn earthbending, not just as a martial art, but as an extension of my senses. For them, the original earthbenders, it wasn't just about fighting. It was their way of interacting with the world.",John O'Bryan,Giancarlo Volpe,9.2 +11566,11566,Fire,3,The Firebending Masters,13,Scene Description,Screen fades from the younger Toph's face back to the present Toph's smiling face.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11567,11567,Fire,3,The Firebending Masters,13,Aang,"That's amazing, Toph!","That's amazing, Toph!",John O'Bryan,Giancarlo Volpe,9.2 +11568,11568,Fire,3,The Firebending Masters,13,Aang,"[Cut to an aerial shot of the group.] I learned from the monks, but the original airbenders were the sky bison. [Camera pans above to show a mural of three sky bison. Aang leans back to look at Appa.] Maybe you can give me a lesson sometime, buddy.","I learned from the monks, but the original airbenders were the sky bison. Maybe you can give me a lesson sometime, buddy.",John O'Bryan,Giancarlo Volpe,9.2 +11569,11569,Fire,3,The Firebending Masters,13,Scene Description,Appa growls from the shed.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11570,11570,Fire,3,The Firebending Masters,13,Zuko,"Well, this doesn't help me. The original firebenders were the dragons, and they're extinct.","Well, this doesn't help me. The original firebenders were the dragons, and they're extinct.",John O'Bryan,Giancarlo Volpe,9.2 +11571,11571,Fire,3,The Firebending Masters,13,Aang,"[Shot cuts to behind Zuko as he looks at the group.] What do you mean? Roku had a dragon, and there were plenty of dragons when I was a kid.","What do you mean? Roku had a dragon, and there were plenty of dragons when I was a kid.",John O'Bryan,Giancarlo Volpe,9.2 +11572,11572,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko's face, as he yells.] Well, they aren't around anymore, okay?","Well, they aren't around anymore, okay?",John O'Bryan,Giancarlo Volpe,9.2 +11573,11573,Fire,3,The Firebending Masters,13,Aang,"Okay, okay. [Moves his arms in an appeasing manner.] I'm sorry.","Okay, okay. I'm sorry.",John O'Bryan,Giancarlo Volpe,9.2 +11574,11574,Fire,3,The Firebending Masters,13,Zuko,But maybe there's another way. [He walks toward a fountain.] The first people to learn from the dragons were the ancient Sun Warriors.,But maybe there's another way. The first people to learn from the dragons were the ancient Sun Warriors.,John O'Bryan,Giancarlo Volpe,9.2 +11575,11575,Fire,3,The Firebending Masters,13,Aang,"[Walks toward Zuko.] Sun Warriors? Well, I know they weren't around when I was a kid.","Sun Warriors? Well, I know they weren't around when I was a kid.",John O'Bryan,Giancarlo Volpe,9.2 +11576,11576,Fire,3,The Firebending Masters,13,Zuko,"[Turning his head toward Aang.] No, they died off thousands of years ago. But their civilization wasn't too far from where we are now. [Cut to a shot of the two from the side, as Zuko turns his head toward the Avatar.] Maybe we can learn something by poking around their ruins.","No, they died off thousands of years ago. But their civilization wasn't too far from where we are now. Maybe we can learn something by poking around their ruins.",John O'Bryan,Giancarlo Volpe,9.2 +11577,11577,Fire,3,The Firebending Masters,13,Aang,"It's like the monks used to tell me. Sometimes, the shadows of the past can be felt by the present.","It's like the monks used to tell me. Sometimes, the shadows of the past can be felt by the present.",John O'Bryan,Giancarlo Volpe,9.2 +11578,11578,Fire,3,The Firebending Masters,13,Sokka,"So, what? [Aang and Zuko look back at him and the shot cuts to Sokka seated.] Maybe you'll pick up some super old Sun Warrior energy just by standing [Moves his hand in a strange motion.] where they stood a thousand years ago?","So, what? Maybe you'll pick up some super old Sun Warrior energy just by standing where they stood a thousand years ago?",John O'Bryan,Giancarlo Volpe,9.2 +11579,11579,Fire,3,The Firebending Masters,13,Zuko,"[Cut to an aerial shot.] More or less. Either I find a new way to firebend, [Cut to a shot of the two from the side. Zuko turns his head toward Aang.] or the Avatar has to find a new teacher. [Aang looks concerned and worried at Zuko's statement.]","More or less. Either I find a new way to firebend, or the Avatar has to find a new teacher.",John O'Bryan,Giancarlo Volpe,9.2 +11580,11580,Fire,3,The Firebending Masters,13,Scene Description,Scene changes to Aang and Zuko flying on Appa over an ocean. Cut to a bored Zuko.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11581,11581,Fire,3,The Firebending Masters,13,Zuko,"We've been riding for hours. I don't know why, but I thought this thing would be a lot faster.","We've been riding for hours. I don't know why, but I thought this thing would be a lot faster.",John O'Bryan,Giancarlo Volpe,9.2 +11582,11582,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Appa from below, as he growls.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11583,11583,Fire,3,The Firebending Masters,13,Aang,"[Turning his head toward Zuko.] Appa's right, Zuko. In our group, typically we start our missions with a more up-beat attitude.","Appa's right, Zuko. In our group, typically we start our missions with a more up-beat attitude.",John O'Bryan,Giancarlo Volpe,9.2 +11584,11584,Fire,3,The Firebending Masters,13,Zuko,[Whispering.] I can't believe this. [He lies down.],I can't believe this.,John O'Bryan,Giancarlo Volpe,9.2 +11585,11585,Fire,3,The Firebending Masters,13,Aang,"[Cut to Appa flying from behind.] Don't worry, you'll get the hang of it.","Don't worry, you'll get the hang of it.",John O'Bryan,Giancarlo Volpe,9.2 +11586,11586,Fire,3,The Firebending Masters,13,Scene Description,"Scene changes to an aerial shot of the ocean, as the screen pans above to an aerial shot of an island. Scene changes to an aerial shot of Appa descending to land on some ruins. The ruins make Aang and Zuko full of awe.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11587,11587,Fire,3,The Firebending Masters,13,Aang and Zuko,Whoa!,Whoa!,John O'Bryan,Giancarlo Volpe,9.2 +11588,11588,Fire,3,The Firebending Masters,13,Scene Description,Cut to Appa landing from the side. Shot cuts to show some mountains and pans below to an aerial shot of Aang and Zuko walking through the ruins.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11589,11589,Fire,3,The Firebending Masters,13,Zuko,"Even though these buildings are ancient, there's something eerily familiar about them. [Cut to Aang and Zuko walking.] I can tell the Fire Sages' temples are somehow descended from these.","Even though these buildings are ancient, there's something eerily familiar about them. I can tell the Fire Sages' temples are somehow descended from these.",John O'Bryan,Giancarlo Volpe,9.2 +11590,11590,Fire,3,The Firebending Masters,13,Aang,"[Cut to some structures as screen pans right to show more of them.] Okay. We've learned something about architecture. [Cut back to the two walking.] Hopefully, we'll learn something about firebending too. The past can be a great teacher.","Okay. We've learned something about architecture. Hopefully, we'll learn something about firebending too. The past can be a great teacher.",John O'Bryan,Giancarlo Volpe,9.2 +11591,11591,Fire,3,The Firebending Masters,13,Scene Description,"Cut to a tripwire, which is pulled when Aang walks by. He trips and yelps, as an overhead shot shows a small portion of the path in front of him going down and some spikes coming up from holes. Aang nearly falls on the spikes but blows a blast of air from his mouth which thrusts him up, and somersaults on to the other side, as he managed to regain balance.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11592,11592,Fire,3,The Firebending Masters,13,Aang,"[Scared.] Zuko, I think the past is trying to kill me.","Zuko, I think the past is trying to kill me.",John O'Bryan,Giancarlo Volpe,9.2 +11593,11593,Fire,3,The Firebending Masters,13,Zuko,[Kneeling down to inspect the spikes.] I can't believe it. [He picks the tripwire up and examines it.] This booby trap must be centuries old and it still works.,I can't believe it. This booby trap must be centuries old and it still works.,John O'Bryan,Giancarlo Volpe,9.2 +11594,11594,Fire,3,The Firebending Masters,13,Aang,There's probably a lot more. Maybe this means we shouldn't be here.,There's probably a lot more. Maybe this means we shouldn't be here.,John O'Bryan,Giancarlo Volpe,9.2 +11595,11595,Fire,3,The Firebending Masters,13,Scene Description,Zuko takes two steps back and runs toward the wall adjoining the path. He runs on the wall before jumping on the other side of the spikes.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11596,11596,Fire,3,The Firebending Masters,13,Zuko,"[Dusting some dirt on his shirt.] Where's that up-beat attitude you were talkin' about? [He smiles, as Aang turns back. Cut to Zuko's point of view of the path as screen pans above to a building.] Besides, people don't make traps unless they've got something worth protecting.","Where's that up-beat attitude you were talkin' about? Besides, people don't make traps unless they've got something worth protecting.",John O'Bryan,Giancarlo Volpe,9.2 +11597,11597,Fire,3,The Firebending Masters,13,Scene Description,Cut to Zuko and Aang coming onto the building from stairs.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11598,11598,Fire,3,The Firebending Masters,13,Aang,"Look, this seems promising. [Cut to Zuko and Aang from the behind, as they see a carving of a person being surrounded by two dragons who are breathing fire at him.] Though I'm not sure what this tells us about the original source of firebending.","Look, this seems promising. Though I'm not sure what this tells us about the original source of firebending.",John O'Bryan,Giancarlo Volpe,9.2 +11599,11599,Fire,3,The Firebending Masters,13,Zuko,[Cut to Zuko and Aang looking at the carving from the side.] They look pretty angry to me.,They look pretty angry to me.,John O'Bryan,Giancarlo Volpe,9.2 +11600,11600,Fire,3,The Firebending Masters,13,Aang,[Cut to a part of the carving from below as screen pans right to show more of it.] I thought the dragons were friends with the Sun Warriors.,I thought the dragons were friends with the Sun Warriors.,John O'Bryan,Giancarlo Volpe,9.2 +11601,11601,Fire,3,The Firebending Masters,13,Zuko,"Well, they had a funny way of showing it.","Well, they had a funny way of showing it.",John O'Bryan,Giancarlo Volpe,9.2 +11602,11602,Fire,3,The Firebending Masters,13,Scene Description,"Cut back to the both from the side, as Zuko looks down for a moment and starts walking, with Aang looking.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11603,11603,Fire,3,The Firebending Masters,13,Aang,"Zuko, [Zuko stops walking.] something happened to the dragons in the last hundred years. [Zuko closes his eyes.] Something you're not telling me.","Zuko, something happened to the dragons in the last hundred years. Something you're not telling me.",John O'Bryan,Giancarlo Volpe,9.2 +11604,11604,Fire,3,The Firebending Masters,13,Zuko,[He opens his eyes.] My great-grandfather Sozin happened.,My great-grandfather Sozin happened.,John O'Bryan,Giancarlo Volpe,9.2 +11605,11605,Fire,3,The Firebending Masters,13,Scene Description,Zuko walks away with Aang following him. Scene changes to the two walking on a bridge.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11606,11606,Fire,3,The Firebending Masters,13,Zuko,"He started the tradition of hunting dragons for glory. There were the ultimate firebenders. [Cut to them walking from below the bridge, with the screen panning right as they walk.] And if you could conquer one, your firebending talents would become legendary and you'd earn the honorary title, Dragon. [They approach a path which has one dragon's statue on both sides, and stop walking.] The last great dragon was conquered long before I was born, [Cut to a close-up of one of the dragon's statue's eyes as Zuko places one of his palms on it.] by my uncle.","He started the tradition of hunting dragons for glory. There were the ultimate firebenders. And if you could conquer one, your firebending talents would become legendary and you'd earn the honorary title, Dragon. The last great dragon was conquered long before I was born, by my uncle.",John O'Bryan,Giancarlo Volpe,9.2 +11607,11607,Fire,3,The Firebending Masters,13,Aang,"[Cut to the both from a side.] But I thought your uncle was ... I don't know, good?","But I thought your uncle was ... I don't know, good?",John O'Bryan,Giancarlo Volpe,9.2 +11608,11608,Fire,3,The Firebending Masters,13,Zuko,"He had a complicated past. [Cut to Zuko's face.] Family tradition, I guess. Let's just move on.","He had a complicated past. Family tradition, I guess. Let's just move on.",John O'Bryan,Giancarlo Volpe,9.2 +11609,11609,Fire,3,The Firebending Masters,13,Scene Description,"Zuko starts walking as shot cuts to an overhead shot of him walking away, with Aang running to catch up to him. Scene changes to a vertical column with a sunstone in the center, as Zuko and Aang walk past it. Screen pans above to show a wall with two gates, with the both walking toward them. As the both come closer, Zuko stops walking, and Aang runs to the gates, drops his staff, and unsuccessfully tries opening the gates.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11610,11610,Fire,3,The Firebending Masters,13,Aang,It's locked up!,It's locked up!,John O'Bryan,Giancarlo Volpe,9.2 +11611,11611,Fire,3,The Firebending Masters,13,Scene Description,"Zuko rubs his head, and looks behind, before quickly going aside to show the sunstone from the column in front of the gates beaming light.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11612,11612,Fire,3,The Firebending Masters,13,Zuko,"Wait. [Cut to an overhead shot of Zuko, as he realizes something and takes a step behind, and looks at the position he stood at a moment before. Screen zooms in to show the light from the sunstone beaming on a circular carving on the ground.] It's a celestial calendar. [Cut to an aerial shot of Zuko and Aang standing in front of the column as screen pans to right to show the gates.] Just like the Fire Sages have in their temples. [Cut to a similar sunstone above the gates.] I bet that sunstone opens the door, but only when sunlight hits at just the right angle. [Screen pans below to show Aang in front of the gates.] On the solstice.","Wait. It's a celestial calendar. Just like the Fire Sages have in their temples. I bet that sunstone opens the door, but only when sunlight hits at just the right angle. On the solstice.",John O'Bryan,Giancarlo Volpe,9.2 +11613,11613,Fire,3,The Firebending Masters,13,Aang,[Exasperated.] Monkeyfeathers! The solstice again? We can't wait here that long.,Monkeyfeathers! The solstice again? We can't wait here that long.,John O'Bryan,Giancarlo Volpe,9.2 +11614,11614,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko.] No, we can't. [He unsheathes one of his swords.] But we might be able to speed time up. [Cut to the circle carved on the ground on which light from the sunstone is being beamed. He places his sword on it with an angle, causing it to reflect the light. Cut to Zuko reflecting the light from the column.] Let's see if we can outsmart the sunstone.","No, we can't. But we might be able to speed time up. Let's see if we can outsmart the sunstone.",John O'Bryan,Giancarlo Volpe,9.2 +11615,11615,Fire,3,The Firebending Masters,13,Scene Description,Cut to the side of the gate as the light being reflected by Zuko's sword moves to the other sunstone on top of the gates. Screen pans below to show Aang looking at it.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11616,11616,Fire,3,The Firebending Masters,13,Aang,Nothing's happening.,Nothing's happening.,John O'Bryan,Giancarlo Volpe,9.2 +11617,11617,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko, who is kneeling down and reflecting the light.] Come on ...",Come on ...,John O'Bryan,Giancarlo Volpe,9.2 +11618,11618,Fire,3,The Firebending Masters,13,Scene Description,Cut to a close-up of the sunstone as the ground starts shaking. Cut to inside the room as the gates are opened and the shaking stops.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11619,11619,Fire,3,The Firebending Masters,13,Aang,"[He picks his staff, and Zuko, walking up to the gates, unsheathes his sword.] You know, Zuko, I don't care what everyone else says about you. [Aang nudges Zuko with his elbow.] You're pretty smart.","You know, Zuko, I don't care what everyone else says about you. You're pretty smart.",John O'Bryan,Giancarlo Volpe,9.2 +11620,11620,Fire,3,The Firebending Masters,13,Scene Description,"Zuko smiles at Aang's compliment, before realizing what Aang actually said. Aang walks inside the dark room and looks around it. He narrows his eyes, as the shot cuts to show a statue of a man with an angry expression. Cut back to Aang, who gasps.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11621,11621,Fire,3,The Firebending Masters,13,Zuko,Relax. They're just statues.,Relax. They're just statues.,John O'Bryan,Giancarlo Volpe,9.2 +11622,11622,Fire,3,The Firebending Masters,13,Scene Description,Cut to a shot of two statues from behind Aang and Zuko. Cut to an aerial shot of the room to show many statues lined up in a circle as they both walk into it. Aang walks up to a statue and reads something on it.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11623,11623,Fire,3,The Firebending Masters,13,Aang,It says this is something called the Dancing Dragon.,It says this is something called the Dancing Dragon.,John O'Bryan,Giancarlo Volpe,9.2 +11624,11624,Fire,3,The Firebending Masters,13,Scene Description,"Aang places his staff to lean on the statue. Cut to a shot of the statue from behind Aang to show him taking the same posture the statue is in. Cut to his leg, which presses a button on the ground. Aang comes out of the posture and examines the button. He looks around at all the statues, runs toward Zuko, catches him by the hand, and pulls him.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11625,11625,Fire,3,The Firebending Masters,13,Aang,"Zuko, get over here! I want you to dance with me!","Zuko, get over here! I want you to dance with me!",John O'Bryan,Giancarlo Volpe,9.2 +11626,11626,Fire,3,The Firebending Masters,13,Zuko,[He pulls his hand back.] What?,What?,John O'Bryan,Giancarlo Volpe,9.2 +11627,11627,Fire,3,The Firebending Masters,13,Aang,Just do it.,Just do it.,John O'Bryan,Giancarlo Volpe,9.2 +11628,11628,Fire,3,The Firebending Masters,13,Scene Description,"Aang pulls him to a side, as shot cuts to the both standing in front of two statues that are to the sides of the path that leads into the circle, as Zuko groans.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11629,11629,Fire,3,The Firebending Masters,13,Aang,"Let's follow the steps of the statues. [Aang and Zuko take the posture of the statue in front of them and move to their right and left, respectively, taking the postures of the statues in front of them, which pressed similar buttons lying on the ground in front of all the statues. Cut to an aerial shot of the room.] Don't you see? These aren't dance moves. These statues are giving us a lesson. [Cut to Zuko moving through each statue.] I think this is some kind of Sun Warrior firebending form.",Let's follow the steps of the statues. Don't you see? These aren't dance moves. These statues are giving us a lesson. I think this is some kind of Sun Warrior firebending form.,John O'Bryan,Giancarlo Volpe,9.2 +11630,11630,Fire,3,The Firebending Masters,13,Zuko,This better teach us some really good firebending.,This better teach us some really good firebending.,John O'Bryan,Giancarlo Volpe,9.2 +11631,11631,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Aang, as he does the same moves as Zuko. Cut to two statues with their waists bent toward each other, and their arms in the direction of each other. Zuko and Aang perform the same move. Cut to a part of the ground detracting and a vertical column emerging from it, as the both look behind at it. Cut to a close-up of the yellow, egg-shaped sunstone on the column. Cut to an aerial shot of Zuko and Aang standing in front of the column as Aang raises his arms in triumph.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11632,11632,Fire,3,The Firebending Masters,13,Aang,"Hurray! [Putting his hands down, and rubbing his head.] Wait, what exactly is that?","Hurray! Wait, what exactly is that?",John O'Bryan,Giancarlo Volpe,9.2 +11633,11633,Fire,3,The Firebending Masters,13,Zuko,[He runs toward the sunstone.] It's some kind of mystical gemstone.,It's some kind of mystical gemstone.,John O'Bryan,Giancarlo Volpe,9.2 +11634,11634,Fire,3,The Firebending Masters,13,Aang,"[Cut to the gemstone as Zuko runs toward it. Aang raises his arms.] Well, don't touch it! [Zuko stops and Aang catches up to him.]","Well, don't touch it!",John O'Bryan,Giancarlo Volpe,9.2 +11635,11635,Fire,3,The Firebending Masters,13,Zuko,Why not?,Why not?,John O'Bryan,Giancarlo Volpe,9.2 +11636,11636,Fire,3,The Firebending Masters,13,Aang,Remember what happened out there with those spikes? [Turns to look at the side and raises his arms again.] I'm just very suspicious of giant glowing gems sitting on pedestals.,Remember what happened out there with those spikes? I'm just very suspicious of giant glowing gems sitting on pedestals.,John O'Bryan,Giancarlo Volpe,9.2 +11637,11637,Fire,3,The Firebending Masters,13,Scene Description,"Zuko ignores the Avatar and picks the sunstone, as Aang's eyes twitch.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11638,11638,Fire,3,The Firebending Masters,13,Zuko,It feels almost alive.,It feels almost alive.,John O'Bryan,Giancarlo Volpe,9.2 +11639,11639,Fire,3,The Firebending Masters,13,Scene Description,"He tries to put the sunstone back but yells in surprise as a geyser of viscous slime erupts out from the pedestal and pushes Zuko toward the grates in the ceiling, sticking him there.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11640,11640,Fire,3,The Firebending Masters,13,Aang,"[Cut to a worried Aang's face, as he turns to look at the gates of the room, which close.] Oh no, it's another trap!","Oh no, it's another trap!",John O'Bryan,Giancarlo Volpe,9.2 +11641,11641,Fire,3,The Firebending Masters,13,Scene Description,"Cut to an overhead shot of the column as more viscous slime comes from it, causing Aang to walk back. Cut to Zuko who is stuck to the grates and unsuccessfully struggles to break free.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11642,11642,Fire,3,The Firebending Masters,13,Zuko,"Ugh, I can't pull free. It's like some kind of glue.","Ugh, I can't pull free. It's like some kind of glue.",John O'Bryan,Giancarlo Volpe,9.2 +11643,11643,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Aang, as he jumps across the slime and grabs his staff on the other side of the room. He climbs on a statue's head, jumps onto another of the statues' head and airbends a gust of wind toward Zuko, due to which Zuko is pushed from his back to his front. Cut to an aerial shot to show that the slime is rising and the screen zooms to show Aang is still on the statue's head. His staff gets stuck in the slime and he is not successful in pulling it out. He jumps up toward the grates, as the slime engulfs the room.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11644,11644,Fire,3,The Firebending Masters,13,Aang,"[Trying to pull his hands from the grates.] I can't move! Zuko, do something!","I can't move! Zuko, do something!",John O'Bryan,Giancarlo Volpe,9.2 +11645,11645,Fire,3,The Firebending Masters,13,Zuko,Me? I can't move either!,Me? I can't move either!,John O'Bryan,Giancarlo Volpe,9.2 +11646,11646,Fire,3,The Firebending Masters,13,Scene Description,Cut to a shot of the entire room being filled by the slime. Cut to the other side of the grates as they groan due to the slime pushing them against the grates. The slime stops.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11647,11647,Fire,3,The Firebending Masters,13,Aang,It stopped.,It stopped.,John O'Bryan,Giancarlo Volpe,9.2 +11648,11648,Fire,3,The Firebending Masters,13,Zuko,"At least we have air. Maybe if we stay calm, we can figure a way out of this.","At least we have air. Maybe if we stay calm, we can figure a way out of this.",John O'Bryan,Giancarlo Volpe,9.2 +11649,11649,Fire,3,The Firebending Masters,13,Scene Description,"Cut to an aerial shot of the two being stuck to the grates, as screen zooms out slowly. Screen fades to the building at night, and cuts to the two still stuck to the grates.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11650,11650,Fire,3,The Firebending Masters,13,Aang,"You had to pick up the glowing egg, didn't you?","You had to pick up the glowing egg, didn't you?",John O'Bryan,Giancarlo Volpe,9.2 +11651,11651,Fire,3,The Firebending Masters,13,Zuko,"[Cut to their heads sticking out from the grates.] At least I made something happen. If it were up to you, we'd never have made it past the courtyard.","At least I made something happen. If it were up to you, we'd never have made it past the courtyard.",John O'Bryan,Giancarlo Volpe,9.2 +11652,11652,Fire,3,The Firebending Masters,13,Aang,[He opens his mouth very widely and yells.] Help!,Help!,John O'Bryan,Giancarlo Volpe,9.2 +11653,11653,Fire,3,The Firebending Masters,13,Zuko,Who are you yelling to? Nobody's lived here for centuries.,Who are you yelling to? Nobody's lived here for centuries.,John O'Bryan,Giancarlo Volpe,9.2 +11654,11654,Fire,3,The Firebending Masters,13,Aang,"Well, what do you think we should do?","Well, what do you think we should do?",John O'Bryan,Giancarlo Volpe,9.2 +11655,11655,Fire,3,The Firebending Masters,13,Zuko,Think about our place in the universe?,Think about our place in the universe?,John O'Bryan,Giancarlo Volpe,9.2 +11656,11656,Fire,3,The Firebending Masters,13,Scene Description,"Cut to the grates from the side, as Aang sighs, and a foot wearing a sandal steps near it.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11657,11657,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Cut to Zuko and Aang's point of view, as the Sun Warrior chief comes into sight. Cut to his face.] Who is down there?",Who is down there?,John O'Bryan,Giancarlo Volpe,9.2 +11658,11658,Fire,3,The Firebending Masters,13,Scene Description,"Cut to both boys bearing shocked expressions. Cut to a shot of the building, before cutting to Zuko and Aang as the slime is removed by aardvark sloths on either side of them. Shot cuts to an aerial shot to show the two surrounded by men and women who are in circles.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11659,11659,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Walking toward the two.] For trying to take our sunstone, you must be severely punished!","For trying to take our sunstone, you must be severely punished!",John O'Bryan,Giancarlo Volpe,9.2 +11660,11660,Fire,3,The Firebending Masters,13,Zuko,[Cut to Aang and Zuko from the side.] We didn't come here to take your sunstone. We came here to find the ancient origin of all firebending.,We didn't come here to take your sunstone. We came here to find the ancient origin of all firebending.,John O'Bryan,Giancarlo Volpe,9.2 +11661,11661,Fire,3,The Firebending Masters,13,Scene Description,"Cut to an aerial shot of the people, as Ham Ghao steps forward.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11662,11662,Fire,3,The Firebending Masters,13,Ham Ghao,"Yeah, right. They are obviously thieves, [Cut to the chief and Ham Ghao from the side to show that he is holding the sunstone.] here to steal Sun Warrior treasures.","Yeah, right. They are obviously thieves, here to steal Sun Warrior treasures.",John O'Bryan,Giancarlo Volpe,9.2 +11663,11663,Fire,3,The Firebending Masters,13,Aang,"Please, I don't normally play this card, but ... [Places his palm on his chest.] I'm the Avatar. [Cut to Ham Ghao looking toward the chief from the side, puzzled. Cut to Aang, who stands up and gives a weak smile.] Just hear us out.","Please, I don't normally play this card, but ... I'm the Avatar. Just hear us out.",John O'Bryan,Giancarlo Volpe,9.2 +11664,11664,Fire,3,The Firebending Masters,13,Zuko,"[Standing up.] My name is Zuko, Crown Prince of the Fire Nation. [Looks down at the ground.] O-or at least I used to be. [Cut to Zuko's point of view to the Sun Warriors as screen pans right to show more of them.] I know my people have distorted the ways of firebending, to be fueled by anger and rage. But now I want to learn the true way, [Cut back to Aang and Zuko.] the original way. When we came here, I never imagined [Cut to an aerial shot that shows the Sun Warriors surrounding the two.] the Sun Warrior's civilization was secretly alive. I am truly humbled to be in your presence. [Cut back to the two, as they bow their heads.] Please, teach us.","My name is Zuko, Crown Prince of the Fire Nation. O-or at least I used to be. I know my people have distorted the ways of firebending, to be fueled by anger and rage. But now I want to learn the true way, the original way. When we came here, I never imagined the Sun Warrior's civilization was secretly alive. I am truly humbled to be in your presence. Please, teach us.",John O'Bryan,Giancarlo Volpe,9.2 +11665,11665,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Cut to the chief.] If you wish to learn the ways of the Sun, you must learn them from the masters, Ran and Shaw.","If you wish to learn the ways of the Sun, you must learn them from the masters, Ran and Shaw.",John O'Bryan,Giancarlo Volpe,9.2 +11666,11666,Fire,3,The Firebending Masters,13,Aang,[Cut to Aang and Zuko.] Ran and Shaw? There are two of them?,Ran and Shaw? There are two of them?,John O'Bryan,Giancarlo Volpe,9.2 +11667,11667,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Walks toward them and looks at Aang.] When you present yourself to them, they will examine you. [Turns to look at Zuko.] They'll read your hearts, your souls, and your ancestry. [Takes a step toward Zuko and towers over Zuko, who looks worried.] If they deem you worthy, they'll teach you. [Cut to a close-up of the chief.] If they don't, you'll be destroyed on the spot.","When you present yourself to them, they will examine you. They'll read your hearts, your souls, and your ancestry. If they deem you worthy, they'll teach you. If they don't, you'll be destroyed on the spot.",John O'Bryan,Giancarlo Volpe,9.2 +11668,11668,Fire,3,The Firebending Masters,13,Scene Description,"The chief walks back, and Aang and Zuko look at each other. Scene changes to a building on the next day. Screen zooms to the top of the building.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11669,11669,Fire,3,The Firebending Masters,13,Sun Warrior chief,"If you're going to see the masters, [Cut to an aerial shot of the Sun Warriors sitting in many arcs inside the room in front of the Eternal Flame. Aang, Zuko, and the Sun Warrior chief are standing.] you must bring them a piece of the Eternal Flame. [Cut to the chief standing in front of the fire from behind him.] This fire is the very first one. [Raises his hands to his head and turns back at Zuko and Aang.] It was given to man by the dragons. [Cut to the chief talking to Zuko and Aang from the side as the other Sun Warriors look.] We have kept it going for thousands of years.","If you're going to see the masters, you must bring them a piece of the Eternal Flame. This fire is the very first one. It was given to man by the dragons. We have kept it going for thousands of years.",John O'Bryan,Giancarlo Volpe,9.2 +11670,11670,Fire,3,The Firebending Masters,13,Zuko,[Surprised.] I don't believe it.,I don't believe it.,John O'Bryan,Giancarlo Volpe,9.2 +11671,11671,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Cut to the Sun Warriors sitting and the chief explaining their job to the two, as screen pans to the right.] You will each take a piece of it to the masters, to show your commitment to the sacred art of firebending.","You will each take a piece of it to the masters, to show your commitment to the sacred art of firebending.",John O'Bryan,Giancarlo Volpe,9.2 +11672,11672,Fire,3,The Firebending Masters,13,Aang,"[Cut to an unsure Aang as he places his palm on his neck.] Umm, Mister Sun Chief Sir, yeah, I'm not a firebender yet. [Pointing to Zuko.] Couldn't my friend here carry my fire for me?","Umm, Mister Sun Chief Sir, yeah, I'm not a firebender yet. Couldn't my friend here carry my fire for me?",John O'Bryan,Giancarlo Volpe,9.2 +11673,11673,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Unyielding.] No. [He turns back to face the fire. Cut to Aang, who looks very uneasy, before cutting to the chief, who takes a part of the Eternal Flame on his hand and turns back toward the two.] This ritual illustrates [He turns around in a circle and splits the fire on his palm into two parts.] the essence of Sun Warrior philosophy. [Cut to Aang, as he stares at the flame.] You must maintain a constant heat. The flame will go out if you make it too small. [Aang cringes, as the screen pans to Zuko, who is standing beside Aang.] Make it too big, and you might lose control.","No. This ritual illustrates the essence of Sun Warrior philosophy. You must maintain a constant heat. The flame will go out if you make it too small. Make it too big, and you might lose control.",John O'Bryan,Giancarlo Volpe,9.2 +11674,11674,Fire,3,The Firebending Masters,13,Scene Description,"Zuko stares at the flame and brings his arms forward to take the flame. He looks at Aang, as shot cuts to the chief offering Aang the flame from the side.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11675,11675,Fire,3,The Firebending Masters,13,Aang,"I'm sorry, I'm just a little nervous. [He takes the flame in his hand and his expression changes to a relieved one.] It's like a little heartbeat.","I'm sorry, I'm just a little nervous. It's like a little heartbeat.",John O'Bryan,Giancarlo Volpe,9.2 +11676,11676,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Cut to the chief.] Fire is life, [Cut to Aang. Screen zooms in to his face as he smiles.] not just destruction. You will take your flames up there. [Cut to Zuko and Aang standing in front of the chief as he points to a mountain from the side. Screen zooms in to the mountain.] The cave of the masters is beneath that rock.","Fire is life, not just destruction. You will take your flames up there. The cave of the masters is beneath that rock.",John O'Bryan,Giancarlo Volpe,9.2 +11677,11677,Fire,3,The Firebending Masters,13,Scene Description,"Screen changes to Aang and Zuko walking through a steep forest, before changing to the steep surface. Cut to Zuko, who has reached the top of the steepness, turning back to look at Aang who is lagging behind.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11678,11678,Fire,3,The Firebending Masters,13,Zuko,Hurry up.,Hurry up.,John O'Bryan,Giancarlo Volpe,9.2 +11679,11679,Fire,3,The Firebending Masters,13,Aang,"I can't. [Cut to Aang approaching a rock.] If I walk too fast, my flame will go out. [Climbs up the rock and looks at his flame.]","I can't. If I walk too fast, my flame will go out.",John O'Bryan,Giancarlo Volpe,9.2 +11680,11680,Fire,3,The Firebending Masters,13,Zuko,"Your flame's [Aang looks at Zuko.] gonna go out [Cut to Zuko from below.] because it's too small. You're too timid, give it more juice.","Your flame's gonna go out because it's too small. You're too timid, give it more juice.",John O'Bryan,Giancarlo Volpe,9.2 +11681,11681,Fire,3,The Firebending Masters,13,Aang,[He climbs another rock.] But what if I can't control it?,But what if I can't control it?,John O'Bryan,Giancarlo Volpe,9.2 +11682,11682,Fire,3,The Firebending Masters,13,Zuko,[Cut to Zuko.] You can do it. I know you can. [Cut to an unsure Aang.] You're a talented kid.,You can do it. I know you can. You're a talented kid.,John O'Bryan,Giancarlo Volpe,9.2 +11683,11683,Fire,3,The Firebending Masters,13,Scene Description,"Aang smiles at the compliment and climbs up another rock, reaching the top. Zuko starts walking and Aang follows him. Screen pans above to the top of the mountain. Scene changes to Zuko and Aang as the reach the top of the mountain, and see that warriors are already there, with the Sun Warrior chief, Ham Ghao, and another Sun Warrior standing. Screen zooms out to show two vertical rocks with a bridge in the center.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11684,11684,Fire,3,The Firebending Masters,13,Sun Warrior chief,[He and the other two Sun Warriors walk up to the two.] Facing the judgment of the firebending masters will be very dangerous for you. Your ancestors [Cut to Zuko.] are directly responsible for the dragons' disappearance. [Zuko looks toward the side.] The masters might not be so happy to see you.,Facing the judgment of the firebending masters will be very dangerous for you. Your ancestors are directly responsible for the dragons' disappearance. The masters might not be so happy to see you.,John O'Bryan,Giancarlo Volpe,9.2 +11685,11685,Fire,3,The Firebending Masters,13,Ham Ghao,[He places his hand on his hip.] I know I wouldn't be.,I know I wouldn't be.,John O'Bryan,Giancarlo Volpe,9.2 +11686,11686,Fire,3,The Firebending Masters,13,Aang,But once they find out I'm the Avatar ...,But once they find out I'm the Avatar ...,John O'Bryan,Giancarlo Volpe,9.2 +11687,11687,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Cut to the chief.] Have you forgotten that you vanished, allowing the Fire Nation to wreak havoc on the world? [Cut to a guilty Aang.] The decline of the dragons is your burden, too. [Aang looks toward the side.]","Have you forgotten that you vanished, allowing the Fire Nation to wreak havoc on the world? The decline of the dragons is your burden, too.",John O'Bryan,Giancarlo Volpe,9.2 +11688,11688,Fire,3,The Firebending Masters,13,Scene Description,"Cut to an overhead shot of the chief rooting his staff on the ground. The other two Sun Warriors get into a kneeling position and the chief walks toward Zuko and Aang, takes a small portion of their flames and gives the flames to both of the Sun Warriors, who go to each of the sides. The chief turns back and walks. Cut to some Sun Warriors standing and sitting, alternately, as the two Warriors standing create a circle made of fire. Cut to Aang and Zuko watching the chief walk.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11689,11689,Fire,3,The Firebending Masters,13,Aang,[Turning to Zuko.] We could turn back now. We've already learned more about fire than we'd hoped. [Aang shows Zuko his flame and gives a weak smile.],We could turn back now. We've already learned more about fire than we'd hoped.,John O'Bryan,Giancarlo Volpe,9.2 +11690,11690,Fire,3,The Firebending Masters,13,Zuko,"No, we're seeing this through to the end. We're gonna meet these masters and find out [Cut to an overhead shot of Aang.] what's so great about them.","No, we're seeing this through to the end. We're gonna meet these masters and find out what's so great about them.",John O'Bryan,Giancarlo Volpe,9.2 +11691,11691,Fire,3,The Firebending Masters,13,Aang,"[Looking toward the rocks.] What if they judge us, and attack us?","What if they judge us, and attack us?",John O'Bryan,Giancarlo Volpe,9.2 +11692,11692,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko.] Well, we're the Fire Prince and the Avatar. [Unsheathes his swords slightly.] I think we could take these guys in a fight, whoever they are. [He smiles.]","Well, we're the Fire Prince and the Avatar. I think we could take these guys in a fight, whoever they are.",John O'Bryan,Giancarlo Volpe,9.2 +11693,11693,Fire,3,The Firebending Masters,13,Scene Description,"Cut to Aang, who nods uneasily. Cut to the entire courtyard to show that all alternate Sun Warriors have made their fire circles. Zuko turns toward the Sun Warrior chief.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11694,11694,Fire,3,The Firebending Masters,13,Zuko,Bring 'em out!,Bring 'em out!,John O'Bryan,Giancarlo Volpe,9.2 +11695,11695,Fire,3,The Firebending Masters,13,Sun Warrior chief,[Cut to the chief to show him stretching his both hands out on both sides.] Chanters!,Chanters!,John O'Bryan,Giancarlo Volpe,9.2 +11696,11696,Fire,3,The Firebending Masters,13,Scene Description,"Cut to an aerial shot of the courtyard as the chanters play the music. Cut to the Sun Warriors, who are sitting down, beating their drums in a synchronized rhythm. Cut to the other Sun Warriors holding the fire circle in their crouched positions. Cut to the Warriors, as Zuko and Aang walk toward the stairs. Cut to the other side of the circle to show the Warriors alternatively rising and bowing. Cut to an overhead shot of the two nearing the steps. Cut to a shot of the stairs as screen slowly pans below. Cut to the chief and the other two Warriors, as they step aside to let Zuko and Aang pass. +Zuko and Aang look at each other and take a deep breath before climbing. Cut to the warriors, who are still beating the drums and holding the fire circle. Cut to Zuko and Aang climbing the steps. Aang looks back, but continues forward. Shot cuts to them climbing from the side, before cutting to the chief and the two warriors beside him looking at them, with the screen zooming out. Cut to Zuko and Aang, who reach the top as the setting sun shines at them. The music stops playing as soon as they reach the top. Both of them look at the caves on each side of the bridge.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11697,11697,Fire,3,The Firebending Masters,13,Sun Warrior,"[Cut to a Sun Warrior using an sound-amplifying device.] Those who wish to meet the masters, Ran and Shaw, will now present their fire.","Those who wish to meet the masters, Ran and Shaw, will now present their fire.",John O'Bryan,Giancarlo Volpe,9.2 +11698,11698,Fire,3,The Firebending Masters,13,Scene Description,Aang and Zuko turn toward the caves and bow down with their hands stretched toward the caves. Screen zooms out to show them in this posture.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11699,11699,Fire,3,The Firebending Masters,13,Sun Warrior chief,Sound the call!,Sound the call!,John O'Bryan,Giancarlo Volpe,9.2 +11700,11700,Fire,3,The Firebending Masters,13,Scene Description,"A warrior takes a deep breath and blows a horn. The sound from the horn sends a flock of birds scattering. The cave Aang is facing rumbles, causing him to tremble. Aang accidentally places his hand down, extinguishing his flame.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11701,11701,Fire,3,The Firebending Masters,13,Aang,"What's happening? [He looks to look at Zuko, who turns his head toward Aang. Aang cringes and quickly returns back to his position, and realizes that his flame is extinguished and gasps. He turns toward Zuko again, and whispers.] Zuko, my fire went out.","What's happening? Zuko, my fire went out.",John O'Bryan,Giancarlo Volpe,9.2 +11702,11702,Fire,3,The Firebending Masters,13,Zuko,[Whispering.] What do you want me to do?,What do you want me to do?,John O'Bryan,Giancarlo Volpe,9.2 +11703,11703,Fire,3,The Firebending Masters,13,Aang,Give me some of yours. [He reaches for Zuko's flame and Zuko pushes him behind.],Give me some of yours.,John O'Bryan,Giancarlo Volpe,9.2 +11704,11704,Fire,3,The Firebending Masters,13,Zuko,"[Whispering.] No, just make your own.","No, just make your own.",John O'Bryan,Giancarlo Volpe,9.2 +11705,11705,Fire,3,The Firebending Masters,13,Aang,[Whispering as well.] I can't. [He reaches for Zuko's flame again.],I can't.,John O'Bryan,Giancarlo Volpe,9.2 +11706,11706,Fire,3,The Firebending Masters,13,Zuko,[Cut to an aerial shot of the bridge.] Get some from those warriors. [Cut to the chief and the two Warriors beside him.] Hurry! [Cuts to shot of the Sun Warriors below; off-screen.] Stop cheating off me!,Get some from those warriors. Hurry! Stop cheating off me!,John O'Bryan,Giancarlo Volpe,9.2 +11707,11707,Fire,3,The Firebending Masters,13,Scene Description,The chief and Ham Ghao look at each other.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11708,11708,Fire,3,The Firebending Masters,13,Aang,[Off-screen.] Quit being stingy!,Quit being stingy!,John O'Bryan,Giancarlo Volpe,9.2 +11709,11709,Fire,3,The Firebending Masters,13,Scene Description,"Shot cuts to Aang trying to reach for Zuko's flame; he is unable to do so as Zuko raises his hand high up in the air. Aang continues his attempt to get Zuko's flame but Zuko stretches his arms away. Aang pulls Zuko's arm down, extinguishing the flame. They both look at each other. Cut to the two from inside the caves as the ground rumbles. Cut to the two with a worried expression. They turn to look at the other cave as screen zooms in to the cave.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11710,11710,Fire,3,The Firebending Masters,13,Aang,Uh oh.,Uh oh.,John O'Bryan,Giancarlo Volpe,9.2 +11711,11711,Fire,3,The Firebending Masters,13,Scene Description,"Two eyes glow inside a cave and a red dragon comes out, roaring, circling around the bridge. Cut to the boys, who take a step back. Cut to Zuko, who looks at the dragon. Cut to a blue dragon coming out of the other cave. It joins the other dragon as they circle the bridge.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11712,11712,Fire,3,The Firebending Masters,13,Zuko,[Cut to Zuko and Aang standing.] These are the masters.,These are the masters.,John O'Bryan,Giancarlo Volpe,9.2 +11713,11713,Fire,3,The Firebending Masters,13,Aang,[In a low voice.] Still think we can take 'em?,Still think we can take 'em?,John O'Bryan,Giancarlo Volpe,9.2 +11714,11714,Fire,3,The Firebending Masters,13,Zuko,Sshh. I never said that.,Sshh. I never said that.,John O'Bryan,Giancarlo Volpe,9.2 +11715,11715,Fire,3,The Firebending Masters,13,Scene Description,Cut to the dragons circling the bridge from below. Screen pans down to the warriors as they bow down. Cut to Ham Ghao and the chief.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11716,11716,Fire,3,The Firebending Masters,13,Ham Ghao,"Oh, here it comes. [Looks up at the bridge.] Any moment now. Dinner for the masters.","Oh, here it comes. Any moment now. Dinner for the masters.",John O'Bryan,Giancarlo Volpe,9.2 +11717,11717,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Turns toward Ham Ghao.] Quiet, Ham Ghao!","Quiet, Ham Ghao!",John O'Bryan,Giancarlo Volpe,9.2 +11718,11718,Fire,3,The Firebending Masters,13,Ham Ghao,What? [Turns his head away.] Everyone's thinking it.,What? Everyone's thinking it.,John O'Bryan,Giancarlo Volpe,9.2 +11719,11719,Fire,3,The Firebending Masters,13,Scene Description,"Cut to the bridge where the dragons are still flying around the bridge. Cut to Aang, who looks at them flying.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11720,11720,Fire,3,The Firebending Masters,13,Aang,"[Whispers.] Zuko, I think we're supposed to do the Dragon Dance with them.","Zuko, I think we're supposed to do the Dragon Dance with them.",John O'Bryan,Giancarlo Volpe,9.2 +11721,11721,Fire,3,The Firebending Masters,13,Zuko,[Turning his head toward Zuko.] What? What about this situation makes you think they want us to dance?,What? What about this situation makes you think they want us to dance?,John O'Bryan,Giancarlo Volpe,9.2 +11722,11722,Fire,3,The Firebending Masters,13,Aang,"Well, I think they want us to do something. Let's just try it.","Well, I think they want us to do something. Let's just try it.",John O'Bryan,Giancarlo Volpe,9.2 +11723,11723,Fire,3,The Firebending Masters,13,Zuko,[Unwillingly.] Fine.,Fine.,John O'Bryan,Giancarlo Volpe,9.2 +11724,11724,Fire,3,The Firebending Masters,13,Scene Description,"Aang and Zuko get into the first posture of the Dancing Dragon and change their postures to the next. Cut to Aang spreading his arms out as the blue dragon flies behind him following the shape of his arms. Aang turns his arms to his side as the dragon turns as well. Screen zooms out to show the dragons performing the same movements as each other. Cut to Zuko, who pushes his hand up as the red dragon behind him goes up as well. Zuko dips and the dragon dives down accordingly. Cut to the dragons flying above the bridge as screen pans below to show the two performing the Dancing Dragon. Cut to them performing the final move. They look to either side as shot cuts to show that the dragons have stopped moving and are hovering on either side of the bridge.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11725,11725,Fire,3,The Firebending Masters,13,Sun Warrior chief,[Still bowing.] Judgment time.,Judgment time.,John O'Bryan,Giancarlo Volpe,9.2 +11726,11726,Fire,3,The Firebending Masters,13,Scene Description,"Cut to the blue dragon which stares at Zuko, as Aang trembles. Zuko looks at it, with his mouth wide open. Cut to Aang trembles, as shot cuts to the two dragons sitting, with their legs at the bottom of the bridge. Cut to the red dragon as it breathes fire at the two. Cut to the blue dragon doing the same. Cut to Zuko and Aang yelling and covering their faces as they are engulfed by a multi-colored flame vortex. Cut to the top of the vortex from inside it. It slowly pans down to the boys who look at it, shocked. Cut to the bridge as the dragons continue breathing fire. Screen pans above to the flame vortex. Cut to the inside of the vortex and the two stare at the scene in awe. Cut to Aang's eyes.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11727,11727,Fire,3,The Firebending Masters,13,Aang,Wow.,Wow.,John O'Bryan,Giancarlo Volpe,9.2 +11728,11728,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko's face, as he stares at the flames.] I understand.",I understand.,John O'Bryan,Giancarlo Volpe,9.2 +11729,11729,Fire,3,The Firebending Masters,13,Scene Description,"The vortex slowly dissipates and the dragons curl their bodies, fly up, circle one time and go into their caves. Cut to the boys who still remain on the bridge. Cut to an annoyed Ham Ghao, before cutting to one of the warriors holding the circle of fire as he moves his arm in a circle, and extinguishes the flame and ending his hands in a position. Cut to an aerial shot of Zuko and Aang descending from the steps.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11730,11730,Fire,3,The Firebending Masters,13,Zuko,"[Cut to Zuko.] Their fire was beautiful. I saw so many colors, colors I've never imagined.","Their fire was beautiful. I saw so many colors, colors I've never imagined.",John O'Bryan,Giancarlo Volpe,9.2 +11731,11731,Fire,3,The Firebending Masters,13,Aang,[Cut to the two descending from the side.] Like firebending harmony.,Like firebending harmony.,John O'Bryan,Giancarlo Volpe,9.2 +11732,11732,Fire,3,The Firebending Masters,13,Sun Warrior chief,"Yes. They judged you, and gave you visions of the meaning of firebending. [The other two Sun Warriors walk away.]","Yes. They judged you, and gave you visions of the meaning of firebending.",John O'Bryan,Giancarlo Volpe,9.2 +11733,11733,Fire,3,The Firebending Masters,13,Zuko,[Cut to Zuko.] I can't believe there are still living dragons. My uncle Iroh said he faced the last dragon and killed it.,I can't believe there are still living dragons. My uncle Iroh said he faced the last dragon and killed it.,John O'Bryan,Giancarlo Volpe,9.2 +11734,11734,Fire,3,The Firebending Masters,13,Aang,[Looking at Zuko.] So your uncle lied.,So your uncle lied.,John O'Bryan,Giancarlo Volpe,9.2 +11735,11735,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Cut to the smiling chief from the side.] Actually, it wasn't a total lie. Iroh was the last outsider to face the masters. [Raising his hand above slightly.] They deemed him worthy and passed the secret onto him as well.","Actually, it wasn't a total lie. Iroh was the last outsider to face the masters. They deemed him worthy and passed the secret onto him as well.",John O'Bryan,Giancarlo Volpe,9.2 +11736,11736,Fire,3,The Firebending Masters,13,Zuko,"[Surprised. Shot cuts to an aerial shot of the courtyard.] He must have lied to protect them, so no one else would hunt them.","He must have lied to protect them, so no one else would hunt them.",John O'Bryan,Giancarlo Volpe,9.2 +11737,11737,Fire,3,The Firebending Masters,13,Aang,"[Cut to Aang.] All this time, I thought firebending was destruction. Since I hurt Katara, I've been too afraid and hesitant. But now I know what it really is ... it's energy, and life. [He smiles.]","All this time, I thought firebending was destruction. Since I hurt Katara, I've been too afraid and hesitant. But now I know what it really is ... it's energy, and life.",John O'Bryan,Giancarlo Volpe,9.2 +11738,11738,Fire,3,The Firebending Masters,13,Zuko,"Yeah. It's like the Sun, [He curls his hand into a fist.] but inside of you. Do you guys realize this?","Yeah. It's like the Sun, but inside of you. Do you guys realize this?",John O'Bryan,Giancarlo Volpe,9.2 +11739,11739,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[Smiling.] Well, our civilization is called the Sun Warriors ... so yeah.","Well, our civilization is called the Sun Warriors ... so yeah.",John O'Bryan,Giancarlo Volpe,9.2 +11740,11740,Fire,3,The Firebending Masters,13,Zuko,"That's why my firebending was so weak before. Because for so many years, hunting you [Turns toward Aang as screen zooms out to show Aang.] was my drive ... it was my purpose. [Aang turns toward Zuko as well.] So when I joined you, I lost sight of my inner fire. But now, I have a new drive. [Cut to Zuko's face as screen zooms in.] I have to help you defeat my father and restore balance to the world.","That's why my firebending was so weak before. Because for so many years, hunting you was my drive ... it was my purpose. So when I joined you, I lost sight of my inner fire. But now, I have a new drive. I have to help you defeat my father and restore balance to the world.",John O'Bryan,Giancarlo Volpe,9.2 +11741,11741,Fire,3,The Firebending Masters,13,Scene Description,"Zuko delivers two fire blasts more powerful than in the Western Air Temple. Aang also bends a similar blast. Cut to Aang's face, as he grins at his success. Cut to both of them, who walk toward each other, smiling.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11742,11742,Fire,3,The Firebending Masters,13,Sun Warrior chief,"[He walks toward the two and become serious.] Now that you have learned the secrets, and you know about our tribe's existence, [He stops walking.] we have no choice but to imprison you here forever. [Cut to the two, who are shocked, before cutting back to the smiling chief.] Just kidding. [Cut to the two as they look relieved. The chief's expression becomes serious again.] But seriously, don't tell anyone!","Now that you have learned the secrets, and you know about our tribe's existence, we have no choice but to imprison you here forever. Just kidding. But seriously, don't tell anyone!",John O'Bryan,Giancarlo Volpe,9.2 +11743,11743,Fire,3,The Firebending Masters,13,Scene Description,Scene changes to the upside-down pagodas in the Western Air Temple.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11744,11744,Fire,3,The Firebending Masters,13,Aang,"[Cut to Aang and Zuko demonstrating the Dancing Dragon to the rest of Team Avatar and friends.] With this technique the dragons showed us, Zuko and I will be unstoppable.","With this technique the dragons showed us, Zuko and I will be unstoppable.",John O'Bryan,Giancarlo Volpe,9.2 +11745,11745,Fire,3,The Firebending Masters,13,Scene Description,The two get into their final postures and Team Avatar applauds.,NA,John O'Bryan,Giancarlo Volpe,9.2 +11746,11746,Fire,3,The Firebending Masters,13,Sokka,"Yeah, that's a great dance you two learned there.","Yeah, that's a great dance you two learned there.",John O'Bryan,Giancarlo Volpe,9.2 +11747,11747,Fire,3,The Firebending Masters,13,Zuko,It's not a dance. It's a firebending form.,It's not a dance. It's a firebending form.,John O'Bryan,Giancarlo Volpe,9.2 +11748,11748,Fire,3,The Firebending Masters,13,Sokka,"[Cut to Sokka, as he moves his fingers in a dancing manner.] We'll just tap-dance our way to victory over the Fire Lord.",We'll just tap-dance our way to victory over the Fire Lord.,John O'Bryan,Giancarlo Volpe,9.2 +11749,11749,Fire,3,The Firebending Masters,13,Zuko,[Walks toward Sokka.] It's a sacred form that happens to be thousands of years old!,It's a sacred form that happens to be thousands of years old!,John O'Bryan,Giancarlo Volpe,9.2 +11750,11750,Fire,3,The Firebending Masters,13,Katara,"Oh, yeah? What's your little form called?","Oh, yeah? What's your little form called?",John O'Bryan,Giancarlo Volpe,9.2 +11751,11751,Fire,3,The Firebending Masters,13,Zuko,[Embarrassed.] The Dancing Dragon.,The Dancing Dragon.,John O'Bryan,Giancarlo Volpe,9.2 +11752,11752,Fire,3,The Firebending Masters,13,Scene Description,"Team Avatar laughs, and the shot cuts to Zuko who shuts his eyes and cringes in embarrassment. Fade to credits.",NA,John O'Bryan,Giancarlo Volpe,9.2 +11753,11753,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,The scene opens to the Western Air Temple at nightfall. Zuko is pouring tea to give to the members of Team Avatar.,NA,May Chan,Joaquim Dos Santos,8.7 +11754,11754,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Cut to a tray full of tea cups with Zuko's hand holding a kettle and filling up the empty cups.] No one can make tea like Uncle [Camera pans up to Zuko's face.], but hopefully I learned a thing or two. Would you like to hear Uncle's favorite tea joke?","No one can make tea like Uncle , but hopefully I learned a thing or two. Would you like to hear Uncle's favorite tea joke?",May Chan,Joaquim Dos Santos,8.7 +11755,11755,Fire,3,"The Boiling Rock, Part 1",14,Katara,Sure. [Cut to an overhead of the group sitting around a fire.],Sure.,May Chan,Joaquim Dos Santos,8.7 +11756,11756,Fire,3,"The Boiling Rock, Part 1",14,Aang,I like jokes.,I like jokes.,May Chan,Joaquim Dos Santos,8.7 +11757,11757,Fire,3,"The Boiling Rock, Part 1",14,Toph,Bring it!,Bring it!,May Chan,Joaquim Dos Santos,8.7 +11758,11758,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Okay. [Serves tea to The Duke and Haru and stands up with his tray.] Well, I can't remember how it starts, but the punch line [The boys help themselves to the tea.] is ""Leaf me alone, I'm bushed!"" [No response.] Well, it's funnier when Uncle tells it.","Okay. Well, I can't remember how it starts, but the punch line is ""Leaf me alone, I'm bushed!"" Well, it's funnier when Uncle tells it.",May Chan,Joaquim Dos Santos,8.7 +11759,11759,Fire,3,"The Boiling Rock, Part 1",14,Katara,Right ... maybe that's because he remembers the whole thing.,Right ... maybe that's because he remembers the whole thing.,May Chan,Joaquim Dos Santos,8.7 +11760,11760,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Everyone else laughs. Zuko smiles a little.,NA,May Chan,Joaquim Dos Santos,8.7 +11761,11761,Fire,3,"The Boiling Rock, Part 1",14,Toph,It's nice to get a chance to relax a little. It hardly ever happens.,It's nice to get a chance to relax a little. It hardly ever happens.,May Chan,Joaquim Dos Santos,8.7 +11762,11762,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Zuko hands tea to Teo and Toph. He subsequently approaches Sokka.,NA,May Chan,Joaquim Dos Santos,8.7 +11763,11763,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Hey, can I talk to you for a second? [Stands up and walks out.]","Hey, can I talk to you for a second?",May Chan,Joaquim Dos Santos,8.7 +11764,11764,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Zuko sets down the tray of tea. The camera switches to a shot of him and Sokka walking away from where the rest of the group is gathered.,NA,May Chan,Joaquim Dos Santos,8.7 +11765,11765,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"So, what's up? [Appa wakes up and looks as they walk past him.]","So, what's up?",May Chan,Joaquim Dos Santos,8.7 +11766,11766,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"If someone was captured by the Fire Nation, where would they be taken?","If someone was captured by the Fire Nation, where would they be taken?",May Chan,Joaquim Dos Santos,8.7 +11767,11767,Fire,3,"The Boiling Rock, Part 1",14,Zuko,What do you mean? Who was captured?,What do you mean? Who was captured?,May Chan,Joaquim Dos Santos,8.7 +11768,11768,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"When the invasion plan failed, some of our troops were taken. I just want to know where they might be.","When the invasion plan failed, some of our troops were taken. I just want to know where they might be.",May Chan,Joaquim Dos Santos,8.7 +11769,11769,Fire,3,"The Boiling Rock, Part 1",14,Zuko,I can't tell you.,I can't tell you.,May Chan,Joaquim Dos Santos,8.7 +11770,11770,Fire,3,"The Boiling Rock, Part 1",14,Sokka,What? Why not?,What? Why not?,May Chan,Joaquim Dos Santos,8.7 +11771,11771,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Trust me. Knowing would just make you feel worse. [Turns to leave, but is stopped by Sokka.]",Trust me. Knowing would just make you feel worse.,May Chan,Joaquim Dos Santos,8.7 +11772,11772,Fire,3,"The Boiling Rock, Part 1",14,Sokka,It's my dad. He was captured too. I need to know what I put him through.,It's my dad. He was captured too. I need to know what I put him through.,May Chan,Joaquim Dos Santos,8.7 +11773,11773,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"It's not good, Sokka.","It's not good, Sokka.",May Chan,Joaquim Dos Santos,8.7 +11774,11774,Fire,3,"The Boiling Rock, Part 1",14,Sokka,Please.,Please.,May Chan,Joaquim Dos Santos,8.7 +11775,11775,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"My guess is, they were taken to the Boiling Rock.","My guess is, they were taken to the Boiling Rock.",May Chan,Joaquim Dos Santos,8.7 +11776,11776,Fire,3,"The Boiling Rock, Part 1",14,Sokka,What's that?,What's that?,May Chan,Joaquim Dos Santos,8.7 +11777,11777,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"The highest security prison in the Fire Nation. [Sokka looks at him, horrified.] It's on an island in the middle of a boiling lake. It's inescapable.",The highest security prison in the Fire Nation. It's on an island in the middle of a boiling lake. It's inescapable.,May Chan,Joaquim Dos Santos,8.7 +11778,11778,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"So, where is this place?","So, where is this place?",May Chan,Joaquim Dos Santos,8.7 +11779,11779,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Why do you need to know? What are you planning?,Why do you need to know? What are you planning?,May Chan,Joaquim Dos Santos,8.7 +11780,11780,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Nothing. [Pauses for a moment.] Boy, you're so paranoid.","Nothing. Boy, you're so paranoid.",May Chan,Joaquim Dos Santos,8.7 +11781,11781,Fire,3,"The Boiling Rock, Part 1",14,Zuko,It's in the middle of a volcano between here and the Fire Nation. You guys actually flew right past it on your way here.,It's in the middle of a volcano between here and the Fire Nation. You guys actually flew right past it on your way here.,May Chan,Joaquim Dos Santos,8.7 +11782,11782,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Thanks, Zuko. [Yawns.] Just knowing makes me feel better.","Thanks, Zuko. Just knowing makes me feel better.",May Chan,Joaquim Dos Santos,8.7 +11783,11783,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Sarcastically.] Yeah, I'm sure it does.","Yeah, I'm sure it does.",May Chan,Joaquim Dos Santos,8.7 +11784,11784,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Fade to later that night. With everyone asleep, Sokka sneaks away from everyone. He sighs and almost steps on Momo, narrowly avoiding tripping over him and waking him up. He climbs onto Appa, who awakes.",NA,May Chan,Joaquim Dos Santos,8.7 +11785,11785,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[To Appa.] Shhh.,Shhh.,May Chan,Joaquim Dos Santos,8.7 +11786,11786,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Appa goes back to sleep, as Sokka climbs on top of him. However, as he climbs up, he notices Zuko is already in the saddle with his arms crossed.",NA,May Chan,Joaquim Dos Santos,8.7 +11787,11787,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Not up to anything, huh?","Not up to anything, huh?",May Chan,Joaquim Dos Santos,8.7 +11788,11788,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Falls off Appa, his bag's contents fall out.] Fine, you caught me. I'm gonna rescue my dad. You happy now?","Fine, you caught me. I'm gonna rescue my dad. You happy now?",May Chan,Joaquim Dos Santos,8.7 +11789,11789,Fire,3,"The Boiling Rock, Part 1",14,Zuko,I'm never happy.,I'm never happy.,May Chan,Joaquim Dos Santos,8.7 +11790,11790,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Picking up the fallen items.] Look, I have to do this. The invasion plan was my idea, it was my decision to stay when things were going wrong. [Zuko jumps off of Appa.] It's my mistake, and it's my job to fix it. I have to regain my honor. You can't stop me, Zuko. [Pushes Zuko aside and begins to climb up Appa on Appa's saddle.]","Look, I have to do this. The invasion plan was my idea, it was my decision to stay when things were going wrong. It's my mistake, and it's my job to fix it. I have to regain my honor. You can't stop me, Zuko.",May Chan,Joaquim Dos Santos,8.7 +11791,11791,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"You need to regain your honor? Believe me, I get it. I'm going with you.","You need to regain your honor? Believe me, I get it. I'm going with you.",May Chan,Joaquim Dos Santos,8.7 +11792,11792,Fire,3,"The Boiling Rock, Part 1",14,Sokka,No. I have to do this alone.,No. I have to do this alone.,May Chan,Joaquim Dos Santos,8.7 +11793,11793,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"How are you going to get there? On Appa? Last time I checked, prisons don't have bison daycares. [Sokka stops climbing, sighs, and looks back at Zuko.] We'll take my war balloon. [They walk off to the war balloon.]","How are you going to get there? On Appa? Last time I checked, prisons don't have bison daycares. We'll take my war balloon.",May Chan,Joaquim Dos Santos,8.7 +11794,11794,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Cut to Appa and Momo, still sleeping at sunrise. The Duke gives Appa some hay. Katara notices that Momo is holding a note.",NA,May Chan,Joaquim Dos Santos,8.7 +11795,11795,Fire,3,"The Boiling Rock, Part 1",14,Toph,What does it say?,What does it say?,May Chan,Joaquim Dos Santos,8.7 +11796,11796,Fire,3,"The Boiling Rock, Part 1",14,Katara,"""Need meat. Gone fishing. Back in a few days. Sokka and Zuko."" [As she says this, Aang yawns and turns around to lie back down.] One more thing. ""Aang, practice your firebending while I'm gone. Do twenty sets of fire fists and ten hot squats every time you hear a badgerfrog croak. Zuko.""","""Need meat. Gone fishing. Back in a few days. Sokka and Zuko."" One more thing. ""Aang, practice your firebending while I'm gone. Do twenty sets of fire fists and ten hot squats every time you hear a badgerfrog croak. Zuko.""",May Chan,Joaquim Dos Santos,8.7 +11797,11797,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"A badgerfrog croaks, waking Aang from his rest.",NA,May Chan,Joaquim Dos Santos,8.7 +11798,11798,Fire,3,"The Boiling Rock, Part 1",14,Aang,"[Sighs.] Nobody else has homework. [Stands up and walks to a spot and starts hot squatting while Katara and Toph walk away.] One hot squat, two hot squat, three hot squat, four hot squat ...","Nobody else has homework. One hot squat, two hot squat, three hot squat, four hot squat ...",May Chan,Joaquim Dos Santos,8.7 +11799,11799,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Scene cuts to Zuko and Sokka in the air in the war balloon. Zuko blasts fire into the tank to keep it moving. A moment of awkward silence between the two follows.,NA,May Chan,Joaquim Dos Santos,8.7 +11800,11800,Fire,3,"The Boiling Rock, Part 1",14,Sokka,Pretty clouds.,Pretty clouds.,May Chan,Joaquim Dos Santos,8.7 +11801,11801,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Yeah ... fluffy. [Sokka whistles.] What?,Yeah ... fluffy. What?,May Chan,Joaquim Dos Santos,8.7 +11802,11802,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"What? Oh, I didn't say anything. You know, a friend of mine actually designed these war balloons.","What? Oh, I didn't say anything. You know, a friend of mine actually designed these war balloons.",May Chan,Joaquim Dos Santos,8.7 +11803,11803,Fire,3,"The Boiling Rock, Part 1",14,Zuko,No kidding.,No kidding.,May Chan,Joaquim Dos Santos,8.7 +11804,11804,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Yep, a balloon ... but for war.","Yep, a balloon ... but for war.",May Chan,Joaquim Dos Santos,8.7 +11805,11805,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"If there's one thing my dad's good at, it's war. [Blasts more fire into the tank.]","If there's one thing my dad's good at, it's war.",May Chan,Joaquim Dos Santos,8.7 +11806,11806,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Yeah, it seems to run in the family.","Yeah, it seems to run in the family.",May Chan,Joaquim Dos Santos,8.7 +11807,11807,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Looks at Sokka, defensively.] Hey, hold on. Not everyone in my family is like that.","Hey, hold on. Not everyone in my family is like that.",May Chan,Joaquim Dos Santos,8.7 +11808,11808,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"I know, I know, you've changed.","I know, I know, you've changed.",May Chan,Joaquim Dos Santos,8.7 +11809,11809,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Downcast.] I meant my uncle. He was more of a father to me. And I really let him down.,I meant my uncle. He was more of a father to me. And I really let him down.,May Chan,Joaquim Dos Santos,8.7 +11810,11810,Fire,3,"The Boiling Rock, Part 1",14,Sokka,I think your uncle would be proud of you. Leaving your home to come help us? That's hard.,I think your uncle would be proud of you. Leaving your home to come help us? That's hard.,May Chan,Joaquim Dos Santos,8.7 +11811,11811,Fire,3,"The Boiling Rock, Part 1",14,Zuko,It wasn't that hard.,It wasn't that hard.,May Chan,Joaquim Dos Santos,8.7 +11812,11812,Fire,3,"The Boiling Rock, Part 1",14,Sokka,Really? You didn't leave behind anyone you cared about?,Really? You didn't leave behind anyone you cared about?,May Chan,Joaquim Dos Santos,8.7 +11813,11813,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Well, I did have a girlfriend. Mai.","Well, I did have a girlfriend. Mai.",May Chan,Joaquim Dos Santos,8.7 +11814,11814,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Smiles and looks at Zuko with interest.] That gloomy girl who sighs a lot?,That gloomy girl who sighs a lot?,May Chan,Joaquim Dos Santos,8.7 +11815,11815,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Smiles.] Yeah. Everyone in the Fire Nation thinks I'm a traitor. I couldn't drag her into it.,Yeah. Everyone in the Fire Nation thinks I'm a traitor. I couldn't drag her into it.,May Chan,Joaquim Dos Santos,8.7 +11816,11816,Fire,3,"The Boiling Rock, Part 1",14,Sokka,My first girlfriend turned into the moon.,My first girlfriend turned into the moon.,May Chan,Joaquim Dos Santos,8.7 +11817,11817,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Shocked for a moment. Looks up at the sky briefly, before glancing back at Sokka.] That's rough, buddy.","That's rough, buddy.",May Chan,Joaquim Dos Santos,8.7 +11818,11818,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Nightfall. Sokka is asleep, snoring loudly. Zuko continues to keep the tank full. He stops to look out in the distance.",NA,May Chan,Joaquim Dos Santos,8.7 +11819,11819,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"There it is! [Sokka awakens to see it.] There's plenty of steam to keep us covered. As long as we're quiet, we should be able to navigate through it without being caught.","There it is! There's plenty of steam to keep us covered. As long as we're quiet, we should be able to navigate through it without being caught.",May Chan,Joaquim Dos Santos,8.7 +11820,11820,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"As they enter the volcano's steam, the balloon begins losing altitude quickly.",NA,May Chan,Joaquim Dos Santos,8.7 +11821,11821,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Frantically blasting fire into the tank.] We're going down! The balloon's not working anymore! [Blasts fire up into the balloon.],We're going down! The balloon's not working anymore!,May Chan,Joaquim Dos Santos,8.7 +11822,11822,Fire,3,"The Boiling Rock, Part 1",14,Sokka,The air outside is just as hot as the air inside so we can't fly!,The air outside is just as hot as the air inside so we can't fly!,May Chan,Joaquim Dos Santos,8.7 +11823,11823,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Falls to the side as the balloon tips.] So what are we supposed to do?,So what are we supposed to do?,May Chan,Joaquim Dos Santos,8.7 +11824,11824,Fire,3,"The Boiling Rock, Part 1",14,Sokka,I don't know! Crash-landing?,I don't know! Crash-landing?,May Chan,Joaquim Dos Santos,8.7 +11825,11825,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"The balloon skids along the boiling water, splashing Sokka's hand, which he shakes while blocking his mouth to prevent himself from screaming. The balloon hits the base of the rock, ejecting the two from it.",NA,May Chan,Joaquim Dos Santos,8.7 +11826,11826,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Looking at the destroyed war balloon.] How are we gonna get off the island if the balloon won't work?,How are we gonna get off the island if the balloon won't work?,May Chan,Joaquim Dos Santos,8.7 +11827,11827,Fire,3,"The Boiling Rock, Part 1",14,Sokka,We'll figure something out! I suspected it might be a one-way ticket.,We'll figure something out! I suspected it might be a one-way ticket.,May Chan,Joaquim Dos Santos,8.7 +11828,11828,Fire,3,"The Boiling Rock, Part 1",14,Zuko,You knew this would happen and you wanted to come anyway?,You knew this would happen and you wanted to come anyway?,May Chan,Joaquim Dos Santos,8.7 +11829,11829,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Walks to the destroyed balloon.] My dad might be here! I had to come and see!,My dad might be here! I had to come and see!,May Chan,Joaquim Dos Santos,8.7 +11830,11830,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Uncle always said I never thought things through. But this ... this is just crazy!,Uncle always said I never thought things through. But this ... this is just crazy!,May Chan,Joaquim Dos Santos,8.7 +11831,11831,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Gathers parts from the balloon together.] Hey, I never wanted you to come along in the first place! And for the record, I always think things through! But my plans haven't exactly worked, so this time, I'm playing it by ear. So there. [After the hot water on the balloon burns his hand, Sokka kicks it into the water.]","Hey, I never wanted you to come along in the first place! And for the record, I always think things through! But my plans haven't exactly worked, so this time, I'm playing it by ear. So there.",May Chan,Joaquim Dos Santos,8.7 +11832,11832,Fire,3,"The Boiling Rock, Part 1",14,Zuko,What are you doing?,What are you doing?,May Chan,Joaquim Dos Santos,8.7 +11833,11833,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"It doesn't work anyway, and we don't want anyone to find it.","It doesn't work anyway, and we don't want anyone to find it.",May Chan,Joaquim Dos Santos,8.7 +11834,11834,Fire,3,"The Boiling Rock, Part 1",14,Zuko,I hope you know what you're doing. [They both turn to look at the prison.] There's no turning back now.,I hope you know what you're doing. There's no turning back now.,May Chan,Joaquim Dos Santos,8.7 +11835,11835,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Morning. Zuko and Sokka have entered the prison, and come out of a supply room filled with reserve guard uniforms. Both of them wear prison guard uniforms.",NA,May Chan,Joaquim Dos Santos,8.7 +11836,11836,Fire,3,"The Boiling Rock, Part 1",14,Zuko,I hope these disguises work.,I hope these disguises work.,May Chan,Joaquim Dos Santos,8.7 +11837,11837,Fire,3,"The Boiling Rock, Part 1",14,Sokka,We just need to lay low and find my dad as soon as possible.,We just need to lay low and find my dad as soon as possible.,May Chan,Joaquim Dos Santos,8.7 +11838,11838,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,A series of guards run by. One of them runs back and looks at them.,NA,May Chan,Joaquim Dos Santos,8.7 +11839,11839,Fire,3,"The Boiling Rock, Part 1",14,Male guard,Guards! There's a scuffle in the yard. Come on.,Guards! There's a scuffle in the yard. Come on.,May Chan,Joaquim Dos Santos,8.7 +11840,11840,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,The two go to the yard. Prisoners are gathered in a circle as the guards move through to the inside.,NA,May Chan,Joaquim Dos Santos,8.7 +11841,11841,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,I didn't do anything! I'm going back to my cell.,I didn't do anything! I'm going back to my cell.,May Chan,Joaquim Dos Santos,8.7 +11842,11842,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,"[Whips fire at him.] Stop right there, Chit Sang.","Stop right there, Chit Sang.",May Chan,Joaquim Dos Santos,8.7 +11843,11843,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Zuko tries to approach, but Sokka grabs his arm to stop him.",NA,May Chan,Joaquim Dos Santos,8.7 +11844,11844,Fire,3,"The Boiling Rock, Part 1",14,Sokka,We can't blow our cover.,We can't blow our cover.,May Chan,Joaquim Dos Santos,8.7 +11845,11845,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,I've had it with your unruly behavior!,I've had it with your unruly behavior!,May Chan,Joaquim Dos Santos,8.7 +11846,11846,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,What did I do?,What did I do?,May Chan,Joaquim Dos Santos,8.7 +11847,11847,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,He wants to know what he did. [To Zuko and Sokka.] Isn't that cute? [Gives them a look when they say nothing.],He wants to know what he did. Isn't that cute?,May Chan,Joaquim Dos Santos,8.7 +11848,11848,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Uh, very cute, sir.","Uh, very cute, sir.",May Chan,Joaquim Dos Santos,8.7 +11849,11849,Fire,3,"The Boiling Rock, Part 1",14,Sokka,Super cute.,Super cute.,May Chan,Joaquim Dos Santos,8.7 +11850,11850,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,"[Walks up to Chit Sang.] You didn't bow down when I walked by, Chit Sang!","You didn't bow down when I walked by, Chit Sang!",May Chan,Joaquim Dos Santos,8.7 +11851,11851,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,What? That's not a prison rule.,What? That's not a prison rule.,May Chan,Joaquim Dos Santos,8.7 +11852,11852,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,Do it!,Do it!,May Chan,Joaquim Dos Santos,8.7 +11853,11853,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,Make me.,Make me.,May Chan,Joaquim Dos Santos,8.7 +11854,11854,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"The bully guard walks away, but as he is leaving, he whips fire at Chit Sang. Chit Sang blocks it, and redirects it at him. The bully guard breaks the blast with a kick.",NA,May Chan,Joaquim Dos Santos,8.7 +11855,11855,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,"Tsk, tsk. Firebending is prohibited. You're going in the cooler. [Pointing at Sokka.] You! Help me take him in.","Tsk, tsk. Firebending is prohibited. You're going in the cooler. You! Help me take him in.",May Chan,Joaquim Dos Santos,8.7 +11856,11856,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Whispers to Zuko.] Meet back here in an hour. [Runs up to Chit Sang and the guard.],Meet back here in an hour.,May Chan,Joaquim Dos Santos,8.7 +11857,11857,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Back inside, Chit Sang is led to a cooler.",NA,May Chan,Joaquim Dos Santos,8.7 +11858,11858,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,The warden will deal with you soon. [Sokka closes the doors.] Can you believe this guy?,The warden will deal with you soon. Can you believe this guy?,May Chan,Joaquim Dos Santos,8.7 +11859,11859,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Playing along.] Prisoners! Am I right?,Prisoners! Am I right?,May Chan,Joaquim Dos Santos,8.7 +11860,11860,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,Ugh. Tell me about it.,Ugh. Tell me about it.,May Chan,Joaquim Dos Santos,8.7 +11861,11861,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Meal time for the guards. Zuko is getting food, noticeably the only guard wearing a helmet.",NA,May Chan,Joaquim Dos Santos,8.7 +11862,11862,Fire,3,"The Boiling Rock, Part 1",14,Male guard,"Hey, new guy! I know it's the rule to have your helmet on at all times, but this is the lounge. Relax.","Hey, new guy! I know it's the rule to have your helmet on at all times, but this is the lounge. Relax.",May Chan,Joaquim Dos Santos,8.7 +11863,11863,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"But what if there's an incident? If I'm not prepared, someone could strike me on the head.","But what if there's an incident? If I'm not prepared, someone could strike me on the head.",May Chan,Joaquim Dos Santos,8.7 +11864,11864,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,The guards laugh.,NA,May Chan,Joaquim Dos Santos,8.7 +11865,11865,Fire,3,"The Boiling Rock, Part 1",14,Female guard,"Give it a week, he'll loosen up.","Give it a week, he'll loosen up.",May Chan,Joaquim Dos Santos,8.7 +11866,11866,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Can the new guy ask you veterans a few questions about the prison?,Can the new guy ask you veterans a few questions about the prison?,May Chan,Joaquim Dos Santos,8.7 +11867,11867,Fire,3,"The Boiling Rock, Part 1",14,Female guard,"[Bluntly.] No, you can't date the female guards.","No, you can't date the female guards.",May Chan,Joaquim Dos Santos,8.7 +11868,11868,Fire,3,"The Boiling Rock, Part 1",14,Male guard,"Trust me, you don't want to. [The female guard throws a cup at him, which causes the guard sitting behind him to laugh.]","Trust me, you don't want to.",May Chan,Joaquim Dos Santos,8.7 +11869,11869,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"No, that's not it. The Boiling Rock, it holds the Fire Nation's most dangerous criminals, right? [The other guards nod.] So what about war prisoners?","No, that's not it. The Boiling Rock, it holds the Fire Nation's most dangerous criminals, right? So what about war prisoners?",May Chan,Joaquim Dos Santos,8.7 +11870,11870,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"In the yard, the warden arrives on the gondolas. Meanwhile, Sokka and the bully guard continue to stand guard by the cooler. Sokka is looking inside at Chit Sang who is shivering.",NA,May Chan,Joaquim Dos Santos,8.7 +11871,11871,Fire,3,"The Boiling Rock, Part 1",14,Sokka,It sure looks cold in there.,It sure looks cold in there.,May Chan,Joaquim Dos Santos,8.7 +11872,11872,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,That's why we call it the cooler. He won't be firebending there. [Notices someone coming; lowers his mask.] It's the warden! [He and Sokka stand to attention.] Look alive!,That's why we call it the cooler. He won't be firebending there. It's the warden! Look alive!,May Chan,Joaquim Dos Santos,8.7 +11873,11873,Fire,3,"The Boiling Rock, Part 1",14,Warden,"[Opens the cooler.] So Chit Sang, I hear you used firebending to try to escape. You should know better.","So Chit Sang, I hear you used firebending to try to escape. You should know better.",May Chan,Joaquim Dos Santos,8.7 +11874,11874,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,I wasn't trying to escape.,I wasn't trying to escape.,May Chan,Joaquim Dos Santos,8.7 +11875,11875,Fire,3,"The Boiling Rock, Part 1",14,Bully guard,He's lying! I saw it with my own eyes. [He is pushed aside by one of the warden's bodyguards.],He's lying! I saw it with my own eyes.,May Chan,Joaquim Dos Santos,8.7 +11876,11876,Fire,3,"The Boiling Rock, Part 1",14,Warden,"No one has ever, ever escaped from here. I'd sooner jump in the Boiling Lake myself than let that record fall. Don't forget it. Now go back to your shivering.","No one has ever, ever escaped from here. I'd sooner jump in the Boiling Lake myself than let that record fall. Don't forget it. Now go back to your shivering.",May Chan,Joaquim Dos Santos,8.7 +11877,11877,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Back in the yard. Zuko approaches Sokka, but does not know it is him.",NA,May Chan,Joaquim Dos Santos,8.7 +11878,11878,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Hey there, fellow guard, how goes it?","Hey there, fellow guard, how goes it?",May Chan,Joaquim Dos Santos,8.7 +11879,11879,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Lifts up his helmet's visor.] Zuko?,Zuko?,May Chan,Joaquim Dos Santos,8.7 +11880,11880,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Shhh! Listen, I asked around the lounge. There are no Water Tribe prisoners. [Lifts up his visor.] I'm afraid your father's not here.","Shhh! Listen, I asked around the lounge. There are no Water Tribe prisoners. I'm afraid your father's not here.",May Chan,Joaquim Dos Santos,8.7 +11881,11881,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"What? Are you sure, did you double-check?","What? Are you sure, did you double-check?",May Chan,Joaquim Dos Santos,8.7 +11882,11882,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Yeah, I'm sure.","Yeah, I'm sure.",May Chan,Joaquim Dos Santos,8.7 +11883,11883,Fire,3,"The Boiling Rock, Part 1",14,Sokka,No. No! [Bangs his fists against the wall in frustration.],No. No!,May Chan,Joaquim Dos Santos,8.7 +11884,11884,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"I'm really sorry, Sokka.","I'm really sorry, Sokka.",May Chan,Joaquim Dos Santos,8.7 +11885,11885,Fire,3,"The Boiling Rock, Part 1",14,Sokka,So we came all this way for nothing? I failed ... again.,So we came all this way for nothing? I failed ... again.,May Chan,Joaquim Dos Santos,8.7 +11886,11886,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Ah, [Holds his chin in thought.] what would Uncle say? [Cut to a frog-view as he looks up at the sky.] Sometimes, clouds have two sides, [Walks over to the railing.] a dark and light, and a silver lining in between. It's like a silver sandwich! [Close-up of a disinterested Sokka; voice-over.] So ... when life seems hard ... [Sokka glances to the side.] take a bite out of the silver sandwich!","Ah, what would Uncle say? Sometimes, clouds have two sides, a dark and light, and a silver lining in between. It's like a silver sandwich! So ... when life seems hard ... take a bite out of the silver sandwich!",May Chan,Joaquim Dos Santos,8.7 +11887,11887,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Sokka's eyes widen when he notices something; close-up of his cheerful expression as he gets up. Cut to a frontal shot of Zuko while Sokka runs up to grab the railing next to him, excitedly looking down to the yard below.",NA,May Chan,Joaquim Dos Santos,8.7 +11888,11888,Fire,3,"The Boiling Rock, Part 1",14,Sokka,Maybe we haven't failed after all!,Maybe we haven't failed after all!,May Chan,Joaquim Dos Santos,8.7 +11889,11889,Fire,3,"The Boiling Rock, Part 1",14,Zuko,That's the spirit! [Folds his arms.] I can't believe that worked. [Looks down.] I didn't even know what I was saying.,That's the spirit! I can't believe that worked. I didn't even know what I was saying.,May Chan,Joaquim Dos Santos,8.7 +11890,11890,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"No, what you said made no sense at all. But look ... [As he points, the camera shifts to an overhead view of the yard, before rapidly zooming in on a dejected-looking Suki.] It's Suki!","No, what you said made no sense at all. But look ... It's Suki!",May Chan,Joaquim Dos Santos,8.7 +11891,11891,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Suki, sitting in the prison yard in prison garb, looks up at hearing the continuous ringing of a bell.",NA,May Chan,Joaquim Dos Santos,8.7 +11892,11892,Fire,3,"The Boiling Rock, Part 1",14,Guard,"[Voice-over.] Prisoners, [Suki gets up.] back in your cells!","Prisoners, back in your cells!",May Chan,Joaquim Dos Santos,8.7 +11893,11893,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Cut to a view of the prison yard from ground level as the prisoners start to walk back inside. Cut to a frontal shot of Zuko and Sokka. The latter's eyes are now rapidly blinking pink hearts, while Zuko gives him a conspicuous look. Sokka does not pay attention and lowers the visor of his helmet with a smile before dashing out of the scene with a surprised Zuko quicking turning his head and looking after him. Cut to the prisoners' housing area. Camera slowly pans to show a guard mopping the floor and another one doing his rounds. Cut to Suki lying on her bed and staring at the ceiling in sadness. The door to her cell opens and closes, illuminating her face as her eyes turn to the door. Cut to a further off side-shot of Sokka entering Suki's cell.",NA,May Chan,Joaquim Dos Santos,8.7 +11894,11894,Fire,3,"The Boiling Rock, Part 1",14,Suki,[Sits up; aggressively.] What is it? Did I do something wrong?,What is it? Did I do something wrong?,May Chan,Joaquim Dos Santos,8.7 +11895,11895,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Crosses arms.] You mean you don't recognize me?,You mean you don't recognize me?,May Chan,Joaquim Dos Santos,8.7 +11896,11896,Fire,3,"The Boiling Rock, Part 1",14,Suki,[Close-up. She averts her eyes; bitterly.] You people all look the same to me.,You people all look the same to me.,May Chan,Joaquim Dos Santos,8.7 +11897,11897,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Frontal shot; smugly.] Oh? Then maybe you'll recognize this.,Oh? Then maybe you'll recognize this.,May Chan,Joaquim Dos Santos,8.7 +11898,11898,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Sokka purses his lips and attempts smooching sounds as he leans in to kiss Suki. His lips are suddenly grasped by a hand. The camera switches to the side-shot as Suki violently shoves him against the door. Frontal shot of Sokka as he makes contact with the door, his helm flinging off in the process. He looks bewildered to Suki. Cut to a close-up of Suki, her left arm still stretched out in the move she used to push him away. Her angry expression instantly brightens.",NA,May Chan,Joaquim Dos Santos,8.7 +11899,11899,Fire,3,"The Boiling Rock, Part 1",14,Suki,Sokka! [Runs up to him; cut to a side-view.] It's you!,Sokka! It's you!,May Chan,Joaquim Dos Santos,8.7 +11900,11900,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Suki rushes to pull Sokka into an embrace. Still bewildered, he does not immediately return the gesture. Cut to a frontal shot of Sokka, Suki resting her head on his shoulder, and he mellows into the embrace, returning it in all honestly while closing his eyes. Cut to a close-up side-shot of Suki, who is tearing up out of joy.",NA,May Chan,Joaquim Dos Santos,8.7 +11901,11901,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[They both stand up, not releasing each other.] The other Kyoshi Warriors, are they here?","The other Kyoshi Warriors, are they here?",May Chan,Joaquim Dos Santos,8.7 +11902,11902,Fire,3,"The Boiling Rock, Part 1",14,Suki,No. I don't know where they are. They locked me in here because I'm the leader.,No. I don't know where they are. They locked me in here because I'm the leader.,May Chan,Joaquim Dos Santos,8.7 +11903,11903,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Places his right hand on her left cheek.] Well, you won't be here for long. I'm busting you out.","Well, you won't be here for long. I'm busting you out.",May Chan,Joaquim Dos Santos,8.7 +11904,11904,Fire,3,"The Boiling Rock, Part 1",14,Suki,[Frontal shot.] I'm so glad [Places her hand over Sokka's on her face and closes her eyes.] to see you Sokka. [Opens them again.] I knew you'd come.,I'm so glad to see you Sokka. I knew you'd come.,May Chan,Joaquim Dos Santos,8.7 +11905,11905,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Cut to a side-shot of the now-reunited couple as they gaze lovingly at each other. They release hands, placing them on the other's arms, and lean in to kiss; Suki throws her arms around Sokka's neck. Cut to a close-up frontal shot of Zuko standing guard outside the cell. He suddenly looks to his right. Cut to a further off shot, showing the entire hallway, revealing that the sound that drew Zuko's attention was a guard ascending nearby stairs. He taps on the cell door to get Sokka and Suki's attention. Cut to inside the cell where the couple stops kissing, Sokka casting a suspicious look to the door. Cut back to outside the cell, where the female guard approaches Zuko, who is standing in front of the cell door, his arms crossed behind his back. He turns to her as she pulls up next to him.",NA,May Chan,Joaquim Dos Santos,8.7 +11906,11906,Fire,3,"The Boiling Rock, Part 1",14,Female guard,Excuse me. [Cut to a shot from behind Zuko.] I need to get into that cell.,Excuse me. I need to get into that cell.,May Chan,Joaquim Dos Santos,8.7 +11907,11907,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Shot from over the guard's shoulder.] No, you can't go in there! [Looks at the prison cell; unsure.] The lights are out. [Points at the door.] The prisoner could sneak up on you.","No, you can't go in there! The lights are out. The prisoner could sneak up on you.",May Chan,Joaquim Dos Santos,8.7 +11908,11908,Fire,3,"The Boiling Rock, Part 1",14,Female guard,"[Close-up. Cut to a side-shot; annoyed.] Step aside, fool. [She raises her left arm to push Zuko out of the way, though before she can touch him, he grabs hold of the arm and turns her around, slamming her face first against the door.] Hey, hey, what are you doing?","Step aside, fool. Hey, hey, what are you doing?",May Chan,Joaquim Dos Santos,8.7 +11909,11909,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"She turns to retaliate against Zuko's action. Cut to inside the cell, where Zuko's head can be seen through the looking hole as he is slammed against the door. The camera pans down to show Sokka and Suki pushed against the door, looking up in worry. Sokka's expression turns serious as he lowers his gaze and puts on his helmet. Cut to a close-up shot of the guard's right calf as Zuko plants his own leg behind it. Switch to a further off shot. Zuko grabs a hold of the woman's right arm and forces her to bend backward, thus averting her sight from the door that slides open. Sokka quickly exits the cell and shuffles away, his back pressed against the wall. The female guard manages to push Zuko's face up with her left arm, regaining a more leveled pose herself. Cut to a close-up side-shot of her from underneath Zuko's arms as she looks to her right.",NA,May Chan,Joaquim Dos Santos,8.7 +11910,11910,Fire,3,"The Boiling Rock, Part 1",14,Female guard,"[Instantly cut to a frontal shot of Sokka, who freezes over.] Guard, help! [He turns to look at the struggle.] I think he's an impostor! [Frontal shot of Sokka, looking unsure.] Arrest him!","Guard, help! I think he's an impostor! Arrest him!",May Chan,Joaquim Dos Santos,8.7 +11911,11911,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Cut to a view of the gondola making its way to the prison. Cut back to inside the prison as the struggle continues.,NA,May Chan,Joaquim Dos Santos,8.7 +11912,11912,Fire,3,"The Boiling Rock, Part 1",14,Female guard,Get him off me and arrest him!,Get him off me and arrest him!,May Chan,Joaquim Dos Santos,8.7 +11913,11913,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Grabs Zuko and throws him down on the floor.] You're under arrest! [Whispering.] Don't worry, I'll figure it out.","You're under arrest! Don't worry, I'll figure it out.",May Chan,Joaquim Dos Santos,8.7 +11914,11914,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Sokka leads Zuko away, followed by the female guard. Later, Zuko, now in prison garb, is in an isolated room. The door opens, revealing the warden.",NA,May Chan,Joaquim Dos Santos,8.7 +11915,11915,Fire,3,"The Boiling Rock, Part 1",14,Warden,"Well, well, well. I never thought I'd find you in here, [Smiles evilly and walks into the cell.] Prince Zuko.","Well, well, well. I never thought I'd find you in here, Prince Zuko.",May Chan,Joaquim Dos Santos,8.7 +11916,11916,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Shocked.] How did you know who I am?,How did you know who I am?,May Chan,Joaquim Dos Santos,8.7 +11917,11917,Fire,3,"The Boiling Rock, Part 1",14,Warden,How could I not? You broke my niece's heart.,How could I not? You broke my niece's heart.,May Chan,Joaquim Dos Santos,8.7 +11918,11918,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Even more shocked.] You're Mai's uncle? I never meant to hurt her.,You're Mai's uncle? I never meant to hurt her.,May Chan,Joaquim Dos Santos,8.7 +11919,11919,Fire,3,"The Boiling Rock, Part 1",14,Warden,"Quiet! You're my special prisoner now. And you'd best behave. If these criminals found out who you are, the traitor prince who let his nation down, why they'd tear you to shreds.","Quiet! You're my special prisoner now. And you'd best behave. If these criminals found out who you are, the traitor prince who let his nation down, why they'd tear you to shreds.",May Chan,Joaquim Dos Santos,8.7 +11920,11920,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Folds his arms.] So what's in it for you? Why don't you just tell my father to come collect a reward?,So what's in it for you? Why don't you just tell my father to come collect a reward?,May Chan,Joaquim Dos Santos,8.7 +11921,11921,Fire,3,"The Boiling Rock, Part 1",14,Warden,"Oh, in due time, believe me, I intend to collect. [Walks away and shuts the door.]","Oh, in due time, believe me, I intend to collect.",May Chan,Joaquim Dos Santos,8.7 +11922,11922,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Outside the cells, Sokka comes down and sees Zuko and Suki mopping floors.",NA,May Chan,Joaquim Dos Santos,8.7 +11923,11923,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Oh, good, you guys have met.","Oh, good, you guys have met.",May Chan,Joaquim Dos Santos,8.7 +11924,11924,Fire,3,"The Boiling Rock, Part 1",14,Suki,"Actually, we met a long time ago.","Actually, we met a long time ago.",May Chan,Joaquim Dos Santos,8.7 +11925,11925,Fire,3,"The Boiling Rock, Part 1",14,Zuko,We did?,We did?,May Chan,Joaquim Dos Santos,8.7 +11926,11926,Fire,3,"The Boiling Rock, Part 1",14,Suki,"[Somewhat angrily.] Yeah, you kind of burned down my village.","Yeah, you kind of burned down my village.",May Chan,Joaquim Dos Santos,8.7 +11927,11927,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Stops mopping for a second.] Oh, sorry about that. Nice to see you again.","Oh, sorry about that. Nice to see you again.",May Chan,Joaquim Dos Santos,8.7 +11928,11928,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Zuko and Suki stop mopping and hide from the other guards beside a staircase.,NA,May Chan,Joaquim Dos Santos,8.7 +11929,11929,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"So, listen, I think I have an escape plan. I checked out the coolers again, and the point of them is to keep firebenders contained, right?","So, listen, I think I have an escape plan. I checked out the coolers again, and the point of them is to keep firebenders contained, right?",May Chan,Joaquim Dos Santos,8.7 +11930,11930,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Yeah ...,Yeah ...,May Chan,Joaquim Dos Santos,8.7 +11931,11931,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"So, they're completely insulated and sealed to keep the cold in. Well, to keep the cold in, it also has to keep the heat out, right?","So, they're completely insulated and sealed to keep the cold in. Well, to keep the cold in, it also has to keep the heat out, right?",May Chan,Joaquim Dos Santos,8.7 +11932,11932,Fire,3,"The Boiling Rock, Part 1",14,Suki,"Just get to the point, Sokka.","Just get to the point, Sokka.",May Chan,Joaquim Dos Santos,8.7 +11933,11933,Fire,3,"The Boiling Rock, Part 1",14,Sokka,It's a perfect boat for getting through the boiling water.,It's a perfect boat for getting through the boiling water.,May Chan,Joaquim Dos Santos,8.7 +11934,11934,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Exchanges a worried glance with Suki.] The cooler as a boat? Are you sure?,The cooler as a boat? Are you sure?,May Chan,Joaquim Dos Santos,8.7 +11935,11935,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"I'm telling you, it'll work. [Flashes back to Sokka walking around the island; voice-over.] I walked around the perimeter. There's a blind spot between two guard towers. It's the perfect launching point. [Sokka puts a miniature boat in the water and watching it float away.] I already tested it out. We'll roll the cooler into the water and just float with the current. It'll take us straight across. As long as we don't make a sound, no one will notice. [Fade back to Sokka talking to Zuko and Suki.] And bing-bang-boom, we're home free.","I'm telling you, it'll work. I walked around the perimeter. There's a blind spot between two guard towers. It's the perfect launching point. I already tested it out. We'll roll the cooler into the water and just float with the current. It'll take us straight across. As long as we don't make a sound, no one will notice. And bing-bang-boom, we're home free.",May Chan,Joaquim Dos Santos,8.7 +11936,11936,Fire,3,"The Boiling Rock, Part 1",14,Suki,But how are you going to get the cooler out?,But how are you going to get the cooler out?,May Chan,Joaquim Dos Santos,8.7 +11937,11937,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"[From the staircase.] Yeah, how are you going to get the cooler out? [Jumps down.]","Yeah, how are you going to get the cooler out?",May Chan,Joaquim Dos Santos,8.7 +11938,11938,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Covering up.] What? We didn't ... w-we didn't say that.,What? We didn't ... w-we didn't say that.,May Chan,Joaquim Dos Santos,8.7 +11939,11939,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Yeah, you heard wrong.","Yeah, you heard wrong.",May Chan,Joaquim Dos Santos,8.7 +11940,11940,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"I heard you hatching an escape plan, and I want in.","I heard you hatching an escape plan, and I want in.",May Chan,Joaquim Dos Santos,8.7 +11941,11941,Fire,3,"The Boiling Rock, Part 1",14,Zuko,There's nothing to get in on.,There's nothing to get in on.,May Chan,Joaquim Dos Santos,8.7 +11942,11942,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Yeah, the only thing we're hatching is ... an egg?","Yeah, the only thing we're hatching is ... an egg?",May Chan,Joaquim Dos Santos,8.7 +11943,11943,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Zuko lowers his head and Suki covers her eyes while they both sigh in annoyance. Cut back to Chit Sang.,NA,May Chan,Joaquim Dos Santos,8.7 +11944,11944,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"[Unconvinced.] Okay, well, I come with you or the warden [Camera pans from a serious-looking Zuko to Suki.] hears about this egg, too.","Okay, well, I come with you or the warden hears about this egg, too.",May Chan,Joaquim Dos Santos,8.7 +11945,11945,Fire,3,"The Boiling Rock, Part 1",14,Suki,[To Sokka.] I guess we have no choice.,I guess we have no choice.,May Chan,Joaquim Dos Santos,8.7 +11946,11946,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Okay, you're in. [Handing Zuko a wrench.] Now first we need someone to unbolt the cooler, from the inside.","Okay, you're in. Now first we need someone to unbolt the cooler, from the inside.",May Chan,Joaquim Dos Santos,8.7 +11947,11947,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"Oh, I can get you inside.","Oh, I can get you inside.",May Chan,Joaquim Dos Santos,8.7 +11948,11948,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Cut to a view of the stairs as two guards look down at the prison area. Chit Sang walks out from behind the stairs and stands in a spot. Zuko pretends to be mopping and bumps into Chit Sang.,NA,May Chan,Joaquim Dos Santos,8.7 +11949,11949,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"Hey! What are you, stupid? Watch where you're going! [Shoves Zuko.]","Hey! What are you, stupid? Watch where you're going!",May Chan,Joaquim Dos Santos,8.7 +11950,11950,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Hey, you watch who you're shoving! [He pushes Chit Sang.]","Hey, you watch who you're shoving!",May Chan,Joaquim Dos Santos,8.7 +11951,11951,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,I think you mean whom I'm shoving!,I think you mean whom I'm shoving!,May Chan,Joaquim Dos Santos,8.7 +11952,11952,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,The two scuffle as the prisoners cheer them on. They break apart and Zuko goes for a punch. Chit Sang throws Zuko onto the floor.,NA,May Chan,Joaquim Dos Santos,8.7 +11953,11953,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Approaching. Yelling.] I need backup over here!,I need backup over here!,May Chan,Joaquim Dos Santos,8.7 +11954,11954,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Zuko dodges Chit Sang as he tries to elbow him. Zuko blasts fire at Chit Sang.,NA,May Chan,Joaquim Dos Santos,8.7 +11955,11955,Fire,3,"The Boiling Rock, Part 1",14,Male guard,No firebending! [Pointing.] Into the cooler!,No firebending! Into the cooler!,May Chan,Joaquim Dos Santos,8.7 +11956,11956,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Zuko is taken down and escorted away by two guards. Sokka looks at Suki, who is mopping and looks back, as he walks off. Later, Sokka opens the cooler.",NA,May Chan,Joaquim Dos Santos,8.7 +11957,11957,Fire,3,"The Boiling Rock, Part 1",14,Sokka,I can take you back to your cell if you've learned your lesson.,I can take you back to your cell if you've learned your lesson.,May Chan,Joaquim Dos Santos,8.7 +11958,11958,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"[Raises his head slightly and releases a small breath of fire to warm himself up.] Yes, I have ... completely. [Reveals all the removed bolts and screws, which makes Sokka smile.]","Yes, I have ... completely.",May Chan,Joaquim Dos Santos,8.7 +11959,11959,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Lifts his visor; whispering.] I got Suki and Chit Sang out of their cells a few minutes ago. They'll be waiting for us at the shore.,I got Suki and Chit Sang out of their cells a few minutes ago. They'll be waiting for us at the shore.,May Chan,Joaquim Dos Santos,8.7 +11960,11960,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Someone's coming! [Takes Sokka into the cooler and closes the door.],Someone's coming!,May Chan,Joaquim Dos Santos,8.7 +11961,11961,Fire,3,"The Boiling Rock, Part 1",14,Male guard,"Yeah, new arrivals coming in at dawn.","Yeah, new arrivals coming in at dawn.",May Chan,Joaquim Dos Santos,8.7 +11962,11962,Fire,3,"The Boiling Rock, Part 1",14,Female guard,Anybody interesting?,Anybody interesting?,May Chan,Joaquim Dos Santos,8.7 +11963,11963,Fire,3,"The Boiling Rock, Part 1",14,Male guard,"Nah, just the usual. Some robbers, a couple traitors, some war prisoners, [Sokka looks at Zuko with shock and worry.] though I did hear there might be a pirate.","Nah, just the usual. Some robbers, a couple traitors, some war prisoners, though I did hear there might be a pirate.",May Chan,Joaquim Dos Santos,8.7 +11964,11964,Fire,3,"The Boiling Rock, Part 1",14,Female guard,No fooling!,No fooling!,May Chan,Joaquim Dos Santos,8.7 +11965,11965,Fire,3,"The Boiling Rock, Part 1",14,Zuko,War prisoners. It could be your father.,War prisoners. It could be your father.,May Chan,Joaquim Dos Santos,8.7 +11966,11966,Fire,3,"The Boiling Rock, Part 1",14,Sokka,I know.,I know.,May Chan,Joaquim Dos Santos,8.7 +11967,11967,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"Well, what should we do? Are we going ahead with the plan or are we waiting another night?","Well, what should we do? Are we going ahead with the plan or are we waiting another night?",May Chan,Joaquim Dos Santos,8.7 +11968,11968,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"I don't know! Is it right for me to risk Suki's freedom, all of our freedom on the slim chance that my dad is gonna show up?","I don't know! Is it right for me to risk Suki's freedom, all of our freedom on the slim chance that my dad is gonna show up?",May Chan,Joaquim Dos Santos,8.7 +11969,11969,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"It's your call, Sokka.","It's your call, Sokka.",May Chan,Joaquim Dos Santos,8.7 +11970,11970,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Cut to outside the prison, night time. Suki and Chit Sang are waiting for Sokka and Zuko until they hear them above, rolling the, now detached, cooler down the hill. Suki and Chit Sang move to help.",NA,May Chan,Joaquim Dos Santos,8.7 +11971,11971,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"Took you guys long enough. [Cut briefly to two other prisoners, a male sitting on a rock, and a female waving.] This here's my girl and my best buddy, they're coming too.","Took you guys long enough. This here's my girl and my best buddy, they're coming too.",May Chan,Joaquim Dos Santos,8.7 +11972,11972,Fire,3,"The Boiling Rock, Part 1",14,Sokka,Fine. Everybody in the cooler. Let's go. [They move the cooler into the water. Cut to Sokka lifting a rock hiding his Water Tribe outfit.],Fine. Everybody in the cooler. Let's go.,May Chan,Joaquim Dos Santos,8.7 +11973,11973,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Are you sure you wanna go? You're the one who said you wanted to redeem yourself. Redeem your honor. Rescuing your dad is your chance.,Are you sure you wanna go? You're the one who said you wanted to redeem yourself. Redeem your honor. Rescuing your dad is your chance.,May Chan,Joaquim Dos Santos,8.7 +11974,11974,Fire,3,"The Boiling Rock, Part 1",14,Suki,[Approaching.] Your dad?,Your dad?,May Chan,Joaquim Dos Santos,8.7 +11975,11975,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Turns to Zuko.] If I had just cut my losses at the invasion, maybe we wouldn't be in this mess. Maybe sometimes it's just better to call it quits before you fail.","If I had just cut my losses at the invasion, maybe we wouldn't be in this mess. Maybe sometimes it's just better to call it quits before you fail.",May Chan,Joaquim Dos Santos,8.7 +11976,11976,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"No, it's not. Look Sokka, you're going to fail a lot before things work out.","No, it's not. Look Sokka, you're going to fail a lot before things work out.",May Chan,Joaquim Dos Santos,8.7 +11977,11977,Fire,3,"The Boiling Rock, Part 1",14,Sokka,[Standing.] That supposed to make me feel better?,That supposed to make me feel better?,May Chan,Joaquim Dos Santos,8.7 +11978,11978,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Sokka moves away.] Even though you'll probably fail over and over and over again ...,Even though you'll probably fail over and over and over again ...,May Chan,Joaquim Dos Santos,8.7 +11979,11979,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Seriously, not helping.","Seriously, not helping.",May Chan,Joaquim Dos Santos,8.7 +11980,11980,Fire,3,"The Boiling Rock, Part 1",14,Zuko,[Grabs Sokka's shoulder.] You have to try every time. You can't quit because you're afraid you might fail.,You have to try every time. You can't quit because you're afraid you might fail.,May Chan,Joaquim Dos Santos,8.7 +11981,11981,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"[Standing by the cooler boat.] Hey, if you two are done cuddling, can we get a move on?","Hey, if you two are done cuddling, can we get a move on?",May Chan,Joaquim Dos Santos,8.7 +11982,11982,Fire,3,"The Boiling Rock, Part 1",14,Sokka,No. I'm staying. You guys go. [To Suki.] You've been here long enough.,No. I'm staying. You guys go. You've been here long enough.,May Chan,Joaquim Dos Santos,8.7 +11983,11983,Fire,3,"The Boiling Rock, Part 1",14,Suki,"I'm not leaving without you, Sokka.","I'm not leaving without you, Sokka.",May Chan,Joaquim Dos Santos,8.7 +11984,11984,Fire,3,"The Boiling Rock, Part 1",14,Zuko,"I'm staying, too.","I'm staying, too.",May Chan,Joaquim Dos Santos,8.7 +11985,11985,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"Not me, I'm out. Let's roll, baby. [Pushes the cooler into the lake and jumps in.]","Not me, I'm out. Let's roll, baby.",May Chan,Joaquim Dos Santos,8.7 +11986,11986,Fire,3,"The Boiling Rock, Part 1",14,Sokka,We gave up our only chance of escaping. I hope we haven't just made a huge mistake.,We gave up our only chance of escaping. I hope we haven't just made a huge mistake.,May Chan,Joaquim Dos Santos,8.7 +11987,11987,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"As morning arrives, the cooler holding Chit Sang, his buddy, and his girlfriend is still within the perimeter of the prison. The current escapees are sweating as the cooler slowly floats with the current.",NA,May Chan,Joaquim Dos Santos,8.7 +11988,11988,Fire,3,"The Boiling Rock, Part 1",14,Chit Sang,"Aah, this current is so slow. I can use this to paddle. [Rips off a piece of the cooler. When he puts the piece of metal in the water, the steaming water splashes on to his hand, causing him to scream loudly.]","Aah, this current is so slow. I can use this to paddle.",May Chan,Joaquim Dos Santos,8.7 +11989,11989,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,A watchman catches notice. Two watchmen hit an alarm bell as the warden approaches.,NA,May Chan,Joaquim Dos Santos,8.7 +11990,11990,Fire,3,"The Boiling Rock, Part 1",14,Warden,Guards! Secure the perimeter and lock down the prisoners! Now!,Guards! Secure the perimeter and lock down the prisoners! Now!,May Chan,Joaquim Dos Santos,8.7 +11991,11991,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Many guards appear to lock down the prisoners as we see one guard use a fire whip to control the prisoners. Cut to the outside of the prison walls as the camera pans down to Sokka, Suki, and Zuko.",NA,May Chan,Joaquim Dos Santos,8.7 +11992,11992,Fire,3,"The Boiling Rock, Part 1",14,Sokka,The plan failed! They're caught!,The plan failed! They're caught!,May Chan,Joaquim Dos Santos,8.7 +11993,11993,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Cut back to the warden near a launcher.,NA,May Chan,Joaquim Dos Santos,8.7 +11994,11994,Fire,3,"The Boiling Rock, Part 1",14,Warden,Get the fugitives and throw them in the cooler!,Get the fugitives and throw them in the cooler!,May Chan,Joaquim Dos Santos,8.7 +11995,11995,Fire,3,"The Boiling Rock, Part 1",14,Male guard #2,"[The guard in charge of the steering wheel turns toward the warden.] Uh ... they are in a cooler, sir.","Uh ... they are in a cooler, sir.",May Chan,Joaquim Dos Santos,8.7 +11996,11996,Fire,3,"The Boiling Rock, Part 1",14,Warden,One that's bolted down and not floating in the water! This is a lockdown! We have new prisoners arriving! Everything must be completely secure!,One that's bolted down and not floating in the water! This is a lockdown! We have new prisoners arriving! Everything must be completely secure!,May Chan,Joaquim Dos Santos,8.7 +11997,11997,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"The male guard fires a large ballista bolt, catching hold of the cooler, and drags it back toward the prison.",NA,May Chan,Joaquim Dos Santos,8.7 +11998,11998,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"The gondola's moving. [Cut to a side-view of the gondola approaching the prison. Cut to a view of the prison yard as the gondola nears its stop. Cut to Sokka and Suki now in the yard.] This is it. [Cut to the gondola arriving. Cut to Sokka, Zuko and Suki in the yard.] If my dad's not there, we've risked everything for nothing.","The gondola's moving. This is it. If my dad's not there, we've risked everything for nothing.",May Chan,Joaquim Dos Santos,8.7 +11999,11999,Fire,3,"The Boiling Rock, Part 1",14,Suki,We had to. [Holds Sokka's hand.],We had to.,May Chan,Joaquim Dos Santos,8.7 +12000,12000,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Come on, come on ...","Come on, come on ...",May Chan,Joaquim Dos Santos,8.7 +12001,12001,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Cut to a large man with a tattoo and nose ring comes off the gondola first.,NA,May Chan,Joaquim Dos Santos,8.7 +12002,12002,Fire,3,"The Boiling Rock, Part 1",14,Zuko,Is that him? [Cut to Sokka.],Is that him?,May Chan,Joaquim Dos Santos,8.7 +12003,12003,Fire,3,"The Boiling Rock, Part 1",14,Sokka,My dad doesn't have a nose ring. [Cut briefly to the gondola as several men step off.] Where is he? [Cut to the gondola briefly as we see one more prisoner exit. Hakoda does not appear.] That's it? That can't be it.,My dad doesn't have a nose ring. Where is he? That's it? That can't be it.,May Chan,Joaquim Dos Santos,8.7 +12004,12004,Fire,3,"The Boiling Rock, Part 1",14,Suki,"[Comforting.] I'm sorry, Sokka.","I'm sorry, Sokka.",May Chan,Joaquim Dos Santos,8.7 +12005,12005,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"Oh, no.","Oh, no.",May Chan,Joaquim Dos Santos,8.7 +12006,12006,Fire,3,"The Boiling Rock, Part 1",14,Male guard,"Hey, you! Get off the gondola!","Hey, you! Get off the gondola!",May Chan,Joaquim Dos Santos,8.7 +12007,12007,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,Cut to the gondola as Hakoda steps out.,NA,May Chan,Joaquim Dos Santos,8.7 +12008,12008,Fire,3,"The Boiling Rock, Part 1",14,Sokka,"[Cut to Sokka, Shocked.] Dad ...",Dad ...,May Chan,Joaquim Dos Santos,8.7 +12009,12009,Fire,3,"The Boiling Rock, Part 1",14,Scene Description,"Fade to the words ""TO BE CONTINUED ..."" followed by the credits.",NA,May Chan,Joaquim Dos Santos,8.7 +12010,12010,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The episode opens to morning at the Boiling Rock, where an overhead shot of the volcano is seen. Cut to view from some point in the boiling water, where the stronghold lies ahead. Cut to view of the warden walking forward, toward the camera.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12011,12011,Fire,3,"The Boiling Rock, Part 2",15,Bodyguard,Line 'em up for the warden!,Line 'em up for the warden!,Joshua Hamilton,Ethan Spaulding,9.2 +12012,12012,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut to an overhead shot of the perimeter on which they are standing, the warden's back facing the camera. Eight prisoners are seen filing in line, one next to the other, including Hakoda. Cut to the end of the line of prisoners where the last of them line up, the camera zooming out to show Hakoda, who stands at the very end of the line on the right side. Cut to Sokka, who walks forward and lifts his guard mask.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12013,12013,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Dad ... [Exiting a stairway and passing through a lineup of guards, surprising them a bit.] Excuse me, coming through. The warden wants me over there. [Points in the warden's direction.] Sorry!","Dad ... Excuse me, coming through. The warden wants me over there. Sorry!",Joshua Hamilton,Ethan Spaulding,9.2 +12014,12014,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut to overhead shot of the perimeter, the prisoners lined up toward the right and the guards to the left of the screen. Sokka is seen inching his way behind several guards, taller than him. The warden approaches the new prisoners.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12015,12015,Fire,3,"The Boiling Rock, Part 2",15,Warden,"[Walking past the line of prisoners starting from the left.] Welcome to the Boiling Rock. I'm sure you've all heard the horrible rumors about our little island. Well, I just want to tell you that they don't have to be true, as long as you do everything I say. [He stops in front of Hakoda who looks downward; looks closer at Hakoda.] Look me in the eye when I'm talking to you.","Welcome to the Boiling Rock. I'm sure you've all heard the horrible rumors about our little island. Well, I just want to tell you that they don't have to be true, as long as you do everything I say. Look me in the eye when I'm talking to you.",Joshua Hamilton,Ethan Spaulding,9.2 +12016,12016,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,[Averting his gaze slightly off to the side; firmly.] No.,No.,Joshua Hamilton,Ethan Spaulding,9.2 +12017,12017,Fire,3,"The Boiling Rock, Part 2",15,Warden,Oh? You'd rather look at my shoes? [Angrily.] Then take a look!,Oh? You'd rather look at my shoes? Then take a look!,Joshua Hamilton,Ethan Spaulding,9.2 +12018,12018,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"He raises his left leg and drags Hakoda by his handcuffs down onto the floor. Cut to a side-view of Hakoda kneeling over, his face expressing anger. Cut to Sokka standing behind two guards as he gasps in horror. Cut to shot from below Hakoda, where the warden stands over him, keeping his foot firmly pressed on the warrior's handcuffs.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12019,12019,Fire,3,"The Boiling Rock, Part 2",15,Warden,"I know exactly who you are, Hakoda of the Water Tribe. So strong-willed. [Cut to the warden's face.] But don't worry, we'll get rid of that in time. Now look me in the eye!","I know exactly who you are, Hakoda of the Water Tribe. So strong-willed. But don't worry, we'll get rid of that in time. Now look me in the eye!",Joshua Hamilton,Ethan Spaulding,9.2 +12020,12020,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Hakoda reluctantly lifts his head to look the warden in the eye and glares hatefully at him.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12021,12021,Fire,3,"The Boiling Rock, Part 2",15,Warden,"[Calmer.] See, isn't that better? [To the other prisoners.] You will all do as I say or pay the price. You will all-","See, isn't that better? You will all do as I say or pay the price. You will all-",Joshua Hamilton,Ethan Spaulding,9.2 +12022,12022,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"He begins to walk forward only for Hakoda to lift his left handcuff slightly, tripping the warden and causing him to fall flat on the ground. Sokka stifles a chuckle, as the two guards he was standing behind rush to aid the warden.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12023,12023,Fire,3,"The Boiling Rock, Part 2",15,Bogyguard #2,"[Standing over him.] Are you okay, sir?","Are you okay, sir?",Joshua Hamilton,Ethan Spaulding,9.2 +12024,12024,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Rises and snaps angrily.] I'm fine! Get these prisoners out of my sight!,I'm fine! Get these prisoners out of my sight!,Joshua Hamilton,Ethan Spaulding,9.2 +12025,12025,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"He storms away impatiently. The two guards look at each other. Cut to wide-view of the perimeter where the prisoners file one behind the other and are led down a stairwell into what is presumed to be the prison hold. Sokka runs away off-screen. Cut to inside the prison, followed by an overhead shot of inside Hakoda's cell, where he sits on his mattress, his face buried in his arms. A sliver of light appears as the doorway to the cell is opened. Hakoda raises his head to see who has entered. Cut to side-view of the entire cell, revealing that Sokka has walked in, still dressed as a guard.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12026,12026,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Approaches his father.] Thank goodness you're okay.,Thank goodness you're okay.,Joshua Hamilton,Ethan Spaulding,9.2 +12027,12027,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"[Rises to his feet and extends his right arm out, clenched in a fist, not realizing the guard is his son in disguise; Sokka backs up a bit.] If you take one step closer, you'll see just how ""okay"" I am.","If you take one step closer, you'll see just how ""okay"" I am.",Joshua Hamilton,Ethan Spaulding,9.2 +12028,12028,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"[Lifting up his helmet mask.] Dad, it's me.","Dad, it's me.",Joshua Hamilton,Ethan Spaulding,9.2 +12029,12029,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"[Softens up and grows teary-eyed.] Sokka, [The two embrace; Sokka drops his helmet to the floor.] my son. [Amused.] You know Sokka, you should be more careful with that guard outfit on. I almost punched you in the gut.","Sokka, my son. You know Sokka, you should be more careful with that guard outfit on. I almost punched you in the gut.",Joshua Hamilton,Ethan Spaulding,9.2 +12030,12030,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"[Rubs the back of his neck sheepishly.] Yeah, I ran into that problem earlier.","Yeah, I ran into that problem earlier.",Joshua Hamilton,Ethan Spaulding,9.2 +12031,12031,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut to a dimly-lit corridor. Cut to view of a door as it slides open, revealing Chit Sang sitting inside an interrogation room, cuffed to a wooden chair. The warden walks on-screen into the room. Cut to an overhead shot of the interrogation room as he approaches the prisoner.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12032,12032,Fire,3,"The Boiling Rock, Part 2",15,Warden,"[Calmly.] Are you comfortable, Chit Sang?","Are you comfortable, Chit Sang?",Joshua Hamilton,Ethan Spaulding,9.2 +12033,12033,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"[Snaps.] If you're trying to get me to talk, forget it! [The warden appears behind him.] I'm not a squealer!","If you're trying to get me to talk, forget it! I'm not a squealer!",Joshua Hamilton,Ethan Spaulding,9.2 +12034,12034,Fire,3,"The Boiling Rock, Part 2",15,Warden,"[Cuts to close-up of his face; casually.] Chit Sang, I only asked if you were comfortable.","Chit Sang, I only asked if you were comfortable.",Joshua Hamilton,Ethan Spaulding,9.2 +12035,12035,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"[Brightly.] Well, yeah, actually I am pretty comfortable.","Well, yeah, actually I am pretty comfortable.",Joshua Hamilton,Ethan Spaulding,9.2 +12036,12036,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The warden, in a fit of anger, kicks the chair to the ground. Chit Sang falls forward off screen. Cuts to shot of him lying on the floor, still bound to the chair, his face pressed against the ground. The warden walks up to Chit Sang.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12037,12037,Fire,3,"The Boiling Rock, Part 2",15,Warden,Are you still comfortable?,Are you still comfortable?,Joshua Hamilton,Ethan Spaulding,9.2 +12038,12038,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,No.,No.,Joshua Hamilton,Ethan Spaulding,9.2 +12039,12039,Fire,3,"The Boiling Rock, Part 2",15,Warden,I know you and your cronies are not smart enough to come up with that little escape plan. So you're gonna tell me ... [Leans in closer to Chit Sang.] who is?,I know you and your cronies are not smart enough to come up with that little escape plan. So you're gonna tell me ... who is?,Joshua Hamilton,Ethan Spaulding,9.2 +12040,12040,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The warden exits the room. Cut to view of the room, as the two guards hoist the chair upward and set it on the ground. The guard on Chit Sang's left walks over to the doorway and slides the door to the cell closed. Cut to shot of the prison courtyard. Cut to shot of outside Hakoda's cell where Sokka can be seen looking through the open slit in the cell door, averting his eyes in different directions.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12041,12041,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[To Hakoda.] So where's Bato? [Cut to inside the prison cell; Sokka turns away from the door.] Where's everyone else from the invasion?,So where's Bato? Where's everyone else from the invasion?,Joshua Hamilton,Ethan Spaulding,9.2 +12042,12042,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"The others are being held at a prison near the Fire Nation palace. They singled me out as their leader and sent me here. [Sokka comes by his father and sits down.] But before I left, I met some young women who said they knew you. The ... Oshinama Fighters?","The others are being held at a prison near the Fire Nation palace. They singled me out as their leader and sent me here. But before I left, I met some young women who said they knew you. The ... Oshinama Fighters?",Joshua Hamilton,Ethan Spaulding,9.2 +12043,12043,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Smiles.] You mean the Kyoshi Warriors?,You mean the Kyoshi Warriors?,Joshua Hamilton,Ethan Spaulding,9.2 +12044,12044,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,That's right.,That's right.,Joshua Hamilton,Ethan Spaulding,9.2 +12045,12045,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Their leader Suki is here and she's gonna escape with us.,Their leader Suki is here and she's gonna escape with us.,Joshua Hamilton,Ethan Spaulding,9.2 +12046,12046,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,[Lays a hand on Sokka's shoulder.] Good. We'll need all the help we can get.,Good. We'll need all the help we can get.,Joshua Hamilton,Ethan Spaulding,9.2 +12047,12047,Fire,3,"The Boiling Rock, Part 2",15,Sokka,And you know Prince Zuko?,And you know Prince Zuko?,Joshua Hamilton,Ethan Spaulding,9.2 +12048,12048,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"The son of the Fire Lord? I don't know him, but I know of him.","The son of the Fire Lord? I don't know him, but I know of him.",Joshua Hamilton,Ethan Spaulding,9.2 +12049,12049,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Well, he's here too.","Well, he's here too.",Joshua Hamilton,Ethan Spaulding,9.2 +12050,12050,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,[Crosses his arms angrily.] Sounds like a major problem.,Sounds like a major problem.,Joshua Hamilton,Ethan Spaulding,9.2 +12051,12051,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Actually, he's on our side now. [Cut to Hakoda, who gives his son a suspicious look.] I know. I had the same reaction. After all he's done, it was hard to trust him. But he's really proven himself, and I never would've found you without his help. [Hakoda nods his head at Sokka, indicating that he understands.]","Actually, he's on our side now. I know. I had the same reaction. After all he's done, it was hard to trust him. But he's really proven himself, and I never would've found you without his help.",Joshua Hamilton,Ethan Spaulding,9.2 +12052,12052,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"So, do you have a plan?","So, do you have a plan?",Joshua Hamilton,Ethan Spaulding,9.2 +12053,12053,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"[Downcast.] We had one, but some of the other prisoners got involved and ruined it. [Leans forward and rests his face in his arms.] I dunno if there's another way off this island.","We had one, but some of the other prisoners got involved and ruined it. I dunno if there's another way off this island.",Joshua Hamilton,Ethan Spaulding,9.2 +12054,12054,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"[Smiles and pats a hand on Sokka's back.] Sokka, there's no prison in the world that can hold two Water Tribe geniuses.","Sokka, there's no prison in the world that can hold two Water Tribe geniuses.",Joshua Hamilton,Ethan Spaulding,9.2 +12055,12055,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Then we'd better find two.,Then we'd better find two.,Joshua Hamilton,Ethan Spaulding,9.2 +12056,12056,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Hakoda laughs. Sokka chuckles nervously. Cut to a ground level shot of inside the prison hold. Sokka approaches a cell door and averts his gaze alertly. He lifts his helmet mask and peers into the slit of a cell doorway.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12057,12057,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"[In a hushed voice.] Zuko, are you there?","Zuko, are you there?",Joshua Hamilton,Ethan Spaulding,9.2 +12058,12058,Fire,3,"The Boiling Rock, Part 2",15,Zuko,[A view of Zuko's eyes appears in the slit from inside the cell.] I'm here.,I'm here.,Joshua Hamilton,Ethan Spaulding,9.2 +12059,12059,Fire,3,"The Boiling Rock, Part 2",15,Sokka,I just got done talking to my dad. We came up with an escape plan together.,I just got done talking to my dad. We came up with an escape plan together.,Joshua Hamilton,Ethan Spaulding,9.2 +12060,12060,Fire,3,"The Boiling Rock, Part 2",15,Male guard,[Off-camera; startles Sokka.] What are you doing here?,What are you doing here?,Joshua Hamilton,Ethan Spaulding,9.2 +12061,12061,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Sokka turns around, pulling down his helmet mask. The camera shifts to reveal two guards standing on the stairwell behind him. Cut to shot from in between the two guards.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12062,12062,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Pointing to the cell and trying to act gruff.] I was just telling this dirty lowlife what I think of him!,I was just telling this dirty lowlife what I think of him!,Joshua Hamilton,Ethan Spaulding,9.2 +12063,12063,Fire,3,"The Boiling Rock, Part 2",15,Male guard,"Well, you'll have to do that later. He's coming with us.","Well, you'll have to do that later. He's coming with us.",Joshua Hamilton,Ethan Spaulding,9.2 +12064,12064,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Puzzled.] Why?,Why?,Joshua Hamilton,Ethan Spaulding,9.2 +12065,12065,Fire,3,"The Boiling Rock, Part 2",15,Female guard,"[Irritated.] Because we have orders straight from the warden, that's why!","Because we have orders straight from the warden, that's why!",Joshua Hamilton,Ethan Spaulding,9.2 +12066,12066,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Could I just get ten more seconds to rough him up a bit? [Punches his palm with his fist.],Could I just get ten more seconds to rough him up a bit?,Joshua Hamilton,Ethan Spaulding,9.2 +12067,12067,Fire,3,"The Boiling Rock, Part 2",15,Female guard,"Fine, ten seconds.","Fine, ten seconds.",Joshua Hamilton,Ethan Spaulding,9.2 +12068,12068,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The two guards fold their arms. Sokka enters the cell and begins to ""rough up"" Zuko. The female guard leans against the wall, crosses her arms and shakes her head in mock disapproval.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12069,12069,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Off-camera from inside the cell.] Take that ... and this! [Punching noises come from the cell.],Take that ... and this!,Joshua Hamilton,Ethan Spaulding,9.2 +12070,12070,Fire,3,"The Boiling Rock, Part 2",15,Male guard,[Amused.] Newbie.,Newbie.,Joshua Hamilton,Ethan Spaulding,9.2 +12071,12071,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut to shot of a bundled-up mattress being held up, several blows being landed to it. Cut to shot of the cell where Sokka is seen punching the mattress which Zuko holds up, the two faking the entire scenario. Zuko shouts a few times in mock pain.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12072,12072,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"[In a hushed voice while still punching the mattress.] We have a new plan, but it's gonna need a big distraction. [Cuts to shot of Zuko who peers from behind the blanket; off camera.] Be in the yard in one hour.","We have a new plan, but it's gonna need a big distraction. Be in the yard in one hour.",Joshua Hamilton,Ethan Spaulding,9.2 +12073,12073,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,A sliver of light appears as the cell door is opened. Sokka suddenly grabs Zuko and begins to wrestle him to look convincing as the two guards enter.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12074,12074,Fire,3,"The Boiling Rock, Part 2",15,Male guard,"[Separates the two.] All right, that's enough.","All right, that's enough.",Joshua Hamilton,Ethan Spaulding,9.2 +12075,12075,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Zuko is escorted out of the cell by the guards while Sokka remains behind. Cut to an overhead shot of a hallway, the camera shifting downward to show Zuko being dragged.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12076,12076,Fire,3,"The Boiling Rock, Part 2",15,Zuko,[Voice-over.] What are you doing? Where are you taking me? [He is thrown into a chair in an interrogation room.] I didn't do anything wrong!,What are you doing? Where are you taking me? I didn't do anything wrong!,Joshua Hamilton,Ethan Spaulding,9.2 +12077,12077,Fire,3,"The Boiling Rock, Part 2",15,Mai,"Come on, [Zuko looks to the source of the voice.] Zuko. [Emerges from the corner of the room; annoyed.] We all know that's a lie.","Come on, Zuko. We all know that's a lie.",Joshua Hamilton,Ethan Spaulding,9.2 +12078,12078,Fire,3,"The Boiling Rock, Part 2",15,Zuko,[Shocked.] Mai!,Mai!,Joshua Hamilton,Ethan Spaulding,9.2 +12079,12079,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut to shot of the entire cell, Zuko still sitting on the floor with Mai standing over him. The cell door is open, with at least one guard patrolling it from outside. Cut to view of prison hold before switching to an upside-down shot of the warden sliding open another cell door and entering the room.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12080,12080,Fire,3,"The Boiling Rock, Part 2",15,Warden,How is he?,How is he?,Joshua Hamilton,Ethan Spaulding,9.2 +12081,12081,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Cut to right-side up shot of the two guards holding Chit Sang upside-down in the chair. Chit Sang's face is red and strained.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12082,12082,Fire,3,"The Boiling Rock, Part 2",15,Bodyguard #2,I think he's ready to talk.,I think he's ready to talk.,Joshua Hamilton,Ethan Spaulding,9.2 +12083,12083,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"They toss chair the chair forward toward the warden back to a normal position. Chit Sang inhales deeply a few times, his face slowly returning to normal color, sweat dripping down his face.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12084,12084,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Approaches him from behind.] Have you had enough time to think about what I asked?,Have you had enough time to think about what I asked?,Joshua Hamilton,Ethan Spaulding,9.2 +12085,12085,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,Yes.,Yes.,Joshua Hamilton,Ethan Spaulding,9.2 +12086,12086,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Eager.] And?,And?,Joshua Hamilton,Ethan Spaulding,9.2 +12087,12087,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,You're right. There was another person involved in the escape plan.,You're right. There was another person involved in the escape plan.,Joshua Hamilton,Ethan Spaulding,9.2 +12088,12088,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Places his hand on Chit Sang's shoulder.] Who?,Who?,Joshua Hamilton,Ethan Spaulding,9.2 +12089,12089,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,It's a guy who's disguised like a prison guard. Only he's not a prison guard. He's the mastermind. He came up with the plan.,It's a guy who's disguised like a prison guard. Only he's not a prison guard. He's the mastermind. He came up with the plan.,Joshua Hamilton,Ethan Spaulding,9.2 +12090,12090,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The warden smiles slyly, pats Chit Sang on the head, and exits. The camera focuses on Chit Sang, who maintains a cold-hard expression. The scene changes to the prison cell where Zuko sits in the chair slumped over and Mai stands over him.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12091,12091,Fire,3,"The Boiling Rock, Part 2",15,Zuko,How did you know I was here?,How did you know I was here?,Joshua Hamilton,Ethan Spaulding,9.2 +12092,12092,Fire,3,"The Boiling Rock, Part 2",15,Mai,Because I know you so well.,Because I know you so well.,Joshua Hamilton,Ethan Spaulding,9.2 +12093,12093,Fire,3,"The Boiling Rock, Part 2",15,Zuko,"But, how-","But, how-",Joshua Hamilton,Ethan Spaulding,9.2 +12094,12094,Fire,3,"The Boiling Rock, Part 2",15,Mai,"The warden's my uncle, you idiot. [Zuko sighs; Mai shows him a letter.] The truth is, I guess I don't know you. All I get is a letter? You could have least looked me in the eye when you ripped out my heart.","The warden's my uncle, you idiot. The truth is, I guess I don't know you. All I get is a letter? You could have least looked me in the eye when you ripped out my heart.",Joshua Hamilton,Ethan Spaulding,9.2 +12095,12095,Fire,3,"The Boiling Rock, Part 2",15,Zuko,I didn't mean to -,I didn't mean to -,Joshua Hamilton,Ethan Spaulding,9.2 +12096,12096,Fire,3,"The Boiling Rock, Part 2",15,Mai,"You didn't mean to? [Reading the letter.] ""Dear Mai, I'm sorry you that you have to find out this way, but I'm leaving.""","You didn't mean to? ""Dear Mai, I'm sorry you that you have to find out this way, but I'm leaving.""",Joshua Hamilton,Ethan Spaulding,9.2 +12097,12097,Fire,3,"The Boiling Rock, Part 2",15,Zuko,Stop! This isn't about you. This is about the Fire Nation!,Stop! This isn't about you. This is about the Fire Nation!,Joshua Hamilton,Ethan Spaulding,9.2 +12098,12098,Fire,3,"The Boiling Rock, Part 2",15,Mai,"[Sarcastically.] Thanks Zuko, that makes me feel all better. [Throws the letter at him.]","Thanks Zuko, that makes me feel all better.",Joshua Hamilton,Ethan Spaulding,9.2 +12099,12099,Fire,3,"The Boiling Rock, Part 2",15,Zuko,"[Stands up.] Mai, I never wanted to hurt you. But I have to do this to save my country.","Mai, I never wanted to hurt you. But I have to do this to save my country.",Joshua Hamilton,Ethan Spaulding,9.2 +12100,12100,Fire,3,"The Boiling Rock, Part 2",15,Mai,Save it? You're betraying your country!,Save it? You're betraying your country!,Joshua Hamilton,Ethan Spaulding,9.2 +12101,12101,Fire,3,"The Boiling Rock, Part 2",15,Zuko,That's not how I see it.,That's not how I see it.,Joshua Hamilton,Ethan Spaulding,9.2 +12102,12102,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut back to Mai who looks away from him sulkily and folds her arms. Cut to Suki's cell, where she is practicing her fighting moves. Sokka enters.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12103,12103,Fire,3,"The Boiling Rock, Part 2",15,Suki,"Sokka, what's going on?","Sokka, what's going on?",Joshua Hamilton,Ethan Spaulding,9.2 +12104,12104,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Places his hand on her shoulder.] I don't have much time. If I'm seen with you the guards might think something's up. [Walks over to the door and peers outside.] I just talked to my dad.,I don't have much time. If I'm seen with you the guards might think something's up. I just talked to my dad.,Joshua Hamilton,Ethan Spaulding,9.2 +12105,12105,Fire,3,"The Boiling Rock, Part 2",15,Suki,That's great.,That's great.,Joshua Hamilton,Ethan Spaulding,9.2 +12106,12106,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Yeah, and we're escaping today, on the gondola.","Yeah, and we're escaping today, on the gondola.",Joshua Hamilton,Ethan Spaulding,9.2 +12107,12107,Fire,3,"The Boiling Rock, Part 2",15,Suki,What?,What?,Joshua Hamilton,Ethan Spaulding,9.2 +12108,12108,Fire,3,"The Boiling Rock, Part 2",15,Sokka,My dad and I came up with the plan together. We're gonna commandeer the gondola [Puts both hands on her shoulders.] and we're gonna take a hostage with us so they won't cut the lines.,My dad and I came up with the plan together. We're gonna commandeer the gondola and we're gonna take a hostage with us so they won't cut the lines.,Joshua Hamilton,Ethan Spaulding,9.2 +12109,12109,Fire,3,"The Boiling Rock, Part 2",15,Suki,[Takes his hands off her shoulders.] We'll never make it onto the gondola. There's too many guards.,We'll never make it onto the gondola. There's too many guards.,Joshua Hamilton,Ethan Spaulding,9.2 +12110,12110,Fire,3,"The Boiling Rock, Part 2",15,Sokka,My dad already thought of that. He said we'll need a distraction. That's why we're gonna start a prison riot.,My dad already thought of that. He said we'll need a distraction. That's why we're gonna start a prison riot.,Joshua Hamilton,Ethan Spaulding,9.2 +12111,12111,Fire,3,"The Boiling Rock, Part 2",15,Suki,"Okay, let's say by some miracle this all works and we make it on the gondola. The warden will still just cut the lines, even if we have a captive.","Okay, let's say by some miracle this all works and we make it on the gondola. The warden will still just cut the lines, even if we have a captive.",Joshua Hamilton,Ethan Spaulding,9.2 +12112,12112,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Not if the warden is the captive. [Nearby noise occurs. Moves to look outside.] I have to go. [Suki hugs him.] I'll find you before we start the riot. [Cut to outside the cell, where he slides out of the cell.]",Not if the warden is the captive. I have to go. I'll find you before we start the riot.,Joshua Hamilton,Ethan Spaulding,9.2 +12113,12113,Fire,3,"The Boiling Rock, Part 2",15,Male guard,"Hey, you, the warden wants to see you!","Hey, you, the warden wants to see you!",Joshua Hamilton,Ethan Spaulding,9.2 +12114,12114,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Why?,Why?,Joshua Hamilton,Ethan Spaulding,9.2 +12115,12115,Fire,3,"The Boiling Rock, Part 2",15,Male guard,"I don't know, I didn't ask.","I don't know, I didn't ask.",Joshua Hamilton,Ethan Spaulding,9.2 +12116,12116,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Maybe I could schedule another time with him? How's tomorrow? [Walks off-screen.],Maybe I could schedule another time with him? How's tomorrow?,Joshua Hamilton,Ethan Spaulding,9.2 +12117,12117,Fire,3,"The Boiling Rock, Part 2",15,Male guard,He wants to see you ... now. [Sokka is escorted by two guards.],He wants to see you ... now.,Joshua Hamilton,Ethan Spaulding,9.2 +12118,12118,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Scene moves to the yard with a line-up of guards, the warden, and Chit Sang present.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12119,12119,Fire,3,"The Boiling Rock, Part 2",15,Warden,Put him in the line-up.,Put him in the line-up.,Joshua Hamilton,Ethan Spaulding,9.2 +12120,12120,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"They throw Sokka in the line-up with a bunch of other guards, now with no helmet like the rest of them. He tries hiding behind a lowly guard, but the guard pushes him away.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12121,12121,Fire,3,"The Boiling Rock, Part 2",15,Warden,"One of you is an impostor who thought he could fool me. [Chit Sang steps forward.] But now, that person is going to be in a lot of trouble. Who is it?","One of you is an impostor who thought he could fool me. But now, that person is going to be in a lot of trouble. Who is it?",Joshua Hamilton,Ethan Spaulding,9.2 +12122,12122,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Sokka's teeth start chattering, clearly nervous among the other calm guards. The camera stays on Sokka, who closes his eyes.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12123,12123,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"[Off-screen.] That's him, warden. He's the impostor! [The camera shifts to Chit Sang, who is pointing at the bully guard.]","That's him, warden. He's the impostor!",Joshua Hamilton,Ethan Spaulding,9.2 +12124,12124,Fire,3,"The Boiling Rock, Part 2",15,Bully guard,What?,What?,Joshua Hamilton,Ethan Spaulding,9.2 +12125,12125,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Cut to the warden, who smiles evilly and walks away.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12126,12126,Fire,3,"The Boiling Rock, Part 2",15,Bully guard,[Grabs Chit Sang by the shirt.] I am not! [Chit Sang just raises his hands nonchalantly in defense.] He's lying! [Another guard grabs him.] He's a liar!,I am not! He's lying! He's a liar!,Joshua Hamilton,Ethan Spaulding,9.2 +12127,12127,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The guard is taken away. Chit Sang turns and smiles slyly at Sokka, who looks on and breathes a sigh of relief. +Cut to a window. The camera pans down to the bully guard in an interrogation room surrounded by two guards. The warden stands in front of and away Chit Sang, holding his hands behind his back.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12128,12128,Fire,3,"The Boiling Rock, Part 2",15,Bully guard,I'm telling you ... it wasn't me!,I'm telling you ... it wasn't me!,Joshua Hamilton,Ethan Spaulding,9.2 +12129,12129,Fire,3,"The Boiling Rock, Part 2",15,Warden,Save your breath! I know you were working together. [Turns around and moves in closer to the guard.] You threw Chit Sang in the very cooler they used to escape. It was all part of your plan.,Save your breath! I know you were working together. You threw Chit Sang in the very cooler they used to escape. It was all part of your plan.,Joshua Hamilton,Ethan Spaulding,9.2 +12130,12130,Fire,3,"The Boiling Rock, Part 2",15,Bully guard,That was just a coincidence!,That was just a coincidence!,Joshua Hamilton,Ethan Spaulding,9.2 +12131,12131,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The door opens, someone enters.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12132,12132,Fire,3,"The Boiling Rock, Part 2",15,Bodyguard #2,"Sir, there's someone to see you.","Sir, there's someone to see you.",Joshua Hamilton,Ethan Spaulding,9.2 +12133,12133,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Angrily.] Who told you to interrupt me?,Who told you to interrupt me?,Joshua Hamilton,Ethan Spaulding,9.2 +12134,12134,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The warden turns angrily toward the door, but looks shocked and bows upon seeing who it is. Cut to show Azula standing at the door with Ty Lee behind her. All of the guards bow to her as well.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12135,12135,Fire,3,"The Boiling Rock, Part 2",15,Azula,I did.,I did.,Joshua Hamilton,Ethan Spaulding,9.2 +12136,12136,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Cut closer to Azula.] Princess Azula. [Azula and Ty Lee walk in.] Ah ... It is an honor to welcome you to the Fire Nation's most exemplary prison. [Stands up.] I didn't realize you were coming.,Princess Azula. Ah ... It is an honor to welcome you to the Fire Nation's most exemplary prison. I didn't realize you were coming.,Joshua Hamilton,Ethan Spaulding,9.2 +12137,12137,Fire,3,"The Boiling Rock, Part 2",15,Azula,[Walks in and notices the guard sitting in the chair.] Who is this?,Who is this?,Joshua Hamilton,Ethan Spaulding,9.2 +12138,12138,Fire,3,"The Boiling Rock, Part 2",15,Warden,"[Cut to the bully guard, who looks away.] He's a guard who was involved in a recent and feeble escape attempt.",He's a guard who was involved in a recent and feeble escape attempt.,Joshua Hamilton,Ethan Spaulding,9.2 +12139,12139,Fire,3,"The Boiling Rock, Part 2",15,Bully guard,[Desperately.] It wasn't me!,It wasn't me!,Joshua Hamilton,Ethan Spaulding,9.2 +12140,12140,Fire,3,"The Boiling Rock, Part 2",15,Warden,"[Angrily.] Quiet, you!","Quiet, you!",Joshua Hamilton,Ethan Spaulding,9.2 +12141,12141,Fire,3,"The Boiling Rock, Part 2",15,Azula,[Crossing her arms.] You're wasting your time. That's not one of them. [Turns and starts to leave.],You're wasting your time. That's not one of them.,Joshua Hamilton,Ethan Spaulding,9.2 +12142,12142,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The warden turns and looking surprised, and confused, looks from Azula to the guard before looking back to Azula again.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12143,12143,Fire,3,"The Boiling Rock, Part 2",15,Warden,How do you know?,How do you know?,Joshua Hamilton,Ethan Spaulding,9.2 +12144,12144,Fire,3,"The Boiling Rock, Part 2",15,Azula,[Smiles sinisterly; quietly.] Because I'm a people person. [Exits.],Because I'm a people person.,Joshua Hamilton,Ethan Spaulding,9.2 +12145,12145,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"In the hall, Sokka approaches a guard in charge of the cell doors.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12146,12146,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Hey, I just got orders. Let the prisoners out into the yard.","Hey, I just got orders. Let the prisoners out into the yard.",Joshua Hamilton,Ethan Spaulding,9.2 +12147,12147,Fire,3,"The Boiling Rock, Part 2",15,Door guard,But we're in the middle of a lockdown.,But we're in the middle of a lockdown.,Joshua Hamilton,Ethan Spaulding,9.2 +12148,12148,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Oh, okay, I'll just go tell the warden you said that. [Walks off-screen; the guard raises his mask and looks at him speechless.] I'm sure he'll be glad to hear about you undermining his authority. [Guard grows more nervous. Walks back on-screen, lifting his helmet mask.] What's your name again?","Oh, okay, I'll just go tell the warden you said that. I'm sure he'll be glad to hear about you undermining his authority. What's your name again?",Joshua Hamilton,Ethan Spaulding,9.2 +12149,12149,Fire,3,"The Boiling Rock, Part 2",15,Door guard,[Starts to sweat; horrified.] Wait! Don't tell the warden. I'm just a little confused.,Wait! Don't tell the warden. I'm just a little confused.,Joshua Hamilton,Ethan Spaulding,9.2 +12150,12150,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Hey, I'm confused too, but the warden's in a bad mood, and ... irrational, so if you ask me, it's best not to question it, and just do what he says. [Places his arm around the guard's shoulder.]","Hey, I'm confused too, but the warden's in a bad mood, and ... irrational, so if you ask me, it's best not to question it, and just do what he says.",Joshua Hamilton,Ethan Spaulding,9.2 +12151,12151,Fire,3,"The Boiling Rock, Part 2",15,Door guard,Yeah ... you're right. We're letting them out!,Yeah ... you're right. We're letting them out!,Joshua Hamilton,Ethan Spaulding,9.2 +12152,12152,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The guard opens all the doors by pulling the levers. The prisoners head for the yard. The prisoners mingle in the yard, where Sokka, Suki, and Hakoda meet.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12153,12153,Fire,3,"The Boiling Rock, Part 2",15,Sokka,This is it! We have to start a riot.,This is it! We have to start a riot.,Joshua Hamilton,Ethan Spaulding,9.2 +12154,12154,Fire,3,"The Boiling Rock, Part 2",15,Suki,Okay. But how do we do that?,Okay. But how do we do that?,Joshua Hamilton,Ethan Spaulding,9.2 +12155,12155,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,[Smiles smugly.] I'll show you. [Shoves a prisoner.],I'll show you.,Joshua Hamilton,Ethan Spaulding,9.2 +12156,12156,Fire,3,"The Boiling Rock, Part 2",15,Tough prisoner,Hey! What'd you do that for? That hurt my feelings.,Hey! What'd you do that for? That hurt my feelings.,Joshua Hamilton,Ethan Spaulding,9.2 +12157,12157,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,Aren't you mad at me?,Aren't you mad at me?,Joshua Hamilton,Ethan Spaulding,9.2 +12158,12158,Fire,3,"The Boiling Rock, Part 2",15,Tough prisoner,"Uh, well, normally I would be, but I've been learning to control my anger.","Uh, well, normally I would be, but I've been learning to control my anger.",Joshua Hamilton,Ethan Spaulding,9.2 +12159,12159,Fire,3,"The Boiling Rock, Part 2",15,Sokka,This isn't working.,This isn't working.,Joshua Hamilton,Ethan Spaulding,9.2 +12160,12160,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Suddenly, Chit Sang appears behind Sokka and puts his hand on Sokka's shoulder.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12161,12161,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"Hey you! You're lucky I didn't rat you out, [Smiles.] but my generosity comes with a price. I know you're planning another escape attempt, and I want in.","Hey you! You're lucky I didn't rat you out, but my generosity comes with a price. I know you're planning another escape attempt, and I want in.",Joshua Hamilton,Ethan Spaulding,9.2 +12162,12162,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"[Gets an idea.] Actually, we're trying to escape right now, but we need a riot. [Points to him.] You wouldn't happen to know how to start one, would you?","Actually, we're trying to escape right now, but we need a riot. You wouldn't happen to know how to start one, would you?",Joshua Hamilton,Ethan Spaulding,9.2 +12163,12163,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"A prison riot? Please. [Grabs a prisoner and lifts him in the air, bouncing him up and down.] Hey! [All the prisoners look at him.] Riot!",A prison riot? Please. Hey! Riot!,Joshua Hamilton,Ethan Spaulding,9.2 +12164,12164,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,The riot begins. Several blasts of fire go off.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12165,12165,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,[Looks shocked for a moment.] Impressive.,Impressive.,Joshua Hamilton,Ethan Spaulding,9.2 +12166,12166,Fire,3,"The Boiling Rock, Part 2",15,Tough prisoner,"Forget about controlling my anger ... [Raises his arms.] let's riot! [He is taken down by another prisoner. The riot is in full swing. Cut the floor of the yard as chaos and dust ensues everywhere. Cut to a prisoner sitting on another prisoner's shoulders, attempting to choke him. Cut to the bottom of a tower as various guards look down at the scene.]",Forget about controlling my anger ... let's riot!,Joshua Hamilton,Ethan Spaulding,9.2 +12167,12167,Fire,3,"The Boiling Rock, Part 2",15,Warden,Who let these prisoners into the yard? [Cut to the warden on a balcony.] This is supposed to be a lockdown!,Who let these prisoners into the yard? This is supposed to be a lockdown!,Joshua Hamilton,Ethan Spaulding,9.2 +12168,12168,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The door guard, who was in charge of the control room, raises his visor and looks at the warden, horrified. He puts his back against the wall and sneaks away by quickly tip-toeing and ducks to a corner. The camera cuts back to Zuko and Mai.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12169,12169,Fire,3,"The Boiling Rock, Part 2",15,Male guard #2,"Ma'am, there's a riot going on! I'm here to protect you!","Ma'am, there's a riot going on! I'm here to protect you!",Joshua Hamilton,Ethan Spaulding,9.2 +12170,12170,Fire,3,"The Boiling Rock, Part 2",15,Mai,I don't need any protection.,I don't need any protection.,Joshua Hamilton,Ethan Spaulding,9.2 +12171,12171,Fire,3,"The Boiling Rock, Part 2",15,Zuko,"[Gives a slight chuckle; proudly.] Believe me, she doesn't.","Believe me, she doesn't.",Joshua Hamilton,Ethan Spaulding,9.2 +12172,12172,Fire,3,"The Boiling Rock, Part 2",15,Male guard #2,"I'm sorry, but I'm under direct orders from your uncle to make sure nothing happens. [Zuko gives a serious look.]","I'm sorry, but I'm under direct orders from your uncle to make sure nothing happens.",Joshua Hamilton,Ethan Spaulding,9.2 +12173,12173,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Zuko blasts fire at the guard and starts to run toward the door. The guard jumps in front of Mai to shield her.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12174,12174,Fire,3,"The Boiling Rock, Part 2",15,Mai,Get off of me! [She throws the guard away from her and chases Zuko.],Get off of me!,Joshua Hamilton,Ethan Spaulding,9.2 +12175,12175,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Exiting, Zuko closes and locks the door, trapping Mai and the guard in the room. He looks at Mai through the slit in the door with regret, while she stares back in anger, before running off to join his friends. Back in the yard, he reaches everyone else and slams down another guard as the riot continues.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12176,12176,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Zuko! Good, we're all here. Now all we need to do is grab the warden, and get to the gondolas!","Zuko! Good, we're all here. Now all we need to do is grab the warden, and get to the gondolas!",Joshua Hamilton,Ethan Spaulding,9.2 +12177,12177,Fire,3,"The Boiling Rock, Part 2",15,Zuko,And how do we do that?,And how do we do that?,Joshua Hamilton,Ethan Spaulding,9.2 +12178,12178,Fire,3,"The Boiling Rock, Part 2",15,Sokka,I'm not sure.,I'm not sure.,Joshua Hamilton,Ethan Spaulding,9.2 +12179,12179,Fire,3,"The Boiling Rock, Part 2",15,Zuko,[Groans.] I thought you thought this through!,I thought you thought this through!,Joshua Hamilton,Ethan Spaulding,9.2 +12180,12180,Fire,3,"The Boiling Rock, Part 2",15,Sokka,I thought you told me it's okay not to think everything through!,I thought you told me it's okay not to think everything through!,Joshua Hamilton,Ethan Spaulding,9.2 +12181,12181,Fire,3,"The Boiling Rock, Part 2",15,Zuko,"Maybe not everything, but this is kind of important! [Rubs his forehead.]","Maybe not everything, but this is kind of important!",Joshua Hamilton,Ethan Spaulding,9.2 +12182,12182,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"Hey, uh, fellas. I think your girlfriend's taking care of it.","Hey, uh, fellas. I think your girlfriend's taking care of it.",Joshua Hamilton,Ethan Spaulding,9.2 +12183,12183,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Sokka peeks out and looks amazed as he sees Suki hop up on the heads of the rioters before jumping and flipping onto the tower. She easily defeats the first guard with a few quick jabs. Two more guards arrive. She ducks a fire blast and sweeps the first one, promptly dodges the second one's fire blast, and continues to climb the tower. She makes it up to the top and defeats the final guard with a sliding kick. She soon grabs the warden, threatening him with her fist in front of his face.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12184,12184,Fire,3,"The Boiling Rock, Part 2",15,Warden,You wouldn't dare.,You wouldn't dare.,Joshua Hamilton,Ethan Spaulding,9.2 +12185,12185,Fire,3,"The Boiling Rock, Part 2",15,Suki,"[Ties his hands together and uses his headband as a gag.] Sorry, warden. You're my prisoner now. [Slams the warden against the wall; the rest of the escapees arrive.] We've got the warden! Now let's get out of here!","Sorry, warden. You're my prisoner now. We've got the warden! Now let's get out of here!",Joshua Hamilton,Ethan Spaulding,9.2 +12186,12186,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Everyone else is out of breath.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12187,12187,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,That's some girl.,That's some girl.,Joshua Hamilton,Ethan Spaulding,9.2 +12188,12188,Fire,3,"The Boiling Rock, Part 2",15,Sokka,[Proudly.] Tell me about it.,Tell me about it.,Joshua Hamilton,Ethan Spaulding,9.2 +12189,12189,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Cut to the roof as they all make the run to the gondola.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12190,12190,Fire,3,"The Boiling Rock, Part 2",15,Suki,We're almost there!,We're almost there!,Joshua Hamilton,Ethan Spaulding,9.2 +12191,12191,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,They are stopped by guards who launch two fire blasts at them. Zuko shoves Sokka out of the way and blocks the two fire blasts. More guards appear to help.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12192,12192,Fire,3,"The Boiling Rock, Part 2",15,Zuko,"Back off! We've got the warden! [The guards see the warden on Chit Sang's shoulder, bound and gagged, and clear the way.] Let's go!",Back off! We've got the warden! Let's go!,Joshua Hamilton,Ethan Spaulding,9.2 +12193,12193,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"They continue along their path, cautiously watching the guards so they do not try any sudden moves. They arrive at the gondola. Suki opens the door.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12194,12194,Fire,3,"The Boiling Rock, Part 2",15,Suki,Everyone in!,Everyone in!,Joshua Hamilton,Ethan Spaulding,9.2 +12195,12195,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Zuko starts the gondola and kicks the handle a few times attempting to break it. He sees the guards rushing toward him and kicks the handle again and breaks it. He jumps toward the gondola while dodging guards fire blasts. Sokka grabs Zuko's hand and helps him into the gondola.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12196,12196,Fire,3,"The Boiling Rock, Part 2",15,Sokka,What are you doing?,What are you doing?,Joshua Hamilton,Ethan Spaulding,9.2 +12197,12197,Fire,3,"The Boiling Rock, Part 2",15,Zuko,I'm making it so they can't stop us.,I'm making it so they can't stop us.,Joshua Hamilton,Ethan Spaulding,9.2 +12198,12198,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Way to think ahead.,Way to think ahead.,Joshua Hamilton,Ethan Spaulding,9.2 +12199,12199,Fire,3,"The Boiling Rock, Part 2",15,Suki,We're on our way!,We're on our way!,Joshua Hamilton,Ethan Spaulding,9.2 +12200,12200,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,Wait! Who's that?,Wait! Who's that?,Joshua Hamilton,Ethan Spaulding,9.2 +12201,12201,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Azula and Ty Lee stand at the bottom of the gondola station. All the guards bow down.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12202,12202,Fire,3,"The Boiling Rock, Part 2",15,Zuko,That's a problem. It's my sister and her friend.,That's a problem. It's my sister and her friend.,Joshua Hamilton,Ethan Spaulding,9.2 +12203,12203,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Looking up at the retreating gondola, Azula suddenly snatches a pair of handcuffs from a guard's belt and runs forward. Behind her, Ty Lee jumps up and onto the cable, running along it toward the gondola. After elevating herself to the line with a fire blast, Azula uses the cuffs to attach herself to the cable and propel herself forwaard. The occupants of the gondola watch as they approach, Suki looking very grim.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12204,12204,Fire,3,"The Boiling Rock, Part 2",15,Suki,[Determined.] This is a rematch I've been waiting for.,This is a rematch I've been waiting for.,Joshua Hamilton,Ethan Spaulding,9.2 +12205,12205,Fire,3,"The Boiling Rock, Part 2",15,Zuko,Me too.,Me too.,Joshua Hamilton,Ethan Spaulding,9.2 +12206,12206,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Sokka, Suki, and Zuko climb to the top of the gondola to meet Azula and Ty Lee. Ty Lee flips into the air and lands in front of Suki, who growls and assumes a battle-ready position. Azula pulls herself up onto the roof and faces Zuko and Sokka. An overhead shot shows them all standing atop the gondola before closing in on Azula again. The Fire Nation princess assumes a battle stance and performs a slicing kick, sending blue fire at her opponents, but Zuko blocks it. Ty Lee and Suki trade blows, the latter blocking the former's attempts to use chi blocking each time. Ty Lee is forced to the edge but jumps into the gondola and comes out the other side, continuing her attacks. Zuko continues to wipe out Azula's fire blasts. Sokka draws her back to the edge with his sword. Zuko goes in for a finish, but Azula dodges Zuko's blast and stays on the gondola. She counters with a blast that goes wide, almost striking Suki and Ty Lee, who barely manage to dodge it. Meanwhile, the warden attempts to free himself while the other prisoners are distracted. A male guard watches from a telescope.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12207,12207,Fire,3,"The Boiling Rock, Part 2",15,Gondola guard,There's the warden! I see him!,There's the warden! I see him!,Joshua Hamilton,Ethan Spaulding,9.2 +12208,12208,Fire,3,"The Boiling Rock, Part 2",15,Warden,[Frees himself and runs to look out of the gondola.] Cut the line! [Chit Sang notices and grabs the warden.],Cut the line!,Joshua Hamilton,Ethan Spaulding,9.2 +12209,12209,Fire,3,"The Boiling Rock, Part 2",15,Gondola guard,He wants us to cut the line.,He wants us to cut the line.,Joshua Hamilton,Ethan Spaulding,9.2 +12210,12210,Fire,3,"The Boiling Rock, Part 2",15,Gondola guard #2,"But if we cut the line, there's no way he'll survive!","But if we cut the line, there's no way he'll survive!",Joshua Hamilton,Ethan Spaulding,9.2 +12211,12211,Fire,3,"The Boiling Rock, Part 2",15,Gondola guard,[Puts down his telescope.] He knows that.,He knows that.,Joshua Hamilton,Ethan Spaulding,9.2 +12212,12212,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The guards stop the gondola by jamming the mechanism with metal bars; the wheel screeches angrily as it grinds to a halt. The gondola rocks back and forth from the sudden stop, disrupting the combatants from their respective duels. Losing his balance, Sokka slides to the edge of the gondola, but Zuko pulls him in at the last moment. Ty Lee jumps up to the top of the wire to see what is happening.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12213,12213,Fire,3,"The Boiling Rock, Part 2",15,Ty Lee,They're about to cut the line!,They're about to cut the line!,Joshua Hamilton,Ethan Spaulding,9.2 +12214,12214,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"The guards work to cut the line. Azula notices another gondola approaching on the other wire, heading inbound.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12215,12215,Fire,3,"The Boiling Rock, Part 2",15,Azula,"[Smirks.] Then it's time to leave. [Blasts herself up.] Goodbye, Zuko. [Reaches the other gondola.]","Then it's time to leave. Goodbye, Zuko.",Joshua Hamilton,Ethan Spaulding,9.2 +12216,12216,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Ty Lee backflips to the other gondola. When she reaches it, she looks back at Sokka, Suki, and Zuko with concern, in contrast to Azula's sadistic smile. The other three jump back into the gondola.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12217,12217,Fire,3,"The Boiling Rock, Part 2",15,Zuko,They're cutting the line! The gondola's about to go!,They're cutting the line! The gondola's about to go!,Joshua Hamilton,Ethan Spaulding,9.2 +12218,12218,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,I hope this thing floats.,I hope this thing floats.,Joshua Hamilton,Ethan Spaulding,9.2 +12219,12219,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Pan down to the Boiling Lake. The line is almost entirely severed by now, but before the guards can finish the job, they are suddenly yanked away from it and pinned to the wall by stilettos.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12220,12220,Fire,3,"The Boiling Rock, Part 2",15,Gondola guard #3,What are you doing?,What are you doing?,Joshua Hamilton,Ethan Spaulding,9.2 +12221,12221,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,The camera cuts to show Mai standing near the line.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12222,12222,Fire,3,"The Boiling Rock, Part 2",15,Mai,Saving the jerk who dumped me.,Saving the jerk who dumped me.,Joshua Hamilton,Ethan Spaulding,9.2 +12223,12223,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Other guards try to attack Mai, but she dodges all their fire blasts and retaliates with her knives, pinning them all down by their wristguards. Mai rears up in front of a female guard, who stops in fear, and deploys four knives that send the two guards behind her flying, dislodging one of the bars jamming the wheel mechanism. She pulls out her three-pronged sai and pins down the last guard. Releasing the block on the line, she allows the gondola to continue in motion. Everyone looks back to see what happened.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12224,12224,Fire,3,"The Boiling Rock, Part 2",15,Sokka,Who's that?,Who's that?,Joshua Hamilton,Ethan Spaulding,9.2 +12225,12225,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Mai continues to fight off guards and turns her head to see the others.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12226,12226,Fire,3,"The Boiling Rock, Part 2",15,Zuko,[Shocked.] It's Mai!,It's Mai!,Joshua Hamilton,Ethan Spaulding,9.2 +12227,12227,Fire,3,"The Boiling Rock, Part 2",15,Azula,[Angrily.] What is she doing?,What is she doing?,Joshua Hamilton,Ethan Spaulding,9.2 +12228,12228,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Ty Lee shrugs and makes a small sound as they watch her continue to fight off guards, all of whom are helpless against her. The gondola makes it to the top of the hill. Everyone leaves. Chit Sang holds the warden and throws him back in when Hakoda points at it.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12229,12229,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"Sorry, warden. Your record is officially broken. [The warden struggles against his bindings.]","Sorry, warden. Your record is officially broken.",Joshua Hamilton,Ethan Spaulding,9.2 +12230,12230,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Cut to the others escaping over the rim of the volcano.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12231,12231,Fire,3,"The Boiling Rock, Part 2",15,Suki,"Well, we made it out. Now what?","Well, we made it out. Now what?",Joshua Hamilton,Ethan Spaulding,9.2 +12232,12232,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Sokka turns and notices Zuko standing still.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12233,12233,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Zuko, what are you doing?","Zuko, what are you doing?",Joshua Hamilton,Ethan Spaulding,9.2 +12234,12234,Fire,3,"The Boiling Rock, Part 2",15,Zuko,My sister was on that island.,My sister was on that island.,Joshua Hamilton,Ethan Spaulding,9.2 +12235,12235,Fire,3,"The Boiling Rock, Part 2",15,Sokka,"Yeah, and she's probably right behind us, so let's not stop!","Yeah, and she's probably right behind us, so let's not stop!",Joshua Hamilton,Ethan Spaulding,9.2 +12236,12236,Fire,3,"The Boiling Rock, Part 2",15,Zuko,What I mean is she must have come here somehow. [Walks up to a large hill by the sea.] There! [Pan down to a large airship.] That's our way out of here!,What I mean is she must have come here somehow. There! That's our way out of here!,Joshua Hamilton,Ethan Spaulding,9.2 +12237,12237,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Back at the prison. Mai is detained by two guards, while Azula glares at her. Ty Lee stands in the middle, looking terrified and concerned at the two.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12238,12238,Fire,3,"The Boiling Rock, Part 2",15,Azula,"Leave us alone. [The guards give the Fire Nation salute and exit. Mai raises her head a little, looking defiant.] I never expected this from you. [Cut to a side view of Mai, followed by a frontal shot of Ty Lee, who looks from one to the other, tears in her eyes, and back to Azula.] The thing I don't understand is ""Why?"". Why would you do it? You know the consequences.","Leave us alone. I never expected this from you. The thing I don't understand is ""Why?"". Why would you do it? You know the consequences.",Joshua Hamilton,Ethan Spaulding,9.2 +12239,12239,Fire,3,"The Boiling Rock, Part 2",15,Mai,I guess you just don't know people as well as you think you do. You miscalculated. I love Zuko more than I fear you.,I guess you just don't know people as well as you think you do. You miscalculated. I love Zuko more than I fear you.,Joshua Hamilton,Ethan Spaulding,9.2 +12240,12240,Fire,3,"The Boiling Rock, Part 2",15,Azula,"[Her intrigued expression contorts into one of absolute rage.] No, you miscalculated! You should have feared me more!","No, you miscalculated! You should have feared me more!",Joshua Hamilton,Ethan Spaulding,9.2 +12241,12241,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Azula angles her fingers to create lightning, and Mai readies one of her stilettos, her eyes narrowed. Before Azula can complete her attack, however, she is struck twice by Ty Lee, who chi blocks her. Cuts to Mai, blade still in hand and looking very surprised, and to Azula, who dumbfoundedly falls to the ground, paralyzed. Ty Lee seems surprised at her own actions.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12242,12242,Fire,3,"The Boiling Rock, Part 2",15,Ty Lee,"[Runs to a shocked Mai, shaking her from her stupor.] Come on! Let's get out of here!",Come on! Let's get out of here!,Joshua Hamilton,Ethan Spaulding,9.2 +12243,12243,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Mai and Ty Lee are quickly surrounded by guards and captured before they can escape.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12244,12244,Fire,3,"The Boiling Rock, Part 2",15,Azula,[Still on the ground; angrily.] You're both fools!,You're both fools!,Joshua Hamilton,Ethan Spaulding,9.2 +12245,12245,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Azula is helped up by two guards. Mai and Ty Lee are both restrained, looking defiantly at the princess.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12246,12246,Fire,3,"The Boiling Rock, Part 2",15,Gondola guard #4,"What shall we do with them, princess?","What shall we do with them, princess?",Joshua Hamilton,Ethan Spaulding,9.2 +12247,12247,Fire,3,"The Boiling Rock, Part 2",15,Azula,"Put them somewhere I'll never have to see their faces again, and let them rot!","Put them somewhere I'll never have to see their faces again, and let them rot!",Joshua Hamilton,Ethan Spaulding,9.2 +12248,12248,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Nightfall, Western Air Temple. The ship is returned. Zuko and Sokka exit, standing in front of Toph, Aang, and Katara.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12249,12249,Fire,3,"The Boiling Rock, Part 2",15,Katara,What are you doing in this thing? What happened to the war balloon?,What are you doing in this thing? What happened to the war balloon?,Joshua Hamilton,Ethan Spaulding,9.2 +12250,12250,Fire,3,"The Boiling Rock, Part 2",15,Zuko,It kind of got destroyed.,It kind of got destroyed.,Joshua Hamilton,Ethan Spaulding,9.2 +12251,12251,Fire,3,"The Boiling Rock, Part 2",15,Aang,Sounds like a crazy fishing trip.,Sounds like a crazy fishing trip.,Joshua Hamilton,Ethan Spaulding,9.2 +12252,12252,Fire,3,"The Boiling Rock, Part 2",15,Toph,Did you at least get some good meat?,Did you at least get some good meat?,Joshua Hamilton,Ethan Spaulding,9.2 +12253,12253,Fire,3,"The Boiling Rock, Part 2",15,Sokka,I did. The best meat of all. The meat of friendship and fatherhood.,I did. The best meat of all. The meat of friendship and fatherhood.,Joshua Hamilton,Ethan Spaulding,9.2 +12254,12254,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,"Suki, Hakoda, and Chit Sang exit.",NA,Joshua Hamilton,Ethan Spaulding,9.2 +12255,12255,Fire,3,"The Boiling Rock, Part 2",15,Chit Sang,"[Waving.] I'm new. What's up, everybody?","I'm new. What's up, everybody?",Joshua Hamilton,Ethan Spaulding,9.2 +12256,12256,Fire,3,"The Boiling Rock, Part 2",15,Katara,[Tearing up; overjoyed.] Dad? [Runs to him.],Dad?,Joshua Hamilton,Ethan Spaulding,9.2 +12257,12257,Fire,3,"The Boiling Rock, Part 2",15,Hakoda,"Hi, Katara. [They embrace.]","Hi, Katara.",Joshua Hamilton,Ethan Spaulding,9.2 +12258,12258,Fire,3,"The Boiling Rock, Part 2",15,Katara,How are you here? What is going on? Where did you go?,How are you here? What is going on? Where did you go?,Joshua Hamilton,Ethan Spaulding,9.2 +12259,12259,Fire,3,"The Boiling Rock, Part 2",15,Sokka,We kind of went to a Fire Nation prison.,We kind of went to a Fire Nation prison.,Joshua Hamilton,Ethan Spaulding,9.2 +12260,12260,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Hakoda pulls Sokka into the embrace. The camera pans away from the scene.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12261,12261,Fire,3,"The Boiling Rock, Part 2",15,Toph,Seriously? You guys didn't find any meat?,Seriously? You guys didn't find any meat?,Joshua Hamilton,Ethan Spaulding,9.2 +12262,12262,Fire,3,"The Boiling Rock, Part 2",15,Scene Description,Fade to credits.,NA,Joshua Hamilton,Ethan Spaulding,9.2 +12263,12263,Fire,3,The Southern Raiders,16,Scene Description,"The episode opens to morning at the Western Air Temple. Cuts to overhead shot of the team's campsite, the camera panning downward slightly, showing their sleeping bags all arranged in a circular form. Cuts to overhead shot of Suki and Chit Sang sleeping, Chit Sang snoring. The camera pans to the right to reveal Hakoda asleep next to Chit Sang. Cuts to ground-level shot of Teo asleep, The Duke and Zuko in the background also in a slumber. +Cuts to shot of Aang asleep on Appa as he wakes up, yawning and rubs his eyes. Cuts to shot of the nearby fountain from the view of their campsite, several birds fluttering about. The birds suddenly fly away as a bomb is launched their way, splashing through the waterfall fountain. Cuts to Aang, who grows suddenly alert, before switching to shot of Appa as the Avatar rises and uses his glider to airbend the bomb away. Cuts to overhead shot of the temple as the bomb explodes. Two more bombs pelt the building. Cuts to campsite, where everyone is now fully awake. +Cuts to shot of Aang, his back to the camera, as he races toward the edge of the building, glider in hand. The camera zooms in past his figure to a shot of a Fire Nation airship coming into view. Cuts to side-view of the bow of the airship, which launches another bomb that sails through the air and crashes into a nearby bridge. Cuts to Aang, who runs back to the campsite, Appa following close behind, and uses airbending to force the large, ceiling-high metal doors surrounding their site to close. Several bombs continue to assail the temple. Cuts to shot of a portion of the ceiling roof, as it begins to crumble and finally caves in. Cuts to overhead shot of Katara standing directly beneath the crumbling ceiling. She looks up, alarmed, only to be pushed out of the way by Zuko.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12264,12264,Fire,3,The Southern Raiders,16,Zuko,[As he runs and pushes her out of harm's way.] Watch out!,Watch out!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12265,12265,Fire,3,The Southern Raiders,16,Scene Description,"Cuts to shot of the two as they roll across the floor, the debris from the ceiling crashing several feet away from them. They finally settle on the ground.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12266,12266,Fire,3,The Southern Raiders,16,Katara,[Angrily.] What are you doing?,What are you doing?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12267,12267,Fire,3,The Southern Raiders,16,Zuko,[Calmly.] Keeping rocks from crushing you.,Keeping rocks from crushing you.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12268,12268,Fire,3,The Southern Raiders,16,Katara,"Okay, I'm not crushed. You can get off me now!","Okay, I'm not crushed. You can get off me now!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12269,12269,Fire,3,The Southern Raiders,16,Scene Description,Katara rushes out from under Zuko and exits off screen.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12270,12270,Fire,3,The Southern Raiders,16,Zuko,I'll take that as a thank you. [Rises.],I'll take that as a thank you.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12271,12271,Fire,3,The Southern Raiders,16,Scene Description,"Cuts to a section of the wall where a hole is bored through. The camera zooms out to show Toph and Haru, who have created the exit way using earthbending.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12272,12272,Fire,3,The Southern Raiders,16,Toph,[Pointing to the exit.] Come on! We can get out through here!,Come on! We can get out through here!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12273,12273,Fire,3,The Southern Raiders,16,Scene Description,"Cuts to overhead shot of the tunnel as everyone begins entering the passageway. Aang stays behind, trying to get Appa to leave with him by pulling on the bison's reins. The camera zooms out, as he spots Zuko standing, facing the airships.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12274,12274,Fire,3,The Southern Raiders,16,Aang,[To Zuko.] What are you doing?,What are you doing?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12275,12275,Fire,3,The Southern Raiders,16,Zuko,Go ahead! I'll hold them off. I think this is a family visit. [Runs off.],Go ahead! I'll hold them off. I think this is a family visit.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12276,12276,Fire,3,The Southern Raiders,16,Aang,"[In the background, Sokka and Katara run up to him.] Zuko! No!",Zuko! No!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12277,12277,Fire,3,The Southern Raiders,16,Sokka,Come on! We've gotta get out of here!,Come on! We've gotta get out of here!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12278,12278,Fire,3,The Southern Raiders,16,Scene Description,"Aang, Katara, and Sokka begin pulling on the reins together in an attempt to budge Appa. Cuts to shot of the doors of the building, which continue to be destroyed. Debris continues to fall to the ground as Zuko races toward the doors and leaps over to the other side just as another piece of the door falls and shatters. Cuts to shot of Zuko running toward the airships. One bomb is launched and lands several feet before him where it detonates. Thick gray plumes of smoke rise; after a brief moment, Zuko emerges from the smoke cover, unharmed. +He firebends a large blast from his hand. Cuts to shot of an airship, as it receives the blow. Cuts to shot of Zuko standing near the edge of the temple, looking at the airships. A podium-like devise suddenly rises; standing atop it is Azula. Cuts to shot of the princess, who has an evil, maniacal grin on her face.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12279,12279,Fire,3,The Southern Raiders,16,Zuko,What are you doing here?,What are you doing here?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12280,12280,Fire,3,The Southern Raiders,16,Azula,[Smiling.] You mean it's not obvious yet? I am about to celebrate becoming an only child!,You mean it's not obvious yet? I am about to celebrate becoming an only child!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12281,12281,Fire,3,The Southern Raiders,16,Scene Description,"Azula kicks a large blast of flame at her brother. Zuko dodges and runs backward into the temple, but falls. Several blasts are sent his way as the temple begins to fall apart. He runs toward the airships. As he jumps toward the ship, he sends several shots toward Azula, but fails to hit her and jumps onto the airship. He falls down into the misty floor below. +Aang and the group are seen trying to get Appa into the tunnel unsuccessfully.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12282,12282,Fire,3,The Southern Raiders,16,Aang,I can't get him to go in there! Appa hates tunnels!,I can't get him to go in there! Appa hates tunnels!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12283,12283,Fire,3,The Southern Raiders,16,Katara,"Aang, there's no way we can fly out of here.","Aang, there's no way we can fly out of here.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12284,12284,Fire,3,The Southern Raiders,16,Aang,We'll have to find a way!,We'll have to find a way!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12285,12285,Fire,3,The Southern Raiders,16,Sokka,We need to split up. [To the others.] Take the tunnel and get to the stolen airship.,We need to split up. Take the tunnel and get to the stolen airship.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12286,12286,Fire,3,The Southern Raiders,16,Katara,[Turns around and suddenly grows angry.] No! [Walks up to her father.] The Fire Nation can't separate our family again!,No! The Fire Nation can't separate our family again!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12287,12287,Fire,3,The Southern Raiders,16,Hakoda,It'll be okay. It's not forever.,It'll be okay. It's not forever.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12288,12288,Fire,3,The Southern Raiders,16,Scene Description,Katara hesitates before hugging her dad and running back to Aang. Sokka and Hakoda hug also as Sokka takes Suki and runs with the others. The two groups go their separate ways. Toph is seen touching a wall.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12289,12289,Fire,3,The Southern Raiders,16,Toph,I can clear that away and we can fly out through there!,I can clear that away and we can fly out through there!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12290,12290,Fire,3,The Southern Raiders,16,Suki,"Um, there's an awful lot of fire in that general direction ...","Um, there's an awful lot of fire in that general direction ...",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12291,12291,Fire,3,The Southern Raiders,16,Aang,We'll get through. Let's go.,We'll get through. Let's go.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12292,12292,Fire,3,The Southern Raiders,16,Scene Description,"Appa flies through to the outside of the temple, covered by a shield of rock in front. Azula tries to bring him down, only for the shield to absorb the blasts. Appa escapes and the shield disintegrates. Behind Azula, a second airship rises, revealing Zuko survived his fall by getting onto another airship. +Zuko and Azula face off. Zuko makes the first move. He jumps toward Azula, who sends columns of fire at him, which he responds to with more blasts. The two attack each other several times. +Scene changes to Appa, dodging fire blasts, as Katara deflects several large whips of fire with her waterbending. The group rises above the airship to avoid more fire. +Back on the airship. Azula and Zuko are evenly matched until they both hit each other with fire-packed punches, launching them both off the airship. Zuko is caught by Katara, but Azula is left falling.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12293,12293,Fire,3,The Southern Raiders,16,Zuko,"She's ... not gonna make it ... [Azula uses her firebending to propel herself toward the wall, stopping her fall with her hair pin and saving herself.] Of course she did.",She's ... not gonna make it ... Of course she did.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12294,12294,Fire,3,The Southern Raiders,16,Scene Description,"Cuts to shot of Azula, who stands on the side of the cliff, smiling evilly. Cuts to shot of her watching as the team escapes, her back to the camera. The scene switches to where the gang is camping outside.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12295,12295,Fire,3,The Southern Raiders,16,Aang,"Wow, camping ... it really seems like old times again, doesn't it?","Wow, camping ... it really seems like old times again, doesn't it?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12296,12296,Fire,3,The Southern Raiders,16,Zuko,"[Jokingly.] If you really want it to feel like old times, I could, uh ... chase you around a while and try to capture you. [He smiles and the rest of the group laughs, except for Katara.]","If you really want it to feel like old times, I could, uh ... chase you around a while and try to capture you.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12297,12297,Fire,3,The Southern Raiders,16,Katara,"[Sarcastically.] Ha, ha.","Ha, ha.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12298,12298,Fire,3,The Southern Raiders,16,Sokka,"[Holding up his cup.] To Zuko! Who knew after all those times he tried to snuff us out, today he'd be our hero?","To Zuko! Who knew after all those times he tried to snuff us out, today he'd be our hero?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12299,12299,Fire,3,The Southern Raiders,16,Team Avatar,"[Everybody except Katara holds up their cups.] Hear! Hear! [Aang nudges him with his elbow, before Toph lightly punches him.]",Hear! Hear!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12300,12300,Fire,3,The Southern Raiders,16,Zuko,[Smiling.] I'm touched. [Stops smiling.] I don't deserve this.,I'm touched. I don't deserve this.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12301,12301,Fire,3,The Southern Raiders,16,Katara,"[Angrily.] Yeah, no kidding. [Walks away.]","Yeah, no kidding.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12302,12302,Fire,3,The Southern Raiders,16,Sokka,What's with her?,What's with her?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12303,12303,Fire,3,The Southern Raiders,16,Zuko,I wish I knew. [Follows her.],I wish I knew.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12304,12304,Fire,3,The Southern Raiders,16,Scene Description,Cuts to shot of the entire campsite.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12305,12305,Fire,3,The Southern Raiders,16,Sokka,[Voice-over.] What's with him?,What's with him?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12306,12306,Fire,3,The Southern Raiders,16,Scene Description,"Cuts to shot of a waxing gibbous moon, partially obscured by the clouds. Cuts to a shot of Katara sitting on a rock and overlooking a rocky cliff, Zuko approaching her from behind. She catches sight of him, immediately grows antagonistic, and rises to walk farther away toward the cliff.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12307,12307,Fire,3,The Southern Raiders,16,Zuko,This isn't fair! Everyone else seems to trust me now! What is it with you?,This isn't fair! Everyone else seems to trust me now! What is it with you?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12308,12308,Fire,3,The Southern Raiders,16,Katara,"[Turns around; furiously.] Oh, everyone trusts you now! I was the first person to trust you! [Places her left hand on her heart.] Remember, back in Ba Sing Se. [Points to the ocean.] And you turned around and betrayed me, betrayed all of us!","Oh, everyone trusts you now! I was the first person to trust you! Remember, back in Ba Sing Se. And you turned around and betrayed me, betrayed all of us!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12309,12309,Fire,3,The Southern Raiders,16,Zuko,[Closes eyes in resentment.] What can I do to make it up to you?,What can I do to make it up to you?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12310,12310,Fire,3,The Southern Raiders,16,Katara,"[Cuts to shot of her and Zuko standing on the cliff as she approaches him while snapping at him angrily.] You really want to know? Hmm, maybe you could reconquer Ba Sing Se in the name of the Earth King. [Cuts to side-view of her and Zuko.] Or, I know! You could bring my mother back!","You really want to know? Hmm, maybe you could reconquer Ba Sing Se in the name of the Earth King. Or, I know! You could bring my mother back!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12311,12311,Fire,3,The Southern Raiders,16,Scene Description,"Katara storms away, slightly hitting his left shoulder with her right one as she passes Zuko, leaving him disappointed. Cuts to shot of entire cliff side, the waves crashing against the rocky wall. The scene switches to the campsite where Zuko accidentally runs into Suki on his way to confront Sokka.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12312,12312,Fire,3,The Southern Raiders,16,Suki,"[Embarrassed.] Oops, wrong tent!","Oops, wrong tent!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12313,12313,Fire,3,The Southern Raiders,16,Zuko,"Sorry, do you need to talk to Sokka, too?","Sorry, do you need to talk to Sokka, too?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12314,12314,Fire,3,The Southern Raiders,16,Suki,"Nope, not me! [Walks away.]","Nope, not me!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12315,12315,Fire,3,The Southern Raiders,16,Scene Description,"Zuko enters the tent, a look of disbelief spreading across his face.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12316,12316,Fire,3,The Southern Raiders,16,Sokka,"[Holding a rose in his mouth, surrounded by lit candles.] Well, hello ... [Surprised to find Zuko in his tent, destroying the rose in his mouth.] Uh, Zuko! Yes, why would I be expecting anyone different? [Painfully swallows rose petals and thorns.] So what's on your mind?","Well, hello ... Uh, Zuko! Yes, why would I be expecting anyone different? So what's on your mind?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12317,12317,Fire,3,The Southern Raiders,16,Zuko,"Your sister. She hates me! And I don't know why, but I do care what she thinks of me.","Your sister. She hates me! And I don't know why, but I do care what she thinks of me.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12318,12318,Fire,3,The Southern Raiders,16,Sokka,"Nah, she doesn't hate you. Katara doesn't hate anyone. Except maybe some people in the Fire Nation. [His eyes widen as he realizes his mistake.] No, I mean, uh, not people who are good, but used to be bad. I mean, bad people. Fire Nation people who are still bad, who've never been good and probably won't be, ever!","Nah, she doesn't hate you. Katara doesn't hate anyone. Except maybe some people in the Fire Nation. No, I mean, uh, not people who are good, but used to be bad. I mean, bad people. Fire Nation people who are still bad, who've never been good and probably won't be, ever!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12319,12319,Fire,3,The Southern Raiders,16,Zuko,"[Interrupting him.] Stop. Okay, listen. I know this may seem out of nowhere, but I want you to tell me what happened to your mother.","Stop. Okay, listen. I know this may seem out of nowhere, but I want you to tell me what happened to your mother.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12320,12320,Fire,3,The Southern Raiders,16,Sokka,[Slightly taken aback.] What? Why would you want to know that?,What? Why would you want to know that?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12321,12321,Fire,3,The Southern Raiders,16,Zuko,"Katara mentioned it before when we were imprisoned together in Ba Sing Se, and again just now when she was yelling at me. I think somehow she's connected her anger at that to her anger at me.","Katara mentioned it before when we were imprisoned together in Ba Sing Se, and again just now when she was yelling at me. I think somehow she's connected her anger at that to her anger at me.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12322,12322,Fire,3,The Southern Raiders,16,Sokka,[Sadly.] It's not a day I like to remember.,It's not a day I like to remember.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12323,12323,Fire,3,The Southern Raiders,16,Scene Description,"A flashback is shown of a younger Katara having a snowball fight with her brother. Sokka peers over a snow wall and prepares to throw a snowball at his sister only to be hit by a snowball thrown by a younger Katara, off-screen. Cuts to shot of Katara, who giggles joyfully. Cuts to shot of Sokka, who climbs over the snow wall, carrying an exceptionally large snowball. He drops it, however, upon witnessing blackened snow falling from the sky.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12324,12324,Fire,3,The Southern Raiders,16,Young Katara,I'm going to find Mom! [Runs off.],I'm going to find Mom!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12325,12325,Fire,3,The Southern Raiders,16,Sokka,"[Voice-over.] Many of the warriors had seen the black snow before and they knew what it meant: a Fire Nation raid. [A battle scene is depicted of Water Tribe Warriors and Fire Nation soldiers charging and attacking one another.] We were badly outnumbered, but somehow, we managed to drive them off. As quickly as they came, they just left.","Many of the warriors had seen the black snow before and they knew what it meant: a Fire Nation raid. We were badly outnumbered, but somehow, we managed to drive them off. As quickly as they came, they just left.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12326,12326,Fire,3,The Southern Raiders,16,Scene Description,Cuts to shot of Sokka tossing his boomerang toward the retreating soldiers. The scene switches back to present day.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12327,12327,Fire,3,The Southern Raiders,16,Sokka,"I was so relieved when it was over, but that's because I didn't know yet what had happened. I didn't know we had lost our mother.","I was so relieved when it was over, but that's because I didn't know yet what had happened. I didn't know we had lost our mother.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12328,12328,Fire,3,The Southern Raiders,16,Zuko,Wait. Can you remember any details about the soldiers who raided your village? Like what the lead ship looked like?,Wait. Can you remember any details about the soldiers who raided your village? Like what the lead ship looked like?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12329,12329,Fire,3,The Southern Raiders,16,Sokka,"Yeah ... sea ravens. [Scene shows flashback of three red flags waving in the breeze, bearing sea ravens.] The main ship had flags with sea ravens on them.",Yeah ... sea ravens. The main ship had flags with sea ravens on them.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12330,12330,Fire,3,The Southern Raiders,16,Zuko,"The symbol of the Southern Raiders. Thanks, Sokka.","The symbol of the Southern Raiders. Thanks, Sokka.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12331,12331,Fire,3,The Southern Raiders,16,Sokka,[Urging Zuko hurriedly out of the tent.] No problem. Thanks for stopping by! [Zuko leaves.] I'd thought he'd never leave. [Peaks head out excitedly and whispers.] Suki!,No problem. Thanks for stopping by! I'd thought he'd never leave. Suki!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12332,12332,Fire,3,The Southern Raiders,16,Scene Description,"Unfortunately for him, Zuko has barely taken two steps away from the tent and is looking curiously at Sokka. Sokka pretends to be completely oblivious and whistles. The next day, Katara emerges from her tent to find Zuko waiting outside, sitting on a rock.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12333,12333,Fire,3,The Southern Raiders,16,Katara,[Angrily.] You look terrible.,You look terrible.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12334,12334,Fire,3,The Southern Raiders,16,Zuko,I waited out here all night.,I waited out here all night.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12335,12335,Fire,3,The Southern Raiders,16,Katara,[Brushing her hair.] What do you want?,What do you want?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12336,12336,Fire,3,The Southern Raiders,16,Zuko,"I know who killed your mother, [She abruptly stops.] and I'm going to help you find him.","I know who killed your mother, and I'm going to help you find him.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12337,12337,Fire,3,The Southern Raiders,16,Scene Description,"Katara casts him a look of shock, which soon turns to a look of anger. +The scene changes to later in the day where Aang is feeding Appa hay. Sokka fiddles around with a flower necklace. Katara and Zuko approach the bison, Zuko carrying a sack slung over his shoulder.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12338,12338,Fire,3,The Southern Raiders,16,Katara,I need to borrow Appa.,I need to borrow Appa.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12339,12339,Fire,3,The Southern Raiders,16,Aang,[Jokingly.] Why? Is it your turn to take a little field trip with Zuko?,Why? Is it your turn to take a little field trip with Zuko?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12340,12340,Fire,3,The Southern Raiders,16,Katara,"Yes, it is.","Yes, it is.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12341,12341,Fire,3,The Southern Raiders,16,Aang,[Slightly surprised.] Oh. What's going on?,Oh. What's going on?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12342,12342,Fire,3,The Southern Raiders,16,Katara,We're going to find the man who took my mother from me.,We're going to find the man who took my mother from me.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12343,12343,Fire,3,The Southern Raiders,16,Scene Description,"Sokka pauses and stands up, surprised.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12344,12344,Fire,3,The Southern Raiders,16,Zuko,Sokka told me the story of what happened. I know who did it and I know how to find him.,Sokka told me the story of what happened. I know who did it and I know how to find him.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12345,12345,Fire,3,The Southern Raiders,16,Aang,Um ... and what exactly do you think this will accomplish?,Um ... and what exactly do you think this will accomplish?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12346,12346,Fire,3,The Southern Raiders,16,Katara,"[Shakes her head in dismay.] Ugh, I knew you wouldn't understand. [Begins to walk away.]","Ugh, I knew you wouldn't understand.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12347,12347,Fire,3,The Southern Raiders,16,Aang,Wait! Stop! I do understand. You're feeling unbelievable pain and rage. How do think I felt about the sandbenders when they stole Appa? How do you think I felt about the Fire Nation when I found out what happened to my people?,Wait! Stop! I do understand. You're feeling unbelievable pain and rage. How do think I felt about the sandbenders when they stole Appa? How do you think I felt about the Fire Nation when I found out what happened to my people?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12348,12348,Fire,3,The Southern Raiders,16,Zuko,"She needs this, Aang. This is about getting closure and justice.","She needs this, Aang. This is about getting closure and justice.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12349,12349,Fire,3,The Southern Raiders,16,Aang,I don't think so. I think it's about getting revenge.,I don't think so. I think it's about getting revenge.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12350,12350,Fire,3,The Southern Raiders,16,Katara,"[Angrily.] Fine, maybe it is! Maybe that's what I need! Maybe that's what he deserves!","Fine, maybe it is! Maybe that's what I need! Maybe that's what he deserves!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12351,12351,Fire,3,The Southern Raiders,16,Aang,"Katara, you sound like Jet.","Katara, you sound like Jet.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12352,12352,Fire,3,The Southern Raiders,16,Katara,"It's not the same! Jet attacked the innocent. This man, he's a monster.","It's not the same! Jet attacked the innocent. This man, he's a monster.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12353,12353,Fire,3,The Southern Raiders,16,Sokka,"Katara, she was my mother, too, but I think Aang might be right.","Katara, she was my mother, too, but I think Aang might be right.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12354,12354,Fire,3,The Southern Raiders,16,Katara,Then you didn't love her the way I did!,Then you didn't love her the way I did!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12355,12355,Fire,3,The Southern Raiders,16,Sokka,[Hurt.] Katara!,Katara!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12356,12356,Fire,3,The Southern Raiders,16,Aang,"The monks used to say that revenge is like a two-headed rat viper. While you watch your enemy go down, you're being poisoned yourself.","The monks used to say that revenge is like a two-headed rat viper. While you watch your enemy go down, you're being poisoned yourself.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12357,12357,Fire,3,The Southern Raiders,16,Zuko,"That's cute, but this isn't air temple preschool. It's the real world.","That's cute, but this isn't air temple preschool. It's the real world.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12358,12358,Fire,3,The Southern Raiders,16,Katara,"Now that I know he's out there ... now that I know we can find him, I feel like I have no choice.","Now that I know he's out there ... now that I know we can find him, I feel like I have no choice.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12359,12359,Fire,3,The Southern Raiders,16,Aang,"Katara, you do have a choice: forgiveness.","Katara, you do have a choice: forgiveness.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12360,12360,Fire,3,The Southern Raiders,16,Zuko,That's the same as doing nothing!,That's the same as doing nothing!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12361,12361,Fire,3,The Southern Raiders,16,Aang,"No, it's not. It's easy to do nothing, but it's hard to forgive.","No, it's not. It's easy to do nothing, but it's hard to forgive.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12362,12362,Fire,3,The Southern Raiders,16,Katara,"It's not just hard, it's impossible. [Cuts to overhead shot of the field as she walks away, Zuko following behind.]","It's not just hard, it's impossible.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12363,12363,Fire,3,The Southern Raiders,16,Scene Description,"The scene changes to later that night where Katara is seen dressed in a black cloak, tying her hair in a ponytail. Aang and Sokka watch her from behind a rock before emerging from behind it.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12364,12364,Fire,3,The Southern Raiders,16,Aang,So you were just gonna take Appa anyway?,So you were just gonna take Appa anyway?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12365,12365,Fire,3,The Southern Raiders,16,Katara,Yes.,Yes.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12366,12366,Fire,3,The Southern Raiders,16,Aang,"It's okay, because I forgive you. [Pauses.] That give you any ideas?","It's okay, because I forgive you. That give you any ideas?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12367,12367,Fire,3,The Southern Raiders,16,Katara,Don't try to stop us.,Don't try to stop us.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12368,12368,Fire,3,The Southern Raiders,16,Aang,"I wasn't planning to. This is a journey you need to take. You need to face this man. [Katara situates herself on Appa's head.] But when you do, please don't choose revenge. Let your anger out, and then let it go. Forgive him.","I wasn't planning to. This is a journey you need to take. You need to face this man. But when you do, please don't choose revenge. Let your anger out, and then let it go. Forgive him.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12369,12369,Fire,3,The Southern Raiders,16,Zuko,"[Sarcastically.] Okay, we'll be sure to do that, guru goody-goody. [Climbs aboard Appa.]","Okay, we'll be sure to do that, guru goody-goody.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12370,12370,Fire,3,The Southern Raiders,16,Katara,"Thanks for understanding, Aang. Yip-yip. [Appa takes flight; Aang and Sokka look up at the departing bison, their backs facing the camera.]","Thanks for understanding, Aang. Yip-yip.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12371,12371,Fire,3,The Southern Raiders,16,Sokka,"You know, you're pretty wise for a kid.","You know, you're pretty wise for a kid.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12372,12372,Fire,3,The Southern Raiders,16,Aang,"Thanks, Sokka.","Thanks, Sokka.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12373,12373,Fire,3,The Southern Raiders,16,Sokka,"[Cuts to shot of the two standing together looking up.] Usually it's annoying, but right now, I'm impressed.","Usually it's annoying, but right now, I'm impressed.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12374,12374,Fire,3,The Southern Raiders,16,Aang,I appreciate that.,I appreciate that.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12375,12375,Fire,3,The Southern Raiders,16,Sokka,"So, can I borrow Momo for a week?","So, can I borrow Momo for a week?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12376,12376,Fire,3,The Southern Raiders,16,Aang,[Surprised.] Why do you need Momo?,Why do you need Momo?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12377,12377,Fire,3,The Southern Raiders,16,Scene Description,"Sokka simply shrugs. +The scene changes to Zuko and Katara flying on Appa, heading straight for the camera.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12378,12378,Fire,3,The Southern Raiders,16,Zuko,We need to find the Fire Navy communication tower. All the navy's movements are coordinated by messenger hawk. And every tower has to be up to date on where everyone is deployed.,We need to find the Fire Navy communication tower. All the navy's movements are coordinated by messenger hawk. And every tower has to be up to date on where everyone is deployed.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12379,12379,Fire,3,The Southern Raiders,16,Katara,"[Cuts to shot of the communication tower situated on an island in the middle of the ocean; off-camera.] So once we find the communication tower, we bust in and take the information we need.","So once we find the communication tower, we bust in and take the information we need.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12380,12380,Fire,3,The Southern Raiders,16,Zuko,"[Voice-over.] Not exactly. We need to be stealthy and make sure no one spots us, [Cuts to shot of the communication tower, the camera panning downward.] otherwise they'll warn the Southern Raiders long before we reach them.","Not exactly. We need to be stealthy and make sure no one spots us, otherwise they'll warn the Southern Raiders long before we reach them.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12381,12381,Fire,3,The Southern Raiders,16,Scene Description,"The scene switches to where Zuko and Katara run out from behind a mass of large rocks. Using waterbending, Katara creates a raft of ice for her and Zuko to ride on to the communication tower. The scene cuts to a corridor of tower where the two are crouched in a corner, watching two guards walk out a door. After the guards have passed, they stealthily run through the open door. The scene cuts to a female guard sitting at a writing desk. The duo peers at her from overhead gratings. Katara waterbends the ink onto the guard's hands. She rises from the desk and walks away. Katara and Zuko use the time to comb through the files stored in the drawers.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12382,12382,Fire,3,The Southern Raiders,16,Zuko,"Okay, Southern Raiders. [Opens a scroll.] Bam. [Points to location on map; off-camera.] On patrol near Whaletail Island.","Okay, Southern Raiders. Bam. On patrol near Whaletail Island.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12383,12383,Fire,3,The Southern Raiders,16,Katara,"[Cuts to shot of Zuko and Katara looking at the map.] Whaletail Island, here we come.","Whaletail Island, here we come.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12384,12384,Fire,3,The Southern Raiders,16,Scene Description,The scene changes to the next morning. Zuko arises from his sleep and looks at Katara steering Appa. She has dark circles under her eyes from lack of sleep.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12385,12385,Fire,3,The Southern Raiders,16,Zuko,You should get some rest. We'll be there in a few hours. You'll need all your strength.,You should get some rest. We'll be there in a few hours. You'll need all your strength.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12386,12386,Fire,3,The Southern Raiders,16,Katara,"Oh, don't you worry about my strength. I have plenty. I'm not the helpless little girl I was when they came.","Oh, don't you worry about my strength. I have plenty. I'm not the helpless little girl I was when they came.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12387,12387,Fire,3,The Southern Raiders,16,Scene Description,The scene fades into a flashback of the Southern Raiders' attack.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12388,12388,Fire,3,The Southern Raiders,16,Young Katara,I'm going to find Mom.,I'm going to find Mom.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12389,12389,Fire,3,The Southern Raiders,16,Scene Description,"She runs nervously past her brother. Several Water Tribe warriors are shown running about in a frantic motion. The camera focuses on Katara again, who arrives at their igloo and pushes back the curtain.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12390,12390,Fire,3,The Southern Raiders,16,Young Katara,Mom!,Mom!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12391,12391,Fire,3,The Southern Raiders,16,Scene Description,"She runs in to discover her mother seated on the floor, a man towering over her.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12392,12392,Fire,3,The Southern Raiders,16,Kya,Just let her go and I'll give you the information you want.,Just let her go and I'll give you the information you want.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12393,12393,Fire,3,The Southern Raiders,16,Yon Rha,You heard your mother. Get out of here!,You heard your mother. Get out of here!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12394,12394,Fire,3,The Southern Raiders,16,Young Katara,"Mommy, I'm scared.","Mommy, I'm scared.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12395,12395,Fire,3,The Southern Raiders,16,Kya,"Go find your dad, sweetie. I'll handle this.","Go find your dad, sweetie. I'll handle this.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12396,12396,Fire,3,The Southern Raiders,16,Scene Description,Katara gazes into the menacing eyes of the Southern Raiders commander and runs off. The scene changes to her sprinting across the snowy battlefield.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12397,12397,Fire,3,The Southern Raiders,16,Katara,[Voice-over.] I ran as fast as I could.,I ran as fast as I could.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12398,12398,Fire,3,The Southern Raiders,16,Young Katara,"[Arrives to where her father is battling Fire Nation soldiers.] Dad, Dad! Please, I think Mom's in trouble! There's a man in our house!","Dad, Dad! Please, I think Mom's in trouble! There's a man in our house!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12399,12399,Fire,3,The Southern Raiders,16,Hakoda,Kya!,Kya!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12400,12400,Fire,3,The Southern Raiders,16,Scene Description,The two run to their house frantically. Hakoda pushes back the blue drapes before the scene fades to white back to present day.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12401,12401,Fire,3,The Southern Raiders,16,Katara,"But we were too late. When we got there, the man was gone. [Voice begins breaking.] And so was she.","But we were too late. When we got there, the man was gone. And so was she.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12402,12402,Fire,3,The Southern Raiders,16,Zuko,Your mother was a brave woman.,Your mother was a brave woman.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12403,12403,Fire,3,The Southern Raiders,16,Katara,[Clutches her necklace.] I know.,I know.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12404,12404,Fire,3,The Southern Raiders,16,Scene Description,"The scene changes to later that night, where Zuko has taken command of Appa and Katara is sleeping on Appa's saddle. Zuko is looking through a telescope.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12405,12405,Fire,3,The Southern Raiders,16,Zuko,There! [Katara looks up.] See those sea raven flags? [Tosses the telescope to Katara.] It's the Southern Raiders.,There! See those sea raven flags? It's the Southern Raiders.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12406,12406,Fire,3,The Southern Raiders,16,Katara,[Determined.] Let's do this.,Let's do this.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12407,12407,Fire,3,The Southern Raiders,16,Scene Description,"Appa submerges underwater, Katara waterbending an air bubble around his head so they can breathe. The camera cuts to a shot of a group of Fire Nation soldiers having a conversation on the deck of the ship.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12408,12408,Fire,3,The Southern Raiders,16,Soldier,"So there I was, and I was like, 'You know ...'","So there I was, and I was like, 'You know ...'",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12409,12409,Fire,3,The Southern Raiders,16,Scene Description,"He yells as a large water whip emerges from the surface and coils around his body, dragging him off the ship. The other soldiers run to the source of the incident in shock. Appa surfaces and Katara waterbends two huge waves at the ship. The others turn around to see the torrent of water flood the ship, washing them overboard. Appa lands on the deck. One soldier, who has managed to stay aboard the ship, attacks Katara, who pushes him away with a gush of water. She and Zuko make their way through the corridors of the ship, Katara's arms covered in water for defense. One soldier bursts from his cabin, a sword in hand only to be attacked and locked back inside by Zuko. Katara follows him to a large doorway, where they abruptly halt.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12410,12410,Fire,3,The Southern Raiders,16,Zuko,"This is it, Katara. Are you ready to face him?","This is it, Katara. Are you ready to face him?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12411,12411,Fire,3,The Southern Raiders,16,Scene Description,"Katara pulls down her face mask and lets out a cry as she sends a powerful stream of water toward the door. The scene changes to the inside of the room, the door having been knocked down by the impact of the water. The Southern Raiders commander attempts to attack Zuko, who only deflects his firebending attacks.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12412,12412,Fire,3,The Southern Raiders,16,Southern Raiders commander,Who are you?,Who are you?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12413,12413,Fire,3,The Southern Raiders,16,Zuko,"You don't remember her? You will soon, trust me.","You don't remember her? You will soon, trust me.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12414,12414,Fire,3,The Southern Raiders,16,Scene Description,"The Southern Raiders commander prepares to strike once more, however, his hand fails to move and begins trembling.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12415,12415,Fire,3,The Southern Raiders,16,Southern Raiders commander,What's ... [He attempts to control his arm which bends about uncontrollably.] happening to me?,What's ... happening to me?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12416,12416,Fire,3,The Southern Raiders,16,Scene Description,"The camera focuses on Katara using bloodbending on him. With swift motions, she forces him to the ground. Zuko looks on at her, momentarily stunned before turning his attention back to the commander.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12417,12417,Fire,3,The Southern Raiders,16,Zuko,Think back. Think back to your last raid on the Southern Water Tribe.,Think back. Think back to your last raid on the Southern Water Tribe.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12418,12418,Fire,3,The Southern Raiders,16,Southern Raiders commander,"[Helplessly subdued.] I don't know what you're talking about. Please, I don't know!","I don't know what you're talking about. Please, I don't know!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12419,12419,Fire,3,The Southern Raiders,16,Zuko,[Bending down closer to the commander.] Don't lie! You look her in the eye and you tell me you don't remember what you did.,Don't lie! You look her in the eye and you tell me you don't remember what you did.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12420,12420,Fire,3,The Southern Raiders,16,Scene Description,"Katara bloodbends him, fixing him into a position where the Southern Raiders commander looks right into her eyes. She gives him a cold, hard stare. The camera closes up on one of the commander's eyes before cutting to where Katara's face has changed from one of hate to one of shock.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12421,12421,Fire,3,The Southern Raiders,16,Katara,It's not him. [She frees him from her grip.] He's not the man.,It's not him. He's not the man.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12422,12422,Fire,3,The Southern Raiders,16,Zuko,What? What do you mean he's not? He's the leader of the Southern Raiders! He has to be the guy!,What? What do you mean he's not? He's the leader of the Southern Raiders! He has to be the guy!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12423,12423,Fire,3,The Southern Raiders,16,Scene Description,Katara remains silent and begins walking away. Zuko grabs the weak commander and pins him to the wall.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12424,12424,Fire,3,The Southern Raiders,16,Zuko,"If you're not the man we're looking for, who is?","If you're not the man we're looking for, who is?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12425,12425,Fire,3,The Southern Raiders,16,Southern Raiders commander,You must be looking for Yon Rha. He retired four years ago.,You must be looking for Yon Rha. He retired four years ago.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12426,12426,Fire,3,The Southern Raiders,16,Scene Description,"The camera focuses on Katara, whose eyes are filled with tears. The scene changes to a shot of the ground where an anonymous character rakes the soil with a trough. Cuts to a side-view shot of a house where a man is tending to his garden. The sky is dark and gray with storm clouds. An elderly woman walks up to the open door of the house behind him.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12427,12427,Fire,3,The Southern Raiders,16,Yon Rha's mother,"Yon Rha! You lazy piece of work, I need something.","Yon Rha! You lazy piece of work, I need something.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12428,12428,Fire,3,The Southern Raiders,16,Yon Rha,"[Stops his work and attempts to placate.] Yes, Mother. What is it?","Yes, Mother. What is it?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12429,12429,Fire,3,The Southern Raiders,16,Yon Rha's mother,The tomato-carrots from your garden are too hard for my gums. I need something soft and juicy!,The tomato-carrots from your garden are too hard for my gums. I need something soft and juicy!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12430,12430,Fire,3,The Southern Raiders,16,Yon Rha,Would you like something else from the garden? I would be happy to ...,Would you like something else from the garden? I would be happy to ...,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12431,12431,Fire,3,The Southern Raiders,16,Yon Rha's mother,[Angrily. Her fists clench as she interrupts.] Forget your stupid garden! [Cut to a close-up of her as she yells at him; irritatingly.] Get your grimy hind to the market and buy me some real food!,Forget your stupid garden! Get your grimy hind to the market and buy me some real food!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12432,12432,Fire,3,The Southern Raiders,16,Scene Description,"Cut to the flower bed as Yon Rha stands up. Cut to the back view of Yon Rha as he walks toward the town's entrance. Cut to some vegetables on display at a stall. The scene changes to where Yon Rha is walking to the marketplace of the village, the place almost desolate. Yon Rha enters the screen. He begins to buy vegetables from a stand. A wind chime tinkles from one of the other stands. Yon Rha sharply turns around to view the suspicious activity. The camera view changes to someone ducking behind the stand.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12433,12433,Fire,3,The Southern Raiders,16,Yon Rha,[Suspiciously.] Hello? [To stand owner.] Did you see someone?,Hello? Did you see someone?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12434,12434,Fire,3,The Southern Raiders,16,Scene Description,The stand owner shakes his head. Yon Rha is later seen walking back to house down some steps. He stops again and looks up.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12435,12435,Fire,3,The Southern Raiders,16,Yon Rha,Hello? [Camera view shifts to show someone hiding.] Is someone there?,Hello? Is someone there?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12436,12436,Fire,3,The Southern Raiders,16,Scene Description,He resumes walking again. Katara and Zuko appear from their hiding place.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12437,12437,Fire,3,The Southern Raiders,16,Katara,That was him. That was the monster.,That was him. That was the monster.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12438,12438,Fire,3,The Southern Raiders,16,Scene Description,"The scene cuts to where Yon Rha is walking, rain beginning to fall. He turns and stops once more.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12439,12439,Fire,3,The Southern Raiders,16,Yon Rha,Nobody sneaks up on me without getting burned! [Drops basket of vegetables and firebends at a nearby bush.],Nobody sneaks up on me without getting burned!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12440,12440,Fire,3,The Southern Raiders,16,Scene Description,"Sensing no one, he picks up the fallen vegetables and continues on his way. He unknowingly steps on a thin wire, causing him to fall into the mud. He tries to get up only to see a fire blast coming his way which he quickly avoids. Zuko appears before him.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12441,12441,Fire,3,The Southern Raiders,16,Zuko,We weren't behind the bush. [Cut to a side view of the confrontation as Zuko takes a step forward to threaten Yon Rha.] And I wouldn't try firebending again!,We weren't behind the bush. And I wouldn't try firebending again!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12442,12442,Fire,3,The Southern Raiders,16,Yon Rha,"[Cut to Yon Rha on the ground with his arm shielding his face. Frightened.] Whoever you are, take my money. Take whatever you want. I'll cooperate.","Whoever you are, take my money. Take whatever you want. I'll cooperate.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12443,12443,Fire,3,The Southern Raiders,16,Scene Description,Katara walks up to Yon Rha and pulls down her face mask.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12444,12444,Fire,3,The Southern Raiders,16,Katara,Do you know who I am?,Do you know who I am?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12445,12445,Fire,3,The Southern Raiders,16,Yon Rha,No. I'm not sure.,No. I'm not sure.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12446,12446,Fire,3,The Southern Raiders,16,Katara,"Oh, you better remember me like your life depends on it! Why don't you take a closer look? [Camera focuses on front view of her face.]","Oh, you better remember me like your life depends on it! Why don't you take a closer look?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12447,12447,Fire,3,The Southern Raiders,16,Yon Rha,"[Camera focuses on him.] Yes, yes, I remember you now. [Focuses on Katara again.] You're that little Water Tribe girl.","Yes, yes, I remember you now. You're that little Water Tribe girl.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12448,12448,Fire,3,The Southern Raiders,16,Scene Description,"Lightning strikes, darkening the screen and flashing back to the incident in the igloo with the young Katara, her mother and Yon Rha.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12449,12449,Fire,3,The Southern Raiders,16,Kya,Just let her go and [Camera zooms out to show Kya kneeling on the floor in front of Yon Rha.] I'll give you the information you want.,Just let her go and I'll give you the information you want.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12450,12450,Fire,3,The Southern Raiders,16,Yon Rha,You heard your mother. Get out of here!,You heard your mother. Get out of here!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12451,12451,Fire,3,The Southern Raiders,16,Young Katara,"[Holds her hands together.] Mommy, I'm scared.","Mommy, I'm scared.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12452,12452,Fire,3,The Southern Raiders,16,Kya,"Go find your dad, sweetie. I'll handle this.","Go find your dad, sweetie. I'll handle this.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12453,12453,Fire,3,The Southern Raiders,16,Scene Description,Young Katara leaves the igloo. Yon Rha faces Kya again.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12454,12454,Fire,3,The Southern Raiders,16,Yon Rha,"Now tell me, who is it? Who's the waterbender?","Now tell me, who is it? Who's the waterbender?",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12455,12455,Fire,3,The Southern Raiders,16,Kya,There are no waterbenders here. The Fire Nation took them all away a long time ago.,There are no waterbenders here. The Fire Nation took them all away a long time ago.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12456,12456,Fire,3,The Southern Raiders,16,Yon Rha,You're lying. My source says there's one waterbender left in the Southern Water Tribe. We're not leaving until we find the waterbender!,You're lying. My source says there's one waterbender left in the Southern Water Tribe. We're not leaving until we find the waterbender!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12457,12457,Fire,3,The Southern Raiders,16,Kya,"If I tell you, do you promise [She lowers her head and closes her eyes to make a decision.] to leave the rest of the village alone? [Cut to a side view of Yon Rha who nods.] It's me. [Cut to Kya who looks up.] Take me as your prisoner.","If I tell you, do you promise to leave the rest of the village alone? It's me. Take me as your prisoner.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12458,12458,Fire,3,The Southern Raiders,16,Yon Rha,[Cut to a close-up of Yon Rha who smiles evilly.] I'm afraid I'm not taking prisoners today ...,I'm afraid I'm not taking prisoners today ...,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12459,12459,Fire,3,The Southern Raiders,16,Scene Description,Fade to present day Yon Rha who gulps in terror as the flashback ends. Lightning strikes in the background.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12460,12460,Fire,3,The Southern Raiders,16,Katara,She lied to you! [Cut to a close-up of Katara who turns away from Yon Rha as she closes her eyes sadly.] She was protecting the last waterbender!,She lied to you! She was protecting the last waterbender!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12461,12461,Fire,3,The Southern Raiders,16,Yon Rha,[Shocked.] What? Who?,What? Who?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12462,12462,Fire,3,The Southern Raiders,16,Katara,[Cut back to Katara who turns to face him again as she opens her eyes and looks back furiously.] Me!,Me!,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12463,12463,Fire,3,The Southern Raiders,16,Scene Description,"She holds both her arms out, halting the falling raindrops and creating a shield above the three of them. After a few moments, she sends a forceful stream of water at Yon Rha, transforming the stream into a flurry of ice daggers midway through her attack. Yon Rha crouches in fear, preparing to be hit. When he does not feel harmed, he looks up to see the ice daggers floating in midair. Katara's expression softens and she allows for the daggers to liquefy and drop to the ground.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12464,12464,Fire,3,The Southern Raiders,16,Yon Rha,"[Falls to his knees.] I did a bad thing! I know I did and you deserve revenge, so why don't you take my mother? That would be fair! [Attempts to smile weakly.]","I did a bad thing! I know I did and you deserve revenge, so why don't you take my mother? That would be fair!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12465,12465,Fire,3,The Southern Raiders,16,Katara,"[Sorrowfully.] I always wondered what kind of person could do such a thing, but now that I see you, I think I understand. There's just nothing inside you, nothing at all. You're pathetic and sad and empty.","I always wondered what kind of person could do such a thing, but now that I see you, I think I understand. There's just nothing inside you, nothing at all. You're pathetic and sad and empty.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12466,12466,Fire,3,The Southern Raiders,16,Yon Rha,"[Humbly.] Please, spare me! [Cries.]","Please, spare me!",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12467,12467,Fire,3,The Southern Raiders,16,Katara,But as much as I hate you ... I just can't do it.,But as much as I hate you ... I just can't do it.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12468,12468,Fire,3,The Southern Raiders,16,Scene Description,"Katara closes her eyes and lowers her head. Cut to Yon Rha, a hint of a smile gracing his lips upon realizing he will be spared. Without saying another word, Katara turns around and walks away; Zuko looks from Katara to Yon Rha, shooting the latter a last dirty look, and follows her. Yon Rha continues crying and shivering in the rain. The scene cuts to a boardwalk overlooking the water. It is later that day. Scene cuts to Katara, who is sitting on the edge of the dock, her eyes closed, paddling the water with her feet. She opens her eyes sadly as Aang and Zuko approach her.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12469,12469,Fire,3,The Southern Raiders,16,Aang,Katara? Are you okay?,Katara? Are you okay?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12470,12470,Fire,3,The Southern Raiders,16,Katara,I'm doing fine.,I'm doing fine.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12471,12471,Fire,3,The Southern Raiders,16,Aang,"Zuko told me what you did. Or what you didn't do, I guess. I'm proud of you.","Zuko told me what you did. Or what you didn't do, I guess. I'm proud of you.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12472,12472,Fire,3,The Southern Raiders,16,Katara,"I wanted to do it. I wanted to take out all my anger at him, but I couldn't. I don't know if it's because I'm too weak to do it or because I'm strong enough not to.","I wanted to do it. I wanted to take out all my anger at him, but I couldn't. I don't know if it's because I'm too weak to do it or because I'm strong enough not to.",Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12473,12473,Fire,3,The Southern Raiders,16,Aang,You did the right thing. Forgiveness is the first step you have to take to begin healing.,You did the right thing. Forgiveness is the first step you have to take to begin healing.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12474,12474,Fire,3,The Southern Raiders,16,Katara,[Rises from boardwalk.] But I didn't forgive him. I'll never forgive him. [Smiles at Zuko and walks up to him.] But I am ready to forgive you.,But I didn't forgive him. I'll never forgive him. But I am ready to forgive you.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12475,12475,Fire,3,The Southern Raiders,16,Scene Description,The two hug and Katara begins walking away.,NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12476,12476,Fire,3,The Southern Raiders,16,Zuko,You were right about what Katara needed. Violence wasn't the answer.,You were right about what Katara needed. Violence wasn't the answer.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12477,12477,Fire,3,The Southern Raiders,16,Aang,It never is.,It never is.,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12478,12478,Fire,3,The Southern Raiders,16,Zuko,Then I have a question for you. [Turns to look at him.] What are you gonna do when you face my father?,Then I have a question for you. What are you gonna do when you face my father?,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12479,12479,Fire,3,The Southern Raiders,16,Scene Description,"Camera focuses on Aang, who now has a worried expression on his face. Fades to credits.",NA,Elizabeth Welch Ehasz,Joaquim Dos Santos,8.9 +12480,12480,Fire,3,The Ember Island Players,17,Scene Description,"The episode begins at Ozai's home on Ember Island. Cut to overhead shot of a courtyard where Aang and Zuko practice firebending using synchronized fire blasts. Cut to ground-level shot of the two as they create sweeping arcs of fire that dissipate into the ground. They each raise an arm and leg, sending forth streams of fire, before leaning forward and sending forth another stream of fire. Cut to closer shot of Aang and Zuko as they stand upright, assuming a final fighting stance before closing their eyes, relaxing their postures, and taking a deep breath. Toph and Katara are seen in the background, sitting on steps nearby. Zuko and Aang bow to one another, and the latter stretches his arms and walks away. Cut to Katara and Toph, who is lying down on the ground, relaxing.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12481,12481,Fire,3,The Ember Island Players,17,Katara,Doesn't it seem kind of weird that we're hiding from the Fire Lord in his own house?,Doesn't it seem kind of weird that we're hiding from the Fire Lord in his own house?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12482,12482,Fire,3,The Ember Island Players,17,Zuko,"I told you, [Cut to Zuko sitting on a dry fountain and wiping his head with a cloth.] my father hasn't come here since our family was actually happy. And that was a long time ago. It's the last place anyone would think to look for us.","I told you, my father hasn't come here since our family was actually happy. And that was a long time ago. It's the last place anyone would think to look for us.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12483,12483,Fire,3,The Ember Island Players,17,Scene Description,"Cut to wide-view of the courtyard from where Katara and Toph are sitting, their backs to the screen. Sokka and Suki enter on-screen from afar, Sokka holding a rolled-up piece of paper.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12484,12484,Fire,3,The Ember Island Players,17,Sokka,You guys are not gonna believe this! There's a play about us.,You guys are not gonna believe this! There's a play about us.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12485,12485,Fire,3,The Ember Island Players,17,Suki,"[Cut to close-up of her and Sokka.] We were just in town and we found this poster! [Sokka shows the poster for the play to the team. It depicts Katara, Aang, and Sokka with Zuko's scarred face in the background.]",We were just in town and we found this poster!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12486,12486,Fire,3,The Ember Island Players,17,Katara,What? How is that possible?,What? How is that possible?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12487,12487,Fire,3,The Ember Island Players,17,Sokka,"Listen to this ... [Turns the poster toward him.] ""The Boy in the Iceberg is a new production from acclaimed playwright Pu-on Tim, [Cut to a close shot of the poster as the camera pans up.] who scoured the globe gathering information on the Avatar, from the icy South Pole to the heart of Ba Sing Se. [Shot changes to show Team Avatar.] His sources include singing nomads, pirates, prisoners of war, and a surprisingly knowledgeable merchant of cabbage.""","Listen to this ... ""The Boy in the Iceberg is a new production from acclaimed playwright Pu-on Tim, who scoured the globe gathering information on the Avatar, from the icy South Pole to the heart of Ba Sing Se. His sources include singing nomads, pirates, prisoners of war, and a surprisingly knowledgeable merchant of cabbage.""","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12488,12488,Fire,3,The Ember Island Players,17,Suki,"""Brought to you by the critically acclaimed Ember Island Players.""","""Brought to you by the critically acclaimed Ember Island Players.""","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12489,12489,Fire,3,The Ember Island Players,17,Zuko,[Recalling a memory.] Ugh! My mother used to take us to see them. They butchered Love Amongst the Dragons every year!,Ugh! My mother used to take us to see them. They butchered Love Amongst the Dragons every year!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12490,12490,Fire,3,The Ember Island Players,17,Katara,"Sokka, do you really think it's a good idea to attend a play about ourselves?","Sokka, do you really think it's a good idea to attend a play about ourselves?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12491,12491,Fire,3,The Ember Island Players,17,Sokka,"[Persuasively.] Come on, a day at the theater? This is the kind of wacky time-wasting nonsense I've been missing! [He holds up the poster anxiously and smiles sheepishly; Katara looks away, appears nonplussed.]","Come on, a day at the theater? This is the kind of wacky time-wasting nonsense I've been missing!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12492,12492,Fire,3,The Ember Island Players,17,Scene Description,"Fade to nighttime at the theater. Cut to inside the theater to show the stage and curtain. The camera zooms out to show the balcony as Toph, Katara, and Aang arrive, with Aang wearing a hat to cover his head tattoos. Toph and Katara sit down; Zuko sits next to Katara as Aang tries to sit next to her. Aang stands back up.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12493,12493,Fire,3,The Ember Island Players,17,Aang,"[To Zuko; points to his seat and tries to act casual.] Hey, uh ... I wanted to sit there.","Hey, uh ... I wanted to sit there.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12494,12494,Fire,3,The Ember Island Players,17,Zuko,[Removing his hood.] Just sit next to me. What's the big deal?,Just sit next to me. What's the big deal?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12495,12495,Fire,3,The Ember Island Players,17,Aang,"I was just, I wanted to ... okay. [Sits down.]","I was just, I wanted to ... okay.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12496,12496,Fire,3,The Ember Island Players,17,Scene Description,Sokka and Suki sit in the row behind the rest of Team Avatar.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12497,12497,Fire,3,The Ember Island Players,17,Toph,Why are we sitting in the nosebleed section? My feet can't see a thing from up here!,Why are we sitting in the nosebleed section? My feet can't see a thing from up here!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12498,12498,Fire,3,The Ember Island Players,17,Katara,"Don't worry, I'll tell your feet what's happening.","Don't worry, I'll tell your feet what's happening.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12499,12499,Fire,3,The Ember Island Players,17,Scene Description,"The curtain rises to reveal a set representative of the South Pole seas. Actress Katara and Actor Sokka are rowing their boat along. Cut to Katara who looks thrilled to see herself onstage, and Sokka grabs her shoulder, pointing at her, himself, and the stage excitedly. Cut to shot of Actress Katara, an older, more robust woman wearing Water Tribe garments.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12500,12500,Fire,3,The Ember Island Players,17,Actress Katara,"[Sighs.] Sokka, my only brother! We constantly roam these icy South Pole seas, and yet never do we find anything fulfilling!","Sokka, my only brother! We constantly roam these icy South Pole seas, and yet never do we find anything fulfilling!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12501,12501,Fire,3,The Ember Island Players,17,Actor Sokka,"[Cut to Actor Sokka, a thin, lanky man.] All I want is a full feeling in my stomach! I'm starving!",All I want is a full feeling in my stomach! I'm starving!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12502,12502,Fire,3,The Ember Island Players,17,Scene Description,"The audience laughs. Cut to Sokka and Katara as their faces fall; they look at each other, confused. Cut to angled shot of the stage.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12503,12503,Fire,3,The Ember Island Players,17,Actress Katara,Is food the only thing on your mind?,Is food the only thing on your mind?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12504,12504,Fire,3,The Ember Island Players,17,Actor Sokka,"[Cut to shot of the actor.] Well, I'm trying to it get out of my mind and into my mouth! I'm starving! [Audience laughs.]","Well, I'm trying to it get out of my mind and into my mouth! I'm starving!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12505,12505,Fire,3,The Ember Island Players,17,Sokka,[Leans forward in his seat; clearly annoyed.] This is pathetic! My jokes are way funnier than this! [Extends his arm in a dramatic gesture.],This is pathetic! My jokes are way funnier than this!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12506,12506,Fire,3,The Ember Island Players,17,Toph,[Laughing.] I think he's got you pegged!,I think he's got you pegged!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12507,12507,Fire,3,The Ember Island Players,17,Actress Katara,"[Cut to the stage where Actress Katara now stands in the canoe.] Every day, the world awaits a beacon to guide us, yet none appears! [Cut to close-up of the actress who holds her hand out and clasps her hands together dramatically.] Still, we cannot give up hope! For hope, [Begins to cry.] is all we have! And we must never relinquish it, even ... [Sniffs and falls back into a sitting position.] even to our dying breath! [Leans over the side of the canoe and buries her face in her hands, crying.]","Every day, the world awaits a beacon to guide us, yet none appears! Still, we cannot give up hope! For hope, is all we have! And we must never relinquish it, even ... even to our dying breath!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12508,12508,Fire,3,The Ember Island Players,17,Scene Description,"Cut to the team, Suki holding her hand over her mouth to suppress a laugh and Sokka looking over at Katara with an amused smile.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12509,12509,Fire,3,The Ember Island Players,17,Katara,"[With crossed arms, displeased.] Well, that's just silly. I don't sound like that.","Well, that's just silly. I don't sound like that.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12510,12510,Fire,3,The Ember Island Players,17,Toph,[Elated.] Oh man! This writer's a genius!,Oh man! This writer's a genius!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12511,12511,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Actress Katara still slumped over the side of the canoe. An iridescent light suddenly appears from above and she turns her head upward. Cut to shot of the stage where a model iceberg can be seen, the vague shadow of a figure visible from behind. The two actors stand up in the canoe.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12512,12512,Fire,3,The Ember Island Players,17,Actress Katara,"It appears to be someone frozen in ice, perhaps for a hundred years.","It appears to be someone frozen in ice, perhaps for a hundred years.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12513,12513,Fire,3,The Ember Island Players,17,Actor Sokka,[Closer shot of the silhouette swaying from side to side inside the iceberg prop.] But who? Who is the boy in the iceberg?,But who? Who is the boy in the iceberg?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12514,12514,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Aang who smiles and leans forward in his seat. Cut to close-up of the model iceberg where Actress Katara stands before the silhouetted figure, Actor Sokka hosting himself onto the prop.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12515,12515,Fire,3,The Ember Island Players,17,Actress Katara,Waterbend! Hi-yah!,Waterbend! Hi-yah!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12516,12516,Fire,3,The Ember Island Players,17,Scene Description,"She performs a karate chop, mimicking waterbending. The silhouette disappears from view and the prop splits in half, sending forth a jet of steam. An actress, meant to portray Aang, leaps up on screen and poses, winking and with one hand on hip. The actress is visibly wearing a flesh-colored cap over her hair to portray herself as bald; the cap also bears the airbending mastery tattoo. She wears an excessive amount of blush on her cheeks and her overall physiognomy and demeanor clearly display her femininity. +Cut to shot of the actual Aang who momentarily closes his eyes and cringes in disbelief before leaning forward over the railing even more, eyes bugging out. Cuts back to the actors on stage.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12517,12517,Fire,3,The Ember Island Players,17,Actress Katara,"Who are you, frozen boy?","Who are you, frozen boy?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12518,12518,Fire,3,The Ember Island Players,17,Actress Aang,"[Laughs; in a high-pitched voice.] I'm the Avatar, silly, here to spread joy and fun! [She leans toward Actress Katara, laying a finger on her lips, and also motions toward Actor Sokka before standing upright and spreading her arms out in a cheery gesture.]","I'm the Avatar, silly, here to spread joy and fun!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12519,12519,Fire,3,The Ember Island Players,17,Aang,"Wait, is that a woman playing me?","Wait, is that a woman playing me?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12520,12520,Fire,3,The Ember Island Players,17,Scene Description,"A crude, costumed-version of Appa suddenly bursts up from behind the trio of actors; loud festival music previously heard in the episode ""Avatar Day"" is presently played. The replica of Appa sways from side to side before leaping off the iceberg prop. Cut to a wide shot of the stage as the three actors wearing the bison costume, only their legs visible, land to the right of the stage, run across to the left side, and finally behind the iceberg prop.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12521,12521,Fire,3,The Ember Island Players,17,Actress Katara,"[Gasps.] An airbender! [Clasps her hands to her chest.] My heart is so full of hope, [Drops down on one knee emotionally.] that it's making me tearbend! [Begins to cry and grabs on to Actress Aang's leg. Cut to close-up of Actress Katara who continues to bawl dramatically. Cut back to shot of the entire trio.]","An airbender! My heart is so full of hope, that it's making me tearbend!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12522,12522,Fire,3,The Ember Island Players,17,Actor Sokka,"My stomach is so empty, that it's making me tearbend! [Throws his arms up hopelessly before dropping to his knees, clutching on to Actress Aang's other leg, and crying.] I need meat! [Cut to close-up of Actor Sokka.]","My stomach is so empty, that it's making me tearbend! I need meat!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12523,12523,Fire,3,The Ember Island Players,17,Actress Aang,"[Stoops down, puts her arm around Actor Sokka's shoulders, and points upward.] But wait! Is that a platter of meaty dumplings? [Cut to actual Aang whose head and arm rest lazily on the railing, unimpressed.]",But wait! Is that a platter of meaty dumplings?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12524,12524,Fire,3,The Ember Island Players,17,Scene Description,"Cut back to shot of the trio, Actress Aang now sitting down, her legs dangling over the edge of the iceberg prop. Both Actress Katara and Actor Sokka are kneeling down.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12525,12525,Fire,3,The Ember Island Players,17,Actor Sokka,"[Excitedly; shielding his eyes with his hand and turning his head, searching for the alleged dumplings.] Ooh, where, where?","Ooh, where, where?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12526,12526,Fire,3,The Ember Island Players,17,Actress Aang,[Laughs and swings arm jovially.] Did I mention that I'm an incurable prankster? [Crosses her legs as the audience laughs.],Did I mention that I'm an incurable prankster?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12527,12527,Fire,3,The Ember Island Players,17,Aang,"[Cut to wide shot of Team Avatar. Aang extends his arm toward the stage, angry with the actress' bad portrayal.] I don't do that! That's not what I'm like! And I'm not a woman! [Throws hands up in frustration.]",I don't do that! That's not what I'm like! And I'm not a woman!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12528,12528,Fire,3,The Ember Island Players,17,Toph,"[Laughs and turns to face Aang.] Oh, they nailed you, Twinkle Toes! [Continues to laugh.]","Oh, they nailed you, Twinkle Toes!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12529,12529,Fire,3,The Ember Island Players,17,Scene Description,"Cut to stage where the trio of actors and iceberg prop are no longer present; the scene continues to depict the South Pole seas. A model Fire Nation ship prop glides onto stage from the left; a man portraying Prince Zuko stands at the bow of the ship, garbed in Zuko's outfit from Book One and peering through a telescope. The actor portraying Iroh stands at the helm. +Cut to shot of Actor Iroh, a very rotund, round-faced man sporting a slightly exaggerated imitation of the real Iroh's hairstyle, complete with a top-knot, beard, and sideburns.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12530,12530,Fire,3,The Ember Island Players,17,Actor Iroh,"Prince Zuko, you must try this cake! [Holds up a platter of cake with one slice missing.]","Prince Zuko, you must try this cake!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12531,12531,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Actor Zuko looking through the telescope. He wears a headpiece that sports the ponytail Zuko once wore, albeit slightly exaggerated, and Zuko's scar; the replicated scar, while realistic, is worn over the wrong eye.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12532,12532,Fire,3,The Ember Island Players,17,Actor Zuko,"I don't have time to stuff my face! [Lowers his telescope and turns to Actor Iroh.] I must capture the Avatar to regain my honor! [Faces out into the audience, clutching his hand in a fist assertively.]",I don't have time to stuff my face! I must capture the Avatar to regain my honor!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12533,12533,Fire,3,The Ember Island Players,17,Actor Iroh,"[Cut to wide shot of the model ship.] Well, while you do that, maybe I'll capture another slice. [He holds the cake up higher before bringing it toward his face and proceeding to gobble it down ravenously and noisily.]","Well, while you do that, maybe I'll capture another slice.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12534,12534,Fire,3,The Ember Island Players,17,Actor Zuko,[Viewing Actor Iroh.] You sicken me!,You sicken me!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12535,12535,Fire,3,The Ember Island Players,17,Scene Description,"Cut to shot of Katara and Zuko in their seats, both with their arms crossed. Zuko appears displeased with his character portrayal while Katara looks at him with a smug smile.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12536,12536,Fire,3,The Ember Island Players,17,Zuko,[Gestures toward the stage.] They make me look totally stiff and humorless.,They make me look totally stiff and humorless.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12537,12537,Fire,3,The Ember Island Players,17,Katara,"[Complacently amused.] Actually, I think that actor's pretty spot on.","Actually, I think that actor's pretty spot on.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12538,12538,Fire,3,The Ember Island Players,17,Zuko,[In protest; holding his arms out.] How could you say that?,How could you say that?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12539,12539,Fire,3,The Ember Island Players,17,Scene Description,Cut to the bow of the model ship where Actor Zuko has resumed peering through his telescope. Actor Iroh stands behind him.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12540,12540,Fire,3,The Ember Island Players,17,Actor Iroh,[Completely at ease.] Let's forget about the Avatar and get massages!,Let's forget about the Avatar and get massages!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12541,12541,Fire,3,The Ember Island Players,17,Actor Zuko,"[Turns toward his uncle, leaning forward menacingly; shouting.] How could you say that?",How could you say that?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12542,12542,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Katara and Zuko; the former continues to smile smugly as the latter slumps down in his seat, defeated and dismayed to find her claim accurate. +Fade to a background drawing of the Southern Air Temple. The camera pans down to show Actress Aang searching, and finds a tail behind a bush prop.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12543,12543,Fire,3,The Ember Island Players,17,Actress Aang,"Hey look, I think I found something! [Tiptoes to the bush. Actor Sokka scratches his head while Actress Katara shrugs. Actress Aang picks up the Momo prop, a rabbit-monkey puppet.] It's a flying rabbit-monkey! I think I'll name him, Momo! [Laughs; using puppet.] Hi everybody, I love you! [The audience laughs.]","Hey look, I think I found something! It's a flying rabbit-monkey! I think I'll name him, Momo! Hi everybody, I love you!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12544,12544,Fire,3,The Ember Island Players,17,Aang,Ugh.,Ugh.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12545,12545,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Actress Suki, holding up two fans. She lifts them up. Actor Sokka enters in the Kyoshi Warriors' uniform.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12546,12546,Fire,3,The Ember Island Players,17,Actor Sokka,[Pointing to his backside.] Does this dress make my butt look fat?,Does this dress make my butt look fat?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12547,12547,Fire,3,The Ember Island Players,17,Scene Description,"Audience laughs, as does Suki. Sokka gives her an embarrassed look. +Cut to Actor Bumi with an Omashu background.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12548,12548,Fire,3,The Ember Island Players,17,Actor Bumi,"Riddles and challenges you must face, [Camera pans back to show the whole stage.] if you are ever to leave this place! [Laughs.]","Riddles and challenges you must face, if you are ever to leave this place!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12549,12549,Fire,3,The Ember Island Players,17,Scene Description,Actress Aang dodges a swaying rock while a goat gorilla chases Actor Sokka across stage. Actress Katara stands amidst a jennamite prop.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12550,12550,Fire,3,The Ember Island Players,17,Actress Katara,[Lifting up a piece of the jennamite prop.] Ugh! Oh!,Ugh! Oh!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12551,12551,Fire,3,The Ember Island Players,17,Scene Description,"Katara gives a disgusted look and sticks out her tongue. Cut to the stage with a pirate ship background with the Team Avatar players in center stage. The pirates enter the stage from both side holding weapons in the air and attack them. The Team Avatar players slip away, with Actress Katara holding a large scroll. They tiptoe off stage.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12552,12552,Fire,3,The Ember Island Players,17,Actor Sokka,Why did you have to steal that waterbending scroll?,Why did you have to steal that waterbending scroll?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12553,12553,Fire,3,The Ember Island Players,17,Actress Katara,[Crying.] It just gave me so much hope! [Katara narrows her eyes.],It just gave me so much hope!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12554,12554,Fire,3,The Ember Island Players,17,Scene Description,"Cut to a stage hand holding a sheet of metal, which he shakes to make a sound effect. Cut to the stage to show Actress Aang tied to a platform guarded by six Fire Nation soldiers. Actor Zuko stands in front of the platform.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12555,12555,Fire,3,The Ember Island Players,17,Actor Zuko,"The Avatar is mine! [Looking of stage.] Wait, who's coming?","The Avatar is mine! Wait, who's coming?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12556,12556,Fire,3,The Ember Island Players,17,Blue Spirit,"[Jumps on stage holding two swords and has a large mask.] I'm the Blue Spirit, the scourge of the Fire Nation, here to save the Avatar!","I'm the Blue Spirit, the scourge of the Fire Nation, here to save the Avatar!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12557,12557,Fire,3,The Ember Island Players,17,Scene Description,"The Blue Spirit walks across the stage waving his swords. The guards fall down and Actor Zuko runs around the platform and throws a blue strip of paper to symbolize firebending. The Blue Spirit points a sword at Actor Zuko, who runs away.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12558,12558,Fire,3,The Ember Island Players,17,Actress Aang,My hero! [Jumps on top of the Blue Spirit's large mask.],My hero!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12559,12559,Fire,3,The Ember Island Players,17,Scene Description,"Blue Spirit walks off stage. Zuko and Aang frown, giving each other an embarrassed look. +Fade to a stagehand using a crank to lower the actors. Actress Katara and Actor Jet appear on a small rope platform. Actress Katara cries.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12560,12560,Fire,3,The Ember Island Players,17,Actor Jet,"Don't cry, baby! Jet will wipe out that nasty town for you!","Don't cry, baby! Jet will wipe out that nasty town for you!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12561,12561,Fire,3,The Ember Island Players,17,Scene Description,A large blue banner pulled by a stagehand dressed in black crosses the stage. Actress Katara and Actor Jet ascend on their platform.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12562,12562,Fire,3,The Ember Island Players,17,Actress Katara,"Oh Jet, you're so bad.","Oh Jet, you're so bad.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12563,12563,Fire,3,The Ember Island Players,17,Scene Description,"Both exit. Katara appears embarrassed. Toph laughs. +Fade to the team traveling on a large Appa prop with mountains painted in the background.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12564,12564,Fire,3,The Ember Island Players,17,Actress Aang,[Gasps.] Look! It's the Great Divide! The biggest canyon in the Earth Kingdom!,Look! It's the Great Divide! The biggest canyon in the Earth Kingdom!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12565,12565,Fire,3,The Ember Island Players,17,Actor Sokka,"Eh, let's keep flying.","Eh, let's keep flying.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12566,12566,Fire,3,The Ember Island Players,17,Scene Description,Cut to a stagehand dropping a bag of fake snow on stage in one spot. Cut to Actor Sokka and Actress Yue with a Northern Water Tribe background painting.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12567,12567,Fire,3,The Ember Island Players,17,Actor Sokka,"Don't go, Yue! You're the only woman who has taken my mind off of food! [Kisses Yue. Gags.] Wait, did you have pickled fish for dinner?","Don't go, Yue! You're the only woman who has taken my mind off of food! Wait, did you have pickled fish for dinner?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12568,12568,Fire,3,The Ember Island Players,17,Actress Yue,"Goodbye, Sokka! I have important moon duties to take care of! [Exits on the moon prop.] And yes, I did have pickled fish!","Goodbye, Sokka! I have important moon duties to take care of! And yes, I did have pickled fish!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12569,12569,Fire,3,The Ember Island Players,17,Suki,[Laughs.] You never told me you made out with a Moon Spirit.,You never told me you made out with a Moon Spirit.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12570,12570,Fire,3,The Ember Island Players,17,Sokka,"Shhh! [Tearing up.] I'm trying to watch! [Suki looks away, and folds her arms.]",Shhh! I'm trying to watch!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12571,12571,Fire,3,The Ember Island Players,17,Scene Description,"Cut to miniature Fire Nation ships being pulled across the stage by ropes. Actress Aang, wearing a Koizilla costume, stomps on them. She waves a doll of Zhao.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12572,12572,Fire,3,The Ember Island Players,17,Actress Aang,[Laughs.] The Avatar is back to save the day! Yay! [Actress Aang stomps three more miniature ships before tripping over her Koizilla costume and falling.],The Avatar is back to save the day! Yay!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12573,12573,Fire,3,The Ember Island Players,17,Scene Description,Curtain drops. The audience cheers and Toph laughs. All the other members of Team Avatar appear disgusted.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12574,12574,Fire,3,The Ember Island Players,17,Aang,Ugh!,Ugh!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12575,12575,Fire,3,The Ember Island Players,17,Scene Description,Cut to outside the theater. The camera pans to Team Avatar sitting on a flight of stairs during intermission.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12576,12576,Fire,3,The Ember Island Players,17,Zuko,"So far, this intermission is the best part of the play.","So far, this intermission is the best part of the play.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12577,12577,Fire,3,The Ember Island Players,17,Sokka,"[Walks down the stairs holding a bag of flaming fire flakes and sits next to Suki.] Apparently, the playwright thinks I'm an idiot who tells bad jokes about meat all the time!","Apparently, the playwright thinks I'm an idiot who tells bad jokes about meat all the time!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12578,12578,Fire,3,The Ember Island Players,17,Suki,"[Hint of sarcasm.] Yeah, you tell bad jokes about plenty of other topics.","Yeah, you tell bad jokes about plenty of other topics.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12579,12579,Fire,3,The Ember Island Players,17,Sokka,[Eats a fire flake.] I know!,I know!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12580,12580,Fire,3,The Ember Island Players,17,Aang,[Angry.] At least the Sokka actor kind of looks like you. That woman playing the Avatar doesn't resemble me at all!,At least the Sokka actor kind of looks like you. That woman playing the Avatar doesn't resemble me at all!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12581,12581,Fire,3,The Ember Island Players,17,Toph,"I don't know, you are more in touch with your feminine side than most guys.","I don't know, you are more in touch with your feminine side than most guys.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12582,12582,Fire,3,The Ember Island Players,17,Aang,[Standing up.] Argh!,Argh!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12583,12583,Fire,3,The Ember Island Players,17,Katara,"Relax, Aang. They're not accurate portrayals. It's not like I'm a preachy crybaby who can't resist giving overemotional speeches about hope all the time. [Everyone looks at her.] What?","Relax, Aang. They're not accurate portrayals. It's not like I'm a preachy crybaby who can't resist giving overemotional speeches about hope all the time. What?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12584,12584,Fire,3,The Ember Island Players,17,Aang,"[Turns around and sits down. Sarcastically.] Yeah, that's not you at all.","Yeah, that's not you at all.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12585,12585,Fire,3,The Ember Island Players,17,Toph,"Listen friends, it's obvious that the playwright did his research. I know it must hurt, but what you're seeing up there on that stage is the truth.","Listen friends, it's obvious that the playwright did his research. I know it must hurt, but what you're seeing up there on that stage is the truth.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12586,12586,Fire,3,The Ember Island Players,17,Scene Description,Fade to a painted background with Earth Kingdom buildings. The Team Avatar players stand next to a large rock.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12587,12587,Fire,3,The Ember Island Players,17,Actress Katara,"Well, here we are in the Earth Kingdom!","Well, here we are in the Earth Kingdom!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12588,12588,Fire,3,The Ember Island Players,17,Actress Aang,[Opens up her miniature air glider prop.] I'd better have a look around to see if I can find an earthbending teacher! [Jumps up into the air with a cable lifting her up.],I'd better have a look around to see if I can find an earthbending teacher!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12589,12589,Fire,3,The Ember Island Players,17,Toph,"This is it, this must be where I come in!","This is it, this must be where I come in!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12590,12590,Fire,3,The Ember Island Players,17,Scene Description,"Actress Aang flies around the theater, over the audience, and returns to the stage.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12591,12591,Fire,3,The Ember Island Players,17,Actress Aang,"I flew all over town, but I couldn't find a single earthbending master!","I flew all over town, but I couldn't find a single earthbending master!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12592,12592,Fire,3,The Ember Island Players,17,Toph,Here it comes ...,Here it comes ...,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12593,12593,Fire,3,The Ember Island Players,17,Actor Toph,"[Enters the stage from a trapdoor beneath the rock prop and holds it above his head.] You can't find an earthbending master in the sky, you have to look underground! [Throws away the prop.]","You can't find an earthbending master in the sky, you have to look underground!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12594,12594,Fire,3,The Ember Island Players,17,Scene Description,"Aang, Sokka, Suki, and Katara laugh. Zuko looks up from a piece of paper, stunned. And Toph is still looking eager.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12595,12595,Fire,3,The Ember Island Players,17,Actress Aang,Who are you?,Who are you?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12596,12596,Fire,3,The Ember Island Players,17,Actor Toph,"[Spits.] My name's Toph, [Flexes.] because it sounds like tough, and that's just what I am! [Audience laughs.]","My name's Toph, because it sounds like tough, and that's just what I am!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12597,12597,Fire,3,The Ember Island Players,17,Toph,"Wait a minute, [Picks at her ear with her pinky.] I sound like a guy. A really buff guy.","Wait a minute, I sound like a guy. A really buff guy.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12598,12598,Fire,3,The Ember Island Players,17,Katara,"Well Toph, what you hear up there is the truth. It hurts, doesn't it?","Well Toph, what you hear up there is the truth. It hurts, doesn't it?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12599,12599,Fire,3,The Ember Island Players,17,Toph,"Are you kidding me? I wouldn't have cast it any other way! [Laughs as Katara looks away in dismay.] At least it's not a flying bald lady! [Camera pans to Aang, who turns toward the stage in annoyance.]",Are you kidding me? I wouldn't have cast it any other way! At least it's not a flying bald lady!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12600,12600,Fire,3,The Ember Island Players,17,Actress Aang,"So, you're blind? [Waves hand in front of Actor Toph's eyes.]","So, you're blind?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12601,12601,Fire,3,The Ember Island Players,17,Actor Toph,"[Laughs.] I can see you doing that. I see everything that you see, except I don't ""see"" like you do. I release a sonic wave from my mouth. [Screams very loudly at the Team Avatar players. The audience and Team Avatar grimace at the scream; Aang claps his hands over his ears, Zuko grips the railing in front of him, Suki and Sokka hug each other in terror, and Katara grits her teeth while Toph looks excited.] There. I got a pretty good look at you. [Actress Aang and the audience claps.]","I can see you doing that. I see everything that you see, except I don't ""see"" like you do. I release a sonic wave from my mouth. There. I got a pretty good look at you.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12602,12602,Fire,3,The Ember Island Players,17,Scene Description,Cut to a stagehand operating a light. The shot changes to show the Actors Zuko and Iroh.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12603,12603,Fire,3,The Ember Island Players,17,Actor Iroh,"Zuko, it's time we had a talk ... [Points to Zuko, who now wears a large wig.] about your hair, it's gone too far!","Zuko, it's time we had a talk ... about your hair, it's gone too far!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12604,12604,Fire,3,The Ember Island Players,17,Actor Zuko,Maybe it's best if we ... split ... up! [Actors Zuko and Iroh walk away from each other.],Maybe it's best if we ... split ... up!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12605,12605,Fire,3,The Ember Island Players,17,Scene Description,Cut to the Team Avatar players and Actors Zuko and Iroh cornering Actress Azula.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12606,12606,Fire,3,The Ember Island Players,17,Actor Zuko,"Azula, my sister, what are you doing here?","Azula, my sister, what are you doing here?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12607,12607,Fire,3,The Ember Island Players,17,Actress Azula,"You caught me. Wait, what's that? [Points in the distance.] I think it's your honor!","You caught me. Wait, what's that? I think it's your honor!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12608,12608,Fire,3,The Ember Island Players,17,Actor Zuko,Where? [Everybody looks while Actress Azula escapes through a door.],Where?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12609,12609,Fire,3,The Ember Island Players,17,Actress Katara,"[Turning to audience.] She escaped, but how?","She escaped, but how?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12610,12610,Fire,3,The Ember Island Players,17,Scene Description,Fade to a stagehand sitting on a stool while he rotates a lever. Shot changes to show the a large drill prop which Actress Azula stands on while it drills through a wall that Actress Aang attempts stands on. One stagehands dressed in black clothing shakes the wall while another waves smoke onto the stage.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12611,12611,Fire,3,The Ember Island Players,17,Actress Aang,"If she continues drilling, this wall will come down for sure!","If she continues drilling, this wall will come down for sure!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12612,12612,Fire,3,The Ember Island Players,17,Scene Description,"A stagehand offers Actress Aang a rock prop, which she throws at Actress Azula.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12613,12613,Fire,3,The Ember Island Players,17,Actress Azula,"[Blocks the rock prop.] Haha, yes! Continue drilling! The city of Ba Sing Se can hide no longer!","Haha, yes! Continue drilling! The city of Ba Sing Se can hide no longer!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12614,12614,Fire,3,The Ember Island Players,17,Scene Description,"Actress Aang throws two more rock props at Azula. The shot changes to show members of the audience yawning and falling asleep. +Cut to Actor Jet jumping in front of the camera. He wears googly eyes and waves his hook hands around. Camera zooms out to show the Team Avatar players surrounding Actor Jet.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12615,12615,Fire,3,The Ember Island Players,17,Actress Aang,"No, Jet! What did they do to you?","No, Jet! What did they do to you?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12616,12616,Fire,3,The Ember Island Players,17,Actor Jet,Must ... serve ... Earth King! [Begins swinging his hook hand wildly at Actress Aang and Actor Sokka.] Must ... destroy!,Must ... serve ... Earth King! Must ... destroy!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12617,12617,Fire,3,The Ember Island Players,17,Scene Description,A stage hand is seen throws a hollow rock prop which floats down. Actor Jet falls down so that he lands underneath the prop and crawls all the way under.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12618,12618,Fire,3,The Ember Island Players,17,Zuko,Did Jet just ... die?,Did Jet just ... die?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12619,12619,Fire,3,The Ember Island Players,17,Sokka,"You know, it was really unclear.","You know, it was really unclear.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12620,12620,Fire,3,The Ember Island Players,17,Scene Description,Fade to Actress Katara with the stage background painted as the Crystal Catacombs.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12621,12621,Fire,3,The Ember Island Players,17,Actress Katara,"I have to admit Prince Zuko, I really find you attractive!","I have to admit Prince Zuko, I really find you attractive!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12622,12622,Fire,3,The Ember Island Players,17,Actor Zuko,[Shot changes to show him sitting on a rock bench.] You don't have to make fun of me.,You don't have to make fun of me.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12623,12623,Fire,3,The Ember Island Players,17,Actress Katara,"But I mean it! [Sits down with Actor Zuko.] I've had eyes for you since the day you first captured me! [Zuko and Katara inch away from each other, slightly uncomfortable. Aang narrows his eyebrows.]",But I mean it! I've had eyes for you since the day you first captured me!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12624,12624,Fire,3,The Ember Island Players,17,Actor Zuko,"[Stands up.] Wait, I thought you were the Avatar's girl! [Aang nods.]","Wait, I thought you were the Avatar's girl!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12625,12625,Fire,3,The Ember Island Players,17,Actress Katara,"[Laughs.] The Avatar? [Stands up and walks toward Actor Zuko.] Why, he's like a little brother to me! [Laughs.] I certainly don't think of him in a romantic way. [Aang grows concerned.] Besides, how could he ever find out about ... this? [Actress Katara and Actor Zuko embrace and hold hands while Actress Katara pops up one leg. Aang gets up.]","The Avatar? Why, he's like a little brother to me! I certainly don't think of him in a romantic way. Besides, how could he ever find out about ... this?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12626,12626,Fire,3,The Ember Island Players,17,Sokka,"[Whispering.] Oh, you're getting up? [As Aang leaves.] Can you get me some fire flakes? [Puts his arm around Suki, but whispers to Aang again.] Ooh, and fire gummies! [Puts his arm back around Suki, who looks slightly annoyed.]","Oh, you're getting up? Can you get me some fire flakes? Ooh, and fire gummies!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12627,12627,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Actor Zuko standing between Actor Azula, who has a Fire Nation flag behind her, and Actor Iroh, who has an Earth Kingdom flag behind him. A light shines on Actor Zuko.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12628,12628,Fire,3,The Ember Island Players,17,Actress Azula,"Well, my brother, what's it going to be? Your nation, or a life of treachery?","Well, my brother, what's it going to be? Your nation, or a life of treachery?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12629,12629,Fire,3,The Ember Island Players,17,Actor Iroh,"[Stops drinking from a cup.] Choose treachery, it's more fun! [Winks and gives a thumbs up sign.]","Choose treachery, it's more fun!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12630,12630,Fire,3,The Ember Island Players,17,Scene Description,Actor Zuko walks toward Actor Iroh.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12631,12631,Fire,3,The Ember Island Players,17,Actress Azula,No way!,No way!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12632,12632,Fire,3,The Ember Island Players,17,Actor Zuko,"[Pushes Actor Iroh over and walks to Actress Azula.] I hate you, Uncle! You smell, and I hate you for all time!","I hate you, Uncle! You smell, and I hate you for all time!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12633,12633,Fire,3,The Ember Island Players,17,Scene Description,The Earth Kingdom flag falls on Actor Iroh as Actress Azula and Actor Iroh exit.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12634,12634,Fire,3,The Ember Island Players,17,Katara,"[To Zuko.] You didn't really say that, did you?","You didn't really say that, did you?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12635,12635,Fire,3,The Ember Island Players,17,Zuko,I might as well have.,I might as well have.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12636,12636,Fire,3,The Ember Island Players,17,Scene Description,"Cut to Actress Mai, who pulls a sword out of her hair and gives it to a ninja, who takes a guard away. The shot changes to show the stage is set up to resemble the Earth King's throne room. Actress Ty Lee jumps to the other guard, kisses her finger and touches the guard's shoulder, causing him to fall over. Actress Azula jumps behind Actress Ty Lee and they pose. The audience applauds. Actress Aang jumps in from behind the set.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12637,12637,Fire,3,The Ember Island Players,17,Actress Aang,"Avatar State, yip yip!","Avatar State, yip yip!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12638,12638,Fire,3,The Ember Island Players,17,Scene Description,"The stage light shines on Actress Aang, causing her tattoos to glow. A stagehand runs across the stage and ties a rope to Actress Aang. Actress Aang closes her eyes, and her eyelids glow too while the rope lifts her into the air. Actress Azula jumps on stage from behind the smoke.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12639,12639,Fire,3,The Ember Island Players,17,Actress Azula,Not if my lightning can help it!,Not if my lightning can help it!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12640,12640,Fire,3,The Ember Island Players,17,Scene Description,"Actress Aang peeks from behind her closed eye and grabs blue streamer, shaking and screaming in feigned pain. The audience looks at the scene in shock. Actress Aang's limp body is slowly lowered to the stage. Actresses Ty Lee and Mai pose on both sides of Actress Azula, who stands in front of Actress Aang.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12641,12641,Fire,3,The Ember Island Players,17,Actress Azula,The Avatar is no more!,The Avatar is no more!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12642,12642,Fire,3,The Ember Island Players,17,Scene Description,"Audience applauds loudly, while Team Avatar again gives disgusted looks. +Fade to outside the theater, where everyone except Aang is present for the second intermission.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12643,12643,Fire,3,The Ember Island Players,17,Suki,"It seems like every time there's a big battle, you guys barely make it out alive. I mean, you guys lose a lot!","It seems like every time there's a big battle, you guys barely make it out alive. I mean, you guys lose a lot!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12644,12644,Fire,3,The Ember Island Players,17,Sokka,"You're one to talk, Suki. Didn't Azula take you captive? That's right, she did!","You're one to talk, Suki. Didn't Azula take you captive? That's right, she did!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12645,12645,Fire,3,The Ember Island Players,17,Suki,[Looks at Sokka seriously.] Are you trying to get on my bad side?,Are you trying to get on my bad side?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12646,12646,Fire,3,The Ember Island Players,17,Sokka,I'm just saying ...,I'm just saying ...,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12647,12647,Fire,3,The Ember Island Players,17,Katara,Does anyone know where Aang is?,Does anyone know where Aang is?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12648,12648,Fire,3,The Ember Island Players,17,Sokka,"He left to get me fire gummies, like, ten minutes ago. And I'm still waiting!","He left to get me fire gummies, like, ten minutes ago. And I'm still waiting!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12649,12649,Fire,3,The Ember Island Players,17,Katara,I'm gonna check outside.,I'm gonna check outside.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12650,12650,Fire,3,The Ember Island Players,17,Scene Description,Cut to Aang standing alone on a balcony. Katara enters and walks up to him.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12651,12651,Fire,3,The Ember Island Players,17,Katara,Are you all right?,Are you all right?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12652,12652,Fire,3,The Ember Island Players,17,Aang,"[Angered.] No, I'm not! I hate this play! [Yanks his hat off and throws it on the ground.]","No, I'm not! I hate this play!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12653,12653,Fire,3,The Ember Island Players,17,Katara,"I know it's upsetting, but it sounds like you're overreacting.","I know it's upsetting, but it sounds like you're overreacting.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12654,12654,Fire,3,The Ember Island Players,17,Aang,"Overreacting? If I hadn't blocked my chakra, I'd probably be in the Avatar State right now!","Overreacting? If I hadn't blocked my chakra, I'd probably be in the Avatar State right now!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12655,12655,Fire,3,The Ember Island Players,17,Scene Description,Cut to the rest of Team Avatar inside the building. A kid wearing an Aang costume runs by.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12656,12656,Fire,3,The Ember Island Players,17,Sokka,"Suki, what are the chances you can get me backstage? I got some jokes I want to give to the actor me.","Suki, what are the chances you can get me backstage? I got some jokes I want to give to the actor me.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12657,12657,Fire,3,The Ember Island Players,17,Suki,[Seriously.] I'm an elite warrior who's trained for many years in the art of stealth. [Smiling.] I think I could get you backstage! [Sokka and Suki leave.],I'm an elite warrior who's trained for many years in the art of stealth. I think I could get you backstage!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12658,12658,Fire,3,The Ember Island Players,17,Toph,"[To Zuko, after observing everyone's reactions.] Geez, everyone's getting so upset about their characters. Even you seem more down than usual, and that's saying something!","Geez, everyone's getting so upset about their characters. Even you seem more down than usual, and that's saying something!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12659,12659,Fire,3,The Ember Island Players,17,Zuko,"You don't get it, it's different for you. You get a muscly version of yourself, taking down ten bad guys at once, and making sassy remarks.","You don't get it, it's different for you. You get a muscly version of yourself, taking down ten bad guys at once, and making sassy remarks.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12660,12660,Fire,3,The Ember Island Players,17,Toph,"Yeah, that's pretty great!","Yeah, that's pretty great!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12661,12661,Fire,3,The Ember Island Players,17,Zuko,"But for me, it takes all the mistakes I've made in my life, and shoves them back in my face. My uncle, he's always been on my side, even when things were bad. He was there for me, he taught me so much, and how do I repay him? With a knife in his back. It's my greatest regret, and I may never get to redeem myself.","But for me, it takes all the mistakes I've made in my life, and shoves them back in my face. My uncle, he's always been on my side, even when things were bad. He was there for me, he taught me so much, and how do I repay him? With a knife in his back. It's my greatest regret, and I may never get to redeem myself.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12662,12662,Fire,3,The Ember Island Players,17,Toph,"[Sits down next to him.] You have redeemed yourself to your uncle. You don't realize it, but you already have.","You have redeemed yourself to your uncle. You don't realize it, but you already have.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12663,12663,Fire,3,The Ember Island Players,17,Zuko,How do you know?,How do you know?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12664,12664,Fire,3,The Ember Island Players,17,Toph,"Because I once had a long conversation with the guy, and all he would talk about was you.","Because I once had a long conversation with the guy, and all he would talk about was you.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12665,12665,Fire,3,The Ember Island Players,17,Zuko,Really?,Really?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12666,12666,Fire,3,The Ember Island Players,17,Toph,"Yeah, and it was kind of annoying.","Yeah, and it was kind of annoying.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12667,12667,Fire,3,The Ember Island Players,17,Zuko,"Oh, sorry.","Oh, sorry.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12668,12668,Fire,3,The Ember Island Players,17,Toph,"But it was also very sweet. All your uncle wanted was for you to find your own path, and see the light. Now you're here with us. He'd be proud. [Punches Zuko on the shoulder.]","But it was also very sweet. All your uncle wanted was for you to find your own path, and see the light. Now you're here with us. He'd be proud.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12669,12669,Fire,3,The Ember Island Players,17,Zuko,Ow! What was that for?,Ow! What was that for?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12670,12670,Fire,3,The Ember Island Players,17,Toph,That's how I show affection.,That's how I show affection.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12671,12671,Fire,3,The Ember Island Players,17,Scene Description,The same boy with the Aang costume comes by and sees Zuko.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12672,12672,Fire,3,The Ember Island Players,17,Young boy,"Your Zuko costume's pretty good, but your scar's on the wrong side. [Runs off.]","Your Zuko costume's pretty good, but your scar's on the wrong side.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12673,12673,Fire,3,The Ember Island Players,17,Zuko,The scar's not on the wrong side! [Covers his face with his hood.],The scar's not on the wrong side!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12674,12674,Fire,3,The Ember Island Players,17,Scene Description,Cut to backstage as the actors talk with each other and prepare their costumes. Sokka and Suki peek backstage and spot Actor Sokka.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12675,12675,Fire,3,The Ember Island Players,17,Suki,He's coming this way!,He's coming this way!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12676,12676,Fire,3,The Ember Island Players,17,Scene Description,Sokka jumps out in front of Actor Sokka.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12677,12677,Fire,3,The Ember Island Players,17,Actor Sokka,Can I help you?,Can I help you?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12678,12678,Fire,3,The Ember Island Players,17,Sokka,"Actually, I think I can help you. I'm a big Sokka fan, but I don't think you're representing him quite as well as you could be.","Actually, I think I can help you. I'm a big Sokka fan, but I don't think you're representing him quite as well as you could be.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12679,12679,Fire,3,The Ember Island Players,17,Actor Sokka,"[Starts walking away.] Aww no, another fan with ideas.","Aww no, another fan with ideas.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12680,12680,Fire,3,The Ember Island Players,17,Sokka,[Runs in front of him.] Just hear me out. [Pulls out some cards.] Here's something I think the real Sokka would say. [Clears throat.] What does the cabbage merchant use to fix his cabbages? A cabbage patch!,Just hear me out. Here's something I think the real Sokka would say. What does the cabbage merchant use to fix his cabbages? A cabbage patch!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12681,12681,Fire,3,The Ember Island Players,17,Scene Description,Suki gives herself a face palm in the background.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12682,12682,Fire,3,The Ember Island Players,17,Actor Sokka,"[Chuckles.] That's actually pretty good! Let me see those! [Takes the cards from Sokka. Reads one and laughs.] ""A rocky relationship"" ... not bad!","That's actually pretty good! Let me see those! ""A rocky relationship"" ... not bad!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12683,12683,Fire,3,The Ember Island Players,17,Sokka,"[Puts his arm around Actor Sokka's shoulder.] Also, don't be afraid to make up some phrases, especially before an attack. Something like ... ""Flying kick-a-pow!"". [The two begin to walk away.]","Also, don't be afraid to make up some phrases, especially before an attack. Something like ... ""Flying kick-a-pow!"".","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12684,12684,Fire,3,The Ember Island Players,17,Actor Sokka,"Who are you, anyway?","Who are you, anyway?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12685,12685,Fire,3,The Ember Island Players,17,Sokka,I'm just a guy who likes comedy.,I'm just a guy who likes comedy.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12686,12686,Fire,3,The Ember Island Players,17,Scene Description,Cut to the full moon. The shot changes to show Katara and Aang alone on the balcony.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12687,12687,Fire,3,The Ember Island Players,17,Aang,"Katara, did you really mean what you said in there?","Katara, did you really mean what you said in there?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12688,12688,Fire,3,The Ember Island Players,17,Katara,In where? What are you talking about?,In where? What are you talking about?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12689,12689,Fire,3,The Ember Island Players,17,Aang,"On stage, when you said I was just like a ... brother to you, and you didn't have feelings for me.","On stage, when you said I was just like a ... brother to you, and you didn't have feelings for me.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12690,12690,Fire,3,The Ember Island Players,17,Katara,I didn't say that. An actor said that.,I didn't say that. An actor said that.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12691,12691,Fire,3,The Ember Island Players,17,Aang,"But it's true, isn't it? We kissed at the Invasion, and I thought we were gonna be together. But we're not.","But it's true, isn't it? We kissed at the Invasion, and I thought we were gonna be together. But we're not.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12692,12692,Fire,3,The Ember Island Players,17,Katara,"Aang, I don't know.","Aang, I don't know.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12693,12693,Fire,3,The Ember Island Players,17,Aang,Why don't you know?,Why don't you know?,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12694,12694,Fire,3,The Ember Island Players,17,Katara,"Because, we're in the middle of a war, and, we have other things to worry about. This isn't the right time.","Because, we're in the middle of a war, and, we have other things to worry about. This isn't the right time.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12695,12695,Fire,3,The Ember Island Players,17,Aang,"Well, when is the right time?","Well, when is the right time?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12696,12696,Fire,3,The Ember Island Players,17,Katara,"Aang, I'm sorry, but right now I'm just a little confused.","Aang, I'm sorry, but right now I'm just a little confused.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12697,12697,Fire,3,The Ember Island Players,17,Scene Description,Aang tries to kiss Katara.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12698,12698,Fire,3,The Ember Island Players,17,Katara,I just said I was confused! I'm going inside. [Exits the balcony.],I just said I was confused! I'm going inside.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12699,12699,Fire,3,The Ember Island Players,17,Aang,"Ugh, I'm such an idiot! [Puts down his head on the balcony railing.]","Ugh, I'm such an idiot!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12700,12700,Fire,3,The Ember Island Players,17,Scene Description,Fade to back inside the theater. Aang returns to the rest of the group and sits in the back row with Suki and Sokka.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12701,12701,Fire,3,The Ember Island Players,17,Sokka,"Here's what you missed ... we went to the Fire Nation, and you got better, and Katara was the Painted Lady, and I got a sword, and I think Combustion Man died. Oh, look, the Invasion's about to start! Shhh!","Here's what you missed ... we went to the Fire Nation, and you got better, and Katara was the Painted Lady, and I got a sword, and I think Combustion Man died. Oh, look, the Invasion's about to start! Shhh!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12702,12702,Fire,3,The Ember Island Players,17,Scene Description,Cut to Actresses Katara and Aang standing on one of the submarines.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12703,12703,Fire,3,The Ember Island Players,17,Actress Katara,"I just wanted to let you know, Aang, that I'll always love you. Like a brother.","I just wanted to let you know, Aang, that I'll always love you. Like a brother.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12704,12704,Fire,3,The Ember Island Players,17,Actress Aang,[Punching the air.] I wouldn't want it any other way!,I wouldn't want it any other way!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12705,12705,Fire,3,The Ember Island Players,17,Scene Description,The two shake hands. Actress Aang opens his miniature glider and flies up via a rope. Actress Katara waves. Aang curls up and uses his hat to cover his face. Actress Katara and Actors Toph and Sokka looking around on top of the submarine.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12706,12706,Fire,3,The Ember Island Players,17,Actor Sokka,"Hey Toph, would you say you and Aang have a ""rocky relationship""? [Audience laughs.]","Hey Toph, would you say you and Aang have a ""rocky relationship""?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12707,12707,Fire,3,The Ember Island Players,17,Sokka,[Laughs hysterically at Suki and Aang. Lifts up Aang's hat.] I told him to say that!,I told him to say that!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12708,12708,Fire,3,The Ember Island Players,17,Actor Sokka,I hope everyone's ready for the Invasion! Slap-a-pow! [The audience and Sokka laugh.],I hope everyone's ready for the Invasion! Slap-a-pow!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12709,12709,Fire,3,The Ember Island Players,17,Scene Description,"The curtain rises, two stagehands clad in black finish pushing the Royal Palace prop and run off stage. Actress Katara and Actors Toph and Sokka enter from the sides of the stage, while Actress Aang is dropped in from above the stage.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12710,12710,Fire,3,The Ember Island Players,17,Actress Aang,"We finally made it to the Royal Palace, but no one's home!","We finally made it to the Royal Palace, but no one's home!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12711,12711,Fire,3,The Ember Island Players,17,Scene Description,"Enter Actor Zuko, stage right and Actor Sokka raises his boomerang.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12712,12712,Fire,3,The Ember Island Players,17,Actor Zuko,"Actually, I'm home, and I want to join you!","Actually, I'm home, and I want to join you!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12713,12713,Fire,3,The Ember Island Players,17,Actor Sokka,"[Lowers his boomerang.] I guess we have no choice. Come on! [All exit stage left, except for Actress Aang, who is lifted off stage.]",I guess we have no choice. Come on!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12714,12714,Fire,3,The Ember Island Players,17,Sokka,[Stands up and stretches.] I guess that's it. The play's caught up to the present now.,I guess that's it. The play's caught up to the present now.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12715,12715,Fire,3,The Ember Island Players,17,Suki,"Wait, the play's not over!","Wait, the play's not over!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12716,12716,Fire,3,The Ember Island Players,17,Sokka,"[Sits back down.] But it is over, unless ... [Dramatically.] this is the future.","But it is over, unless ... this is the future.","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12717,12717,Fire,3,The Ember Island Players,17,Scene Description,Cut to Actor Ozai on stage. The shot changes to show him standing on the Royal Palace prop. An orange lantern held by a small cable with paper flames slowly moves across the stage.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12718,12718,Fire,3,The Ember Island Players,17,Actor Ozai,"With the energy harnessed from that comet, no one will be able to stop ... [Lifts his hands in the air.] the Fire Nation!","With the energy harnessed from that comet, no one will be able to stop ... the Fire Nation!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12719,12719,Fire,3,The Ember Island Players,17,Scene Description,Actress Azula enters.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12720,12720,Fire,3,The Ember Island Players,17,Actress Azula,"Father, Zuko and the Avatar are at the Palace. They're trying to stop you!","Father, Zuko and the Avatar are at the Palace. They're trying to stop you!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12721,12721,Fire,3,The Ember Island Players,17,Actor Ozai,You take care of Zuko. I shall face the Avatar myself! [Disappears behind a smokescreen.],You take care of Zuko. I shall face the Avatar myself!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12722,12722,Fire,3,The Ember Island Players,17,Scene Description,Actor Zuko jumps on stage and a rope lowers Actress Aang on stage as he holds his miniature glider prop.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12723,12723,Fire,3,The Ember Island Players,17,Actor Zuko,"Aang! You find the Fire Lord, I'll hold her off!","Aang! You find the Fire Lord, I'll hold her off!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12724,12724,Fire,3,The Ember Island Players,17,Scene Description,The cable lifts Actress Aang off stage.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12725,12725,Fire,3,The Ember Island Players,17,Actress Azula,You are no longer my brother. You are an enemy!,You are no longer my brother. You are an enemy!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12726,12726,Fire,3,The Ember Island Players,17,Actor Zuko,No! I am the rightful heir to the throne!,No! I am the rightful heir to the throne!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12727,12727,Fire,3,The Ember Island Players,17,Actress Azula,We'll see!,We'll see!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12728,12728,Fire,3,The Ember Island Players,17,Scene Description,"Actress Azula pulls out her blue streamer and snaps it at Zuko who ducks out of the way. Actor Zuko holds two red streamers and jumps to the other side of Actress Azula. He throws his two red streamers at her and Actress Azula jumps over him. Actress Azula raises her hand not holding the blue streamer. Five red paper resembling flames shot from the ground starting at Actress Azula, the last one covering Actor Zuko so that only his silhouette can be seen.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12729,12729,Fire,3,The Ember Island Players,17,Actor Zuko,Honor! [He drops off stage through a trapdoor with the flames.],Honor!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12730,12730,Fire,3,The Ember Island Players,17,Scene Description,"Actress Azula bows. The audience cheers. Zuko looks worried and the rest of Team Avatar looks at him. The shot changes to show the stage, which has small paper flames fluttering upstage. Actress Aang walks across the stage and looks around while Actor Ozai sits on his throne beneath the Sozin's Comet prop.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12731,12731,Fire,3,The Ember Island Players,17,Actor Ozai,"So, you have mastered all four elements?","So, you have mastered all four elements?","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12732,12732,Fire,3,The Ember Island Players,17,Actress Aang,"[Pointing her staff prop at him.] Yeah, and now you're going down!","Yeah, and now you're going down!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12733,12733,Fire,3,The Ember Island Players,17,Actor Ozai,"No! It is you who are going down! [Stands up.] You see, you are too late! The comet is already here, [Actress Aang looks in concern at the audience. Aang widens his eyes.] and I'm unstoppable!","No! It is you who are going down! You see, you are too late! The comet is already here, and I'm unstoppable!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12734,12734,Fire,3,The Ember Island Players,17,Scene Description,"Actor Ozai wields two red streamers. He attacks Actress Aang, who jumps out of the way. Actress Aang opens her glider, which now has two small blue banners pop out. She twirls the weapon. Actor Ozai circles his streamers while Actress Aang jumps over him with the help of a rope. She tries to get close to Actor Ozai, but Actor Ozai makes her back away using his red streamers. Actress Aang jumps over Actor Ozai, who fires a constant stream of red streamers at her. When Actress Aang lands, Actor Ozai sends a large red sheet painted as fire at her. A black clad stagehand lets go of the prop and runs away.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12735,12735,Fire,3,The Ember Island Players,17,Actress Aang,[Becomes wrapped in the fire blanket.] Noooo ...! [Falls to the stage with her eyes closed.],Noooo ...!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12736,12736,Fire,3,The Ember Island Players,17,Actress Azula,"It is over, Father. We've done it!","It is over, Father. We've done it!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12737,12737,Fire,3,The Ember Island Players,17,Actor Ozai,"Yes! We have done it! The dreams of my father, [Large fire sheets rise behind him and a platform lifts him up.] and my father's father, have now been realized! [A Fire Nation flag drops.] The world ... is ... mine!","Yes! We have done it! The dreams of my father, and my father's father, have now been realized! The world ... is ... mine!","Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12738,12738,Fire,3,The Ember Island Players,17,Scene Description,"The audience, except Team Avatar, cheers loudly and gives a standing ovation. Team Avatar is noticeably concerned by the events. +Fade to outside the theater, as Team Avatar is walking away.",NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12739,12739,Fire,3,The Ember Island Players,17,Zuko,That ... wasn't a good play.,That ... wasn't a good play.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12740,12740,Fire,3,The Ember Island Players,17,Aang,I'll say.,I'll say.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12741,12741,Fire,3,The Ember Island Players,17,Katara,No kidding.,No kidding.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12742,12742,Fire,3,The Ember Island Players,17,Suki,Horrible.,Horrible.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12743,12743,Fire,3,The Ember Island Players,17,Toph,You said it.,You said it.,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12744,12744,Fire,3,The Ember Island Players,17,Sokka,[Walking with Suki.] But the effects were decent!,But the effects were decent!,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12745,12745,Fire,3,The Ember Island Players,17,Scene Description,Fade to credits.,NA,"Tim Hedrick, Joshua Hamilton, John O'Bryan",Giancarlo Volpe,8.6 +12746,12746,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,The episode opens on Ember Island outside Ozai's beach house. Aang practices firebending punches. Zuko watches him with his arms crossed.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12747,12747,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,More ferocious! Imagine striking through your opponent's heart!,More ferocious! Imagine striking through your opponent's heart!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12748,12748,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[Stops firebending and turns to Zuko while growling in irritance.] I'm trying.,I'm trying.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12749,12749,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Now let me hear you roar like a tigerdillo! [Aang gives a light roar as fire bursts come out of his hands and mouth; cuts to a front scene of his embarrassed grin.] That sounded pathetic! I said roar!,Now let me hear you roar like a tigerdillo! That sounded pathetic! I said roar!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12750,12750,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Aang roars even louder, as three bursts of fire come out of his hands and mouth. Momo runs and hides behind Zuko's leg in fear. Zuko nods approvingly.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12751,12751,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,[Holding up two watermelons.] Who wants a nice cool glass of watermelon juice?,Who wants a nice cool glass of watermelon juice?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12752,12752,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Brightens up upon hearing this.] Ooh, ooh! Me, me, me! [Runs to Katara.]","Ooh, ooh! Me, me, me!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12753,12753,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Zuko's hand comes into screen and grabs Aang by the shirt of his robes.] Hey! [Aang keeps trying to run off, but it is useless.] Your lesson's not over yet! Get back here! [Holds Aang up.]",Hey! Your lesson's not over yet! Get back here!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12754,12754,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Suki,"[Lounging on stairs with Sokka.] Come on, Zuko. Just take a break. What's the big deal?","Come on, Zuko. Just take a break. What's the big deal?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12755,12755,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Lets Aang go.] Fine! [Aang happily runs off and takes a watermelon.] If you want to lounge around like a bunch of snail sloths all day, then go ahead! [Walks away.]","Fine! If you want to lounge around like a bunch of snail sloths all day, then go ahead!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12756,12756,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Maybe Zuko's right. Sitting around the house has made us pretty lazy. But I know [Lays his watermelon aside and stands up slowly.] just the thing to change all that. [Takes off his robe, revealing a bathing suit.] Beach party!",Maybe Zuko's right. Sitting around the house has made us pretty lazy. But I know just the thing to change all that. Beach party!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12757,12757,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Dives excitedly out of the camera's view. Camera changes scene to the ocean to show that he entered the water with a splash. Sokka surfaces with seaweed on his head and he blows water from his mouth. He grins goofily. Katara uses waterbending to create an ice surfboard and surfs on the water. Cut to Suki, watching Sokka grab some seaweed and bring it to an area. He takes two buckets and fills them with water. Aang sticks the last piece of wood on a life-sized sand sculpture of Appa, finishing the last horn.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12758,12758,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,Check out my Appa sand sculpture. [Appa roars at the sculpture.],Check out my Appa sand sculpture.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12759,12759,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Not bad, baldy, [Aang jumps off the sculpture.] but I've been working on my sandbending. [Cracks her fingers.] You're gonna love this.","Not bad, baldy, but I've been working on my sandbending. You're gonna love this.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12760,12760,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Toph cracks her knuckles and uses sandbending to create a sand replica of the city of Ba Sing Se. Aang peers down at the replica's details.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12761,12761,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Amazed.] Whoa! Wow, you've even made a little Earth King and Bosco.","Whoa! Wow, you've even made a little Earth King and Bosco.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12762,12762,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Sokka works hard on a sculpture.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12763,12763,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Try and top that, Sokka.","Try and top that, Sokka.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12764,12764,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Reveals a grotesque looking sculpture with seaweed for hair, a starfish for a nose, and rocks and shells for eyes and mouth.] Ta da!",Ta da!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12765,12765,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,Is that a blubbering blob monster?,Is that a blubbering blob monster?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12766,12766,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Defensively.] No, it's Suki!","No, it's Suki!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12767,12767,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Aang looks at him with an animated shocked and surprised look until he and Toph both laugh hysterically.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12768,12768,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Suki, we'll all understand if you break up with him over this.","Suki, we'll all understand if you break up with him over this.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12769,12769,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Suki,[Sitting on a beach towel.] I think it's sweet.,I think it's sweet.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12770,12770,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Sokka runs and slides into screen on his knees as he grabs Suki by her shoulders and kisses her on the cheek.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12771,12771,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,But it doesn't even look like- Aah!,But it doesn't even look like- Aah!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12772,12772,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"He is cut off by a fire blast that destroys the sculpture. Zuko appears and chases after Aang, blasting at him with firebending. Aang jumps over the sand replica of Ba Sing Se and Zuko destroys the replica. Aang hides behind his Appa sand sculpture.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12773,12773,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[Peeking out from behind the sculpture fearfully.] What are you doing?,What are you doing?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12774,12774,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Teaching you a lesson!,Teaching you a lesson!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12775,12775,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Zuko destroys Aang's Appa sculpture with a fire blast. Aang jumps back up to the house. Zuko goes after him, continually firing blasts at him. Katara comes back to shore and sees the destruction.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12776,12776,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,What happened?,What happened?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12777,12777,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[While rebuilding his sculpture.] Zuko's gone crazy! I made a sand sculpture of Suki and he destroyed it! [Pauses a moment.] Oh, and he's attacking Aang.","Zuko's gone crazy! I made a sand sculpture of Suki and he destroyed it! Oh, and he's attacking Aang.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12778,12778,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Katara, Toph, and Suki run after them, the latter dragging Sokka. Zuko chases Aang onto a tree and sends another fire blast at him, forcing him to jump onto the roof of the beach house. Zuko subsequently climbs onto the roof with him.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12779,12779,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,Get a grip before I blast you off this roof!,Get a grip before I blast you off this roof!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12780,12780,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Go ahead and do it!,Go ahead and do it!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12781,12781,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Zuko blasts fire at him. Aang slides down the roof and into the house. He hides behind a dresser. Zuko breaks the roof with firebending and drops into the room. He takes a fighting stance and looks around for Aang. Aang kicks the dresser at him, but Zuko destroys it. Aang runs into the hall. Zuko augments fire into the hallway. Aang clears his part of the hallway from the fire using airbending.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12782,12782,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,Enough!,Enough!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12783,12783,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Aang airbends Zuko out of the house. Everyone approaches Zuko.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12784,12784,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,[Worried.] What's wrong with you? You could have hurt Aang!,What's wrong with you? You could have hurt Aang!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12785,12785,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,What's wrong with me? What's wrong with all of you? How can you sit around having beach parties when Sozin's Comet is only three days away? [Everybody looks at Zuko.] Why are you all looking at me like I'm crazy?,What's wrong with me? What's wrong with all of you? How can you sit around having beach parties when Sozin's Comet is only three days away? Why are you all looking at me like I'm crazy?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12786,12786,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,About Sozin's Comet ... I was actually gonna wait to fight the Fire Lord until after it came.,About Sozin's Comet ... I was actually gonna wait to fight the Fire Lord until after it came.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12787,12787,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,[Shocked.] After?,After?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12788,12788,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,I'm not ready. I need more time to master firebending.,I'm not ready. I need more time to master firebending.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12789,12789,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"And frankly, your earthbending could still use some work too. [Aang grimaces.]","And frankly, your earthbending could still use some work too.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12790,12790,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"So, you all knew Aang was going to wait?","So, you all knew Aang was going to wait?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12791,12791,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Honestly, if Aang tries to fight the Fire Lord now, he's going to lose. [Aang looks over to Sokka as he says this, frowns, and closes his eyes in defeat. To Aang.] No offense.","Honestly, if Aang tries to fight the Fire Lord now, he's going to lose. No offense.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12792,12792,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"The whole point of fighting the Fire Lord before the Comet was to stop the Fire Nation from winning the War, but they pretty much won the War when they took Ba Sing Se. Things can't get any worse.","The whole point of fighting the Fire Lord before the Comet was to stop the Fire Nation from winning the War, but they pretty much won the War when they took Ba Sing Se. Things can't get any worse.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12793,12793,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"You're wrong. [Turns away from them.] It's about to get worse than you can even imagine. [Flashes back to one day before the Day of Black Sun. Servants help Zuko get dressed on his way to a meeting. Once done, they stay behind and bow to him as he walks on. Voice-over.] The day before the eclipse, my father asked me to attend an important war meeting. It was what I dreamed about for so many years. My father had finally accepted me back.","You're wrong. It's about to get worse than you can even imagine. The day before the eclipse, my father asked me to attend an important war meeting. It was what I dreamed about for so many years. My father had finally accepted me back.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12794,12794,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"Welcome, Prince Zuko. We waited for you. [Zuko walks up to his father. He bows to Ozai and sits down next to him.] General Shinu, your report.","Welcome, Prince Zuko. We waited for you. General Shinu, your report.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12795,12795,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Shinu,"Thank you, sir. [Stands up and walks up to the opposite side of Ozai across the table.] Ba Sing Se is still under our control. However, earthbender rebellions have prevented us from achieving total victory in the Earth Kingdom.","Thank you, sir. Ba Sing Se is still under our control. However, earthbender rebellions have prevented us from achieving total victory in the Earth Kingdom.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12796,12796,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,What is your recommendation?,What is your recommendation?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12797,12797,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Shinu,"Our army is spread too thin, but once the eclipse is over and the invasion defeated, we should transfer more domestic forces into the Earth Kingdom.","Our army is spread too thin, but once the eclipse is over and the invasion defeated, we should transfer more domestic forces into the Earth Kingdom.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12798,12798,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"Hmm. Prince Zuko, you've been among the Earth Kingdom commoners. Do you think that adding more troops will stop these rebellions?","Hmm. Prince Zuko, you've been among the Earth Kingdom commoners. Do you think that adding more troops will stop these rebellions?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12799,12799,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"The people of the Earth Kingdom are proud and strong. They can endure anything, as long as they have hope.","The people of the Earth Kingdom are proud and strong. They can endure anything, as long as they have hope.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12800,12800,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"Yes, you're right. We need to destroy their hope.","Yes, you're right. We need to destroy their hope.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12801,12801,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"Well, that's not exactly what I-","Well, that's not exactly what I-",Michael Dante DiMartino,Ethan Spaulding,9.1 +12802,12802,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,I think you should take their precious hope and the rest of their land and burn it all to the ground.,I think you should take their precious hope and the rest of their land and burn it all to the ground.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12803,12803,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"Yes ... [Cuts to Azula looking pleased.] Yes you're right, Azula. [Stands up and walks to the world map.] Sozin's Comet is almost upon us, and on that day, it will endow us with the strength and power of a hundred suns. No bender will stand a chance against us.","Yes ...  Yes you're right, Azula. Sozin's Comet is almost upon us, and on that day, it will endow us with the strength and power of a hundred suns. No bender will stand a chance against us.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12804,12804,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Shinu,"What are you suggesting, sir?","What are you suggesting, sir?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12805,12805,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"When the comet last came, my grandfather, Fire Lord Sozin, used it to wipe out the Air Nomads. [Cut to Zuko.] Now, I will use its power to end the Earth Kingdom ... [Zuko looks astonished. Cut back to Ozai smiling.] permanently. [The shot changes to an aerial view of the map which Ozai walks to the center.] From our airships, we will rain fire over their lands, a fire that will destroy everything; and out of the ashes, a new world will be born, a world in which all the lands are Fire Nation and I am the supreme ruler of everything! [War generals applaud.]","When the comet last came, my grandfather, Fire Lord Sozin, used it to wipe out the Air Nomads. Now, I will use its power to end the Earth Kingdom ... permanently. From our airships, we will rain fire over their lands, a fire that will destroy everything; and out of the ashes, a new world will be born, a world in which all the lands are Fire Nation and I am the supreme ruler of everything!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12806,12806,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Voice-over.] I wanted to speak out against this horrifying plan, but I'm ashamed to say I didn't. [Fade to the present.] My whole life, I struggled to gain my father's love and acceptance, but once I had it, I realized I'd lost myself getting there. I'd forgotten who I was.","I wanted to speak out against this horrifying plan, but I'm ashamed to say I didn't. My whole life, I struggled to gain my father's love and acceptance, but once I had it, I realized I'd lost myself getting there. I'd forgotten who I was.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12807,12807,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,[Sinks to her knees.] I can't believe this.,I can't believe this.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12808,12808,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"I always knew the Fire Lord was a bad guy, but his plan is just pure evil.","I always knew the Fire Lord was a bad guy, but his plan is just pure evil.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12809,12809,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,What am I gonna do?,What am I gonna do?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12810,12810,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Stands up from his rock seat and walks to Aang.] I know you're scared, and I know you're not ready to save the world, but if you don't defeat the Fire Lord before the comet comes, there won't be a world to save anymore.","I know you're scared, and I know you're not ready to save the world, but if you don't defeat the Fire Lord before the comet comes, there won't be a world to save anymore.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12811,12811,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,Why didn't you tell me about your dad's crazy plan sooner? [Walks away.],Why didn't you tell me about your dad's crazy plan sooner?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12812,12812,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,I didn't think I had to. I assumed you were still going to fight him before the comet. No one told me you decided to wait.,I didn't think I had to. I assumed you were still going to fight him before the comet. No one told me you decided to wait.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12813,12813,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Holding his head with both hands.] This is bad. [Sinks down to his knees.] This is really, really bad.","This is bad. This is really, really bad.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12814,12814,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Aang, you don't have to do this alone.","Aang, you don't have to do this alone.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12815,12815,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Toph, Zuko, Sokka, and Suki stand next to Katara.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12816,12816,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Yeah, if we all fight the Fire Lord together, we got a shot at taking him down.","Yeah, if we all fight the Fire Lord together, we got a shot at taking him down.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12817,12817,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,All right! Team Avatar is back! Air. [Shot of Aang.] Water. [Shot of Katara.] Earth. [Shot of Toph.] Fire. [Shot of Zuko. Sokka gives Suki a clump of leaves and holds up a large leaf.] Fan and sword! [Sokka's leaf wilts.],All right! Team Avatar is back! Air. Water. Earth. Fire. Fan and sword!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12818,12818,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"Fighting the Fire Lord is going to be the hardest thing we've ever done together, but I wouldn't want to do it any other way.","Fighting the Fire Lord is going to be the hardest thing we've ever done together, but I wouldn't want to do it any other way.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12819,12819,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Everybody except Zuko laughs and walks over to Aang for a group hug.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12820,12820,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,Yeah.,Yeah.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12821,12821,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,All right.,All right.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12822,12822,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Get over here, Zuko. Being part of the group also means being part of group hugs.","Get over here, Zuko. Being part of the group also means being part of group hugs.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12823,12823,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"With a resigned look on his face, Zuko joins the hug. Appa flies in, knocking the entire group over. The camera cuts to the beach house courtyard in another lesson between Aang and Zuko. Under the pavilion, Katara watches with Momo at her side.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12824,12824,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"There's one technique you need to know before facing my father - how to redirect lightning. [Aang smiles.] If you let the energy in your own body flow, the lightning will follow it. [Uses his fingers to show how the energy should flow through the body.] You turn your opponents' energy against them.","There's one technique you need to know before facing my father - how to redirect lightning. If you let the energy in your own body flow, the lightning will follow it. You turn your opponents' energy against them.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12825,12825,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,That's like waterbending. [Joins Zuko in practicing the lightning redirection form.],That's like waterbending.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12826,12826,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Exactly. My uncle invented this technique himself by studying waterbenders.,Exactly. My uncle invented this technique himself by studying waterbenders.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12827,12827,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"So, have you ever redirected lightning before?","So, have you ever redirected lightning before?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12828,12828,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"Once, against my father.","Once, against my father.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12829,12829,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,What did it feel like?,What did it feel like?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12830,12830,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Stops practicing the lightning redirection form.] Exhilarating ... [Flashes back to the moment for a few seconds.] but terrifying. You feel so powerful holding that much energy in your body, but you know if you make the wrong move, it's over.","Exhilarating ... but terrifying. You feel so powerful holding that much energy in your body, but you know if you make the wrong move, it's over.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12831,12831,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Chuckles.] Well, not over over. I mean there's always Katara and a little Spirit Water action, [Turns to Katara.] am I right?","Well, not over over. I mean there's always Katara and a little Spirit Water action, am I right?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12832,12832,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Actually, I used it all up after Azula shot you.","Actually, I used it all up after Azula shot you.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12833,12833,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[Disappointed.] Oh.,Oh.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12834,12834,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,You'll have to take the Fire Lord's life before he takes yours.,You'll have to take the Fire Lord's life before he takes yours.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12835,12835,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"Yeah, I'll just do that.","Yeah, I'll just do that.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12836,12836,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,The scene changes to the rocky cliffs near the beach.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12837,12837,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Gather round, Team Avatar. [Puts a carved melon on a draped mannequin.] In order to take out the Fire Lord - or in this case, the Melon Lord - our timing has to be perfect. [Kneels down on the ground and uses a stick to draw a line heading toward the Melon Lord symbol.] First, Suki and I will draw his fire. Then, Katara and Zuko charge in with some liquidy hot offense, [Draws another line.] and while the Melon Lord is distracted, [Draws a third line.] Aang swoops in ... and bam! [Destroys the Melon Lord symbol with the line.] He delivers the final blow.","Gather round, Team Avatar. In order to take out the Fire Lord - or in this case, the Melon Lord - our timing has to be perfect. First, Suki and I will draw his fire. Then, Katara and Zuko charge in with some liquidy hot offense, and while the Melon Lord is distracted, Aang swoops in ... and bam! He delivers the final blow.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12838,12838,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,Uh ... what about me?,Uh ... what about me?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12839,12839,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"For now, you're the Melon Lord's forces.","For now, you're the Melon Lord's forces.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12840,12840,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,[Excited.] So I get to chuck flaming rocks at all of you?,So I get to chuck flaming rocks at all of you?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12841,12841,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,Whatever makes the training feel more realistic.,Whatever makes the training feel more realistic.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12842,12842,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,Sweetness.,Sweetness.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12843,12843,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Fade to the Melon Lord. The camera pulls back to show Toph surrounded by boulder coated in grease with small bowls of fire set out in front of each boulder.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12844,12844,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,Mwah-ha-ha-ha!,Mwah-ha-ha-ha!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12845,12845,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Katara and Sokka look at Aang and Momo who look at Suki and Sokka. Sokka signals to the others to start moving. Sokka and Suki run toward the Melon Lord, but become confronted by stone Fire Nation soldiers, who suddenly rise out of the ground. Sokka cuts one stone soldier in half and Suki kicks down another one. They keep running, but a large burning rock boulder falls out of the sky, blocking the camera's view of them. Suki jumps over the boulder. Sokka finds himself fallen down just a few inches away from the flaming boulder and jumps up.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12846,12846,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Watch it, Toph!","Watch it, Toph!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12847,12847,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,I am not Toph. I am Melon Lord! Mwah-ha-ha-ha-ha-ha!,I am not Toph. I am Melon Lord! Mwah-ha-ha-ha-ha-ha!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12848,12848,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Toph lights a second boulder on fire and sends it through the air at Zuko and Katara. They run around the boulder and become surrounded by a circle of stone Fire Nation soldiers, which they quickly destroy.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12849,12849,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Now, Aang!","Now, Aang!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12850,12850,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Aang jumps, preparing to strike the Melon Lord with his glider staff. Aang looks at the Melon Lord and changes expressions from anger to uncertainty. When he lands, Aang stops his attack just before smashing the Melon Lord. He backs away.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12851,12851,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,What are you waiting for? Take him out!,What are you waiting for? Take him out!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12852,12852,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[Shaking his head.] I can't.,I can't.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12853,12853,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Walks up to Aang.] What's wrong with you? If this was the real deal, you'd be shot full of lightning right now.","What's wrong with you? If this was the real deal, you'd be shot full of lightning right now.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12854,12854,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"I'm sorry, but it just didn't feel right. I didn't feel like myself.","I'm sorry, but it just didn't feel right. I didn't feel like myself.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12855,12855,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Sokka takes out his sword. Cut to Aang, wincing as he hears squishing sounds.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12856,12856,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Off-camera.] There, that's how it's done.","There, that's how it's done.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12857,12857,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"A piece of melon falls on the ground near the Melon Lord. Momo slurps some melon juice out of the piece. The camera zooms toward Aang, who is horrified at the scene. Later that night, Team Avatar shares a meal outside. Aang faces away from the rest of the group.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12858,12858,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,[Holding a scroll.] I have a surprise for everyone!,I have a surprise for everyone!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12859,12859,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"I knew it! You did have a secret thing with Haru! [She smiles while Sokka, Suki, and Zuko look at her strangely.]",I knew it! You did have a secret thing with Haru!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12860,12860,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Uh, no. [Everybody else starts eating again.] I was looking for cooking pots in the attic, and I found this! [Unravels the scroll showing a painting of a happy dark-haired baby playing at the beach.] Look at baby Zuko. Isn't he cute?","Uh, no. I was looking for cooking pots in the attic, and I found this! Look at baby Zuko. Isn't he cute?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12861,12861,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Everybody except Zuko laughs.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12862,12862,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"[To Zuko.] Oh, lighten up. I'm just teasing.","Oh, lighten up. I'm just teasing.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12863,12863,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,That's not me. It's my father.,That's not me. It's my father.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12864,12864,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Katara rolls up the scroll.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12865,12865,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Suki,But he looks so sweet and innocent.,But he looks so sweet and innocent.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12866,12866,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"Well, that sweet little kid grew up to be a monster, and the worst father in the history of fathers.","Well, that sweet little kid grew up to be a monster, and the worst father in the history of fathers.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12867,12867,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[The camera pans to him.] But he's still a human being.,But he's still a human being.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12868,12868,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,You're going to defend him?,You're going to defend him?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12869,12869,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"No, I agree with you. [Stands up.] Fire Lord Ozai is a horrible person, and the world would probably be better off without him, but there's got to be another way.","No, I agree with you. Fire Lord Ozai is a horrible person, and the world would probably be better off without him, but there's got to be another way.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12870,12870,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Like what?,Like what?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12871,12871,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"I don't know. [Perking up.] Maybe we can make some big pots of glue, and then I can use gluebending to stick his arms and legs together so he can't bend anymore.","I don't know. Maybe we can make some big pots of glue, and then I can use gluebending to stick his arms and legs together so he can't bend anymore.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12872,12872,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Sarcastically.] Yeah, then you can show him his baby pictures, and all those happy memories will make him good again. [Suki and Sokka laugh in the background.]","Yeah, then you can show him his baby pictures, and all those happy memories will make him good again.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12873,12873,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[Excitedly.] Do you really think that would work?,Do you really think that would work?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12874,12874,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,[Bluntly.] No!,No!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12875,12875,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,[Sighs. Paces back and forth.] This goes against everything I learned from the monks. I can't just go around wiping out people I don't like.,This goes against everything I learned from the monks. I can't just go around wiping out people I don't like.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12876,12876,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Sure you can. You're the Avatar. If it's in the name of keeping balance, I'm pretty sure the universe will forgive you.","Sure you can. You're the Avatar. If it's in the name of keeping balance, I'm pretty sure the universe will forgive you.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12877,12877,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Turns back to Sokka; losing his temper.] This isn't a joke, Sokka! None of you understand the position I'm in.","This isn't a joke, Sokka! None of you understand the position I'm in.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12878,12878,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Aang, we do understand. It's just ...","Aang, we do understand. It's just ...",Michael Dante DiMartino,Ethan Spaulding,9.1 +12879,12879,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"Just what, Katara? What?","Just what, Katara? What?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12880,12880,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,We're trying to help!,We're trying to help!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12881,12881,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"Then, when you figure out a way for me to beat the Fire Lord without taking his life, I'd love to hear it! [Walks away.]","Then, when you figure out a way for me to beat the Fire Lord without taking his life, I'd love to hear it!",Michael Dante DiMartino,Ethan Spaulding,9.1 +12882,12882,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Aang, don't walk away from this. [Walks toward Aang.]","Aang, don't walk away from this.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12883,12883,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,[Puts a hand on Katara's shoulder to stop her.] Let him go. He needs time to sort it out by himself.,Let him go. He needs time to sort it out by himself.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12884,12884,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Aang meditates at the beach house porch in front of four candles, some berries, a plate of fruit, and a small cup of water. Momo flies in front of Aang.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12885,12885,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Stroking the lemur's head.] Hey, Momo. I don't suppose you know what I should do. [Momo squawks.] I didn't think so.","Hey, Momo. I don't suppose you know what I should do. I didn't think so.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12886,12886,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Momo lays down to rest, and soon Aang falls asleep too after the candles have burnt out. The camera pans out from the beach house to an island. Aang wakes up to chanting and walks toward the mysterious island, barely awake with Momo following him. Aang starts swimming when he reaches the water. The scene changes to the next morning and the mysterious island is gone. Appa eats some hay while Sokka sits on his saddle.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12887,12887,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Okay, that's everything.","Okay, that's everything.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12888,12888,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"No, it's not. Where's Aang?","No, it's not. Where's Aang?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12889,12889,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Team Avatar runs to the beach house.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12890,12890,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Aang? Aang!,Aang? Aang!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12891,12891,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Come on, lazy bones, let's go.","Come on, lazy bones, let's go.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12892,12892,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Suki and Katara run to check one side of the beach house. Sokka, Zuko, and Toph run to check the other side. Zuko opens a door, but does not find Aang. Toph shrugs to show Zuko she has not found him either. Zuko checks the porch, scratching his head. He spots Aang's staff as Katara and Suki follow him.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12893,12893,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,He left his staff. [Picks up the staff.] That's so strange.,He left his staff. That's so strange.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12894,12894,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,[Walks onto the porch with Toph.] Aang's not in the house. Let's check the beach. [Turns his head toward the beach.],Aang's not in the house. Let's check the beach.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12895,12895,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Fade to the beach.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12896,12896,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Look, there's his footprints. [The camera pans up toward Aang's footprints, which stop at the beach.] The trail ends here.","Look, there's his footprints. The trail ends here.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12897,12897,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Suki,"So, he went for a midnight swim and never came back?","So, he went for a midnight swim and never came back?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12898,12898,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,Maybe he was captured.,Maybe he was captured.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12899,12899,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,I don't think so. [Examining the footprints.] There's no sign of a struggle.,I don't think so. There's no sign of a struggle.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12900,12900,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,I bet he ran away again.,I bet he ran away again.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12901,12901,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,Uh-uh. He left behind his glider and Appa.,Uh-uh. He left behind his glider and Appa.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12902,12902,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Then what do you think happened to him, oh sleuthy one?","Then what do you think happened to him, oh sleuthy one?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12903,12903,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,It's pretty obvious. Aang mysteriously disappears before an important battle? He's definitely on a Spirit World journey.,It's pretty obvious. Aang mysteriously disappears before an important battle? He's definitely on a Spirit World journey.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12904,12904,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"But if he was, wouldn't his body still be here?","But if he was, wouldn't his body still be here?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12905,12905,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Downcast.] Oh, yeah. Forgot about that.","Oh, yeah. Forgot about that.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12906,12906,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,Then he's got to be somewhere on Ember Island. Let's split up and look for him.,Then he's got to be somewhere on Ember Island. Let's split up and look for him.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12907,12907,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Toph latches onto Zuko's arm. Zuko blushes.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12908,12908,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"I'm going with Zuko! [Sokka, Suki, and Katara stare at her.] What?! Everyone else went on a life-changing field trip with Zuko. Now it's my turn.",I'm going with Zuko! What?! Everyone else went on a life-changing field trip with Zuko. Now it's my turn.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12909,12909,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Sokka rides on Appa, searching the shores for Aang. In Harbor City, Suki and Katara approach a group of people gathered in a circle.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12910,12910,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Crowd,"[Chanting.] Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! [Shocked, Katara and Suki glance at each other and simultaneously run into the circle.]",Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang! Aang!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12911,12911,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Actress Aang,[In the center of the crowd.] Avatar State! [Actor Toph lifts her up in the air.] Yip-yip! [Crowd cheers.],Avatar State! Yip-yip!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12912,12912,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Suki and Katara become frustrated by the false lead. The scene changes to Toph and Zuko walking along the beach.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12913,12913,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"And then when I was nine, I ran away again.","And then when I was nine, I ran away again.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12914,12914,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Uh-huh.,Uh-huh.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12915,12915,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"I know I shouldn't complain. My parents gave me everything I ever asked for, but they never gave me the one thing I really wanted, their love. You know what I mean?","I know I shouldn't complain. My parents gave me everything I ever asked for, but they never gave me the one thing I really wanted, their love. You know what I mean?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12916,12916,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"[Sighs and stops walking.] Look, I know you had a really rough childhood, but we should really focus on finding Aang. [Continues walking.]","Look, I know you had a really rough childhood, but we should really focus on finding Aang.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12917,12917,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,This is the worst field trip ever. [Sighs and continues walking.],This is the worst field trip ever.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12918,12918,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Later, back at the beach house, Toph, Zuko, Suki, and Katara sit on the beach house stairs. Sokka lands Appa below the stairs.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12919,12919,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Judging by the looks on your faces, I'm guessing you guys didn't find Aang, either. [Jumps off Appa.]","Judging by the looks on your faces, I'm guessing you guys didn't find Aang, either.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12920,12920,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,No. It's like he just ... disappeared.,No. It's like he just ... disappeared.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12921,12921,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Hey, wait a minute. Has anyone noticed that Momo is missing, too?","Hey, wait a minute. Has anyone noticed that Momo is missing, too?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12922,12922,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Turns back to Appa.] Oh no! I knew it was only a matter of time! [Jumps down to Appa.] Appa ate Momo! [Lifts up Appa's mouth.] Momo, I'm coming for you, buddy.","Oh no! I knew it was only a matter of time! Appa ate Momo! Momo, I'm coming for you, buddy.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12923,12923,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Sokka, Appa didn't eat Momo. He's probably with Aang.","Sokka, Appa didn't eat Momo. He's probably with Aang.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12924,12924,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,That's just what Appa wants you to think. [Climbs into Appa's mouth.],That's just what Appa wants you to think.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12925,12925,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,"Get out of the bison's mouth, Sokka. We have a real problem here. Aang is nowhere to be found and the comet is only two days away.","Get out of the bison's mouth, Sokka. We have a real problem here. Aang is nowhere to be found and the comet is only two days away.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12926,12926,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,What should we do Zuko?,What should we do Zuko?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12927,12927,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Katara, Suki, and Toph turn to stare at Zuko. In the background, Sokka slips out of Appa's mouth, covered in bison saliva.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12928,12928,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,[Stands up.] I don't know. [They keep staring.] Why are you all looking at me?,I don't know. Why are you all looking at me?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12929,12929,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,"Well, you are kind of the expert on tracking Aang.","Well, you are kind of the expert on tracking Aang.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12930,12930,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"Yeah, if anyone's got experience hunting the Avatar ... it's you.","Yeah, if anyone's got experience hunting the Avatar ... it's you.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12931,12931,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Sokka tries standing up in the background, but falls back down. Zuko nods. The scene changes to Appa flying along the coast, led by Zuko.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12932,12932,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"Zuko, I don't wanna tell you how to do your job, but why are we heading towards the Earth Kingdom? There's no way Aang's there.","Zuko, I don't wanna tell you how to do your job, but why are we heading towards the Earth Kingdom? There's no way Aang's there.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12933,12933,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,Just trust me.,Just trust me.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12934,12934,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,An aerial shot of the Royal Palace. Ozai and Azula travel in palanquins to a ship.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12935,12935,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,[To her palanquin bearers.] Come on slowpokes! Faster!,Come on slowpokes! Faster!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12936,12936,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Ozai walks out of his palanquin and up the stairs. Azula runs behind him and gets on one knee to bow.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12937,12937,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,"[Pants.] Sorry I'm late, father. Good palanquin bearers are so hard to come by these days. So, is everything ready for our departure?","Sorry I'm late, father. Good palanquin bearers are so hard to come by these days. So, is everything ready for our departure?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12938,12938,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"[Facing the ship.] There has been a change of plans, Azula.","There has been a change of plans, Azula.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12939,12939,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,[Worried.] What?,What?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12940,12940,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,I've decided to lead the fleet of airships to Ba Sing Se alone. You will remain here in the Fire Nation.,I've decided to lead the fleet of airships to Ba Sing Se alone. You will remain here in the Fire Nation.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12941,12941,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,But I thought we were going to do this together.,But I thought we were going to do this together.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12942,12942,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,My decision is final.,My decision is final.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12943,12943,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,You ... you can't treat me like this! [Rising.] You can't treat me like Zuko!,You ... you can't treat me like this! You can't treat me like Zuko!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12944,12944,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"Azula, silence yourself.","Azula, silence yourself.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12945,12945,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,But it was my idea to burn everything to the ground! I deserve to be by your side!,But it was my idea to burn everything to the ground! I deserve to be by your side!,Michael Dante DiMartino,Ethan Spaulding,9.1 +12946,12946,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,Azula! [She bows her head.] Listen to me. I need you here to watch over the homeland. It's a very important job that I can only entrust to you.,Azula! Listen to me. I need you here to watch over the homeland. It's a very important job that I can only entrust to you.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12947,12947,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,Really?,Really?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12948,12948,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"And for your loyalty, I've decided to declare you the new Fire Lord.","And for your loyalty, I've decided to declare you the new Fire Lord.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12949,12949,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Azula,"Fire Lord Azula? It does seem appropriate, but what about you?","Fire Lord Azula? It does seem appropriate, but what about you?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12950,12950,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Ozai,"Fire Lord Ozai is no more. Just as the world will be reborn in fire, I shall be reborn as the supreme ruler of the world. [Three Fire Sages help Ozai put on his new royal garments.] From this moment on, I will be known as ... [Raises his arms in the air.] the Phoenix King.","Fire Lord Ozai is no more. Just as the world will be reborn in fire, I shall be reborn as the supreme ruler of the world. From this moment on, I will be known as ... the Phoenix King.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12951,12951,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Servants pull up the phoenix emblem behind Ozai. Soldiers raise the phoenix flags beside the Fire Nation flags. Two more soldiers firebend into the base of the flag pole, causing fire to shoot out at the sides. The crowd bows before their new king. The camera cuts to Ozai and zooms out. Cut to an aerial view of a tavern as Team Avatar approaches. Inside the tavern, lively music plays. Zuko enters, followed by Katara, Sokka, Suki, and Toph.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12952,12952,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Katara,And the reason you've brought us to a seedy Earth Kingdom tavern is what now?,And the reason you've brought us to a seedy Earth Kingdom tavern is what now?,Michael Dante DiMartino,Ethan Spaulding,9.1 +12953,12953,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,[Pointing.] June.,June.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12954,12954,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"The camera zooms toward June, who holds a drink. A thug tries to attack her, but she makes him fall down and uses him as a foot rest. Another thug tries to punch her, but she dodges every punch, still holding her drink.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12955,12955,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"[Off-camera.] Oh yeah, that weird bounty hunter with the giant mole.","Oh yeah, that weird bounty hunter with the giant mole.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12956,12956,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Suki,[Off-camera.] Mole? Her skin is flawless.,Mole? Her skin is flawless.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12957,12957,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Sokka,"No, she has this giant mole creature she rides around on.","No, she has this giant mole creature she rides around on.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12958,12958,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Zuko,The shirshu. It's the only animal that can track Aang's scent anywhere in the world. It's the one shot we have of finding him.,The shirshu. It's the only animal that can track Aang's scent anywhere in the world. It's the one shot we have of finding him.,Michael Dante DiMartino,Ethan Spaulding,9.1 +12959,12959,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"The second thug continues punching June. She throws her drink into the air, throws the thug at a table, catches her drink and takes a sip.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12960,12960,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Toph,"[Stepping forward, grinning broadly.] I don't know who this June lady is, but I like her.","I don't know who this June lady is, but I like her.",Michael Dante DiMartino,Ethan Spaulding,9.1 +12961,12961,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,"Cut to Aang sleeping on a mysterious island, while Momo licks his cheek.",NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12962,12962,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Aang,"[Waking up.] Hey, Momo. I just had the strangest dream. [Looks around surprised at his new setting.] Wait. [The camera pans toward the ocean and shows an aerial shot of the island.] Where are we?","Hey, Momo. I just had the strangest dream. Wait. Where are we?",Michael Dante DiMartino,Ethan Spaulding,9.1 +12963,12963,Fire,3,"Sozin's Comet, Part 1: The Phoenix King",18,Scene Description,Fade to credits.,NA,Michael Dante DiMartino,Ethan Spaulding,9.1 +12964,12964,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"The episode opens at night to a wide shot of the Earth Kingdom tavern, Appa resting outside. Cut inside to frontal view of Team Avatar, sans Aang. June kicks a chair in the foreground and sits down and begins drinking her tea.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12965,12965,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[To Zuko.] Hey, I remember her! [Cut to frontal view of Zuko, Sokka standing behind.] She helped you attack us!","Hey, I remember her! She helped you attack us!",Aaron Ehasz,Giancarlo Volpe,9.5 +12966,12966,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,Yup. [Walks forward.] Back in the good old days.,Yup. Back in the good old days.,Aaron Ehasz,Giancarlo Volpe,9.5 +12967,12967,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to wide shot as they all walk up to June.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12968,12968,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,Oh great. It's Prince Pouty. [Close-up.] Where's your creepy grandpa?,Oh great. It's Prince Pouty. Where's your creepy grandpa?,Aaron Ehasz,Giancarlo Volpe,9.5 +12969,12969,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Frontal view of Katara and Zuko.] He's my uncle. And he's not here.,He's my uncle. And he's not here.,Aaron Ehasz,Giancarlo Volpe,9.5 +12970,12970,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,[Close-up.] I see you worked things out with your girlfriend.,I see you worked things out with your girlfriend.,Aaron Ehasz,Giancarlo Volpe,9.5 +12971,12971,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to Zuko and Katara who become flustered and embarrassed, looking at each other as they speak, before cutting to June.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12972,12972,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,[Angrily.] I'm not his girlfriend!,I'm not his girlfriend!,Aaron Ehasz,Giancarlo Volpe,9.5 +12973,12973,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Speaking at the same time.] She's not my girlfriend!,She's not my girlfriend!,Aaron Ehasz,Giancarlo Volpe,9.5 +12974,12974,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,"[Frontal view.] Okay, okay. Sheesh. I was only teasing. So what do you want?","Okay, okay. Sheesh. I was only teasing. So what do you want?",Aaron Ehasz,Giancarlo Volpe,9.5 +12975,12975,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Frontal view of June with Zuko and Suki behind.] I need your help finding the Avatar.,I need your help finding the Avatar.,Aaron Ehasz,Giancarlo Volpe,9.5 +12976,12976,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,Hm. Doesn't sound too fun. [Sips her tea.],Hm. Doesn't sound too fun.,Aaron Ehasz,Giancarlo Volpe,9.5 +12977,12977,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Angrily; leans closer, while clenching his fists.] Does the end of the world sound like more fun?",Does the end of the world sound like more fun?,Aaron Ehasz,Giancarlo Volpe,9.5 +12978,12978,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to side-view of Appa and Nyla growling at each other. Appa licks Nyla, and they lay down. They both stand up as the gang and June walking toward them. Cut to frontal view of the approaching group as June holds up a piece of meat.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12979,12979,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,"[Shaking the piece of meat.] Nyla. [She throws the meat to Nyla. Cut to frontal view of Nyla, who catches it in his mouth and starts chewing it before swallowing it; June walks up to him and starts petting him.] Who's my little, hmm, Snuffly-Wuffly? [Nyla sticks his toxins-coated tongue out and she dodges it and forces his mouth closed.] Whoa! Careful there. [To Team Avatar.] Okay. So who's got something with the Avatar's scent on it?","Nyla. Who's my little, hmm, Snuffly-Wuffly? Whoa! Careful there. Okay. So who's got something with the Avatar's scent on it?",Aaron Ehasz,Giancarlo Volpe,9.5 +12980,12980,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to Katara standing on Appa's back.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12981,12981,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,[Pulls out Aang's glider from Appa's saddle.] I have Aang's staff.,I have Aang's staff.,Aaron Ehasz,Giancarlo Volpe,9.5 +12982,12982,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to Nyla as June approaches and holds the staff out in front of Nyla. He sniffs it. Cut to wide-view of the group as Nyla begins to walk around in circles, trying to sniff the scent out somewhere else. Cut to overhead view. Cut to closer view of the group as Nyla returns to June and continues sniffing. Cut to frontal view as Nyla lies back down and covers his nose.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12983,12983,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Frontal view.] Well, what does that mean?","Well, what does that mean?",Aaron Ehasz,Giancarlo Volpe,9.5 +12984,12984,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,[Frontal view. Petting Nyla.] Means your friend's gone.,Means your friend's gone.,Aaron Ehasz,Giancarlo Volpe,9.5 +12985,12985,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,[Frontal view.] We know he's gone. That's why we're trying to find him.,We know he's gone. That's why we're trying to find him.,Aaron Ehasz,Giancarlo Volpe,9.5 +12986,12986,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,"[Close-up as June stands up.] No, I mean he's gone gone. [Turns to face everyone else.] He doesn't exist.","No, I mean he's gone gone. He doesn't exist.",Aaron Ehasz,Giancarlo Volpe,9.5 +12987,12987,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to the others as the look on with worry and confusion. The camera cuts to a mysterious island. Cut inside the forestry as Momo is chasing a squirrel creature in a tree. Camera pans across the branch as Momo chases the squirrel and Aang is seen walking around.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12988,12988,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"Where are we, Momo? [Cut to view of the sky through the trees as dragonflies fly past. The camera pans down as Aang speaks.] Maybe I'm in the Spirit World? [Cut to frontal view of Aang stepping under a branch.] But wait. You can see me. [Momo approaches on the branch. Cut to a close-up of Momo.] We could both be in the Spirit World. [Cut back to Aang. He uses airbending and the camera pans across as he moves.] Nope. My bending works. [Momo lands on him. Points to the hilltop. Cut to path up a hill. Camera pans up as Aang talks.] Maybe if we climb to the top of the island, we can figure out where we are.","Where are we, Momo? Maybe I'm in the Spirit World? But wait. You can see me. We could both be in the Spirit World. Nope. My bending works. Maybe if we climb to the top of the island, we can figure out where we are.",Aaron Ehasz,Giancarlo Volpe,9.5 +12989,12989,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to close-up of Sokka.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12990,12990,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[To June.] What do you mean Aang doesn't exist? [Side-view of the group.] Do you mean he's ... you know, dead?","What do you mean Aang doesn't exist? Do you mean he's ... you know, dead?",Aaron Ehasz,Giancarlo Volpe,9.5 +12991,12991,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,"[Frontal view as she pets Nyla.] Nope. We could find him if he were dead. Wow, it's a real head-scratcher. See ya. [Cut to a wide-view of the group as she starts climbing on top of Nyla.]","Nope. We could find him if he were dead. Wow, it's a real head-scratcher. See ya.",Aaron Ehasz,Giancarlo Volpe,9.5 +12992,12992,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,[Sarcastically.] Helpful. Real helpful.,Helpful. Real helpful.,Aaron Ehasz,Giancarlo Volpe,9.5 +12993,12993,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[To June.] Wait. I have another idea. [Frontal view.] There's only one other person in this world who can help us face the Fire Lord. I'll be right back with a smell sample.,Wait. I have another idea. There's only one other person in this world who can help us face the Fire Lord. I'll be right back with a smell sample.,Aaron Ehasz,Giancarlo Volpe,9.5 +12994,12994,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to close-up of a sandal that Zuko holds up. Camera zooms out quickly to show the members of Team Avatar are holding their noses in disgust, except for Zuko and Toph. Zuko looks embarrassed.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12995,12995,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,You saved your uncle's sweaty sandal? Ugh! [Pinches nose even tighter.],You saved your uncle's sweaty sandal? Ugh!,Aaron Ehasz,Giancarlo Volpe,9.5 +12996,12996,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,[Smiles.] I think it's kind of sweet.,I think it's kind of sweet.,Aaron Ehasz,Giancarlo Volpe,9.5 +12997,12997,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to June as Nyla jumps forward. Cut to side-view of Zuko and Nyla as the latter sniffs the sandal.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +12998,12998,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,[Frontal view. Determined.] Let's do this. [Cut to wide-view as she and Nyla run off.],Let's do this.,Aaron Ehasz,Giancarlo Volpe,9.5 +12999,12999,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,Hey! Wait up!,Hey! Wait up!,Aaron Ehasz,Giancarlo Volpe,9.5 +13000,13000,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,They all quickly get on Appa. Cut to behind Appa as his tail hits the ground he takes off in the same direction. Cut to side-view of Nyla running up a hill as Appa flies behind. Fade to a shot behind Nyla as he jumps over a cliff edge. Camera pans to the right slightly as Appa follows closely behind. Fade to frontal view of Nyla running along with Appa close behind before Nyla jumps forward toward the camera. Cut to wide-view of Appa and Nyla approaching the destroyed Outer Wall of Ba Sing Se. Cut to frontal view of the wall as Nyla jumps in front of the camera and the camera pans up to show Appa above. Cut to close-up aerial view. The camera pans out as the group stops near the rubble. Appa lands and Nyla starts digging at the wreckage.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13001,13001,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,We're going to Ba Sing Se?,We're going to Ba Sing Se?,Aaron Ehasz,Giancarlo Volpe,9.5 +13002,13002,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,June,[Cut to side-view of the group as Nyla continues scratching the wall.] Your uncle's somewhere beyond the wall. [Nyla stops digging and walks away.] Nyla's getting twitchy so he can't be too far. [Close-up.] Good luck.,Your uncle's somewhere beyond the wall. Nyla's getting twitchy so he can't be too far. Good luck.,Aaron Ehasz,Giancarlo Volpe,9.5 +13003,13003,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to side-view of Zuko as Nyla and June leave and he turns to watch. As they disappear over the hill he turns away to the others.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13004,13004,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,It's been a long day. [Aerial view. Camera zooms out.] Let's camp and start our search again at dawn.,It's been a long day. Let's camp and start our search again at dawn.,Aaron Ehasz,Giancarlo Volpe,9.5 +13005,13005,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut back to the island. The camera pans down from trees to Aang and Momo as they approach a strange, flat rock-formation. Cut to a frontal view of Aang looking at the rock-formation. Cut to an aerial view of the entire clearing as Aang steps on to it.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13006,13006,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"It's a hexagon. [Cut to Aang's feet as Momo jumps off his shoulder. Bends down to place a hand on the ground.] It doesn't seem like normal rock. [Stands back up. Cut to a side-view as he attempts earthbending, but nothing happens.] It's not made of earth. [Sits down.] This is so strange. [Frontal view of Aang with Momo in the foreground, his back to the camera.] I wish I had some help right now. I wish I had Roku. [Suddenly realizes something.] I do have Roku! [Takes a deep breath and starts meditating. Fade to close-up of Aang. Cut to side-view as Momo runs off and the spirit of Avatar Roku appears before Aang.]",It's a hexagon. It doesn't seem like normal rock. It's not made of earth. This is so strange. I wish I had some help right now. I wish I had Roku. I do have Roku!,Aaron Ehasz,Giancarlo Volpe,9.5 +13007,13007,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Avatar Roku,"You're right, Aang. [Close-up.] All the past Avatars, all their experience and wisdom, is available to you [Cut to close-up of Aang.] if you look deep inside yourself.","You're right, Aang. All the past Avatars, all their experience and wisdom, is available to you if you look deep inside yourself.",Aaron Ehasz,Giancarlo Volpe,9.5 +13008,13008,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"[Looking around.] So where am I, Roku? What is this place?","So where am I, Roku? What is this place?",Aaron Ehasz,Giancarlo Volpe,9.5 +13009,13009,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Avatar Roku,"[Side-view.] I ... don't know, Aang. [Close-up of Aang.] But I see you are lost in more ways than one right now.","I ... don't know, Aang. But I see you are lost in more ways than one right now.",Aaron Ehasz,Giancarlo Volpe,9.5 +13010,13010,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,I am. I need to figure out what to do once I face the Fire Lord.,I am. I need to figure out what to do once I face the Fire Lord.,Aaron Ehasz,Giancarlo Volpe,9.5 +13011,13011,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"The camera cuts to Appa. The camera pans to the right to show Zuko, Katara, Suki, and Sokka asleep on Appa's legs and tail. Cut to Toph, who is sleeping in an earth tent. She suddenly senses something and wakes up. Cut to outside her rock tent as it begins to low. The camera zooms out as the group is surrounded by a wall of fire. Cut to an aerial view of the area showing Team Avatar is trapped. Cut behind the group as the camera pans across to left. The group turn and look up to see Piandao, Jeong Jeong, Pakku, and Bumi. The camera zooms in on Piandao before panning to left to focus on Jeong Jeong, before panning again to Pakku, and finally to Bumi.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13012,13012,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,"Well, look who's here! [Starts laughing and snorting.]","Well, look who's here!",Aaron Ehasz,Giancarlo Volpe,9.5 +13013,13013,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to Team Avatar looking confused, except for Katara and Sokka, who are both excited. +The scene changes back to the island, which now looks somewhat invisible from the outside. Cut to side-view of Aang on the island, talking to Avatar Roku's spirit.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13014,13014,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"Everyone expects me to take the Fire Lord's life, [Side-view.] but I just don't know if I can do that.","Everyone expects me to take the Fire Lord's life, but I just don't know if I can do that.",Aaron Ehasz,Giancarlo Volpe,9.5 +13015,13015,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Avatar Roku,"[Frontal view.] In my life, I tried to be disciplined and show restraint, but it backfired when Fire Lord Sozin took advantage of my restraint and mercy. [Fade to a flashback of Sozin, close-up shot. Sozin moves forward and the camera cuts to a side-view of him attempting to attack Roku from behind. The camera pans left to show the flames engulf Roku. Cut to a shot inside the flames as they dissipate to reveal Roku gone. Fade to a close-up shot of Sozin from behind looking at his army. Fade to a panning shot of air temples on fire. Overlaid shot of close-up Sozin.] If I had been more decisive and acted sooner, I could have stopped Sozin and stopped the war before it started. [Cut back to side-view of Aang and Roku.] I offer you this wisdom, Aang: You must be decisive. [Cut behind Roku as he vanishes. Cut close-up to Aang, disappointed.]","In my life, I tried to be disciplined and show restraint, but it backfired when Fire Lord Sozin took advantage of my restraint and mercy. If I had been more decisive and acted sooner, I could have stopped Sozin and stopped the war before it started. I offer you this wisdom, Aang: You must be decisive.",Aaron Ehasz,Giancarlo Volpe,9.5 +13016,13016,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut back to Outer Walls of Ba Sing Se. Wide shot of the entire group now joined by the masters.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13017,13017,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,[Confused.] What's going on? [Cut to closer view from behind the masters.] We're surrounded by old people.,What's going on? We're surrounded by old people.,Aaron Ehasz,Giancarlo Volpe,9.5 +13018,13018,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,Not just any old people. [Walks up to Pakku. Side-view of the masters.] These are great masters and friends of ours. [Camera pans and zooms in on Katara and Pakku as she bows to Pakku.] Pakku.,Not just any old people. These are great masters and friends of ours. Pakku.,Aaron Ehasz,Giancarlo Volpe,9.5 +13019,13019,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Pakku,"[Bows back.] It is respectful to bow to an old master, [Frontal view. Extends his arms out.] but how about a hug for your new grandfather?","It is respectful to bow to an old master, but how about a hug for your new grandfather?",Aaron Ehasz,Giancarlo Volpe,9.5 +13020,13020,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,"[Frontal view. Surprised and overjoyed, as is Sokka behind her.] That's so exciting! [Frontal view of Pakku as she hugs Pakku.] You and Gran-Gran must be so happy to have found each other again!",That's so exciting! You and Gran-Gran must be so happy to have found each other again!,Aaron Ehasz,Giancarlo Volpe,9.5 +13021,13021,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Pakku,I made her a new betrothal necklace and everything.,I made her a new betrothal necklace and everything.,Aaron Ehasz,Giancarlo Volpe,9.5 +13022,13022,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[Runs up and hugs Pakku. Camera zooms in on Pakku.] Welcome to the family, Gramp-Gramp!","Welcome to the family, Gramp-Gramp!",Aaron Ehasz,Giancarlo Volpe,9.5 +13023,13023,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Pakku,[Gently pushes Sokka away; slightly annoyed.] You can still just call me Pakku.,You can still just call me Pakku.,Aaron Ehasz,Giancarlo Volpe,9.5 +13024,13024,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,[Frontal view.] How about Grand-Pakku?,How about Grand-Pakku?,Aaron Ehasz,Giancarlo Volpe,9.5 +13025,13025,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Pakku,[Close-up. Not amused.] No. [Side-view of Zuko and Pakku as Sokka walks away behind Katara sadly. Camera zooms out to show Jeong Jeong.],No.,Aaron Ehasz,Giancarlo Volpe,9.5 +13026,13026,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,[Zuko walks up to Jeong Jeong.] And this was Aang's first firebending teacher.,And this was Aang's first firebending teacher.,Aaron Ehasz,Giancarlo Volpe,9.5 +13027,13027,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Jeong Jeong,[Close-up. Bows.] Jeong Jeong.,Jeong Jeong.,Aaron Ehasz,Giancarlo Volpe,9.5 +13028,13028,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,[Side-view. Bows to Piandao.] Master Piandao.,Master Piandao.,Aaron Ehasz,Giancarlo Volpe,9.5 +13029,13029,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Piandao,"[Bows back.] Hello, Sokka.","Hello, Sokka.",Aaron Ehasz,Giancarlo Volpe,9.5 +13030,13030,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Suki,[Cut to over-head view from behind the masters.] So wait. How do you all know each other?,So wait. How do you all know each other?,Aaron Ehasz,Giancarlo Volpe,9.5 +13031,13031,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,[Close-up side-view.] All old people know each other. Don't you know that? [Laughs and snorts.],All old people know each other. Don't you know that?,Aaron Ehasz,Giancarlo Volpe,9.5 +13032,13032,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Piandao,We're all part of the same ancient secret society. A group that transcends the divisions of the four nations.,We're all part of the same ancient secret society. A group that transcends the divisions of the four nations.,Aaron Ehasz,Giancarlo Volpe,9.5 +13033,13033,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Frontal view.] The Order of the White Lotus.,The Order of the White Lotus.,Aaron Ehasz,Giancarlo Volpe,9.5 +13034,13034,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,[Frontal view of Piandao and Jeong Jeong. Bumi slides in front of the camera.] That's the one. [Slides off camera.],That's the one.,Aaron Ehasz,Giancarlo Volpe,9.5 +13035,13035,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Jeong Jeong,"The White Lotus has always been about philosophy and beauty and truth. [Aerial view.] But about a month ago, a call went out that we were needed for something important.","The White Lotus has always been about philosophy and beauty and truth. But about a month ago, a call went out that we were needed for something important.",Aaron Ehasz,Giancarlo Volpe,9.5 +13036,13036,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Pakku,"[Cut close-up behind Zuko with Pakku and Katara in the background. To Zuko.] It came from a Grand Lotus: your uncle, [Close-up of Zuko.] Iroh of the Fire Nation. [Zuko smiles.]","It came from a Grand Lotus: your uncle, Iroh of the Fire Nation.",Aaron Ehasz,Giancarlo Volpe,9.5 +13037,13037,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,"[Camera zooms out to show Toph behind Zuko.] Well, that's who we're looking for.","Well, that's who we're looking for.",Aaron Ehasz,Giancarlo Volpe,9.5 +13038,13038,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Piandao,[Frontal view.] Then we'll take you to him.,Then we'll take you to him.,Aaron Ehasz,Giancarlo Volpe,9.5 +13039,13039,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,[Appears behind Piandao and Jeong Jeong and pushes them out of the way.] Wait! Someone's missing from your group. [Walks up to the camera.] Someone very important. [Walks right up to the camera.] Where's Momo?,Wait! Someone's missing from your group. Someone very important. Where's Momo?,Aaron Ehasz,Giancarlo Volpe,9.5 +13040,13040,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[Side-view. Leaning backward almost all the way, as Bumi is right in his face.] He's gone. [Pauses.] And so is Aang.",He's gone. And so is Aang.,Aaron Ehasz,Giancarlo Volpe,9.5 +13041,13041,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,"[Camera zooms out.] Oh well. [Pats Sokka on the chest, which causes him to almost fall back.] So long as they have each other, I'm sure we have nothing to worry about. Let's go! [Slams in to the ground. Cut to underneath Bumi as he launches himself away using earthbending while laughing and snorting.]","Oh well. So long as they have each other, I'm sure we have nothing to worry about. Let's go!",Aaron Ehasz,Giancarlo Volpe,9.5 +13042,13042,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut back on the island. Cut to Momo behind a branch before flying off. Cut to frontal view of Aang who is meditating as Momo arrives next to him.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13043,13043,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,Avatar Kyoshi. I need your wisdom.,Avatar Kyoshi. I need your wisdom.,Aaron Ehasz,Giancarlo Volpe,9.5 +13044,13044,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Momo runs off. Fade to close-up of Aang. Side-view as the spirit of Avatar Kyoshi appears before him and the camera pans right to where she sits.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13045,13045,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Kyoshi,"In my day, [Flashback to frontal view of Chin the Conqueror. Cut to close-up of Avatar Kyoshi.] Chin the Conqueror threatened to throw the world out of balance. [Kyoshi enters the Avatar State briefly and begins to earthbend. Cut to wide shot as a dust cloud appears as she separates the land.] I stopped him. [Cut to side-view of Kyoshi as she uses airbending to push the land apart.] And the world entered a great era of peace. [Cut to aerial view of the land separating.]","In my day, Chin the Conqueror threatened to throw the world out of balance. I stopped him. And the world entered a great era of peace.",Aaron Ehasz,Giancarlo Volpe,9.5 +13046,13046,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"[Voice-over; Side-view of Chin as he falls to his death.] You didn't really kill Chin. [Camera cuts back to close-up view looking up at Aang.] Technically, he fell to his own doom because he was too stubborn to get out of the way.","You didn't really kill Chin. Technically, he fell to his own doom because he was too stubborn to get out of the way.",Aaron Ehasz,Giancarlo Volpe,9.5 +13047,13047,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Kyoshi,"[Close-up side-view.] Personally, I don't really see the difference, but I assure you, I would have done whatever it took to stop Chin. [Frontal view.] I offer you this wisdom, Aang: Only justice will bring peace. [Vanishes.]","Personally, I don't really see the difference, but I assure you, I would have done whatever it took to stop Chin. I offer you this wisdom, Aang: Only justice will bring peace.",Aaron Ehasz,Giancarlo Volpe,9.5 +13048,13048,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,[Close-up. Disappointed. Side-view as he leans back.] I knew I shouldn't have asked Kyoshi.,I knew I shouldn't have asked Kyoshi.,Aaron Ehasz,Giancarlo Volpe,9.5 +13049,13049,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut back to the rest of the group as the camera pans right to show the group walking with the White Lotus members to their campsite.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13050,13050,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"So, Bumi ... [Cut closer, side-view. Camera follows them as they walk.] how did you end up escaping your imprisonment in Omashu?","So, Bumi ... how did you end up escaping your imprisonment in Omashu?",Aaron Ehasz,Giancarlo Volpe,9.5 +13051,13051,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,"Escape? I didn't escape. Everybody else escaped. [Close-up.] There I was back in Omashu, [Flashback of Omashu while under control of the Fire Nation during the Day of Black Sun.] waiting for just the right moment. [Cut to close-up of Bumi suspended in a metal box.] I didn't know what or when, but I knew I'd know it when I knew it. [Camera pans round as he looks up to see the solar eclipse. Speaking in flashback.] An eclipse. That'll do it.","Escape? I didn't escape. Everybody else escaped. There I was back in Omashu, waiting for just the right moment. I didn't know what or when, but I knew I'd know it when I knew it. An eclipse. That'll do it.",Aaron Ehasz,Giancarlo Volpe,9.5 +13052,13052,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut close-up as he begins twitching his face. Cut to buildings beginning to crumble and break. Cut back to Bumi in the cage as the camera zooms in with pieces of earth heading to the cage. Frontal view of the cage as Bumi uses the broken pieces of the buildings to break himself free. Cut to the ground below as Bumi drops down and firebenders quickly show up to confront him.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13053,13053,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Firebender,What do you think you're doing? [Zooms in on the firebender.],What do you think you're doing?,Aaron Ehasz,Giancarlo Volpe,9.5 +13054,13054,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"The firebenders attempt to blast Bumi, but are powerless due to the eclipse. They look at Bumi in horror. Cut to frontal view of Bumi, who smiles evilly.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13055,13055,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,Taking back my city! You've got no firepower. And it's payback time!,Taking back my city! You've got no firepower. And it's payback time!,Aaron Ehasz,Giancarlo Volpe,9.5 +13056,13056,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Bumi launches himself forward. Cut behind Bumi as he launches himself off the platform. Frontal view of Bumi as he lands. He uses earthbending and lifts a large piece of earth up. Cut to side-view of a building being separated by the pillar of earth. Cut back to Bumi, and back to the building as he moves the building with the use of the pillar. Cut to frontal view of firebenders running away. Camera pans up to reveal entire buildings beginning to move. Cut to Bumi running to left and stops to earthbend again sending more buildings flying. Cut to wide-view of Omashu. Cut to side-view of the entrance to Omashu as Fire Nation soldiers flee. +Cut to frontal view of Bumi who turns and looks back to see a giant statue of Fire Lord Ozai. Frontal view of Bumi as he uses earthbending to stop oncoming Fire Nation soldiers. He sends small pieces of earth flying forward. Cut to close-up of the statues face as two small pillars become embedded in the eyes. Two more smaller ones go into the nostrils and large chunks go in the mouth and cheeks. Cut to side-view of the base of the statue as it begins to shift and rise. Cut to close-up of Bumi who struggles to lift the statue. Cut to a wide shot of Omashu looking up at the statue as it begins to fall over. The statue slides down toward the camera. Cut to wide side-view of Omashu's entrance as the statue falls over the side and breaks the bridge before falling in to the canyon below. Cut to close-up view of Bumi looking down at his handiwork and he begins to laugh. He starts eating a piece of jennamite before the camera cuts back to a frontal view of present-day Bumi.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13057,13057,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Suki,[Amazed.] Wow! You took back your whole city all by yourself!,Wow! You took back your whole city all by yourself!,Aaron Ehasz,Giancarlo Volpe,9.5 +13058,13058,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,[Side-view of entire group.] So what about you guys? Did you do anything interesting on the day of the eclipse?,So what about you guys? Did you do anything interesting on the day of the eclipse?,Aaron Ehasz,Giancarlo Volpe,9.5 +13059,13059,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Side-view of Sokka and Zuko, who look at each other.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13060,13060,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Nonchalantly.] Nah.,Nah.,Aaron Ehasz,Giancarlo Volpe,9.5 +13061,13061,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[Nonchalantly.] No, not really.","No, not really.",Aaron Ehasz,Giancarlo Volpe,9.5 +13062,13062,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"The camera cuts to close-up of Aang, who is becoming irritated.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13063,13063,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,I need to look deep inside myself.,I need to look deep inside myself.,Aaron Ehasz,Giancarlo Volpe,9.5 +13064,13064,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Close-up frontal view as Aang starts meditating. Side-view of Aang as the spirit of Avatar Kuruk, a male Avatar from the Northern Water Tribe, appears before him.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13065,13065,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Kuruk,"[Close-up.] I am Avatar Kuruk. [Cut to flashback to a close-up view of a younger Avatar Kuruk. The camera zooms out to show him surfing.] When I was young, I was always a go-with-the-flow kind of Avatar. [The camera pans round to follow his movements on the wave before holding steady as he surfs away.] People seemed to work out their own problems, and there was peace and good times in the world. [Cut to shot of the sun and the camera pans down to Kuruk with Ummi and they kiss.] But then, [Fade to a side-view of Koh in the Spirit World. Koh moves in front of the camera to reveal the face of Ummi.] I lost the woman I loved to Koh, the Face Stealer. [Fade back to close-up side-view of present-day Kuruk.] It was my fault. If I had been more attentive and more active, [Close-up of Aang.] I could've saved her. Aang, [Close-up of Kuruk.] you must actively shape your own destiny and the destiny of the world. [Vanishes. Frontal view of Aang, even more disappointed as he places his head in his hands.]","I am Avatar Kuruk. When I was young, I was always a go-with-the-flow kind of Avatar. People seemed to work out their own problems, and there was peace and good times in the world. But then, I lost the woman I loved to Koh, the Face Stealer. It was my fault. If I had been more attentive and more active, I could've saved her. Aang, you must actively shape your own destiny and the destiny of the world.",Aaron Ehasz,Giancarlo Volpe,9.5 +13066,13066,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cut to Outer Walls of Ba Sing Se showing the moon. The camera pans down to show the White Lotus campsite and the group approaching. Cut inside the camp as Bumi lowers a rock wall to allow entrance to the camp.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13067,13067,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Bumi,"[Stepping into the camp.] Well, here we are. Welcome to Old People Camp.","Well, here we are. Welcome to Old People Camp.",Aaron Ehasz,Giancarlo Volpe,9.5 +13068,13068,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Side-view of Jeong Jeong, Piandao, and Pakku. As Zuko speaks, Jeong Jeong and Pakku walk off and Appa stops behind Zuko and Piandao.] Where ... where is he?",Where ... where is he?,Aaron Ehasz,Giancarlo Volpe,9.5 +13069,13069,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Piandao,"[Points to a tent on the other side of the camp. Camera cuts and zooms in showing a tent.] Your uncle's in there, Prince Zuko.","Your uncle's in there, Prince Zuko.",Aaron Ehasz,Giancarlo Volpe,9.5 +13070,13070,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut back to Zuko, who becomes worried and ashamed before walking toward the tent. Cut to Zuko from behind as he approaches the tent before stopping. Close-up of Zuko. Side-view as he sits down. Katara walks up to him.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13071,13071,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,Are you okay?,Are you okay?,Aaron Ehasz,Giancarlo Volpe,9.5 +13072,13072,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Frontal view.] No, I'm not okay. My uncle hates me, I know it. [Katara sits down next to him.] He loved and supported me in every way he could, and I still turned against him. How can I even face him?","No, I'm not okay. My uncle hates me, I know it. He loved and supported me in every way he could, and I still turned against him. How can I even face him?",Aaron Ehasz,Giancarlo Volpe,9.5 +13073,13073,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,"[Close-up side-view of Zuko.] Zuko, you're sorry for what you did, right?","Zuko, you're sorry for what you did, right?",Aaron Ehasz,Giancarlo Volpe,9.5 +13074,13074,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,More sorry than I've been about anything in my entire life.,More sorry than I've been about anything in my entire life.,Aaron Ehasz,Giancarlo Volpe,9.5 +13075,13075,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,Then he'll forgive you. He will.,Then he'll forgive you. He will.,Aaron Ehasz,Giancarlo Volpe,9.5 +13076,13076,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Zuko stands up. Cut to side-view of him standing at the tents entrance and he exhales deeply. He walks into the tent. Cut to an aerial view inside the tent.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13077,13077,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,Uncle?,Uncle?,Aaron Ehasz,Giancarlo Volpe,9.5 +13078,13078,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Close-up of Zuko as he hears snoring. Frontal view of Iroh, asleep with Zuko standing at the entrance. Close-up of Zuko as he smiles and sits down next to him. The camera cuts to the island.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13079,13079,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"[Voice-over.] All these past Avatars. [Cut to frontal view of Aang.] They keep telling me I'm gonna have to do it. They don't get it. [Momo chitters.] You're right. Maybe an Air Nomad Avatar will understand where I'm coming from. [Close-up of Momo, who stares at him. Frontal view of Aang as Momo jumps to his other side.] I know you can't really talk. Pretending you can just helps me think. [Momo chitters again; Aang becomes annoyed.] I'm going to pretend I didn't pretend to hear that.",All these past Avatars. They keep telling me I'm gonna have to do it. They don't get it. You're right. Maybe an Air Nomad Avatar will understand where I'm coming from. I know you can't really talk. Pretending you can just helps me think. I'm going to pretend I didn't pretend to hear that.,Aaron Ehasz,Giancarlo Volpe,9.5 +13080,13080,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Fade to close-up of Aang meditating. Cut back to frontal view as the spirit of Avatar Yangchen, a female Air Nomad Avatar, appears before him. Aerial view from behind Aang as Yangchen's spirit sits before him.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13081,13081,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Yangchen,"[Side-view.] I am Avatar Yangchen, young airbender.","I am Avatar Yangchen, young airbender.",Aaron Ehasz,Giancarlo Volpe,9.5 +13082,13082,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"Avatar Yangchen, [Close-up of Aang.] the monks always taught me that all life is sacred. Even the life of the tiniest spider-fly caught in its own web.","Avatar Yangchen, the monks always taught me that all life is sacred. Even the life of the tiniest spider-fly caught in its own web.",Aaron Ehasz,Giancarlo Volpe,9.5 +13083,13083,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Yangchen,[Close-up side-view.] Yes. All life is sacred.,Yes. All life is sacred.,Aaron Ehasz,Giancarlo Volpe,9.5 +13084,13084,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"[Frontal view. Smiles.] I know, I'm even a vegetarian. I've always tried to solve my problems by being quick or clever. And I've only had to use violence for necessary defense. And I've certainly never used it to take a life.","I know, I'm even a vegetarian. I've always tried to solve my problems by being quick or clever. And I've only had to use violence for necessary defense. And I've certainly never used it to take a life.",Aaron Ehasz,Giancarlo Volpe,9.5 +13085,13085,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Yangchen,"[Cut to behind Aang as the camera pans up to show Yangchen.] Avatar Aang, I know that you're a gentle spirit, and the monks have taught you well, but this isn't about you. [Close-up side-view of Aang.] This is about the world.","Avatar Aang, I know that you're a gentle spirit, and the monks have taught you well, but this isn't about you. This is about the world.",Aaron Ehasz,Giancarlo Volpe,9.5 +13086,13086,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,But the monks taught me that I had to detach myself from the world so my spirit could be free.,But the monks taught me that I had to detach myself from the world so my spirit could be free.,Aaron Ehasz,Giancarlo Volpe,9.5 +13087,13087,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Yangchen,"[Side-view of Aang and Yangchen. Camera pans slowly to the right.] Many great and wise Air Nomads have detached themselves and achieved spiritual enlightenment, [Close-up.] but the Avatar can never do it. Because your sole duty is to the world. Here is my wisdom for you: [Close-up of Aang. Camera zooms out.] Selfless duty calls you to sacrifice your own spiritual needs, and do whatever it takes to protect the world. [Yangchen's spirit vanishes.]","Many great and wise Air Nomads have detached themselves and achieved spiritual enlightenment, but the Avatar can never do it. Because your sole duty is to the world. Here is my wisdom for you: Selfless duty calls you to sacrifice your own spiritual needs, and do whatever it takes to protect the world.",Aaron Ehasz,Giancarlo Volpe,9.5 +13088,13088,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"[Momo appears behind a tree and approaches Aang. Close-up aerial view of Aang. Sorrowfully.] I guess I don't have a choice, Momo. [Camera zooms out as Aang looks up.] I have to kill the Fire Lord.","I guess I don't have a choice, Momo. I have to kill the Fire Lord.",Aaron Ehasz,Giancarlo Volpe,9.5 +13089,13089,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"The scene changes to an aerial view of the White Lotus camp. Cut to aerial view inside Iroh's tent. Zuko sits nearby as Iroh wakes up. Cut to frontal view of Iroh as he stretches. He glances back slightly and sees Zuko, but says nothing. Frontal view of Zuko.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13090,13090,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Cut to view of Iroh from behind.] Uncle, [Cut to view of Zuko over Iroh's shoulder.] I know you must have mixed feelings about seeing me. [Cut briefly to view of Iroh from behind before back to a frontal view of Zuko.] But I want you to know, [Starts to cry.] I am so, so, sorry, Uncle. I am so sorry and ashamed of what I did. I don't know how I can ever make it up to you. But I'll- [He is cut off. Cut to side-view as Iroh pulls him into a hug, while starting to cry as well. Close-up of Iroh who starts to smile. Close-up of Zuko who becomes shocked and confused.] How can you forgive me so easily? I thought you would be furious with me.","Uncle, I know you must have mixed feelings about seeing me. But I want you to know, I am so, so, sorry, Uncle. I am so sorry and ashamed of what I did. I don't know how I can ever make it up to you. But I'll- How can you forgive me so easily? I thought you would be furious with me.",Aaron Ehasz,Giancarlo Volpe,9.5 +13091,13091,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,[Close-up.] I was never angry with you. I was sad because I was afraid you lost your way.,I was never angry with you. I was sad because I was afraid you lost your way.,Aaron Ehasz,Giancarlo Volpe,9.5 +13092,13092,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Side-view of the two.] I did lose my way.,I did lose my way.,Aaron Ehasz,Giancarlo Volpe,9.5 +13093,13093,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,[Releases him.] But you found it again. [Frontal view.] And you did it by yourself. [Frontal view of Zuko over Iroh's shoulder.] And I am so happy you found your way here. [Side-view. Hugs him again.],But you found it again. And you did it by yourself. And I am so happy you found your way here.,Aaron Ehasz,Giancarlo Volpe,9.5 +13094,13094,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"It wasn't that hard, Uncle. You have a pretty strong scent.","It wasn't that hard, Uncle. You have a pretty strong scent.",Aaron Ehasz,Giancarlo Volpe,9.5 +13095,13095,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,The camera zooms out before cutting to the island. A squirrel runs along a branch before cutting to an aerial view of the rock formation. Birds fly past the camera as Momo and Aang sleep on the rock formation. Cut close-up to Aang as he wakes up and yawns. The camera follows him as he sits up and notices something.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13096,13096,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"Wait. [Cut to view of ""approaching"" mountains.] Is it just me, or are those mountains getting bigger?","Wait. Is it just me, or are those mountains getting bigger?",Aaron Ehasz,Giancarlo Volpe,9.5 +13097,13097,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to close-up of Aang as Momo chitters. Aang bends down and uses airbending to launch himself up. Cut to the top of a tall tree that Aang lands on. As he looks foward, Momo flies around and lands on his shoulder. Cut to a close-up of Aang and Momo. Aang turns around to show a wake behind the ""island"".",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13098,13098,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"They're not getting larger, [Turning back. Excitedly.] They're getting closer! [Aang jumps off the tree. Cut to side-view as he runs toward the edge of the island, Momo in his wake.] The whole island is moving!","They're not getting larger, They're getting closer! The whole island is moving!",Aaron Ehasz,Giancarlo Volpe,9.5 +13099,13099,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to side-view of the island as Aang leaps out from the brush and jumps in to the water. Cut underwater as Aang dives down. Cut to Momo landing on a branch looking down at where Aang entered the water and chitters. Cut to side-view of Aang underwater as he swims down. Cut to a frontal view as he inspects the island. Cut to a wide-view as a paw moves past him. Cut to frontal view of Aang who hovers for a moment before swimming up to the surface. Cut to the surface of the water as Aang emerges, gasping for breath, and Momo lands nearby.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13100,13100,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"It's amazing Momo! The biggest animal in the world! I've gotta to swim around and find its face. [Momo chitters in response and he swims off toward the front of the ""island"". Momo follows him.]",It's amazing Momo! The biggest animal in the world! I've gotta to swim around and find its face.,Aaron Ehasz,Giancarlo Volpe,9.5 +13101,13101,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to an aerial view of Momo flying above Aang, who is swimming in the water below. Cut to a distance view of the entire island from behind. Cut to aerial view of the White Lotus camp.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13102,13102,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Voice-over.] Uncle, you're the only person other than the Avatar who can [Side-view of Iroh with Zuko sat next to him. Toph sits to Zuko's right and Katara has her back to the camera opposite Toph.] possibly defeat the Father Lord.","Uncle, you're the only person other than the Avatar who can possibly defeat the Father Lord.",Aaron Ehasz,Giancarlo Volpe,9.5 +13103,13103,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,You mean the Fire Lord.,You mean the Fire Lord.,Aaron Ehasz,Giancarlo Volpe,9.5 +13104,13104,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Angrily.] That's what I just said!,That's what I just said!,Aaron Ehasz,Giancarlo Volpe,9.5 +13105,13105,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,Hmmm ...,Hmmm ...,Aaron Ehasz,Giancarlo Volpe,9.5 +13106,13106,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,We need you to come with us!,We need you to come with us!,Aaron Ehasz,Giancarlo Volpe,9.5 +13107,13107,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"[Close-up.] No, Zuko, it won't turn out well.","No, Zuko, it won't turn out well.",Aaron Ehasz,Giancarlo Volpe,9.5 +13108,13108,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Aerial view of the group.] You can beat him! [Turns to the others.] And we'll be there to help.,You can beat him! And we'll be there to help.,Aaron Ehasz,Giancarlo Volpe,9.5 +13109,13109,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"Even if I did defeat Ozai, [Close-up.] and I don't know that I could, it would be the wrong way to end the war. [Aerial view of the group.] History would see it as just more senseless violence, a brother killing a brother to grab power. The only way for this war to end peacefully is for the Avatar to defeat the Fire Lord.","Even if I did defeat Ozai, and I don't know that I could, it would be the wrong way to end the war. History would see it as just more senseless violence, a brother killing a brother to grab power. The only way for this war to end peacefully is for the Avatar to defeat the Fire Lord.",Aaron Ehasz,Giancarlo Volpe,9.5 +13110,13110,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Close-up of Zuko from over Iroh's shoulder.] And then ... then you would come and take your rightful place on the throne?,And then ... then you would come and take your rightful place on the throne?,Aaron Ehasz,Giancarlo Volpe,9.5 +13111,13111,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"[Close-up.] No. Someone new must take the throne. An idealist with a pure heart [Frontal view from the side of Iroh as the camera zooms in on Zuko.] and unquestionable honor. It has to be you, Prince Zuko.","No. Someone new must take the throne. An idealist with a pure heart and unquestionable honor. It has to be you, Prince Zuko.",Aaron Ehasz,Giancarlo Volpe,9.5 +13112,13112,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,[Zuko briefly looks away.] Unquestionable honor? But I've made so many mistakes.,Unquestionable honor? But I've made so many mistakes.,Aaron Ehasz,Giancarlo Volpe,9.5 +13113,13113,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"Yes, you have. [Close-up of Iroh from over Zuko's shoulder.] You've struggled; you've suffered, but you have always followed your own path. [Close-up of Zuko.] You restored your own honor, and only you can restore the honor of the Fire Nation.","Yes, you have. You've struggled; you've suffered, but you have always followed your own path. You restored your own honor, and only you can restore the honor of the Fire Nation.",Aaron Ehasz,Giancarlo Volpe,9.5 +13114,13114,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Zuko looks away.] I'll try, Uncle.","I'll try, Uncle.",Aaron Ehasz,Giancarlo Volpe,9.5 +13115,13115,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,"[Side-view of Toph.] Well, what if Aang doesn't come back?","Well, what if Aang doesn't come back?",Aaron Ehasz,Giancarlo Volpe,9.5 +13116,13116,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"[Aerial view of group.] Sozin's Comet is arriving, and our destinies are upon us. Aang will face the Fire Lord. [Extreme close-up.] When I was a boy, I had a vision that I would one day take Ba Sing Se. [Cut to Zuko and the camera pans across to right showing Toph, Sokka, Suki, and Katara.] Only now do I see that my destiny is to take it back from the Fire Nation, [Extreme close-up.] so the Earth Kingdom can be free again.","Sozin's Comet is arriving, and our destinies are upon us. Aang will face the Fire Lord. When I was a boy, I had a vision that I would one day take Ba Sing Se. Only now do I see that my destiny is to take it back from the Fire Nation, so the Earth Kingdom can be free again.",Aaron Ehasz,Giancarlo Volpe,9.5 +13117,13117,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Suki,[Side-view of Suki and Katara.] That's why you gathered the members of the White Lotus.,That's why you gathered the members of the White Lotus.,Aaron Ehasz,Giancarlo Volpe,9.5 +13118,13118,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"Yes. [Close-up from over Zuko's shoulder.] Zuko, you must return to the Fire Nation, so that when the Fire Lord falls, you can assume the throne and restore peace and order. [Extreme close-up of Zuko.] But Azula will be there, waiting for you.","Yes. Zuko, you must return to the Fire Nation, so that when the Fire Lord falls, you can assume the throne and restore peace and order. But Azula will be there, waiting for you.",Aaron Ehasz,Giancarlo Volpe,9.5 +13119,13119,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,I can handle Azula.,I can handle Azula.,Aaron Ehasz,Giancarlo Volpe,9.5 +13120,13120,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,Not alone! [Frontal view of Iroh from the side of Zuko.] You'll need help.,Not alone! You'll need help.,Aaron Ehasz,Giancarlo Volpe,9.5 +13121,13121,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[Extreme close-up.] You're right. Katara, [Frontal view of Katara over Zuko's shoulder.] how would you like to help me put Azula in her place?","You're right. Katara, how would you like to help me put Azula in her place?",Aaron Ehasz,Giancarlo Volpe,9.5 +13122,13122,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,It would be my pleasure.,It would be my pleasure.,Aaron Ehasz,Giancarlo Volpe,9.5 +13123,13123,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,What about us? [Side-view of Toph with Sokka sitting to the right and behind.] What is our destiny today?,What about us? What is our destiny today?,Aaron Ehasz,Giancarlo Volpe,9.5 +13124,13124,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,[Close-up.] What do you think it is?,What do you think it is?,Aaron Ehasz,Giancarlo Volpe,9.5 +13125,13125,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[Frontal view.] I think that, even though we don't know where Aang is, we need to do everything we can to stop the airship fleet.","I think that, even though we don't know where Aang is, we need to do everything we can to stop the airship fleet.",Aaron Ehasz,Giancarlo Volpe,9.5 +13126,13126,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Toph,"[Camera pans back and to the left to Toph.] And that means when Aang does face the Fire Lord, we'll be right there if he needs us. [Close-up of Iroh, who smiles.]","And that means when Aang does face the Fire Lord, we'll be right there if he needs us.",Aaron Ehasz,Giancarlo Volpe,9.5 +13127,13127,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,Cuts to side-view of Toph and Suki on board an eel hound. The camera zooms out to show the entire eel hound and Sokka and Piandao are on the ground beside it.,NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13128,13128,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Piandao,"Nothing runs faster over land or swims quicker than a giant eel hound. [Frontal view of Piandao with Sokka's back to the camera. Piandao hands Sokka a map, who examines it.] The air ship base is on a small island just off the Earth Kingdom shore. [Frontal view of Sokka over the shoulder of Piandao.] You should be able to intercept the fleet within a day's journey.",Nothing runs faster over land or swims quicker than a giant eel hound. The air ship base is on a small island just off the Earth Kingdom shore. You should be able to intercept the fleet within a day's journey.,Aaron Ehasz,Giancarlo Volpe,9.5 +13129,13129,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Sokka,"[He puts the map away.] Thank you, Master.","Thank you, Master.",Aaron Ehasz,Giancarlo Volpe,9.5 +13130,13130,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to frontal view as they bow to each other before Sokka hugs Piandao. Camera pans right to Appa, with Zuko up front and Katara in the saddle.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13131,13131,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Zuko,"[To Iroh.] So if I'm going to be Fire Lord after the war is over, [Side-view of Zuko.] what are you going to do?","So if I'm going to be Fire Lord after the war is over, what are you going to do?",Aaron Ehasz,Giancarlo Volpe,9.5 +13132,13132,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"[Frontal view.] After I re-conquer Ba Sing Se, I'm going to re-conquer my tea shop, and I'm going to play Pai Sho every day. [Flips a Pai Sho piece and catches it as he speaks.]","After I re-conquer Ba Sing Se, I'm going to re-conquer my tea shop, and I'm going to play Pai Sho every day.",Aaron Ehasz,Giancarlo Volpe,9.5 +13133,13133,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to close-up of Zuko with Katara, in the background, as they both look left. Cut to Sokka, Toph, and Suki looking back and Sokka nods. Cuts to a aerial shot of the entire group.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13134,13134,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Katara,"Goodbye, General Iroh.","Goodbye, General Iroh.",Aaron Ehasz,Giancarlo Volpe,9.5 +13135,13135,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Iroh,"[Close-up.] Goodbye, everyone. Today, destiny is our friend. [Whispers.] I know it.","Goodbye, everyone. Today, destiny is our friend. I know it.",Aaron Ehasz,Giancarlo Volpe,9.5 +13136,13136,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Cut to aerial view as the eel hound sets off followed soon after by Appa. The camera pans up slightly as the Order of the White Lotus members wave. Cuts back to the side of the island, now close to the mountains. Cut to the top of the trees on the island and the camera pans down to Aang swimming in the water. Aang stops and Momo chitters behind him as he dives in the water. Cut underwater as Aang swims to the front of the island to take a closer look. Cut to frontal view of Aang and the camera pans down to follow him as he swims. He stops and an eye opens behind him. Cut to frontal view of a surprised Aang and he swims back as a giant paw moves underneath him and lifts him up. Cut to above the water as Aang and the paw emerge. A wave of water covers the camera view before falling down to reveal a face. The camera cuts and zooms out to show the entire creature as Aang stands on it's paw.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13137,13137,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Aang,"[Side-view.] A lion turtle! [Frontal view. Bows to it. Frontal view of Lion turtle.] Maybe you can help me. Everyone, even my own past lives, are expecting me to end someone's life. [Frontal view.] But I don't know if I can do it.","A lion turtle! Maybe you can help me. Everyone, even my own past lives, are expecting me to end someone's life. But I don't know if I can do it.",Aaron Ehasz,Giancarlo Volpe,9.5 +13138,13138,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Lion turtle,"[Frontal view of the lion turtle's face from behind Aang. The lion turtle's mouth is not moving, yet it is speaking to Aang.] The true mind can weather all the lies and illusions without being lost. The true heart can tough the poison of hatred without being harmed. [Extreme close-up of its left eye.] Since beginningless time, [Side-view of the lion turtle as it lifts it's other paw out of the water and moves it toward Aang.] darkness thrives in the void but always yields to purifying light.","The true mind can weather all the lies and illusions without being lost. The true heart can tough the poison of hatred without being harmed. Since beginningless time, darkness thrives in the void but always yields to purifying light.",Aaron Ehasz,Giancarlo Volpe,9.5 +13139,13139,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"The lion turtle placed two claws on Aang, one on his forehead and the other on his chest, and a bright light issues forth from it. Fade to side-view of the lion turtle's paw as it moves slowly toward a small cliff in the Earth Kingdom, and Aang steps off onto dry land. Momo flies onto Aang's shoulder. Cut to frontal view of the lion turtle from behind Aang.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13140,13140,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Lion turtle,Wait for him. He will come.,Wait for him. He will come.,Aaron Ehasz,Giancarlo Volpe,9.5 +13141,13141,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Aang bows to the lion turtle. The lion turtle sinks under the water. Frontal view of Aang as he stands up out of the bow. Cut to wide-view of the lion turtle swimming away. Cut to frontal view of Aang, who leaps off-camera. Cut to a wide-view of Ozai's base.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13142,13142,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Ozai,"[Close-up.] It's time for this world to end in fire, and for a new world to be born from the ashes.","It's time for this world to end in fire, and for a new world to be born from the ashes.",Aaron Ehasz,Giancarlo Volpe,9.5 +13143,13143,Fire,3,"Sozin's Comet, Part 2: The Old Masters",19,Scene Description,"Camera backs up as he speaks revealing his airship fleet. Cut to the comet, which enters Earth's atmosphere. Cut back to behind Ozai, before panning right fading to Aang and Momo from behind in a different location. Cut to a frontal view of Aang. Cuts to close-up of the comet, followed by a close-up of Aang's face with the comet behind him on the horizon. Fade to credits.",NA,Aaron Ehasz,Giancarlo Volpe,9.5 +13144,13144,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,The episode opens to where Sozin's Comet can be seen skimming the atmosphere of the Earth. Zuko and Katara are flying on Appa briskly through the orange colored sky. Katara turns to Zuko upon seeing his worried and somewhat anxious expression.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13145,13145,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Katara,"Zuko, don't worry. We can take Azula.","Zuko, don't worry. We can take Azula.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13146,13146,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,It's not her I'm worried about. I'm worried about Aang. What if he doesn't have the guts to take out my father? What if he loses?,It's not her I'm worried about. I'm worried about Aang. What if he doesn't have the guts to take out my father? What if he loses?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13147,13147,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Katara,[Somewhat confidently.] Aang won't lose. He's gonna come back. [Looks forward with narrowed eyes.]  He has to. [Close-up of Zuko's face as he follows Katara's lead and looks forward.],Aang won't lose. He's gonna come back.   He has to.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13148,13148,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Cut to the Royal Palace, where Azula is being groomed by her servants in preparation for her coronation. She takes a cherry from a bowl one of her servants is holding and pops it into her mouth, only to spit out a pit in disgust.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13149,13149,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,[Holding a cherry pit in her hand.] What am I holding?,What am I holding?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13150,13150,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Banished servant,"A cherry pit, Princess.","A cherry pit, Princess.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13151,13151,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,Correct. And what day is this?,Correct. And what day is this?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13152,13152,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Banished servant,It is the day of your coronation.,It is the day of your coronation.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13153,13153,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Yes, it is. So, please. Tell me why, on the most important day of my life, you've decided to leave a pit in my cherry? [Throws the pit at the servant, who winces slightly from the impact.]","Yes, it is. So, please. Tell me why, on the most important day of my life, you've decided to leave a pit in my cherry?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13154,13154,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Banished servant,It wasn't a decision; it was just a small mistake.,It wasn't a decision; it was just a small mistake.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13155,13155,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,Small? Do you realize what could've happened if I hadn't sensed the pit in time?,Small? Do you realize what could've happened if I hadn't sensed the pit in time?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13156,13156,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Banished servant,[Nervously.] I suppose you could've ... choked?,I suppose you could've ... choked?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13157,13157,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Yes, then you will understand the severity of your crime.","Yes, then you will understand the severity of your crime.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13158,13158,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Banished servant,"I understand, Princess. Please, forgive me.","I understand, Princess. Please, forgive me.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13159,13159,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Oh very well, since it is a special day, I will show mercy. You are banished. Leave this palace immediately.","Oh very well, since it is a special day, I will show mercy. You are banished. Leave this palace immediately.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13160,13160,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,The servant bows and quietly walks away.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13161,13161,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,What are you all looking at? I have two feet that need scrubbing. And make sure you get in between the toes. I won't have my first day as Fire Lord marred by poor foot hygiene.,What are you all looking at? I have two feet that need scrubbing. And make sure you get in between the toes. I won't have my first day as Fire Lord marred by poor foot hygiene.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13162,13162,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Scene cuts to where an eel hound is swimming through the water, Sokka, Toph, and Suki riding atop the beast.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13163,13163,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,"It's weird to say, but the comet actually looks beautiful.","It's weird to say, but the comet actually looks beautiful.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13164,13164,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,Too bad the Fire Lord's about to use it to destroy the world.,Too bad the Fire Lord's about to use it to destroy the world.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13165,13165,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,The eel hound arrives at the shore of the airship base. The trio climbs their way up a cliff side only to discover the fleet has just taken off.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13166,13166,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,We're too late! The fleet's already taking off!,We're too late! The fleet's already taking off!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13167,13167,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,"Then we're taking off, too! Where's the closest airship?","Then we're taking off, too! Where's the closest airship?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13168,13168,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,It's right ... [Points to the closest airship.],It's right ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13169,13169,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"He is interrupted as Toph launches the three toward an airship, using earthbending. After a swift ascension, they fall onto a nearby ship and make their way across the giant vessel. The camera zooms out and focuses on the lead airship, Fire Lord Ozai standing on the very ledge overlooking the land. The scene switches to where Azula is sitting impatiently on her throne as a band of Dai Li agents approaches.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13170,13170,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Head of Dai Li,"You sent for us, Princess. Is everything all right?","You sent for us, Princess. Is everything all right?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13171,13171,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Actually, everything's not all right! Do you know how long it took you to get here?","Actually, everything's not all right! Do you know how long it took you to get here?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13172,13172,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Head of Dai Li,"Uh ... a few minutes, I guess.","Uh ... a few minutes, I guess.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13173,13173,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Five, to be precise, in which time an assassin could've snuck in, done away with me and been on his merry way!","Five, to be precise, in which time an assassin could've snuck in, done away with me and been on his merry way!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13174,13174,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Head of Dai Li,"My apologies, Princess.","My apologies, Princess.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13175,13175,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,Is this how you plan to treat your new Fire Lord? With tardiness and disloyalty?,Is this how you plan to treat your new Fire Lord? With tardiness and disloyalty?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13176,13176,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Head of Dai Li,The Dai Li would never betray you!,The Dai Li would never betray you!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13177,13177,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,And I'm sure that's just what you told Long Feng before you turned against him and joined me! [Hesitates for a moment.] You're all banished!,And I'm sure that's just what you told Long Feng before you turned against him and joined me! You're all banished!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13178,13178,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Head of Dai Li,But ...,But ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13179,13179,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,Goodbye!,Goodbye!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13180,13180,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,The agent pauses briefly before turning around and exiting the room followed by the other Dai Li agents behind him.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13181,13181,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,Please send in the next group on your way out! [Looks menacingly.],Please send in the next group on your way out!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13182,13182,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Meanwhile, back on the airship, the trio has made their way to the main control room.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13183,13183,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,[Backed against the wall.] Sshhh ...,Sshhh ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13184,13184,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Toph approaches the door and knocks several times before breaking it down. Using metalbending, she creates a suit of armor from the door and assaults the astonished crew members. The Fire Nation soldiers launch firebending attacks at her, but she merely dodges them and metalbends various parts of the ship's interior to imprison the crew members. With all the men defeated, Sokka and Suki peer into the room. Toph takes off her suit of armor.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13185,13185,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,That's how it's done!,That's how it's done!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13186,13186,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,"Good work, Toph! Time to take control of the ship, take the wheel.","Good work, Toph! Time to take control of the ship, take the wheel.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13187,13187,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,[Sarcastically.] That's a great idea! Let the blind girl steer the giant airship!,That's a great idea! Let the blind girl steer the giant airship!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13188,13188,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,I was talking to Suki.,I was talking to Suki.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13189,13189,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,That would make a lot more sense.,That would make a lot more sense.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13190,13190,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,[Approaches the steering wheel.] What are we going to do about the rest of the crew?,What are we going to do about the rest of the crew?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13191,13191,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,"Take us down closer to the water. I've got an idea. [Grabs a tube-like speaker.] Attention, crew, this is your captain speaking. Everyone please report to the bomb bay immediately for hot cakes and sweet cream. We have a very special birthday to celebrate.","Take us down closer to the water. I've got an idea. Attention, crew, this is your captain speaking. Everyone please report to the bomb bay immediately for hot cakes and sweet cream. We have a very special birthday to celebrate.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13192,13192,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Suki begins to steer the ship close to the water. In the bomb bay, the crew members are standing around, waiting.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13193,13193,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Qin Lee,"[To a nearby engineer.] Hey, I'm Qin Lee. I work up in communications.","Hey, I'm Qin Lee. I work up in communications.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13194,13194,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Engineer,"Oh, hi. I work down in the engine room. That's probably why we never met before. Big airship, you know?","Oh, hi. I work down in the engine room. That's probably why we never met before. Big airship, you know?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13195,13195,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Qin Lee,Yep.,Yep.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13196,13196,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Engineer,"So, do you know whose birthday it is?","So, do you know whose birthday it is?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13197,13197,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,A crew member approaches Qin Lee and the engineer.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13198,13198,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Crew member,I can't believe the captain remembered my birthday. He really does care.,I can't believe the captain remembered my birthday. He really does care.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13199,13199,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,The bomb bay doors open and all the crew members fall into the ocean. The crew members swim up for air.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13200,13200,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Engineer,[To the crew member.] Happy birthday. [He frowns at him.],Happy birthday.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13201,13201,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Back up into the cabin, Sokka looks through a broken window at Ozai's airship.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13202,13202,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,"Fire Lord Ozai, here we come.","Fire Lord Ozai, here we come.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13203,13203,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Sokka grabs the throttle and pushes it forward. Cut to a shot of Ozai. Scene changes to the Fire Nation royal palace. Cut to a shot of Azula at the throne, looking left just as footsteps are heard. Cut to a shot of Lo and Li walking toward the throne.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13204,13204,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Li,"[To Azula.] Azula, we heard what happened. Why have you banished all your servants?","Azula, we heard what happened. Why have you banished all your servants?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13205,13205,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Lo,All your Dai Li agents ...,All your Dai Li agents ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13206,13206,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Li,And the Imperial Firebenders?,And the Imperial Firebenders?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13207,13207,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"None of them could be trusted. Sooner or later, they all would have betrayed me. Just like Mai and Ty Lee did.","None of them could be trusted. Sooner or later, they all would have betrayed me. Just like Mai and Ty Lee did.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13208,13208,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Lo and Li,"Azula, we are concerned for you and your well-being.","Azula, we are concerned for you and your well-being.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13209,13209,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"[Glaring at Lo and Li.] My father asked you to come here and talk to me, didn't he? He thinks I can't handle the responsibility of being Fire Lord. But I will be the greatest leader in Fire Nation history.","My father asked you to come here and talk to me, didn't he? He thinks I can't handle the responsibility of being Fire Lord. But I will be the greatest leader in Fire Nation history.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13210,13210,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Lo,I'm sure you will. But considering everything that has happened today ...,I'm sure you will. But considering everything that has happened today ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13211,13211,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Li,Perhaps it's best if you postponed your coronation.,Perhaps it's best if you postponed your coronation.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13212,13212,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"[In anger, glaring at Lo and Li.] What? Which one of you just said that?",What? Which one of you just said that?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13213,13213,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,Lo and Li point at each other.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13214,13214,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,What a shame ... there's only one way to resolve this. You two must duel each other. I order you to fight an Agni Kai!,What a shame ... there's only one way to resolve this. You two must duel each other. I order you to fight an Agni Kai!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13215,13215,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Lo,But ...,But ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13216,13216,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Lo and Li,We're not firebenders.,We're not firebenders.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13217,13217,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"All right, fine. [Pointing at Li.] Lo, you're banished. [Pointing at Lo, while actually talking to Li.] Li, you can stay. [Walks away.]","All right, fine. Lo, you're banished. Li, you can stay.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13218,13218,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Li,"But, I'm Li. So who's banished?","But, I'm Li. So who's banished?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13219,13219,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Lo shrugs at Li. The scene changes to Ba Sing Se as Fire Nation tanks roll toward the main gate. Cut to a shot of the main gate as the tanks line up. Cut to the flag of the Order of the White Lotus. Cut to a shot of Jeong Jeong, Bumi, Pakku, and Piandao from the side.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13220,13220,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Bumi,"Ba Sing Se, the Order of the White Lotus is here.","Ba Sing Se, the Order of the White Lotus is here.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13221,13221,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Pakku,Here to set you free.,Here to set you free.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13222,13222,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Iroh,[Cut to a shot of Iroh.] Only once every hundred years can a firebender experience this kind of power.,Only once every hundred years can a firebender experience this kind of power.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13223,13223,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Iroh inhales deeply. Cut to a shot of the Sozin's Comet. Scene changes back to Iroh exhaling as a ring of fire appears around. The flames grow larger each time Iroh breathes deeply. Iroh opens his eyes and raises his arms, as the flames around him collect to make a ball of fire. It collects energy and Iroh fires it as a massive fire blast that breaches the Outer Wall. Cut to a shot of the Order. Bumi jumps forward and stomps the ground. The three stone blocks that the Order's members are standing on begin to quickly move toward Ba Sing Se. Cut to a shot from behind the wall as fire blasts are shot at the Order members. Cut to a shot of Iroh deflecting the attacks. The Order members leap and go toward the city. +Cut to a shot of an alleyway. Pakku bends a giant wave of water over the building and down toward the Fire Nation soldiers. Cut to a shot of Piandao as he jumps over it. Pakku turns the wave into ice, freezing the soldiers. Piandao slides down the frozen wave and slashes the ends of the soldier's weapons. Sliding into another street, Pakku unfreezes the water, freezes it again in front of him to block an incoming fire blast. The ice barrier is destroyed, and when another fire blast is about to hit Pakku, a giant wall of fire erupts, made by Jeong Jeong, in front of him, stopping the attack. +Cut to a short of Jeong Jeong, floating in the air using firebending to create fire jets beneath his feet. Jeong Jeong turns to another street. A line of tanks fire on him, but he blocks the attacks with another giant wall of fire and thrusts the wall knocking the tanks. More tanks begin to fire on him from another street, but Jeong Jeong repeats his actions, creating a wall of flame and attacking the tanks with it. The tanks can be seen knocked over and in a pile as the wall of fire pushes another tank into the pile. +Scene changes to Azula standing in front of a full length mirror. She takes a ribbon and begins leisurely winding around her hair. Her hand gets caught as she is tying her hair into a top knot. Frustrated, she tugs at the tangled mess a few times before she grabs a pair of scissors from the table next to her, ready to cut her hair.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13224,13224,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"All right hair, it's time to face your doom.","All right hair, it's time to face your doom.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13225,13225,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Azula grabs the bangs hanging in front of her face. She lifts them in the air and cuts them, with them falling near her feet. Her reflection in the mirror shows her grinning, with her hair a mess, but she stops grinning as she notices Ursa appears in the reflection, behind Azula.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13226,13226,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ursa,"What a shame, you always had such beautiful hair.","What a shame, you always had such beautiful hair.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13227,13227,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,What are you doing here?,What are you doing here?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13228,13228,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ursa,I didn't want to miss my own daughter's coronation.,I didn't want to miss my own daughter's coronation.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13229,13229,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,Don't pretend to act proud. I know what you really think of me. You think I'm a monster.,Don't pretend to act proud. I know what you really think of me. You think I'm a monster.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13230,13230,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ursa,"[Cuts to shot of Azula looking at her reflection in the mirror, clearly angered; off-camera.] I think you're confused. All your life you used fear to control people, like your friends Mai and Ty Lee.","I think you're confused. All your life you used fear to control people, like your friends Mai and Ty Lee.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13231,13231,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"[Closes her eyes before turning around sharply to face her mother.] Well what choice do I have?! [Cuts to shot of her standing in the room, her back to the mirror which still shows the reflection of her mother.] Trust is for fools. Fear is the only reliable way. Even you fear me.",Well what choice do I have?! Trust is for fools. Fear is the only reliable way. Even you fear me.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13232,13232,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ursa,"[Sincerely.] No. I love you, Azula. I do.","No. I love you, Azula. I do.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13233,13233,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Cuts to close-up of Azula as she bends over slightly, tears in her eyes, and her hair hanging down in messy locks. Cuts to shot of her hand gripped around a hairbrush on the table. The camera shifts as the enraged princess lets out a shout and hurls the brush at the mirror. The resulting impact shatters a large portion of the mirror, including where Ursa's reflection was seen. Cuts to overhead shot of the room as Azula kneels over and begins bitterly crying. The room is devoid of any other people, showing that Ursa's reflection was a mere hallucination. +Cut to a shot of the approaching Fire Nation fleet of airships. Cut to a shot of Ozai from behind, standing at the front of his airship. Cut to a shot of Ozai from the front as he inhales deeply. He exhales, opens his eyes and smiles. Cut to a shot of Ozai's airship from above. The airship that Sokka, Suki, and Toph hijacked can be seen just below it. Cut to a shot of Ozai's airship from Sokka's point of view as he looks through a small glass.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13234,13234,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,We're not gonna catch up to him in time.,We're not gonna catch up to him in time.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13235,13235,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,[Sadly.] No ...,No ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13236,13236,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Cut to a shot of Ozai from above. Scene changes to a shot of the comet before changing back to Ozai. He tilts his head back and smiles sadistically. Ozai raises his arms in the air, pulls his palm down toward the ground beneath. A small but incredibly intense flame is forming on his hand, growing larger until it is finally fired into an enormous fire blast that ignites the earth below. Cut to a shot of Ozai, as he burns the ground with a sadistic grin. Cut to a shot from behind Ozai. Cut to a shot from behind a tall, stone pillar where Aang is standing, facing Ozai's assault. Cut to a closer shot of Aang from behind. Seated on Aang's shoulder, Momo chirps.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13237,13237,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Aang,"Momo, time for you to go.","Momo, time for you to go.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13238,13238,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Momo leaps off of Aang's shoulder. Aang closes his eyes and breathes deeply. Aang performs several spinning kicks, using earthbending to send giant sections of the stone pillar beneath him toward Ozai's ship and jumps to another pillar. The chunks of rock whistle past the side of Ozai's airship, which catches his notice. The last few pieces of rock strike the airship's engine, which causes Ozai to lose balance and stop his attack. Cut to a shot from the side of the airship as smoke drifts from the engine. It loses power and begins to descend. Ozai looks down to see Aang. Aang spins his body around, gathering his energy, and unleashes a huge fire blast at Ozai's ship, striking the final blow to its engine, thereby destroying the airship. +Aang turns to the side toward the airship and it floats past him, facing Ozai for the first time. Ozai stares at Aang with surprise. Aang can be seen standing on top of a stone pillar in the distance. Cut to a close-up of Aang facing Ozai, as he lowers his bending stance. Cut to a shot of Ozai, as he removes his Phoenix King armor and cloak, burning it and leaving his chest bare. Ozai jumps off of the platform he is standing on, using his firebending to fly like a rocket toward Aang. Cut to a shot of Aang until the top of another stone pillar comes into view, which Ozai lands on. Cut to a shot of Ozai, with his airship smoldering behind him. +Cut to a shot of the burning airship from Sokka's view through a glass. Cut to a shot of Suki, Sokka, and Toph inside the airship cabin.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13239,13239,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,What just happened?,What just happened?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13240,13240,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,[Excited.] It's Aang! He's back!,It's Aang! He's back!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13241,13241,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,Cut to a shot of Aang. Zooms in. The camera cuts and pans up to show Aang and Ozai facing each other. Zooms in on Aang.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13242,13242,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ozai,"After generations of Fire Lords failed to find you, now the universe delivers you to me as an act of providence.","After generations of Fire Lords failed to find you, now the universe delivers you to me as an act of providence.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13243,13243,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Aang,Please listen to me. We don't have to fight. You have the power to end it here and stop what you're doing.,Please listen to me. We don't have to fight. You have the power to end it here and stop what you're doing.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13244,13244,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ozai,You are right. I do have the power. I have all the power in the world!,You are right. I do have the power. I have all the power in the world!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13245,13245,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Ozai begins to shoot fire from his hands and mouth. The camera zooms out. Cut to a shot of Aang as he enters his battle stance. Cut to a shot of Ozai as the flames die, and he looks at Aang. Ozai jumps, spins in the air, and slams his fist downward, creating a circular wave of flames that spread directly toward Aang. Aang jumps over the attack and slams his hands and feet into the stone pillar right below him. He earthbends a piece of the pillar he is holding into the air. Aang rotates it around and kicks the chunk of rock toward Ozai, who leaps away using his firebending. In mid-air, Ozai propels himself at Aang using a jet of fire from his feet. At the same time, Aang jumps toward Ozai, sending a wave of fire at him. Ozai kicks forward and shoots a fire blast from his foot. The two attacks collide in a fiery explosion. The camera pulls back through the broken window of the airship cabin where Sokka, Suki, and Toph are.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13246,13246,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,"[Excited.] Go, Aang! Airbending slice! [Swings hand down, slicing through the air.]","Go, Aang! Airbending slice!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13247,13247,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,Shouldn't we be helping him?,Shouldn't we be helping him?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13248,13248,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,The Fire Lord is Aang's fight. We need to stay focused on stopping that fleet from burning down the Earth Kingdom.,The Fire Lord is Aang's fight. We need to stay focused on stopping that fleet from burning down the Earth Kingdom.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13249,13249,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,"[Sarcastically.] And how do we do that, Captain Boomerang? [Normal.] I can't see outside of this floating hunk of metal.","And how do we do that, Captain Boomerang? I can't see outside of this floating hunk of metal.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13250,13250,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,[Smiles as he comes up with his idea before turning to face Suki and Toph; excitedly.] Airship slice!,Airship slice!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13251,13251,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"The scene cuts to a shot of Toph and Suki, as Suki raises her eyebrow at Sokka. Cut to a shot of the airship they are piloting. It begins to rise higher and higher into the air. Cut to a shot of Sokka at the wheel as he begins to pull some levers. Cut to a shot of the airship from outside. Cut back to a shot of Sokka as he spins the wheel to his left. Cut back to the shot of the airship outside as it banks toward the left end of the airship fleet behind it. Cut to a shot from the side of the airship fleet. Firebenders are seen standing on platforms jutting out toward the front. In unison, they begin to firebend. Cut to a shot from below as the fire blasts hit the ground below. Cut to a shot high above the airships. The fire burns and creates an immense amount of smoke. Cut to a shot of the forest as it is engulfed in flames. Cut to a shot of the torrents of flame from the side before cutting to a shot of Toph, looking down at the chaos through the cabin's shattered window.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13252,13252,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,"Whoa. That's a lot of fire, isn't it.","Whoa. That's a lot of fire, isn't it.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13253,13253,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Cut to a close-up of Toph's face, before cutting to a shot of the airship as it flies toward the camera. Cut to a shot of the inside of the cabin, Sokka at the wheel. He spins the wheel back around as their airship comes to face the side of the airship fleet. He pulls more levers, steadying the ship. Cut to a close-up of Sokka pulling a lever down. The scene cuts to a close-up of a dial, its needle turning to the maximum. Cut to a shot of the exhaust pipes of the airship, smoke begins to billow out. Cut to a shot of the airship's engine from outside as it begins to rupture and explode. Cut to a close-up of Sokka, gritting his teeth in determination.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13254,13254,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,"It's gonna be a rough ride! We need to get to the top of this thing, fast.","It's gonna be a rough ride! We need to get to the top of this thing, fast.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13255,13255,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Sokka grabs Toph's hand, and they run to the exit. Suki's following not too far behind. Sokka and Suki stop at the doorway, as Toph continues running on.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13256,13256,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,[Responding to Sokka's last comment.] Then what?,Then what?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13257,13257,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,"Watch each other's backs, and if we make it that far, I'll let you know.","Watch each other's backs, and if we make it that far, I'll let you know.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13258,13258,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Suki and Sokka share a quick kiss before going on, catching up with Toph. The scene cuts from them to a shot of the airship as it begins to descend. It plows into other airships, causing a domino-effect of crashing. Cut to a shot from above the trio. As they climb their way up a ladder to the top of the airship. The floor beneath them suddenly gets destroyed as soon as Sokka got up the ladder; they had just made it. Cut to a shot of the top of the airship as the three of them climb out through a hatch on top. Sokka grabs Toph's hand to guide her, and the three of them begin running toward the front of the ship. The camera quickly zooms out to show the airship still flying through the fleet, but slowly demolishing itself in process. The scene cuts to a shot of Toph, Sokka, and Suki, racing toward the front of the airship. Suddenly, just as they are getting to their destination, part of the airship falls off, separating Suki from Toph and Sokka. Cut to a shot of a horrified Suki as she reaches out to the others, and pulls away from the camera. The scene switches back to Sokka and Toph. Their piece of airship is drifting away from Suki's.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13259,13259,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,Suki!,Suki!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13260,13260,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"The scene cuts to a shot of above the airship; the front breaks off and collides with one last enemy ship. Cut to a shot from behind Sokka, reaching out desperately to Suki in front of him. Suki jumps from what is left of their airship, and down to another one.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13261,13261,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Suki,I'm okay! Just finish the mission!,I'm okay! Just finish the mission!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13262,13262,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Sokka,[Heartbroken.] No ... ,No ... ,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13263,13263,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph,"Sokka, I think we've gotta ...","Sokka, I think we've gotta ...","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13264,13264,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Toph and Sokka,Jump!,Jump!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13265,13265,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Cut to a shot of the front of the airship, slamming violently into another enemy airship. Cut to a shot of Toph and Sokka as they land below, onto another airship. Sokka covers Toph to shade her from falling debris. +Cut to the plaza, the location of the Fire Lord's coronation, where only Azula and the Fire Sages are present. The scene cuts to the front of Azula, who is kneeling down on the plaza steps. She is seen wearing Fire Lord robes with her armor underneath. Standing behind her are Fire Sages, one begins to hold the headpiece over her head.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13266,13266,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Fire Sage,"By decree of Phoenix King Ozai, I now crown you Fire Lord ...","By decree of Phoenix King Ozai, I now crown you Fire Lord ...","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13267,13267,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,The sage suddenly pauses and looks ahead. Azula turns her head to face him.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13268,13268,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,[Somewhat annoyed.] What are you waiting for? Do it!,What are you waiting for? Do it!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13269,13269,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Appa is heard in the distance off-camera, and Azula turns back around to see Appa landing in the plaza courtyard. The scene cuts to a frontal shot of Appa; Katara is seated on Appa's saddle, and Zuko is standing on his back.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13270,13270,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,"Sorry, but you're not gonna become Fire Lord today. [Jumps off Appa.] I am.","Sorry, but you're not gonna become Fire Lord today. I am.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13271,13271,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,[Laughs.] You're hilarious.,You're hilarious.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13272,13272,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Katara,[Jumps off of Appa to stand beside Zuko.] And you're going down.,And you're going down.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13273,13273,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"The Fire Sage is just about to crown Azula the new Fire Lord, regardless of what Katara and Zuko have just said, until Azula signals with her hand for him to stop.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13274,13274,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Wait. You want to be Fire Lord? Fine. Let's settle this. Just you and me, brother. The showdown that was always meant to be. Agni Kai!","Wait. You want to be Fire Lord? Fine. Let's settle this. Just you and me, brother. The showdown that was always meant to be. Agni Kai!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13275,13275,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,[Seriously.] You're on.,You're on.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13276,13276,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Katara turns to face Zuko, very surprised. The scene cuts to Azula's lips as they form into a sly smile, before cutting back to Katara and Zuko.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13277,13277,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Katara,"What are you doing? She's playing you. She knows she can't take us both, so she's trying to separate us.","What are you doing? She's playing you. She knows she can't take us both, so she's trying to separate us.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13278,13278,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,I know. But I can take her this time.,I know. But I can take her this time.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13279,13279,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Katara,But even you admitted to your uncle that you would need help facing Azula.,But even you admitted to your uncle that you would need help facing Azula.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13280,13280,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,"There's something off about her; I can't explain it but she's slipping. And this way, no one else has to get hurt.","There's something off about her; I can't explain it but she's slipping. And this way, no one else has to get hurt.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13281,13281,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Katara nods as the scene fades to a shot of the courtyard from the side. The camera goes from showing Zuko kneeling on one end, to Azula kneeling on the other end of the courtyard. Cut to a shot of Zuko standing up and turning around; cut to Azula doing the same. Cut to a shot of Azula taking off her Fire Lord garments.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13282,13282,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"[Slightly sarcastic.] I'm sorry it has to end this way, brother.","I'm sorry it has to end this way, brother.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13283,13283,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,[Getting in his stance.] No you're not.,No you're not.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13284,13284,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Azula smiles and assumes an awkward fighting stance. She spins and sends a sudden blast of blue fire toward Zuko. Zuko brings his hands up and jumps forward, bringing his arms down in front of him. He bends a flame in each hand and they emerge. He sends the fire toward Azula. The scene cuts to the side of the fight to show a wall of fire, blue colliding with red, take form. As the wall begins to die, Azula leaps up on a jet of fire and kicks her legs forward, sending a wave of fire from her feet during each of her three spinning kicks. +Cut to an overhead shot of the stone pillars. Aang lands on top of one, but suddenly leaps away to be blocking and pushed by a blast of fire emerging from Ozai. The Fire Lord attacks again, sending a wave of fire from a downward kick. Aang jumps to another rock to avoid the attack, and picks up a small part of the rock and sends it toward Ozai with a kick. Ozai dodges the attack by sending a blast of fire out of his foot. Aang leaps to the top of another rock to avoid the attack before leaping to land near a waterfall. Ozai follows him there, sending yet another fire blast toward Aang. Aang uses waterbending to send some of the waterfall toward the flames, extinguishing them and causing Ozai to jump back. He flies back toward Aang, using fire rockets from his feet. He shoots a large burst of fire at Aang, but Aang jumps to the top of the waterfall to avoid the attack. Ozai rockets up after him, and flips forward, shooting fire from both feet. Aang jumps to the other side of the slope to escape the hot flames. +Ozai flies over to him, using his fire jets shooting from his feet, but Aang lands on a boulder, lifting it into the air. He jumps away, only to stop Ozai for a second, distracted by the boulder. He continues to chase Aang, shooting at him with his fiery fist. Aang spins around, creating a tornado shield that blocks him from the flames. He lands on the side of a rock pillar, and quickly scoots to the other side, only to see Ozai shooting another stream of fire at him. Aang leaps to another pillar before airbending himself back to the first pillar. He kicks the top of the pillar off, sending it toward Ozai. To Aang's surprise, Ozai is right behind him, and he sends a ball of fire toward Aang. +Aang raises his hand to block himself from the surprise attack as he is pushed and hits the side of a rock, falling to the ground in pain. Ozai flies toward him again, and lands on the same ledge as Aang. Seeing that Ozai is there, Aang picks himself up, and suddenly earthbends to create rock armor around his body. Ozai shoots fists of fire at Aang, pushing him around the edge of the ledge. He swings his arm at Aang, sending a wave of fire toward him, but he jumps away leaving the rock armor behind. +Aang suddenly performs a flip backward to shoot a gust of wind at Ozai from the air. Ozai jumps aside to avoid Aang's blast, and begins to shoot lightning. Aang is grasping on to the side of a rock, seemingly terrified. Just when the lightning is about to strike him, he quickly swings his arm around to create another tornado shield. He jumps up, and flies to the top of a rock where Ozai attempts to shoot a lightning bolt at him, but misses. After the failed attempt, he continues shooting blasts at Aang, to which he lifts the top of a rock and dodges in order to evade. He suddenly rolls forward, just as Ozai sends another blast of lightning toward him. +Aang begins to redirect the lightning, pointing it toward the terrified Ozai. Aang hesitates to strike him, and so he sends the bolt into the orange sky instead. He falls to the ground, exhausted from straining to hold the energy from the lightning. Ozai smiles, sensing he has the upper-hand, and performs a spin-kick of fire toward Aang, who raises the ground to protect himself from the fire blast. He is thrown off the rock from the impact and is falling toward the water below him. The camera zooms in on his eye as he opens it and realizes he is falling. +He tilts himself up, frantically waving his arms and trying to airbend to break his fall. Seeing that does not work due to the speed he is falling, as he nears the water, he creates a funnel shape from it to land softly and gets washed up onto shore. He quickly stands up to see Ozai rocketing toward him. Cut to a shot of Ozai.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13285,13285,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"The scene cuts back to Zuko and Azula. Cut to an overhead shot of the plaza, orange and blue flames blasting toward each other. One building is shown to be on fire, and as a bright blue flame shoots past the camera, another one burns in the flames. Cut to a shot of Zuko as he punches a powerful blast of fire toward his sister. His stream of orange blends with a blast of blue fire. Cut to a shot of the side of Zuko, he continues shooting fire while being pushed back by the blue flames colliding with his. The camera zooms in on Zuko's foot as he continues to be pushed back. He turns his foot around in order to steady himself. Cut to a frontal shot of Zuko, a powerful fire blast streaming from his fist. +Suddenly, Zuko and Azula stop their attacks. The scared and confused Azula turns to find that Zuko's strong attack has caused the plaza behind her to be smothered in flames. She leaps forward with a blast of fire that she swings at Zuko. Just as he is about to be hit, Zuko thrusts his palms outward to create a wall of fire that slices the blue flame. The scene cuts to an overhead shot of the flames as they slowly die down. Cut to a shot of Azula who is crouching on the ground. A profile shot of her shows that she is heavily panting, and she grits her teeth and narrows her eyes in determination. +A determined look flushes over Azula. The scene quickly cuts to a shot of Zuko's left fist. He opens it, and with the other fist punches two large fireballs toward Azula, and the fire emerges to create one massive blast. Cut to a shot of Azula's fear-filled eyes, reflecting with orange from the oncoming attack. The camera zooms out as Azula dodges using a jet of blue fire. She flies forward into the air, using jets of fire from her feet and hands. Cut to a side-shot of her as she thrusts her fists forward creating two blue fire blasts. +Zuko is shown crouching with his arms outward, blue and orange flames swirling around him. Azula is flying toward him as she swerves to the right to dodge Zuko's last blast. The scene cuts to an overhead shot of Azula as she shoots fire at Zuko and circles him, a trail of blue fire coming from her feet. Zuko quickly defends himself by creating a shield of fire for protection. He tries to attack Azula, who is still circling him, but she is too fast. The scene cuts to a close shot of Zuko. He stops firing at Azula, crouches, and begins spinning and kicking immense and powerful flames from his feet. Azula is flying forward; when she sees the attack, she tries to stop, but it is too late. Azula falls and rolls forward onto the ground. In pain, she picks herself up. A close-up of her shows that she is hunched over, her hair is undone and she is extremely angry.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13286,13286,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,[Angrily and somewhat mockingly.] No lightning today? What's the matter? [Quickly assuming his lightning redirection stance.] Afraid I'll redirect it?,No lightning today? What's the matter? Afraid I'll redirect it?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13287,13287,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Azula,"Oh, I'll show you lightning!","Oh, I'll show you lightning!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13288,13288,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"At that moment, Azula waves and moves her fingertips in order to generate lightning, but her stance is irregular and off. The scene cuts to a frontal shot of Zuko; inhaling and exhaling deeply. He assumes his stance and prepares to redirect whatever lightning may come his way. As he is doing so, the camera pans left to show Katara standing by as backup. Suddenly, light begins flickering as Azula begins charging her lightning. She finishes charging, and a close-up of her eyes shows she is not glancing toward Zuko, but to the left of him. The scene cuts to Zuko with Katara to his left and zooms in on Katara. Cut back to Azula, still in her stance and ready to strike; lightning at her fingertips. She smiles and extends her arm to shoot the blast directly at Katara. +The scene becomes some-what slow motion as lightning is emerging from Azula. Cut to a shot of Zuko's shocked face as he turns to the left. Zuko runs, trying to get in between Katara and the lightning. The scene zooms in on Katara's dumbfounded face and cuts to a close-up on her eyes, reflecting the impending lightning. Suddenly, Zuko jumps up, in between Katara and the lightning.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13289,13289,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Zuko,[In slow motion as he comes in front of Katara.] No!,No!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13290,13290,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Zuko extends his finger out in order to redirect it, but fails in doing so, therefore absorbing it. Light flashes, and the camera cuts to a shot from behind Katara, showing Zuko in mid-air, before cutting to Katara's shocked, horrified face. The slow motion ends, and Zuko hits the ground, the lightning leaving his body through his other arm. Cut to a shot above the capital, the redirected lightning blasting into the air. Cut back to Zuko, lying on the ground, twitching from the electricity seeping through his body. He rolls onto his back, groaning and holding his wounded chest. Cut to a scared Katara as she runs in Zuko's direction.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13291,13291,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Katara,[Yelling.] Zuko!,Zuko!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13292,13292,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"Zuko is shown, lying on the ground in pain. His shirt around his chest is burnt away, revealing a large scar. Katara is running toward him, but is stopped in her tracks by a blast of lightning in between her and Zuko. The scene cuts to a crazed Azula, hunched over and swaying from side to side. She suddenly starts laughing maniacally and runs forward into the camera just as the scene cuts to Ozai rocketing forward. +The shot cuts to the side of Ozai as he flies over the water below. The terrified Aang begins to swing his arms using waterbending to launch. He reaches the shore, stumbling forward, with Ozai not too far behind. Ozai reaches him, and Aang earthbends a circle of rocks around himself for protection. Ozai is right over him, laughing. The scene cuts to Aang trapped inside his sphere, bracing himself with his arms.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13293,13293,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Ozai,"You're weak, just like the rest of your people! They did not deserve to exist in this world ... in my world! Prepare to join them. Prepare to die!","You're weak, just like the rest of your people! They did not deserve to exist in this world ... in my world! Prepare to join them. Prepare to die!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13294,13294,Fire,3,"Sozin's Comet, Part 3: Into the Inferno",20,Scene Description,"The camera tilts up to show Ozai thrusting both fists into Aang's rock shield, releasing a powerful fire blast while doing so. Cut to Aang still trapped inside the rock, still shielding himself with his eyes closed as pebbles fall around him and orange light can be seen seeping in through the cracks between the rocks. Cut back to Ozai as he throws another fire blast against Aang's shield. Ozai jumps back, lands, and rises back up to the camera's level as the scene zooms in on him. It quickly zooms out as he sends two powerful fire blasts at the camera. Fade to credits.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13295,13295,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"The episode opens with a reddish sky due to Sozin's Comet as the camera pans to the left. The scene cuts to Ozai throwing a left-curved fire blast, followed with a right-curved blast. He fires a straight blast. Cuts to inside Aang's earth sphere shield as he endures the blasts.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13296,13296,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,"[Yelling out to Aang tauntingly while using a flamethrower blast with his hair swaying in the wind.] Come on out, Avatar! You can't hide in there forever!","Come on out, Avatar! You can't hide in there forever!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13297,13297,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,The scene changes to the airship fleet. Sokka and Toph are running on top of one of three airships.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13298,13298,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"Toph, metalbend the rudder so it's jammed in a turning position. The ship will spiral and slam into the others.","Toph, metalbend the rudder so it's jammed in a turning position. The ship will spiral and slam into the others.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13299,13299,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,"Got it! [She moves Sokka out of the way, spits into her hands, and rubs them together. Toph grips and metalbends the rudder while grunting in effort, and the Imperial Firebenders inside the ship crash into the wall, and due to the action, the ship crashes into the others.]",Got it!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13300,13300,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,Have I ever mentioned how sweet it is that you invented metalbending?,Have I ever mentioned how sweet it is that you invented metalbending?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13301,13301,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,[Pleased.] You could stand to mention it more.,You could stand to mention it more.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13302,13302,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"A firebender comes out of the ship and fires at Sokka and Toph. Dragging Toph along, Sokka jumps off the ship, planting his sword in the side of vessel the stop their descent. He manages to slow them down, though they still fall off and roughly land on a platform below; Sokka breaks his leg in the process, and his sword embeds itself in the metal just in front of him. Toph, however, falls off the platform, though Sokka manages to grab hold of her hand at the last moment.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13303,13303,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,[In pain.] My leg! Hang on Toph!,My leg! Hang on Toph!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13304,13304,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,"Aye, aye, Captain.","Aye, aye, Captain.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13305,13305,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Two firebenders emerge on the platforms beside them, posing a threat from two sides. As one of the soldiers is about to firebend at them, Sokka throws his boomerang at him, knocking him out. He kicks his sword in to his hand and throws it at the remaining soldier's platform; it cuts right through the metal and plummets to the forest below.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13306,13306,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"[Sadly.] Bye, space sword.","Bye, space sword.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13307,13307,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"More Imperial Firebenders come outside, ready to finish the pair.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13308,13308,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"I don't think boomerang's coming back, Toph. It looks like this is the end. [Toph starts crying and the firebenders run away. The airship gets struck by a different one and Sokka lets Toph fall onto it before jumping down himself, hurting his leg again in the process. He falls over in pain.]","I don't think boomerang's coming back, Toph. It looks like this is the end.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13309,13309,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,How did that happen? Did boomerang come back?,How did that happen? Did boomerang come back?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13310,13310,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"[Looking up.] No, Suki did. [They see Suki riding on the last functioning airship with a triumphant smile.]","No, Suki did.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13311,13311,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"The scene changes to Aang and Ozai's battle. Ozai is still throwing fire blasts at Aang. He blasts Aang a few more times and rises up to fly toward the shell to shoot an enormous, continuous blast of fire at Aang. Ozai steps back to charge another intense attack causing Aang's rock shield to be crushed and Aang protects himself with an airbending shield but is pushed back by the force of the attack, crashing into a rock pillar. The scar on his back is hit with a point of the rock, causing him to flashback to when he was shot by lightning. Cut to him during the Avatar State as Roku explains how the ability works. Cut to Kyoshi as the camera pans across revealing more Avatars, all with their eyes lit up. Cut briefly to Roku, before cutting back to the Avatar line. Cut again briefly to Aang entering the Avatar State in the catacombs, and back to the Avatar line. Cut briefly to Aang opening his eyes in the Avatar State and to the large Avatar State version of himself he saw while meditating. Cut back to Ozai approaching Aang who is covered by a pile of rubble.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13312,13312,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,"Come on out, little boy. You're about to be ...","Come on out, little boy. You're about to be ...","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13313,13313,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Aang jumps out, now in the Avatar State, and grabs Ozai by his goatee. Ozai tries to firebend at the Avatar, but Aang merely knocks his hand away. He creates a blast of air sending Ozai flying backward. Cut briefly to an over the shoulder of Aang view of Ozai being forced away, crashing into a pillar of rock. He falls down to the ground and as the dust clears he looks up at Aang in the sky with a sphere of air around him. Aang proceeds to roar and creates fire out of his mouth, fists and feet. Aang creates a massive gust of air causing Ozai to cover himself as he groans in struggle. Pillars of earth disintegrate and move toward Aang as other pieces of rock rise up from the ground to surround Aang. Water also rises toward Aang as he creates a ring of fire around himself. The earth begins to create a ring inside the air sphere as the water continues to rise up and form another ring inside the earth sphere. Cut to Ozai who watches, covering his head with his arms. Cut back to Aang as the camera zooms out to show him surrounded by a ring of water, a ring of earth, a sphere of air and a ring of fire. +The scene changes to the liberation of Ba Sing Se as Bumi rises out of the ground with earthbending. He turns around as Fire Nation tanks appear and fire on him, but he blocks it with earthbending. He lowers the barrier smiling. He shoots rocks at the holes where they shoot fire. He subsequently uses earthbending to shoot them into the air and they land piled on top of one another while the soldiers come out the tank groaning in pain. Cut to Iroh as he burns the Fire Nation flag on Ba Sing Se Royal Palace to reveal the Earth Kingdom insignia. +The scene changes to Aang and Ozai. Aang charges at Ozai, ramming him, and blows him off his Elemental Sphere. Ozai flies away from Aang. Aang uses earthbending to shoot machine gun-like earth bullets at him. Aang chases a fleeing Ozai. +The scene changes to the Comet-Enhanced Agni Kai. A few small flames can be seen, and in the middle of them is a badly injured Zuko. He tries to get up, but he is too hurt from the lighting strike and he falls down. Katara rushes to try and help him, but Azula launches a fire blast in front of her before she can reach him. She laughs manically and shoots lightning which Katara dodges. Zuko attempts to get back up, but is too weak and can do nothing but watch as Azula shoots another lightning bolt at Katara, which she dodges. Katara turns to watch as Azula lands on a roof nearby. She begins charging another lightning attack.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13314,13314,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Azula,"I'd really rather our family physician look after Little Zuzu if you don't mind. [Azula shoots lightning and fire at her from the roof of a building. Katara manages to dodge them all and hides behind a column nearby. To Zuko in a taunting manner.] Zuzu, you don't look so good!","I'd really rather our family physician look after Little Zuzu if you don't mind. Zuzu, you don't look so good!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13315,13315,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"She shoots at Katara again. Katara manages to dodge her and moves behind another column. She spots water nearby and bends it onto the roof, but Azula has moved. Azula comes from behind her on fire jets and Katara is forced to flee. She uses the nearby water channel to make ice to slide on as Azula chases after her and fires another blast of fire which vaporizes it completely. Azula unleashes a large burst of fire, but Katara manages to get away. Katara gets off her ice path, but trips on a grate and sees some water below. She looks up and grabs some chains hanging from the wall. Cut to a wide-view of the area as Azula approaches the grates.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13316,13316,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Azula,"There you are, filthy peasant!","There you are, filthy peasant!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13317,13317,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"After a brief stare down, Katara uses multiple water whips to force Azula onto the grate. Azula is about to shoot lightning at her when Katara freezes them both with the water under the grate. Katara melts the water around her and chains Azula's hands together tied to the grate. Katara bends the water back into the grate. After catching her breath, she tightens the chains to make sure Azula cannot get free and rushes to heal Zuko. Cut to Katara as she rolls Zuko on to his back and begins healing him. Zuko opens his eyes, feeling the pain lessen, and smiles weakly at Katara, who smiles back as a she sheds a tear.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13318,13318,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,"Thank you, Katara.","Thank you, Katara.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13319,13319,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Katara,I think I'm the one who should be thanking you.,I think I'm the one who should be thanking you.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13320,13320,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"She helps him up. Azula pants in anger, screams in madness, and breathes fire, writhing in an attempt to break free. Finally she stops and begins to cry uncontrollably. Katara and Zuko watch in horror and pity. +The scene changes to Avatar Aang and Phoenix King Ozai. Aang still chases Ozai and uses earthbending to move two pillars in front of Ozai, who recoils and flies away. Aang sends a wave of water at Ozai, causing him to crash to the ground. As Ozai recovers and looks up, Aang bursts through the pillar he landed near. Ozai retreats backward and shoots a stream of fire at Aang. In slow motion, Aang drops to the ground narrowly missing Ozai who propels himself away with fire from his feet. Aang rises and begins following the fleeing Ozai again. Ozai lands on a pillar and launches a wide fire blast at Aang, who uses earthbending to move two large pillars to protect himself. Aang breaks and lets the pillars fall as Ozai flies away again. Aang unleashes multiple blasts of fire toward Ozai, who manages to dodge them. Ozai lands on the side of a pillar and launchers three similar fire blasts at an approaching Aang, who uses air and water to disperse them. Aang fires a strong blast of air at Ozai, disintegrating the pillar he stood on but he manages to get away. Aang continues to chase him as Ozai looks back, realizing Aang is catching up. Aang moves his arm in a circular motion causing water to wrap itself around Ozai's leg and up to his outstretched arm, whipping him around, before slamming him on top of a pillar. Aang flies forward and earthbends Ozai's hands and feet to the ground, trapping him. Helpless, Ozai watches fearfully as Aang hovers over him, his voice echoing with the fury of his predecessors.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13321,13321,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Aang,"Fire Lord Ozai, you and your forefathers have devastated the balance of this world, and now you shall pay the ultimate price! [Aang, under control of his past lives, combines all four elements together for his final attack. At the last second, however, he manages to regain control; he comes out of the Avatar State, lets his attack die out, and floats to the ground, freeing Ozai in the process.] No, I'm not gonna end it like this.","Fire Lord Ozai, you and your forefathers have devastated the balance of this world, and now you shall pay the ultimate price! No, I'm not gonna end it like this.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13322,13322,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,"Even with all the power in the world, you are still weak!","Even with all the power in the world, you are still weak!","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13323,13323,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Ozai moves to attack Aang who senses it with the seismic sense he learned from Toph. He stamps down and lifts a foot up, dragging a pillar of earth along with him, deflecting Ozai's attack and binding him inside the rock. He circles Ozai and proceeds to bind his other hand as Ozai attempts to attack again. He pulls the rocks down into the earth slightly, causing Ozai to kneel. Ozai attempts one final fire breath attack, but Aang uses airbending to stop and approach him and puts one hand on Ozai's forehead, and one on his chest, while he watches in horror. +Aang closes his eyes and it flashes back to Aang's meeting with the lion turtle.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13324,13324,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Lion turtle,"In the era before the Avatar, we bent not the elements but the energy within ourselves.","In the era before the Avatar, we bent not the elements but the energy within ourselves.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13325,13325,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"The lion turtle places his paw in a similar position to Aang's hands on Ozai using its claws. The claws begin to glow green light as the camera cuts to a close-up of the lion turtle's eye before fading to Aang. Aang's head arches back and blue energy shines out of his eyes and mouth into the sky. Cut to a side-view of the event before cutting to a close-up of Ozai's terrified face as his eyes and mouth begin to shine out red energy. Aang's, followed by Ozai's, bodies become consumed by the blue and red energies. Cut to a wide-view of the area showing half blue and half red energy in the sky.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13326,13326,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Lion turtle,"[Aang remembering.] To bend another's energy, your own spirit must be unbendable or you will be corrupted and destroyed.","To bend another's energy, your own spirit must be unbendable or you will be corrupted and destroyed.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13327,13327,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"As he speaks, Ozai's energy begins to make its way to Aang's body, consuming the blue and replacing it with red energy. Cut to a view above Aang looking down at his face as the energy reaches his face and continues to cover the beams shining out his mouth and eyes. Cut to a side-view as the red light begins to take control and the blue light diminishes. Cut to close-up of Aang as the red energy has taken over almost completely with just one eye left. The blue energy begins to disappear, but at the last second it blasts out of Aang's eyes, overwhelming the red energy in the process and proceeding to take over Ozai's own body. Cut to a wide shot of the area as Aang completely takes over Ozai's energy and an intense beam of blue energy erupts into the sky. The beam disappears and Ozai falls to the ground as Aang releases him. Ozai attempts to rise and attack, but falls back exhausted and unable to bend.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13328,13328,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,[Out of breath.] What? What did you do to me?,What? What did you do to me?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13329,13329,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Aang,I took away your firebending. You can't use it to hurt or threaten anyone else ever again.,I took away your firebending. You can't use it to hurt or threaten anyone else ever again.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13330,13330,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Aang steps forward and looks toward the sea as fire spreads on the land below. Aang breathes deeply and enters the Avatar State briefly, showing his control of the ability. Aang begins to bend the water from the ocean below to extinguish the fires. Cut to many shots of the water rising to extinguish the fires. Cut back to Aang as he lowers the water back to its normal level. Cut to a side-view of Aang as the camera zooms out as Momo returns to Aang's shoulder. Cut to the comet flying away as Sokka, Toph, and Suki are seen leaving the airship they were on. Sokka is being carried by the other two due to his broken leg.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13331,13331,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"You did it! You should've seen yourself, it was amazing! You were all like [Pretends to be Aang fighting Ozai while adding sound effects.] and the Fire Lord was all like [Pretends to be Ozai struggling and groaning.]","You did it! You should've seen yourself, it was amazing! You were all like and the Fire Lord was all like","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13332,13332,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Suki,"[Pointing to the exhausted Ozai while approaching him.] So did you, you know ... finish the job?","So did you, you know ... finish the job?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13333,13333,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,[Defiantly and slowly.] I'm still alive. [Suki backs away from him.],I'm still alive.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13334,13334,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Aang,I learned there was another way to defeat him and restore balance. I took his bending away.,I learned there was another way to defeat him and restore balance. I took his bending away.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13335,13335,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,[Surprised.] Wow! Who taught you that?,Wow! Who taught you that?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13336,13336,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Aang,A giant lion turtle.,A giant lion turtle.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13337,13337,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,[Smiling.] You have the craziest adventures when you disappear.,You have the craziest adventures when you disappear.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13338,13338,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"Well, look at you, buster. Now that your firebending's gone I guess we should call you the Loser Lord.","Well, look at you, buster. Now that your firebending's gone I guess we should call you the Loser Lord.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13339,13339,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,[Weakly.] I am the Phoenix King! [Flops on the ground while semi-conscious and drooling.],I am the Phoenix King!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13340,13340,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,"[Mockingly.] Oh, sorry. Didn't mean to offend you, Phoenix King of Getting His Butt Whooped.","Oh, sorry. Didn't mean to offend you, Phoenix King of Getting His Butt Whooped.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13341,13341,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Suki,[Patheically.] Yeah! Or how about King of the ... Guys Who ... Don't Win?,Yeah! Or how about King of the ... Guys Who ... Don't Win?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13342,13342,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,"[Pointing at Suki before pointing to herself; gently.] Leave the nicknames to us, honey.","Leave the nicknames to us, honey.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13343,13343,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Cut to a shot of the comet leaving, returning the sky to the darkness of night time. Cuts to inside the Fire Nation Royal Palace. Zuko is having trouble putting on his Fire Lord robes due to his injury.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13344,13344,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Mai,You need some help with that?,You need some help with that?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13345,13345,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,Mai! You're okay! They let you out of prison?,Mai! You're okay! They let you out of prison?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13346,13346,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Mai,My uncle pulled some strings. And it doesn't hurt when the new Fire Lord is your boyfriend.,My uncle pulled some strings. And it doesn't hurt when the new Fire Lord is your boyfriend.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13347,13347,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,So does this mean you don't hate me anymore?,So does this mean you don't hate me anymore?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13348,13348,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Mai,"[Blushes.] I think it means I actually kind of like you. [They kiss. When they break apart, Mai's tone and expression changes to a serious and stern one.] But don't ever break up with me again! [Zuko grins nervously, before they hug again.]",I think it means I actually kind of like you. But don't ever break up with me again!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13349,13349,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"In the Fire Nation Coronation Plaza, people from all over the world have congregated for the coronation of the new Fire Lord, among which several familiar faces: The Duke hugs Toph, and she reciprocates as Pipsqueak and members of the Foggy Swamp Tribe watch. Sokka and Katara look for and find Chief Hakoda.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13350,13350,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Katara and Sokka,Dad! [They run to Hakoda and embrace him.],Dad!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13351,13351,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Hakoda,"I heard what you two did. I am the proudest father in the world. [Turns to Katara.] And your mother would be proud, too. [Katara sheds a few tears of joy while touching her necklace.]","I heard what you two did. I am the proudest father in the world. And your mother would be proud, too.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13352,13352,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,The Kyoshi Warriors approach.,NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13353,13353,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"There's my favorite warriors! I have to admit, I kind of missed the face paint. So how does it feel to be in uniform again?","There's my favorite warriors! I have to admit, I kind of missed the face paint. So how does it feel to be in uniform again?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13354,13354,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ty Lee,[Appearing from behind.] It feels great!,It feels great!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13355,13355,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"[Protects Suki and points his crutch at Ty Lee.] Careful, Suki! Ty Lee is pretending to be a Kyoshi Warrior again.","Careful, Suki! Ty Lee is pretending to be a Kyoshi Warrior again.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13356,13356,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Suki,"It's okay. She's one of us now. [Sokka turns to Ty Lee before turning back to Suki, with a stunned look for both.]",It's okay. She's one of us now.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13357,13357,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ty Lee,"Yeah, the girls and I really bonded in prison. And after a few chi blocking lessons, they said I could join their group. We're going to be best friends forever. [She hugs two other warriors and they all smile.]","Yeah, the girls and I really bonded in prison. And after a few chi blocking lessons, they said I could join their group. We're going to be best friends forever.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13358,13358,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Cut to inside the Royal Palace, where Aang, now wearing the robes and necklace of an airbending master, opens his eyes from his meditation as Zuko approaches, still wearing the Fire Lord attire.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13359,13359,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,I can't believe a year ago my purpose in life was hunting you down. And now ...,I can't believe a year ago my purpose in life was hunting you down. And now ...,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13360,13360,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Aang,And now we're friends.,And now we're friends.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13361,13361,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,"Yeah, we are friends.","Yeah, we are friends.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13362,13362,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Aang,I can't believe a year ago I was still frozen in a block of ice. The world's so different now.,I can't believe a year ago I was still frozen in a block of ice. The world's so different now.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13363,13363,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,[Puts a hand on Aang's shoulder.] And it's gonna be even more different... when we build it together. [They hug warmly and go outside.],And it's gonna be even more different... when we build it together.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13364,13364,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Cut to outside the palace with people from the Fire Nation, the Water Tribe, the Earth Kingdom and the Foggy Swamp Tribe all outside. Cut to a side-view as Zuko walks past while a gong is struck. Cut to a overhead view of the crowd with Zuko approaching. The crowd cheers. Front view of Zuko as he raises his hand.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13365,13365,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,"Please. The real hero is the Avatar. [Aang walks next to Zuko. Crowd cheers again. Aang turns his head slightly. Cut to side-view of Katara. The camera rotates as she smiles up at Aang proudly. Cut to overhead view of Aang and Zuko, their backs to the camera, looking out at the crowd.] Today this war is finally over! [Cut briefly to Haru, Tyro, Mechanist and Teo as the crowd cheers. Cut to front view of Zuko.] I promised my uncle that I would restore the honor of the Fire Nation. And I will. [Panning front view of Zuko and Aang, as seen from the crowd's perspective.] The road ahead of us is challenging. A hundred years of fighting has left the world scarred and divided. [Cut to side shot of Aang, rotating around, as he turns to see Zuko smile at him, before turning back to the crowd.] But with the Avatar's help, we can get it back on the right path and begin a new era of love and peace.","Please. The real hero is the Avatar. Today this war is finally over! I promised my uncle that I would restore the honor of the Fire Nation. And I will. The road ahead of us is challenging. A hundred years of fighting has left the world scarred and divided. But with the Avatar's help, we can get it back on the right path and begin a new era of love and peace.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13366,13366,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Zuko kneels down, preparing to be crowned Fire Lord. Cut to a Fire Sage approaching with the headpiece.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13367,13367,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Fire Sage,[Puts the Fire Lord headpiece into Zuko's top knot.] All hail Fire Lord Zuko! [Everyone cheers again. Zuko rises.],All hail Fire Lord Zuko!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13368,13368,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Cut to Zuko walking toward the cheering crowd, gesturing Aang to follow him. Aang approaches and they look briefly at each other before looking out at the crowd. Cut to Zuko walking to the Fire Nation Prison Tower. Cuts to inside as he enters Ozai's cell.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13369,13369,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,[Sarcastically.] I should count myself lucky. The new Fire Lord has graced me with his presence in my lowly prison cell.,I should count myself lucky. The new Fire Lord has graced me with his presence in my lowly prison cell.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13370,13370,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,You should count yourself lucky that the Avatar spared your life.,You should count yourself lucky that the Avatar spared your life.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13371,13371,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,Hmph.,Hmph.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13372,13372,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,Banishing me was the best thing you could have done for my life. It put me on the right path. Perhaps your time in here could do the same for you.,Banishing me was the best thing you could have done for my life. It put me on the right path. Perhaps your time in here could do the same for you.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13373,13373,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Ozai,Why are you really here?,Why are you really here?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13374,13374,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,Because you're going to tell me something. [Bends closer to Ozai; gravely.] Where is my mother?,Because you're going to tell me something. Where is my mother?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13375,13375,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"In Ba Sing Se, kids are now using the stacked Fire Nation tanks as a game. Cut to the Jasmine Dragon, Appa looking in from the outside. Cut inside as Zuko is serving Team Avatar tea and Iroh is playing the tsungi horn. Aang is playing with Momo. Sokka is painting a picture.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13376,13376,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"Zuko, stop moving! I'm trying to capture the moment. I wanted to do a painting, so we always remember the good times together.","Zuko, stop moving! I'm trying to capture the moment. I wanted to do a painting, so we always remember the good times together.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13377,13377,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Katara,"That's very thoughtful of you, Sokka. [Suddenly looks annoyed. Cuts to Sokka's painting, which is very unlike the group.] Wait, why did you give me Momo's ears?","That's very thoughtful of you, Sokka. Wait, why did you give me Momo's ears?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13378,13378,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,Those are your hair loopies!,Those are your hair loopies!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13379,13379,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Zuko,At least you don't look like a boar-q-pine! My hair is not that spiky!,At least you don't look like a boar-q-pine! My hair is not that spiky!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13380,13380,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Mai,I look like a man.,I look like a man.,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13381,13381,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Suki,And why did you paint me firebending?,And why did you paint me firebending?,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13382,13382,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Sokka,"I thought it looked more exciting that way. [Momo jumps on to the table and chitters.] Oh, you think you can do a better job, Momo? [Momo chitters again as Aang goes outside.]","I thought it looked more exciting that way. Oh, you think you can do a better job, Momo?","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13383,13383,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Iroh,"[Points at painting.] Hey, my belly's not that big anymore. I've really trimmed down.","Hey, my belly's not that big anymore. I've really trimmed down.","Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13384,13384,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Toph,Well I think you all look perfect! [They laugh.],Well I think you all look perfect!,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 +13385,13385,Fire,3,"Sozin's Comet, Part 4: Avatar Aang",21,Scene Description,"Aang walks past Appa, petting him briefly, before he moves to watch the sun set. Katara approaches from behind with a smile on her face and turns to Aang. Aang turns to look at her and he smiles back. Cut to close-up of Katara smiling and blushing. She places a hand on his shoulder and they hug. Cut to close-up view of Aang before cutting to Katara as they smile and open their eyes. They step out of the embrace and look out at the sun set as the camera pans back, but cuts back to Katara turning to face Aang. Aang turns to face her and Katara passionately kisses Aang, who returns it and they embrace each other as they kiss. Cut to a shot of them still kissing with the sun on the horizon and Ba Sing Se in the background as the camera pans up to the sky. The words ""The End"" fade in. Fade to credits.",NA,"Aaron Ehasz, Michael Dante DiMartino, Bryan Konietzko",Joaquim Dos Santos,9.8 diff --git a/experiments/VADER/vader.py b/experiments/VADER/vader.py new file mode 100644 index 0000000..db6b959 --- /dev/null +++ b/experiments/VADER/vader.py @@ -0,0 +1,21 @@ +#can determine whether the sentence is positive or negative +import pandas as pd +import nltk +from nltk.sentiment.vader import SentimentIntensityAnalyzer + +# reading and wragling data +df_avatar = pd.read_csv('experiments/VADER/avatar.csv', engine='python') #experiments/VADER/ only applies when run withini directory (runs on vs code) +df_avatar_lines = df_avatar.groupby('character').count() +df_avatar_lines = df_avatar_lines.sort_values(by=['character_words'], ascending=False)[:10] +top_character_names = df_avatar_lines.index.values + +# filtering out non-top characters +df_character_sentiment = df_avatar[df_avatar['character'].isin(top_character_names)] +df_character_sentiment = df_character_sentiment[['character', 'character_words']] + +# calculating sentiment score +sid = SentimentIntensityAnalyzer() +df_character_sentiment.reset_index(inplace=True, drop=True) +df_character_sentiment[['neg', 'neu', 'pos', 'compound']] = df_character_sentiment['character_words'].apply(sid.polarity_scores).apply(pd.Series) +print(df_character_sentiment) + diff --git a/experiments/implementation.ipynb b/experiments/implementation.ipynb new file mode 100644 index 0000000..32aa370 --- /dev/null +++ b/experiments/implementation.ipynb @@ -0,0 +1,182 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Implementation of NLP methods in Alpha" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This documentation's aim is to make a rundown on the 4 methods of Natural language processing (NLP) methods that could be useful for identifying Alpha's users requests. \n", + "\n", + "Tasks:\n", + "1. Identify the order of NLP methods (if we are using all of them)\n", + "2. Determine how to integrate into the alpha_main.py system\n", + "3. Produce relevant responses" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note:\n", + "- For easier communications, this part of the research, the query we input by default is:\n", + "`Alpha, what is the definition of photosynthesis`\n", + "- We will then further complicate the query at the later end of the project to make the query more accurate and complex " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Order of NLP methods:\n", + "We have determined, by complexity and the possible output of the resultant query, the order of NLP methods:\n", + "1. S&L\n", + "2. NER\n", + "3. tdidf\n", + "4. VADER (for emotions)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Part 1: stemming and lemmatization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Trial 1" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original\n", + ", what is the definition of photosynthesi\n", + "stemmed\n", + ", what is the definition of photosynthesis\n" + ] + } + ], + "source": [ + "#this is the first part of the NLP\n", + "from nltk.stem import PorterStemmer\n", + "from nltk.stem import LancasterStemmer\n", + "query=\"Alpha, what is the definition of photosynthesis\"\n", + "query=query.lower()\n", + "extrawords=[\n", + " \"alpha\",\n", + " \"hello\"\n", + "]\n", + "for x in extrawords:\n", + " if x in query:\n", + " query=query.replace(x,\"\")\n", + " else:\n", + " continue\n", + "# PorterStemmer\n", + "porter = PorterStemmer()\n", + "# LancasterStemmer\n", + "lancaster = LancasterStemmer()\n", + "print(\"Original\")\n", + "print(porter.stem(query))\n", + "print(\"stemmed\")\n", + "print(lancaster.stem(query))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Findings: it has appeared that the words were not stemmed at all.\n", + "Solution: we can try breaking the string, removing the punctuation, and recombining the string" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Trial 2:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#this is the first part of the NLP\n", + "from string import punctuation\n", + "from nltk.stem import PorterStemmer\n", + "from nltk.stem import LancasterStemmer\n", + "query=\"Alpha, what is the definition of photosynthesis\"\n", + "query=query.lower()\n", + "extrawords=[\n", + " \"alpha\",\n", + " \"hello\"\n", + "]\n", + "punctuation=[ #can be replaced with chatterbot corpus maybe?\n", + " \",\",\n", + " \".\",\n", + " \"?\",\n", + " \"!\"\n", + "]\n", + "for x in extrawords:\n", + " if x in query:\n", + " query=query.replace(x,\"\")\n", + " else:\n", + " continue\n", + "#break string\n", + "new=query.split(\" \")\n", + "print(new)\n", + "# PorterStemmer\n", + "porter = PorterStemmer()\n", + "# LancasterStemmer\n", + "lancaster = LancasterStemmer()\n", + "print(\"Original\")\n", + "print(porter.stem(query))\n", + "print(\"stemmed\")\n", + "print(lancaster.stem(query))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.7.8 64-bit", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "85cab9e096cbab1951b2d3a14822210bb6543dde301eda19da12202a5ce4203b" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/experiments/speechrecog.ipynb b/experiments/speechrecog.ipynb new file mode 100644 index 0000000..768bd3f --- /dev/null +++ b/experiments/speechrecog.ipynb @@ -0,0 +1,26 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Speech recognition system" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This notebook is designed to develop possibilities in improving speech recognition system by improving accuracy and understand. It will also explore other platforms that can be used for speech recognition." + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/experiments/tdidf/tdidf.py b/experiments/tdidf/tdidf.py new file mode 100644 index 0000000..a909788 --- /dev/null +++ b/experiments/tdidf/tdidf.py @@ -0,0 +1,11 @@ +import pandas as pd +from sklearn.feature_extraction.text import TfidfVectorizer +text = ["I love writing code in Python. I love Python code", + "I hate writing code in Java. I hate Java code"] +df = pd.DataFrame({'review': ['review1', 'review2'], 'text':text}) +tfidf = TfidfVectorizer(stop_words='english', norm=None) +tfidf_matrix = tfidf.fit_transform(df['text']) +df_dtm = pd.DataFrame(tfidf_matrix.toarray(), + index=df['review'].values, + columns=tfidf.get_feature_names()) +print(df_dtm) \ No newline at end of file diff --git a/frontend_command.py b/frontend_command.py deleted file mode 100644 index 4482d25..0000000 --- a/frontend_command.py +++ /dev/null @@ -1,18 +0,0 @@ -#this files process commands entered through the front end -from modules.sense import * -from modules.mainsystem import * -def Pcommand(command): - command=command.lower() - if command.startswith("speak"): #speak function to debug - command=command.replace("","speak") - speak(command) - elif command.startswith("shutdown"): - speak("shutdown initiated") - elif command.starswith("dns"): - command = command.replace("","dns") - if command.startswith("flush"): - flushdns() - else: - speak("No param specified") - elif command.startswith("kill"): - kill() \ No newline at end of file diff --git a/modules/__pycache__/bootloader.cpython-36.pyc b/modules/__pycache__/bootloader.cpython-36.pyc deleted file mode 100644 index 103c82f778b71ee41e87cb619b65922595893c89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2985 zcmai0&5zs06(3ThM1Ah3UB__(Zdx=|y4bV{S_DQC=fi27qF%eP3%kSu0;QQh*=r#BLGv&3XJ@%SYe{V*sT?9!gf%ALw=FM>Cef&6Yce|}${Numz zzdMZmhh6)*kUzjveuIWH?xZYpBF7=wP2H>()r?$Az08X|BYUYI`55=pde(>LX{Jsvr< z27YvCdOpTeDm0pD=hQiM&)I41+&OcW4tFNLdIRWAn0iBd9D0Z4uNjT6?gKrH+{cJ- zMgmB6l9o8|#8t=W2h`U-Z>}v`ByolVwGS0-=K=v?i|(gV^6;Tld6J*(U2KzX!{|Od z)uryQmDa+$hlCei=l6s+5~*}-stYpUoci4eHsr{BGRM#ax~3EuAxcvgX!?d z9P4Nm@S~xWI+ZcjIVk2;eU_Bthl1Q!?xJDNCjKoKPc3i*CxEQTkv|-DO7|a$`rTF3 z?_Ne-drM{_>2c3Q@@SO>Pk}zN;OS-T^N)X5?2JmOVP2ery7VstDHt;rZ=NV|^&+K#doIPXtJ08=mN$YDzz2>m9U571h>-uun zB(2L|UheWcbna*Duf*%Hc(MDO=eYI6Qq(JlizW&@ zJ~%C9{)dJC=<(xnZ}IxaajwHs$4ZB@M5E+2;=Z!l54D0)M9*{FZ5!@baaOu&WF}ZT7?O*xS_Ql$%COU() zSM9f833J5qOUz%BObs1+49Ofq(Ci$SCKRNVTu2V?5=1ucxqIen z5Ctfx1`7H;m>zV5Tg2{4OT_d??c1-5xfOV;TLIlpF6e&HubT~2brt7aW>td_{;(WN z-#5d8{hE!j3Gb%09UM>d5hY0ZeK!TBdZ)#2Kgax%5{!{|;2H8#$5FqAW_@NFUY~g% z9gP!X=fBd9#*K-)e|JuaR2}=hw0(1NqkE2bSOtTDNyP!(&5(^JLN9K{Q=Z5-%T&&& zIETphgRFSF?~^rgz+j;0rDiL*#}VBqj}%v5jH|c@mv;jytdcGu48iL;>Nk-3J5{Zm zmx_E^HMO}jf{g6)X31AD68WXbkvLR_s!t6qqxR5Lt}IQh+Hcz0=_WE}gXTRyyt8-h c_2qpEW=U*FPVQiL*B&?640eK_2SMQd4^02^)&Kwi diff --git a/modules/__pycache__/bootloader.cpython-37.pyc b/modules/__pycache__/bootloader.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ae237db7fc0f8f4c99a35df2cc986da603ba8c7 GIT binary patch literal 3081 zcmai0&5s*N6|Zi0+wJzpd?sW=wCZ7n7B69tmJgw5A#BL*veIS*Bq*U7$!fc5#vONe zwW`a^+VbQQu4r@SG;`#>Xa11Ba+(AG04IL0%JvKpz*g7q)z_<6zxV1@J?iyBhTm6z z{d)BGE@OYA%KGO*_&L7n4GPYf8(Y1UKJxO?y-;c`wr{QqWtQ+9D4tS!4PIFN=3VBw06FF0gn5}*52)FLc zDxrp_qToU)+U#GL+5-IJr{f35zeQhl{8=(msmP8W%keB1g+@!NC$rJ9+17C``79IF z@kmOY$pm^1%X!^AORLEfK^m)l6wKMiKcvqM9Quc@+Clrl3Sb6=y+Uwd| zGUG{)d&ZN;t0;H|^brNm*1j(unHEpI0=CfeY7+(5I&3uDL63=s8`?XY=;+$$P%W6b z=-!Nu#l5phqN79!^5q21N(u^yNXv*z70`tD&4gqfI`<=r{yB{p%R;BcOhji=O&?y} zrqO*fTCCzKTHJenV}XCu|8NzB>(PsyUn0KFl8TH`5l`k12fk`Ut)dL0I#iI4OjHcq zx^2RtNOEDDDHKdRsBK7fi@chP5AUK<-9usBYTaqwYh@}G`F%`-=ywYrt!WPRPjI$0 zyTCENq$BL&2)p(O>&6A#cxeviYv!;wP7&&+J;d{`b&ESV#_m@a=S&9|?IpXk>7exv zJ9n2Z4}c9|8|VQ;pbzW-o4_ux1?&L>U?129ZUIB!Hn0QS0d|4Az#ec9*az+dw}7{R z+rZnv9pE>ByTCiZz2`_Fzh=K-FW7Td{Lo`MoQ7{4b=P6%`wm;|>*jLb1gvY3#&h(& z+JC`*#|rlaTQ-*7(qA^0t!1!mFT-VL**yuL+SK&U(V~rmogBWbWbx_Z(Whx9q7zB( zT{T8&6%|sW5easaFqBZUBC3R*l@w?v>FG=*I+aCrMX7GF^94>Xg(}5>QC2%D?&nEb z3{6;&{yHF$0>nz=RL|p(+H4MqTO@NiicKg9%+BH-wHdKYswy@)2iL+l6_xE9Wk|4k zUJ6^SrfD&jnN+KpdQzljp)M&>B1=zUwq5p2q^A>Y<%yNe%2g?qwnj|kXf%(_Tx3O9 zQt9}cq^U%DlSPv8v>HprM^bA!6~&;V=nATvX>|f_ZN~IW9`&nCh_d#?m#J1g8sy1R z6tzdbs6EPmb^DVq$D$-+2e;}ro$Vp1i4AkaVca&HlBo8eL*1dGkHU@_5`Bi#q2+In zjJ5KR7({m9c0a>4jeRrZnnzo|Ceqf$hDqa+;f6|k4Xn7dl@*!R4$G#MEuB`uhEK!p za7AS82%9ua`Y@TJH=c;`l#HZpe-C@DK0?8qK3xUoQgEFvB+4BB`+wWn#fZC(dJpqA z`K5u1htK4f7Z5aijn@&*qm^7pj>aQ`H@JK0p1T@(;^i9s!6CA_Yc=~YAGN#o{l@wg&b&C*8*~Ckio=J^1 z=QeBz81MJ(gp*k@rttX>4l4uZH?C`jQkPzgP3-Pe=z*u2m}7Q<*CTD&sDG20b=kG&+nO%icZx3zhwB1c*iuU+{b ojUnExskHW6?F~M%>->y(GdE~pJVzx(J-p}!{a`OR2*RN8PrZc(z5oCK literal 0 HcmV?d00001 diff --git a/modules/__pycache__/display.cpython-37.pyc b/modules/__pycache__/display.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b7de6511283550201107544599bd1193f8d2468 GIT binary patch literal 540 zcmY*WO-lnY5Y6mvYOQU-lYhWVLBx}XB7TD>iy$H_E3)0BZ6xikNfs@%H-AWb?7@rp zOFZW4$)i{C;3P%R2{UhI0&nIe$BjmfpuIf5c0Ul`UGZxHCWq*H3j-qzB#D;@G59)& z0~WCGiNqm`7)6X2T#{DBagk024$vG^gnojqcQHKfOptGboRXW(DHw7GvtR;q0OIp- zPB4pRlm)JLU%SS+$QyPn)cW6x&$sjL#X+lLLp|2Eq7BPSW9fquhFjW`r5@PGh#?kQ za$d9o3)(`qAZiV#f3>rAa;3S_$ywS}g3IJI&&nYm8SDr%D7(p#ECy*Z%vmY9PMFYz zOvl^B*sf}sKNL!g40UR%7zi|>4mD5>%>RiFvEfBGF)?HY6EcS>Oxz)C>X-6Y Xe<<85D9=;fTWZ{Qf8^Cv!5{hqBfNU; literal 0 HcmV?d00001 diff --git a/modules/__pycache__/mainsystem.cpython-36.pyc b/modules/__pycache__/mainsystem.cpython-36.pyc deleted file mode 100644 index 60f5ca2873554c653aef420f5178420d646cc61a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1469 zcmaJ>O>fgc5Z(1x+iNpJ!qeGSr2-T_1OTr%dC%NwEq()lMyYu zDw3S9)FRcVFkO}L@G3Gv^D~KEL2%LyWATR|jTdb(xl4n(Hjr--z5p^!Kai#q?ZpsiyD43n_R!eV0agf*arw`Xs-Y zzKyd*I89QP$6QU5P^?s;G*8A^QTow>M^{ME9HzPug!;6Lq6YRkOPGlOQo7Muhx{d zDhdvo$hKTV!mhBgUy;+ibhxXqrUw-c+7)6?3`ter-p59h8#pw27t%7a>Q8z)vMXvU zfT}ZEh*l{WSj%4BB}#`{J%mGf5QKVoUiN4++Kw zelsu|Yi(hW$i`mV%sC<(2ik>pp*?61gXJ^><~G_hdhM*;wRdS_%sQvn_ZC`b>cwOd zW@0QdaaoL0Ilq2%>z;Exp7V66#v+}3el`)=1m@)09WPb7DxFB^BJd=i3s{{f%~x6$ z7))RCPdQgwl{Stj9nHT$R^Pap6d2x4;E8M&GFIBTjDtRoo!x#E_{L(P4&?#Bz~2iH zvY-pk6v^f6J0fq~&M5W@izkmUfx#XLYFg&~D8han0`1~X_fy#$Id_-Qgmah7Lh zXBMQUWG1d;C<18!6Td8ztztrpQ;UjY+!K?EGE;M6T=J7kb5rw5fFhYC9;Hb!jyVMx ki7~nPDWy57#WBUHiABj7dIgoYIBXzdc8oyNib3`O07OD5{r~^~ diff --git a/modules/__pycache__/sense.cpython-36.pyc b/modules/__pycache__/sense.cpython-36.pyc deleted file mode 100644 index 248213351227acaa0fb5d24544d568e59a78699f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1324 zcmZ8h!EPiq5VhUzo}MOQBNW&br-l==g4M!aP=q2PKyZMO*aanOjWlxF&WtBLc4NDh zOsj`WxFW7dhz~&G$k&)7r#*7zMA;LxSv+!8xyoHNRrShG_VAUPxhT9Q3e4xCHhmu7T zqo?Q$Z63nyB-{q;Xds;O^hdHyK${K8FNlwRjn-479#iD<%fkGO(UxM=AG&0qvAPM* zW4!S*@Vlko(=(*V85*Fym$~^Jd=3*!#l@1j(k+d!x9{OEFyw-WDEv#0AwGweH#dhXvlE}m^dT^POsuad;mO;v>@?*9sYD!0VzR_NKqi% zA|-KzV@__!mJSr=Vb^_-ZgCKFyBT>|x5LoOIuem{SNCG7=(HaTW3+kXuARqMCS(HH zQzzHLr*&jhw?g^!%19S_UMUX^!SqVIqJEzFGmzh2^3u=f1xvDC}ML5 zLNPHPAQ1ajXK_XQtqV5z=N0!>J8G&`%f)4VXe&euMNVliIYrvb`YJQaQk>HZ?~0{+ ZyF5E9I1+95HA0Q1#$Sq`$rJPT#y6}GQbqs( delta 323 zcmdnTwTX+@iIWWSfs@7d4a_p;q=)_?Hd-ZKNCpXkm*z<&!vY`{bj#S!Xh zOClVT9>Itj)cl5e2CY#GtV!pn4Yo${N7S1C1zG60g;h;t%)9il{)R_y3rC?t7-9`3 ziH4ZsFE|C)j+o6}+H95U`h;i}o&LNBZFc*$8V=qjUsUyP&plb2tG)$-iDl=N;#7qKL4(#Lz=BEkmnb#0g zwgRKY(x(A)Dps5*O)vF9y}1hEx>HnxGU4+ulVO?^jnkRxU5INLTr;JtAcZcFs+RFE zkszA|W#*Aob`C=Mp&XUc&8B&s(JUj+s$(pGgccW($9S2n5&jVT+cwog>8w(XeQ-uk zXH7c65{-fF36XeA#-InN0qu&>DN2?wSp7{)mA;~ce1U&v*2?5+uUI~W!kom5nUkc_ z3DP{FuIs|3bT5=8@cZBau&4oDWzV`Ud*}cAG^(3uJ?=rA&=bN0+wj)mwJ=`-q-Ak^ p8`Z3u(-kZMiZqLNPSufjPSDKok~aJGEN@@yQZi=a1#BC({TC140&D;P diff --git a/modules/bootloader.py b/modules/bootloader.py index e2575db..88133f1 100644 --- a/modules/bootloader.py +++ b/modules/bootloader.py @@ -1,31 +1,28 @@ -import asyncio -from sys import modules -from threading import Thread -from playsound import playsound -import time -from sense import notify -import random -from sense import speak +#DO NOT RUN THIS MODULE INDIVIDUALLY import json from os import path +from modules.sense import speak +import time +from modules.display import slowprint import datetime +import random +from playsound import playsound +from threading import Thread def wishMe(user_gender): hour = int(datetime.datetime.now().hour) if hour>=0 and hour<12: speak("Good Morning!") - elif hour>=12 and hour<18: speak("Good Afternoon!") - else: speak("Good Evening!") - if user_gender=="Male": speak("I am Alpha! Sir, Please tell me how may I help you") print("I am Alpha") else: - speak("I am Alpha! Madam, please tell me how may I help you.") + speak("I am Alpha! Madam, please tell me how may I help you.") + def wishme2(user_name): hour=int(datetime.datetime.now().hour) if hour>=0 and hour<12: @@ -44,18 +41,17 @@ def wishme2(user_name): speak(user_name) speak("How was your day?") - +#check user data def checkuserdata(): - #this file checks for user data - if path.isfile('data.json') == False: - notify("OPPs!","Cant start without data.json, try again",60) - time.sleep(30) + if path.isfile('data.json')==False: + speak('File for data.json is not found, please rerun setup configurations') + time.sleep(1) exit() else: - print("Loading user data.") + print("Loading user data") try: - with open("data.json", "r") as read_file: - userdata = json.load(read_file) + with open("data.json","r") as read_file: + userdata=json.load(read_file) main_data=userdata["main_user_data"] user_name=main_data["username"] usercity=main_data["usercity"] @@ -76,15 +72,22 @@ def checkuserdata(): user_discord=main_data["userpersonaldiscordbottoken"] except Exception as e: print(e) - notify("OHNO", e, 90) + speak(e) return user_name, usercity, user_gender,user_dob, user_email,user_email_password, user_species, user_bloodtype,user_skincolor,user_ethnicity - -def startup1(): - user_name=checkuserdata()[0] +def startup_speak(): + user_name= checkuserdata()[0] user_gender=checkuserdata()[2] - random_functions = random.randint(1,2) - if int(random_functions) == 1: + randomfunction = random.randint(1,2) + if int(randomfunction)==1: wishMe(user_gender) - elif int(random_functions) == 2: + elif int(randomfunction)==2: wishme2(user_name) + else: + speak("what the fuck?") +def startup_audio(): + playsound("audio/beep.mp3") + +def startup_main(): + Thread(target=startup_speak).start() + Thread(target=startup_audio).start() diff --git a/modules/display.py b/modules/display.py new file mode 100644 index 0000000..aa403de --- /dev/null +++ b/modules/display.py @@ -0,0 +1,12 @@ + +import sys +import time +import pyfiglet +def slowprint(s): + for c in s + '\n': + sys.stdout.write(c) + sys.stdout.flush() + time.sleep(1./1000) +def ascii(input): + result= pyfiglet.figlet_format(input) + return result diff --git a/modules/mainsystem.py b/modules/mainsystem.py index cb50082..04dc547 100644 --- a/modules/mainsystem.py +++ b/modules/mainsystem.py @@ -1,6 +1,6 @@ from pyautogui import screenshot import psutil -from modules.sense import speak +from sense import speak import requests import os #this program defines all possible ways to access computer statistic diff --git a/modules/sense.py b/modules/sense.py index 021b0a3..814d7b8 100644 --- a/modules/sense.py +++ b/modules/sense.py @@ -4,8 +4,8 @@ from win10toast import ToastNotifier #tts def speak(audio): - print("Alpha: "+audio) engine = pyttsx3.init() + engine.setProperty("volume", 1) engine.say(audio) engine.runAndWait() diff --git a/modules/weather.py b/modules/weather.py index 98c715b..7827c00 100644 --- a/modules/weather.py +++ b/modules/weather.py @@ -1,5 +1,5 @@ import requests -from modules.sense import speak +from sense import speak def weather_data(query): res=requests.get('http://api.openweathermap.org/data/2.5/weather?'+query+'&APPID=5bddd4ad4f4f192f6dfffe714388c103'); return res.json(); diff --git a/preprocessors/README b/preprocessors/README deleted file mode 100644 index 7c2f622..0000000 --- a/preprocessors/README +++ /dev/null @@ -1,2 +0,0 @@ -this file is added for different preprocessors that I externally added to allow -better processing of words in tandem with the chatterbot corpus trainers \ No newline at end of file diff --git a/preprocessors/__pycache__/clean_puncuations.cpython-36.pyc b/preprocessors/__pycache__/clean_puncuations.cpython-36.pyc deleted file mode 100644 index 41bf4006f1488849ca45c99eca6c73fa1f8852bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 529 zcmaJ-!EO^l4E39A({0*>v{XXC2`GpZ=!HvFA)ulXh(j+3Aw>&eyB@)oO?H`?l~QTp zQhtVC;8TWUPaL_<32(SWLc*4xXKauC#t-}b-cR#8{Q;s2T9TohpNiQQm>30(|9XtU ziaQ+f3U_&xV_xGPuk!}?dBB%=$eSOAW5rv1`5TQpj8`<;{v}=LIN*K2*MJ)Vw*qzo zZU?*zxZ|-Ka5rES@F3ux#}kjefcu%ST8I*i#GZ-SeE~-eodY!AbvUB8H@~1kL#OIf z*9=;J+G)TzR}D?n=RvD)_zmvHtgTu@0AbD-IvB~rF#N@h2j>@cVizJe}7xhVUSX3X=q>@Ia%(S(o z6laA_XOpFId)1lW{3m*){osZGAx2MhOLbwc%UwwKsCqd&dYgX91J diff --git a/preprocessors/__pycache__/clean_words.cpython-36.pyc b/preprocessors/__pycache__/clean_words.cpython-36.pyc deleted file mode 100644 index 5226892d5c56185c257720234840b7ad1fdbd8b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 474 zcmY*W!Ab)$5S^rTx7}62enIK29z^gaB8mk)c@YuHN=bKuuBMwc$e4{b zrlyc88|l0bBHAh3MLo?=2.5.3', - 'ChatterBot>=1.0.8', - 'chatterbot-corpus>=1.2.0', - 'win10toast>=0.9', - 'wikipedia>=1.4.0', - 'pyttsx3>=2.90', - 'Eel>=0.12.4', - 'SpeechRecognition>=3.8.1', - 'pprintpp>=0.4.0', - 'PyAutoGUI>=0.9.52', - 'psutil>=5.7.3', - 'playsound==1.2.2', - "wikipedia", - "PyAudio> =0.2.11", - "spacy>=2.2.2", - "PyAudio>=0.2.11", - "numpy>=1.19.3", - "en-core-web-md", - "en-core-web-sm" - ], - license=open('LICENSE').read() -) diff --git a/speechrecogn.py b/speechrecogn.py deleted file mode 100644 index 29dc434..0000000 --- a/speechrecogn.py +++ /dev/null @@ -1,4 +0,0 @@ -from modules.sense import listen -while True: - query=listen().lower() - print(query) \ No newline at end of file diff --git a/test.txt b/test.txt deleted file mode 100644 index e5fe497..0000000 --- a/test.txt +++ /dev/null @@ -1,22 +0,0 @@ -# python3.7+ -import asyncio - - -async def hello(): - while True: - print("Hello") - await asyncio.sleep(1) - - -async def world(): - while True: - print("World") - await asyncio.sleep(1) - - -async def main(): - await asyncio.gather(hello(), world()) - - -asyncio.run(main()) -Note asyncio.sleep(1) call in each coroutine. It's done to pass the control to the event loop and let another coroutine to be executed. \ No newline at end of file

    $q@@h72XkrYcjEx26BN+a06CePdK?H7Y7c4N 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 DQ{?A{ diff --git a/audio/slowtypebeep.mp3 b/audio/slowtypebeep.mp3 deleted file mode 100644 index c2b123eecffb05136b74bc7b7b363687a963df3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 313478 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 z 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

    `yj*}EYVBaAMk|pj+RvGRPAr8iTJIt6 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

  • ez|5an5_ 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